diff --git a/grammar.js b/grammar.js index d6cd467..541f035 100644 --- a/grammar.js +++ b/grammar.js @@ -209,10 +209,7 @@ module.exports = grammar({ class_declaration: $ => prec.right(choice( seq( optional($.modifiers), - choice( - "class", - seq(optional("fun"), "interface"), - ), + choice("class", "interface"), alias($.simple_identifier, $.type_identifier), optional($.type_parameters), optional($.primary_constructor), diff --git a/src/grammar.json b/src/grammar.json index 6a1d50b..78bdb17 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -351,25 +351,8 @@ "value": "class" }, { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "fun" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "interface" - } - ] + "type": "STRING", + "value": "interface" } ] }, @@ -6358,4 +6341,3 @@ "inline": [], "supertypes": [] } - diff --git a/src/parser.c b/src/parser.c index 3270fa7..22adb45 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,7 +1,6 @@ -#include +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif @@ -14,8 +13,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 10442 -#define LARGE_STATE_COUNT 4647 +#define STATE_COUNT 10154 +#define LARGE_STATE_COUNT 4533 #define SYMBOL_COUNT 355 #define ALIAS_COUNT 3 #define TOKEN_COUNT 153 @@ -24,7 +23,7 @@ #define MAX_ALIAS_SEQUENCE_LENGTH 11 #define PRODUCTION_ID_COUNT 9 -enum { +enum ts_symbol_identifiers { sym__alpha_identifier = 1, anon_sym_POUND_BANG = 2, aux_sym_shebang_line_token1 = 3, @@ -40,24 +39,24 @@ enum { anon_sym_typealias = 13, anon_sym_EQ = 14, anon_sym_class = 15, - anon_sym_fun = 16, - anon_sym_interface = 17, - anon_sym_enum = 18, - anon_sym_constructor = 19, - anon_sym_LBRACE = 20, - anon_sym_RBRACE = 21, - anon_sym_LPAREN = 22, - anon_sym_COMMA = 23, - anon_sym_RPAREN = 24, - anon_sym_val = 25, - anon_sym_var = 26, - anon_sym_by = 27, - anon_sym_LT = 28, - anon_sym_GT = 29, - anon_sym_where = 30, - anon_sym_init = 31, - anon_sym_companion = 32, - anon_sym_object = 33, + anon_sym_interface = 16, + anon_sym_enum = 17, + anon_sym_constructor = 18, + anon_sym_LBRACE = 19, + anon_sym_RBRACE = 20, + anon_sym_LPAREN = 21, + anon_sym_COMMA = 22, + anon_sym_RPAREN = 23, + anon_sym_val = 24, + anon_sym_var = 25, + anon_sym_by = 26, + anon_sym_LT = 27, + anon_sym_GT = 28, + anon_sym_where = 29, + anon_sym_init = 30, + anon_sym_companion = 31, + anon_sym_object = 32, + anon_sym_fun = 33, anon_sym_DOT = 34, anon_sym_SEMI = 35, anon_sym_get = 36, @@ -401,7 +400,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_typealias] = "typealias", [anon_sym_EQ] = "=", [anon_sym_class] = "class", - [anon_sym_fun] = "fun", [anon_sym_interface] = "interface", [anon_sym_enum] = "enum", [anon_sym_constructor] = "constructor", @@ -419,6 +417,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_init] = "init", [anon_sym_companion] = "companion", [anon_sym_object] = "object", + [anon_sym_fun] = "fun", [anon_sym_DOT] = ".", [anon_sym_SEMI] = ";", [anon_sym_get] = "get", @@ -762,7 +761,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_typealias] = anon_sym_typealias, [anon_sym_EQ] = anon_sym_EQ, [anon_sym_class] = anon_sym_class, - [anon_sym_fun] = anon_sym_fun, [anon_sym_interface] = anon_sym_interface, [anon_sym_enum] = anon_sym_enum, [anon_sym_constructor] = anon_sym_constructor, @@ -780,6 +778,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_init] = anon_sym_init, [anon_sym_companion] = anon_sym_companion, [anon_sym_object] = anon_sym_object, + [anon_sym_fun] = anon_sym_fun, [anon_sym_DOT] = anon_sym_DOT, [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_get] = anon_sym_get, @@ -1171,10 +1170,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_fun] = { - .visible = true, - .named = false, - }, [anon_sym_interface] = { .visible = true, .named = false, @@ -1243,6 +1238,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_fun] = { + .visible = true, + .named = false, + }, [anon_sym_DOT] = { .visible = true, .named = false, @@ -2589,89 +2588,89 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, - [5] = 5, - [6] = 2, - [7] = 5, - [8] = 3, + [4] = 2, + [5] = 3, + [6] = 6, + [7] = 2, + [8] = 2, [9] = 3, [10] = 2, - [11] = 2, - [12] = 3, - [13] = 2, - [14] = 3, - [15] = 2, - [16] = 2, + [11] = 3, + [12] = 2, + [13] = 3, + [14] = 6, + [15] = 3, + [16] = 3, [17] = 3, [18] = 2, - [19] = 2, + [19] = 3, [20] = 3, - [21] = 3, - [22] = 2, - [23] = 3, + [21] = 2, + [22] = 3, + [23] = 2, [24] = 2, [25] = 2, [26] = 3, - [27] = 3, - [28] = 3, - [29] = 2, - [30] = 2, - [31] = 3, - [32] = 3, + [27] = 2, + [28] = 2, + [29] = 3, + [30] = 3, + [31] = 2, + [32] = 2, [33] = 3, - [34] = 3, + [34] = 2, [35] = 2, - [36] = 2, - [37] = 2, - [38] = 2, - [39] = 3, - [40] = 2, - [41] = 3, + [36] = 3, + [37] = 3, + [38] = 3, + [39] = 2, + [40] = 3, + [41] = 2, [42] = 3, [43] = 2, - [44] = 3, - [45] = 3, - [46] = 2, + [44] = 2, + [45] = 2, + [46] = 3, [47] = 3, - [48] = 3, + [48] = 2, [49] = 2, - [50] = 2, - [51] = 2, + [50] = 3, + [51] = 3, [52] = 52, [53] = 53, [54] = 54, - [55] = 5, - [56] = 3, - [57] = 2, + [55] = 6, + [56] = 2, + [57] = 3, [58] = 58, [59] = 59, [60] = 60, [61] = 60, - [62] = 58, + [62] = 60, [63] = 60, [64] = 60, - [65] = 58, + [65] = 60, [66] = 66, - [67] = 60, - [68] = 68, + [67] = 67, + [68] = 60, [69] = 69, - [70] = 60, - [71] = 58, - [72] = 60, - [73] = 60, - [74] = 60, - [75] = 60, - [76] = 76, + [70] = 70, + [71] = 60, + [72] = 59, + [73] = 59, + [74] = 74, + [75] = 75, + [76] = 59, [77] = 60, - [78] = 60, + [78] = 59, [79] = 60, - [80] = 58, + [80] = 60, [81] = 60, - [82] = 82, + [82] = 59, [83] = 60, - [84] = 84, - [85] = 58, - [86] = 5, + [84] = 60, + [85] = 60, + [86] = 6, [87] = 87, [88] = 87, [89] = 87, @@ -2680,7 +2679,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [92] = 87, [93] = 87, [94] = 87, - [95] = 2, + [95] = 87, [96] = 87, [97] = 87, [98] = 87, @@ -2691,232 +2690,232 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [103] = 87, [104] = 87, [105] = 87, - [106] = 87, + [106] = 2, [107] = 87, - [108] = 3, - [109] = 87, + [108] = 87, + [109] = 3, [110] = 87, [111] = 87, [112] = 87, [113] = 113, - [114] = 113, + [114] = 114, [115] = 115, - [116] = 113, - [117] = 113, - [118] = 115, - [119] = 119, - [120] = 120, - [121] = 120, - [122] = 119, - [123] = 119, - [124] = 120, - [125] = 115, + [116] = 114, + [117] = 114, + [118] = 118, + [119] = 113, + [120] = 114, + [121] = 118, + [122] = 113, + [123] = 118, + [124] = 115, + [125] = 113, [126] = 115, - [127] = 113, - [128] = 120, - [129] = 120, - [130] = 119, - [131] = 119, - [132] = 115, - [133] = 120, - [134] = 120, - [135] = 119, - [136] = 119, - [137] = 120, - [138] = 120, - [139] = 120, - [140] = 119, - [141] = 120, - [142] = 113, - [143] = 115, - [144] = 115, - [145] = 120, - [146] = 120, - [147] = 119, - [148] = 119, + [127] = 114, + [128] = 114, + [129] = 118, + [130] = 113, + [131] = 115, + [132] = 114, + [133] = 118, + [134] = 113, + [135] = 115, + [136] = 114, + [137] = 118, + [138] = 113, + [139] = 115, + [140] = 115, + [141] = 115, + [142] = 115, + [143] = 118, + [144] = 114, + [145] = 118, + [146] = 113, + [147] = 118, + [148] = 115, [149] = 115, [150] = 113, - [151] = 119, - [152] = 120, - [153] = 115, - [154] = 120, - [155] = 120, + [151] = 113, + [152] = 115, + [153] = 118, + [154] = 115, + [155] = 115, [156] = 115, - [157] = 113, - [158] = 119, - [159] = 120, - [160] = 115, - [161] = 115, + [157] = 114, + [158] = 115, + [159] = 113, + [160] = 114, + [161] = 118, [162] = 113, - [163] = 119, - [164] = 119, - [165] = 115, - [166] = 115, - [167] = 120, + [163] = 115, + [164] = 114, + [165] = 114, + [166] = 118, + [167] = 113, [168] = 115, - [169] = 119, - [170] = 120, - [171] = 115, - [172] = 5, - [173] = 113, - [174] = 115, - [175] = 113, + [169] = 113, + [170] = 118, + [171] = 114, + [172] = 114, + [173] = 115, + [174] = 113, + [175] = 118, [176] = 113, - [177] = 119, - [178] = 113, - [179] = 120, - [180] = 113, - [181] = 115, - [182] = 113, - [183] = 113, - [184] = 120, + [177] = 114, + [178] = 114, + [179] = 118, + [180] = 6, + [181] = 118, + [182] = 114, + [183] = 118, + [184] = 114, [185] = 113, - [186] = 119, - [187] = 119, - [188] = 120, - [189] = 119, - [190] = 113, - [191] = 115, - [192] = 113, - [193] = 119, - [194] = 120, - [195] = 119, + [186] = 115, + [187] = 113, + [188] = 115, + [189] = 114, + [190] = 118, + [191] = 113, + [192] = 118, + [193] = 115, + [194] = 113, + [195] = 115, [196] = 115, - [197] = 120, - [198] = 115, - [199] = 113, - [200] = 115, - [201] = 113, - [202] = 115, - [203] = 120, - [204] = 113, - [205] = 119, - [206] = 113, - [207] = 119, - [208] = 115, - [209] = 113, - [210] = 119, - [211] = 120, - [212] = 120, + [197] = 118, + [198] = 113, + [199] = 114, + [200] = 118, + [201] = 115, + [202] = 113, + [203] = 118, + [204] = 114, + [205] = 115, + [206] = 115, + [207] = 113, + [208] = 118, + [209] = 114, + [210] = 114, + [211] = 113, + [212] = 118, [213] = 213, [214] = 214, [215] = 215, [216] = 216, [217] = 217, - [218] = 216, - [219] = 216, - [220] = 213, - [221] = 221, + [218] = 218, + [219] = 214, + [220] = 220, + [221] = 220, [222] = 213, - [223] = 217, - [224] = 213, - [225] = 215, - [226] = 216, - [227] = 227, + [223] = 213, + [224] = 214, + [225] = 225, + [226] = 226, + [227] = 3, [228] = 228, - [229] = 215, - [230] = 213, - [231] = 215, - [232] = 215, - [233] = 216, - [234] = 3, - [235] = 217, - [236] = 217, - [237] = 215, - [238] = 216, - [239] = 239, - [240] = 2, - [241] = 216, - [242] = 215, - [243] = 216, - [244] = 217, - [245] = 216, - [246] = 246, - [247] = 215, - [248] = 216, - [249] = 213, - [250] = 216, - [251] = 216, + [229] = 214, + [230] = 214, + [231] = 213, + [232] = 214, + [233] = 213, + [234] = 213, + [235] = 2, + [236] = 213, + [237] = 213, + [238] = 220, + [239] = 214, + [240] = 217, + [241] = 241, + [242] = 220, + [243] = 217, + [244] = 213, + [245] = 214, + [246] = 220, + [247] = 214, + [248] = 214, + [249] = 217, + [250] = 217, + [251] = 251, [252] = 252, - [253] = 217, - [254] = 254, - [255] = 255, - [256] = 215, + [253] = 220, + [254] = 214, + [255] = 217, + [256] = 214, [257] = 257, [258] = 258, [259] = 259, - [260] = 252, - [261] = 252, - [262] = 252, - [263] = 252, - [264] = 252, - [265] = 252, - [266] = 252, - [267] = 252, - [268] = 252, - [269] = 252, - [270] = 252, + [260] = 225, + [261] = 225, + [262] = 225, + [263] = 225, + [264] = 225, + [265] = 225, + [266] = 225, + [267] = 225, + [268] = 225, + [269] = 225, + [270] = 225, [271] = 271, [272] = 272, [273] = 273, - [274] = 273, + [274] = 274, [275] = 275, - [276] = 271, - [277] = 277, - [278] = 277, - [279] = 272, - [280] = 280, - [281] = 280, - [282] = 275, - [283] = 252, - [284] = 271, - [285] = 277, - [286] = 272, - [287] = 277, - [288] = 273, + [276] = 276, + [277] = 273, + [278] = 272, + [279] = 274, + [280] = 271, + [281] = 275, + [282] = 276, + [283] = 225, + [284] = 273, + [285] = 276, + [286] = 275, + [287] = 271, + [288] = 274, [289] = 272, - [290] = 271, - [291] = 280, + [290] = 272, + [291] = 274, [292] = 273, - [293] = 280, - [294] = 275, - [295] = 275, - [296] = 252, - [297] = 252, - [298] = 252, - [299] = 252, - [300] = 272, - [301] = 273, - [302] = 272, - [303] = 275, - [304] = 271, - [305] = 277, - [306] = 280, - [307] = 271, - [308] = 277, - [309] = 280, - [310] = 252, - [311] = 273, + [293] = 275, + [294] = 276, + [295] = 271, + [296] = 225, + [297] = 225, + [298] = 225, + [299] = 273, + [300] = 276, + [301] = 276, + [302] = 225, + [303] = 225, + [304] = 273, + [305] = 272, + [306] = 272, + [307] = 274, + [308] = 274, + [309] = 275, + [310] = 271, + [311] = 271, [312] = 275, - [313] = 252, - [314] = 273, - [315] = 271, - [316] = 275, - [317] = 271, - [318] = 280, - [319] = 280, - [320] = 271, + [313] = 225, + [314] = 276, + [315] = 276, + [316] = 273, + [317] = 272, + [318] = 271, + [319] = 271, + [320] = 273, [321] = 275, - [322] = 277, - [323] = 275, + [322] = 274, + [323] = 273, [324] = 272, - [325] = 272, - [326] = 280, - [327] = 273, - [328] = 273, - [329] = 272, - [330] = 277, - [331] = 277, + [325] = 274, + [326] = 275, + [327] = 275, + [328] = 274, + [329] = 271, + [330] = 272, + [331] = 276, [332] = 332, [333] = 332, [334] = 332, @@ -2941,13 +2940,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [353] = 332, [354] = 332, [355] = 332, - [356] = 252, - [357] = 252, - [358] = 252, + [356] = 225, + [357] = 225, + [358] = 225, [359] = 359, [360] = 360, [361] = 361, - [362] = 362, + [362] = 225, [363] = 363, [364] = 364, [365] = 365, @@ -2956,479 +2955,479 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [368] = 368, [369] = 369, [370] = 370, - [371] = 371, - [372] = 252, + [371] = 225, + [372] = 372, [373] = 373, [374] = 374, - [375] = 252, + [375] = 375, [376] = 376, [377] = 377, [378] = 378, [379] = 379, - [380] = 380, - [381] = 360, + [380] = 379, + [381] = 359, [382] = 364, - [383] = 373, - [384] = 363, - [385] = 362, - [386] = 379, - [387] = 370, - [388] = 361, - [389] = 389, - [390] = 390, - [391] = 391, - [392] = 392, - [393] = 377, - [394] = 359, - [395] = 365, - [396] = 366, + [383] = 374, + [384] = 384, + [385] = 377, + [386] = 386, + [387] = 387, + [388] = 373, + [389] = 368, + [390] = 369, + [391] = 366, + [392] = 378, + [393] = 393, + [394] = 376, + [395] = 393, + [396] = 360, [397] = 367, - [398] = 392, - [399] = 369, - [400] = 389, - [401] = 391, - [402] = 371, - [403] = 380, - [404] = 390, - [405] = 368, - [406] = 378, - [407] = 374, - [408] = 389, - [409] = 380, + [398] = 363, + [399] = 384, + [400] = 372, + [401] = 370, + [402] = 386, + [403] = 387, + [404] = 375, + [405] = 361, + [406] = 387, + [407] = 407, + [408] = 386, + [409] = 409, [410] = 410, - [411] = 392, - [412] = 412, - [413] = 390, - [414] = 414, - [415] = 391, - [416] = 416, - [417] = 417, - [418] = 414, - [419] = 417, - [420] = 410, - [421] = 389, - [422] = 416, - [423] = 392, - [424] = 412, - [425] = 390, - [426] = 391, - [427] = 380, - [428] = 410, - [429] = 429, + [411] = 411, + [412] = 384, + [413] = 387, + [414] = 410, + [415] = 409, + [416] = 384, + [417] = 393, + [418] = 386, + [419] = 393, + [420] = 407, + [421] = 411, + [422] = 409, + [423] = 407, + [424] = 424, + [425] = 424, + [426] = 410, + [427] = 411, + [428] = 411, + [429] = 407, [430] = 430, - [431] = 412, - [432] = 432, - [433] = 432, - [434] = 414, - [435] = 416, - [436] = 417, - [437] = 417, - [438] = 410, - [439] = 414, + [431] = 431, + [432] = 409, + [433] = 433, + [434] = 433, + [435] = 435, + [436] = 435, + [437] = 431, + [438] = 430, + [439] = 410, [440] = 440, - [441] = 441, - [442] = 412, - [443] = 440, - [444] = 429, - [445] = 416, - [446] = 441, + [441] = 435, + [442] = 442, + [443] = 431, + [444] = 435, + [445] = 440, + [446] = 446, [447] = 430, [448] = 448, - [449] = 440, - [450] = 450, - [451] = 440, - [452] = 452, - [453] = 452, - [454] = 454, - [455] = 429, - [456] = 441, - [457] = 432, - [458] = 430, - [459] = 441, - [460] = 454, - [461] = 448, - [462] = 430, - [463] = 429, - [464] = 432, - [465] = 465, - [466] = 465, - [467] = 450, - [468] = 362, - [469] = 370, - [470] = 361, - [471] = 363, - [472] = 364, - [473] = 374, + [449] = 448, + [450] = 433, + [451] = 431, + [452] = 424, + [453] = 453, + [454] = 453, + [455] = 430, + [456] = 446, + [457] = 424, + [458] = 442, + [459] = 433, + [460] = 377, + [461] = 372, + [462] = 375, + [463] = 379, + [464] = 363, + [465] = 366, + [466] = 361, + [467] = 369, + [468] = 360, + [469] = 364, + [470] = 370, + [471] = 367, + [472] = 374, + [473] = 373, [474] = 376, - [475] = 365, - [476] = 366, - [477] = 367, - [478] = 360, - [479] = 368, - [480] = 369, - [481] = 373, - [482] = 359, - [483] = 378, - [484] = 379, - [485] = 371, - [486] = 377, + [475] = 378, + [476] = 368, + [477] = 359, + [478] = 365, + [479] = 453, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 483, + [486] = 484, [487] = 487, [488] = 488, [489] = 489, [490] = 490, - [491] = 491, + [491] = 442, [492] = 492, - [493] = 493, - [494] = 450, - [495] = 495, - [496] = 454, - [497] = 497, - [498] = 452, - [499] = 499, - [500] = 500, - [501] = 501, + [493] = 446, + [494] = 448, + [495] = 446, + [496] = 440, + [497] = 492, + [498] = 498, + [499] = 490, + [500] = 440, + [501] = 448, [502] = 502, - [503] = 502, - [504] = 501, - [505] = 465, - [506] = 493, - [507] = 452, - [508] = 454, - [509] = 448, - [510] = 510, - [511] = 491, - [512] = 510, - [513] = 492, - [514] = 489, - [515] = 499, - [516] = 487, - [517] = 495, - [518] = 448, - [519] = 488, - [520] = 490, - [521] = 497, - [522] = 450, - [523] = 465, - [524] = 500, - [525] = 380, - [526] = 379, - [527] = 360, - [528] = 367, - [529] = 369, - [530] = 359, - [531] = 370, - [532] = 365, + [503] = 503, + [504] = 488, + [505] = 442, + [506] = 503, + [507] = 453, + [508] = 487, + [509] = 489, + [510] = 498, + [511] = 480, + [512] = 502, + [513] = 513, + [514] = 513, + [515] = 482, + [516] = 481, + [517] = 366, + [518] = 387, + [519] = 363, + [520] = 360, + [521] = 364, + [522] = 368, + [523] = 369, + [524] = 370, + [525] = 373, + [526] = 375, + [527] = 361, + [528] = 379, + [529] = 378, + [530] = 367, + [531] = 376, + [532] = 359, [533] = 374, - [534] = 364, - [535] = 363, - [536] = 362, - [537] = 368, - [538] = 391, - [539] = 366, - [540] = 389, - [541] = 391, - [542] = 361, - [543] = 392, - [544] = 371, - [545] = 389, - [546] = 390, - [547] = 377, - [548] = 392, - [549] = 378, - [550] = 373, - [551] = 380, - [552] = 390, - [553] = 499, - [554] = 432, - [555] = 497, - [556] = 441, - [557] = 432, - [558] = 414, - [559] = 502, - [560] = 440, - [561] = 440, - [562] = 417, - [563] = 414, - [564] = 495, - [565] = 416, - [566] = 412, - [567] = 501, - [568] = 510, - [569] = 441, - [570] = 429, - [571] = 380, - [572] = 389, - [573] = 392, - [574] = 410, - [575] = 430, - [576] = 493, - [577] = 390, - [578] = 391, - [579] = 493, - [580] = 417, - [581] = 392, - [582] = 489, - [583] = 490, - [584] = 390, - [585] = 487, - [586] = 491, - [587] = 416, - [588] = 500, - [589] = 489, - [590] = 490, - [591] = 492, - [592] = 410, - [593] = 491, - [594] = 492, - [595] = 389, - [596] = 380, - [597] = 487, - [598] = 429, - [599] = 495, - [600] = 430, - [601] = 391, - [602] = 497, - [603] = 502, - [604] = 488, - [605] = 501, - [606] = 412, - [607] = 510, - [608] = 488, - [609] = 499, - [610] = 500, + [534] = 377, + [535] = 372, + [536] = 384, + [537] = 386, + [538] = 393, + [539] = 387, + [540] = 384, + [541] = 393, + [542] = 386, + [543] = 492, + [544] = 482, + [545] = 487, + [546] = 384, + [547] = 503, + [548] = 481, + [549] = 480, + [550] = 490, + [551] = 490, + [552] = 393, + [553] = 487, + [554] = 489, + [555] = 386, + [556] = 498, + [557] = 480, + [558] = 387, + [559] = 481, + [560] = 503, + [561] = 411, + [562] = 435, + [563] = 410, + [564] = 409, + [565] = 488, + [566] = 502, + [567] = 407, + [568] = 513, + [569] = 431, + [570] = 435, + [571] = 411, + [572] = 410, + [573] = 409, + [574] = 482, + [575] = 407, + [576] = 384, + [577] = 393, + [578] = 386, + [579] = 483, + [580] = 484, + [581] = 433, + [582] = 484, + [583] = 483, + [584] = 431, + [585] = 488, + [586] = 492, + [587] = 502, + [588] = 424, + [589] = 513, + [590] = 489, + [591] = 433, + [592] = 387, + [593] = 424, + [594] = 430, + [595] = 498, + [596] = 430, + [597] = 435, + [598] = 424, + [599] = 448, + [600] = 446, + [601] = 446, + [602] = 424, + [603] = 440, + [604] = 409, + [605] = 442, + [606] = 433, + [607] = 435, + [608] = 448, + [609] = 442, + [610] = 440, [611] = 430, - [612] = 430, - [613] = 450, - [614] = 440, - [615] = 414, - [616] = 465, - [617] = 441, - [618] = 454, - [619] = 412, - [620] = 410, - [621] = 416, - [622] = 432, - [623] = 416, - [624] = 441, - [625] = 452, - [626] = 429, - [627] = 429, - [628] = 452, - [629] = 410, - [630] = 417, - [631] = 414, - [632] = 417, - [633] = 440, - [634] = 454, - [635] = 432, - [636] = 448, - [637] = 450, - [638] = 412, - [639] = 465, - [640] = 448, - [641] = 273, - [642] = 277, - [643] = 277, - [644] = 280, - [645] = 272, - [646] = 275, - [647] = 280, - [648] = 271, - [649] = 271, - [650] = 272, - [651] = 273, - [652] = 275, - [653] = 452, - [654] = 465, - [655] = 448, - [656] = 450, - [657] = 454, - [658] = 465, - [659] = 448, - [660] = 452, - [661] = 450, - [662] = 454, + [612] = 453, + [613] = 411, + [614] = 431, + [615] = 410, + [616] = 431, + [617] = 411, + [618] = 430, + [619] = 409, + [620] = 453, + [621] = 407, + [622] = 433, + [623] = 407, + [624] = 410, + [625] = 276, + [626] = 276, + [627] = 273, + [628] = 272, + [629] = 274, + [630] = 271, + [631] = 275, + [632] = 271, + [633] = 274, + [634] = 272, + [635] = 273, + [636] = 275, + [637] = 440, + [638] = 442, + [639] = 442, + [640] = 446, + [641] = 440, + [642] = 448, + [643] = 446, + [644] = 453, + [645] = 448, + [646] = 453, + [647] = 503, + [648] = 487, + [649] = 502, + [650] = 513, + [651] = 488, + [652] = 492, + [653] = 482, + [654] = 503, + [655] = 481, + [656] = 481, + [657] = 480, + [658] = 490, + [659] = 483, + [660] = 480, + [661] = 484, + [662] = 489, [663] = 488, - [664] = 489, - [665] = 493, - [666] = 493, - [667] = 488, - [668] = 500, - [669] = 499, - [670] = 510, - [671] = 489, - [672] = 501, - [673] = 502, - [674] = 497, - [675] = 495, - [676] = 487, - [677] = 492, - [678] = 495, - [679] = 487, - [680] = 491, - [681] = 500, - [682] = 499, - [683] = 492, - [684] = 510, - [685] = 491, - [686] = 501, - [687] = 490, - [688] = 502, - [689] = 490, - [690] = 497, + [664] = 498, + [665] = 502, + [666] = 513, + [667] = 490, + [668] = 487, + [669] = 492, + [670] = 489, + [671] = 482, + [672] = 483, + [673] = 498, + [674] = 484, + [675] = 272, + [676] = 272, + [677] = 271, + [678] = 678, + [679] = 679, + [680] = 680, + [681] = 681, + [682] = 274, + [683] = 679, + [684] = 271, + [685] = 678, + [686] = 275, + [687] = 681, + [688] = 276, + [689] = 680, + [690] = 679, [691] = 273, - [692] = 692, - [693] = 692, - [694] = 692, - [695] = 695, - [696] = 696, - [697] = 696, - [698] = 698, - [699] = 696, - [700] = 700, - [701] = 698, - [702] = 696, - [703] = 698, - [704] = 280, - [705] = 698, - [706] = 695, - [707] = 695, - [708] = 277, - [709] = 280, - [710] = 277, - [711] = 271, + [692] = 681, + [693] = 681, + [694] = 694, + [695] = 678, + [696] = 680, + [697] = 679, + [698] = 678, + [699] = 680, + [700] = 681, + [701] = 680, + [702] = 679, + [703] = 678, + [704] = 273, + [705] = 678, + [706] = 274, + [707] = 275, + [708] = 276, + [709] = 681, + [710] = 680, + [711] = 679, [712] = 275, - [713] = 696, - [714] = 272, - [715] = 698, - [716] = 698, - [717] = 696, - [718] = 271, - [719] = 695, - [720] = 692, - [721] = 695, - [722] = 275, - [723] = 695, - [724] = 272, - [725] = 692, - [726] = 273, - [727] = 692, - [728] = 502, - [729] = 277, - [730] = 490, - [731] = 510, - [732] = 501, - [733] = 492, - [734] = 502, - [735] = 497, - [736] = 495, - [737] = 487, - [738] = 492, - [739] = 491, + [713] = 484, + [714] = 274, + [715] = 275, + [716] = 272, + [717] = 273, + [718] = 513, + [719] = 502, + [720] = 503, + [721] = 271, + [722] = 481, + [723] = 480, + [724] = 490, + [725] = 276, + [726] = 276, + [727] = 484, + [728] = 483, + [729] = 271, + [730] = 498, + [731] = 492, + [732] = 513, + [733] = 502, + [734] = 274, + [735] = 272, + [736] = 488, + [737] = 481, + [738] = 273, + [739] = 480, [740] = 490, - [741] = 489, - [742] = 499, - [743] = 273, - [744] = 272, - [745] = 275, - [746] = 271, - [747] = 501, - [748] = 280, - [749] = 500, - [750] = 499, - [751] = 500, - [752] = 488, - [753] = 491, - [754] = 280, - [755] = 277, - [756] = 487, - [757] = 271, - [758] = 275, - [759] = 272, - [760] = 488, - [761] = 493, - [762] = 273, - [763] = 489, - [764] = 497, - [765] = 510, - [766] = 493, - [767] = 495, - [768] = 768, - [769] = 768, - [770] = 271, - [771] = 768, - [772] = 272, - [773] = 768, - [774] = 768, - [775] = 775, - [776] = 776, - [777] = 768, - [778] = 778, - [779] = 768, - [780] = 780, - [781] = 273, - [782] = 768, - [783] = 271, - [784] = 280, - [785] = 768, - [786] = 768, - [787] = 275, - [788] = 768, - [789] = 768, - [790] = 768, - [791] = 277, - [792] = 768, - [793] = 277, - [794] = 780, - [795] = 768, - [796] = 768, - [797] = 768, - [798] = 768, - [799] = 776, - [800] = 775, - [801] = 768, - [802] = 768, - [803] = 768, - [804] = 768, - [805] = 280, - [806] = 275, - [807] = 272, - [808] = 808, - [809] = 768, - [810] = 273, - [811] = 768, - [812] = 768, - [813] = 768, - [814] = 768, - [815] = 277, - [816] = 271, - [817] = 275, - [818] = 273, + [741] = 487, + [742] = 489, + [743] = 498, + [744] = 492, + [745] = 482, + [746] = 482, + [747] = 487, + [748] = 488, + [749] = 503, + [750] = 483, + [751] = 489, + [752] = 273, + [753] = 753, + [754] = 753, + [755] = 753, + [756] = 276, + [757] = 275, + [758] = 271, + [759] = 274, + [760] = 272, + [761] = 273, + [762] = 753, + [763] = 753, + [764] = 764, + [765] = 753, + [766] = 753, + [767] = 753, + [768] = 753, + [769] = 753, + [770] = 272, + [771] = 753, + [772] = 274, + [773] = 773, + [774] = 774, + [775] = 276, + [776] = 774, + [777] = 777, + [778] = 777, + [779] = 753, + [780] = 753, + [781] = 753, + [782] = 753, + [783] = 275, + [784] = 753, + [785] = 785, + [786] = 753, + [787] = 753, + [788] = 753, + [789] = 753, + [790] = 753, + [791] = 753, + [792] = 753, + [793] = 753, + [794] = 753, + [795] = 753, + [796] = 753, + [797] = 271, + [798] = 785, + [799] = 274, + [800] = 271, + [801] = 801, + [802] = 272, + [803] = 273, + [804] = 272, + [805] = 271, + [806] = 274, + [807] = 275, + [808] = 276, + [809] = 276, + [810] = 275, + [811] = 273, + [812] = 812, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 816, + [817] = 817, + [818] = 818, [819] = 819, - [820] = 272, - [821] = 275, - [822] = 273, - [823] = 280, - [824] = 277, - [825] = 280, - [826] = 271, - [827] = 272, + [820] = 820, + [821] = 821, + [822] = 822, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 815, + [827] = 827, [828] = 828, [829] = 829, [830] = 830, [831] = 831, [832] = 832, [833] = 833, - [834] = 834, + [834] = 821, [835] = 835, - [836] = 836, + [836] = 820, [837] = 837, - [838] = 838, + [838] = 814, [839] = 839, [840] = 840, - [841] = 841, + [841] = 818, [842] = 842, - [843] = 843, + [843] = 822, [844] = 844, [845] = 845, [846] = 846, @@ -3445,210 +3444,210 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [857] = 857, [858] = 858, [859] = 859, - [860] = 839, + [860] = 860, [861] = 861, - [862] = 838, - [863] = 835, - [864] = 828, + [862] = 850, + [863] = 821, + [864] = 864, [865] = 865, [866] = 866, [867] = 867, [868] = 868, [869] = 869, - [870] = 870, + [870] = 276, [871] = 871, - [872] = 872, - [873] = 873, - [874] = 874, - [875] = 875, - [876] = 830, - [877] = 877, - [878] = 833, - [879] = 879, - [880] = 880, - [881] = 881, - [882] = 882, - [883] = 883, + [872] = 275, + [873] = 273, + [874] = 272, + [875] = 271, + [876] = 274, + [877] = 823, + [878] = 271, + [879] = 275, + [880] = 276, + [881] = 274, + [882] = 272, + [883] = 273, [884] = 884, - [885] = 275, - [886] = 280, + [885] = 885, + [886] = 886, [887] = 887, - [888] = 888, - [889] = 889, - [890] = 890, - [891] = 272, - [892] = 892, - [893] = 273, + [888] = 857, + [889] = 849, + [890] = 855, + [891] = 891, + [892] = 848, + [893] = 829, [894] = 894, - [895] = 895, - [896] = 855, - [897] = 897, + [895] = 845, + [896] = 896, + [897] = 844, [898] = 898, [899] = 899, [900] = 900, [901] = 901, - [902] = 902, + [902] = 837, [903] = 903, [904] = 904, [905] = 905, [906] = 906, [907] = 907, [908] = 908, - [909] = 854, + [909] = 909, [910] = 910, [911] = 911, [912] = 912, - [913] = 829, - [914] = 839, - [915] = 856, - [916] = 853, - [917] = 852, - [918] = 870, - [919] = 879, - [920] = 845, - [921] = 847, - [922] = 849, - [923] = 923, - [924] = 850, - [925] = 851, - [926] = 926, + [913] = 832, + [914] = 914, + [915] = 915, + [916] = 835, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 921, + [922] = 853, + [923] = 859, + [924] = 924, + [925] = 925, + [926] = 271, [927] = 927, [928] = 928, [929] = 929, [930] = 930, - [931] = 857, - [932] = 858, + [931] = 931, + [932] = 932, [933] = 933, [934] = 934, - [935] = 273, + [935] = 935, [936] = 936, - [937] = 272, - [938] = 275, - [939] = 271, - [940] = 859, - [941] = 277, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 852, + [941] = 941, [942] = 942, - [943] = 280, + [943] = 943, [944] = 944, [945] = 945, - [946] = 277, + [946] = 946, [947] = 947, - [948] = 271, - [949] = 369, - [950] = 950, - [951] = 951, + [948] = 372, + [949] = 361, + [950] = 367, + [951] = 374, [952] = 952, - [953] = 953, - [954] = 280, - [955] = 371, - [956] = 362, - [957] = 873, - [958] = 958, - [959] = 959, + [953] = 273, + [954] = 846, + [955] = 955, + [956] = 956, + [957] = 359, + [958] = 363, + [959] = 272, [960] = 960, - [961] = 961, - [962] = 962, - [963] = 378, - [964] = 964, - [965] = 379, - [966] = 867, + [961] = 377, + [962] = 274, + [963] = 963, + [964] = 275, + [965] = 276, + [966] = 966, [967] = 967, - [968] = 373, - [969] = 272, - [970] = 272, + [968] = 968, + [969] = 969, + [970] = 273, [971] = 971, [972] = 972, [973] = 973, [974] = 974, [975] = 975, - [976] = 976, - [977] = 977, - [978] = 273, + [976] = 272, + [977] = 274, + [978] = 831, [979] = 979, - [980] = 980, + [980] = 271, [981] = 981, [982] = 982, - [983] = 280, + [983] = 983, [984] = 984, [985] = 985, - [986] = 363, - [987] = 364, - [988] = 365, - [989] = 366, + [986] = 275, + [987] = 987, + [988] = 988, + [989] = 276, [990] = 990, - [991] = 273, - [992] = 367, - [993] = 360, - [994] = 368, - [995] = 376, - [996] = 996, + [991] = 991, + [992] = 992, + [993] = 993, + [994] = 994, + [995] = 995, + [996] = 365, [997] = 997, - [998] = 998, - [999] = 359, - [1000] = 370, - [1001] = 377, - [1002] = 1002, - [1003] = 1003, + [998] = 994, + [999] = 999, + [1000] = 1000, + [1001] = 1001, + [1002] = 373, + [1003] = 370, [1004] = 1004, - [1005] = 1005, - [1006] = 1006, - [1007] = 1007, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 1011, + [1005] = 369, + [1006] = 368, + [1007] = 364, + [1008] = 366, + [1009] = 360, + [1010] = 376, + [1011] = 378, [1012] = 1012, - [1013] = 1013, + [1013] = 379, [1014] = 1014, - [1015] = 1010, - [1016] = 277, + [1015] = 867, + [1016] = 847, [1017] = 1017, [1018] = 1018, [1019] = 1019, [1020] = 1020, [1021] = 1021, - [1022] = 275, - [1023] = 277, + [1022] = 840, + [1023] = 1023, [1024] = 1024, [1025] = 1025, [1026] = 1026, [1027] = 1027, [1028] = 1028, [1029] = 1029, - [1030] = 361, - [1031] = 848, - [1032] = 1032, + [1030] = 1030, + [1031] = 1031, + [1032] = 842, [1033] = 1033, [1034] = 1034, [1035] = 1035, [1036] = 1036, - [1037] = 271, + [1037] = 842, [1038] = 1038, - [1039] = 275, - [1040] = 271, + [1039] = 1039, + [1040] = 1040, [1041] = 1041, - [1042] = 280, + [1042] = 1042, [1043] = 1043, [1044] = 1044, - [1045] = 1045, - [1046] = 1046, - [1047] = 871, - [1048] = 275, - [1049] = 273, + [1045] = 842, + [1046] = 847, + [1047] = 1047, + [1048] = 1048, + [1049] = 1049, [1050] = 1050, [1051] = 1051, [1052] = 1052, [1053] = 1053, - [1054] = 843, + [1054] = 1054, [1055] = 1055, [1056] = 1056, [1057] = 1057, [1058] = 1058, - [1059] = 890, - [1060] = 894, - [1061] = 875, + [1059] = 1059, + [1060] = 1054, + [1061] = 1061, [1062] = 1062, - [1063] = 271, + [1063] = 1063, [1064] = 1064, [1065] = 1065, [1066] = 1066, @@ -3656,99 +3655,99 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1068] = 1068, [1069] = 1069, [1070] = 1070, - [1071] = 843, - [1072] = 875, + [1071] = 1071, + [1072] = 1072, [1073] = 1073, [1074] = 1074, [1075] = 1075, [1076] = 1076, [1077] = 1077, - [1078] = 277, + [1078] = 1078, [1079] = 1079, - [1080] = 1080, + [1080] = 842, [1081] = 1081, [1082] = 1082, [1083] = 1083, - [1084] = 1084, + [1084] = 847, [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 1091, + [1086] = 276, + [1087] = 275, + [1088] = 271, + [1089] = 274, + [1090] = 272, + [1091] = 273, [1092] = 1092, - [1093] = 1093, + [1093] = 896, [1094] = 1094, - [1095] = 1095, - [1096] = 1096, + [1095] = 898, + [1096] = 899, [1097] = 1097, [1098] = 1098, [1099] = 1099, - [1100] = 1100, + [1100] = 903, [1101] = 1101, - [1102] = 1102, + [1102] = 905, [1103] = 1103, [1104] = 1104, - [1105] = 1105, + [1105] = 909, [1106] = 1106, - [1107] = 280, + [1107] = 911, [1108] = 1108, [1109] = 1109, [1110] = 1110, - [1111] = 1111, + [1111] = 901, [1112] = 1112, - [1113] = 1113, + [1113] = 900, [1114] = 1114, [1115] = 1115, [1116] = 1116, [1117] = 1117, [1118] = 1118, - [1119] = 1119, + [1119] = 887, [1120] = 1120, - [1121] = 1121, + [1121] = 847, [1122] = 1122, [1123] = 1123, [1124] = 1124, [1125] = 1125, - [1126] = 1126, - [1127] = 1127, + [1126] = 914, + [1127] = 921, [1128] = 1128, [1129] = 1129, [1130] = 1130, [1131] = 1131, [1132] = 1132, - [1133] = 882, - [1134] = 1134, + [1133] = 1133, + [1134] = 904, [1135] = 1135, [1136] = 1136, [1137] = 1137, [1138] = 1138, - [1139] = 875, + [1139] = 1139, [1140] = 1140, - [1141] = 843, - [1142] = 1142, + [1141] = 1141, + [1142] = 276, [1143] = 1143, [1144] = 1144, [1145] = 1145, - [1146] = 1146, + [1146] = 275, [1147] = 1147, [1148] = 1148, - [1149] = 875, + [1149] = 1149, [1150] = 1150, - [1151] = 843, - [1152] = 272, + [1151] = 1151, + [1152] = 271, [1153] = 1153, - [1154] = 1142, + [1154] = 1154, [1155] = 1155, - [1156] = 1143, + [1156] = 274, [1157] = 1157, [1158] = 1158, [1159] = 1159, [1160] = 1160, - [1161] = 273, - [1162] = 272, - [1163] = 275, + [1161] = 1161, + [1162] = 1162, + [1163] = 1163, [1164] = 1164, [1165] = 1165, [1166] = 1166, @@ -3759,9274 +3758,8986 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1171] = 1171, [1172] = 1172, [1173] = 1173, - [1174] = 271, + [1174] = 1174, [1175] = 1175, [1176] = 1176, [1177] = 1177, - [1178] = 1178, - [1179] = 1179, + [1178] = 273, + [1179] = 1057, [1180] = 1180, [1181] = 1181, - [1182] = 277, - [1183] = 898, - [1184] = 1184, - [1185] = 899, + [1182] = 1182, + [1183] = 1183, + [1184] = 272, + [1185] = 1185, [1186] = 1186, [1187] = 1187, - [1188] = 901, - [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 905, - [1193] = 907, - [1194] = 1194, - [1195] = 908, - [1196] = 881, - [1197] = 1197, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1207, - [1208] = 883, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 944, - [1213] = 942, - [1214] = 936, - [1215] = 1215, - [1216] = 361, - [1217] = 373, - [1218] = 365, - [1219] = 271, - [1220] = 833, - [1221] = 364, - [1222] = 280, + [1188] = 372, + [1189] = 374, + [1190] = 271, + [1191] = 360, + [1192] = 366, + [1193] = 364, + [1194] = 368, + [1195] = 369, + [1196] = 370, + [1197] = 373, + [1198] = 820, + [1199] = 379, + [1200] = 378, + [1201] = 376, + [1202] = 361, + [1203] = 275, + [1204] = 367, + [1205] = 374, + [1206] = 375, + [1207] = 814, + [1208] = 377, + [1209] = 363, + [1210] = 359, + [1211] = 273, + [1212] = 276, + [1213] = 366, + [1214] = 272, + [1215] = 364, + [1216] = 368, + [1217] = 369, + [1218] = 370, + [1219] = 373, + [1220] = 379, + [1221] = 378, + [1222] = 376, [1223] = 361, - [1224] = 273, - [1225] = 362, - [1226] = 371, - [1227] = 277, - [1228] = 371, - [1229] = 377, - [1230] = 363, - [1231] = 830, - [1232] = 370, + [1224] = 372, + [1225] = 847, + [1226] = 377, + [1227] = 822, + [1228] = 274, + [1229] = 360, + [1230] = 367, + [1231] = 363, + [1232] = 818, [1233] = 359, - [1234] = 376, - [1235] = 275, - [1236] = 828, - [1237] = 362, - [1238] = 835, - [1239] = 379, - [1240] = 369, - [1241] = 373, - [1242] = 368, - [1243] = 360, - [1244] = 838, - [1245] = 377, - [1246] = 379, - [1247] = 272, - [1248] = 843, - [1249] = 875, - [1250] = 367, - [1251] = 366, - [1252] = 378, - [1253] = 378, - [1254] = 374, - [1255] = 370, - [1256] = 363, - [1257] = 364, - [1258] = 365, - [1259] = 366, - [1260] = 367, - [1261] = 360, - [1262] = 368, - [1263] = 369, - [1264] = 359, - [1265] = 1265, - [1266] = 1265, - [1267] = 843, - [1268] = 875, - [1269] = 1265, - [1270] = 843, - [1271] = 830, - [1272] = 1265, - [1273] = 1171, - [1274] = 875, - [1275] = 1170, - [1276] = 875, - [1277] = 1169, - [1278] = 1076, - [1279] = 1075, - [1280] = 1265, - [1281] = 1265, - [1282] = 835, - [1283] = 1265, - [1284] = 1265, - [1285] = 1265, - [1286] = 875, - [1287] = 859, - [1288] = 1265, - [1289] = 277, - [1290] = 843, - [1291] = 838, - [1292] = 867, - [1293] = 873, - [1294] = 273, - [1295] = 854, - [1296] = 1265, - [1297] = 833, - [1298] = 272, - [1299] = 1265, - [1300] = 271, - [1301] = 1265, - [1302] = 1265, - [1303] = 858, - [1304] = 1265, - [1305] = 1265, - [1306] = 1164, - [1307] = 843, - [1308] = 828, - [1309] = 1265, - [1310] = 1265, - [1311] = 1265, - [1312] = 1265, - [1313] = 857, - [1314] = 1265, - [1315] = 848, - [1316] = 280, - [1317] = 1265, - [1318] = 1265, - [1319] = 1265, - [1320] = 275, - [1321] = 855, - [1322] = 1322, - [1323] = 1323, - [1324] = 1324, - [1325] = 1323, - [1326] = 1322, - [1327] = 1324, - [1328] = 1323, - [1329] = 858, - [1330] = 1324, - [1331] = 1323, - [1332] = 1322, - [1333] = 1322, - [1334] = 1324, - [1335] = 899, - [1336] = 1323, - [1337] = 1322, - [1338] = 1324, - [1339] = 1323, - [1340] = 1324, - [1341] = 1323, - [1342] = 901, - [1343] = 1322, - [1344] = 1324, - [1345] = 1323, - [1346] = 1322, - [1347] = 1324, - [1348] = 391, - [1349] = 1323, - [1350] = 1322, - [1351] = 855, - [1352] = 390, - [1353] = 1324, - [1354] = 1322, - [1355] = 1323, - [1356] = 1323, - [1357] = 1322, - [1358] = 879, - [1359] = 845, - [1360] = 854, - [1361] = 1322, - [1362] = 850, - [1363] = 905, - [1364] = 870, - [1365] = 859, - [1366] = 907, - [1367] = 851, - [1368] = 389, - [1369] = 1324, - [1370] = 898, - [1371] = 852, - [1372] = 908, - [1373] = 881, - [1374] = 853, - [1375] = 1324, - [1376] = 390, - [1377] = 391, - [1378] = 389, - [1379] = 1323, - [1380] = 1324, - [1381] = 1322, - [1382] = 1323, - [1383] = 1324, - [1384] = 392, - [1385] = 380, - [1386] = 1324, - [1387] = 1323, - [1388] = 1322, - [1389] = 1322, - [1390] = 1324, - [1391] = 380, - [1392] = 1324, - [1393] = 1322, - [1394] = 1322, - [1395] = 849, - [1396] = 944, - [1397] = 1324, - [1398] = 843, - [1399] = 875, - [1400] = 942, - [1401] = 936, - [1402] = 1323, - [1403] = 1322, - [1404] = 1324, - [1405] = 392, - [1406] = 1323, - [1407] = 1324, - [1408] = 1323, - [1409] = 1322, - [1410] = 1323, - [1411] = 857, - [1412] = 1323, - [1413] = 856, - [1414] = 1414, - [1415] = 847, - [1416] = 1416, - [1417] = 364, - [1418] = 361, - [1419] = 374, - [1420] = 1420, - [1421] = 378, - [1422] = 379, - [1423] = 856, - [1424] = 416, - [1425] = 373, - [1426] = 368, - [1427] = 365, - [1428] = 371, - [1429] = 853, - [1430] = 366, - [1431] = 847, - [1432] = 362, - [1433] = 377, - [1434] = 850, - [1435] = 367, - [1436] = 410, - [1437] = 360, - [1438] = 848, - [1439] = 892, - [1440] = 363, - [1441] = 851, - [1442] = 412, - [1443] = 369, - [1444] = 359, - [1445] = 894, - [1446] = 414, - [1447] = 370, - [1448] = 417, - [1449] = 412, - [1450] = 416, - [1451] = 879, - [1452] = 890, - [1453] = 376, - [1454] = 873, - [1455] = 417, - [1456] = 852, - [1457] = 1457, - [1458] = 414, - [1459] = 845, - [1460] = 849, - [1461] = 870, - [1462] = 410, - [1463] = 867, - [1464] = 1464, - [1465] = 1465, - [1466] = 1464, - [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 1470, - [1471] = 1471, - [1472] = 1472, - [1473] = 1465, - [1474] = 1474, + [1234] = 365, + [1235] = 815, + [1236] = 842, + [1237] = 842, + [1238] = 1238, + [1239] = 1238, + [1240] = 1058, + [1241] = 1238, + [1242] = 1238, + [1243] = 272, + [1244] = 847, + [1245] = 1238, + [1246] = 1238, + [1247] = 1238, + [1248] = 1238, + [1249] = 1238, + [1250] = 849, + [1251] = 1040, + [1252] = 1035, + [1253] = 848, + [1254] = 845, + [1255] = 1238, + [1256] = 844, + [1257] = 1238, + [1258] = 837, + [1259] = 831, + [1260] = 1238, + [1261] = 276, + [1262] = 1238, + [1263] = 842, + [1264] = 814, + [1265] = 847, + [1266] = 275, + [1267] = 846, + [1268] = 852, + [1269] = 1238, + [1270] = 1238, + [1271] = 274, + [1272] = 1238, + [1273] = 847, + [1274] = 842, + [1275] = 1238, + [1276] = 1238, + [1277] = 820, + [1278] = 847, + [1279] = 1051, + [1280] = 273, + [1281] = 1034, + [1282] = 1238, + [1283] = 271, + [1284] = 1028, + [1285] = 1238, + [1286] = 1238, + [1287] = 842, + [1288] = 1238, + [1289] = 818, + [1290] = 815, + [1291] = 822, + [1292] = 1238, + [1293] = 1238, + [1294] = 1294, + [1295] = 832, + [1296] = 1296, + [1297] = 1294, + [1298] = 1294, + [1299] = 1299, + [1300] = 845, + [1301] = 1299, + [1302] = 1294, + [1303] = 386, + [1304] = 387, + [1305] = 1296, + [1306] = 844, + [1307] = 1294, + [1308] = 1299, + [1309] = 1294, + [1310] = 1294, + [1311] = 1296, + [1312] = 1299, + [1313] = 1294, + [1314] = 1296, + [1315] = 1299, + [1316] = 1299, + [1317] = 384, + [1318] = 1299, + [1319] = 1296, + [1320] = 1299, + [1321] = 1296, + [1322] = 1294, + [1323] = 393, + [1324] = 1296, + [1325] = 1296, + [1326] = 837, + [1327] = 849, + [1328] = 1294, + [1329] = 1294, + [1330] = 1296, + [1331] = 1299, + [1332] = 1294, + [1333] = 1296, + [1334] = 1299, + [1335] = 1296, + [1336] = 1336, + [1337] = 847, + [1338] = 1299, + [1339] = 1296, + [1340] = 848, + [1341] = 900, + [1342] = 842, + [1343] = 901, + [1344] = 887, + [1345] = 857, + [1346] = 855, + [1347] = 829, + [1348] = 1299, + [1349] = 835, + [1350] = 850, + [1351] = 393, + [1352] = 1299, + [1353] = 859, + [1354] = 1294, + [1355] = 1296, + [1356] = 1294, + [1357] = 1299, + [1358] = 387, + [1359] = 386, + [1360] = 1294, + [1361] = 1296, + [1362] = 911, + [1363] = 853, + [1364] = 1296, + [1365] = 1299, + [1366] = 1294, + [1367] = 909, + [1368] = 905, + [1369] = 903, + [1370] = 1299, + [1371] = 899, + [1372] = 898, + [1373] = 896, + [1374] = 1296, + [1375] = 1299, + [1376] = 1294, + [1377] = 1296, + [1378] = 1299, + [1379] = 1296, + [1380] = 1294, + [1381] = 1299, + [1382] = 1296, + [1383] = 384, + [1384] = 374, + [1385] = 359, + [1386] = 372, + [1387] = 867, + [1388] = 379, + [1389] = 411, + [1390] = 832, + [1391] = 835, + [1392] = 377, + [1393] = 921, + [1394] = 831, + [1395] = 378, + [1396] = 365, + [1397] = 925, + [1398] = 363, + [1399] = 376, + [1400] = 1400, + [1401] = 373, + [1402] = 407, + [1403] = 370, + [1404] = 369, + [1405] = 409, + [1406] = 368, + [1407] = 364, + [1408] = 410, + [1409] = 366, + [1410] = 360, + [1411] = 852, + [1412] = 1412, + [1413] = 375, + [1414] = 855, + [1415] = 367, + [1416] = 361, + [1417] = 1417, + [1418] = 411, + [1419] = 846, + [1420] = 853, + [1421] = 410, + [1422] = 409, + [1423] = 850, + [1424] = 859, + [1425] = 407, + [1426] = 857, + [1427] = 829, + [1428] = 1428, + [1429] = 1429, + [1430] = 1430, + [1431] = 1431, + [1432] = 1428, + [1433] = 1433, + [1434] = 1434, + [1435] = 1435, + [1436] = 1436, + [1437] = 372, + [1438] = 1438, + [1439] = 1439, + [1440] = 1440, + [1441] = 1441, + [1442] = 1442, + [1443] = 1443, + [1444] = 1444, + [1445] = 1445, + [1446] = 1446, + [1447] = 1447, + [1448] = 1448, + [1449] = 1449, + [1450] = 1450, + [1451] = 887, + [1452] = 1446, + [1453] = 1453, + [1454] = 1454, + [1455] = 1449, + [1456] = 1456, + [1457] = 1434, + [1458] = 1435, + [1459] = 1459, + [1460] = 1453, + [1461] = 1454, + [1462] = 1449, + [1463] = 1456, + [1464] = 1447, + [1465] = 1434, + [1466] = 1444, + [1467] = 1435, + [1468] = 1449, + [1469] = 1453, + [1470] = 1454, + [1471] = 1449, + [1472] = 1456, + [1473] = 1443, + [1474] = 1434, [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 1478, - [1479] = 1479, - [1480] = 1480, - [1481] = 1481, - [1482] = 1478, - [1483] = 1483, + [1476] = 1435, + [1477] = 1454, + [1478] = 1442, + [1479] = 1441, + [1480] = 1453, + [1481] = 1454, + [1482] = 1449, + [1483] = 1456, [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1484, - [1488] = 1484, - [1489] = 1464, - [1490] = 1490, - [1491] = 1491, - [1492] = 1464, - [1493] = 1476, - [1494] = 1468, - [1495] = 1490, - [1496] = 1468, - [1497] = 1497, + [1485] = 1434, + [1486] = 1435, + [1487] = 1453, + [1488] = 1453, + [1489] = 1454, + [1490] = 1438, + [1491] = 1449, + [1492] = 1456, + [1493] = 1484, + [1494] = 1434, + [1495] = 1435, + [1496] = 1496, + [1497] = 1440, [1498] = 1498, - [1499] = 1499, - [1500] = 1478, - [1501] = 1501, - [1502] = 1501, - [1503] = 1491, - [1504] = 1468, - [1505] = 1464, - [1506] = 1479, - [1507] = 901, + [1499] = 1456, + [1500] = 1433, + [1501] = 1428, + [1502] = 1438, + [1503] = 1447, + [1504] = 1431, + [1505] = 1430, + [1506] = 1453, + [1507] = 1507, [1508] = 1508, - [1509] = 1484, - [1510] = 1476, - [1511] = 1511, - [1512] = 1501, - [1513] = 1513, - [1514] = 1497, - [1515] = 1501, - [1516] = 1490, - [1517] = 1470, + [1509] = 1454, + [1510] = 1510, + [1511] = 1429, + [1512] = 1449, + [1513] = 1496, + [1514] = 1456, + [1515] = 1515, + [1516] = 1484, + [1517] = 1434, [1518] = 1518, - [1519] = 1501, + [1519] = 1459, [1520] = 1520, [1521] = 1521, - [1522] = 1470, - [1523] = 1523, - [1524] = 1468, - [1525] = 1498, - [1526] = 944, - [1527] = 1523, - [1528] = 1528, - [1529] = 1470, - [1530] = 1513, - [1531] = 1497, - [1532] = 1490, - [1533] = 1484, + [1522] = 1430, + [1523] = 1431, + [1524] = 1428, + [1525] = 1433, + [1526] = 1440, + [1527] = 1441, + [1528] = 1442, + [1529] = 1443, + [1530] = 1530, + [1531] = 1444, + [1532] = 1484, + [1533] = 1459, [1534] = 1498, - [1535] = 1513, - [1536] = 1490, - [1537] = 1508, - [1538] = 1508, - [1539] = 1501, - [1540] = 1520, - [1541] = 1469, - [1542] = 1479, - [1543] = 1483, - [1544] = 1481, - [1545] = 1480, - [1546] = 1464, - [1547] = 1468, - [1548] = 1467, - [1549] = 990, - [1550] = 1501, - [1551] = 1479, - [1552] = 1479, - [1553] = 1471, - [1554] = 1490, - [1555] = 1490, - [1556] = 1501, - [1557] = 1501, - [1558] = 1498, - [1559] = 1508, - [1560] = 1513, - [1561] = 1468, - [1562] = 1491, - [1563] = 1470, - [1564] = 1484, - [1565] = 1464, - [1566] = 1523, - [1567] = 1464, - [1568] = 1484, - [1569] = 1478, - [1570] = 1472, - [1571] = 1528, - [1572] = 1465, - [1573] = 1528, - [1574] = 1523, - [1575] = 1474, - [1576] = 1499, - [1577] = 1497, - [1578] = 1475, - [1579] = 1497, - [1580] = 1464, - [1581] = 1468, - [1582] = 1520, - [1583] = 1501, - [1584] = 1490, - [1585] = 1490, - [1586] = 1475, - [1587] = 1498, - [1588] = 1474, - [1589] = 1470, - [1590] = 1470, - [1591] = 1490, - [1592] = 1484, - [1593] = 1593, - [1594] = 1464, - [1595] = 1468, - [1596] = 1501, - [1597] = 1470, - [1598] = 1528, - [1599] = 1599, - [1600] = 1600, - [1601] = 1498, - [1602] = 1468, - [1603] = 1479, - [1604] = 1469, - [1605] = 1605, - [1606] = 1497, - [1607] = 1528, - [1608] = 1498, - [1609] = 1479, - [1610] = 1479, - [1611] = 1469, - [1612] = 1497, - [1613] = 1464, - [1614] = 1484, - [1615] = 1615, - [1616] = 1528, - [1617] = 1470, - [1618] = 1490, - [1619] = 1498, - [1620] = 1465, - [1621] = 899, - [1622] = 1491, - [1623] = 1511, - [1624] = 1477, - [1625] = 1475, - [1626] = 1474, - [1627] = 1465, - [1628] = 1472, - [1629] = 1471, - [1630] = 1467, - [1631] = 1480, - [1632] = 1481, - [1633] = 1483, - [1634] = 1520, - [1635] = 1501, - [1636] = 1508, - [1637] = 1513, - [1638] = 1468, - [1639] = 1464, - [1640] = 1484, - [1641] = 1470, - [1642] = 1490, - [1643] = 362, - [1644] = 363, - [1645] = 364, - [1646] = 365, - [1647] = 996, - [1648] = 366, - [1649] = 367, - [1650] = 360, - [1651] = 368, - [1652] = 369, - [1653] = 359, - [1654] = 1501, - [1655] = 1468, - [1656] = 1484, - [1657] = 1478, - [1658] = 1501, - [1659] = 1464, - [1660] = 370, - [1661] = 1464, - [1662] = 1491, - [1663] = 371, - [1664] = 376, - [1665] = 1477, - [1666] = 1475, - [1667] = 1474, - [1668] = 1465, - [1669] = 1501, - [1670] = 1472, - [1671] = 1484, - [1672] = 1471, - [1673] = 1470, - [1674] = 1490, - [1675] = 1467, - [1676] = 1480, - [1677] = 1481, - [1678] = 1483, - [1679] = 1520, - [1680] = 373, - [1681] = 1477, - [1682] = 1501, - [1683] = 1508, - [1684] = 1472, - [1685] = 1513, - [1686] = 1468, - [1687] = 1464, - [1688] = 1484, - [1689] = 1478, - [1690] = 361, - [1691] = 1491, - [1692] = 1490, - [1693] = 363, - [1694] = 364, - [1695] = 365, - [1696] = 366, - [1697] = 367, - [1698] = 360, - [1699] = 368, - [1700] = 369, - [1701] = 359, - [1702] = 370, - [1703] = 1491, - [1704] = 1470, - [1705] = 1478, - [1706] = 1477, - [1707] = 1475, - [1708] = 1474, - [1709] = 1465, - [1710] = 1472, - [1711] = 1470, - [1712] = 1471, - [1713] = 1467, - [1714] = 1480, - [1715] = 1484, - [1716] = 1464, - [1717] = 1468, - [1718] = 1481, - [1719] = 1490, - [1720] = 1483, - [1721] = 1481, - [1722] = 440, - [1723] = 1479, - [1724] = 1520, - [1725] = 1520, - [1726] = 1483, - [1727] = 1491, - [1728] = 1481, - [1729] = 1508, - [1730] = 1468, - [1731] = 1513, - [1732] = 1501, - [1733] = 1490, - [1734] = 1470, - [1735] = 1478, - [1736] = 1464, - [1737] = 1528, - [1738] = 907, - [1739] = 1501, - [1740] = 1478, - [1741] = 1528, - [1742] = 1498, - [1743] = 1468, - [1744] = 1491, - [1745] = 1478, - [1746] = 1477, - [1747] = 1475, - [1748] = 1474, - [1749] = 1465, - [1750] = 1472, - [1751] = 1471, - [1752] = 1467, - [1753] = 1480, - [1754] = 1480, - [1755] = 1481, - [1756] = 1483, - [1757] = 1467, - [1758] = 1471, - [1759] = 1520, - [1760] = 1477, - [1761] = 1468, - [1762] = 1472, - [1763] = 1508, - [1764] = 1465, - [1765] = 1464, - [1766] = 1474, - [1767] = 1484, - [1768] = 1513, - [1769] = 1475, - [1770] = 1477, - [1771] = 1478, - [1772] = 1470, - [1773] = 1773, - [1774] = 1490, - [1775] = 1775, - [1776] = 1513, - [1777] = 1501, - [1778] = 1010, - [1779] = 1468, - [1780] = 1464, - [1781] = 1491, - [1782] = 1478, - [1783] = 1528, - [1784] = 1477, - [1785] = 1475, - [1786] = 1497, - [1787] = 1474, - [1788] = 1490, - [1789] = 1465, - [1790] = 1484, - [1791] = 1472, - [1792] = 1471, - [1793] = 1467, - [1794] = 1480, - [1795] = 1481, - [1796] = 1483, - [1797] = 1497, - [1798] = 374, - [1799] = 1520, - [1800] = 373, - [1801] = 1508, - [1802] = 1484, - [1803] = 1491, - [1804] = 1469, - [1805] = 1513, - [1806] = 1476, - [1807] = 1491, - [1808] = 1479, - [1809] = 1471, - [1810] = 1508, - [1811] = 1497, - [1812] = 1476, - [1813] = 1484, - [1814] = 1464, - [1815] = 1470, - [1816] = 1468, - [1817] = 1501, - [1818] = 1490, - [1819] = 1470, - [1820] = 1513, - [1821] = 371, - [1822] = 1513, - [1823] = 1508, - [1824] = 1508, - [1825] = 1467, - [1826] = 1476, - [1827] = 1513, - [1828] = 1508, - [1829] = 1480, - [1830] = 1498, - [1831] = 1520, - [1832] = 1481, - [1833] = 441, - [1834] = 905, - [1835] = 1499, - [1836] = 1520, - [1837] = 362, - [1838] = 1501, - [1839] = 1528, - [1840] = 432, - [1841] = 1491, - [1842] = 1523, - [1843] = 1483, - [1844] = 1477, - [1845] = 1475, - [1846] = 1474, - [1847] = 908, - [1848] = 1484, - [1849] = 1483, - [1850] = 1520, - [1851] = 1464, - [1852] = 1480, - [1853] = 898, - [1854] = 379, - [1855] = 1467, - [1856] = 1468, - [1857] = 430, - [1858] = 1498, - [1859] = 1501, - [1860] = 1528, - [1861] = 1471, - [1862] = 1497, - [1863] = 1472, - [1864] = 1469, - [1865] = 1465, - [1866] = 1474, - [1867] = 1475, - [1868] = 1477, - [1869] = 1483, - [1870] = 1481, - [1871] = 1480, - [1872] = 1467, - [1873] = 1478, - [1874] = 1491, - [1875] = 1470, - [1876] = 1479, - [1877] = 1483, - [1878] = 429, - [1879] = 1471, - [1880] = 1472, - [1881] = 1465, - [1882] = 1474, - [1883] = 1475, - [1884] = 1528, - [1885] = 1477, - [1886] = 1478, - [1887] = 1490, - [1888] = 1470, - [1889] = 1497, - [1890] = 1481, - [1891] = 1498, - [1892] = 1484, - [1893] = 1490, - [1894] = 1468, - [1895] = 1501, - [1896] = 1528, - [1897] = 1490, - [1898] = 1470, - [1899] = 1477, - [1900] = 1480, - [1901] = 1484, - [1902] = 1467, - [1903] = 1464, - [1904] = 1468, - [1905] = 1501, - [1906] = 1490, - [1907] = 1470, - [1908] = 1491, - [1909] = 1479, - [1910] = 1910, - [1911] = 1484, - [1912] = 1464, - [1913] = 1471, - [1914] = 1498, - [1915] = 1915, - [1916] = 1465, - [1917] = 1468, - [1918] = 1478, - [1919] = 1501, - [1920] = 1523, - [1921] = 1475, - [1922] = 1474, - [1923] = 1490, - [1924] = 1470, - [1925] = 1615, - [1926] = 1484, - [1927] = 1464, - [1928] = 1468, - [1929] = 1501, - [1930] = 1523, - [1931] = 1490, - [1932] = 1528, - [1933] = 1499, - [1934] = 1470, - [1935] = 1511, - [1936] = 1513, - [1937] = 1508, - [1938] = 1465, - [1939] = 1528, - [1940] = 1498, - [1941] = 1472, - [1942] = 1471, - [1943] = 1483, - [1944] = 1475, - [1945] = 1528, - [1946] = 1497, - [1947] = 1474, - [1948] = 1476, - [1949] = 1477, - [1950] = 1615, - [1951] = 1472, - [1952] = 1467, - [1953] = 1470, - [1954] = 1472, - [1955] = 1480, - [1956] = 1481, - [1957] = 1498, - [1958] = 1910, - [1959] = 1511, - [1960] = 1483, - [1961] = 1499, - [1962] = 1962, - [1963] = 378, - [1964] = 1478, - [1965] = 1965, - [1966] = 379, - [1967] = 1490, - [1968] = 1520, - [1969] = 377, - [1970] = 1471, - [1971] = 1465, - [1972] = 378, - [1973] = 1910, - [1974] = 1497, - [1975] = 377, - [1976] = 1472, - [1977] = 1513, - [1978] = 1508, - [1979] = 1520, - [1980] = 1520, - [1981] = 1467, - [1982] = 1470, - [1983] = 1470, - [1984] = 1523, - [1985] = 1474, - [1986] = 1476, - [1987] = 1481, - [1988] = 1475, - [1989] = 1471, - [1990] = 1467, - [1991] = 1469, - [1992] = 1497, - [1993] = 1469, - [1994] = 1491, - [1995] = 1497, - [1996] = 1483, - [1997] = 1478, - [1998] = 1511, - [1999] = 1483, - [2000] = 1481, - [2001] = 1497, - [2002] = 1480, - [2003] = 1479, - [2004] = 1477, - [2005] = 1480, - [2006] = 1498, - [2007] = 1528, - [2008] = 1497, - [2009] = 1501, - [2010] = 1481, - [2011] = 1479, - [2012] = 1479, - [2013] = 1491, - [2014] = 1467, - [2015] = 1498, - [2016] = 1483, - [2017] = 1468, - [2018] = 1471, - [2019] = 1508, - [2020] = 1520, - [2021] = 1615, - [2022] = 1481, - [2023] = 1491, - [2024] = 1520, - [2025] = 1508, - [2026] = 1513, - [2027] = 1513, - [2028] = 1464, - [2029] = 1476, - [2030] = 1478, - [2031] = 1528, - [2032] = 1528, - [2033] = 1523, - [2034] = 1520, - [2035] = 1480, - [2036] = 1467, - [2037] = 1479, - [2038] = 1469, - [2039] = 1497, - [2040] = 1490, - [2041] = 1910, - [2042] = 1615, - [2043] = 1528, - [2044] = 1498, - [2045] = 1471, - [2046] = 1472, - [2047] = 1465, - [2048] = 1474, - [2049] = 1475, - [2050] = 1523, - [2051] = 1511, - [2052] = 1484, - [2053] = 1484, - [2054] = 1479, - [2055] = 1528, - [2056] = 1523, - [2057] = 1499, - [2058] = 1476, - [2059] = 1484, - [2060] = 1472, - [2061] = 1479, - [2062] = 1464, - [2063] = 1477, - [2064] = 1498, - [2065] = 1491, - [2066] = 1615, - [2067] = 1478, - [2068] = 1465, - [2069] = 1508, - [2070] = 1513, - [2071] = 1498, - [2072] = 1478, - [2073] = 1474, - [2074] = 1475, - [2075] = 1497, - [2076] = 1477, - [2077] = 1479, - [2078] = 1520, - [2079] = 1480, - [2080] = 1528, - [2081] = 1484, - [2082] = 1464, - [2083] = 1498, - [2084] = 1497, - [2085] = 1475, - [2086] = 1479, - [2087] = 1498, - [2088] = 1497, - [2089] = 1479, - [2090] = 1498, - [2091] = 1497, - [2092] = 1479, - [2093] = 1483, - [2094] = 1477, - [2095] = 1498, - [2096] = 1513, - [2097] = 1508, - [2098] = 1010, - [2099] = 936, - [2100] = 1497, - [2101] = 1479, - [2102] = 1498, - [2103] = 1497, - [2104] = 1478, - [2105] = 1479, - [2106] = 1528, - [2107] = 1481, - [2108] = 1508, - [2109] = 1480, - [2110] = 1520, - [2111] = 1474, - [2112] = 1467, - [2113] = 972, - [2114] = 881, - [2115] = 1528, - [2116] = 1483, - [2117] = 1481, - [2118] = 1471, - [2119] = 1497, - [2120] = 1480, - [2121] = 1467, - [2122] = 1491, - [2123] = 1471, - [2124] = 1472, - [2125] = 2125, - [2126] = 1483, - [2127] = 1465, - [2128] = 1472, - [2129] = 1471, - [2130] = 1477, - [2131] = 1470, - [2132] = 942, - [2133] = 1467, - [2134] = 1481, - [2135] = 1480, - [2136] = 1465, - [2137] = 1480, - [2138] = 1467, - [2139] = 1474, - [2140] = 1468, - [2141] = 1475, - [2142] = 1477, - [2143] = 1471, - [2144] = 1478, - [2145] = 1513, - [2146] = 1472, - [2147] = 1465, - [2148] = 1481, - [2149] = 1483, - [2150] = 1491, - [2151] = 1476, - [2152] = 1479, - [2153] = 1471, - [2154] = 1472, - [2155] = 2155, - [2156] = 1476, - [2157] = 1474, - [2158] = 2158, - [2159] = 1475, - [2160] = 1477, - [2161] = 1465, - [2162] = 1474, - [2163] = 1475, - [2164] = 1478, - [2165] = 1491, - [2166] = 1479, - [2167] = 1498, - [2168] = 1468, - [2169] = 1513, - [2170] = 1498, - [2171] = 429, - [2172] = 2172, - [2173] = 430, - [2174] = 1475, - [2175] = 361, - [2176] = 1477, - [2177] = 432, - [2178] = 1491, - [2179] = 1910, - [2180] = 1477, - [2181] = 1474, - [2182] = 441, - [2183] = 1523, - [2184] = 1475, - [2185] = 1513, - [2186] = 1491, - [2187] = 1474, - [2188] = 1477, - [2189] = 1475, - [2190] = 1474, - [2191] = 1465, - [2192] = 1465, - [2193] = 1465, - [2194] = 1472, - [2195] = 1471, - [2196] = 1467, - [2197] = 1480, - [2198] = 1481, - [2199] = 1472, - [2200] = 1483, - [2201] = 1520, - [2202] = 1508, - [2203] = 1472, - [2204] = 1508, - [2205] = 1471, - [2206] = 440, - [2207] = 1479, - [2208] = 1467, - [2209] = 1513, - [2210] = 1508, - [2211] = 1480, - [2212] = 1508, - [2213] = 1481, - [2214] = 1483, - [2215] = 1497, - [2216] = 1520, - [2217] = 1513, - [2218] = 1520, - [2219] = 1467, - [2220] = 1478, - [2221] = 1520, - [2222] = 1483, - [2223] = 1481, - [2224] = 1480, - [2225] = 390, - [2226] = 370, - [2227] = 359, - [2228] = 369, - [2229] = 452, - [2230] = 368, - [2231] = 360, - [2232] = 367, - [2233] = 366, - [2234] = 365, - [2235] = 448, - [2236] = 364, - [2237] = 363, - [2238] = 378, - [2239] = 361, - [2240] = 392, - [2241] = 377, - [2242] = 465, - [2243] = 380, - [2244] = 389, - [2245] = 450, - [2246] = 373, - [2247] = 390, - [2248] = 454, - [2249] = 391, - [2250] = 374, - [2251] = 1075, - [2252] = 1076, - [2253] = 843, - [2254] = 875, - [2255] = 843, - [2256] = 1164, - [2257] = 379, - [2258] = 392, - [2259] = 1169, - [2260] = 391, - [2261] = 1170, - [2262] = 452, - [2263] = 1171, - [2264] = 875, - [2265] = 390, - [2266] = 389, - [2267] = 380, - [2268] = 371, - [2269] = 890, - [2270] = 448, - [2271] = 362, - [2272] = 465, - [2273] = 380, - [2274] = 392, - [2275] = 389, - [2276] = 391, - [2277] = 390, - [2278] = 894, - [2279] = 454, - [2280] = 392, - [2281] = 389, - [2282] = 450, - [2283] = 380, - [2284] = 389, - [2285] = 380, - [2286] = 391, - [2287] = 392, - [2288] = 390, - [2289] = 391, - [2290] = 365, - [2291] = 377, - [2292] = 417, - [2293] = 371, - [2294] = 416, - [2295] = 371, - [2296] = 412, - [2297] = 432, - [2298] = 392, - [2299] = 361, - [2300] = 391, - [2301] = 392, - [2302] = 376, - [2303] = 362, - [2304] = 378, - [2305] = 390, - [2306] = 390, - [2307] = 412, - [2308] = 373, - [2309] = 416, - [2310] = 430, - [2311] = 379, - [2312] = 875, - [2313] = 843, - [2314] = 429, - [2315] = 373, - [2316] = 410, - [2317] = 417, - [2318] = 414, - [2319] = 414, - [2320] = 374, - [2321] = 370, - [2322] = 359, - [2323] = 369, - [2324] = 368, - [2325] = 417, - [2326] = 360, - [2327] = 367, - [2328] = 366, - [2329] = 410, - [2330] = 410, - [2331] = 364, - [2332] = 391, - [2333] = 440, - [2334] = 363, - [2335] = 410, - [2336] = 416, - [2337] = 362, - [2338] = 412, - [2339] = 377, - [2340] = 379, - [2341] = 441, - [2342] = 414, - [2343] = 378, - [2344] = 361, - [2345] = 417, - [2346] = 416, - [2347] = 363, - [2348] = 364, - [2349] = 365, - [2350] = 366, - [2351] = 367, - [2352] = 412, - [2353] = 360, - [2354] = 389, - [2355] = 368, - [2356] = 369, - [2357] = 389, - [2358] = 380, - [2359] = 380, - [2360] = 359, - [2361] = 414, - [2362] = 370, - [2363] = 432, - [2364] = 488, - [2365] = 843, - [2366] = 432, - [2367] = 875, - [2368] = 412, - [2369] = 416, - [2370] = 416, - [2371] = 495, - [2372] = 488, - [2373] = 430, - [2374] = 417, - [2375] = 1171, - [2376] = 441, - [2377] = 416, - [2378] = 1076, - [2379] = 1164, - [2380] = 502, - [2381] = 1169, - [2382] = 414, - [2383] = 501, - [2384] = 487, - [2385] = 412, - [2386] = 440, - [2387] = 1075, - [2388] = 492, - [2389] = 510, - [2390] = 490, - [2391] = 414, - [2392] = 489, - [2393] = 491, - [2394] = 490, - [2395] = 499, - [2396] = 493, - [2397] = 489, - [2398] = 500, - [2399] = 429, - [2400] = 412, - [2401] = 1170, - [2402] = 500, - [2403] = 499, - [2404] = 441, - [2405] = 430, - [2406] = 432, - [2407] = 510, - [2408] = 410, - [2409] = 429, - [2410] = 440, - [2411] = 441, - [2412] = 429, - [2413] = 843, - [2414] = 875, - [2415] = 414, - [2416] = 430, - [2417] = 440, - [2418] = 429, - [2419] = 430, - [2420] = 432, - [2421] = 417, - [2422] = 501, - [2423] = 502, - [2424] = 497, - [2425] = 441, - [2426] = 410, - [2427] = 410, - [2428] = 497, - [2429] = 495, - [2430] = 487, - [2431] = 417, - [2432] = 492, - [2433] = 491, - [2434] = 493, - [2435] = 440, - [2436] = 465, - [2437] = 450, - [2438] = 450, - [2439] = 452, - [2440] = 440, - [2441] = 450, - [2442] = 429, - [2443] = 430, + [1535] = 1446, + [1536] = 1498, + [1537] = 1435, + [1538] = 1430, + [1539] = 1447, + [1540] = 1438, + [1541] = 1438, + [1542] = 1508, + [1543] = 1496, + [1544] = 1459, + [1545] = 1459, + [1546] = 1431, + [1547] = 1447, + [1548] = 1430, + [1549] = 1446, + [1550] = 1428, + [1551] = 1444, + [1552] = 1508, + [1553] = 1443, + [1554] = 1431, + [1555] = 1428, + [1556] = 1433, + [1557] = 1440, + [1558] = 1442, + [1559] = 1441, + [1560] = 1447, + [1561] = 1496, + [1562] = 1508, + [1563] = 1433, + [1564] = 1440, + [1565] = 1440, + [1566] = 1496, + [1567] = 1508, + [1568] = 1441, + [1569] = 1442, + [1570] = 1443, + [1571] = 1444, + [1572] = 1446, + [1573] = 1447, + [1574] = 1438, + [1575] = 370, + [1576] = 1433, + [1577] = 1428, + [1578] = 1431, + [1579] = 1430, + [1580] = 1459, + [1581] = 1496, + [1582] = 1484, + [1583] = 1441, + [1584] = 1498, + [1585] = 1585, + [1586] = 1442, + [1587] = 1508, + [1588] = 1453, + [1589] = 1454, + [1590] = 1449, + [1591] = 1508, + [1592] = 1496, + [1593] = 1456, + [1594] = 1459, + [1595] = 1430, + [1596] = 1431, + [1597] = 1428, + [1598] = 1433, + [1599] = 1440, + [1600] = 1441, + [1601] = 1442, + [1602] = 1443, + [1603] = 1444, + [1604] = 1446, + [1605] = 1443, + [1606] = 1447, + [1607] = 1434, + [1608] = 1435, + [1609] = 1484, + [1610] = 1453, + [1611] = 1454, + [1612] = 1438, + [1613] = 1435, + [1614] = 1444, + [1615] = 1498, + [1616] = 1449, + [1617] = 1456, + [1618] = 360, + [1619] = 1434, + [1620] = 366, + [1621] = 365, + [1622] = 364, + [1623] = 368, + [1624] = 1434, + [1625] = 1484, + [1626] = 369, + [1627] = 370, + [1628] = 373, + [1629] = 379, + [1630] = 378, + [1631] = 376, + [1632] = 1435, + [1633] = 372, + [1634] = 1508, + [1635] = 1496, + [1636] = 377, + [1637] = 1459, + [1638] = 1430, + [1639] = 1438, + [1640] = 1453, + [1641] = 1431, + [1642] = 1446, + [1643] = 1444, + [1644] = 1443, + [1645] = 1442, + [1646] = 1441, + [1647] = 1440, + [1648] = 1456, + [1649] = 1433, + [1650] = 1428, + [1651] = 1431, + [1652] = 1430, + [1653] = 1459, + [1654] = 1428, + [1655] = 1496, + [1656] = 1508, + [1657] = 1446, + [1658] = 1454, + [1659] = 1454, + [1660] = 1449, + [1661] = 1433, + [1662] = 1440, + [1663] = 1441, + [1664] = 1442, + [1665] = 1443, + [1666] = 1444, + [1667] = 1446, + [1668] = 363, + [1669] = 1438, + [1670] = 1449, + [1671] = 1456, + [1672] = 1454, + [1673] = 360, + [1674] = 366, + [1675] = 1438, + [1676] = 1447, + [1677] = 1446, + [1678] = 1444, + [1679] = 1443, + [1680] = 1442, + [1681] = 1441, + [1682] = 1440, + [1683] = 1433, + [1684] = 929, + [1685] = 1431, + [1686] = 364, + [1687] = 1430, + [1688] = 368, + [1689] = 1459, + [1690] = 1453, + [1691] = 369, + [1692] = 1496, + [1693] = 1508, + [1694] = 1435, + [1695] = 1453, + [1696] = 1454, + [1697] = 1449, + [1698] = 1456, + [1699] = 1434, + [1700] = 1435, + [1701] = 1453, + [1702] = 1508, + [1703] = 1454, + [1704] = 1449, + [1705] = 1456, + [1706] = 1434, + [1707] = 1438, + [1708] = 900, + [1709] = 1447, + [1710] = 1446, + [1711] = 1444, + [1712] = 1442, + [1713] = 1443, + [1714] = 1434, + [1715] = 1496, + [1716] = 1442, + [1717] = 1441, + [1718] = 1440, + [1719] = 1433, + [1720] = 1428, + [1721] = 1431, + [1722] = 1430, + [1723] = 373, + [1724] = 379, + [1725] = 378, + [1726] = 376, + [1727] = 1459, + [1728] = 1435, + [1729] = 359, + [1730] = 1496, + [1731] = 1508, + [1732] = 1447, + [1733] = 1508, + [1734] = 1453, + [1735] = 1454, + [1736] = 1459, + [1737] = 1449, + [1738] = 1456, + [1739] = 1434, + [1740] = 1435, + [1741] = 1741, + [1742] = 1447, + [1743] = 1496, + [1744] = 1744, + [1745] = 1498, + [1746] = 431, + [1747] = 435, + [1748] = 1447, + [1749] = 1435, + [1750] = 1498, + [1751] = 1434, + [1752] = 1434, + [1753] = 375, + [1754] = 1754, + [1755] = 1438, + [1756] = 1484, + [1757] = 377, + [1758] = 1447, + [1759] = 1456, + [1760] = 1446, + [1761] = 1444, + [1762] = 1443, + [1763] = 1442, + [1764] = 1441, + [1765] = 1459, + [1766] = 1440, + [1767] = 1433, + [1768] = 1428, + [1769] = 1431, + [1770] = 1430, + [1771] = 1449, + [1772] = 1454, + [1773] = 1430, + [1774] = 1459, + [1775] = 1431, + [1776] = 1496, + [1777] = 1428, + [1778] = 1508, + [1779] = 1508, + [1780] = 1433, + [1781] = 1496, + [1782] = 1440, + [1783] = 1484, + [1784] = 1438, + [1785] = 1447, + [1786] = 1446, + [1787] = 1453, + [1788] = 1444, + [1789] = 1443, + [1790] = 363, + [1791] = 1442, + [1792] = 359, + [1793] = 1459, + [1794] = 1441, + [1795] = 1441, + [1796] = 1440, + [1797] = 1433, + [1798] = 1428, + [1799] = 1438, + [1800] = 1431, + [1801] = 1430, + [1802] = 1443, + [1803] = 1459, + [1804] = 1444, + [1805] = 1496, + [1806] = 1446, + [1807] = 901, + [1808] = 1508, + [1809] = 1435, + [1810] = 994, + [1811] = 1484, + [1812] = 1438, + [1813] = 1498, + [1814] = 1434, + [1815] = 1484, + [1816] = 1447, + [1817] = 1456, + [1818] = 1446, + [1819] = 1449, + [1820] = 1444, + [1821] = 1443, + [1822] = 1442, + [1823] = 1441, + [1824] = 1454, + [1825] = 1440, + [1826] = 1430, + [1827] = 1431, + [1828] = 1428, + [1829] = 1433, + [1830] = 1433, + [1831] = 1428, + [1832] = 1431, + [1833] = 1430, + [1834] = 1453, + [1835] = 1835, + [1836] = 1440, + [1837] = 1441, + [1838] = 1442, + [1839] = 1443, + [1840] = 1444, + [1841] = 1435, + [1842] = 1446, + [1843] = 1447, + [1844] = 1459, + [1845] = 374, + [1846] = 1496, + [1847] = 367, + [1848] = 361, + [1849] = 1835, + [1850] = 1450, + [1851] = 1429, + [1852] = 1852, + [1853] = 1450, + [1854] = 1429, + [1855] = 1852, + [1856] = 1450, + [1857] = 1508, + [1858] = 1429, + [1859] = 1496, + [1860] = 1852, + [1861] = 1450, + [1862] = 1429, + [1863] = 1852, + [1864] = 1450, + [1865] = 1429, + [1866] = 994, + [1867] = 1852, + [1868] = 975, + [1869] = 1835, + [1870] = 1450, + [1871] = 374, + [1872] = 367, + [1873] = 1429, + [1874] = 1835, + [1875] = 1852, + [1876] = 1450, + [1877] = 1429, + [1878] = 1835, + [1879] = 1852, + [1880] = 1450, + [1881] = 1429, + [1882] = 1835, + [1883] = 1438, + [1884] = 1852, + [1885] = 1450, + [1886] = 1429, + [1887] = 1835, + [1888] = 1852, + [1889] = 1835, + [1890] = 1450, + [1891] = 1429, + [1892] = 361, + [1893] = 1835, + [1894] = 1852, + [1895] = 1835, + [1896] = 1835, + [1897] = 1435, + [1898] = 1434, + [1899] = 1456, + [1900] = 1449, + [1901] = 1454, + [1902] = 1453, + [1903] = 1435, + [1904] = 1434, + [1905] = 1459, + [1906] = 1456, + [1907] = 1449, + [1908] = 1454, + [1909] = 1835, + [1910] = 1453, + [1911] = 1453, + [1912] = 896, + [1913] = 898, + [1914] = 1438, + [1915] = 1456, + [1916] = 1835, + [1917] = 1917, + [1918] = 911, + [1919] = 1430, + [1920] = 1431, + [1921] = 1428, + [1922] = 1433, + [1923] = 1440, + [1924] = 1441, + [1925] = 1442, + [1926] = 1443, + [1927] = 1498, + [1928] = 1444, + [1929] = 1446, + [1930] = 1447, + [1931] = 1446, + [1932] = 1430, + [1933] = 1431, + [1934] = 1498, + [1935] = 1447, + [1936] = 1435, + [1937] = 1434, + [1938] = 1456, + [1939] = 1449, + [1940] = 1428, + [1941] = 1447, + [1942] = 1433, + [1943] = 1444, + [1944] = 1454, + [1945] = 1453, + [1946] = 1435, + [1947] = 1434, + [1948] = 1456, + [1949] = 1449, + [1950] = 1454, + [1951] = 1453, + [1952] = 1435, + [1953] = 1443, + [1954] = 1434, + [1955] = 1456, + [1956] = 1449, + [1957] = 1454, + [1958] = 1453, + [1959] = 1442, + [1960] = 1449, + [1961] = 1434, + [1962] = 1456, + [1963] = 1449, + [1964] = 1454, + [1965] = 1453, + [1966] = 1435, + [1967] = 1441, + [1968] = 1440, + [1969] = 1434, + [1970] = 1456, + [1971] = 1449, + [1972] = 1454, + [1973] = 1453, + [1974] = 1433, + [1975] = 1435, + [1976] = 1440, + [1977] = 1434, + [1978] = 1456, + [1979] = 1441, + [1980] = 1454, + [1981] = 1453, + [1982] = 1498, + [1983] = 1508, + [1984] = 1496, + [1985] = 1459, + [1986] = 1430, + [1987] = 1431, + [1988] = 1428, + [1989] = 1433, + [1990] = 1484, + [1991] = 1440, + [1992] = 1441, + [1993] = 1442, + [1994] = 1443, + [1995] = 1442, + [1996] = 1444, + [1997] = 1835, + [1998] = 1450, + [1999] = 1428, + [2000] = 1443, + [2001] = 1444, + [2002] = 899, + [2003] = 1429, + [2004] = 1852, + [2005] = 1450, + [2006] = 1431, + [2007] = 1429, + [2008] = 1852, + [2009] = 1450, + [2010] = 1429, + [2011] = 1852, + [2012] = 1450, + [2013] = 1430, + [2014] = 1852, + [2015] = 1450, + [2016] = 1429, + [2017] = 1852, + [2018] = 1446, + [2019] = 1450, + [2020] = 1447, + [2021] = 1429, + [2022] = 1852, + [2023] = 1459, + [2024] = 1450, + [2025] = 1429, + [2026] = 1835, + [2027] = 1852, + [2028] = 1450, + [2029] = 1429, + [2030] = 1835, + [2031] = 1446, + [2032] = 1852, + [2033] = 1450, + [2034] = 1515, + [2035] = 1429, + [2036] = 1835, + [2037] = 1852, + [2038] = 1450, + [2039] = 1515, + [2040] = 1429, + [2041] = 1835, + [2042] = 1852, + [2043] = 1450, + [2044] = 1515, + [2045] = 1429, + [2046] = 1835, + [2047] = 1852, + [2048] = 1450, + [2049] = 1515, + [2050] = 1429, + [2051] = 1917, + [2052] = 1447, + [2053] = 1496, + [2054] = 1508, + [2055] = 1835, + [2056] = 1852, + [2057] = 1530, + [2058] = 1475, + [2059] = 1450, + [2060] = 1515, + [2061] = 1429, + [2062] = 2062, + [2063] = 1917, + [2064] = 1835, + [2065] = 1852, + [2066] = 1438, + [2067] = 1530, + [2068] = 430, + [2069] = 1475, + [2070] = 1450, + [2071] = 1515, + [2072] = 1429, + [2073] = 2062, + [2074] = 1917, + [2075] = 1835, + [2076] = 1852, + [2077] = 1530, + [2078] = 1446, + [2079] = 1475, + [2080] = 1453, + [2081] = 1454, + [2082] = 1449, + [2083] = 1450, + [2084] = 1456, + [2085] = 1515, + [2086] = 1429, + [2087] = 1434, + [2088] = 2062, + [2089] = 1435, + [2090] = 1917, + [2091] = 1835, + [2092] = 1852, + [2093] = 1444, + [2094] = 1443, + [2095] = 1530, + [2096] = 1475, + [2097] = 952, + [2098] = 2098, + [2099] = 2099, + [2100] = 2100, + [2101] = 1442, + [2102] = 2062, + [2103] = 909, + [2104] = 1852, + [2105] = 1441, + [2106] = 1438, + [2107] = 1440, + [2108] = 1433, + [2109] = 1428, + [2110] = 1438, + [2111] = 1431, + [2112] = 1430, + [2113] = 1459, + [2114] = 1475, + [2115] = 1530, + [2116] = 1508, + [2117] = 1496, + [2118] = 1459, + [2119] = 1852, + [2120] = 1430, + [2121] = 1431, + [2122] = 1428, + [2123] = 1433, + [2124] = 1440, + [2125] = 1441, + [2126] = 1442, + [2127] = 1443, + [2128] = 1444, + [2129] = 1446, + [2130] = 1447, + [2131] = 1835, + [2132] = 1438, + [2133] = 1508, + [2134] = 1496, + [2135] = 433, + [2136] = 1459, + [2137] = 1430, + [2138] = 1917, + [2139] = 1431, + [2140] = 1428, + [2141] = 1433, + [2142] = 1440, + [2143] = 1441, + [2144] = 1435, + [2145] = 1442, + [2146] = 2062, + [2147] = 1434, + [2148] = 1443, + [2149] = 1444, + [2150] = 1429, + [2151] = 1515, + [2152] = 1496, + [2153] = 1456, + [2154] = 1508, + [2155] = 1496, + [2156] = 1446, + [2157] = 903, + [2158] = 1447, + [2159] = 1438, + [2160] = 1450, + [2161] = 1508, + [2162] = 1449, + [2163] = 1508, + [2164] = 1498, + [2165] = 1454, + [2166] = 1459, + [2167] = 1435, + [2168] = 1453, + [2169] = 435, + [2170] = 424, + [2171] = 2171, + [2172] = 1438, + [2173] = 431, + [2174] = 1446, + [2175] = 1444, + [2176] = 1443, + [2177] = 1442, + [2178] = 1441, + [2179] = 1440, + [2180] = 433, + [2181] = 424, + [2182] = 1433, + [2183] = 1428, + [2184] = 1431, + [2185] = 1430, + [2186] = 430, + [2187] = 905, + [2188] = 1438, + [2189] = 847, + [2190] = 375, + [2191] = 446, + [2192] = 393, + [2193] = 393, + [2194] = 448, + [2195] = 387, + [2196] = 374, + [2197] = 442, + [2198] = 367, + [2199] = 361, + [2200] = 442, + [2201] = 387, + [2202] = 440, + [2203] = 386, + [2204] = 384, + [2205] = 363, + [2206] = 386, + [2207] = 377, + [2208] = 359, + [2209] = 393, + [2210] = 1035, + [2211] = 453, + [2212] = 384, + [2213] = 1040, + [2214] = 393, + [2215] = 386, + [2216] = 372, + [2217] = 867, + [2218] = 387, + [2219] = 921, + [2220] = 386, + [2221] = 393, + [2222] = 446, + [2223] = 384, + [2224] = 376, + [2225] = 1058, + [2226] = 378, + [2227] = 448, + [2228] = 379, + [2229] = 384, + [2230] = 373, + [2231] = 1051, + [2232] = 370, + [2233] = 842, + [2234] = 369, + [2235] = 368, + [2236] = 384, + [2237] = 847, + [2238] = 1034, + [2239] = 386, + [2240] = 387, + [2241] = 842, + [2242] = 453, + [2243] = 364, + [2244] = 1028, + [2245] = 366, + [2246] = 360, + [2247] = 387, + [2248] = 440, + [2249] = 847, + [2250] = 410, + [2251] = 375, + [2252] = 384, + [2253] = 372, + [2254] = 377, + [2255] = 363, + [2256] = 378, + [2257] = 842, + [2258] = 409, + [2259] = 387, + [2260] = 409, + [2261] = 407, + [2262] = 386, + [2263] = 363, + [2264] = 360, + [2265] = 366, + [2266] = 364, + [2267] = 368, + [2268] = 407, + [2269] = 435, + [2270] = 369, + [2271] = 370, + [2272] = 373, + [2273] = 374, + [2274] = 379, + [2275] = 378, + [2276] = 410, + [2277] = 367, + [2278] = 376, + [2279] = 411, + [2280] = 359, + [2281] = 372, + [2282] = 386, + [2283] = 430, + [2284] = 361, + [2285] = 367, + [2286] = 361, + [2287] = 431, + [2288] = 409, + [2289] = 410, + [2290] = 384, + [2291] = 393, + [2292] = 365, + [2293] = 393, + [2294] = 407, + [2295] = 407, + [2296] = 360, + [2297] = 359, + [2298] = 366, + [2299] = 364, + [2300] = 409, + [2301] = 368, + [2302] = 411, + [2303] = 411, + [2304] = 424, + [2305] = 369, + [2306] = 374, + [2307] = 410, + [2308] = 387, + [2309] = 370, + [2310] = 411, + [2311] = 373, + [2312] = 376, + [2313] = 377, + [2314] = 433, + [2315] = 379, + [2316] = 409, + [2317] = 847, + [2318] = 409, + [2319] = 424, + [2320] = 481, + [2321] = 480, + [2322] = 484, + [2323] = 431, + [2324] = 435, + [2325] = 483, + [2326] = 490, + [2327] = 502, + [2328] = 410, + [2329] = 513, + [2330] = 433, + [2331] = 487, + [2332] = 489, + [2333] = 498, + [2334] = 492, + [2335] = 433, + [2336] = 483, + [2337] = 492, + [2338] = 503, + [2339] = 484, + [2340] = 488, + [2341] = 424, + [2342] = 482, + [2343] = 411, + [2344] = 410, + [2345] = 407, + [2346] = 431, + [2347] = 430, + [2348] = 482, + [2349] = 1034, + [2350] = 435, + [2351] = 498, + [2352] = 513, + [2353] = 489, + [2354] = 409, + [2355] = 488, + [2356] = 1051, + [2357] = 435, + [2358] = 430, + [2359] = 407, + [2360] = 487, + [2361] = 490, + [2362] = 431, + [2363] = 480, + [2364] = 433, + [2365] = 410, + [2366] = 481, + [2367] = 424, + [2368] = 411, + [2369] = 842, + [2370] = 847, + [2371] = 502, + [2372] = 424, + [2373] = 503, + [2374] = 1028, + [2375] = 430, + [2376] = 1040, + [2377] = 433, + [2378] = 411, + [2379] = 1035, + [2380] = 407, + [2381] = 431, + [2382] = 1058, + [2383] = 430, + [2384] = 435, + [2385] = 842, + [2386] = 386, + [2387] = 393, + [2388] = 448, + [2389] = 453, + [2390] = 424, + [2391] = 435, + [2392] = 433, + [2393] = 430, + [2394] = 453, + [2395] = 433, + [2396] = 440, + [2397] = 442, + [2398] = 440, + [2399] = 384, + [2400] = 446, + [2401] = 448, + [2402] = 393, + [2403] = 431, + [2404] = 446, + [2405] = 387, + [2406] = 430, + [2407] = 446, + [2408] = 448, + [2409] = 386, + [2410] = 431, + [2411] = 440, + [2412] = 435, + [2413] = 442, + [2414] = 453, + [2415] = 384, + [2416] = 387, + [2417] = 424, + [2418] = 442, + [2419] = 374, + [2420] = 448, + [2421] = 411, + [2422] = 410, + [2423] = 361, + [2424] = 446, + [2425] = 367, + [2426] = 370, + [2427] = 409, + [2428] = 453, + [2429] = 369, + [2430] = 368, + [2431] = 407, + [2432] = 379, + [2433] = 364, + [2434] = 366, + [2435] = 431, + [2436] = 378, + [2437] = 424, + [2438] = 409, + [2439] = 376, + [2440] = 430, + [2441] = 442, + [2442] = 373, + [2443] = 407, [2444] = 430, - [2445] = 429, - [2446] = 452, - [2447] = 465, - [2448] = 448, - [2449] = 391, - [2450] = 389, - [2451] = 448, - [2452] = 432, + [2445] = 372, + [2446] = 424, + [2447] = 433, + [2448] = 365, + [2449] = 377, + [2450] = 363, + [2451] = 410, + [2452] = 446, [2453] = 440, - [2454] = 389, - [2455] = 448, - [2456] = 441, - [2457] = 380, - [2458] = 380, - [2459] = 454, - [2460] = 392, - [2461] = 432, - [2462] = 452, - [2463] = 465, - [2464] = 441, - [2465] = 391, - [2466] = 454, - [2467] = 390, - [2468] = 454, - [2469] = 390, - [2470] = 392, - [2471] = 416, - [2472] = 410, - [2473] = 412, - [2474] = 414, - [2475] = 367, - [2476] = 414, - [2477] = 454, - [2478] = 370, - [2479] = 450, - [2480] = 430, - [2481] = 374, - [2482] = 430, - [2483] = 378, - [2484] = 410, - [2485] = 429, - [2486] = 379, - [2487] = 377, - [2488] = 360, - [2489] = 368, - [2490] = 465, - [2491] = 448, - [2492] = 365, - [2493] = 452, - [2494] = 369, - [2495] = 364, - [2496] = 441, - [2497] = 376, - [2498] = 454, - [2499] = 417, - [2500] = 429, - [2501] = 450, - [2502] = 363, - [2503] = 440, - [2504] = 465, - [2505] = 448, - [2506] = 361, - [2507] = 373, - [2508] = 371, - [2509] = 362, - [2510] = 416, - [2511] = 452, - [2512] = 366, - [2513] = 412, - [2514] = 441, - [2515] = 417, - [2516] = 440, - [2517] = 432, - [2518] = 432, - [2519] = 359, - [2520] = 510, - [2521] = 465, - [2522] = 450, - [2523] = 450, - [2524] = 452, - [2525] = 499, - [2526] = 510, - [2527] = 501, - [2528] = 502, - [2529] = 497, - [2530] = 465, - [2531] = 362, - [2532] = 495, - [2533] = 454, - [2534] = 370, - [2535] = 448, - [2536] = 452, - [2537] = 450, - [2538] = 499, - [2539] = 359, - [2540] = 369, - [2541] = 368, - [2542] = 360, - [2543] = 493, - [2544] = 450, - [2545] = 487, - [2546] = 367, - [2547] = 488, - [2548] = 366, - [2549] = 365, - [2550] = 374, - [2551] = 465, - [2552] = 454, - [2553] = 500, - [2554] = 448, - [2555] = 377, - [2556] = 492, - [2557] = 373, - [2558] = 491, - [2559] = 379, - [2560] = 378, - [2561] = 493, + [2454] = 440, + [2455] = 360, + [2456] = 435, + [2457] = 433, + [2458] = 453, + [2459] = 375, + [2460] = 431, + [2461] = 448, + [2462] = 411, + [2463] = 435, + [2464] = 359, + [2465] = 442, + [2466] = 502, + [2467] = 440, + [2468] = 488, + [2469] = 442, + [2470] = 482, + [2471] = 442, + [2472] = 482, + [2473] = 498, + [2474] = 446, + [2475] = 446, + [2476] = 484, + [2477] = 483, + [2478] = 374, + [2479] = 367, + [2480] = 361, + [2481] = 453, + [2482] = 492, + [2483] = 513, + [2484] = 503, + [2485] = 440, + [2486] = 363, + [2487] = 481, + [2488] = 448, + [2489] = 480, + [2490] = 448, + [2491] = 453, + [2492] = 490, + [2493] = 360, + [2494] = 440, + [2495] = 446, + [2496] = 489, + [2497] = 366, + [2498] = 442, + [2499] = 487, + [2500] = 364, + [2501] = 448, + [2502] = 368, + [2503] = 448, + [2504] = 446, + [2505] = 487, + [2506] = 489, + [2507] = 490, + [2508] = 377, + [2509] = 480, + [2510] = 481, + [2511] = 369, + [2512] = 370, + [2513] = 503, + [2514] = 373, + [2515] = 498, + [2516] = 379, + [2517] = 378, + [2518] = 442, + [2519] = 376, + [2520] = 502, + [2521] = 440, + [2522] = 513, + [2523] = 492, + [2524] = 483, + [2525] = 453, + [2526] = 484, + [2527] = 488, + [2528] = 453, + [2529] = 359, + [2530] = 375, + [2531] = 372, + [2532] = 490, + [2533] = 384, + [2534] = 480, + [2535] = 375, + [2536] = 481, + [2537] = 480, + [2538] = 393, + [2539] = 376, + [2540] = 503, + [2541] = 503, + [2542] = 378, + [2543] = 502, + [2544] = 513, + [2545] = 379, + [2546] = 373, + [2547] = 370, + [2548] = 369, + [2549] = 492, + [2550] = 368, + [2551] = 364, + [2552] = 483, + [2553] = 487, + [2554] = 513, + [2555] = 484, + [2556] = 366, + [2557] = 360, + [2558] = 374, + [2559] = 367, + [2560] = 483, + [2561] = 487, [2562] = 488, - [2563] = 465, - [2564] = 500, - [2565] = 501, - [2566] = 490, - [2567] = 502, + [2563] = 386, + [2564] = 393, + [2565] = 377, + [2566] = 361, + [2567] = 482, [2568] = 489, - [2569] = 452, - [2570] = 454, - [2571] = 495, - [2572] = 487, - [2573] = 492, - [2574] = 491, - [2575] = 361, - [2576] = 497, - [2577] = 371, - [2578] = 490, - [2579] = 448, - [2580] = 489, - [2581] = 448, - [2582] = 452, - [2583] = 454, - [2584] = 363, - [2585] = 364, - [2586] = 380, - [2587] = 389, - [2588] = 380, - [2589] = 501, - [2590] = 389, - [2591] = 380, - [2592] = 389, - [2593] = 390, - [2594] = 374, - [2595] = 391, - [2596] = 391, - [2597] = 495, - [2598] = 490, - [2599] = 491, - [2600] = 492, - [2601] = 390, - [2602] = 487, - [2603] = 495, - [2604] = 497, - [2605] = 392, - [2606] = 390, - [2607] = 497, - [2608] = 501, - [2609] = 391, - [2610] = 499, - [2611] = 502, - [2612] = 501, - [2613] = 497, - [2614] = 487, - [2615] = 510, - [2616] = 499, - [2617] = 510, - [2618] = 500, - [2619] = 488, - [2620] = 499, - [2621] = 489, - [2622] = 392, - [2623] = 362, - [2624] = 392, - [2625] = 500, - [2626] = 488, - [2627] = 379, - [2628] = 377, - [2629] = 492, - [2630] = 491, + [2569] = 498, + [2570] = 359, + [2571] = 488, + [2572] = 484, + [2573] = 386, + [2574] = 483, + [2575] = 482, + [2576] = 387, + [2577] = 492, + [2578] = 372, + [2579] = 513, + [2580] = 502, + [2581] = 503, + [2582] = 387, + [2583] = 481, + [2584] = 386, + [2585] = 393, + [2586] = 480, + [2587] = 490, + [2588] = 487, + [2589] = 489, + [2590] = 384, + [2591] = 498, + [2592] = 498, + [2593] = 363, + [2594] = 384, + [2595] = 393, + [2596] = 386, + [2597] = 384, + [2598] = 387, + [2599] = 387, + [2600] = 430, + [2601] = 481, + [2602] = 431, + [2603] = 410, + [2604] = 484, + [2605] = 407, + [2606] = 409, + [2607] = 433, + [2608] = 492, + [2609] = 431, + [2610] = 411, + [2611] = 482, + [2612] = 502, + [2613] = 488, + [2614] = 407, + [2615] = 435, + [2616] = 492, + [2617] = 430, + [2618] = 387, + [2619] = 481, + [2620] = 430, + [2621] = 490, + [2622] = 502, + [2623] = 409, + [2624] = 489, + [2625] = 431, + [2626] = 435, + [2627] = 384, + [2628] = 498, + [2629] = 489, + [2630] = 487, [2631] = 490, - [2632] = 489, - [2633] = 502, - [2634] = 493, - [2635] = 488, - [2636] = 487, - [2637] = 361, - [2638] = 371, - [2639] = 363, - [2640] = 491, - [2641] = 364, - [2642] = 392, - [2643] = 373, - [2644] = 380, - [2645] = 389, - [2646] = 365, - [2647] = 366, - [2648] = 367, - [2649] = 360, - [2650] = 368, - [2651] = 369, - [2652] = 359, - [2653] = 370, - [2654] = 390, - [2655] = 493, - [2656] = 391, - [2657] = 378, - [2658] = 429, - [2659] = 495, - [2660] = 493, - [2661] = 440, - [2662] = 490, - [2663] = 492, - [2664] = 491, - [2665] = 492, - [2666] = 390, - [2667] = 488, - [2668] = 500, - [2669] = 412, - [2670] = 487, - [2671] = 497, - [2672] = 495, - [2673] = 501, - [2674] = 499, - [2675] = 391, - [2676] = 487, - [2677] = 510, - [2678] = 489, - [2679] = 416, - [2680] = 414, - [2681] = 500, - [2682] = 392, - [2683] = 510, - [2684] = 502, - [2685] = 410, - [2686] = 441, - [2687] = 497, - [2688] = 417, - [2689] = 416, + [2632] = 480, + [2633] = 481, + [2634] = 503, + [2635] = 502, + [2636] = 513, + [2637] = 492, + [2638] = 483, + [2639] = 484, + [2640] = 488, + [2641] = 387, + [2642] = 483, + [2643] = 410, + [2644] = 498, + [2645] = 411, + [2646] = 433, + [2647] = 489, + [2648] = 487, + [2649] = 407, + [2650] = 409, + [2651] = 410, + [2652] = 433, + [2653] = 386, + [2654] = 393, + [2655] = 411, + [2656] = 435, + [2657] = 411, + [2658] = 424, + [2659] = 433, + [2660] = 424, + [2661] = 431, + [2662] = 393, + [2663] = 410, + [2664] = 435, + [2665] = 490, + [2666] = 480, + [2667] = 386, + [2668] = 482, + [2669] = 513, + [2670] = 384, + [2671] = 424, + [2672] = 430, + [2673] = 503, + [2674] = 482, + [2675] = 409, + [2676] = 407, + [2677] = 424, + [2678] = 484, + [2679] = 488, + [2680] = 490, + [2681] = 484, + [2682] = 492, + [2683] = 442, + [2684] = 487, + [2685] = 513, + [2686] = 483, + [2687] = 484, + [2688] = 435, + [2689] = 488, [2690] = 502, - [2691] = 417, - [2692] = 412, - [2693] = 414, - [2694] = 410, - [2695] = 441, - [2696] = 414, - [2697] = 501, - [2698] = 410, - [2699] = 417, - [2700] = 510, - [2701] = 502, - [2702] = 389, - [2703] = 499, - [2704] = 380, - [2705] = 500, - [2706] = 416, - [2707] = 491, - [2708] = 490, - [2709] = 489, - [2710] = 412, - [2711] = 432, - [2712] = 495, - [2713] = 441, - [2714] = 440, - [2715] = 412, - [2716] = 416, - [2717] = 392, - [2718] = 441, - [2719] = 492, - [2720] = 490, - [2721] = 489, - [2722] = 432, - [2723] = 391, - [2724] = 429, - [2725] = 390, - [2726] = 417, - [2727] = 414, - [2728] = 430, - [2729] = 429, - [2730] = 430, - [2731] = 493, - [2732] = 440, - [2733] = 440, - [2734] = 488, - [2735] = 430, - [2736] = 493, - [2737] = 432, - [2738] = 432, - [2739] = 430, - [2740] = 429, - [2741] = 389, - [2742] = 380, - [2743] = 410, - [2744] = 491, - [2745] = 499, - [2746] = 432, - [2747] = 452, - [2748] = 448, - [2749] = 465, - [2750] = 450, - [2751] = 414, - [2752] = 429, - [2753] = 430, - [2754] = 454, - [2755] = 410, - [2756] = 454, - [2757] = 414, - [2758] = 417, - [2759] = 450, - [2760] = 410, - [2761] = 465, - [2762] = 416, - [2763] = 412, - [2764] = 448, - [2765] = 417, - [2766] = 489, - [2767] = 452, - [2768] = 440, - [2769] = 490, - [2770] = 491, - [2771] = 489, - [2772] = 492, - [2773] = 488, - [2774] = 500, - [2775] = 487, - [2776] = 495, - [2777] = 499, - [2778] = 510, - [2779] = 501, + [2691] = 440, + [2692] = 489, + [2693] = 498, + [2694] = 490, + [2695] = 433, + [2696] = 482, + [2697] = 482, + [2698] = 446, + [2699] = 410, + [2700] = 503, + [2701] = 411, + [2702] = 481, + [2703] = 448, + [2704] = 407, + [2705] = 480, + [2706] = 407, + [2707] = 430, + [2708] = 502, + [2709] = 448, + [2710] = 410, + [2711] = 487, + [2712] = 440, + [2713] = 453, + [2714] = 446, + [2715] = 424, + [2716] = 430, + [2717] = 481, + [2718] = 424, + [2719] = 489, + [2720] = 503, + [2721] = 442, + [2722] = 498, + [2723] = 411, + [2724] = 488, + [2725] = 409, + [2726] = 409, + [2727] = 435, + [2728] = 431, + [2729] = 483, + [2730] = 513, + [2731] = 492, + [2732] = 480, + [2733] = 453, + [2734] = 433, + [2735] = 431, + [2736] = 777, + [2737] = 774, + [2738] = 448, + [2739] = 774, + [2740] = 440, + [2741] = 785, + [2742] = 440, + [2743] = 446, + [2744] = 777, + [2745] = 442, + [2746] = 446, + [2747] = 453, + [2748] = 764, + [2749] = 442, + [2750] = 448, + [2751] = 785, + [2752] = 453, + [2753] = 773, + [2754] = 440, + [2755] = 453, + [2756] = 453, + [2757] = 440, + [2758] = 442, + [2759] = 777, + [2760] = 446, + [2761] = 448, + [2762] = 448, + [2763] = 801, + [2764] = 442, + [2765] = 774, + [2766] = 446, + [2767] = 764, + [2768] = 820, + [2769] = 481, + [2770] = 480, + [2771] = 814, + [2772] = 821, + [2773] = 785, + [2774] = 785, + [2775] = 482, + [2776] = 488, + [2777] = 490, + [2778] = 484, + [2779] = 492, [2780] = 502, - [2781] = 497, - [2782] = 495, - [2783] = 487, - [2784] = 497, + [2781] = 487, + [2782] = 502, + [2783] = 483, + [2784] = 513, [2785] = 492, - [2786] = 502, - [2787] = 490, - [2788] = 441, - [2789] = 429, - [2790] = 500, - [2791] = 430, - [2792] = 493, - [2793] = 493, - [2794] = 501, - [2795] = 510, - [2796] = 412, - [2797] = 432, - [2798] = 440, - [2799] = 441, - [2800] = 488, - [2801] = 416, - [2802] = 778, - [2803] = 776, - [2804] = 465, - [2805] = 808, - [2806] = 450, - [2807] = 454, - [2808] = 465, - [2809] = 775, - [2810] = 448, - [2811] = 454, - [2812] = 450, - [2813] = 776, - [2814] = 452, - [2815] = 452, - [2816] = 780, - [2817] = 780, - [2818] = 775, - [2819] = 448, - [2820] = 448, - [2821] = 452, - [2822] = 452, - [2823] = 454, - [2824] = 448, - [2825] = 465, - [2826] = 819, - [2827] = 450, - [2828] = 776, - [2829] = 775, - [2830] = 465, - [2831] = 450, - [2832] = 454, - [2833] = 489, - [2834] = 500, - [2835] = 493, - [2836] = 837, - [2837] = 841, - [2838] = 834, - [2839] = 838, - [2840] = 832, - [2841] = 490, - [2842] = 835, - [2843] = 828, - [2844] = 830, - [2845] = 833, - [2846] = 488, - [2847] = 489, - [2848] = 488, - [2849] = 500, - [2850] = 499, - [2851] = 510, - [2852] = 501, - [2853] = 502, - [2854] = 780, - [2855] = 499, - [2856] = 510, - [2857] = 778, - [2858] = 497, - [2859] = 495, - [2860] = 487, - [2861] = 492, - [2862] = 831, - [2863] = 808, - [2864] = 501, - [2865] = 491, - [2866] = 502, - [2867] = 493, - [2868] = 829, - [2869] = 497, - [2870] = 839, - [2871] = 495, - [2872] = 487, - [2873] = 780, - [2874] = 490, - [2875] = 492, - [2876] = 491, - [2877] = 491, - [2878] = 510, - [2879] = 510, - [2880] = 492, - [2881] = 838, - [2882] = 500, - [2883] = 488, - [2884] = 865, - [2885] = 501, - [2886] = 501, - [2887] = 846, - [2888] = 493, - [2889] = 835, - [2890] = 776, - [2891] = 775, - [2892] = 839, - [2893] = 868, - [2894] = 502, - [2895] = 499, - [2896] = 497, - [2897] = 500, - [2898] = 819, - [2899] = 495, - [2900] = 487, - [2901] = 848, - [2902] = 843, - [2903] = 491, - [2904] = 829, - [2905] = 490, - [2906] = 489, - [2907] = 502, - [2908] = 497, - [2909] = 875, - [2910] = 861, - [2911] = 828, - [2912] = 839, - [2913] = 873, - [2914] = 871, - [2915] = 499, - [2916] = 854, - [2917] = 855, - [2918] = 833, - [2919] = 857, - [2920] = 858, - [2921] = 830, - [2922] = 859, - [2923] = 856, - [2924] = 495, - [2925] = 487, - [2926] = 492, - [2927] = 866, - [2928] = 869, - [2929] = 488, - [2930] = 490, - [2931] = 489, - [2932] = 842, - [2933] = 872, - [2934] = 493, - [2935] = 851, - [2936] = 874, - [2937] = 844, - [2938] = 867, - [2939] = 850, - [2940] = 849, - [2941] = 847, - [2942] = 845, - [2943] = 879, - [2944] = 877, - [2945] = 832, - [2946] = 870, - [2947] = 852, - [2948] = 853, - [2949] = 495, - [2950] = 502, - [2951] = 902, - [2952] = 890, - [2953] = 834, - [2954] = 934, - [2955] = 858, - [2956] = 857, - [2957] = 499, - [2958] = 856, - [2959] = 837, - [2960] = 855, - [2961] = 502, - [2962] = 497, - [2963] = 910, - [2964] = 926, - [2965] = 841, - [2966] = 894, - [2967] = 944, - [2968] = 911, - [2969] = 936, - [2970] = 897, - [2971] = 942, - [2972] = 898, - [2973] = 838, - [2974] = 489, - [2975] = 835, - [2976] = 840, - [2977] = 828, - [2978] = 887, - [2979] = 884, - [2980] = 852, - [2981] = 945, - [2982] = 923, - [2983] = 904, - [2984] = 870, - [2985] = 830, - [2986] = 880, - [2987] = 853, - [2988] = 500, - [2989] = 493, - [2990] = 851, - [2991] = 490, - [2992] = 501, - [2993] = 833, - [2994] = 510, - [2995] = 488, - [2996] = 841, - [2997] = 927, - [2998] = 879, - [2999] = 892, - [3000] = 491, - [3001] = 854, - [3002] = 882, - [3003] = 881, - [3004] = 929, - [3005] = 908, - [3006] = 859, - [3007] = 889, - [3008] = 907, - [3009] = 900, - [3010] = 493, - [3011] = 905, - [3012] = 492, - [3013] = 850, - [3014] = 849, - [3015] = 901, - [3016] = 899, - [3017] = 834, - [3018] = 895, - [3019] = 845, - [3020] = 489, - [3021] = 490, - [3022] = 832, - [3023] = 847, - [3024] = 837, - [3025] = 488, - [3026] = 491, - [3027] = 492, - [3028] = 906, - [3029] = 500, - [3030] = 487, - [3031] = 831, - [3032] = 829, - [3033] = 499, - [3034] = 510, - [3035] = 903, - [3036] = 839, - [3037] = 497, - [3038] = 487, - [3039] = 501, - [3040] = 495, - [3041] = 883, - [3042] = 840, - [3043] = 844, - [3044] = 780, - [3045] = 1014, - [3046] = 1034, - [3047] = 1005, - [3048] = 1019, - [3049] = 780, - [3050] = 1012, - [3051] = 848, - [3052] = 947, - [3053] = 1002, - [3054] = 1020, - [3055] = 1009, - [3056] = 866, - [3057] = 977, - [3058] = 846, - [3059] = 869, - [3060] = 868, - [3061] = 1018, - [3062] = 3062, - [3063] = 842, - [3064] = 958, - [3065] = 971, - [3066] = 979, - [3067] = 950, - [3068] = 974, - [3069] = 1032, - [3070] = 1033, - [3071] = 874, - [3072] = 953, - [3073] = 928, - [3074] = 872, - [3075] = 872, - [3076] = 952, - [3077] = 996, - [3078] = 975, - [3079] = 867, - [3080] = 877, - [3081] = 854, - [3082] = 1010, - [3083] = 855, - [3084] = 972, - [3085] = 976, - [3086] = 981, - [3087] = 857, - [3088] = 990, - [3089] = 873, - [3090] = 858, - [3091] = 1027, - [3092] = 859, - [3093] = 1011, - [3094] = 850, - [3095] = 1024, - [3096] = 848, - [3097] = 961, - [3098] = 973, - [3099] = 1038, - [3100] = 1021, - [3101] = 1036, - [3102] = 849, - [3103] = 1017, - [3104] = 1013, - [3105] = 1025, - [3106] = 962, - [3107] = 998, - [3108] = 997, - [3109] = 879, - [3110] = 960, - [3111] = 982, - [3112] = 1006, - [3113] = 853, - [3114] = 1007, - [3115] = 1028, - [3116] = 951, - [3117] = 1004, - [3118] = 856, - [3119] = 870, - [3120] = 852, - [3121] = 984, - [3122] = 867, - [3123] = 873, - [3124] = 1010, - [3125] = 778, - [3126] = 967, - [3127] = 985, - [3128] = 1026, - [3129] = 933, - [3130] = 847, - [3131] = 861, - [3132] = 808, - [3133] = 845, - [3134] = 959, - [3135] = 842, - [3136] = 869, - [3137] = 851, - [3138] = 1035, - [3139] = 866, - [3140] = 875, - [3141] = 1120, - [3142] = 1181, - [3143] = 1109, - [3144] = 1178, - [3145] = 1075, - [3146] = 1108, - [3147] = 1168, - [3148] = 1104, - [3149] = 1102, - [3150] = 1167, - [3151] = 911, - [3152] = 1166, - [3153] = 892, - [3154] = 926, - [3155] = 1101, - [3156] = 1100, - [3157] = 1157, - [3158] = 1098, - [3159] = 901, - [3160] = 1153, - [3161] = 889, - [3162] = 1097, - [3163] = 1096, - [3164] = 1146, - [3165] = 897, - [3166] = 1145, - [3167] = 1144, - [3168] = 1095, - [3169] = 934, - [3170] = 1094, - [3171] = 1093, - [3172] = 1091, - [3173] = 1089, - [3174] = 1130, - [3175] = 1088, - [3176] = 923, - [3177] = 843, - [3178] = 1129, - [3179] = 1128, - [3180] = 843, - [3181] = 910, - [3182] = 875, - [3183] = 1086, - [3184] = 1085, - [3185] = 1083, - [3186] = 1126, - [3187] = 894, - [3188] = 904, - [3189] = 1125, - [3190] = 902, - [3191] = 1082, - [3192] = 1087, - [3193] = 905, - [3194] = 890, - [3195] = 1084, - [3196] = 895, - [3197] = 1080, - [3198] = 1074, - [3199] = 887, - [3200] = 1073, - [3201] = 884, - [3202] = 865, - [3203] = 1081, - [3204] = 1057, - [3205] = 1055, - [3206] = 1069, - [3207] = 1053, - [3208] = 1068, - [3209] = 1067, - [3210] = 1066, - [3211] = 1065, - [3212] = 1052, - [3213] = 1064, - [3214] = 1062, - [3215] = 1058, - [3216] = 1056, - [3217] = 944, - [3218] = 894, - [3219] = 1115, - [3220] = 1051, - [3221] = 1184, - [3222] = 1119, - [3223] = 1046, - [3224] = 1044, - [3225] = 1110, - [3226] = 1105, - [3227] = 899, - [3228] = 1137, - [3229] = 1187, - [3230] = 1186, - [3231] = 1113, - [3232] = 1117, - [3233] = 1123, - [3234] = 1124, - [3235] = 1112, - [3236] = 1106, - [3237] = 1111, - [3238] = 1155, - [3239] = 1118, - [3240] = 1165, - [3241] = 1070, - [3242] = 912, - [3243] = 942, - [3244] = 1116, - [3245] = 1202, - [3246] = 865, - [3247] = 1076, - [3248] = 1121, - [3249] = 1122, - [3250] = 1205, - [3251] = 1132, - [3252] = 1143, - [3253] = 1206, - [3254] = 1043, - [3255] = 890, - [3256] = 936, - [3257] = 980, - [3258] = 929, - [3259] = 1140, - [3260] = 880, - [3261] = 1150, - [3262] = 1189, - [3263] = 947, - [3264] = 1148, - [3265] = 1142, - [3266] = 877, - [3267] = 1143, - [3268] = 1159, - [3269] = 1190, - [3270] = 1003, - [3271] = 1160, - [3272] = 1198, - [3273] = 1135, - [3274] = 1134, - [3275] = 906, - [3276] = 898, - [3277] = 881, - [3278] = 1215, - [3279] = 903, - [3280] = 1199, - [3281] = 1179, - [3282] = 1201, - [3283] = 882, - [3284] = 871, - [3285] = 1211, - [3286] = 1171, - [3287] = 1170, - [3288] = 868, - [3289] = 1209, - [3290] = 1050, - [3291] = 1169, - [3292] = 1164, - [3293] = 846, - [3294] = 1207, - [3295] = 861, - [3296] = 1204, - [3297] = 1203, - [3298] = 1142, - [3299] = 1210, - [3300] = 933, - [3301] = 883, - [3302] = 1175, - [3303] = 1191, - [3304] = 1200, - [3305] = 829, - [3306] = 927, - [3307] = 843, - [3308] = 1099, - [3309] = 3309, - [3310] = 875, - [3311] = 1090, - [3312] = 1079, - [3313] = 908, - [3314] = 1197, - [3315] = 900, - [3316] = 1077, - [3317] = 1194, - [3318] = 945, - [3319] = 1131, - [3320] = 898, - [3321] = 899, - [3322] = 901, - [3323] = 1008, - [3324] = 1180, - [3325] = 1177, - [3326] = 905, - [3327] = 1176, - [3328] = 1173, - [3329] = 1172, - [3330] = 888, - [3331] = 843, - [3332] = 1158, - [3333] = 907, - [3334] = 1147, - [3335] = 1092, - [3336] = 839, - [3337] = 1103, - [3338] = 908, - [3339] = 1138, - [3340] = 1136, - [3341] = 881, - [3342] = 928, - [3343] = 844, - [3344] = 1114, - [3345] = 1127, - [3346] = 874, - [3347] = 936, - [3348] = 875, - [3349] = 942, - [3350] = 944, - [3351] = 930, - [3352] = 945, - [3353] = 907, - [3354] = 1045, - [3355] = 819, - [3356] = 985, - [3357] = 958, - [3358] = 1003, - [3359] = 961, - [3360] = 1010, - [3361] = 835, - [3362] = 366, - [3363] = 838, - [3364] = 365, - [3365] = 364, - [3366] = 829, - [3367] = 363, - [3368] = 838, - [3369] = 360, - [3370] = 368, - [3371] = 835, - [3372] = 953, - [3373] = 952, - [3374] = 828, - [3375] = 369, - [3376] = 830, - [3377] = 833, - [3378] = 376, - [3379] = 1038, - [3380] = 1036, - [3381] = 1008, - [3382] = 996, - [3383] = 839, - [3384] = 841, - [3385] = 1028, - [3386] = 359, - [3387] = 1041, - [3388] = 1026, - [3389] = 964, - [3390] = 967, - [3391] = 1029, - [3392] = 1014, - [3393] = 833, - [3394] = 1011, - [3395] = 840, - [3396] = 370, - [3397] = 973, - [3398] = 371, - [3399] = 362, - [3400] = 832, - [3401] = 962, - [3402] = 361, - [3403] = 960, - [3404] = 843, - [3405] = 951, - [3406] = 980, - [3407] = 977, - [3408] = 959, - [3409] = 998, - [3410] = 1009, - [3411] = 875, - [3412] = 373, - [3413] = 378, - [3414] = 379, - [3415] = 377, - [3416] = 1035, - [3417] = 834, - [3418] = 971, - [3419] = 984, - [3420] = 979, - [3421] = 1004, - [3422] = 997, - [3423] = 950, - [3424] = 974, - [3425] = 1017, - [3426] = 1021, - [3427] = 1024, - [3428] = 833, - [3429] = 837, - [3430] = 982, - [3431] = 1006, - [3432] = 1007, - [3433] = 830, - [3434] = 1013, - [3435] = 975, - [3436] = 1025, - [3437] = 828, - [3438] = 835, - [3439] = 1002, - [3440] = 838, - [3441] = 1012, - [3442] = 1019, - [3443] = 1034, - [3444] = 1027, - [3445] = 990, - [3446] = 831, - [3447] = 1032, - [3448] = 1005, - [3449] = 1033, - [3450] = 1020, - [3451] = 830, - [3452] = 976, - [3453] = 981, - [3454] = 367, - [3455] = 1018, - [3456] = 828, - [3457] = 1137, - [3458] = 1110, - [3459] = 1209, - [3460] = 1211, - [3461] = 1215, - [3462] = 846, - [3463] = 3463, - [3464] = 868, - [3465] = 1159, - [3466] = 1148, - [3467] = 1140, - [3468] = 1132, - [3469] = 857, - [3470] = 1120, - [3471] = 1116, - [3472] = 3472, - [3473] = 1046, - [3474] = 1119, - [3475] = 1115, - [3476] = 859, - [3477] = 1044, - [3478] = 1164, - [3479] = 832, - [3480] = 855, - [3481] = 854, - [3482] = 1170, - [3483] = 1171, - [3484] = 1105, - [3485] = 1113, - [3486] = 867, - [3487] = 1117, - [3488] = 1143, - [3489] = 873, - [3490] = 856, - [3491] = 853, - [3492] = 852, - [3493] = 1123, - [3494] = 870, - [3495] = 1158, - [3496] = 1204, - [3497] = 1203, - [3498] = 879, - [3499] = 845, - [3500] = 1200, - [3501] = 1124, - [3502] = 1155, - [3503] = 1165, - [3504] = 1103, - [3505] = 847, - [3506] = 849, - [3507] = 850, - [3508] = 875, - [3509] = 1009, - [3510] = 843, - [3511] = 1179, - [3512] = 858, - [3513] = 851, - [3514] = 877, - [3515] = 1194, - [3516] = 1201, - [3517] = 1058, - [3518] = 843, - [3519] = 875, - [3520] = 1199, - [3521] = 1198, - [3522] = 859, - [3523] = 873, - [3524] = 833, - [3525] = 1180, - [3526] = 1142, - [3527] = 867, - [3528] = 830, - [3529] = 828, - [3530] = 1190, - [3531] = 858, - [3532] = 835, - [3533] = 838, - [3534] = 1202, - [3535] = 1056, - [3536] = 1189, - [3537] = 1187, - [3538] = 1068, - [3539] = 1177, - [3540] = 1176, - [3541] = 1173, - [3542] = 1205, - [3543] = 857, - [3544] = 971, - [3545] = 1172, - [3546] = 950, - [3547] = 974, - [3548] = 1062, - [3549] = 1157, - [3550] = 1206, - [3551] = 928, - [3552] = 1186, - [3553] = 855, - [3554] = 1184, - [3555] = 1064, - [3556] = 859, - [3557] = 875, - [3558] = 843, - [3559] = 1181, - [3560] = 858, - [3561] = 1150, - [3562] = 1077, - [3563] = 857, - [3564] = 1164, - [3565] = 872, - [3566] = 1169, - [3567] = 1079, - [3568] = 1170, - [3569] = 1178, - [3570] = 1171, - [3571] = 1147, - [3572] = 1138, - [3573] = 1136, - [3574] = 1127, - [3575] = 842, - [3576] = 1090, - [3577] = 855, - [3578] = 854, - [3579] = 854, - [3580] = 933, - [3581] = 1065, - [3582] = 1197, - [3583] = 848, - [3584] = 1045, - [3585] = 1050, - [3586] = 1175, - [3587] = 1006, - [3588] = 883, - [3589] = 1007, - [3590] = 1051, - [3591] = 869, - [3592] = 1210, - [3593] = 1052, - [3594] = 1099, - [3595] = 1053, - [3596] = 1055, - [3597] = 1057, - [3598] = 1073, - [3599] = 833, - [3600] = 866, - [3601] = 1074, - [3602] = 947, - [3603] = 1080, - [3604] = 1084, - [3605] = 1168, - [3606] = 1043, - [3607] = 3607, - [3608] = 1087, - [3609] = 1075, - [3610] = 1191, - [3611] = 1076, - [3612] = 882, - [3613] = 1125, - [3614] = 1066, - [3615] = 1131, - [3616] = 830, - [3617] = 1160, - [3618] = 828, - [3619] = 888, - [3620] = 1092, - [3621] = 1126, - [3622] = 3622, - [3623] = 1013, - [3624] = 1025, - [3625] = 1122, - [3626] = 1121, - [3627] = 1118, - [3628] = 1067, - [3629] = 1112, - [3630] = 1142, - [3631] = 1128, - [3632] = 1207, - [3633] = 1109, - [3634] = 1108, - [3635] = 1143, - [3636] = 1106, - [3637] = 1129, - [3638] = 1104, - [3639] = 848, - [3640] = 1102, - [3641] = 1101, - [3642] = 853, - [3643] = 852, - [3644] = 1100, - [3645] = 1114, - [3646] = 875, - [3647] = 843, - [3648] = 1027, - [3649] = 1076, - [3650] = 1075, - [3651] = 870, - [3652] = 1130, - [3653] = 1098, - [3654] = 1097, - [3655] = 879, - [3656] = 1144, - [3657] = 1096, - [3658] = 1095, - [3659] = 1094, - [3660] = 1093, - [3661] = 865, - [3662] = 845, - [3663] = 847, - [3664] = 849, - [3665] = 1145, - [3666] = 1146, - [3667] = 1153, - [3668] = 861, - [3669] = 1091, - [3670] = 1089, - [3671] = 856, - [3672] = 1088, - [3673] = 1086, - [3674] = 835, - [3675] = 851, - [3676] = 1135, - [3677] = 875, - [3678] = 1134, - [3679] = 843, - [3680] = 1169, - [3681] = 874, - [3682] = 1166, - [3683] = 844, - [3684] = 1085, - [3685] = 875, - [3686] = 1083, - [3687] = 838, - [3688] = 1069, - [3689] = 1167, - [3690] = 1070, - [3691] = 1081, - [3692] = 1082, - [3693] = 850, - [3694] = 1111, - [3695] = 843, - [3696] = 945, - [3697] = 859, - [3698] = 850, - [3699] = 845, - [3700] = 879, - [3701] = 882, - [3702] = 851, - [3703] = 1143, - [3704] = 870, - [3705] = 852, - [3706] = 875, - [3707] = 843, - [3708] = 853, - [3709] = 856, - [3710] = 888, - [3711] = 894, - [3712] = 892, - [3713] = 890, - [3714] = 883, - [3715] = 839, - [3716] = 927, - [3717] = 843, - [3718] = 875, - [3719] = 829, - [3720] = 859, - [3721] = 839, - [3722] = 880, - [3723] = 895, - [3724] = 858, - [3725] = 848, - [3726] = 900, - [3727] = 857, - [3728] = 834, - [3729] = 839, - [3730] = 855, - [3731] = 898, - [3732] = 898, - [3733] = 903, - [3734] = 854, - [3735] = 899, - [3736] = 901, - [3737] = 906, - [3738] = 838, - [3739] = 835, - [3740] = 929, - [3741] = 829, - [3742] = 3742, - [3743] = 905, - [3744] = 837, - [3745] = 828, - [3746] = 907, - [3747] = 3747, - [3748] = 899, - [3749] = 901, - [3750] = 830, - [3751] = 908, - [3752] = 847, - [3753] = 1003, - [3754] = 849, - [3755] = 911, - [3756] = 926, - [3757] = 833, - [3758] = 851, - [3759] = 881, - [3760] = 905, - [3761] = 850, - [3762] = 849, - [3763] = 847, - [3764] = 845, - [3765] = 879, - [3766] = 897, - [3767] = 870, - [3768] = 936, - [3769] = 980, - [3770] = 907, - [3771] = 942, - [3772] = 858, - [3773] = 934, - [3774] = 857, - [3775] = 852, - [3776] = 855, - [3777] = 853, - [3778] = 944, - [3779] = 947, - [3780] = 928, - [3781] = 1008, - [3782] = 856, - [3783] = 908, - [3784] = 854, - [3785] = 923, - [3786] = 873, - [3787] = 910, - [3788] = 867, - [3789] = 904, - [3790] = 1029, - [3791] = 829, - [3792] = 881, - [3793] = 912, - [3794] = 933, - [3795] = 902, - [3796] = 944, - [3797] = 887, - [3798] = 884, - [3799] = 942, - [3800] = 972, - [3801] = 1142, - [3802] = 936, - [3803] = 1010, - [3804] = 945, - [3805] = 964, - [3806] = 889, - [3807] = 1041, - [3808] = 930, - [3809] = 1010, - [3810] = 859, - [3811] = 1003, - [3812] = 872, - [3813] = 842, - [3814] = 854, - [3815] = 855, - [3816] = 857, - [3817] = 858, - [3818] = 373, - [3819] = 1008, - [3820] = 848, - [3821] = 848, - [3822] = 848, - [3823] = 996, - [3824] = 892, - [3825] = 894, - [3826] = 980, - [3827] = 890, - [3828] = 873, - [3829] = 973, - [3830] = 867, - [3831] = 873, - [3832] = 977, - [3833] = 1009, - [3834] = 930, - [3835] = 971, - [3836] = 979, - [3837] = 950, - [3838] = 974, - [3839] = 912, - [3840] = 867, - [3841] = 873, - [3842] = 982, - [3843] = 867, - [3844] = 1007, - [3845] = 376, - [3846] = 1013, - [3847] = 1025, - [3848] = 371, - [3849] = 370, - [3850] = 359, - [3851] = 369, - [3852] = 368, - [3853] = 360, - [3854] = 367, - [3855] = 366, - [3856] = 365, - [3857] = 1027, - [3858] = 1006, - [3859] = 364, - [3860] = 363, - [3861] = 981, - [3862] = 976, - [3863] = 362, - [3864] = 1036, - [3865] = 378, - [3866] = 379, - [3867] = 1033, - [3868] = 967, - [3869] = 1032, - [3870] = 958, - [3871] = 869, - [3872] = 1020, - [3873] = 1005, - [3874] = 1034, - [3875] = 1019, - [3876] = 1012, - [3877] = 361, - [3878] = 1002, - [3879] = 975, - [3880] = 1018, - [3881] = 866, - [3882] = 1024, - [3883] = 1021, - [3884] = 1017, - [3885] = 377, - [3886] = 1010, - [3887] = 997, - [3888] = 1004, + [2786] = 503, + [2787] = 489, + [2788] = 513, + [2789] = 815, + [2790] = 498, + [2791] = 823, + [2792] = 503, + [2793] = 481, + [2794] = 480, + [2795] = 773, + [2796] = 825, + [2797] = 482, + [2798] = 818, + [2799] = 483, + [2800] = 484, + [2801] = 488, + [2802] = 498, + [2803] = 824, + [2804] = 490, + [2805] = 822, + [2806] = 489, + [2807] = 816, + [2808] = 487, + [2809] = 813, + [2810] = 819, + [2811] = 833, + [2812] = 851, + [2813] = 854, + [2814] = 822, + [2815] = 484, + [2816] = 856, + [2817] = 815, + [2818] = 858, + [2819] = 845, + [2820] = 483, + [2821] = 861, + [2822] = 498, + [2823] = 481, + [2824] = 844, + [2825] = 848, + [2826] = 824, + [2827] = 489, + [2828] = 487, + [2829] = 492, + [2830] = 837, + [2831] = 490, + [2832] = 821, + [2833] = 846, + [2834] = 801, + [2835] = 852, + [2836] = 480, + [2837] = 831, + [2838] = 839, + [2839] = 853, + [2840] = 860, + [2841] = 503, + [2842] = 827, + [2843] = 859, + [2844] = 850, + [2845] = 821, + [2846] = 835, + [2847] = 849, + [2848] = 828, + [2849] = 814, + [2850] = 840, + [2851] = 832, + [2852] = 829, + [2853] = 823, + [2854] = 855, + [2855] = 857, + [2856] = 777, + [2857] = 774, + [2858] = 498, + [2859] = 490, + [2860] = 842, + [2861] = 847, + [2862] = 830, + [2863] = 513, + [2864] = 489, + [2865] = 482, + [2866] = 818, + [2867] = 820, + [2868] = 488, + [2869] = 484, + [2870] = 502, + [2871] = 483, + [2872] = 492, + [2873] = 513, + [2874] = 502, + [2875] = 503, + [2876] = 481, + [2877] = 480, + [2878] = 488, + [2879] = 487, + [2880] = 482, + [2881] = 825, + [2882] = 911, + [2883] = 822, + [2884] = 835, + [2885] = 821, + [2886] = 484, + [2887] = 482, + [2888] = 853, + [2889] = 813, + [2890] = 909, + [2891] = 483, + [2892] = 818, + [2893] = 488, + [2894] = 498, + [2895] = 850, + [2896] = 859, + [2897] = 815, + [2898] = 894, + [2899] = 824, + [2900] = 925, + [2901] = 844, + [2902] = 868, + [2903] = 492, + [2904] = 871, + [2905] = 819, + [2906] = 814, + [2907] = 832, + [2908] = 905, + [2909] = 820, + [2910] = 816, + [2911] = 903, + [2912] = 513, + [2913] = 502, + [2914] = 906, + [2915] = 884, + [2916] = 837, + [2917] = 924, + [2918] = 819, + [2919] = 829, + [2920] = 899, + [2921] = 855, + [2922] = 904, + [2923] = 898, + [2924] = 920, + [2925] = 919, + [2926] = 812, + [2927] = 896, + [2928] = 816, + [2929] = 503, + [2930] = 481, + [2931] = 825, + [2932] = 480, + [2933] = 908, + [2934] = 865, + [2935] = 917, + [2936] = 907, + [2937] = 857, + [2938] = 812, + [2939] = 498, + [2940] = 867, + [2941] = 921, + [2942] = 886, + [2943] = 480, + [2944] = 490, + [2945] = 845, + [2946] = 869, + [2947] = 910, + [2948] = 487, + [2949] = 848, + [2950] = 915, + [2951] = 849, + [2952] = 490, + [2953] = 481, + [2954] = 503, + [2955] = 823, + [2956] = 900, + [2957] = 901, + [2958] = 502, + [2959] = 513, + [2960] = 492, + [2961] = 483, + [2962] = 887, + [2963] = 482, + [2964] = 914, + [2965] = 484, + [2966] = 488, + [2967] = 487, + [2968] = 489, + [2969] = 489, + [2970] = 946, + [2971] = 972, + [2972] = 927, + [2973] = 860, + [2974] = 984, + [2975] = 852, + [2976] = 773, + [2977] = 851, + [2978] = 764, + [2979] = 833, + [2980] = 829, + [2981] = 975, + [2982] = 785, + [2983] = 853, + [2984] = 859, + [2985] = 937, + [2986] = 850, + [2987] = 994, + [2988] = 835, + [2989] = 960, + [2990] = 966, + [2991] = 832, + [2992] = 982, + [2993] = 979, + [2994] = 973, + [2995] = 963, + [2996] = 990, + [2997] = 993, + [2998] = 855, + [2999] = 934, + [3000] = 857, + [3001] = 971, + [3002] = 956, + [3003] = 1001, + [3004] = 785, + [3005] = 947, + [3006] = 943, + [3007] = 935, + [3008] = 854, + [3009] = 955, + [3010] = 931, + [3011] = 930, + [3012] = 928, + [3013] = 856, + [3014] = 858, + [3015] = 969, + [3016] = 864, + [3017] = 952, + [3018] = 854, + [3019] = 856, + [3020] = 987, + [3021] = 858, + [3022] = 999, + [3023] = 1000, + [3024] = 933, + [3025] = 861, + [3026] = 831, + [3027] = 983, + [3028] = 932, + [3029] = 938, + [3030] = 861, + [3031] = 974, + [3032] = 830, + [3033] = 1012, + [3034] = 994, + [3035] = 846, + [3036] = 942, + [3037] = 827, + [3038] = 848, + [3039] = 945, + [3040] = 944, + [3041] = 941, + [3042] = 929, + [3043] = 839, + [3044] = 845, + [3045] = 844, + [3046] = 885, + [3047] = 939, + [3048] = 936, + [3049] = 846, + [3050] = 837, + [3051] = 995, + [3052] = 852, + [3053] = 3053, + [3054] = 849, + [3055] = 997, + [3056] = 891, + [3057] = 991, + [3058] = 1004, + [3059] = 831, + [3060] = 1177, + [3061] = 1068, + [3062] = 1071, + [3063] = 1072, + [3064] = 860, + [3065] = 1073, + [3066] = 851, + [3067] = 887, + [3068] = 886, + [3069] = 925, + [3070] = 894, + [3071] = 1083, + [3072] = 1076, + [3073] = 1092, + [3074] = 1094, + [3075] = 801, + [3076] = 1077, + [3077] = 1125, + [3078] = 869, + [3079] = 1106, + [3080] = 1065, + [3081] = 910, + [3082] = 1129, + [3083] = 1101, + [3084] = 1104, + [3085] = 1110, + [3086] = 967, + [3087] = 918, + [3088] = 1035, + [3089] = 968, + [3090] = 1042, + [3091] = 1114, + [3092] = 1057, + [3093] = 1040, + [3094] = 1115, + [3095] = 1108, + [3096] = 915, + [3097] = 847, + [3098] = 1116, + [3099] = 1117, + [3100] = 842, + [3101] = 847, + [3102] = 1054, + [3103] = 1075, + [3104] = 917, + [3105] = 842, + [3106] = 865, + [3107] = 911, + [3108] = 866, + [3109] = 921, + [3110] = 1085, + [3111] = 1099, + [3112] = 896, + [3113] = 867, + [3114] = 1122, + [3115] = 1123, + [3116] = 1124, + [3117] = 868, + [3118] = 1128, + [3119] = 909, + [3120] = 1070, + [3121] = 1132, + [3122] = 3122, + [3123] = 1069, + [3124] = 898, + [3125] = 871, + [3126] = 1163, + [3127] = 921, + [3128] = 1027, + [3129] = 828, + [3130] = 1164, + [3131] = 1026, + [3132] = 1131, + [3133] = 1082, + [3134] = 1109, + [3135] = 1064, + [3136] = 905, + [3137] = 1023, + [3138] = 1135, + [3139] = 907, + [3140] = 1098, + [3141] = 1058, + [3142] = 908, + [3143] = 1051, + [3144] = 1041, + [3145] = 1034, + [3146] = 1028, + [3147] = 903, + [3148] = 1056, + [3149] = 1029, + [3150] = 1174, + [3151] = 1053, + [3152] = 1074, + [3153] = 1030, + [3154] = 839, + [3155] = 1050, + [3156] = 1059, + [3157] = 1043, + [3158] = 899, + [3159] = 1061, + [3160] = 1049, + [3161] = 1171, + [3162] = 1136, + [3163] = 828, + [3164] = 867, + [3165] = 1018, + [3166] = 840, + [3167] = 1140, + [3168] = 1062, + [3169] = 1057, + [3170] = 1047, + [3171] = 1063, + [3172] = 864, + [3173] = 1180, + [3174] = 1044, + [3175] = 904, + [3176] = 827, + [3177] = 830, + [3178] = 1186, + [3179] = 1165, + [3180] = 887, + [3181] = 1039, + [3182] = 1054, + [3183] = 914, + [3184] = 899, + [3185] = 847, + [3186] = 842, + [3187] = 1147, + [3188] = 1078, + [3189] = 898, + [3190] = 1149, + [3191] = 900, + [3192] = 896, + [3193] = 823, + [3194] = 911, + [3195] = 1014, + [3196] = 1079, + [3197] = 1036, + [3198] = 842, + [3199] = 833, + [3200] = 1133, + [3201] = 1019, + [3202] = 919, + [3203] = 1137, + [3204] = 988, + [3205] = 1139, + [3206] = 1141, + [3207] = 1020, + [3208] = 920, + [3209] = 885, + [3210] = 1169, + [3211] = 847, + [3212] = 1038, + [3213] = 1066, + [3214] = 901, + [3215] = 1052, + [3216] = 1017, + [3217] = 1168, + [3218] = 912, + [3219] = 1162, + [3220] = 1081, + [3221] = 1159, + [3222] = 884, + [3223] = 906, + [3224] = 903, + [3225] = 1158, + [3226] = 1161, + [3227] = 1103, + [3228] = 1187, + [3229] = 1112, + [3230] = 1021, + [3231] = 909, + [3232] = 1185, + [3233] = 821, + [3234] = 1183, + [3235] = 1182, + [3236] = 1118, + [3237] = 1170, + [3238] = 1181, + [3239] = 1120, + [3240] = 1176, + [3241] = 1138, + [3242] = 1024, + [3243] = 1033, + [3244] = 1175, + [3245] = 1031, + [3246] = 1173, + [3247] = 1172, + [3248] = 1150, + [3249] = 1143, + [3250] = 891, + [3251] = 1144, + [3252] = 1025, + [3253] = 924, + [3254] = 1148, + [3255] = 1167, + [3256] = 1166, + [3257] = 900, + [3258] = 1048, + [3259] = 1145, + [3260] = 1151, + [3261] = 884, + [3262] = 1055, + [3263] = 1067, + [3264] = 1160, + [3265] = 1097, + [3266] = 1130, + [3267] = 905, + [3268] = 1157, + [3269] = 1153, + [3270] = 1155, + [3271] = 901, + [3272] = 1154, + [3273] = 815, + [3274] = 818, + [3275] = 820, + [3276] = 942, + [3277] = 363, + [3278] = 359, + [3279] = 825, + [3280] = 969, + [3281] = 938, + [3282] = 967, + [3283] = 968, + [3284] = 928, + [3285] = 988, + [3286] = 377, + [3287] = 842, + [3288] = 365, + [3289] = 374, + [3290] = 847, + [3291] = 934, + [3292] = 991, + [3293] = 936, + [3294] = 812, + [3295] = 952, + [3296] = 367, + [3297] = 1004, + [3298] = 931, + [3299] = 361, + [3300] = 972, + [3301] = 1001, + [3302] = 955, + [3303] = 935, + [3304] = 973, + [3305] = 820, + [3306] = 819, + [3307] = 979, + [3308] = 824, + [3309] = 982, + [3310] = 376, + [3311] = 946, + [3312] = 932, + [3313] = 820, + [3314] = 814, + [3315] = 994, + [3316] = 815, + [3317] = 818, + [3318] = 822, + [3319] = 816, + [3320] = 974, + [3321] = 997, + [3322] = 814, + [3323] = 822, + [3324] = 943, + [3325] = 987, + [3326] = 995, + [3327] = 947, + [3328] = 366, + [3329] = 945, + [3330] = 360, + [3331] = 984, + [3332] = 823, + [3333] = 364, + [3334] = 999, + [3335] = 368, + [3336] = 369, + [3337] = 370, + [3338] = 373, + [3339] = 379, + [3340] = 378, + [3341] = 930, + [3342] = 939, + [3343] = 1000, + [3344] = 372, + [3345] = 937, + [3346] = 933, + [3347] = 813, + [3348] = 981, + [3349] = 822, + [3350] = 818, + [3351] = 960, + [3352] = 983, + [3353] = 927, + [3354] = 966, + [3355] = 815, + [3356] = 963, + [3357] = 992, + [3358] = 814, + [3359] = 1012, + [3360] = 985, + [3361] = 990, + [3362] = 993, + [3363] = 929, + [3364] = 821, + [3365] = 941, + [3366] = 971, + [3367] = 944, + [3368] = 956, + [3369] = 837, + [3370] = 1044, + [3371] = 833, + [3372] = 852, + [3373] = 846, + [3374] = 857, + [3375] = 855, + [3376] = 829, + [3377] = 832, + [3378] = 849, + [3379] = 848, + [3380] = 845, + [3381] = 835, + [3382] = 844, + [3383] = 837, + [3384] = 850, + [3385] = 849, + [3386] = 848, + [3387] = 1057, + [3388] = 845, + [3389] = 844, + [3390] = 859, + [3391] = 831, + [3392] = 860, + [3393] = 851, + [3394] = 853, + [3395] = 1106, + [3396] = 1067, + [3397] = 1097, + [3398] = 1103, + [3399] = 866, + [3400] = 1130, + [3401] = 1042, + [3402] = 1129, + [3403] = 904, + [3404] = 1036, + [3405] = 3405, + [3406] = 1133, + [3407] = 1012, + [3408] = 864, + [3409] = 846, + [3410] = 842, + [3411] = 847, + [3412] = 852, + [3413] = 1055, + [3414] = 1048, + [3415] = 1109, + [3416] = 842, + [3417] = 885, + [3418] = 847, + [3419] = 1151, + [3420] = 1117, + [3421] = 1116, + [3422] = 1115, + [3423] = 1054, + [3424] = 1145, + [3425] = 837, + [3426] = 914, + [3427] = 844, + [3428] = 1049, + [3429] = 831, + [3430] = 1131, + [3431] = 845, + [3432] = 848, + [3433] = 1028, + [3434] = 1034, + [3435] = 1075, + [3436] = 1164, + [3437] = 1077, + [3438] = 1076, + [3439] = 1149, + [3440] = 1150, + [3441] = 1176, + [3442] = 1058, + [3443] = 1051, + [3444] = 982, + [3445] = 979, + [3446] = 973, + [3447] = 1058, + [3448] = 1051, + [3449] = 1034, + [3450] = 1028, + [3451] = 1125, + [3452] = 1065, + [3453] = 1018, + [3454] = 1108, + [3455] = 849, + [3456] = 1114, + [3457] = 1085, + [3458] = 1099, + [3459] = 1098, + [3460] = 1122, + [3461] = 1123, + [3462] = 828, + [3463] = 1040, + [3464] = 1124, + [3465] = 1035, + [3466] = 1128, + [3467] = 1132, + [3468] = 1078, + [3469] = 1163, + [3470] = 1082, + [3471] = 1135, + [3472] = 1174, + [3473] = 1059, + [3474] = 1074, + [3475] = 1061, + [3476] = 1171, + [3477] = 1136, + [3478] = 1140, + [3479] = 1062, + [3480] = 1063, + [3481] = 1165, + [3482] = 1019, + [3483] = 1144, + [3484] = 938, + [3485] = 1110, + [3486] = 974, + [3487] = 1052, + [3488] = 1017, + [3489] = 1020, + [3490] = 1081, + [3491] = 1021, + [3492] = 1112, + [3493] = 1118, + [3494] = 1120, + [3495] = 1138, + [3496] = 1024, + [3497] = 1143, + [3498] = 1147, + [3499] = 1025, + [3500] = 1031, + [3501] = 1148, + [3502] = 1153, + [3503] = 1033, + [3504] = 1154, + [3505] = 1155, + [3506] = 842, + [3507] = 1157, + [3508] = 847, + [3509] = 1038, + [3510] = 1160, + [3511] = 1104, + [3512] = 1166, + [3513] = 1167, + [3514] = 1101, + [3515] = 3515, + [3516] = 1094, + [3517] = 1172, + [3518] = 991, + [3519] = 1004, + [3520] = 1173, + [3521] = 1175, + [3522] = 1040, + [3523] = 1035, + [3524] = 1181, + [3525] = 1092, + [3526] = 1083, + [3527] = 1182, + [3528] = 1183, + [3529] = 891, + [3530] = 1185, + [3531] = 1170, + [3532] = 842, + [3533] = 1187, + [3534] = 847, + [3535] = 1161, + [3536] = 1158, + [3537] = 1159, + [3538] = 854, + [3539] = 1068, + [3540] = 1066, + [3541] = 972, + [3542] = 1162, + [3543] = 1141, + [3544] = 1139, + [3545] = 856, + [3546] = 1137, + [3547] = 1168, + [3548] = 858, + [3549] = 1169, + [3550] = 861, + [3551] = 1079, + [3552] = 1014, + [3553] = 1054, + [3554] = 824, + [3555] = 822, + [3556] = 830, + [3557] = 1057, + [3558] = 827, + [3559] = 842, + [3560] = 847, + [3561] = 818, + [3562] = 1186, + [3563] = 815, + [3564] = 814, + [3565] = 1180, + [3566] = 820, + [3567] = 1177, + [3568] = 3568, + [3569] = 3569, + [3570] = 842, + [3571] = 847, + [3572] = 822, + [3573] = 853, + [3574] = 818, + [3575] = 859, + [3576] = 850, + [3577] = 835, + [3578] = 815, + [3579] = 832, + [3580] = 829, + [3581] = 814, + [3582] = 855, + [3583] = 1073, + [3584] = 1072, + [3585] = 1071, + [3586] = 857, + [3587] = 1070, + [3588] = 1027, + [3589] = 1043, + [3590] = 1041, + [3591] = 1069, + [3592] = 1064, + [3593] = 1056, + [3594] = 1053, + [3595] = 820, + [3596] = 1050, + [3597] = 839, + [3598] = 1039, + [3599] = 1030, + [3600] = 1029, + [3601] = 1047, + [3602] = 1023, + [3603] = 1026, + [3604] = 887, + [3605] = 894, + [3606] = 988, + [3607] = 907, + [3608] = 919, + [3609] = 925, + [3610] = 920, + [3611] = 914, + [3612] = 1057, + [3613] = 887, + [3614] = 886, + [3615] = 900, + [3616] = 901, + [3617] = 967, + [3618] = 968, + [3619] = 821, + [3620] = 896, + [3621] = 896, + [3622] = 869, + [3623] = 864, + [3624] = 910, + [3625] = 992, + [3626] = 985, + [3627] = 918, + [3628] = 3628, + [3629] = 975, + [3630] = 823, + [3631] = 898, + [3632] = 816, + [3633] = 899, + [3634] = 1054, + [3635] = 924, + [3636] = 884, + [3637] = 3637, + [3638] = 885, + [3639] = 994, + [3640] = 898, + [3641] = 899, + [3642] = 981, + [3643] = 837, + [3644] = 912, + [3645] = 903, + [3646] = 905, + [3647] = 903, + [3648] = 823, + [3649] = 905, + [3650] = 915, + [3651] = 891, + [3652] = 909, + [3653] = 909, + [3654] = 911, + [3655] = 844, + [3656] = 911, + [3657] = 821, + [3658] = 842, + [3659] = 847, + [3660] = 908, + [3661] = 871, + [3662] = 849, + [3663] = 845, + [3664] = 917, + [3665] = 848, + [3666] = 868, + [3667] = 867, + [3668] = 906, + [3669] = 848, + [3670] = 866, + [3671] = 831, + [3672] = 865, + [3673] = 849, + [3674] = 921, + [3675] = 820, + [3676] = 819, + [3677] = 845, + [3678] = 814, + [3679] = 842, + [3680] = 823, + [3681] = 815, + [3682] = 847, + [3683] = 857, + [3684] = 844, + [3685] = 855, + [3686] = 829, + [3687] = 818, + [3688] = 884, + [3689] = 853, + [3690] = 852, + [3691] = 821, + [3692] = 832, + [3693] = 859, + [3694] = 846, + [3695] = 850, + [3696] = 835, + [3697] = 832, + [3698] = 829, + [3699] = 855, + [3700] = 835, + [3701] = 850, + [3702] = 859, + [3703] = 857, + [3704] = 904, + [3705] = 837, + [3706] = 900, + [3707] = 822, + [3708] = 901, + [3709] = 853, + [3710] = 903, + [3711] = 374, + [3712] = 939, + [3713] = 848, + [3714] = 941, + [3715] = 944, + [3716] = 849, + [3717] = 937, + [3718] = 846, + [3719] = 927, + [3720] = 831, + [3721] = 945, + [3722] = 852, + [3723] = 946, + [3724] = 3724, + [3725] = 918, + [3726] = 852, + [3727] = 901, + [3728] = 845, + [3729] = 900, + [3730] = 831, + [3731] = 932, + [3732] = 844, + [3733] = 952, + [3734] = 887, + [3735] = 867, + [3736] = 921, + [3737] = 983, + [3738] = 837, + [3739] = 933, + [3740] = 988, + [3741] = 1000, + [3742] = 858, + [3743] = 846, + [3744] = 921, + [3745] = 994, + [3746] = 981, + [3747] = 999, + [3748] = 911, + [3749] = 909, + [3750] = 905, + [3751] = 899, + [3752] = 898, + [3753] = 987, + [3754] = 975, + [3755] = 365, + [3756] = 985, + [3757] = 995, + [3758] = 855, + [3759] = 896, + [3760] = 934, + [3761] = 967, + [3762] = 867, + [3763] = 968, + [3764] = 832, + [3765] = 835, + [3766] = 994, + [3767] = 829, + [3768] = 367, + [3769] = 936, + [3770] = 831, + [3771] = 377, + [3772] = 960, + [3773] = 359, + [3774] = 376, + [3775] = 966, + [3776] = 378, + [3777] = 379, + [3778] = 861, + [3779] = 373, + [3780] = 370, + [3781] = 997, + [3782] = 963, + [3783] = 853, + [3784] = 369, + [3785] = 368, + [3786] = 969, + [3787] = 364, + [3788] = 366, + [3789] = 360, + [3790] = 3790, + [3791] = 990, + [3792] = 363, + [3793] = 938, + [3794] = 993, + [3795] = 928, + [3796] = 925, + [3797] = 857, + [3798] = 859, + [3799] = 982, + [3800] = 979, + [3801] = 930, + [3802] = 973, + [3803] = 931, + [3804] = 912, + [3805] = 942, + [3806] = 854, + [3807] = 972, + [3808] = 852, + [3809] = 361, + [3810] = 971, + [3811] = 372, + [3812] = 846, + [3813] = 955, + [3814] = 850, + [3815] = 992, + [3816] = 943, + [3817] = 974, + [3818] = 984, + [3819] = 1012, + [3820] = 935, + [3821] = 991, + [3822] = 956, + [3823] = 947, + [3824] = 856, + [3825] = 929, + [3826] = 1004, + [3827] = 1001, + [3828] = 1027, + [3829] = 1057, + [3830] = 994, + [3831] = 1128, + [3832] = 1120, + [3833] = 1138, + [3834] = 1055, + [3835] = 952, + [3836] = 1143, + [3837] = 1144, + [3838] = 1168, + [3839] = 1148, + [3840] = 1153, + [3841] = 1125, + [3842] = 1154, + [3843] = 1054, + [3844] = 1155, + [3845] = 914, + [3846] = 1157, + [3847] = 1186, + [3848] = 842, + [3849] = 1160, + [3850] = 887, + [3851] = 1147, + [3852] = 896, + [3853] = 847, + [3854] = 1065, + [3855] = 900, + [3856] = 1166, + [3857] = 909, + [3858] = 1164, + [3859] = 898, + [3860] = 1106, + [3861] = 1167, + [3862] = 1150, + [3863] = 1049, + [3864] = 911, + [3865] = 921, + [3866] = 1014, + [3867] = 1079, + [3868] = 903, + [3869] = 887, + [3870] = 1177, + [3871] = 3871, + [3872] = 359, + [3873] = 1097, + [3874] = 1137, + [3875] = 1118, + [3876] = 904, + [3877] = 1162, + [3878] = 1139, + [3879] = 363, + [3880] = 900, + [3881] = 1043, + [3882] = 1129, + [3883] = 3883, + [3884] = 1141, + [3885] = 901, + [3886] = 1035, + [3887] = 1040, + [3888] = 1030, [3889] = 3889, - [3890] = 984, - [3891] = 1035, - [3892] = 990, - [3893] = 998, - [3894] = 959, - [3895] = 951, - [3896] = 960, - [3897] = 894, - [3898] = 962, - [3899] = 944, - [3900] = 972, - [3901] = 985, - [3902] = 942, - [3903] = 936, - [3904] = 890, - [3905] = 1011, - [3906] = 1014, - [3907] = 881, - [3908] = 1029, - [3909] = 898, - [3910] = 1026, - [3911] = 1028, - [3912] = 856, - [3913] = 1038, - [3914] = 851, - [3915] = 850, - [3916] = 899, - [3917] = 901, - [3918] = 849, - [3919] = 847, - [3920] = 952, - [3921] = 908, - [3922] = 953, - [3923] = 961, - [3924] = 3924, - [3925] = 964, - [3926] = 845, - [3927] = 1041, - [3928] = 907, - [3929] = 879, - [3930] = 905, - [3931] = 870, - [3932] = 852, - [3933] = 853, - [3934] = 1096, - [3935] = 936, - [3936] = 1113, - [3937] = 1105, - [3938] = 1044, - [3939] = 1046, - [3940] = 1065, - [3941] = 1056, - [3942] = 1058, - [3943] = 1191, - [3944] = 1062, - [3945] = 1143, - [3946] = 1010, - [3947] = 3947, - [3948] = 1064, - [3949] = 1104, - [3950] = 1066, - [3951] = 359, - [3952] = 1067, + [3890] = 1183, + [3891] = 1067, + [3892] = 1117, + [3893] = 1116, + [3894] = 1131, + [3895] = 1103, + [3896] = 911, + [3897] = 909, + [3898] = 1042, + [3899] = 1115, + [3900] = 1048, + [3901] = 1169, + [3902] = 1112, + [3903] = 1114, + [3904] = 1145, + [3905] = 905, + [3906] = 1151, + [3907] = 1029, + [3908] = 899, + [3909] = 1172, + [3910] = 1173, + [3911] = 901, + [3912] = 1149, + [3913] = 903, + [3914] = 1168, + [3915] = 1109, + [3916] = 1081, + [3917] = 898, + [3918] = 900, + [3919] = 377, + [3920] = 374, + [3921] = 367, + [3922] = 361, + [3923] = 1075, + [3924] = 896, + [3925] = 372, + [3926] = 376, + [3927] = 378, + [3928] = 379, + [3929] = 373, + [3930] = 370, + [3931] = 369, + [3932] = 1175, + [3933] = 1162, + [3934] = 368, + [3935] = 1076, + [3936] = 364, + [3937] = 899, + [3938] = 1017, + [3939] = 929, + [3940] = 366, + [3941] = 360, + [3942] = 1132, + [3943] = 1052, + [3944] = 898, + [3945] = 1066, + [3946] = 1159, + [3947] = 1108, + [3948] = 1110, + [3949] = 896, + [3950] = 1104, + [3951] = 901, + [3952] = 1133, [3953] = 1068, - [3954] = 1069, - [3955] = 1175, - [3956] = 1070, - [3957] = 1123, - [3958] = 1124, - [3959] = 972, - [3960] = 1155, - [3961] = 990, - [3962] = 1201, - [3963] = 1165, - [3964] = 1179, - [3965] = 1150, - [3966] = 1199, - [3967] = 1205, - [3968] = 1206, - [3969] = 1043, - [3970] = 1160, - [3971] = 361, - [3972] = 363, - [3973] = 364, - [3974] = 1081, - [3975] = 1082, - [3976] = 365, - [3977] = 366, - [3978] = 1103, - [3979] = 1083, - [3980] = 367, - [3981] = 360, - [3982] = 368, - [3983] = 369, - [3984] = 1085, - [3985] = 1086, - [3986] = 1088, - [3987] = 1089, - [3988] = 1091, - [3989] = 1093, - [3990] = 1094, - [3991] = 1095, - [3992] = 881, - [3993] = 370, - [3994] = 1097, - [3995] = 1098, - [3996] = 1100, - [3997] = 1101, - [3998] = 1102, - [3999] = 1135, - [4000] = 1106, - [4001] = 1108, - [4002] = 1109, - [4003] = 1110, - [4004] = 1112, - [4005] = 1114, - [4006] = 1134, - [4007] = 1118, - [4008] = 1121, - [4009] = 1122, - [4010] = 1202, - [4011] = 1111, - [4012] = 1010, - [4013] = 1077, - [4014] = 1079, - [4015] = 1090, - [4016] = 1142, - [4017] = 1099, - [4018] = 1143, - [4019] = 898, - [4020] = 1198, - [4021] = 1077, - [4022] = 1190, - [4023] = 899, - [4024] = 901, - [4025] = 905, - [4026] = 907, - [4027] = 908, - [4028] = 1079, - [4029] = 1099, - [4030] = 881, - [4031] = 1090, - [4032] = 898, - [4033] = 899, - [4034] = 901, - [4035] = 905, - [4036] = 907, - [4037] = 1189, - [4038] = 851, - [4039] = 908, - [4040] = 942, - [4041] = 4041, - [4042] = 850, - [4043] = 849, - [4044] = 1187, - [4045] = 1186, - [4046] = 898, - [4047] = 899, - [4048] = 901, - [4049] = 1184, - [4050] = 1181, - [4051] = 1178, - [4052] = 847, - [4053] = 371, - [4054] = 362, - [4055] = 905, - [4056] = 907, - [4057] = 908, - [4058] = 881, - [4059] = 845, - [4060] = 879, - [4061] = 870, - [4062] = 852, - [4063] = 853, - [4064] = 996, - [4065] = 856, - [4066] = 843, - [4067] = 875, - [4068] = 942, - [4069] = 1117, - [4070] = 843, - [4071] = 875, - [4072] = 944, - [4073] = 1092, - [4074] = 1131, - [4075] = 882, - [4076] = 936, - [4077] = 1142, - [4078] = 944, - [4079] = 1210, - [4080] = 883, - [4081] = 936, - [4082] = 942, - [4083] = 944, - [4084] = 1167, - [4085] = 1166, - [4086] = 1157, - [4087] = 1153, - [4088] = 1146, - [4089] = 1145, - [4090] = 1144, - [4091] = 1130, - [4092] = 1129, - [4093] = 1128, - [4094] = 1126, - [4095] = 1125, - [4096] = 1119, - [4097] = 1137, - [4098] = 1116, - [4099] = 1120, - [4100] = 1168, - [4101] = 373, - [4102] = 378, - [4103] = 379, - [4104] = 377, - [4105] = 1132, - [4106] = 1087, - [4107] = 4107, - [4108] = 1076, - [4109] = 1075, - [4110] = 1084, - [4111] = 1080, - [4112] = 1074, - [4113] = 1073, - [4114] = 1057, - [4115] = 1055, - [4116] = 1053, - [4117] = 1052, - [4118] = 1051, - [4119] = 1164, - [4120] = 1177, - [4121] = 1050, - [4122] = 1140, - [4123] = 1148, - [4124] = 1159, - [4125] = 1115, - [4126] = 4126, - [4127] = 1045, - [4128] = 890, - [4129] = 1215, - [4130] = 1211, - [4131] = 1209, - [4132] = 1207, - [4133] = 1204, - [4134] = 1171, - [4135] = 1170, - [4136] = 1169, - [4137] = 1203, - [4138] = 1200, - [4139] = 1197, - [4140] = 1194, - [4141] = 1180, - [4142] = 1176, - [4143] = 1173, - [4144] = 4144, - [4145] = 1172, - [4146] = 1103, - [4147] = 1158, - [4148] = 1147, - [4149] = 1138, - [4150] = 1136, - [4151] = 894, - [4152] = 1127, - [4153] = 377, - [4154] = 875, - [4155] = 843, - [4156] = 875, - [4157] = 843, - [4158] = 1169, - [4159] = 1170, - [4160] = 1171, - [4161] = 361, - [4162] = 1164, - [4163] = 1169, - [4164] = 1170, - [4165] = 1171, - [4166] = 1164, - [4167] = 1075, - [4168] = 371, - [4169] = 370, - [4170] = 359, - [4171] = 369, - [4172] = 368, - [4173] = 360, - [4174] = 367, - [4175] = 366, - [4176] = 365, - [4177] = 364, - [4178] = 363, - [4179] = 362, - [4180] = 894, - [4181] = 1076, - [4182] = 379, - [4183] = 890, - [4184] = 378, - [4185] = 373, - [4186] = 843, - [4187] = 875, - [4188] = 890, - [4189] = 894, - [4190] = 1076, - [4191] = 1075, - [4192] = 830, - [4193] = 875, - [4194] = 838, - [4195] = 843, - [4196] = 892, - [4197] = 835, - [4198] = 828, - [4199] = 833, - [4200] = 830, - [4201] = 838, - [4202] = 833, - [4203] = 828, - [4204] = 835, - [4205] = 855, - [4206] = 373, - [4207] = 370, - [4208] = 875, - [4209] = 371, - [4210] = 858, - [4211] = 843, - [4212] = 828, - [4213] = 843, - [4214] = 854, - [4215] = 838, - [4216] = 873, - [4217] = 366, - [4218] = 1010, - [4219] = 365, - [4220] = 364, - [4221] = 363, - [4222] = 857, - [4223] = 855, - [4224] = 377, - [4225] = 376, - [4226] = 379, - [4227] = 867, - [4228] = 875, - [4229] = 378, - [4230] = 369, - [4231] = 362, - [4232] = 859, - [4233] = 1171, - [4234] = 857, - [4235] = 368, - [4236] = 1170, - [4237] = 854, - [4238] = 1169, - [4239] = 990, - [4240] = 1164, - [4241] = 360, - [4242] = 833, - [4243] = 367, - [4244] = 361, - [4245] = 1075, - [4246] = 875, - [4247] = 1076, - [4248] = 830, - [4249] = 843, - [4250] = 835, - [4251] = 859, - [4252] = 996, - [4253] = 858, - [4254] = 359, - [4255] = 848, - [4256] = 847, - [4257] = 857, - [4258] = 849, - [4259] = 847, - [4260] = 850, - [4261] = 843, - [4262] = 907, - [4263] = 875, - [4264] = 851, - [4265] = 845, - [4266] = 1076, - [4267] = 1164, - [4268] = 1075, - [4269] = 1169, - [4270] = 1170, - [4271] = 858, - [4272] = 908, - [4273] = 879, - [4274] = 870, - [4275] = 1171, - [4276] = 849, - [4277] = 1164, - [4278] = 881, - [4279] = 1169, - [4280] = 1170, - [4281] = 852, - [4282] = 853, - [4283] = 1171, - [4284] = 856, - [4285] = 845, - [4286] = 936, - [4287] = 848, - [4288] = 905, - [4289] = 875, - [4290] = 873, - [4291] = 942, - [4292] = 867, - [4293] = 879, - [4294] = 855, - [4295] = 843, - [4296] = 854, - [4297] = 4297, - [4298] = 852, - [4299] = 850, - [4300] = 859, - [4301] = 944, - [4302] = 1075, - [4303] = 1076, - [4304] = 901, - [4305] = 870, - [4306] = 856, - [4307] = 899, - [4308] = 853, - [4309] = 898, - [4310] = 851, - [4311] = 881, - [4312] = 898, - [4313] = 972, - [4314] = 873, - [4315] = 1010, - [4316] = 907, - [4317] = 867, - [4318] = 942, - [4319] = 849, - [4320] = 851, - [4321] = 853, - [4322] = 845, - [4323] = 852, - [4324] = 848, - [4325] = 944, - [4326] = 908, - [4327] = 905, - [4328] = 879, - [4329] = 847, - [4330] = 856, - [4331] = 901, - [4332] = 870, - [4333] = 894, - [4334] = 936, - [4335] = 890, - [4336] = 899, - [4337] = 850, - [4338] = 892, - [4339] = 377, - [4340] = 901, - [4341] = 361, - [4342] = 1010, - [4343] = 1010, - [4344] = 972, - [4345] = 371, - [4346] = 370, - [4347] = 359, - [4348] = 369, - [4349] = 908, - [4350] = 368, - [4351] = 990, - [4352] = 360, - [4353] = 367, - [4354] = 366, - [4355] = 365, - [4356] = 376, - [4357] = 364, - [4358] = 363, - [4359] = 362, - [4360] = 890, - [4361] = 899, - [4362] = 905, - [4363] = 373, - [4364] = 378, - [4365] = 379, - [4366] = 898, - [4367] = 936, - [4368] = 907, - [4369] = 894, - [4370] = 996, - [4371] = 942, - [4372] = 944, - [4373] = 881, - [4374] = 362, - [4375] = 371, - [4376] = 370, - [4377] = 379, - [4378] = 377, - [4379] = 890, - [4380] = 359, - [4381] = 369, - [4382] = 368, - [4383] = 894, - [4384] = 373, - [4385] = 378, - [4386] = 360, - [4387] = 1164, - [4388] = 367, - [4389] = 1171, - [4390] = 366, - [4391] = 1170, - [4392] = 365, - [4393] = 361, - [4394] = 364, - [4395] = 1075, - [4396] = 1076, - [4397] = 363, - [4398] = 1169, - [4399] = 369, - [4400] = 377, - [4401] = 364, - [4402] = 1164, - [4403] = 365, - [4404] = 1075, - [4405] = 1076, - [4406] = 368, - [4407] = 371, - [4408] = 373, - [4409] = 361, - [4410] = 362, - [4411] = 360, - [4412] = 363, - [4413] = 367, - [4414] = 370, - [4415] = 359, - [4416] = 1171, - [4417] = 1170, - [4418] = 378, - [4419] = 1169, - [4420] = 379, - [4421] = 366, - [4422] = 1170, - [4423] = 1169, - [4424] = 4424, - [4425] = 4425, - [4426] = 4425, - [4427] = 4425, - [4428] = 4424, - [4429] = 4424, - [4430] = 1164, - [4431] = 4425, - [4432] = 4424, - [4433] = 4425, - [4434] = 1076, - [4435] = 1171, - [4436] = 4424, - [4437] = 1075, - [4438] = 4425, - [4439] = 4424, - [4440] = 4440, - [4441] = 4441, - [4442] = 4442, - [4443] = 4442, - [4444] = 4444, - [4445] = 4445, - [4446] = 4441, - [4447] = 4447, - [4448] = 4448, - [4449] = 4440, - [4450] = 4442, - [4451] = 4451, - [4452] = 4440, - [4453] = 4445, - [4454] = 4445, - [4455] = 4440, - [4456] = 4441, - [4457] = 4444, - [4458] = 4441, - [4459] = 4442, - [4460] = 4460, - [4461] = 4440, - [4462] = 4462, - [4463] = 4442, - [4464] = 4441, - [4465] = 4465, - [4466] = 4466, - [4467] = 4444, - [4468] = 776, - [4469] = 4441, - [4470] = 4470, - [4471] = 4445, - [4472] = 4441, - [4473] = 4442, - [4474] = 4466, - [4475] = 4444, - [4476] = 4466, - [4477] = 4445, - [4478] = 4445, - [4479] = 4440, - [4480] = 4466, - [4481] = 4466, + [3954] = 899, + [3955] = 1101, + [3956] = 1180, + [3957] = 1169, + [3958] = 1158, + [3959] = 1165, + [3960] = 1098, + [3961] = 1161, + [3962] = 1063, + [3963] = 1062, + [3964] = 1092, + [3965] = 975, + [3966] = 1036, + [3967] = 1140, + [3968] = 1023, + [3969] = 1083, + [3970] = 1176, + [3971] = 1078, + [3972] = 1130, + [3973] = 911, + [3974] = 994, + [3975] = 3975, + [3976] = 1170, + [3977] = 1074, + [3978] = 1136, + [3979] = 3979, + [3980] = 887, + [3981] = 1171, + [3982] = 1061, + [3983] = 1018, + [3984] = 909, + [3985] = 1028, + [3986] = 1059, + [3987] = 1181, + [3988] = 1034, + [3989] = 1077, + [3990] = 1019, + [3991] = 1051, + [3992] = 1058, + [3993] = 1170, + [3994] = 1073, + [3995] = 1085, + [3996] = 1072, + [3997] = 1071, + [3998] = 1159, + [3999] = 842, + [4000] = 1020, + [4001] = 1182, + [4002] = 1174, + [4003] = 1094, + [4004] = 853, + [4005] = 1021, + [4006] = 1026, + [4007] = 1024, + [4008] = 859, + [4009] = 850, + [4010] = 1025, + [4011] = 835, + [4012] = 832, + [4013] = 829, + [4014] = 1038, + [4015] = 855, + [4016] = 857, + [4017] = 1057, + [4018] = 1099, + [4019] = 905, + [4020] = 905, + [4021] = 1122, + [4022] = 1187, + [4023] = 847, + [4024] = 1031, + [4025] = 1069, + [4026] = 1054, + [4027] = 1123, + [4028] = 1033, + [4029] = 867, + [4030] = 1135, + [4031] = 1082, + [4032] = 1070, + [4033] = 1163, + [4034] = 1124, + [4035] = 1185, + [4036] = 903, + [4037] = 1039, + [4038] = 1041, + [4039] = 1044, + [4040] = 1047, + [4041] = 1050, + [4042] = 1053, + [4043] = 1056, + [4044] = 1064, + [4045] = 1034, + [4046] = 364, + [4047] = 376, + [4048] = 359, + [4049] = 925, + [4050] = 372, + [4051] = 369, + [4052] = 867, + [4053] = 367, + [4054] = 921, + [4055] = 1028, + [4056] = 847, + [4057] = 360, + [4058] = 1051, + [4059] = 1058, + [4060] = 368, + [4061] = 1035, + [4062] = 1040, + [4063] = 842, + [4064] = 818, + [4065] = 370, + [4066] = 820, + [4067] = 373, + [4068] = 1028, + [4069] = 378, + [4070] = 374, + [4071] = 1034, + [4072] = 379, + [4073] = 1058, + [4074] = 814, + [4075] = 815, + [4076] = 815, + [4077] = 1035, + [4078] = 818, + [4079] = 1040, + [4080] = 361, + [4081] = 867, + [4082] = 377, + [4083] = 847, + [4084] = 822, + [4085] = 842, + [4086] = 921, + [4087] = 820, + [4088] = 822, + [4089] = 363, + [4090] = 847, + [4091] = 842, + [4092] = 366, + [4093] = 842, + [4094] = 847, + [4095] = 814, + [4096] = 1051, + [4097] = 1051, + [4098] = 994, + [4099] = 842, + [4100] = 847, + [4101] = 377, + [4102] = 849, + [4103] = 831, + [4104] = 848, + [4105] = 845, + [4106] = 849, + [4107] = 374, + [4108] = 364, + [4109] = 844, + [4110] = 366, + [4111] = 820, + [4112] = 1034, + [4113] = 852, + [4114] = 367, + [4115] = 846, + [4116] = 848, + [4117] = 837, + [4118] = 1058, + [4119] = 847, + [4120] = 842, + [4121] = 1028, + [4122] = 363, + [4123] = 845, + [4124] = 368, + [4125] = 369, + [4126] = 370, + [4127] = 842, + [4128] = 373, + [4129] = 814, + [4130] = 379, + [4131] = 360, + [4132] = 929, + [4133] = 847, + [4134] = 844, + [4135] = 822, + [4136] = 361, + [4137] = 1040, + [4138] = 1035, + [4139] = 365, + [4140] = 952, + [4141] = 378, + [4142] = 818, + [4143] = 376, + [4144] = 359, + [4145] = 815, + [4146] = 372, + [4147] = 837, + [4148] = 852, + [4149] = 1034, + [4150] = 1040, + [4151] = 848, + [4152] = 853, + [4153] = 842, + [4154] = 859, + [4155] = 829, + [4156] = 850, + [4157] = 835, + [4158] = 859, + [4159] = 4159, + [4160] = 855, + [4161] = 850, + [4162] = 911, + [4163] = 909, + [4164] = 832, + [4165] = 901, + [4166] = 844, + [4167] = 905, + [4168] = 903, + [4169] = 900, + [4170] = 1028, + [4171] = 857, + [4172] = 829, + [4173] = 887, + [4174] = 899, + [4175] = 842, + [4176] = 898, + [4177] = 1035, + [4178] = 847, + [4179] = 853, + [4180] = 1034, + [4181] = 855, + [4182] = 857, + [4183] = 896, + [4184] = 1051, + [4185] = 1058, + [4186] = 1040, + [4187] = 1035, + [4188] = 832, + [4189] = 845, + [4190] = 846, + [4191] = 831, + [4192] = 847, + [4193] = 1028, + [4194] = 835, + [4195] = 849, + [4196] = 837, + [4197] = 1058, + [4198] = 1051, + [4199] = 925, + [4200] = 903, + [4201] = 900, + [4202] = 898, + [4203] = 829, + [4204] = 852, + [4205] = 850, + [4206] = 911, + [4207] = 921, + [4208] = 887, + [4209] = 859, + [4210] = 831, + [4211] = 867, + [4212] = 857, + [4213] = 896, + [4214] = 846, + [4215] = 855, + [4216] = 853, + [4217] = 975, + [4218] = 832, + [4219] = 909, + [4220] = 905, + [4221] = 835, + [4222] = 899, + [4223] = 994, + [4224] = 901, + [4225] = 374, + [4226] = 900, + [4227] = 368, + [4228] = 867, + [4229] = 901, + [4230] = 365, + [4231] = 909, + [4232] = 903, + [4233] = 994, + [4234] = 994, + [4235] = 360, + [4236] = 929, + [4237] = 363, + [4238] = 369, + [4239] = 361, + [4240] = 370, + [4241] = 905, + [4242] = 367, + [4243] = 975, + [4244] = 379, + [4245] = 911, + [4246] = 366, + [4247] = 364, + [4248] = 921, + [4249] = 372, + [4250] = 359, + [4251] = 377, + [4252] = 899, + [4253] = 378, + [4254] = 376, + [4255] = 373, + [4256] = 896, + [4257] = 887, + [4258] = 952, + [4259] = 898, + [4260] = 378, + [4261] = 376, + [4262] = 1034, + [4263] = 1051, + [4264] = 1058, + [4265] = 366, + [4266] = 374, + [4267] = 373, + [4268] = 1040, + [4269] = 360, + [4270] = 867, + [4271] = 361, + [4272] = 1035, + [4273] = 367, + [4274] = 379, + [4275] = 359, + [4276] = 370, + [4277] = 1028, + [4278] = 363, + [4279] = 369, + [4280] = 921, + [4281] = 377, + [4282] = 372, + [4283] = 368, + [4284] = 364, + [4285] = 368, + [4286] = 1035, + [4287] = 1040, + [4288] = 360, + [4289] = 1051, + [4290] = 366, + [4291] = 1058, + [4292] = 367, + [4293] = 374, + [4294] = 1034, + [4295] = 361, + [4296] = 1028, + [4297] = 364, + [4298] = 373, + [4299] = 372, + [4300] = 377, + [4301] = 363, + [4302] = 359, + [4303] = 370, + [4304] = 378, + [4305] = 379, + [4306] = 376, + [4307] = 369, + [4308] = 4308, + [4309] = 4308, + [4310] = 4308, + [4311] = 1058, + [4312] = 4312, + [4313] = 4308, + [4314] = 4308, + [4315] = 1028, + [4316] = 4308, + [4317] = 1034, + [4318] = 1035, + [4319] = 1040, + [4320] = 4312, + [4321] = 4312, + [4322] = 1051, + [4323] = 4312, + [4324] = 4312, + [4325] = 4312, + [4326] = 4326, + [4327] = 4326, + [4328] = 4328, + [4329] = 4329, + [4330] = 4330, + [4331] = 4331, + [4332] = 4332, + [4333] = 4333, + [4334] = 4334, + [4335] = 4328, + [4336] = 4326, + [4337] = 4337, + [4338] = 4330, + [4339] = 4330, + [4340] = 4328, + [4341] = 4332, + [4342] = 4331, + [4343] = 4332, + [4344] = 4330, + [4345] = 4326, + [4346] = 4331, + [4347] = 4332, + [4348] = 4326, + [4349] = 4330, + [4350] = 4331, + [4351] = 4330, + [4352] = 4331, + [4353] = 4332, + [4354] = 4329, + [4355] = 4355, + [4356] = 4332, + [4357] = 4357, + [4358] = 4328, + [4359] = 4328, + [4360] = 4332, + [4361] = 4361, + [4362] = 4330, + [4363] = 4329, + [4364] = 4364, + [4365] = 4326, + [4366] = 777, + [4367] = 4329, + [4368] = 4330, + [4369] = 4330, + [4370] = 4331, + [4371] = 4329, + [4372] = 4372, + [4373] = 774, + [4374] = 4374, + [4375] = 4326, + [4376] = 4376, + [4377] = 4329, + [4378] = 4326, + [4379] = 4329, + [4380] = 4380, + [4381] = 4381, + [4382] = 4332, + [4383] = 4383, + [4384] = 4328, + [4385] = 4385, + [4386] = 4331, + [4387] = 4387, + [4388] = 4331, + [4389] = 4329, + [4390] = 4332, + [4391] = 4391, + [4392] = 4328, + [4393] = 4331, + [4394] = 4329, + [4395] = 4328, + [4396] = 4326, + [4397] = 4328, + [4398] = 4398, + [4399] = 4399, + [4400] = 4400, + [4401] = 4399, + [4402] = 4402, + [4403] = 4403, + [4404] = 4402, + [4405] = 4405, + [4406] = 4400, + [4407] = 4405, + [4408] = 4408, + [4409] = 4399, + [4410] = 4405, + [4411] = 4400, + [4412] = 4412, + [4413] = 4400, + [4414] = 4414, + [4415] = 4405, + [4416] = 4414, + [4417] = 4402, + [4418] = 4399, + [4419] = 4403, + [4420] = 4405, + [4421] = 4399, + [4422] = 4400, + [4423] = 4399, + [4424] = 4400, + [4425] = 4412, + [4426] = 4399, + [4427] = 4405, + [4428] = 4405, + [4429] = 4400, + [4430] = 4405, + [4431] = 4399, + [4432] = 4400, + [4433] = 4405, + [4434] = 4402, + [4435] = 4400, + [4436] = 4399, + [4437] = 4400, + [4438] = 4399, + [4439] = 4405, + [4440] = 4400, + [4441] = 4399, + [4442] = 4400, + [4443] = 4414, + [4444] = 4399, + [4445] = 4405, + [4446] = 4399, + [4447] = 4412, + [4448] = 4412, + [4449] = 4399, + [4450] = 4399, + [4451] = 4400, + [4452] = 4405, + [4453] = 4403, + [4454] = 4403, + [4455] = 4414, + [4456] = 4400, + [4457] = 4402, + [4458] = 4399, + [4459] = 4400, + [4460] = 4402, + [4461] = 4405, + [4462] = 4402, + [4463] = 4402, + [4464] = 4405, + [4465] = 4405, + [4466] = 4402, + [4467] = 4412, + [4468] = 4414, + [4469] = 4399, + [4470] = 4402, + [4471] = 4402, + [4472] = 4412, + [4473] = 4399, + [4474] = 4400, + [4475] = 4400, + [4476] = 4414, + [4477] = 4400, + [4478] = 4412, + [4479] = 4399, + [4480] = 4405, + [4481] = 4400, [4482] = 4482, - [4483] = 4483, - [4484] = 4466, - [4485] = 4485, - [4486] = 4444, - [4487] = 775, - [4488] = 4442, - [4489] = 4440, - [4490] = 4442, - [4491] = 4445, - [4492] = 4441, - [4493] = 4493, - [4494] = 4444, - [4495] = 4444, - [4496] = 4440, - [4497] = 4444, - [4498] = 4498, - [4499] = 4499, - [4500] = 4445, - [4501] = 4466, - [4502] = 4502, - [4503] = 4503, - [4504] = 4466, - [4505] = 4442, - [4506] = 4444, - [4507] = 4445, - [4508] = 4440, - [4509] = 4441, - [4510] = 4466, - [4511] = 4511, - [4512] = 4512, - [4513] = 4513, - [4514] = 4514, - [4515] = 4515, - [4516] = 4516, - [4517] = 4517, - [4518] = 4516, - [4519] = 4516, - [4520] = 4520, - [4521] = 4517, - [4522] = 4515, - [4523] = 4516, - [4524] = 4520, - [4525] = 4517, - [4526] = 4520, - [4527] = 4515, - [4528] = 4517, - [4529] = 4516, - [4530] = 4520, - [4531] = 4515, - [4532] = 4513, - [4533] = 4520, - [4534] = 4515, - [4535] = 4516, - [4536] = 4536, - [4537] = 4514, - [4538] = 4517, - [4539] = 4517, - [4540] = 4515, - [4541] = 4541, - [4542] = 4516, - [4543] = 4515, - [4544] = 4514, - [4545] = 4516, - [4546] = 4517, - [4547] = 4520, - [4548] = 4516, - [4549] = 4516, - [4550] = 4550, - [4551] = 4517, - [4552] = 4516, - [4553] = 4520, - [4554] = 4520, - [4555] = 4515, - [4556] = 4516, - [4557] = 4515, - [4558] = 4515, - [4559] = 4517, - [4560] = 4520, - [4561] = 4541, - [4562] = 4516, - [4563] = 4513, - [4564] = 4516, - [4565] = 4516, - [4566] = 4517, - [4567] = 4520, - [4568] = 4513, - [4569] = 4517, - [4570] = 4515, - [4571] = 4516, - [4572] = 4572, - [4573] = 4520, - [4574] = 4517, - [4575] = 4515, - [4576] = 4515, - [4577] = 4516, - [4578] = 4516, - [4579] = 4514, - [4580] = 4580, - [4581] = 4520, - [4582] = 4514, - [4583] = 4520, - [4584] = 4514, - [4585] = 4520, - [4586] = 4517, - [4587] = 4517, - [4588] = 4515, - [4589] = 4517, - [4590] = 4517, - [4591] = 4516, - [4592] = 4520, - [4593] = 4515, - [4594] = 4516, - [4595] = 4520, - [4596] = 4520, - [4597] = 4515, - [4598] = 4515, - [4599] = 4515, - [4600] = 4520, - [4601] = 4513, - [4602] = 4516, - [4603] = 4520, - [4604] = 4515, - [4605] = 4520, - [4606] = 4516, - [4607] = 4520, - [4608] = 4515, - [4609] = 4541, - [4610] = 4516, - [4611] = 4517, - [4612] = 4517, - [4613] = 4517, - [4614] = 4513, - [4615] = 4541, - [4616] = 4517, - [4617] = 4520, - [4618] = 4541, - [4619] = 4515, - [4620] = 4515, - [4621] = 4517, - [4622] = 4515, - [4623] = 4516, - [4624] = 4520, - [4625] = 4517, - [4626] = 4516, - [4627] = 4513, - [4628] = 4513, - [4629] = 4520, - [4630] = 4517, - [4631] = 4515, - [4632] = 4515, - [4633] = 4517, - [4634] = 4520, - [4635] = 4515, - [4636] = 4520, - [4637] = 4513, - [4638] = 4515, - [4639] = 4520, - [4640] = 4516, - [4641] = 4516, - [4642] = 780, - [4643] = 780, - [4644] = 808, - [4645] = 778, - [4646] = 819, - [4647] = 841, - [4648] = 834, - [4649] = 838, - [4650] = 832, - [4651] = 830, - [4652] = 835, - [4653] = 832, - [4654] = 833, - [4655] = 828, - [4656] = 831, - [4657] = 829, - [4658] = 839, - [4659] = 839, - [4660] = 837, - [4661] = 829, - [4662] = 867, - [4663] = 808, - [4664] = 841, - [4665] = 872, - [4666] = 854, - [4667] = 855, - [4668] = 842, - [4669] = 856, - [4670] = 780, - [4671] = 869, - [4672] = 853, - [4673] = 866, - [4674] = 852, - [4675] = 778, - [4676] = 870, - [4677] = 879, - [4678] = 845, - [4679] = 847, - [4680] = 846, - [4681] = 849, - [4682] = 861, - [4683] = 868, - [4684] = 857, - [4685] = 858, - [4686] = 848, - [4687] = 850, - [4688] = 873, - [4689] = 859, - [4690] = 851, - [4691] = 780, - [4692] = 834, - [4693] = 837, - [4694] = 844, - [4695] = 877, - [4696] = 874, - [4697] = 869, - [4698] = 926, - [4699] = 889, - [4700] = 927, - [4701] = 866, - [4702] = 911, - [4703] = 897, - [4704] = 894, - [4705] = 936, - [4706] = 934, - [4707] = 942, - [4708] = 881, - [4709] = 908, - [4710] = 890, - [4711] = 882, - [4712] = 907, - [4713] = 944, - [4714] = 819, - [4715] = 905, - [4716] = 884, - [4717] = 887, - [4718] = 883, - [4719] = 865, - [4720] = 929, - [4721] = 872, - [4722] = 880, - [4723] = 906, - [4724] = 903, - [4725] = 910, - [4726] = 829, - [4727] = 839, - [4728] = 902, - [4729] = 901, - [4730] = 945, - [4731] = 899, - [4732] = 842, - [4733] = 900, - [4734] = 898, - [4735] = 895, - [4736] = 892, - [4737] = 904, - [4738] = 923, - [4739] = 1035, - [4740] = 959, - [4741] = 979, - [4742] = 877, - [4743] = 1014, - [4744] = 868, - [4745] = 846, - [4746] = 1026, - [4747] = 1007, - [4748] = 1033, - [4749] = 1032, - [4750] = 958, - [4751] = 1028, - [4752] = 1006, - [4753] = 1018, - [4754] = 1020, - [4755] = 1005, - [4756] = 1010, - [4757] = 1034, - [4758] = 1019, - [4759] = 838, - [4760] = 973, - [4761] = 834, - [4762] = 1012, - [4763] = 828, - [4764] = 961, - [4765] = 835, - [4766] = 962, - [4767] = 828, - [4768] = 844, - [4769] = 1002, - [4770] = 832, - [4771] = 974, - [4772] = 981, - [4773] = 830, - [4774] = 950, - [4775] = 996, - [4776] = 967, - [4777] = 874, - [4778] = 833, - [4779] = 831, - [4780] = 971, - [4781] = 975, - [4782] = 1013, - [4783] = 953, - [4784] = 861, - [4785] = 1025, - [4786] = 952, - [4787] = 1036, - [4788] = 841, - [4789] = 1038, - [4790] = 977, - [4791] = 960, - [4792] = 1024, - [4793] = 1009, - [4794] = 1021, - [4795] = 838, - [4796] = 951, - [4797] = 1017, - [4798] = 997, - [4799] = 835, - [4800] = 1004, - [4801] = 984, - [4802] = 982, - [4803] = 837, - [4804] = 830, - [4805] = 1011, - [4806] = 828, - [4807] = 985, - [4808] = 830, - [4809] = 998, - [4810] = 990, - [4811] = 833, - [4812] = 933, - [4813] = 976, - [4814] = 945, - [4815] = 947, - [4816] = 865, - [4817] = 838, - [4818] = 835, - [4819] = 1027, - [4820] = 928, - [4821] = 833, - [4822] = 1138, - [4823] = 1167, - [4824] = 1126, + [4483] = 4399, + [4484] = 4402, + [4485] = 4405, + [4486] = 4400, + [4487] = 4399, + [4488] = 4405, + [4489] = 4402, + [4490] = 4402, + [4491] = 4405, + [4492] = 4405, + [4493] = 4400, + [4494] = 4399, + [4495] = 4400, + [4496] = 4412, + [4497] = 4399, + [4498] = 4405, + [4499] = 4399, + [4500] = 4400, + [4501] = 4405, + [4502] = 4402, + [4503] = 4402, + [4504] = 4400, + [4505] = 4399, + [4506] = 4400, + [4507] = 4400, + [4508] = 4402, + [4509] = 4405, + [4510] = 4399, + [4511] = 4405, + [4512] = 4399, + [4513] = 4402, + [4514] = 4400, + [4515] = 4412, + [4516] = 4405, + [4517] = 4402, + [4518] = 4402, + [4519] = 4405, + [4520] = 4402, + [4521] = 4521, + [4522] = 4402, + [4523] = 4402, + [4524] = 4524, + [4525] = 4405, + [4526] = 4402, + [4527] = 4403, + [4528] = 785, + [4529] = 764, + [4530] = 785, + [4531] = 773, + [4532] = 801, + [4533] = 820, + [4534] = 823, + [4535] = 814, + [4536] = 818, + [4537] = 821, + [4538] = 824, + [4539] = 815, + [4540] = 825, + [4541] = 819, + [4542] = 813, + [4543] = 822, + [4544] = 824, + [4545] = 823, + [4546] = 816, + [4547] = 821, + [4548] = 825, + [4549] = 785, + [4550] = 854, + [4551] = 785, + [4552] = 859, + [4553] = 850, + [4554] = 861, + [4555] = 764, + [4556] = 835, + [4557] = 832, + [4558] = 829, + [4559] = 839, + [4560] = 855, + [4561] = 852, + [4562] = 857, + [4563] = 831, + [4564] = 846, + [4565] = 853, + [4566] = 773, + [4567] = 819, + [4568] = 816, + [4569] = 830, + [4570] = 848, + [4571] = 849, + [4572] = 845, + [4573] = 833, + [4574] = 827, + [4575] = 856, + [4576] = 844, + [4577] = 858, + [4578] = 860, + [4579] = 837, + [4580] = 851, + [4581] = 907, + [4582] = 899, + [4583] = 869, + [4584] = 905, + [4585] = 887, + [4586] = 909, + [4587] = 925, + [4588] = 911, + [4589] = 868, + [4590] = 920, + [4591] = 921, + [4592] = 919, + [4593] = 904, + [4594] = 821, + [4595] = 867, + [4596] = 917, + [4597] = 915, + [4598] = 865, + [4599] = 801, + [4600] = 924, + [4601] = 871, + [4602] = 894, + [4603] = 828, + [4604] = 854, + [4605] = 856, + [4606] = 910, + [4607] = 898, + [4608] = 858, + [4609] = 914, + [4610] = 861, + [4611] = 901, + [4612] = 823, + [4613] = 906, + [4614] = 900, + [4615] = 886, + [4616] = 884, + [4617] = 908, + [4618] = 896, + [4619] = 903, + [4620] = 891, + [4621] = 969, + [4622] = 941, + [4623] = 944, + [4624] = 945, + [4625] = 963, + [4626] = 946, + [4627] = 956, + [4628] = 813, + [4629] = 971, + [4630] = 820, + [4631] = 1012, + [4632] = 1000, + [4633] = 884, + [4634] = 990, + [4635] = 994, + [4636] = 995, + [4637] = 982, + [4638] = 979, + [4639] = 973, + [4640] = 822, + [4641] = 816, + [4642] = 822, + [4643] = 830, + [4644] = 819, + [4645] = 827, + [4646] = 839, + [4647] = 818, + [4648] = 952, + [4649] = 814, + [4650] = 928, + [4651] = 814, + [4652] = 864, + [4653] = 885, + [4654] = 934, + [4655] = 820, + [4656] = 1001, + [4657] = 966, + [4658] = 960, + [4659] = 987, + [4660] = 939, + [4661] = 814, + [4662] = 936, + [4663] = 851, + [4664] = 999, + [4665] = 860, + [4666] = 942, + [4667] = 815, + [4668] = 833, + [4669] = 972, + [4670] = 828, + [4671] = 997, + [4672] = 935, + [4673] = 815, + [4674] = 1004, + [4675] = 991, + [4676] = 933, + [4677] = 983, + [4678] = 825, + [4679] = 937, + [4680] = 929, + [4681] = 930, + [4682] = 943, + [4683] = 824, + [4684] = 984, + [4685] = 974, + [4686] = 822, + [4687] = 820, + [4688] = 927, + [4689] = 993, + [4690] = 932, + [4691] = 955, + [4692] = 938, + [4693] = 931, + [4694] = 947, + [4695] = 818, + [4696] = 818, + [4697] = 815, + [4698] = 1066, + [4699] = 1123, + [4700] = 1150, + [4701] = 1052, + [4702] = 1055, + [4703] = 1125, + [4704] = 837, + [4705] = 854, + [4706] = 1169, + [4707] = 844, + [4708] = 830, + [4709] = 1149, + [4710] = 1158, + [4711] = 1014, + [4712] = 820, + [4713] = 1079, + [4714] = 1017, + [4715] = 1140, + [4716] = 1109, + [4717] = 1034, + [4718] = 1058, + [4719] = 1076, + [4720] = 837, + [4721] = 1051, + [4722] = 833, + [4723] = 827, + [4724] = 1077, + [4725] = 818, + [4726] = 1166, + [4727] = 1165, + [4728] = 1147, + [4729] = 1172, + [4730] = 1081, + [4731] = 1176, + [4732] = 1065, + [4733] = 1040, + [4734] = 1112, + [4735] = 1063, + [4736] = 1062, + [4737] = 1161, + [4738] = 1035, + [4739] = 1118, + [4740] = 1120, + [4741] = 831, + [4742] = 1159, + [4743] = 845, + [4744] = 1138, + [4745] = 1186, + [4746] = 1075, + [4747] = 848, + [4748] = 1068, + [4749] = 1137, + [4750] = 1173, + [4751] = 828, + [4752] = 1117, + [4753] = 1108, + [4754] = 1116, + [4755] = 853, + [4756] = 1098, + [4757] = 1157, + [4758] = 1114, + [4759] = 1180, + [4760] = 1036, + [4761] = 1078, + [4762] = 1177, + [4763] = 1131, + [4764] = 1049, + [4765] = 849, + [4766] = 859, + [4767] = 1164, + [4768] = 1057, + [4769] = 1136, + [4770] = 1175, + [4771] = 1074, + [4772] = 1110, + [4773] = 1187, + [4774] = 1043, + [4775] = 1061, + [4776] = 857, + [4777] = 1171, + [4778] = 855, + [4779] = 1059, + [4780] = 1143, + [4781] = 829, + [4782] = 1144, + [4783] = 832, + [4784] = 1174, + [4785] = 1018, + [4786] = 1148, + [4787] = 1170, + [4788] = 822, + [4789] = 1019, + [4790] = 1020, + [4791] = 835, + [4792] = 1030, + [4793] = 1021, + [4794] = 850, + [4795] = 1024, + [4796] = 835, + [4797] = 1029, + [4798] = 850, + [4799] = 859, + [4800] = 1129, + [4801] = 832, + [4802] = 1025, + [4803] = 829, + [4804] = 1042, + [4805] = 846, + [4806] = 839, + [4807] = 852, + [4808] = 853, + [4809] = 1167, + [4810] = 1135, + [4811] = 1082, + [4812] = 1023, + [4813] = 1048, + [4814] = 814, + [4815] = 860, + [4816] = 851, + [4817] = 1026, + [4818] = 1027, + [4819] = 1181, + [4820] = 1031, + [4821] = 849, + [4822] = 1033, + [4823] = 1145, + [4824] = 1132, [4825] = 1128, - [4826] = 1129, - [4827] = 1046, - [4828] = 1142, - [4829] = 1130, - [4830] = 1132, - [4831] = 855, - [4832] = 1191, - [4833] = 1143, - [4834] = 1116, - [4835] = 1062, - [4836] = 1180, - [4837] = 1155, - [4838] = 1064, - [4839] = 854, - [4840] = 1057, - [4841] = 1165, - [4842] = 1087, - [4843] = 1140, - [4844] = 1144, - [4845] = 854, - [4846] = 1145, - [4847] = 1146, - [4848] = 855, - [4849] = 851, - [4850] = 1055, - [4851] = 1053, - [4852] = 857, - [4853] = 1153, - [4854] = 1052, - [4855] = 1077, - [4856] = 1143, - [4857] = 1157, - [4858] = 830, - [4859] = 858, - [4860] = 1124, - [4861] = 1123, - [4862] = 1177, - [4863] = 850, - [4864] = 1065, - [4865] = 1108, - [4866] = 1051, - [4867] = 879, - [4868] = 1179, - [4869] = 1150, - [4870] = 1003, - [4871] = 1122, - [4872] = 1121, - [4873] = 1148, - [4874] = 1175, - [4875] = 859, - [4876] = 838, - [4877] = 1085, - [4878] = 1050, - [4879] = 858, - [4880] = 861, - [4881] = 859, - [4882] = 1118, - [4883] = 1045, - [4884] = 849, - [4885] = 1135, - [4886] = 847, - [4887] = 845, - [4888] = 1159, - [4889] = 1066, - [4890] = 1067, - [4891] = 845, - [4892] = 1058, - [4893] = 1068, - [4894] = 870, - [4895] = 1127, - [4896] = 1069, - [4897] = 1202, - [4898] = 1215, - [4899] = 1070, - [4900] = 1205, - [4901] = 1056, - [4902] = 875, - [4903] = 1131, - [4904] = 1211, - [4905] = 1206, - [4906] = 1099, - [4907] = 847, - [4908] = 852, - [4909] = 843, - [4910] = 1114, - [4911] = 849, - [4912] = 850, - [4913] = 1209, - [4914] = 1117, - [4915] = 1088, - [4916] = 1142, - [4917] = 1136, - [4918] = 1081, - [4919] = 1112, - [4920] = 1125, - [4921] = 1082, - [4922] = 1079, - [4923] = 877, - [4924] = 1043, - [4925] = 1074, - [4926] = 1171, - [4927] = 1111, - [4928] = 853, - [4929] = 1170, - [4930] = 1092, - [4931] = 1169, - [4932] = 1110, - [4933] = 1160, - [4934] = 1164, - [4935] = 1207, - [4936] = 1109, - [4937] = 1083, - [4938] = 833, - [4939] = 1086, - [4940] = 1115, - [4941] = 980, - [4942] = 1080, - [4943] = 1008, - [4944] = 1147, - [4945] = 1204, - [4946] = 1178, - [4947] = 835, - [4948] = 1181, - [4949] = 1158, - [4950] = 851, - [4951] = 1184, - [4952] = 1203, - [4953] = 879, - [4954] = 1172, - [4955] = 1173, - [4956] = 1176, - [4957] = 1084, - [4958] = 842, - [4959] = 1113, - [4960] = 857, - [4961] = 1187, - [4962] = 1134, - [4963] = 856, - [4964] = 1075, - [4965] = 1090, - [4966] = 1106, - [4967] = 867, - [4968] = 1076, - [4969] = 868, - [4970] = 874, - [4971] = 873, - [4972] = 1189, - [4973] = 869, - [4974] = 1166, - [4975] = 1200, - [4976] = 1190, - [4977] = 865, - [4978] = 1186, - [4979] = 1119, - [4980] = 1198, - [4981] = 1105, - [4982] = 872, - [4983] = 1073, - [4984] = 870, - [4985] = 1120, - [4986] = 1103, - [4987] = 1194, - [4988] = 854, - [4989] = 1199, - [4990] = 1168, - [4991] = 1104, - [4992] = 855, - [4993] = 1137, - [4994] = 866, - [4995] = 1102, - [4996] = 1101, - [4997] = 1100, - [4998] = 1098, - [4999] = 1097, - [5000] = 857, - [5001] = 1197, - [5002] = 846, - [5003] = 1096, - [5004] = 856, - [5005] = 828, - [5006] = 1095, - [5007] = 858, - [5008] = 1094, - [5009] = 1093, - [5010] = 1091, - [5011] = 853, - [5012] = 859, - [5013] = 1089, - [5014] = 1201, - [5015] = 848, - [5016] = 843, - [5017] = 875, - [5018] = 852, - [5019] = 844, - [5020] = 1044, - [5021] = 1210, - [5022] = 1013, - [5023] = 850, - [5024] = 856, - [5025] = 854, - [5026] = 934, - [5027] = 859, - [5028] = 833, - [5029] = 845, - [5030] = 1009, - [5031] = 906, + [4826] = 855, + [4827] = 1124, + [4828] = 857, + [4829] = 1038, + [4830] = 1054, + [4831] = 1028, + [4832] = 1115, + [4833] = 1122, + [4834] = 1099, + [4835] = 844, + [4836] = 1039, + [4837] = 1067, + [4838] = 1085, + [4839] = 847, + [4840] = 847, + [4841] = 842, + [4842] = 1163, + [4843] = 988, + [4844] = 967, + [4845] = 968, + [4846] = 1133, + [4847] = 848, + [4848] = 861, + [4849] = 849, + [4850] = 848, + [4851] = 1182, + [4852] = 842, + [4853] = 1106, + [4854] = 1153, + [4855] = 1168, + [4856] = 1183, + [4857] = 858, + [4858] = 845, + [4859] = 1054, + [4860] = 1041, + [4861] = 1057, + [4862] = 1162, + [4863] = 844, + [4864] = 1044, + [4865] = 1094, + [4866] = 837, + [4867] = 1160, + [4868] = 1047, + [4869] = 815, + [4870] = 1050, + [4871] = 1185, + [4872] = 1053, + [4873] = 1056, + [4874] = 1064, + [4875] = 1069, + [4876] = 1070, + [4877] = 1071, + [4878] = 1072, + [4879] = 1073, + [4880] = 1083, + [4881] = 1130, + [4882] = 1104, + [4883] = 1092, + [4884] = 1103, + [4885] = 845, + [4886] = 1097, + [4887] = 1155, + [4888] = 1151, + [4889] = 1154, + [4890] = 1139, + [4891] = 1141, + [4892] = 856, + [4893] = 1101, + [4894] = 868, + [4895] = 857, + [4896] = 871, + [4897] = 884, + [4898] = 835, + [4899] = 837, + [4900] = 924, + [4901] = 829, + [4902] = 846, + [4903] = 855, + [4904] = 815, + [4905] = 852, + [4906] = 906, + [4907] = 907, + [4908] = 994, + [4909] = 975, + [4910] = 849, + [4911] = 915, + [4912] = 921, + [4913] = 887, + [4914] = 900, + [4915] = 848, + [4916] = 867, + [4917] = 901, + [4918] = 1012, + [4919] = 831, + [4920] = 904, + [4921] = 982, + [4922] = 910, + [4923] = 869, + [4924] = 979, + [4925] = 973, + [4926] = 845, + [4927] = 820, + [4928] = 886, + [4929] = 896, + [4930] = 857, + [4931] = 853, + [4932] = 898, + [4933] = 899, + [4934] = 853, + [4935] = 938, + [4936] = 974, + [4937] = 991, + [4938] = 917, + [4939] = 925, + [4940] = 855, + [4941] = 850, + [4942] = 859, + [4943] = 829, + [4944] = 908, + [4945] = 1004, + [4946] = 972, + [4947] = 903, + [4948] = 844, + [4949] = 865, + [4950] = 832, + [4951] = 925, + [4952] = 919, + [4953] = 911, + [4954] = 822, + [4955] = 920, + [4956] = 905, + [4957] = 818, + [4958] = 894, + [4959] = 909, + [4960] = 859, + [4961] = 850, + [4962] = 914, + [4963] = 814, + [4964] = 835, + [4965] = 832, + [4966] = 899, + [4967] = 885, + [4968] = 942, + [4969] = 995, + [4970] = 852, + [4971] = 955, + [4972] = 935, + [4973] = 891, + [4974] = 852, + [4975] = 1012, + [4976] = 845, + [4977] = 894, + [4978] = 984, + [4979] = 943, + [4980] = 942, + [4981] = 947, + [4982] = 941, + [4983] = 831, + [4984] = 982, + [4985] = 979, + [4986] = 994, + [4987] = 973, + [4988] = 864, + [4989] = 1001, + [4990] = 911, + [4991] = 927, + [4992] = 846, + [4993] = 956, + [4994] = 944, + [4995] = 971, + [4996] = 848, + [4997] = 934, + [4998] = 993, + [4999] = 990, + [5000] = 868, + [5001] = 891, + [5002] = 871, + [5003] = 963, + [5004] = 927, + [5005] = 938, + [5006] = 974, + [5007] = 966, + [5008] = 960, + [5009] = 937, + [5010] = 849, + [5011] = 994, + [5012] = 896, + [5013] = 931, + [5014] = 952, + [5015] = 909, + [5016] = 864, + [5017] = 997, + [5018] = 898, + [5019] = 915, + [5020] = 930, + [5021] = 910, + [5022] = 869, + [5023] = 896, + [5024] = 928, + [5025] = 975, + [5026] = 924, + [5027] = 898, + [5028] = 899, + [5029] = 969, + [5030] = 945, + [5031] = 903, [5032] = 929, - [5033] = 903, - [5034] = 923, - [5035] = 828, - [5036] = 944, - [5037] = 879, - [5038] = 883, - [5039] = 884, - [5040] = 942, - [5041] = 1010, - [5042] = 936, - [5043] = 847, - [5044] = 857, - [5045] = 892, - [5046] = 972, - [5047] = 910, - [5048] = 945, - [5049] = 849, - [5050] = 1025, - [5051] = 870, - [5052] = 890, - [5053] = 870, - [5054] = 856, - [5055] = 852, - [5056] = 900, - [5057] = 852, - [5058] = 1006, - [5059] = 1007, - [5060] = 858, - [5061] = 847, - [5062] = 974, - [5063] = 881, - [5064] = 853, - [5065] = 894, - [5066] = 882, - [5067] = 835, - [5068] = 838, - [5069] = 911, - [5070] = 887, - [5071] = 926, - [5072] = 830, - [5073] = 892, - [5074] = 845, - [5075] = 848, - [5076] = 908, - [5077] = 850, - [5078] = 849, - [5079] = 904, - [5080] = 897, - [5081] = 851, - [5082] = 873, - [5083] = 907, - [5084] = 880, - [5085] = 1027, - [5086] = 950, - [5087] = 905, - [5088] = 867, - [5089] = 901, - [5090] = 899, - [5091] = 853, - [5092] = 927, - [5093] = 898, - [5094] = 895, - [5095] = 879, - [5096] = 855, - [5097] = 851, - [5098] = 971, - [5099] = 889, - [5100] = 902, - [5101] = 894, - [5102] = 934, - [5103] = 1035, - [5104] = 947, - [5105] = 848, - [5106] = 998, - [5107] = 984, - [5108] = 1004, - [5109] = 928, - [5110] = 997, - [5111] = 982, - [5112] = 1017, - [5113] = 967, - [5114] = 929, - [5115] = 1021, - [5116] = 1024, - [5117] = 990, - [5118] = 933, - [5119] = 906, - [5120] = 975, - [5121] = 881, - [5122] = 908, - [5123] = 907, - [5124] = 959, - [5125] = 905, - [5126] = 859, - [5127] = 951, - [5128] = 901, - [5129] = 899, - [5130] = 898, - [5131] = 848, - [5132] = 1002, - [5133] = 960, - [5134] = 1012, - [5135] = 897, - [5136] = 933, - [5137] = 854, - [5138] = 1019, - [5139] = 1034, - [5140] = 962, - [5141] = 908, - [5142] = 1005, - [5143] = 1010, - [5144] = 1020, - [5145] = 973, - [5146] = 985, - [5147] = 1018, - [5148] = 958, - [5149] = 990, - [5150] = 947, - [5151] = 1032, - [5152] = 1033, - [5153] = 928, - [5154] = 996, - [5155] = 858, - [5156] = 972, - [5157] = 1011, - [5158] = 903, - [5159] = 976, - [5160] = 981, - [5161] = 936, - [5162] = 942, - [5163] = 944, - [5164] = 977, - [5165] = 1014, - [5166] = 979, - [5167] = 1026, - [5168] = 873, - [5169] = 1028, - [5170] = 1036, - [5171] = 1038, - [5172] = 961, - [5173] = 952, - [5174] = 977, - [5175] = 953, - [5176] = 973, - [5177] = 890, - [5178] = 1027, - [5179] = 867, - [5180] = 855, - [5181] = 979, - [5182] = 972, - [5183] = 857, - [5184] = 996, - [5185] = 1025, - [5186] = 1013, - [5187] = 900, - [5188] = 1007, - [5189] = 1006, + [5033] = 905, + [5034] = 837, + [5035] = 952, + [5036] = 909, + [5037] = 911, + [5038] = 939, + [5039] = 936, + [5040] = 975, + [5041] = 929, + [5042] = 991, + [5043] = 1004, + [5044] = 920, + [5045] = 994, + [5046] = 831, + [5047] = 921, + [5048] = 919, + [5049] = 987, + [5050] = 972, + [5051] = 999, + [5052] = 885, + [5053] = 867, + [5054] = 903, + [5055] = 1000, + [5056] = 946, + [5057] = 933, + [5058] = 886, + [5059] = 844, + [5060] = 908, + [5061] = 907, + [5062] = 932, + [5063] = 846, + [5064] = 900, + [5065] = 905, + [5066] = 934, + [5067] = 887, + [5068] = 997, + [5069] = 983, + [5070] = 901, + [5071] = 909, + [5072] = 1072, + [5073] = 1123, + [5074] = 1028, + [5075] = 911, + [5076] = 1131, + [5077] = 1027, + [5078] = 921, + [5079] = 1014, + [5080] = 911, + [5081] = 1042, + [5082] = 1079, + [5083] = 1159, + [5084] = 1054, + [5085] = 1162, + [5086] = 1168, + [5087] = 1169, + [5088] = 1064, + [5089] = 909, + [5090] = 1025, + [5091] = 1129, + [5092] = 1001, + [5093] = 1137, + [5094] = 1125, + [5095] = 901, + [5096] = 1024, + [5097] = 967, + [5098] = 887, + [5099] = 1021, + [5100] = 1139, + [5101] = 1177, + [5102] = 1141, + [5103] = 1083, + [5104] = 1056, + [5105] = 1054, + [5106] = 1167, + [5107] = 1034, + [5108] = 1147, + [5109] = 1051, + [5110] = 1058, + [5111] = 936, + [5112] = 1026, + [5113] = 1020, + [5114] = 1066, + [5115] = 1094, + [5116] = 1162, + [5117] = 901, + [5118] = 1068, + [5119] = 1170, + [5120] = 847, + [5121] = 900, + [5122] = 1166, + [5123] = 1186, + [5124] = 1053, + [5125] = 1019, + [5126] = 842, + [5127] = 1170, + [5128] = 1101, + [5129] = 1075, + [5130] = 1104, + [5131] = 1023, + [5132] = 1106, + [5133] = 968, + [5134] = 1158, + [5135] = 1161, + [5136] = 1169, + [5137] = 1030, + [5138] = 1187, + [5139] = 1050, + [5140] = 1130, + [5141] = 1185, + [5142] = 1117, + [5143] = 1183, + [5144] = 1029, + [5145] = 1182, + [5146] = 1181, + [5147] = 842, + [5148] = 921, + [5149] = 1164, + [5150] = 1049, + [5151] = 867, + [5152] = 1160, + [5153] = 1030, + [5154] = 1057, + [5155] = 1175, + [5156] = 1047, + [5157] = 1092, + [5158] = 1044, + [5159] = 1116, + [5160] = 1115, + [5161] = 1067, + [5162] = 1173, + [5163] = 1048, + [5164] = 905, + [5165] = 1145, + [5166] = 1103, + [5167] = 1097, + [5168] = 1110, + [5169] = 847, + [5170] = 1114, + [5171] = 1172, + [5172] = 1043, + [5173] = 896, + [5174] = 1085, + [5175] = 1180, + [5176] = 1018, + [5177] = 1099, + [5178] = 1157, + [5179] = 896, + [5180] = 1171, + [5181] = 1122, + [5182] = 1074, + [5183] = 1124, + [5184] = 1078, + [5185] = 1161, + [5186] = 1036, + [5187] = 1069, + [5188] = 903, + [5189] = 1070, [5190] = 898, - [5191] = 867, - [5192] = 899, - [5193] = 911, - [5194] = 884, - [5195] = 887, - [5196] = 982, - [5197] = 926, - [5198] = 901, - [5199] = 881, - [5200] = 907, - [5201] = 902, - [5202] = 904, - [5203] = 974, - [5204] = 950, - [5205] = 1010, - [5206] = 971, - [5207] = 910, - [5208] = 905, - [5209] = 923, - [5210] = 873, - [5211] = 889, - [5212] = 1010, - [5213] = 1009, - [5214] = 1086, - [5215] = 899, - [5216] = 905, - [5217] = 1124, - [5218] = 1123, - [5219] = 1122, - [5220] = 1050, - [5221] = 1121, - [5222] = 1118, - [5223] = 1134, - [5224] = 1051, - [5225] = 1090, - [5226] = 1052, - [5227] = 1201, - [5228] = 1114, - [5229] = 1112, - [5230] = 1053, - [5231] = 1111, - [5232] = 1199, - [5233] = 1110, - [5234] = 1045, - [5235] = 907, - [5236] = 1055, - [5237] = 1077, - [5238] = 1109, - [5239] = 850, - [5240] = 849, - [5241] = 1057, - [5242] = 1135, - [5243] = 1106, - [5244] = 894, - [5245] = 1076, - [5246] = 1075, - [5247] = 1127, - [5248] = 898, - [5249] = 1064, - [5250] = 881, - [5251] = 1104, - [5252] = 847, - [5253] = 1079, - [5254] = 951, - [5255] = 1090, - [5256] = 1003, - [5257] = 1160, - [5258] = 1198, - [5259] = 1190, - [5260] = 1175, - [5261] = 1189, - [5262] = 843, - [5263] = 980, - [5264] = 1102, - [5265] = 944, - [5266] = 875, - [5267] = 1117, - [5268] = 1136, - [5269] = 1101, - [5270] = 898, - [5271] = 1100, - [5272] = 1098, - [5273] = 1097, - [5274] = 1187, - [5275] = 1155, - [5276] = 981, - [5277] = 1186, - [5278] = 1138, - [5279] = 1096, - [5280] = 1147, - [5281] = 875, - [5282] = 936, - [5283] = 1043, - [5284] = 1113, - [5285] = 1158, - [5286] = 901, - [5287] = 843, - [5288] = 1095, - [5289] = 1094, - [5290] = 1172, - [5291] = 1077, - [5292] = 1173, - [5293] = 908, - [5294] = 1105, - [5295] = 1176, - [5296] = 1206, - [5297] = 1184, - [5298] = 1091, - [5299] = 1177, - [5300] = 1180, - [5301] = 1165, - [5302] = 1089, - [5303] = 1194, - [5304] = 1088, - [5305] = 1205, - [5306] = 1164, - [5307] = 1197, - [5308] = 1169, - [5309] = 1170, - [5310] = 1171, - [5311] = 845, - [5312] = 1093, - [5313] = 1166, - [5314] = 908, - [5315] = 1181, - [5316] = 1178, - [5317] = 1073, - [5318] = 1074, - [5319] = 1008, - [5320] = 1210, - [5321] = 1143, - [5322] = 1202, - [5323] = 1008, - [5324] = 1080, - [5325] = 879, - [5326] = 1200, - [5327] = 1084, - [5328] = 1168, - [5329] = 1167, - [5330] = 942, - [5331] = 1103, - [5332] = 1203, - [5333] = 1204, - [5334] = 1207, - [5335] = 1044, - [5336] = 899, - [5337] = 1108, - [5338] = 1085, - [5339] = 851, - [5340] = 1120, - [5341] = 1142, - [5342] = 1209, - [5343] = 1012, - [5344] = 905, - [5345] = 1211, - [5346] = 1087, - [5347] = 1215, - [5348] = 881, - [5349] = 1125, - [5350] = 1083, - [5351] = 1092, - [5352] = 870, - [5353] = 1082, - [5354] = 1081, - [5355] = 1126, - [5356] = 852, - [5357] = 997, - [5358] = 1099, - [5359] = 1131, - [5360] = 1128, - [5361] = 1070, - [5362] = 1177, - [5363] = 1159, - [5364] = 1069, - [5365] = 1068, - [5366] = 1067, - [5367] = 1103, + [5191] = 1098, + [5192] = 1128, + [5193] = 1155, + [5194] = 1132, + [5195] = 944, + [5196] = 898, + [5197] = 968, + [5198] = 1163, + [5199] = 1082, + [5200] = 967, + [5201] = 1154, + [5202] = 1135, + [5203] = 887, + [5204] = 1176, + [5205] = 1150, + [5206] = 900, + [5207] = 853, + [5208] = 1149, + [5209] = 1057, + [5210] = 1174, + [5211] = 1040, + [5212] = 835, + [5213] = 1151, + [5214] = 1059, + [5215] = 1108, + [5216] = 1035, + [5217] = 1065, + [5218] = 1031, + [5219] = 899, + [5220] = 1061, + [5221] = 1136, + [5222] = 1033, + [5223] = 829, + [5224] = 1153, + [5225] = 1140, + [5226] = 1062, + [5227] = 1073, + [5228] = 1063, + [5229] = 850, + [5230] = 1165, + [5231] = 1133, + [5232] = 999, + [5233] = 857, + [5234] = 855, + [5235] = 1000, + [5236] = 1052, + [5237] = 899, + [5238] = 1017, + [5239] = 832, + [5240] = 1081, + [5241] = 1055, + [5242] = 941, + [5243] = 903, + [5244] = 1112, + [5245] = 1077, + [5246] = 1148, + [5247] = 1076, + [5248] = 1118, + [5249] = 1120, + [5250] = 905, + [5251] = 1071, + [5252] = 1041, + [5253] = 1138, + [5254] = 988, + [5255] = 931, + [5256] = 1038, + [5257] = 1159, + [5258] = 988, + [5259] = 1168, + [5260] = 1039, + [5261] = 1143, + [5262] = 1144, + [5263] = 859, + [5264] = 1109, + [5265] = 867, + [5266] = 963, + [5267] = 815, + [5268] = 983, + [5269] = 946, + [5270] = 945, + [5271] = 987, + [5272] = 5272, + [5273] = 925, + [5274] = 921, + [5275] = 5275, + [5276] = 847, + [5277] = 1058, + [5278] = 1051, + [5279] = 1040, + [5280] = 1035, + [5281] = 1034, + [5282] = 1028, + [5283] = 847, + [5284] = 842, + [5285] = 842, + [5286] = 822, + [5287] = 937, + [5288] = 960, + [5289] = 966, + [5290] = 867, + [5291] = 932, + [5292] = 820, + [5293] = 990, + [5294] = 993, + [5295] = 969, + [5296] = 928, + [5297] = 930, + [5298] = 933, + [5299] = 955, + [5300] = 935, + [5301] = 939, + [5302] = 822, + [5303] = 818, + [5304] = 814, + [5305] = 842, + [5306] = 815, + [5307] = 847, + [5308] = 5308, + [5309] = 971, + [5310] = 814, + [5311] = 818, + [5312] = 956, + [5313] = 820, + [5314] = 947, + [5315] = 943, + [5316] = 1180, + [5317] = 1079, + [5318] = 847, + [5319] = 848, + [5320] = 845, + [5321] = 952, + [5322] = 844, + [5323] = 1023, + [5324] = 929, + [5325] = 837, + [5326] = 847, + [5327] = 831, + [5328] = 393, + [5329] = 842, + [5330] = 1153, + [5331] = 384, + [5332] = 1034, + [5333] = 1028, + [5334] = 852, + [5335] = 1029, + [5336] = 1043, + [5337] = 1177, + [5338] = 846, + [5339] = 1035, + [5340] = 824, + [5341] = 1155, + [5342] = 1154, + [5343] = 1040, + [5344] = 1186, + [5345] = 5345, + [5346] = 1157, + [5347] = 1160, + [5348] = 1058, + [5349] = 1147, + [5350] = 849, + [5351] = 1026, + [5352] = 1051, + [5353] = 1148, + [5354] = 1051, + [5355] = 1058, + [5356] = 1144, + [5357] = 1166, + [5358] = 1167, + [5359] = 1143, + [5360] = 1014, + [5361] = 1138, + [5362] = 387, + [5363] = 1120, + [5364] = 1118, + [5365] = 1085, + [5366] = 842, + [5367] = 3568, [5368] = 1099, - [5369] = 980, - [5370] = 1148, - [5371] = 1142, - [5372] = 1129, - [5373] = 1140, - [5374] = 890, - [5375] = 1119, - [5376] = 1130, - [5377] = 1003, - [5378] = 1032, - [5379] = 907, - [5380] = 942, - [5381] = 1033, - [5382] = 1143, - [5383] = 1132, - [5384] = 1120, - [5385] = 1116, - [5386] = 1019, - [5387] = 1065, - [5388] = 1137, - [5389] = 1066, - [5390] = 1062, - [5391] = 1058, - [5392] = 890, - [5393] = 1056, - [5394] = 1115, - [5395] = 894, - [5396] = 944, - [5397] = 1144, - [5398] = 853, - [5399] = 936, - [5400] = 1145, - [5401] = 1146, - [5402] = 1046, - [5403] = 1153, - [5404] = 1191, - [5405] = 901, - [5406] = 1079, - [5407] = 1157, - [5408] = 1150, - [5409] = 1179, - [5410] = 856, - [5411] = 1036, - [5412] = 833, - [5413] = 1034, - [5414] = 828, - [5415] = 1038, - [5416] = 830, - [5417] = 1004, - [5418] = 835, - [5419] = 952, - [5420] = 1018, - [5421] = 1017, - [5422] = 953, - [5423] = 5423, - [5424] = 894, - [5425] = 958, - [5426] = 892, - [5427] = 1021, - [5428] = 984, - [5429] = 1028, - [5430] = 1026, - [5431] = 838, - [5432] = 1014, - [5433] = 1035, - [5434] = 1011, - [5435] = 975, - [5436] = 838, - [5437] = 835, - [5438] = 985, - [5439] = 828, - [5440] = 5440, - [5441] = 830, - [5442] = 962, - [5443] = 1164, - [5444] = 1024, - [5445] = 976, - [5446] = 833, - [5447] = 1075, - [5448] = 1076, - [5449] = 1169, - [5450] = 1020, - [5451] = 1170, - [5452] = 1171, - [5453] = 960, - [5454] = 843, - [5455] = 1005, - [5456] = 875, - [5457] = 1002, - [5458] = 875, - [5459] = 843, - [5460] = 5460, - [5461] = 959, - [5462] = 890, - [5463] = 998, - [5464] = 875, - [5465] = 843, - [5466] = 1148, - [5467] = 1171, - [5468] = 1203, - [5469] = 1052, - [5470] = 996, - [5471] = 1153, - [5472] = 1053, - [5473] = 1157, - [5474] = 1055, - [5475] = 1057, - [5476] = 1166, - [5477] = 1197, - [5478] = 1168, - [5479] = 1127, - [5480] = 380, - [5481] = 1115, - [5482] = 389, - [5483] = 843, - [5484] = 990, - [5485] = 1178, - [5486] = 1207, - [5487] = 1184, - [5488] = 875, - [5489] = 843, - [5490] = 1180, - [5491] = 1186, - [5492] = 1215, - [5493] = 1073, - [5494] = 1045, - [5495] = 1187, - [5496] = 1131, - [5497] = 882, - [5498] = 391, - [5499] = 1144, - [5500] = 835, - [5501] = 1171, - [5502] = 828, - [5503] = 1170, - [5504] = 1189, - [5505] = 1119, - [5506] = 5506, - [5507] = 873, - [5508] = 867, - [5509] = 390, - [5510] = 3472, - [5511] = 1074, - [5512] = 1145, - [5513] = 1146, - [5514] = 1190, - [5515] = 1198, - [5516] = 854, - [5517] = 1137, - [5518] = 1199, - [5519] = 1204, - [5520] = 875, - [5521] = 1130, - [5522] = 830, - [5523] = 1209, - [5524] = 1201, - [5525] = 1080, - [5526] = 1210, - [5527] = 883, - [5528] = 833, - [5529] = 1169, - [5530] = 1159, - [5531] = 875, - [5532] = 848, - [5533] = 854, - [5534] = 1092, - [5535] = 838, - [5536] = 1129, - [5537] = 1136, - [5538] = 1176, - [5539] = 855, - [5540] = 392, - [5541] = 1181, - [5542] = 857, - [5543] = 1164, - [5544] = 1200, - [5545] = 1128, - [5546] = 1138, - [5547] = 858, - [5548] = 1126, - [5549] = 1075, - [5550] = 1050, - [5551] = 1076, - [5552] = 1173, - [5553] = 1132, - [5554] = 1211, - [5555] = 1172, - [5556] = 1116, - [5557] = 1164, - [5558] = 1169, - [5559] = 1010, - [5560] = 1147, - [5561] = 1051, - [5562] = 1125, - [5563] = 855, - [5564] = 843, - [5565] = 1194, - [5566] = 1140, - [5567] = 857, - [5568] = 1167, - [5569] = 832, - [5570] = 859, - [5571] = 1084, - [5572] = 1158, - [5573] = 1087, - [5574] = 858, - [5575] = 859, - [5576] = 1170, - [5577] = 853, - [5578] = 936, - [5579] = 858, - [5580] = 848, - [5581] = 392, - [5582] = 859, - [5583] = 945, - [5584] = 851, - [5585] = 440, - [5586] = 829, - [5587] = 850, - [5588] = 849, - [5589] = 905, - [5590] = 390, - [5591] = 847, - [5592] = 429, - [5593] = 908, - [5594] = 845, - [5595] = 879, - [5596] = 873, - [5597] = 867, - [5598] = 898, - [5599] = 5599, - [5600] = 389, - [5601] = 1164, - [5602] = 944, - [5603] = 942, - [5604] = 901, - [5605] = 881, - [5606] = 839, - [5607] = 380, - [5608] = 852, - [5609] = 837, - [5610] = 432, - [5611] = 5611, - [5612] = 856, - [5613] = 856, - [5614] = 853, - [5615] = 430, - [5616] = 851, - [5617] = 391, - [5618] = 1170, - [5619] = 834, - [5620] = 1171, - [5621] = 852, - [5622] = 441, - [5623] = 857, - [5624] = 850, - [5625] = 854, - [5626] = 1075, - [5627] = 849, - [5628] = 847, - [5629] = 870, - [5630] = 1076, - [5631] = 1169, - [5632] = 855, - [5633] = 899, - [5634] = 845, - [5635] = 870, - [5636] = 907, - [5637] = 879, - [5638] = 899, - [5639] = 5639, - [5640] = 412, - [5641] = 5641, - [5642] = 5639, - [5643] = 901, - [5644] = 879, - [5645] = 892, - [5646] = 5646, - [5647] = 5639, - [5648] = 429, - [5649] = 5639, - [5650] = 852, - [5651] = 5639, - [5652] = 869, - [5653] = 905, - [5654] = 907, - [5655] = 5639, - [5656] = 5639, - [5657] = 847, - [5658] = 417, - [5659] = 936, - [5660] = 872, - [5661] = 1143, - [5662] = 942, - [5663] = 851, - [5664] = 441, - [5665] = 848, - [5666] = 432, - [5667] = 849, - [5668] = 416, - [5669] = 3924, - [5670] = 410, - [5671] = 850, - [5672] = 440, - [5673] = 1010, - [5674] = 944, - [5675] = 430, - [5676] = 890, - [5677] = 866, - [5678] = 5639, - [5679] = 5639, - [5680] = 1142, - [5681] = 414, - [5682] = 867, - [5683] = 873, - [5684] = 972, - [5685] = 894, - [5686] = 842, - [5687] = 853, - [5688] = 908, - [5689] = 845, - [5690] = 898, - [5691] = 881, - [5692] = 856, - [5693] = 870, - [5694] = 1077, - [5695] = 5695, - [5696] = 5696, - [5697] = 996, - [5698] = 5695, - [5699] = 5695, - [5700] = 5700, - [5701] = 1099, - [5702] = 1079, - [5703] = 1142, - [5704] = 5700, - [5705] = 4041, - [5706] = 936, - [5707] = 5695, - [5708] = 5696, - [5709] = 465, - [5710] = 1010, - [5711] = 890, - [5712] = 5696, - [5713] = 881, - [5714] = 5696, - [5715] = 450, - [5716] = 908, - [5717] = 894, - [5718] = 1010, - [5719] = 907, - [5720] = 5695, - [5721] = 448, - [5722] = 5695, - [5723] = 414, - [5724] = 905, - [5725] = 417, - [5726] = 454, - [5727] = 944, - [5728] = 410, - [5729] = 942, - [5730] = 1143, - [5731] = 416, - [5732] = 901, - [5733] = 412, - [5734] = 899, - [5735] = 5696, - [5736] = 5700, - [5737] = 5700, - [5738] = 875, - [5739] = 843, - [5740] = 5700, - [5741] = 898, - [5742] = 5700, - [5743] = 452, - [5744] = 5696, - [5745] = 5695, - [5746] = 5700, - [5747] = 4107, - [5748] = 4126, - [5749] = 5696, - [5750] = 5700, - [5751] = 4144, - [5752] = 5696, - [5753] = 5695, - [5754] = 3947, - [5755] = 5696, - [5756] = 5700, - [5757] = 1103, - [5758] = 990, - [5759] = 5695, - [5760] = 1090, - [5761] = 972, - [5762] = 839, - [5763] = 454, - [5764] = 465, - [5765] = 452, - [5766] = 894, - [5767] = 1076, - [5768] = 5768, - [5769] = 5769, - [5770] = 1075, - [5771] = 1171, - [5772] = 1164, - [5773] = 890, - [5774] = 1170, - [5775] = 832, - [5776] = 829, - [5777] = 5641, - [5778] = 1169, - [5779] = 450, - [5780] = 448, - [5781] = 5646, - [5782] = 5782, - [5783] = 843, - [5784] = 1075, - [5785] = 1169, - [5786] = 834, - [5787] = 1076, - [5788] = 1164, - [5789] = 837, - [5790] = 1170, - [5791] = 1171, - [5792] = 875, - [5793] = 1169, - [5794] = 1170, - [5795] = 499, - [5796] = 501, - [5797] = 5797, - [5798] = 488, - [5799] = 1075, - [5800] = 497, - [5801] = 866, - [5802] = 1171, - [5803] = 491, - [5804] = 842, - [5805] = 1164, - [5806] = 872, - [5807] = 875, - [5808] = 869, - [5809] = 487, - [5810] = 1076, - [5811] = 843, - [5812] = 487, - [5813] = 493, - [5814] = 510, - [5815] = 945, - [5816] = 839, - [5817] = 501, - [5818] = 5818, - [5819] = 490, - [5820] = 502, - [5821] = 489, - [5822] = 500, - [5823] = 497, - [5824] = 5824, - [5825] = 491, - [5826] = 499, - [5827] = 495, - [5828] = 829, - [5829] = 492, - [5830] = 5830, - [5831] = 488, - [5832] = 493, - [5833] = 5646, - [5834] = 492, - [5835] = 502, - [5836] = 489, - [5837] = 510, - [5838] = 5641, - [5839] = 490, - [5840] = 495, - [5841] = 500, - [5842] = 829, - [5843] = 829, - [5844] = 839, - [5845] = 3472, - [5846] = 832, - [5847] = 839, - [5848] = 832, - [5849] = 840, - [5850] = 834, - [5851] = 837, - [5852] = 840, - [5853] = 945, - [5854] = 829, - [5855] = 839, - [5856] = 872, - [5857] = 5857, - [5858] = 842, - [5859] = 842, - [5860] = 869, - [5861] = 3472, - [5862] = 5857, - [5863] = 5857, - [5864] = 5857, - [5865] = 3924, - [5866] = 869, - [5867] = 829, - [5868] = 842, - [5869] = 872, - [5870] = 839, - [5871] = 866, - [5872] = 866, - [5873] = 872, - [5874] = 5857, - [5875] = 5857, - [5876] = 5876, - [5877] = 841, - [5878] = 837, - [5879] = 834, - [5880] = 775, - [5881] = 5881, - [5882] = 4126, - [5883] = 5881, - [5884] = 1103, - [5885] = 5881, - [5886] = 4144, - [5887] = 4041, - [5888] = 3924, - [5889] = 3947, - [5890] = 5890, - [5891] = 5891, + [5369] = 1122, + [5370] = 1123, + [5371] = 837, + [5372] = 822, + [5373] = 1124, + [5374] = 994, + [5375] = 1137, + [5376] = 386, + [5377] = 1139, + [5378] = 1141, + [5379] = 844, + [5380] = 818, + [5381] = 1128, + [5382] = 1027, + [5383] = 845, + [5384] = 1066, + [5385] = 914, + [5386] = 1132, + [5387] = 815, + [5388] = 1172, + [5389] = 848, + [5390] = 1055, + [5391] = 1068, + [5392] = 814, + [5393] = 1163, + [5394] = 1112, + [5395] = 820, + [5396] = 849, + [5397] = 1082, + [5398] = 1135, + [5399] = 1174, + [5400] = 1173, + [5401] = 1034, + [5402] = 1028, + [5403] = 1175, + [5404] = 1081, + [5405] = 1059, + [5406] = 1061, + [5407] = 1136, + [5408] = 847, + [5409] = 842, + [5410] = 1140, + [5411] = 1062, + [5412] = 904, + [5413] = 1063, + [5414] = 1165, + [5415] = 1133, + [5416] = 1158, + [5417] = 1052, + [5418] = 1017, + [5419] = 1187, + [5420] = 1129, + [5421] = 1185, + [5422] = 1181, + [5423] = 1183, + [5424] = 1182, + [5425] = 1042, + [5426] = 911, + [5427] = 887, + [5428] = 829, + [5429] = 855, + [5430] = 857, + [5431] = 431, + [5432] = 1028, + [5433] = 901, + [5434] = 852, + [5435] = 816, + [5436] = 433, + [5437] = 846, + [5438] = 1034, + [5439] = 435, + [5440] = 819, + [5441] = 1035, + [5442] = 821, + [5443] = 884, + [5444] = 1040, + [5445] = 835, + [5446] = 850, + [5447] = 859, + [5448] = 1051, + [5449] = 853, + [5450] = 1058, + [5451] = 900, + [5452] = 430, + [5453] = 384, + [5454] = 393, + [5455] = 859, + [5456] = 896, + [5457] = 898, + [5458] = 823, + [5459] = 850, + [5460] = 835, + [5461] = 899, + [5462] = 853, + [5463] = 837, + [5464] = 903, + [5465] = 831, + [5466] = 5466, + [5467] = 844, + [5468] = 832, + [5469] = 5469, + [5470] = 905, + [5471] = 829, + [5472] = 845, + [5473] = 848, + [5474] = 424, + [5475] = 855, + [5476] = 857, + [5477] = 386, + [5478] = 909, + [5479] = 849, + [5480] = 832, + [5481] = 387, + [5482] = 909, + [5483] = 900, + [5484] = 861, + [5485] = 1054, + [5486] = 5486, + [5487] = 854, + [5488] = 898, + [5489] = 856, + [5490] = 5486, + [5491] = 5486, + [5492] = 407, + [5493] = 424, + [5494] = 433, + [5495] = 5486, + [5496] = 409, + [5497] = 921, + [5498] = 5486, + [5499] = 5499, + [5500] = 925, + [5501] = 3724, + [5502] = 411, + [5503] = 858, + [5504] = 852, + [5505] = 846, + [5506] = 859, + [5507] = 5486, + [5508] = 896, + [5509] = 901, + [5510] = 867, + [5511] = 994, + [5512] = 5486, + [5513] = 431, + [5514] = 5486, + [5515] = 850, + [5516] = 857, + [5517] = 5517, + [5518] = 835, + [5519] = 435, + [5520] = 410, + [5521] = 5486, + [5522] = 832, + [5523] = 430, + [5524] = 975, + [5525] = 887, + [5526] = 831, + [5527] = 911, + [5528] = 829, + [5529] = 853, + [5530] = 855, + [5531] = 1057, + [5532] = 905, + [5533] = 903, + [5534] = 899, + [5535] = 3979, + [5536] = 842, + [5537] = 921, + [5538] = 5538, + [5539] = 952, + [5540] = 5538, + [5541] = 448, + [5542] = 847, + [5543] = 994, + [5544] = 5538, + [5545] = 5545, + [5546] = 901, + [5547] = 1169, + [5548] = 900, + [5549] = 440, + [5550] = 5538, + [5551] = 975, + [5552] = 887, + [5553] = 5545, + [5554] = 867, + [5555] = 5538, + [5556] = 5538, + [5557] = 929, + [5558] = 5545, + [5559] = 5559, + [5560] = 5545, + [5561] = 3883, + [5562] = 5559, + [5563] = 896, + [5564] = 410, + [5565] = 5545, + [5566] = 5559, + [5567] = 911, + [5568] = 3889, + [5569] = 409, + [5570] = 909, + [5571] = 1159, + [5572] = 5538, + [5573] = 1168, + [5574] = 5559, + [5575] = 442, + [5576] = 3871, + [5577] = 905, + [5578] = 5559, + [5579] = 1057, + [5580] = 903, + [5581] = 5545, + [5582] = 5559, + [5583] = 898, + [5584] = 446, + [5585] = 3975, + [5586] = 411, + [5587] = 994, + [5588] = 5538, + [5589] = 5545, + [5590] = 1054, + [5591] = 5559, + [5592] = 899, + [5593] = 1170, + [5594] = 453, + [5595] = 5538, + [5596] = 5545, + [5597] = 407, + [5598] = 5545, + [5599] = 1162, + [5600] = 5559, + [5601] = 5559, + [5602] = 823, + [5603] = 5499, + [5604] = 921, + [5605] = 821, + [5606] = 5606, + [5607] = 446, + [5608] = 440, + [5609] = 448, + [5610] = 1028, + [5611] = 1035, + [5612] = 453, + [5613] = 1034, + [5614] = 1051, + [5615] = 1058, + [5616] = 5616, + [5617] = 824, + [5618] = 5618, + [5619] = 867, + [5620] = 5517, + [5621] = 442, + [5622] = 1040, + [5623] = 1051, + [5624] = 1034, + [5625] = 1040, + [5626] = 1058, + [5627] = 1035, + [5628] = 1028, + [5629] = 819, + [5630] = 816, + [5631] = 847, + [5632] = 842, + [5633] = 480, + [5634] = 498, + [5635] = 483, + [5636] = 503, + [5637] = 842, + [5638] = 854, + [5639] = 847, + [5640] = 513, + [5641] = 1028, + [5642] = 856, + [5643] = 1034, + [5644] = 1051, + [5645] = 1040, + [5646] = 1035, + [5647] = 861, + [5648] = 487, + [5649] = 858, + [5650] = 5650, + [5651] = 1058, + [5652] = 481, + [5653] = 884, + [5654] = 483, + [5655] = 498, + [5656] = 503, + [5657] = 484, + [5658] = 488, + [5659] = 482, + [5660] = 823, + [5661] = 502, + [5662] = 489, + [5663] = 821, + [5664] = 487, + [5665] = 492, + [5666] = 490, + [5667] = 5667, + [5668] = 480, + [5669] = 513, + [5670] = 5670, + [5671] = 5671, + [5672] = 490, + [5673] = 489, + [5674] = 488, + [5675] = 5517, + [5676] = 5499, + [5677] = 492, + [5678] = 482, + [5679] = 484, + [5680] = 481, + [5681] = 502, + [5682] = 823, + [5683] = 821, + [5684] = 824, + [5685] = 823, + [5686] = 824, + [5687] = 812, + [5688] = 3568, + [5689] = 821, + [5690] = 812, + [5691] = 819, + [5692] = 884, + [5693] = 821, + [5694] = 823, + [5695] = 816, + [5696] = 3568, + [5697] = 5697, + [5698] = 5698, + [5699] = 854, + [5700] = 854, + [5701] = 821, + [5702] = 5697, + [5703] = 856, + [5704] = 861, + [5705] = 3724, + [5706] = 858, + [5707] = 854, + [5708] = 858, + [5709] = 861, + [5710] = 5697, + [5711] = 5697, + [5712] = 856, + [5713] = 823, + [5714] = 5697, + [5715] = 5697, + [5716] = 856, + [5717] = 819, + [5718] = 825, + [5719] = 816, + [5720] = 5720, + [5721] = 3889, + [5722] = 1168, + [5723] = 830, + [5724] = 5724, + [5725] = 5725, + [5726] = 5725, + [5727] = 5725, + [5728] = 3979, + [5729] = 1169, + [5730] = 5725, + [5731] = 5725, + [5732] = 3883, + [5733] = 5725, + [5734] = 5725, + [5735] = 5725, + [5736] = 1162, + [5737] = 828, + [5738] = 3724, + [5739] = 5725, + [5740] = 5725, + [5741] = 5725, + [5742] = 5725, + [5743] = 3975, + [5744] = 1159, + [5745] = 827, + [5746] = 5725, + [5747] = 5725, + [5748] = 825, + [5749] = 3871, + [5750] = 1170, + [5751] = 5751, + [5752] = 5752, + [5753] = 5753, + [5754] = 5754, + [5755] = 5755, + [5756] = 5725, + [5757] = 777, + [5758] = 774, + [5759] = 5725, + [5760] = 839, + [5761] = 5761, + [5762] = 851, + [5763] = 5725, + [5764] = 5725, + [5765] = 5725, + [5766] = 5725, + [5767] = 833, + [5768] = 884, + [5769] = 860, + [5770] = 1170, + [5771] = 5751, + [5772] = 827, + [5773] = 5761, + [5774] = 5755, + [5775] = 3979, + [5776] = 1169, + [5777] = 833, + [5778] = 3975, + [5779] = 5754, + [5780] = 3871, + [5781] = 839, + [5782] = 3889, + [5783] = 5752, + [5784] = 860, + [5785] = 851, + [5786] = 1012, + [5787] = 824, + [5788] = 828, + [5789] = 3883, + [5790] = 972, + [5791] = 5724, + [5792] = 830, + [5793] = 5720, + [5794] = 938, + [5795] = 974, + [5796] = 1159, + [5797] = 1004, + [5798] = 991, + [5799] = 3568, + [5800] = 973, + [5801] = 982, + [5802] = 1162, + [5803] = 979, + [5804] = 1168, + [5805] = 891, + [5806] = 816, + [5807] = 866, + [5808] = 988, + [5809] = 819, + [5810] = 967, + [5811] = 968, + [5812] = 864, + [5813] = 884, + [5814] = 885, + [5815] = 858, + [5816] = 972, + [5817] = 967, + [5818] = 861, + [5819] = 985, + [5820] = 866, + [5821] = 938, + [5822] = 3568, + [5823] = 974, + [5824] = 973, + [5825] = 854, + [5826] = 824, + [5827] = 3724, + [5828] = 991, + [5829] = 1012, + [5830] = 981, + [5831] = 1004, + [5832] = 992, + [5833] = 968, + [5834] = 988, + [5835] = 982, + [5836] = 979, + [5837] = 891, + [5838] = 885, + [5839] = 864, + [5840] = 856, + [5841] = 884, + [5842] = 823, + [5843] = 816, + [5844] = 985, + [5845] = 992, + [5846] = 821, + [5847] = 918, + [5848] = 912, + [5849] = 981, + [5850] = 819, + [5851] = 1170, + [5852] = 5852, + [5853] = 5853, + [5854] = 5761, + [5855] = 5720, + [5856] = 5853, + [5857] = 858, + [5858] = 5853, + [5859] = 5724, + [5860] = 912, + [5861] = 918, + [5862] = 5853, + [5863] = 3724, + [5864] = 3871, + [5865] = 5751, + [5866] = 1159, + [5867] = 861, + [5868] = 5853, + [5869] = 5853, + [5870] = 3975, + [5871] = 1162, + [5872] = 5755, + [5873] = 1168, + [5874] = 5754, + [5875] = 1169, + [5876] = 3979, + [5877] = 5853, + [5878] = 3889, + [5879] = 5853, + [5880] = 3883, + [5881] = 5853, + [5882] = 5853, + [5883] = 5752, + [5884] = 5853, + [5885] = 5885, + [5886] = 5885, + [5887] = 5885, + [5888] = 5888, + [5889] = 5885, + [5890] = 5885, + [5891] = 5885, [5892] = 5892, - [5893] = 5881, - [5894] = 844, - [5895] = 1079, - [5896] = 5881, - [5897] = 1077, - [5898] = 865, + [5893] = 5893, + [5894] = 5894, + [5895] = 5895, + [5896] = 5896, + [5897] = 5897, + [5898] = 5893, [5899] = 5899, - [5900] = 877, - [5901] = 5881, - [5902] = 5902, + [5900] = 5900, + [5901] = 5901, + [5902] = 5901, [5903] = 5903, - [5904] = 841, - [5905] = 1090, - [5906] = 5881, - [5907] = 5881, - [5908] = 4107, - [5909] = 1099, - [5910] = 5881, - [5911] = 5881, - [5912] = 5881, - [5913] = 868, - [5914] = 5881, - [5915] = 5881, - [5916] = 5881, - [5917] = 5881, - [5918] = 5918, - [5919] = 5881, - [5920] = 5881, - [5921] = 5921, - [5922] = 846, - [5923] = 5881, - [5924] = 776, - [5925] = 5881, - [5926] = 5881, - [5927] = 861, - [5928] = 945, - [5929] = 874, - [5930] = 868, - [5931] = 846, - [5932] = 3472, - [5933] = 1077, - [5934] = 4144, - [5935] = 1009, - [5936] = 4041, - [5937] = 877, - [5938] = 1099, - [5939] = 865, - [5940] = 1103, - [5941] = 3947, - [5942] = 5921, - [5943] = 1007, - [5944] = 861, - [5945] = 844, - [5946] = 4107, - [5947] = 5903, - [5948] = 1025, - [5949] = 1013, - [5950] = 5902, - [5951] = 1079, - [5952] = 1090, - [5953] = 874, - [5954] = 1027, - [5955] = 832, - [5956] = 1006, - [5957] = 5890, - [5958] = 5891, - [5959] = 4126, - [5960] = 5892, - [5961] = 5899, - [5962] = 971, - [5963] = 974, - [5964] = 950, - [5965] = 945, - [5966] = 834, - [5967] = 888, - [5968] = 1003, - [5969] = 1008, - [5970] = 837, - [5971] = 947, - [5972] = 980, - [5973] = 933, - [5974] = 928, - [5975] = 842, - [5976] = 832, - [5977] = 872, - [5978] = 3472, - [5979] = 888, - [5980] = 1009, - [5981] = 971, - [5982] = 1008, - [5983] = 950, - [5984] = 1003, - [5985] = 980, - [5986] = 974, - [5987] = 1006, - [5988] = 869, - [5989] = 866, - [5990] = 1029, - [5991] = 1007, - [5992] = 1013, - [5993] = 1025, - [5994] = 1027, - [5995] = 947, - [5996] = 933, - [5997] = 1041, - [5998] = 964, - [5999] = 928, - [6000] = 3924, - [6001] = 912, - [6002] = 964, - [6003] = 834, - [6004] = 829, - [6005] = 839, - [6006] = 1029, - [6007] = 837, - [6008] = 930, - [6009] = 1041, - [6010] = 945, - [6011] = 6011, - [6012] = 5921, - [6013] = 5891, - [6014] = 6014, - [6015] = 5892, - [6016] = 5899, - [6017] = 5902, - [6018] = 4041, - [6019] = 912, - [6020] = 6011, - [6021] = 6011, - [6022] = 866, - [6023] = 6011, - [6024] = 5903, - [6025] = 1079, - [6026] = 3924, - [6027] = 6011, - [6028] = 4144, - [6029] = 5890, - [6030] = 6011, - [6031] = 3947, - [6032] = 6011, - [6033] = 1099, - [6034] = 1077, - [6035] = 1103, - [6036] = 6011, - [6037] = 6011, - [6038] = 6011, - [6039] = 4107, - [6040] = 1090, - [6041] = 869, - [6042] = 6011, - [6043] = 4126, - [6044] = 930, - [6045] = 6045, - [6046] = 6045, - [6047] = 6045, - [6048] = 6045, - [6049] = 6045, - [6050] = 6050, - [6051] = 6045, - [6052] = 6052, - [6053] = 6053, - [6054] = 6054, - [6055] = 6055, - [6056] = 6056, - [6057] = 6055, - [6058] = 6058, - [6059] = 6059, - [6060] = 6060, + [5904] = 5904, + [5905] = 5894, + [5906] = 5892, + [5907] = 5907, + [5908] = 5900, + [5909] = 5909, + [5910] = 5893, + [5911] = 5907, + [5912] = 5896, + [5913] = 5913, + [5914] = 5914, + [5915] = 5915, + [5916] = 5913, + [5917] = 5917, + [5918] = 5900, + [5919] = 5919, + [5920] = 5920, + [5921] = 5896, + [5922] = 5922, + [5923] = 5901, + [5924] = 5894, + [5925] = 5897, + [5926] = 5893, + [5927] = 5927, + [5928] = 5899, + [5929] = 5909, + [5930] = 5930, + [5931] = 5892, + [5932] = 5932, + [5933] = 5922, + [5934] = 5896, + [5935] = 5914, + [5936] = 5903, + [5937] = 5909, + [5938] = 5900, + [5939] = 5904, + [5940] = 5940, + [5941] = 5941, + [5942] = 5915, + [5943] = 5899, + [5944] = 5913, + [5945] = 5915, + [5946] = 5940, + [5947] = 5917, + [5948] = 5909, + [5949] = 5907, + [5950] = 5913, + [5951] = 5951, + [5952] = 5892, + [5953] = 5892, + [5954] = 5954, + [5955] = 5904, + [5956] = 5903, + [5957] = 5917, + [5958] = 5922, + [5959] = 5897, + [5960] = 5951, + [5961] = 5919, + [5962] = 5900, + [5963] = 5930, + [5964] = 5914, + [5965] = 5940, + [5966] = 5966, + [5967] = 5920, + [5968] = 5894, + [5969] = 5894, + [5970] = 5917, + [5971] = 5896, + [5972] = 5922, + [5973] = 5900, + [5974] = 5930, + [5975] = 5893, + [5976] = 5914, + [5977] = 5966, + [5978] = 5892, + [5979] = 5913, + [5980] = 5915, + [5981] = 5917, + [5982] = 5922, + [5983] = 5915, + [5984] = 5940, + [5985] = 5900, + [5986] = 5894, + [5987] = 5930, + [5988] = 5899, + [5989] = 5893, + [5990] = 5990, + [5991] = 5915, + [5992] = 5913, + [5993] = 5932, + [5994] = 5922, + [5995] = 5894, + [5996] = 5940, + [5997] = 5997, + [5998] = 5899, + [5999] = 5966, + [6000] = 5922, + [6001] = 5913, + [6002] = 5896, + [6003] = 5930, + [6004] = 5917, + [6005] = 5901, + [6006] = 5892, + [6007] = 5919, + [6008] = 5899, + [6009] = 5914, + [6010] = 5951, + [6011] = 5922, + [6012] = 5917, + [6013] = 5907, + [6014] = 5922, + [6015] = 5930, + [6016] = 6016, + [6017] = 5913, + [6018] = 5914, + [6019] = 5893, + [6020] = 5932, + [6021] = 5951, + [6022] = 5892, + [6023] = 5894, + [6024] = 5917, + [6025] = 5922, + [6026] = 5930, + [6027] = 5897, + [6028] = 5914, + [6029] = 5954, + [6030] = 5907, + [6031] = 5894, + [6032] = 5914, + [6033] = 5892, + [6034] = 5915, + [6035] = 5940, + [6036] = 5913, + [6037] = 5896, + [6038] = 5907, + [6039] = 6039, + [6040] = 5917, + [6041] = 5917, + [6042] = 5900, + [6043] = 5909, + [6044] = 5922, + [6045] = 5913, + [6046] = 5932, + [6047] = 5930, + [6048] = 5899, + [6049] = 5920, + [6050] = 5930, + [6051] = 5917, + [6052] = 5914, + [6053] = 5907, + [6054] = 5899, + [6055] = 5900, + [6056] = 5922, + [6057] = 5893, + [6058] = 5930, + [6059] = 5899, + [6060] = 5894, [6061] = 6061, - [6062] = 6062, - [6063] = 6054, - [6064] = 6060, - [6065] = 6062, - [6066] = 6066, - [6067] = 6062, - [6068] = 6056, - [6069] = 6069, - [6070] = 6070, - [6071] = 6071, - [6072] = 6072, - [6073] = 6073, - [6074] = 6074, - [6075] = 6060, - [6076] = 6060, - [6077] = 6077, - [6078] = 6061, - [6079] = 6066, - [6080] = 6080, - [6081] = 6081, - [6082] = 6082, - [6083] = 6053, - [6084] = 6052, - [6085] = 6080, - [6086] = 6086, - [6087] = 6080, - [6088] = 6073, - [6089] = 6074, - [6090] = 6052, - [6091] = 6066, - [6092] = 6092, - [6093] = 6086, - [6094] = 6072, - [6095] = 6071, - [6096] = 6096, - [6097] = 6052, - [6098] = 6098, - [6099] = 6054, - [6100] = 6086, - [6101] = 6053, - [6102] = 6056, - [6103] = 6058, - [6104] = 6070, - [6105] = 6081, - [6106] = 6066, - [6107] = 6096, - [6108] = 6055, - [6109] = 6061, - [6110] = 6059, - [6111] = 6073, - [6112] = 6073, - [6113] = 6053, - [6114] = 6055, - [6115] = 6054, - [6116] = 6055, - [6117] = 6054, - [6118] = 6054, - [6119] = 6054, - [6120] = 6074, - [6121] = 6092, - [6122] = 6073, - [6123] = 6055, - [6124] = 6059, - [6125] = 6059, - [6126] = 6055, - [6127] = 6059, - [6128] = 6052, - [6129] = 6096, - [6130] = 6062, - [6131] = 3947, - [6132] = 6086, - [6133] = 6053, - [6134] = 6081, - [6135] = 6066, - [6136] = 6077, - [6137] = 6074, - [6138] = 6073, - [6139] = 6096, - [6140] = 4041, - [6141] = 6062, - [6142] = 6081, - [6143] = 6077, - [6144] = 6096, - [6145] = 6053, - [6146] = 6077, - [6147] = 6081, - [6148] = 6148, - [6149] = 6054, - [6150] = 6081, - [6151] = 6053, - [6152] = 6077, - [6153] = 6096, - [6154] = 6096, - [6155] = 6155, - [6156] = 6061, - [6157] = 6070, - [6158] = 6070, - [6159] = 6059, - [6160] = 6054, - [6161] = 6069, - [6162] = 6077, - [6163] = 6081, - [6164] = 6073, - [6165] = 6053, - [6166] = 6096, - [6167] = 6148, - [6168] = 6074, - [6169] = 6073, - [6170] = 4144, - [6171] = 6074, - [6172] = 6077, - [6173] = 6066, - [6174] = 6081, - [6175] = 6077, - [6176] = 6096, - [6177] = 6053, - [6178] = 6178, - [6179] = 6086, - [6180] = 6096, - [6181] = 6181, - [6182] = 6056, - [6183] = 6052, - [6184] = 6058, - [6185] = 6059, - [6186] = 6070, - [6187] = 6055, - [6188] = 6188, - [6189] = 6073, - [6190] = 6181, - [6191] = 6074, - [6192] = 6077, - [6193] = 6059, - [6194] = 6055, - [6195] = 6059, - [6196] = 6066, - [6197] = 6062, - [6198] = 6081, - [6199] = 6055, - [6200] = 6059, - [6201] = 6053, - [6202] = 6086, - [6203] = 6077, - [6204] = 6096, - [6205] = 6052, - [6206] = 6066, - [6207] = 6052, - [6208] = 6055, - [6209] = 6059, - [6210] = 6059, - [6211] = 6055, - [6212] = 6096, - [6213] = 6055, - [6214] = 6060, - [6215] = 6056, - [6216] = 6098, - [6217] = 6059, - [6218] = 6058, - [6219] = 6070, - [6220] = 6092, - [6221] = 6073, - [6222] = 6181, - [6223] = 6054, - [6224] = 6074, - [6225] = 6077, - [6226] = 6086, - [6227] = 6053, - [6228] = 6060, - [6229] = 6082, - [6230] = 6080, - [6231] = 6231, - [6232] = 6066, - [6233] = 6081, - [6234] = 6054, - [6235] = 6053, - [6236] = 6081, - [6237] = 6237, - [6238] = 6086, - [6239] = 6096, - [6240] = 6081, - [6241] = 6080, - [6242] = 6052, - [6243] = 6066, - [6244] = 6052, - [6245] = 6077, - [6246] = 6074, - [6247] = 6056, - [6248] = 6058, - [6249] = 6070, - [6250] = 6073, - [6251] = 6072, - [6252] = 6073, - [6253] = 6071, - [6254] = 6070, - [6255] = 6074, - [6256] = 6069, - [6257] = 6096, - [6258] = 6058, - [6259] = 6077, - [6260] = 6066, - [6261] = 6053, - [6262] = 6081, - [6263] = 6086, - [6264] = 6053, - [6265] = 6265, - [6266] = 6086, - [6267] = 6056, - [6268] = 6096, - [6269] = 6081, - [6270] = 6052, - [6271] = 6092, - [6272] = 1077, - [6273] = 6059, - [6274] = 6074, - [6275] = 4126, - [6276] = 6073, - [6277] = 6098, - [6278] = 6052, - [6279] = 6062, - [6280] = 6056, - [6281] = 6062, - [6282] = 6074, - [6283] = 6066, - [6284] = 6054, - [6285] = 6052, - [6286] = 6056, - [6287] = 6062, - [6288] = 6080, - [6289] = 6058, - [6290] = 6070, - [6291] = 6082, - [6292] = 6066, - [6293] = 6059, - [6294] = 6056, - [6295] = 6058, - [6296] = 6074, - [6297] = 6055, - [6298] = 6086, - [6299] = 6060, - [6300] = 6070, - [6301] = 6073, - [6302] = 6074, - [6303] = 6077, - [6304] = 6066, - [6305] = 6055, - [6306] = 6073, - [6307] = 6052, - [6308] = 6058, - [6309] = 1079, - [6310] = 6310, - [6311] = 6074, - [6312] = 6081, - [6313] = 6077, - [6314] = 6066, - [6315] = 6086, - [6316] = 6053, - [6317] = 6086, - [6318] = 6086, - [6319] = 6060, - [6320] = 6092, - [6321] = 6060, - [6322] = 6096, - [6323] = 6080, - [6324] = 6081, - [6325] = 6056, - [6326] = 6053, - [6327] = 6058, - [6328] = 6052, - [6329] = 6070, - [6330] = 6056, - [6331] = 6058, - [6332] = 6070, - [6333] = 6333, - [6334] = 1103, - [6335] = 6059, - [6336] = 6077, - [6337] = 1090, - [6338] = 6092, - [6339] = 6092, - [6340] = 6086, - [6341] = 6059, - [6342] = 6056, - [6343] = 6096, - [6344] = 6058, - [6345] = 6098, - [6346] = 6058, - [6347] = 6054, - [6348] = 6070, - [6349] = 6073, - [6350] = 6148, - [6351] = 6054, - [6352] = 6055, - [6353] = 6054, - [6354] = 6054, - [6355] = 6074, - [6356] = 6066, - [6357] = 6052, - [6358] = 6086, - [6359] = 6359, - [6360] = 6060, - [6361] = 6053, - [6362] = 6052, - [6363] = 6148, - [6364] = 6059, - [6365] = 6365, - [6366] = 6181, - [6367] = 6181, - [6368] = 6082, - [6369] = 6369, - [6370] = 6370, - [6371] = 6081, - [6372] = 6058, - [6373] = 6055, - [6374] = 6069, - [6375] = 6073, - [6376] = 6098, - [6377] = 6077, - [6378] = 1099, - [6379] = 6066, - [6380] = 6060, - [6381] = 6080, - [6382] = 6081, - [6383] = 6082, - [6384] = 6053, - [6385] = 6385, - [6386] = 6086, - [6387] = 6070, - [6388] = 6077, - [6389] = 6058, - [6390] = 6056, - [6391] = 6081, - [6392] = 6092, - [6393] = 6052, - [6394] = 6086, - [6395] = 4107, - [6396] = 6073, - [6397] = 6066, - [6398] = 6074, - [6399] = 6096, - [6400] = 6073, - [6401] = 6070, - [6402] = 6058, - [6403] = 6056, - [6404] = 6052, - [6405] = 6053, - [6406] = 829, - [6407] = 6069, - [6408] = 6052, - [6409] = 6181, - [6410] = 6096, - [6411] = 6086, - [6412] = 6096, - [6413] = 6053, - [6414] = 6081, - [6415] = 6066, - [6416] = 6077, - [6417] = 6074, - [6418] = 6070, - [6419] = 6073, - [6420] = 6070, - [6421] = 6058, - [6422] = 6056, - [6423] = 6062, - [6424] = 6086, - [6425] = 6052, - [6426] = 6096, - [6427] = 6086, - [6428] = 6053, - [6429] = 6081, - [6430] = 6066, - [6431] = 6148, - [6432] = 6059, - [6433] = 6077, - [6434] = 6074, - [6435] = 6055, - [6436] = 6059, - [6437] = 6073, - [6438] = 6070, - [6439] = 6096, - [6440] = 6058, - [6441] = 6056, - [6442] = 6056, - [6443] = 6055, - [6444] = 6059, - [6445] = 839, - [6446] = 6059, - [6447] = 6055, - [6448] = 6058, - [6449] = 6054, - [6450] = 6055, - [6451] = 6052, - [6452] = 6070, - [6453] = 6098, - [6454] = 6060, - [6455] = 6054, - [6456] = 6061, - [6457] = 6069, - [6458] = 6096, - [6459] = 6054, - [6460] = 6059, - [6461] = 6086, - [6462] = 6056, - [6463] = 6053, - [6464] = 6054, - [6465] = 6055, - [6466] = 6074, - [6467] = 6058, - [6468] = 6081, - [6469] = 6077, - [6470] = 6066, - [6471] = 6077, - [6472] = 6074, - [6473] = 6070, - [6474] = 6073, - [6475] = 6055, - [6476] = 6066, - [6477] = 6054, - [6478] = 6092, - [6479] = 6059, - [6480] = 6080, - [6481] = 6081, - [6482] = 6148, - [6483] = 6052, - [6484] = 6082, - [6485] = 6053, - [6486] = 6096, - [6487] = 6086, - [6488] = 6086, - [6489] = 6054, - [6490] = 6059, - [6491] = 6053, - [6492] = 6081, - [6493] = 6066, - [6494] = 6055, - [6495] = 6077, - [6496] = 6092, - [6497] = 6074, - [6498] = 6073, - [6499] = 6096, - [6500] = 6053, - [6501] = 6081, - [6502] = 6077, - [6503] = 6098, - [6504] = 6080, - [6505] = 6096, - [6506] = 6071, - [6507] = 6082, - [6508] = 6062, - [6509] = 6053, - [6510] = 6082, - [6511] = 6148, - [6512] = 6066, - [6513] = 6052, - [6514] = 6081, - [6515] = 6080, - [6516] = 6056, - [6517] = 6066, - [6518] = 6086, - [6519] = 6077, - [6520] = 6074, - [6521] = 6073, - [6522] = 6062, - [6523] = 6072, - [6524] = 6059, - [6525] = 6071, - [6526] = 6070, - [6527] = 6069, - [6528] = 6058, - [6529] = 6056, - [6530] = 6369, - [6531] = 6077, - [6532] = 6181, - [6533] = 6181, - [6534] = 6060, - [6535] = 6054, - [6536] = 6054, - [6537] = 6055, - [6538] = 6062, - [6539] = 6539, - [6540] = 6061, - [6541] = 6074, - [6542] = 6072, - [6543] = 6070, - [6544] = 6148, - [6545] = 6370, - [6546] = 6059, - [6547] = 6054, - [6548] = 6055, - [6549] = 6058, - [6550] = 6148, - [6551] = 6056, - [6552] = 6073, - [6553] = 6070, - [6554] = 6058, - [6555] = 6056, - [6556] = 6181, - [6557] = 6073, - [6558] = 6055, - [6559] = 6052, - [6560] = 6054, - [6561] = 6056, - [6562] = 6058, - [6563] = 6069, - [6564] = 6070, - [6565] = 6074, - [6566] = 6071, - [6567] = 6369, - [6568] = 6370, - [6569] = 6072, - [6570] = 6073, - [6571] = 6074, - [6572] = 6077, - [6573] = 6052, - [6574] = 6066, - [6575] = 6052, - [6576] = 6080, - [6577] = 6081, - [6578] = 6060, - [6579] = 6369, - [6580] = 6370, - [6581] = 6370, - [6582] = 6082, - [6583] = 6074, - [6584] = 6053, - [6585] = 6369, - [6586] = 6098, - [6587] = 6062, - [6588] = 6092, - [6589] = 6054, - [6590] = 6086, - [6591] = 6369, - [6592] = 6370, - [6593] = 6066, - [6594] = 6096, - [6595] = 6098, - [6596] = 6086, - [6597] = 6092, - [6598] = 6598, - [6599] = 6598, - [6600] = 6600, - [6601] = 6598, - [6602] = 6600, - [6603] = 6598, - [6604] = 6600, - [6605] = 6598, - [6606] = 6598, - [6607] = 6598, - [6608] = 6600, - [6609] = 6598, - [6610] = 6598, - [6611] = 6600, - [6612] = 6598, - [6613] = 6600, - [6614] = 6598, - [6615] = 6598, - [6616] = 6598, - [6617] = 6600, - [6618] = 6598, - [6619] = 6598, - [6620] = 6600, - [6621] = 6598, - [6622] = 6598, - [6623] = 6600, - [6624] = 6598, - [6625] = 6598, - [6626] = 6598, - [6627] = 6598, - [6628] = 6598, - [6629] = 6598, - [6630] = 6600, - [6631] = 6598, - [6632] = 6600, - [6633] = 6600, - [6634] = 6600, - [6635] = 6598, - [6636] = 6636, - [6637] = 6598, - [6638] = 6600, - [6639] = 6598, - [6640] = 6640, - [6641] = 6640, - [6642] = 6640, - [6643] = 6643, - [6644] = 6640, - [6645] = 6643, - [6646] = 6640, - [6647] = 6643, - [6648] = 6643, - [6649] = 6643, - [6650] = 6640, - [6651] = 6640, - [6652] = 6643, - [6653] = 6643, - [6654] = 6640, - [6655] = 6643, - [6656] = 6640, - [6657] = 6643, - [6658] = 6640, - [6659] = 6643, - [6660] = 6643, - [6661] = 6643, - [6662] = 6640, - [6663] = 6643, - [6664] = 6643, - [6665] = 6640, - [6666] = 6640, - [6667] = 6640, - [6668] = 6640, - [6669] = 6640, - [6670] = 6643, - [6671] = 6643, - [6672] = 6640, - [6673] = 6640, - [6674] = 6643, - [6675] = 6643, - [6676] = 6643, - [6677] = 6640, - [6678] = 6640, - [6679] = 6643, - [6680] = 6640, - [6681] = 6640, - [6682] = 6643, - [6683] = 6643, - [6684] = 6640, - [6685] = 6643, - [6686] = 6640, - [6687] = 6643, - [6688] = 6640, - [6689] = 6643, - [6690] = 6640, - [6691] = 6643, - [6692] = 6640, - [6693] = 6643, - [6694] = 6694, - [6695] = 6695, - [6696] = 6695, - [6697] = 6695, - [6698] = 6694, - [6699] = 6695, - [6700] = 6694, - [6701] = 6695, - [6702] = 6694, - [6703] = 6695, - [6704] = 6695, - [6705] = 869, - [6706] = 6694, - [6707] = 6694, - [6708] = 6695, - [6709] = 6694, - [6710] = 6695, - [6711] = 6694, - [6712] = 6695, - [6713] = 6694, - [6714] = 6694, - [6715] = 6695, - [6716] = 6695, - [6717] = 6694, - [6718] = 6695, - [6719] = 6695, - [6720] = 6695, - [6721] = 6694, - [6722] = 6694, - [6723] = 6694, - [6724] = 6694, - [6725] = 6695, - [6726] = 6694, - [6727] = 6695, - [6728] = 6695, - [6729] = 6694, - [6730] = 866, - [6731] = 6695, - [6732] = 6694, - [6733] = 6695, - [6734] = 6695, - [6735] = 6695, - [6736] = 6694, - [6737] = 6694, - [6738] = 6694, - [6739] = 6694, - [6740] = 6695, - [6741] = 6694, - [6742] = 6694, - [6743] = 6694, - [6744] = 6695, - [6745] = 6695, - [6746] = 6695, - [6747] = 6694, - [6748] = 6694, - [6749] = 6695, - [6750] = 832, - [6751] = 6751, - [6752] = 837, - [6753] = 6751, - [6754] = 6751, - [6755] = 6751, - [6756] = 6751, - [6757] = 6751, - [6758] = 6751, - [6759] = 6751, - [6760] = 6751, - [6761] = 834, - [6762] = 6762, - [6763] = 6762, - [6764] = 6762, + [6062] = 5914, + [6063] = 5907, + [6064] = 5893, + [6065] = 5892, + [6066] = 5894, + [6067] = 5951, + [6068] = 5893, + [6069] = 5913, + [6070] = 5919, + [6071] = 5917, + [6072] = 5915, + [6073] = 5900, + [6074] = 5940, + [6075] = 5922, + [6076] = 5930, + [6077] = 5893, + [6078] = 5899, + [6079] = 5914, + [6080] = 5907, + [6081] = 5917, + [6082] = 5951, + [6083] = 5892, + [6084] = 5892, + [6085] = 5913, + [6086] = 5914, + [6087] = 5893, + [6088] = 5917, + [6089] = 6089, + [6090] = 5900, + [6091] = 5894, + [6092] = 5907, + [6093] = 5915, + [6094] = 6094, + [6095] = 5940, + [6096] = 5951, + [6097] = 5901, + [6098] = 5892, + [6099] = 5913, + [6100] = 5932, + [6101] = 5893, + [6102] = 5940, + [6103] = 5917, + [6104] = 5913, + [6105] = 5895, + [6106] = 5900, + [6107] = 5893, + [6108] = 5922, + [6109] = 5922, + [6110] = 5966, + [6111] = 5930, + [6112] = 5930, + [6113] = 5899, + [6114] = 5909, + [6115] = 5966, + [6116] = 5914, + [6117] = 5892, + [6118] = 5907, + [6119] = 5954, + [6120] = 5901, + [6121] = 5904, + [6122] = 5901, + [6123] = 5903, + [6124] = 6124, + [6125] = 5909, + [6126] = 6126, + [6127] = 5915, + [6128] = 5940, + [6129] = 5899, + [6130] = 5951, + [6131] = 5914, + [6132] = 5951, + [6133] = 5940, + [6134] = 5892, + [6135] = 5894, + [6136] = 5907, + [6137] = 5895, + [6138] = 5914, + [6139] = 5893, + [6140] = 5913, + [6141] = 5915, + [6142] = 5915, + [6143] = 3889, + [6144] = 5940, + [6145] = 1162, + [6146] = 5894, + [6147] = 5930, + [6148] = 5893, + [6149] = 5904, + [6150] = 5917, + [6151] = 5900, + [6152] = 5892, + [6153] = 5922, + [6154] = 5913, + [6155] = 5930, + [6156] = 5899, + [6157] = 5907, + [6158] = 5914, + [6159] = 5899, + [6160] = 5909, + [6161] = 5917, + [6162] = 5907, + [6163] = 5900, + [6164] = 5900, + [6165] = 5913, + [6166] = 5901, + [6167] = 5922, + [6168] = 5927, + [6169] = 6169, + [6170] = 5897, + [6171] = 5897, + [6172] = 5894, + [6173] = 5966, + [6174] = 5932, + [6175] = 5896, + [6176] = 5920, + [6177] = 5892, + [6178] = 1168, + [6179] = 5951, + [6180] = 5930, + [6181] = 5930, + [6182] = 5940, + [6183] = 5915, + [6184] = 5893, + [6185] = 5966, + [6186] = 6186, + [6187] = 5894, + [6188] = 5930, + [6189] = 3871, + [6190] = 5899, + [6191] = 5954, + [6192] = 5914, + [6193] = 6169, + [6194] = 5922, + [6195] = 5907, + [6196] = 5896, + [6197] = 5895, + [6198] = 5954, + [6199] = 5914, + [6200] = 5907, + [6201] = 5900, + [6202] = 5907, + [6203] = 5914, + [6204] = 5899, + [6205] = 5914, + [6206] = 1169, + [6207] = 5954, + [6208] = 5894, + [6209] = 5901, + [6210] = 5915, + [6211] = 821, + [6212] = 5930, + [6213] = 5895, + [6214] = 5940, + [6215] = 5966, + [6216] = 5922, + [6217] = 5954, + [6218] = 5896, + [6219] = 5951, + [6220] = 5922, + [6221] = 5892, + [6222] = 5913, + [6223] = 5900, + [6224] = 823, + [6225] = 5893, + [6226] = 5966, + [6227] = 5893, + [6228] = 3883, + [6229] = 5903, + [6230] = 5954, + [6231] = 5900, + [6232] = 5917, + [6233] = 5917, + [6234] = 5913, + [6235] = 5900, + [6236] = 5951, + [6237] = 5966, + [6238] = 5917, + [6239] = 5892, + [6240] = 5893, + [6241] = 5951, + [6242] = 5915, + [6243] = 5940, + [6244] = 5917, + [6245] = 5895, + [6246] = 5909, + [6247] = 5951, + [6248] = 5940, + [6249] = 1159, + [6250] = 5915, + [6251] = 5892, + [6252] = 3975, + [6253] = 5895, + [6254] = 5894, + [6255] = 5907, + [6256] = 5913, + [6257] = 5914, + [6258] = 5894, + [6259] = 5899, + [6260] = 5897, + [6261] = 5900, + [6262] = 5930, + [6263] = 5892, + [6264] = 5899, + [6265] = 5922, + [6266] = 5919, + [6267] = 5930, + [6268] = 1170, + [6269] = 5900, + [6270] = 5913, + [6271] = 5899, + [6272] = 5894, + [6273] = 5954, + [6274] = 5907, + [6275] = 5899, + [6276] = 5915, + [6277] = 5899, + [6278] = 5907, + [6279] = 5920, + [6280] = 5893, + [6281] = 5899, + [6282] = 5940, + [6283] = 5915, + [6284] = 5917, + [6285] = 5913, + [6286] = 5892, + [6287] = 5940, + [6288] = 5894, + [6289] = 5915, + [6290] = 5940, + [6291] = 5966, + [6292] = 5951, + [6293] = 5899, + [6294] = 5893, + [6295] = 5920, + [6296] = 5932, + [6297] = 5909, + [6298] = 5901, + [6299] = 5894, + [6300] = 5920, + [6301] = 5893, + [6302] = 5951, + [6303] = 5940, + [6304] = 5900, + [6305] = 5914, + [6306] = 5894, + [6307] = 5907, + [6308] = 5893, + [6309] = 5909, + [6310] = 5966, + [6311] = 5909, + [6312] = 5894, + [6313] = 5951, + [6314] = 5915, + [6315] = 5951, + [6316] = 5900, + [6317] = 5940, + [6318] = 5917, + [6319] = 5951, + [6320] = 5951, + [6321] = 5922, + [6322] = 5940, + [6323] = 5915, + [6324] = 5894, + [6325] = 5966, + [6326] = 5894, + [6327] = 5930, + [6328] = 5892, + [6329] = 5896, + [6330] = 5893, + [6331] = 5922, + [6332] = 5909, + [6333] = 5895, + [6334] = 5893, + [6335] = 5892, + [6336] = 5951, + [6337] = 5909, + [6338] = 5951, + [6339] = 5919, + [6340] = 5913, + [6341] = 5917, + [6342] = 5914, + [6343] = 5915, + [6344] = 5913, + [6345] = 5932, + [6346] = 5900, + [6347] = 5899, + [6348] = 5904, + [6349] = 5930, + [6350] = 5899, + [6351] = 3979, + [6352] = 5892, + [6353] = 5922, + [6354] = 5966, + [6355] = 5907, + [6356] = 5930, + [6357] = 5913, + [6358] = 5907, + [6359] = 5951, + [6360] = 5914, + [6361] = 5896, + [6362] = 5900, + [6363] = 5927, + [6364] = 6169, + [6365] = 5930, + [6366] = 5922, + [6367] = 5903, + [6368] = 5900, + [6369] = 5901, + [6370] = 5917, + [6371] = 5932, + [6372] = 5913, + [6373] = 5917, + [6374] = 5892, + [6375] = 5927, + [6376] = 6169, + [6377] = 5894, + [6378] = 5940, + [6379] = 5893, + [6380] = 5922, + [6381] = 5907, + [6382] = 5907, + [6383] = 5920, + [6384] = 5914, + [6385] = 5915, + [6386] = 5899, + [6387] = 5927, + [6388] = 6169, + [6389] = 5940, + [6390] = 5897, + [6391] = 5930, + [6392] = 5951, + [6393] = 5914, + [6394] = 5907, + [6395] = 6395, + [6396] = 5907, + [6397] = 5922, + [6398] = 5927, + [6399] = 6169, + [6400] = 5930, + [6401] = 5915, + [6402] = 5899, + [6403] = 5920, + [6404] = 5900, + [6405] = 5901, + [6406] = 5917, + [6407] = 5895, + [6408] = 5913, + [6409] = 5892, + [6410] = 5914, + [6411] = 6411, + [6412] = 6411, + [6413] = 6411, + [6414] = 6414, + [6415] = 6411, + [6416] = 6411, + [6417] = 6411, + [6418] = 6411, + [6419] = 6414, + [6420] = 6414, + [6421] = 6411, + [6422] = 6414, + [6423] = 6411, + [6424] = 6411, + [6425] = 6414, + [6426] = 6411, + [6427] = 6411, + [6428] = 6411, + [6429] = 6414, + [6430] = 6414, + [6431] = 6411, + [6432] = 6414, + [6433] = 6414, + [6434] = 6411, + [6435] = 6411, + [6436] = 6411, + [6437] = 6411, + [6438] = 6411, + [6439] = 6414, + [6440] = 6414, + [6441] = 6411, + [6442] = 6411, + [6443] = 6411, + [6444] = 6411, + [6445] = 6411, + [6446] = 6411, + [6447] = 6414, + [6448] = 6414, + [6449] = 6414, + [6450] = 6411, + [6451] = 6411, + [6452] = 6452, + [6453] = 6452, + [6454] = 6454, + [6455] = 6454, + [6456] = 6454, + [6457] = 6452, + [6458] = 6458, + [6459] = 6458, + [6460] = 6454, + [6461] = 6452, + [6462] = 6458, + [6463] = 6454, + [6464] = 6452, + [6465] = 6452, + [6466] = 6454, + [6467] = 6452, + [6468] = 6452, + [6469] = 6454, + [6470] = 6452, + [6471] = 6454, + [6472] = 6458, + [6473] = 6452, + [6474] = 6454, + [6475] = 6454, + [6476] = 6454, + [6477] = 6452, + [6478] = 6458, + [6479] = 6479, + [6480] = 6454, + [6481] = 6454, + [6482] = 6452, + [6483] = 6458, + [6484] = 6454, + [6485] = 6458, + [6486] = 6458, + [6487] = 6454, + [6488] = 6458, + [6489] = 6452, + [6490] = 6458, + [6491] = 6454, + [6492] = 6452, + [6493] = 6454, + [6494] = 6458, + [6495] = 6458, + [6496] = 6452, + [6497] = 6454, + [6498] = 6454, + [6499] = 6454, + [6500] = 6458, + [6501] = 6452, + [6502] = 6458, + [6503] = 6452, + [6504] = 6454, + [6505] = 6452, + [6506] = 6458, + [6507] = 6454, + [6508] = 6452, + [6509] = 6454, + [6510] = 6458, + [6511] = 6458, + [6512] = 6452, + [6513] = 6458, + [6514] = 6458, + [6515] = 6454, + [6516] = 6458, + [6517] = 6458, + [6518] = 6454, + [6519] = 6458, + [6520] = 6458, + [6521] = 6452, + [6522] = 6454, + [6523] = 6452, + [6524] = 6458, + [6525] = 6452, + [6526] = 6454, + [6527] = 6452, + [6528] = 6452, + [6529] = 6458, + [6530] = 6452, + [6531] = 6458, + [6532] = 6458, + [6533] = 6452, + [6534] = 6534, + [6535] = 6535, + [6536] = 6535, + [6537] = 6534, + [6538] = 861, + [6539] = 6535, + [6540] = 6535, + [6541] = 6534, + [6542] = 6535, + [6543] = 6534, + [6544] = 6534, + [6545] = 6535, + [6546] = 6535, + [6547] = 6534, + [6548] = 6535, + [6549] = 858, + [6550] = 6535, + [6551] = 6534, + [6552] = 6535, + [6553] = 6534, + [6554] = 6534, + [6555] = 6535, + [6556] = 6535, + [6557] = 6535, + [6558] = 6535, + [6559] = 6534, + [6560] = 6534, + [6561] = 6534, + [6562] = 6535, + [6563] = 6535, + [6564] = 6534, + [6565] = 6535, + [6566] = 6535, + [6567] = 6534, + [6568] = 6534, + [6569] = 6534, + [6570] = 6534, + [6571] = 6535, + [6572] = 6535, + [6573] = 6535, + [6574] = 6534, + [6575] = 6534, + [6576] = 6534, + [6577] = 6534, + [6578] = 6534, + [6579] = 6534, + [6580] = 6534, + [6581] = 6534, + [6582] = 6535, + [6583] = 6535, + [6584] = 6535, + [6585] = 6535, + [6586] = 6534, + [6587] = 6534, + [6588] = 6535, + [6589] = 6535, + [6590] = 824, + [6591] = 819, + [6592] = 816, + [6593] = 6593, + [6594] = 6593, + [6595] = 6593, + [6596] = 6593, + [6597] = 6593, + [6598] = 6593, + [6599] = 6593, + [6600] = 6593, + [6601] = 6593, + [6602] = 6602, + [6603] = 6602, + [6604] = 6604, + [6605] = 854, + [6606] = 6602, + [6607] = 6604, + [6608] = 6602, + [6609] = 6602, + [6610] = 6602, + [6611] = 6604, + [6612] = 6602, + [6613] = 6604, + [6614] = 6604, + [6615] = 6602, + [6616] = 6604, + [6617] = 6602, + [6618] = 6604, + [6619] = 6604, + [6620] = 6604, + [6621] = 6621, + [6622] = 856, + [6623] = 6623, + [6624] = 6624, + [6625] = 6625, + [6626] = 6623, + [6627] = 6624, + [6628] = 6628, + [6629] = 6629, + [6630] = 6630, + [6631] = 6630, + [6632] = 6623, + [6633] = 6623, + [6634] = 6628, + [6635] = 6630, + [6636] = 6628, + [6637] = 6624, + [6638] = 6623, + [6639] = 6630, + [6640] = 6628, + [6641] = 6630, + [6642] = 6629, + [6643] = 6628, + [6644] = 6624, + [6645] = 6630, + [6646] = 6629, + [6647] = 6630, + [6648] = 6628, + [6649] = 6624, + [6650] = 6624, + [6651] = 6623, + [6652] = 6628, + [6653] = 6628, + [6654] = 6624, + [6655] = 6623, + [6656] = 6628, + [6657] = 6628, + [6658] = 6629, + [6659] = 6630, + [6660] = 6629, + [6661] = 6623, + [6662] = 884, + [6663] = 6624, + [6664] = 6629, + [6665] = 6629, + [6666] = 6628, + [6667] = 6628, + [6668] = 6624, + [6669] = 6623, + [6670] = 6624, + [6671] = 6630, + [6672] = 6672, + [6673] = 6630, + [6674] = 6630, + [6675] = 6623, + [6676] = 6630, + [6677] = 6623, + [6678] = 6628, + [6679] = 6623, + [6680] = 6630, + [6681] = 6623, + [6682] = 6628, + [6683] = 6623, + [6684] = 6630, + [6685] = 6624, + [6686] = 6624, + [6687] = 6687, + [6688] = 830, + [6689] = 6687, + [6690] = 6687, + [6691] = 6691, + [6692] = 6691, + [6693] = 6687, + [6694] = 6691, + [6695] = 6691, + [6696] = 6691, + [6697] = 6691, + [6698] = 6691, + [6699] = 6687, + [6700] = 6687, + [6701] = 6691, + [6702] = 6691, + [6703] = 6687, + [6704] = 6687, + [6705] = 6687, + [6706] = 6687, + [6707] = 6691, + [6708] = 6687, + [6709] = 6691, + [6710] = 6691, + [6711] = 6691, + [6712] = 6691, + [6713] = 6687, + [6714] = 6687, + [6715] = 6687, + [6716] = 6691, + [6717] = 6687, + [6718] = 6687, + [6719] = 6691, + [6720] = 6691, + [6721] = 6691, + [6722] = 6687, + [6723] = 6691, + [6724] = 6691, + [6725] = 6687, + [6726] = 6687, + [6727] = 6691, + [6728] = 6687, + [6729] = 6687, + [6730] = 6687, + [6731] = 6687, + [6732] = 6691, + [6733] = 6691, + [6734] = 6691, + [6735] = 6687, + [6736] = 6687, + [6737] = 6691, + [6738] = 839, + [6739] = 6687, + [6740] = 6691, + [6741] = 6687, + [6742] = 6691, + [6743] = 1169, + [6744] = 1159, + [6745] = 1162, + [6746] = 1168, + [6747] = 6747, + [6748] = 6748, + [6749] = 6747, + [6750] = 6750, + [6751] = 6748, + [6752] = 6752, + [6753] = 6753, + [6754] = 6754, + [6755] = 6755, + [6756] = 6756, + [6757] = 6756, + [6758] = 6758, + [6759] = 6754, + [6760] = 6760, + [6761] = 6761, + [6762] = 6758, + [6763] = 6753, + [6764] = 6764, [6765] = 6765, - [6766] = 842, - [6767] = 6762, - [6768] = 6765, - [6769] = 6765, - [6770] = 6762, - [6771] = 6762, - [6772] = 6765, - [6773] = 6765, - [6774] = 6774, - [6775] = 6765, - [6776] = 6765, - [6777] = 872, - [6778] = 6762, - [6779] = 6765, - [6780] = 6765, - [6781] = 6762, - [6782] = 6762, - [6783] = 6783, - [6784] = 6784, - [6785] = 6785, - [6786] = 6786, - [6787] = 6783, - [6788] = 6788, - [6789] = 6783, - [6790] = 6784, - [6791] = 6785, - [6792] = 6784, - [6793] = 6793, - [6794] = 6784, - [6795] = 6788, - [6796] = 6788, - [6797] = 6788, - [6798] = 6788, - [6799] = 6783, - [6800] = 6800, - [6801] = 6793, - [6802] = 6784, - [6803] = 6784, - [6804] = 6783, - [6805] = 6785, - [6806] = 6784, - [6807] = 6783, - [6808] = 6793, - [6809] = 6785, - [6810] = 6783, - [6811] = 6784, - [6812] = 6784, - [6813] = 6793, - [6814] = 6784, - [6815] = 6788, - [6816] = 6783, - [6817] = 6793, - [6818] = 6793, - [6819] = 6793, - [6820] = 6788, - [6821] = 6788, - [6822] = 6784, - [6823] = 6783, - [6824] = 6793, - [6825] = 6783, - [6826] = 6793, - [6827] = 6783, - [6828] = 6784, - [6829] = 6783, - [6830] = 6783, - [6831] = 6793, - [6832] = 6785, - [6833] = 945, - [6834] = 6785, - [6835] = 6793, - [6836] = 6788, - [6837] = 6783, - [6838] = 6788, - [6839] = 6785, - [6840] = 6788, - [6841] = 6784, - [6842] = 6793, - [6843] = 6788, - [6844] = 6784, - [6845] = 6788, - [6846] = 6788, - [6847] = 6847, - [6848] = 6847, - [6849] = 6849, - [6850] = 846, - [6851] = 6847, - [6852] = 6847, - [6853] = 6847, - [6854] = 6847, - [6855] = 6849, - [6856] = 6849, - [6857] = 6847, - [6858] = 6847, - [6859] = 6849, - [6860] = 6847, - [6861] = 6849, - [6862] = 6849, - [6863] = 877, - [6864] = 6847, - [6865] = 6847, - [6866] = 6847, - [6867] = 6847, - [6868] = 6849, - [6869] = 6849, - [6870] = 6849, - [6871] = 6847, - [6872] = 6847, - [6873] = 6847, - [6874] = 6849, - [6875] = 6849, - [6876] = 6849, - [6877] = 6849, - [6878] = 6847, - [6879] = 6847, - [6880] = 6849, - [6881] = 6849, - [6882] = 6847, - [6883] = 6847, - [6884] = 6849, - [6885] = 6849, - [6886] = 6849, - [6887] = 6849, - [6888] = 6849, - [6889] = 6849, - [6890] = 6847, - [6891] = 6847, - [6892] = 6849, - [6893] = 6847, - [6894] = 6847, - [6895] = 6849, - [6896] = 6849, - [6897] = 6849, - [6898] = 6847, - [6899] = 6849, - [6900] = 6847, - [6901] = 6847, - [6902] = 6849, - [6903] = 1099, - [6904] = 1077, - [6905] = 1079, - [6906] = 1090, - [6907] = 6907, - [6908] = 6908, - [6909] = 6909, - [6910] = 6909, - [6911] = 6911, - [6912] = 6912, - [6913] = 6913, - [6914] = 6908, - [6915] = 6915, - [6916] = 6916, - [6917] = 6917, - [6918] = 6918, - [6919] = 6919, - [6920] = 6920, - [6921] = 6919, - [6922] = 6912, - [6923] = 6907, - [6924] = 6924, - [6925] = 6925, - [6926] = 6908, - [6927] = 6918, - [6928] = 6912, - [6929] = 6929, - [6930] = 6911, - [6931] = 6924, - [6932] = 6932, - [6933] = 6907, - [6934] = 6934, - [6935] = 6907, - [6936] = 6913, - [6937] = 6915, - [6938] = 6912, - [6939] = 6934, - [6940] = 6934, - [6941] = 6932, - [6942] = 6920, - [6943] = 6919, - [6944] = 6911, - [6945] = 6932, - [6946] = 6917, - [6947] = 6916, - [6948] = 6907, - [6949] = 6934, - [6950] = 6932, - [6951] = 6909, - [6952] = 6925, - [6953] = 6924, - [6954] = 6929, - [6955] = 6918, - [6956] = 6925, - [6957] = 6924, - [6958] = 6929, - [6959] = 6918, - [6960] = 6909, - [6961] = 6915, - [6962] = 6908, - [6963] = 6913, - [6964] = 6920, - [6965] = 6911, - [6966] = 6915, - [6967] = 6916, - [6968] = 6909, - [6969] = 6917, - [6970] = 6916, - [6971] = 6925, - [6972] = 6917, - [6973] = 6919, - [6974] = 6920, - [6975] = 6912, - [6976] = 6907, - [6977] = 6918, - [6978] = 6919, - [6979] = 6934, - [6980] = 6932, - [6981] = 6919, - [6982] = 6915, - [6983] = 6924, - [6984] = 6929, - [6985] = 6925, - [6986] = 6929, - [6987] = 6918, - [6988] = 6929, - [6989] = 6918, - [6990] = 6924, - [6991] = 6920, - [6992] = 6925, - [6993] = 6912, - [6994] = 6932, - [6995] = 6934, - [6996] = 6907, - [6997] = 6934, - [6998] = 6924, - [6999] = 6917, - [7000] = 6907, - [7001] = 6915, - [7002] = 6932, - [7003] = 6908, - [7004] = 6913, - [7005] = 6929, - [7006] = 6911, - [7007] = 6918, - [7008] = 6925, - [7009] = 6912, - [7010] = 6916, - [7011] = 7011, - [7012] = 6920, - [7013] = 6917, - [7014] = 6915, - [7015] = 6919, - [7016] = 6909, - [7017] = 6916, - [7018] = 6917, - [7019] = 6919, - [7020] = 6915, - [7021] = 6916, - [7022] = 6911, - [7023] = 6917, - [7024] = 6920, - [7025] = 6916, - [7026] = 6912, - [7027] = 6907, - [7028] = 6908, - [7029] = 6913, - [7030] = 6909, - [7031] = 6934, - [7032] = 6932, - [7033] = 6924, - [7034] = 6909, - [7035] = 6929, - [7036] = 6918, - [7037] = 6908, - [7038] = 6911, - [7039] = 6913, - [7040] = 6917, - [7041] = 6917, - [7042] = 6925, - [7043] = 6908, - [7044] = 6913, - [7045] = 6915, - [7046] = 6908, - [7047] = 6909, - [7048] = 6916, - [7049] = 6913, - [7050] = 6911, - [7051] = 6909, - [7052] = 6917, - [7053] = 6919, - [7054] = 6920, - [7055] = 6909, - [7056] = 6916, - [7057] = 6912, - [7058] = 6913, - [7059] = 6916, - [7060] = 6907, - [7061] = 6934, - [7062] = 6932, - [7063] = 6924, - [7064] = 6925, - [7065] = 6909, - [7066] = 6924, - [7067] = 6929, - [7068] = 6919, - [7069] = 7011, - [7070] = 6911, - [7071] = 6911, - [7072] = 6909, - [7073] = 6918, - [7074] = 6911, - [7075] = 6920, - [7076] = 6911, - [7077] = 6912, - [7078] = 6911, - [7079] = 6925, - [7080] = 6907, - [7081] = 6929, - [7082] = 6913, - [7083] = 6924, - [7084] = 6932, - [7085] = 6913, - [7086] = 6913, - [7087] = 6915, - [7088] = 6934, - [7089] = 6908, - [7090] = 6908, - [7091] = 6934, - [7092] = 6932, - [7093] = 6925, - [7094] = 6919, - [7095] = 6913, - [7096] = 6909, - [7097] = 6915, - [7098] = 6911, - [7099] = 6909, - [7100] = 6913, - [7101] = 6908, - [7102] = 6915, - [7103] = 7011, - [7104] = 6911, - [7105] = 6925, - [7106] = 7011, - [7107] = 6918, - [7108] = 6929, - [7109] = 6908, - [7110] = 6924, - [7111] = 6907, - [7112] = 6924, - [7113] = 6932, - [7114] = 6934, - [7115] = 6916, - [7116] = 6907, - [7117] = 6915, - [7118] = 6912, - [7119] = 6920, - [7120] = 6912, - [7121] = 6920, - [7122] = 6919, - [7123] = 6911, - [7124] = 6913, - [7125] = 6917, - [7126] = 6916, - [7127] = 6925, - [7128] = 6919, - [7129] = 6918, - [7130] = 6925, - [7131] = 6907, - [7132] = 6920, - [7133] = 6908, - [7134] = 6929, - [7135] = 6915, - [7136] = 6919, - [7137] = 6929, - [7138] = 6924, - [7139] = 6918, - [7140] = 6912, - [7141] = 6925, - [7142] = 6924, - [7143] = 6917, - [7144] = 6911, - [7145] = 6916, - [7146] = 6918, - [7147] = 6929, - [7148] = 6924, - [7149] = 6932, - [7150] = 6932, - [7151] = 6932, - [7152] = 6934, - [7153] = 6934, - [7154] = 6934, - [7155] = 6907, - [7156] = 6925, - [7157] = 6912, - [7158] = 6920, - [7159] = 6919, - [7160] = 6907, - [7161] = 6917, - [7162] = 6916, - [7163] = 6912, - [7164] = 6918, - [7165] = 6907, - [7166] = 6925, - [7167] = 6920, - [7168] = 6929, - [7169] = 6912, - [7170] = 6907, - [7171] = 6919, - [7172] = 6909, - [7173] = 6918, - [7174] = 6912, - [7175] = 6929, - [7176] = 6920, - [7177] = 6934, - [7178] = 6911, - [7179] = 6932, - [7180] = 6929, - [7181] = 6917, - [7182] = 6909, - [7183] = 6916, - [7184] = 6920, - [7185] = 6913, - [7186] = 6917, - [7187] = 6924, - [7188] = 6918, - [7189] = 6916, - [7190] = 6929, - [7191] = 6932, - [7192] = 6915, - [7193] = 6929, - [7194] = 6919, - [7195] = 6917, - [7196] = 6919, - [7197] = 6918, - [7198] = 6920, - [7199] = 6917, - [7200] = 6925, - [7201] = 6916, - [7202] = 6925, - [7203] = 6908, - [7204] = 6912, - [7205] = 6907, - [7206] = 6915, - [7207] = 6909, - [7208] = 6908, - [7209] = 6911, - [7210] = 7210, - [7211] = 6916, - [7212] = 6913, - [7213] = 6908, - [7214] = 6917, - [7215] = 6912, + [6766] = 6750, + [6767] = 6760, + [6768] = 6768, + [6769] = 6769, + [6770] = 6747, + [6771] = 6748, + [6772] = 6752, + [6773] = 6753, + [6774] = 6752, + [6775] = 6754, + [6776] = 6755, + [6777] = 6756, + [6778] = 6760, + [6779] = 6748, + [6780] = 6758, + [6781] = 6769, + [6782] = 6747, + [6783] = 6769, + [6784] = 6752, + [6785] = 6750, + [6786] = 6755, + [6787] = 6768, + [6788] = 6758, + [6789] = 6765, + [6790] = 6764, + [6791] = 6758, + [6792] = 6792, + [6793] = 6764, + [6794] = 6765, + [6795] = 6768, + [6796] = 6769, + [6797] = 6768, + [6798] = 6750, + [6799] = 6760, + [6800] = 6769, + [6801] = 6760, + [6802] = 6768, + [6803] = 6747, + [6804] = 6758, + [6805] = 6747, + [6806] = 6748, + [6807] = 6752, + [6808] = 6748, + [6809] = 6756, + [6810] = 6753, + [6811] = 6754, + [6812] = 6755, + [6813] = 6756, + [6814] = 6755, + [6815] = 6754, + [6816] = 6750, + [6817] = 6752, + [6818] = 6753, + [6819] = 6760, + [6820] = 6752, + [6821] = 6748, + [6822] = 6769, + [6823] = 6765, + [6824] = 6764, + [6825] = 6747, + [6826] = 6765, + [6827] = 6758, + [6828] = 6768, + [6829] = 6769, + [6830] = 6750, + [6831] = 6753, + [6832] = 6760, + [6833] = 6754, + [6834] = 6750, + [6835] = 6835, + [6836] = 6760, + [6837] = 6765, + [6838] = 6764, + [6839] = 6764, + [6840] = 6758, + [6841] = 6765, + [6842] = 6747, + [6843] = 6765, + [6844] = 6844, + [6845] = 6755, + [6846] = 6748, + [6847] = 6764, + [6848] = 6764, + [6849] = 6758, + [6850] = 6756, + [6851] = 6851, + [6852] = 6756, + [6853] = 6760, + [6854] = 6755, + [6855] = 6754, + [6856] = 6753, + [6857] = 6752, + [6858] = 6750, + [6859] = 6760, + [6860] = 6752, + [6861] = 6768, + [6862] = 6747, + [6863] = 6750, + [6864] = 6765, + [6865] = 6769, + [6866] = 6764, + [6867] = 6768, + [6868] = 6768, + [6869] = 6768, + [6870] = 6769, + [6871] = 6755, + [6872] = 6747, + [6873] = 6753, + [6874] = 6769, + [6875] = 6754, + [6876] = 6748, + [6877] = 6755, + [6878] = 6760, + [6879] = 6750, + [6880] = 6754, + [6881] = 6752, + [6882] = 6764, + [6883] = 6753, + [6884] = 6754, + [6885] = 6765, + [6886] = 6753, + [6887] = 6752, + [6888] = 6748, + [6889] = 6747, + [6890] = 6765, + [6891] = 6768, + [6892] = 6756, + [6893] = 6758, + [6894] = 6764, + [6895] = 6755, + [6896] = 6764, + [6897] = 6765, + [6898] = 6769, + [6899] = 6760, + [6900] = 6750, + [6901] = 6760, + [6902] = 6750, + [6903] = 6769, + [6904] = 6768, + [6905] = 6765, + [6906] = 6756, + [6907] = 6764, + [6908] = 6747, + [6909] = 6748, + [6910] = 6758, + [6911] = 6752, + [6912] = 6756, + [6913] = 6755, + [6914] = 6755, + [6915] = 6753, + [6916] = 6754, + [6917] = 6754, + [6918] = 6753, + [6919] = 6755, + [6920] = 6754, + [6921] = 6758, + [6922] = 6753, + [6923] = 6752, + [6924] = 6752, + [6925] = 6756, + [6926] = 6748, + [6927] = 6758, + [6928] = 6769, + [6929] = 6768, + [6930] = 6747, + [6931] = 6747, + [6932] = 6748, + [6933] = 6768, + [6934] = 6769, + [6935] = 6760, + [6936] = 6755, + [6937] = 6755, + [6938] = 6756, + [6939] = 6748, + [6940] = 6747, + [6941] = 6752, + [6942] = 6750, + [6943] = 6754, + [6944] = 6754, + [6945] = 6756, + [6946] = 6768, + [6947] = 6769, + [6948] = 6753, + [6949] = 6750, + [6950] = 6753, + [6951] = 6750, + [6952] = 6758, + [6953] = 6764, + [6954] = 6760, + [6955] = 6851, + [6956] = 6758, + [6957] = 6765, + [6958] = 6760, + [6959] = 6765, + [6960] = 6764, + [6961] = 6754, + [6962] = 6750, + [6963] = 6764, + [6964] = 6758, + [6965] = 6756, + [6966] = 6752, + [6967] = 6748, + [6968] = 6747, + [6969] = 6765, + [6970] = 6750, + [6971] = 6756, + [6972] = 6755, + [6973] = 6769, + [6974] = 6764, + [6975] = 6758, + [6976] = 6756, + [6977] = 6768, + [6978] = 6754, + [6979] = 6769, + [6980] = 6753, + [6981] = 6755, + [6982] = 6851, + [6983] = 6760, + [6984] = 6752, + [6985] = 6760, + [6986] = 6769, + [6987] = 6750, + [6988] = 6758, + [6989] = 6748, + [6990] = 6755, + [6991] = 6747, + [6992] = 6768, + [6993] = 6754, + [6994] = 6769, + [6995] = 6753, + [6996] = 6760, + [6997] = 6851, + [6998] = 6750, + [6999] = 6752, + [7000] = 6765, + [7001] = 6768, + [7002] = 6764, + [7003] = 6765, + [7004] = 6758, + [7005] = 6764, + [7006] = 6748, + [7007] = 6756, + [7008] = 6755, + [7009] = 6754, + [7010] = 6753, + [7011] = 6752, + [7012] = 6748, + [7013] = 6747, + [7014] = 6747, + [7015] = 6748, + [7016] = 6748, + [7017] = 6747, + [7018] = 6768, + [7019] = 6752, + [7020] = 6769, + [7021] = 6753, + [7022] = 6760, + [7023] = 6754, + [7024] = 6750, + [7025] = 6765, + [7026] = 6768, + [7027] = 6758, + [7028] = 6756, + [7029] = 6755, + [7030] = 6758, + [7031] = 6768, + [7032] = 6764, + [7033] = 6758, + [7034] = 6764, + [7035] = 6765, + [7036] = 6756, + [7037] = 6769, + [7038] = 6747, + [7039] = 6756, + [7040] = 6755, + [7041] = 6755, + [7042] = 6750, + [7043] = 6760, + [7044] = 6851, + [7045] = 6769, + [7046] = 6768, + [7047] = 6754, + [7048] = 6753, + [7049] = 6754, + [7050] = 6747, + [7051] = 6748, + [7052] = 6747, + [7053] = 6752, + [7054] = 6752, + [7055] = 6748, + [7056] = 6753, + [7057] = 6754, + [7058] = 6753, + [7059] = 6760, + [7060] = 6748, + [7061] = 6755, + [7062] = 6752, + [7063] = 6755, + [7064] = 6753, + [7065] = 6752, + [7066] = 6753, + [7067] = 6754, + [7068] = 6753, + [7069] = 6754, + [7070] = 6752, + [7071] = 6748, + [7072] = 6747, + [7073] = 6750, + [7074] = 6768, + [7075] = 6769, + [7076] = 6755, + [7077] = 6768, + [7078] = 6748, + [7079] = 6756, + [7080] = 6747, + [7081] = 6758, + [7082] = 6768, + [7083] = 6769, + [7084] = 6760, + [7085] = 6750, + [7086] = 6760, + [7087] = 6764, + [7088] = 6765, + [7089] = 6750, + [7090] = 6756, + [7091] = 6765, + [7092] = 6764, + [7093] = 6758, + [7094] = 6765, + [7095] = 6750, + [7096] = 6760, + [7097] = 6756, + [7098] = 6765, + [7099] = 6769, + [7100] = 6768, + [7101] = 6756, + [7102] = 6755, + [7103] = 6764, + [7104] = 6754, + [7105] = 6747, + [7106] = 6748, + [7107] = 6756, + [7108] = 6752, + [7109] = 6753, + [7110] = 6756, + [7111] = 6753, + [7112] = 6754, + [7113] = 6752, + [7114] = 6748, + [7115] = 6747, + [7116] = 6765, + [7117] = 6755, + [7118] = 6768, + [7119] = 6764, + [7120] = 6769, + [7121] = 6758, + [7122] = 6758, + [7123] = 6769, + [7124] = 6760, + [7125] = 6764, + [7126] = 6750, + [7127] = 6756, + [7128] = 6765, + [7129] = 6851, + [7130] = 6765, + [7131] = 6764, + [7132] = 6750, + [7133] = 6760, + [7134] = 6758, + [7135] = 7135, + [7136] = 7136, + [7137] = 7137, + [7138] = 7138, + [7139] = 7139, + [7140] = 7136, + [7141] = 7136, + [7142] = 7137, + [7143] = 7137, + [7144] = 7135, + [7145] = 7137, + [7146] = 7137, + [7147] = 7136, + [7148] = 7137, + [7149] = 7135, + [7150] = 824, + [7151] = 7136, + [7152] = 7136, + [7153] = 7137, + [7154] = 7135, + [7155] = 7137, + [7156] = 7135, + [7157] = 7136, + [7158] = 7136, + [7159] = 7137, + [7160] = 7135, + [7161] = 7136, + [7162] = 7136, + [7163] = 7163, + [7164] = 7137, + [7165] = 7137, + [7166] = 7136, + [7167] = 7137, + [7168] = 7136, + [7169] = 7136, + [7170] = 7137, + [7171] = 7137, + [7172] = 7136, + [7173] = 7136, + [7174] = 7137, + [7175] = 7136, + [7176] = 7137, + [7177] = 7136, + [7178] = 7137, + [7179] = 7136, + [7180] = 7137, + [7181] = 7136, + [7182] = 1170, + [7183] = 7135, + [7184] = 7135, + [7185] = 7137, + [7186] = 3568, + [7187] = 7135, + [7188] = 7137, + [7189] = 7136, + [7190] = 7137, + [7191] = 7137, + [7192] = 7137, + [7193] = 7135, + [7194] = 7136, + [7195] = 7135, + [7196] = 7135, + [7197] = 7135, + [7198] = 7136, + [7199] = 7137, + [7200] = 7136, + [7201] = 7136, + [7202] = 7136, + [7203] = 7137, + [7204] = 7137, + [7205] = 7137, + [7206] = 7135, + [7207] = 7136, + [7208] = 7135, + [7209] = 7209, + [7210] = 7136, + [7211] = 7211, + [7212] = 7212, + [7213] = 7213, + [7214] = 7214, + [7215] = 823, [7216] = 7216, - [7217] = 6934, - [7218] = 6932, - [7219] = 6919, - [7220] = 7011, - [7221] = 6920, - [7222] = 6920, - [7223] = 6915, - [7224] = 6924, - [7225] = 6925, - [7226] = 6918, - [7227] = 6929, - [7228] = 6924, - [7229] = 6932, - [7230] = 6934, - [7231] = 6934, - [7232] = 6907, - [7233] = 6929, - [7234] = 6920, - [7235] = 6912, - [7236] = 6913, - [7237] = 6920, - [7238] = 6919, - [7239] = 6909, - [7240] = 6908, - [7241] = 6918, - [7242] = 6911, - [7243] = 6915, - [7244] = 6925, - [7245] = 6913, - [7246] = 6908, - [7247] = 6912, - [7248] = 6929, - [7249] = 6915, - [7250] = 6917, - [7251] = 6924, - [7252] = 6919, - [7253] = 6907, - [7254] = 6925, - [7255] = 6934, - [7256] = 6918, - [7257] = 6929, - [7258] = 6915, - [7259] = 6924, - [7260] = 6916, - [7261] = 6908, - [7262] = 6932, - [7263] = 6934, - [7264] = 6932, - [7265] = 6907, - [7266] = 6934, - [7267] = 6912, - [7268] = 6909, - [7269] = 6920, - [7270] = 6919, - [7271] = 6913, - [7272] = 6932, - [7273] = 6907, - [7274] = 6917, - [7275] = 6916, - [7276] = 7276, - [7277] = 6917, - [7278] = 6911, - [7279] = 6907, - [7280] = 6908, - [7281] = 6924, - [7282] = 6934, - [7283] = 6911, - [7284] = 6913, - [7285] = 6908, - [7286] = 6915, - [7287] = 6915, - [7288] = 6916, - [7289] = 6925, - [7290] = 6917, - [7291] = 6919, - [7292] = 7011, - [7293] = 6909, - [7294] = 6920, - [7295] = 6909, - [7296] = 6912, - [7297] = 6918, - [7298] = 6911, - [7299] = 6907, - [7300] = 6911, - [7301] = 6913, - [7302] = 6908, - [7303] = 6934, - [7304] = 6915, - [7305] = 6932, - [7306] = 6915, - [7307] = 6924, - [7308] = 6929, - [7309] = 6929, - [7310] = 6918, - [7311] = 6925, - [7312] = 6925, - [7313] = 6918, - [7314] = 6929, - [7315] = 6924, - [7316] = 6932, - [7317] = 6924, - [7318] = 6915, - [7319] = 6911, - [7320] = 6932, - [7321] = 6934, - [7322] = 6908, - [7323] = 6934, - [7324] = 6913, - [7325] = 6912, - [7326] = 6932, - [7327] = 6920, - [7328] = 6912, - [7329] = 6919, - [7330] = 6911, - [7331] = 6909, - [7332] = 6909, - [7333] = 6917, - [7334] = 6916, - [7335] = 6916, - [7336] = 6917, - [7337] = 6918, - [7338] = 6909, - [7339] = 6919, - [7340] = 6907, - [7341] = 6920, - [7342] = 6912, - [7343] = 6920, - [7344] = 6925, - [7345] = 6912, - [7346] = 6908, - [7347] = 6920, - [7348] = 6919, - [7349] = 6907, - [7350] = 6934, - [7351] = 6932, - [7352] = 6924, - [7353] = 6913, - [7354] = 6913, - [7355] = 7355, - [7356] = 6908, - [7357] = 6929, - [7358] = 6918, - [7359] = 6918, - [7360] = 6916, - [7361] = 6919, - [7362] = 6917, - [7363] = 6913, - [7364] = 6909, - [7365] = 6917, - [7366] = 6916, - [7367] = 6924, - [7368] = 6916, - [7369] = 6925, - [7370] = 6915, - [7371] = 6915, - [7372] = 6909, - [7373] = 6908, - [7374] = 6911, - [7375] = 6913, - [7376] = 7376, + [7217] = 7213, + [7218] = 821, + [7219] = 7219, + [7220] = 884, + [7221] = 819, + [7222] = 816, + [7223] = 7223, + [7224] = 7224, + [7225] = 7225, + [7226] = 7226, + [7227] = 7227, + [7228] = 3568, + [7229] = 3724, + [7230] = 7226, + [7231] = 7224, + [7232] = 7226, + [7233] = 7226, + [7234] = 7227, + [7235] = 7224, + [7236] = 7227, + [7237] = 7226, + [7238] = 7226, + [7239] = 7227, + [7240] = 7225, + [7241] = 7224, + [7242] = 7227, + [7243] = 7227, + [7244] = 7225, + [7245] = 7225, + [7246] = 861, + [7247] = 854, + [7248] = 7227, + [7249] = 7225, + [7250] = 3568, + [7251] = 7227, + [7252] = 7224, + [7253] = 7226, + [7254] = 7224, + [7255] = 7226, + [7256] = 7224, + [7257] = 7225, + [7258] = 7224, + [7259] = 7226, + [7260] = 7260, + [7261] = 7225, + [7262] = 7226, + [7263] = 856, + [7264] = 7227, + [7265] = 7224, + [7266] = 824, + [7267] = 7225, + [7268] = 7224, + [7269] = 7225, + [7270] = 7224, + [7271] = 7224, + [7272] = 7227, + [7273] = 7273, + [7274] = 7226, + [7275] = 7227, + [7276] = 7225, + [7277] = 7225, + [7278] = 7225, + [7279] = 858, + [7280] = 7280, + [7281] = 7281, + [7282] = 7280, + [7283] = 7283, + [7284] = 3883, + [7285] = 7280, + [7286] = 7286, + [7287] = 7280, + [7288] = 7283, + [7289] = 7286, + [7290] = 1169, + [7291] = 7291, + [7292] = 7281, + [7293] = 7281, + [7294] = 7286, + [7295] = 7291, + [7296] = 7281, + [7297] = 816, + [7298] = 7291, + [7299] = 7286, + [7300] = 7286, + [7301] = 7281, + [7302] = 7283, + [7303] = 7291, + [7304] = 7281, + [7305] = 7305, + [7306] = 7291, + [7307] = 3724, + [7308] = 7305, + [7309] = 7280, + [7310] = 7280, + [7311] = 7311, + [7312] = 7291, + [7313] = 7291, + [7314] = 823, + [7315] = 1159, + [7316] = 7291, + [7317] = 7286, + [7318] = 7280, + [7319] = 7305, + [7320] = 7291, + [7321] = 1162, + [7322] = 3889, + [7323] = 7280, + [7324] = 7291, + [7325] = 7325, + [7326] = 3979, + [7327] = 3975, + [7328] = 7286, + [7329] = 7286, + [7330] = 7280, + [7331] = 7280, + [7332] = 7281, + [7333] = 884, + [7334] = 7281, + [7335] = 7286, + [7336] = 1168, + [7337] = 7283, + [7338] = 819, + [7339] = 7305, + [7340] = 3568, + [7341] = 3871, + [7342] = 7291, + [7343] = 7283, + [7344] = 7344, + [7345] = 7281, + [7346] = 7286, + [7347] = 7281, + [7348] = 7305, + [7349] = 7286, + [7350] = 1170, + [7351] = 7283, + [7352] = 7281, + [7353] = 821, + [7354] = 7280, + [7355] = 7286, + [7356] = 7281, + [7357] = 824, + [7358] = 7305, + [7359] = 7359, + [7360] = 856, + [7361] = 7361, + [7362] = 7362, + [7363] = 7363, + [7364] = 7364, + [7365] = 7363, + [7366] = 7364, + [7367] = 7367, + [7368] = 7361, + [7369] = 7362, + [7370] = 7362, + [7371] = 7359, + [7372] = 7372, + [7373] = 7361, + [7374] = 7374, + [7375] = 819, + [7376] = 7364, [7377] = 7377, - [7378] = 7376, - [7379] = 7376, + [7378] = 7367, + [7379] = 7377, [7380] = 7380, - [7381] = 7376, - [7382] = 7380, - [7383] = 7377, - [7384] = 7380, - [7385] = 7377, - [7386] = 7377, - [7387] = 7376, - [7388] = 7380, - [7389] = 7376, - [7390] = 7380, - [7391] = 7380, - [7392] = 7376, - [7393] = 7377, - [7394] = 7380, - [7395] = 7377, - [7396] = 7376, - [7397] = 7377, - [7398] = 7380, - [7399] = 1103, - [7400] = 7376, - [7401] = 7380, - [7402] = 3472, - [7403] = 7380, - [7404] = 7377, - [7405] = 7376, - [7406] = 7377, - [7407] = 7380, - [7408] = 7376, - [7409] = 7380, - [7410] = 7376, - [7411] = 7411, - [7412] = 7380, - [7413] = 7380, - [7414] = 7376, - [7415] = 7377, - [7416] = 7380, - [7417] = 7376, - [7418] = 7380, - [7419] = 7377, - [7420] = 7376, - [7421] = 7377, - [7422] = 7380, - [7423] = 7376, - [7424] = 7380, - [7425] = 7376, - [7426] = 7380, - [7427] = 7376, - [7428] = 7377, - [7429] = 7380, - [7430] = 7376, - [7431] = 7376, - [7432] = 7380, - [7433] = 7376, - [7434] = 7380, - [7435] = 7435, - [7436] = 7376, - [7437] = 7377, - [7438] = 7380, - [7439] = 7380, - [7440] = 7376, + [7381] = 7381, + [7382] = 7363, + [7383] = 7380, + [7384] = 7363, + [7385] = 7381, + [7386] = 7361, + [7387] = 7364, + [7388] = 823, + [7389] = 7367, + [7390] = 7361, + [7391] = 7367, + [7392] = 7372, + [7393] = 7362, + [7394] = 7377, + [7395] = 7359, + [7396] = 7367, + [7397] = 7367, + [7398] = 7372, + [7399] = 7363, + [7400] = 7367, + [7401] = 7359, + [7402] = 7364, + [7403] = 821, + [7404] = 7367, + [7405] = 7380, + [7406] = 7372, + [7407] = 7367, + [7408] = 7381, + [7409] = 7363, + [7410] = 7363, + [7411] = 7372, + [7412] = 7367, + [7413] = 7377, + [7414] = 7363, + [7415] = 7363, + [7416] = 7361, + [7417] = 7367, + [7418] = 7372, + [7419] = 7381, + [7420] = 7364, + [7421] = 7380, + [7422] = 7367, + [7423] = 7361, + [7424] = 7381, + [7425] = 7374, + [7426] = 7359, + [7427] = 7374, + [7428] = 7363, + [7429] = 7381, + [7430] = 7363, + [7431] = 7361, + [7432] = 7359, + [7433] = 7364, + [7434] = 7362, + [7435] = 7377, + [7436] = 7364, + [7437] = 7372, + [7438] = 7381, + [7439] = 7363, + [7440] = 7367, [7441] = 7380, - [7442] = 7377, - [7443] = 7443, - [7444] = 7376, - [7445] = 7380, - [7446] = 832, - [7447] = 7376, - [7448] = 7376, - [7449] = 7449, - [7450] = 7380, - [7451] = 7376, - [7452] = 834, - [7453] = 7453, - [7454] = 7454, - [7455] = 837, - [7456] = 7456, - [7457] = 829, - [7458] = 7458, - [7459] = 7459, - [7460] = 839, - [7461] = 7461, - [7462] = 7462, - [7463] = 945, - [7464] = 7462, - [7465] = 7465, - [7466] = 7466, - [7467] = 866, - [7468] = 7466, - [7469] = 7469, - [7470] = 7470, - [7471] = 7469, - [7472] = 7470, - [7473] = 7465, - [7474] = 7470, - [7475] = 7466, - [7476] = 7470, - [7477] = 7470, - [7478] = 7465, - [7479] = 7466, - [7480] = 7465, - [7481] = 7470, - [7482] = 7465, - [7483] = 7465, - [7484] = 7466, - [7485] = 7469, - [7486] = 7469, - [7487] = 7469, - [7488] = 7465, - [7489] = 3472, - [7490] = 7470, - [7491] = 7469, - [7492] = 7470, - [7493] = 7466, - [7494] = 3924, - [7495] = 7495, - [7496] = 7470, - [7497] = 3472, - [7498] = 7469, - [7499] = 869, - [7500] = 7466, - [7501] = 7469, - [7502] = 842, - [7503] = 7466, - [7504] = 7469, - [7505] = 7470, - [7506] = 7465, - [7507] = 7465, - [7508] = 7465, - [7509] = 7466, - [7510] = 872, - [7511] = 7511, - [7512] = 7466, - [7513] = 7470, - [7514] = 7469, - [7515] = 7469, - [7516] = 7469, - [7517] = 7465, - [7518] = 7465, - [7519] = 832, - [7520] = 7466, - [7521] = 7521, - [7522] = 7522, - [7523] = 7523, - [7524] = 1077, - [7525] = 7525, - [7526] = 7523, - [7527] = 3472, - [7528] = 4107, - [7529] = 7521, - [7530] = 7523, - [7531] = 7521, - [7532] = 7532, - [7533] = 7522, - [7534] = 834, - [7535] = 7535, - [7536] = 7532, - [7537] = 7523, - [7538] = 7523, - [7539] = 7522, - [7540] = 3924, - [7541] = 7532, - [7542] = 7521, - [7543] = 7532, - [7544] = 7532, - [7545] = 7522, - [7546] = 7521, - [7547] = 7523, - [7548] = 4126, - [7549] = 7521, - [7550] = 1079, - [7551] = 7532, - [7552] = 7552, - [7553] = 7532, - [7554] = 7523, - [7555] = 1090, - [7556] = 4041, - [7557] = 7532, - [7558] = 1099, - [7559] = 829, - [7560] = 7522, - [7561] = 7561, - [7562] = 3947, - [7563] = 7522, - [7564] = 7532, - [7565] = 837, - [7566] = 7523, - [7567] = 7523, - [7568] = 7552, - [7569] = 7523, - [7570] = 7532, - [7571] = 7523, - [7572] = 7521, - [7573] = 7522, - [7574] = 7535, - [7575] = 7522, - [7576] = 7535, - [7577] = 7522, - [7578] = 1103, - [7579] = 4144, - [7580] = 7552, - [7581] = 839, - [7582] = 7535, - [7583] = 7552, - [7584] = 7552, - [7585] = 7532, - [7586] = 7521, - [7587] = 7521, - [7588] = 7522, - [7589] = 7521, - [7590] = 7522, - [7591] = 7591, - [7592] = 7535, - [7593] = 7535, - [7594] = 945, - [7595] = 832, - [7596] = 7532, - [7597] = 7552, - [7598] = 7523, - [7599] = 7521, - [7600] = 7600, - [7601] = 7601, - [7602] = 7602, + [7442] = 7380, + [7443] = 7377, + [7444] = 7361, + [7445] = 7374, + [7446] = 7359, + [7447] = 7447, + [7448] = 7377, + [7449] = 7363, + [7450] = 7377, + [7451] = 7359, + [7452] = 7364, + [7453] = 7381, + [7454] = 7362, + [7455] = 7380, + [7456] = 7363, + [7457] = 7363, + [7458] = 7374, + [7459] = 7372, + [7460] = 7460, + [7461] = 7361, + [7462] = 7380, + [7463] = 7377, + [7464] = 7372, + [7465] = 7362, + [7466] = 7374, + [7467] = 7367, + [7468] = 7372, + [7469] = 7367, + [7470] = 7367, + [7471] = 854, + [7472] = 7361, + [7473] = 7363, + [7474] = 7359, + [7475] = 7362, + [7476] = 7377, + [7477] = 7359, + [7478] = 7372, + [7479] = 7363, + [7480] = 7380, + [7481] = 7374, + [7482] = 7482, + [7483] = 7363, + [7484] = 7380, + [7485] = 7359, + [7486] = 7364, + [7487] = 7372, + [7488] = 7361, + [7489] = 7374, + [7490] = 7361, + [7491] = 7361, + [7492] = 7362, + [7493] = 7367, + [7494] = 7380, + [7495] = 7364, + [7496] = 7364, + [7497] = 7381, + [7498] = 7361, + [7499] = 7359, + [7500] = 7361, + [7501] = 858, + [7502] = 7380, + [7503] = 7363, + [7504] = 7363, + [7505] = 7363, + [7506] = 861, + [7507] = 7377, + [7508] = 7377, + [7509] = 7367, + [7510] = 7361, + [7511] = 7372, + [7512] = 7363, + [7513] = 7377, + [7514] = 7359, + [7515] = 7374, + [7516] = 7367, + [7517] = 7380, + [7518] = 7372, + [7519] = 7362, + [7520] = 7372, + [7521] = 7377, + [7522] = 7372, + [7523] = 7377, + [7524] = 7367, + [7525] = 7372, + [7526] = 7367, + [7527] = 7361, + [7528] = 7380, + [7529] = 7367, + [7530] = 7372, + [7531] = 7377, + [7532] = 7380, + [7533] = 7361, + [7534] = 3724, + [7535] = 7361, + [7536] = 7380, + [7537] = 7374, + [7538] = 7363, + [7539] = 7377, + [7540] = 7377, + [7541] = 7367, + [7542] = 7380, + [7543] = 7380, + [7544] = 7377, + [7545] = 7363, + [7546] = 7367, + [7547] = 7377, + [7548] = 7380, + [7549] = 7549, + [7550] = 7372, + [7551] = 7380, + [7552] = 7374, + [7553] = 7367, + [7554] = 7377, + [7555] = 7361, + [7556] = 7372, + [7557] = 7372, + [7558] = 7558, + [7559] = 7380, + [7560] = 7372, + [7561] = 7372, + [7562] = 7359, + [7563] = 7377, + [7564] = 7361, + [7565] = 7380, + [7566] = 884, + [7567] = 816, + [7568] = 7361, + [7569] = 7374, + [7570] = 7381, + [7571] = 7372, + [7572] = 7362, + [7573] = 7377, + [7574] = 7364, + [7575] = 7363, + [7576] = 7362, + [7577] = 7363, + [7578] = 7380, + [7579] = 7377, + [7580] = 7377, + [7581] = 7372, + [7582] = 7362, + [7583] = 7367, + [7584] = 7372, + [7585] = 7364, + [7586] = 7372, + [7587] = 7367, + [7588] = 7374, + [7589] = 7380, + [7590] = 7374, + [7591] = 7377, + [7592] = 7381, + [7593] = 7361, + [7594] = 7361, + [7595] = 7361, + [7596] = 7380, + [7597] = 7362, + [7598] = 7361, + [7599] = 7380, + [7600] = 7363, + [7601] = 7377, + [7602] = 7380, [7603] = 7603, [7604] = 7604, - [7605] = 7601, - [7606] = 7604, - [7607] = 7607, - [7608] = 7601, - [7609] = 7601, + [7605] = 7605, + [7606] = 7606, + [7607] = 3871, + [7608] = 3979, + [7609] = 7604, [7610] = 7610, [7611] = 7611, - [7612] = 7612, - [7613] = 7607, + [7612] = 3889, + [7613] = 7549, [7614] = 7610, - [7615] = 7607, - [7616] = 7616, - [7617] = 7607, - [7618] = 7602, - [7619] = 7619, - [7620] = 7620, - [7621] = 7600, - [7622] = 7620, - [7623] = 7607, - [7624] = 7620, - [7625] = 7625, - [7626] = 7625, - [7627] = 7610, - [7628] = 7601, - [7629] = 7616, - [7630] = 7620, - [7631] = 7600, - [7632] = 7610, - [7633] = 7616, - [7634] = 7607, - [7635] = 7620, - [7636] = 7603, - [7637] = 7610, - [7638] = 7602, - [7639] = 7602, - [7640] = 7600, - [7641] = 7604, - [7642] = 7611, - [7643] = 829, - [7644] = 7611, - [7645] = 7616, - [7646] = 7601, - [7647] = 7603, - [7648] = 7616, - [7649] = 7600, - [7650] = 7620, - [7651] = 7602, - [7652] = 7602, - [7653] = 7603, - [7654] = 7603, - [7655] = 7625, - [7656] = 7611, - [7657] = 7616, - [7658] = 7601, - [7659] = 7610, - [7660] = 7604, - [7661] = 7620, - [7662] = 7607, - [7663] = 7600, - [7664] = 7607, - [7665] = 7600, - [7666] = 7666, - [7667] = 7604, - [7668] = 7604, - [7669] = 7601, + [7615] = 7615, + [7616] = 7610, + [7617] = 7617, + [7618] = 7610, + [7619] = 7603, + [7620] = 7611, + [7621] = 7617, + [7622] = 7610, + [7623] = 7610, + [7624] = 7611, + [7625] = 7604, + [7626] = 7610, + [7627] = 7604, + [7628] = 3883, + [7629] = 7611, + [7630] = 7611, + [7631] = 7610, + [7632] = 7606, + [7633] = 7603, + [7634] = 7617, + [7635] = 3975, + [7636] = 7610, + [7637] = 7606, + [7638] = 7606, + [7639] = 7639, + [7640] = 7603, + [7641] = 856, + [7642] = 7606, + [7643] = 7615, + [7644] = 7605, + [7645] = 7603, + [7646] = 7610, + [7647] = 854, + [7648] = 7603, + [7649] = 7606, + [7650] = 7605, + [7651] = 7603, + [7652] = 7610, + [7653] = 861, + [7654] = 7611, + [7655] = 7610, + [7656] = 7617, + [7657] = 7605, + [7658] = 7606, + [7659] = 7604, + [7660] = 7605, + [7661] = 7615, + [7662] = 7617, + [7663] = 7617, + [7664] = 7615, + [7665] = 7603, + [7666] = 7606, + [7667] = 7603, + [7668] = 7603, + [7669] = 7615, [7670] = 7611, - [7671] = 7602, - [7672] = 7602, - [7673] = 7601, - [7674] = 7603, - [7675] = 7611, - [7676] = 7600, - [7677] = 7616, + [7671] = 7615, + [7672] = 7610, + [7673] = 7605, + [7674] = 7611, + [7675] = 7606, + [7676] = 7639, + [7677] = 7615, [7678] = 7603, - [7679] = 7604, - [7680] = 7600, - [7681] = 7616, - [7682] = 7610, - [7683] = 7604, - [7684] = 834, - [7685] = 7625, - [7686] = 7620, - [7687] = 7620, - [7688] = 7603, - [7689] = 7600, - [7690] = 7604, - [7691] = 7607, - [7692] = 7602, - [7693] = 7602, - [7694] = 7601, - [7695] = 3924, - [7696] = 7620, - [7697] = 7603, - [7698] = 7601, - [7699] = 7602, - [7700] = 7602, - [7701] = 7607, - [7702] = 7601, - [7703] = 7603, - [7704] = 7611, - [7705] = 7602, - [7706] = 7625, - [7707] = 7611, - [7708] = 7600, - [7709] = 7604, - [7710] = 7616, - [7711] = 7620, - [7712] = 7620, - [7713] = 7610, - [7714] = 7616, - [7715] = 7616, - [7716] = 7602, + [7679] = 7617, + [7680] = 7604, + [7681] = 7611, + [7682] = 7605, + [7683] = 7606, + [7684] = 7603, + [7685] = 7610, + [7686] = 7605, + [7687] = 7603, + [7688] = 7605, + [7689] = 7606, + [7690] = 7617, + [7691] = 7617, + [7692] = 7605, + [7693] = 912, + [7694] = 7606, + [7695] = 7604, + [7696] = 7606, + [7697] = 7615, + [7698] = 7605, + [7699] = 7617, + [7700] = 7603, + [7701] = 7611, + [7702] = 7615, + [7703] = 7611, + [7704] = 7615, + [7705] = 7617, + [7706] = 7604, + [7707] = 7605, + [7708] = 7606, + [7709] = 918, + [7710] = 7611, + [7711] = 7603, + [7712] = 7617, + [7713] = 7611, + [7714] = 7615, + [7715] = 7617, + [7716] = 7604, [7717] = 7610, [7718] = 7610, - [7719] = 7607, - [7720] = 7601, - [7721] = 7616, - [7722] = 839, - [7723] = 7607, - [7724] = 7601, - [7725] = 7620, - [7726] = 7625, - [7727] = 7607, - [7728] = 7611, - [7729] = 7602, - [7730] = 7620, - [7731] = 7610, - [7732] = 7616, - [7733] = 7620, + [7719] = 7603, + [7720] = 7615, + [7721] = 7611, + [7722] = 7639, + [7723] = 7606, + [7724] = 7611, + [7725] = 7605, + [7726] = 7617, + [7727] = 858, + [7728] = 7610, + [7729] = 7615, + [7730] = 7639, + [7731] = 7617, + [7732] = 7615, + [7733] = 7605, [7734] = 7610, - [7735] = 7616, - [7736] = 866, - [7737] = 869, - [7738] = 7607, - [7739] = 7610, - [7740] = 7601, - [7741] = 7602, - [7742] = 7625, - [7743] = 7610, - [7744] = 7610, - [7745] = 842, - [7746] = 7616, - [7747] = 7625, - [7748] = 7602, - [7749] = 7620, - [7750] = 7616, - [7751] = 7610, - [7752] = 7601, - [7753] = 7607, - [7754] = 7620, - [7755] = 7602, - [7756] = 872, - [7757] = 7607, - [7758] = 7607, - [7759] = 7616, - [7760] = 7616, - [7761] = 7625, - [7762] = 7601, - [7763] = 7602, - [7764] = 7610, - [7765] = 7607, - [7766] = 7616, - [7767] = 7620, - [7768] = 7625, - [7769] = 7616, - [7770] = 7625, - [7771] = 7602, - [7772] = 7611, - [7773] = 7607, - [7774] = 7616, - [7775] = 7625, - [7776] = 7601, - [7777] = 7600, - [7778] = 7610, - [7779] = 7625, - [7780] = 7610, - [7781] = 7620, - [7782] = 7620, - [7783] = 7607, - [7784] = 7625, - [7785] = 7603, - [7786] = 7611, - [7787] = 7602, - [7788] = 7601, - [7789] = 7602, - [7790] = 7607, - [7791] = 7616, - [7792] = 7607, - [7793] = 7601, - [7794] = 7620, - [7795] = 7616, - [7796] = 7616, - [7797] = 7602, - [7798] = 7611, - [7799] = 7601, - [7800] = 7601, - [7801] = 7610, - [7802] = 7607, - [7803] = 7803, - [7804] = 7620, - [7805] = 7616, - [7806] = 7601, - [7807] = 7620, - [7808] = 7610, - [7809] = 7616, - [7810] = 7602, + [7735] = 7617, + [7736] = 7617, + [7737] = 7605, + [7738] = 7610, + [7739] = 7603, + [7740] = 7615, + [7741] = 7615, + [7742] = 7615, + [7743] = 7606, + [7744] = 7615, + [7745] = 7610, + [7746] = 7617, + [7747] = 7611, + [7748] = 7615, + [7749] = 7615, + [7750] = 7617, + [7751] = 7617, + [7752] = 7617, + [7753] = 7617, + [7754] = 7605, + [7755] = 7611, + [7756] = 7615, + [7757] = 7605, + [7758] = 7611, + [7759] = 7610, + [7760] = 7617, + [7761] = 7615, + [7762] = 7611, + [7763] = 7603, + [7764] = 7615, + [7765] = 7611, + [7766] = 7617, + [7767] = 7603, + [7768] = 7617, + [7769] = 7615, + [7770] = 7603, + [7771] = 7603, + [7772] = 7610, + [7773] = 7615, + [7774] = 7606, + [7775] = 7603, + [7776] = 7606, + [7777] = 7617, + [7778] = 7604, + [7779] = 7610, + [7780] = 7605, + [7781] = 7605, + [7782] = 7605, + [7783] = 7606, + [7784] = 7606, + [7785] = 7605, + [7786] = 7606, + [7787] = 7603, + [7788] = 7610, + [7789] = 7606, + [7790] = 7615, + [7791] = 7610, + [7792] = 7605, + [7793] = 7605, + [7794] = 7606, + [7795] = 7611, + [7796] = 7615, + [7797] = 7611, + [7798] = 7617, + [7799] = 7604, + [7800] = 7617, + [7801] = 7603, + [7802] = 7617, + [7803] = 7603, + [7804] = 7611, + [7805] = 7604, + [7806] = 7611, + [7807] = 7617, + [7808] = 7605, + [7809] = 7606, + [7810] = 7615, [7811] = 7604, - [7812] = 7600, - [7813] = 7610, - [7814] = 7601, - [7815] = 7602, - [7816] = 7611, - [7817] = 7601, - [7818] = 7602, - [7819] = 945, - [7820] = 7620, - [7821] = 7610, - [7822] = 7607, - [7823] = 7601, - [7824] = 7602, - [7825] = 837, - [7826] = 7610, - [7827] = 7620, - [7828] = 7600, - [7829] = 7603, - [7830] = 7611, - [7831] = 7620, - [7832] = 7603, - [7833] = 7607, - [7834] = 7601, - [7835] = 7616, - [7836] = 7620, - [7837] = 7603, - [7838] = 7610, + [7812] = 7611, + [7813] = 7615, + [7814] = 7617, + [7815] = 7639, + [7816] = 7603, + [7817] = 7615, + [7818] = 7603, + [7819] = 7617, + [7820] = 7615, + [7821] = 7615, + [7822] = 7605, + [7823] = 7617, + [7824] = 7611, + [7825] = 7615, + [7826] = 7617, + [7827] = 7617, + [7828] = 3724, + [7829] = 7615, + [7830] = 7605, + [7831] = 7615, + [7832] = 7617, + [7833] = 7604, + [7834] = 7605, + [7835] = 7610, + [7836] = 7639, + [7837] = 7611, + [7838] = 7615, [7839] = 7610, - [7840] = 7607, - [7841] = 7841, - [7842] = 7610, - [7843] = 7607, - [7844] = 7844, - [7845] = 7845, - [7846] = 7846, - [7847] = 7847, - [7848] = 7848, - [7849] = 872, - [7850] = 7848, - [7851] = 7845, - [7852] = 7844, - [7853] = 7846, - [7854] = 7854, - [7855] = 7848, - [7856] = 7847, - [7857] = 7845, - [7858] = 7844, - [7859] = 7859, - [7860] = 7847, - [7861] = 7846, - [7862] = 7854, - [7863] = 7859, - [7864] = 7845, - [7865] = 7845, - [7866] = 7866, - [7867] = 7845, - [7868] = 7866, - [7869] = 7859, + [7840] = 3979, + [7841] = 1162, + [7842] = 7482, + [7843] = 884, + [7844] = 3889, + [7845] = 3883, + [7846] = 1159, + [7847] = 3889, + [7848] = 3883, + [7849] = 3975, + [7850] = 3975, + [7851] = 3871, + [7852] = 7852, + [7853] = 5761, + [7854] = 1170, + [7855] = 1159, + [7856] = 7856, + [7857] = 816, + [7858] = 1162, + [7859] = 1168, + [7860] = 1169, + [7861] = 3979, + [7862] = 7862, + [7863] = 1170, + [7864] = 1168, + [7865] = 1169, + [7866] = 3871, + [7867] = 7867, + [7868] = 7868, + [7869] = 7867, [7870] = 7870, - [7871] = 7866, - [7872] = 7866, - [7873] = 7846, - [7874] = 7866, - [7875] = 7870, - [7876] = 7846, - [7877] = 7848, - [7878] = 7847, - [7879] = 7845, - [7880] = 7866, - [7881] = 7859, - [7882] = 7866, - [7883] = 7845, - [7884] = 7844, - [7885] = 7866, - [7886] = 7859, - [7887] = 7847, - [7888] = 7859, - [7889] = 7848, - [7890] = 7844, - [7891] = 7848, - [7892] = 7847, - [7893] = 7844, - [7894] = 7854, - [7895] = 7847, - [7896] = 7866, - [7897] = 7844, - [7898] = 7854, - [7899] = 7844, - [7900] = 7847, - [7901] = 7859, - [7902] = 7845, - [7903] = 7866, - [7904] = 7844, - [7905] = 7846, - [7906] = 7844, - [7907] = 842, - [7908] = 7847, - [7909] = 7846, - [7910] = 7870, - [7911] = 7848, - [7912] = 7845, - [7913] = 7848, - [7914] = 7847, - [7915] = 7844, - [7916] = 7854, - [7917] = 7859, - [7918] = 7846, - [7919] = 7859, - [7920] = 7859, - [7921] = 7846, - [7922] = 7848, - [7923] = 7845, - [7924] = 7866, - [7925] = 7846, - [7926] = 7847, - [7927] = 7859, - [7928] = 7847, - [7929] = 7846, - [7930] = 7859, - [7931] = 7844, - [7932] = 7841, - [7933] = 7866, - [7934] = 7845, - [7935] = 7859, - [7936] = 7844, - [7937] = 7859, - [7938] = 7848, - [7939] = 7848, - [7940] = 7859, - [7941] = 7846, - [7942] = 7848, - [7943] = 7847, - [7944] = 7844, - [7945] = 7844, - [7946] = 7846, - [7947] = 7866, - [7948] = 7848, - [7949] = 7859, - [7950] = 7847, - [7951] = 7845, - [7952] = 7866, - [7953] = 7844, - [7954] = 7845, - [7955] = 7847, - [7956] = 7866, - [7957] = 7866, - [7958] = 7844, - [7959] = 7866, - [7960] = 7866, - [7961] = 7866, - [7962] = 7847, - [7963] = 7844, - [7964] = 7846, - [7965] = 912, - [7966] = 7847, - [7967] = 7846, - [7968] = 7847, - [7969] = 7847, - [7970] = 7844, - [7971] = 7847, - [7972] = 7846, - [7973] = 7848, - [7974] = 7847, - [7975] = 7848, - [7976] = 7866, - [7977] = 4107, - [7978] = 7844, - [7979] = 7866, - [7980] = 7844, - [7981] = 7845, - [7982] = 7847, - [7983] = 7846, - [7984] = 7847, - [7985] = 7847, - [7986] = 7854, - [7987] = 7854, - [7988] = 7844, - [7989] = 7844, - [7990] = 7844, - [7991] = 7846, - [7992] = 7847, - [7993] = 7844, - [7994] = 7847, - [7995] = 7859, - [7996] = 7854, - [7997] = 7848, - [7998] = 7844, - [7999] = 7847, - [8000] = 4126, - [8001] = 7859, - [8002] = 7845, - [8003] = 7870, + [7871] = 7871, + [7872] = 7867, + [7873] = 816, + [7874] = 7870, + [7875] = 7875, + [7876] = 7876, + [7877] = 7877, + [7878] = 7871, + [7879] = 7877, + [7880] = 7871, + [7881] = 7877, + [7882] = 7871, + [7883] = 7877, + [7884] = 7871, + [7885] = 7868, + [7886] = 7886, + [7887] = 819, + [7888] = 3724, + [7889] = 7877, + [7890] = 7867, + [7891] = 825, + [7892] = 7886, + [7893] = 824, + [7894] = 7867, + [7895] = 7886, + [7896] = 7896, + [7897] = 7870, + [7898] = 7868, + [7899] = 7896, + [7900] = 7896, + [7901] = 7868, + [7902] = 7868, + [7903] = 7871, + [7904] = 7867, + [7905] = 7870, + [7906] = 7868, + [7907] = 7907, + [7908] = 7908, + [7909] = 7896, + [7910] = 7896, + [7911] = 7870, + [7912] = 7867, + [7913] = 7867, + [7914] = 7870, + [7915] = 7867, + [7916] = 7908, + [7917] = 7868, + [7918] = 7868, + [7919] = 7908, + [7920] = 7868, + [7921] = 7870, + [7922] = 7896, + [7923] = 7877, + [7924] = 7868, + [7925] = 7871, + [7926] = 7870, + [7927] = 7896, + [7928] = 7896, + [7929] = 7870, + [7930] = 7877, + [7931] = 7867, + [7932] = 7907, + [7933] = 7868, + [7934] = 7896, + [7935] = 7870, + [7936] = 7886, + [7937] = 7896, + [7938] = 7868, + [7939] = 7868, + [7940] = 7867, + [7941] = 7870, + [7942] = 7871, + [7943] = 7943, + [7944] = 7868, + [7945] = 7870, + [7946] = 7896, + [7947] = 7896, + [7948] = 7867, + [7949] = 7868, + [7950] = 7868, + [7951] = 7870, + [7952] = 7867, + [7953] = 7870, + [7954] = 7896, + [7955] = 7867, + [7956] = 7907, + [7957] = 7868, + [7958] = 7870, + [7959] = 7896, + [7960] = 7896, + [7961] = 7868, + [7962] = 7868, + [7963] = 7896, + [7964] = 7896, + [7965] = 7870, + [7966] = 7908, + [7967] = 7870, + [7968] = 7896, + [7969] = 7868, + [7970] = 7896, + [7971] = 7870, + [7972] = 7867, + [7973] = 7868, + [7974] = 7974, + [7975] = 7896, + [7976] = 7870, + [7977] = 7877, + [7978] = 7870, + [7979] = 7907, + [7980] = 7871, + [7981] = 7896, + [7982] = 7908, + [7983] = 7868, + [7984] = 7868, + [7985] = 7985, + [7986] = 7870, + [7987] = 7896, + [7988] = 7867, + [7989] = 7870, + [7990] = 7896, + [7991] = 7907, + [7992] = 7871, + [7993] = 7868, + [7994] = 7886, + [7995] = 7908, + [7996] = 7896, + [7997] = 7877, + [7998] = 7867, + [7999] = 7870, + [8000] = 7907, + [8001] = 7871, + [8002] = 7868, + [8003] = 8003, [8004] = 7870, - [8005] = 7844, - [8006] = 7859, - [8007] = 7854, - [8008] = 7844, - [8009] = 7847, - [8010] = 7848, - [8011] = 7866, - [8012] = 869, - [8013] = 7844, - [8014] = 7845, - [8015] = 7847, - [8016] = 7848, - [8017] = 7859, - [8018] = 7847, - [8019] = 7866, - [8020] = 7866, - [8021] = 7846, - [8022] = 7846, - [8023] = 930, - [8024] = 7848, - [8025] = 7845, - [8026] = 7870, - [8027] = 7844, - [8028] = 7847, - [8029] = 7846, - [8030] = 7859, - [8031] = 7844, - [8032] = 7859, - [8033] = 7848, - [8034] = 7846, - [8035] = 7854, - [8036] = 7848, - [8037] = 7859, - [8038] = 7854, - [8039] = 7847, - [8040] = 7845, - [8041] = 7866, - [8042] = 7846, - [8043] = 7845, - [8044] = 7847, - [8045] = 7854, - [8046] = 7846, - [8047] = 7866, - [8048] = 7845, - [8049] = 7848, - [8050] = 7844, - [8051] = 7859, - [8052] = 7844, - [8053] = 7847, - [8054] = 7859, - [8055] = 7847, - [8056] = 7846, - [8057] = 7848, - [8058] = 7844, - [8059] = 7854, - [8060] = 7859, - [8061] = 7846, - [8062] = 7848, - [8063] = 4144, - [8064] = 7848, - [8065] = 3924, - [8066] = 7844, - [8067] = 7844, - [8068] = 7859, - [8069] = 7854, - [8070] = 7845, - [8071] = 4041, - [8072] = 7848, - [8073] = 7846, - [8074] = 7847, - [8075] = 7848, - [8076] = 7845, - [8077] = 7866, - [8078] = 3947, - [8079] = 7845, - [8080] = 866, - [8081] = 1090, - [8082] = 1090, - [8083] = 1077, - [8084] = 1079, - [8085] = 837, - [8086] = 1099, - [8087] = 4107, - [8088] = 4144, - [8089] = 1103, - [8090] = 4041, - [8091] = 4041, - [8092] = 8092, - [8093] = 8093, - [8094] = 3947, - [8095] = 1099, - [8096] = 7612, - [8097] = 5890, - [8098] = 4107, - [8099] = 4126, - [8100] = 4144, - [8101] = 3947, - [8102] = 1103, - [8103] = 4126, - [8104] = 945, - [8105] = 8105, - [8106] = 1079, - [8107] = 1077, - [8108] = 8108, - [8109] = 8109, - [8110] = 8110, - [8111] = 8111, - [8112] = 8112, - [8113] = 8113, - [8114] = 8114, - [8115] = 8115, - [8116] = 8115, - [8117] = 8110, - [8118] = 8112, - [8119] = 8111, - [8120] = 8113, - [8121] = 8110, - [8122] = 8110, - [8123] = 8113, - [8124] = 8112, - [8125] = 8110, - [8126] = 8126, - [8127] = 8113, - [8128] = 8128, - [8129] = 8112, - [8130] = 8126, - [8131] = 8131, - [8132] = 8112, - [8133] = 8109, - [8134] = 8112, - [8135] = 8128, - [8136] = 8110, - [8137] = 8113, - [8138] = 8112, - [8139] = 8110, - [8140] = 8126, - [8141] = 8113, - [8142] = 8112, - [8143] = 8110, - [8144] = 8109, - [8145] = 8110, - [8146] = 8113, - [8147] = 8113, - [8148] = 8113, - [8149] = 8131, - [8150] = 8112, - [8151] = 8110, - [8152] = 8113, - [8153] = 8112, - [8154] = 8112, - [8155] = 834, - [8156] = 8156, - [8157] = 8111, - [8158] = 8110, - [8159] = 8128, - [8160] = 8112, - [8161] = 832, - [8162] = 8162, - [8163] = 8126, - [8164] = 8110, - [8165] = 8109, - [8166] = 8113, - [8167] = 8126, - [8168] = 8115, - [8169] = 8113, - [8170] = 8112, - [8171] = 8110, - [8172] = 8109, - [8173] = 8112, - [8174] = 8113, - [8175] = 8111, - [8176] = 8110, - [8177] = 8126, - [8178] = 8113, - [8179] = 8115, - [8180] = 8112, - [8181] = 8128, - [8182] = 837, - [8183] = 8110, - [8184] = 8113, - [8185] = 8113, - [8186] = 8115, - [8187] = 8126, - [8188] = 3924, - [8189] = 8112, - [8190] = 8112, - [8191] = 8112, - [8192] = 8128, - [8193] = 8110, - [8194] = 8113, - [8195] = 8113, - [8196] = 8110, - [8197] = 8112, - [8198] = 8198, - [8199] = 8113, - [8200] = 8112, - [8201] = 8110, - [8202] = 8126, - [8203] = 8110, - [8204] = 8113, - [8205] = 8112, - [8206] = 8126, - [8207] = 8112, - [8208] = 8112, - [8209] = 8113, - [8210] = 8111, - [8211] = 8113, - [8212] = 8110, - [8213] = 8110, - [8214] = 8112, - [8215] = 8112, - [8216] = 8109, - [8217] = 8110, - [8218] = 8115, - [8219] = 8113, - [8220] = 8131, - [8221] = 8113, - [8222] = 8110, - [8223] = 8112, - [8224] = 8113, - [8225] = 8128, - [8226] = 8110, - [8227] = 8111, - [8228] = 8110, - [8229] = 841, - [8230] = 8131, - [8231] = 8126, - [8232] = 8126, - [8233] = 8126, - [8234] = 8110, - [8235] = 8126, - [8236] = 8126, - [8237] = 8131, - [8238] = 8111, - [8239] = 8115, - [8240] = 8111, - [8241] = 8115, - [8242] = 8111, - [8243] = 8115, - [8244] = 8111, - [8245] = 8115, - [8246] = 8109, - [8247] = 8126, - [8248] = 8126, - [8249] = 8111, - [8250] = 8250, - [8251] = 8251, - [8252] = 8113, - [8253] = 8126, - [8254] = 8110, - [8255] = 8112, - [8256] = 8113, - [8257] = 8126, - [8258] = 8126, - [8259] = 8259, - [8260] = 8115, - [8261] = 8111, - [8262] = 8126, - [8263] = 8115, - [8264] = 8131, - [8265] = 8126, - [8266] = 8126, - [8267] = 8267, + [8005] = 8005, + [8006] = 7867, + [8007] = 7870, + [8008] = 7877, + [8009] = 7868, + [8010] = 7870, + [8011] = 7867, + [8012] = 7877, + [8013] = 7867, + [8014] = 7868, + [8015] = 7867, + [8016] = 7871, + [8017] = 8017, + [8018] = 7867, + [8019] = 7907, + [8020] = 7870, + [8021] = 7896, + [8022] = 7877, + [8023] = 7886, + [8024] = 7896, + [8025] = 7896, + [8026] = 8026, + [8027] = 8027, + [8028] = 8028, + [8029] = 8029, + [8030] = 8030, + [8031] = 8031, + [8032] = 8029, + [8033] = 8033, + [8034] = 8027, + [8035] = 8035, + [8036] = 8036, + [8037] = 8030, + [8038] = 819, + [8039] = 8039, + [8040] = 816, + [8041] = 8030, + [8042] = 8039, + [8043] = 8030, + [8044] = 8033, + [8045] = 8036, + [8046] = 8026, + [8047] = 8047, + [8048] = 8030, + [8049] = 8026, + [8050] = 8030, + [8051] = 8029, + [8052] = 8029, + [8053] = 8027, + [8054] = 8031, + [8055] = 8031, + [8056] = 8027, + [8057] = 8031, + [8058] = 8029, + [8059] = 8031, + [8060] = 8030, + [8061] = 8036, + [8062] = 8036, + [8063] = 8029, + [8064] = 8031, + [8065] = 8027, + [8066] = 8030, + [8067] = 8031, + [8068] = 8036, + [8069] = 8029, + [8070] = 8031, + [8071] = 8027, + [8072] = 8030, + [8073] = 8027, + [8074] = 8030, + [8075] = 8029, + [8076] = 8027, + [8077] = 8031, + [8078] = 8027, + [8079] = 8027, + [8080] = 8029, + [8081] = 8036, + [8082] = 8030, + [8083] = 8029, + [8084] = 8031, + [8085] = 8030, + [8086] = 8036, + [8087] = 8031, + [8088] = 8029, + [8089] = 8039, + [8090] = 8027, + [8091] = 8027, + [8092] = 8031, + [8093] = 8027, + [8094] = 8029, + [8095] = 8031, + [8096] = 8029, + [8097] = 8036, + [8098] = 8030, + [8099] = 8030, + [8100] = 8027, + [8101] = 8031, + [8102] = 8029, + [8103] = 8103, + [8104] = 8035, + [8105] = 8036, + [8106] = 8030, + [8107] = 8107, + [8108] = 8027, + [8109] = 8033, + [8110] = 8047, + [8111] = 8036, + [8112] = 8029, + [8113] = 8027, + [8114] = 8027, + [8115] = 8031, + [8116] = 8047, + [8117] = 8036, + [8118] = 8029, + [8119] = 8036, + [8120] = 8035, + [8121] = 8036, + [8122] = 8030, + [8123] = 8030, + [8124] = 8031, + [8125] = 825, + [8126] = 8027, + [8127] = 8031, + [8128] = 8031, + [8129] = 8129, + [8130] = 8029, + [8131] = 8035, + [8132] = 8027, + [8133] = 8028, + [8134] = 8027, + [8135] = 8135, + [8136] = 8036, + [8137] = 8030, + [8138] = 825, + [8139] = 8033, + [8140] = 8028, + [8141] = 8029, + [8142] = 8035, + [8143] = 8036, + [8144] = 8144, + [8145] = 8039, + [8146] = 8026, + [8147] = 8047, + [8148] = 8026, + [8149] = 8028, + [8150] = 8036, + [8151] = 8047, + [8152] = 8028, + [8153] = 8036, + [8154] = 8027, + [8155] = 8039, + [8156] = 8026, + [8157] = 8035, + [8158] = 8039, + [8159] = 8039, + [8160] = 8039, + [8161] = 8035, + [8162] = 8047, + [8163] = 8035, + [8164] = 8164, + [8165] = 8026, + [8166] = 8028, + [8167] = 8031, + [8168] = 8039, + [8169] = 8030, + [8170] = 8035, + [8171] = 8029, + [8172] = 8026, + [8173] = 8035, + [8174] = 8039, + [8175] = 8035, + [8176] = 8031, + [8177] = 8026, + [8178] = 8027, + [8179] = 8026, + [8180] = 8039, + [8181] = 8039, + [8182] = 8039, + [8183] = 8035, + [8184] = 8026, + [8185] = 827, + [8186] = 8035, + [8187] = 8047, + [8188] = 8026, + [8189] = 8026, + [8190] = 8028, + [8191] = 8039, + [8192] = 8026, + [8193] = 8026, + [8194] = 8035, + [8195] = 8047, + [8196] = 8039, + [8197] = 8029, + [8198] = 8026, + [8199] = 8027, + [8200] = 8036, + [8201] = 8031, + [8202] = 8027, + [8203] = 8029, + [8204] = 8035, + [8205] = 8035, + [8206] = 8206, + [8207] = 8030, + [8208] = 8036, + [8209] = 8209, + [8210] = 8029, + [8211] = 8036, + [8212] = 8030, + [8213] = 8026, + [8214] = 8039, + [8215] = 8039, + [8216] = 851, + [8217] = 8035, + [8218] = 8026, + [8219] = 8039, + [8220] = 8036, + [8221] = 8035, + [8222] = 8026, + [8223] = 8028, + [8224] = 8039, + [8225] = 8035, + [8226] = 8039, + [8227] = 8030, + [8228] = 8035, + [8229] = 8026, + [8230] = 8026, + [8231] = 8035, + [8232] = 8039, + [8233] = 8026, + [8234] = 8047, + [8235] = 8026, + [8236] = 8029, + [8237] = 8036, + [8238] = 8036, + [8239] = 8030, + [8240] = 8031, + [8241] = 8031, + [8242] = 8036, + [8243] = 8030, + [8244] = 8029, + [8245] = 8039, + [8246] = 8036, + [8247] = 8027, + [8248] = 8039, + [8249] = 8033, + [8250] = 8026, + [8251] = 8035, + [8252] = 8252, + [8253] = 8039, + [8254] = 8035, + [8255] = 8035, + [8256] = 8030, + [8257] = 8031, + [8258] = 8029, + [8259] = 8031, + [8260] = 982, + [8261] = 8035, + [8262] = 8030, + [8263] = 8026, + [8264] = 8031, + [8265] = 8039, + [8266] = 8026, + [8267] = 8027, [8268] = 8268, - [8269] = 8269, - [8270] = 834, - [8271] = 837, - [8272] = 8272, - [8273] = 8269, - [8274] = 8272, - [8275] = 8275, - [8276] = 8268, - [8277] = 8277, - [8278] = 8278, - [8279] = 8279, - [8280] = 8272, - [8281] = 8275, - [8282] = 8278, - [8283] = 8268, - [8284] = 8279, - [8285] = 8277, - [8286] = 8278, - [8287] = 8272, - [8288] = 8275, - [8289] = 8268, - [8290] = 8279, - [8291] = 8277, - [8292] = 8275, - [8293] = 8268, - [8294] = 8277, - [8295] = 8279, - [8296] = 8278, - [8297] = 8279, - [8298] = 8298, - [8299] = 8272, - [8300] = 8275, - [8301] = 8268, - [8302] = 8279, - [8303] = 8277, - [8304] = 8278, - [8305] = 8272, - [8306] = 8279, - [8307] = 8268, - [8308] = 8275, - [8309] = 8309, - [8310] = 8267, - [8311] = 8311, - [8312] = 8309, - [8313] = 8272, - [8314] = 8269, - [8315] = 8269, - [8316] = 8275, - [8317] = 8268, - [8318] = 8309, - [8319] = 8272, - [8320] = 8320, - [8321] = 8278, - [8322] = 8269, - [8323] = 8309, - [8324] = 8269, - [8325] = 8275, - [8326] = 8268, - [8327] = 8277, - [8328] = 8277, - [8329] = 8278, - [8330] = 8320, - [8331] = 8278, - [8332] = 8309, - [8333] = 8272, - [8334] = 8279, - [8335] = 8279, - [8336] = 8269, - [8337] = 8275, - [8338] = 8268, - [8339] = 8298, - [8340] = 8277, - [8341] = 8267, - [8342] = 8278, - [8343] = 8272, - [8344] = 8277, - [8345] = 8277, - [8346] = 8309, - [8347] = 8278, - [8348] = 8272, - [8349] = 8279, - [8350] = 8268, - [8351] = 8275, - [8352] = 8320, - [8353] = 8298, - [8354] = 8272, - [8355] = 8277, - [8356] = 8278, - [8357] = 8272, - [8358] = 8298, - [8359] = 8277, - [8360] = 8267, - [8361] = 8298, - [8362] = 8267, - [8363] = 8267, - [8364] = 8298, - [8365] = 8365, - [8366] = 8320, - [8367] = 8279, - [8368] = 8320, - [8369] = 8267, - [8370] = 8298, - [8371] = 8309, - [8372] = 8320, - [8373] = 8267, - [8374] = 8278, - [8375] = 8320, - [8376] = 8267, - [8377] = 8298, - [8378] = 8269, - [8379] = 8320, - [8380] = 8365, - [8381] = 8267, - [8382] = 8298, - [8383] = 8320, - [8384] = 8298, - [8385] = 8279, - [8386] = 8272, - [8387] = 8268, - [8388] = 8267, - [8389] = 8275, - [8390] = 8267, - [8391] = 8320, - [8392] = 8275, - [8393] = 8298, - [8394] = 8278, - [8395] = 8298, - [8396] = 8320, - [8397] = 8267, - [8398] = 8320, - [8399] = 8268, - [8400] = 8298, - [8401] = 8272, - [8402] = 8267, - [8403] = 8267, - [8404] = 8272, - [8405] = 8267, - [8406] = 8279, - [8407] = 8298, - [8408] = 8277, - [8409] = 8409, - [8410] = 8279, - [8411] = 8278, - [8412] = 8277, - [8413] = 8320, - [8414] = 8279, - [8415] = 8268, - [8416] = 8275, - [8417] = 8272, - [8418] = 8278, - [8419] = 8278, - [8420] = 8277, - [8421] = 8279, - [8422] = 8320, - [8423] = 8268, - [8424] = 8272, - [8425] = 8275, - [8426] = 8275, - [8427] = 8268, - [8428] = 8277, - [8429] = 8267, - [8430] = 8272, - [8431] = 8431, - [8432] = 8278, - [8433] = 8298, - [8434] = 8298, - [8435] = 8277, - [8436] = 8279, - [8437] = 8320, - [8438] = 8268, - [8439] = 8277, - [8440] = 8275, - [8441] = 8272, - [8442] = 868, - [8443] = 8279, - [8444] = 8365, - [8445] = 8278, - [8446] = 8277, - [8447] = 8279, - [8448] = 8267, - [8449] = 8279, - [8450] = 8268, - [8451] = 8275, - [8452] = 8272, - [8453] = 8279, - [8454] = 8278, - [8455] = 8278, - [8456] = 8278, - [8457] = 8277, - [8458] = 8268, - [8459] = 8277, - [8460] = 8268, - [8461] = 8275, - [8462] = 8298, - [8463] = 8279, - [8464] = 8275, - [8465] = 8269, - [8466] = 8279, - [8467] = 8275, - [8468] = 8268, - [8469] = 8277, - [8470] = 8320, - [8471] = 8278, - [8472] = 8278, - [8473] = 8309, + [8269] = 8026, + [8270] = 8031, + [8271] = 8029, + [8272] = 8027, + [8273] = 8039, + [8274] = 8035, + [8275] = 8028, + [8276] = 8029, + [8277] = 8036, + [8278] = 828, + [8279] = 8030, + [8280] = 8035, + [8281] = 8033, + [8282] = 8039, + [8283] = 8036, + [8284] = 8284, + [8285] = 8284, + [8286] = 974, + [8287] = 979, + [8288] = 8284, + [8289] = 8284, + [8290] = 1012, + [8291] = 1004, + [8292] = 938, + [8293] = 884, + [8294] = 8284, + [8295] = 8284, + [8296] = 991, + [8297] = 8284, + [8298] = 8284, + [8299] = 8284, + [8300] = 8284, + [8301] = 8301, + [8302] = 8284, + [8303] = 8284, + [8304] = 8284, + [8305] = 8284, + [8306] = 972, + [8307] = 8284, + [8308] = 8284, + [8309] = 8284, + [8310] = 8284, + [8311] = 8284, + [8312] = 8284, + [8313] = 8284, + [8314] = 884, + [8315] = 8284, + [8316] = 8284, + [8317] = 8284, + [8318] = 973, + [8319] = 8284, + [8320] = 8284, + [8321] = 8284, + [8322] = 820, + [8323] = 833, + [8324] = 860, + [8325] = 824, + [8326] = 822, + [8327] = 814, + [8328] = 815, + [8329] = 818, + [8330] = 833, + [8331] = 821, + [8332] = 860, + [8333] = 823, + [8334] = 849, + [8335] = 844, + [8336] = 8336, + [8337] = 845, + [8338] = 820, + [8339] = 822, + [8340] = 8336, + [8341] = 816, + [8342] = 8336, + [8343] = 8343, + [8344] = 818, + [8345] = 925, + [8346] = 819, + [8347] = 833, + [8348] = 812, + [8349] = 814, + [8350] = 8336, + [8351] = 8336, + [8352] = 8336, + [8353] = 815, + [8354] = 860, + [8355] = 837, + [8356] = 848, + [8357] = 850, + [8358] = 8358, + [8359] = 8358, + [8360] = 7549, + [8361] = 8358, + [8362] = 8358, + [8363] = 8358, + [8364] = 8358, + [8365] = 8358, + [8366] = 8358, + [8367] = 832, + [8368] = 837, + [8369] = 844, + [8370] = 8358, + [8371] = 8358, + [8372] = 8358, + [8373] = 858, + [8374] = 8358, + [8375] = 856, + [8376] = 853, + [8377] = 8358, + [8378] = 8358, + [8379] = 8358, + [8380] = 845, + [8381] = 854, + [8382] = 855, + [8383] = 859, + [8384] = 8358, + [8385] = 849, + [8386] = 8358, + [8387] = 8358, + [8388] = 8388, + [8389] = 835, + [8390] = 8358, + [8391] = 8358, + [8392] = 8358, + [8393] = 857, + [8394] = 925, + [8395] = 8358, + [8396] = 861, + [8397] = 848, + [8398] = 8358, + [8399] = 829, + [8400] = 8400, + [8401] = 8358, + [8402] = 8402, + [8403] = 859, + [8404] = 8404, + [8405] = 864, + [8406] = 3568, + [8407] = 853, + [8408] = 869, + [8409] = 910, + [8410] = 8410, + [8411] = 8411, + [8412] = 997, + [8413] = 896, + [8414] = 8410, + [8415] = 7549, + [8416] = 924, + [8417] = 894, + [8418] = 975, + [8419] = 8410, + [8420] = 855, + [8421] = 920, + [8422] = 929, + [8423] = 8404, + [8424] = 8404, + [8425] = 994, + [8426] = 905, + [8427] = 891, + [8428] = 919, + [8429] = 829, + [8430] = 8404, + [8431] = 885, + [8432] = 934, + [8433] = 832, + [8434] = 8410, + [8435] = 908, + [8436] = 898, + [8437] = 857, + [8438] = 911, + [8439] = 927, + [8440] = 907, + [8441] = 8441, + [8442] = 8410, + [8443] = 915, + [8444] = 8404, + [8445] = 886, + [8446] = 8410, + [8447] = 909, + [8448] = 835, + [8449] = 850, + [8450] = 903, + [8451] = 871, + [8452] = 884, + [8453] = 899, + [8454] = 8404, + [8455] = 952, + [8456] = 942, + [8457] = 868, + [8458] = 8458, + [8459] = 8459, + [8460] = 8460, + [8461] = 8459, + [8462] = 8462, + [8463] = 8462, + [8464] = 8458, + [8465] = 8460, + [8466] = 8459, + [8467] = 8458, + [8468] = 8462, + [8469] = 1169, + [8470] = 1168, + [8471] = 8471, + [8472] = 8462, + [8473] = 1162, [8474] = 8474, - [8475] = 8272, - [8476] = 8298, - [8477] = 8272, - [8478] = 841, - [8479] = 8479, - [8480] = 8277, - [8481] = 8272, - [8482] = 8278, - [8483] = 8365, - [8484] = 8267, - [8485] = 8277, - [8486] = 8268, - [8487] = 8275, - [8488] = 8488, - [8489] = 8275, - [8490] = 8320, - [8491] = 8268, - [8492] = 8279, - [8493] = 844, - [8494] = 8277, - [8495] = 8278, - [8496] = 8365, - [8497] = 8268, - [8498] = 841, - [8499] = 8277, - [8500] = 8275, - [8501] = 8320, - [8502] = 8275, - [8503] = 8279, - [8504] = 8298, - [8505] = 8267, - [8506] = 8267, - [8507] = 8309, - [8508] = 8508, - [8509] = 8278, - [8510] = 8510, - [8511] = 8267, - [8512] = 8512, - [8513] = 8320, - [8514] = 8298, - [8515] = 8268, - [8516] = 8279, - [8517] = 8272, - [8518] = 8275, - [8519] = 8272, - [8520] = 8278, - [8521] = 8320, - [8522] = 8267, - [8523] = 8277, - [8524] = 8275, - [8525] = 8268, - [8526] = 8268, - [8527] = 8275, - [8528] = 8298, - [8529] = 8320, - [8530] = 8320, - [8531] = 8320, - [8532] = 8365, - [8533] = 971, - [8534] = 8320, - [8535] = 8298, - [8536] = 8267, - [8537] = 8298, - [8538] = 8538, - [8539] = 865, - [8540] = 8298, - [8541] = 8267, - [8542] = 8320, - [8543] = 8298, - [8544] = 8267, - [8545] = 8272, - [8546] = 8279, - [8547] = 8298, - [8548] = 8320, - [8549] = 8320, - [8550] = 8267, - [8551] = 8298, - [8552] = 8552, - [8553] = 8552, - [8554] = 8552, - [8555] = 945, - [8556] = 8552, - [8557] = 8552, - [8558] = 8552, - [8559] = 1009, - [8560] = 8552, - [8561] = 8561, - [8562] = 8552, - [8563] = 8552, - [8564] = 8552, - [8565] = 8552, - [8566] = 8552, - [8567] = 8552, - [8568] = 8552, - [8569] = 8552, - [8570] = 8552, - [8571] = 1006, - [8572] = 8552, - [8573] = 1027, - [8574] = 1007, - [8575] = 8552, - [8576] = 8552, - [8577] = 8552, - [8578] = 8552, - [8579] = 8552, - [8580] = 8552, - [8581] = 950, - [8582] = 8552, - [8583] = 974, - [8584] = 1025, - [8585] = 8552, - [8586] = 1013, - [8587] = 945, - [8588] = 8552, - [8589] = 8552, - [8590] = 874, - [8591] = 832, - [8592] = 838, - [8593] = 833, - [8594] = 839, - [8595] = 861, - [8596] = 861, - [8597] = 874, - [8598] = 829, - [8599] = 835, - [8600] = 830, - [8601] = 828, - [8602] = 8602, - [8603] = 858, - [8604] = 857, - [8605] = 8602, - [8606] = 854, - [8607] = 892, - [8608] = 861, - [8609] = 8602, - [8610] = 837, - [8611] = 833, - [8612] = 855, - [8613] = 874, - [8614] = 835, - [8615] = 8602, - [8616] = 838, - [8617] = 840, - [8618] = 828, - [8619] = 834, - [8620] = 830, - [8621] = 8621, - [8622] = 8602, - [8623] = 859, - [8624] = 8602, - [8625] = 851, - [8626] = 8626, - [8627] = 8627, - [8628] = 842, - [8629] = 870, - [8630] = 872, - [8631] = 845, - [8632] = 8626, - [8633] = 858, - [8634] = 8626, - [8635] = 8626, - [8636] = 8626, - [8637] = 8626, - [8638] = 8626, - [8639] = 8626, - [8640] = 8626, - [8641] = 7841, - [8642] = 8626, - [8643] = 857, - [8644] = 8626, - [8645] = 879, - [8646] = 8626, - [8647] = 855, - [8648] = 852, - [8649] = 853, - [8650] = 8626, - [8651] = 854, - [8652] = 8626, - [8653] = 8626, - [8654] = 892, - [8655] = 859, - [8656] = 8626, - [8657] = 8626, - [8658] = 849, - [8659] = 850, - [8660] = 8626, - [8661] = 8661, - [8662] = 8626, - [8663] = 847, - [8664] = 8626, - [8665] = 869, - [8666] = 8626, - [8667] = 8626, - [8668] = 8626, - [8669] = 8626, - [8670] = 856, - [8671] = 866, - [8672] = 887, - [8673] = 879, - [8674] = 923, - [8675] = 982, - [8676] = 8676, - [8677] = 900, - [8678] = 908, - [8679] = 977, - [8680] = 934, - [8681] = 889, - [8682] = 8682, - [8683] = 3472, - [8684] = 929, - [8685] = 897, - [8686] = 884, - [8687] = 845, - [8688] = 8688, - [8689] = 899, - [8690] = 906, - [8691] = 973, - [8692] = 851, - [8693] = 947, - [8694] = 907, - [8695] = 928, - [8696] = 898, - [8697] = 905, - [8698] = 901, + [8475] = 8460, + [8476] = 8459, + [8477] = 8458, + [8478] = 1159, + [8479] = 1170, + [8480] = 8460, + [8481] = 8458, + [8482] = 8460, + [8483] = 8462, + [8484] = 8484, + [8485] = 8462, + [8486] = 1000, + [8487] = 8460, + [8488] = 8459, + [8489] = 8458, + [8490] = 8458, + [8491] = 8459, + [8492] = 8460, + [8493] = 8462, + [8494] = 8462, + [8495] = 8460, + [8496] = 8459, + [8497] = 999, + [8498] = 931, + [8499] = 8459, + [8500] = 8458, + [8501] = 8458, + [8502] = 8459, + [8503] = 8503, + [8504] = 8460, + [8505] = 8462, + [8506] = 8462, + [8507] = 997, + [8508] = 8462, + [8509] = 8458, + [8510] = 8484, + [8511] = 8460, + [8512] = 8460, + [8513] = 8459, + [8514] = 8460, + [8515] = 8458, + [8516] = 8516, + [8517] = 8517, + [8518] = 8459, + [8519] = 927, + [8520] = 8458, + [8521] = 8462, + [8522] = 8459, + [8523] = 8460, + [8524] = 8459, + [8525] = 1030, + [8526] = 8458, + [8527] = 8458, + [8528] = 8460, + [8529] = 894, + [8530] = 8462, + [8531] = 8459, + [8532] = 8458, + [8533] = 864, + [8534] = 934, + [8535] = 8458, + [8536] = 911, + [8537] = 8459, + [8538] = 8460, + [8539] = 8459, + [8540] = 8462, + [8541] = 8462, + [8542] = 8484, + [8543] = 8460, + [8544] = 8459, + [8545] = 8458, + [8546] = 8462, + [8547] = 8460, + [8548] = 921, + [8549] = 885, + [8550] = 868, + [8551] = 825, + [8552] = 8484, + [8553] = 994, + [8554] = 8458, + [8555] = 8555, + [8556] = 8459, + [8557] = 8462, + [8558] = 8462, + [8559] = 924, + [8560] = 8460, + [8561] = 8459, + [8562] = 871, + [8563] = 936, + [8564] = 866, + [8565] = 8460, + [8566] = 8462, + [8567] = 942, + [8568] = 8460, + [8569] = 8459, + [8570] = 8458, + [8571] = 1161, + [8572] = 909, + [8573] = 8460, + [8574] = 8471, + [8575] = 8459, + [8576] = 8462, + [8577] = 8458, + [8578] = 8462, + [8579] = 8460, + [8580] = 952, + [8581] = 8459, + [8582] = 8458, + [8583] = 8471, + [8584] = 8471, + [8585] = 896, + [8586] = 8458, + [8587] = 975, + [8588] = 985, + [8589] = 8462, + [8590] = 898, + [8591] = 915, + [8592] = 8460, + [8593] = 8460, + [8594] = 8459, + [8595] = 8458, + [8596] = 899, + [8597] = 8471, + [8598] = 8458, + [8599] = 8462, + [8600] = 8462, + [8601] = 8460, + [8602] = 8459, + [8603] = 8458, + [8604] = 910, + [8605] = 886, + [8606] = 8459, + [8607] = 944, + [8608] = 941, + [8609] = 8609, + [8610] = 8484, + [8611] = 8471, + [8612] = 8460, + [8613] = 8462, + [8614] = 8460, + [8615] = 891, + [8616] = 8462, + [8617] = 867, + [8618] = 8484, + [8619] = 920, + [8620] = 869, + [8621] = 8458, + [8622] = 919, + [8623] = 905, + [8624] = 903, + [8625] = 929, + [8626] = 1001, + [8627] = 8458, + [8628] = 8462, + [8629] = 907, + [8630] = 8459, + [8631] = 8459, + [8632] = 908, + [8633] = 8633, + [8634] = 8634, + [8635] = 8635, + [8636] = 8636, + [8637] = 1001, + [8638] = 8634, + [8639] = 8635, + [8640] = 8635, + [8641] = 8634, + [8642] = 8636, + [8643] = 1030, + [8644] = 8634, + [8645] = 8636, + [8646] = 8635, + [8647] = 8635, + [8648] = 8634, + [8649] = 8633, + [8650] = 8650, + [8651] = 8633, + [8652] = 931, + [8653] = 947, + [8654] = 8654, + [8655] = 945, + [8656] = 946, + [8657] = 8633, + [8658] = 8636, + [8659] = 8633, + [8660] = 8634, + [8661] = 8635, + [8662] = 8636, + [8663] = 8663, + [8664] = 8664, + [8665] = 8636, + [8666] = 8633, + [8667] = 8635, + [8668] = 8634, + [8669] = 8635, + [8670] = 8636, + [8671] = 8635, + [8672] = 8636, + [8673] = 8673, + [8674] = 939, + [8675] = 8633, + [8676] = 8634, + [8677] = 8634, + [8678] = 1161, + [8679] = 8633, + [8680] = 8633, + [8681] = 8634, + [8682] = 8635, + [8683] = 8636, + [8684] = 8633, + [8685] = 8633, + [8686] = 8634, + [8687] = 8687, + [8688] = 8635, + [8689] = 8636, + [8690] = 8634, + [8691] = 8634, + [8692] = 8635, + [8693] = 8636, + [8694] = 8635, + [8695] = 8695, + [8696] = 8696, + [8697] = 8636, + [8698] = 999, [8699] = 8699, - [8700] = 910, - [8701] = 8699, - [8702] = 926, - [8703] = 881, - [8704] = 911, - [8705] = 8676, - [8706] = 7841, - [8707] = 8676, - [8708] = 990, - [8709] = 8676, - [8710] = 1010, - [8711] = 8699, - [8712] = 847, - [8713] = 933, - [8714] = 870, - [8715] = 996, - [8716] = 8676, - [8717] = 852, - [8718] = 8699, - [8719] = 972, - [8720] = 904, - [8721] = 902, - [8722] = 8722, - [8723] = 8699, - [8724] = 903, - [8725] = 849, - [8726] = 853, - [8727] = 856, - [8728] = 979, - [8729] = 850, - [8730] = 8676, - [8731] = 8699, - [8732] = 945, - [8733] = 8733, - [8734] = 8734, - [8735] = 8733, - [8736] = 8736, - [8737] = 901, - [8738] = 8738, - [8739] = 947, - [8740] = 8740, - [8741] = 8733, - [8742] = 8734, - [8743] = 8733, - [8744] = 8734, - [8745] = 881, - [8746] = 973, - [8747] = 934, - [8748] = 897, - [8749] = 8740, - [8750] = 900, - [8751] = 889, - [8752] = 8733, - [8753] = 907, - [8754] = 8734, - [8755] = 8740, - [8756] = 926, - [8757] = 8734, - [8758] = 8734, - [8759] = 911, - [8760] = 8734, - [8761] = 8740, - [8762] = 8762, - [8763] = 933, - [8764] = 8738, - [8765] = 1019, - [8766] = 8736, - [8767] = 1012, - [8768] = 928, - [8769] = 887, - [8770] = 8733, - [8771] = 8738, - [8772] = 1032, - [8773] = 8738, - [8774] = 1033, - [8775] = 981, - [8776] = 884, - [8777] = 8738, - [8778] = 8738, - [8779] = 8740, - [8780] = 8738, - [8781] = 8781, - [8782] = 8733, - [8783] = 8734, - [8784] = 8740, - [8785] = 8740, - [8786] = 8786, - [8787] = 8734, - [8788] = 8788, - [8789] = 982, - [8790] = 8733, - [8791] = 8734, - [8792] = 902, - [8793] = 8733, - [8794] = 8734, - [8795] = 8740, - [8796] = 1077, - [8797] = 1079, - [8798] = 1090, - [8799] = 8733, - [8800] = 951, - [8801] = 1099, - [8802] = 8740, - [8803] = 888, - [8804] = 8738, - [8805] = 8738, - [8806] = 8740, - [8807] = 8738, - [8808] = 8736, - [8809] = 8733, - [8810] = 8733, - [8811] = 8734, - [8812] = 8733, - [8813] = 8733, - [8814] = 8738, - [8815] = 903, - [8816] = 8734, - [8817] = 8817, - [8818] = 8733, - [8819] = 8734, - [8820] = 8740, - [8821] = 906, - [8822] = 8738, - [8823] = 8740, - [8824] = 997, - [8825] = 8738, - [8826] = 8738, - [8827] = 8827, - [8828] = 8738, - [8829] = 923, - [8830] = 8733, - [8831] = 8734, - [8832] = 8740, - [8833] = 8740, - [8834] = 8738, - [8835] = 8734, - [8836] = 8738, - [8837] = 899, - [8838] = 890, - [8839] = 8733, - [8840] = 8733, - [8841] = 8733, - [8842] = 8734, - [8843] = 905, - [8844] = 8734, - [8845] = 8740, - [8846] = 8740, - [8847] = 8740, - [8848] = 841, - [8849] = 8736, - [8850] = 8827, - [8851] = 8738, - [8852] = 1120, - [8853] = 8734, - [8854] = 8740, - [8855] = 8738, - [8856] = 8738, - [8857] = 8736, - [8858] = 898, - [8859] = 8740, - [8860] = 990, - [8861] = 8734, - [8862] = 8734, - [8863] = 8733, - [8864] = 977, - [8865] = 8734, - [8866] = 8734, - [8867] = 8740, - [8868] = 8733, - [8869] = 8733, - [8870] = 8740, - [8871] = 8740, - [8872] = 8872, - [8873] = 8733, - [8874] = 8734, - [8875] = 8738, - [8876] = 8740, - [8877] = 8738, - [8878] = 8738, - [8879] = 1177, - [8880] = 8734, - [8881] = 8738, - [8882] = 964, - [8883] = 8733, - [8884] = 910, - [8885] = 908, - [8886] = 8734, - [8887] = 8740, - [8888] = 8827, - [8889] = 8738, - [8890] = 1010, - [8891] = 979, - [8892] = 8738, - [8893] = 8827, - [8894] = 8740, - [8895] = 8734, - [8896] = 8827, - [8897] = 972, - [8898] = 8733, - [8899] = 894, - [8900] = 1103, - [8901] = 8740, - [8902] = 8738, - [8903] = 8733, - [8904] = 996, - [8905] = 8736, - [8906] = 8827, - [8907] = 8733, - [8908] = 929, - [8909] = 8740, - [8910] = 904, - [8911] = 8911, - [8912] = 1002, - [8913] = 984, - [8914] = 8914, - [8915] = 8911, - [8916] = 1120, - [8917] = 1005, - [8918] = 8918, - [8919] = 1004, - [8920] = 8911, - [8921] = 8921, - [8922] = 8921, - [8923] = 8923, - [8924] = 8911, - [8925] = 8921, - [8926] = 8918, - [8927] = 8914, - [8928] = 8921, - [8929] = 8918, - [8930] = 8914, - [8931] = 8918, - [8932] = 8911, - [8933] = 8911, - [8934] = 8914, - [8935] = 1035, - [8936] = 8914, - [8937] = 8918, - [8938] = 8918, - [8939] = 8911, - [8940] = 8914, - [8941] = 1210, - [8942] = 8921, - [8943] = 8943, - [8944] = 8944, - [8945] = 8921, - [8946] = 8918, - [8947] = 8921, - [8948] = 8948, - [8949] = 1020, - [8950] = 8921, - [8951] = 829, - [8952] = 8911, - [8953] = 8953, - [8954] = 975, - [8955] = 8914, - [8956] = 8918, - [8957] = 894, - [8958] = 8921, - [8959] = 8914, - [8960] = 1177, - [8961] = 8921, - [8962] = 8918, - [8963] = 8963, - [8964] = 8911, - [8965] = 8918, - [8966] = 8921, - [8967] = 8911, - [8968] = 1024, - [8969] = 8914, - [8970] = 8918, - [8971] = 8914, - [8972] = 8911, - [8973] = 8921, - [8974] = 8921, - [8975] = 8921, - [8976] = 8976, - [8977] = 981, - [8978] = 8914, - [8979] = 8918, - [8980] = 8914, - [8981] = 8911, - [8982] = 8914, - [8983] = 1021, - [8984] = 8921, - [8985] = 8921, - [8986] = 8918, - [8987] = 8918, - [8988] = 8911, - [8989] = 8921, - [8990] = 8914, - [8991] = 8921, - [8992] = 1017, - [8993] = 8993, - [8994] = 8911, - [8995] = 8918, - [8996] = 8918, - [8997] = 8918, - [8998] = 8914, - [8999] = 8914, - [9000] = 8911, - [9001] = 8918, - [9002] = 953, - [9003] = 8921, - [9004] = 8914, - [9005] = 8918, - [9006] = 1012, - [9007] = 952, - [9008] = 8911, - [9009] = 998, - [9010] = 8921, - [9011] = 1019, - [9012] = 8911, - [9013] = 9013, - [9014] = 959, - [9015] = 9015, - [9016] = 8914, - [9017] = 1131, - [9018] = 8914, - [9019] = 8918, - [9020] = 8911, - [9021] = 8918, - [9022] = 8914, - [9023] = 8921, - [9024] = 8918, - [9025] = 8911, - [9026] = 9026, - [9027] = 8921, - [9028] = 1038, - [9029] = 8914, - [9030] = 8911, - [9031] = 1036, - [9032] = 3924, - [9033] = 8921, - [9034] = 8911, - [9035] = 8914, - [9036] = 960, - [9037] = 9037, - [9038] = 8921, - [9039] = 976, - [9040] = 8918, - [9041] = 8911, - [9042] = 8918, - [9043] = 997, - [9044] = 8914, - [9045] = 962, - [9046] = 1034, - [9047] = 8918, - [9048] = 8911, - [9049] = 8911, - [9050] = 958, - [9051] = 8914, - [9052] = 8914, - [9053] = 1028, - [9054] = 8914, - [9055] = 8918, - [9056] = 9056, - [9057] = 8921, - [9058] = 890, - [9059] = 985, - [9060] = 1018, - [9061] = 8921, - [9062] = 1014, - [9063] = 839, - [9064] = 8911, - [9065] = 8918, - [9066] = 1033, - [9067] = 1026, - [9068] = 951, - [9069] = 1032, + [8700] = 932, + [8701] = 1000, + [8702] = 8702, + [8703] = 8633, + [8704] = 8633, + [8705] = 1055, + [8706] = 8636, + [8707] = 8635, + [8708] = 8634, + [8709] = 8634, + [8710] = 8633, + [8711] = 8636, + [8712] = 8634, + [8713] = 983, + [8714] = 8633, + [8715] = 943, + [8716] = 8635, + [8717] = 944, + [8718] = 8636, + [8719] = 969, + [8720] = 8635, + [8721] = 8634, + [8722] = 987, + [8723] = 941, + [8724] = 8633, + [8725] = 867, + [8726] = 8633, + [8727] = 8727, + [8728] = 8634, + [8729] = 8635, + [8730] = 8730, + [8731] = 8636, + [8732] = 928, + [8733] = 936, + [8734] = 8633, + [8735] = 8735, + [8736] = 937, + [8737] = 1042, + [8738] = 930, + [8739] = 8636, + [8740] = 8635, + [8741] = 8634, + [8742] = 8634, + [8743] = 3724, + [8744] = 8634, + [8745] = 8635, + [8746] = 8633, + [8747] = 960, + [8748] = 971, + [8749] = 966, + [8750] = 956, + [8751] = 8751, + [8752] = 8636, + [8753] = 8636, + [8754] = 8635, + [8755] = 8634, + [8756] = 8633, + [8757] = 8633, + [8758] = 921, + [8759] = 8635, + [8760] = 8636, + [8761] = 823, + [8762] = 8636, + [8763] = 955, + [8764] = 8635, + [8765] = 8634, + [8766] = 933, + [8767] = 935, + [8768] = 8633, + [8769] = 8633, + [8770] = 8770, + [8771] = 8634, + [8772] = 8635, + [8773] = 8635, + [8774] = 8636, + [8775] = 8775, + [8776] = 963, + [8777] = 8636, + [8778] = 990, + [8779] = 8633, + [8780] = 821, + [8781] = 8634, + [8782] = 8635, + [8783] = 993, + [8784] = 8633, + [8785] = 8636, + [8786] = 8636, + [8787] = 8633, + [8788] = 8635, + [8789] = 8633, + [8790] = 8634, + [8791] = 8635, + [8792] = 8634, + [8793] = 8636, + [8794] = 8636, + [8795] = 935, + [8796] = 8796, + [8797] = 8797, + [8798] = 8798, + [8799] = 8799, + [8800] = 8800, + [8801] = 8801, + [8802] = 8802, + [8803] = 8803, + [8804] = 3724, + [8805] = 8805, + [8806] = 8806, + [8807] = 8807, + [8808] = 8808, + [8809] = 8809, + [8810] = 8810, + [8811] = 8798, + [8812] = 8812, + [8813] = 8813, + [8814] = 8799, + [8815] = 8802, + [8816] = 8803, + [8817] = 8808, + [8818] = 8809, + [8819] = 8800, + [8820] = 8820, + [8821] = 8813, + [8822] = 8806, + [8823] = 8823, + [8824] = 8824, + [8825] = 851, + [8826] = 8826, + [8827] = 8796, + [8828] = 8801, + [8829] = 8805, + [8830] = 8826, + [8831] = 1058, + [8832] = 1051, + [8833] = 8833, + [8834] = 8834, + [8835] = 8834, + [8836] = 8833, + [8837] = 8837, + [8838] = 8838, + [8839] = 8837, + [8840] = 8809, + [8841] = 8841, + [8842] = 8838, + [8843] = 8813, + [8844] = 8841, + [8845] = 8845, + [8846] = 8846, + [8847] = 8847, + [8848] = 8808, + [8849] = 8849, + [8850] = 8846, + [8851] = 8833, + [8852] = 8852, + [8853] = 8849, + [8854] = 8852, + [8855] = 8855, + [8856] = 8855, + [8857] = 8806, + [8858] = 8858, + [8859] = 8809, + [8860] = 8801, + [8861] = 8803, + [8862] = 8802, + [8863] = 8863, + [8864] = 8800, + [8865] = 8799, + [8866] = 8797, + [8867] = 1034, + [8868] = 1028, + [8869] = 8838, + [8870] = 8870, + [8871] = 8833, + [8872] = 8809, + [8873] = 8797, + [8874] = 8833, + [8875] = 8809, + [8876] = 8797, + [8877] = 937, + [8878] = 8833, + [8879] = 8870, + [8880] = 960, + [8881] = 8805, + [8882] = 8882, + [8883] = 8883, + [8884] = 966, + [8885] = 8809, + [8886] = 8886, + [8887] = 963, + [8888] = 8799, + [8889] = 8800, + [8890] = 8886, + [8891] = 8886, + [8892] = 8797, + [8893] = 990, + [8894] = 8894, + [8895] = 993, + [8896] = 8802, + [8897] = 971, + [8898] = 8803, + [8899] = 956, + [8900] = 8900, + [8901] = 904, + [8902] = 8902, + [8903] = 947, + [8904] = 943, + [8905] = 8805, + [8906] = 8826, + [8907] = 8808, + [8908] = 8796, + [8909] = 8798, + [8910] = 8886, + [8911] = 8799, + [8912] = 8800, + [8913] = 8802, + [8914] = 8803, + [8915] = 833, + [8916] = 8808, + [8917] = 8809, + [8918] = 8833, + [8919] = 8833, + [8920] = 955, + [8921] = 860, + [8922] = 839, + [8923] = 8826, + [8924] = 8813, + [8925] = 930, + [8926] = 8926, + [8927] = 8797, + [8928] = 8928, + [8929] = 8806, + [8930] = 8813, + [8931] = 8855, + [8932] = 8932, + [8933] = 8796, + [8934] = 8934, + [8935] = 8834, + [8936] = 8855, + [8937] = 8870, + [8938] = 8852, + [8939] = 928, + [8940] = 8796, + [8941] = 969, + [8942] = 8801, + [8943] = 8809, + [8944] = 8855, + [8945] = 8852, + [8946] = 8796, + [8947] = 8947, + [8948] = 8826, + [8949] = 8805, + [8950] = 8886, + [8951] = 992, + [8952] = 8855, + [8953] = 8837, + [8954] = 8855, + [8955] = 8852, + [8956] = 8849, + [8957] = 8852, + [8958] = 8796, + [8959] = 8959, + [8960] = 8960, + [8961] = 8961, + [8962] = 8838, + [8963] = 8826, + [8964] = 8846, + [8965] = 8855, + [8966] = 8852, + [8967] = 8806, + [8968] = 8826, + [8969] = 8796, + [8970] = 8801, + [8971] = 8796, + [8972] = 8972, + [8973] = 8833, + [8974] = 8826, + [8975] = 8841, + [8976] = 8841, + [8977] = 8796, + [8978] = 8978, + [8979] = 8837, + [8980] = 8855, + [8981] = 8834, + [8982] = 8852, + [8983] = 8796, + [8984] = 8834, + [8985] = 8985, + [8986] = 981, + [8987] = 8837, + [8988] = 8838, + [8989] = 8841, + [8990] = 8855, + [8991] = 8852, + [8992] = 8796, + [8993] = 8846, + [8994] = 8826, + [8995] = 8849, + [8996] = 8852, + [8997] = 8855, + [8998] = 8826, + [8999] = 8796, + [9000] = 987, + [9001] = 8855, + [9002] = 8870, + [9003] = 8852, + [9004] = 8796, + [9005] = 8826, + [9006] = 8826, + [9007] = 933, + [9008] = 8834, + [9009] = 9009, + [9010] = 8855, + [9011] = 9011, + [9012] = 8852, + [9013] = 8796, + [9014] = 8826, + [9015] = 8855, + [9016] = 827, + [9017] = 983, + [9018] = 8826, + [9019] = 830, + [9020] = 8837, + [9021] = 8846, + [9022] = 9022, + [9023] = 8870, + [9024] = 8855, + [9025] = 8852, + [9026] = 8838, + [9027] = 8796, + [9028] = 8826, + [9029] = 8886, + [9030] = 9030, + [9031] = 914, + [9032] = 8852, + [9033] = 8838, + [9034] = 8849, + [9035] = 8796, + [9036] = 8852, + [9037] = 8798, + [9038] = 8799, + [9039] = 8800, + [9040] = 8841, + [9041] = 8855, + [9042] = 8846, + [9043] = 8802, + [9044] = 8803, + [9045] = 8826, + [9046] = 8849, + [9047] = 8852, + [9048] = 8808, + [9049] = 8855, + [9050] = 932, + [9051] = 946, + [9052] = 945, + [9053] = 8870, + [9054] = 8838, + [9055] = 8855, + [9056] = 8852, + [9057] = 8846, + [9058] = 8805, + [9059] = 8838, + [9060] = 8834, + [9061] = 8796, + [9062] = 8826, + [9063] = 8805, + [9064] = 939, + [9065] = 8870, + [9066] = 8855, + [9067] = 8870, + [9068] = 8852, + [9069] = 9069, [9070] = 9070, - [9071] = 8911, - [9072] = 8914, - [9073] = 8911, - [9074] = 1011, - [9075] = 9075, - [9076] = 9076, - [9077] = 8921, - [9078] = 9078, - [9079] = 9079, - [9080] = 9079, - [9081] = 9081, - [9082] = 9082, - [9083] = 9083, - [9084] = 9084, - [9085] = 9085, - [9086] = 958, - [9087] = 1018, + [9071] = 8838, + [9072] = 8834, + [9073] = 9073, + [9074] = 8796, + [9075] = 8826, + [9076] = 8805, + [9077] = 8852, + [9078] = 8870, + [9079] = 8855, + [9080] = 8801, + [9081] = 8846, + [9082] = 8813, + [9083] = 8841, + [9084] = 8838, + [9085] = 8837, + [9086] = 8834, + [9087] = 8846, [9088] = 9088, - [9089] = 1028, - [9090] = 9082, - [9091] = 9091, - [9092] = 1170, + [9089] = 8796, + [9090] = 9090, + [9091] = 8826, + [9092] = 8806, [9093] = 9093, - [9094] = 1171, - [9095] = 9085, - [9096] = 9088, + [9094] = 8805, + [9095] = 8801, + [9096] = 8806, [9097] = 9097, - [9098] = 9083, + [9098] = 1017, [9099] = 9099, [9100] = 9100, - [9101] = 9101, + [9101] = 1052, [9102] = 9102, - [9103] = 9103, - [9104] = 9104, - [9105] = 9105, - [9106] = 9106, + [9103] = 9099, + [9104] = 9100, + [9105] = 9099, + [9106] = 9100, [9107] = 9107, [9108] = 9108, - [9109] = 9082, - [9110] = 9110, + [9109] = 9107, + [9110] = 1160, [9111] = 9111, - [9112] = 1020, - [9113] = 9097, - [9114] = 9088, - [9115] = 9115, - [9116] = 1005, - [9117] = 9099, - [9118] = 9110, - [9119] = 9104, - [9120] = 9120, - [9121] = 9101, + [9112] = 9112, + [9113] = 1133, + [9114] = 9114, + [9115] = 1165, + [9116] = 9097, + [9117] = 9107, + [9118] = 9118, + [9119] = 1063, + [9120] = 3889, + [9121] = 3979, [9122] = 9122, - [9123] = 9091, - [9124] = 9085, + [9123] = 1062, + [9124] = 3975, [9125] = 9125, - [9126] = 9126, + [9126] = 3871, [9127] = 9127, [9128] = 9128, - [9129] = 9078, - [9130] = 9097, - [9131] = 9131, - [9132] = 9103, - [9133] = 9079, - [9134] = 9115, - [9135] = 9093, - [9136] = 1026, - [9137] = 9137, - [9138] = 9099, - [9139] = 9102, - [9140] = 9103, - [9141] = 9093, - [9142] = 1036, - [9143] = 9143, - [9144] = 9078, - [9145] = 9079, - [9146] = 9083, - [9147] = 9104, - [9148] = 9148, - [9149] = 9101, - [9150] = 9097, - [9151] = 9151, - [9152] = 9088, + [9129] = 9129, + [9130] = 3883, + [9131] = 1136, + [9132] = 1170, + [9133] = 1055, + [9134] = 904, + [9135] = 1081, + [9136] = 1061, + [9137] = 9107, + [9138] = 9129, + [9139] = 9139, + [9140] = 9118, + [9141] = 9097, + [9142] = 9128, + [9143] = 9122, + [9144] = 1174, + [9145] = 9129, + [9146] = 1135, + [9147] = 1140, + [9148] = 9102, + [9149] = 1082, + [9150] = 1163, + [9151] = 1169, + [9152] = 1132, [9153] = 9127, - [9154] = 9101, - [9155] = 9083, - [9156] = 9104, - [9157] = 9131, - [9158] = 9158, - [9159] = 1034, - [9160] = 9160, - [9161] = 9161, - [9162] = 975, - [9163] = 9078, - [9164] = 9137, - [9165] = 9165, - [9166] = 9081, - [9167] = 9110, - [9168] = 9079, - [9169] = 9093, - [9170] = 9102, - [9171] = 9110, - [9172] = 9172, - [9173] = 9093, - [9174] = 9082, - [9175] = 882, - [9176] = 9085, - [9177] = 9177, - [9178] = 9127, - [9179] = 9137, - [9180] = 9079, - [9181] = 9115, - [9182] = 9082, - [9183] = 9183, - [9184] = 9131, - [9185] = 9137, - [9186] = 9127, - [9187] = 9131, - [9188] = 9101, - [9189] = 9158, - [9190] = 1002, - [9191] = 9191, - [9192] = 9126, - [9193] = 9110, - [9194] = 9194, - [9195] = 9195, - [9196] = 9177, - [9197] = 962, - [9198] = 9127, - [9199] = 9137, - [9200] = 9105, + [9154] = 1128, + [9155] = 1168, + [9156] = 1124, + [9157] = 1123, + [9158] = 9097, + [9159] = 1122, + [9160] = 1099, + [9161] = 1085, + [9162] = 1162, + [9163] = 1059, + [9164] = 1159, + [9165] = 9097, + [9166] = 9122, + [9167] = 9125, + [9168] = 9168, + [9169] = 9122, + [9170] = 9107, + [9171] = 9129, + [9172] = 9118, + [9173] = 9102, + [9174] = 914, + [9175] = 1129, + [9176] = 1042, + [9177] = 1027, + [9178] = 9118, + [9179] = 9118, + [9180] = 9097, + [9181] = 9181, + [9182] = 9122, + [9183] = 9122, + [9184] = 9129, + [9185] = 9107, + [9186] = 9125, + [9187] = 9139, + [9188] = 9129, + [9189] = 1058, + [9190] = 1051, + [9191] = 9122, + [9192] = 9097, + [9193] = 9111, + [9194] = 9107, + [9195] = 9118, + [9196] = 9097, + [9197] = 9122, + [9198] = 9125, + [9199] = 9129, + [9200] = 9122, [9201] = 9201, - [9202] = 9115, - [9203] = 9115, - [9204] = 9204, - [9205] = 1041, - [9206] = 9131, - [9207] = 1038, - [9208] = 9099, - [9209] = 9209, - [9210] = 9091, - [9211] = 9093, - [9212] = 9183, - [9213] = 9102, - [9214] = 9103, - [9215] = 9078, - [9216] = 9079, - [9217] = 1169, - [9218] = 9218, - [9219] = 9115, - [9220] = 9104, - [9221] = 9103, - [9222] = 9102, - [9223] = 9099, - [9224] = 9224, - [9225] = 1164, - [9226] = 9082, - [9227] = 9097, - [9228] = 9088, - [9229] = 9079, - [9230] = 952, - [9231] = 9078, - [9232] = 1014, - [9233] = 9083, - [9234] = 9127, - [9235] = 9137, - [9236] = 9088, - [9237] = 9097, - [9238] = 9238, - [9239] = 953, - [9240] = 9081, + [9202] = 9118, + [9203] = 9097, + [9204] = 9129, + [9205] = 866, + [9206] = 1034, + [9207] = 1028, + [9208] = 9122, + [9209] = 9102, + [9210] = 9102, + [9211] = 9129, + [9212] = 9212, + [9213] = 9118, + [9214] = 9118, + [9215] = 9107, + [9216] = 9118, + [9217] = 9217, + [9218] = 9097, + [9219] = 9111, + [9220] = 9201, + [9221] = 9139, + [9222] = 9201, + [9223] = 9129, + [9224] = 9097, + [9225] = 9097, + [9226] = 9122, + [9227] = 9118, + [9228] = 9122, + [9229] = 9100, + [9230] = 9107, + [9231] = 9212, + [9232] = 9099, + [9233] = 9125, + [9234] = 9129, + [9235] = 9118, + [9236] = 9097, + [9237] = 9201, + [9238] = 9097, + [9239] = 9122, + [9240] = 9129, [9241] = 9241, - [9242] = 844, - [9243] = 9081, - [9244] = 3924, - [9245] = 9101, - [9246] = 9246, - [9247] = 9085, - [9248] = 9137, - [9249] = 9127, - [9250] = 1011, - [9251] = 9158, - [9252] = 9105, - [9253] = 9126, - [9254] = 9254, - [9255] = 9177, - [9256] = 9256, - [9257] = 9257, - [9258] = 9088, + [9242] = 9242, + [9243] = 1137, + [9244] = 1166, + [9245] = 9217, + [9246] = 1026, + [9247] = 9129, + [9248] = 1167, + [9249] = 9107, + [9250] = 9122, + [9251] = 9139, + [9252] = 9118, + [9253] = 9139, + [9254] = 9100, + [9255] = 9097, + [9256] = 1157, + [9257] = 9107, + [9258] = 1079, [9259] = 9097, - [9260] = 9183, - [9261] = 985, - [9262] = 9082, - [9263] = 9177, - [9264] = 9091, - [9265] = 9097, - [9266] = 9091, - [9267] = 9088, - [9268] = 9083, - [9269] = 9126, - [9270] = 9081, - [9271] = 9115, - [9272] = 9158, - [9273] = 9082, - [9274] = 9126, - [9275] = 9081, + [9260] = 9260, + [9261] = 9118, + [9262] = 9129, + [9263] = 9263, + [9264] = 9264, + [9265] = 1112, + [9266] = 9102, + [9267] = 9118, + [9268] = 9268, + [9269] = 9099, + [9270] = 9097, + [9271] = 9107, + [9272] = 1023, + [9273] = 9097, + [9274] = 1172, + [9275] = 9099, [9276] = 9276, - [9277] = 9088, - [9278] = 9101, - [9279] = 9279, - [9280] = 9083, - [9281] = 1029, - [9282] = 9282, - [9283] = 9183, - [9284] = 9097, - [9285] = 9158, - [9286] = 9088, - [9287] = 9137, - [9288] = 9137, - [9289] = 9127, - [9290] = 9091, - [9291] = 9097, - [9292] = 9115, - [9293] = 976, - [9294] = 9088, - [9295] = 9295, - [9296] = 9127, - [9297] = 9137, - [9298] = 9131, - [9299] = 9083, - [9300] = 9097, - [9301] = 9081, - [9302] = 9097, - [9303] = 861, - [9304] = 9088, - [9305] = 9137, - [9306] = 9083, - [9307] = 9097, - [9308] = 9101, - [9309] = 9088, - [9310] = 9127, - [9311] = 1024, - [9312] = 9085, - [9313] = 9137, - [9314] = 9126, - [9315] = 9127, - [9316] = 1021, - [9317] = 1017, - [9318] = 9097, - [9319] = 9088, - [9320] = 9127, - [9321] = 9137, - [9322] = 9097, - [9323] = 9088, - [9324] = 9127, - [9325] = 9137, - [9326] = 9078, - [9327] = 9097, - [9328] = 9078, - [9329] = 9099, - [9330] = 9102, - [9331] = 9103, - [9332] = 9104, - [9333] = 9105, - [9334] = 9088, - [9335] = 874, - [9336] = 9183, - [9337] = 9137, - [9338] = 9158, - [9339] = 9115, - [9340] = 9097, - [9341] = 9177, - [9342] = 1004, - [9343] = 9088, - [9344] = 9127, - [9345] = 984, - [9346] = 9079, - [9347] = 9093, - [9348] = 9127, - [9349] = 9137, - [9350] = 9097, - [9351] = 9127, - [9352] = 9088, - [9353] = 9082, - [9354] = 9137, - [9355] = 1035, - [9356] = 9126, - [9357] = 9097, - [9358] = 9177, - [9359] = 9078, - [9360] = 883, - [9361] = 9088, + [9277] = 9099, + [9278] = 1173, + [9279] = 1155, + [9280] = 9100, + [9281] = 9100, + [9282] = 9107, + [9283] = 9100, + [9284] = 9284, + [9285] = 9099, + [9286] = 9099, + [9287] = 9100, + [9288] = 9100, + [9289] = 9108, + [9290] = 9099, + [9291] = 1175, + [9292] = 9292, + [9293] = 9100, + [9294] = 1139, + [9295] = 9099, + [9296] = 1014, + [9297] = 1141, + [9298] = 9125, + [9299] = 9122, + [9300] = 9127, + [9301] = 9128, + [9302] = 9107, + [9303] = 1154, + [9304] = 9097, + [9305] = 9122, + [9306] = 9118, + [9307] = 9099, + [9308] = 9129, + [9309] = 9212, + [9310] = 9107, + [9311] = 1029, + [9312] = 9129, + [9313] = 9122, + [9314] = 9097, + [9315] = 9118, + [9316] = 9129, + [9317] = 9099, + [9318] = 9122, + [9319] = 9100, + [9320] = 9118, + [9321] = 9097, + [9322] = 9107, + [9323] = 9099, + [9324] = 9118, + [9325] = 9100, + [9326] = 9129, + [9327] = 9100, + [9328] = 9122, + [9329] = 9108, + [9330] = 9129, + [9331] = 9097, + [9332] = 9097, + [9333] = 9100, + [9334] = 9099, + [9335] = 9118, + [9336] = 9100, + [9337] = 9108, + [9338] = 9122, + [9339] = 9129, + [9340] = 9122, + [9341] = 9128, + [9342] = 9127, + [9343] = 9099, + [9344] = 9129, + [9345] = 9129, + [9346] = 9139, + [9347] = 9100, + [9348] = 9122, + [9349] = 9111, + [9350] = 9099, + [9351] = 9100, + [9352] = 9099, + [9353] = 9353, + [9354] = 1153, + [9355] = 9355, + [9356] = 9356, + [9357] = 9129, + [9358] = 1043, + [9359] = 1181, + [9360] = 9128, + [9361] = 9118, [9362] = 9362, - [9363] = 9110, - [9364] = 998, - [9365] = 9079, - [9366] = 959, - [9367] = 9079, - [9368] = 9127, - [9369] = 9183, - [9370] = 9137, - [9371] = 9093, - [9372] = 9127, - [9373] = 877, - [9374] = 9093, - [9375] = 9127, - [9376] = 9137, - [9377] = 9088, - [9378] = 9137, - [9379] = 960, - [9380] = 846, - [9381] = 9131, - [9382] = 868, - [9383] = 9110, - [9384] = 9101, - [9385] = 9385, + [9363] = 9127, + [9364] = 9099, + [9365] = 9097, + [9366] = 9108, + [9367] = 9118, + [9368] = 9107, + [9369] = 9118, + [9370] = 1066, + [9371] = 9371, + [9372] = 9372, + [9373] = 9127, + [9374] = 9129, + [9375] = 9122, + [9376] = 9107, + [9377] = 9377, + [9378] = 9100, + [9379] = 9128, + [9380] = 9122, + [9381] = 9097, + [9382] = 9382, + [9383] = 9212, + [9384] = 9384, + [9385] = 9129, [9386] = 9386, - [9387] = 1045, - [9388] = 9388, - [9389] = 9389, - [9390] = 9390, - [9391] = 9391, - [9392] = 9386, - [9393] = 9393, - [9394] = 9390, - [9395] = 9395, - [9396] = 1127, - [9397] = 9397, - [9398] = 9388, - [9399] = 9393, - [9400] = 9400, - [9401] = 9388, - [9402] = 1050, - [9403] = 9389, - [9404] = 9404, - [9405] = 9405, - [9406] = 9393, - [9407] = 9407, - [9408] = 1051, - [9409] = 9409, - [9410] = 9410, - [9411] = 9411, + [9387] = 1118, + [9388] = 1182, + [9389] = 9107, + [9390] = 9100, + [9391] = 9125, + [9392] = 9107, + [9393] = 1183, + [9394] = 9099, + [9395] = 9118, + [9396] = 9100, + [9397] = 9125, + [9398] = 9217, + [9399] = 9099, + [9400] = 9217, + [9401] = 9107, + [9402] = 1148, + [9403] = 9107, + [9404] = 1144, + [9405] = 1147, + [9406] = 9107, + [9407] = 9201, + [9408] = 9102, + [9409] = 9100, + [9410] = 9217, + [9411] = 9212, [9412] = 9412, - [9413] = 1052, - [9414] = 9395, - [9415] = 1053, - [9416] = 9411, - [9417] = 9404, - [9418] = 9411, - [9419] = 1055, - [9420] = 9407, - [9421] = 9421, - [9422] = 1057, - [9423] = 9389, - [9424] = 1073, - [9425] = 1074, - [9426] = 1080, - [9427] = 1084, - [9428] = 9411, - [9429] = 1087, - [9430] = 1125, - [9431] = 1126, - [9432] = 9411, - [9433] = 9433, - [9434] = 9405, - [9435] = 9389, - [9436] = 882, - [9437] = 9411, - [9438] = 883, - [9439] = 9386, - [9440] = 1128, - [9441] = 1129, - [9442] = 9390, - [9443] = 9404, - [9444] = 9395, - [9445] = 9391, - [9446] = 9411, - [9447] = 1130, - [9448] = 9448, - [9449] = 9390, - [9450] = 1144, - [9451] = 1145, - [9452] = 1146, - [9453] = 9389, - [9454] = 9386, - [9455] = 1157, - [9456] = 9411, - [9457] = 1166, - [9458] = 9386, - [9459] = 9391, - [9460] = 9411, - [9461] = 1167, - [9462] = 9385, - [9463] = 9390, - [9464] = 9405, - [9465] = 9389, - [9466] = 9386, - [9467] = 9391, - [9468] = 9411, - [9469] = 9390, - [9470] = 1153, - [9471] = 9389, + [9413] = 9097, + [9414] = 9100, + [9415] = 9107, + [9416] = 9099, + [9417] = 9122, + [9418] = 1068, + [9419] = 9100, + [9420] = 9129, + [9421] = 9102, + [9422] = 9099, + [9423] = 9201, + [9424] = 1143, + [9425] = 9425, + [9426] = 9108, + [9427] = 9139, + [9428] = 9139, + [9429] = 1185, + [9430] = 9430, + [9431] = 9099, + [9432] = 1177, + [9433] = 9129, + [9434] = 9125, + [9435] = 9122, + [9436] = 9102, + [9437] = 9118, + [9438] = 9438, + [9439] = 9122, + [9440] = 1187, + [9441] = 9217, + [9442] = 9111, + [9443] = 1138, + [9444] = 9107, + [9445] = 1180, + [9446] = 9097, + [9447] = 9107, + [9448] = 9107, + [9449] = 9118, + [9450] = 9212, + [9451] = 9451, + [9452] = 9111, + [9453] = 1120, + [9454] = 9454, + [9455] = 9455, + [9456] = 9139, + [9457] = 9457, + [9458] = 9458, + [9459] = 9118, + [9460] = 1158, + [9461] = 1186, + [9462] = 9462, + [9463] = 9463, + [9464] = 1185, + [9465] = 9465, + [9466] = 9466, + [9467] = 9467, + [9468] = 9468, + [9469] = 9469, + [9470] = 9470, + [9471] = 1183, [9472] = 9472, [9473] = 9473, - [9474] = 1178, - [9475] = 9386, - [9476] = 9393, - [9477] = 1119, - [9478] = 9391, - [9479] = 9388, - [9480] = 9390, - [9481] = 9388, - [9482] = 1181, - [9483] = 1184, - [9484] = 1186, - [9485] = 9389, - [9486] = 9386, - [9487] = 9391, - [9488] = 9407, - [9489] = 9393, - [9490] = 9391, - [9491] = 1187, + [9474] = 9474, + [9475] = 9475, + [9476] = 9468, + [9477] = 9474, + [9478] = 1182, + [9479] = 9479, + [9480] = 9475, + [9481] = 9481, + [9482] = 9468, + [9483] = 9468, + [9484] = 1181, + [9485] = 9468, + [9486] = 9486, + [9487] = 9487, + [9488] = 9488, + [9489] = 9489, + [9490] = 9490, + [9491] = 9491, [9492] = 9492, [9493] = 9493, - [9494] = 9390, - [9495] = 1136, - [9496] = 9496, - [9497] = 1189, - [9498] = 1138, - [9499] = 9391, - [9500] = 1190, - [9501] = 9501, - [9502] = 1198, - [9503] = 1199, - [9504] = 1201, + [9494] = 9487, + [9495] = 9495, + [9496] = 9479, + [9497] = 9497, + [9498] = 9498, + [9499] = 9473, + [9500] = 9489, + [9501] = 1175, + [9502] = 9502, + [9503] = 9498, + [9504] = 9504, [9505] = 9505, - [9506] = 9393, - [9507] = 9390, - [9508] = 9411, - [9509] = 1147, - [9510] = 9389, - [9511] = 9389, - [9512] = 9493, - [9513] = 1158, - [9514] = 9411, - [9515] = 9405, + [9506] = 9506, + [9507] = 1187, + [9508] = 9493, + [9509] = 9472, + [9510] = 9473, + [9511] = 1173, + [9512] = 9489, + [9513] = 9513, + [9514] = 9466, + [9515] = 1120, [9516] = 9516, - [9517] = 9407, - [9518] = 9448, - [9519] = 9391, + [9517] = 9469, + [9518] = 1172, + [9519] = 9519, [9520] = 9520, - [9521] = 1168, - [9522] = 9391, - [9523] = 9390, - [9524] = 1137, - [9525] = 9389, - [9526] = 9410, - [9527] = 9411, - [9528] = 9528, - [9529] = 9388, - [9530] = 9473, - [9531] = 9393, - [9532] = 9404, - [9533] = 1172, - [9534] = 9472, - [9535] = 9493, - [9536] = 9404, - [9537] = 9393, - [9538] = 1173, - [9539] = 9388, - [9540] = 9448, - [9541] = 1176, - [9542] = 9386, - [9543] = 9388, - [9544] = 9393, - [9545] = 9410, - [9546] = 9473, - [9547] = 9388, - [9548] = 9393, - [9549] = 9404, - [9550] = 9386, - [9551] = 1115, - [9552] = 9411, - [9553] = 1180, - [9554] = 9411, - [9555] = 9393, - [9556] = 9385, - [9557] = 9388, - [9558] = 9386, - [9559] = 9448, - [9560] = 9388, - [9561] = 9561, - [9562] = 1116, - [9563] = 9472, - [9564] = 9411, - [9565] = 9411, - [9566] = 9386, - [9567] = 9385, - [9568] = 9395, - [9569] = 9393, - [9570] = 1194, - [9571] = 9571, - [9572] = 9572, - [9573] = 9573, - [9574] = 1132, - [9575] = 9410, + [9521] = 9521, + [9522] = 1158, + [9523] = 9466, + [9524] = 9465, + [9525] = 9506, + [9526] = 9498, + [9527] = 9527, + [9528] = 9516, + [9529] = 9529, + [9530] = 9498, + [9531] = 9466, + [9532] = 9492, + [9533] = 9533, + [9534] = 9534, + [9535] = 9535, + [9536] = 9520, + [9537] = 9520, + [9538] = 9472, + [9539] = 9463, + [9540] = 9533, + [9541] = 9472, + [9542] = 9498, + [9543] = 1167, + [9544] = 9498, + [9545] = 1068, + [9546] = 9521, + [9547] = 9488, + [9548] = 9493, + [9549] = 9487, + [9550] = 9535, + [9551] = 9551, + [9552] = 9552, + [9553] = 9534, + [9554] = 9520, + [9555] = 9488, + [9556] = 9462, + [9557] = 9557, + [9558] = 9463, + [9559] = 9488, + [9560] = 9560, + [9561] = 9467, + [9562] = 9462, + [9563] = 9552, + [9564] = 9560, + [9565] = 1160, + [9566] = 9566, + [9567] = 9567, + [9568] = 1066, + [9569] = 9489, + [9570] = 9466, + [9571] = 1157, + [9572] = 9491, + [9573] = 1155, + [9574] = 9490, + [9575] = 1154, [9576] = 9576, - [9577] = 9386, - [9578] = 9411, - [9579] = 9493, - [9580] = 9388, - [9581] = 9393, - [9582] = 9391, - [9583] = 9583, - [9584] = 9388, - [9585] = 9393, - [9586] = 1171, - [9587] = 1170, - [9588] = 9388, - [9589] = 9393, - [9590] = 9385, - [9591] = 9389, - [9592] = 9390, - [9593] = 9391, - [9594] = 9388, - [9595] = 9389, - [9596] = 9472, - [9597] = 9390, - [9598] = 9472, - [9599] = 9391, - [9600] = 9393, - [9601] = 9473, - [9602] = 9386, - [9603] = 9603, - [9604] = 9389, - [9605] = 9410, - [9606] = 3947, - [9607] = 4041, - [9608] = 9388, - [9609] = 9390, - [9610] = 9395, - [9611] = 9390, - [9612] = 9393, - [9613] = 9391, - [9614] = 4144, - [9615] = 4126, - [9616] = 4107, - [9617] = 9388, - [9618] = 9393, - [9619] = 9388, - [9620] = 9393, - [9621] = 9386, - [9622] = 1103, - [9623] = 9493, - [9624] = 9386, - [9625] = 9388, - [9626] = 9393, - [9627] = 9410, - [9628] = 1210, - [9629] = 9411, - [9630] = 1131, - [9631] = 9391, - [9632] = 9411, - [9633] = 1092, - [9634] = 9389, - [9635] = 9389, - [9636] = 9386, - [9637] = 9405, - [9638] = 9390, - [9639] = 9390, - [9640] = 9389, - [9641] = 9448, - [9642] = 9391, - [9643] = 9407, - [9644] = 9391, - [9645] = 9386, - [9646] = 9473, - [9647] = 9386, - [9648] = 9391, - [9649] = 9390, - [9650] = 1197, - [9651] = 9389, - [9652] = 9448, - [9653] = 9389, - [9654] = 9390, - [9655] = 9655, - [9656] = 9656, - [9657] = 9390, - [9658] = 9386, - [9659] = 9659, - [9660] = 9386, - [9661] = 9391, - [9662] = 9388, - [9663] = 9390, - [9664] = 9391, - [9665] = 9665, - [9666] = 9386, - [9667] = 1140, - [9668] = 9395, - [9669] = 9390, - [9670] = 1099, - [9671] = 9448, - [9672] = 9672, - [9673] = 9389, - [9674] = 9386, - [9675] = 9411, - [9676] = 1148, - [9677] = 9391, - [9678] = 9493, - [9679] = 1090, - [9680] = 1159, - [9681] = 9390, - [9682] = 9389, - [9683] = 9493, - [9684] = 888, - [9685] = 9685, - [9686] = 1169, - [9687] = 1164, - [9688] = 9393, - [9689] = 9391, - [9690] = 9388, - [9691] = 9386, - [9692] = 9411, - [9693] = 9473, - [9694] = 9391, - [9695] = 9390, - [9696] = 1200, - [9697] = 9389, - [9698] = 9390, - [9699] = 9395, - [9700] = 9411, - [9701] = 9389, - [9702] = 9386, - [9703] = 9391, - [9704] = 9390, - [9705] = 9389, - [9706] = 9391, - [9707] = 9448, - [9708] = 1079, - [9709] = 1077, - [9710] = 9386, - [9711] = 9393, - [9712] = 9388, - [9713] = 1215, - [9714] = 9393, - [9715] = 9388, - [9716] = 9389, - [9717] = 9411, - [9718] = 9389, - [9719] = 9393, - [9720] = 9493, - [9721] = 9411, - [9722] = 9391, - [9723] = 9388, - [9724] = 1203, - [9725] = 1204, - [9726] = 9726, - [9727] = 9390, - [9728] = 9728, - [9729] = 9395, - [9730] = 1207, - [9731] = 9472, - [9732] = 1211, - [9733] = 9390, - [9734] = 9395, - [9735] = 9411, - [9736] = 9389, - [9737] = 9405, - [9738] = 9407, - [9739] = 9739, - [9740] = 9391, - [9741] = 1209, + [9577] = 1166, + [9578] = 1153, + [9579] = 9490, + [9580] = 9520, + [9581] = 9472, + [9582] = 9582, + [9583] = 9465, + [9584] = 9584, + [9585] = 1148, + [9586] = 1144, + [9587] = 1143, + [9588] = 1138, + [9589] = 9498, + [9590] = 9590, + [9591] = 9474, + [9592] = 9592, + [9593] = 9487, + [9594] = 9488, + [9595] = 1118, + [9596] = 9596, + [9597] = 9466, + [9598] = 9598, + [9599] = 1112, + [9600] = 1081, + [9601] = 9601, + [9602] = 9469, + [9603] = 9521, + [9604] = 1017, + [9605] = 9472, + [9606] = 1052, + [9607] = 9520, + [9608] = 9466, + [9609] = 9502, + [9610] = 9472, + [9611] = 1133, + [9612] = 9521, + [9613] = 1165, + [9614] = 1063, + [9615] = 9467, + [9616] = 1062, + [9617] = 1140, + [9618] = 9552, + [9619] = 9498, + [9620] = 1136, + [9621] = 1061, + [9622] = 1059, + [9623] = 1141, + [9624] = 9488, + [9625] = 1139, + [9626] = 9506, + [9627] = 1174, + [9628] = 9479, + [9629] = 9502, + [9630] = 9506, + [9631] = 1135, + [9632] = 9502, + [9633] = 1082, + [9634] = 1163, + [9635] = 9551, + [9636] = 9636, + [9637] = 9502, + [9638] = 9488, + [9639] = 9506, + [9640] = 9506, + [9641] = 9502, + [9642] = 9516, + [9643] = 9519, + [9644] = 9506, + [9645] = 9535, + [9646] = 9462, + [9647] = 9502, + [9648] = 9493, + [9649] = 9490, + [9650] = 1132, + [9651] = 9534, + [9652] = 9560, + [9653] = 1128, + [9654] = 9475, + [9655] = 1124, + [9656] = 1123, + [9657] = 9467, + [9658] = 1122, + [9659] = 9462, + [9660] = 1099, + [9661] = 1085, + [9662] = 9566, + [9663] = 9465, + [9664] = 1137, + [9665] = 9567, + [9666] = 9502, + [9667] = 9506, + [9668] = 9502, + [9669] = 9521, + [9670] = 9519, + [9671] = 9551, + [9672] = 9506, + [9673] = 9487, + [9674] = 9516, + [9675] = 9529, + [9676] = 9535, + [9677] = 9520, + [9678] = 9472, + [9679] = 9493, + [9680] = 9490, + [9681] = 9498, + [9682] = 9534, + [9683] = 9560, + [9684] = 9467, + [9685] = 9566, + [9686] = 9567, + [9687] = 9462, + [9688] = 9502, + [9689] = 9552, + [9690] = 9488, + [9691] = 9462, + [9692] = 9519, + [9693] = 9551, + [9694] = 9475, + [9695] = 9474, + [9696] = 9506, + [9697] = 9560, + [9698] = 9516, + [9699] = 9529, + [9700] = 9468, + [9701] = 9462, + [9702] = 9520, + [9703] = 9535, + [9704] = 9497, + [9705] = 9506, + [9706] = 9502, + [9707] = 9472, + [9708] = 9492, + [9709] = 9498, + [9710] = 9488, + [9711] = 9521, + [9712] = 9520, + [9713] = 9472, + [9714] = 9493, + [9715] = 9529, + [9716] = 9498, + [9717] = 9465, + [9718] = 9718, + [9719] = 9467, + [9720] = 9521, + [9721] = 9534, + [9722] = 9560, + [9723] = 9467, + [9724] = 9473, + [9725] = 9566, + [9726] = 9567, + [9727] = 9502, + [9728] = 9521, + [9729] = 9465, + [9730] = 9488, + [9731] = 9466, + [9732] = 9533, + [9733] = 9733, + [9734] = 9560, + [9735] = 9535, + [9736] = 9487, + [9737] = 9506, + [9738] = 9738, + [9739] = 9502, + [9740] = 9519, + [9741] = 9487, [9742] = 9742, - [9743] = 9385, - [9744] = 9386, - [9745] = 9745, - [9746] = 9746, - [9747] = 9411, - [9748] = 9448, - [9749] = 9493, - [9750] = 1187, - [9751] = 9751, - [9752] = 1172, - [9753] = 9753, - [9754] = 9754, - [9755] = 9755, - [9756] = 1147, - [9757] = 9757, - [9758] = 1138, - [9759] = 1136, - [9760] = 1127, - [9761] = 9761, - [9762] = 9762, - [9763] = 9763, - [9764] = 1045, - [9765] = 9765, - [9766] = 1050, - [9767] = 9767, - [9768] = 1051, - [9769] = 9769, + [9743] = 9488, + [9744] = 9551, + [9745] = 9466, + [9746] = 9506, + [9747] = 9462, + [9748] = 9748, + [9749] = 9749, + [9750] = 9516, + [9751] = 9529, + [9752] = 9491, + [9753] = 9535, + [9754] = 9534, + [9755] = 9469, + [9756] = 9521, + [9757] = 9529, + [9758] = 9488, + [9759] = 9552, + [9760] = 9534, + [9761] = 9488, + [9762] = 9472, + [9763] = 9498, + [9764] = 9468, + [9765] = 9472, + [9766] = 9493, + [9767] = 9516, + [9768] = 9490, + [9769] = 9520, [9770] = 9770, - [9771] = 1052, - [9772] = 1053, - [9773] = 1055, - [9774] = 9774, - [9775] = 9775, - [9776] = 1057, - [9777] = 1073, - [9778] = 1173, - [9779] = 1074, - [9780] = 1176, - [9781] = 9761, - [9782] = 1080, - [9783] = 9783, - [9784] = 1180, - [9785] = 9785, - [9786] = 1084, - [9787] = 1087, - [9788] = 1125, - [9789] = 9789, - [9790] = 1126, - [9791] = 9791, - [9792] = 1194, - [9793] = 1128, - [9794] = 9762, - [9795] = 9795, - [9796] = 1129, - [9797] = 1197, - [9798] = 9774, - [9799] = 9799, - [9800] = 1130, - [9801] = 9763, - [9802] = 9751, - [9803] = 9803, - [9804] = 9804, - [9805] = 9805, - [9806] = 9751, - [9807] = 1200, - [9808] = 9808, - [9809] = 1203, - [9810] = 9803, - [9811] = 9811, - [9812] = 1204, - [9813] = 9799, - [9814] = 1207, - [9815] = 9815, - [9816] = 9767, - [9817] = 1209, - [9818] = 9795, - [9819] = 1211, - [9820] = 1144, - [9821] = 9763, - [9822] = 1145, - [9823] = 9799, - [9824] = 1146, - [9825] = 9762, - [9826] = 9785, - [9827] = 1215, - [9828] = 9757, - [9829] = 9755, - [9830] = 1153, - [9831] = 9803, - [9832] = 9757, - [9833] = 9795, - [9834] = 9785, - [9835] = 1157, - [9836] = 9811, - [9837] = 1158, - [9838] = 1159, - [9839] = 9839, - [9840] = 9840, - [9841] = 1148, - [9842] = 1140, - [9843] = 9799, - [9844] = 9762, - [9845] = 9763, - [9846] = 9751, - [9847] = 9803, - [9848] = 9803, - [9849] = 9795, - [9850] = 9785, - [9851] = 1132, - [9852] = 9852, - [9853] = 1116, - [9854] = 9811, - [9855] = 9755, - [9856] = 1166, - [9857] = 9857, - [9858] = 1167, - [9859] = 9859, - [9860] = 9860, - [9861] = 9803, - [9862] = 9811, - [9863] = 9785, - [9864] = 9795, - [9865] = 9795, - [9866] = 9767, - [9867] = 9785, - [9868] = 9803, - [9869] = 1168, - [9870] = 9870, - [9871] = 9795, - [9872] = 9872, - [9873] = 9799, - [9874] = 9811, - [9875] = 9751, - [9876] = 9876, - [9877] = 9767, - [9878] = 9762, - [9879] = 9803, - [9880] = 9811, - [9881] = 9785, - [9882] = 9882, - [9883] = 9763, - [9884] = 9751, - [9885] = 9795, - [9886] = 9785, - [9887] = 9785, - [9888] = 9751, - [9889] = 9795, - [9890] = 9890, + [9771] = 9474, + [9772] = 9472, + [9773] = 9560, + [9774] = 9475, + [9775] = 9467, + [9776] = 9776, + [9777] = 9566, + [9778] = 9567, + [9779] = 9534, + [9780] = 9488, + [9781] = 9502, + [9782] = 1014, + [9783] = 9463, + [9784] = 9490, + [9785] = 9473, + [9786] = 9520, + [9787] = 9552, + [9788] = 9473, + [9789] = 9506, + [9790] = 9465, + [9791] = 9516, + [9792] = 9529, + [9793] = 9466, + [9794] = 9535, + [9795] = 9493, + [9796] = 9552, + [9797] = 9493, + [9798] = 9487, + [9799] = 9488, + [9800] = 9489, + [9801] = 9490, + [9802] = 9489, + [9803] = 9498, + [9804] = 9498, + [9805] = 9472, + [9806] = 1147, + [9807] = 9521, + [9808] = 9534, + [9809] = 9462, + [9810] = 9520, + [9811] = 1079, + [9812] = 9812, + [9813] = 9520, + [9814] = 1186, + [9815] = 9498, + [9816] = 9506, + [9817] = 9521, + [9818] = 9533, + [9819] = 1180, + [9820] = 9560, + [9821] = 1177, + [9822] = 9488, + [9823] = 9465, + [9824] = 9498, + [9825] = 9466, + [9826] = 9469, + [9827] = 9472, + [9828] = 9467, + [9829] = 9490, + [9830] = 9472, + [9831] = 9520, + [9832] = 9488, + [9833] = 9520, + [9834] = 9834, + [9835] = 9479, + [9836] = 9836, + [9837] = 9837, + [9838] = 9533, + [9839] = 9502, + [9840] = 9498, + [9841] = 9489, + [9842] = 9498, + [9843] = 9472, + [9844] = 9472, + [9845] = 9535, + [9846] = 9487, + [9847] = 9479, + [9848] = 9551, + [9849] = 9468, + [9850] = 9465, + [9851] = 1027, + [9852] = 9520, + [9853] = 9506, + [9854] = 9529, + [9855] = 9855, + [9856] = 9491, + [9857] = 9466, + [9858] = 9520, + [9859] = 9535, + [9860] = 9479, + [9861] = 9493, + [9862] = 9490, + [9863] = 9487, + [9864] = 1043, + [9865] = 9488, + [9866] = 9516, + [9867] = 9465, + [9868] = 9560, + [9869] = 9467, + [9870] = 1029, + [9871] = 9498, + [9872] = 9472, + [9873] = 9873, + [9874] = 9502, + [9875] = 9520, + [9876] = 9529, + [9877] = 9535, + [9878] = 9493, + [9879] = 9462, + [9880] = 9466, + [9881] = 9519, + [9882] = 1023, + [9883] = 9463, + [9884] = 9533, + [9885] = 9490, + [9886] = 9560, + [9887] = 9521, + [9888] = 9520, + [9889] = 9488, + [9890] = 9467, [9891] = 9891, - [9892] = 9799, - [9893] = 9803, - [9894] = 9811, - [9895] = 1178, - [9896] = 9896, - [9897] = 1181, - [9898] = 9757, - [9899] = 9795, - [9900] = 1184, - [9901] = 9757, - [9902] = 9755, - [9903] = 9803, - [9904] = 1186, - [9905] = 9811, - [9906] = 9839, - [9907] = 9795, - [9908] = 9785, - [9909] = 9811, - [9910] = 9785, - [9911] = 9811, - [9912] = 9803, - [9913] = 9763, - [9914] = 9803, - [9915] = 9803, - [9916] = 9795, - [9917] = 9785, - [9918] = 1189, - [9919] = 9811, - [9920] = 1190, - [9921] = 1198, - [9922] = 1199, - [9923] = 9795, - [9924] = 1201, - [9925] = 9751, - [9926] = 9805, - [9927] = 9761, - [9928] = 9803, - [9929] = 9762, - [9930] = 9808, - [9931] = 9757, - [9932] = 9795, - [9933] = 9762, - [9934] = 9763, - [9935] = 9751, - [9936] = 9762, - [9937] = 1137, - [9938] = 9757, - [9939] = 9755, - [9940] = 9762, - [9941] = 9799, - [9942] = 9942, - [9943] = 9751, - [9944] = 9762, - [9945] = 9757, - [9946] = 9946, - [9947] = 9946, - [9948] = 9942, - [9949] = 9949, - [9950] = 9811, - [9951] = 9951, - [9952] = 9942, - [9953] = 9811, - [9954] = 9954, - [9955] = 9955, - [9956] = 9753, - [9957] = 9785, - [9958] = 9795, - [9959] = 9946, - [9960] = 9870, - [9961] = 9840, - [9962] = 9942, - [9963] = 9774, - [9964] = 9803, - [9965] = 9870, - [9966] = 9839, - [9967] = 9891, - [9968] = 9946, - [9969] = 9799, - [9970] = 9970, - [9971] = 9971, - [9972] = 9942, - [9973] = 9946, - [9974] = 9942, - [9975] = 9946, - [9976] = 9785, - [9977] = 9767, - [9978] = 9761, - [9979] = 9860, - [9980] = 9795, - [9981] = 9803, - [9982] = 9942, - [9983] = 9751, - [9984] = 9753, - [9985] = 9795, - [9986] = 9946, - [9987] = 9765, - [9988] = 9946, - [9989] = 9949, - [9990] = 9951, - [9991] = 9942, - [9992] = 9811, - [9993] = 9785, - [9994] = 9954, - [9995] = 9795, - [9996] = 9763, + [9892] = 9463, + [9893] = 9502, + [9894] = 9498, + [9895] = 9895, + [9896] = 9488, + [9897] = 9462, + [9898] = 9506, + [9899] = 9469, + [9900] = 9520, + [9901] = 9535, + [9902] = 9493, + [9903] = 9490, + [9904] = 9560, + [9905] = 9467, + [9906] = 9502, + [9907] = 1026, + [9908] = 9488, + [9909] = 9506, + [9910] = 9535, + [9911] = 9489, + [9912] = 9490, + [9913] = 9467, + [9914] = 9502, + [9915] = 9506, + [9916] = 9535, + [9917] = 9498, + [9918] = 9488, + [9919] = 9490, + [9920] = 9920, + [9921] = 9488, + [9922] = 9467, + [9923] = 9502, + [9924] = 9465, + [9925] = 9506, + [9926] = 9506, + [9927] = 9472, + [9928] = 9492, + [9929] = 9498, + [9930] = 9472, + [9931] = 9492, + [9932] = 9466, + [9933] = 9472, + [9934] = 9492, + [9935] = 9492, + [9936] = 9492, + [9937] = 9492, + [9938] = 9492, + [9939] = 9492, + [9940] = 9492, + [9941] = 9492, + [9942] = 9492, + [9943] = 9492, + [9944] = 9492, + [9945] = 9492, + [9946] = 9492, + [9947] = 9492, + [9948] = 9492, + [9949] = 9492, + [9950] = 9492, + [9951] = 9492, + [9952] = 9492, + [9953] = 9492, + [9954] = 9492, + [9955] = 9552, + [9956] = 9520, + [9957] = 9506, + [9958] = 9502, + [9959] = 9506, + [9960] = 9960, + [9961] = 9497, + [9962] = 9770, + [9963] = 9521, + [9964] = 9582, + [9965] = 9601, + [9966] = 9596, + [9967] = 9488, + [9968] = 9733, + [9969] = 9498, + [9970] = 9472, + [9971] = 9462, + [9972] = 9520, + [9973] = 9502, + [9974] = 9552, + [9975] = 9479, + [9976] = 9487, + [9977] = 9520, + [9978] = 9497, + [9979] = 9462, + [9980] = 9462, + [9981] = 9462, + [9982] = 9521, + [9983] = 9488, + [9984] = 9984, + [9985] = 9462, + [9986] = 9498, + [9987] = 9987, + [9988] = 9472, + [9989] = 9462, + [9990] = 9462, + [9991] = 9520, + [9992] = 9462, + [9993] = 9462, + [9994] = 9567, + [9995] = 9462, + [9996] = 9462, [9997] = 9997, - [9998] = 9767, - [9999] = 9762, - [10000] = 9791, - [10001] = 9785, - [10002] = 9803, - [10003] = 10003, - [10004] = 9763, - [10005] = 9955, - [10006] = 9803, - [10007] = 9870, - [10008] = 9840, - [10009] = 9811, - [10010] = 1119, - [10011] = 9774, - [10012] = 9870, - [10013] = 9839, - [10014] = 9891, - [10015] = 9799, - [10016] = 9970, - [10017] = 10017, - [10018] = 9808, - [10019] = 9765, - [10020] = 9971, + [9998] = 1129, + [9999] = 9999, + [10000] = 9462, + [10001] = 9960, + [10002] = 9497, + [10003] = 9770, + [10004] = 10004, + [10005] = 9601, + [10006] = 9489, + [10007] = 9733, + [10008] = 9960, + [10009] = 9497, + [10010] = 9770, + [10011] = 9601, + [10012] = 9596, + [10013] = 10013, + [10014] = 9733, + [10015] = 9960, + [10016] = 9497, + [10017] = 9770, + [10018] = 9520, + [10019] = 9601, + [10020] = 9596, [10021] = 10021, - [10022] = 9762, - [10023] = 9946, - [10024] = 9767, - [10025] = 9754, - [10026] = 10026, - [10027] = 9791, - [10028] = 9805, - [10029] = 9804, - [10030] = 9785, - [10031] = 9804, - [10032] = 9754, - [10033] = 9805, - [10034] = 9949, - [10035] = 9805, - [10036] = 10036, - [10037] = 9951, - [10038] = 10038, - [10039] = 9804, - [10040] = 9942, - [10041] = 9754, - [10042] = 9757, - [10043] = 9942, - [10044] = 9946, - [10045] = 9805, - [10046] = 9954, - [10047] = 9805, - [10048] = 9955, - [10049] = 9767, - [10050] = 9860, - [10051] = 10036, - [10052] = 9755, - [10053] = 9840, - [10054] = 9870, - [10055] = 9763, - [10056] = 9762, - [10057] = 9791, - [10058] = 9840, - [10059] = 9785, - [10060] = 9954, - [10061] = 9774, - [10062] = 9954, - [10063] = 9942, - [10064] = 9839, - [10065] = 9891, - [10066] = 9946, - [10067] = 9765, - [10068] = 9970, - [10069] = 9765, - [10070] = 9971, - [10071] = 9785, - [10072] = 9946, - [10073] = 9791, - [10074] = 10074, - [10075] = 10075, - [10076] = 9949, - [10077] = 9753, - [10078] = 9951, - [10079] = 9942, - [10080] = 9757, - [10081] = 9755, - [10082] = 9763, - [10083] = 10083, - [10084] = 9876, - [10085] = 9753, - [10086] = 9840, - [10087] = 9954, - [10088] = 9955, - [10089] = 9753, - [10090] = 9876, - [10091] = 9840, - [10092] = 9774, - [10093] = 9839, - [10094] = 9891, - [10095] = 9757, - [10096] = 9970, - [10097] = 9971, - [10098] = 9946, - [10099] = 9753, - [10100] = 9757, - [10101] = 9891, - [10102] = 9949, - [10103] = 9803, - [10104] = 10104, - [10105] = 9951, - [10106] = 9795, - [10107] = 9785, - [10108] = 9755, - [10109] = 9811, - [10110] = 9811, - [10111] = 9955, - [10112] = 9942, - [10113] = 9852, - [10114] = 10114, - [10115] = 9811, - [10116] = 9804, - [10117] = 9852, - [10118] = 9795, - [10119] = 9761, - [10120] = 9785, - [10121] = 9799, - [10122] = 9954, - [10123] = 9757, - [10124] = 9751, - [10125] = 9954, - [10126] = 9803, - [10127] = 9808, - [10128] = 9803, - [10129] = 9955, - [10130] = 9763, - [10131] = 9767, - [10132] = 9795, - [10133] = 9785, - [10134] = 10134, - [10135] = 9811, - [10136] = 9753, - [10137] = 10137, - [10138] = 9795, - [10139] = 9870, - [10140] = 9840, - [10141] = 9803, - [10142] = 9803, - [10143] = 9774, - [10144] = 9762, - [10145] = 9795, - [10146] = 9785, - [10147] = 9795, - [10148] = 9839, - [10149] = 9785, - [10150] = 9891, - [10151] = 9811, - [10152] = 9970, - [10153] = 9971, - [10154] = 9942, - [10155] = 9946, - [10156] = 9811, - [10157] = 9942, - [10158] = 9870, - [10159] = 9761, - [10160] = 9803, - [10161] = 9955, - [10162] = 9753, - [10163] = 9971, - [10164] = 9795, - [10165] = 9785, - [10166] = 1092, - [10167] = 9762, - [10168] = 9811, - [10169] = 9870, - [10170] = 9840, - [10171] = 9774, - [10172] = 9839, - [10173] = 9891, - [10174] = 9946, - [10175] = 9791, - [10176] = 9942, - [10177] = 9955, - [10178] = 9753, - [10179] = 9852, - [10180] = 9803, - [10181] = 9870, - [10182] = 10182, - [10183] = 9840, - [10184] = 9795, - [10185] = 10185, - [10186] = 10186, - [10187] = 9785, - [10188] = 10188, - [10189] = 9811, - [10190] = 9839, - [10191] = 9891, - [10192] = 9946, - [10193] = 9954, - [10194] = 9942, - [10195] = 9955, - [10196] = 9860, - [10197] = 9753, - [10198] = 9870, - [10199] = 9860, - [10200] = 9803, - [10201] = 9840, - [10202] = 9860, - [10203] = 9860, - [10204] = 9860, - [10205] = 9860, - [10206] = 9860, - [10207] = 9860, - [10208] = 9860, - [10209] = 9860, - [10210] = 9860, - [10211] = 9860, - [10212] = 9860, - [10213] = 9860, - [10214] = 9860, - [10215] = 9860, - [10216] = 9860, - [10217] = 9860, - [10218] = 9860, - [10219] = 9860, - [10220] = 9860, - [10221] = 9860, - [10222] = 9860, - [10223] = 9795, - [10224] = 9785, - [10225] = 9811, - [10226] = 9891, - [10227] = 9808, - [10228] = 9946, - [10229] = 9942, - [10230] = 9753, - [10231] = 9870, - [10232] = 10003, - [10233] = 9840, - [10234] = 9839, - [10235] = 9891, - [10236] = 9946, - [10237] = 9942, - [10238] = 9753, - [10239] = 9840, - [10240] = 9891, - [10241] = 9946, - [10242] = 9774, - [10243] = 9942, - [10244] = 9753, - [10245] = 10245, - [10246] = 9765, - [10247] = 9840, - [10248] = 9803, - [10249] = 9891, - [10250] = 9946, - [10251] = 9839, - [10252] = 9942, - [10253] = 9757, - [10254] = 9946, - [10255] = 9761, - [10256] = 9942, - [10257] = 9755, - [10258] = 9751, - [10259] = 9891, - [10260] = 9970, - [10261] = 10261, - [10262] = 10262, - [10263] = 9946, - [10264] = 9942, - [10265] = 10265, - [10266] = 9876, - [10267] = 9876, - [10268] = 10268, - [10269] = 10036, - [10270] = 10036, - [10271] = 10026, - [10272] = 10021, - [10273] = 9775, - [10274] = 10274, - [10275] = 9799, - [10276] = 9951, - [10277] = 9805, - [10278] = 1115, - [10279] = 10185, - [10280] = 10280, - [10281] = 9839, - [10282] = 9799, - [10283] = 9761, - [10284] = 9799, - [10285] = 9811, - [10286] = 9799, - [10287] = 9799, - [10288] = 9799, - [10289] = 9852, - [10290] = 9799, - [10291] = 9811, - [10292] = 9799, - [10293] = 9799, - [10294] = 9799, - [10295] = 9799, - [10296] = 9799, - [10297] = 10268, - [10298] = 9949, - [10299] = 10036, - [10300] = 9852, - [10301] = 10185, - [10302] = 10026, - [10303] = 10021, - [10304] = 9775, - [10305] = 10268, - [10306] = 10036, - [10307] = 10185, - [10308] = 10026, - [10309] = 10021, - [10310] = 9775, - [10311] = 10268, - [10312] = 9808, - [10313] = 9775, - [10314] = 10185, - [10315] = 10026, - [10316] = 9761, - [10317] = 10317, - [10318] = 10021, - [10319] = 9799, - [10320] = 9811, - [10321] = 10268, - [10322] = 10036, - [10323] = 10026, - [10324] = 10021, - [10325] = 10325, - [10326] = 9775, - [10327] = 10327, - [10328] = 10268, - [10329] = 10036, - [10330] = 10026, - [10331] = 10021, - [10332] = 9775, - [10333] = 10268, - [10334] = 10036, - [10335] = 10026, - [10336] = 10021, - [10337] = 9775, - [10338] = 10268, - [10339] = 9799, - [10340] = 10036, - [10341] = 10026, - [10342] = 10342, - [10343] = 10343, - [10344] = 10021, - [10345] = 9775, - [10346] = 10268, - [10347] = 10036, - [10348] = 10026, - [10349] = 9775, - [10350] = 10268, - [10351] = 10036, - [10352] = 10026, - [10353] = 9775, - [10354] = 10268, - [10355] = 10355, - [10356] = 10026, - [10357] = 9775, - [10358] = 10268, - [10359] = 10036, - [10360] = 10026, - [10361] = 9775, - [10362] = 10362, - [10363] = 10268, - [10364] = 10036, - [10365] = 10268, - [10366] = 9860, - [10367] = 10036, - [10368] = 10026, - [10369] = 9775, - [10370] = 10268, - [10371] = 10036, - [10372] = 10026, - [10373] = 9946, - [10374] = 9775, - [10375] = 10268, - [10376] = 10036, - [10377] = 10026, - [10378] = 9775, - [10379] = 10268, - [10380] = 10036, - [10381] = 10026, - [10382] = 9775, - [10383] = 10268, - [10384] = 10036, - [10385] = 10026, - [10386] = 9775, - [10387] = 10268, - [10388] = 10036, - [10389] = 10026, - [10390] = 9775, - [10391] = 10268, - [10392] = 10036, - [10393] = 10026, - [10394] = 9775, - [10395] = 10268, - [10396] = 10036, - [10397] = 10026, - [10398] = 9775, - [10399] = 10268, - [10400] = 10026, - [10401] = 9775, - [10402] = 10268, - [10403] = 10026, - [10404] = 9775, - [10405] = 10405, - [10406] = 10268, - [10407] = 9876, - [10408] = 10026, - [10409] = 9775, - [10410] = 10268, - [10411] = 9754, - [10412] = 10026, - [10413] = 9761, - [10414] = 9775, - [10415] = 10268, - [10416] = 9946, - [10417] = 9942, - [10418] = 9946, - [10419] = 9942, - [10420] = 9946, - [10421] = 9942, - [10422] = 9946, - [10423] = 9942, - [10424] = 10026, - [10425] = 9775, - [10426] = 10003, - [10427] = 10268, - [10428] = 10026, - [10429] = 9775, - [10430] = 10036, - [10431] = 10431, - [10432] = 9751, - [10433] = 9805, - [10434] = 10003, - [10435] = 9804, - [10436] = 9754, - [10437] = 10003, - [10438] = 10003, - [10439] = 10036, - [10440] = 9761, - [10441] = 10441, + [10022] = 9498, + [10023] = 9733, + [10024] = 9960, + [10025] = 9960, + [10026] = 9601, + [10027] = 9552, + [10028] = 9596, + [10029] = 9733, + [10030] = 9552, + [10031] = 9465, + [10032] = 9497, + [10033] = 9601, + [10034] = 9596, + [10035] = 9733, + [10036] = 9960, + [10037] = 9466, + [10038] = 9497, + [10039] = 9472, + [10040] = 9601, + [10041] = 9596, + [10042] = 9733, + [10043] = 9960, + [10044] = 9497, + [10045] = 9601, + [10046] = 9491, + [10047] = 9596, + [10048] = 9733, + [10049] = 9960, + [10050] = 9497, + [10051] = 9601, + [10052] = 9733, + [10053] = 9960, + [10054] = 9497, + [10055] = 9601, + [10056] = 9488, + [10057] = 10057, + [10058] = 9733, + [10059] = 9960, + [10060] = 9497, + [10061] = 9601, + [10062] = 9733, + [10063] = 9491, + [10064] = 9487, + [10065] = 9479, + [10066] = 9520, + [10067] = 9566, + [10068] = 9472, + [10069] = 9960, + [10070] = 9497, + [10071] = 9601, + [10072] = 9733, + [10073] = 9960, + [10074] = 9497, + [10075] = 9596, + [10076] = 9733, + [10077] = 9960, + [10078] = 9498, + [10079] = 9479, + [10080] = 9497, + [10081] = 9960, + [10082] = 9492, + [10083] = 9497, + [10084] = 9601, + [10085] = 9733, + [10086] = 9960, + [10087] = 9498, + [10088] = 9497, + [10089] = 9601, + [10090] = 9502, + [10091] = 9733, + [10092] = 9960, + [10093] = 9497, + [10094] = 9601, + [10095] = 9733, + [10096] = 9960, + [10097] = 9497, + [10098] = 9601, + [10099] = 9733, + [10100] = 9960, + [10101] = 9497, + [10102] = 9601, + [10103] = 9733, + [10104] = 9960, + [10105] = 9497, + [10106] = 9601, + [10107] = 9733, + [10108] = 9960, + [10109] = 9497, + [10110] = 9601, + [10111] = 9733, + [10112] = 9960, + [10113] = 9601, + [10114] = 9733, + [10115] = 9960, + [10116] = 9601, + [10117] = 9487, + [10118] = 9733, + [10119] = 9488, + [10120] = 9960, + [10121] = 9601, + [10122] = 9733, + [10123] = 10123, + [10124] = 9960, + [10125] = 9472, + [10126] = 9601, + [10127] = 9733, + [10128] = 9502, + [10129] = 9506, + [10130] = 9502, + [10131] = 9506, + [10132] = 9502, + [10133] = 9506, + [10134] = 9502, + [10135] = 9506, + [10136] = 9960, + [10137] = 9601, + [10138] = 9582, + [10139] = 9733, + [10140] = 9960, + [10141] = 9601, + [10142] = 9733, + [10143] = 9487, + [10144] = 9520, + [10145] = 9497, + [10146] = 9582, + [10147] = 9468, + [10148] = 9474, + [10149] = 9582, + [10150] = 9582, + [10151] = 9475, + [10152] = 9601, + [10153] = 10153, }; static inline bool sym__alpha_identifier_character_set_1(int32_t c) { @@ -16678,9 +16389,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(333); if (lookahead == '|') ADVANCE(307); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(317) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); @@ -16728,9 +16437,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(333); if (lookahead == '|') ADVANCE(307); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || @@ -16775,9 +16482,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(333); if (lookahead == '|') ADVANCE(307); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || @@ -16825,9 +16530,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(333); if (lookahead == '|') ADVANCE(307); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || @@ -16870,9 +16573,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(333); if (lookahead == '|') ADVANCE(307); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || @@ -16920,9 +16621,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(333); if (lookahead == '|') ADVANCE(307); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || @@ -16965,9 +16664,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(333); if (lookahead == '|') ADVANCE(307); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || @@ -17011,9 +16708,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(548); if (lookahead == '{') ADVANCE(333); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || @@ -17046,9 +16741,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(596); if (lookahead == 'v') ADVANCE(548); if (lookahead == '{') ADVANCE(333); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(10) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || @@ -17093,9 +16786,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(534); if (lookahead == '{') ADVANCE(333); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(11) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || @@ -17134,9 +16825,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(548); if (lookahead == '{') ADVANCE(333); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || @@ -17182,9 +16871,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(333); if (lookahead == '|') ADVANCE(307); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); @@ -17222,9 +16909,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(333); if (lookahead == '|') ADVANCE(307); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(14) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); @@ -17269,9 +16954,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(333); if (lookahead == '|') ADVANCE(307); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); @@ -17309,9 +16992,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(333); if (lookahead == '|') ADVANCE(307); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); @@ -17356,9 +17037,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(333); if (lookahead == '|') ADVANCE(307); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); @@ -17396,9 +17075,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(333); if (lookahead == '|') ADVANCE(307); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); @@ -17434,9 +17111,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(722); if (lookahead == '{') ADVANCE(333); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(20) if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); END_STATE(); @@ -17471,9 +17146,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(707); if (lookahead == '{') ADVANCE(333); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(21) if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); END_STATE(); @@ -17504,9 +17177,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(538); if (lookahead == 'v') ADVANCE(534); if (lookahead == '{') ADVANCE(333); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(22) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17531,9 +17202,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '`') ADVANCE(316); if (lookahead == '{') ADVANCE(333); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(23) if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); END_STATE(); @@ -17563,9 +17232,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(707); if (lookahead == '{') ADVANCE(333); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(24) if (sym__alpha_identifier_character_set_3(lookahead)) ADVANCE(875); END_STATE(); @@ -17587,9 +17254,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(815); if (lookahead == 's') ADVANCE(761); if (lookahead == 'v') ADVANCE(722); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(25) if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); END_STATE(); @@ -17612,9 +17277,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(823); if (lookahead == 's') ADVANCE(761); if (lookahead == 'v') ADVANCE(707); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(26) if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); END_STATE(); @@ -17637,9 +17300,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(823); if (lookahead == 's') ADVANCE(762); if (lookahead == 'v') ADVANCE(707); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(27) if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); END_STATE(); @@ -17665,9 +17326,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(38); if (lookahead == 'v') ADVANCE(36); if (lookahead == '{') ADVANCE(333); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(28) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17695,9 +17354,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(178); if (lookahead == 'v') ADVANCE(174); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(30) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || @@ -17707,19 +17364,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(29); if (lookahead == 'g') ADVANCE(752); if (lookahead == 's') ADVANCE(762); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(31) if (sym__alpha_identifier_character_set_4(lookahead)) ADVANCE(875); END_STATE(); case 32: if (lookahead == '/') ADVANCE(520); if (lookahead == '\\') ADVANCE(301); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(521); if (lookahead == '\n' || lookahead == '\r') SKIP(32) + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(521); if (lookahead != 0 && lookahead != '\'') ADVANCE(519); END_STATE(); @@ -19367,9 +19022,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(333); if (lookahead == '|') ADVANCE(307); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(317) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); @@ -19415,9 +19068,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(534); if (lookahead == '{') ADVANCE(333); if (lookahead == '}') ADVANCE(334); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(318) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || @@ -19440,10 +19091,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_shebang_line_token1); if (lookahead == '/') ADVANCE(323); if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || lookahead == ' ') ADVANCE(322); if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(324); + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(324); END_STATE(); case 323: ACCEPT_TOKEN(aux_sym_shebang_line_token1); @@ -20458,10 +20110,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_character_literal_token1); if (lookahead == '/') ADVANCE(520); if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || lookahead == ' ') ADVANCE(521); if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && + (lookahead < '\n' || '\r' < lookahead) && lookahead != '\'' && lookahead != '\\') ADVANCE(519); END_STATE(); @@ -23212,9 +22865,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(16); if (lookahead == 'U' || lookahead == 'u') ADVANCE(17); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0) END_STATE(); case 1: @@ -23844,17 +23495,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [14] = {.lex_state = 1, .external_lex_state = 4}, [15] = {.lex_state = 1, .external_lex_state = 4}, [16] = {.lex_state = 1, .external_lex_state = 4}, - [17] = {.lex_state = 1, .external_lex_state = 4}, + [17] = {.lex_state = 1, .external_lex_state = 3}, [18] = {.lex_state = 1, .external_lex_state = 3}, - [19] = {.lex_state = 1, .external_lex_state = 3}, + [19] = {.lex_state = 1, .external_lex_state = 4}, [20] = {.lex_state = 1, .external_lex_state = 4}, - [21] = {.lex_state = 1, .external_lex_state = 3}, - [22] = {.lex_state = 1, .external_lex_state = 4}, - [23] = {.lex_state = 1, .external_lex_state = 4}, + [21] = {.lex_state = 1, .external_lex_state = 4}, + [22] = {.lex_state = 1, .external_lex_state = 3}, + [23] = {.lex_state = 1, .external_lex_state = 3}, [24] = {.lex_state = 1, .external_lex_state = 4}, [25] = {.lex_state = 1, .external_lex_state = 4}, [26] = {.lex_state = 1, .external_lex_state = 4}, - [27] = {.lex_state = 1, .external_lex_state = 3}, + [27] = {.lex_state = 1, .external_lex_state = 4}, [28] = {.lex_state = 1, .external_lex_state = 3}, [29] = {.lex_state = 1, .external_lex_state = 3}, [30] = {.lex_state = 1, .external_lex_state = 3}, @@ -23867,14 +23518,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [37] = {.lex_state = 1, .external_lex_state = 4}, [38] = {.lex_state = 1, .external_lex_state = 4}, [39] = {.lex_state = 1, .external_lex_state = 4}, - [40] = {.lex_state = 1, .external_lex_state = 3}, - [41] = {.lex_state = 1, .external_lex_state = 3}, - [42] = {.lex_state = 1, .external_lex_state = 3}, + [40] = {.lex_state = 1, .external_lex_state = 4}, + [41] = {.lex_state = 1, .external_lex_state = 4}, + [42] = {.lex_state = 1, .external_lex_state = 4}, [43] = {.lex_state = 1, .external_lex_state = 4}, - [44] = {.lex_state = 1, .external_lex_state = 4}, - [45] = {.lex_state = 1, .external_lex_state = 4}, + [44] = {.lex_state = 1, .external_lex_state = 3}, + [45] = {.lex_state = 1, .external_lex_state = 3}, [46] = {.lex_state = 1, .external_lex_state = 3}, - [47] = {.lex_state = 1, .external_lex_state = 4}, + [47] = {.lex_state = 1, .external_lex_state = 3}, [48] = {.lex_state = 1, .external_lex_state = 4}, [49] = {.lex_state = 1, .external_lex_state = 4}, [50] = {.lex_state = 1, .external_lex_state = 4}, @@ -23922,7 +23573,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [92] = {.lex_state = 318, .external_lex_state = 2}, [93] = {.lex_state = 318, .external_lex_state = 2}, [94] = {.lex_state = 318, .external_lex_state = 2}, - [95] = {.lex_state = 318, .external_lex_state = 5}, + [95] = {.lex_state = 318, .external_lex_state = 2}, [96] = {.lex_state = 318, .external_lex_state = 2}, [97] = {.lex_state = 318, .external_lex_state = 2}, [98] = {.lex_state = 318, .external_lex_state = 2}, @@ -23933,10 +23584,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [103] = {.lex_state = 318, .external_lex_state = 2}, [104] = {.lex_state = 318, .external_lex_state = 2}, [105] = {.lex_state = 318, .external_lex_state = 2}, - [106] = {.lex_state = 318, .external_lex_state = 2}, + [106] = {.lex_state = 318, .external_lex_state = 5}, [107] = {.lex_state = 318, .external_lex_state = 2}, - [108] = {.lex_state = 318, .external_lex_state = 5}, - [109] = {.lex_state = 318, .external_lex_state = 2}, + [108] = {.lex_state = 318, .external_lex_state = 2}, + [109] = {.lex_state = 318, .external_lex_state = 5}, [110] = {.lex_state = 318, .external_lex_state = 2}, [111] = {.lex_state = 318, .external_lex_state = 2}, [112] = {.lex_state = 318, .external_lex_state = 2}, @@ -24052,7 +23703,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [222] = {.lex_state = 318, .external_lex_state = 2}, [223] = {.lex_state = 318, .external_lex_state = 2}, [224] = {.lex_state = 318, .external_lex_state = 2}, - [225] = {.lex_state = 318, .external_lex_state = 2}, + [225] = {.lex_state = 1, .external_lex_state = 3}, [226] = {.lex_state = 318, .external_lex_state = 2}, [227] = {.lex_state = 318, .external_lex_state = 2}, [228] = {.lex_state = 318, .external_lex_state = 2}, @@ -24079,7 +23730,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [249] = {.lex_state = 318, .external_lex_state = 2}, [250] = {.lex_state = 318, .external_lex_state = 2}, [251] = {.lex_state = 318, .external_lex_state = 2}, - [252] = {.lex_state = 1, .external_lex_state = 3}, + [252] = {.lex_state = 318, .external_lex_state = 2}, [253] = {.lex_state = 318, .external_lex_state = 2}, [254] = {.lex_state = 318, .external_lex_state = 2}, [255] = {.lex_state = 318, .external_lex_state = 2}, @@ -24126,18 +23777,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [296] = {.lex_state = 2, .external_lex_state = 4}, [297] = {.lex_state = 2, .external_lex_state = 4}, [298] = {.lex_state = 2, .external_lex_state = 3}, - [299] = {.lex_state = 2, .external_lex_state = 4}, + [299] = {.lex_state = 1, .external_lex_state = 4}, [300] = {.lex_state = 1, .external_lex_state = 4}, [301] = {.lex_state = 1, .external_lex_state = 4}, - [302] = {.lex_state = 1, .external_lex_state = 4}, - [303] = {.lex_state = 1, .external_lex_state = 4}, + [302] = {.lex_state = 2, .external_lex_state = 4}, + [303] = {.lex_state = 2, .external_lex_state = 4}, [304] = {.lex_state = 1, .external_lex_state = 4}, [305] = {.lex_state = 1, .external_lex_state = 4}, [306] = {.lex_state = 1, .external_lex_state = 4}, [307] = {.lex_state = 1, .external_lex_state = 4}, [308] = {.lex_state = 1, .external_lex_state = 4}, [309] = {.lex_state = 1, .external_lex_state = 4}, - [310] = {.lex_state = 2, .external_lex_state = 4}, + [310] = {.lex_state = 1, .external_lex_state = 4}, [311] = {.lex_state = 1, .external_lex_state = 4}, [312] = {.lex_state = 1, .external_lex_state = 4}, [313] = {.lex_state = 2, .external_lex_state = 3}, @@ -24189,7 +23840,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [359] = {.lex_state = 1, .external_lex_state = 4}, [360] = {.lex_state = 1, .external_lex_state = 4}, [361] = {.lex_state = 1, .external_lex_state = 4}, - [362] = {.lex_state = 1, .external_lex_state = 4}, + [362] = {.lex_state = 2, .external_lex_state = 4}, [363] = {.lex_state = 1, .external_lex_state = 4}, [364] = {.lex_state = 1, .external_lex_state = 4}, [365] = {.lex_state = 1, .external_lex_state = 4}, @@ -24198,11 +23849,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [368] = {.lex_state = 1, .external_lex_state = 4}, [369] = {.lex_state = 1, .external_lex_state = 4}, [370] = {.lex_state = 1, .external_lex_state = 4}, - [371] = {.lex_state = 1, .external_lex_state = 4}, - [372] = {.lex_state = 2, .external_lex_state = 4}, + [371] = {.lex_state = 2, .external_lex_state = 4}, + [372] = {.lex_state = 1, .external_lex_state = 4}, [373] = {.lex_state = 1, .external_lex_state = 4}, [374] = {.lex_state = 1, .external_lex_state = 4}, - [375] = {.lex_state = 2, .external_lex_state = 4}, + [375] = {.lex_state = 1, .external_lex_state = 4}, [376] = {.lex_state = 1, .external_lex_state = 4}, [377] = {.lex_state = 1, .external_lex_state = 4}, [378] = {.lex_state = 1, .external_lex_state = 4}, @@ -24452,34 +24103,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [622] = {.lex_state = 1, .external_lex_state = 4}, [623] = {.lex_state = 1, .external_lex_state = 4}, [624] = {.lex_state = 1, .external_lex_state = 4}, - [625] = {.lex_state = 1, .external_lex_state = 4}, - [626] = {.lex_state = 1, .external_lex_state = 4}, - [627] = {.lex_state = 1, .external_lex_state = 4}, - [628] = {.lex_state = 1, .external_lex_state = 4}, - [629] = {.lex_state = 1, .external_lex_state = 4}, - [630] = {.lex_state = 1, .external_lex_state = 4}, - [631] = {.lex_state = 1, .external_lex_state = 4}, - [632] = {.lex_state = 1, .external_lex_state = 4}, - [633] = {.lex_state = 1, .external_lex_state = 4}, - [634] = {.lex_state = 1, .external_lex_state = 4}, - [635] = {.lex_state = 1, .external_lex_state = 4}, - [636] = {.lex_state = 1, .external_lex_state = 4}, + [625] = {.lex_state = 13, .external_lex_state = 6}, + [626] = {.lex_state = 13, .external_lex_state = 6}, + [627] = {.lex_state = 13, .external_lex_state = 6}, + [628] = {.lex_state = 13, .external_lex_state = 6}, + [629] = {.lex_state = 13, .external_lex_state = 6}, + [630] = {.lex_state = 13, .external_lex_state = 6}, + [631] = {.lex_state = 13, .external_lex_state = 6}, + [632] = {.lex_state = 13, .external_lex_state = 6}, + [633] = {.lex_state = 13, .external_lex_state = 6}, + [634] = {.lex_state = 13, .external_lex_state = 6}, + [635] = {.lex_state = 13, .external_lex_state = 6}, + [636] = {.lex_state = 13, .external_lex_state = 6}, [637] = {.lex_state = 1, .external_lex_state = 4}, [638] = {.lex_state = 1, .external_lex_state = 4}, [639] = {.lex_state = 1, .external_lex_state = 4}, [640] = {.lex_state = 1, .external_lex_state = 4}, - [641] = {.lex_state = 13, .external_lex_state = 6}, - [642] = {.lex_state = 13, .external_lex_state = 6}, - [643] = {.lex_state = 13, .external_lex_state = 6}, - [644] = {.lex_state = 13, .external_lex_state = 6}, - [645] = {.lex_state = 13, .external_lex_state = 6}, - [646] = {.lex_state = 13, .external_lex_state = 6}, - [647] = {.lex_state = 13, .external_lex_state = 6}, - [648] = {.lex_state = 13, .external_lex_state = 6}, - [649] = {.lex_state = 13, .external_lex_state = 6}, - [650] = {.lex_state = 13, .external_lex_state = 6}, - [651] = {.lex_state = 13, .external_lex_state = 6}, - [652] = {.lex_state = 13, .external_lex_state = 6}, + [641] = {.lex_state = 1, .external_lex_state = 4}, + [642] = {.lex_state = 1, .external_lex_state = 4}, + [643] = {.lex_state = 1, .external_lex_state = 4}, + [644] = {.lex_state = 1, .external_lex_state = 4}, + [645] = {.lex_state = 1, .external_lex_state = 4}, + [646] = {.lex_state = 1, .external_lex_state = 4}, + [647] = {.lex_state = 1, .external_lex_state = 4}, + [648] = {.lex_state = 1, .external_lex_state = 4}, + [649] = {.lex_state = 1, .external_lex_state = 4}, + [650] = {.lex_state = 1, .external_lex_state = 4}, + [651] = {.lex_state = 1, .external_lex_state = 4}, + [652] = {.lex_state = 1, .external_lex_state = 4}, [653] = {.lex_state = 1, .external_lex_state = 4}, [654] = {.lex_state = 1, .external_lex_state = 4}, [655] = {.lex_state = 1, .external_lex_state = 4}, @@ -24502,22 +24153,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [672] = {.lex_state = 1, .external_lex_state = 4}, [673] = {.lex_state = 1, .external_lex_state = 4}, [674] = {.lex_state = 1, .external_lex_state = 4}, - [675] = {.lex_state = 1, .external_lex_state = 4}, - [676] = {.lex_state = 1, .external_lex_state = 4}, - [677] = {.lex_state = 1, .external_lex_state = 4}, - [678] = {.lex_state = 1, .external_lex_state = 4}, - [679] = {.lex_state = 1, .external_lex_state = 4}, - [680] = {.lex_state = 1, .external_lex_state = 4}, - [681] = {.lex_state = 1, .external_lex_state = 4}, - [682] = {.lex_state = 1, .external_lex_state = 4}, - [683] = {.lex_state = 1, .external_lex_state = 4}, - [684] = {.lex_state = 1, .external_lex_state = 4}, - [685] = {.lex_state = 1, .external_lex_state = 4}, - [686] = {.lex_state = 1, .external_lex_state = 4}, - [687] = {.lex_state = 1, .external_lex_state = 4}, - [688] = {.lex_state = 1, .external_lex_state = 4}, - [689] = {.lex_state = 1, .external_lex_state = 4}, - [690] = {.lex_state = 1, .external_lex_state = 4}, + [675] = {.lex_state = 13, .external_lex_state = 7}, + [676] = {.lex_state = 13, .external_lex_state = 7}, + [677] = {.lex_state = 13, .external_lex_state = 7}, + [678] = {.lex_state = 12, .external_lex_state = 2}, + [679] = {.lex_state = 12, .external_lex_state = 2}, + [680] = {.lex_state = 12, .external_lex_state = 2}, + [681] = {.lex_state = 12, .external_lex_state = 2}, + [682] = {.lex_state = 13, .external_lex_state = 7}, + [683] = {.lex_state = 12, .external_lex_state = 2}, + [684] = {.lex_state = 13, .external_lex_state = 7}, + [685] = {.lex_state = 12, .external_lex_state = 2}, + [686] = {.lex_state = 13, .external_lex_state = 7}, + [687] = {.lex_state = 12, .external_lex_state = 2}, + [688] = {.lex_state = 13, .external_lex_state = 7}, + [689] = {.lex_state = 12, .external_lex_state = 2}, + [690] = {.lex_state = 12, .external_lex_state = 2}, [691] = {.lex_state = 13, .external_lex_state = 7}, [692] = {.lex_state = 12, .external_lex_state = 2}, [693] = {.lex_state = 12, .external_lex_state = 2}, @@ -24533,148 +24184,148 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [703] = {.lex_state = 12, .external_lex_state = 2}, [704] = {.lex_state = 13, .external_lex_state = 7}, [705] = {.lex_state = 12, .external_lex_state = 2}, - [706] = {.lex_state = 12, .external_lex_state = 2}, - [707] = {.lex_state = 12, .external_lex_state = 2}, + [706] = {.lex_state = 13, .external_lex_state = 7}, + [707] = {.lex_state = 13, .external_lex_state = 7}, [708] = {.lex_state = 13, .external_lex_state = 7}, - [709] = {.lex_state = 13, .external_lex_state = 7}, - [710] = {.lex_state = 13, .external_lex_state = 7}, - [711] = {.lex_state = 13, .external_lex_state = 7}, - [712] = {.lex_state = 13, .external_lex_state = 7}, - [713] = {.lex_state = 12, .external_lex_state = 2}, - [714] = {.lex_state = 13, .external_lex_state = 7}, - [715] = {.lex_state = 12, .external_lex_state = 2}, - [716] = {.lex_state = 12, .external_lex_state = 2}, - [717] = {.lex_state = 12, .external_lex_state = 2}, - [718] = {.lex_state = 13, .external_lex_state = 7}, - [719] = {.lex_state = 12, .external_lex_state = 2}, - [720] = {.lex_state = 12, .external_lex_state = 2}, - [721] = {.lex_state = 12, .external_lex_state = 2}, - [722] = {.lex_state = 13, .external_lex_state = 7}, - [723] = {.lex_state = 12, .external_lex_state = 2}, - [724] = {.lex_state = 13, .external_lex_state = 7}, - [725] = {.lex_state = 12, .external_lex_state = 2}, - [726] = {.lex_state = 13, .external_lex_state = 7}, - [727] = {.lex_state = 12, .external_lex_state = 2}, + [709] = {.lex_state = 12, .external_lex_state = 2}, + [710] = {.lex_state = 12, .external_lex_state = 2}, + [711] = {.lex_state = 12, .external_lex_state = 2}, + [712] = {.lex_state = 13, .external_lex_state = 6}, + [713] = {.lex_state = 1, .external_lex_state = 4}, + [714] = {.lex_state = 13, .external_lex_state = 6}, + [715] = {.lex_state = 13, .external_lex_state = 6}, + [716] = {.lex_state = 13, .external_lex_state = 6}, + [717] = {.lex_state = 13, .external_lex_state = 6}, + [718] = {.lex_state = 1, .external_lex_state = 4}, + [719] = {.lex_state = 1, .external_lex_state = 4}, + [720] = {.lex_state = 1, .external_lex_state = 4}, + [721] = {.lex_state = 13, .external_lex_state = 6}, + [722] = {.lex_state = 1, .external_lex_state = 4}, + [723] = {.lex_state = 1, .external_lex_state = 4}, + [724] = {.lex_state = 1, .external_lex_state = 4}, + [725] = {.lex_state = 13, .external_lex_state = 6}, + [726] = {.lex_state = 13, .external_lex_state = 6}, + [727] = {.lex_state = 1, .external_lex_state = 4}, [728] = {.lex_state = 1, .external_lex_state = 4}, [729] = {.lex_state = 13, .external_lex_state = 6}, [730] = {.lex_state = 1, .external_lex_state = 4}, [731] = {.lex_state = 1, .external_lex_state = 4}, [732] = {.lex_state = 1, .external_lex_state = 4}, [733] = {.lex_state = 1, .external_lex_state = 4}, - [734] = {.lex_state = 1, .external_lex_state = 4}, - [735] = {.lex_state = 1, .external_lex_state = 4}, + [734] = {.lex_state = 13, .external_lex_state = 6}, + [735] = {.lex_state = 13, .external_lex_state = 6}, [736] = {.lex_state = 1, .external_lex_state = 4}, [737] = {.lex_state = 1, .external_lex_state = 4}, - [738] = {.lex_state = 1, .external_lex_state = 4}, + [738] = {.lex_state = 13, .external_lex_state = 6}, [739] = {.lex_state = 1, .external_lex_state = 4}, [740] = {.lex_state = 1, .external_lex_state = 4}, [741] = {.lex_state = 1, .external_lex_state = 4}, [742] = {.lex_state = 1, .external_lex_state = 4}, - [743] = {.lex_state = 13, .external_lex_state = 6}, - [744] = {.lex_state = 13, .external_lex_state = 6}, - [745] = {.lex_state = 13, .external_lex_state = 6}, - [746] = {.lex_state = 13, .external_lex_state = 6}, + [743] = {.lex_state = 1, .external_lex_state = 4}, + [744] = {.lex_state = 1, .external_lex_state = 4}, + [745] = {.lex_state = 1, .external_lex_state = 4}, + [746] = {.lex_state = 1, .external_lex_state = 4}, [747] = {.lex_state = 1, .external_lex_state = 4}, - [748] = {.lex_state = 13, .external_lex_state = 6}, + [748] = {.lex_state = 1, .external_lex_state = 4}, [749] = {.lex_state = 1, .external_lex_state = 4}, [750] = {.lex_state = 1, .external_lex_state = 4}, [751] = {.lex_state = 1, .external_lex_state = 4}, - [752] = {.lex_state = 1, .external_lex_state = 4}, - [753] = {.lex_state = 1, .external_lex_state = 4}, - [754] = {.lex_state = 13, .external_lex_state = 6}, - [755] = {.lex_state = 13, .external_lex_state = 6}, - [756] = {.lex_state = 1, .external_lex_state = 4}, - [757] = {.lex_state = 13, .external_lex_state = 6}, - [758] = {.lex_state = 13, .external_lex_state = 6}, - [759] = {.lex_state = 13, .external_lex_state = 6}, - [760] = {.lex_state = 1, .external_lex_state = 4}, - [761] = {.lex_state = 1, .external_lex_state = 4}, - [762] = {.lex_state = 13, .external_lex_state = 6}, - [763] = {.lex_state = 1, .external_lex_state = 4}, + [752] = {.lex_state = 13, .external_lex_state = 7}, + [753] = {.lex_state = 9, .external_lex_state = 2}, + [754] = {.lex_state = 9, .external_lex_state = 2}, + [755] = {.lex_state = 9, .external_lex_state = 2}, + [756] = {.lex_state = 13, .external_lex_state = 7}, + [757] = {.lex_state = 13, .external_lex_state = 7}, + [758] = {.lex_state = 13, .external_lex_state = 7}, + [759] = {.lex_state = 13, .external_lex_state = 7}, + [760] = {.lex_state = 13, .external_lex_state = 7}, + [761] = {.lex_state = 13, .external_lex_state = 7}, + [762] = {.lex_state = 9, .external_lex_state = 2}, + [763] = {.lex_state = 9, .external_lex_state = 2}, [764] = {.lex_state = 1, .external_lex_state = 4}, - [765] = {.lex_state = 1, .external_lex_state = 4}, - [766] = {.lex_state = 1, .external_lex_state = 4}, - [767] = {.lex_state = 1, .external_lex_state = 4}, + [765] = {.lex_state = 9, .external_lex_state = 2}, + [766] = {.lex_state = 9, .external_lex_state = 2}, + [767] = {.lex_state = 9, .external_lex_state = 2}, [768] = {.lex_state = 9, .external_lex_state = 2}, [769] = {.lex_state = 9, .external_lex_state = 2}, [770] = {.lex_state = 13, .external_lex_state = 7}, [771] = {.lex_state = 9, .external_lex_state = 2}, [772] = {.lex_state = 13, .external_lex_state = 7}, - [773] = {.lex_state = 9, .external_lex_state = 2}, - [774] = {.lex_state = 9, .external_lex_state = 2}, - [775] = {.lex_state = 1, .external_lex_state = 4}, + [773] = {.lex_state = 1, .external_lex_state = 4}, + [774] = {.lex_state = 1, .external_lex_state = 4}, + [775] = {.lex_state = 13, .external_lex_state = 7}, [776] = {.lex_state = 1, .external_lex_state = 4}, - [777] = {.lex_state = 9, .external_lex_state = 2}, + [777] = {.lex_state = 1, .external_lex_state = 4}, [778] = {.lex_state = 1, .external_lex_state = 4}, [779] = {.lex_state = 9, .external_lex_state = 2}, - [780] = {.lex_state = 1, .external_lex_state = 4}, - [781] = {.lex_state = 13, .external_lex_state = 7}, + [780] = {.lex_state = 9, .external_lex_state = 2}, + [781] = {.lex_state = 9, .external_lex_state = 2}, [782] = {.lex_state = 9, .external_lex_state = 2}, [783] = {.lex_state = 13, .external_lex_state = 7}, - [784] = {.lex_state = 13, .external_lex_state = 7}, - [785] = {.lex_state = 9, .external_lex_state = 2}, + [784] = {.lex_state = 9, .external_lex_state = 2}, + [785] = {.lex_state = 1, .external_lex_state = 4}, [786] = {.lex_state = 9, .external_lex_state = 2}, - [787] = {.lex_state = 13, .external_lex_state = 7}, + [787] = {.lex_state = 9, .external_lex_state = 2}, [788] = {.lex_state = 9, .external_lex_state = 2}, [789] = {.lex_state = 9, .external_lex_state = 2}, [790] = {.lex_state = 9, .external_lex_state = 2}, - [791] = {.lex_state = 13, .external_lex_state = 7}, + [791] = {.lex_state = 9, .external_lex_state = 2}, [792] = {.lex_state = 9, .external_lex_state = 2}, - [793] = {.lex_state = 13, .external_lex_state = 7}, - [794] = {.lex_state = 1, .external_lex_state = 4}, + [793] = {.lex_state = 9, .external_lex_state = 2}, + [794] = {.lex_state = 9, .external_lex_state = 2}, [795] = {.lex_state = 9, .external_lex_state = 2}, [796] = {.lex_state = 9, .external_lex_state = 2}, - [797] = {.lex_state = 9, .external_lex_state = 2}, - [798] = {.lex_state = 9, .external_lex_state = 2}, - [799] = {.lex_state = 1, .external_lex_state = 4}, - [800] = {.lex_state = 1, .external_lex_state = 4}, - [801] = {.lex_state = 9, .external_lex_state = 2}, - [802] = {.lex_state = 9, .external_lex_state = 2}, - [803] = {.lex_state = 9, .external_lex_state = 2}, - [804] = {.lex_state = 9, .external_lex_state = 2}, - [805] = {.lex_state = 13, .external_lex_state = 7}, - [806] = {.lex_state = 13, .external_lex_state = 7}, - [807] = {.lex_state = 13, .external_lex_state = 7}, - [808] = {.lex_state = 1, .external_lex_state = 4}, - [809] = {.lex_state = 9, .external_lex_state = 2}, - [810] = {.lex_state = 13, .external_lex_state = 7}, - [811] = {.lex_state = 9, .external_lex_state = 2}, - [812] = {.lex_state = 9, .external_lex_state = 2}, - [813] = {.lex_state = 9, .external_lex_state = 2}, - [814] = {.lex_state = 9, .external_lex_state = 2}, - [815] = {.lex_state = 13, .external_lex_state = 6}, - [816] = {.lex_state = 13, .external_lex_state = 6}, - [817] = {.lex_state = 13, .external_lex_state = 6}, - [818] = {.lex_state = 13, .external_lex_state = 6}, + [797] = {.lex_state = 13, .external_lex_state = 7}, + [798] = {.lex_state = 1, .external_lex_state = 4}, + [799] = {.lex_state = 13, .external_lex_state = 6}, + [800] = {.lex_state = 13, .external_lex_state = 6}, + [801] = {.lex_state = 1, .external_lex_state = 4}, + [802] = {.lex_state = 13, .external_lex_state = 6}, + [803] = {.lex_state = 13, .external_lex_state = 6}, + [804] = {.lex_state = 13, .external_lex_state = 6}, + [805] = {.lex_state = 13, .external_lex_state = 6}, + [806] = {.lex_state = 13, .external_lex_state = 6}, + [807] = {.lex_state = 13, .external_lex_state = 6}, + [808] = {.lex_state = 13, .external_lex_state = 6}, + [809] = {.lex_state = 13, .external_lex_state = 6}, + [810] = {.lex_state = 13, .external_lex_state = 6}, + [811] = {.lex_state = 13, .external_lex_state = 6}, + [812] = {.lex_state = 1, .external_lex_state = 4}, + [813] = {.lex_state = 1, .external_lex_state = 4}, + [814] = {.lex_state = 1, .external_lex_state = 4}, + [815] = {.lex_state = 1, .external_lex_state = 4}, + [816] = {.lex_state = 1, .external_lex_state = 4}, + [817] = {.lex_state = 12, .external_lex_state = 2}, + [818] = {.lex_state = 1, .external_lex_state = 4}, [819] = {.lex_state = 1, .external_lex_state = 4}, - [820] = {.lex_state = 13, .external_lex_state = 6}, - [821] = {.lex_state = 13, .external_lex_state = 6}, - [822] = {.lex_state = 13, .external_lex_state = 6}, - [823] = {.lex_state = 13, .external_lex_state = 6}, - [824] = {.lex_state = 13, .external_lex_state = 6}, - [825] = {.lex_state = 13, .external_lex_state = 6}, - [826] = {.lex_state = 13, .external_lex_state = 6}, - [827] = {.lex_state = 13, .external_lex_state = 6}, + [820] = {.lex_state = 1, .external_lex_state = 4}, + [821] = {.lex_state = 1, .external_lex_state = 4}, + [822] = {.lex_state = 1, .external_lex_state = 4}, + [823] = {.lex_state = 1, .external_lex_state = 4}, + [824] = {.lex_state = 1, .external_lex_state = 4}, + [825] = {.lex_state = 1, .external_lex_state = 4}, + [826] = {.lex_state = 1, .external_lex_state = 4}, + [827] = {.lex_state = 1, .external_lex_state = 4}, [828] = {.lex_state = 1, .external_lex_state = 4}, [829] = {.lex_state = 1, .external_lex_state = 4}, [830] = {.lex_state = 1, .external_lex_state = 4}, [831] = {.lex_state = 1, .external_lex_state = 4}, [832] = {.lex_state = 1, .external_lex_state = 4}, [833] = {.lex_state = 1, .external_lex_state = 4}, - [834] = {.lex_state = 1, .external_lex_state = 4}, + [834] = {.lex_state = 1, .external_lex_state = 3}, [835] = {.lex_state = 1, .external_lex_state = 4}, - [836] = {.lex_state = 12, .external_lex_state = 2}, + [836] = {.lex_state = 1, .external_lex_state = 4}, [837] = {.lex_state = 1, .external_lex_state = 4}, [838] = {.lex_state = 1, .external_lex_state = 4}, [839] = {.lex_state = 1, .external_lex_state = 4}, - [840] = {.lex_state = 1, .external_lex_state = 4}, + [840] = {.lex_state = 1, .external_lex_state = 3}, [841] = {.lex_state = 1, .external_lex_state = 4}, - [842] = {.lex_state = 1, .external_lex_state = 4}, - [843] = {.lex_state = 1, .external_lex_state = 3}, + [842] = {.lex_state = 1, .external_lex_state = 3}, + [843] = {.lex_state = 1, .external_lex_state = 4}, [844] = {.lex_state = 1, .external_lex_state = 4}, [845] = {.lex_state = 1, .external_lex_state = 4}, [846] = {.lex_state = 1, .external_lex_state = 4}, - [847] = {.lex_state = 1, .external_lex_state = 4}, + [847] = {.lex_state = 1, .external_lex_state = 3}, [848] = {.lex_state = 1, .external_lex_state = 4}, [849] = {.lex_state = 1, .external_lex_state = 4}, [850] = {.lex_state = 1, .external_lex_state = 4}, @@ -24687,7 +24338,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [857] = {.lex_state = 1, .external_lex_state = 4}, [858] = {.lex_state = 1, .external_lex_state = 4}, [859] = {.lex_state = 1, .external_lex_state = 4}, - [860] = {.lex_state = 1, .external_lex_state = 3}, + [860] = {.lex_state = 1, .external_lex_state = 4}, [861] = {.lex_state = 1, .external_lex_state = 4}, [862] = {.lex_state = 1, .external_lex_state = 4}, [863] = {.lex_state = 1, .external_lex_state = 4}, @@ -24697,30 +24348,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [867] = {.lex_state = 1, .external_lex_state = 4}, [868] = {.lex_state = 1, .external_lex_state = 4}, [869] = {.lex_state = 1, .external_lex_state = 4}, - [870] = {.lex_state = 1, .external_lex_state = 4}, - [871] = {.lex_state = 1, .external_lex_state = 3}, - [872] = {.lex_state = 1, .external_lex_state = 4}, - [873] = {.lex_state = 1, .external_lex_state = 4}, - [874] = {.lex_state = 1, .external_lex_state = 4}, - [875] = {.lex_state = 1, .external_lex_state = 3}, - [876] = {.lex_state = 1, .external_lex_state = 4}, + [870] = {.lex_state = 13, .external_lex_state = 7}, + [871] = {.lex_state = 1, .external_lex_state = 4}, + [872] = {.lex_state = 13, .external_lex_state = 7}, + [873] = {.lex_state = 13, .external_lex_state = 7}, + [874] = {.lex_state = 13, .external_lex_state = 7}, + [875] = {.lex_state = 13, .external_lex_state = 7}, + [876] = {.lex_state = 13, .external_lex_state = 7}, [877] = {.lex_state = 1, .external_lex_state = 4}, - [878] = {.lex_state = 1, .external_lex_state = 4}, - [879] = {.lex_state = 1, .external_lex_state = 4}, - [880] = {.lex_state = 1, .external_lex_state = 4}, - [881] = {.lex_state = 1, .external_lex_state = 4}, - [882] = {.lex_state = 1, .external_lex_state = 4}, - [883] = {.lex_state = 1, .external_lex_state = 4}, + [878] = {.lex_state = 13, .external_lex_state = 7}, + [879] = {.lex_state = 13, .external_lex_state = 7}, + [880] = {.lex_state = 13, .external_lex_state = 7}, + [881] = {.lex_state = 13, .external_lex_state = 7}, + [882] = {.lex_state = 13, .external_lex_state = 7}, + [883] = {.lex_state = 13, .external_lex_state = 7}, [884] = {.lex_state = 1, .external_lex_state = 4}, - [885] = {.lex_state = 13, .external_lex_state = 7}, - [886] = {.lex_state = 13, .external_lex_state = 7}, + [885] = {.lex_state = 1, .external_lex_state = 4}, + [886] = {.lex_state = 1, .external_lex_state = 4}, [887] = {.lex_state = 1, .external_lex_state = 4}, [888] = {.lex_state = 1, .external_lex_state = 4}, [889] = {.lex_state = 1, .external_lex_state = 4}, [890] = {.lex_state = 1, .external_lex_state = 4}, - [891] = {.lex_state = 13, .external_lex_state = 7}, + [891] = {.lex_state = 1, .external_lex_state = 4}, [892] = {.lex_state = 1, .external_lex_state = 4}, - [893] = {.lex_state = 13, .external_lex_state = 7}, + [893] = {.lex_state = 1, .external_lex_state = 4}, [894] = {.lex_state = 1, .external_lex_state = 4}, [895] = {.lex_state = 1, .external_lex_state = 4}, [896] = {.lex_state = 1, .external_lex_state = 4}, @@ -24753,7 +24404,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [923] = {.lex_state = 1, .external_lex_state = 4}, [924] = {.lex_state = 1, .external_lex_state = 4}, [925] = {.lex_state = 1, .external_lex_state = 4}, - [926] = {.lex_state = 1, .external_lex_state = 4}, + [926] = {.lex_state = 13, .external_lex_state = 6}, [927] = {.lex_state = 1, .external_lex_state = 4}, [928] = {.lex_state = 1, .external_lex_state = 4}, [929] = {.lex_state = 1, .external_lex_state = 4}, @@ -24762,121 +24413,121 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [932] = {.lex_state = 1, .external_lex_state = 4}, [933] = {.lex_state = 1, .external_lex_state = 4}, [934] = {.lex_state = 1, .external_lex_state = 4}, - [935] = {.lex_state = 13, .external_lex_state = 7}, + [935] = {.lex_state = 1, .external_lex_state = 4}, [936] = {.lex_state = 1, .external_lex_state = 4}, - [937] = {.lex_state = 13, .external_lex_state = 7}, - [938] = {.lex_state = 13, .external_lex_state = 7}, - [939] = {.lex_state = 13, .external_lex_state = 7}, + [937] = {.lex_state = 1, .external_lex_state = 4}, + [938] = {.lex_state = 1, .external_lex_state = 4}, + [939] = {.lex_state = 1, .external_lex_state = 4}, [940] = {.lex_state = 1, .external_lex_state = 4}, - [941] = {.lex_state = 13, .external_lex_state = 7}, + [941] = {.lex_state = 1, .external_lex_state = 4}, [942] = {.lex_state = 1, .external_lex_state = 4}, - [943] = {.lex_state = 13, .external_lex_state = 7}, + [943] = {.lex_state = 1, .external_lex_state = 4}, [944] = {.lex_state = 1, .external_lex_state = 4}, [945] = {.lex_state = 1, .external_lex_state = 4}, - [946] = {.lex_state = 13, .external_lex_state = 7}, + [946] = {.lex_state = 1, .external_lex_state = 4}, [947] = {.lex_state = 1, .external_lex_state = 4}, - [948] = {.lex_state = 13, .external_lex_state = 7}, + [948] = {.lex_state = 2, .external_lex_state = 4}, [949] = {.lex_state = 2, .external_lex_state = 4}, - [950] = {.lex_state = 1, .external_lex_state = 4}, - [951] = {.lex_state = 1, .external_lex_state = 4}, + [950] = {.lex_state = 2, .external_lex_state = 4}, + [951] = {.lex_state = 2, .external_lex_state = 4}, [952] = {.lex_state = 1, .external_lex_state = 4}, - [953] = {.lex_state = 1, .external_lex_state = 4}, - [954] = {.lex_state = 13, .external_lex_state = 6}, - [955] = {.lex_state = 2, .external_lex_state = 4}, - [956] = {.lex_state = 2, .external_lex_state = 4}, - [957] = {.lex_state = 1, .external_lex_state = 4}, - [958] = {.lex_state = 1, .external_lex_state = 4}, - [959] = {.lex_state = 1, .external_lex_state = 4}, + [953] = {.lex_state = 13, .external_lex_state = 6}, + [954] = {.lex_state = 1, .external_lex_state = 4}, + [955] = {.lex_state = 1, .external_lex_state = 4}, + [956] = {.lex_state = 1, .external_lex_state = 4}, + [957] = {.lex_state = 2, .external_lex_state = 4}, + [958] = {.lex_state = 2, .external_lex_state = 4}, + [959] = {.lex_state = 13, .external_lex_state = 6}, [960] = {.lex_state = 1, .external_lex_state = 4}, - [961] = {.lex_state = 3, .external_lex_state = 4}, - [962] = {.lex_state = 1, .external_lex_state = 4}, - [963] = {.lex_state = 2, .external_lex_state = 4}, - [964] = {.lex_state = 1, .external_lex_state = 4}, - [965] = {.lex_state = 2, .external_lex_state = 4}, + [961] = {.lex_state = 2, .external_lex_state = 4}, + [962] = {.lex_state = 13, .external_lex_state = 6}, + [963] = {.lex_state = 1, .external_lex_state = 4}, + [964] = {.lex_state = 13, .external_lex_state = 6}, + [965] = {.lex_state = 13, .external_lex_state = 6}, [966] = {.lex_state = 1, .external_lex_state = 4}, [967] = {.lex_state = 1, .external_lex_state = 4}, - [968] = {.lex_state = 2, .external_lex_state = 4}, - [969] = {.lex_state = 13, .external_lex_state = 6}, + [968] = {.lex_state = 1, .external_lex_state = 4}, + [969] = {.lex_state = 1, .external_lex_state = 4}, [970] = {.lex_state = 13, .external_lex_state = 6}, [971] = {.lex_state = 1, .external_lex_state = 4}, [972] = {.lex_state = 1, .external_lex_state = 4}, [973] = {.lex_state = 1, .external_lex_state = 4}, [974] = {.lex_state = 1, .external_lex_state = 4}, [975] = {.lex_state = 1, .external_lex_state = 4}, - [976] = {.lex_state = 1, .external_lex_state = 4}, - [977] = {.lex_state = 1, .external_lex_state = 4}, - [978] = {.lex_state = 13, .external_lex_state = 6}, + [976] = {.lex_state = 13, .external_lex_state = 6}, + [977] = {.lex_state = 13, .external_lex_state = 6}, + [978] = {.lex_state = 1, .external_lex_state = 4}, [979] = {.lex_state = 1, .external_lex_state = 4}, - [980] = {.lex_state = 1, .external_lex_state = 4}, + [980] = {.lex_state = 13, .external_lex_state = 6}, [981] = {.lex_state = 1, .external_lex_state = 4}, [982] = {.lex_state = 1, .external_lex_state = 4}, - [983] = {.lex_state = 13, .external_lex_state = 6}, - [984] = {.lex_state = 1, .external_lex_state = 4}, + [983] = {.lex_state = 1, .external_lex_state = 4}, + [984] = {.lex_state = 3, .external_lex_state = 4}, [985] = {.lex_state = 1, .external_lex_state = 4}, - [986] = {.lex_state = 2, .external_lex_state = 4}, - [987] = {.lex_state = 2, .external_lex_state = 4}, - [988] = {.lex_state = 2, .external_lex_state = 4}, - [989] = {.lex_state = 2, .external_lex_state = 4}, + [986] = {.lex_state = 13, .external_lex_state = 6}, + [987] = {.lex_state = 1, .external_lex_state = 4}, + [988] = {.lex_state = 1, .external_lex_state = 4}, + [989] = {.lex_state = 13, .external_lex_state = 6}, [990] = {.lex_state = 1, .external_lex_state = 4}, - [991] = {.lex_state = 13, .external_lex_state = 6}, - [992] = {.lex_state = 2, .external_lex_state = 4}, - [993] = {.lex_state = 2, .external_lex_state = 4}, - [994] = {.lex_state = 2, .external_lex_state = 4}, - [995] = {.lex_state = 2, .external_lex_state = 4}, - [996] = {.lex_state = 1, .external_lex_state = 4}, + [991] = {.lex_state = 1, .external_lex_state = 4}, + [992] = {.lex_state = 1, .external_lex_state = 4}, + [993] = {.lex_state = 1, .external_lex_state = 4}, + [994] = {.lex_state = 1, .external_lex_state = 4}, + [995] = {.lex_state = 1, .external_lex_state = 4}, + [996] = {.lex_state = 2, .external_lex_state = 4}, [997] = {.lex_state = 1, .external_lex_state = 4}, [998] = {.lex_state = 1, .external_lex_state = 4}, - [999] = {.lex_state = 2, .external_lex_state = 4}, - [1000] = {.lex_state = 2, .external_lex_state = 4}, - [1001] = {.lex_state = 2, .external_lex_state = 4}, - [1002] = {.lex_state = 1, .external_lex_state = 4}, - [1003] = {.lex_state = 1, .external_lex_state = 4}, + [999] = {.lex_state = 1, .external_lex_state = 4}, + [1000] = {.lex_state = 1, .external_lex_state = 4}, + [1001] = {.lex_state = 1, .external_lex_state = 4}, + [1002] = {.lex_state = 2, .external_lex_state = 4}, + [1003] = {.lex_state = 2, .external_lex_state = 4}, [1004] = {.lex_state = 1, .external_lex_state = 4}, - [1005] = {.lex_state = 1, .external_lex_state = 4}, - [1006] = {.lex_state = 1, .external_lex_state = 4}, - [1007] = {.lex_state = 1, .external_lex_state = 4}, - [1008] = {.lex_state = 1, .external_lex_state = 4}, - [1009] = {.lex_state = 1, .external_lex_state = 4}, - [1010] = {.lex_state = 1, .external_lex_state = 4}, - [1011] = {.lex_state = 1, .external_lex_state = 4}, + [1005] = {.lex_state = 2, .external_lex_state = 4}, + [1006] = {.lex_state = 2, .external_lex_state = 4}, + [1007] = {.lex_state = 2, .external_lex_state = 4}, + [1008] = {.lex_state = 2, .external_lex_state = 4}, + [1009] = {.lex_state = 2, .external_lex_state = 4}, + [1010] = {.lex_state = 2, .external_lex_state = 4}, + [1011] = {.lex_state = 2, .external_lex_state = 4}, [1012] = {.lex_state = 1, .external_lex_state = 4}, - [1013] = {.lex_state = 1, .external_lex_state = 4}, + [1013] = {.lex_state = 2, .external_lex_state = 4}, [1014] = {.lex_state = 1, .external_lex_state = 4}, [1015] = {.lex_state = 1, .external_lex_state = 4}, - [1016] = {.lex_state = 13, .external_lex_state = 6}, + [1016] = {.lex_state = 1, .external_lex_state = 4}, [1017] = {.lex_state = 1, .external_lex_state = 4}, [1018] = {.lex_state = 1, .external_lex_state = 4}, [1019] = {.lex_state = 1, .external_lex_state = 4}, [1020] = {.lex_state = 1, .external_lex_state = 4}, [1021] = {.lex_state = 1, .external_lex_state = 4}, - [1022] = {.lex_state = 13, .external_lex_state = 6}, - [1023] = {.lex_state = 13, .external_lex_state = 6}, + [1022] = {.lex_state = 1, .external_lex_state = 4}, + [1023] = {.lex_state = 1, .external_lex_state = 4}, [1024] = {.lex_state = 1, .external_lex_state = 4}, [1025] = {.lex_state = 1, .external_lex_state = 4}, [1026] = {.lex_state = 1, .external_lex_state = 4}, [1027] = {.lex_state = 1, .external_lex_state = 4}, [1028] = {.lex_state = 1, .external_lex_state = 4}, [1029] = {.lex_state = 1, .external_lex_state = 4}, - [1030] = {.lex_state = 2, .external_lex_state = 4}, + [1030] = {.lex_state = 1, .external_lex_state = 4}, [1031] = {.lex_state = 1, .external_lex_state = 4}, [1032] = {.lex_state = 1, .external_lex_state = 4}, [1033] = {.lex_state = 1, .external_lex_state = 4}, [1034] = {.lex_state = 1, .external_lex_state = 4}, [1035] = {.lex_state = 1, .external_lex_state = 4}, [1036] = {.lex_state = 1, .external_lex_state = 4}, - [1037] = {.lex_state = 13, .external_lex_state = 6}, + [1037] = {.lex_state = 1, .external_lex_state = 4}, [1038] = {.lex_state = 1, .external_lex_state = 4}, - [1039] = {.lex_state = 13, .external_lex_state = 6}, - [1040] = {.lex_state = 13, .external_lex_state = 6}, + [1039] = {.lex_state = 1, .external_lex_state = 4}, + [1040] = {.lex_state = 1, .external_lex_state = 4}, [1041] = {.lex_state = 1, .external_lex_state = 4}, - [1042] = {.lex_state = 13, .external_lex_state = 7}, + [1042] = {.lex_state = 1, .external_lex_state = 4}, [1043] = {.lex_state = 1, .external_lex_state = 4}, [1044] = {.lex_state = 1, .external_lex_state = 4}, [1045] = {.lex_state = 1, .external_lex_state = 4}, [1046] = {.lex_state = 1, .external_lex_state = 4}, [1047] = {.lex_state = 1, .external_lex_state = 4}, - [1048] = {.lex_state = 13, .external_lex_state = 7}, - [1049] = {.lex_state = 13, .external_lex_state = 7}, + [1048] = {.lex_state = 1, .external_lex_state = 4}, + [1049] = {.lex_state = 1, .external_lex_state = 4}, [1050] = {.lex_state = 1, .external_lex_state = 4}, [1051] = {.lex_state = 1, .external_lex_state = 4}, [1052] = {.lex_state = 1, .external_lex_state = 4}, @@ -24890,7 +24541,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1060] = {.lex_state = 1, .external_lex_state = 4}, [1061] = {.lex_state = 1, .external_lex_state = 4}, [1062] = {.lex_state = 1, .external_lex_state = 4}, - [1063] = {.lex_state = 13, .external_lex_state = 7}, + [1063] = {.lex_state = 1, .external_lex_state = 4}, [1064] = {.lex_state = 1, .external_lex_state = 4}, [1065] = {.lex_state = 1, .external_lex_state = 4}, [1066] = {.lex_state = 1, .external_lex_state = 4}, @@ -24905,7 +24556,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1075] = {.lex_state = 1, .external_lex_state = 4}, [1076] = {.lex_state = 1, .external_lex_state = 4}, [1077] = {.lex_state = 1, .external_lex_state = 4}, - [1078] = {.lex_state = 13, .external_lex_state = 7}, + [1078] = {.lex_state = 1, .external_lex_state = 4}, [1079] = {.lex_state = 1, .external_lex_state = 4}, [1080] = {.lex_state = 1, .external_lex_state = 4}, [1081] = {.lex_state = 1, .external_lex_state = 4}, @@ -24913,12 +24564,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1083] = {.lex_state = 1, .external_lex_state = 4}, [1084] = {.lex_state = 1, .external_lex_state = 4}, [1085] = {.lex_state = 1, .external_lex_state = 4}, - [1086] = {.lex_state = 1, .external_lex_state = 4}, - [1087] = {.lex_state = 1, .external_lex_state = 4}, - [1088] = {.lex_state = 1, .external_lex_state = 4}, - [1089] = {.lex_state = 1, .external_lex_state = 4}, - [1090] = {.lex_state = 1, .external_lex_state = 4}, - [1091] = {.lex_state = 1, .external_lex_state = 4}, + [1086] = {.lex_state = 13, .external_lex_state = 7}, + [1087] = {.lex_state = 13, .external_lex_state = 7}, + [1088] = {.lex_state = 13, .external_lex_state = 7}, + [1089] = {.lex_state = 13, .external_lex_state = 7}, + [1090] = {.lex_state = 13, .external_lex_state = 7}, + [1091] = {.lex_state = 13, .external_lex_state = 7}, [1092] = {.lex_state = 1, .external_lex_state = 4}, [1093] = {.lex_state = 1, .external_lex_state = 4}, [1094] = {.lex_state = 1, .external_lex_state = 4}, @@ -24934,7 +24585,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1104] = {.lex_state = 1, .external_lex_state = 4}, [1105] = {.lex_state = 1, .external_lex_state = 4}, [1106] = {.lex_state = 1, .external_lex_state = 4}, - [1107] = {.lex_state = 13, .external_lex_state = 7}, + [1107] = {.lex_state = 1, .external_lex_state = 4}, [1108] = {.lex_state = 1, .external_lex_state = 4}, [1109] = {.lex_state = 1, .external_lex_state = 4}, [1110] = {.lex_state = 1, .external_lex_state = 4}, @@ -24969,11 +24620,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1139] = {.lex_state = 1, .external_lex_state = 4}, [1140] = {.lex_state = 1, .external_lex_state = 4}, [1141] = {.lex_state = 1, .external_lex_state = 4}, - [1142] = {.lex_state = 1, .external_lex_state = 4}, + [1142] = {.lex_state = 13, .external_lex_state = 7}, [1143] = {.lex_state = 1, .external_lex_state = 4}, [1144] = {.lex_state = 1, .external_lex_state = 4}, [1145] = {.lex_state = 1, .external_lex_state = 4}, - [1146] = {.lex_state = 1, .external_lex_state = 4}, + [1146] = {.lex_state = 13, .external_lex_state = 7}, [1147] = {.lex_state = 1, .external_lex_state = 4}, [1148] = {.lex_state = 1, .external_lex_state = 4}, [1149] = {.lex_state = 1, .external_lex_state = 4}, @@ -24983,14 +24634,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1153] = {.lex_state = 1, .external_lex_state = 4}, [1154] = {.lex_state = 1, .external_lex_state = 4}, [1155] = {.lex_state = 1, .external_lex_state = 4}, - [1156] = {.lex_state = 1, .external_lex_state = 4}, + [1156] = {.lex_state = 13, .external_lex_state = 7}, [1157] = {.lex_state = 1, .external_lex_state = 4}, [1158] = {.lex_state = 1, .external_lex_state = 4}, [1159] = {.lex_state = 1, .external_lex_state = 4}, [1160] = {.lex_state = 1, .external_lex_state = 4}, - [1161] = {.lex_state = 13, .external_lex_state = 7}, - [1162] = {.lex_state = 13, .external_lex_state = 7}, - [1163] = {.lex_state = 13, .external_lex_state = 7}, + [1161] = {.lex_state = 1, .external_lex_state = 4}, + [1162] = {.lex_state = 1, .external_lex_state = 4}, + [1163] = {.lex_state = 1, .external_lex_state = 4}, [1164] = {.lex_state = 1, .external_lex_state = 4}, [1165] = {.lex_state = 1, .external_lex_state = 4}, [1166] = {.lex_state = 1, .external_lex_state = 4}, @@ -25001,296 +24652,296 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1171] = {.lex_state = 1, .external_lex_state = 4}, [1172] = {.lex_state = 1, .external_lex_state = 4}, [1173] = {.lex_state = 1, .external_lex_state = 4}, - [1174] = {.lex_state = 13, .external_lex_state = 7}, + [1174] = {.lex_state = 1, .external_lex_state = 4}, [1175] = {.lex_state = 1, .external_lex_state = 4}, [1176] = {.lex_state = 1, .external_lex_state = 4}, [1177] = {.lex_state = 1, .external_lex_state = 4}, - [1178] = {.lex_state = 1, .external_lex_state = 4}, + [1178] = {.lex_state = 13, .external_lex_state = 7}, [1179] = {.lex_state = 1, .external_lex_state = 4}, [1180] = {.lex_state = 1, .external_lex_state = 4}, [1181] = {.lex_state = 1, .external_lex_state = 4}, - [1182] = {.lex_state = 13, .external_lex_state = 7}, + [1182] = {.lex_state = 1, .external_lex_state = 4}, [1183] = {.lex_state = 1, .external_lex_state = 4}, - [1184] = {.lex_state = 1, .external_lex_state = 4}, + [1184] = {.lex_state = 13, .external_lex_state = 7}, [1185] = {.lex_state = 1, .external_lex_state = 4}, [1186] = {.lex_state = 1, .external_lex_state = 4}, [1187] = {.lex_state = 1, .external_lex_state = 4}, - [1188] = {.lex_state = 1, .external_lex_state = 4}, - [1189] = {.lex_state = 1, .external_lex_state = 4}, - [1190] = {.lex_state = 1, .external_lex_state = 4}, - [1191] = {.lex_state = 1, .external_lex_state = 4}, - [1192] = {.lex_state = 1, .external_lex_state = 4}, - [1193] = {.lex_state = 1, .external_lex_state = 4}, - [1194] = {.lex_state = 1, .external_lex_state = 4}, - [1195] = {.lex_state = 1, .external_lex_state = 4}, - [1196] = {.lex_state = 1, .external_lex_state = 4}, - [1197] = {.lex_state = 1, .external_lex_state = 4}, + [1188] = {.lex_state = 2, .external_lex_state = 4}, + [1189] = {.lex_state = 2, .external_lex_state = 4}, + [1190] = {.lex_state = 13, .external_lex_state = 7}, + [1191] = {.lex_state = 2, .external_lex_state = 4}, + [1192] = {.lex_state = 2, .external_lex_state = 4}, + [1193] = {.lex_state = 2, .external_lex_state = 4}, + [1194] = {.lex_state = 2, .external_lex_state = 4}, + [1195] = {.lex_state = 2, .external_lex_state = 4}, + [1196] = {.lex_state = 2, .external_lex_state = 4}, + [1197] = {.lex_state = 2, .external_lex_state = 4}, [1198] = {.lex_state = 1, .external_lex_state = 4}, - [1199] = {.lex_state = 1, .external_lex_state = 4}, - [1200] = {.lex_state = 1, .external_lex_state = 4}, - [1201] = {.lex_state = 1, .external_lex_state = 4}, - [1202] = {.lex_state = 1, .external_lex_state = 4}, - [1203] = {.lex_state = 1, .external_lex_state = 4}, - [1204] = {.lex_state = 1, .external_lex_state = 4}, - [1205] = {.lex_state = 1, .external_lex_state = 4}, - [1206] = {.lex_state = 1, .external_lex_state = 4}, + [1199] = {.lex_state = 2, .external_lex_state = 4}, + [1200] = {.lex_state = 2, .external_lex_state = 4}, + [1201] = {.lex_state = 2, .external_lex_state = 4}, + [1202] = {.lex_state = 13, .external_lex_state = 6}, + [1203] = {.lex_state = 13, .external_lex_state = 7}, + [1204] = {.lex_state = 13, .external_lex_state = 6}, + [1205] = {.lex_state = 13, .external_lex_state = 6}, + [1206] = {.lex_state = 13, .external_lex_state = 6}, [1207] = {.lex_state = 1, .external_lex_state = 4}, - [1208] = {.lex_state = 1, .external_lex_state = 4}, - [1209] = {.lex_state = 1, .external_lex_state = 4}, - [1210] = {.lex_state = 1, .external_lex_state = 4}, - [1211] = {.lex_state = 1, .external_lex_state = 4}, - [1212] = {.lex_state = 1, .external_lex_state = 4}, - [1213] = {.lex_state = 1, .external_lex_state = 4}, - [1214] = {.lex_state = 1, .external_lex_state = 4}, - [1215] = {.lex_state = 1, .external_lex_state = 4}, + [1208] = {.lex_state = 2, .external_lex_state = 4}, + [1209] = {.lex_state = 2, .external_lex_state = 4}, + [1210] = {.lex_state = 2, .external_lex_state = 4}, + [1211] = {.lex_state = 13, .external_lex_state = 7}, + [1212] = {.lex_state = 13, .external_lex_state = 7}, + [1213] = {.lex_state = 13, .external_lex_state = 6}, + [1214] = {.lex_state = 13, .external_lex_state = 7}, + [1215] = {.lex_state = 13, .external_lex_state = 6}, [1216] = {.lex_state = 13, .external_lex_state = 6}, - [1217] = {.lex_state = 2, .external_lex_state = 4}, - [1218] = {.lex_state = 2, .external_lex_state = 4}, - [1219] = {.lex_state = 13, .external_lex_state = 7}, - [1220] = {.lex_state = 1, .external_lex_state = 4}, - [1221] = {.lex_state = 2, .external_lex_state = 4}, - [1222] = {.lex_state = 13, .external_lex_state = 7}, + [1217] = {.lex_state = 13, .external_lex_state = 6}, + [1218] = {.lex_state = 13, .external_lex_state = 6}, + [1219] = {.lex_state = 13, .external_lex_state = 6}, + [1220] = {.lex_state = 13, .external_lex_state = 6}, + [1221] = {.lex_state = 13, .external_lex_state = 6}, + [1222] = {.lex_state = 13, .external_lex_state = 6}, [1223] = {.lex_state = 2, .external_lex_state = 4}, - [1224] = {.lex_state = 13, .external_lex_state = 7}, - [1225] = {.lex_state = 2, .external_lex_state = 4}, - [1226] = {.lex_state = 2, .external_lex_state = 4}, - [1227] = {.lex_state = 13, .external_lex_state = 7}, - [1228] = {.lex_state = 13, .external_lex_state = 6}, - [1229] = {.lex_state = 2, .external_lex_state = 4}, + [1224] = {.lex_state = 13, .external_lex_state = 6}, + [1225] = {.lex_state = 1, .external_lex_state = 3}, + [1226] = {.lex_state = 13, .external_lex_state = 6}, + [1227] = {.lex_state = 1, .external_lex_state = 4}, + [1228] = {.lex_state = 13, .external_lex_state = 7}, + [1229] = {.lex_state = 13, .external_lex_state = 6}, [1230] = {.lex_state = 2, .external_lex_state = 4}, - [1231] = {.lex_state = 1, .external_lex_state = 4}, - [1232] = {.lex_state = 2, .external_lex_state = 4}, - [1233] = {.lex_state = 2, .external_lex_state = 4}, + [1231] = {.lex_state = 13, .external_lex_state = 6}, + [1232] = {.lex_state = 1, .external_lex_state = 4}, + [1233] = {.lex_state = 13, .external_lex_state = 6}, [1234] = {.lex_state = 13, .external_lex_state = 6}, - [1235] = {.lex_state = 13, .external_lex_state = 7}, - [1236] = {.lex_state = 1, .external_lex_state = 4}, - [1237] = {.lex_state = 13, .external_lex_state = 6}, - [1238] = {.lex_state = 1, .external_lex_state = 4}, - [1239] = {.lex_state = 2, .external_lex_state = 4}, - [1240] = {.lex_state = 2, .external_lex_state = 4}, - [1241] = {.lex_state = 13, .external_lex_state = 6}, - [1242] = {.lex_state = 2, .external_lex_state = 4}, - [1243] = {.lex_state = 2, .external_lex_state = 4}, + [1235] = {.lex_state = 1, .external_lex_state = 4}, + [1236] = {.lex_state = 1, .external_lex_state = 3}, + [1237] = {.lex_state = 1, .external_lex_state = 4}, + [1238] = {.lex_state = 9, .external_lex_state = 2}, + [1239] = {.lex_state = 9, .external_lex_state = 2}, + [1240] = {.lex_state = 1, .external_lex_state = 4}, + [1241] = {.lex_state = 9, .external_lex_state = 2}, + [1242] = {.lex_state = 9, .external_lex_state = 2}, + [1243] = {.lex_state = 13, .external_lex_state = 6}, [1244] = {.lex_state = 1, .external_lex_state = 4}, - [1245] = {.lex_state = 13, .external_lex_state = 6}, - [1246] = {.lex_state = 13, .external_lex_state = 6}, - [1247] = {.lex_state = 13, .external_lex_state = 7}, - [1248] = {.lex_state = 1, .external_lex_state = 3}, - [1249] = {.lex_state = 1, .external_lex_state = 3}, - [1250] = {.lex_state = 2, .external_lex_state = 4}, - [1251] = {.lex_state = 2, .external_lex_state = 4}, - [1252] = {.lex_state = 13, .external_lex_state = 6}, - [1253] = {.lex_state = 2, .external_lex_state = 4}, - [1254] = {.lex_state = 13, .external_lex_state = 6}, - [1255] = {.lex_state = 13, .external_lex_state = 6}, - [1256] = {.lex_state = 13, .external_lex_state = 6}, - [1257] = {.lex_state = 13, .external_lex_state = 6}, - [1258] = {.lex_state = 13, .external_lex_state = 6}, - [1259] = {.lex_state = 13, .external_lex_state = 6}, - [1260] = {.lex_state = 13, .external_lex_state = 6}, + [1245] = {.lex_state = 9, .external_lex_state = 2}, + [1246] = {.lex_state = 9, .external_lex_state = 2}, + [1247] = {.lex_state = 9, .external_lex_state = 2}, + [1248] = {.lex_state = 9, .external_lex_state = 2}, + [1249] = {.lex_state = 9, .external_lex_state = 2}, + [1250] = {.lex_state = 1, .external_lex_state = 4}, + [1251] = {.lex_state = 1, .external_lex_state = 4}, + [1252] = {.lex_state = 1, .external_lex_state = 4}, + [1253] = {.lex_state = 1, .external_lex_state = 4}, + [1254] = {.lex_state = 1, .external_lex_state = 4}, + [1255] = {.lex_state = 9, .external_lex_state = 2}, + [1256] = {.lex_state = 1, .external_lex_state = 4}, + [1257] = {.lex_state = 9, .external_lex_state = 2}, + [1258] = {.lex_state = 1, .external_lex_state = 4}, + [1259] = {.lex_state = 1, .external_lex_state = 4}, + [1260] = {.lex_state = 9, .external_lex_state = 2}, [1261] = {.lex_state = 13, .external_lex_state = 6}, - [1262] = {.lex_state = 13, .external_lex_state = 6}, - [1263] = {.lex_state = 13, .external_lex_state = 6}, - [1264] = {.lex_state = 13, .external_lex_state = 6}, - [1265] = {.lex_state = 9, .external_lex_state = 2}, - [1266] = {.lex_state = 9, .external_lex_state = 2}, + [1262] = {.lex_state = 9, .external_lex_state = 2}, + [1263] = {.lex_state = 1, .external_lex_state = 4}, + [1264] = {.lex_state = 1, .external_lex_state = 4}, + [1265] = {.lex_state = 1, .external_lex_state = 4}, + [1266] = {.lex_state = 13, .external_lex_state = 6}, [1267] = {.lex_state = 1, .external_lex_state = 4}, [1268] = {.lex_state = 1, .external_lex_state = 4}, [1269] = {.lex_state = 9, .external_lex_state = 2}, - [1270] = {.lex_state = 1, .external_lex_state = 4}, - [1271] = {.lex_state = 1, .external_lex_state = 4}, + [1270] = {.lex_state = 9, .external_lex_state = 2}, + [1271] = {.lex_state = 13, .external_lex_state = 6}, [1272] = {.lex_state = 9, .external_lex_state = 2}, [1273] = {.lex_state = 1, .external_lex_state = 4}, [1274] = {.lex_state = 1, .external_lex_state = 4}, - [1275] = {.lex_state = 1, .external_lex_state = 4}, - [1276] = {.lex_state = 1, .external_lex_state = 4}, + [1275] = {.lex_state = 9, .external_lex_state = 2}, + [1276] = {.lex_state = 9, .external_lex_state = 2}, [1277] = {.lex_state = 1, .external_lex_state = 4}, [1278] = {.lex_state = 1, .external_lex_state = 4}, [1279] = {.lex_state = 1, .external_lex_state = 4}, - [1280] = {.lex_state = 9, .external_lex_state = 2}, - [1281] = {.lex_state = 9, .external_lex_state = 2}, - [1282] = {.lex_state = 1, .external_lex_state = 4}, - [1283] = {.lex_state = 9, .external_lex_state = 2}, - [1284] = {.lex_state = 9, .external_lex_state = 2}, + [1280] = {.lex_state = 13, .external_lex_state = 6}, + [1281] = {.lex_state = 1, .external_lex_state = 4}, + [1282] = {.lex_state = 9, .external_lex_state = 2}, + [1283] = {.lex_state = 13, .external_lex_state = 6}, + [1284] = {.lex_state = 1, .external_lex_state = 4}, [1285] = {.lex_state = 9, .external_lex_state = 2}, - [1286] = {.lex_state = 1, .external_lex_state = 4}, + [1286] = {.lex_state = 9, .external_lex_state = 2}, [1287] = {.lex_state = 1, .external_lex_state = 4}, [1288] = {.lex_state = 9, .external_lex_state = 2}, - [1289] = {.lex_state = 13, .external_lex_state = 6}, + [1289] = {.lex_state = 1, .external_lex_state = 4}, [1290] = {.lex_state = 1, .external_lex_state = 4}, [1291] = {.lex_state = 1, .external_lex_state = 4}, - [1292] = {.lex_state = 1, .external_lex_state = 4}, - [1293] = {.lex_state = 1, .external_lex_state = 4}, - [1294] = {.lex_state = 13, .external_lex_state = 6}, + [1292] = {.lex_state = 9, .external_lex_state = 2}, + [1293] = {.lex_state = 9, .external_lex_state = 2}, + [1294] = {.lex_state = 9, .external_lex_state = 2}, [1295] = {.lex_state = 1, .external_lex_state = 4}, [1296] = {.lex_state = 9, .external_lex_state = 2}, - [1297] = {.lex_state = 1, .external_lex_state = 4}, - [1298] = {.lex_state = 13, .external_lex_state = 6}, + [1297] = {.lex_state = 9, .external_lex_state = 2}, + [1298] = {.lex_state = 9, .external_lex_state = 2}, [1299] = {.lex_state = 9, .external_lex_state = 2}, - [1300] = {.lex_state = 13, .external_lex_state = 6}, + [1300] = {.lex_state = 1, .external_lex_state = 4}, [1301] = {.lex_state = 9, .external_lex_state = 2}, [1302] = {.lex_state = 9, .external_lex_state = 2}, - [1303] = {.lex_state = 1, .external_lex_state = 4}, - [1304] = {.lex_state = 9, .external_lex_state = 2}, + [1303] = {.lex_state = 13, .external_lex_state = 6}, + [1304] = {.lex_state = 13, .external_lex_state = 6}, [1305] = {.lex_state = 9, .external_lex_state = 2}, [1306] = {.lex_state = 1, .external_lex_state = 4}, - [1307] = {.lex_state = 1, .external_lex_state = 4}, - [1308] = {.lex_state = 1, .external_lex_state = 4}, + [1307] = {.lex_state = 9, .external_lex_state = 2}, + [1308] = {.lex_state = 9, .external_lex_state = 2}, [1309] = {.lex_state = 9, .external_lex_state = 2}, [1310] = {.lex_state = 9, .external_lex_state = 2}, [1311] = {.lex_state = 9, .external_lex_state = 2}, [1312] = {.lex_state = 9, .external_lex_state = 2}, - [1313] = {.lex_state = 1, .external_lex_state = 4}, + [1313] = {.lex_state = 9, .external_lex_state = 2}, [1314] = {.lex_state = 9, .external_lex_state = 2}, - [1315] = {.lex_state = 1, .external_lex_state = 4}, - [1316] = {.lex_state = 13, .external_lex_state = 6}, - [1317] = {.lex_state = 9, .external_lex_state = 2}, + [1315] = {.lex_state = 9, .external_lex_state = 2}, + [1316] = {.lex_state = 9, .external_lex_state = 2}, + [1317] = {.lex_state = 13, .external_lex_state = 6}, [1318] = {.lex_state = 9, .external_lex_state = 2}, [1319] = {.lex_state = 9, .external_lex_state = 2}, - [1320] = {.lex_state = 13, .external_lex_state = 6}, - [1321] = {.lex_state = 1, .external_lex_state = 4}, + [1320] = {.lex_state = 9, .external_lex_state = 2}, + [1321] = {.lex_state = 9, .external_lex_state = 2}, [1322] = {.lex_state = 9, .external_lex_state = 2}, - [1323] = {.lex_state = 9, .external_lex_state = 2}, + [1323] = {.lex_state = 13, .external_lex_state = 6}, [1324] = {.lex_state = 9, .external_lex_state = 2}, [1325] = {.lex_state = 9, .external_lex_state = 2}, - [1326] = {.lex_state = 9, .external_lex_state = 2}, - [1327] = {.lex_state = 9, .external_lex_state = 2}, + [1326] = {.lex_state = 1, .external_lex_state = 4}, + [1327] = {.lex_state = 1, .external_lex_state = 4}, [1328] = {.lex_state = 9, .external_lex_state = 2}, - [1329] = {.lex_state = 1, .external_lex_state = 4}, + [1329] = {.lex_state = 9, .external_lex_state = 2}, [1330] = {.lex_state = 9, .external_lex_state = 2}, [1331] = {.lex_state = 9, .external_lex_state = 2}, [1332] = {.lex_state = 9, .external_lex_state = 2}, [1333] = {.lex_state = 9, .external_lex_state = 2}, [1334] = {.lex_state = 9, .external_lex_state = 2}, - [1335] = {.lex_state = 1, .external_lex_state = 4}, + [1335] = {.lex_state = 9, .external_lex_state = 2}, [1336] = {.lex_state = 9, .external_lex_state = 2}, - [1337] = {.lex_state = 9, .external_lex_state = 2}, + [1337] = {.lex_state = 1, .external_lex_state = 3}, [1338] = {.lex_state = 9, .external_lex_state = 2}, [1339] = {.lex_state = 9, .external_lex_state = 2}, - [1340] = {.lex_state = 9, .external_lex_state = 2}, - [1341] = {.lex_state = 9, .external_lex_state = 2}, - [1342] = {.lex_state = 1, .external_lex_state = 4}, - [1343] = {.lex_state = 9, .external_lex_state = 2}, - [1344] = {.lex_state = 9, .external_lex_state = 2}, - [1345] = {.lex_state = 9, .external_lex_state = 2}, - [1346] = {.lex_state = 9, .external_lex_state = 2}, - [1347] = {.lex_state = 9, .external_lex_state = 2}, - [1348] = {.lex_state = 13, .external_lex_state = 6}, - [1349] = {.lex_state = 9, .external_lex_state = 2}, - [1350] = {.lex_state = 9, .external_lex_state = 2}, - [1351] = {.lex_state = 1, .external_lex_state = 4}, - [1352] = {.lex_state = 13, .external_lex_state = 6}, - [1353] = {.lex_state = 9, .external_lex_state = 2}, + [1340] = {.lex_state = 1, .external_lex_state = 4}, + [1341] = {.lex_state = 1, .external_lex_state = 4}, + [1342] = {.lex_state = 1, .external_lex_state = 3}, + [1343] = {.lex_state = 1, .external_lex_state = 4}, + [1344] = {.lex_state = 1, .external_lex_state = 4}, + [1345] = {.lex_state = 1, .external_lex_state = 4}, + [1346] = {.lex_state = 1, .external_lex_state = 4}, + [1347] = {.lex_state = 1, .external_lex_state = 4}, + [1348] = {.lex_state = 9, .external_lex_state = 2}, + [1349] = {.lex_state = 1, .external_lex_state = 4}, + [1350] = {.lex_state = 1, .external_lex_state = 4}, + [1351] = {.lex_state = 13, .external_lex_state = 6}, + [1352] = {.lex_state = 9, .external_lex_state = 2}, + [1353] = {.lex_state = 1, .external_lex_state = 4}, [1354] = {.lex_state = 9, .external_lex_state = 2}, [1355] = {.lex_state = 9, .external_lex_state = 2}, [1356] = {.lex_state = 9, .external_lex_state = 2}, [1357] = {.lex_state = 9, .external_lex_state = 2}, - [1358] = {.lex_state = 1, .external_lex_state = 4}, - [1359] = {.lex_state = 1, .external_lex_state = 4}, - [1360] = {.lex_state = 1, .external_lex_state = 4}, + [1358] = {.lex_state = 13, .external_lex_state = 6}, + [1359] = {.lex_state = 13, .external_lex_state = 6}, + [1360] = {.lex_state = 9, .external_lex_state = 2}, [1361] = {.lex_state = 9, .external_lex_state = 2}, [1362] = {.lex_state = 1, .external_lex_state = 4}, [1363] = {.lex_state = 1, .external_lex_state = 4}, - [1364] = {.lex_state = 1, .external_lex_state = 4}, - [1365] = {.lex_state = 1, .external_lex_state = 4}, - [1366] = {.lex_state = 1, .external_lex_state = 4}, + [1364] = {.lex_state = 9, .external_lex_state = 2}, + [1365] = {.lex_state = 9, .external_lex_state = 2}, + [1366] = {.lex_state = 9, .external_lex_state = 2}, [1367] = {.lex_state = 1, .external_lex_state = 4}, - [1368] = {.lex_state = 13, .external_lex_state = 6}, - [1369] = {.lex_state = 9, .external_lex_state = 2}, - [1370] = {.lex_state = 1, .external_lex_state = 4}, + [1368] = {.lex_state = 1, .external_lex_state = 4}, + [1369] = {.lex_state = 1, .external_lex_state = 4}, + [1370] = {.lex_state = 9, .external_lex_state = 2}, [1371] = {.lex_state = 1, .external_lex_state = 4}, [1372] = {.lex_state = 1, .external_lex_state = 4}, [1373] = {.lex_state = 1, .external_lex_state = 4}, - [1374] = {.lex_state = 1, .external_lex_state = 4}, + [1374] = {.lex_state = 9, .external_lex_state = 2}, [1375] = {.lex_state = 9, .external_lex_state = 2}, - [1376] = {.lex_state = 13, .external_lex_state = 6}, - [1377] = {.lex_state = 13, .external_lex_state = 6}, - [1378] = {.lex_state = 13, .external_lex_state = 6}, + [1376] = {.lex_state = 9, .external_lex_state = 2}, + [1377] = {.lex_state = 9, .external_lex_state = 2}, + [1378] = {.lex_state = 9, .external_lex_state = 2}, [1379] = {.lex_state = 9, .external_lex_state = 2}, [1380] = {.lex_state = 9, .external_lex_state = 2}, [1381] = {.lex_state = 9, .external_lex_state = 2}, [1382] = {.lex_state = 9, .external_lex_state = 2}, - [1383] = {.lex_state = 9, .external_lex_state = 2}, - [1384] = {.lex_state = 13, .external_lex_state = 6}, - [1385] = {.lex_state = 13, .external_lex_state = 6}, - [1386] = {.lex_state = 9, .external_lex_state = 2}, - [1387] = {.lex_state = 9, .external_lex_state = 2}, - [1388] = {.lex_state = 9, .external_lex_state = 2}, - [1389] = {.lex_state = 9, .external_lex_state = 2}, - [1390] = {.lex_state = 9, .external_lex_state = 2}, - [1391] = {.lex_state = 13, .external_lex_state = 6}, - [1392] = {.lex_state = 9, .external_lex_state = 2}, - [1393] = {.lex_state = 9, .external_lex_state = 2}, - [1394] = {.lex_state = 9, .external_lex_state = 2}, - [1395] = {.lex_state = 1, .external_lex_state = 4}, - [1396] = {.lex_state = 1, .external_lex_state = 4}, - [1397] = {.lex_state = 9, .external_lex_state = 2}, - [1398] = {.lex_state = 1, .external_lex_state = 3}, - [1399] = {.lex_state = 1, .external_lex_state = 3}, - [1400] = {.lex_state = 1, .external_lex_state = 4}, - [1401] = {.lex_state = 1, .external_lex_state = 4}, - [1402] = {.lex_state = 9, .external_lex_state = 2}, - [1403] = {.lex_state = 9, .external_lex_state = 2}, - [1404] = {.lex_state = 9, .external_lex_state = 2}, + [1383] = {.lex_state = 13, .external_lex_state = 6}, + [1384] = {.lex_state = 13, .external_lex_state = 7}, + [1385] = {.lex_state = 13, .external_lex_state = 7}, + [1386] = {.lex_state = 13, .external_lex_state = 7}, + [1387] = {.lex_state = 1, .external_lex_state = 4}, + [1388] = {.lex_state = 13, .external_lex_state = 7}, + [1389] = {.lex_state = 13, .external_lex_state = 6}, + [1390] = {.lex_state = 1, .external_lex_state = 4}, + [1391] = {.lex_state = 1, .external_lex_state = 4}, + [1392] = {.lex_state = 13, .external_lex_state = 7}, + [1393] = {.lex_state = 1, .external_lex_state = 4}, + [1394] = {.lex_state = 1, .external_lex_state = 4}, + [1395] = {.lex_state = 13, .external_lex_state = 7}, + [1396] = {.lex_state = 13, .external_lex_state = 7}, + [1397] = {.lex_state = 1, .external_lex_state = 4}, + [1398] = {.lex_state = 13, .external_lex_state = 7}, + [1399] = {.lex_state = 13, .external_lex_state = 7}, + [1400] = {.lex_state = 9, .external_lex_state = 2}, + [1401] = {.lex_state = 13, .external_lex_state = 7}, + [1402] = {.lex_state = 13, .external_lex_state = 6}, + [1403] = {.lex_state = 13, .external_lex_state = 7}, + [1404] = {.lex_state = 13, .external_lex_state = 7}, [1405] = {.lex_state = 13, .external_lex_state = 6}, - [1406] = {.lex_state = 9, .external_lex_state = 2}, - [1407] = {.lex_state = 9, .external_lex_state = 2}, - [1408] = {.lex_state = 9, .external_lex_state = 2}, - [1409] = {.lex_state = 9, .external_lex_state = 2}, - [1410] = {.lex_state = 9, .external_lex_state = 2}, + [1406] = {.lex_state = 13, .external_lex_state = 7}, + [1407] = {.lex_state = 13, .external_lex_state = 7}, + [1408] = {.lex_state = 13, .external_lex_state = 6}, + [1409] = {.lex_state = 13, .external_lex_state = 7}, + [1410] = {.lex_state = 13, .external_lex_state = 7}, [1411] = {.lex_state = 1, .external_lex_state = 4}, [1412] = {.lex_state = 9, .external_lex_state = 2}, - [1413] = {.lex_state = 1, .external_lex_state = 4}, - [1414] = {.lex_state = 9, .external_lex_state = 2}, - [1415] = {.lex_state = 1, .external_lex_state = 4}, - [1416] = {.lex_state = 9, .external_lex_state = 2}, - [1417] = {.lex_state = 13, .external_lex_state = 7}, - [1418] = {.lex_state = 13, .external_lex_state = 7}, - [1419] = {.lex_state = 13, .external_lex_state = 7}, - [1420] = {.lex_state = 9, .external_lex_state = 2}, - [1421] = {.lex_state = 13, .external_lex_state = 7}, - [1422] = {.lex_state = 13, .external_lex_state = 7}, + [1413] = {.lex_state = 13, .external_lex_state = 7}, + [1414] = {.lex_state = 1, .external_lex_state = 4}, + [1415] = {.lex_state = 13, .external_lex_state = 7}, + [1416] = {.lex_state = 13, .external_lex_state = 7}, + [1417] = {.lex_state = 9, .external_lex_state = 2}, + [1418] = {.lex_state = 13, .external_lex_state = 6}, + [1419] = {.lex_state = 1, .external_lex_state = 4}, + [1420] = {.lex_state = 1, .external_lex_state = 4}, + [1421] = {.lex_state = 13, .external_lex_state = 6}, + [1422] = {.lex_state = 13, .external_lex_state = 6}, [1423] = {.lex_state = 1, .external_lex_state = 4}, - [1424] = {.lex_state = 13, .external_lex_state = 6}, - [1425] = {.lex_state = 13, .external_lex_state = 7}, - [1426] = {.lex_state = 13, .external_lex_state = 7}, - [1427] = {.lex_state = 13, .external_lex_state = 7}, - [1428] = {.lex_state = 13, .external_lex_state = 7}, - [1429] = {.lex_state = 1, .external_lex_state = 4}, - [1430] = {.lex_state = 13, .external_lex_state = 7}, - [1431] = {.lex_state = 1, .external_lex_state = 4}, - [1432] = {.lex_state = 13, .external_lex_state = 7}, - [1433] = {.lex_state = 13, .external_lex_state = 7}, - [1434] = {.lex_state = 1, .external_lex_state = 4}, - [1435] = {.lex_state = 13, .external_lex_state = 7}, - [1436] = {.lex_state = 13, .external_lex_state = 6}, - [1437] = {.lex_state = 13, .external_lex_state = 7}, - [1438] = {.lex_state = 1, .external_lex_state = 4}, - [1439] = {.lex_state = 1, .external_lex_state = 4}, - [1440] = {.lex_state = 13, .external_lex_state = 7}, - [1441] = {.lex_state = 1, .external_lex_state = 4}, - [1442] = {.lex_state = 13, .external_lex_state = 6}, - [1443] = {.lex_state = 13, .external_lex_state = 7}, - [1444] = {.lex_state = 13, .external_lex_state = 7}, - [1445] = {.lex_state = 1, .external_lex_state = 4}, - [1446] = {.lex_state = 13, .external_lex_state = 6}, - [1447] = {.lex_state = 13, .external_lex_state = 7}, - [1448] = {.lex_state = 13, .external_lex_state = 6}, - [1449] = {.lex_state = 13, .external_lex_state = 6}, - [1450] = {.lex_state = 13, .external_lex_state = 6}, + [1424] = {.lex_state = 1, .external_lex_state = 4}, + [1425] = {.lex_state = 13, .external_lex_state = 6}, + [1426] = {.lex_state = 1, .external_lex_state = 4}, + [1427] = {.lex_state = 1, .external_lex_state = 4}, + [1428] = {.lex_state = 9, .external_lex_state = 2}, + [1429] = {.lex_state = 9, .external_lex_state = 2}, + [1430] = {.lex_state = 9, .external_lex_state = 2}, + [1431] = {.lex_state = 9, .external_lex_state = 2}, + [1432] = {.lex_state = 9, .external_lex_state = 2}, + [1433] = {.lex_state = 9, .external_lex_state = 2}, + [1434] = {.lex_state = 9, .external_lex_state = 2}, + [1435] = {.lex_state = 9, .external_lex_state = 2}, + [1436] = {.lex_state = 9, .external_lex_state = 2}, + [1437] = {.lex_state = 2, .external_lex_state = 4}, + [1438] = {.lex_state = 9, .external_lex_state = 2}, + [1439] = {.lex_state = 9, .external_lex_state = 2}, + [1440] = {.lex_state = 9, .external_lex_state = 2}, + [1441] = {.lex_state = 9, .external_lex_state = 2}, + [1442] = {.lex_state = 9, .external_lex_state = 2}, + [1443] = {.lex_state = 9, .external_lex_state = 2}, + [1444] = {.lex_state = 9, .external_lex_state = 2}, + [1445] = {.lex_state = 9, .external_lex_state = 2}, + [1446] = {.lex_state = 9, .external_lex_state = 2}, + [1447] = {.lex_state = 9, .external_lex_state = 2}, + [1448] = {.lex_state = 9, .external_lex_state = 2}, + [1449] = {.lex_state = 9, .external_lex_state = 2}, + [1450] = {.lex_state = 9, .external_lex_state = 2}, [1451] = {.lex_state = 1, .external_lex_state = 4}, - [1452] = {.lex_state = 1, .external_lex_state = 4}, - [1453] = {.lex_state = 13, .external_lex_state = 7}, - [1454] = {.lex_state = 1, .external_lex_state = 4}, - [1455] = {.lex_state = 13, .external_lex_state = 6}, - [1456] = {.lex_state = 1, .external_lex_state = 4}, + [1452] = {.lex_state = 9, .external_lex_state = 2}, + [1453] = {.lex_state = 9, .external_lex_state = 2}, + [1454] = {.lex_state = 9, .external_lex_state = 2}, + [1455] = {.lex_state = 9, .external_lex_state = 2}, + [1456] = {.lex_state = 9, .external_lex_state = 2}, [1457] = {.lex_state = 9, .external_lex_state = 2}, - [1458] = {.lex_state = 13, .external_lex_state = 6}, - [1459] = {.lex_state = 1, .external_lex_state = 4}, - [1460] = {.lex_state = 1, .external_lex_state = 4}, - [1461] = {.lex_state = 1, .external_lex_state = 4}, - [1462] = {.lex_state = 13, .external_lex_state = 6}, - [1463] = {.lex_state = 1, .external_lex_state = 4}, + [1458] = {.lex_state = 9, .external_lex_state = 2}, + [1459] = {.lex_state = 9, .external_lex_state = 2}, + [1460] = {.lex_state = 9, .external_lex_state = 2}, + [1461] = {.lex_state = 9, .external_lex_state = 2}, + [1462] = {.lex_state = 9, .external_lex_state = 2}, + [1463] = {.lex_state = 9, .external_lex_state = 2}, [1464] = {.lex_state = 9, .external_lex_state = 2}, [1465] = {.lex_state = 9, .external_lex_state = 2}, [1466] = {.lex_state = 9, .external_lex_state = 2}, @@ -25334,7 +24985,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1504] = {.lex_state = 9, .external_lex_state = 2}, [1505] = {.lex_state = 9, .external_lex_state = 2}, [1506] = {.lex_state = 9, .external_lex_state = 2}, - [1507] = {.lex_state = 1, .external_lex_state = 4}, + [1507] = {.lex_state = 9, .external_lex_state = 2}, [1508] = {.lex_state = 9, .external_lex_state = 2}, [1509] = {.lex_state = 9, .external_lex_state = 2}, [1510] = {.lex_state = 9, .external_lex_state = 2}, @@ -25353,7 +25004,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1523] = {.lex_state = 9, .external_lex_state = 2}, [1524] = {.lex_state = 9, .external_lex_state = 2}, [1525] = {.lex_state = 9, .external_lex_state = 2}, - [1526] = {.lex_state = 1, .external_lex_state = 4}, + [1526] = {.lex_state = 9, .external_lex_state = 2}, [1527] = {.lex_state = 9, .external_lex_state = 2}, [1528] = {.lex_state = 9, .external_lex_state = 2}, [1529] = {.lex_state = 9, .external_lex_state = 2}, @@ -25376,7 +25027,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1546] = {.lex_state = 9, .external_lex_state = 2}, [1547] = {.lex_state = 9, .external_lex_state = 2}, [1548] = {.lex_state = 9, .external_lex_state = 2}, - [1549] = {.lex_state = 1, .external_lex_state = 4}, + [1549] = {.lex_state = 9, .external_lex_state = 2}, [1550] = {.lex_state = 9, .external_lex_state = 2}, [1551] = {.lex_state = 9, .external_lex_state = 2}, [1552] = {.lex_state = 9, .external_lex_state = 2}, @@ -25402,7 +25053,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1572] = {.lex_state = 9, .external_lex_state = 2}, [1573] = {.lex_state = 9, .external_lex_state = 2}, [1574] = {.lex_state = 9, .external_lex_state = 2}, - [1575] = {.lex_state = 9, .external_lex_state = 2}, + [1575] = {.lex_state = 2, .external_lex_state = 4}, [1576] = {.lex_state = 9, .external_lex_state = 2}, [1577] = {.lex_state = 9, .external_lex_state = 2}, [1578] = {.lex_state = 9, .external_lex_state = 2}, @@ -25445,97 +25096,97 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1615] = {.lex_state = 9, .external_lex_state = 2}, [1616] = {.lex_state = 9, .external_lex_state = 2}, [1617] = {.lex_state = 9, .external_lex_state = 2}, - [1618] = {.lex_state = 9, .external_lex_state = 2}, + [1618] = {.lex_state = 13, .external_lex_state = 6}, [1619] = {.lex_state = 9, .external_lex_state = 2}, - [1620] = {.lex_state = 9, .external_lex_state = 2}, - [1621] = {.lex_state = 1, .external_lex_state = 4}, - [1622] = {.lex_state = 9, .external_lex_state = 2}, - [1623] = {.lex_state = 9, .external_lex_state = 2}, + [1620] = {.lex_state = 13, .external_lex_state = 6}, + [1621] = {.lex_state = 2, .external_lex_state = 4}, + [1622] = {.lex_state = 13, .external_lex_state = 6}, + [1623] = {.lex_state = 13, .external_lex_state = 6}, [1624] = {.lex_state = 9, .external_lex_state = 2}, [1625] = {.lex_state = 9, .external_lex_state = 2}, - [1626] = {.lex_state = 9, .external_lex_state = 2}, - [1627] = {.lex_state = 9, .external_lex_state = 2}, - [1628] = {.lex_state = 9, .external_lex_state = 2}, - [1629] = {.lex_state = 9, .external_lex_state = 2}, - [1630] = {.lex_state = 9, .external_lex_state = 2}, - [1631] = {.lex_state = 9, .external_lex_state = 2}, + [1626] = {.lex_state = 13, .external_lex_state = 6}, + [1627] = {.lex_state = 13, .external_lex_state = 6}, + [1628] = {.lex_state = 13, .external_lex_state = 6}, + [1629] = {.lex_state = 13, .external_lex_state = 6}, + [1630] = {.lex_state = 13, .external_lex_state = 6}, + [1631] = {.lex_state = 13, .external_lex_state = 6}, [1632] = {.lex_state = 9, .external_lex_state = 2}, - [1633] = {.lex_state = 9, .external_lex_state = 2}, + [1633] = {.lex_state = 13, .external_lex_state = 6}, [1634] = {.lex_state = 9, .external_lex_state = 2}, [1635] = {.lex_state = 9, .external_lex_state = 2}, - [1636] = {.lex_state = 9, .external_lex_state = 2}, + [1636] = {.lex_state = 13, .external_lex_state = 6}, [1637] = {.lex_state = 9, .external_lex_state = 2}, [1638] = {.lex_state = 9, .external_lex_state = 2}, [1639] = {.lex_state = 9, .external_lex_state = 2}, [1640] = {.lex_state = 9, .external_lex_state = 2}, [1641] = {.lex_state = 9, .external_lex_state = 2}, [1642] = {.lex_state = 9, .external_lex_state = 2}, - [1643] = {.lex_state = 13, .external_lex_state = 6}, - [1644] = {.lex_state = 2, .external_lex_state = 4}, - [1645] = {.lex_state = 2, .external_lex_state = 4}, - [1646] = {.lex_state = 2, .external_lex_state = 4}, - [1647] = {.lex_state = 1, .external_lex_state = 4}, - [1648] = {.lex_state = 2, .external_lex_state = 4}, - [1649] = {.lex_state = 2, .external_lex_state = 4}, - [1650] = {.lex_state = 2, .external_lex_state = 4}, - [1651] = {.lex_state = 2, .external_lex_state = 4}, - [1652] = {.lex_state = 2, .external_lex_state = 4}, - [1653] = {.lex_state = 2, .external_lex_state = 4}, + [1643] = {.lex_state = 9, .external_lex_state = 2}, + [1644] = {.lex_state = 9, .external_lex_state = 2}, + [1645] = {.lex_state = 9, .external_lex_state = 2}, + [1646] = {.lex_state = 9, .external_lex_state = 2}, + [1647] = {.lex_state = 9, .external_lex_state = 2}, + [1648] = {.lex_state = 9, .external_lex_state = 2}, + [1649] = {.lex_state = 9, .external_lex_state = 2}, + [1650] = {.lex_state = 9, .external_lex_state = 2}, + [1651] = {.lex_state = 9, .external_lex_state = 2}, + [1652] = {.lex_state = 9, .external_lex_state = 2}, + [1653] = {.lex_state = 9, .external_lex_state = 2}, [1654] = {.lex_state = 9, .external_lex_state = 2}, [1655] = {.lex_state = 9, .external_lex_state = 2}, [1656] = {.lex_state = 9, .external_lex_state = 2}, [1657] = {.lex_state = 9, .external_lex_state = 2}, [1658] = {.lex_state = 9, .external_lex_state = 2}, [1659] = {.lex_state = 9, .external_lex_state = 2}, - [1660] = {.lex_state = 2, .external_lex_state = 4}, + [1660] = {.lex_state = 9, .external_lex_state = 2}, [1661] = {.lex_state = 9, .external_lex_state = 2}, [1662] = {.lex_state = 9, .external_lex_state = 2}, - [1663] = {.lex_state = 13, .external_lex_state = 6}, - [1664] = {.lex_state = 2, .external_lex_state = 4}, + [1663] = {.lex_state = 9, .external_lex_state = 2}, + [1664] = {.lex_state = 9, .external_lex_state = 2}, [1665] = {.lex_state = 9, .external_lex_state = 2}, [1666] = {.lex_state = 9, .external_lex_state = 2}, [1667] = {.lex_state = 9, .external_lex_state = 2}, - [1668] = {.lex_state = 9, .external_lex_state = 2}, + [1668] = {.lex_state = 13, .external_lex_state = 6}, [1669] = {.lex_state = 9, .external_lex_state = 2}, [1670] = {.lex_state = 9, .external_lex_state = 2}, [1671] = {.lex_state = 9, .external_lex_state = 2}, [1672] = {.lex_state = 9, .external_lex_state = 2}, - [1673] = {.lex_state = 9, .external_lex_state = 2}, - [1674] = {.lex_state = 9, .external_lex_state = 2}, + [1673] = {.lex_state = 2, .external_lex_state = 4}, + [1674] = {.lex_state = 2, .external_lex_state = 4}, [1675] = {.lex_state = 9, .external_lex_state = 2}, [1676] = {.lex_state = 9, .external_lex_state = 2}, [1677] = {.lex_state = 9, .external_lex_state = 2}, [1678] = {.lex_state = 9, .external_lex_state = 2}, [1679] = {.lex_state = 9, .external_lex_state = 2}, - [1680] = {.lex_state = 13, .external_lex_state = 6}, + [1680] = {.lex_state = 9, .external_lex_state = 2}, [1681] = {.lex_state = 9, .external_lex_state = 2}, [1682] = {.lex_state = 9, .external_lex_state = 2}, [1683] = {.lex_state = 9, .external_lex_state = 2}, - [1684] = {.lex_state = 9, .external_lex_state = 2}, + [1684] = {.lex_state = 1, .external_lex_state = 4}, [1685] = {.lex_state = 9, .external_lex_state = 2}, - [1686] = {.lex_state = 9, .external_lex_state = 2}, + [1686] = {.lex_state = 2, .external_lex_state = 4}, [1687] = {.lex_state = 9, .external_lex_state = 2}, - [1688] = {.lex_state = 9, .external_lex_state = 2}, + [1688] = {.lex_state = 2, .external_lex_state = 4}, [1689] = {.lex_state = 9, .external_lex_state = 2}, - [1690] = {.lex_state = 13, .external_lex_state = 6}, - [1691] = {.lex_state = 9, .external_lex_state = 2}, + [1690] = {.lex_state = 9, .external_lex_state = 2}, + [1691] = {.lex_state = 2, .external_lex_state = 4}, [1692] = {.lex_state = 9, .external_lex_state = 2}, - [1693] = {.lex_state = 13, .external_lex_state = 6}, - [1694] = {.lex_state = 13, .external_lex_state = 6}, - [1695] = {.lex_state = 13, .external_lex_state = 6}, - [1696] = {.lex_state = 13, .external_lex_state = 6}, - [1697] = {.lex_state = 13, .external_lex_state = 6}, - [1698] = {.lex_state = 13, .external_lex_state = 6}, - [1699] = {.lex_state = 13, .external_lex_state = 6}, - [1700] = {.lex_state = 13, .external_lex_state = 6}, - [1701] = {.lex_state = 13, .external_lex_state = 6}, - [1702] = {.lex_state = 13, .external_lex_state = 6}, + [1693] = {.lex_state = 9, .external_lex_state = 2}, + [1694] = {.lex_state = 9, .external_lex_state = 2}, + [1695] = {.lex_state = 9, .external_lex_state = 2}, + [1696] = {.lex_state = 9, .external_lex_state = 2}, + [1697] = {.lex_state = 9, .external_lex_state = 2}, + [1698] = {.lex_state = 9, .external_lex_state = 2}, + [1699] = {.lex_state = 9, .external_lex_state = 2}, + [1700] = {.lex_state = 9, .external_lex_state = 2}, + [1701] = {.lex_state = 9, .external_lex_state = 2}, + [1702] = {.lex_state = 9, .external_lex_state = 2}, [1703] = {.lex_state = 9, .external_lex_state = 2}, [1704] = {.lex_state = 9, .external_lex_state = 2}, [1705] = {.lex_state = 9, .external_lex_state = 2}, [1706] = {.lex_state = 9, .external_lex_state = 2}, [1707] = {.lex_state = 9, .external_lex_state = 2}, - [1708] = {.lex_state = 9, .external_lex_state = 2}, + [1708] = {.lex_state = 1, .external_lex_state = 4}, [1709] = {.lex_state = 9, .external_lex_state = 2}, [1710] = {.lex_state = 9, .external_lex_state = 2}, [1711] = {.lex_state = 9, .external_lex_state = 2}, @@ -25549,14 +25200,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1719] = {.lex_state = 9, .external_lex_state = 2}, [1720] = {.lex_state = 9, .external_lex_state = 2}, [1721] = {.lex_state = 9, .external_lex_state = 2}, - [1722] = {.lex_state = 13, .external_lex_state = 6}, - [1723] = {.lex_state = 9, .external_lex_state = 2}, - [1724] = {.lex_state = 9, .external_lex_state = 2}, - [1725] = {.lex_state = 9, .external_lex_state = 2}, - [1726] = {.lex_state = 9, .external_lex_state = 2}, + [1722] = {.lex_state = 9, .external_lex_state = 2}, + [1723] = {.lex_state = 2, .external_lex_state = 4}, + [1724] = {.lex_state = 2, .external_lex_state = 4}, + [1725] = {.lex_state = 2, .external_lex_state = 4}, + [1726] = {.lex_state = 2, .external_lex_state = 4}, [1727] = {.lex_state = 9, .external_lex_state = 2}, [1728] = {.lex_state = 9, .external_lex_state = 2}, - [1729] = {.lex_state = 9, .external_lex_state = 2}, + [1729] = {.lex_state = 13, .external_lex_state = 6}, [1730] = {.lex_state = 9, .external_lex_state = 2}, [1731] = {.lex_state = 9, .external_lex_state = 2}, [1732] = {.lex_state = 9, .external_lex_state = 2}, @@ -25565,7 +25216,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1735] = {.lex_state = 9, .external_lex_state = 2}, [1736] = {.lex_state = 9, .external_lex_state = 2}, [1737] = {.lex_state = 9, .external_lex_state = 2}, - [1738] = {.lex_state = 1, .external_lex_state = 4}, + [1738] = {.lex_state = 9, .external_lex_state = 2}, [1739] = {.lex_state = 9, .external_lex_state = 2}, [1740] = {.lex_state = 9, .external_lex_state = 2}, [1741] = {.lex_state = 9, .external_lex_state = 2}, @@ -25573,18 +25224,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1743] = {.lex_state = 9, .external_lex_state = 2}, [1744] = {.lex_state = 9, .external_lex_state = 2}, [1745] = {.lex_state = 9, .external_lex_state = 2}, - [1746] = {.lex_state = 9, .external_lex_state = 2}, - [1747] = {.lex_state = 9, .external_lex_state = 2}, + [1746] = {.lex_state = 13, .external_lex_state = 6}, + [1747] = {.lex_state = 13, .external_lex_state = 6}, [1748] = {.lex_state = 9, .external_lex_state = 2}, [1749] = {.lex_state = 9, .external_lex_state = 2}, [1750] = {.lex_state = 9, .external_lex_state = 2}, [1751] = {.lex_state = 9, .external_lex_state = 2}, [1752] = {.lex_state = 9, .external_lex_state = 2}, - [1753] = {.lex_state = 9, .external_lex_state = 2}, + [1753] = {.lex_state = 13, .external_lex_state = 6}, [1754] = {.lex_state = 9, .external_lex_state = 2}, [1755] = {.lex_state = 9, .external_lex_state = 2}, [1756] = {.lex_state = 9, .external_lex_state = 2}, - [1757] = {.lex_state = 9, .external_lex_state = 2}, + [1757] = {.lex_state = 2, .external_lex_state = 4}, [1758] = {.lex_state = 9, .external_lex_state = 2}, [1759] = {.lex_state = 9, .external_lex_state = 2}, [1760] = {.lex_state = 9, .external_lex_state = 2}, @@ -25605,7 +25256,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1775] = {.lex_state = 9, .external_lex_state = 2}, [1776] = {.lex_state = 9, .external_lex_state = 2}, [1777] = {.lex_state = 9, .external_lex_state = 2}, - [1778] = {.lex_state = 1, .external_lex_state = 4}, + [1778] = {.lex_state = 9, .external_lex_state = 2}, [1779] = {.lex_state = 9, .external_lex_state = 2}, [1780] = {.lex_state = 9, .external_lex_state = 2}, [1781] = {.lex_state = 9, .external_lex_state = 2}, @@ -25617,27 +25268,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1787] = {.lex_state = 9, .external_lex_state = 2}, [1788] = {.lex_state = 9, .external_lex_state = 2}, [1789] = {.lex_state = 9, .external_lex_state = 2}, - [1790] = {.lex_state = 9, .external_lex_state = 2}, + [1790] = {.lex_state = 2, .external_lex_state = 4}, [1791] = {.lex_state = 9, .external_lex_state = 2}, - [1792] = {.lex_state = 9, .external_lex_state = 2}, + [1792] = {.lex_state = 2, .external_lex_state = 4}, [1793] = {.lex_state = 9, .external_lex_state = 2}, [1794] = {.lex_state = 9, .external_lex_state = 2}, [1795] = {.lex_state = 9, .external_lex_state = 2}, [1796] = {.lex_state = 9, .external_lex_state = 2}, [1797] = {.lex_state = 9, .external_lex_state = 2}, - [1798] = {.lex_state = 13, .external_lex_state = 6}, + [1798] = {.lex_state = 9, .external_lex_state = 2}, [1799] = {.lex_state = 9, .external_lex_state = 2}, - [1800] = {.lex_state = 2, .external_lex_state = 4}, + [1800] = {.lex_state = 9, .external_lex_state = 2}, [1801] = {.lex_state = 9, .external_lex_state = 2}, [1802] = {.lex_state = 9, .external_lex_state = 2}, [1803] = {.lex_state = 9, .external_lex_state = 2}, [1804] = {.lex_state = 9, .external_lex_state = 2}, [1805] = {.lex_state = 9, .external_lex_state = 2}, [1806] = {.lex_state = 9, .external_lex_state = 2}, - [1807] = {.lex_state = 9, .external_lex_state = 2}, + [1807] = {.lex_state = 1, .external_lex_state = 4}, [1808] = {.lex_state = 9, .external_lex_state = 2}, [1809] = {.lex_state = 9, .external_lex_state = 2}, - [1810] = {.lex_state = 9, .external_lex_state = 2}, + [1810] = {.lex_state = 1, .external_lex_state = 4}, [1811] = {.lex_state = 9, .external_lex_state = 2}, [1812] = {.lex_state = 9, .external_lex_state = 2}, [1813] = {.lex_state = 9, .external_lex_state = 2}, @@ -25648,7 +25299,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1818] = {.lex_state = 9, .external_lex_state = 2}, [1819] = {.lex_state = 9, .external_lex_state = 2}, [1820] = {.lex_state = 9, .external_lex_state = 2}, - [1821] = {.lex_state = 2, .external_lex_state = 4}, + [1821] = {.lex_state = 9, .external_lex_state = 2}, [1822] = {.lex_state = 9, .external_lex_state = 2}, [1823] = {.lex_state = 9, .external_lex_state = 2}, [1824] = {.lex_state = 9, .external_lex_state = 2}, @@ -25660,31 +25311,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1830] = {.lex_state = 9, .external_lex_state = 2}, [1831] = {.lex_state = 9, .external_lex_state = 2}, [1832] = {.lex_state = 9, .external_lex_state = 2}, - [1833] = {.lex_state = 13, .external_lex_state = 6}, - [1834] = {.lex_state = 1, .external_lex_state = 4}, + [1833] = {.lex_state = 9, .external_lex_state = 2}, + [1834] = {.lex_state = 9, .external_lex_state = 2}, [1835] = {.lex_state = 9, .external_lex_state = 2}, [1836] = {.lex_state = 9, .external_lex_state = 2}, - [1837] = {.lex_state = 2, .external_lex_state = 4}, + [1837] = {.lex_state = 9, .external_lex_state = 2}, [1838] = {.lex_state = 9, .external_lex_state = 2}, [1839] = {.lex_state = 9, .external_lex_state = 2}, - [1840] = {.lex_state = 13, .external_lex_state = 6}, + [1840] = {.lex_state = 9, .external_lex_state = 2}, [1841] = {.lex_state = 9, .external_lex_state = 2}, [1842] = {.lex_state = 9, .external_lex_state = 2}, [1843] = {.lex_state = 9, .external_lex_state = 2}, [1844] = {.lex_state = 9, .external_lex_state = 2}, - [1845] = {.lex_state = 9, .external_lex_state = 2}, + [1845] = {.lex_state = 13, .external_lex_state = 6}, [1846] = {.lex_state = 9, .external_lex_state = 2}, - [1847] = {.lex_state = 1, .external_lex_state = 4}, - [1848] = {.lex_state = 9, .external_lex_state = 2}, + [1847] = {.lex_state = 13, .external_lex_state = 6}, + [1848] = {.lex_state = 13, .external_lex_state = 6}, [1849] = {.lex_state = 9, .external_lex_state = 2}, [1850] = {.lex_state = 9, .external_lex_state = 2}, [1851] = {.lex_state = 9, .external_lex_state = 2}, [1852] = {.lex_state = 9, .external_lex_state = 2}, - [1853] = {.lex_state = 1, .external_lex_state = 4}, - [1854] = {.lex_state = 2, .external_lex_state = 4}, + [1853] = {.lex_state = 9, .external_lex_state = 2}, + [1854] = {.lex_state = 9, .external_lex_state = 2}, [1855] = {.lex_state = 9, .external_lex_state = 2}, [1856] = {.lex_state = 9, .external_lex_state = 2}, - [1857] = {.lex_state = 13, .external_lex_state = 6}, + [1857] = {.lex_state = 9, .external_lex_state = 2}, [1858] = {.lex_state = 9, .external_lex_state = 2}, [1859] = {.lex_state = 9, .external_lex_state = 2}, [1860] = {.lex_state = 9, .external_lex_state = 2}, @@ -25693,19 +25344,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1863] = {.lex_state = 9, .external_lex_state = 2}, [1864] = {.lex_state = 9, .external_lex_state = 2}, [1865] = {.lex_state = 9, .external_lex_state = 2}, - [1866] = {.lex_state = 9, .external_lex_state = 2}, + [1866] = {.lex_state = 1, .external_lex_state = 4}, [1867] = {.lex_state = 9, .external_lex_state = 2}, - [1868] = {.lex_state = 9, .external_lex_state = 2}, + [1868] = {.lex_state = 1, .external_lex_state = 4}, [1869] = {.lex_state = 9, .external_lex_state = 2}, [1870] = {.lex_state = 9, .external_lex_state = 2}, - [1871] = {.lex_state = 9, .external_lex_state = 2}, - [1872] = {.lex_state = 9, .external_lex_state = 2}, + [1871] = {.lex_state = 2, .external_lex_state = 4}, + [1872] = {.lex_state = 2, .external_lex_state = 4}, [1873] = {.lex_state = 9, .external_lex_state = 2}, [1874] = {.lex_state = 9, .external_lex_state = 2}, [1875] = {.lex_state = 9, .external_lex_state = 2}, [1876] = {.lex_state = 9, .external_lex_state = 2}, [1877] = {.lex_state = 9, .external_lex_state = 2}, - [1878] = {.lex_state = 13, .external_lex_state = 6}, + [1878] = {.lex_state = 9, .external_lex_state = 2}, [1879] = {.lex_state = 9, .external_lex_state = 2}, [1880] = {.lex_state = 9, .external_lex_state = 2}, [1881] = {.lex_state = 9, .external_lex_state = 2}, @@ -25719,7 +25370,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1889] = {.lex_state = 9, .external_lex_state = 2}, [1890] = {.lex_state = 9, .external_lex_state = 2}, [1891] = {.lex_state = 9, .external_lex_state = 2}, - [1892] = {.lex_state = 9, .external_lex_state = 2}, + [1892] = {.lex_state = 2, .external_lex_state = 4}, [1893] = {.lex_state = 9, .external_lex_state = 2}, [1894] = {.lex_state = 9, .external_lex_state = 2}, [1895] = {.lex_state = 9, .external_lex_state = 2}, @@ -25739,13 +25390,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1909] = {.lex_state = 9, .external_lex_state = 2}, [1910] = {.lex_state = 9, .external_lex_state = 2}, [1911] = {.lex_state = 9, .external_lex_state = 2}, - [1912] = {.lex_state = 9, .external_lex_state = 2}, - [1913] = {.lex_state = 9, .external_lex_state = 2}, + [1912] = {.lex_state = 1, .external_lex_state = 4}, + [1913] = {.lex_state = 1, .external_lex_state = 4}, [1914] = {.lex_state = 9, .external_lex_state = 2}, [1915] = {.lex_state = 9, .external_lex_state = 2}, [1916] = {.lex_state = 9, .external_lex_state = 2}, [1917] = {.lex_state = 9, .external_lex_state = 2}, - [1918] = {.lex_state = 9, .external_lex_state = 2}, + [1918] = {.lex_state = 1, .external_lex_state = 4}, [1919] = {.lex_state = 9, .external_lex_state = 2}, [1920] = {.lex_state = 9, .external_lex_state = 2}, [1921] = {.lex_state = 9, .external_lex_state = 2}, @@ -25790,19 +25441,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1960] = {.lex_state = 9, .external_lex_state = 2}, [1961] = {.lex_state = 9, .external_lex_state = 2}, [1962] = {.lex_state = 9, .external_lex_state = 2}, - [1963] = {.lex_state = 13, .external_lex_state = 6}, + [1963] = {.lex_state = 9, .external_lex_state = 2}, [1964] = {.lex_state = 9, .external_lex_state = 2}, [1965] = {.lex_state = 9, .external_lex_state = 2}, - [1966] = {.lex_state = 13, .external_lex_state = 6}, + [1966] = {.lex_state = 9, .external_lex_state = 2}, [1967] = {.lex_state = 9, .external_lex_state = 2}, [1968] = {.lex_state = 9, .external_lex_state = 2}, - [1969] = {.lex_state = 13, .external_lex_state = 6}, + [1969] = {.lex_state = 9, .external_lex_state = 2}, [1970] = {.lex_state = 9, .external_lex_state = 2}, [1971] = {.lex_state = 9, .external_lex_state = 2}, - [1972] = {.lex_state = 2, .external_lex_state = 4}, + [1972] = {.lex_state = 9, .external_lex_state = 2}, [1973] = {.lex_state = 9, .external_lex_state = 2}, [1974] = {.lex_state = 9, .external_lex_state = 2}, - [1975] = {.lex_state = 2, .external_lex_state = 4}, + [1975] = {.lex_state = 9, .external_lex_state = 2}, [1976] = {.lex_state = 9, .external_lex_state = 2}, [1977] = {.lex_state = 9, .external_lex_state = 2}, [1978] = {.lex_state = 9, .external_lex_state = 2}, @@ -25829,7 +25480,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1999] = {.lex_state = 9, .external_lex_state = 2}, [2000] = {.lex_state = 9, .external_lex_state = 2}, [2001] = {.lex_state = 9, .external_lex_state = 2}, - [2002] = {.lex_state = 9, .external_lex_state = 2}, + [2002] = {.lex_state = 1, .external_lex_state = 4}, [2003] = {.lex_state = 9, .external_lex_state = 2}, [2004] = {.lex_state = 9, .external_lex_state = 2}, [2005] = {.lex_state = 9, .external_lex_state = 2}, @@ -25895,7 +25546,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2065] = {.lex_state = 9, .external_lex_state = 2}, [2066] = {.lex_state = 9, .external_lex_state = 2}, [2067] = {.lex_state = 9, .external_lex_state = 2}, - [2068] = {.lex_state = 9, .external_lex_state = 2}, + [2068] = {.lex_state = 13, .external_lex_state = 6}, [2069] = {.lex_state = 9, .external_lex_state = 2}, [2070] = {.lex_state = 9, .external_lex_state = 2}, [2071] = {.lex_state = 9, .external_lex_state = 2}, @@ -25924,13 +25575,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2094] = {.lex_state = 9, .external_lex_state = 2}, [2095] = {.lex_state = 9, .external_lex_state = 2}, [2096] = {.lex_state = 9, .external_lex_state = 2}, - [2097] = {.lex_state = 9, .external_lex_state = 2}, - [2098] = {.lex_state = 1, .external_lex_state = 4}, - [2099] = {.lex_state = 1, .external_lex_state = 4}, + [2097] = {.lex_state = 1, .external_lex_state = 4}, + [2098] = {.lex_state = 9, .external_lex_state = 2}, + [2099] = {.lex_state = 9, .external_lex_state = 2}, [2100] = {.lex_state = 9, .external_lex_state = 2}, [2101] = {.lex_state = 9, .external_lex_state = 2}, [2102] = {.lex_state = 9, .external_lex_state = 2}, - [2103] = {.lex_state = 9, .external_lex_state = 2}, + [2103] = {.lex_state = 1, .external_lex_state = 4}, [2104] = {.lex_state = 9, .external_lex_state = 2}, [2105] = {.lex_state = 9, .external_lex_state = 2}, [2106] = {.lex_state = 9, .external_lex_state = 2}, @@ -25940,8 +25591,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2110] = {.lex_state = 9, .external_lex_state = 2}, [2111] = {.lex_state = 9, .external_lex_state = 2}, [2112] = {.lex_state = 9, .external_lex_state = 2}, - [2113] = {.lex_state = 1, .external_lex_state = 4}, - [2114] = {.lex_state = 1, .external_lex_state = 4}, + [2113] = {.lex_state = 9, .external_lex_state = 2}, + [2114] = {.lex_state = 9, .external_lex_state = 2}, [2115] = {.lex_state = 9, .external_lex_state = 2}, [2116] = {.lex_state = 9, .external_lex_state = 2}, [2117] = {.lex_state = 9, .external_lex_state = 2}, @@ -25959,10 +25610,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2129] = {.lex_state = 9, .external_lex_state = 2}, [2130] = {.lex_state = 9, .external_lex_state = 2}, [2131] = {.lex_state = 9, .external_lex_state = 2}, - [2132] = {.lex_state = 1, .external_lex_state = 4}, + [2132] = {.lex_state = 9, .external_lex_state = 2}, [2133] = {.lex_state = 9, .external_lex_state = 2}, [2134] = {.lex_state = 9, .external_lex_state = 2}, - [2135] = {.lex_state = 9, .external_lex_state = 2}, + [2135] = {.lex_state = 13, .external_lex_state = 6}, [2136] = {.lex_state = 9, .external_lex_state = 2}, [2137] = {.lex_state = 9, .external_lex_state = 2}, [2138] = {.lex_state = 9, .external_lex_state = 2}, @@ -25984,7 +25635,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2154] = {.lex_state = 9, .external_lex_state = 2}, [2155] = {.lex_state = 9, .external_lex_state = 2}, [2156] = {.lex_state = 9, .external_lex_state = 2}, - [2157] = {.lex_state = 9, .external_lex_state = 2}, + [2157] = {.lex_state = 1, .external_lex_state = 4}, [2158] = {.lex_state = 9, .external_lex_state = 2}, [2159] = {.lex_state = 9, .external_lex_state = 2}, [2160] = {.lex_state = 9, .external_lex_state = 2}, @@ -25996,482 +25647,482 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2166] = {.lex_state = 9, .external_lex_state = 2}, [2167] = {.lex_state = 9, .external_lex_state = 2}, [2168] = {.lex_state = 9, .external_lex_state = 2}, - [2169] = {.lex_state = 9, .external_lex_state = 2}, - [2170] = {.lex_state = 9, .external_lex_state = 2}, - [2171] = {.lex_state = 13, .external_lex_state = 6}, + [2169] = {.lex_state = 13, .external_lex_state = 6}, + [2170] = {.lex_state = 13, .external_lex_state = 6}, + [2171] = {.lex_state = 9, .external_lex_state = 2}, [2172] = {.lex_state = 9, .external_lex_state = 2}, [2173] = {.lex_state = 13, .external_lex_state = 6}, [2174] = {.lex_state = 9, .external_lex_state = 2}, - [2175] = {.lex_state = 2, .external_lex_state = 4}, + [2175] = {.lex_state = 9, .external_lex_state = 2}, [2176] = {.lex_state = 9, .external_lex_state = 2}, - [2177] = {.lex_state = 13, .external_lex_state = 6}, + [2177] = {.lex_state = 9, .external_lex_state = 2}, [2178] = {.lex_state = 9, .external_lex_state = 2}, [2179] = {.lex_state = 9, .external_lex_state = 2}, - [2180] = {.lex_state = 9, .external_lex_state = 2}, - [2181] = {.lex_state = 9, .external_lex_state = 2}, - [2182] = {.lex_state = 13, .external_lex_state = 6}, + [2180] = {.lex_state = 13, .external_lex_state = 6}, + [2181] = {.lex_state = 13, .external_lex_state = 6}, + [2182] = {.lex_state = 9, .external_lex_state = 2}, [2183] = {.lex_state = 9, .external_lex_state = 2}, [2184] = {.lex_state = 9, .external_lex_state = 2}, [2185] = {.lex_state = 9, .external_lex_state = 2}, - [2186] = {.lex_state = 9, .external_lex_state = 2}, - [2187] = {.lex_state = 9, .external_lex_state = 2}, + [2186] = {.lex_state = 13, .external_lex_state = 6}, + [2187] = {.lex_state = 1, .external_lex_state = 4}, [2188] = {.lex_state = 9, .external_lex_state = 2}, - [2189] = {.lex_state = 9, .external_lex_state = 2}, - [2190] = {.lex_state = 9, .external_lex_state = 2}, - [2191] = {.lex_state = 9, .external_lex_state = 2}, - [2192] = {.lex_state = 9, .external_lex_state = 2}, - [2193] = {.lex_state = 9, .external_lex_state = 2}, - [2194] = {.lex_state = 9, .external_lex_state = 2}, - [2195] = {.lex_state = 9, .external_lex_state = 2}, - [2196] = {.lex_state = 9, .external_lex_state = 2}, - [2197] = {.lex_state = 9, .external_lex_state = 2}, - [2198] = {.lex_state = 9, .external_lex_state = 2}, - [2199] = {.lex_state = 9, .external_lex_state = 2}, - [2200] = {.lex_state = 9, .external_lex_state = 2}, - [2201] = {.lex_state = 9, .external_lex_state = 2}, - [2202] = {.lex_state = 9, .external_lex_state = 2}, - [2203] = {.lex_state = 9, .external_lex_state = 2}, - [2204] = {.lex_state = 9, .external_lex_state = 2}, - [2205] = {.lex_state = 9, .external_lex_state = 2}, + [2189] = {.lex_state = 1, .external_lex_state = 4}, + [2190] = {.lex_state = 13, .external_lex_state = 7}, + [2191] = {.lex_state = 13, .external_lex_state = 6}, + [2192] = {.lex_state = 11, .external_lex_state = 5}, + [2193] = {.lex_state = 13, .external_lex_state = 7}, + [2194] = {.lex_state = 13, .external_lex_state = 6}, + [2195] = {.lex_state = 11, .external_lex_state = 5}, + [2196] = {.lex_state = 13, .external_lex_state = 7}, + [2197] = {.lex_state = 13, .external_lex_state = 6}, + [2198] = {.lex_state = 13, .external_lex_state = 7}, + [2199] = {.lex_state = 13, .external_lex_state = 7}, + [2200] = {.lex_state = 13, .external_lex_state = 6}, + [2201] = {.lex_state = 13, .external_lex_state = 7}, + [2202] = {.lex_state = 13, .external_lex_state = 6}, + [2203] = {.lex_state = 13, .external_lex_state = 7}, + [2204] = {.lex_state = 13, .external_lex_state = 7}, + [2205] = {.lex_state = 13, .external_lex_state = 7}, [2206] = {.lex_state = 13, .external_lex_state = 6}, - [2207] = {.lex_state = 9, .external_lex_state = 2}, - [2208] = {.lex_state = 9, .external_lex_state = 2}, - [2209] = {.lex_state = 9, .external_lex_state = 2}, - [2210] = {.lex_state = 9, .external_lex_state = 2}, - [2211] = {.lex_state = 9, .external_lex_state = 2}, - [2212] = {.lex_state = 9, .external_lex_state = 2}, - [2213] = {.lex_state = 9, .external_lex_state = 2}, - [2214] = {.lex_state = 9, .external_lex_state = 2}, - [2215] = {.lex_state = 9, .external_lex_state = 2}, - [2216] = {.lex_state = 9, .external_lex_state = 2}, - [2217] = {.lex_state = 9, .external_lex_state = 2}, - [2218] = {.lex_state = 9, .external_lex_state = 2}, - [2219] = {.lex_state = 9, .external_lex_state = 2}, - [2220] = {.lex_state = 9, .external_lex_state = 2}, - [2221] = {.lex_state = 9, .external_lex_state = 2}, - [2222] = {.lex_state = 9, .external_lex_state = 2}, - [2223] = {.lex_state = 9, .external_lex_state = 2}, - [2224] = {.lex_state = 9, .external_lex_state = 2}, - [2225] = {.lex_state = 13, .external_lex_state = 6}, + [2207] = {.lex_state = 13, .external_lex_state = 7}, + [2208] = {.lex_state = 13, .external_lex_state = 7}, + [2209] = {.lex_state = 13, .external_lex_state = 6}, + [2210] = {.lex_state = 1, .external_lex_state = 4}, + [2211] = {.lex_state = 13, .external_lex_state = 6}, + [2212] = {.lex_state = 13, .external_lex_state = 6}, + [2213] = {.lex_state = 1, .external_lex_state = 4}, + [2214] = {.lex_state = 13, .external_lex_state = 6}, + [2215] = {.lex_state = 11, .external_lex_state = 5}, + [2216] = {.lex_state = 13, .external_lex_state = 7}, + [2217] = {.lex_state = 1, .external_lex_state = 4}, + [2218] = {.lex_state = 13, .external_lex_state = 6}, + [2219] = {.lex_state = 1, .external_lex_state = 4}, + [2220] = {.lex_state = 13, .external_lex_state = 6}, + [2221] = {.lex_state = 13, .external_lex_state = 7}, + [2222] = {.lex_state = 13, .external_lex_state = 6}, + [2223] = {.lex_state = 11, .external_lex_state = 5}, + [2224] = {.lex_state = 13, .external_lex_state = 7}, + [2225] = {.lex_state = 1, .external_lex_state = 4}, [2226] = {.lex_state = 13, .external_lex_state = 7}, - [2227] = {.lex_state = 13, .external_lex_state = 7}, + [2227] = {.lex_state = 13, .external_lex_state = 6}, [2228] = {.lex_state = 13, .external_lex_state = 7}, [2229] = {.lex_state = 13, .external_lex_state = 6}, [2230] = {.lex_state = 13, .external_lex_state = 7}, - [2231] = {.lex_state = 13, .external_lex_state = 7}, + [2231] = {.lex_state = 1, .external_lex_state = 4}, [2232] = {.lex_state = 13, .external_lex_state = 7}, - [2233] = {.lex_state = 13, .external_lex_state = 7}, + [2233] = {.lex_state = 1, .external_lex_state = 4}, [2234] = {.lex_state = 13, .external_lex_state = 7}, - [2235] = {.lex_state = 13, .external_lex_state = 6}, + [2235] = {.lex_state = 13, .external_lex_state = 7}, [2236] = {.lex_state = 13, .external_lex_state = 7}, - [2237] = {.lex_state = 13, .external_lex_state = 7}, - [2238] = {.lex_state = 13, .external_lex_state = 7}, + [2237] = {.lex_state = 1, .external_lex_state = 4}, + [2238] = {.lex_state = 1, .external_lex_state = 4}, [2239] = {.lex_state = 13, .external_lex_state = 7}, [2240] = {.lex_state = 13, .external_lex_state = 7}, - [2241] = {.lex_state = 13, .external_lex_state = 7}, + [2241] = {.lex_state = 1, .external_lex_state = 4}, [2242] = {.lex_state = 13, .external_lex_state = 6}, - [2243] = {.lex_state = 13, .external_lex_state = 6}, - [2244] = {.lex_state = 13, .external_lex_state = 6}, - [2245] = {.lex_state = 13, .external_lex_state = 6}, + [2243] = {.lex_state = 13, .external_lex_state = 7}, + [2244] = {.lex_state = 1, .external_lex_state = 4}, + [2245] = {.lex_state = 13, .external_lex_state = 7}, [2246] = {.lex_state = 13, .external_lex_state = 7}, [2247] = {.lex_state = 13, .external_lex_state = 6}, [2248] = {.lex_state = 13, .external_lex_state = 6}, - [2249] = {.lex_state = 13, .external_lex_state = 6}, - [2250] = {.lex_state = 13, .external_lex_state = 7}, - [2251] = {.lex_state = 1, .external_lex_state = 4}, - [2252] = {.lex_state = 1, .external_lex_state = 4}, - [2253] = {.lex_state = 1, .external_lex_state = 4}, - [2254] = {.lex_state = 1, .external_lex_state = 4}, - [2255] = {.lex_state = 1, .external_lex_state = 4}, - [2256] = {.lex_state = 1, .external_lex_state = 4}, - [2257] = {.lex_state = 13, .external_lex_state = 7}, + [2249] = {.lex_state = 1, .external_lex_state = 3}, + [2250] = {.lex_state = 13, .external_lex_state = 6}, + [2251] = {.lex_state = 13, .external_lex_state = 6}, + [2252] = {.lex_state = 13, .external_lex_state = 7}, + [2253] = {.lex_state = 13, .external_lex_state = 6}, + [2254] = {.lex_state = 13, .external_lex_state = 6}, + [2255] = {.lex_state = 13, .external_lex_state = 6}, + [2256] = {.lex_state = 13, .external_lex_state = 6}, + [2257] = {.lex_state = 1, .external_lex_state = 3}, [2258] = {.lex_state = 13, .external_lex_state = 6}, - [2259] = {.lex_state = 1, .external_lex_state = 4}, + [2259] = {.lex_state = 13, .external_lex_state = 7}, [2260] = {.lex_state = 13, .external_lex_state = 7}, - [2261] = {.lex_state = 1, .external_lex_state = 4}, - [2262] = {.lex_state = 13, .external_lex_state = 6}, - [2263] = {.lex_state = 1, .external_lex_state = 4}, - [2264] = {.lex_state = 1, .external_lex_state = 4}, - [2265] = {.lex_state = 13, .external_lex_state = 7}, - [2266] = {.lex_state = 13, .external_lex_state = 7}, - [2267] = {.lex_state = 13, .external_lex_state = 7}, - [2268] = {.lex_state = 13, .external_lex_state = 7}, - [2269] = {.lex_state = 1, .external_lex_state = 4}, - [2270] = {.lex_state = 13, .external_lex_state = 6}, - [2271] = {.lex_state = 13, .external_lex_state = 7}, - [2272] = {.lex_state = 13, .external_lex_state = 6}, + [2261] = {.lex_state = 13, .external_lex_state = 7}, + [2262] = {.lex_state = 13, .external_lex_state = 7}, + [2263] = {.lex_state = 2, .external_lex_state = 4}, + [2264] = {.lex_state = 2, .external_lex_state = 4}, + [2265] = {.lex_state = 2, .external_lex_state = 4}, + [2266] = {.lex_state = 2, .external_lex_state = 4}, + [2267] = {.lex_state = 2, .external_lex_state = 4}, + [2268] = {.lex_state = 13, .external_lex_state = 6}, + [2269] = {.lex_state = 11, .external_lex_state = 5}, + [2270] = {.lex_state = 2, .external_lex_state = 4}, + [2271] = {.lex_state = 2, .external_lex_state = 4}, + [2272] = {.lex_state = 2, .external_lex_state = 4}, [2273] = {.lex_state = 13, .external_lex_state = 6}, - [2274] = {.lex_state = 13, .external_lex_state = 7}, - [2275] = {.lex_state = 13, .external_lex_state = 6}, + [2274] = {.lex_state = 2, .external_lex_state = 4}, + [2275] = {.lex_state = 2, .external_lex_state = 4}, [2276] = {.lex_state = 13, .external_lex_state = 7}, - [2277] = {.lex_state = 13, .external_lex_state = 7}, - [2278] = {.lex_state = 1, .external_lex_state = 4}, - [2279] = {.lex_state = 13, .external_lex_state = 6}, + [2277] = {.lex_state = 13, .external_lex_state = 6}, + [2278] = {.lex_state = 2, .external_lex_state = 4}, + [2279] = {.lex_state = 13, .external_lex_state = 7}, [2280] = {.lex_state = 13, .external_lex_state = 6}, - [2281] = {.lex_state = 13, .external_lex_state = 7}, - [2282] = {.lex_state = 13, .external_lex_state = 6}, + [2281] = {.lex_state = 2, .external_lex_state = 4}, + [2282] = {.lex_state = 13, .external_lex_state = 7}, [2283] = {.lex_state = 11, .external_lex_state = 5}, - [2284] = {.lex_state = 11, .external_lex_state = 5}, - [2285] = {.lex_state = 13, .external_lex_state = 7}, - [2286] = {.lex_state = 13, .external_lex_state = 6}, + [2284] = {.lex_state = 13, .external_lex_state = 6}, + [2285] = {.lex_state = 2, .external_lex_state = 4}, + [2286] = {.lex_state = 2, .external_lex_state = 4}, [2287] = {.lex_state = 11, .external_lex_state = 5}, - [2288] = {.lex_state = 11, .external_lex_state = 5}, - [2289] = {.lex_state = 11, .external_lex_state = 5}, - [2290] = {.lex_state = 2, .external_lex_state = 4}, - [2291] = {.lex_state = 2, .external_lex_state = 4}, - [2292] = {.lex_state = 13, .external_lex_state = 7}, - [2293] = {.lex_state = 13, .external_lex_state = 6}, - [2294] = {.lex_state = 13, .external_lex_state = 7}, - [2295] = {.lex_state = 2, .external_lex_state = 4}, - [2296] = {.lex_state = 13, .external_lex_state = 7}, - [2297] = {.lex_state = 11, .external_lex_state = 5}, - [2298] = {.lex_state = 13, .external_lex_state = 7}, - [2299] = {.lex_state = 2, .external_lex_state = 4}, + [2288] = {.lex_state = 13, .external_lex_state = 6}, + [2289] = {.lex_state = 13, .external_lex_state = 6}, + [2290] = {.lex_state = 13, .external_lex_state = 7}, + [2291] = {.lex_state = 13, .external_lex_state = 7}, + [2292] = {.lex_state = 13, .external_lex_state = 6}, + [2293] = {.lex_state = 13, .external_lex_state = 7}, + [2294] = {.lex_state = 13, .external_lex_state = 6}, + [2295] = {.lex_state = 13, .external_lex_state = 7}, + [2296] = {.lex_state = 13, .external_lex_state = 6}, + [2297] = {.lex_state = 2, .external_lex_state = 4}, + [2298] = {.lex_state = 13, .external_lex_state = 6}, + [2299] = {.lex_state = 13, .external_lex_state = 6}, [2300] = {.lex_state = 13, .external_lex_state = 7}, - [2301] = {.lex_state = 13, .external_lex_state = 7}, + [2301] = {.lex_state = 13, .external_lex_state = 6}, [2302] = {.lex_state = 13, .external_lex_state = 6}, [2303] = {.lex_state = 13, .external_lex_state = 6}, - [2304] = {.lex_state = 2, .external_lex_state = 4}, - [2305] = {.lex_state = 13, .external_lex_state = 7}, - [2306] = {.lex_state = 13, .external_lex_state = 7}, - [2307] = {.lex_state = 13, .external_lex_state = 6}, - [2308] = {.lex_state = 2, .external_lex_state = 4}, + [2304] = {.lex_state = 11, .external_lex_state = 5}, + [2305] = {.lex_state = 13, .external_lex_state = 6}, + [2306] = {.lex_state = 2, .external_lex_state = 4}, + [2307] = {.lex_state = 13, .external_lex_state = 7}, + [2308] = {.lex_state = 13, .external_lex_state = 7}, [2309] = {.lex_state = 13, .external_lex_state = 6}, - [2310] = {.lex_state = 11, .external_lex_state = 5}, - [2311] = {.lex_state = 2, .external_lex_state = 4}, - [2312] = {.lex_state = 1, .external_lex_state = 3}, - [2313] = {.lex_state = 1, .external_lex_state = 3}, + [2310] = {.lex_state = 13, .external_lex_state = 7}, + [2311] = {.lex_state = 13, .external_lex_state = 6}, + [2312] = {.lex_state = 13, .external_lex_state = 6}, + [2313] = {.lex_state = 2, .external_lex_state = 4}, [2314] = {.lex_state = 11, .external_lex_state = 5}, [2315] = {.lex_state = 13, .external_lex_state = 6}, - [2316] = {.lex_state = 13, .external_lex_state = 6}, - [2317] = {.lex_state = 13, .external_lex_state = 6}, - [2318] = {.lex_state = 13, .external_lex_state = 6}, + [2316] = {.lex_state = 11, .external_lex_state = 5}, + [2317] = {.lex_state = 1, .external_lex_state = 4}, + [2318] = {.lex_state = 13, .external_lex_state = 7}, [2319] = {.lex_state = 13, .external_lex_state = 6}, [2320] = {.lex_state = 13, .external_lex_state = 6}, - [2321] = {.lex_state = 2, .external_lex_state = 4}, - [2322] = {.lex_state = 2, .external_lex_state = 4}, - [2323] = {.lex_state = 2, .external_lex_state = 4}, - [2324] = {.lex_state = 2, .external_lex_state = 4}, + [2321] = {.lex_state = 13, .external_lex_state = 6}, + [2322] = {.lex_state = 13, .external_lex_state = 6}, + [2323] = {.lex_state = 13, .external_lex_state = 6}, + [2324] = {.lex_state = 13, .external_lex_state = 6}, [2325] = {.lex_state = 13, .external_lex_state = 6}, - [2326] = {.lex_state = 2, .external_lex_state = 4}, - [2327] = {.lex_state = 2, .external_lex_state = 4}, - [2328] = {.lex_state = 2, .external_lex_state = 4}, + [2326] = {.lex_state = 13, .external_lex_state = 6}, + [2327] = {.lex_state = 13, .external_lex_state = 6}, + [2328] = {.lex_state = 11, .external_lex_state = 5}, [2329] = {.lex_state = 13, .external_lex_state = 6}, - [2330] = {.lex_state = 13, .external_lex_state = 7}, - [2331] = {.lex_state = 2, .external_lex_state = 4}, - [2332] = {.lex_state = 13, .external_lex_state = 7}, - [2333] = {.lex_state = 11, .external_lex_state = 5}, - [2334] = {.lex_state = 2, .external_lex_state = 4}, + [2330] = {.lex_state = 13, .external_lex_state = 6}, + [2331] = {.lex_state = 13, .external_lex_state = 6}, + [2332] = {.lex_state = 13, .external_lex_state = 6}, + [2333] = {.lex_state = 13, .external_lex_state = 6}, + [2334] = {.lex_state = 13, .external_lex_state = 6}, [2335] = {.lex_state = 13, .external_lex_state = 7}, [2336] = {.lex_state = 13, .external_lex_state = 6}, - [2337] = {.lex_state = 2, .external_lex_state = 4}, + [2337] = {.lex_state = 13, .external_lex_state = 6}, [2338] = {.lex_state = 13, .external_lex_state = 6}, [2339] = {.lex_state = 13, .external_lex_state = 6}, [2340] = {.lex_state = 13, .external_lex_state = 6}, - [2341] = {.lex_state = 11, .external_lex_state = 5}, - [2342] = {.lex_state = 13, .external_lex_state = 7}, - [2343] = {.lex_state = 13, .external_lex_state = 6}, - [2344] = {.lex_state = 13, .external_lex_state = 6}, + [2341] = {.lex_state = 13, .external_lex_state = 7}, + [2342] = {.lex_state = 13, .external_lex_state = 6}, + [2343] = {.lex_state = 13, .external_lex_state = 7}, + [2344] = {.lex_state = 13, .external_lex_state = 7}, [2345] = {.lex_state = 13, .external_lex_state = 7}, [2346] = {.lex_state = 13, .external_lex_state = 7}, - [2347] = {.lex_state = 13, .external_lex_state = 6}, + [2347] = {.lex_state = 13, .external_lex_state = 7}, [2348] = {.lex_state = 13, .external_lex_state = 6}, - [2349] = {.lex_state = 13, .external_lex_state = 6}, - [2350] = {.lex_state = 13, .external_lex_state = 6}, + [2349] = {.lex_state = 1, .external_lex_state = 4}, + [2350] = {.lex_state = 13, .external_lex_state = 7}, [2351] = {.lex_state = 13, .external_lex_state = 6}, - [2352] = {.lex_state = 13, .external_lex_state = 7}, + [2352] = {.lex_state = 13, .external_lex_state = 6}, [2353] = {.lex_state = 13, .external_lex_state = 6}, [2354] = {.lex_state = 13, .external_lex_state = 7}, [2355] = {.lex_state = 13, .external_lex_state = 6}, - [2356] = {.lex_state = 13, .external_lex_state = 6}, + [2356] = {.lex_state = 1, .external_lex_state = 4}, [2357] = {.lex_state = 13, .external_lex_state = 7}, - [2358] = {.lex_state = 13, .external_lex_state = 7}, + [2358] = {.lex_state = 13, .external_lex_state = 6}, [2359] = {.lex_state = 13, .external_lex_state = 7}, [2360] = {.lex_state = 13, .external_lex_state = 6}, - [2361] = {.lex_state = 13, .external_lex_state = 7}, - [2362] = {.lex_state = 13, .external_lex_state = 6}, - [2363] = {.lex_state = 13, .external_lex_state = 7}, - [2364] = {.lex_state = 13, .external_lex_state = 6}, - [2365] = {.lex_state = 1, .external_lex_state = 4}, + [2361] = {.lex_state = 13, .external_lex_state = 6}, + [2362] = {.lex_state = 13, .external_lex_state = 7}, + [2363] = {.lex_state = 13, .external_lex_state = 6}, + [2364] = {.lex_state = 13, .external_lex_state = 7}, + [2365] = {.lex_state = 13, .external_lex_state = 7}, [2366] = {.lex_state = 13, .external_lex_state = 6}, - [2367] = {.lex_state = 1, .external_lex_state = 4}, - [2368] = {.lex_state = 13, .external_lex_state = 7}, - [2369] = {.lex_state = 13, .external_lex_state = 7}, - [2370] = {.lex_state = 13, .external_lex_state = 7}, + [2367] = {.lex_state = 13, .external_lex_state = 7}, + [2368] = {.lex_state = 11, .external_lex_state = 5}, + [2369] = {.lex_state = 1, .external_lex_state = 4}, + [2370] = {.lex_state = 1, .external_lex_state = 4}, [2371] = {.lex_state = 13, .external_lex_state = 6}, [2372] = {.lex_state = 13, .external_lex_state = 6}, - [2373] = {.lex_state = 13, .external_lex_state = 7}, - [2374] = {.lex_state = 13, .external_lex_state = 7}, - [2375] = {.lex_state = 1, .external_lex_state = 4}, - [2376] = {.lex_state = 13, .external_lex_state = 6}, - [2377] = {.lex_state = 11, .external_lex_state = 5}, - [2378] = {.lex_state = 1, .external_lex_state = 4}, + [2373] = {.lex_state = 13, .external_lex_state = 6}, + [2374] = {.lex_state = 1, .external_lex_state = 4}, + [2375] = {.lex_state = 13, .external_lex_state = 7}, + [2376] = {.lex_state = 1, .external_lex_state = 4}, + [2377] = {.lex_state = 13, .external_lex_state = 6}, + [2378] = {.lex_state = 13, .external_lex_state = 7}, [2379] = {.lex_state = 1, .external_lex_state = 4}, - [2380] = {.lex_state = 13, .external_lex_state = 6}, - [2381] = {.lex_state = 1, .external_lex_state = 4}, - [2382] = {.lex_state = 13, .external_lex_state = 7}, + [2380] = {.lex_state = 11, .external_lex_state = 5}, + [2381] = {.lex_state = 13, .external_lex_state = 6}, + [2382] = {.lex_state = 1, .external_lex_state = 4}, [2383] = {.lex_state = 13, .external_lex_state = 6}, [2384] = {.lex_state = 13, .external_lex_state = 6}, - [2385] = {.lex_state = 11, .external_lex_state = 5}, + [2385] = {.lex_state = 1, .external_lex_state = 4}, [2386] = {.lex_state = 13, .external_lex_state = 6}, - [2387] = {.lex_state = 1, .external_lex_state = 4}, - [2388] = {.lex_state = 13, .external_lex_state = 6}, - [2389] = {.lex_state = 13, .external_lex_state = 6}, - [2390] = {.lex_state = 13, .external_lex_state = 6}, + [2387] = {.lex_state = 13, .external_lex_state = 6}, + [2388] = {.lex_state = 11, .external_lex_state = 5}, + [2389] = {.lex_state = 11, .external_lex_state = 5}, + [2390] = {.lex_state = 13, .external_lex_state = 7}, [2391] = {.lex_state = 13, .external_lex_state = 7}, - [2392] = {.lex_state = 13, .external_lex_state = 6}, - [2393] = {.lex_state = 13, .external_lex_state = 6}, - [2394] = {.lex_state = 13, .external_lex_state = 6}, - [2395] = {.lex_state = 13, .external_lex_state = 6}, - [2396] = {.lex_state = 13, .external_lex_state = 6}, - [2397] = {.lex_state = 13, .external_lex_state = 6}, - [2398] = {.lex_state = 13, .external_lex_state = 6}, - [2399] = {.lex_state = 13, .external_lex_state = 7}, - [2400] = {.lex_state = 13, .external_lex_state = 7}, - [2401] = {.lex_state = 1, .external_lex_state = 4}, + [2392] = {.lex_state = 13, .external_lex_state = 7}, + [2393] = {.lex_state = 13, .external_lex_state = 7}, + [2394] = {.lex_state = 13, .external_lex_state = 7}, + [2395] = {.lex_state = 13, .external_lex_state = 7}, + [2396] = {.lex_state = 11, .external_lex_state = 5}, + [2397] = {.lex_state = 13, .external_lex_state = 7}, + [2398] = {.lex_state = 13, .external_lex_state = 7}, + [2399] = {.lex_state = 13, .external_lex_state = 6}, + [2400] = {.lex_state = 11, .external_lex_state = 5}, + [2401] = {.lex_state = 13, .external_lex_state = 7}, [2402] = {.lex_state = 13, .external_lex_state = 6}, - [2403] = {.lex_state = 13, .external_lex_state = 6}, + [2403] = {.lex_state = 13, .external_lex_state = 7}, [2404] = {.lex_state = 13, .external_lex_state = 7}, - [2405] = {.lex_state = 13, .external_lex_state = 7}, + [2405] = {.lex_state = 13, .external_lex_state = 6}, [2406] = {.lex_state = 13, .external_lex_state = 7}, - [2407] = {.lex_state = 13, .external_lex_state = 6}, - [2408] = {.lex_state = 11, .external_lex_state = 5}, - [2409] = {.lex_state = 13, .external_lex_state = 7}, + [2407] = {.lex_state = 13, .external_lex_state = 7}, + [2408] = {.lex_state = 13, .external_lex_state = 7}, + [2409] = {.lex_state = 13, .external_lex_state = 6}, [2410] = {.lex_state = 13, .external_lex_state = 7}, [2411] = {.lex_state = 13, .external_lex_state = 7}, - [2412] = {.lex_state = 13, .external_lex_state = 6}, - [2413] = {.lex_state = 1, .external_lex_state = 4}, - [2414] = {.lex_state = 1, .external_lex_state = 4}, - [2415] = {.lex_state = 11, .external_lex_state = 5}, + [2412] = {.lex_state = 13, .external_lex_state = 7}, + [2413] = {.lex_state = 13, .external_lex_state = 7}, + [2414] = {.lex_state = 13, .external_lex_state = 7}, + [2415] = {.lex_state = 13, .external_lex_state = 6}, [2416] = {.lex_state = 13, .external_lex_state = 6}, [2417] = {.lex_state = 13, .external_lex_state = 7}, - [2418] = {.lex_state = 13, .external_lex_state = 6}, - [2419] = {.lex_state = 13, .external_lex_state = 6}, + [2418] = {.lex_state = 11, .external_lex_state = 5}, + [2419] = {.lex_state = 13, .external_lex_state = 7}, [2420] = {.lex_state = 13, .external_lex_state = 6}, - [2421] = {.lex_state = 13, .external_lex_state = 7}, + [2421] = {.lex_state = 13, .external_lex_state = 6}, [2422] = {.lex_state = 13, .external_lex_state = 6}, - [2423] = {.lex_state = 13, .external_lex_state = 6}, + [2423] = {.lex_state = 13, .external_lex_state = 7}, [2424] = {.lex_state = 13, .external_lex_state = 6}, - [2425] = {.lex_state = 13, .external_lex_state = 6}, + [2425] = {.lex_state = 13, .external_lex_state = 7}, [2426] = {.lex_state = 13, .external_lex_state = 7}, - [2427] = {.lex_state = 13, .external_lex_state = 7}, + [2427] = {.lex_state = 13, .external_lex_state = 6}, [2428] = {.lex_state = 13, .external_lex_state = 6}, - [2429] = {.lex_state = 13, .external_lex_state = 6}, - [2430] = {.lex_state = 13, .external_lex_state = 6}, - [2431] = {.lex_state = 11, .external_lex_state = 5}, - [2432] = {.lex_state = 13, .external_lex_state = 6}, - [2433] = {.lex_state = 13, .external_lex_state = 6}, - [2434] = {.lex_state = 13, .external_lex_state = 6}, + [2429] = {.lex_state = 13, .external_lex_state = 7}, + [2430] = {.lex_state = 13, .external_lex_state = 7}, + [2431] = {.lex_state = 13, .external_lex_state = 6}, + [2432] = {.lex_state = 13, .external_lex_state = 7}, + [2433] = {.lex_state = 13, .external_lex_state = 7}, + [2434] = {.lex_state = 13, .external_lex_state = 7}, [2435] = {.lex_state = 13, .external_lex_state = 6}, [2436] = {.lex_state = 13, .external_lex_state = 7}, - [2437] = {.lex_state = 13, .external_lex_state = 7}, - [2438] = {.lex_state = 13, .external_lex_state = 7}, + [2437] = {.lex_state = 13, .external_lex_state = 6}, + [2438] = {.lex_state = 13, .external_lex_state = 6}, [2439] = {.lex_state = 13, .external_lex_state = 7}, - [2440] = {.lex_state = 13, .external_lex_state = 7}, - [2441] = {.lex_state = 11, .external_lex_state = 5}, + [2440] = {.lex_state = 13, .external_lex_state = 6}, + [2441] = {.lex_state = 13, .external_lex_state = 6}, [2442] = {.lex_state = 13, .external_lex_state = 7}, - [2443] = {.lex_state = 13, .external_lex_state = 7}, - [2444] = {.lex_state = 13, .external_lex_state = 7}, + [2443] = {.lex_state = 13, .external_lex_state = 6}, + [2444] = {.lex_state = 13, .external_lex_state = 6}, [2445] = {.lex_state = 13, .external_lex_state = 7}, - [2446] = {.lex_state = 13, .external_lex_state = 7}, - [2447] = {.lex_state = 11, .external_lex_state = 5}, + [2446] = {.lex_state = 13, .external_lex_state = 6}, + [2447] = {.lex_state = 13, .external_lex_state = 6}, [2448] = {.lex_state = 13, .external_lex_state = 7}, - [2449] = {.lex_state = 13, .external_lex_state = 6}, - [2450] = {.lex_state = 13, .external_lex_state = 6}, - [2451] = {.lex_state = 11, .external_lex_state = 5}, - [2452] = {.lex_state = 13, .external_lex_state = 7}, - [2453] = {.lex_state = 13, .external_lex_state = 7}, + [2449] = {.lex_state = 13, .external_lex_state = 7}, + [2450] = {.lex_state = 13, .external_lex_state = 7}, + [2451] = {.lex_state = 13, .external_lex_state = 6}, + [2452] = {.lex_state = 13, .external_lex_state = 6}, + [2453] = {.lex_state = 13, .external_lex_state = 6}, [2454] = {.lex_state = 13, .external_lex_state = 6}, [2455] = {.lex_state = 13, .external_lex_state = 7}, - [2456] = {.lex_state = 13, .external_lex_state = 7}, + [2456] = {.lex_state = 13, .external_lex_state = 6}, [2457] = {.lex_state = 13, .external_lex_state = 6}, [2458] = {.lex_state = 13, .external_lex_state = 6}, - [2459] = {.lex_state = 11, .external_lex_state = 5}, + [2459] = {.lex_state = 13, .external_lex_state = 7}, [2460] = {.lex_state = 13, .external_lex_state = 6}, - [2461] = {.lex_state = 13, .external_lex_state = 7}, - [2462] = {.lex_state = 11, .external_lex_state = 5}, - [2463] = {.lex_state = 13, .external_lex_state = 7}, + [2461] = {.lex_state = 13, .external_lex_state = 6}, + [2462] = {.lex_state = 13, .external_lex_state = 6}, + [2463] = {.lex_state = 13, .external_lex_state = 6}, [2464] = {.lex_state = 13, .external_lex_state = 7}, [2465] = {.lex_state = 13, .external_lex_state = 6}, [2466] = {.lex_state = 13, .external_lex_state = 7}, [2467] = {.lex_state = 13, .external_lex_state = 6}, [2468] = {.lex_state = 13, .external_lex_state = 7}, - [2469] = {.lex_state = 13, .external_lex_state = 6}, - [2470] = {.lex_state = 13, .external_lex_state = 6}, + [2469] = {.lex_state = 13, .external_lex_state = 7}, + [2470] = {.lex_state = 13, .external_lex_state = 7}, [2471] = {.lex_state = 13, .external_lex_state = 6}, - [2472] = {.lex_state = 13, .external_lex_state = 6}, - [2473] = {.lex_state = 13, .external_lex_state = 6}, - [2474] = {.lex_state = 13, .external_lex_state = 6}, - [2475] = {.lex_state = 13, .external_lex_state = 7}, - [2476] = {.lex_state = 13, .external_lex_state = 6}, - [2477] = {.lex_state = 13, .external_lex_state = 6}, - [2478] = {.lex_state = 13, .external_lex_state = 7}, + [2472] = {.lex_state = 13, .external_lex_state = 7}, + [2473] = {.lex_state = 13, .external_lex_state = 7}, + [2474] = {.lex_state = 13, .external_lex_state = 7}, + [2475] = {.lex_state = 13, .external_lex_state = 6}, + [2476] = {.lex_state = 13, .external_lex_state = 7}, + [2477] = {.lex_state = 13, .external_lex_state = 7}, + [2478] = {.lex_state = 13, .external_lex_state = 6}, [2479] = {.lex_state = 13, .external_lex_state = 6}, [2480] = {.lex_state = 13, .external_lex_state = 6}, [2481] = {.lex_state = 13, .external_lex_state = 7}, - [2482] = {.lex_state = 13, .external_lex_state = 6}, + [2482] = {.lex_state = 13, .external_lex_state = 7}, [2483] = {.lex_state = 13, .external_lex_state = 7}, - [2484] = {.lex_state = 13, .external_lex_state = 6}, - [2485] = {.lex_state = 13, .external_lex_state = 6}, - [2486] = {.lex_state = 13, .external_lex_state = 7}, + [2484] = {.lex_state = 13, .external_lex_state = 7}, + [2485] = {.lex_state = 13, .external_lex_state = 7}, + [2486] = {.lex_state = 13, .external_lex_state = 6}, [2487] = {.lex_state = 13, .external_lex_state = 7}, [2488] = {.lex_state = 13, .external_lex_state = 7}, [2489] = {.lex_state = 13, .external_lex_state = 7}, - [2490] = {.lex_state = 13, .external_lex_state = 6}, + [2490] = {.lex_state = 13, .external_lex_state = 7}, [2491] = {.lex_state = 13, .external_lex_state = 6}, [2492] = {.lex_state = 13, .external_lex_state = 7}, [2493] = {.lex_state = 13, .external_lex_state = 6}, - [2494] = {.lex_state = 13, .external_lex_state = 7}, + [2494] = {.lex_state = 13, .external_lex_state = 6}, [2495] = {.lex_state = 13, .external_lex_state = 7}, - [2496] = {.lex_state = 13, .external_lex_state = 6}, - [2497] = {.lex_state = 13, .external_lex_state = 7}, - [2498] = {.lex_state = 13, .external_lex_state = 6}, - [2499] = {.lex_state = 13, .external_lex_state = 6}, + [2496] = {.lex_state = 13, .external_lex_state = 7}, + [2497] = {.lex_state = 13, .external_lex_state = 6}, + [2498] = {.lex_state = 13, .external_lex_state = 7}, + [2499] = {.lex_state = 13, .external_lex_state = 7}, [2500] = {.lex_state = 13, .external_lex_state = 6}, [2501] = {.lex_state = 13, .external_lex_state = 6}, - [2502] = {.lex_state = 13, .external_lex_state = 7}, + [2502] = {.lex_state = 13, .external_lex_state = 6}, [2503] = {.lex_state = 13, .external_lex_state = 6}, [2504] = {.lex_state = 13, .external_lex_state = 6}, - [2505] = {.lex_state = 13, .external_lex_state = 6}, + [2505] = {.lex_state = 13, .external_lex_state = 7}, [2506] = {.lex_state = 13, .external_lex_state = 7}, [2507] = {.lex_state = 13, .external_lex_state = 7}, - [2508] = {.lex_state = 13, .external_lex_state = 7}, + [2508] = {.lex_state = 13, .external_lex_state = 6}, [2509] = {.lex_state = 13, .external_lex_state = 7}, - [2510] = {.lex_state = 13, .external_lex_state = 6}, + [2510] = {.lex_state = 13, .external_lex_state = 7}, [2511] = {.lex_state = 13, .external_lex_state = 6}, - [2512] = {.lex_state = 13, .external_lex_state = 7}, - [2513] = {.lex_state = 13, .external_lex_state = 6}, + [2512] = {.lex_state = 13, .external_lex_state = 6}, + [2513] = {.lex_state = 13, .external_lex_state = 7}, [2514] = {.lex_state = 13, .external_lex_state = 6}, - [2515] = {.lex_state = 13, .external_lex_state = 6}, + [2515] = {.lex_state = 13, .external_lex_state = 7}, [2516] = {.lex_state = 13, .external_lex_state = 6}, [2517] = {.lex_state = 13, .external_lex_state = 6}, [2518] = {.lex_state = 13, .external_lex_state = 6}, - [2519] = {.lex_state = 13, .external_lex_state = 7}, + [2519] = {.lex_state = 13, .external_lex_state = 6}, [2520] = {.lex_state = 13, .external_lex_state = 7}, - [2521] = {.lex_state = 13, .external_lex_state = 6}, + [2521] = {.lex_state = 13, .external_lex_state = 7}, [2522] = {.lex_state = 13, .external_lex_state = 7}, - [2523] = {.lex_state = 13, .external_lex_state = 6}, - [2524] = {.lex_state = 13, .external_lex_state = 6}, + [2523] = {.lex_state = 13, .external_lex_state = 7}, + [2524] = {.lex_state = 13, .external_lex_state = 7}, [2525] = {.lex_state = 13, .external_lex_state = 7}, [2526] = {.lex_state = 13, .external_lex_state = 7}, [2527] = {.lex_state = 13, .external_lex_state = 7}, - [2528] = {.lex_state = 13, .external_lex_state = 7}, - [2529] = {.lex_state = 13, .external_lex_state = 7}, - [2530] = {.lex_state = 13, .external_lex_state = 7}, + [2528] = {.lex_state = 13, .external_lex_state = 6}, + [2529] = {.lex_state = 13, .external_lex_state = 6}, + [2530] = {.lex_state = 13, .external_lex_state = 6}, [2531] = {.lex_state = 13, .external_lex_state = 6}, - [2532] = {.lex_state = 13, .external_lex_state = 7}, - [2533] = {.lex_state = 13, .external_lex_state = 6}, + [2532] = {.lex_state = 13, .external_lex_state = 6}, + [2533] = {.lex_state = 13, .external_lex_state = 7}, [2534] = {.lex_state = 13, .external_lex_state = 6}, [2535] = {.lex_state = 13, .external_lex_state = 7}, [2536] = {.lex_state = 13, .external_lex_state = 6}, - [2537] = {.lex_state = 13, .external_lex_state = 6}, - [2538] = {.lex_state = 13, .external_lex_state = 7}, - [2539] = {.lex_state = 13, .external_lex_state = 6}, - [2540] = {.lex_state = 13, .external_lex_state = 6}, + [2537] = {.lex_state = 11, .external_lex_state = 5}, + [2538] = {.lex_state = 13, .external_lex_state = 6}, + [2539] = {.lex_state = 13, .external_lex_state = 7}, + [2540] = {.lex_state = 11, .external_lex_state = 5}, [2541] = {.lex_state = 13, .external_lex_state = 6}, - [2542] = {.lex_state = 13, .external_lex_state = 6}, - [2543] = {.lex_state = 13, .external_lex_state = 7}, - [2544] = {.lex_state = 13, .external_lex_state = 7}, + [2542] = {.lex_state = 13, .external_lex_state = 7}, + [2543] = {.lex_state = 13, .external_lex_state = 6}, + [2544] = {.lex_state = 13, .external_lex_state = 6}, [2545] = {.lex_state = 13, .external_lex_state = 7}, - [2546] = {.lex_state = 13, .external_lex_state = 6}, + [2546] = {.lex_state = 13, .external_lex_state = 7}, [2547] = {.lex_state = 13, .external_lex_state = 7}, - [2548] = {.lex_state = 13, .external_lex_state = 6}, + [2548] = {.lex_state = 13, .external_lex_state = 7}, [2549] = {.lex_state = 13, .external_lex_state = 6}, - [2550] = {.lex_state = 13, .external_lex_state = 6}, + [2550] = {.lex_state = 13, .external_lex_state = 7}, [2551] = {.lex_state = 13, .external_lex_state = 7}, - [2552] = {.lex_state = 13, .external_lex_state = 7}, - [2553] = {.lex_state = 13, .external_lex_state = 7}, - [2554] = {.lex_state = 13, .external_lex_state = 7}, + [2552] = {.lex_state = 13, .external_lex_state = 6}, + [2553] = {.lex_state = 11, .external_lex_state = 5}, + [2554] = {.lex_state = 11, .external_lex_state = 5}, [2555] = {.lex_state = 13, .external_lex_state = 6}, [2556] = {.lex_state = 13, .external_lex_state = 7}, - [2557] = {.lex_state = 13, .external_lex_state = 6}, + [2557] = {.lex_state = 13, .external_lex_state = 7}, [2558] = {.lex_state = 13, .external_lex_state = 7}, - [2559] = {.lex_state = 13, .external_lex_state = 6}, - [2560] = {.lex_state = 13, .external_lex_state = 6}, - [2561] = {.lex_state = 13, .external_lex_state = 7}, - [2562] = {.lex_state = 13, .external_lex_state = 7}, + [2559] = {.lex_state = 13, .external_lex_state = 7}, + [2560] = {.lex_state = 11, .external_lex_state = 5}, + [2561] = {.lex_state = 13, .external_lex_state = 6}, + [2562] = {.lex_state = 13, .external_lex_state = 6}, [2563] = {.lex_state = 13, .external_lex_state = 6}, [2564] = {.lex_state = 13, .external_lex_state = 7}, [2565] = {.lex_state = 13, .external_lex_state = 7}, [2566] = {.lex_state = 13, .external_lex_state = 7}, - [2567] = {.lex_state = 13, .external_lex_state = 7}, - [2568] = {.lex_state = 13, .external_lex_state = 7}, - [2569] = {.lex_state = 13, .external_lex_state = 7}, + [2567] = {.lex_state = 13, .external_lex_state = 6}, + [2568] = {.lex_state = 13, .external_lex_state = 6}, + [2569] = {.lex_state = 13, .external_lex_state = 6}, [2570] = {.lex_state = 13, .external_lex_state = 7}, - [2571] = {.lex_state = 13, .external_lex_state = 7}, - [2572] = {.lex_state = 13, .external_lex_state = 7}, + [2571] = {.lex_state = 13, .external_lex_state = 6}, + [2572] = {.lex_state = 13, .external_lex_state = 6}, [2573] = {.lex_state = 13, .external_lex_state = 7}, - [2574] = {.lex_state = 13, .external_lex_state = 7}, + [2574] = {.lex_state = 13, .external_lex_state = 6}, [2575] = {.lex_state = 13, .external_lex_state = 6}, [2576] = {.lex_state = 13, .external_lex_state = 7}, [2577] = {.lex_state = 13, .external_lex_state = 6}, [2578] = {.lex_state = 13, .external_lex_state = 7}, [2579] = {.lex_state = 13, .external_lex_state = 6}, - [2580] = {.lex_state = 13, .external_lex_state = 7}, + [2580] = {.lex_state = 13, .external_lex_state = 6}, [2581] = {.lex_state = 13, .external_lex_state = 6}, [2582] = {.lex_state = 13, .external_lex_state = 7}, [2583] = {.lex_state = 13, .external_lex_state = 6}, - [2584] = {.lex_state = 13, .external_lex_state = 6}, - [2585] = {.lex_state = 13, .external_lex_state = 6}, - [2586] = {.lex_state = 13, .external_lex_state = 7}, - [2587] = {.lex_state = 13, .external_lex_state = 7}, + [2584] = {.lex_state = 13, .external_lex_state = 7}, + [2585] = {.lex_state = 13, .external_lex_state = 7}, + [2586] = {.lex_state = 13, .external_lex_state = 6}, + [2587] = {.lex_state = 13, .external_lex_state = 6}, [2588] = {.lex_state = 13, .external_lex_state = 6}, - [2589] = {.lex_state = 11, .external_lex_state = 5}, - [2590] = {.lex_state = 13, .external_lex_state = 6}, - [2591] = {.lex_state = 13, .external_lex_state = 7}, - [2592] = {.lex_state = 13, .external_lex_state = 7}, - [2593] = {.lex_state = 13, .external_lex_state = 6}, - [2594] = {.lex_state = 13, .external_lex_state = 7}, + [2589] = {.lex_state = 13, .external_lex_state = 6}, + [2590] = {.lex_state = 13, .external_lex_state = 7}, + [2591] = {.lex_state = 13, .external_lex_state = 6}, + [2592] = {.lex_state = 11, .external_lex_state = 5}, + [2593] = {.lex_state = 13, .external_lex_state = 7}, + [2594] = {.lex_state = 13, .external_lex_state = 6}, [2595] = {.lex_state = 13, .external_lex_state = 6}, - [2596] = {.lex_state = 13, .external_lex_state = 7}, + [2596] = {.lex_state = 13, .external_lex_state = 6}, [2597] = {.lex_state = 13, .external_lex_state = 6}, [2598] = {.lex_state = 13, .external_lex_state = 6}, [2599] = {.lex_state = 13, .external_lex_state = 6}, - [2600] = {.lex_state = 13, .external_lex_state = 6}, + [2600] = {.lex_state = 13, .external_lex_state = 7}, [2601] = {.lex_state = 13, .external_lex_state = 7}, - [2602] = {.lex_state = 13, .external_lex_state = 6}, + [2602] = {.lex_state = 13, .external_lex_state = 7}, [2603] = {.lex_state = 13, .external_lex_state = 6}, - [2604] = {.lex_state = 13, .external_lex_state = 6}, + [2604] = {.lex_state = 13, .external_lex_state = 7}, [2605] = {.lex_state = 13, .external_lex_state = 6}, - [2606] = {.lex_state = 13, .external_lex_state = 7}, + [2606] = {.lex_state = 13, .external_lex_state = 6}, [2607] = {.lex_state = 13, .external_lex_state = 6}, - [2608] = {.lex_state = 13, .external_lex_state = 6}, - [2609] = {.lex_state = 13, .external_lex_state = 7}, - [2610] = {.lex_state = 11, .external_lex_state = 5}, - [2611] = {.lex_state = 13, .external_lex_state = 6}, - [2612] = {.lex_state = 13, .external_lex_state = 6}, - [2613] = {.lex_state = 11, .external_lex_state = 5}, + [2608] = {.lex_state = 11, .external_lex_state = 5}, + [2609] = {.lex_state = 13, .external_lex_state = 6}, + [2610] = {.lex_state = 13, .external_lex_state = 6}, + [2611] = {.lex_state = 13, .external_lex_state = 7}, + [2612] = {.lex_state = 11, .external_lex_state = 5}, + [2613] = {.lex_state = 13, .external_lex_state = 7}, [2614] = {.lex_state = 13, .external_lex_state = 6}, [2615] = {.lex_state = 13, .external_lex_state = 6}, - [2616] = {.lex_state = 13, .external_lex_state = 6}, + [2616] = {.lex_state = 13, .external_lex_state = 7}, [2617] = {.lex_state = 13, .external_lex_state = 6}, - [2618] = {.lex_state = 13, .external_lex_state = 6}, - [2619] = {.lex_state = 13, .external_lex_state = 6}, + [2618] = {.lex_state = 13, .external_lex_state = 7}, + [2619] = {.lex_state = 11, .external_lex_state = 5}, [2620] = {.lex_state = 13, .external_lex_state = 6}, - [2621] = {.lex_state = 13, .external_lex_state = 6}, + [2621] = {.lex_state = 11, .external_lex_state = 5}, [2622] = {.lex_state = 13, .external_lex_state = 7}, - [2623] = {.lex_state = 13, .external_lex_state = 7}, - [2624] = {.lex_state = 13, .external_lex_state = 7}, - [2625] = {.lex_state = 13, .external_lex_state = 6}, - [2626] = {.lex_state = 13, .external_lex_state = 6}, + [2623] = {.lex_state = 13, .external_lex_state = 6}, + [2624] = {.lex_state = 11, .external_lex_state = 5}, + [2625] = {.lex_state = 13, .external_lex_state = 7}, + [2626] = {.lex_state = 13, .external_lex_state = 7}, [2627] = {.lex_state = 13, .external_lex_state = 7}, [2628] = {.lex_state = 13, .external_lex_state = 7}, - [2629] = {.lex_state = 13, .external_lex_state = 6}, - [2630] = {.lex_state = 13, .external_lex_state = 6}, - [2631] = {.lex_state = 13, .external_lex_state = 6}, - [2632] = {.lex_state = 13, .external_lex_state = 6}, - [2633] = {.lex_state = 13, .external_lex_state = 6}, - [2634] = {.lex_state = 13, .external_lex_state = 6}, - [2635] = {.lex_state = 11, .external_lex_state = 5}, - [2636] = {.lex_state = 11, .external_lex_state = 5}, + [2629] = {.lex_state = 13, .external_lex_state = 7}, + [2630] = {.lex_state = 13, .external_lex_state = 7}, + [2631] = {.lex_state = 13, .external_lex_state = 7}, + [2632] = {.lex_state = 13, .external_lex_state = 7}, + [2633] = {.lex_state = 13, .external_lex_state = 7}, + [2634] = {.lex_state = 13, .external_lex_state = 7}, + [2635] = {.lex_state = 13, .external_lex_state = 7}, + [2636] = {.lex_state = 13, .external_lex_state = 7}, [2637] = {.lex_state = 13, .external_lex_state = 7}, [2638] = {.lex_state = 13, .external_lex_state = 7}, [2639] = {.lex_state = 13, .external_lex_state = 7}, - [2640] = {.lex_state = 11, .external_lex_state = 5}, + [2640] = {.lex_state = 13, .external_lex_state = 7}, [2641] = {.lex_state = 13, .external_lex_state = 7}, - [2642] = {.lex_state = 13, .external_lex_state = 6}, - [2643] = {.lex_state = 13, .external_lex_state = 7}, - [2644] = {.lex_state = 13, .external_lex_state = 6}, + [2642] = {.lex_state = 13, .external_lex_state = 7}, + [2643] = {.lex_state = 13, .external_lex_state = 6}, + [2644] = {.lex_state = 13, .external_lex_state = 7}, [2645] = {.lex_state = 13, .external_lex_state = 6}, [2646] = {.lex_state = 13, .external_lex_state = 7}, [2647] = {.lex_state = 13, .external_lex_state = 7}, @@ -26479,108 +26130,108 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2649] = {.lex_state = 13, .external_lex_state = 7}, [2650] = {.lex_state = 13, .external_lex_state = 7}, [2651] = {.lex_state = 13, .external_lex_state = 7}, - [2652] = {.lex_state = 13, .external_lex_state = 7}, + [2652] = {.lex_state = 13, .external_lex_state = 6}, [2653] = {.lex_state = 13, .external_lex_state = 7}, - [2654] = {.lex_state = 13, .external_lex_state = 6}, - [2655] = {.lex_state = 13, .external_lex_state = 6}, - [2656] = {.lex_state = 13, .external_lex_state = 6}, + [2654] = {.lex_state = 13, .external_lex_state = 7}, + [2655] = {.lex_state = 13, .external_lex_state = 7}, + [2656] = {.lex_state = 13, .external_lex_state = 7}, [2657] = {.lex_state = 13, .external_lex_state = 7}, [2658] = {.lex_state = 13, .external_lex_state = 7}, [2659] = {.lex_state = 13, .external_lex_state = 7}, - [2660] = {.lex_state = 11, .external_lex_state = 5}, + [2660] = {.lex_state = 13, .external_lex_state = 6}, [2661] = {.lex_state = 13, .external_lex_state = 6}, [2662] = {.lex_state = 13, .external_lex_state = 7}, [2663] = {.lex_state = 13, .external_lex_state = 7}, - [2664] = {.lex_state = 13, .external_lex_state = 7}, + [2664] = {.lex_state = 13, .external_lex_state = 6}, [2665] = {.lex_state = 13, .external_lex_state = 7}, [2666] = {.lex_state = 13, .external_lex_state = 7}, [2667] = {.lex_state = 13, .external_lex_state = 7}, [2668] = {.lex_state = 13, .external_lex_state = 7}, [2669] = {.lex_state = 13, .external_lex_state = 7}, [2670] = {.lex_state = 13, .external_lex_state = 7}, - [2671] = {.lex_state = 13, .external_lex_state = 7}, + [2671] = {.lex_state = 13, .external_lex_state = 6}, [2672] = {.lex_state = 13, .external_lex_state = 7}, [2673] = {.lex_state = 13, .external_lex_state = 7}, - [2674] = {.lex_state = 13, .external_lex_state = 7}, + [2674] = {.lex_state = 11, .external_lex_state = 5}, [2675] = {.lex_state = 13, .external_lex_state = 7}, [2676] = {.lex_state = 13, .external_lex_state = 7}, [2677] = {.lex_state = 13, .external_lex_state = 7}, - [2678] = {.lex_state = 13, .external_lex_state = 7}, - [2679] = {.lex_state = 13, .external_lex_state = 7}, + [2678] = {.lex_state = 11, .external_lex_state = 5}, + [2679] = {.lex_state = 11, .external_lex_state = 5}, [2680] = {.lex_state = 13, .external_lex_state = 6}, - [2681] = {.lex_state = 11, .external_lex_state = 5}, - [2682] = {.lex_state = 13, .external_lex_state = 7}, - [2683] = {.lex_state = 11, .external_lex_state = 5}, - [2684] = {.lex_state = 13, .external_lex_state = 7}, + [2681] = {.lex_state = 13, .external_lex_state = 6}, + [2682] = {.lex_state = 13, .external_lex_state = 6}, + [2683] = {.lex_state = 13, .external_lex_state = 7}, + [2684] = {.lex_state = 13, .external_lex_state = 6}, [2685] = {.lex_state = 13, .external_lex_state = 6}, - [2686] = {.lex_state = 13, .external_lex_state = 7}, - [2687] = {.lex_state = 13, .external_lex_state = 7}, - [2688] = {.lex_state = 13, .external_lex_state = 6}, + [2686] = {.lex_state = 13, .external_lex_state = 6}, + [2687] = {.lex_state = 13, .external_lex_state = 6}, + [2688] = {.lex_state = 13, .external_lex_state = 7}, [2689] = {.lex_state = 13, .external_lex_state = 6}, - [2690] = {.lex_state = 13, .external_lex_state = 7}, + [2690] = {.lex_state = 13, .external_lex_state = 6}, [2691] = {.lex_state = 13, .external_lex_state = 7}, [2692] = {.lex_state = 13, .external_lex_state = 6}, - [2693] = {.lex_state = 13, .external_lex_state = 7}, - [2694] = {.lex_state = 13, .external_lex_state = 7}, - [2695] = {.lex_state = 13, .external_lex_state = 6}, - [2696] = {.lex_state = 13, .external_lex_state = 7}, - [2697] = {.lex_state = 13, .external_lex_state = 7}, + [2693] = {.lex_state = 13, .external_lex_state = 6}, + [2694] = {.lex_state = 13, .external_lex_state = 6}, + [2695] = {.lex_state = 13, .external_lex_state = 7}, + [2696] = {.lex_state = 13, .external_lex_state = 6}, + [2697] = {.lex_state = 13, .external_lex_state = 6}, [2698] = {.lex_state = 13, .external_lex_state = 7}, [2699] = {.lex_state = 13, .external_lex_state = 7}, - [2700] = {.lex_state = 13, .external_lex_state = 7}, - [2701] = {.lex_state = 11, .external_lex_state = 5}, - [2702] = {.lex_state = 13, .external_lex_state = 7}, + [2700] = {.lex_state = 13, .external_lex_state = 6}, + [2701] = {.lex_state = 13, .external_lex_state = 7}, + [2702] = {.lex_state = 13, .external_lex_state = 6}, [2703] = {.lex_state = 13, .external_lex_state = 7}, [2704] = {.lex_state = 13, .external_lex_state = 7}, - [2705] = {.lex_state = 13, .external_lex_state = 7}, + [2705] = {.lex_state = 13, .external_lex_state = 6}, [2706] = {.lex_state = 13, .external_lex_state = 7}, [2707] = {.lex_state = 13, .external_lex_state = 7}, - [2708] = {.lex_state = 13, .external_lex_state = 7}, + [2708] = {.lex_state = 13, .external_lex_state = 6}, [2709] = {.lex_state = 13, .external_lex_state = 7}, [2710] = {.lex_state = 13, .external_lex_state = 7}, - [2711] = {.lex_state = 13, .external_lex_state = 7}, - [2712] = {.lex_state = 11, .external_lex_state = 5}, + [2711] = {.lex_state = 13, .external_lex_state = 6}, + [2712] = {.lex_state = 13, .external_lex_state = 7}, [2713] = {.lex_state = 13, .external_lex_state = 7}, [2714] = {.lex_state = 13, .external_lex_state = 7}, - [2715] = {.lex_state = 13, .external_lex_state = 6}, - [2716] = {.lex_state = 13, .external_lex_state = 6}, - [2717] = {.lex_state = 13, .external_lex_state = 7}, - [2718] = {.lex_state = 13, .external_lex_state = 6}, - [2719] = {.lex_state = 11, .external_lex_state = 5}, - [2720] = {.lex_state = 11, .external_lex_state = 5}, - [2721] = {.lex_state = 11, .external_lex_state = 5}, + [2715] = {.lex_state = 13, .external_lex_state = 7}, + [2716] = {.lex_state = 13, .external_lex_state = 7}, + [2717] = {.lex_state = 13, .external_lex_state = 6}, + [2718] = {.lex_state = 13, .external_lex_state = 7}, + [2719] = {.lex_state = 13, .external_lex_state = 6}, + [2720] = {.lex_state = 13, .external_lex_state = 6}, + [2721] = {.lex_state = 13, .external_lex_state = 7}, [2722] = {.lex_state = 13, .external_lex_state = 6}, [2723] = {.lex_state = 13, .external_lex_state = 7}, [2724] = {.lex_state = 13, .external_lex_state = 6}, [2725] = {.lex_state = 13, .external_lex_state = 7}, - [2726] = {.lex_state = 13, .external_lex_state = 6}, - [2727] = {.lex_state = 13, .external_lex_state = 6}, + [2726] = {.lex_state = 13, .external_lex_state = 7}, + [2727] = {.lex_state = 13, .external_lex_state = 7}, [2728] = {.lex_state = 13, .external_lex_state = 7}, [2729] = {.lex_state = 13, .external_lex_state = 6}, [2730] = {.lex_state = 13, .external_lex_state = 6}, - [2731] = {.lex_state = 13, .external_lex_state = 7}, - [2732] = {.lex_state = 13, .external_lex_state = 7}, - [2733] = {.lex_state = 13, .external_lex_state = 6}, + [2731] = {.lex_state = 13, .external_lex_state = 6}, + [2732] = {.lex_state = 13, .external_lex_state = 6}, + [2733] = {.lex_state = 13, .external_lex_state = 7}, [2734] = {.lex_state = 13, .external_lex_state = 7}, - [2735] = {.lex_state = 13, .external_lex_state = 6}, - [2736] = {.lex_state = 13, .external_lex_state = 7}, + [2735] = {.lex_state = 13, .external_lex_state = 7}, + [2736] = {.lex_state = 13, .external_lex_state = 6}, [2737] = {.lex_state = 13, .external_lex_state = 6}, - [2738] = {.lex_state = 13, .external_lex_state = 7}, - [2739] = {.lex_state = 13, .external_lex_state = 7}, - [2740] = {.lex_state = 13, .external_lex_state = 7}, - [2741] = {.lex_state = 13, .external_lex_state = 7}, - [2742] = {.lex_state = 13, .external_lex_state = 7}, + [2738] = {.lex_state = 13, .external_lex_state = 6}, + [2739] = {.lex_state = 13, .external_lex_state = 6}, + [2740] = {.lex_state = 13, .external_lex_state = 6}, + [2741] = {.lex_state = 2, .external_lex_state = 4}, + [2742] = {.lex_state = 13, .external_lex_state = 6}, [2743] = {.lex_state = 13, .external_lex_state = 6}, [2744] = {.lex_state = 13, .external_lex_state = 6}, [2745] = {.lex_state = 13, .external_lex_state = 6}, - [2746] = {.lex_state = 13, .external_lex_state = 7}, - [2747] = {.lex_state = 13, .external_lex_state = 7}, - [2748] = {.lex_state = 13, .external_lex_state = 7}, - [2749] = {.lex_state = 13, .external_lex_state = 7}, - [2750] = {.lex_state = 13, .external_lex_state = 7}, - [2751] = {.lex_state = 13, .external_lex_state = 7}, - [2752] = {.lex_state = 13, .external_lex_state = 7}, - [2753] = {.lex_state = 13, .external_lex_state = 7}, + [2746] = {.lex_state = 13, .external_lex_state = 6}, + [2747] = {.lex_state = 13, .external_lex_state = 6}, + [2748] = {.lex_state = 2, .external_lex_state = 4}, + [2749] = {.lex_state = 13, .external_lex_state = 6}, + [2750] = {.lex_state = 13, .external_lex_state = 6}, + [2751] = {.lex_state = 2, .external_lex_state = 4}, + [2752] = {.lex_state = 13, .external_lex_state = 6}, + [2753] = {.lex_state = 2, .external_lex_state = 4}, [2754] = {.lex_state = 13, .external_lex_state = 7}, [2755] = {.lex_state = 13, .external_lex_state = 7}, [2756] = {.lex_state = 13, .external_lex_state = 7}, @@ -26590,352 +26241,352 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2760] = {.lex_state = 13, .external_lex_state = 7}, [2761] = {.lex_state = 13, .external_lex_state = 7}, [2762] = {.lex_state = 13, .external_lex_state = 7}, - [2763] = {.lex_state = 13, .external_lex_state = 7}, + [2763] = {.lex_state = 2, .external_lex_state = 4}, [2764] = {.lex_state = 13, .external_lex_state = 7}, [2765] = {.lex_state = 13, .external_lex_state = 7}, - [2766] = {.lex_state = 13, .external_lex_state = 6}, - [2767] = {.lex_state = 13, .external_lex_state = 7}, - [2768] = {.lex_state = 13, .external_lex_state = 7}, - [2769] = {.lex_state = 13, .external_lex_state = 6}, - [2770] = {.lex_state = 13, .external_lex_state = 6}, - [2771] = {.lex_state = 13, .external_lex_state = 6}, - [2772] = {.lex_state = 13, .external_lex_state = 6}, + [2766] = {.lex_state = 13, .external_lex_state = 7}, + [2767] = {.lex_state = 13, .external_lex_state = 6}, + [2768] = {.lex_state = 2, .external_lex_state = 4}, + [2769] = {.lex_state = 13, .external_lex_state = 7}, + [2770] = {.lex_state = 13, .external_lex_state = 7}, + [2771] = {.lex_state = 2, .external_lex_state = 4}, + [2772] = {.lex_state = 2, .external_lex_state = 4}, [2773] = {.lex_state = 13, .external_lex_state = 6}, [2774] = {.lex_state = 13, .external_lex_state = 6}, - [2775] = {.lex_state = 13, .external_lex_state = 6}, - [2776] = {.lex_state = 13, .external_lex_state = 6}, - [2777] = {.lex_state = 13, .external_lex_state = 6}, - [2778] = {.lex_state = 13, .external_lex_state = 6}, - [2779] = {.lex_state = 13, .external_lex_state = 6}, - [2780] = {.lex_state = 13, .external_lex_state = 6}, - [2781] = {.lex_state = 13, .external_lex_state = 6}, - [2782] = {.lex_state = 13, .external_lex_state = 6}, - [2783] = {.lex_state = 13, .external_lex_state = 6}, - [2784] = {.lex_state = 13, .external_lex_state = 6}, - [2785] = {.lex_state = 13, .external_lex_state = 6}, - [2786] = {.lex_state = 13, .external_lex_state = 6}, - [2787] = {.lex_state = 13, .external_lex_state = 6}, + [2775] = {.lex_state = 13, .external_lex_state = 7}, + [2776] = {.lex_state = 13, .external_lex_state = 7}, + [2777] = {.lex_state = 13, .external_lex_state = 7}, + [2778] = {.lex_state = 13, .external_lex_state = 7}, + [2779] = {.lex_state = 13, .external_lex_state = 7}, + [2780] = {.lex_state = 13, .external_lex_state = 7}, + [2781] = {.lex_state = 13, .external_lex_state = 7}, + [2782] = {.lex_state = 13, .external_lex_state = 7}, + [2783] = {.lex_state = 13, .external_lex_state = 7}, + [2784] = {.lex_state = 13, .external_lex_state = 7}, + [2785] = {.lex_state = 13, .external_lex_state = 7}, + [2786] = {.lex_state = 13, .external_lex_state = 7}, + [2787] = {.lex_state = 13, .external_lex_state = 7}, [2788] = {.lex_state = 13, .external_lex_state = 7}, - [2789] = {.lex_state = 13, .external_lex_state = 7}, - [2790] = {.lex_state = 13, .external_lex_state = 6}, - [2791] = {.lex_state = 13, .external_lex_state = 7}, - [2792] = {.lex_state = 13, .external_lex_state = 6}, - [2793] = {.lex_state = 13, .external_lex_state = 6}, - [2794] = {.lex_state = 13, .external_lex_state = 6}, + [2789] = {.lex_state = 2, .external_lex_state = 4}, + [2790] = {.lex_state = 13, .external_lex_state = 7}, + [2791] = {.lex_state = 2, .external_lex_state = 4}, + [2792] = {.lex_state = 13, .external_lex_state = 7}, + [2793] = {.lex_state = 13, .external_lex_state = 7}, + [2794] = {.lex_state = 13, .external_lex_state = 7}, [2795] = {.lex_state = 13, .external_lex_state = 6}, - [2796] = {.lex_state = 13, .external_lex_state = 7}, + [2796] = {.lex_state = 2, .external_lex_state = 4}, [2797] = {.lex_state = 13, .external_lex_state = 7}, - [2798] = {.lex_state = 13, .external_lex_state = 7}, + [2798] = {.lex_state = 2, .external_lex_state = 4}, [2799] = {.lex_state = 13, .external_lex_state = 7}, - [2800] = {.lex_state = 13, .external_lex_state = 6}, + [2800] = {.lex_state = 13, .external_lex_state = 7}, [2801] = {.lex_state = 13, .external_lex_state = 7}, - [2802] = {.lex_state = 2, .external_lex_state = 4}, - [2803] = {.lex_state = 13, .external_lex_state = 6}, - [2804] = {.lex_state = 13, .external_lex_state = 6}, + [2802] = {.lex_state = 13, .external_lex_state = 7}, + [2803] = {.lex_state = 2, .external_lex_state = 4}, + [2804] = {.lex_state = 13, .external_lex_state = 7}, [2805] = {.lex_state = 2, .external_lex_state = 4}, - [2806] = {.lex_state = 13, .external_lex_state = 6}, - [2807] = {.lex_state = 13, .external_lex_state = 6}, - [2808] = {.lex_state = 13, .external_lex_state = 6}, - [2809] = {.lex_state = 13, .external_lex_state = 6}, - [2810] = {.lex_state = 13, .external_lex_state = 6}, - [2811] = {.lex_state = 13, .external_lex_state = 6}, - [2812] = {.lex_state = 13, .external_lex_state = 6}, - [2813] = {.lex_state = 13, .external_lex_state = 6}, - [2814] = {.lex_state = 13, .external_lex_state = 6}, + [2806] = {.lex_state = 13, .external_lex_state = 7}, + [2807] = {.lex_state = 2, .external_lex_state = 4}, + [2808] = {.lex_state = 13, .external_lex_state = 7}, + [2809] = {.lex_state = 2, .external_lex_state = 4}, + [2810] = {.lex_state = 2, .external_lex_state = 4}, + [2811] = {.lex_state = 2, .external_lex_state = 4}, + [2812] = {.lex_state = 2, .external_lex_state = 4}, + [2813] = {.lex_state = 2, .external_lex_state = 4}, + [2814] = {.lex_state = 2, .external_lex_state = 4}, [2815] = {.lex_state = 13, .external_lex_state = 6}, [2816] = {.lex_state = 2, .external_lex_state = 4}, [2817] = {.lex_state = 2, .external_lex_state = 4}, - [2818] = {.lex_state = 13, .external_lex_state = 6}, - [2819] = {.lex_state = 13, .external_lex_state = 6}, - [2820] = {.lex_state = 13, .external_lex_state = 7}, - [2821] = {.lex_state = 13, .external_lex_state = 7}, - [2822] = {.lex_state = 13, .external_lex_state = 7}, - [2823] = {.lex_state = 13, .external_lex_state = 7}, - [2824] = {.lex_state = 13, .external_lex_state = 7}, - [2825] = {.lex_state = 13, .external_lex_state = 7}, - [2826] = {.lex_state = 2, .external_lex_state = 4}, - [2827] = {.lex_state = 13, .external_lex_state = 7}, - [2828] = {.lex_state = 13, .external_lex_state = 7}, - [2829] = {.lex_state = 13, .external_lex_state = 7}, - [2830] = {.lex_state = 13, .external_lex_state = 7}, - [2831] = {.lex_state = 13, .external_lex_state = 7}, - [2832] = {.lex_state = 13, .external_lex_state = 7}, - [2833] = {.lex_state = 13, .external_lex_state = 7}, - [2834] = {.lex_state = 13, .external_lex_state = 7}, - [2835] = {.lex_state = 13, .external_lex_state = 7}, - [2836] = {.lex_state = 2, .external_lex_state = 4}, + [2818] = {.lex_state = 2, .external_lex_state = 4}, + [2819] = {.lex_state = 2, .external_lex_state = 4}, + [2820] = {.lex_state = 13, .external_lex_state = 6}, + [2821] = {.lex_state = 2, .external_lex_state = 4}, + [2822] = {.lex_state = 13, .external_lex_state = 6}, + [2823] = {.lex_state = 13, .external_lex_state = 6}, + [2824] = {.lex_state = 2, .external_lex_state = 4}, + [2825] = {.lex_state = 2, .external_lex_state = 4}, + [2826] = {.lex_state = 11, .external_lex_state = 5}, + [2827] = {.lex_state = 13, .external_lex_state = 6}, + [2828] = {.lex_state = 13, .external_lex_state = 6}, + [2829] = {.lex_state = 13, .external_lex_state = 6}, + [2830] = {.lex_state = 2, .external_lex_state = 4}, + [2831] = {.lex_state = 13, .external_lex_state = 6}, + [2832] = {.lex_state = 2, .external_lex_state = 3}, + [2833] = {.lex_state = 2, .external_lex_state = 4}, + [2834] = {.lex_state = 13, .external_lex_state = 6}, + [2835] = {.lex_state = 2, .external_lex_state = 4}, + [2836] = {.lex_state = 13, .external_lex_state = 6}, [2837] = {.lex_state = 2, .external_lex_state = 4}, [2838] = {.lex_state = 2, .external_lex_state = 4}, [2839] = {.lex_state = 2, .external_lex_state = 4}, [2840] = {.lex_state = 2, .external_lex_state = 4}, - [2841] = {.lex_state = 13, .external_lex_state = 7}, + [2841] = {.lex_state = 13, .external_lex_state = 6}, [2842] = {.lex_state = 2, .external_lex_state = 4}, [2843] = {.lex_state = 2, .external_lex_state = 4}, [2844] = {.lex_state = 2, .external_lex_state = 4}, - [2845] = {.lex_state = 2, .external_lex_state = 4}, - [2846] = {.lex_state = 13, .external_lex_state = 7}, - [2847] = {.lex_state = 13, .external_lex_state = 7}, - [2848] = {.lex_state = 13, .external_lex_state = 7}, - [2849] = {.lex_state = 13, .external_lex_state = 7}, - [2850] = {.lex_state = 13, .external_lex_state = 7}, - [2851] = {.lex_state = 13, .external_lex_state = 7}, - [2852] = {.lex_state = 13, .external_lex_state = 7}, - [2853] = {.lex_state = 13, .external_lex_state = 7}, - [2854] = {.lex_state = 13, .external_lex_state = 6}, - [2855] = {.lex_state = 13, .external_lex_state = 7}, + [2845] = {.lex_state = 11, .external_lex_state = 5}, + [2846] = {.lex_state = 2, .external_lex_state = 4}, + [2847] = {.lex_state = 2, .external_lex_state = 4}, + [2848] = {.lex_state = 2, .external_lex_state = 4}, + [2849] = {.lex_state = 2, .external_lex_state = 4}, + [2850] = {.lex_state = 2, .external_lex_state = 3}, + [2851] = {.lex_state = 2, .external_lex_state = 4}, + [2852] = {.lex_state = 2, .external_lex_state = 4}, + [2853] = {.lex_state = 11, .external_lex_state = 5}, + [2854] = {.lex_state = 2, .external_lex_state = 4}, + [2855] = {.lex_state = 2, .external_lex_state = 4}, [2856] = {.lex_state = 13, .external_lex_state = 7}, - [2857] = {.lex_state = 13, .external_lex_state = 6}, - [2858] = {.lex_state = 13, .external_lex_state = 7}, - [2859] = {.lex_state = 13, .external_lex_state = 7}, - [2860] = {.lex_state = 13, .external_lex_state = 7}, - [2861] = {.lex_state = 13, .external_lex_state = 7}, + [2857] = {.lex_state = 13, .external_lex_state = 7}, + [2858] = {.lex_state = 13, .external_lex_state = 6}, + [2859] = {.lex_state = 13, .external_lex_state = 6}, + [2860] = {.lex_state = 2, .external_lex_state = 3}, + [2861] = {.lex_state = 2, .external_lex_state = 3}, [2862] = {.lex_state = 2, .external_lex_state = 4}, [2863] = {.lex_state = 13, .external_lex_state = 6}, - [2864] = {.lex_state = 13, .external_lex_state = 7}, - [2865] = {.lex_state = 13, .external_lex_state = 7}, - [2866] = {.lex_state = 13, .external_lex_state = 7}, - [2867] = {.lex_state = 13, .external_lex_state = 7}, - [2868] = {.lex_state = 2, .external_lex_state = 4}, - [2869] = {.lex_state = 13, .external_lex_state = 7}, - [2870] = {.lex_state = 2, .external_lex_state = 4}, - [2871] = {.lex_state = 13, .external_lex_state = 7}, - [2872] = {.lex_state = 13, .external_lex_state = 7}, + [2864] = {.lex_state = 13, .external_lex_state = 6}, + [2865] = {.lex_state = 13, .external_lex_state = 6}, + [2866] = {.lex_state = 2, .external_lex_state = 4}, + [2867] = {.lex_state = 2, .external_lex_state = 4}, + [2868] = {.lex_state = 13, .external_lex_state = 6}, + [2869] = {.lex_state = 13, .external_lex_state = 6}, + [2870] = {.lex_state = 13, .external_lex_state = 6}, + [2871] = {.lex_state = 13, .external_lex_state = 6}, + [2872] = {.lex_state = 13, .external_lex_state = 6}, [2873] = {.lex_state = 13, .external_lex_state = 6}, - [2874] = {.lex_state = 13, .external_lex_state = 7}, - [2875] = {.lex_state = 13, .external_lex_state = 7}, - [2876] = {.lex_state = 13, .external_lex_state = 7}, + [2874] = {.lex_state = 13, .external_lex_state = 6}, + [2875] = {.lex_state = 13, .external_lex_state = 6}, + [2876] = {.lex_state = 13, .external_lex_state = 6}, [2877] = {.lex_state = 13, .external_lex_state = 6}, [2878] = {.lex_state = 13, .external_lex_state = 6}, [2879] = {.lex_state = 13, .external_lex_state = 6}, [2880] = {.lex_state = 13, .external_lex_state = 6}, - [2881] = {.lex_state = 2, .external_lex_state = 4}, - [2882] = {.lex_state = 13, .external_lex_state = 6}, + [2881] = {.lex_state = 11, .external_lex_state = 5}, + [2882] = {.lex_state = 2, .external_lex_state = 4}, [2883] = {.lex_state = 13, .external_lex_state = 6}, [2884] = {.lex_state = 2, .external_lex_state = 4}, [2885] = {.lex_state = 13, .external_lex_state = 6}, - [2886] = {.lex_state = 13, .external_lex_state = 6}, - [2887] = {.lex_state = 2, .external_lex_state = 4}, - [2888] = {.lex_state = 13, .external_lex_state = 6}, - [2889] = {.lex_state = 2, .external_lex_state = 4}, - [2890] = {.lex_state = 13, .external_lex_state = 7}, + [2886] = {.lex_state = 13, .external_lex_state = 7}, + [2887] = {.lex_state = 13, .external_lex_state = 7}, + [2888] = {.lex_state = 2, .external_lex_state = 4}, + [2889] = {.lex_state = 13, .external_lex_state = 6}, + [2890] = {.lex_state = 2, .external_lex_state = 4}, [2891] = {.lex_state = 13, .external_lex_state = 7}, - [2892] = {.lex_state = 2, .external_lex_state = 3}, - [2893] = {.lex_state = 2, .external_lex_state = 4}, - [2894] = {.lex_state = 13, .external_lex_state = 6}, - [2895] = {.lex_state = 13, .external_lex_state = 6}, - [2896] = {.lex_state = 13, .external_lex_state = 6}, + [2892] = {.lex_state = 13, .external_lex_state = 6}, + [2893] = {.lex_state = 13, .external_lex_state = 7}, + [2894] = {.lex_state = 13, .external_lex_state = 7}, + [2895] = {.lex_state = 2, .external_lex_state = 4}, + [2896] = {.lex_state = 2, .external_lex_state = 4}, [2897] = {.lex_state = 13, .external_lex_state = 6}, - [2898] = {.lex_state = 13, .external_lex_state = 6}, + [2898] = {.lex_state = 2, .external_lex_state = 4}, [2899] = {.lex_state = 13, .external_lex_state = 6}, - [2900] = {.lex_state = 13, .external_lex_state = 6}, + [2900] = {.lex_state = 2, .external_lex_state = 4}, [2901] = {.lex_state = 2, .external_lex_state = 4}, - [2902] = {.lex_state = 2, .external_lex_state = 3}, - [2903] = {.lex_state = 13, .external_lex_state = 6}, - [2904] = {.lex_state = 11, .external_lex_state = 5}, + [2902] = {.lex_state = 2, .external_lex_state = 4}, + [2903] = {.lex_state = 13, .external_lex_state = 7}, + [2904] = {.lex_state = 2, .external_lex_state = 4}, [2905] = {.lex_state = 13, .external_lex_state = 6}, [2906] = {.lex_state = 13, .external_lex_state = 6}, - [2907] = {.lex_state = 13, .external_lex_state = 6}, - [2908] = {.lex_state = 13, .external_lex_state = 6}, - [2909] = {.lex_state = 2, .external_lex_state = 3}, - [2910] = {.lex_state = 2, .external_lex_state = 4}, + [2907] = {.lex_state = 2, .external_lex_state = 4}, + [2908] = {.lex_state = 2, .external_lex_state = 4}, + [2909] = {.lex_state = 13, .external_lex_state = 6}, + [2910] = {.lex_state = 13, .external_lex_state = 6}, [2911] = {.lex_state = 2, .external_lex_state = 4}, - [2912] = {.lex_state = 11, .external_lex_state = 5}, - [2913] = {.lex_state = 2, .external_lex_state = 4}, - [2914] = {.lex_state = 2, .external_lex_state = 3}, - [2915] = {.lex_state = 13, .external_lex_state = 6}, + [2912] = {.lex_state = 13, .external_lex_state = 7}, + [2913] = {.lex_state = 13, .external_lex_state = 7}, + [2914] = {.lex_state = 2, .external_lex_state = 4}, + [2915] = {.lex_state = 2, .external_lex_state = 4}, [2916] = {.lex_state = 2, .external_lex_state = 4}, [2917] = {.lex_state = 2, .external_lex_state = 4}, - [2918] = {.lex_state = 2, .external_lex_state = 4}, + [2918] = {.lex_state = 11, .external_lex_state = 5}, [2919] = {.lex_state = 2, .external_lex_state = 4}, [2920] = {.lex_state = 2, .external_lex_state = 4}, [2921] = {.lex_state = 2, .external_lex_state = 4}, [2922] = {.lex_state = 2, .external_lex_state = 4}, [2923] = {.lex_state = 2, .external_lex_state = 4}, - [2924] = {.lex_state = 13, .external_lex_state = 6}, - [2925] = {.lex_state = 13, .external_lex_state = 6}, - [2926] = {.lex_state = 13, .external_lex_state = 6}, + [2924] = {.lex_state = 2, .external_lex_state = 4}, + [2925] = {.lex_state = 2, .external_lex_state = 4}, + [2926] = {.lex_state = 11, .external_lex_state = 5}, [2927] = {.lex_state = 2, .external_lex_state = 4}, - [2928] = {.lex_state = 2, .external_lex_state = 4}, - [2929] = {.lex_state = 13, .external_lex_state = 6}, - [2930] = {.lex_state = 13, .external_lex_state = 6}, + [2928] = {.lex_state = 11, .external_lex_state = 5}, + [2929] = {.lex_state = 13, .external_lex_state = 7}, + [2930] = {.lex_state = 13, .external_lex_state = 7}, [2931] = {.lex_state = 13, .external_lex_state = 6}, - [2932] = {.lex_state = 2, .external_lex_state = 4}, + [2932] = {.lex_state = 13, .external_lex_state = 7}, [2933] = {.lex_state = 2, .external_lex_state = 4}, - [2934] = {.lex_state = 13, .external_lex_state = 6}, + [2934] = {.lex_state = 2, .external_lex_state = 4}, [2935] = {.lex_state = 2, .external_lex_state = 4}, [2936] = {.lex_state = 2, .external_lex_state = 4}, [2937] = {.lex_state = 2, .external_lex_state = 4}, - [2938] = {.lex_state = 2, .external_lex_state = 4}, - [2939] = {.lex_state = 2, .external_lex_state = 4}, + [2938] = {.lex_state = 13, .external_lex_state = 6}, + [2939] = {.lex_state = 13, .external_lex_state = 7}, [2940] = {.lex_state = 2, .external_lex_state = 4}, [2941] = {.lex_state = 2, .external_lex_state = 4}, [2942] = {.lex_state = 2, .external_lex_state = 4}, - [2943] = {.lex_state = 2, .external_lex_state = 4}, - [2944] = {.lex_state = 2, .external_lex_state = 4}, - [2945] = {.lex_state = 11, .external_lex_state = 5}, + [2943] = {.lex_state = 13, .external_lex_state = 7}, + [2944] = {.lex_state = 13, .external_lex_state = 7}, + [2945] = {.lex_state = 2, .external_lex_state = 4}, [2946] = {.lex_state = 2, .external_lex_state = 4}, [2947] = {.lex_state = 2, .external_lex_state = 4}, - [2948] = {.lex_state = 2, .external_lex_state = 4}, - [2949] = {.lex_state = 13, .external_lex_state = 7}, - [2950] = {.lex_state = 13, .external_lex_state = 7}, + [2948] = {.lex_state = 13, .external_lex_state = 7}, + [2949] = {.lex_state = 2, .external_lex_state = 4}, + [2950] = {.lex_state = 2, .external_lex_state = 4}, [2951] = {.lex_state = 2, .external_lex_state = 4}, - [2952] = {.lex_state = 2, .external_lex_state = 4}, - [2953] = {.lex_state = 11, .external_lex_state = 5}, - [2954] = {.lex_state = 2, .external_lex_state = 4}, - [2955] = {.lex_state = 2, .external_lex_state = 4}, + [2952] = {.lex_state = 13, .external_lex_state = 7}, + [2953] = {.lex_state = 13, .external_lex_state = 7}, + [2954] = {.lex_state = 13, .external_lex_state = 7}, + [2955] = {.lex_state = 13, .external_lex_state = 6}, [2956] = {.lex_state = 2, .external_lex_state = 4}, - [2957] = {.lex_state = 13, .external_lex_state = 7}, - [2958] = {.lex_state = 2, .external_lex_state = 4}, - [2959] = {.lex_state = 11, .external_lex_state = 5}, - [2960] = {.lex_state = 2, .external_lex_state = 4}, + [2957] = {.lex_state = 2, .external_lex_state = 4}, + [2958] = {.lex_state = 13, .external_lex_state = 7}, + [2959] = {.lex_state = 13, .external_lex_state = 7}, + [2960] = {.lex_state = 13, .external_lex_state = 7}, [2961] = {.lex_state = 13, .external_lex_state = 7}, - [2962] = {.lex_state = 13, .external_lex_state = 7}, - [2963] = {.lex_state = 2, .external_lex_state = 4}, + [2962] = {.lex_state = 2, .external_lex_state = 4}, + [2963] = {.lex_state = 13, .external_lex_state = 7}, [2964] = {.lex_state = 2, .external_lex_state = 4}, - [2965] = {.lex_state = 11, .external_lex_state = 5}, - [2966] = {.lex_state = 2, .external_lex_state = 4}, - [2967] = {.lex_state = 2, .external_lex_state = 4}, - [2968] = {.lex_state = 2, .external_lex_state = 4}, - [2969] = {.lex_state = 2, .external_lex_state = 4}, + [2965] = {.lex_state = 13, .external_lex_state = 7}, + [2966] = {.lex_state = 13, .external_lex_state = 7}, + [2967] = {.lex_state = 13, .external_lex_state = 7}, + [2968] = {.lex_state = 13, .external_lex_state = 7}, + [2969] = {.lex_state = 13, .external_lex_state = 7}, [2970] = {.lex_state = 2, .external_lex_state = 4}, [2971] = {.lex_state = 2, .external_lex_state = 4}, [2972] = {.lex_state = 2, .external_lex_state = 4}, [2973] = {.lex_state = 13, .external_lex_state = 6}, - [2974] = {.lex_state = 13, .external_lex_state = 7}, - [2975] = {.lex_state = 13, .external_lex_state = 6}, - [2976] = {.lex_state = 11, .external_lex_state = 5}, + [2974] = {.lex_state = 4, .external_lex_state = 4}, + [2975] = {.lex_state = 2, .external_lex_state = 4}, + [2976] = {.lex_state = 13, .external_lex_state = 7}, [2977] = {.lex_state = 13, .external_lex_state = 6}, - [2978] = {.lex_state = 2, .external_lex_state = 4}, - [2979] = {.lex_state = 2, .external_lex_state = 4}, - [2980] = {.lex_state = 2, .external_lex_state = 4}, + [2978] = {.lex_state = 13, .external_lex_state = 7}, + [2979] = {.lex_state = 13, .external_lex_state = 6}, + [2980] = {.lex_state = 13, .external_lex_state = 6}, [2981] = {.lex_state = 2, .external_lex_state = 4}, - [2982] = {.lex_state = 2, .external_lex_state = 4}, - [2983] = {.lex_state = 2, .external_lex_state = 4}, - [2984] = {.lex_state = 2, .external_lex_state = 4}, - [2985] = {.lex_state = 13, .external_lex_state = 6}, - [2986] = {.lex_state = 2, .external_lex_state = 4}, + [2982] = {.lex_state = 13, .external_lex_state = 7}, + [2983] = {.lex_state = 13, .external_lex_state = 6}, + [2984] = {.lex_state = 13, .external_lex_state = 6}, + [2985] = {.lex_state = 2, .external_lex_state = 4}, + [2986] = {.lex_state = 13, .external_lex_state = 6}, [2987] = {.lex_state = 2, .external_lex_state = 4}, - [2988] = {.lex_state = 13, .external_lex_state = 7}, - [2989] = {.lex_state = 13, .external_lex_state = 7}, + [2988] = {.lex_state = 13, .external_lex_state = 6}, + [2989] = {.lex_state = 2, .external_lex_state = 4}, [2990] = {.lex_state = 2, .external_lex_state = 4}, - [2991] = {.lex_state = 13, .external_lex_state = 7}, - [2992] = {.lex_state = 13, .external_lex_state = 7}, - [2993] = {.lex_state = 13, .external_lex_state = 6}, - [2994] = {.lex_state = 13, .external_lex_state = 7}, - [2995] = {.lex_state = 13, .external_lex_state = 7}, - [2996] = {.lex_state = 13, .external_lex_state = 6}, + [2991] = {.lex_state = 13, .external_lex_state = 6}, + [2992] = {.lex_state = 2, .external_lex_state = 4}, + [2993] = {.lex_state = 2, .external_lex_state = 4}, + [2994] = {.lex_state = 2, .external_lex_state = 4}, + [2995] = {.lex_state = 2, .external_lex_state = 4}, + [2996] = {.lex_state = 2, .external_lex_state = 4}, [2997] = {.lex_state = 2, .external_lex_state = 4}, - [2998] = {.lex_state = 2, .external_lex_state = 4}, + [2998] = {.lex_state = 13, .external_lex_state = 6}, [2999] = {.lex_state = 2, .external_lex_state = 4}, - [3000] = {.lex_state = 13, .external_lex_state = 7}, + [3000] = {.lex_state = 13, .external_lex_state = 6}, [3001] = {.lex_state = 2, .external_lex_state = 4}, [3002] = {.lex_state = 2, .external_lex_state = 4}, [3003] = {.lex_state = 2, .external_lex_state = 4}, - [3004] = {.lex_state = 2, .external_lex_state = 4}, + [3004] = {.lex_state = 13, .external_lex_state = 7}, [3005] = {.lex_state = 2, .external_lex_state = 4}, [3006] = {.lex_state = 2, .external_lex_state = 4}, [3007] = {.lex_state = 2, .external_lex_state = 4}, - [3008] = {.lex_state = 2, .external_lex_state = 4}, + [3008] = {.lex_state = 11, .external_lex_state = 5}, [3009] = {.lex_state = 2, .external_lex_state = 4}, - [3010] = {.lex_state = 13, .external_lex_state = 7}, + [3010] = {.lex_state = 2, .external_lex_state = 4}, [3011] = {.lex_state = 2, .external_lex_state = 4}, - [3012] = {.lex_state = 13, .external_lex_state = 7}, - [3013] = {.lex_state = 2, .external_lex_state = 4}, - [3014] = {.lex_state = 2, .external_lex_state = 4}, + [3012] = {.lex_state = 2, .external_lex_state = 4}, + [3013] = {.lex_state = 11, .external_lex_state = 5}, + [3014] = {.lex_state = 11, .external_lex_state = 5}, [3015] = {.lex_state = 2, .external_lex_state = 4}, [3016] = {.lex_state = 2, .external_lex_state = 4}, - [3017] = {.lex_state = 13, .external_lex_state = 6}, - [3018] = {.lex_state = 2, .external_lex_state = 4}, - [3019] = {.lex_state = 2, .external_lex_state = 4}, - [3020] = {.lex_state = 13, .external_lex_state = 7}, - [3021] = {.lex_state = 13, .external_lex_state = 7}, - [3022] = {.lex_state = 13, .external_lex_state = 6}, + [3017] = {.lex_state = 2, .external_lex_state = 4}, + [3018] = {.lex_state = 13, .external_lex_state = 6}, + [3019] = {.lex_state = 13, .external_lex_state = 6}, + [3020] = {.lex_state = 2, .external_lex_state = 4}, + [3021] = {.lex_state = 13, .external_lex_state = 6}, + [3022] = {.lex_state = 2, .external_lex_state = 4}, [3023] = {.lex_state = 2, .external_lex_state = 4}, - [3024] = {.lex_state = 13, .external_lex_state = 6}, - [3025] = {.lex_state = 13, .external_lex_state = 7}, - [3026] = {.lex_state = 13, .external_lex_state = 7}, - [3027] = {.lex_state = 13, .external_lex_state = 7}, + [3024] = {.lex_state = 2, .external_lex_state = 4}, + [3025] = {.lex_state = 13, .external_lex_state = 6}, + [3026] = {.lex_state = 13, .external_lex_state = 6}, + [3027] = {.lex_state = 2, .external_lex_state = 4}, [3028] = {.lex_state = 2, .external_lex_state = 4}, - [3029] = {.lex_state = 13, .external_lex_state = 7}, - [3030] = {.lex_state = 13, .external_lex_state = 7}, - [3031] = {.lex_state = 13, .external_lex_state = 6}, + [3029] = {.lex_state = 2, .external_lex_state = 4}, + [3030] = {.lex_state = 11, .external_lex_state = 5}, + [3031] = {.lex_state = 2, .external_lex_state = 4}, [3032] = {.lex_state = 13, .external_lex_state = 6}, - [3033] = {.lex_state = 13, .external_lex_state = 7}, - [3034] = {.lex_state = 13, .external_lex_state = 7}, - [3035] = {.lex_state = 2, .external_lex_state = 4}, - [3036] = {.lex_state = 13, .external_lex_state = 6}, - [3037] = {.lex_state = 13, .external_lex_state = 7}, - [3038] = {.lex_state = 13, .external_lex_state = 7}, - [3039] = {.lex_state = 13, .external_lex_state = 7}, - [3040] = {.lex_state = 13, .external_lex_state = 7}, + [3033] = {.lex_state = 2, .external_lex_state = 4}, + [3034] = {.lex_state = 2, .external_lex_state = 4}, + [3035] = {.lex_state = 13, .external_lex_state = 6}, + [3036] = {.lex_state = 2, .external_lex_state = 4}, + [3037] = {.lex_state = 13, .external_lex_state = 6}, + [3038] = {.lex_state = 13, .external_lex_state = 6}, + [3039] = {.lex_state = 2, .external_lex_state = 4}, + [3040] = {.lex_state = 2, .external_lex_state = 4}, [3041] = {.lex_state = 2, .external_lex_state = 4}, - [3042] = {.lex_state = 13, .external_lex_state = 6}, + [3042] = {.lex_state = 2, .external_lex_state = 4}, [3043] = {.lex_state = 13, .external_lex_state = 6}, - [3044] = {.lex_state = 13, .external_lex_state = 7}, - [3045] = {.lex_state = 2, .external_lex_state = 4}, + [3044] = {.lex_state = 13, .external_lex_state = 6}, + [3045] = {.lex_state = 13, .external_lex_state = 6}, [3046] = {.lex_state = 2, .external_lex_state = 4}, [3047] = {.lex_state = 2, .external_lex_state = 4}, [3048] = {.lex_state = 2, .external_lex_state = 4}, - [3049] = {.lex_state = 13, .external_lex_state = 7}, - [3050] = {.lex_state = 2, .external_lex_state = 4}, - [3051] = {.lex_state = 13, .external_lex_state = 6}, - [3052] = {.lex_state = 2, .external_lex_state = 4}, - [3053] = {.lex_state = 2, .external_lex_state = 4}, - [3054] = {.lex_state = 2, .external_lex_state = 4}, + [3049] = {.lex_state = 2, .external_lex_state = 4}, + [3050] = {.lex_state = 13, .external_lex_state = 6}, + [3051] = {.lex_state = 2, .external_lex_state = 4}, + [3052] = {.lex_state = 13, .external_lex_state = 6}, + [3053] = {.lex_state = 318, .external_lex_state = 2}, + [3054] = {.lex_state = 13, .external_lex_state = 6}, [3055] = {.lex_state = 2, .external_lex_state = 4}, - [3056] = {.lex_state = 13, .external_lex_state = 6}, + [3056] = {.lex_state = 2, .external_lex_state = 4}, [3057] = {.lex_state = 2, .external_lex_state = 4}, - [3058] = {.lex_state = 13, .external_lex_state = 6}, - [3059] = {.lex_state = 13, .external_lex_state = 6}, - [3060] = {.lex_state = 13, .external_lex_state = 6}, + [3058] = {.lex_state = 2, .external_lex_state = 4}, + [3059] = {.lex_state = 2, .external_lex_state = 4}, + [3060] = {.lex_state = 2, .external_lex_state = 4}, [3061] = {.lex_state = 2, .external_lex_state = 4}, - [3062] = {.lex_state = 318, .external_lex_state = 2}, - [3063] = {.lex_state = 13, .external_lex_state = 6}, - [3064] = {.lex_state = 2, .external_lex_state = 4}, + [3062] = {.lex_state = 2, .external_lex_state = 4}, + [3063] = {.lex_state = 2, .external_lex_state = 4}, + [3064] = {.lex_state = 11, .external_lex_state = 5}, [3065] = {.lex_state = 2, .external_lex_state = 4}, - [3066] = {.lex_state = 2, .external_lex_state = 4}, + [3066] = {.lex_state = 11, .external_lex_state = 5}, [3067] = {.lex_state = 2, .external_lex_state = 4}, - [3068] = {.lex_state = 2, .external_lex_state = 4}, - [3069] = {.lex_state = 2, .external_lex_state = 4}, - [3070] = {.lex_state = 2, .external_lex_state = 4}, - [3071] = {.lex_state = 13, .external_lex_state = 6}, + [3068] = {.lex_state = 13, .external_lex_state = 6}, + [3069] = {.lex_state = 13, .external_lex_state = 6}, + [3070] = {.lex_state = 13, .external_lex_state = 6}, + [3071] = {.lex_state = 2, .external_lex_state = 4}, [3072] = {.lex_state = 2, .external_lex_state = 4}, [3073] = {.lex_state = 2, .external_lex_state = 4}, - [3074] = {.lex_state = 13, .external_lex_state = 6}, - [3075] = {.lex_state = 11, .external_lex_state = 5}, + [3074] = {.lex_state = 2, .external_lex_state = 4}, + [3075] = {.lex_state = 13, .external_lex_state = 7}, [3076] = {.lex_state = 2, .external_lex_state = 4}, [3077] = {.lex_state = 2, .external_lex_state = 4}, - [3078] = {.lex_state = 2, .external_lex_state = 4}, + [3078] = {.lex_state = 13, .external_lex_state = 6}, [3079] = {.lex_state = 2, .external_lex_state = 4}, - [3080] = {.lex_state = 13, .external_lex_state = 6}, + [3080] = {.lex_state = 2, .external_lex_state = 4}, [3081] = {.lex_state = 13, .external_lex_state = 6}, [3082] = {.lex_state = 2, .external_lex_state = 4}, - [3083] = {.lex_state = 13, .external_lex_state = 6}, + [3083] = {.lex_state = 2, .external_lex_state = 4}, [3084] = {.lex_state = 2, .external_lex_state = 4}, [3085] = {.lex_state = 2, .external_lex_state = 4}, [3086] = {.lex_state = 2, .external_lex_state = 4}, [3087] = {.lex_state = 13, .external_lex_state = 6}, [3088] = {.lex_state = 2, .external_lex_state = 4}, [3089] = {.lex_state = 2, .external_lex_state = 4}, - [3090] = {.lex_state = 13, .external_lex_state = 6}, + [3090] = {.lex_state = 2, .external_lex_state = 4}, [3091] = {.lex_state = 2, .external_lex_state = 4}, - [3092] = {.lex_state = 13, .external_lex_state = 6}, + [3092] = {.lex_state = 2, .external_lex_state = 4}, [3093] = {.lex_state = 2, .external_lex_state = 4}, - [3094] = {.lex_state = 13, .external_lex_state = 6}, + [3094] = {.lex_state = 2, .external_lex_state = 4}, [3095] = {.lex_state = 2, .external_lex_state = 4}, - [3096] = {.lex_state = 2, .external_lex_state = 4}, - [3097] = {.lex_state = 4, .external_lex_state = 4}, + [3096] = {.lex_state = 13, .external_lex_state = 6}, + [3097] = {.lex_state = 2, .external_lex_state = 4}, [3098] = {.lex_state = 2, .external_lex_state = 4}, [3099] = {.lex_state = 2, .external_lex_state = 4}, [3100] = {.lex_state = 2, .external_lex_state = 4}, [3101] = {.lex_state = 2, .external_lex_state = 4}, - [3102] = {.lex_state = 13, .external_lex_state = 6}, + [3102] = {.lex_state = 2, .external_lex_state = 4}, [3103] = {.lex_state = 2, .external_lex_state = 4}, - [3104] = {.lex_state = 2, .external_lex_state = 4}, + [3104] = {.lex_state = 13, .external_lex_state = 6}, [3105] = {.lex_state = 2, .external_lex_state = 4}, - [3106] = {.lex_state = 2, .external_lex_state = 4}, - [3107] = {.lex_state = 2, .external_lex_state = 4}, - [3108] = {.lex_state = 2, .external_lex_state = 4}, + [3106] = {.lex_state = 13, .external_lex_state = 6}, + [3107] = {.lex_state = 13, .external_lex_state = 6}, + [3108] = {.lex_state = 13, .external_lex_state = 6}, [3109] = {.lex_state = 13, .external_lex_state = 6}, [3110] = {.lex_state = 2, .external_lex_state = 4}, [3111] = {.lex_state = 2, .external_lex_state = 4}, @@ -26944,113 +26595,113 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3114] = {.lex_state = 2, .external_lex_state = 4}, [3115] = {.lex_state = 2, .external_lex_state = 4}, [3116] = {.lex_state = 2, .external_lex_state = 4}, - [3117] = {.lex_state = 2, .external_lex_state = 4}, - [3118] = {.lex_state = 13, .external_lex_state = 6}, + [3117] = {.lex_state = 13, .external_lex_state = 6}, + [3118] = {.lex_state = 2, .external_lex_state = 4}, [3119] = {.lex_state = 13, .external_lex_state = 6}, - [3120] = {.lex_state = 13, .external_lex_state = 6}, + [3120] = {.lex_state = 2, .external_lex_state = 4}, [3121] = {.lex_state = 2, .external_lex_state = 4}, - [3122] = {.lex_state = 13, .external_lex_state = 6}, - [3123] = {.lex_state = 13, .external_lex_state = 6}, + [3122] = {.lex_state = 318, .external_lex_state = 2}, + [3123] = {.lex_state = 2, .external_lex_state = 4}, [3124] = {.lex_state = 2, .external_lex_state = 4}, - [3125] = {.lex_state = 13, .external_lex_state = 7}, + [3125] = {.lex_state = 13, .external_lex_state = 6}, [3126] = {.lex_state = 2, .external_lex_state = 4}, [3127] = {.lex_state = 2, .external_lex_state = 4}, [3128] = {.lex_state = 2, .external_lex_state = 4}, - [3129] = {.lex_state = 2, .external_lex_state = 4}, - [3130] = {.lex_state = 13, .external_lex_state = 6}, - [3131] = {.lex_state = 13, .external_lex_state = 6}, - [3132] = {.lex_state = 13, .external_lex_state = 7}, - [3133] = {.lex_state = 13, .external_lex_state = 6}, + [3129] = {.lex_state = 11, .external_lex_state = 5}, + [3130] = {.lex_state = 2, .external_lex_state = 4}, + [3131] = {.lex_state = 2, .external_lex_state = 4}, + [3132] = {.lex_state = 2, .external_lex_state = 4}, + [3133] = {.lex_state = 2, .external_lex_state = 4}, [3134] = {.lex_state = 2, .external_lex_state = 4}, - [3135] = {.lex_state = 11, .external_lex_state = 5}, - [3136] = {.lex_state = 11, .external_lex_state = 5}, - [3137] = {.lex_state = 13, .external_lex_state = 6}, + [3135] = {.lex_state = 2, .external_lex_state = 4}, + [3136] = {.lex_state = 13, .external_lex_state = 6}, + [3137] = {.lex_state = 2, .external_lex_state = 4}, [3138] = {.lex_state = 2, .external_lex_state = 4}, - [3139] = {.lex_state = 11, .external_lex_state = 5}, + [3139] = {.lex_state = 13, .external_lex_state = 6}, [3140] = {.lex_state = 2, .external_lex_state = 4}, [3141] = {.lex_state = 2, .external_lex_state = 4}, - [3142] = {.lex_state = 2, .external_lex_state = 4}, + [3142] = {.lex_state = 13, .external_lex_state = 6}, [3143] = {.lex_state = 2, .external_lex_state = 4}, [3144] = {.lex_state = 2, .external_lex_state = 4}, [3145] = {.lex_state = 2, .external_lex_state = 4}, [3146] = {.lex_state = 2, .external_lex_state = 4}, - [3147] = {.lex_state = 2, .external_lex_state = 4}, + [3147] = {.lex_state = 13, .external_lex_state = 6}, [3148] = {.lex_state = 2, .external_lex_state = 4}, [3149] = {.lex_state = 2, .external_lex_state = 4}, [3150] = {.lex_state = 2, .external_lex_state = 4}, - [3151] = {.lex_state = 13, .external_lex_state = 6}, + [3151] = {.lex_state = 2, .external_lex_state = 4}, [3152] = {.lex_state = 2, .external_lex_state = 4}, - [3153] = {.lex_state = 13, .external_lex_state = 6}, - [3154] = {.lex_state = 13, .external_lex_state = 6}, + [3153] = {.lex_state = 2, .external_lex_state = 4}, + [3154] = {.lex_state = 11, .external_lex_state = 5}, [3155] = {.lex_state = 2, .external_lex_state = 4}, [3156] = {.lex_state = 2, .external_lex_state = 4}, [3157] = {.lex_state = 2, .external_lex_state = 4}, [3158] = {.lex_state = 2, .external_lex_state = 4}, [3159] = {.lex_state = 2, .external_lex_state = 4}, [3160] = {.lex_state = 2, .external_lex_state = 4}, - [3161] = {.lex_state = 13, .external_lex_state = 6}, + [3161] = {.lex_state = 2, .external_lex_state = 4}, [3162] = {.lex_state = 2, .external_lex_state = 4}, - [3163] = {.lex_state = 2, .external_lex_state = 4}, + [3163] = {.lex_state = 13, .external_lex_state = 6}, [3164] = {.lex_state = 2, .external_lex_state = 4}, - [3165] = {.lex_state = 13, .external_lex_state = 6}, + [3165] = {.lex_state = 2, .external_lex_state = 4}, [3166] = {.lex_state = 2, .external_lex_state = 4}, [3167] = {.lex_state = 2, .external_lex_state = 4}, [3168] = {.lex_state = 2, .external_lex_state = 4}, - [3169] = {.lex_state = 13, .external_lex_state = 6}, + [3169] = {.lex_state = 2, .external_lex_state = 4}, [3170] = {.lex_state = 2, .external_lex_state = 4}, [3171] = {.lex_state = 2, .external_lex_state = 4}, - [3172] = {.lex_state = 2, .external_lex_state = 4}, + [3172] = {.lex_state = 13, .external_lex_state = 6}, [3173] = {.lex_state = 2, .external_lex_state = 4}, [3174] = {.lex_state = 2, .external_lex_state = 4}, - [3175] = {.lex_state = 2, .external_lex_state = 4}, - [3176] = {.lex_state = 13, .external_lex_state = 6}, - [3177] = {.lex_state = 2, .external_lex_state = 4}, + [3175] = {.lex_state = 13, .external_lex_state = 6}, + [3176] = {.lex_state = 11, .external_lex_state = 5}, + [3177] = {.lex_state = 11, .external_lex_state = 5}, [3178] = {.lex_state = 2, .external_lex_state = 4}, [3179] = {.lex_state = 2, .external_lex_state = 4}, - [3180] = {.lex_state = 2, .external_lex_state = 4}, - [3181] = {.lex_state = 13, .external_lex_state = 6}, + [3180] = {.lex_state = 13, .external_lex_state = 6}, + [3181] = {.lex_state = 2, .external_lex_state = 4}, [3182] = {.lex_state = 2, .external_lex_state = 4}, - [3183] = {.lex_state = 2, .external_lex_state = 4}, - [3184] = {.lex_state = 2, .external_lex_state = 4}, + [3183] = {.lex_state = 13, .external_lex_state = 6}, + [3184] = {.lex_state = 13, .external_lex_state = 6}, [3185] = {.lex_state = 2, .external_lex_state = 4}, [3186] = {.lex_state = 2, .external_lex_state = 4}, - [3187] = {.lex_state = 13, .external_lex_state = 6}, - [3188] = {.lex_state = 13, .external_lex_state = 6}, - [3189] = {.lex_state = 2, .external_lex_state = 4}, - [3190] = {.lex_state = 13, .external_lex_state = 6}, - [3191] = {.lex_state = 2, .external_lex_state = 4}, - [3192] = {.lex_state = 2, .external_lex_state = 4}, - [3193] = {.lex_state = 2, .external_lex_state = 4}, - [3194] = {.lex_state = 13, .external_lex_state = 6}, + [3187] = {.lex_state = 2, .external_lex_state = 4}, + [3188] = {.lex_state = 2, .external_lex_state = 4}, + [3189] = {.lex_state = 13, .external_lex_state = 6}, + [3190] = {.lex_state = 2, .external_lex_state = 4}, + [3191] = {.lex_state = 13, .external_lex_state = 6}, + [3192] = {.lex_state = 13, .external_lex_state = 6}, + [3193] = {.lex_state = 13, .external_lex_state = 6}, + [3194] = {.lex_state = 2, .external_lex_state = 4}, [3195] = {.lex_state = 2, .external_lex_state = 4}, - [3196] = {.lex_state = 13, .external_lex_state = 6}, + [3196] = {.lex_state = 2, .external_lex_state = 4}, [3197] = {.lex_state = 2, .external_lex_state = 4}, [3198] = {.lex_state = 2, .external_lex_state = 4}, - [3199] = {.lex_state = 13, .external_lex_state = 6}, + [3199] = {.lex_state = 11, .external_lex_state = 5}, [3200] = {.lex_state = 2, .external_lex_state = 4}, - [3201] = {.lex_state = 13, .external_lex_state = 6}, - [3202] = {.lex_state = 11, .external_lex_state = 5}, + [3201] = {.lex_state = 2, .external_lex_state = 4}, + [3202] = {.lex_state = 13, .external_lex_state = 6}, [3203] = {.lex_state = 2, .external_lex_state = 4}, [3204] = {.lex_state = 2, .external_lex_state = 4}, [3205] = {.lex_state = 2, .external_lex_state = 4}, [3206] = {.lex_state = 2, .external_lex_state = 4}, [3207] = {.lex_state = 2, .external_lex_state = 4}, - [3208] = {.lex_state = 2, .external_lex_state = 4}, - [3209] = {.lex_state = 2, .external_lex_state = 4}, + [3208] = {.lex_state = 13, .external_lex_state = 6}, + [3209] = {.lex_state = 13, .external_lex_state = 6}, [3210] = {.lex_state = 2, .external_lex_state = 4}, [3211] = {.lex_state = 2, .external_lex_state = 4}, [3212] = {.lex_state = 2, .external_lex_state = 4}, [3213] = {.lex_state = 2, .external_lex_state = 4}, - [3214] = {.lex_state = 2, .external_lex_state = 4}, + [3214] = {.lex_state = 13, .external_lex_state = 6}, [3215] = {.lex_state = 2, .external_lex_state = 4}, [3216] = {.lex_state = 2, .external_lex_state = 4}, [3217] = {.lex_state = 2, .external_lex_state = 4}, - [3218] = {.lex_state = 2, .external_lex_state = 4}, + [3218] = {.lex_state = 13, .external_lex_state = 6}, [3219] = {.lex_state = 2, .external_lex_state = 4}, [3220] = {.lex_state = 2, .external_lex_state = 4}, [3221] = {.lex_state = 2, .external_lex_state = 4}, - [3222] = {.lex_state = 2, .external_lex_state = 4}, - [3223] = {.lex_state = 2, .external_lex_state = 4}, + [3222] = {.lex_state = 13, .external_lex_state = 6}, + [3223] = {.lex_state = 13, .external_lex_state = 6}, [3224] = {.lex_state = 2, .external_lex_state = 4}, [3225] = {.lex_state = 2, .external_lex_state = 4}, [3226] = {.lex_state = 2, .external_lex_state = 4}, @@ -27060,7 +26711,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3230] = {.lex_state = 2, .external_lex_state = 4}, [3231] = {.lex_state = 2, .external_lex_state = 4}, [3232] = {.lex_state = 2, .external_lex_state = 4}, - [3233] = {.lex_state = 2, .external_lex_state = 4}, + [3233] = {.lex_state = 13, .external_lex_state = 6}, [3234] = {.lex_state = 2, .external_lex_state = 4}, [3235] = {.lex_state = 2, .external_lex_state = 4}, [3236] = {.lex_state = 2, .external_lex_state = 4}, @@ -27069,31 +26720,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3239] = {.lex_state = 2, .external_lex_state = 4}, [3240] = {.lex_state = 2, .external_lex_state = 4}, [3241] = {.lex_state = 2, .external_lex_state = 4}, - [3242] = {.lex_state = 13, .external_lex_state = 6}, + [3242] = {.lex_state = 2, .external_lex_state = 4}, [3243] = {.lex_state = 2, .external_lex_state = 4}, [3244] = {.lex_state = 2, .external_lex_state = 4}, [3245] = {.lex_state = 2, .external_lex_state = 4}, - [3246] = {.lex_state = 13, .external_lex_state = 6}, + [3246] = {.lex_state = 2, .external_lex_state = 4}, [3247] = {.lex_state = 2, .external_lex_state = 4}, [3248] = {.lex_state = 2, .external_lex_state = 4}, [3249] = {.lex_state = 2, .external_lex_state = 4}, - [3250] = {.lex_state = 2, .external_lex_state = 4}, + [3250] = {.lex_state = 13, .external_lex_state = 6}, [3251] = {.lex_state = 2, .external_lex_state = 4}, [3252] = {.lex_state = 2, .external_lex_state = 4}, - [3253] = {.lex_state = 2, .external_lex_state = 4}, + [3253] = {.lex_state = 13, .external_lex_state = 6}, [3254] = {.lex_state = 2, .external_lex_state = 4}, [3255] = {.lex_state = 2, .external_lex_state = 4}, [3256] = {.lex_state = 2, .external_lex_state = 4}, [3257] = {.lex_state = 2, .external_lex_state = 4}, - [3258] = {.lex_state = 13, .external_lex_state = 6}, + [3258] = {.lex_state = 2, .external_lex_state = 4}, [3259] = {.lex_state = 2, .external_lex_state = 4}, - [3260] = {.lex_state = 13, .external_lex_state = 6}, - [3261] = {.lex_state = 2, .external_lex_state = 4}, + [3260] = {.lex_state = 2, .external_lex_state = 4}, + [3261] = {.lex_state = 11, .external_lex_state = 5}, [3262] = {.lex_state = 2, .external_lex_state = 4}, - [3263] = {.lex_state = 13, .external_lex_state = 6}, + [3263] = {.lex_state = 2, .external_lex_state = 4}, [3264] = {.lex_state = 2, .external_lex_state = 4}, [3265] = {.lex_state = 2, .external_lex_state = 4}, - [3266] = {.lex_state = 11, .external_lex_state = 5}, + [3266] = {.lex_state = 2, .external_lex_state = 4}, [3267] = {.lex_state = 2, .external_lex_state = 4}, [3268] = {.lex_state = 2, .external_lex_state = 4}, [3269] = {.lex_state = 2, .external_lex_state = 4}, @@ -27102,149 +26753,149 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3272] = {.lex_state = 2, .external_lex_state = 4}, [3273] = {.lex_state = 2, .external_lex_state = 4}, [3274] = {.lex_state = 2, .external_lex_state = 4}, - [3275] = {.lex_state = 13, .external_lex_state = 6}, - [3276] = {.lex_state = 2, .external_lex_state = 4}, - [3277] = {.lex_state = 2, .external_lex_state = 4}, - [3278] = {.lex_state = 2, .external_lex_state = 4}, - [3279] = {.lex_state = 13, .external_lex_state = 6}, - [3280] = {.lex_state = 2, .external_lex_state = 4}, - [3281] = {.lex_state = 2, .external_lex_state = 4}, - [3282] = {.lex_state = 2, .external_lex_state = 4}, + [3275] = {.lex_state = 13, .external_lex_state = 7}, + [3276] = {.lex_state = 13, .external_lex_state = 6}, + [3277] = {.lex_state = 14, .external_lex_state = 6}, + [3278] = {.lex_state = 14, .external_lex_state = 6}, + [3279] = {.lex_state = 13, .external_lex_state = 7}, + [3280] = {.lex_state = 13, .external_lex_state = 6}, + [3281] = {.lex_state = 13, .external_lex_state = 6}, + [3282] = {.lex_state = 13, .external_lex_state = 6}, [3283] = {.lex_state = 13, .external_lex_state = 6}, - [3284] = {.lex_state = 2, .external_lex_state = 4}, - [3285] = {.lex_state = 2, .external_lex_state = 4}, - [3286] = {.lex_state = 2, .external_lex_state = 4}, - [3287] = {.lex_state = 2, .external_lex_state = 4}, - [3288] = {.lex_state = 11, .external_lex_state = 5}, - [3289] = {.lex_state = 2, .external_lex_state = 4}, - [3290] = {.lex_state = 2, .external_lex_state = 4}, - [3291] = {.lex_state = 2, .external_lex_state = 4}, - [3292] = {.lex_state = 2, .external_lex_state = 4}, - [3293] = {.lex_state = 11, .external_lex_state = 5}, - [3294] = {.lex_state = 2, .external_lex_state = 4}, - [3295] = {.lex_state = 11, .external_lex_state = 5}, - [3296] = {.lex_state = 2, .external_lex_state = 4}, - [3297] = {.lex_state = 2, .external_lex_state = 4}, - [3298] = {.lex_state = 2, .external_lex_state = 4}, - [3299] = {.lex_state = 2, .external_lex_state = 4}, + [3284] = {.lex_state = 13, .external_lex_state = 6}, + [3285] = {.lex_state = 13, .external_lex_state = 6}, + [3286] = {.lex_state = 14, .external_lex_state = 6}, + [3287] = {.lex_state = 2, .external_lex_state = 3}, + [3288] = {.lex_state = 14, .external_lex_state = 6}, + [3289] = {.lex_state = 14, .external_lex_state = 6}, + [3290] = {.lex_state = 2, .external_lex_state = 3}, + [3291] = {.lex_state = 13, .external_lex_state = 6}, + [3292] = {.lex_state = 13, .external_lex_state = 6}, + [3293] = {.lex_state = 13, .external_lex_state = 6}, + [3294] = {.lex_state = 13, .external_lex_state = 7}, + [3295] = {.lex_state = 13, .external_lex_state = 6}, + [3296] = {.lex_state = 14, .external_lex_state = 6}, + [3297] = {.lex_state = 13, .external_lex_state = 6}, + [3298] = {.lex_state = 13, .external_lex_state = 6}, + [3299] = {.lex_state = 14, .external_lex_state = 6}, [3300] = {.lex_state = 13, .external_lex_state = 6}, [3301] = {.lex_state = 13, .external_lex_state = 6}, - [3302] = {.lex_state = 2, .external_lex_state = 4}, - [3303] = {.lex_state = 2, .external_lex_state = 4}, - [3304] = {.lex_state = 2, .external_lex_state = 4}, - [3305] = {.lex_state = 13, .external_lex_state = 6}, - [3306] = {.lex_state = 13, .external_lex_state = 6}, - [3307] = {.lex_state = 2, .external_lex_state = 4}, - [3308] = {.lex_state = 2, .external_lex_state = 4}, - [3309] = {.lex_state = 318, .external_lex_state = 2}, - [3310] = {.lex_state = 2, .external_lex_state = 4}, - [3311] = {.lex_state = 2, .external_lex_state = 4}, - [3312] = {.lex_state = 2, .external_lex_state = 4}, - [3313] = {.lex_state = 2, .external_lex_state = 4}, - [3314] = {.lex_state = 2, .external_lex_state = 4}, + [3302] = {.lex_state = 13, .external_lex_state = 6}, + [3303] = {.lex_state = 13, .external_lex_state = 6}, + [3304] = {.lex_state = 13, .external_lex_state = 6}, + [3305] = {.lex_state = 2, .external_lex_state = 4}, + [3306] = {.lex_state = 13, .external_lex_state = 7}, + [3307] = {.lex_state = 13, .external_lex_state = 6}, + [3308] = {.lex_state = 13, .external_lex_state = 7}, + [3309] = {.lex_state = 13, .external_lex_state = 6}, + [3310] = {.lex_state = 14, .external_lex_state = 6}, + [3311] = {.lex_state = 13, .external_lex_state = 6}, + [3312] = {.lex_state = 13, .external_lex_state = 6}, + [3313] = {.lex_state = 13, .external_lex_state = 6}, + [3314] = {.lex_state = 13, .external_lex_state = 6}, [3315] = {.lex_state = 13, .external_lex_state = 6}, - [3316] = {.lex_state = 2, .external_lex_state = 4}, - [3317] = {.lex_state = 2, .external_lex_state = 4}, + [3316] = {.lex_state = 13, .external_lex_state = 6}, + [3317] = {.lex_state = 13, .external_lex_state = 6}, [3318] = {.lex_state = 13, .external_lex_state = 6}, - [3319] = {.lex_state = 2, .external_lex_state = 4}, + [3319] = {.lex_state = 13, .external_lex_state = 7}, [3320] = {.lex_state = 13, .external_lex_state = 6}, [3321] = {.lex_state = 13, .external_lex_state = 6}, - [3322] = {.lex_state = 13, .external_lex_state = 6}, + [3322] = {.lex_state = 2, .external_lex_state = 4}, [3323] = {.lex_state = 2, .external_lex_state = 4}, - [3324] = {.lex_state = 2, .external_lex_state = 4}, - [3325] = {.lex_state = 2, .external_lex_state = 4}, + [3324] = {.lex_state = 13, .external_lex_state = 6}, + [3325] = {.lex_state = 13, .external_lex_state = 6}, [3326] = {.lex_state = 13, .external_lex_state = 6}, - [3327] = {.lex_state = 2, .external_lex_state = 4}, - [3328] = {.lex_state = 2, .external_lex_state = 4}, - [3329] = {.lex_state = 2, .external_lex_state = 4}, - [3330] = {.lex_state = 13, .external_lex_state = 6}, - [3331] = {.lex_state = 2, .external_lex_state = 4}, - [3332] = {.lex_state = 2, .external_lex_state = 4}, - [3333] = {.lex_state = 13, .external_lex_state = 6}, - [3334] = {.lex_state = 2, .external_lex_state = 4}, - [3335] = {.lex_state = 2, .external_lex_state = 4}, - [3336] = {.lex_state = 13, .external_lex_state = 6}, - [3337] = {.lex_state = 2, .external_lex_state = 4}, - [3338] = {.lex_state = 13, .external_lex_state = 6}, - [3339] = {.lex_state = 2, .external_lex_state = 4}, - [3340] = {.lex_state = 2, .external_lex_state = 4}, + [3327] = {.lex_state = 13, .external_lex_state = 6}, + [3328] = {.lex_state = 14, .external_lex_state = 6}, + [3329] = {.lex_state = 13, .external_lex_state = 6}, + [3330] = {.lex_state = 14, .external_lex_state = 6}, + [3331] = {.lex_state = 15, .external_lex_state = 6}, + [3332] = {.lex_state = 13, .external_lex_state = 7}, + [3333] = {.lex_state = 14, .external_lex_state = 6}, + [3334] = {.lex_state = 13, .external_lex_state = 6}, + [3335] = {.lex_state = 14, .external_lex_state = 6}, + [3336] = {.lex_state = 14, .external_lex_state = 6}, + [3337] = {.lex_state = 14, .external_lex_state = 6}, + [3338] = {.lex_state = 14, .external_lex_state = 6}, + [3339] = {.lex_state = 14, .external_lex_state = 6}, + [3340] = {.lex_state = 14, .external_lex_state = 6}, [3341] = {.lex_state = 13, .external_lex_state = 6}, [3342] = {.lex_state = 13, .external_lex_state = 6}, - [3343] = {.lex_state = 11, .external_lex_state = 5}, - [3344] = {.lex_state = 2, .external_lex_state = 4}, - [3345] = {.lex_state = 2, .external_lex_state = 4}, - [3346] = {.lex_state = 11, .external_lex_state = 5}, - [3347] = {.lex_state = 13, .external_lex_state = 6}, - [3348] = {.lex_state = 2, .external_lex_state = 4}, - [3349] = {.lex_state = 13, .external_lex_state = 6}, - [3350] = {.lex_state = 13, .external_lex_state = 6}, + [3343] = {.lex_state = 13, .external_lex_state = 6}, + [3344] = {.lex_state = 14, .external_lex_state = 6}, + [3345] = {.lex_state = 13, .external_lex_state = 6}, + [3346] = {.lex_state = 13, .external_lex_state = 6}, + [3347] = {.lex_state = 13, .external_lex_state = 7}, + [3348] = {.lex_state = 13, .external_lex_state = 6}, + [3349] = {.lex_state = 13, .external_lex_state = 7}, + [3350] = {.lex_state = 13, .external_lex_state = 7}, [3351] = {.lex_state = 13, .external_lex_state = 6}, - [3352] = {.lex_state = 11, .external_lex_state = 5}, - [3353] = {.lex_state = 2, .external_lex_state = 4}, - [3354] = {.lex_state = 2, .external_lex_state = 4}, + [3352] = {.lex_state = 13, .external_lex_state = 6}, + [3353] = {.lex_state = 13, .external_lex_state = 6}, + [3354] = {.lex_state = 13, .external_lex_state = 6}, [3355] = {.lex_state = 13, .external_lex_state = 7}, [3356] = {.lex_state = 13, .external_lex_state = 6}, [3357] = {.lex_state = 13, .external_lex_state = 6}, - [3358] = {.lex_state = 13, .external_lex_state = 6}, - [3359] = {.lex_state = 15, .external_lex_state = 6}, + [3358] = {.lex_state = 13, .external_lex_state = 7}, + [3359] = {.lex_state = 13, .external_lex_state = 6}, [3360] = {.lex_state = 13, .external_lex_state = 6}, [3361] = {.lex_state = 13, .external_lex_state = 6}, - [3362] = {.lex_state = 14, .external_lex_state = 6}, + [3362] = {.lex_state = 13, .external_lex_state = 6}, [3363] = {.lex_state = 13, .external_lex_state = 6}, - [3364] = {.lex_state = 14, .external_lex_state = 6}, - [3365] = {.lex_state = 14, .external_lex_state = 6}, - [3366] = {.lex_state = 13, .external_lex_state = 7}, - [3367] = {.lex_state = 14, .external_lex_state = 6}, - [3368] = {.lex_state = 13, .external_lex_state = 7}, - [3369] = {.lex_state = 14, .external_lex_state = 6}, - [3370] = {.lex_state = 14, .external_lex_state = 6}, + [3364] = {.lex_state = 13, .external_lex_state = 7}, + [3365] = {.lex_state = 13, .external_lex_state = 6}, + [3366] = {.lex_state = 13, .external_lex_state = 6}, + [3367] = {.lex_state = 13, .external_lex_state = 6}, + [3368] = {.lex_state = 13, .external_lex_state = 6}, + [3369] = {.lex_state = 13, .external_lex_state = 6}, + [3370] = {.lex_state = 13, .external_lex_state = 6}, [3371] = {.lex_state = 13, .external_lex_state = 7}, - [3372] = {.lex_state = 13, .external_lex_state = 6}, - [3373] = {.lex_state = 13, .external_lex_state = 6}, + [3372] = {.lex_state = 13, .external_lex_state = 7}, + [3373] = {.lex_state = 13, .external_lex_state = 7}, [3374] = {.lex_state = 13, .external_lex_state = 7}, - [3375] = {.lex_state = 14, .external_lex_state = 6}, + [3375] = {.lex_state = 13, .external_lex_state = 7}, [3376] = {.lex_state = 13, .external_lex_state = 7}, [3377] = {.lex_state = 13, .external_lex_state = 7}, - [3378] = {.lex_state = 14, .external_lex_state = 6}, - [3379] = {.lex_state = 13, .external_lex_state = 6}, - [3380] = {.lex_state = 13, .external_lex_state = 6}, - [3381] = {.lex_state = 13, .external_lex_state = 6}, - [3382] = {.lex_state = 13, .external_lex_state = 6}, - [3383] = {.lex_state = 13, .external_lex_state = 7}, + [3378] = {.lex_state = 2, .external_lex_state = 4}, + [3379] = {.lex_state = 2, .external_lex_state = 4}, + [3380] = {.lex_state = 2, .external_lex_state = 4}, + [3381] = {.lex_state = 13, .external_lex_state = 7}, + [3382] = {.lex_state = 2, .external_lex_state = 4}, + [3383] = {.lex_state = 2, .external_lex_state = 4}, [3384] = {.lex_state = 13, .external_lex_state = 7}, [3385] = {.lex_state = 13, .external_lex_state = 6}, - [3386] = {.lex_state = 14, .external_lex_state = 6}, + [3386] = {.lex_state = 13, .external_lex_state = 6}, [3387] = {.lex_state = 13, .external_lex_state = 6}, [3388] = {.lex_state = 13, .external_lex_state = 6}, [3389] = {.lex_state = 13, .external_lex_state = 6}, - [3390] = {.lex_state = 13, .external_lex_state = 6}, - [3391] = {.lex_state = 13, .external_lex_state = 6}, - [3392] = {.lex_state = 13, .external_lex_state = 6}, - [3393] = {.lex_state = 13, .external_lex_state = 6}, - [3394] = {.lex_state = 13, .external_lex_state = 6}, - [3395] = {.lex_state = 13, .external_lex_state = 7}, - [3396] = {.lex_state = 14, .external_lex_state = 6}, + [3390] = {.lex_state = 13, .external_lex_state = 7}, + [3391] = {.lex_state = 2, .external_lex_state = 4}, + [3392] = {.lex_state = 13, .external_lex_state = 7}, + [3393] = {.lex_state = 13, .external_lex_state = 7}, + [3394] = {.lex_state = 13, .external_lex_state = 7}, + [3395] = {.lex_state = 13, .external_lex_state = 6}, + [3396] = {.lex_state = 13, .external_lex_state = 6}, [3397] = {.lex_state = 13, .external_lex_state = 6}, - [3398] = {.lex_state = 14, .external_lex_state = 6}, - [3399] = {.lex_state = 14, .external_lex_state = 6}, - [3400] = {.lex_state = 13, .external_lex_state = 7}, + [3398] = {.lex_state = 13, .external_lex_state = 6}, + [3399] = {.lex_state = 11, .external_lex_state = 5}, + [3400] = {.lex_state = 13, .external_lex_state = 6}, [3401] = {.lex_state = 13, .external_lex_state = 6}, - [3402] = {.lex_state = 14, .external_lex_state = 6}, + [3402] = {.lex_state = 13, .external_lex_state = 6}, [3403] = {.lex_state = 13, .external_lex_state = 6}, - [3404] = {.lex_state = 2, .external_lex_state = 3}, - [3405] = {.lex_state = 13, .external_lex_state = 6}, + [3404] = {.lex_state = 13, .external_lex_state = 6}, + [3405] = {.lex_state = 318, .external_lex_state = 2}, [3406] = {.lex_state = 13, .external_lex_state = 6}, - [3407] = {.lex_state = 13, .external_lex_state = 6}, - [3408] = {.lex_state = 13, .external_lex_state = 6}, - [3409] = {.lex_state = 13, .external_lex_state = 6}, + [3407] = {.lex_state = 11, .external_lex_state = 5}, + [3408] = {.lex_state = 11, .external_lex_state = 5}, + [3409] = {.lex_state = 2, .external_lex_state = 4}, [3410] = {.lex_state = 13, .external_lex_state = 6}, - [3411] = {.lex_state = 2, .external_lex_state = 3}, - [3412] = {.lex_state = 14, .external_lex_state = 6}, - [3413] = {.lex_state = 14, .external_lex_state = 6}, - [3414] = {.lex_state = 14, .external_lex_state = 6}, - [3415] = {.lex_state = 14, .external_lex_state = 6}, + [3411] = {.lex_state = 13, .external_lex_state = 6}, + [3412] = {.lex_state = 2, .external_lex_state = 4}, + [3413] = {.lex_state = 13, .external_lex_state = 6}, + [3414] = {.lex_state = 13, .external_lex_state = 6}, + [3415] = {.lex_state = 13, .external_lex_state = 6}, [3416] = {.lex_state = 13, .external_lex_state = 6}, - [3417] = {.lex_state = 13, .external_lex_state = 7}, + [3417] = {.lex_state = 11, .external_lex_state = 5}, [3418] = {.lex_state = 13, .external_lex_state = 6}, [3419] = {.lex_state = 13, .external_lex_state = 6}, [3420] = {.lex_state = 13, .external_lex_state = 6}, @@ -27252,37 +26903,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3422] = {.lex_state = 13, .external_lex_state = 6}, [3423] = {.lex_state = 13, .external_lex_state = 6}, [3424] = {.lex_state = 13, .external_lex_state = 6}, - [3425] = {.lex_state = 13, .external_lex_state = 6}, + [3425] = {.lex_state = 13, .external_lex_state = 7}, [3426] = {.lex_state = 13, .external_lex_state = 6}, - [3427] = {.lex_state = 13, .external_lex_state = 6}, - [3428] = {.lex_state = 2, .external_lex_state = 4}, + [3427] = {.lex_state = 13, .external_lex_state = 7}, + [3428] = {.lex_state = 13, .external_lex_state = 6}, [3429] = {.lex_state = 13, .external_lex_state = 7}, [3430] = {.lex_state = 13, .external_lex_state = 6}, - [3431] = {.lex_state = 13, .external_lex_state = 6}, - [3432] = {.lex_state = 13, .external_lex_state = 6}, + [3431] = {.lex_state = 13, .external_lex_state = 7}, + [3432] = {.lex_state = 13, .external_lex_state = 7}, [3433] = {.lex_state = 2, .external_lex_state = 4}, - [3434] = {.lex_state = 13, .external_lex_state = 6}, + [3434] = {.lex_state = 2, .external_lex_state = 4}, [3435] = {.lex_state = 13, .external_lex_state = 6}, [3436] = {.lex_state = 13, .external_lex_state = 6}, - [3437] = {.lex_state = 2, .external_lex_state = 4}, - [3438] = {.lex_state = 2, .external_lex_state = 4}, + [3437] = {.lex_state = 13, .external_lex_state = 6}, + [3438] = {.lex_state = 13, .external_lex_state = 6}, [3439] = {.lex_state = 13, .external_lex_state = 6}, - [3440] = {.lex_state = 2, .external_lex_state = 4}, + [3440] = {.lex_state = 13, .external_lex_state = 6}, [3441] = {.lex_state = 13, .external_lex_state = 6}, [3442] = {.lex_state = 13, .external_lex_state = 6}, - [3443] = {.lex_state = 13, .external_lex_state = 6}, - [3444] = {.lex_state = 13, .external_lex_state = 6}, - [3445] = {.lex_state = 13, .external_lex_state = 6}, - [3446] = {.lex_state = 13, .external_lex_state = 7}, - [3447] = {.lex_state = 13, .external_lex_state = 6}, + [3443] = {.lex_state = 2, .external_lex_state = 4}, + [3444] = {.lex_state = 11, .external_lex_state = 5}, + [3445] = {.lex_state = 11, .external_lex_state = 5}, + [3446] = {.lex_state = 11, .external_lex_state = 5}, + [3447] = {.lex_state = 2, .external_lex_state = 4}, [3448] = {.lex_state = 13, .external_lex_state = 6}, [3449] = {.lex_state = 13, .external_lex_state = 6}, [3450] = {.lex_state = 13, .external_lex_state = 6}, [3451] = {.lex_state = 13, .external_lex_state = 6}, [3452] = {.lex_state = 13, .external_lex_state = 6}, [3453] = {.lex_state = 13, .external_lex_state = 6}, - [3454] = {.lex_state = 14, .external_lex_state = 6}, - [3455] = {.lex_state = 13, .external_lex_state = 6}, + [3454] = {.lex_state = 13, .external_lex_state = 6}, + [3455] = {.lex_state = 13, .external_lex_state = 7}, [3456] = {.lex_state = 13, .external_lex_state = 6}, [3457] = {.lex_state = 13, .external_lex_state = 6}, [3458] = {.lex_state = 13, .external_lex_state = 6}, @@ -27290,8 +26941,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3460] = {.lex_state = 13, .external_lex_state = 6}, [3461] = {.lex_state = 13, .external_lex_state = 6}, [3462] = {.lex_state = 13, .external_lex_state = 7}, - [3463] = {.lex_state = 318, .external_lex_state = 2}, - [3464] = {.lex_state = 13, .external_lex_state = 7}, + [3463] = {.lex_state = 13, .external_lex_state = 6}, + [3464] = {.lex_state = 13, .external_lex_state = 6}, [3465] = {.lex_state = 13, .external_lex_state = 6}, [3466] = {.lex_state = 13, .external_lex_state = 6}, [3467] = {.lex_state = 13, .external_lex_state = 6}, @@ -27299,24 +26950,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3469] = {.lex_state = 13, .external_lex_state = 6}, [3470] = {.lex_state = 13, .external_lex_state = 6}, [3471] = {.lex_state = 13, .external_lex_state = 6}, - [3472] = {.lex_state = 318, .external_lex_state = 2}, + [3472] = {.lex_state = 13, .external_lex_state = 6}, [3473] = {.lex_state = 13, .external_lex_state = 6}, [3474] = {.lex_state = 13, .external_lex_state = 6}, [3475] = {.lex_state = 13, .external_lex_state = 6}, [3476] = {.lex_state = 13, .external_lex_state = 6}, [3477] = {.lex_state = 13, .external_lex_state = 6}, - [3478] = {.lex_state = 2, .external_lex_state = 4}, - [3479] = {.lex_state = 318, .external_lex_state = 2}, + [3478] = {.lex_state = 13, .external_lex_state = 6}, + [3479] = {.lex_state = 13, .external_lex_state = 6}, [3480] = {.lex_state = 13, .external_lex_state = 6}, [3481] = {.lex_state = 13, .external_lex_state = 6}, - [3482] = {.lex_state = 2, .external_lex_state = 4}, - [3483] = {.lex_state = 2, .external_lex_state = 4}, - [3484] = {.lex_state = 13, .external_lex_state = 6}, + [3482] = {.lex_state = 13, .external_lex_state = 6}, + [3483] = {.lex_state = 13, .external_lex_state = 6}, + [3484] = {.lex_state = 11, .external_lex_state = 5}, [3485] = {.lex_state = 13, .external_lex_state = 6}, - [3486] = {.lex_state = 2, .external_lex_state = 4}, + [3486] = {.lex_state = 11, .external_lex_state = 5}, [3487] = {.lex_state = 13, .external_lex_state = 6}, [3488] = {.lex_state = 13, .external_lex_state = 6}, - [3489] = {.lex_state = 2, .external_lex_state = 4}, + [3489] = {.lex_state = 13, .external_lex_state = 6}, [3490] = {.lex_state = 13, .external_lex_state = 6}, [3491] = {.lex_state = 13, .external_lex_state = 6}, [3492] = {.lex_state = 13, .external_lex_state = 6}, @@ -27333,386 +26984,386 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3503] = {.lex_state = 13, .external_lex_state = 6}, [3504] = {.lex_state = 13, .external_lex_state = 6}, [3505] = {.lex_state = 13, .external_lex_state = 6}, - [3506] = {.lex_state = 13, .external_lex_state = 6}, + [3506] = {.lex_state = 2, .external_lex_state = 4}, [3507] = {.lex_state = 13, .external_lex_state = 6}, [3508] = {.lex_state = 2, .external_lex_state = 4}, - [3509] = {.lex_state = 11, .external_lex_state = 5}, - [3510] = {.lex_state = 2, .external_lex_state = 4}, + [3509] = {.lex_state = 13, .external_lex_state = 6}, + [3510] = {.lex_state = 13, .external_lex_state = 6}, [3511] = {.lex_state = 13, .external_lex_state = 6}, [3512] = {.lex_state = 13, .external_lex_state = 6}, [3513] = {.lex_state = 13, .external_lex_state = 6}, - [3514] = {.lex_state = 13, .external_lex_state = 7}, - [3515] = {.lex_state = 13, .external_lex_state = 6}, + [3514] = {.lex_state = 13, .external_lex_state = 6}, + [3515] = {.lex_state = 318, .external_lex_state = 2}, [3516] = {.lex_state = 13, .external_lex_state = 6}, [3517] = {.lex_state = 13, .external_lex_state = 6}, - [3518] = {.lex_state = 2, .external_lex_state = 4}, - [3519] = {.lex_state = 2, .external_lex_state = 4}, + [3518] = {.lex_state = 11, .external_lex_state = 5}, + [3519] = {.lex_state = 11, .external_lex_state = 5}, [3520] = {.lex_state = 13, .external_lex_state = 6}, [3521] = {.lex_state = 13, .external_lex_state = 6}, [3522] = {.lex_state = 2, .external_lex_state = 4}, - [3523] = {.lex_state = 13, .external_lex_state = 7}, - [3524] = {.lex_state = 2, .external_lex_state = 4}, + [3523] = {.lex_state = 2, .external_lex_state = 4}, + [3524] = {.lex_state = 13, .external_lex_state = 6}, [3525] = {.lex_state = 13, .external_lex_state = 6}, [3526] = {.lex_state = 13, .external_lex_state = 6}, - [3527] = {.lex_state = 13, .external_lex_state = 7}, - [3528] = {.lex_state = 2, .external_lex_state = 4}, - [3529] = {.lex_state = 2, .external_lex_state = 4}, + [3527] = {.lex_state = 13, .external_lex_state = 6}, + [3528] = {.lex_state = 13, .external_lex_state = 6}, + [3529] = {.lex_state = 11, .external_lex_state = 5}, [3530] = {.lex_state = 13, .external_lex_state = 6}, - [3531] = {.lex_state = 2, .external_lex_state = 4}, + [3531] = {.lex_state = 13, .external_lex_state = 6}, [3532] = {.lex_state = 2, .external_lex_state = 4}, - [3533] = {.lex_state = 2, .external_lex_state = 4}, - [3534] = {.lex_state = 13, .external_lex_state = 6}, + [3533] = {.lex_state = 13, .external_lex_state = 6}, + [3534] = {.lex_state = 2, .external_lex_state = 4}, [3535] = {.lex_state = 13, .external_lex_state = 6}, [3536] = {.lex_state = 13, .external_lex_state = 6}, [3537] = {.lex_state = 13, .external_lex_state = 6}, - [3538] = {.lex_state = 13, .external_lex_state = 6}, + [3538] = {.lex_state = 13, .external_lex_state = 7}, [3539] = {.lex_state = 13, .external_lex_state = 6}, [3540] = {.lex_state = 13, .external_lex_state = 6}, - [3541] = {.lex_state = 13, .external_lex_state = 6}, + [3541] = {.lex_state = 11, .external_lex_state = 5}, [3542] = {.lex_state = 13, .external_lex_state = 6}, - [3543] = {.lex_state = 2, .external_lex_state = 4}, - [3544] = {.lex_state = 11, .external_lex_state = 5}, - [3545] = {.lex_state = 13, .external_lex_state = 6}, - [3546] = {.lex_state = 11, .external_lex_state = 5}, - [3547] = {.lex_state = 11, .external_lex_state = 5}, - [3548] = {.lex_state = 13, .external_lex_state = 6}, + [3543] = {.lex_state = 13, .external_lex_state = 6}, + [3544] = {.lex_state = 13, .external_lex_state = 6}, + [3545] = {.lex_state = 13, .external_lex_state = 7}, + [3546] = {.lex_state = 13, .external_lex_state = 6}, + [3547] = {.lex_state = 13, .external_lex_state = 6}, + [3548] = {.lex_state = 13, .external_lex_state = 7}, [3549] = {.lex_state = 13, .external_lex_state = 6}, - [3550] = {.lex_state = 13, .external_lex_state = 6}, - [3551] = {.lex_state = 11, .external_lex_state = 5}, + [3550] = {.lex_state = 13, .external_lex_state = 7}, + [3551] = {.lex_state = 13, .external_lex_state = 6}, [3552] = {.lex_state = 13, .external_lex_state = 6}, - [3553] = {.lex_state = 2, .external_lex_state = 4}, - [3554] = {.lex_state = 13, .external_lex_state = 6}, - [3555] = {.lex_state = 13, .external_lex_state = 6}, + [3553] = {.lex_state = 13, .external_lex_state = 6}, + [3554] = {.lex_state = 318, .external_lex_state = 2}, + [3555] = {.lex_state = 2, .external_lex_state = 4}, [3556] = {.lex_state = 13, .external_lex_state = 7}, - [3557] = {.lex_state = 2, .external_lex_state = 4}, - [3558] = {.lex_state = 2, .external_lex_state = 4}, - [3559] = {.lex_state = 13, .external_lex_state = 6}, - [3560] = {.lex_state = 13, .external_lex_state = 7}, - [3561] = {.lex_state = 13, .external_lex_state = 6}, + [3557] = {.lex_state = 13, .external_lex_state = 6}, + [3558] = {.lex_state = 13, .external_lex_state = 7}, + [3559] = {.lex_state = 2, .external_lex_state = 4}, + [3560] = {.lex_state = 2, .external_lex_state = 4}, + [3561] = {.lex_state = 2, .external_lex_state = 4}, [3562] = {.lex_state = 13, .external_lex_state = 6}, - [3563] = {.lex_state = 13, .external_lex_state = 7}, - [3564] = {.lex_state = 13, .external_lex_state = 6}, - [3565] = {.lex_state = 13, .external_lex_state = 7}, - [3566] = {.lex_state = 13, .external_lex_state = 6}, + [3563] = {.lex_state = 2, .external_lex_state = 4}, + [3564] = {.lex_state = 2, .external_lex_state = 4}, + [3565] = {.lex_state = 13, .external_lex_state = 6}, + [3566] = {.lex_state = 2, .external_lex_state = 4}, [3567] = {.lex_state = 13, .external_lex_state = 6}, - [3568] = {.lex_state = 13, .external_lex_state = 6}, - [3569] = {.lex_state = 13, .external_lex_state = 6}, - [3570] = {.lex_state = 13, .external_lex_state = 6}, - [3571] = {.lex_state = 13, .external_lex_state = 6}, - [3572] = {.lex_state = 13, .external_lex_state = 6}, + [3568] = {.lex_state = 318, .external_lex_state = 2}, + [3569] = {.lex_state = 318, .external_lex_state = 2}, + [3570] = {.lex_state = 2, .external_lex_state = 4}, + [3571] = {.lex_state = 2, .external_lex_state = 4}, + [3572] = {.lex_state = 13, .external_lex_state = 7}, [3573] = {.lex_state = 13, .external_lex_state = 6}, - [3574] = {.lex_state = 13, .external_lex_state = 6}, - [3575] = {.lex_state = 13, .external_lex_state = 7}, + [3574] = {.lex_state = 13, .external_lex_state = 7}, + [3575] = {.lex_state = 13, .external_lex_state = 6}, [3576] = {.lex_state = 13, .external_lex_state = 6}, - [3577] = {.lex_state = 13, .external_lex_state = 7}, - [3578] = {.lex_state = 2, .external_lex_state = 4}, - [3579] = {.lex_state = 13, .external_lex_state = 7}, - [3580] = {.lex_state = 11, .external_lex_state = 5}, - [3581] = {.lex_state = 13, .external_lex_state = 6}, + [3577] = {.lex_state = 13, .external_lex_state = 6}, + [3578] = {.lex_state = 13, .external_lex_state = 7}, + [3579] = {.lex_state = 13, .external_lex_state = 6}, + [3580] = {.lex_state = 13, .external_lex_state = 6}, + [3581] = {.lex_state = 13, .external_lex_state = 7}, [3582] = {.lex_state = 13, .external_lex_state = 6}, - [3583] = {.lex_state = 13, .external_lex_state = 7}, + [3583] = {.lex_state = 13, .external_lex_state = 6}, [3584] = {.lex_state = 13, .external_lex_state = 6}, [3585] = {.lex_state = 13, .external_lex_state = 6}, [3586] = {.lex_state = 13, .external_lex_state = 6}, - [3587] = {.lex_state = 11, .external_lex_state = 5}, + [3587] = {.lex_state = 13, .external_lex_state = 6}, [3588] = {.lex_state = 13, .external_lex_state = 6}, - [3589] = {.lex_state = 11, .external_lex_state = 5}, + [3589] = {.lex_state = 13, .external_lex_state = 6}, [3590] = {.lex_state = 13, .external_lex_state = 6}, - [3591] = {.lex_state = 13, .external_lex_state = 7}, + [3591] = {.lex_state = 13, .external_lex_state = 6}, [3592] = {.lex_state = 13, .external_lex_state = 6}, [3593] = {.lex_state = 13, .external_lex_state = 6}, [3594] = {.lex_state = 13, .external_lex_state = 6}, - [3595] = {.lex_state = 13, .external_lex_state = 6}, + [3595] = {.lex_state = 13, .external_lex_state = 7}, [3596] = {.lex_state = 13, .external_lex_state = 6}, - [3597] = {.lex_state = 13, .external_lex_state = 6}, + [3597] = {.lex_state = 13, .external_lex_state = 7}, [3598] = {.lex_state = 13, .external_lex_state = 6}, - [3599] = {.lex_state = 13, .external_lex_state = 7}, - [3600] = {.lex_state = 13, .external_lex_state = 7}, + [3599] = {.lex_state = 13, .external_lex_state = 6}, + [3600] = {.lex_state = 13, .external_lex_state = 6}, [3601] = {.lex_state = 13, .external_lex_state = 6}, - [3602] = {.lex_state = 11, .external_lex_state = 5}, + [3602] = {.lex_state = 13, .external_lex_state = 6}, [3603] = {.lex_state = 13, .external_lex_state = 6}, - [3604] = {.lex_state = 13, .external_lex_state = 6}, - [3605] = {.lex_state = 13, .external_lex_state = 6}, - [3606] = {.lex_state = 13, .external_lex_state = 6}, - [3607] = {.lex_state = 318, .external_lex_state = 2}, - [3608] = {.lex_state = 13, .external_lex_state = 6}, - [3609] = {.lex_state = 13, .external_lex_state = 6}, - [3610] = {.lex_state = 13, .external_lex_state = 6}, - [3611] = {.lex_state = 13, .external_lex_state = 6}, - [3612] = {.lex_state = 13, .external_lex_state = 6}, - [3613] = {.lex_state = 13, .external_lex_state = 6}, - [3614] = {.lex_state = 13, .external_lex_state = 6}, - [3615] = {.lex_state = 13, .external_lex_state = 6}, + [3604] = {.lex_state = 2, .external_lex_state = 4}, + [3605] = {.lex_state = 13, .external_lex_state = 7}, + [3606] = {.lex_state = 11, .external_lex_state = 5}, + [3607] = {.lex_state = 13, .external_lex_state = 7}, + [3608] = {.lex_state = 13, .external_lex_state = 7}, + [3609] = {.lex_state = 13, .external_lex_state = 7}, + [3610] = {.lex_state = 13, .external_lex_state = 7}, + [3611] = {.lex_state = 13, .external_lex_state = 7}, + [3612] = {.lex_state = 2, .external_lex_state = 4}, + [3613] = {.lex_state = 13, .external_lex_state = 7}, + [3614] = {.lex_state = 13, .external_lex_state = 7}, + [3615] = {.lex_state = 13, .external_lex_state = 7}, [3616] = {.lex_state = 13, .external_lex_state = 7}, - [3617] = {.lex_state = 13, .external_lex_state = 6}, - [3618] = {.lex_state = 13, .external_lex_state = 7}, - [3619] = {.lex_state = 11, .external_lex_state = 5}, - [3620] = {.lex_state = 13, .external_lex_state = 6}, - [3621] = {.lex_state = 13, .external_lex_state = 6}, - [3622] = {.lex_state = 318, .external_lex_state = 2}, - [3623] = {.lex_state = 11, .external_lex_state = 5}, - [3624] = {.lex_state = 11, .external_lex_state = 5}, - [3625] = {.lex_state = 13, .external_lex_state = 6}, - [3626] = {.lex_state = 13, .external_lex_state = 6}, - [3627] = {.lex_state = 13, .external_lex_state = 6}, - [3628] = {.lex_state = 13, .external_lex_state = 6}, + [3617] = {.lex_state = 11, .external_lex_state = 5}, + [3618] = {.lex_state = 11, .external_lex_state = 5}, + [3619] = {.lex_state = 318, .external_lex_state = 2}, + [3620] = {.lex_state = 13, .external_lex_state = 7}, + [3621] = {.lex_state = 2, .external_lex_state = 4}, + [3622] = {.lex_state = 13, .external_lex_state = 7}, + [3623] = {.lex_state = 13, .external_lex_state = 7}, + [3624] = {.lex_state = 13, .external_lex_state = 7}, + [3625] = {.lex_state = 11, .external_lex_state = 5}, + [3626] = {.lex_state = 11, .external_lex_state = 5}, + [3627] = {.lex_state = 13, .external_lex_state = 7}, + [3628] = {.lex_state = 318, .external_lex_state = 2}, [3629] = {.lex_state = 13, .external_lex_state = 6}, - [3630] = {.lex_state = 13, .external_lex_state = 6}, - [3631] = {.lex_state = 13, .external_lex_state = 6}, - [3632] = {.lex_state = 13, .external_lex_state = 6}, - [3633] = {.lex_state = 13, .external_lex_state = 6}, - [3634] = {.lex_state = 13, .external_lex_state = 6}, - [3635] = {.lex_state = 13, .external_lex_state = 6}, - [3636] = {.lex_state = 13, .external_lex_state = 6}, - [3637] = {.lex_state = 13, .external_lex_state = 6}, - [3638] = {.lex_state = 13, .external_lex_state = 6}, - [3639] = {.lex_state = 2, .external_lex_state = 4}, - [3640] = {.lex_state = 13, .external_lex_state = 6}, - [3641] = {.lex_state = 13, .external_lex_state = 6}, - [3642] = {.lex_state = 13, .external_lex_state = 7}, + [3630] = {.lex_state = 13, .external_lex_state = 7}, + [3631] = {.lex_state = 13, .external_lex_state = 7}, + [3632] = {.lex_state = 318, .external_lex_state = 2}, + [3633] = {.lex_state = 13, .external_lex_state = 7}, + [3634] = {.lex_state = 2, .external_lex_state = 4}, + [3635] = {.lex_state = 13, .external_lex_state = 7}, + [3636] = {.lex_state = 13, .external_lex_state = 7}, + [3637] = {.lex_state = 318, .external_lex_state = 2}, + [3638] = {.lex_state = 13, .external_lex_state = 7}, + [3639] = {.lex_state = 13, .external_lex_state = 6}, + [3640] = {.lex_state = 2, .external_lex_state = 4}, + [3641] = {.lex_state = 2, .external_lex_state = 4}, + [3642] = {.lex_state = 11, .external_lex_state = 5}, [3643] = {.lex_state = 13, .external_lex_state = 7}, - [3644] = {.lex_state = 13, .external_lex_state = 6}, - [3645] = {.lex_state = 13, .external_lex_state = 6}, + [3644] = {.lex_state = 13, .external_lex_state = 7}, + [3645] = {.lex_state = 2, .external_lex_state = 4}, [3646] = {.lex_state = 2, .external_lex_state = 4}, - [3647] = {.lex_state = 2, .external_lex_state = 4}, - [3648] = {.lex_state = 11, .external_lex_state = 5}, - [3649] = {.lex_state = 2, .external_lex_state = 4}, - [3650] = {.lex_state = 2, .external_lex_state = 4}, + [3647] = {.lex_state = 13, .external_lex_state = 7}, + [3648] = {.lex_state = 318, .external_lex_state = 2}, + [3649] = {.lex_state = 13, .external_lex_state = 7}, + [3650] = {.lex_state = 13, .external_lex_state = 7}, [3651] = {.lex_state = 13, .external_lex_state = 7}, - [3652] = {.lex_state = 13, .external_lex_state = 6}, - [3653] = {.lex_state = 13, .external_lex_state = 6}, - [3654] = {.lex_state = 13, .external_lex_state = 6}, + [3652] = {.lex_state = 2, .external_lex_state = 4}, + [3653] = {.lex_state = 13, .external_lex_state = 7}, + [3654] = {.lex_state = 2, .external_lex_state = 4}, [3655] = {.lex_state = 13, .external_lex_state = 7}, - [3656] = {.lex_state = 13, .external_lex_state = 6}, - [3657] = {.lex_state = 13, .external_lex_state = 6}, - [3658] = {.lex_state = 13, .external_lex_state = 6}, - [3659] = {.lex_state = 13, .external_lex_state = 6}, - [3660] = {.lex_state = 13, .external_lex_state = 6}, + [3656] = {.lex_state = 13, .external_lex_state = 7}, + [3657] = {.lex_state = 11, .external_lex_state = 5}, + [3658] = {.lex_state = 2, .external_lex_state = 3}, + [3659] = {.lex_state = 2, .external_lex_state = 3}, + [3660] = {.lex_state = 13, .external_lex_state = 7}, [3661] = {.lex_state = 13, .external_lex_state = 7}, - [3662] = {.lex_state = 13, .external_lex_state = 7}, + [3662] = {.lex_state = 2, .external_lex_state = 4}, [3663] = {.lex_state = 13, .external_lex_state = 7}, [3664] = {.lex_state = 13, .external_lex_state = 7}, - [3665] = {.lex_state = 13, .external_lex_state = 6}, - [3666] = {.lex_state = 13, .external_lex_state = 6}, - [3667] = {.lex_state = 13, .external_lex_state = 6}, + [3665] = {.lex_state = 2, .external_lex_state = 4}, + [3666] = {.lex_state = 13, .external_lex_state = 7}, + [3667] = {.lex_state = 13, .external_lex_state = 7}, [3668] = {.lex_state = 13, .external_lex_state = 7}, - [3669] = {.lex_state = 13, .external_lex_state = 6}, - [3670] = {.lex_state = 13, .external_lex_state = 6}, - [3671] = {.lex_state = 13, .external_lex_state = 7}, - [3672] = {.lex_state = 13, .external_lex_state = 6}, - [3673] = {.lex_state = 13, .external_lex_state = 6}, + [3669] = {.lex_state = 13, .external_lex_state = 7}, + [3670] = {.lex_state = 13, .external_lex_state = 7}, + [3671] = {.lex_state = 13, .external_lex_state = 6}, + [3672] = {.lex_state = 13, .external_lex_state = 7}, + [3673] = {.lex_state = 13, .external_lex_state = 7}, [3674] = {.lex_state = 13, .external_lex_state = 7}, - [3675] = {.lex_state = 13, .external_lex_state = 7}, - [3676] = {.lex_state = 13, .external_lex_state = 6}, - [3677] = {.lex_state = 13, .external_lex_state = 6}, + [3675] = {.lex_state = 13, .external_lex_state = 6}, + [3676] = {.lex_state = 318, .external_lex_state = 2}, + [3677] = {.lex_state = 2, .external_lex_state = 4}, [3678] = {.lex_state = 13, .external_lex_state = 6}, - [3679] = {.lex_state = 13, .external_lex_state = 6}, - [3680] = {.lex_state = 2, .external_lex_state = 4}, - [3681] = {.lex_state = 13, .external_lex_state = 7}, - [3682] = {.lex_state = 13, .external_lex_state = 6}, + [3679] = {.lex_state = 2, .external_lex_state = 4}, + [3680] = {.lex_state = 11, .external_lex_state = 5}, + [3681] = {.lex_state = 13, .external_lex_state = 6}, + [3682] = {.lex_state = 2, .external_lex_state = 4}, [3683] = {.lex_state = 13, .external_lex_state = 7}, - [3684] = {.lex_state = 13, .external_lex_state = 6}, - [3685] = {.lex_state = 13, .external_lex_state = 6}, - [3686] = {.lex_state = 13, .external_lex_state = 6}, - [3687] = {.lex_state = 13, .external_lex_state = 7}, - [3688] = {.lex_state = 13, .external_lex_state = 6}, - [3689] = {.lex_state = 13, .external_lex_state = 6}, + [3684] = {.lex_state = 2, .external_lex_state = 4}, + [3685] = {.lex_state = 13, .external_lex_state = 7}, + [3686] = {.lex_state = 13, .external_lex_state = 7}, + [3687] = {.lex_state = 13, .external_lex_state = 6}, + [3688] = {.lex_state = 318, .external_lex_state = 2}, + [3689] = {.lex_state = 2, .external_lex_state = 4}, [3690] = {.lex_state = 13, .external_lex_state = 6}, - [3691] = {.lex_state = 13, .external_lex_state = 6}, - [3692] = {.lex_state = 13, .external_lex_state = 6}, - [3693] = {.lex_state = 13, .external_lex_state = 7}, + [3691] = {.lex_state = 13, .external_lex_state = 7}, + [3692] = {.lex_state = 13, .external_lex_state = 7}, + [3693] = {.lex_state = 2, .external_lex_state = 4}, [3694] = {.lex_state = 13, .external_lex_state = 6}, - [3695] = {.lex_state = 13, .external_lex_state = 6}, - [3696] = {.lex_state = 13, .external_lex_state = 7}, + [3695] = {.lex_state = 2, .external_lex_state = 4}, + [3696] = {.lex_state = 2, .external_lex_state = 4}, [3697] = {.lex_state = 2, .external_lex_state = 4}, [3698] = {.lex_state = 2, .external_lex_state = 4}, [3699] = {.lex_state = 2, .external_lex_state = 4}, - [3700] = {.lex_state = 2, .external_lex_state = 4}, + [3700] = {.lex_state = 13, .external_lex_state = 7}, [3701] = {.lex_state = 13, .external_lex_state = 7}, - [3702] = {.lex_state = 2, .external_lex_state = 4}, + [3702] = {.lex_state = 13, .external_lex_state = 7}, [3703] = {.lex_state = 2, .external_lex_state = 4}, - [3704] = {.lex_state = 2, .external_lex_state = 4}, + [3704] = {.lex_state = 13, .external_lex_state = 7}, [3705] = {.lex_state = 2, .external_lex_state = 4}, [3706] = {.lex_state = 2, .external_lex_state = 4}, - [3707] = {.lex_state = 2, .external_lex_state = 4}, + [3707] = {.lex_state = 13, .external_lex_state = 6}, [3708] = {.lex_state = 2, .external_lex_state = 4}, - [3709] = {.lex_state = 2, .external_lex_state = 4}, - [3710] = {.lex_state = 13, .external_lex_state = 7}, - [3711] = {.lex_state = 13, .external_lex_state = 7}, + [3709] = {.lex_state = 13, .external_lex_state = 7}, + [3710] = {.lex_state = 13, .external_lex_state = 6}, + [3711] = {.lex_state = 14, .external_lex_state = 7}, [3712] = {.lex_state = 13, .external_lex_state = 7}, - [3713] = {.lex_state = 13, .external_lex_state = 7}, + [3713] = {.lex_state = 13, .external_lex_state = 6}, [3714] = {.lex_state = 13, .external_lex_state = 7}, [3715] = {.lex_state = 13, .external_lex_state = 7}, - [3716] = {.lex_state = 13, .external_lex_state = 7}, - [3717] = {.lex_state = 2, .external_lex_state = 3}, - [3718] = {.lex_state = 2, .external_lex_state = 3}, - [3719] = {.lex_state = 318, .external_lex_state = 2}, - [3720] = {.lex_state = 13, .external_lex_state = 7}, - [3721] = {.lex_state = 11, .external_lex_state = 5}, + [3716] = {.lex_state = 13, .external_lex_state = 6}, + [3717] = {.lex_state = 13, .external_lex_state = 7}, + [3718] = {.lex_state = 13, .external_lex_state = 7}, + [3719] = {.lex_state = 13, .external_lex_state = 7}, + [3720] = {.lex_state = 2, .external_lex_state = 4}, + [3721] = {.lex_state = 13, .external_lex_state = 7}, [3722] = {.lex_state = 13, .external_lex_state = 7}, [3723] = {.lex_state = 13, .external_lex_state = 7}, - [3724] = {.lex_state = 13, .external_lex_state = 7}, - [3725] = {.lex_state = 13, .external_lex_state = 6}, - [3726] = {.lex_state = 13, .external_lex_state = 7}, - [3727] = {.lex_state = 13, .external_lex_state = 7}, - [3728] = {.lex_state = 318, .external_lex_state = 2}, - [3729] = {.lex_state = 318, .external_lex_state = 2}, + [3724] = {.lex_state = 318, .external_lex_state = 2}, + [3725] = {.lex_state = 11, .external_lex_state = 5}, + [3726] = {.lex_state = 13, .external_lex_state = 6}, + [3727] = {.lex_state = 13, .external_lex_state = 6}, + [3728] = {.lex_state = 13, .external_lex_state = 6}, + [3729] = {.lex_state = 13, .external_lex_state = 6}, [3730] = {.lex_state = 13, .external_lex_state = 7}, [3731] = {.lex_state = 13, .external_lex_state = 7}, - [3732] = {.lex_state = 2, .external_lex_state = 4}, + [3732] = {.lex_state = 13, .external_lex_state = 6}, [3733] = {.lex_state = 13, .external_lex_state = 7}, - [3734] = {.lex_state = 13, .external_lex_state = 7}, - [3735] = {.lex_state = 13, .external_lex_state = 7}, - [3736] = {.lex_state = 13, .external_lex_state = 7}, + [3734] = {.lex_state = 13, .external_lex_state = 6}, + [3735] = {.lex_state = 2, .external_lex_state = 4}, + [3736] = {.lex_state = 2, .external_lex_state = 4}, [3737] = {.lex_state = 13, .external_lex_state = 7}, [3738] = {.lex_state = 13, .external_lex_state = 6}, - [3739] = {.lex_state = 13, .external_lex_state = 6}, + [3739] = {.lex_state = 13, .external_lex_state = 7}, [3740] = {.lex_state = 13, .external_lex_state = 7}, [3741] = {.lex_state = 13, .external_lex_state = 7}, [3742] = {.lex_state = 318, .external_lex_state = 2}, - [3743] = {.lex_state = 13, .external_lex_state = 7}, - [3744] = {.lex_state = 318, .external_lex_state = 2}, - [3745] = {.lex_state = 13, .external_lex_state = 6}, + [3743] = {.lex_state = 13, .external_lex_state = 6}, + [3744] = {.lex_state = 13, .external_lex_state = 6}, + [3745] = {.lex_state = 13, .external_lex_state = 7}, [3746] = {.lex_state = 13, .external_lex_state = 7}, - [3747] = {.lex_state = 318, .external_lex_state = 2}, - [3748] = {.lex_state = 2, .external_lex_state = 4}, - [3749] = {.lex_state = 2, .external_lex_state = 4}, + [3747] = {.lex_state = 13, .external_lex_state = 7}, + [3748] = {.lex_state = 13, .external_lex_state = 6}, + [3749] = {.lex_state = 13, .external_lex_state = 6}, [3750] = {.lex_state = 13, .external_lex_state = 6}, - [3751] = {.lex_state = 13, .external_lex_state = 7}, - [3752] = {.lex_state = 2, .external_lex_state = 4}, - [3753] = {.lex_state = 11, .external_lex_state = 5}, - [3754] = {.lex_state = 2, .external_lex_state = 4}, - [3755] = {.lex_state = 13, .external_lex_state = 7}, + [3751] = {.lex_state = 13, .external_lex_state = 6}, + [3752] = {.lex_state = 13, .external_lex_state = 6}, + [3753] = {.lex_state = 13, .external_lex_state = 7}, + [3754] = {.lex_state = 13, .external_lex_state = 7}, + [3755] = {.lex_state = 14, .external_lex_state = 7}, [3756] = {.lex_state = 13, .external_lex_state = 7}, - [3757] = {.lex_state = 13, .external_lex_state = 6}, - [3758] = {.lex_state = 13, .external_lex_state = 7}, - [3759] = {.lex_state = 13, .external_lex_state = 7}, - [3760] = {.lex_state = 2, .external_lex_state = 4}, + [3757] = {.lex_state = 13, .external_lex_state = 7}, + [3758] = {.lex_state = 2, .external_lex_state = 4}, + [3759] = {.lex_state = 13, .external_lex_state = 6}, + [3760] = {.lex_state = 13, .external_lex_state = 7}, [3761] = {.lex_state = 13, .external_lex_state = 7}, - [3762] = {.lex_state = 13, .external_lex_state = 7}, + [3762] = {.lex_state = 13, .external_lex_state = 6}, [3763] = {.lex_state = 13, .external_lex_state = 7}, - [3764] = {.lex_state = 13, .external_lex_state = 7}, - [3765] = {.lex_state = 13, .external_lex_state = 7}, + [3764] = {.lex_state = 2, .external_lex_state = 4}, + [3765] = {.lex_state = 2, .external_lex_state = 4}, [3766] = {.lex_state = 13, .external_lex_state = 7}, - [3767] = {.lex_state = 13, .external_lex_state = 7}, - [3768] = {.lex_state = 13, .external_lex_state = 7}, - [3769] = {.lex_state = 11, .external_lex_state = 5}, - [3770] = {.lex_state = 2, .external_lex_state = 4}, - [3771] = {.lex_state = 13, .external_lex_state = 7}, - [3772] = {.lex_state = 2, .external_lex_state = 4}, - [3773] = {.lex_state = 13, .external_lex_state = 7}, - [3774] = {.lex_state = 2, .external_lex_state = 4}, + [3767] = {.lex_state = 2, .external_lex_state = 4}, + [3768] = {.lex_state = 14, .external_lex_state = 7}, + [3769] = {.lex_state = 13, .external_lex_state = 7}, + [3770] = {.lex_state = 13, .external_lex_state = 6}, + [3771] = {.lex_state = 14, .external_lex_state = 7}, + [3772] = {.lex_state = 13, .external_lex_state = 7}, + [3773] = {.lex_state = 14, .external_lex_state = 7}, + [3774] = {.lex_state = 14, .external_lex_state = 7}, [3775] = {.lex_state = 13, .external_lex_state = 7}, - [3776] = {.lex_state = 2, .external_lex_state = 4}, - [3777] = {.lex_state = 13, .external_lex_state = 7}, - [3778] = {.lex_state = 13, .external_lex_state = 7}, - [3779] = {.lex_state = 13, .external_lex_state = 7}, - [3780] = {.lex_state = 13, .external_lex_state = 7}, - [3781] = {.lex_state = 11, .external_lex_state = 5}, + [3776] = {.lex_state = 14, .external_lex_state = 7}, + [3777] = {.lex_state = 14, .external_lex_state = 7}, + [3778] = {.lex_state = 318, .external_lex_state = 2}, + [3779] = {.lex_state = 14, .external_lex_state = 7}, + [3780] = {.lex_state = 14, .external_lex_state = 7}, + [3781] = {.lex_state = 13, .external_lex_state = 7}, [3782] = {.lex_state = 13, .external_lex_state = 7}, [3783] = {.lex_state = 2, .external_lex_state = 4}, - [3784] = {.lex_state = 2, .external_lex_state = 4}, - [3785] = {.lex_state = 13, .external_lex_state = 7}, - [3786] = {.lex_state = 13, .external_lex_state = 6}, - [3787] = {.lex_state = 13, .external_lex_state = 7}, - [3788] = {.lex_state = 13, .external_lex_state = 6}, - [3789] = {.lex_state = 13, .external_lex_state = 7}, - [3790] = {.lex_state = 11, .external_lex_state = 5}, - [3791] = {.lex_state = 11, .external_lex_state = 5}, - [3792] = {.lex_state = 2, .external_lex_state = 4}, + [3784] = {.lex_state = 14, .external_lex_state = 7}, + [3785] = {.lex_state = 14, .external_lex_state = 7}, + [3786] = {.lex_state = 13, .external_lex_state = 7}, + [3787] = {.lex_state = 14, .external_lex_state = 7}, + [3788] = {.lex_state = 14, .external_lex_state = 7}, + [3789] = {.lex_state = 14, .external_lex_state = 7}, + [3790] = {.lex_state = 318, .external_lex_state = 2}, + [3791] = {.lex_state = 13, .external_lex_state = 7}, + [3792] = {.lex_state = 14, .external_lex_state = 7}, [3793] = {.lex_state = 13, .external_lex_state = 7}, [3794] = {.lex_state = 13, .external_lex_state = 7}, [3795] = {.lex_state = 13, .external_lex_state = 7}, [3796] = {.lex_state = 2, .external_lex_state = 4}, - [3797] = {.lex_state = 13, .external_lex_state = 7}, - [3798] = {.lex_state = 13, .external_lex_state = 7}, - [3799] = {.lex_state = 2, .external_lex_state = 4}, - [3800] = {.lex_state = 13, .external_lex_state = 6}, - [3801] = {.lex_state = 2, .external_lex_state = 4}, - [3802] = {.lex_state = 2, .external_lex_state = 4}, - [3803] = {.lex_state = 13, .external_lex_state = 6}, - [3804] = {.lex_state = 318, .external_lex_state = 2}, - [3805] = {.lex_state = 11, .external_lex_state = 5}, - [3806] = {.lex_state = 13, .external_lex_state = 7}, - [3807] = {.lex_state = 11, .external_lex_state = 5}, - [3808] = {.lex_state = 13, .external_lex_state = 7}, - [3809] = {.lex_state = 13, .external_lex_state = 7}, - [3810] = {.lex_state = 13, .external_lex_state = 6}, - [3811] = {.lex_state = 13, .external_lex_state = 7}, - [3812] = {.lex_state = 318, .external_lex_state = 2}, - [3813] = {.lex_state = 318, .external_lex_state = 2}, - [3814] = {.lex_state = 13, .external_lex_state = 6}, - [3815] = {.lex_state = 13, .external_lex_state = 6}, - [3816] = {.lex_state = 13, .external_lex_state = 6}, - [3817] = {.lex_state = 13, .external_lex_state = 6}, - [3818] = {.lex_state = 14, .external_lex_state = 7}, + [3797] = {.lex_state = 2, .external_lex_state = 4}, + [3798] = {.lex_state = 2, .external_lex_state = 4}, + [3799] = {.lex_state = 13, .external_lex_state = 7}, + [3800] = {.lex_state = 13, .external_lex_state = 7}, + [3801] = {.lex_state = 13, .external_lex_state = 7}, + [3802] = {.lex_state = 13, .external_lex_state = 7}, + [3803] = {.lex_state = 13, .external_lex_state = 7}, + [3804] = {.lex_state = 11, .external_lex_state = 5}, + [3805] = {.lex_state = 13, .external_lex_state = 7}, + [3806] = {.lex_state = 318, .external_lex_state = 2}, + [3807] = {.lex_state = 13, .external_lex_state = 7}, + [3808] = {.lex_state = 2, .external_lex_state = 4}, + [3809] = {.lex_state = 14, .external_lex_state = 7}, + [3810] = {.lex_state = 13, .external_lex_state = 7}, + [3811] = {.lex_state = 14, .external_lex_state = 7}, + [3812] = {.lex_state = 2, .external_lex_state = 4}, + [3813] = {.lex_state = 13, .external_lex_state = 7}, + [3814] = {.lex_state = 2, .external_lex_state = 4}, + [3815] = {.lex_state = 13, .external_lex_state = 7}, + [3816] = {.lex_state = 13, .external_lex_state = 7}, + [3817] = {.lex_state = 13, .external_lex_state = 7}, + [3818] = {.lex_state = 15, .external_lex_state = 7}, [3819] = {.lex_state = 13, .external_lex_state = 7}, [3820] = {.lex_state = 13, .external_lex_state = 7}, - [3821] = {.lex_state = 13, .external_lex_state = 6}, - [3822] = {.lex_state = 2, .external_lex_state = 4}, + [3821] = {.lex_state = 13, .external_lex_state = 7}, + [3822] = {.lex_state = 13, .external_lex_state = 7}, [3823] = {.lex_state = 13, .external_lex_state = 7}, - [3824] = {.lex_state = 2, .external_lex_state = 4}, - [3825] = {.lex_state = 2, .external_lex_state = 4}, + [3824] = {.lex_state = 318, .external_lex_state = 2}, + [3825] = {.lex_state = 13, .external_lex_state = 7}, [3826] = {.lex_state = 13, .external_lex_state = 7}, - [3827] = {.lex_state = 2, .external_lex_state = 4}, - [3828] = {.lex_state = 2, .external_lex_state = 4}, + [3827] = {.lex_state = 13, .external_lex_state = 7}, + [3828] = {.lex_state = 13, .external_lex_state = 7}, [3829] = {.lex_state = 13, .external_lex_state = 7}, [3830] = {.lex_state = 2, .external_lex_state = 4}, - [3831] = {.lex_state = 13, .external_lex_state = 6}, + [3831] = {.lex_state = 13, .external_lex_state = 7}, [3832] = {.lex_state = 13, .external_lex_state = 7}, [3833] = {.lex_state = 13, .external_lex_state = 7}, - [3834] = {.lex_state = 11, .external_lex_state = 5}, - [3835] = {.lex_state = 13, .external_lex_state = 7}, + [3834] = {.lex_state = 13, .external_lex_state = 7}, + [3835] = {.lex_state = 2, .external_lex_state = 4}, [3836] = {.lex_state = 13, .external_lex_state = 7}, [3837] = {.lex_state = 13, .external_lex_state = 7}, - [3838] = {.lex_state = 13, .external_lex_state = 7}, - [3839] = {.lex_state = 11, .external_lex_state = 5}, + [3838] = {.lex_state = 318, .external_lex_state = 2}, + [3839] = {.lex_state = 13, .external_lex_state = 7}, [3840] = {.lex_state = 13, .external_lex_state = 7}, [3841] = {.lex_state = 13, .external_lex_state = 7}, [3842] = {.lex_state = 13, .external_lex_state = 7}, - [3843] = {.lex_state = 13, .external_lex_state = 6}, + [3843] = {.lex_state = 13, .external_lex_state = 7}, [3844] = {.lex_state = 13, .external_lex_state = 7}, - [3845] = {.lex_state = 14, .external_lex_state = 7}, + [3845] = {.lex_state = 13, .external_lex_state = 7}, [3846] = {.lex_state = 13, .external_lex_state = 7}, [3847] = {.lex_state = 13, .external_lex_state = 7}, - [3848] = {.lex_state = 14, .external_lex_state = 7}, - [3849] = {.lex_state = 14, .external_lex_state = 7}, - [3850] = {.lex_state = 14, .external_lex_state = 7}, - [3851] = {.lex_state = 14, .external_lex_state = 7}, - [3852] = {.lex_state = 14, .external_lex_state = 7}, - [3853] = {.lex_state = 14, .external_lex_state = 7}, - [3854] = {.lex_state = 14, .external_lex_state = 7}, - [3855] = {.lex_state = 14, .external_lex_state = 7}, - [3856] = {.lex_state = 14, .external_lex_state = 7}, - [3857] = {.lex_state = 13, .external_lex_state = 7}, + [3848] = {.lex_state = 13, .external_lex_state = 7}, + [3849] = {.lex_state = 13, .external_lex_state = 7}, + [3850] = {.lex_state = 13, .external_lex_state = 7}, + [3851] = {.lex_state = 13, .external_lex_state = 7}, + [3852] = {.lex_state = 13, .external_lex_state = 6}, + [3853] = {.lex_state = 13, .external_lex_state = 7}, + [3854] = {.lex_state = 13, .external_lex_state = 7}, + [3855] = {.lex_state = 2, .external_lex_state = 4}, + [3856] = {.lex_state = 13, .external_lex_state = 7}, + [3857] = {.lex_state = 2, .external_lex_state = 4}, [3858] = {.lex_state = 13, .external_lex_state = 7}, - [3859] = {.lex_state = 14, .external_lex_state = 7}, - [3860] = {.lex_state = 14, .external_lex_state = 7}, + [3859] = {.lex_state = 13, .external_lex_state = 6}, + [3860] = {.lex_state = 13, .external_lex_state = 7}, [3861] = {.lex_state = 13, .external_lex_state = 7}, [3862] = {.lex_state = 13, .external_lex_state = 7}, - [3863] = {.lex_state = 14, .external_lex_state = 7}, - [3864] = {.lex_state = 13, .external_lex_state = 7}, - [3865] = {.lex_state = 14, .external_lex_state = 7}, - [3866] = {.lex_state = 14, .external_lex_state = 7}, + [3863] = {.lex_state = 13, .external_lex_state = 7}, + [3864] = {.lex_state = 2, .external_lex_state = 4}, + [3865] = {.lex_state = 13, .external_lex_state = 7}, + [3866] = {.lex_state = 13, .external_lex_state = 7}, [3867] = {.lex_state = 13, .external_lex_state = 7}, - [3868] = {.lex_state = 13, .external_lex_state = 7}, - [3869] = {.lex_state = 13, .external_lex_state = 7}, + [3868] = {.lex_state = 2, .external_lex_state = 4}, + [3869] = {.lex_state = 2, .external_lex_state = 4}, [3870] = {.lex_state = 13, .external_lex_state = 7}, [3871] = {.lex_state = 318, .external_lex_state = 2}, - [3872] = {.lex_state = 13, .external_lex_state = 7}, + [3872] = {.lex_state = 14, .external_lex_state = 6}, [3873] = {.lex_state = 13, .external_lex_state = 7}, [3874] = {.lex_state = 13, .external_lex_state = 7}, [3875] = {.lex_state = 13, .external_lex_state = 7}, [3876] = {.lex_state = 13, .external_lex_state = 7}, - [3877] = {.lex_state = 14, .external_lex_state = 7}, + [3877] = {.lex_state = 318, .external_lex_state = 2}, [3878] = {.lex_state = 13, .external_lex_state = 7}, - [3879] = {.lex_state = 13, .external_lex_state = 7}, + [3879] = {.lex_state = 14, .external_lex_state = 6}, [3880] = {.lex_state = 13, .external_lex_state = 7}, - [3881] = {.lex_state = 318, .external_lex_state = 2}, + [3881] = {.lex_state = 13, .external_lex_state = 7}, [3882] = {.lex_state = 13, .external_lex_state = 7}, - [3883] = {.lex_state = 13, .external_lex_state = 7}, + [3883] = {.lex_state = 318, .external_lex_state = 2}, [3884] = {.lex_state = 13, .external_lex_state = 7}, - [3885] = {.lex_state = 14, .external_lex_state = 7}, + [3885] = {.lex_state = 13, .external_lex_state = 7}, [3886] = {.lex_state = 13, .external_lex_state = 7}, [3887] = {.lex_state = 13, .external_lex_state = 7}, [3888] = {.lex_state = 13, .external_lex_state = 7}, @@ -27724,94 +27375,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3894] = {.lex_state = 13, .external_lex_state = 7}, [3895] = {.lex_state = 13, .external_lex_state = 7}, [3896] = {.lex_state = 13, .external_lex_state = 7}, - [3897] = {.lex_state = 13, .external_lex_state = 6}, + [3897] = {.lex_state = 13, .external_lex_state = 7}, [3898] = {.lex_state = 13, .external_lex_state = 7}, - [3899] = {.lex_state = 13, .external_lex_state = 6}, + [3899] = {.lex_state = 13, .external_lex_state = 7}, [3900] = {.lex_state = 13, .external_lex_state = 7}, [3901] = {.lex_state = 13, .external_lex_state = 7}, - [3902] = {.lex_state = 13, .external_lex_state = 6}, - [3903] = {.lex_state = 13, .external_lex_state = 6}, - [3904] = {.lex_state = 13, .external_lex_state = 6}, + [3902] = {.lex_state = 13, .external_lex_state = 7}, + [3903] = {.lex_state = 13, .external_lex_state = 7}, + [3904] = {.lex_state = 13, .external_lex_state = 7}, [3905] = {.lex_state = 13, .external_lex_state = 7}, [3906] = {.lex_state = 13, .external_lex_state = 7}, - [3907] = {.lex_state = 13, .external_lex_state = 6}, - [3908] = {.lex_state = 13, .external_lex_state = 7}, - [3909] = {.lex_state = 13, .external_lex_state = 6}, + [3907] = {.lex_state = 13, .external_lex_state = 7}, + [3908] = {.lex_state = 2, .external_lex_state = 4}, + [3909] = {.lex_state = 13, .external_lex_state = 7}, [3910] = {.lex_state = 13, .external_lex_state = 7}, - [3911] = {.lex_state = 13, .external_lex_state = 7}, - [3912] = {.lex_state = 2, .external_lex_state = 4}, + [3911] = {.lex_state = 13, .external_lex_state = 6}, + [3912] = {.lex_state = 13, .external_lex_state = 7}, [3913] = {.lex_state = 13, .external_lex_state = 7}, - [3914] = {.lex_state = 2, .external_lex_state = 4}, - [3915] = {.lex_state = 2, .external_lex_state = 4}, - [3916] = {.lex_state = 13, .external_lex_state = 6}, - [3917] = {.lex_state = 13, .external_lex_state = 6}, - [3918] = {.lex_state = 2, .external_lex_state = 4}, - [3919] = {.lex_state = 2, .external_lex_state = 4}, - [3920] = {.lex_state = 13, .external_lex_state = 7}, - [3921] = {.lex_state = 13, .external_lex_state = 6}, - [3922] = {.lex_state = 13, .external_lex_state = 7}, - [3923] = {.lex_state = 15, .external_lex_state = 7}, - [3924] = {.lex_state = 318, .external_lex_state = 2}, - [3925] = {.lex_state = 13, .external_lex_state = 7}, - [3926] = {.lex_state = 2, .external_lex_state = 4}, - [3927] = {.lex_state = 13, .external_lex_state = 7}, - [3928] = {.lex_state = 13, .external_lex_state = 6}, - [3929] = {.lex_state = 2, .external_lex_state = 4}, - [3930] = {.lex_state = 13, .external_lex_state = 6}, - [3931] = {.lex_state = 2, .external_lex_state = 4}, - [3932] = {.lex_state = 2, .external_lex_state = 4}, - [3933] = {.lex_state = 2, .external_lex_state = 4}, - [3934] = {.lex_state = 13, .external_lex_state = 7}, - [3935] = {.lex_state = 2, .external_lex_state = 4}, - [3936] = {.lex_state = 13, .external_lex_state = 7}, + [3914] = {.lex_state = 13, .external_lex_state = 7}, + [3915] = {.lex_state = 13, .external_lex_state = 7}, + [3916] = {.lex_state = 13, .external_lex_state = 7}, + [3917] = {.lex_state = 2, .external_lex_state = 4}, + [3918] = {.lex_state = 13, .external_lex_state = 6}, + [3919] = {.lex_state = 14, .external_lex_state = 6}, + [3920] = {.lex_state = 14, .external_lex_state = 6}, + [3921] = {.lex_state = 14, .external_lex_state = 6}, + [3922] = {.lex_state = 14, .external_lex_state = 6}, + [3923] = {.lex_state = 13, .external_lex_state = 7}, + [3924] = {.lex_state = 2, .external_lex_state = 4}, + [3925] = {.lex_state = 14, .external_lex_state = 6}, + [3926] = {.lex_state = 14, .external_lex_state = 6}, + [3927] = {.lex_state = 14, .external_lex_state = 6}, + [3928] = {.lex_state = 14, .external_lex_state = 6}, + [3929] = {.lex_state = 14, .external_lex_state = 6}, + [3930] = {.lex_state = 14, .external_lex_state = 6}, + [3931] = {.lex_state = 14, .external_lex_state = 6}, + [3932] = {.lex_state = 13, .external_lex_state = 7}, + [3933] = {.lex_state = 13, .external_lex_state = 7}, + [3934] = {.lex_state = 14, .external_lex_state = 6}, + [3935] = {.lex_state = 13, .external_lex_state = 7}, + [3936] = {.lex_state = 14, .external_lex_state = 6}, [3937] = {.lex_state = 13, .external_lex_state = 7}, [3938] = {.lex_state = 13, .external_lex_state = 7}, - [3939] = {.lex_state = 13, .external_lex_state = 7}, - [3940] = {.lex_state = 13, .external_lex_state = 7}, - [3941] = {.lex_state = 13, .external_lex_state = 7}, + [3939] = {.lex_state = 2, .external_lex_state = 4}, + [3940] = {.lex_state = 14, .external_lex_state = 6}, + [3941] = {.lex_state = 14, .external_lex_state = 6}, [3942] = {.lex_state = 13, .external_lex_state = 7}, [3943] = {.lex_state = 13, .external_lex_state = 7}, [3944] = {.lex_state = 13, .external_lex_state = 7}, [3945] = {.lex_state = 13, .external_lex_state = 7}, - [3946] = {.lex_state = 2, .external_lex_state = 4}, - [3947] = {.lex_state = 318, .external_lex_state = 2}, + [3946] = {.lex_state = 13, .external_lex_state = 7}, + [3947] = {.lex_state = 13, .external_lex_state = 7}, [3948] = {.lex_state = 13, .external_lex_state = 7}, [3949] = {.lex_state = 13, .external_lex_state = 7}, [3950] = {.lex_state = 13, .external_lex_state = 7}, - [3951] = {.lex_state = 14, .external_lex_state = 6}, + [3951] = {.lex_state = 2, .external_lex_state = 4}, [3952] = {.lex_state = 13, .external_lex_state = 7}, [3953] = {.lex_state = 13, .external_lex_state = 7}, - [3954] = {.lex_state = 13, .external_lex_state = 7}, + [3954] = {.lex_state = 13, .external_lex_state = 6}, [3955] = {.lex_state = 13, .external_lex_state = 7}, [3956] = {.lex_state = 13, .external_lex_state = 7}, - [3957] = {.lex_state = 13, .external_lex_state = 7}, + [3957] = {.lex_state = 318, .external_lex_state = 2}, [3958] = {.lex_state = 13, .external_lex_state = 7}, - [3959] = {.lex_state = 2, .external_lex_state = 4}, + [3959] = {.lex_state = 13, .external_lex_state = 7}, [3960] = {.lex_state = 13, .external_lex_state = 7}, - [3961] = {.lex_state = 2, .external_lex_state = 4}, + [3961] = {.lex_state = 13, .external_lex_state = 7}, [3962] = {.lex_state = 13, .external_lex_state = 7}, [3963] = {.lex_state = 13, .external_lex_state = 7}, [3964] = {.lex_state = 13, .external_lex_state = 7}, - [3965] = {.lex_state = 13, .external_lex_state = 7}, + [3965] = {.lex_state = 2, .external_lex_state = 4}, [3966] = {.lex_state = 13, .external_lex_state = 7}, [3967] = {.lex_state = 13, .external_lex_state = 7}, [3968] = {.lex_state = 13, .external_lex_state = 7}, [3969] = {.lex_state = 13, .external_lex_state = 7}, [3970] = {.lex_state = 13, .external_lex_state = 7}, - [3971] = {.lex_state = 14, .external_lex_state = 6}, - [3972] = {.lex_state = 14, .external_lex_state = 6}, - [3973] = {.lex_state = 14, .external_lex_state = 6}, - [3974] = {.lex_state = 13, .external_lex_state = 7}, - [3975] = {.lex_state = 13, .external_lex_state = 7}, - [3976] = {.lex_state = 14, .external_lex_state = 6}, - [3977] = {.lex_state = 14, .external_lex_state = 6}, + [3971] = {.lex_state = 13, .external_lex_state = 7}, + [3972] = {.lex_state = 13, .external_lex_state = 7}, + [3973] = {.lex_state = 13, .external_lex_state = 6}, + [3974] = {.lex_state = 2, .external_lex_state = 4}, + [3975] = {.lex_state = 318, .external_lex_state = 2}, + [3976] = {.lex_state = 318, .external_lex_state = 2}, + [3977] = {.lex_state = 13, .external_lex_state = 7}, [3978] = {.lex_state = 13, .external_lex_state = 7}, - [3979] = {.lex_state = 13, .external_lex_state = 7}, - [3980] = {.lex_state = 14, .external_lex_state = 6}, - [3981] = {.lex_state = 14, .external_lex_state = 6}, - [3982] = {.lex_state = 14, .external_lex_state = 6}, - [3983] = {.lex_state = 14, .external_lex_state = 6}, - [3984] = {.lex_state = 13, .external_lex_state = 7}, + [3979] = {.lex_state = 318, .external_lex_state = 2}, + [3980] = {.lex_state = 13, .external_lex_state = 6}, + [3981] = {.lex_state = 13, .external_lex_state = 7}, + [3982] = {.lex_state = 13, .external_lex_state = 7}, + [3983] = {.lex_state = 13, .external_lex_state = 7}, + [3984] = {.lex_state = 13, .external_lex_state = 6}, [3985] = {.lex_state = 13, .external_lex_state = 7}, [3986] = {.lex_state = 13, .external_lex_state = 7}, [3987] = {.lex_state = 13, .external_lex_state = 7}, @@ -27819,527 +27470,527 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3989] = {.lex_state = 13, .external_lex_state = 7}, [3990] = {.lex_state = 13, .external_lex_state = 7}, [3991] = {.lex_state = 13, .external_lex_state = 7}, - [3992] = {.lex_state = 13, .external_lex_state = 6}, - [3993] = {.lex_state = 14, .external_lex_state = 6}, + [3992] = {.lex_state = 13, .external_lex_state = 7}, + [3993] = {.lex_state = 13, .external_lex_state = 7}, [3994] = {.lex_state = 13, .external_lex_state = 7}, [3995] = {.lex_state = 13, .external_lex_state = 7}, [3996] = {.lex_state = 13, .external_lex_state = 7}, [3997] = {.lex_state = 13, .external_lex_state = 7}, - [3998] = {.lex_state = 13, .external_lex_state = 7}, + [3998] = {.lex_state = 318, .external_lex_state = 2}, [3999] = {.lex_state = 13, .external_lex_state = 7}, [4000] = {.lex_state = 13, .external_lex_state = 7}, [4001] = {.lex_state = 13, .external_lex_state = 7}, [4002] = {.lex_state = 13, .external_lex_state = 7}, [4003] = {.lex_state = 13, .external_lex_state = 7}, - [4004] = {.lex_state = 13, .external_lex_state = 7}, + [4004] = {.lex_state = 13, .external_lex_state = 6}, [4005] = {.lex_state = 13, .external_lex_state = 7}, [4006] = {.lex_state = 13, .external_lex_state = 7}, [4007] = {.lex_state = 13, .external_lex_state = 7}, - [4008] = {.lex_state = 13, .external_lex_state = 7}, - [4009] = {.lex_state = 13, .external_lex_state = 7}, + [4008] = {.lex_state = 13, .external_lex_state = 6}, + [4009] = {.lex_state = 13, .external_lex_state = 6}, [4010] = {.lex_state = 13, .external_lex_state = 7}, - [4011] = {.lex_state = 13, .external_lex_state = 7}, - [4012] = {.lex_state = 2, .external_lex_state = 4}, - [4013] = {.lex_state = 13, .external_lex_state = 7}, + [4011] = {.lex_state = 13, .external_lex_state = 6}, + [4012] = {.lex_state = 13, .external_lex_state = 6}, + [4013] = {.lex_state = 13, .external_lex_state = 6}, [4014] = {.lex_state = 13, .external_lex_state = 7}, - [4015] = {.lex_state = 13, .external_lex_state = 7}, - [4016] = {.lex_state = 13, .external_lex_state = 7}, + [4015] = {.lex_state = 13, .external_lex_state = 6}, + [4016] = {.lex_state = 13, .external_lex_state = 6}, [4017] = {.lex_state = 13, .external_lex_state = 7}, [4018] = {.lex_state = 13, .external_lex_state = 7}, - [4019] = {.lex_state = 2, .external_lex_state = 4}, - [4020] = {.lex_state = 13, .external_lex_state = 7}, - [4021] = {.lex_state = 318, .external_lex_state = 2}, + [4019] = {.lex_state = 13, .external_lex_state = 6}, + [4020] = {.lex_state = 2, .external_lex_state = 4}, + [4021] = {.lex_state = 13, .external_lex_state = 7}, [4022] = {.lex_state = 13, .external_lex_state = 7}, - [4023] = {.lex_state = 2, .external_lex_state = 4}, - [4024] = {.lex_state = 2, .external_lex_state = 4}, - [4025] = {.lex_state = 2, .external_lex_state = 4}, - [4026] = {.lex_state = 2, .external_lex_state = 4}, - [4027] = {.lex_state = 2, .external_lex_state = 4}, - [4028] = {.lex_state = 318, .external_lex_state = 2}, - [4029] = {.lex_state = 318, .external_lex_state = 2}, - [4030] = {.lex_state = 2, .external_lex_state = 4}, - [4031] = {.lex_state = 318, .external_lex_state = 2}, - [4032] = {.lex_state = 13, .external_lex_state = 6}, - [4033] = {.lex_state = 13, .external_lex_state = 6}, - [4034] = {.lex_state = 13, .external_lex_state = 6}, - [4035] = {.lex_state = 13, .external_lex_state = 6}, + [4023] = {.lex_state = 13, .external_lex_state = 7}, + [4024] = {.lex_state = 13, .external_lex_state = 7}, + [4025] = {.lex_state = 13, .external_lex_state = 7}, + [4026] = {.lex_state = 13, .external_lex_state = 7}, + [4027] = {.lex_state = 13, .external_lex_state = 7}, + [4028] = {.lex_state = 13, .external_lex_state = 7}, + [4029] = {.lex_state = 13, .external_lex_state = 7}, + [4030] = {.lex_state = 13, .external_lex_state = 7}, + [4031] = {.lex_state = 13, .external_lex_state = 7}, + [4032] = {.lex_state = 13, .external_lex_state = 7}, + [4033] = {.lex_state = 13, .external_lex_state = 7}, + [4034] = {.lex_state = 13, .external_lex_state = 7}, + [4035] = {.lex_state = 13, .external_lex_state = 7}, [4036] = {.lex_state = 13, .external_lex_state = 6}, [4037] = {.lex_state = 13, .external_lex_state = 7}, - [4038] = {.lex_state = 13, .external_lex_state = 6}, - [4039] = {.lex_state = 13, .external_lex_state = 6}, - [4040] = {.lex_state = 13, .external_lex_state = 6}, - [4041] = {.lex_state = 318, .external_lex_state = 2}, - [4042] = {.lex_state = 13, .external_lex_state = 6}, - [4043] = {.lex_state = 13, .external_lex_state = 6}, + [4038] = {.lex_state = 13, .external_lex_state = 7}, + [4039] = {.lex_state = 13, .external_lex_state = 7}, + [4040] = {.lex_state = 13, .external_lex_state = 7}, + [4041] = {.lex_state = 13, .external_lex_state = 7}, + [4042] = {.lex_state = 13, .external_lex_state = 7}, + [4043] = {.lex_state = 13, .external_lex_state = 7}, [4044] = {.lex_state = 13, .external_lex_state = 7}, - [4045] = {.lex_state = 13, .external_lex_state = 7}, - [4046] = {.lex_state = 13, .external_lex_state = 7}, - [4047] = {.lex_state = 13, .external_lex_state = 7}, - [4048] = {.lex_state = 13, .external_lex_state = 7}, - [4049] = {.lex_state = 13, .external_lex_state = 7}, - [4050] = {.lex_state = 13, .external_lex_state = 7}, - [4051] = {.lex_state = 13, .external_lex_state = 7}, + [4045] = {.lex_state = 2, .external_lex_state = 4}, + [4046] = {.lex_state = 14, .external_lex_state = 7}, + [4047] = {.lex_state = 14, .external_lex_state = 7}, + [4048] = {.lex_state = 14, .external_lex_state = 7}, + [4049] = {.lex_state = 13, .external_lex_state = 6}, + [4050] = {.lex_state = 14, .external_lex_state = 7}, + [4051] = {.lex_state = 14, .external_lex_state = 7}, [4052] = {.lex_state = 13, .external_lex_state = 6}, - [4053] = {.lex_state = 14, .external_lex_state = 6}, - [4054] = {.lex_state = 14, .external_lex_state = 6}, - [4055] = {.lex_state = 13, .external_lex_state = 7}, - [4056] = {.lex_state = 13, .external_lex_state = 7}, - [4057] = {.lex_state = 13, .external_lex_state = 7}, - [4058] = {.lex_state = 13, .external_lex_state = 7}, + [4053] = {.lex_state = 14, .external_lex_state = 7}, + [4054] = {.lex_state = 13, .external_lex_state = 6}, + [4055] = {.lex_state = 13, .external_lex_state = 6}, + [4056] = {.lex_state = 13, .external_lex_state = 6}, + [4057] = {.lex_state = 14, .external_lex_state = 7}, + [4058] = {.lex_state = 13, .external_lex_state = 6}, [4059] = {.lex_state = 13, .external_lex_state = 6}, - [4060] = {.lex_state = 13, .external_lex_state = 6}, + [4060] = {.lex_state = 14, .external_lex_state = 7}, [4061] = {.lex_state = 13, .external_lex_state = 6}, [4062] = {.lex_state = 13, .external_lex_state = 6}, [4063] = {.lex_state = 13, .external_lex_state = 6}, - [4064] = {.lex_state = 2, .external_lex_state = 4}, - [4065] = {.lex_state = 13, .external_lex_state = 6}, + [4064] = {.lex_state = 13, .external_lex_state = 6}, + [4065] = {.lex_state = 14, .external_lex_state = 7}, [4066] = {.lex_state = 13, .external_lex_state = 7}, - [4067] = {.lex_state = 13, .external_lex_state = 7}, + [4067] = {.lex_state = 14, .external_lex_state = 7}, [4068] = {.lex_state = 2, .external_lex_state = 4}, - [4069] = {.lex_state = 13, .external_lex_state = 7}, - [4070] = {.lex_state = 13, .external_lex_state = 7}, - [4071] = {.lex_state = 13, .external_lex_state = 7}, - [4072] = {.lex_state = 2, .external_lex_state = 4}, - [4073] = {.lex_state = 13, .external_lex_state = 7}, + [4069] = {.lex_state = 14, .external_lex_state = 7}, + [4070] = {.lex_state = 14, .external_lex_state = 7}, + [4071] = {.lex_state = 13, .external_lex_state = 6}, + [4072] = {.lex_state = 14, .external_lex_state = 7}, + [4073] = {.lex_state = 2, .external_lex_state = 4}, [4074] = {.lex_state = 13, .external_lex_state = 7}, - [4075] = {.lex_state = 13, .external_lex_state = 7}, - [4076] = {.lex_state = 13, .external_lex_state = 6}, - [4077] = {.lex_state = 13, .external_lex_state = 7}, - [4078] = {.lex_state = 13, .external_lex_state = 6}, - [4079] = {.lex_state = 13, .external_lex_state = 7}, - [4080] = {.lex_state = 13, .external_lex_state = 7}, - [4081] = {.lex_state = 13, .external_lex_state = 7}, - [4082] = {.lex_state = 13, .external_lex_state = 7}, - [4083] = {.lex_state = 13, .external_lex_state = 7}, + [4075] = {.lex_state = 13, .external_lex_state = 6}, + [4076] = {.lex_state = 13, .external_lex_state = 7}, + [4077] = {.lex_state = 2, .external_lex_state = 4}, + [4078] = {.lex_state = 13, .external_lex_state = 7}, + [4079] = {.lex_state = 2, .external_lex_state = 4}, + [4080] = {.lex_state = 14, .external_lex_state = 7}, + [4081] = {.lex_state = 2, .external_lex_state = 4}, + [4082] = {.lex_state = 14, .external_lex_state = 7}, + [4083] = {.lex_state = 13, .external_lex_state = 6}, [4084] = {.lex_state = 13, .external_lex_state = 7}, - [4085] = {.lex_state = 13, .external_lex_state = 7}, - [4086] = {.lex_state = 13, .external_lex_state = 7}, - [4087] = {.lex_state = 13, .external_lex_state = 7}, - [4088] = {.lex_state = 13, .external_lex_state = 7}, - [4089] = {.lex_state = 13, .external_lex_state = 7}, - [4090] = {.lex_state = 13, .external_lex_state = 7}, - [4091] = {.lex_state = 13, .external_lex_state = 7}, - [4092] = {.lex_state = 13, .external_lex_state = 7}, - [4093] = {.lex_state = 13, .external_lex_state = 7}, - [4094] = {.lex_state = 13, .external_lex_state = 7}, - [4095] = {.lex_state = 13, .external_lex_state = 7}, - [4096] = {.lex_state = 13, .external_lex_state = 7}, + [4085] = {.lex_state = 13, .external_lex_state = 6}, + [4086] = {.lex_state = 2, .external_lex_state = 4}, + [4087] = {.lex_state = 13, .external_lex_state = 6}, + [4088] = {.lex_state = 13, .external_lex_state = 6}, + [4089] = {.lex_state = 14, .external_lex_state = 7}, + [4090] = {.lex_state = 2, .external_lex_state = 4}, + [4091] = {.lex_state = 2, .external_lex_state = 4}, + [4092] = {.lex_state = 14, .external_lex_state = 7}, + [4093] = {.lex_state = 2, .external_lex_state = 4}, + [4094] = {.lex_state = 2, .external_lex_state = 4}, + [4095] = {.lex_state = 13, .external_lex_state = 6}, + [4096] = {.lex_state = 2, .external_lex_state = 4}, [4097] = {.lex_state = 13, .external_lex_state = 7}, - [4098] = {.lex_state = 13, .external_lex_state = 7}, + [4098] = {.lex_state = 13, .external_lex_state = 6}, [4099] = {.lex_state = 13, .external_lex_state = 7}, [4100] = {.lex_state = 13, .external_lex_state = 7}, [4101] = {.lex_state = 14, .external_lex_state = 6}, - [4102] = {.lex_state = 14, .external_lex_state = 6}, - [4103] = {.lex_state = 14, .external_lex_state = 6}, - [4104] = {.lex_state = 14, .external_lex_state = 6}, + [4102] = {.lex_state = 13, .external_lex_state = 7}, + [4103] = {.lex_state = 13, .external_lex_state = 7}, + [4104] = {.lex_state = 13, .external_lex_state = 7}, [4105] = {.lex_state = 13, .external_lex_state = 7}, - [4106] = {.lex_state = 13, .external_lex_state = 7}, - [4107] = {.lex_state = 318, .external_lex_state = 2}, - [4108] = {.lex_state = 13, .external_lex_state = 7}, + [4106] = {.lex_state = 13, .external_lex_state = 6}, + [4107] = {.lex_state = 14, .external_lex_state = 6}, + [4108] = {.lex_state = 14, .external_lex_state = 6}, [4109] = {.lex_state = 13, .external_lex_state = 7}, - [4110] = {.lex_state = 13, .external_lex_state = 7}, + [4110] = {.lex_state = 14, .external_lex_state = 6}, [4111] = {.lex_state = 13, .external_lex_state = 7}, [4112] = {.lex_state = 13, .external_lex_state = 7}, [4113] = {.lex_state = 13, .external_lex_state = 7}, - [4114] = {.lex_state = 13, .external_lex_state = 7}, + [4114] = {.lex_state = 14, .external_lex_state = 6}, [4115] = {.lex_state = 13, .external_lex_state = 7}, - [4116] = {.lex_state = 13, .external_lex_state = 7}, + [4116] = {.lex_state = 13, .external_lex_state = 6}, [4117] = {.lex_state = 13, .external_lex_state = 7}, [4118] = {.lex_state = 13, .external_lex_state = 7}, - [4119] = {.lex_state = 13, .external_lex_state = 7}, - [4120] = {.lex_state = 13, .external_lex_state = 7}, + [4119] = {.lex_state = 2, .external_lex_state = 3}, + [4120] = {.lex_state = 2, .external_lex_state = 3}, [4121] = {.lex_state = 13, .external_lex_state = 7}, - [4122] = {.lex_state = 13, .external_lex_state = 7}, - [4123] = {.lex_state = 13, .external_lex_state = 7}, - [4124] = {.lex_state = 13, .external_lex_state = 7}, - [4125] = {.lex_state = 13, .external_lex_state = 7}, - [4126] = {.lex_state = 318, .external_lex_state = 2}, + [4122] = {.lex_state = 14, .external_lex_state = 6}, + [4123] = {.lex_state = 13, .external_lex_state = 6}, + [4124] = {.lex_state = 14, .external_lex_state = 6}, + [4125] = {.lex_state = 14, .external_lex_state = 6}, + [4126] = {.lex_state = 14, .external_lex_state = 6}, [4127] = {.lex_state = 13, .external_lex_state = 7}, - [4128] = {.lex_state = 13, .external_lex_state = 7}, + [4128] = {.lex_state = 14, .external_lex_state = 6}, [4129] = {.lex_state = 13, .external_lex_state = 7}, - [4130] = {.lex_state = 13, .external_lex_state = 7}, - [4131] = {.lex_state = 13, .external_lex_state = 7}, - [4132] = {.lex_state = 13, .external_lex_state = 7}, + [4130] = {.lex_state = 14, .external_lex_state = 6}, + [4131] = {.lex_state = 14, .external_lex_state = 6}, + [4132] = {.lex_state = 13, .external_lex_state = 6}, [4133] = {.lex_state = 13, .external_lex_state = 7}, - [4134] = {.lex_state = 13, .external_lex_state = 7}, + [4134] = {.lex_state = 13, .external_lex_state = 6}, [4135] = {.lex_state = 13, .external_lex_state = 7}, - [4136] = {.lex_state = 13, .external_lex_state = 7}, + [4136] = {.lex_state = 14, .external_lex_state = 6}, [4137] = {.lex_state = 13, .external_lex_state = 7}, [4138] = {.lex_state = 13, .external_lex_state = 7}, - [4139] = {.lex_state = 13, .external_lex_state = 7}, - [4140] = {.lex_state = 13, .external_lex_state = 7}, - [4141] = {.lex_state = 13, .external_lex_state = 7}, + [4139] = {.lex_state = 14, .external_lex_state = 6}, + [4140] = {.lex_state = 13, .external_lex_state = 6}, + [4141] = {.lex_state = 14, .external_lex_state = 6}, [4142] = {.lex_state = 13, .external_lex_state = 7}, - [4143] = {.lex_state = 13, .external_lex_state = 7}, - [4144] = {.lex_state = 318, .external_lex_state = 2}, + [4143] = {.lex_state = 14, .external_lex_state = 6}, + [4144] = {.lex_state = 14, .external_lex_state = 6}, [4145] = {.lex_state = 13, .external_lex_state = 7}, - [4146] = {.lex_state = 318, .external_lex_state = 2}, - [4147] = {.lex_state = 13, .external_lex_state = 7}, - [4148] = {.lex_state = 13, .external_lex_state = 7}, - [4149] = {.lex_state = 13, .external_lex_state = 7}, - [4150] = {.lex_state = 13, .external_lex_state = 7}, + [4146] = {.lex_state = 14, .external_lex_state = 6}, + [4147] = {.lex_state = 13, .external_lex_state = 6}, + [4148] = {.lex_state = 13, .external_lex_state = 6}, + [4149] = {.lex_state = 13, .external_lex_state = 6}, + [4150] = {.lex_state = 2, .external_lex_state = 4}, [4151] = {.lex_state = 13, .external_lex_state = 7}, [4152] = {.lex_state = 13, .external_lex_state = 7}, - [4153] = {.lex_state = 14, .external_lex_state = 7}, - [4154] = {.lex_state = 2, .external_lex_state = 4}, - [4155] = {.lex_state = 2, .external_lex_state = 4}, - [4156] = {.lex_state = 2, .external_lex_state = 4}, - [4157] = {.lex_state = 2, .external_lex_state = 4}, - [4158] = {.lex_state = 2, .external_lex_state = 4}, - [4159] = {.lex_state = 2, .external_lex_state = 4}, - [4160] = {.lex_state = 2, .external_lex_state = 4}, - [4161] = {.lex_state = 14, .external_lex_state = 7}, - [4162] = {.lex_state = 13, .external_lex_state = 6}, - [4163] = {.lex_state = 13, .external_lex_state = 6}, - [4164] = {.lex_state = 13, .external_lex_state = 6}, - [4165] = {.lex_state = 13, .external_lex_state = 6}, - [4166] = {.lex_state = 2, .external_lex_state = 4}, - [4167] = {.lex_state = 2, .external_lex_state = 4}, - [4168] = {.lex_state = 14, .external_lex_state = 7}, - [4169] = {.lex_state = 14, .external_lex_state = 7}, - [4170] = {.lex_state = 14, .external_lex_state = 7}, - [4171] = {.lex_state = 14, .external_lex_state = 7}, - [4172] = {.lex_state = 14, .external_lex_state = 7}, - [4173] = {.lex_state = 14, .external_lex_state = 7}, - [4174] = {.lex_state = 14, .external_lex_state = 7}, - [4175] = {.lex_state = 14, .external_lex_state = 7}, - [4176] = {.lex_state = 14, .external_lex_state = 7}, - [4177] = {.lex_state = 14, .external_lex_state = 7}, - [4178] = {.lex_state = 14, .external_lex_state = 7}, - [4179] = {.lex_state = 14, .external_lex_state = 7}, + [4153] = {.lex_state = 2, .external_lex_state = 4}, + [4154] = {.lex_state = 13, .external_lex_state = 7}, + [4155] = {.lex_state = 13, .external_lex_state = 6}, + [4156] = {.lex_state = 13, .external_lex_state = 7}, + [4157] = {.lex_state = 13, .external_lex_state = 7}, + [4158] = {.lex_state = 13, .external_lex_state = 6}, + [4159] = {.lex_state = 10, .external_lex_state = 2}, + [4160] = {.lex_state = 13, .external_lex_state = 6}, + [4161] = {.lex_state = 13, .external_lex_state = 6}, + [4162] = {.lex_state = 13, .external_lex_state = 7}, + [4163] = {.lex_state = 13, .external_lex_state = 7}, + [4164] = {.lex_state = 13, .external_lex_state = 7}, + [4165] = {.lex_state = 13, .external_lex_state = 7}, + [4166] = {.lex_state = 13, .external_lex_state = 7}, + [4167] = {.lex_state = 13, .external_lex_state = 7}, + [4168] = {.lex_state = 13, .external_lex_state = 7}, + [4169] = {.lex_state = 13, .external_lex_state = 7}, + [4170] = {.lex_state = 2, .external_lex_state = 4}, + [4171] = {.lex_state = 13, .external_lex_state = 6}, + [4172] = {.lex_state = 13, .external_lex_state = 7}, + [4173] = {.lex_state = 13, .external_lex_state = 7}, + [4174] = {.lex_state = 13, .external_lex_state = 7}, + [4175] = {.lex_state = 2, .external_lex_state = 4}, + [4176] = {.lex_state = 13, .external_lex_state = 7}, + [4177] = {.lex_state = 2, .external_lex_state = 4}, + [4178] = {.lex_state = 2, .external_lex_state = 4}, + [4179] = {.lex_state = 13, .external_lex_state = 6}, [4180] = {.lex_state = 2, .external_lex_state = 4}, - [4181] = {.lex_state = 2, .external_lex_state = 4}, - [4182] = {.lex_state = 14, .external_lex_state = 7}, - [4183] = {.lex_state = 2, .external_lex_state = 4}, - [4184] = {.lex_state = 14, .external_lex_state = 7}, - [4185] = {.lex_state = 14, .external_lex_state = 7}, + [4181] = {.lex_state = 13, .external_lex_state = 7}, + [4182] = {.lex_state = 13, .external_lex_state = 7}, + [4183] = {.lex_state = 13, .external_lex_state = 7}, + [4184] = {.lex_state = 2, .external_lex_state = 4}, + [4185] = {.lex_state = 2, .external_lex_state = 4}, [4186] = {.lex_state = 13, .external_lex_state = 6}, [4187] = {.lex_state = 13, .external_lex_state = 6}, [4188] = {.lex_state = 13, .external_lex_state = 6}, - [4189] = {.lex_state = 13, .external_lex_state = 6}, + [4189] = {.lex_state = 13, .external_lex_state = 7}, [4190] = {.lex_state = 13, .external_lex_state = 6}, [4191] = {.lex_state = 13, .external_lex_state = 6}, - [4192] = {.lex_state = 13, .external_lex_state = 7}, + [4192] = {.lex_state = 2, .external_lex_state = 4}, [4193] = {.lex_state = 13, .external_lex_state = 6}, [4194] = {.lex_state = 13, .external_lex_state = 6}, - [4195] = {.lex_state = 13, .external_lex_state = 6}, - [4196] = {.lex_state = 13, .external_lex_state = 6}, + [4195] = {.lex_state = 13, .external_lex_state = 7}, + [4196] = {.lex_state = 13, .external_lex_state = 7}, [4197] = {.lex_state = 13, .external_lex_state = 6}, [4198] = {.lex_state = 13, .external_lex_state = 6}, - [4199] = {.lex_state = 13, .external_lex_state = 6}, + [4199] = {.lex_state = 13, .external_lex_state = 7}, [4200] = {.lex_state = 13, .external_lex_state = 6}, - [4201] = {.lex_state = 13, .external_lex_state = 7}, - [4202] = {.lex_state = 13, .external_lex_state = 7}, + [4201] = {.lex_state = 13, .external_lex_state = 6}, + [4202] = {.lex_state = 13, .external_lex_state = 6}, [4203] = {.lex_state = 13, .external_lex_state = 7}, [4204] = {.lex_state = 13, .external_lex_state = 7}, [4205] = {.lex_state = 13, .external_lex_state = 7}, - [4206] = {.lex_state = 14, .external_lex_state = 6}, - [4207] = {.lex_state = 14, .external_lex_state = 6}, - [4208] = {.lex_state = 13, .external_lex_state = 7}, - [4209] = {.lex_state = 14, .external_lex_state = 6}, - [4210] = {.lex_state = 13, .external_lex_state = 6}, + [4206] = {.lex_state = 13, .external_lex_state = 6}, + [4207] = {.lex_state = 13, .external_lex_state = 7}, + [4208] = {.lex_state = 13, .external_lex_state = 6}, + [4209] = {.lex_state = 13, .external_lex_state = 7}, + [4210] = {.lex_state = 13, .external_lex_state = 7}, [4211] = {.lex_state = 13, .external_lex_state = 7}, [4212] = {.lex_state = 13, .external_lex_state = 7}, - [4213] = {.lex_state = 13, .external_lex_state = 7}, + [4213] = {.lex_state = 13, .external_lex_state = 6}, [4214] = {.lex_state = 13, .external_lex_state = 7}, [4215] = {.lex_state = 13, .external_lex_state = 7}, [4216] = {.lex_state = 13, .external_lex_state = 7}, - [4217] = {.lex_state = 14, .external_lex_state = 6}, - [4218] = {.lex_state = 13, .external_lex_state = 6}, - [4219] = {.lex_state = 14, .external_lex_state = 6}, - [4220] = {.lex_state = 14, .external_lex_state = 6}, - [4221] = {.lex_state = 14, .external_lex_state = 6}, + [4217] = {.lex_state = 13, .external_lex_state = 6}, + [4218] = {.lex_state = 13, .external_lex_state = 7}, + [4219] = {.lex_state = 13, .external_lex_state = 6}, + [4220] = {.lex_state = 13, .external_lex_state = 6}, + [4221] = {.lex_state = 13, .external_lex_state = 7}, [4222] = {.lex_state = 13, .external_lex_state = 6}, [4223] = {.lex_state = 13, .external_lex_state = 6}, - [4224] = {.lex_state = 14, .external_lex_state = 6}, - [4225] = {.lex_state = 14, .external_lex_state = 6}, - [4226] = {.lex_state = 14, .external_lex_state = 6}, - [4227] = {.lex_state = 13, .external_lex_state = 7}, - [4228] = {.lex_state = 13, .external_lex_state = 7}, - [4229] = {.lex_state = 14, .external_lex_state = 6}, - [4230] = {.lex_state = 14, .external_lex_state = 6}, - [4231] = {.lex_state = 14, .external_lex_state = 6}, - [4232] = {.lex_state = 13, .external_lex_state = 6}, + [4224] = {.lex_state = 13, .external_lex_state = 6}, + [4225] = {.lex_state = 14, .external_lex_state = 7}, + [4226] = {.lex_state = 13, .external_lex_state = 7}, + [4227] = {.lex_state = 14, .external_lex_state = 7}, + [4228] = {.lex_state = 13, .external_lex_state = 6}, + [4229] = {.lex_state = 13, .external_lex_state = 7}, + [4230] = {.lex_state = 14, .external_lex_state = 7}, + [4231] = {.lex_state = 13, .external_lex_state = 7}, + [4232] = {.lex_state = 13, .external_lex_state = 7}, [4233] = {.lex_state = 13, .external_lex_state = 7}, [4234] = {.lex_state = 13, .external_lex_state = 7}, - [4235] = {.lex_state = 14, .external_lex_state = 6}, + [4235] = {.lex_state = 14, .external_lex_state = 7}, [4236] = {.lex_state = 13, .external_lex_state = 7}, - [4237] = {.lex_state = 13, .external_lex_state = 6}, - [4238] = {.lex_state = 13, .external_lex_state = 7}, - [4239] = {.lex_state = 13, .external_lex_state = 6}, - [4240] = {.lex_state = 13, .external_lex_state = 7}, - [4241] = {.lex_state = 14, .external_lex_state = 6}, - [4242] = {.lex_state = 13, .external_lex_state = 7}, - [4243] = {.lex_state = 14, .external_lex_state = 6}, - [4244] = {.lex_state = 14, .external_lex_state = 6}, + [4237] = {.lex_state = 14, .external_lex_state = 7}, + [4238] = {.lex_state = 14, .external_lex_state = 7}, + [4239] = {.lex_state = 14, .external_lex_state = 7}, + [4240] = {.lex_state = 14, .external_lex_state = 7}, + [4241] = {.lex_state = 13, .external_lex_state = 7}, + [4242] = {.lex_state = 14, .external_lex_state = 7}, + [4243] = {.lex_state = 13, .external_lex_state = 7}, + [4244] = {.lex_state = 14, .external_lex_state = 7}, [4245] = {.lex_state = 13, .external_lex_state = 7}, - [4246] = {.lex_state = 2, .external_lex_state = 3}, - [4247] = {.lex_state = 13, .external_lex_state = 7}, - [4248] = {.lex_state = 13, .external_lex_state = 7}, - [4249] = {.lex_state = 2, .external_lex_state = 3}, - [4250] = {.lex_state = 13, .external_lex_state = 7}, - [4251] = {.lex_state = 13, .external_lex_state = 7}, - [4252] = {.lex_state = 13, .external_lex_state = 6}, - [4253] = {.lex_state = 13, .external_lex_state = 7}, - [4254] = {.lex_state = 14, .external_lex_state = 6}, - [4255] = {.lex_state = 13, .external_lex_state = 7}, - [4256] = {.lex_state = 13, .external_lex_state = 6}, + [4246] = {.lex_state = 14, .external_lex_state = 7}, + [4247] = {.lex_state = 14, .external_lex_state = 7}, + [4248] = {.lex_state = 13, .external_lex_state = 6}, + [4249] = {.lex_state = 14, .external_lex_state = 7}, + [4250] = {.lex_state = 14, .external_lex_state = 7}, + [4251] = {.lex_state = 14, .external_lex_state = 7}, + [4252] = {.lex_state = 13, .external_lex_state = 7}, + [4253] = {.lex_state = 14, .external_lex_state = 7}, + [4254] = {.lex_state = 14, .external_lex_state = 7}, + [4255] = {.lex_state = 14, .external_lex_state = 7}, + [4256] = {.lex_state = 13, .external_lex_state = 7}, [4257] = {.lex_state = 13, .external_lex_state = 7}, [4258] = {.lex_state = 13, .external_lex_state = 7}, [4259] = {.lex_state = 13, .external_lex_state = 7}, - [4260] = {.lex_state = 13, .external_lex_state = 7}, - [4261] = {.lex_state = 2, .external_lex_state = 4}, + [4260] = {.lex_state = 14, .external_lex_state = 6}, + [4261] = {.lex_state = 14, .external_lex_state = 6}, [4262] = {.lex_state = 13, .external_lex_state = 7}, - [4263] = {.lex_state = 2, .external_lex_state = 4}, + [4263] = {.lex_state = 13, .external_lex_state = 7}, [4264] = {.lex_state = 13, .external_lex_state = 7}, - [4265] = {.lex_state = 13, .external_lex_state = 7}, - [4266] = {.lex_state = 2, .external_lex_state = 4}, - [4267] = {.lex_state = 2, .external_lex_state = 4}, - [4268] = {.lex_state = 2, .external_lex_state = 4}, - [4269] = {.lex_state = 2, .external_lex_state = 4}, - [4270] = {.lex_state = 2, .external_lex_state = 4}, - [4271] = {.lex_state = 13, .external_lex_state = 7}, + [4265] = {.lex_state = 14, .external_lex_state = 6}, + [4266] = {.lex_state = 14, .external_lex_state = 6}, + [4267] = {.lex_state = 14, .external_lex_state = 6}, + [4268] = {.lex_state = 13, .external_lex_state = 7}, + [4269] = {.lex_state = 14, .external_lex_state = 6}, + [4270] = {.lex_state = 13, .external_lex_state = 7}, + [4271] = {.lex_state = 14, .external_lex_state = 6}, [4272] = {.lex_state = 13, .external_lex_state = 7}, - [4273] = {.lex_state = 13, .external_lex_state = 7}, - [4274] = {.lex_state = 13, .external_lex_state = 7}, - [4275] = {.lex_state = 2, .external_lex_state = 4}, - [4276] = {.lex_state = 13, .external_lex_state = 6}, - [4277] = {.lex_state = 13, .external_lex_state = 6}, - [4278] = {.lex_state = 13, .external_lex_state = 7}, - [4279] = {.lex_state = 13, .external_lex_state = 6}, - [4280] = {.lex_state = 13, .external_lex_state = 6}, - [4281] = {.lex_state = 13, .external_lex_state = 7}, - [4282] = {.lex_state = 13, .external_lex_state = 7}, - [4283] = {.lex_state = 13, .external_lex_state = 6}, - [4284] = {.lex_state = 13, .external_lex_state = 7}, - [4285] = {.lex_state = 13, .external_lex_state = 6}, - [4286] = {.lex_state = 13, .external_lex_state = 7}, + [4273] = {.lex_state = 14, .external_lex_state = 6}, + [4274] = {.lex_state = 14, .external_lex_state = 6}, + [4275] = {.lex_state = 14, .external_lex_state = 6}, + [4276] = {.lex_state = 14, .external_lex_state = 6}, + [4277] = {.lex_state = 13, .external_lex_state = 7}, + [4278] = {.lex_state = 14, .external_lex_state = 6}, + [4279] = {.lex_state = 14, .external_lex_state = 6}, + [4280] = {.lex_state = 13, .external_lex_state = 7}, + [4281] = {.lex_state = 14, .external_lex_state = 6}, + [4282] = {.lex_state = 14, .external_lex_state = 6}, + [4283] = {.lex_state = 14, .external_lex_state = 6}, + [4284] = {.lex_state = 14, .external_lex_state = 6}, + [4285] = {.lex_state = 14, .external_lex_state = 7}, + [4286] = {.lex_state = 13, .external_lex_state = 6}, [4287] = {.lex_state = 13, .external_lex_state = 6}, - [4288] = {.lex_state = 13, .external_lex_state = 7}, - [4289] = {.lex_state = 2, .external_lex_state = 4}, - [4290] = {.lex_state = 13, .external_lex_state = 6}, - [4291] = {.lex_state = 13, .external_lex_state = 7}, - [4292] = {.lex_state = 13, .external_lex_state = 6}, - [4293] = {.lex_state = 13, .external_lex_state = 6}, - [4294] = {.lex_state = 13, .external_lex_state = 7}, - [4295] = {.lex_state = 2, .external_lex_state = 4}, - [4296] = {.lex_state = 13, .external_lex_state = 7}, - [4297] = {.lex_state = 10, .external_lex_state = 2}, - [4298] = {.lex_state = 13, .external_lex_state = 6}, - [4299] = {.lex_state = 13, .external_lex_state = 6}, - [4300] = {.lex_state = 13, .external_lex_state = 7}, - [4301] = {.lex_state = 13, .external_lex_state = 7}, - [4302] = {.lex_state = 13, .external_lex_state = 6}, - [4303] = {.lex_state = 13, .external_lex_state = 6}, - [4304] = {.lex_state = 13, .external_lex_state = 7}, - [4305] = {.lex_state = 13, .external_lex_state = 6}, - [4306] = {.lex_state = 13, .external_lex_state = 6}, - [4307] = {.lex_state = 13, .external_lex_state = 7}, - [4308] = {.lex_state = 13, .external_lex_state = 6}, - [4309] = {.lex_state = 13, .external_lex_state = 7}, - [4310] = {.lex_state = 13, .external_lex_state = 6}, - [4311] = {.lex_state = 13, .external_lex_state = 6}, - [4312] = {.lex_state = 13, .external_lex_state = 6}, - [4313] = {.lex_state = 13, .external_lex_state = 6}, - [4314] = {.lex_state = 13, .external_lex_state = 7}, - [4315] = {.lex_state = 13, .external_lex_state = 6}, - [4316] = {.lex_state = 13, .external_lex_state = 6}, + [4288] = {.lex_state = 14, .external_lex_state = 7}, + [4289] = {.lex_state = 13, .external_lex_state = 6}, + [4290] = {.lex_state = 14, .external_lex_state = 7}, + [4291] = {.lex_state = 13, .external_lex_state = 6}, + [4292] = {.lex_state = 14, .external_lex_state = 7}, + [4293] = {.lex_state = 14, .external_lex_state = 7}, + [4294] = {.lex_state = 13, .external_lex_state = 6}, + [4295] = {.lex_state = 14, .external_lex_state = 7}, + [4296] = {.lex_state = 13, .external_lex_state = 6}, + [4297] = {.lex_state = 14, .external_lex_state = 7}, + [4298] = {.lex_state = 14, .external_lex_state = 7}, + [4299] = {.lex_state = 14, .external_lex_state = 7}, + [4300] = {.lex_state = 14, .external_lex_state = 7}, + [4301] = {.lex_state = 14, .external_lex_state = 7}, + [4302] = {.lex_state = 14, .external_lex_state = 7}, + [4303] = {.lex_state = 14, .external_lex_state = 7}, + [4304] = {.lex_state = 14, .external_lex_state = 7}, + [4305] = {.lex_state = 14, .external_lex_state = 7}, + [4306] = {.lex_state = 14, .external_lex_state = 7}, + [4307] = {.lex_state = 14, .external_lex_state = 7}, + [4308] = {.lex_state = 14, .external_lex_state = 6}, + [4309] = {.lex_state = 14, .external_lex_state = 6}, + [4310] = {.lex_state = 14, .external_lex_state = 6}, + [4311] = {.lex_state = 13, .external_lex_state = 7}, + [4312] = {.lex_state = 14, .external_lex_state = 6}, + [4313] = {.lex_state = 14, .external_lex_state = 6}, + [4314] = {.lex_state = 14, .external_lex_state = 6}, + [4315] = {.lex_state = 13, .external_lex_state = 7}, + [4316] = {.lex_state = 14, .external_lex_state = 6}, [4317] = {.lex_state = 13, .external_lex_state = 7}, - [4318] = {.lex_state = 13, .external_lex_state = 6}, + [4318] = {.lex_state = 13, .external_lex_state = 7}, [4319] = {.lex_state = 13, .external_lex_state = 7}, - [4320] = {.lex_state = 13, .external_lex_state = 7}, - [4321] = {.lex_state = 13, .external_lex_state = 7}, + [4320] = {.lex_state = 14, .external_lex_state = 6}, + [4321] = {.lex_state = 14, .external_lex_state = 6}, [4322] = {.lex_state = 13, .external_lex_state = 7}, - [4323] = {.lex_state = 13, .external_lex_state = 7}, - [4324] = {.lex_state = 13, .external_lex_state = 7}, - [4325] = {.lex_state = 13, .external_lex_state = 6}, - [4326] = {.lex_state = 13, .external_lex_state = 6}, - [4327] = {.lex_state = 13, .external_lex_state = 6}, - [4328] = {.lex_state = 13, .external_lex_state = 7}, - [4329] = {.lex_state = 13, .external_lex_state = 7}, - [4330] = {.lex_state = 13, .external_lex_state = 7}, - [4331] = {.lex_state = 13, .external_lex_state = 6}, - [4332] = {.lex_state = 13, .external_lex_state = 7}, - [4333] = {.lex_state = 13, .external_lex_state = 7}, - [4334] = {.lex_state = 13, .external_lex_state = 6}, - [4335] = {.lex_state = 13, .external_lex_state = 7}, - [4336] = {.lex_state = 13, .external_lex_state = 6}, - [4337] = {.lex_state = 13, .external_lex_state = 7}, - [4338] = {.lex_state = 13, .external_lex_state = 7}, - [4339] = {.lex_state = 14, .external_lex_state = 7}, - [4340] = {.lex_state = 13, .external_lex_state = 7}, - [4341] = {.lex_state = 14, .external_lex_state = 7}, - [4342] = {.lex_state = 13, .external_lex_state = 7}, - [4343] = {.lex_state = 13, .external_lex_state = 7}, - [4344] = {.lex_state = 13, .external_lex_state = 7}, - [4345] = {.lex_state = 14, .external_lex_state = 7}, - [4346] = {.lex_state = 14, .external_lex_state = 7}, - [4347] = {.lex_state = 14, .external_lex_state = 7}, - [4348] = {.lex_state = 14, .external_lex_state = 7}, - [4349] = {.lex_state = 13, .external_lex_state = 7}, - [4350] = {.lex_state = 14, .external_lex_state = 7}, - [4351] = {.lex_state = 13, .external_lex_state = 7}, - [4352] = {.lex_state = 14, .external_lex_state = 7}, - [4353] = {.lex_state = 14, .external_lex_state = 7}, - [4354] = {.lex_state = 14, .external_lex_state = 7}, - [4355] = {.lex_state = 14, .external_lex_state = 7}, - [4356] = {.lex_state = 14, .external_lex_state = 7}, - [4357] = {.lex_state = 14, .external_lex_state = 7}, - [4358] = {.lex_state = 14, .external_lex_state = 7}, - [4359] = {.lex_state = 14, .external_lex_state = 7}, - [4360] = {.lex_state = 13, .external_lex_state = 6}, - [4361] = {.lex_state = 13, .external_lex_state = 7}, - [4362] = {.lex_state = 13, .external_lex_state = 7}, - [4363] = {.lex_state = 14, .external_lex_state = 7}, - [4364] = {.lex_state = 14, .external_lex_state = 7}, - [4365] = {.lex_state = 14, .external_lex_state = 7}, - [4366] = {.lex_state = 13, .external_lex_state = 7}, - [4367] = {.lex_state = 13, .external_lex_state = 7}, - [4368] = {.lex_state = 13, .external_lex_state = 7}, - [4369] = {.lex_state = 13, .external_lex_state = 6}, - [4370] = {.lex_state = 13, .external_lex_state = 7}, - [4371] = {.lex_state = 13, .external_lex_state = 7}, - [4372] = {.lex_state = 13, .external_lex_state = 7}, - [4373] = {.lex_state = 13, .external_lex_state = 7}, + [4323] = {.lex_state = 14, .external_lex_state = 6}, + [4324] = {.lex_state = 14, .external_lex_state = 6}, + [4325] = {.lex_state = 14, .external_lex_state = 6}, + [4326] = {.lex_state = 21, .external_lex_state = 8}, + [4327] = {.lex_state = 21, .external_lex_state = 8}, + [4328] = {.lex_state = 21, .external_lex_state = 8}, + [4329] = {.lex_state = 21, .external_lex_state = 8}, + [4330] = {.lex_state = 21, .external_lex_state = 8}, + [4331] = {.lex_state = 21, .external_lex_state = 8}, + [4332] = {.lex_state = 21, .external_lex_state = 8}, + [4333] = {.lex_state = 14, .external_lex_state = 6}, + [4334] = {.lex_state = 14, .external_lex_state = 6}, + [4335] = {.lex_state = 21, .external_lex_state = 8}, + [4336] = {.lex_state = 21, .external_lex_state = 8}, + [4337] = {.lex_state = 14, .external_lex_state = 6}, + [4338] = {.lex_state = 21, .external_lex_state = 8}, + [4339] = {.lex_state = 21, .external_lex_state = 8}, + [4340] = {.lex_state = 21, .external_lex_state = 8}, + [4341] = {.lex_state = 21, .external_lex_state = 8}, + [4342] = {.lex_state = 21, .external_lex_state = 8}, + [4343] = {.lex_state = 21, .external_lex_state = 8}, + [4344] = {.lex_state = 21, .external_lex_state = 8}, + [4345] = {.lex_state = 21, .external_lex_state = 8}, + [4346] = {.lex_state = 21, .external_lex_state = 8}, + [4347] = {.lex_state = 21, .external_lex_state = 8}, + [4348] = {.lex_state = 21, .external_lex_state = 8}, + [4349] = {.lex_state = 21, .external_lex_state = 8}, + [4350] = {.lex_state = 21, .external_lex_state = 8}, + [4351] = {.lex_state = 21, .external_lex_state = 8}, + [4352] = {.lex_state = 21, .external_lex_state = 8}, + [4353] = {.lex_state = 21, .external_lex_state = 8}, + [4354] = {.lex_state = 21, .external_lex_state = 8}, + [4355] = {.lex_state = 14, .external_lex_state = 6}, + [4356] = {.lex_state = 21, .external_lex_state = 8}, + [4357] = {.lex_state = 21, .external_lex_state = 8}, + [4358] = {.lex_state = 21, .external_lex_state = 8}, + [4359] = {.lex_state = 21, .external_lex_state = 8}, + [4360] = {.lex_state = 21, .external_lex_state = 8}, + [4361] = {.lex_state = 14, .external_lex_state = 6}, + [4362] = {.lex_state = 21, .external_lex_state = 8}, + [4363] = {.lex_state = 21, .external_lex_state = 8}, + [4364] = {.lex_state = 14, .external_lex_state = 6}, + [4365] = {.lex_state = 21, .external_lex_state = 8}, + [4366] = {.lex_state = 318, .external_lex_state = 2}, + [4367] = {.lex_state = 21, .external_lex_state = 8}, + [4368] = {.lex_state = 21, .external_lex_state = 8}, + [4369] = {.lex_state = 21, .external_lex_state = 8}, + [4370] = {.lex_state = 21, .external_lex_state = 8}, + [4371] = {.lex_state = 21, .external_lex_state = 8}, + [4372] = {.lex_state = 14, .external_lex_state = 6}, + [4373] = {.lex_state = 318, .external_lex_state = 2}, [4374] = {.lex_state = 14, .external_lex_state = 6}, - [4375] = {.lex_state = 14, .external_lex_state = 6}, + [4375] = {.lex_state = 21, .external_lex_state = 8}, [4376] = {.lex_state = 14, .external_lex_state = 6}, - [4377] = {.lex_state = 14, .external_lex_state = 6}, - [4378] = {.lex_state = 14, .external_lex_state = 6}, - [4379] = {.lex_state = 13, .external_lex_state = 7}, + [4377] = {.lex_state = 21, .external_lex_state = 8}, + [4378] = {.lex_state = 21, .external_lex_state = 8}, + [4379] = {.lex_state = 21, .external_lex_state = 8}, [4380] = {.lex_state = 14, .external_lex_state = 6}, [4381] = {.lex_state = 14, .external_lex_state = 6}, - [4382] = {.lex_state = 14, .external_lex_state = 6}, - [4383] = {.lex_state = 13, .external_lex_state = 7}, - [4384] = {.lex_state = 14, .external_lex_state = 6}, + [4382] = {.lex_state = 21, .external_lex_state = 8}, + [4383] = {.lex_state = 14, .external_lex_state = 6}, + [4384] = {.lex_state = 21, .external_lex_state = 8}, [4385] = {.lex_state = 14, .external_lex_state = 6}, - [4386] = {.lex_state = 14, .external_lex_state = 6}, - [4387] = {.lex_state = 13, .external_lex_state = 7}, - [4388] = {.lex_state = 14, .external_lex_state = 6}, - [4389] = {.lex_state = 13, .external_lex_state = 7}, - [4390] = {.lex_state = 14, .external_lex_state = 6}, - [4391] = {.lex_state = 13, .external_lex_state = 7}, - [4392] = {.lex_state = 14, .external_lex_state = 6}, - [4393] = {.lex_state = 14, .external_lex_state = 6}, - [4394] = {.lex_state = 14, .external_lex_state = 6}, - [4395] = {.lex_state = 13, .external_lex_state = 7}, - [4396] = {.lex_state = 13, .external_lex_state = 7}, - [4397] = {.lex_state = 14, .external_lex_state = 6}, - [4398] = {.lex_state = 13, .external_lex_state = 7}, - [4399] = {.lex_state = 14, .external_lex_state = 7}, - [4400] = {.lex_state = 14, .external_lex_state = 7}, - [4401] = {.lex_state = 14, .external_lex_state = 7}, - [4402] = {.lex_state = 13, .external_lex_state = 6}, - [4403] = {.lex_state = 14, .external_lex_state = 7}, - [4404] = {.lex_state = 13, .external_lex_state = 6}, - [4405] = {.lex_state = 13, .external_lex_state = 6}, - [4406] = {.lex_state = 14, .external_lex_state = 7}, - [4407] = {.lex_state = 14, .external_lex_state = 7}, - [4408] = {.lex_state = 14, .external_lex_state = 7}, - [4409] = {.lex_state = 14, .external_lex_state = 7}, - [4410] = {.lex_state = 14, .external_lex_state = 7}, - [4411] = {.lex_state = 14, .external_lex_state = 7}, - [4412] = {.lex_state = 14, .external_lex_state = 7}, - [4413] = {.lex_state = 14, .external_lex_state = 7}, - [4414] = {.lex_state = 14, .external_lex_state = 7}, - [4415] = {.lex_state = 14, .external_lex_state = 7}, - [4416] = {.lex_state = 13, .external_lex_state = 6}, - [4417] = {.lex_state = 13, .external_lex_state = 6}, - [4418] = {.lex_state = 14, .external_lex_state = 7}, - [4419] = {.lex_state = 13, .external_lex_state = 6}, - [4420] = {.lex_state = 14, .external_lex_state = 7}, - [4421] = {.lex_state = 14, .external_lex_state = 7}, - [4422] = {.lex_state = 13, .external_lex_state = 7}, - [4423] = {.lex_state = 13, .external_lex_state = 7}, + [4386] = {.lex_state = 21, .external_lex_state = 8}, + [4387] = {.lex_state = 14, .external_lex_state = 6}, + [4388] = {.lex_state = 21, .external_lex_state = 8}, + [4389] = {.lex_state = 21, .external_lex_state = 8}, + [4390] = {.lex_state = 21, .external_lex_state = 8}, + [4391] = {.lex_state = 14, .external_lex_state = 6}, + [4392] = {.lex_state = 21, .external_lex_state = 8}, + [4393] = {.lex_state = 21, .external_lex_state = 8}, + [4394] = {.lex_state = 21, .external_lex_state = 8}, + [4395] = {.lex_state = 21, .external_lex_state = 8}, + [4396] = {.lex_state = 21, .external_lex_state = 8}, + [4397] = {.lex_state = 21, .external_lex_state = 8}, + [4398] = {.lex_state = 14, .external_lex_state = 6}, + [4399] = {.lex_state = 14, .external_lex_state = 6}, + [4400] = {.lex_state = 14, .external_lex_state = 6}, + [4401] = {.lex_state = 14, .external_lex_state = 6}, + [4402] = {.lex_state = 14, .external_lex_state = 6}, + [4403] = {.lex_state = 14, .external_lex_state = 6}, + [4404] = {.lex_state = 14, .external_lex_state = 6}, + [4405] = {.lex_state = 14, .external_lex_state = 6}, + [4406] = {.lex_state = 14, .external_lex_state = 6}, + [4407] = {.lex_state = 14, .external_lex_state = 6}, + [4408] = {.lex_state = 14, .external_lex_state = 6}, + [4409] = {.lex_state = 14, .external_lex_state = 6}, + [4410] = {.lex_state = 14, .external_lex_state = 6}, + [4411] = {.lex_state = 14, .external_lex_state = 6}, + [4412] = {.lex_state = 14, .external_lex_state = 6}, + [4413] = {.lex_state = 14, .external_lex_state = 6}, + [4414] = {.lex_state = 14, .external_lex_state = 6}, + [4415] = {.lex_state = 14, .external_lex_state = 6}, + [4416] = {.lex_state = 14, .external_lex_state = 6}, + [4417] = {.lex_state = 14, .external_lex_state = 6}, + [4418] = {.lex_state = 14, .external_lex_state = 6}, + [4419] = {.lex_state = 14, .external_lex_state = 6}, + [4420] = {.lex_state = 14, .external_lex_state = 6}, + [4421] = {.lex_state = 14, .external_lex_state = 6}, + [4422] = {.lex_state = 14, .external_lex_state = 6}, + [4423] = {.lex_state = 14, .external_lex_state = 6}, [4424] = {.lex_state = 14, .external_lex_state = 6}, [4425] = {.lex_state = 14, .external_lex_state = 6}, [4426] = {.lex_state = 14, .external_lex_state = 6}, [4427] = {.lex_state = 14, .external_lex_state = 6}, [4428] = {.lex_state = 14, .external_lex_state = 6}, [4429] = {.lex_state = 14, .external_lex_state = 6}, - [4430] = {.lex_state = 13, .external_lex_state = 7}, + [4430] = {.lex_state = 14, .external_lex_state = 6}, [4431] = {.lex_state = 14, .external_lex_state = 6}, [4432] = {.lex_state = 14, .external_lex_state = 6}, [4433] = {.lex_state = 14, .external_lex_state = 6}, - [4434] = {.lex_state = 13, .external_lex_state = 7}, - [4435] = {.lex_state = 13, .external_lex_state = 7}, + [4434] = {.lex_state = 14, .external_lex_state = 6}, + [4435] = {.lex_state = 14, .external_lex_state = 6}, [4436] = {.lex_state = 14, .external_lex_state = 6}, - [4437] = {.lex_state = 13, .external_lex_state = 7}, + [4437] = {.lex_state = 14, .external_lex_state = 6}, [4438] = {.lex_state = 14, .external_lex_state = 6}, [4439] = {.lex_state = 14, .external_lex_state = 6}, - [4440] = {.lex_state = 21, .external_lex_state = 8}, - [4441] = {.lex_state = 21, .external_lex_state = 8}, - [4442] = {.lex_state = 21, .external_lex_state = 8}, - [4443] = {.lex_state = 21, .external_lex_state = 8}, - [4444] = {.lex_state = 21, .external_lex_state = 8}, - [4445] = {.lex_state = 21, .external_lex_state = 8}, - [4446] = {.lex_state = 21, .external_lex_state = 8}, + [4440] = {.lex_state = 14, .external_lex_state = 6}, + [4441] = {.lex_state = 14, .external_lex_state = 6}, + [4442] = {.lex_state = 14, .external_lex_state = 6}, + [4443] = {.lex_state = 14, .external_lex_state = 6}, + [4444] = {.lex_state = 14, .external_lex_state = 6}, + [4445] = {.lex_state = 14, .external_lex_state = 6}, + [4446] = {.lex_state = 14, .external_lex_state = 6}, [4447] = {.lex_state = 14, .external_lex_state = 6}, [4448] = {.lex_state = 14, .external_lex_state = 6}, - [4449] = {.lex_state = 21, .external_lex_state = 8}, - [4450] = {.lex_state = 21, .external_lex_state = 8}, + [4449] = {.lex_state = 14, .external_lex_state = 6}, + [4450] = {.lex_state = 14, .external_lex_state = 6}, [4451] = {.lex_state = 14, .external_lex_state = 6}, - [4452] = {.lex_state = 21, .external_lex_state = 8}, - [4453] = {.lex_state = 21, .external_lex_state = 8}, - [4454] = {.lex_state = 21, .external_lex_state = 8}, - [4455] = {.lex_state = 21, .external_lex_state = 8}, - [4456] = {.lex_state = 21, .external_lex_state = 8}, - [4457] = {.lex_state = 21, .external_lex_state = 8}, - [4458] = {.lex_state = 21, .external_lex_state = 8}, - [4459] = {.lex_state = 21, .external_lex_state = 8}, + [4452] = {.lex_state = 14, .external_lex_state = 6}, + [4453] = {.lex_state = 14, .external_lex_state = 6}, + [4454] = {.lex_state = 14, .external_lex_state = 6}, + [4455] = {.lex_state = 14, .external_lex_state = 6}, + [4456] = {.lex_state = 14, .external_lex_state = 6}, + [4457] = {.lex_state = 14, .external_lex_state = 6}, + [4458] = {.lex_state = 14, .external_lex_state = 6}, + [4459] = {.lex_state = 14, .external_lex_state = 6}, [4460] = {.lex_state = 14, .external_lex_state = 6}, - [4461] = {.lex_state = 21, .external_lex_state = 8}, + [4461] = {.lex_state = 14, .external_lex_state = 6}, [4462] = {.lex_state = 14, .external_lex_state = 6}, - [4463] = {.lex_state = 21, .external_lex_state = 8}, - [4464] = {.lex_state = 21, .external_lex_state = 8}, + [4463] = {.lex_state = 14, .external_lex_state = 6}, + [4464] = {.lex_state = 14, .external_lex_state = 6}, [4465] = {.lex_state = 14, .external_lex_state = 6}, - [4466] = {.lex_state = 21, .external_lex_state = 8}, - [4467] = {.lex_state = 21, .external_lex_state = 8}, - [4468] = {.lex_state = 318, .external_lex_state = 2}, - [4469] = {.lex_state = 21, .external_lex_state = 8}, + [4466] = {.lex_state = 14, .external_lex_state = 6}, + [4467] = {.lex_state = 14, .external_lex_state = 6}, + [4468] = {.lex_state = 14, .external_lex_state = 6}, + [4469] = {.lex_state = 14, .external_lex_state = 6}, [4470] = {.lex_state = 14, .external_lex_state = 6}, - [4471] = {.lex_state = 21, .external_lex_state = 8}, - [4472] = {.lex_state = 21, .external_lex_state = 8}, - [4473] = {.lex_state = 21, .external_lex_state = 8}, - [4474] = {.lex_state = 21, .external_lex_state = 8}, - [4475] = {.lex_state = 21, .external_lex_state = 8}, - [4476] = {.lex_state = 21, .external_lex_state = 8}, - [4477] = {.lex_state = 21, .external_lex_state = 8}, - [4478] = {.lex_state = 21, .external_lex_state = 8}, - [4479] = {.lex_state = 21, .external_lex_state = 8}, - [4480] = {.lex_state = 21, .external_lex_state = 8}, - [4481] = {.lex_state = 21, .external_lex_state = 8}, + [4471] = {.lex_state = 14, .external_lex_state = 6}, + [4472] = {.lex_state = 14, .external_lex_state = 6}, + [4473] = {.lex_state = 14, .external_lex_state = 6}, + [4474] = {.lex_state = 14, .external_lex_state = 6}, + [4475] = {.lex_state = 14, .external_lex_state = 6}, + [4476] = {.lex_state = 14, .external_lex_state = 6}, + [4477] = {.lex_state = 14, .external_lex_state = 6}, + [4478] = {.lex_state = 14, .external_lex_state = 6}, + [4479] = {.lex_state = 14, .external_lex_state = 6}, + [4480] = {.lex_state = 14, .external_lex_state = 6}, + [4481] = {.lex_state = 14, .external_lex_state = 6}, [4482] = {.lex_state = 14, .external_lex_state = 6}, [4483] = {.lex_state = 14, .external_lex_state = 6}, - [4484] = {.lex_state = 21, .external_lex_state = 8}, + [4484] = {.lex_state = 14, .external_lex_state = 6}, [4485] = {.lex_state = 14, .external_lex_state = 6}, - [4486] = {.lex_state = 21, .external_lex_state = 8}, - [4487] = {.lex_state = 318, .external_lex_state = 2}, - [4488] = {.lex_state = 21, .external_lex_state = 8}, - [4489] = {.lex_state = 21, .external_lex_state = 8}, - [4490] = {.lex_state = 21, .external_lex_state = 8}, - [4491] = {.lex_state = 21, .external_lex_state = 8}, - [4492] = {.lex_state = 21, .external_lex_state = 8}, + [4486] = {.lex_state = 14, .external_lex_state = 6}, + [4487] = {.lex_state = 14, .external_lex_state = 6}, + [4488] = {.lex_state = 14, .external_lex_state = 6}, + [4489] = {.lex_state = 14, .external_lex_state = 6}, + [4490] = {.lex_state = 14, .external_lex_state = 6}, + [4491] = {.lex_state = 14, .external_lex_state = 6}, + [4492] = {.lex_state = 14, .external_lex_state = 6}, [4493] = {.lex_state = 14, .external_lex_state = 6}, - [4494] = {.lex_state = 21, .external_lex_state = 8}, - [4495] = {.lex_state = 21, .external_lex_state = 8}, - [4496] = {.lex_state = 21, .external_lex_state = 8}, - [4497] = {.lex_state = 21, .external_lex_state = 8}, + [4494] = {.lex_state = 14, .external_lex_state = 6}, + [4495] = {.lex_state = 14, .external_lex_state = 6}, + [4496] = {.lex_state = 14, .external_lex_state = 6}, + [4497] = {.lex_state = 14, .external_lex_state = 6}, [4498] = {.lex_state = 14, .external_lex_state = 6}, [4499] = {.lex_state = 14, .external_lex_state = 6}, - [4500] = {.lex_state = 21, .external_lex_state = 8}, - [4501] = {.lex_state = 21, .external_lex_state = 8}, + [4500] = {.lex_state = 14, .external_lex_state = 6}, + [4501] = {.lex_state = 14, .external_lex_state = 6}, [4502] = {.lex_state = 14, .external_lex_state = 6}, [4503] = {.lex_state = 14, .external_lex_state = 6}, - [4504] = {.lex_state = 21, .external_lex_state = 8}, - [4505] = {.lex_state = 21, .external_lex_state = 8}, - [4506] = {.lex_state = 21, .external_lex_state = 8}, - [4507] = {.lex_state = 21, .external_lex_state = 8}, - [4508] = {.lex_state = 21, .external_lex_state = 8}, - [4509] = {.lex_state = 21, .external_lex_state = 8}, - [4510] = {.lex_state = 21, .external_lex_state = 8}, + [4504] = {.lex_state = 14, .external_lex_state = 6}, + [4505] = {.lex_state = 14, .external_lex_state = 6}, + [4506] = {.lex_state = 14, .external_lex_state = 6}, + [4507] = {.lex_state = 14, .external_lex_state = 6}, + [4508] = {.lex_state = 14, .external_lex_state = 6}, + [4509] = {.lex_state = 14, .external_lex_state = 6}, + [4510] = {.lex_state = 14, .external_lex_state = 6}, [4511] = {.lex_state = 14, .external_lex_state = 6}, - [4512] = {.lex_state = 21, .external_lex_state = 8}, + [4512] = {.lex_state = 14, .external_lex_state = 6}, [4513] = {.lex_state = 14, .external_lex_state = 6}, [4514] = {.lex_state = 14, .external_lex_state = 6}, [4515] = {.lex_state = 14, .external_lex_state = 6}, @@ -28364,25 +28015,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4534] = {.lex_state = 14, .external_lex_state = 6}, [4535] = {.lex_state = 14, .external_lex_state = 6}, [4536] = {.lex_state = 14, .external_lex_state = 6}, - [4537] = {.lex_state = 14, .external_lex_state = 6}, + [4537] = {.lex_state = 12, .external_lex_state = 5}, [4538] = {.lex_state = 14, .external_lex_state = 6}, [4539] = {.lex_state = 14, .external_lex_state = 6}, [4540] = {.lex_state = 14, .external_lex_state = 6}, [4541] = {.lex_state = 14, .external_lex_state = 6}, [4542] = {.lex_state = 14, .external_lex_state = 6}, [4543] = {.lex_state = 14, .external_lex_state = 6}, - [4544] = {.lex_state = 14, .external_lex_state = 6}, - [4545] = {.lex_state = 14, .external_lex_state = 6}, + [4544] = {.lex_state = 12, .external_lex_state = 5}, + [4545] = {.lex_state = 12, .external_lex_state = 5}, [4546] = {.lex_state = 14, .external_lex_state = 6}, [4547] = {.lex_state = 14, .external_lex_state = 6}, - [4548] = {.lex_state = 14, .external_lex_state = 6}, - [4549] = {.lex_state = 14, .external_lex_state = 6}, + [4548] = {.lex_state = 12, .external_lex_state = 5}, + [4549] = {.lex_state = 14, .external_lex_state = 7}, [4550] = {.lex_state = 14, .external_lex_state = 6}, - [4551] = {.lex_state = 14, .external_lex_state = 6}, + [4551] = {.lex_state = 14, .external_lex_state = 7}, [4552] = {.lex_state = 14, .external_lex_state = 6}, [4553] = {.lex_state = 14, .external_lex_state = 6}, [4554] = {.lex_state = 14, .external_lex_state = 6}, - [4555] = {.lex_state = 14, .external_lex_state = 6}, + [4555] = {.lex_state = 14, .external_lex_state = 7}, [4556] = {.lex_state = 14, .external_lex_state = 6}, [4557] = {.lex_state = 14, .external_lex_state = 6}, [4558] = {.lex_state = 14, .external_lex_state = 6}, @@ -28393,9 +28044,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4563] = {.lex_state = 14, .external_lex_state = 6}, [4564] = {.lex_state = 14, .external_lex_state = 6}, [4565] = {.lex_state = 14, .external_lex_state = 6}, - [4566] = {.lex_state = 14, .external_lex_state = 6}, - [4567] = {.lex_state = 14, .external_lex_state = 6}, - [4568] = {.lex_state = 14, .external_lex_state = 6}, + [4566] = {.lex_state = 14, .external_lex_state = 7}, + [4567] = {.lex_state = 12, .external_lex_state = 5}, + [4568] = {.lex_state = 12, .external_lex_state = 5}, [4569] = {.lex_state = 14, .external_lex_state = 6}, [4570] = {.lex_state = 14, .external_lex_state = 6}, [4571] = {.lex_state = 14, .external_lex_state = 6}, @@ -28421,25 +28072,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4591] = {.lex_state = 14, .external_lex_state = 6}, [4592] = {.lex_state = 14, .external_lex_state = 6}, [4593] = {.lex_state = 14, .external_lex_state = 6}, - [4594] = {.lex_state = 14, .external_lex_state = 6}, + [4594] = {.lex_state = 14, .external_lex_state = 7}, [4595] = {.lex_state = 14, .external_lex_state = 6}, [4596] = {.lex_state = 14, .external_lex_state = 6}, [4597] = {.lex_state = 14, .external_lex_state = 6}, [4598] = {.lex_state = 14, .external_lex_state = 6}, - [4599] = {.lex_state = 14, .external_lex_state = 6}, + [4599] = {.lex_state = 14, .external_lex_state = 7}, [4600] = {.lex_state = 14, .external_lex_state = 6}, [4601] = {.lex_state = 14, .external_lex_state = 6}, [4602] = {.lex_state = 14, .external_lex_state = 6}, [4603] = {.lex_state = 14, .external_lex_state = 6}, - [4604] = {.lex_state = 14, .external_lex_state = 6}, - [4605] = {.lex_state = 14, .external_lex_state = 6}, + [4604] = {.lex_state = 12, .external_lex_state = 5}, + [4605] = {.lex_state = 12, .external_lex_state = 5}, [4606] = {.lex_state = 14, .external_lex_state = 6}, [4607] = {.lex_state = 14, .external_lex_state = 6}, - [4608] = {.lex_state = 14, .external_lex_state = 6}, + [4608] = {.lex_state = 12, .external_lex_state = 5}, [4609] = {.lex_state = 14, .external_lex_state = 6}, - [4610] = {.lex_state = 14, .external_lex_state = 6}, + [4610] = {.lex_state = 12, .external_lex_state = 5}, [4611] = {.lex_state = 14, .external_lex_state = 6}, - [4612] = {.lex_state = 14, .external_lex_state = 6}, + [4612] = {.lex_state = 14, .external_lex_state = 7}, [4613] = {.lex_state = 14, .external_lex_state = 6}, [4614] = {.lex_state = 14, .external_lex_state = 6}, [4615] = {.lex_state = 14, .external_lex_state = 6}, @@ -28455,111 +28106,111 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4625] = {.lex_state = 14, .external_lex_state = 6}, [4626] = {.lex_state = 14, .external_lex_state = 6}, [4627] = {.lex_state = 14, .external_lex_state = 6}, - [4628] = {.lex_state = 14, .external_lex_state = 6}, + [4628] = {.lex_state = 14, .external_lex_state = 7}, [4629] = {.lex_state = 14, .external_lex_state = 6}, - [4630] = {.lex_state = 14, .external_lex_state = 6}, + [4630] = {.lex_state = 12, .external_lex_state = 5}, [4631] = {.lex_state = 14, .external_lex_state = 6}, [4632] = {.lex_state = 14, .external_lex_state = 6}, - [4633] = {.lex_state = 14, .external_lex_state = 6}, + [4633] = {.lex_state = 12, .external_lex_state = 5}, [4634] = {.lex_state = 14, .external_lex_state = 6}, [4635] = {.lex_state = 14, .external_lex_state = 6}, [4636] = {.lex_state = 14, .external_lex_state = 6}, [4637] = {.lex_state = 14, .external_lex_state = 6}, [4638] = {.lex_state = 14, .external_lex_state = 6}, [4639] = {.lex_state = 14, .external_lex_state = 6}, - [4640] = {.lex_state = 14, .external_lex_state = 6}, - [4641] = {.lex_state = 14, .external_lex_state = 6}, + [4640] = {.lex_state = 12, .external_lex_state = 5}, + [4641] = {.lex_state = 14, .external_lex_state = 7}, [4642] = {.lex_state = 14, .external_lex_state = 6}, - [4643] = {.lex_state = 14, .external_lex_state = 6}, - [4644] = {.lex_state = 14, .external_lex_state = 6}, - [4645] = {.lex_state = 14, .external_lex_state = 6}, - [4646] = {.lex_state = 14, .external_lex_state = 6}, + [4643] = {.lex_state = 12, .external_lex_state = 5}, + [4644] = {.lex_state = 14, .external_lex_state = 7}, + [4645] = {.lex_state = 12, .external_lex_state = 5}, + [4646] = {.lex_state = 12, .external_lex_state = 5}, [4647] = {.lex_state = 14, .external_lex_state = 6}, [4648] = {.lex_state = 14, .external_lex_state = 6}, [4649] = {.lex_state = 14, .external_lex_state = 6}, - [4650] = {.lex_state = 12, .external_lex_state = 5}, - [4651] = {.lex_state = 14, .external_lex_state = 6}, + [4650] = {.lex_state = 14, .external_lex_state = 6}, + [4651] = {.lex_state = 14, .external_lex_state = 7}, [4652] = {.lex_state = 14, .external_lex_state = 6}, [4653] = {.lex_state = 14, .external_lex_state = 6}, [4654] = {.lex_state = 14, .external_lex_state = 6}, [4655] = {.lex_state = 14, .external_lex_state = 6}, [4656] = {.lex_state = 14, .external_lex_state = 6}, - [4657] = {.lex_state = 12, .external_lex_state = 5}, - [4658] = {.lex_state = 12, .external_lex_state = 5}, + [4657] = {.lex_state = 14, .external_lex_state = 6}, + [4658] = {.lex_state = 14, .external_lex_state = 6}, [4659] = {.lex_state = 14, .external_lex_state = 6}, [4660] = {.lex_state = 14, .external_lex_state = 6}, - [4661] = {.lex_state = 14, .external_lex_state = 6}, + [4661] = {.lex_state = 12, .external_lex_state = 5}, [4662] = {.lex_state = 14, .external_lex_state = 6}, - [4663] = {.lex_state = 14, .external_lex_state = 7}, - [4664] = {.lex_state = 12, .external_lex_state = 5}, - [4665] = {.lex_state = 14, .external_lex_state = 6}, + [4663] = {.lex_state = 12, .external_lex_state = 5}, + [4664] = {.lex_state = 14, .external_lex_state = 6}, + [4665] = {.lex_state = 12, .external_lex_state = 5}, [4666] = {.lex_state = 14, .external_lex_state = 6}, [4667] = {.lex_state = 14, .external_lex_state = 6}, - [4668] = {.lex_state = 14, .external_lex_state = 6}, + [4668] = {.lex_state = 12, .external_lex_state = 5}, [4669] = {.lex_state = 14, .external_lex_state = 6}, - [4670] = {.lex_state = 14, .external_lex_state = 7}, + [4670] = {.lex_state = 12, .external_lex_state = 5}, [4671] = {.lex_state = 14, .external_lex_state = 6}, [4672] = {.lex_state = 14, .external_lex_state = 6}, - [4673] = {.lex_state = 14, .external_lex_state = 6}, + [4673] = {.lex_state = 12, .external_lex_state = 5}, [4674] = {.lex_state = 14, .external_lex_state = 6}, - [4675] = {.lex_state = 14, .external_lex_state = 7}, + [4675] = {.lex_state = 14, .external_lex_state = 6}, [4676] = {.lex_state = 14, .external_lex_state = 6}, [4677] = {.lex_state = 14, .external_lex_state = 6}, - [4678] = {.lex_state = 14, .external_lex_state = 6}, + [4678] = {.lex_state = 14, .external_lex_state = 7}, [4679] = {.lex_state = 14, .external_lex_state = 6}, [4680] = {.lex_state = 14, .external_lex_state = 6}, [4681] = {.lex_state = 14, .external_lex_state = 6}, [4682] = {.lex_state = 14, .external_lex_state = 6}, - [4683] = {.lex_state = 14, .external_lex_state = 6}, - [4684] = {.lex_state = 14, .external_lex_state = 6}, + [4683] = {.lex_state = 14, .external_lex_state = 7}, + [4684] = {.lex_state = 16, .external_lex_state = 6}, [4685] = {.lex_state = 14, .external_lex_state = 6}, - [4686] = {.lex_state = 14, .external_lex_state = 6}, - [4687] = {.lex_state = 14, .external_lex_state = 6}, + [4686] = {.lex_state = 14, .external_lex_state = 7}, + [4687] = {.lex_state = 14, .external_lex_state = 7}, [4688] = {.lex_state = 14, .external_lex_state = 6}, [4689] = {.lex_state = 14, .external_lex_state = 6}, [4690] = {.lex_state = 14, .external_lex_state = 6}, - [4691] = {.lex_state = 14, .external_lex_state = 7}, - [4692] = {.lex_state = 12, .external_lex_state = 5}, - [4693] = {.lex_state = 12, .external_lex_state = 5}, + [4691] = {.lex_state = 14, .external_lex_state = 6}, + [4692] = {.lex_state = 14, .external_lex_state = 6}, + [4693] = {.lex_state = 14, .external_lex_state = 6}, [4694] = {.lex_state = 14, .external_lex_state = 6}, - [4695] = {.lex_state = 14, .external_lex_state = 6}, - [4696] = {.lex_state = 14, .external_lex_state = 6}, - [4697] = {.lex_state = 12, .external_lex_state = 5}, + [4695] = {.lex_state = 12, .external_lex_state = 5}, + [4696] = {.lex_state = 14, .external_lex_state = 7}, + [4697] = {.lex_state = 14, .external_lex_state = 7}, [4698] = {.lex_state = 14, .external_lex_state = 6}, [4699] = {.lex_state = 14, .external_lex_state = 6}, [4700] = {.lex_state = 14, .external_lex_state = 6}, - [4701] = {.lex_state = 12, .external_lex_state = 5}, + [4701] = {.lex_state = 14, .external_lex_state = 6}, [4702] = {.lex_state = 14, .external_lex_state = 6}, [4703] = {.lex_state = 14, .external_lex_state = 6}, - [4704] = {.lex_state = 14, .external_lex_state = 6}, - [4705] = {.lex_state = 14, .external_lex_state = 6}, + [4704] = {.lex_state = 14, .external_lex_state = 7}, + [4705] = {.lex_state = 14, .external_lex_state = 7}, [4706] = {.lex_state = 14, .external_lex_state = 6}, - [4707] = {.lex_state = 14, .external_lex_state = 6}, - [4708] = {.lex_state = 14, .external_lex_state = 6}, + [4707] = {.lex_state = 14, .external_lex_state = 7}, + [4708] = {.lex_state = 14, .external_lex_state = 7}, [4709] = {.lex_state = 14, .external_lex_state = 6}, [4710] = {.lex_state = 14, .external_lex_state = 6}, [4711] = {.lex_state = 14, .external_lex_state = 6}, - [4712] = {.lex_state = 14, .external_lex_state = 6}, + [4712] = {.lex_state = 14, .external_lex_state = 7}, [4713] = {.lex_state = 14, .external_lex_state = 6}, - [4714] = {.lex_state = 14, .external_lex_state = 7}, + [4714] = {.lex_state = 14, .external_lex_state = 6}, [4715] = {.lex_state = 14, .external_lex_state = 6}, [4716] = {.lex_state = 14, .external_lex_state = 6}, [4717] = {.lex_state = 14, .external_lex_state = 6}, [4718] = {.lex_state = 14, .external_lex_state = 6}, [4719] = {.lex_state = 14, .external_lex_state = 6}, - [4720] = {.lex_state = 14, .external_lex_state = 6}, - [4721] = {.lex_state = 12, .external_lex_state = 5}, - [4722] = {.lex_state = 14, .external_lex_state = 6}, - [4723] = {.lex_state = 14, .external_lex_state = 6}, + [4720] = {.lex_state = 12, .external_lex_state = 5}, + [4721] = {.lex_state = 14, .external_lex_state = 6}, + [4722] = {.lex_state = 14, .external_lex_state = 7}, + [4723] = {.lex_state = 14, .external_lex_state = 7}, [4724] = {.lex_state = 14, .external_lex_state = 6}, - [4725] = {.lex_state = 14, .external_lex_state = 6}, - [4726] = {.lex_state = 14, .external_lex_state = 7}, - [4727] = {.lex_state = 14, .external_lex_state = 7}, + [4725] = {.lex_state = 14, .external_lex_state = 7}, + [4726] = {.lex_state = 14, .external_lex_state = 6}, + [4727] = {.lex_state = 14, .external_lex_state = 6}, [4728] = {.lex_state = 14, .external_lex_state = 6}, [4729] = {.lex_state = 14, .external_lex_state = 6}, [4730] = {.lex_state = 14, .external_lex_state = 6}, [4731] = {.lex_state = 14, .external_lex_state = 6}, - [4732] = {.lex_state = 12, .external_lex_state = 5}, + [4732] = {.lex_state = 14, .external_lex_state = 6}, [4733] = {.lex_state = 14, .external_lex_state = 6}, [4734] = {.lex_state = 14, .external_lex_state = 6}, [4735] = {.lex_state = 14, .external_lex_state = 6}, @@ -28568,17 +28219,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4738] = {.lex_state = 14, .external_lex_state = 6}, [4739] = {.lex_state = 14, .external_lex_state = 6}, [4740] = {.lex_state = 14, .external_lex_state = 6}, - [4741] = {.lex_state = 14, .external_lex_state = 6}, - [4742] = {.lex_state = 12, .external_lex_state = 5}, - [4743] = {.lex_state = 14, .external_lex_state = 6}, - [4744] = {.lex_state = 12, .external_lex_state = 5}, - [4745] = {.lex_state = 12, .external_lex_state = 5}, + [4741] = {.lex_state = 14, .external_lex_state = 7}, + [4742] = {.lex_state = 14, .external_lex_state = 6}, + [4743] = {.lex_state = 14, .external_lex_state = 7}, + [4744] = {.lex_state = 14, .external_lex_state = 6}, + [4745] = {.lex_state = 14, .external_lex_state = 6}, [4746] = {.lex_state = 14, .external_lex_state = 6}, - [4747] = {.lex_state = 14, .external_lex_state = 6}, + [4747] = {.lex_state = 14, .external_lex_state = 7}, [4748] = {.lex_state = 14, .external_lex_state = 6}, [4749] = {.lex_state = 14, .external_lex_state = 6}, [4750] = {.lex_state = 14, .external_lex_state = 6}, - [4751] = {.lex_state = 14, .external_lex_state = 6}, + [4751] = {.lex_state = 14, .external_lex_state = 7}, [4752] = {.lex_state = 14, .external_lex_state = 6}, [4753] = {.lex_state = 14, .external_lex_state = 6}, [4754] = {.lex_state = 14, .external_lex_state = 6}, @@ -28588,67 +28239,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4758] = {.lex_state = 14, .external_lex_state = 6}, [4759] = {.lex_state = 14, .external_lex_state = 6}, [4760] = {.lex_state = 14, .external_lex_state = 6}, - [4761] = {.lex_state = 14, .external_lex_state = 7}, + [4761] = {.lex_state = 14, .external_lex_state = 6}, [4762] = {.lex_state = 14, .external_lex_state = 6}, - [4763] = {.lex_state = 12, .external_lex_state = 5}, - [4764] = {.lex_state = 16, .external_lex_state = 6}, - [4765] = {.lex_state = 14, .external_lex_state = 6}, + [4763] = {.lex_state = 14, .external_lex_state = 6}, + [4764] = {.lex_state = 14, .external_lex_state = 6}, + [4765] = {.lex_state = 14, .external_lex_state = 7}, [4766] = {.lex_state = 14, .external_lex_state = 6}, [4767] = {.lex_state = 14, .external_lex_state = 6}, - [4768] = {.lex_state = 12, .external_lex_state = 5}, + [4768] = {.lex_state = 14, .external_lex_state = 6}, [4769] = {.lex_state = 14, .external_lex_state = 6}, - [4770] = {.lex_state = 14, .external_lex_state = 7}, + [4770] = {.lex_state = 14, .external_lex_state = 6}, [4771] = {.lex_state = 14, .external_lex_state = 6}, [4772] = {.lex_state = 14, .external_lex_state = 6}, [4773] = {.lex_state = 14, .external_lex_state = 6}, [4774] = {.lex_state = 14, .external_lex_state = 6}, [4775] = {.lex_state = 14, .external_lex_state = 6}, - [4776] = {.lex_state = 14, .external_lex_state = 6}, - [4777] = {.lex_state = 12, .external_lex_state = 5}, - [4778] = {.lex_state = 14, .external_lex_state = 6}, - [4779] = {.lex_state = 14, .external_lex_state = 7}, + [4776] = {.lex_state = 14, .external_lex_state = 7}, + [4777] = {.lex_state = 14, .external_lex_state = 6}, + [4778] = {.lex_state = 14, .external_lex_state = 7}, + [4779] = {.lex_state = 14, .external_lex_state = 6}, [4780] = {.lex_state = 14, .external_lex_state = 6}, - [4781] = {.lex_state = 14, .external_lex_state = 6}, + [4781] = {.lex_state = 14, .external_lex_state = 7}, [4782] = {.lex_state = 14, .external_lex_state = 6}, - [4783] = {.lex_state = 14, .external_lex_state = 6}, - [4784] = {.lex_state = 12, .external_lex_state = 5}, + [4783] = {.lex_state = 14, .external_lex_state = 7}, + [4784] = {.lex_state = 14, .external_lex_state = 6}, [4785] = {.lex_state = 14, .external_lex_state = 6}, [4786] = {.lex_state = 14, .external_lex_state = 6}, [4787] = {.lex_state = 14, .external_lex_state = 6}, [4788] = {.lex_state = 14, .external_lex_state = 7}, [4789] = {.lex_state = 14, .external_lex_state = 6}, [4790] = {.lex_state = 14, .external_lex_state = 6}, - [4791] = {.lex_state = 14, .external_lex_state = 6}, + [4791] = {.lex_state = 14, .external_lex_state = 7}, [4792] = {.lex_state = 14, .external_lex_state = 6}, [4793] = {.lex_state = 14, .external_lex_state = 6}, [4794] = {.lex_state = 14, .external_lex_state = 6}, - [4795] = {.lex_state = 14, .external_lex_state = 7}, + [4795] = {.lex_state = 14, .external_lex_state = 6}, [4796] = {.lex_state = 14, .external_lex_state = 6}, [4797] = {.lex_state = 14, .external_lex_state = 6}, - [4798] = {.lex_state = 14, .external_lex_state = 6}, + [4798] = {.lex_state = 14, .external_lex_state = 7}, [4799] = {.lex_state = 14, .external_lex_state = 7}, [4800] = {.lex_state = 14, .external_lex_state = 6}, [4801] = {.lex_state = 14, .external_lex_state = 6}, [4802] = {.lex_state = 14, .external_lex_state = 6}, - [4803] = {.lex_state = 14, .external_lex_state = 7}, - [4804] = {.lex_state = 12, .external_lex_state = 5}, - [4805] = {.lex_state = 14, .external_lex_state = 6}, + [4803] = {.lex_state = 14, .external_lex_state = 6}, + [4804] = {.lex_state = 14, .external_lex_state = 6}, + [4805] = {.lex_state = 14, .external_lex_state = 7}, [4806] = {.lex_state = 14, .external_lex_state = 7}, - [4807] = {.lex_state = 14, .external_lex_state = 6}, + [4807] = {.lex_state = 14, .external_lex_state = 7}, [4808] = {.lex_state = 14, .external_lex_state = 7}, [4809] = {.lex_state = 14, .external_lex_state = 6}, [4810] = {.lex_state = 14, .external_lex_state = 6}, - [4811] = {.lex_state = 12, .external_lex_state = 5}, + [4811] = {.lex_state = 14, .external_lex_state = 6}, [4812] = {.lex_state = 14, .external_lex_state = 6}, [4813] = {.lex_state = 14, .external_lex_state = 6}, - [4814] = {.lex_state = 12, .external_lex_state = 5}, - [4815] = {.lex_state = 14, .external_lex_state = 6}, - [4816] = {.lex_state = 12, .external_lex_state = 5}, - [4817] = {.lex_state = 12, .external_lex_state = 5}, - [4818] = {.lex_state = 12, .external_lex_state = 5}, + [4814] = {.lex_state = 14, .external_lex_state = 7}, + [4815] = {.lex_state = 14, .external_lex_state = 7}, + [4816] = {.lex_state = 14, .external_lex_state = 7}, + [4817] = {.lex_state = 14, .external_lex_state = 6}, + [4818] = {.lex_state = 14, .external_lex_state = 6}, [4819] = {.lex_state = 14, .external_lex_state = 6}, [4820] = {.lex_state = 14, .external_lex_state = 6}, - [4821] = {.lex_state = 14, .external_lex_state = 7}, + [4821] = {.lex_state = 12, .external_lex_state = 5}, [4822] = {.lex_state = 14, .external_lex_state = 6}, [4823] = {.lex_state = 14, .external_lex_state = 6}, [4824] = {.lex_state = 14, .external_lex_state = 6}, @@ -28658,35 +28309,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4828] = {.lex_state = 14, .external_lex_state = 6}, [4829] = {.lex_state = 14, .external_lex_state = 6}, [4830] = {.lex_state = 14, .external_lex_state = 6}, - [4831] = {.lex_state = 12, .external_lex_state = 5}, + [4831] = {.lex_state = 14, .external_lex_state = 6}, [4832] = {.lex_state = 14, .external_lex_state = 6}, [4833] = {.lex_state = 14, .external_lex_state = 6}, [4834] = {.lex_state = 14, .external_lex_state = 6}, - [4835] = {.lex_state = 14, .external_lex_state = 6}, + [4835] = {.lex_state = 12, .external_lex_state = 5}, [4836] = {.lex_state = 14, .external_lex_state = 6}, [4837] = {.lex_state = 14, .external_lex_state = 6}, [4838] = {.lex_state = 14, .external_lex_state = 6}, - [4839] = {.lex_state = 12, .external_lex_state = 5}, + [4839] = {.lex_state = 14, .external_lex_state = 6}, [4840] = {.lex_state = 14, .external_lex_state = 6}, [4841] = {.lex_state = 14, .external_lex_state = 6}, [4842] = {.lex_state = 14, .external_lex_state = 6}, [4843] = {.lex_state = 14, .external_lex_state = 6}, [4844] = {.lex_state = 14, .external_lex_state = 6}, - [4845] = {.lex_state = 14, .external_lex_state = 7}, + [4845] = {.lex_state = 14, .external_lex_state = 6}, [4846] = {.lex_state = 14, .external_lex_state = 6}, - [4847] = {.lex_state = 14, .external_lex_state = 6}, + [4847] = {.lex_state = 12, .external_lex_state = 5}, [4848] = {.lex_state = 14, .external_lex_state = 7}, [4849] = {.lex_state = 14, .external_lex_state = 6}, [4850] = {.lex_state = 14, .external_lex_state = 6}, [4851] = {.lex_state = 14, .external_lex_state = 6}, - [4852] = {.lex_state = 14, .external_lex_state = 7}, + [4852] = {.lex_state = 14, .external_lex_state = 6}, [4853] = {.lex_state = 14, .external_lex_state = 6}, [4854] = {.lex_state = 14, .external_lex_state = 6}, [4855] = {.lex_state = 14, .external_lex_state = 6}, [4856] = {.lex_state = 14, .external_lex_state = 6}, - [4857] = {.lex_state = 14, .external_lex_state = 6}, - [4858] = {.lex_state = 14, .external_lex_state = 7}, - [4859] = {.lex_state = 14, .external_lex_state = 7}, + [4857] = {.lex_state = 14, .external_lex_state = 7}, + [4858] = {.lex_state = 14, .external_lex_state = 6}, + [4859] = {.lex_state = 14, .external_lex_state = 6}, [4860] = {.lex_state = 14, .external_lex_state = 6}, [4861] = {.lex_state = 14, .external_lex_state = 6}, [4862] = {.lex_state = 14, .external_lex_state = 6}, @@ -28694,244 +28345,244 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4864] = {.lex_state = 14, .external_lex_state = 6}, [4865] = {.lex_state = 14, .external_lex_state = 6}, [4866] = {.lex_state = 14, .external_lex_state = 6}, - [4867] = {.lex_state = 14, .external_lex_state = 7}, + [4867] = {.lex_state = 14, .external_lex_state = 6}, [4868] = {.lex_state = 14, .external_lex_state = 6}, - [4869] = {.lex_state = 14, .external_lex_state = 6}, + [4869] = {.lex_state = 14, .external_lex_state = 7}, [4870] = {.lex_state = 14, .external_lex_state = 6}, [4871] = {.lex_state = 14, .external_lex_state = 6}, [4872] = {.lex_state = 14, .external_lex_state = 6}, [4873] = {.lex_state = 14, .external_lex_state = 6}, [4874] = {.lex_state = 14, .external_lex_state = 6}, - [4875] = {.lex_state = 14, .external_lex_state = 7}, - [4876] = {.lex_state = 14, .external_lex_state = 7}, + [4875] = {.lex_state = 14, .external_lex_state = 6}, + [4876] = {.lex_state = 14, .external_lex_state = 6}, [4877] = {.lex_state = 14, .external_lex_state = 6}, [4878] = {.lex_state = 14, .external_lex_state = 6}, - [4879] = {.lex_state = 12, .external_lex_state = 5}, - [4880] = {.lex_state = 14, .external_lex_state = 7}, - [4881] = {.lex_state = 12, .external_lex_state = 5}, + [4879] = {.lex_state = 14, .external_lex_state = 6}, + [4880] = {.lex_state = 14, .external_lex_state = 6}, + [4881] = {.lex_state = 14, .external_lex_state = 6}, [4882] = {.lex_state = 14, .external_lex_state = 6}, [4883] = {.lex_state = 14, .external_lex_state = 6}, [4884] = {.lex_state = 14, .external_lex_state = 6}, - [4885] = {.lex_state = 14, .external_lex_state = 6}, + [4885] = {.lex_state = 12, .external_lex_state = 5}, [4886] = {.lex_state = 14, .external_lex_state = 6}, - [4887] = {.lex_state = 14, .external_lex_state = 7}, + [4887] = {.lex_state = 14, .external_lex_state = 6}, [4888] = {.lex_state = 14, .external_lex_state = 6}, [4889] = {.lex_state = 14, .external_lex_state = 6}, [4890] = {.lex_state = 14, .external_lex_state = 6}, [4891] = {.lex_state = 14, .external_lex_state = 6}, - [4892] = {.lex_state = 14, .external_lex_state = 6}, + [4892] = {.lex_state = 14, .external_lex_state = 7}, [4893] = {.lex_state = 14, .external_lex_state = 6}, [4894] = {.lex_state = 14, .external_lex_state = 7}, - [4895] = {.lex_state = 14, .external_lex_state = 6}, - [4896] = {.lex_state = 14, .external_lex_state = 6}, - [4897] = {.lex_state = 14, .external_lex_state = 6}, - [4898] = {.lex_state = 14, .external_lex_state = 6}, - [4899] = {.lex_state = 14, .external_lex_state = 6}, - [4900] = {.lex_state = 14, .external_lex_state = 6}, - [4901] = {.lex_state = 14, .external_lex_state = 6}, + [4895] = {.lex_state = 12, .external_lex_state = 5}, + [4896] = {.lex_state = 14, .external_lex_state = 7}, + [4897] = {.lex_state = 14, .external_lex_state = 7}, + [4898] = {.lex_state = 14, .external_lex_state = 7}, + [4899] = {.lex_state = 14, .external_lex_state = 7}, + [4900] = {.lex_state = 14, .external_lex_state = 7}, + [4901] = {.lex_state = 14, .external_lex_state = 7}, [4902] = {.lex_state = 14, .external_lex_state = 6}, - [4903] = {.lex_state = 14, .external_lex_state = 6}, + [4903] = {.lex_state = 14, .external_lex_state = 7}, [4904] = {.lex_state = 14, .external_lex_state = 6}, [4905] = {.lex_state = 14, .external_lex_state = 6}, - [4906] = {.lex_state = 14, .external_lex_state = 6}, + [4906] = {.lex_state = 14, .external_lex_state = 7}, [4907] = {.lex_state = 14, .external_lex_state = 7}, - [4908] = {.lex_state = 14, .external_lex_state = 7}, + [4908] = {.lex_state = 14, .external_lex_state = 6}, [4909] = {.lex_state = 14, .external_lex_state = 6}, - [4910] = {.lex_state = 14, .external_lex_state = 6}, + [4910] = {.lex_state = 14, .external_lex_state = 7}, [4911] = {.lex_state = 14, .external_lex_state = 7}, [4912] = {.lex_state = 14, .external_lex_state = 7}, - [4913] = {.lex_state = 14, .external_lex_state = 6}, - [4914] = {.lex_state = 14, .external_lex_state = 6}, - [4915] = {.lex_state = 14, .external_lex_state = 6}, - [4916] = {.lex_state = 14, .external_lex_state = 6}, - [4917] = {.lex_state = 14, .external_lex_state = 6}, - [4918] = {.lex_state = 14, .external_lex_state = 6}, + [4913] = {.lex_state = 14, .external_lex_state = 7}, + [4914] = {.lex_state = 14, .external_lex_state = 7}, + [4915] = {.lex_state = 14, .external_lex_state = 7}, + [4916] = {.lex_state = 14, .external_lex_state = 7}, + [4917] = {.lex_state = 14, .external_lex_state = 7}, + [4918] = {.lex_state = 12, .external_lex_state = 5}, [4919] = {.lex_state = 14, .external_lex_state = 6}, - [4920] = {.lex_state = 14, .external_lex_state = 6}, - [4921] = {.lex_state = 14, .external_lex_state = 6}, - [4922] = {.lex_state = 14, .external_lex_state = 6}, + [4920] = {.lex_state = 14, .external_lex_state = 7}, + [4921] = {.lex_state = 12, .external_lex_state = 5}, + [4922] = {.lex_state = 14, .external_lex_state = 7}, [4923] = {.lex_state = 14, .external_lex_state = 7}, - [4924] = {.lex_state = 14, .external_lex_state = 6}, - [4925] = {.lex_state = 14, .external_lex_state = 6}, - [4926] = {.lex_state = 14, .external_lex_state = 6}, + [4924] = {.lex_state = 12, .external_lex_state = 5}, + [4925] = {.lex_state = 12, .external_lex_state = 5}, + [4926] = {.lex_state = 14, .external_lex_state = 7}, [4927] = {.lex_state = 14, .external_lex_state = 6}, [4928] = {.lex_state = 14, .external_lex_state = 7}, - [4929] = {.lex_state = 14, .external_lex_state = 6}, - [4930] = {.lex_state = 14, .external_lex_state = 6}, - [4931] = {.lex_state = 14, .external_lex_state = 6}, - [4932] = {.lex_state = 14, .external_lex_state = 6}, - [4933] = {.lex_state = 14, .external_lex_state = 6}, - [4934] = {.lex_state = 14, .external_lex_state = 6}, - [4935] = {.lex_state = 14, .external_lex_state = 6}, - [4936] = {.lex_state = 14, .external_lex_state = 6}, - [4937] = {.lex_state = 14, .external_lex_state = 6}, + [4929] = {.lex_state = 14, .external_lex_state = 7}, + [4930] = {.lex_state = 14, .external_lex_state = 7}, + [4931] = {.lex_state = 12, .external_lex_state = 5}, + [4932] = {.lex_state = 14, .external_lex_state = 7}, + [4933] = {.lex_state = 14, .external_lex_state = 7}, + [4934] = {.lex_state = 14, .external_lex_state = 7}, + [4935] = {.lex_state = 12, .external_lex_state = 5}, + [4936] = {.lex_state = 12, .external_lex_state = 5}, + [4937] = {.lex_state = 12, .external_lex_state = 5}, [4938] = {.lex_state = 14, .external_lex_state = 7}, - [4939] = {.lex_state = 14, .external_lex_state = 6}, - [4940] = {.lex_state = 14, .external_lex_state = 6}, - [4941] = {.lex_state = 14, .external_lex_state = 6}, - [4942] = {.lex_state = 14, .external_lex_state = 6}, - [4943] = {.lex_state = 14, .external_lex_state = 6}, - [4944] = {.lex_state = 14, .external_lex_state = 6}, - [4945] = {.lex_state = 14, .external_lex_state = 6}, - [4946] = {.lex_state = 14, .external_lex_state = 6}, + [4939] = {.lex_state = 12, .external_lex_state = 5}, + [4940] = {.lex_state = 12, .external_lex_state = 5}, + [4941] = {.lex_state = 14, .external_lex_state = 7}, + [4942] = {.lex_state = 14, .external_lex_state = 7}, + [4943] = {.lex_state = 12, .external_lex_state = 5}, + [4944] = {.lex_state = 14, .external_lex_state = 7}, + [4945] = {.lex_state = 12, .external_lex_state = 5}, + [4946] = {.lex_state = 12, .external_lex_state = 5}, [4947] = {.lex_state = 14, .external_lex_state = 7}, - [4948] = {.lex_state = 14, .external_lex_state = 6}, - [4949] = {.lex_state = 14, .external_lex_state = 6}, + [4948] = {.lex_state = 14, .external_lex_state = 7}, + [4949] = {.lex_state = 14, .external_lex_state = 7}, [4950] = {.lex_state = 14, .external_lex_state = 7}, - [4951] = {.lex_state = 14, .external_lex_state = 6}, - [4952] = {.lex_state = 14, .external_lex_state = 6}, - [4953] = {.lex_state = 14, .external_lex_state = 6}, + [4951] = {.lex_state = 14, .external_lex_state = 7}, + [4952] = {.lex_state = 14, .external_lex_state = 7}, + [4953] = {.lex_state = 14, .external_lex_state = 7}, [4954] = {.lex_state = 14, .external_lex_state = 6}, - [4955] = {.lex_state = 14, .external_lex_state = 6}, - [4956] = {.lex_state = 14, .external_lex_state = 6}, + [4955] = {.lex_state = 14, .external_lex_state = 7}, + [4956] = {.lex_state = 14, .external_lex_state = 7}, [4957] = {.lex_state = 14, .external_lex_state = 6}, [4958] = {.lex_state = 14, .external_lex_state = 7}, - [4959] = {.lex_state = 14, .external_lex_state = 6}, + [4959] = {.lex_state = 14, .external_lex_state = 7}, [4960] = {.lex_state = 12, .external_lex_state = 5}, - [4961] = {.lex_state = 14, .external_lex_state = 6}, - [4962] = {.lex_state = 14, .external_lex_state = 6}, - [4963] = {.lex_state = 14, .external_lex_state = 7}, - [4964] = {.lex_state = 14, .external_lex_state = 6}, - [4965] = {.lex_state = 14, .external_lex_state = 6}, - [4966] = {.lex_state = 14, .external_lex_state = 6}, - [4967] = {.lex_state = 14, .external_lex_state = 7}, - [4968] = {.lex_state = 14, .external_lex_state = 6}, + [4961] = {.lex_state = 12, .external_lex_state = 5}, + [4962] = {.lex_state = 14, .external_lex_state = 7}, + [4963] = {.lex_state = 14, .external_lex_state = 6}, + [4964] = {.lex_state = 12, .external_lex_state = 5}, + [4965] = {.lex_state = 12, .external_lex_state = 5}, + [4966] = {.lex_state = 12, .external_lex_state = 5}, + [4967] = {.lex_state = 12, .external_lex_state = 5}, + [4968] = {.lex_state = 14, .external_lex_state = 7}, [4969] = {.lex_state = 14, .external_lex_state = 7}, - [4970] = {.lex_state = 14, .external_lex_state = 7}, + [4970] = {.lex_state = 14, .external_lex_state = 6}, [4971] = {.lex_state = 14, .external_lex_state = 7}, - [4972] = {.lex_state = 14, .external_lex_state = 6}, - [4973] = {.lex_state = 14, .external_lex_state = 7}, - [4974] = {.lex_state = 14, .external_lex_state = 6}, - [4975] = {.lex_state = 14, .external_lex_state = 6}, + [4972] = {.lex_state = 14, .external_lex_state = 7}, + [4973] = {.lex_state = 12, .external_lex_state = 5}, + [4974] = {.lex_state = 14, .external_lex_state = 7}, + [4975] = {.lex_state = 14, .external_lex_state = 7}, [4976] = {.lex_state = 14, .external_lex_state = 6}, - [4977] = {.lex_state = 14, .external_lex_state = 7}, - [4978] = {.lex_state = 14, .external_lex_state = 6}, - [4979] = {.lex_state = 14, .external_lex_state = 6}, - [4980] = {.lex_state = 14, .external_lex_state = 6}, - [4981] = {.lex_state = 14, .external_lex_state = 6}, + [4977] = {.lex_state = 12, .external_lex_state = 5}, + [4978] = {.lex_state = 16, .external_lex_state = 7}, + [4979] = {.lex_state = 14, .external_lex_state = 7}, + [4980] = {.lex_state = 12, .external_lex_state = 5}, + [4981] = {.lex_state = 14, .external_lex_state = 7}, [4982] = {.lex_state = 14, .external_lex_state = 7}, - [4983] = {.lex_state = 14, .external_lex_state = 6}, - [4984] = {.lex_state = 14, .external_lex_state = 6}, - [4985] = {.lex_state = 14, .external_lex_state = 6}, - [4986] = {.lex_state = 14, .external_lex_state = 6}, - [4987] = {.lex_state = 14, .external_lex_state = 6}, - [4988] = {.lex_state = 14, .external_lex_state = 6}, - [4989] = {.lex_state = 14, .external_lex_state = 6}, - [4990] = {.lex_state = 14, .external_lex_state = 6}, - [4991] = {.lex_state = 14, .external_lex_state = 6}, + [4983] = {.lex_state = 14, .external_lex_state = 7}, + [4984] = {.lex_state = 14, .external_lex_state = 7}, + [4985] = {.lex_state = 14, .external_lex_state = 7}, + [4986] = {.lex_state = 12, .external_lex_state = 5}, + [4987] = {.lex_state = 14, .external_lex_state = 7}, + [4988] = {.lex_state = 12, .external_lex_state = 5}, + [4989] = {.lex_state = 14, .external_lex_state = 7}, + [4990] = {.lex_state = 12, .external_lex_state = 5}, + [4991] = {.lex_state = 14, .external_lex_state = 7}, [4992] = {.lex_state = 14, .external_lex_state = 6}, - [4993] = {.lex_state = 14, .external_lex_state = 6}, + [4993] = {.lex_state = 14, .external_lex_state = 7}, [4994] = {.lex_state = 14, .external_lex_state = 7}, - [4995] = {.lex_state = 14, .external_lex_state = 6}, + [4995] = {.lex_state = 14, .external_lex_state = 7}, [4996] = {.lex_state = 14, .external_lex_state = 6}, - [4997] = {.lex_state = 14, .external_lex_state = 6}, - [4998] = {.lex_state = 14, .external_lex_state = 6}, - [4999] = {.lex_state = 14, .external_lex_state = 6}, - [5000] = {.lex_state = 14, .external_lex_state = 6}, - [5001] = {.lex_state = 14, .external_lex_state = 6}, - [5002] = {.lex_state = 14, .external_lex_state = 7}, - [5003] = {.lex_state = 14, .external_lex_state = 6}, - [5004] = {.lex_state = 14, .external_lex_state = 6}, + [4997] = {.lex_state = 12, .external_lex_state = 5}, + [4998] = {.lex_state = 14, .external_lex_state = 7}, + [4999] = {.lex_state = 14, .external_lex_state = 7}, + [5000] = {.lex_state = 12, .external_lex_state = 5}, + [5001] = {.lex_state = 14, .external_lex_state = 7}, + [5002] = {.lex_state = 12, .external_lex_state = 5}, + [5003] = {.lex_state = 14, .external_lex_state = 7}, + [5004] = {.lex_state = 12, .external_lex_state = 5}, [5005] = {.lex_state = 14, .external_lex_state = 7}, - [5006] = {.lex_state = 14, .external_lex_state = 6}, - [5007] = {.lex_state = 14, .external_lex_state = 6}, - [5008] = {.lex_state = 14, .external_lex_state = 6}, - [5009] = {.lex_state = 14, .external_lex_state = 6}, + [5006] = {.lex_state = 14, .external_lex_state = 7}, + [5007] = {.lex_state = 14, .external_lex_state = 7}, + [5008] = {.lex_state = 14, .external_lex_state = 7}, + [5009] = {.lex_state = 14, .external_lex_state = 7}, [5010] = {.lex_state = 14, .external_lex_state = 6}, - [5011] = {.lex_state = 14, .external_lex_state = 6}, - [5012] = {.lex_state = 14, .external_lex_state = 6}, - [5013] = {.lex_state = 14, .external_lex_state = 6}, - [5014] = {.lex_state = 14, .external_lex_state = 6}, - [5015] = {.lex_state = 14, .external_lex_state = 7}, - [5016] = {.lex_state = 14, .external_lex_state = 6}, - [5017] = {.lex_state = 14, .external_lex_state = 6}, - [5018] = {.lex_state = 14, .external_lex_state = 6}, - [5019] = {.lex_state = 14, .external_lex_state = 7}, - [5020] = {.lex_state = 14, .external_lex_state = 6}, - [5021] = {.lex_state = 14, .external_lex_state = 6}, + [5011] = {.lex_state = 14, .external_lex_state = 7}, + [5012] = {.lex_state = 12, .external_lex_state = 5}, + [5013] = {.lex_state = 14, .external_lex_state = 7}, + [5014] = {.lex_state = 12, .external_lex_state = 5}, + [5015] = {.lex_state = 12, .external_lex_state = 5}, + [5016] = {.lex_state = 14, .external_lex_state = 7}, + [5017] = {.lex_state = 12, .external_lex_state = 5}, + [5018] = {.lex_state = 12, .external_lex_state = 5}, + [5019] = {.lex_state = 12, .external_lex_state = 5}, + [5020] = {.lex_state = 14, .external_lex_state = 7}, + [5021] = {.lex_state = 12, .external_lex_state = 5}, [5022] = {.lex_state = 12, .external_lex_state = 5}, - [5023] = {.lex_state = 14, .external_lex_state = 7}, + [5023] = {.lex_state = 14, .external_lex_state = 6}, [5024] = {.lex_state = 14, .external_lex_state = 7}, [5025] = {.lex_state = 14, .external_lex_state = 7}, - [5026] = {.lex_state = 14, .external_lex_state = 7}, - [5027] = {.lex_state = 14, .external_lex_state = 7}, + [5026] = {.lex_state = 12, .external_lex_state = 5}, + [5027] = {.lex_state = 14, .external_lex_state = 6}, [5028] = {.lex_state = 14, .external_lex_state = 6}, [5029] = {.lex_state = 14, .external_lex_state = 7}, - [5030] = {.lex_state = 12, .external_lex_state = 5}, - [5031] = {.lex_state = 14, .external_lex_state = 7}, - [5032] = {.lex_state = 14, .external_lex_state = 7}, - [5033] = {.lex_state = 14, .external_lex_state = 7}, - [5034] = {.lex_state = 14, .external_lex_state = 7}, - [5035] = {.lex_state = 14, .external_lex_state = 6}, - [5036] = {.lex_state = 14, .external_lex_state = 7}, - [5037] = {.lex_state = 14, .external_lex_state = 7}, + [5030] = {.lex_state = 14, .external_lex_state = 7}, + [5031] = {.lex_state = 14, .external_lex_state = 6}, + [5032] = {.lex_state = 12, .external_lex_state = 5}, + [5033] = {.lex_state = 14, .external_lex_state = 6}, + [5034] = {.lex_state = 14, .external_lex_state = 6}, + [5035] = {.lex_state = 14, .external_lex_state = 7}, + [5036] = {.lex_state = 14, .external_lex_state = 6}, + [5037] = {.lex_state = 14, .external_lex_state = 6}, [5038] = {.lex_state = 14, .external_lex_state = 7}, [5039] = {.lex_state = 14, .external_lex_state = 7}, - [5040] = {.lex_state = 14, .external_lex_state = 7}, - [5041] = {.lex_state = 14, .external_lex_state = 6}, + [5040] = {.lex_state = 12, .external_lex_state = 5}, + [5041] = {.lex_state = 14, .external_lex_state = 7}, [5042] = {.lex_state = 14, .external_lex_state = 7}, [5043] = {.lex_state = 14, .external_lex_state = 7}, - [5044] = {.lex_state = 14, .external_lex_state = 7}, - [5045] = {.lex_state = 12, .external_lex_state = 5}, + [5044] = {.lex_state = 12, .external_lex_state = 5}, + [5045] = {.lex_state = 14, .external_lex_state = 7}, [5046] = {.lex_state = 14, .external_lex_state = 6}, - [5047] = {.lex_state = 14, .external_lex_state = 7}, - [5048] = {.lex_state = 14, .external_lex_state = 7}, + [5047] = {.lex_state = 14, .external_lex_state = 6}, + [5048] = {.lex_state = 12, .external_lex_state = 5}, [5049] = {.lex_state = 14, .external_lex_state = 7}, - [5050] = {.lex_state = 12, .external_lex_state = 5}, - [5051] = {.lex_state = 12, .external_lex_state = 5}, + [5050] = {.lex_state = 14, .external_lex_state = 7}, + [5051] = {.lex_state = 14, .external_lex_state = 7}, [5052] = {.lex_state = 14, .external_lex_state = 7}, - [5053] = {.lex_state = 14, .external_lex_state = 7}, + [5053] = {.lex_state = 14, .external_lex_state = 6}, [5054] = {.lex_state = 12, .external_lex_state = 5}, [5055] = {.lex_state = 14, .external_lex_state = 7}, [5056] = {.lex_state = 14, .external_lex_state = 7}, - [5057] = {.lex_state = 12, .external_lex_state = 5}, + [5057] = {.lex_state = 14, .external_lex_state = 7}, [5058] = {.lex_state = 12, .external_lex_state = 5}, - [5059] = {.lex_state = 12, .external_lex_state = 5}, - [5060] = {.lex_state = 14, .external_lex_state = 7}, + [5059] = {.lex_state = 14, .external_lex_state = 6}, + [5060] = {.lex_state = 12, .external_lex_state = 5}, [5061] = {.lex_state = 12, .external_lex_state = 5}, - [5062] = {.lex_state = 12, .external_lex_state = 5}, + [5062] = {.lex_state = 14, .external_lex_state = 7}, [5063] = {.lex_state = 14, .external_lex_state = 7}, - [5064] = {.lex_state = 14, .external_lex_state = 7}, - [5065] = {.lex_state = 14, .external_lex_state = 7}, + [5064] = {.lex_state = 14, .external_lex_state = 6}, + [5065] = {.lex_state = 12, .external_lex_state = 5}, [5066] = {.lex_state = 14, .external_lex_state = 7}, [5067] = {.lex_state = 14, .external_lex_state = 6}, - [5068] = {.lex_state = 14, .external_lex_state = 6}, + [5068] = {.lex_state = 14, .external_lex_state = 7}, [5069] = {.lex_state = 14, .external_lex_state = 7}, - [5070] = {.lex_state = 14, .external_lex_state = 7}, + [5070] = {.lex_state = 14, .external_lex_state = 6}, [5071] = {.lex_state = 14, .external_lex_state = 7}, - [5072] = {.lex_state = 14, .external_lex_state = 6}, + [5072] = {.lex_state = 14, .external_lex_state = 7}, [5073] = {.lex_state = 14, .external_lex_state = 7}, - [5074] = {.lex_state = 12, .external_lex_state = 5}, - [5075] = {.lex_state = 14, .external_lex_state = 6}, + [5074] = {.lex_state = 14, .external_lex_state = 7}, + [5075] = {.lex_state = 14, .external_lex_state = 7}, [5076] = {.lex_state = 14, .external_lex_state = 7}, - [5077] = {.lex_state = 12, .external_lex_state = 5}, - [5078] = {.lex_state = 12, .external_lex_state = 5}, + [5077] = {.lex_state = 14, .external_lex_state = 7}, + [5078] = {.lex_state = 14, .external_lex_state = 7}, [5079] = {.lex_state = 14, .external_lex_state = 7}, - [5080] = {.lex_state = 14, .external_lex_state = 7}, + [5080] = {.lex_state = 14, .external_lex_state = 6}, [5081] = {.lex_state = 14, .external_lex_state = 7}, - [5082] = {.lex_state = 14, .external_lex_state = 6}, - [5083] = {.lex_state = 14, .external_lex_state = 7}, + [5082] = {.lex_state = 14, .external_lex_state = 7}, + [5083] = {.lex_state = 12, .external_lex_state = 5}, [5084] = {.lex_state = 14, .external_lex_state = 7}, [5085] = {.lex_state = 12, .external_lex_state = 5}, [5086] = {.lex_state = 12, .external_lex_state = 5}, - [5087] = {.lex_state = 14, .external_lex_state = 7}, - [5088] = {.lex_state = 14, .external_lex_state = 6}, - [5089] = {.lex_state = 14, .external_lex_state = 7}, + [5087] = {.lex_state = 12, .external_lex_state = 5}, + [5088] = {.lex_state = 14, .external_lex_state = 7}, + [5089] = {.lex_state = 14, .external_lex_state = 6}, [5090] = {.lex_state = 14, .external_lex_state = 7}, - [5091] = {.lex_state = 12, .external_lex_state = 5}, - [5092] = {.lex_state = 14, .external_lex_state = 7}, + [5091] = {.lex_state = 14, .external_lex_state = 7}, + [5092] = {.lex_state = 12, .external_lex_state = 5}, [5093] = {.lex_state = 14, .external_lex_state = 7}, [5094] = {.lex_state = 14, .external_lex_state = 7}, - [5095] = {.lex_state = 12, .external_lex_state = 5}, + [5095] = {.lex_state = 14, .external_lex_state = 7}, [5096] = {.lex_state = 14, .external_lex_state = 7}, - [5097] = {.lex_state = 12, .external_lex_state = 5}, - [5098] = {.lex_state = 12, .external_lex_state = 5}, + [5097] = {.lex_state = 14, .external_lex_state = 7}, + [5098] = {.lex_state = 14, .external_lex_state = 6}, [5099] = {.lex_state = 14, .external_lex_state = 7}, [5100] = {.lex_state = 14, .external_lex_state = 7}, - [5101] = {.lex_state = 14, .external_lex_state = 6}, - [5102] = {.lex_state = 12, .external_lex_state = 5}, + [5101] = {.lex_state = 14, .external_lex_state = 7}, + [5102] = {.lex_state = 14, .external_lex_state = 7}, [5103] = {.lex_state = 14, .external_lex_state = 7}, - [5104] = {.lex_state = 12, .external_lex_state = 5}, + [5104] = {.lex_state = 14, .external_lex_state = 7}, [5105] = {.lex_state = 14, .external_lex_state = 7}, [5106] = {.lex_state = 14, .external_lex_state = 7}, [5107] = {.lex_state = 14, .external_lex_state = 7}, @@ -28941,137 +28592,137 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5111] = {.lex_state = 12, .external_lex_state = 5}, [5112] = {.lex_state = 14, .external_lex_state = 7}, [5113] = {.lex_state = 14, .external_lex_state = 7}, - [5114] = {.lex_state = 12, .external_lex_state = 5}, + [5114] = {.lex_state = 14, .external_lex_state = 7}, [5115] = {.lex_state = 14, .external_lex_state = 7}, [5116] = {.lex_state = 14, .external_lex_state = 7}, - [5117] = {.lex_state = 14, .external_lex_state = 7}, - [5118] = {.lex_state = 12, .external_lex_state = 5}, + [5117] = {.lex_state = 14, .external_lex_state = 6}, + [5118] = {.lex_state = 14, .external_lex_state = 7}, [5119] = {.lex_state = 12, .external_lex_state = 5}, [5120] = {.lex_state = 14, .external_lex_state = 7}, - [5121] = {.lex_state = 14, .external_lex_state = 6}, - [5122] = {.lex_state = 14, .external_lex_state = 6}, - [5123] = {.lex_state = 14, .external_lex_state = 6}, + [5121] = {.lex_state = 14, .external_lex_state = 7}, + [5122] = {.lex_state = 14, .external_lex_state = 7}, + [5123] = {.lex_state = 14, .external_lex_state = 7}, [5124] = {.lex_state = 14, .external_lex_state = 7}, - [5125] = {.lex_state = 14, .external_lex_state = 6}, - [5126] = {.lex_state = 14, .external_lex_state = 6}, + [5125] = {.lex_state = 14, .external_lex_state = 7}, + [5126] = {.lex_state = 14, .external_lex_state = 7}, [5127] = {.lex_state = 14, .external_lex_state = 7}, - [5128] = {.lex_state = 14, .external_lex_state = 6}, - [5129] = {.lex_state = 14, .external_lex_state = 6}, - [5130] = {.lex_state = 14, .external_lex_state = 6}, - [5131] = {.lex_state = 14, .external_lex_state = 6}, + [5128] = {.lex_state = 14, .external_lex_state = 7}, + [5129] = {.lex_state = 14, .external_lex_state = 7}, + [5130] = {.lex_state = 14, .external_lex_state = 7}, + [5131] = {.lex_state = 14, .external_lex_state = 7}, [5132] = {.lex_state = 14, .external_lex_state = 7}, - [5133] = {.lex_state = 14, .external_lex_state = 7}, + [5133] = {.lex_state = 12, .external_lex_state = 5}, [5134] = {.lex_state = 14, .external_lex_state = 7}, - [5135] = {.lex_state = 12, .external_lex_state = 5}, + [5135] = {.lex_state = 14, .external_lex_state = 7}, [5136] = {.lex_state = 14, .external_lex_state = 7}, - [5137] = {.lex_state = 14, .external_lex_state = 6}, + [5137] = {.lex_state = 12, .external_lex_state = 5}, [5138] = {.lex_state = 14, .external_lex_state = 7}, [5139] = {.lex_state = 14, .external_lex_state = 7}, [5140] = {.lex_state = 14, .external_lex_state = 7}, - [5141] = {.lex_state = 12, .external_lex_state = 5}, + [5141] = {.lex_state = 14, .external_lex_state = 7}, [5142] = {.lex_state = 14, .external_lex_state = 7}, [5143] = {.lex_state = 14, .external_lex_state = 7}, [5144] = {.lex_state = 14, .external_lex_state = 7}, [5145] = {.lex_state = 14, .external_lex_state = 7}, [5146] = {.lex_state = 14, .external_lex_state = 7}, [5147] = {.lex_state = 14, .external_lex_state = 7}, - [5148] = {.lex_state = 14, .external_lex_state = 7}, - [5149] = {.lex_state = 12, .external_lex_state = 5}, + [5148] = {.lex_state = 12, .external_lex_state = 5}, + [5149] = {.lex_state = 14, .external_lex_state = 7}, [5150] = {.lex_state = 14, .external_lex_state = 7}, - [5151] = {.lex_state = 14, .external_lex_state = 7}, + [5151] = {.lex_state = 12, .external_lex_state = 5}, [5152] = {.lex_state = 14, .external_lex_state = 7}, - [5153] = {.lex_state = 12, .external_lex_state = 5}, + [5153] = {.lex_state = 14, .external_lex_state = 7}, [5154] = {.lex_state = 14, .external_lex_state = 7}, - [5155] = {.lex_state = 14, .external_lex_state = 6}, + [5155] = {.lex_state = 14, .external_lex_state = 7}, [5156] = {.lex_state = 14, .external_lex_state = 7}, [5157] = {.lex_state = 14, .external_lex_state = 7}, - [5158] = {.lex_state = 12, .external_lex_state = 5}, + [5158] = {.lex_state = 14, .external_lex_state = 7}, [5159] = {.lex_state = 14, .external_lex_state = 7}, [5160] = {.lex_state = 14, .external_lex_state = 7}, - [5161] = {.lex_state = 14, .external_lex_state = 6}, - [5162] = {.lex_state = 14, .external_lex_state = 6}, - [5163] = {.lex_state = 14, .external_lex_state = 6}, + [5161] = {.lex_state = 14, .external_lex_state = 7}, + [5162] = {.lex_state = 14, .external_lex_state = 7}, + [5163] = {.lex_state = 14, .external_lex_state = 7}, [5164] = {.lex_state = 14, .external_lex_state = 7}, [5165] = {.lex_state = 14, .external_lex_state = 7}, - [5166] = {.lex_state = 12, .external_lex_state = 5}, + [5166] = {.lex_state = 14, .external_lex_state = 7}, [5167] = {.lex_state = 14, .external_lex_state = 7}, [5168] = {.lex_state = 14, .external_lex_state = 7}, [5169] = {.lex_state = 14, .external_lex_state = 7}, [5170] = {.lex_state = 14, .external_lex_state = 7}, [5171] = {.lex_state = 14, .external_lex_state = 7}, - [5172] = {.lex_state = 16, .external_lex_state = 7}, - [5173] = {.lex_state = 14, .external_lex_state = 7}, - [5174] = {.lex_state = 12, .external_lex_state = 5}, + [5172] = {.lex_state = 14, .external_lex_state = 7}, + [5173] = {.lex_state = 14, .external_lex_state = 6}, + [5174] = {.lex_state = 14, .external_lex_state = 7}, [5175] = {.lex_state = 14, .external_lex_state = 7}, - [5176] = {.lex_state = 12, .external_lex_state = 5}, - [5177] = {.lex_state = 14, .external_lex_state = 6}, + [5176] = {.lex_state = 14, .external_lex_state = 7}, + [5177] = {.lex_state = 14, .external_lex_state = 7}, [5178] = {.lex_state = 14, .external_lex_state = 7}, [5179] = {.lex_state = 14, .external_lex_state = 7}, - [5180] = {.lex_state = 14, .external_lex_state = 6}, + [5180] = {.lex_state = 14, .external_lex_state = 7}, [5181] = {.lex_state = 14, .external_lex_state = 7}, - [5182] = {.lex_state = 12, .external_lex_state = 5}, - [5183] = {.lex_state = 14, .external_lex_state = 6}, - [5184] = {.lex_state = 12, .external_lex_state = 5}, - [5185] = {.lex_state = 14, .external_lex_state = 7}, + [5182] = {.lex_state = 14, .external_lex_state = 7}, + [5183] = {.lex_state = 14, .external_lex_state = 7}, + [5184] = {.lex_state = 14, .external_lex_state = 7}, + [5185] = {.lex_state = 12, .external_lex_state = 5}, [5186] = {.lex_state = 14, .external_lex_state = 7}, - [5187] = {.lex_state = 12, .external_lex_state = 5}, - [5188] = {.lex_state = 14, .external_lex_state = 7}, + [5187] = {.lex_state = 14, .external_lex_state = 7}, + [5188] = {.lex_state = 14, .external_lex_state = 6}, [5189] = {.lex_state = 14, .external_lex_state = 7}, - [5190] = {.lex_state = 12, .external_lex_state = 5}, - [5191] = {.lex_state = 14, .external_lex_state = 6}, - [5192] = {.lex_state = 12, .external_lex_state = 5}, - [5193] = {.lex_state = 12, .external_lex_state = 5}, - [5194] = {.lex_state = 12, .external_lex_state = 5}, + [5190] = {.lex_state = 14, .external_lex_state = 6}, + [5191] = {.lex_state = 14, .external_lex_state = 7}, + [5192] = {.lex_state = 14, .external_lex_state = 7}, + [5193] = {.lex_state = 14, .external_lex_state = 7}, + [5194] = {.lex_state = 14, .external_lex_state = 7}, [5195] = {.lex_state = 12, .external_lex_state = 5}, [5196] = {.lex_state = 14, .external_lex_state = 7}, - [5197] = {.lex_state = 12, .external_lex_state = 5}, - [5198] = {.lex_state = 12, .external_lex_state = 5}, - [5199] = {.lex_state = 12, .external_lex_state = 5}, + [5197] = {.lex_state = 14, .external_lex_state = 7}, + [5198] = {.lex_state = 14, .external_lex_state = 7}, + [5199] = {.lex_state = 14, .external_lex_state = 7}, [5200] = {.lex_state = 12, .external_lex_state = 5}, - [5201] = {.lex_state = 12, .external_lex_state = 5}, - [5202] = {.lex_state = 12, .external_lex_state = 5}, + [5201] = {.lex_state = 14, .external_lex_state = 7}, + [5202] = {.lex_state = 14, .external_lex_state = 7}, [5203] = {.lex_state = 14, .external_lex_state = 7}, [5204] = {.lex_state = 14, .external_lex_state = 7}, [5205] = {.lex_state = 14, .external_lex_state = 7}, - [5206] = {.lex_state = 14, .external_lex_state = 7}, - [5207] = {.lex_state = 12, .external_lex_state = 5}, - [5208] = {.lex_state = 12, .external_lex_state = 5}, - [5209] = {.lex_state = 12, .external_lex_state = 5}, - [5210] = {.lex_state = 14, .external_lex_state = 6}, - [5211] = {.lex_state = 12, .external_lex_state = 5}, - [5212] = {.lex_state = 12, .external_lex_state = 5}, + [5206] = {.lex_state = 14, .external_lex_state = 6}, + [5207] = {.lex_state = 14, .external_lex_state = 6}, + [5208] = {.lex_state = 14, .external_lex_state = 7}, + [5209] = {.lex_state = 14, .external_lex_state = 7}, + [5210] = {.lex_state = 14, .external_lex_state = 7}, + [5211] = {.lex_state = 14, .external_lex_state = 7}, + [5212] = {.lex_state = 14, .external_lex_state = 6}, [5213] = {.lex_state = 14, .external_lex_state = 7}, [5214] = {.lex_state = 14, .external_lex_state = 7}, [5215] = {.lex_state = 14, .external_lex_state = 7}, - [5216] = {.lex_state = 14, .external_lex_state = 6}, + [5216] = {.lex_state = 14, .external_lex_state = 7}, [5217] = {.lex_state = 14, .external_lex_state = 7}, [5218] = {.lex_state = 14, .external_lex_state = 7}, [5219] = {.lex_state = 14, .external_lex_state = 7}, [5220] = {.lex_state = 14, .external_lex_state = 7}, [5221] = {.lex_state = 14, .external_lex_state = 7}, [5222] = {.lex_state = 14, .external_lex_state = 7}, - [5223] = {.lex_state = 14, .external_lex_state = 7}, + [5223] = {.lex_state = 14, .external_lex_state = 6}, [5224] = {.lex_state = 14, .external_lex_state = 7}, [5225] = {.lex_state = 14, .external_lex_state = 7}, [5226] = {.lex_state = 14, .external_lex_state = 7}, [5227] = {.lex_state = 14, .external_lex_state = 7}, [5228] = {.lex_state = 14, .external_lex_state = 7}, - [5229] = {.lex_state = 14, .external_lex_state = 7}, + [5229] = {.lex_state = 14, .external_lex_state = 6}, [5230] = {.lex_state = 14, .external_lex_state = 7}, [5231] = {.lex_state = 14, .external_lex_state = 7}, - [5232] = {.lex_state = 14, .external_lex_state = 7}, - [5233] = {.lex_state = 14, .external_lex_state = 7}, - [5234] = {.lex_state = 14, .external_lex_state = 7}, - [5235] = {.lex_state = 14, .external_lex_state = 7}, + [5232] = {.lex_state = 12, .external_lex_state = 5}, + [5233] = {.lex_state = 14, .external_lex_state = 6}, + [5234] = {.lex_state = 14, .external_lex_state = 6}, + [5235] = {.lex_state = 12, .external_lex_state = 5}, [5236] = {.lex_state = 14, .external_lex_state = 7}, - [5237] = {.lex_state = 12, .external_lex_state = 5}, + [5237] = {.lex_state = 14, .external_lex_state = 6}, [5238] = {.lex_state = 14, .external_lex_state = 7}, [5239] = {.lex_state = 14, .external_lex_state = 6}, - [5240] = {.lex_state = 14, .external_lex_state = 6}, + [5240] = {.lex_state = 14, .external_lex_state = 7}, [5241] = {.lex_state = 14, .external_lex_state = 7}, - [5242] = {.lex_state = 14, .external_lex_state = 7}, + [5242] = {.lex_state = 12, .external_lex_state = 5}, [5243] = {.lex_state = 14, .external_lex_state = 7}, - [5244] = {.lex_state = 12, .external_lex_state = 5}, + [5244] = {.lex_state = 14, .external_lex_state = 7}, [5245] = {.lex_state = 14, .external_lex_state = 7}, [5246] = {.lex_state = 14, .external_lex_state = 7}, [5247] = {.lex_state = 14, .external_lex_state = 7}, @@ -29079,587 +28730,587 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5249] = {.lex_state = 14, .external_lex_state = 7}, [5250] = {.lex_state = 14, .external_lex_state = 6}, [5251] = {.lex_state = 14, .external_lex_state = 7}, - [5252] = {.lex_state = 14, .external_lex_state = 6}, - [5253] = {.lex_state = 12, .external_lex_state = 5}, - [5254] = {.lex_state = 12, .external_lex_state = 5}, + [5252] = {.lex_state = 14, .external_lex_state = 7}, + [5253] = {.lex_state = 14, .external_lex_state = 7}, + [5254] = {.lex_state = 14, .external_lex_state = 7}, [5255] = {.lex_state = 12, .external_lex_state = 5}, [5256] = {.lex_state = 14, .external_lex_state = 7}, [5257] = {.lex_state = 14, .external_lex_state = 7}, - [5258] = {.lex_state = 14, .external_lex_state = 7}, + [5258] = {.lex_state = 12, .external_lex_state = 5}, [5259] = {.lex_state = 14, .external_lex_state = 7}, [5260] = {.lex_state = 14, .external_lex_state = 7}, [5261] = {.lex_state = 14, .external_lex_state = 7}, [5262] = {.lex_state = 14, .external_lex_state = 7}, - [5263] = {.lex_state = 14, .external_lex_state = 7}, + [5263] = {.lex_state = 14, .external_lex_state = 6}, [5264] = {.lex_state = 14, .external_lex_state = 7}, - [5265] = {.lex_state = 14, .external_lex_state = 6}, - [5266] = {.lex_state = 14, .external_lex_state = 7}, - [5267] = {.lex_state = 14, .external_lex_state = 7}, - [5268] = {.lex_state = 14, .external_lex_state = 7}, - [5269] = {.lex_state = 14, .external_lex_state = 7}, - [5270] = {.lex_state = 14, .external_lex_state = 6}, - [5271] = {.lex_state = 14, .external_lex_state = 7}, - [5272] = {.lex_state = 14, .external_lex_state = 7}, - [5273] = {.lex_state = 14, .external_lex_state = 7}, - [5274] = {.lex_state = 14, .external_lex_state = 7}, - [5275] = {.lex_state = 14, .external_lex_state = 7}, - [5276] = {.lex_state = 12, .external_lex_state = 5}, - [5277] = {.lex_state = 14, .external_lex_state = 7}, - [5278] = {.lex_state = 14, .external_lex_state = 7}, - [5279] = {.lex_state = 14, .external_lex_state = 7}, - [5280] = {.lex_state = 14, .external_lex_state = 7}, - [5281] = {.lex_state = 14, .external_lex_state = 7}, - [5282] = {.lex_state = 14, .external_lex_state = 7}, - [5283] = {.lex_state = 14, .external_lex_state = 7}, - [5284] = {.lex_state = 14, .external_lex_state = 7}, - [5285] = {.lex_state = 14, .external_lex_state = 7}, + [5265] = {.lex_state = 14, .external_lex_state = 7}, + [5266] = {.lex_state = 12, .external_lex_state = 5}, + [5267] = {.lex_state = 14, .external_lex_state = 6}, + [5268] = {.lex_state = 12, .external_lex_state = 5}, + [5269] = {.lex_state = 12, .external_lex_state = 5}, + [5270] = {.lex_state = 12, .external_lex_state = 5}, + [5271] = {.lex_state = 12, .external_lex_state = 5}, + [5272] = {.lex_state = 12, .external_lex_state = 5}, + [5273] = {.lex_state = 14, .external_lex_state = 6}, + [5274] = {.lex_state = 14, .external_lex_state = 6}, + [5275] = {.lex_state = 12, .external_lex_state = 5}, + [5276] = {.lex_state = 14, .external_lex_state = 6}, + [5277] = {.lex_state = 14, .external_lex_state = 6}, + [5278] = {.lex_state = 14, .external_lex_state = 6}, + [5279] = {.lex_state = 14, .external_lex_state = 6}, + [5280] = {.lex_state = 14, .external_lex_state = 6}, + [5281] = {.lex_state = 14, .external_lex_state = 6}, + [5282] = {.lex_state = 14, .external_lex_state = 6}, + [5283] = {.lex_state = 14, .external_lex_state = 6}, + [5284] = {.lex_state = 14, .external_lex_state = 6}, + [5285] = {.lex_state = 14, .external_lex_state = 6}, [5286] = {.lex_state = 14, .external_lex_state = 6}, - [5287] = {.lex_state = 14, .external_lex_state = 7}, - [5288] = {.lex_state = 14, .external_lex_state = 7}, - [5289] = {.lex_state = 14, .external_lex_state = 7}, - [5290] = {.lex_state = 14, .external_lex_state = 7}, - [5291] = {.lex_state = 14, .external_lex_state = 7}, - [5292] = {.lex_state = 14, .external_lex_state = 7}, - [5293] = {.lex_state = 14, .external_lex_state = 7}, - [5294] = {.lex_state = 14, .external_lex_state = 7}, - [5295] = {.lex_state = 14, .external_lex_state = 7}, - [5296] = {.lex_state = 14, .external_lex_state = 7}, - [5297] = {.lex_state = 14, .external_lex_state = 7}, - [5298] = {.lex_state = 14, .external_lex_state = 7}, - [5299] = {.lex_state = 14, .external_lex_state = 7}, - [5300] = {.lex_state = 14, .external_lex_state = 7}, - [5301] = {.lex_state = 14, .external_lex_state = 7}, + [5287] = {.lex_state = 12, .external_lex_state = 5}, + [5288] = {.lex_state = 12, .external_lex_state = 5}, + [5289] = {.lex_state = 12, .external_lex_state = 5}, + [5290] = {.lex_state = 14, .external_lex_state = 6}, + [5291] = {.lex_state = 12, .external_lex_state = 5}, + [5292] = {.lex_state = 14, .external_lex_state = 6}, + [5293] = {.lex_state = 12, .external_lex_state = 5}, + [5294] = {.lex_state = 12, .external_lex_state = 5}, + [5295] = {.lex_state = 12, .external_lex_state = 5}, + [5296] = {.lex_state = 12, .external_lex_state = 5}, + [5297] = {.lex_state = 12, .external_lex_state = 5}, + [5298] = {.lex_state = 12, .external_lex_state = 5}, + [5299] = {.lex_state = 12, .external_lex_state = 5}, + [5300] = {.lex_state = 12, .external_lex_state = 5}, + [5301] = {.lex_state = 12, .external_lex_state = 5}, [5302] = {.lex_state = 14, .external_lex_state = 7}, [5303] = {.lex_state = 14, .external_lex_state = 7}, - [5304] = {.lex_state = 14, .external_lex_state = 7}, + [5304] = {.lex_state = 14, .external_lex_state = 6}, [5305] = {.lex_state = 14, .external_lex_state = 7}, [5306] = {.lex_state = 14, .external_lex_state = 7}, [5307] = {.lex_state = 14, .external_lex_state = 7}, [5308] = {.lex_state = 14, .external_lex_state = 7}, - [5309] = {.lex_state = 14, .external_lex_state = 7}, + [5309] = {.lex_state = 12, .external_lex_state = 5}, [5310] = {.lex_state = 14, .external_lex_state = 7}, [5311] = {.lex_state = 14, .external_lex_state = 6}, - [5312] = {.lex_state = 14, .external_lex_state = 7}, + [5312] = {.lex_state = 12, .external_lex_state = 5}, [5313] = {.lex_state = 14, .external_lex_state = 7}, - [5314] = {.lex_state = 14, .external_lex_state = 6}, - [5315] = {.lex_state = 14, .external_lex_state = 7}, - [5316] = {.lex_state = 14, .external_lex_state = 7}, - [5317] = {.lex_state = 14, .external_lex_state = 7}, - [5318] = {.lex_state = 14, .external_lex_state = 7}, - [5319] = {.lex_state = 12, .external_lex_state = 5}, - [5320] = {.lex_state = 14, .external_lex_state = 7}, - [5321] = {.lex_state = 14, .external_lex_state = 7}, - [5322] = {.lex_state = 14, .external_lex_state = 7}, - [5323] = {.lex_state = 14, .external_lex_state = 7}, - [5324] = {.lex_state = 14, .external_lex_state = 7}, + [5314] = {.lex_state = 12, .external_lex_state = 5}, + [5315] = {.lex_state = 12, .external_lex_state = 5}, + [5316] = {.lex_state = 12, .external_lex_state = 5}, + [5317] = {.lex_state = 12, .external_lex_state = 5}, + [5318] = {.lex_state = 12, .external_lex_state = 5}, + [5319] = {.lex_state = 14, .external_lex_state = 6}, + [5320] = {.lex_state = 14, .external_lex_state = 6}, + [5321] = {.lex_state = 14, .external_lex_state = 6}, + [5322] = {.lex_state = 14, .external_lex_state = 6}, + [5323] = {.lex_state = 12, .external_lex_state = 5}, + [5324] = {.lex_state = 14, .external_lex_state = 6}, [5325] = {.lex_state = 14, .external_lex_state = 6}, [5326] = {.lex_state = 14, .external_lex_state = 7}, [5327] = {.lex_state = 14, .external_lex_state = 7}, - [5328] = {.lex_state = 14, .external_lex_state = 7}, + [5328] = {.lex_state = 24, .external_lex_state = 9}, [5329] = {.lex_state = 14, .external_lex_state = 7}, - [5330] = {.lex_state = 14, .external_lex_state = 7}, - [5331] = {.lex_state = 14, .external_lex_state = 7}, - [5332] = {.lex_state = 14, .external_lex_state = 7}, - [5333] = {.lex_state = 14, .external_lex_state = 7}, + [5330] = {.lex_state = 12, .external_lex_state = 5}, + [5331] = {.lex_state = 24, .external_lex_state = 9}, + [5332] = {.lex_state = 12, .external_lex_state = 5}, + [5333] = {.lex_state = 12, .external_lex_state = 5}, [5334] = {.lex_state = 14, .external_lex_state = 7}, - [5335] = {.lex_state = 14, .external_lex_state = 7}, - [5336] = {.lex_state = 14, .external_lex_state = 6}, - [5337] = {.lex_state = 14, .external_lex_state = 7}, + [5335] = {.lex_state = 12, .external_lex_state = 5}, + [5336] = {.lex_state = 12, .external_lex_state = 5}, + [5337] = {.lex_state = 12, .external_lex_state = 5}, [5338] = {.lex_state = 14, .external_lex_state = 7}, - [5339] = {.lex_state = 14, .external_lex_state = 6}, - [5340] = {.lex_state = 12, .external_lex_state = 5}, - [5341] = {.lex_state = 14, .external_lex_state = 7}, - [5342] = {.lex_state = 14, .external_lex_state = 7}, - [5343] = {.lex_state = 12, .external_lex_state = 5}, - [5344] = {.lex_state = 14, .external_lex_state = 7}, - [5345] = {.lex_state = 14, .external_lex_state = 7}, - [5346] = {.lex_state = 14, .external_lex_state = 7}, - [5347] = {.lex_state = 14, .external_lex_state = 7}, + [5339] = {.lex_state = 14, .external_lex_state = 7}, + [5340] = {.lex_state = 9, .external_lex_state = 2}, + [5341] = {.lex_state = 12, .external_lex_state = 5}, + [5342] = {.lex_state = 12, .external_lex_state = 5}, + [5343] = {.lex_state = 14, .external_lex_state = 7}, + [5344] = {.lex_state = 12, .external_lex_state = 5}, + [5345] = {.lex_state = 9, .external_lex_state = 2}, + [5346] = {.lex_state = 12, .external_lex_state = 5}, + [5347] = {.lex_state = 12, .external_lex_state = 5}, [5348] = {.lex_state = 14, .external_lex_state = 7}, - [5349] = {.lex_state = 14, .external_lex_state = 7}, - [5350] = {.lex_state = 14, .external_lex_state = 7}, - [5351] = {.lex_state = 14, .external_lex_state = 7}, - [5352] = {.lex_state = 14, .external_lex_state = 6}, - [5353] = {.lex_state = 14, .external_lex_state = 7}, - [5354] = {.lex_state = 14, .external_lex_state = 7}, - [5355] = {.lex_state = 14, .external_lex_state = 7}, - [5356] = {.lex_state = 14, .external_lex_state = 6}, + [5349] = {.lex_state = 12, .external_lex_state = 5}, + [5350] = {.lex_state = 14, .external_lex_state = 6}, + [5351] = {.lex_state = 12, .external_lex_state = 5}, + [5352] = {.lex_state = 14, .external_lex_state = 7}, + [5353] = {.lex_state = 12, .external_lex_state = 5}, + [5354] = {.lex_state = 12, .external_lex_state = 5}, + [5355] = {.lex_state = 12, .external_lex_state = 5}, + [5356] = {.lex_state = 12, .external_lex_state = 5}, [5357] = {.lex_state = 12, .external_lex_state = 5}, [5358] = {.lex_state = 12, .external_lex_state = 5}, - [5359] = {.lex_state = 14, .external_lex_state = 7}, - [5360] = {.lex_state = 14, .external_lex_state = 7}, - [5361] = {.lex_state = 14, .external_lex_state = 7}, - [5362] = {.lex_state = 12, .external_lex_state = 5}, - [5363] = {.lex_state = 14, .external_lex_state = 7}, - [5364] = {.lex_state = 14, .external_lex_state = 7}, - [5365] = {.lex_state = 14, .external_lex_state = 7}, - [5366] = {.lex_state = 14, .external_lex_state = 7}, - [5367] = {.lex_state = 12, .external_lex_state = 5}, - [5368] = {.lex_state = 14, .external_lex_state = 7}, + [5359] = {.lex_state = 12, .external_lex_state = 5}, + [5360] = {.lex_state = 12, .external_lex_state = 5}, + [5361] = {.lex_state = 12, .external_lex_state = 5}, + [5362] = {.lex_state = 24, .external_lex_state = 9}, + [5363] = {.lex_state = 12, .external_lex_state = 5}, + [5364] = {.lex_state = 12, .external_lex_state = 5}, + [5365] = {.lex_state = 12, .external_lex_state = 5}, + [5366] = {.lex_state = 12, .external_lex_state = 5}, + [5367] = {.lex_state = 9, .external_lex_state = 2}, + [5368] = {.lex_state = 12, .external_lex_state = 5}, [5369] = {.lex_state = 12, .external_lex_state = 5}, - [5370] = {.lex_state = 14, .external_lex_state = 7}, + [5370] = {.lex_state = 12, .external_lex_state = 5}, [5371] = {.lex_state = 14, .external_lex_state = 7}, [5372] = {.lex_state = 14, .external_lex_state = 7}, - [5373] = {.lex_state = 14, .external_lex_state = 7}, - [5374] = {.lex_state = 14, .external_lex_state = 7}, - [5375] = {.lex_state = 14, .external_lex_state = 7}, - [5376] = {.lex_state = 14, .external_lex_state = 7}, + [5373] = {.lex_state = 12, .external_lex_state = 5}, + [5374] = {.lex_state = 14, .external_lex_state = 6}, + [5375] = {.lex_state = 12, .external_lex_state = 5}, + [5376] = {.lex_state = 24, .external_lex_state = 9}, [5377] = {.lex_state = 12, .external_lex_state = 5}, [5378] = {.lex_state = 12, .external_lex_state = 5}, - [5379] = {.lex_state = 14, .external_lex_state = 6}, - [5380] = {.lex_state = 14, .external_lex_state = 6}, + [5379] = {.lex_state = 14, .external_lex_state = 7}, + [5380] = {.lex_state = 14, .external_lex_state = 7}, [5381] = {.lex_state = 12, .external_lex_state = 5}, - [5382] = {.lex_state = 14, .external_lex_state = 7}, + [5382] = {.lex_state = 12, .external_lex_state = 5}, [5383] = {.lex_state = 14, .external_lex_state = 7}, - [5384] = {.lex_state = 14, .external_lex_state = 7}, - [5385] = {.lex_state = 14, .external_lex_state = 7}, + [5384] = {.lex_state = 12, .external_lex_state = 5}, + [5385] = {.lex_state = 12, .external_lex_state = 5}, [5386] = {.lex_state = 12, .external_lex_state = 5}, [5387] = {.lex_state = 14, .external_lex_state = 7}, - [5388] = {.lex_state = 14, .external_lex_state = 7}, + [5388] = {.lex_state = 12, .external_lex_state = 5}, [5389] = {.lex_state = 14, .external_lex_state = 7}, - [5390] = {.lex_state = 14, .external_lex_state = 7}, - [5391] = {.lex_state = 14, .external_lex_state = 7}, - [5392] = {.lex_state = 12, .external_lex_state = 5}, - [5393] = {.lex_state = 14, .external_lex_state = 7}, - [5394] = {.lex_state = 14, .external_lex_state = 7}, + [5390] = {.lex_state = 12, .external_lex_state = 5}, + [5391] = {.lex_state = 12, .external_lex_state = 5}, + [5392] = {.lex_state = 14, .external_lex_state = 7}, + [5393] = {.lex_state = 12, .external_lex_state = 5}, + [5394] = {.lex_state = 12, .external_lex_state = 5}, [5395] = {.lex_state = 14, .external_lex_state = 7}, [5396] = {.lex_state = 14, .external_lex_state = 7}, - [5397] = {.lex_state = 14, .external_lex_state = 7}, - [5398] = {.lex_state = 14, .external_lex_state = 6}, - [5399] = {.lex_state = 14, .external_lex_state = 6}, - [5400] = {.lex_state = 14, .external_lex_state = 7}, + [5397] = {.lex_state = 12, .external_lex_state = 5}, + [5398] = {.lex_state = 12, .external_lex_state = 5}, + [5399] = {.lex_state = 12, .external_lex_state = 5}, + [5400] = {.lex_state = 12, .external_lex_state = 5}, [5401] = {.lex_state = 14, .external_lex_state = 7}, [5402] = {.lex_state = 14, .external_lex_state = 7}, - [5403] = {.lex_state = 14, .external_lex_state = 7}, - [5404] = {.lex_state = 14, .external_lex_state = 7}, - [5405] = {.lex_state = 14, .external_lex_state = 7}, - [5406] = {.lex_state = 14, .external_lex_state = 7}, - [5407] = {.lex_state = 14, .external_lex_state = 7}, + [5403] = {.lex_state = 12, .external_lex_state = 5}, + [5404] = {.lex_state = 12, .external_lex_state = 5}, + [5405] = {.lex_state = 12, .external_lex_state = 5}, + [5406] = {.lex_state = 12, .external_lex_state = 5}, + [5407] = {.lex_state = 12, .external_lex_state = 5}, [5408] = {.lex_state = 14, .external_lex_state = 7}, [5409] = {.lex_state = 14, .external_lex_state = 7}, - [5410] = {.lex_state = 14, .external_lex_state = 6}, + [5410] = {.lex_state = 12, .external_lex_state = 5}, [5411] = {.lex_state = 12, .external_lex_state = 5}, - [5412] = {.lex_state = 14, .external_lex_state = 6}, + [5412] = {.lex_state = 12, .external_lex_state = 5}, [5413] = {.lex_state = 12, .external_lex_state = 5}, - [5414] = {.lex_state = 14, .external_lex_state = 6}, + [5414] = {.lex_state = 12, .external_lex_state = 5}, [5415] = {.lex_state = 12, .external_lex_state = 5}, - [5416] = {.lex_state = 14, .external_lex_state = 6}, + [5416] = {.lex_state = 12, .external_lex_state = 5}, [5417] = {.lex_state = 12, .external_lex_state = 5}, - [5418] = {.lex_state = 14, .external_lex_state = 6}, + [5418] = {.lex_state = 12, .external_lex_state = 5}, [5419] = {.lex_state = 12, .external_lex_state = 5}, [5420] = {.lex_state = 12, .external_lex_state = 5}, [5421] = {.lex_state = 12, .external_lex_state = 5}, [5422] = {.lex_state = 12, .external_lex_state = 5}, [5423] = {.lex_state = 12, .external_lex_state = 5}, - [5424] = {.lex_state = 14, .external_lex_state = 6}, + [5424] = {.lex_state = 12, .external_lex_state = 5}, [5425] = {.lex_state = 12, .external_lex_state = 5}, - [5426] = {.lex_state = 14, .external_lex_state = 6}, - [5427] = {.lex_state = 12, .external_lex_state = 5}, - [5428] = {.lex_state = 12, .external_lex_state = 5}, - [5429] = {.lex_state = 12, .external_lex_state = 5}, - [5430] = {.lex_state = 12, .external_lex_state = 5}, - [5431] = {.lex_state = 14, .external_lex_state = 7}, - [5432] = {.lex_state = 12, .external_lex_state = 5}, - [5433] = {.lex_state = 12, .external_lex_state = 5}, - [5434] = {.lex_state = 12, .external_lex_state = 5}, - [5435] = {.lex_state = 12, .external_lex_state = 5}, - [5436] = {.lex_state = 14, .external_lex_state = 6}, - [5437] = {.lex_state = 14, .external_lex_state = 7}, - [5438] = {.lex_state = 12, .external_lex_state = 5}, - [5439] = {.lex_state = 14, .external_lex_state = 7}, - [5440] = {.lex_state = 12, .external_lex_state = 5}, - [5441] = {.lex_state = 14, .external_lex_state = 7}, - [5442] = {.lex_state = 12, .external_lex_state = 5}, - [5443] = {.lex_state = 14, .external_lex_state = 6}, - [5444] = {.lex_state = 12, .external_lex_state = 5}, - [5445] = {.lex_state = 12, .external_lex_state = 5}, + [5426] = {.lex_state = 14, .external_lex_state = 7}, + [5427] = {.lex_state = 14, .external_lex_state = 7}, + [5428] = {.lex_state = 14, .external_lex_state = 7}, + [5429] = {.lex_state = 14, .external_lex_state = 7}, + [5430] = {.lex_state = 14, .external_lex_state = 7}, + [5431] = {.lex_state = 21, .external_lex_state = 9}, + [5432] = {.lex_state = 14, .external_lex_state = 6}, + [5433] = {.lex_state = 14, .external_lex_state = 7}, + [5434] = {.lex_state = 14, .external_lex_state = 6}, + [5435] = {.lex_state = 9, .external_lex_state = 2}, + [5436] = {.lex_state = 21, .external_lex_state = 9}, + [5437] = {.lex_state = 14, .external_lex_state = 6}, + [5438] = {.lex_state = 14, .external_lex_state = 6}, + [5439] = {.lex_state = 21, .external_lex_state = 9}, + [5440] = {.lex_state = 9, .external_lex_state = 2}, + [5441] = {.lex_state = 14, .external_lex_state = 6}, + [5442] = {.lex_state = 9, .external_lex_state = 2}, + [5443] = {.lex_state = 9, .external_lex_state = 2}, + [5444] = {.lex_state = 14, .external_lex_state = 6}, + [5445] = {.lex_state = 14, .external_lex_state = 7}, [5446] = {.lex_state = 14, .external_lex_state = 7}, - [5447] = {.lex_state = 14, .external_lex_state = 6}, + [5447] = {.lex_state = 14, .external_lex_state = 7}, [5448] = {.lex_state = 14, .external_lex_state = 6}, [5449] = {.lex_state = 14, .external_lex_state = 6}, - [5450] = {.lex_state = 12, .external_lex_state = 5}, - [5451] = {.lex_state = 14, .external_lex_state = 6}, - [5452] = {.lex_state = 14, .external_lex_state = 6}, - [5453] = {.lex_state = 12, .external_lex_state = 5}, - [5454] = {.lex_state = 14, .external_lex_state = 6}, - [5455] = {.lex_state = 12, .external_lex_state = 5}, - [5456] = {.lex_state = 14, .external_lex_state = 6}, - [5457] = {.lex_state = 12, .external_lex_state = 5}, - [5458] = {.lex_state = 14, .external_lex_state = 6}, + [5450] = {.lex_state = 14, .external_lex_state = 6}, + [5451] = {.lex_state = 14, .external_lex_state = 7}, + [5452] = {.lex_state = 21, .external_lex_state = 9}, + [5453] = {.lex_state = 24, .external_lex_state = 8}, + [5454] = {.lex_state = 24, .external_lex_state = 8}, + [5455] = {.lex_state = 14, .external_lex_state = 6}, + [5456] = {.lex_state = 14, .external_lex_state = 7}, + [5457] = {.lex_state = 14, .external_lex_state = 7}, + [5458] = {.lex_state = 9, .external_lex_state = 2}, [5459] = {.lex_state = 14, .external_lex_state = 6}, - [5460] = {.lex_state = 14, .external_lex_state = 7}, - [5461] = {.lex_state = 12, .external_lex_state = 5}, - [5462] = {.lex_state = 14, .external_lex_state = 6}, - [5463] = {.lex_state = 12, .external_lex_state = 5}, + [5460] = {.lex_state = 14, .external_lex_state = 6}, + [5461] = {.lex_state = 14, .external_lex_state = 7}, + [5462] = {.lex_state = 14, .external_lex_state = 7}, + [5463] = {.lex_state = 14, .external_lex_state = 7}, [5464] = {.lex_state = 14, .external_lex_state = 7}, - [5465] = {.lex_state = 14, .external_lex_state = 7}, - [5466] = {.lex_state = 12, .external_lex_state = 5}, + [5465] = {.lex_state = 14, .external_lex_state = 6}, + [5466] = {.lex_state = 12, .external_lex_state = 2}, [5467] = {.lex_state = 14, .external_lex_state = 7}, - [5468] = {.lex_state = 12, .external_lex_state = 5}, - [5469] = {.lex_state = 12, .external_lex_state = 5}, - [5470] = {.lex_state = 14, .external_lex_state = 6}, - [5471] = {.lex_state = 12, .external_lex_state = 5}, - [5472] = {.lex_state = 12, .external_lex_state = 5}, - [5473] = {.lex_state = 12, .external_lex_state = 5}, - [5474] = {.lex_state = 12, .external_lex_state = 5}, - [5475] = {.lex_state = 12, .external_lex_state = 5}, - [5476] = {.lex_state = 12, .external_lex_state = 5}, - [5477] = {.lex_state = 12, .external_lex_state = 5}, - [5478] = {.lex_state = 12, .external_lex_state = 5}, - [5479] = {.lex_state = 12, .external_lex_state = 5}, - [5480] = {.lex_state = 24, .external_lex_state = 9}, - [5481] = {.lex_state = 12, .external_lex_state = 5}, - [5482] = {.lex_state = 24, .external_lex_state = 9}, - [5483] = {.lex_state = 12, .external_lex_state = 5}, - [5484] = {.lex_state = 14, .external_lex_state = 6}, - [5485] = {.lex_state = 12, .external_lex_state = 5}, - [5486] = {.lex_state = 12, .external_lex_state = 5}, - [5487] = {.lex_state = 12, .external_lex_state = 5}, - [5488] = {.lex_state = 14, .external_lex_state = 7}, - [5489] = {.lex_state = 14, .external_lex_state = 7}, - [5490] = {.lex_state = 12, .external_lex_state = 5}, - [5491] = {.lex_state = 12, .external_lex_state = 5}, - [5492] = {.lex_state = 12, .external_lex_state = 5}, - [5493] = {.lex_state = 12, .external_lex_state = 5}, - [5494] = {.lex_state = 12, .external_lex_state = 5}, - [5495] = {.lex_state = 12, .external_lex_state = 5}, - [5496] = {.lex_state = 12, .external_lex_state = 5}, - [5497] = {.lex_state = 12, .external_lex_state = 5}, - [5498] = {.lex_state = 24, .external_lex_state = 9}, - [5499] = {.lex_state = 12, .external_lex_state = 5}, + [5468] = {.lex_state = 14, .external_lex_state = 6}, + [5469] = {.lex_state = 12, .external_lex_state = 2}, + [5470] = {.lex_state = 14, .external_lex_state = 7}, + [5471] = {.lex_state = 14, .external_lex_state = 6}, + [5472] = {.lex_state = 14, .external_lex_state = 7}, + [5473] = {.lex_state = 14, .external_lex_state = 7}, + [5474] = {.lex_state = 21, .external_lex_state = 9}, + [5475] = {.lex_state = 14, .external_lex_state = 6}, + [5476] = {.lex_state = 14, .external_lex_state = 6}, + [5477] = {.lex_state = 24, .external_lex_state = 8}, + [5478] = {.lex_state = 14, .external_lex_state = 7}, + [5479] = {.lex_state = 14, .external_lex_state = 7}, + [5480] = {.lex_state = 14, .external_lex_state = 7}, + [5481] = {.lex_state = 24, .external_lex_state = 8}, + [5482] = {.lex_state = 14, .external_lex_state = 6}, + [5483] = {.lex_state = 14, .external_lex_state = 6}, + [5484] = {.lex_state = 9, .external_lex_state = 2}, + [5485] = {.lex_state = 14, .external_lex_state = 7}, + [5486] = {.lex_state = 21, .external_lex_state = 8}, + [5487] = {.lex_state = 9, .external_lex_state = 2}, + [5488] = {.lex_state = 14, .external_lex_state = 6}, + [5489] = {.lex_state = 9, .external_lex_state = 2}, + [5490] = {.lex_state = 21, .external_lex_state = 8}, + [5491] = {.lex_state = 21, .external_lex_state = 8}, + [5492] = {.lex_state = 24, .external_lex_state = 9}, + [5493] = {.lex_state = 21, .external_lex_state = 8}, + [5494] = {.lex_state = 21, .external_lex_state = 8}, + [5495] = {.lex_state = 21, .external_lex_state = 8}, + [5496] = {.lex_state = 24, .external_lex_state = 9}, + [5497] = {.lex_state = 14, .external_lex_state = 7}, + [5498] = {.lex_state = 21, .external_lex_state = 8}, + [5499] = {.lex_state = 21, .external_lex_state = 8}, [5500] = {.lex_state = 14, .external_lex_state = 7}, - [5501] = {.lex_state = 12, .external_lex_state = 5}, - [5502] = {.lex_state = 14, .external_lex_state = 7}, - [5503] = {.lex_state = 12, .external_lex_state = 5}, - [5504] = {.lex_state = 12, .external_lex_state = 5}, - [5505] = {.lex_state = 12, .external_lex_state = 5}, - [5506] = {.lex_state = 9, .external_lex_state = 2}, - [5507] = {.lex_state = 14, .external_lex_state = 7}, - [5508] = {.lex_state = 14, .external_lex_state = 7}, - [5509] = {.lex_state = 24, .external_lex_state = 9}, - [5510] = {.lex_state = 9, .external_lex_state = 2}, - [5511] = {.lex_state = 12, .external_lex_state = 5}, - [5512] = {.lex_state = 12, .external_lex_state = 5}, - [5513] = {.lex_state = 12, .external_lex_state = 5}, - [5514] = {.lex_state = 12, .external_lex_state = 5}, - [5515] = {.lex_state = 12, .external_lex_state = 5}, + [5501] = {.lex_state = 9, .external_lex_state = 2}, + [5502] = {.lex_state = 24, .external_lex_state = 9}, + [5503] = {.lex_state = 9, .external_lex_state = 2}, + [5504] = {.lex_state = 14, .external_lex_state = 7}, + [5505] = {.lex_state = 14, .external_lex_state = 7}, + [5506] = {.lex_state = 14, .external_lex_state = 7}, + [5507] = {.lex_state = 21, .external_lex_state = 8}, + [5508] = {.lex_state = 14, .external_lex_state = 6}, + [5509] = {.lex_state = 14, .external_lex_state = 6}, + [5510] = {.lex_state = 14, .external_lex_state = 7}, + [5511] = {.lex_state = 14, .external_lex_state = 6}, + [5512] = {.lex_state = 21, .external_lex_state = 8}, + [5513] = {.lex_state = 21, .external_lex_state = 8}, + [5514] = {.lex_state = 21, .external_lex_state = 8}, + [5515] = {.lex_state = 14, .external_lex_state = 7}, [5516] = {.lex_state = 14, .external_lex_state = 7}, - [5517] = {.lex_state = 12, .external_lex_state = 5}, - [5518] = {.lex_state = 12, .external_lex_state = 5}, - [5519] = {.lex_state = 12, .external_lex_state = 5}, - [5520] = {.lex_state = 12, .external_lex_state = 5}, - [5521] = {.lex_state = 12, .external_lex_state = 5}, + [5517] = {.lex_state = 21, .external_lex_state = 8}, + [5518] = {.lex_state = 14, .external_lex_state = 7}, + [5519] = {.lex_state = 21, .external_lex_state = 8}, + [5520] = {.lex_state = 24, .external_lex_state = 9}, + [5521] = {.lex_state = 21, .external_lex_state = 8}, [5522] = {.lex_state = 14, .external_lex_state = 7}, - [5523] = {.lex_state = 12, .external_lex_state = 5}, - [5524] = {.lex_state = 12, .external_lex_state = 5}, - [5525] = {.lex_state = 12, .external_lex_state = 5}, - [5526] = {.lex_state = 12, .external_lex_state = 5}, - [5527] = {.lex_state = 12, .external_lex_state = 5}, + [5523] = {.lex_state = 21, .external_lex_state = 8}, + [5524] = {.lex_state = 14, .external_lex_state = 6}, + [5525] = {.lex_state = 14, .external_lex_state = 6}, + [5526] = {.lex_state = 14, .external_lex_state = 7}, + [5527] = {.lex_state = 14, .external_lex_state = 6}, [5528] = {.lex_state = 14, .external_lex_state = 7}, - [5529] = {.lex_state = 12, .external_lex_state = 5}, - [5530] = {.lex_state = 12, .external_lex_state = 5}, + [5529] = {.lex_state = 14, .external_lex_state = 7}, + [5530] = {.lex_state = 14, .external_lex_state = 7}, [5531] = {.lex_state = 14, .external_lex_state = 7}, - [5532] = {.lex_state = 14, .external_lex_state = 7}, + [5532] = {.lex_state = 14, .external_lex_state = 6}, [5533] = {.lex_state = 14, .external_lex_state = 6}, - [5534] = {.lex_state = 12, .external_lex_state = 5}, - [5535] = {.lex_state = 14, .external_lex_state = 7}, - [5536] = {.lex_state = 12, .external_lex_state = 5}, - [5537] = {.lex_state = 12, .external_lex_state = 5}, - [5538] = {.lex_state = 12, .external_lex_state = 5}, - [5539] = {.lex_state = 14, .external_lex_state = 6}, - [5540] = {.lex_state = 24, .external_lex_state = 9}, - [5541] = {.lex_state = 12, .external_lex_state = 5}, + [5534] = {.lex_state = 14, .external_lex_state = 6}, + [5535] = {.lex_state = 9, .external_lex_state = 2}, + [5536] = {.lex_state = 14, .external_lex_state = 6}, + [5537] = {.lex_state = 14, .external_lex_state = 6}, + [5538] = {.lex_state = 21, .external_lex_state = 8}, + [5539] = {.lex_state = 14, .external_lex_state = 7}, + [5540] = {.lex_state = 21, .external_lex_state = 8}, + [5541] = {.lex_state = 21, .external_lex_state = 9}, [5542] = {.lex_state = 14, .external_lex_state = 6}, - [5543] = {.lex_state = 12, .external_lex_state = 5}, - [5544] = {.lex_state = 12, .external_lex_state = 5}, - [5545] = {.lex_state = 12, .external_lex_state = 5}, - [5546] = {.lex_state = 12, .external_lex_state = 5}, - [5547] = {.lex_state = 14, .external_lex_state = 6}, - [5548] = {.lex_state = 12, .external_lex_state = 5}, - [5549] = {.lex_state = 14, .external_lex_state = 7}, - [5550] = {.lex_state = 12, .external_lex_state = 5}, + [5543] = {.lex_state = 14, .external_lex_state = 7}, + [5544] = {.lex_state = 21, .external_lex_state = 8}, + [5545] = {.lex_state = 21, .external_lex_state = 8}, + [5546] = {.lex_state = 14, .external_lex_state = 7}, + [5547] = {.lex_state = 9, .external_lex_state = 2}, + [5548] = {.lex_state = 14, .external_lex_state = 7}, + [5549] = {.lex_state = 21, .external_lex_state = 9}, + [5550] = {.lex_state = 21, .external_lex_state = 8}, [5551] = {.lex_state = 14, .external_lex_state = 7}, - [5552] = {.lex_state = 12, .external_lex_state = 5}, - [5553] = {.lex_state = 12, .external_lex_state = 5}, - [5554] = {.lex_state = 12, .external_lex_state = 5}, - [5555] = {.lex_state = 12, .external_lex_state = 5}, - [5556] = {.lex_state = 12, .external_lex_state = 5}, + [5552] = {.lex_state = 14, .external_lex_state = 7}, + [5553] = {.lex_state = 21, .external_lex_state = 8}, + [5554] = {.lex_state = 14, .external_lex_state = 6}, + [5555] = {.lex_state = 21, .external_lex_state = 8}, + [5556] = {.lex_state = 21, .external_lex_state = 8}, [5557] = {.lex_state = 14, .external_lex_state = 7}, - [5558] = {.lex_state = 14, .external_lex_state = 7}, - [5559] = {.lex_state = 14, .external_lex_state = 6}, - [5560] = {.lex_state = 12, .external_lex_state = 5}, - [5561] = {.lex_state = 12, .external_lex_state = 5}, - [5562] = {.lex_state = 12, .external_lex_state = 5}, + [5558] = {.lex_state = 21, .external_lex_state = 8}, + [5559] = {.lex_state = 21, .external_lex_state = 8}, + [5560] = {.lex_state = 21, .external_lex_state = 8}, + [5561] = {.lex_state = 9, .external_lex_state = 2}, + [5562] = {.lex_state = 21, .external_lex_state = 8}, [5563] = {.lex_state = 14, .external_lex_state = 7}, - [5564] = {.lex_state = 14, .external_lex_state = 7}, - [5565] = {.lex_state = 12, .external_lex_state = 5}, - [5566] = {.lex_state = 12, .external_lex_state = 5}, + [5564] = {.lex_state = 24, .external_lex_state = 8}, + [5565] = {.lex_state = 21, .external_lex_state = 8}, + [5566] = {.lex_state = 21, .external_lex_state = 8}, [5567] = {.lex_state = 14, .external_lex_state = 7}, - [5568] = {.lex_state = 12, .external_lex_state = 5}, - [5569] = {.lex_state = 9, .external_lex_state = 2}, - [5570] = {.lex_state = 14, .external_lex_state = 6}, - [5571] = {.lex_state = 12, .external_lex_state = 5}, - [5572] = {.lex_state = 12, .external_lex_state = 5}, - [5573] = {.lex_state = 12, .external_lex_state = 5}, - [5574] = {.lex_state = 14, .external_lex_state = 7}, - [5575] = {.lex_state = 14, .external_lex_state = 7}, - [5576] = {.lex_state = 14, .external_lex_state = 7}, - [5577] = {.lex_state = 14, .external_lex_state = 6}, - [5578] = {.lex_state = 14, .external_lex_state = 7}, - [5579] = {.lex_state = 14, .external_lex_state = 7}, - [5580] = {.lex_state = 14, .external_lex_state = 6}, - [5581] = {.lex_state = 24, .external_lex_state = 8}, - [5582] = {.lex_state = 14, .external_lex_state = 7}, - [5583] = {.lex_state = 9, .external_lex_state = 2}, - [5584] = {.lex_state = 14, .external_lex_state = 7}, - [5585] = {.lex_state = 21, .external_lex_state = 9}, - [5586] = {.lex_state = 9, .external_lex_state = 2}, + [5568] = {.lex_state = 9, .external_lex_state = 2}, + [5569] = {.lex_state = 24, .external_lex_state = 8}, + [5570] = {.lex_state = 14, .external_lex_state = 7}, + [5571] = {.lex_state = 9, .external_lex_state = 2}, + [5572] = {.lex_state = 21, .external_lex_state = 8}, + [5573] = {.lex_state = 9, .external_lex_state = 2}, + [5574] = {.lex_state = 21, .external_lex_state = 8}, + [5575] = {.lex_state = 21, .external_lex_state = 9}, + [5576] = {.lex_state = 9, .external_lex_state = 2}, + [5577] = {.lex_state = 14, .external_lex_state = 7}, + [5578] = {.lex_state = 21, .external_lex_state = 8}, + [5579] = {.lex_state = 14, .external_lex_state = 6}, + [5580] = {.lex_state = 14, .external_lex_state = 7}, + [5581] = {.lex_state = 21, .external_lex_state = 8}, + [5582] = {.lex_state = 21, .external_lex_state = 8}, + [5583] = {.lex_state = 14, .external_lex_state = 7}, + [5584] = {.lex_state = 21, .external_lex_state = 9}, + [5585] = {.lex_state = 9, .external_lex_state = 2}, + [5586] = {.lex_state = 24, .external_lex_state = 8}, [5587] = {.lex_state = 14, .external_lex_state = 7}, - [5588] = {.lex_state = 14, .external_lex_state = 7}, - [5589] = {.lex_state = 14, .external_lex_state = 7}, - [5590] = {.lex_state = 24, .external_lex_state = 8}, - [5591] = {.lex_state = 14, .external_lex_state = 7}, - [5592] = {.lex_state = 21, .external_lex_state = 9}, - [5593] = {.lex_state = 14, .external_lex_state = 7}, - [5594] = {.lex_state = 14, .external_lex_state = 7}, - [5595] = {.lex_state = 14, .external_lex_state = 7}, - [5596] = {.lex_state = 14, .external_lex_state = 6}, - [5597] = {.lex_state = 14, .external_lex_state = 6}, - [5598] = {.lex_state = 14, .external_lex_state = 7}, - [5599] = {.lex_state = 12, .external_lex_state = 2}, - [5600] = {.lex_state = 24, .external_lex_state = 8}, - [5601] = {.lex_state = 14, .external_lex_state = 6}, - [5602] = {.lex_state = 14, .external_lex_state = 7}, - [5603] = {.lex_state = 14, .external_lex_state = 7}, + [5588] = {.lex_state = 21, .external_lex_state = 8}, + [5589] = {.lex_state = 21, .external_lex_state = 8}, + [5590] = {.lex_state = 14, .external_lex_state = 6}, + [5591] = {.lex_state = 21, .external_lex_state = 8}, + [5592] = {.lex_state = 14, .external_lex_state = 7}, + [5593] = {.lex_state = 9, .external_lex_state = 2}, + [5594] = {.lex_state = 21, .external_lex_state = 9}, + [5595] = {.lex_state = 21, .external_lex_state = 8}, + [5596] = {.lex_state = 21, .external_lex_state = 8}, + [5597] = {.lex_state = 24, .external_lex_state = 8}, + [5598] = {.lex_state = 21, .external_lex_state = 8}, + [5599] = {.lex_state = 9, .external_lex_state = 2}, + [5600] = {.lex_state = 21, .external_lex_state = 8}, + [5601] = {.lex_state = 21, .external_lex_state = 8}, + [5602] = {.lex_state = 21, .external_lex_state = 8}, + [5603] = {.lex_state = 21, .external_lex_state = 8}, [5604] = {.lex_state = 14, .external_lex_state = 7}, - [5605] = {.lex_state = 14, .external_lex_state = 7}, - [5606] = {.lex_state = 9, .external_lex_state = 2}, - [5607] = {.lex_state = 24, .external_lex_state = 8}, - [5608] = {.lex_state = 14, .external_lex_state = 7}, - [5609] = {.lex_state = 9, .external_lex_state = 2}, - [5610] = {.lex_state = 21, .external_lex_state = 9}, - [5611] = {.lex_state = 12, .external_lex_state = 2}, - [5612] = {.lex_state = 14, .external_lex_state = 7}, - [5613] = {.lex_state = 14, .external_lex_state = 6}, + [5605] = {.lex_state = 21, .external_lex_state = 8}, + [5606] = {.lex_state = 21, .external_lex_state = 8}, + [5607] = {.lex_state = 21, .external_lex_state = 8}, + [5608] = {.lex_state = 21, .external_lex_state = 8}, + [5609] = {.lex_state = 21, .external_lex_state = 8}, + [5610] = {.lex_state = 14, .external_lex_state = 7}, + [5611] = {.lex_state = 14, .external_lex_state = 7}, + [5612] = {.lex_state = 21, .external_lex_state = 8}, + [5613] = {.lex_state = 14, .external_lex_state = 7}, [5614] = {.lex_state = 14, .external_lex_state = 7}, - [5615] = {.lex_state = 21, .external_lex_state = 9}, - [5616] = {.lex_state = 14, .external_lex_state = 6}, - [5617] = {.lex_state = 24, .external_lex_state = 8}, - [5618] = {.lex_state = 14, .external_lex_state = 6}, - [5619] = {.lex_state = 9, .external_lex_state = 2}, - [5620] = {.lex_state = 14, .external_lex_state = 6}, - [5621] = {.lex_state = 14, .external_lex_state = 6}, - [5622] = {.lex_state = 21, .external_lex_state = 9}, - [5623] = {.lex_state = 14, .external_lex_state = 7}, + [5615] = {.lex_state = 14, .external_lex_state = 7}, + [5616] = {.lex_state = 21, .external_lex_state = 8}, + [5617] = {.lex_state = 21, .external_lex_state = 8}, + [5618] = {.lex_state = 21, .external_lex_state = 8}, + [5619] = {.lex_state = 14, .external_lex_state = 7}, + [5620] = {.lex_state = 21, .external_lex_state = 8}, + [5621] = {.lex_state = 21, .external_lex_state = 8}, + [5622] = {.lex_state = 14, .external_lex_state = 7}, + [5623] = {.lex_state = 14, .external_lex_state = 6}, [5624] = {.lex_state = 14, .external_lex_state = 6}, - [5625] = {.lex_state = 14, .external_lex_state = 7}, + [5625] = {.lex_state = 14, .external_lex_state = 6}, [5626] = {.lex_state = 14, .external_lex_state = 6}, [5627] = {.lex_state = 14, .external_lex_state = 6}, [5628] = {.lex_state = 14, .external_lex_state = 6}, - [5629] = {.lex_state = 14, .external_lex_state = 6}, - [5630] = {.lex_state = 14, .external_lex_state = 6}, - [5631] = {.lex_state = 14, .external_lex_state = 6}, - [5632] = {.lex_state = 14, .external_lex_state = 7}, - [5633] = {.lex_state = 14, .external_lex_state = 7}, - [5634] = {.lex_state = 14, .external_lex_state = 6}, - [5635] = {.lex_state = 14, .external_lex_state = 7}, - [5636] = {.lex_state = 14, .external_lex_state = 7}, - [5637] = {.lex_state = 14, .external_lex_state = 6}, - [5638] = {.lex_state = 14, .external_lex_state = 6}, - [5639] = {.lex_state = 21, .external_lex_state = 8}, - [5640] = {.lex_state = 24, .external_lex_state = 9}, - [5641] = {.lex_state = 21, .external_lex_state = 8}, + [5629] = {.lex_state = 21, .external_lex_state = 8}, + [5630] = {.lex_state = 21, .external_lex_state = 8}, + [5631] = {.lex_state = 9, .external_lex_state = 5}, + [5632] = {.lex_state = 9, .external_lex_state = 5}, + [5633] = {.lex_state = 30, .external_lex_state = 9}, + [5634] = {.lex_state = 30, .external_lex_state = 9}, + [5635] = {.lex_state = 30, .external_lex_state = 9}, + [5636] = {.lex_state = 30, .external_lex_state = 9}, + [5637] = {.lex_state = 9, .external_lex_state = 2}, + [5638] = {.lex_state = 21, .external_lex_state = 8}, + [5639] = {.lex_state = 9, .external_lex_state = 2}, + [5640] = {.lex_state = 30, .external_lex_state = 9}, + [5641] = {.lex_state = 14, .external_lex_state = 7}, [5642] = {.lex_state = 21, .external_lex_state = 8}, - [5643] = {.lex_state = 14, .external_lex_state = 6}, + [5643] = {.lex_state = 14, .external_lex_state = 7}, [5644] = {.lex_state = 14, .external_lex_state = 7}, [5645] = {.lex_state = 14, .external_lex_state = 7}, - [5646] = {.lex_state = 21, .external_lex_state = 8}, + [5646] = {.lex_state = 14, .external_lex_state = 7}, [5647] = {.lex_state = 21, .external_lex_state = 8}, - [5648] = {.lex_state = 21, .external_lex_state = 8}, + [5648] = {.lex_state = 30, .external_lex_state = 9}, [5649] = {.lex_state = 21, .external_lex_state = 8}, - [5650] = {.lex_state = 14, .external_lex_state = 7}, - [5651] = {.lex_state = 21, .external_lex_state = 8}, - [5652] = {.lex_state = 9, .external_lex_state = 2}, - [5653] = {.lex_state = 14, .external_lex_state = 6}, - [5654] = {.lex_state = 14, .external_lex_state = 6}, + [5650] = {.lex_state = 21, .external_lex_state = 8}, + [5651] = {.lex_state = 14, .external_lex_state = 7}, + [5652] = {.lex_state = 30, .external_lex_state = 9}, + [5653] = {.lex_state = 21, .external_lex_state = 8}, + [5654] = {.lex_state = 21, .external_lex_state = 8}, [5655] = {.lex_state = 21, .external_lex_state = 8}, [5656] = {.lex_state = 21, .external_lex_state = 8}, - [5657] = {.lex_state = 14, .external_lex_state = 7}, - [5658] = {.lex_state = 24, .external_lex_state = 9}, - [5659] = {.lex_state = 14, .external_lex_state = 6}, - [5660] = {.lex_state = 9, .external_lex_state = 2}, - [5661] = {.lex_state = 14, .external_lex_state = 7}, - [5662] = {.lex_state = 14, .external_lex_state = 6}, - [5663] = {.lex_state = 14, .external_lex_state = 7}, + [5657] = {.lex_state = 30, .external_lex_state = 9}, + [5658] = {.lex_state = 30, .external_lex_state = 9}, + [5659] = {.lex_state = 30, .external_lex_state = 9}, + [5660] = {.lex_state = 21, .external_lex_state = 8}, + [5661] = {.lex_state = 30, .external_lex_state = 9}, + [5662] = {.lex_state = 30, .external_lex_state = 9}, + [5663] = {.lex_state = 21, .external_lex_state = 8}, [5664] = {.lex_state = 21, .external_lex_state = 8}, - [5665] = {.lex_state = 14, .external_lex_state = 7}, - [5666] = {.lex_state = 21, .external_lex_state = 8}, - [5667] = {.lex_state = 14, .external_lex_state = 7}, - [5668] = {.lex_state = 24, .external_lex_state = 9}, - [5669] = {.lex_state = 9, .external_lex_state = 2}, - [5670] = {.lex_state = 24, .external_lex_state = 9}, - [5671] = {.lex_state = 14, .external_lex_state = 7}, + [5665] = {.lex_state = 30, .external_lex_state = 9}, + [5666] = {.lex_state = 30, .external_lex_state = 9}, + [5667] = {.lex_state = 14, .external_lex_state = 6}, + [5668] = {.lex_state = 21, .external_lex_state = 8}, + [5669] = {.lex_state = 21, .external_lex_state = 8}, + [5670] = {.lex_state = 14, .external_lex_state = 6}, + [5671] = {.lex_state = 14, .external_lex_state = 6}, [5672] = {.lex_state = 21, .external_lex_state = 8}, - [5673] = {.lex_state = 14, .external_lex_state = 6}, - [5674] = {.lex_state = 14, .external_lex_state = 6}, + [5673] = {.lex_state = 21, .external_lex_state = 8}, + [5674] = {.lex_state = 21, .external_lex_state = 8}, [5675] = {.lex_state = 21, .external_lex_state = 8}, - [5676] = {.lex_state = 14, .external_lex_state = 7}, - [5677] = {.lex_state = 9, .external_lex_state = 2}, + [5676] = {.lex_state = 21, .external_lex_state = 8}, + [5677] = {.lex_state = 21, .external_lex_state = 8}, [5678] = {.lex_state = 21, .external_lex_state = 8}, [5679] = {.lex_state = 21, .external_lex_state = 8}, - [5680] = {.lex_state = 14, .external_lex_state = 7}, - [5681] = {.lex_state = 24, .external_lex_state = 9}, - [5682] = {.lex_state = 14, .external_lex_state = 7}, - [5683] = {.lex_state = 14, .external_lex_state = 7}, - [5684] = {.lex_state = 14, .external_lex_state = 6}, - [5685] = {.lex_state = 14, .external_lex_state = 7}, - [5686] = {.lex_state = 9, .external_lex_state = 2}, - [5687] = {.lex_state = 14, .external_lex_state = 7}, - [5688] = {.lex_state = 14, .external_lex_state = 6}, - [5689] = {.lex_state = 14, .external_lex_state = 7}, - [5690] = {.lex_state = 14, .external_lex_state = 6}, - [5691] = {.lex_state = 14, .external_lex_state = 6}, - [5692] = {.lex_state = 14, .external_lex_state = 7}, - [5693] = {.lex_state = 14, .external_lex_state = 7}, - [5694] = {.lex_state = 9, .external_lex_state = 2}, + [5680] = {.lex_state = 21, .external_lex_state = 8}, + [5681] = {.lex_state = 21, .external_lex_state = 8}, + [5682] = {.lex_state = 21, .external_lex_state = 8}, + [5683] = {.lex_state = 24, .external_lex_state = 9}, + [5684] = {.lex_state = 21, .external_lex_state = 8}, + [5685] = {.lex_state = 24, .external_lex_state = 9}, + [5686] = {.lex_state = 21, .external_lex_state = 9}, + [5687] = {.lex_state = 21, .external_lex_state = 9}, + [5688] = {.lex_state = 21, .external_lex_state = 8}, + [5689] = {.lex_state = 21, .external_lex_state = 8}, + [5690] = {.lex_state = 21, .external_lex_state = 8}, + [5691] = {.lex_state = 21, .external_lex_state = 8}, + [5692] = {.lex_state = 21, .external_lex_state = 8}, + [5693] = {.lex_state = 21, .external_lex_state = 9}, + [5694] = {.lex_state = 21, .external_lex_state = 9}, [5695] = {.lex_state = 21, .external_lex_state = 8}, [5696] = {.lex_state = 21, .external_lex_state = 8}, - [5697] = {.lex_state = 14, .external_lex_state = 7}, + [5697] = {.lex_state = 26, .external_lex_state = 8}, [5698] = {.lex_state = 21, .external_lex_state = 8}, - [5699] = {.lex_state = 21, .external_lex_state = 8}, - [5700] = {.lex_state = 21, .external_lex_state = 8}, - [5701] = {.lex_state = 9, .external_lex_state = 2}, - [5702] = {.lex_state = 9, .external_lex_state = 2}, - [5703] = {.lex_state = 14, .external_lex_state = 6}, - [5704] = {.lex_state = 21, .external_lex_state = 8}, - [5705] = {.lex_state = 9, .external_lex_state = 2}, - [5706] = {.lex_state = 14, .external_lex_state = 7}, + [5699] = {.lex_state = 21, .external_lex_state = 9}, + [5700] = {.lex_state = 22, .external_lex_state = 8}, + [5701] = {.lex_state = 21, .external_lex_state = 9}, + [5702] = {.lex_state = 26, .external_lex_state = 8}, + [5703] = {.lex_state = 21, .external_lex_state = 8}, + [5704] = {.lex_state = 21, .external_lex_state = 9}, + [5705] = {.lex_state = 21, .external_lex_state = 8}, + [5706] = {.lex_state = 21, .external_lex_state = 8}, [5707] = {.lex_state = 21, .external_lex_state = 8}, - [5708] = {.lex_state = 21, .external_lex_state = 8}, - [5709] = {.lex_state = 21, .external_lex_state = 9}, - [5710] = {.lex_state = 14, .external_lex_state = 7}, - [5711] = {.lex_state = 14, .external_lex_state = 6}, - [5712] = {.lex_state = 21, .external_lex_state = 8}, - [5713] = {.lex_state = 14, .external_lex_state = 7}, - [5714] = {.lex_state = 21, .external_lex_state = 8}, - [5715] = {.lex_state = 21, .external_lex_state = 9}, - [5716] = {.lex_state = 14, .external_lex_state = 7}, - [5717] = {.lex_state = 14, .external_lex_state = 6}, - [5718] = {.lex_state = 14, .external_lex_state = 7}, - [5719] = {.lex_state = 14, .external_lex_state = 7}, + [5708] = {.lex_state = 21, .external_lex_state = 9}, + [5709] = {.lex_state = 21, .external_lex_state = 8}, + [5710] = {.lex_state = 26, .external_lex_state = 8}, + [5711] = {.lex_state = 26, .external_lex_state = 8}, + [5712] = {.lex_state = 22, .external_lex_state = 8}, + [5713] = {.lex_state = 21, .external_lex_state = 9}, + [5714] = {.lex_state = 26, .external_lex_state = 8}, + [5715] = {.lex_state = 26, .external_lex_state = 8}, + [5716] = {.lex_state = 21, .external_lex_state = 9}, + [5717] = {.lex_state = 21, .external_lex_state = 9}, + [5718] = {.lex_state = 21, .external_lex_state = 9}, + [5719] = {.lex_state = 21, .external_lex_state = 9}, [5720] = {.lex_state = 21, .external_lex_state = 8}, - [5721] = {.lex_state = 21, .external_lex_state = 9}, + [5721] = {.lex_state = 21, .external_lex_state = 8}, [5722] = {.lex_state = 21, .external_lex_state = 8}, - [5723] = {.lex_state = 24, .external_lex_state = 8}, - [5724] = {.lex_state = 14, .external_lex_state = 7}, - [5725] = {.lex_state = 24, .external_lex_state = 8}, - [5726] = {.lex_state = 21, .external_lex_state = 9}, - [5727] = {.lex_state = 14, .external_lex_state = 7}, - [5728] = {.lex_state = 24, .external_lex_state = 8}, - [5729] = {.lex_state = 14, .external_lex_state = 7}, - [5730] = {.lex_state = 14, .external_lex_state = 6}, - [5731] = {.lex_state = 24, .external_lex_state = 8}, - [5732] = {.lex_state = 14, .external_lex_state = 7}, - [5733] = {.lex_state = 24, .external_lex_state = 8}, - [5734] = {.lex_state = 14, .external_lex_state = 7}, - [5735] = {.lex_state = 21, .external_lex_state = 8}, + [5723] = {.lex_state = 21, .external_lex_state = 9}, + [5724] = {.lex_state = 21, .external_lex_state = 8}, + [5725] = {.lex_state = 25, .external_lex_state = 8}, + [5726] = {.lex_state = 25, .external_lex_state = 8}, + [5727] = {.lex_state = 25, .external_lex_state = 8}, + [5728] = {.lex_state = 21, .external_lex_state = 8}, + [5729] = {.lex_state = 21, .external_lex_state = 8}, + [5730] = {.lex_state = 25, .external_lex_state = 8}, + [5731] = {.lex_state = 25, .external_lex_state = 8}, + [5732] = {.lex_state = 21, .external_lex_state = 8}, + [5733] = {.lex_state = 25, .external_lex_state = 8}, + [5734] = {.lex_state = 25, .external_lex_state = 8}, + [5735] = {.lex_state = 25, .external_lex_state = 8}, [5736] = {.lex_state = 21, .external_lex_state = 8}, - [5737] = {.lex_state = 21, .external_lex_state = 8}, - [5738] = {.lex_state = 14, .external_lex_state = 6}, - [5739] = {.lex_state = 14, .external_lex_state = 6}, - [5740] = {.lex_state = 21, .external_lex_state = 8}, - [5741] = {.lex_state = 14, .external_lex_state = 7}, - [5742] = {.lex_state = 21, .external_lex_state = 8}, - [5743] = {.lex_state = 21, .external_lex_state = 9}, + [5737] = {.lex_state = 21, .external_lex_state = 9}, + [5738] = {.lex_state = 21, .external_lex_state = 8}, + [5739] = {.lex_state = 25, .external_lex_state = 8}, + [5740] = {.lex_state = 25, .external_lex_state = 8}, + [5741] = {.lex_state = 25, .external_lex_state = 8}, + [5742] = {.lex_state = 25, .external_lex_state = 8}, + [5743] = {.lex_state = 21, .external_lex_state = 8}, [5744] = {.lex_state = 21, .external_lex_state = 8}, - [5745] = {.lex_state = 21, .external_lex_state = 8}, - [5746] = {.lex_state = 21, .external_lex_state = 8}, - [5747] = {.lex_state = 9, .external_lex_state = 2}, - [5748] = {.lex_state = 9, .external_lex_state = 2}, + [5745] = {.lex_state = 21, .external_lex_state = 9}, + [5746] = {.lex_state = 25, .external_lex_state = 8}, + [5747] = {.lex_state = 25, .external_lex_state = 8}, + [5748] = {.lex_state = 21, .external_lex_state = 8}, [5749] = {.lex_state = 21, .external_lex_state = 8}, [5750] = {.lex_state = 21, .external_lex_state = 8}, - [5751] = {.lex_state = 9, .external_lex_state = 2}, + [5751] = {.lex_state = 21, .external_lex_state = 8}, [5752] = {.lex_state = 21, .external_lex_state = 8}, - [5753] = {.lex_state = 21, .external_lex_state = 8}, - [5754] = {.lex_state = 9, .external_lex_state = 2}, + [5753] = {.lex_state = 25, .external_lex_state = 8}, + [5754] = {.lex_state = 21, .external_lex_state = 8}, [5755] = {.lex_state = 21, .external_lex_state = 8}, - [5756] = {.lex_state = 21, .external_lex_state = 8}, - [5757] = {.lex_state = 9, .external_lex_state = 2}, - [5758] = {.lex_state = 14, .external_lex_state = 7}, - [5759] = {.lex_state = 21, .external_lex_state = 8}, - [5760] = {.lex_state = 9, .external_lex_state = 2}, - [5761] = {.lex_state = 14, .external_lex_state = 7}, - [5762] = {.lex_state = 21, .external_lex_state = 8}, - [5763] = {.lex_state = 21, .external_lex_state = 8}, - [5764] = {.lex_state = 21, .external_lex_state = 8}, - [5765] = {.lex_state = 21, .external_lex_state = 8}, - [5766] = {.lex_state = 14, .external_lex_state = 7}, - [5767] = {.lex_state = 14, .external_lex_state = 7}, - [5768] = {.lex_state = 21, .external_lex_state = 8}, - [5769] = {.lex_state = 21, .external_lex_state = 8}, - [5770] = {.lex_state = 14, .external_lex_state = 7}, - [5771] = {.lex_state = 14, .external_lex_state = 7}, - [5772] = {.lex_state = 14, .external_lex_state = 7}, - [5773] = {.lex_state = 14, .external_lex_state = 7}, - [5774] = {.lex_state = 14, .external_lex_state = 7}, + [5756] = {.lex_state = 25, .external_lex_state = 8}, + [5757] = {.lex_state = 21, .external_lex_state = 8}, + [5758] = {.lex_state = 21, .external_lex_state = 8}, + [5759] = {.lex_state = 25, .external_lex_state = 8}, + [5760] = {.lex_state = 21, .external_lex_state = 9}, + [5761] = {.lex_state = 21, .external_lex_state = 8}, + [5762] = {.lex_state = 21, .external_lex_state = 9}, + [5763] = {.lex_state = 25, .external_lex_state = 8}, + [5764] = {.lex_state = 25, .external_lex_state = 8}, + [5765] = {.lex_state = 25, .external_lex_state = 8}, + [5766] = {.lex_state = 25, .external_lex_state = 8}, + [5767] = {.lex_state = 21, .external_lex_state = 9}, + [5768] = {.lex_state = 21, .external_lex_state = 9}, + [5769] = {.lex_state = 21, .external_lex_state = 9}, + [5770] = {.lex_state = 21, .external_lex_state = 8}, + [5771] = {.lex_state = 21, .external_lex_state = 8}, + [5772] = {.lex_state = 21, .external_lex_state = 8}, + [5773] = {.lex_state = 21, .external_lex_state = 8}, + [5774] = {.lex_state = 21, .external_lex_state = 8}, [5775] = {.lex_state = 21, .external_lex_state = 8}, [5776] = {.lex_state = 21, .external_lex_state = 8}, [5777] = {.lex_state = 21, .external_lex_state = 8}, - [5778] = {.lex_state = 14, .external_lex_state = 7}, + [5778] = {.lex_state = 21, .external_lex_state = 8}, [5779] = {.lex_state = 21, .external_lex_state = 8}, [5780] = {.lex_state = 21, .external_lex_state = 8}, [5781] = {.lex_state = 21, .external_lex_state = 8}, [5782] = {.lex_state = 21, .external_lex_state = 8}, - [5783] = {.lex_state = 9, .external_lex_state = 5}, - [5784] = {.lex_state = 14, .external_lex_state = 6}, - [5785] = {.lex_state = 14, .external_lex_state = 6}, - [5786] = {.lex_state = 21, .external_lex_state = 8}, - [5787] = {.lex_state = 14, .external_lex_state = 6}, - [5788] = {.lex_state = 14, .external_lex_state = 6}, + [5783] = {.lex_state = 21, .external_lex_state = 8}, + [5784] = {.lex_state = 21, .external_lex_state = 8}, + [5785] = {.lex_state = 21, .external_lex_state = 8}, + [5786] = {.lex_state = 21, .external_lex_state = 9}, + [5787] = {.lex_state = 21, .external_lex_state = 8}, + [5788] = {.lex_state = 21, .external_lex_state = 8}, [5789] = {.lex_state = 21, .external_lex_state = 8}, - [5790] = {.lex_state = 14, .external_lex_state = 6}, - [5791] = {.lex_state = 14, .external_lex_state = 6}, - [5792] = {.lex_state = 9, .external_lex_state = 5}, - [5793] = {.lex_state = 14, .external_lex_state = 7}, - [5794] = {.lex_state = 14, .external_lex_state = 7}, - [5795] = {.lex_state = 30, .external_lex_state = 9}, - [5796] = {.lex_state = 30, .external_lex_state = 9}, - [5797] = {.lex_state = 21, .external_lex_state = 8}, - [5798] = {.lex_state = 30, .external_lex_state = 9}, - [5799] = {.lex_state = 14, .external_lex_state = 7}, - [5800] = {.lex_state = 30, .external_lex_state = 9}, - [5801] = {.lex_state = 21, .external_lex_state = 8}, - [5802] = {.lex_state = 14, .external_lex_state = 7}, - [5803] = {.lex_state = 30, .external_lex_state = 9}, + [5790] = {.lex_state = 21, .external_lex_state = 9}, + [5791] = {.lex_state = 21, .external_lex_state = 8}, + [5792] = {.lex_state = 21, .external_lex_state = 8}, + [5793] = {.lex_state = 21, .external_lex_state = 8}, + [5794] = {.lex_state = 21, .external_lex_state = 9}, + [5795] = {.lex_state = 21, .external_lex_state = 9}, + [5796] = {.lex_state = 21, .external_lex_state = 8}, + [5797] = {.lex_state = 21, .external_lex_state = 9}, + [5798] = {.lex_state = 21, .external_lex_state = 9}, + [5799] = {.lex_state = 21, .external_lex_state = 8}, + [5800] = {.lex_state = 21, .external_lex_state = 9}, + [5801] = {.lex_state = 21, .external_lex_state = 9}, + [5802] = {.lex_state = 21, .external_lex_state = 8}, + [5803] = {.lex_state = 21, .external_lex_state = 9}, [5804] = {.lex_state = 21, .external_lex_state = 8}, - [5805] = {.lex_state = 14, .external_lex_state = 7}, + [5805] = {.lex_state = 21, .external_lex_state = 9}, [5806] = {.lex_state = 21, .external_lex_state = 8}, - [5807] = {.lex_state = 9, .external_lex_state = 2}, - [5808] = {.lex_state = 21, .external_lex_state = 8}, - [5809] = {.lex_state = 30, .external_lex_state = 9}, - [5810] = {.lex_state = 14, .external_lex_state = 7}, - [5811] = {.lex_state = 9, .external_lex_state = 2}, - [5812] = {.lex_state = 21, .external_lex_state = 8}, - [5813] = {.lex_state = 30, .external_lex_state = 9}, - [5814] = {.lex_state = 30, .external_lex_state = 9}, + [5807] = {.lex_state = 21, .external_lex_state = 9}, + [5808] = {.lex_state = 21, .external_lex_state = 9}, + [5809] = {.lex_state = 21, .external_lex_state = 8}, + [5810] = {.lex_state = 21, .external_lex_state = 9}, + [5811] = {.lex_state = 21, .external_lex_state = 9}, + [5812] = {.lex_state = 21, .external_lex_state = 9}, + [5813] = {.lex_state = 21, .external_lex_state = 8}, + [5814] = {.lex_state = 21, .external_lex_state = 9}, [5815] = {.lex_state = 21, .external_lex_state = 8}, [5816] = {.lex_state = 21, .external_lex_state = 8}, [5817] = {.lex_state = 21, .external_lex_state = 8}, - [5818] = {.lex_state = 14, .external_lex_state = 6}, - [5819] = {.lex_state = 30, .external_lex_state = 9}, - [5820] = {.lex_state = 30, .external_lex_state = 9}, - [5821] = {.lex_state = 30, .external_lex_state = 9}, - [5822] = {.lex_state = 30, .external_lex_state = 9}, + [5818] = {.lex_state = 21, .external_lex_state = 8}, + [5819] = {.lex_state = 21, .external_lex_state = 9}, + [5820] = {.lex_state = 21, .external_lex_state = 8}, + [5821] = {.lex_state = 21, .external_lex_state = 8}, + [5822] = {.lex_state = 28, .external_lex_state = 8}, [5823] = {.lex_state = 21, .external_lex_state = 8}, - [5824] = {.lex_state = 14, .external_lex_state = 6}, + [5824] = {.lex_state = 21, .external_lex_state = 8}, [5825] = {.lex_state = 21, .external_lex_state = 8}, - [5826] = {.lex_state = 21, .external_lex_state = 8}, - [5827] = {.lex_state = 30, .external_lex_state = 9}, + [5826] = {.lex_state = 28, .external_lex_state = 8}, + [5827] = {.lex_state = 21, .external_lex_state = 8}, [5828] = {.lex_state = 21, .external_lex_state = 8}, - [5829] = {.lex_state = 30, .external_lex_state = 9}, - [5830] = {.lex_state = 14, .external_lex_state = 6}, + [5829] = {.lex_state = 21, .external_lex_state = 8}, + [5830] = {.lex_state = 21, .external_lex_state = 9}, [5831] = {.lex_state = 21, .external_lex_state = 8}, - [5832] = {.lex_state = 21, .external_lex_state = 8}, + [5832] = {.lex_state = 21, .external_lex_state = 9}, [5833] = {.lex_state = 21, .external_lex_state = 8}, [5834] = {.lex_state = 21, .external_lex_state = 8}, [5835] = {.lex_state = 21, .external_lex_state = 8}, @@ -29668,79 +29319,79 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5838] = {.lex_state = 21, .external_lex_state = 8}, [5839] = {.lex_state = 21, .external_lex_state = 8}, [5840] = {.lex_state = 21, .external_lex_state = 8}, - [5841] = {.lex_state = 21, .external_lex_state = 8}, - [5842] = {.lex_state = 24, .external_lex_state = 9}, - [5843] = {.lex_state = 21, .external_lex_state = 8}, + [5841] = {.lex_state = 28, .external_lex_state = 8}, + [5842] = {.lex_state = 28, .external_lex_state = 8}, + [5843] = {.lex_state = 28, .external_lex_state = 8}, [5844] = {.lex_state = 21, .external_lex_state = 8}, [5845] = {.lex_state = 21, .external_lex_state = 8}, - [5846] = {.lex_state = 21, .external_lex_state = 8}, + [5846] = {.lex_state = 28, .external_lex_state = 8}, [5847] = {.lex_state = 24, .external_lex_state = 9}, - [5848] = {.lex_state = 21, .external_lex_state = 9}, - [5849] = {.lex_state = 21, .external_lex_state = 9}, - [5850] = {.lex_state = 21, .external_lex_state = 8}, + [5848] = {.lex_state = 24, .external_lex_state = 9}, + [5849] = {.lex_state = 21, .external_lex_state = 8}, + [5850] = {.lex_state = 28, .external_lex_state = 8}, [5851] = {.lex_state = 21, .external_lex_state = 8}, - [5852] = {.lex_state = 21, .external_lex_state = 8}, - [5853] = {.lex_state = 21, .external_lex_state = 8}, - [5854] = {.lex_state = 21, .external_lex_state = 9}, - [5855] = {.lex_state = 21, .external_lex_state = 9}, - [5856] = {.lex_state = 21, .external_lex_state = 8}, - [5857] = {.lex_state = 26, .external_lex_state = 8}, - [5858] = {.lex_state = 21, .external_lex_state = 8}, - [5859] = {.lex_state = 21, .external_lex_state = 9}, - [5860] = {.lex_state = 21, .external_lex_state = 9}, - [5861] = {.lex_state = 21, .external_lex_state = 8}, - [5862] = {.lex_state = 26, .external_lex_state = 8}, - [5863] = {.lex_state = 26, .external_lex_state = 8}, - [5864] = {.lex_state = 26, .external_lex_state = 8}, + [5852] = {.lex_state = 25, .external_lex_state = 8}, + [5853] = {.lex_state = 25, .external_lex_state = 8}, + [5854] = {.lex_state = 21, .external_lex_state = 8}, + [5855] = {.lex_state = 21, .external_lex_state = 8}, + [5856] = {.lex_state = 25, .external_lex_state = 8}, + [5857] = {.lex_state = 28, .external_lex_state = 8}, + [5858] = {.lex_state = 25, .external_lex_state = 8}, + [5859] = {.lex_state = 21, .external_lex_state = 8}, + [5860] = {.lex_state = 24, .external_lex_state = 8}, + [5861] = {.lex_state = 24, .external_lex_state = 8}, + [5862] = {.lex_state = 25, .external_lex_state = 8}, + [5863] = {.lex_state = 28, .external_lex_state = 8}, + [5864] = {.lex_state = 21, .external_lex_state = 8}, [5865] = {.lex_state = 21, .external_lex_state = 8}, [5866] = {.lex_state = 21, .external_lex_state = 8}, - [5867] = {.lex_state = 21, .external_lex_state = 9}, - [5868] = {.lex_state = 22, .external_lex_state = 8}, - [5869] = {.lex_state = 22, .external_lex_state = 8}, - [5870] = {.lex_state = 21, .external_lex_state = 9}, - [5871] = {.lex_state = 21, .external_lex_state = 9}, + [5867] = {.lex_state = 28, .external_lex_state = 8}, + [5868] = {.lex_state = 25, .external_lex_state = 8}, + [5869] = {.lex_state = 25, .external_lex_state = 8}, + [5870] = {.lex_state = 21, .external_lex_state = 8}, + [5871] = {.lex_state = 21, .external_lex_state = 8}, [5872] = {.lex_state = 21, .external_lex_state = 8}, - [5873] = {.lex_state = 21, .external_lex_state = 9}, - [5874] = {.lex_state = 26, .external_lex_state = 8}, - [5875] = {.lex_state = 26, .external_lex_state = 8}, + [5873] = {.lex_state = 21, .external_lex_state = 8}, + [5874] = {.lex_state = 21, .external_lex_state = 8}, + [5875] = {.lex_state = 21, .external_lex_state = 8}, [5876] = {.lex_state = 21, .external_lex_state = 8}, - [5877] = {.lex_state = 21, .external_lex_state = 9}, - [5878] = {.lex_state = 21, .external_lex_state = 9}, - [5879] = {.lex_state = 21, .external_lex_state = 9}, + [5877] = {.lex_state = 25, .external_lex_state = 8}, + [5878] = {.lex_state = 21, .external_lex_state = 8}, + [5879] = {.lex_state = 25, .external_lex_state = 8}, [5880] = {.lex_state = 21, .external_lex_state = 8}, [5881] = {.lex_state = 25, .external_lex_state = 8}, - [5882] = {.lex_state = 21, .external_lex_state = 8}, - [5883] = {.lex_state = 25, .external_lex_state = 8}, - [5884] = {.lex_state = 21, .external_lex_state = 8}, + [5882] = {.lex_state = 25, .external_lex_state = 8}, + [5883] = {.lex_state = 21, .external_lex_state = 8}, + [5884] = {.lex_state = 25, .external_lex_state = 8}, [5885] = {.lex_state = 25, .external_lex_state = 8}, - [5886] = {.lex_state = 21, .external_lex_state = 8}, - [5887] = {.lex_state = 21, .external_lex_state = 8}, - [5888] = {.lex_state = 21, .external_lex_state = 8}, - [5889] = {.lex_state = 21, .external_lex_state = 8}, - [5890] = {.lex_state = 21, .external_lex_state = 8}, - [5891] = {.lex_state = 21, .external_lex_state = 8}, - [5892] = {.lex_state = 21, .external_lex_state = 8}, + [5886] = {.lex_state = 25, .external_lex_state = 8}, + [5887] = {.lex_state = 25, .external_lex_state = 8}, + [5888] = {.lex_state = 25, .external_lex_state = 8}, + [5889] = {.lex_state = 25, .external_lex_state = 8}, + [5890] = {.lex_state = 25, .external_lex_state = 8}, + [5891] = {.lex_state = 25, .external_lex_state = 8}, + [5892] = {.lex_state = 25, .external_lex_state = 8}, [5893] = {.lex_state = 25, .external_lex_state = 8}, - [5894] = {.lex_state = 21, .external_lex_state = 9}, - [5895] = {.lex_state = 21, .external_lex_state = 8}, + [5894] = {.lex_state = 25, .external_lex_state = 8}, + [5895] = {.lex_state = 25, .external_lex_state = 8}, [5896] = {.lex_state = 25, .external_lex_state = 8}, - [5897] = {.lex_state = 21, .external_lex_state = 8}, - [5898] = {.lex_state = 21, .external_lex_state = 9}, - [5899] = {.lex_state = 21, .external_lex_state = 8}, - [5900] = {.lex_state = 21, .external_lex_state = 9}, + [5897] = {.lex_state = 25, .external_lex_state = 8}, + [5898] = {.lex_state = 25, .external_lex_state = 8}, + [5899] = {.lex_state = 25, .external_lex_state = 8}, + [5900] = {.lex_state = 25, .external_lex_state = 8}, [5901] = {.lex_state = 25, .external_lex_state = 8}, - [5902] = {.lex_state = 21, .external_lex_state = 8}, - [5903] = {.lex_state = 21, .external_lex_state = 8}, - [5904] = {.lex_state = 21, .external_lex_state = 8}, - [5905] = {.lex_state = 21, .external_lex_state = 8}, + [5902] = {.lex_state = 25, .external_lex_state = 8}, + [5903] = {.lex_state = 25, .external_lex_state = 8}, + [5904] = {.lex_state = 25, .external_lex_state = 8}, + [5905] = {.lex_state = 25, .external_lex_state = 8}, [5906] = {.lex_state = 25, .external_lex_state = 8}, [5907] = {.lex_state = 25, .external_lex_state = 8}, - [5908] = {.lex_state = 21, .external_lex_state = 8}, - [5909] = {.lex_state = 21, .external_lex_state = 8}, + [5908] = {.lex_state = 25, .external_lex_state = 8}, + [5909] = {.lex_state = 25, .external_lex_state = 8}, [5910] = {.lex_state = 25, .external_lex_state = 8}, [5911] = {.lex_state = 25, .external_lex_state = 8}, [5912] = {.lex_state = 25, .external_lex_state = 8}, - [5913] = {.lex_state = 21, .external_lex_state = 9}, + [5913] = {.lex_state = 25, .external_lex_state = 8}, [5914] = {.lex_state = 25, .external_lex_state = 8}, [5915] = {.lex_state = 25, .external_lex_state = 8}, [5916] = {.lex_state = 25, .external_lex_state = 8}, @@ -29748,130 +29399,130 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5918] = {.lex_state = 25, .external_lex_state = 8}, [5919] = {.lex_state = 25, .external_lex_state = 8}, [5920] = {.lex_state = 25, .external_lex_state = 8}, - [5921] = {.lex_state = 21, .external_lex_state = 8}, - [5922] = {.lex_state = 21, .external_lex_state = 9}, + [5921] = {.lex_state = 25, .external_lex_state = 8}, + [5922] = {.lex_state = 25, .external_lex_state = 8}, [5923] = {.lex_state = 25, .external_lex_state = 8}, - [5924] = {.lex_state = 21, .external_lex_state = 8}, + [5924] = {.lex_state = 25, .external_lex_state = 8}, [5925] = {.lex_state = 25, .external_lex_state = 8}, [5926] = {.lex_state = 25, .external_lex_state = 8}, - [5927] = {.lex_state = 21, .external_lex_state = 9}, - [5928] = {.lex_state = 21, .external_lex_state = 9}, - [5929] = {.lex_state = 21, .external_lex_state = 9}, - [5930] = {.lex_state = 21, .external_lex_state = 8}, - [5931] = {.lex_state = 21, .external_lex_state = 8}, - [5932] = {.lex_state = 21, .external_lex_state = 8}, - [5933] = {.lex_state = 21, .external_lex_state = 8}, - [5934] = {.lex_state = 21, .external_lex_state = 8}, - [5935] = {.lex_state = 21, .external_lex_state = 9}, - [5936] = {.lex_state = 21, .external_lex_state = 8}, - [5937] = {.lex_state = 21, .external_lex_state = 8}, - [5938] = {.lex_state = 21, .external_lex_state = 8}, - [5939] = {.lex_state = 21, .external_lex_state = 8}, - [5940] = {.lex_state = 21, .external_lex_state = 8}, - [5941] = {.lex_state = 21, .external_lex_state = 8}, - [5942] = {.lex_state = 21, .external_lex_state = 8}, - [5943] = {.lex_state = 21, .external_lex_state = 9}, - [5944] = {.lex_state = 21, .external_lex_state = 8}, - [5945] = {.lex_state = 21, .external_lex_state = 8}, - [5946] = {.lex_state = 21, .external_lex_state = 8}, - [5947] = {.lex_state = 21, .external_lex_state = 8}, - [5948] = {.lex_state = 21, .external_lex_state = 9}, - [5949] = {.lex_state = 21, .external_lex_state = 9}, - [5950] = {.lex_state = 21, .external_lex_state = 8}, - [5951] = {.lex_state = 21, .external_lex_state = 8}, - [5952] = {.lex_state = 21, .external_lex_state = 8}, - [5953] = {.lex_state = 21, .external_lex_state = 8}, - [5954] = {.lex_state = 21, .external_lex_state = 9}, - [5955] = {.lex_state = 21, .external_lex_state = 8}, - [5956] = {.lex_state = 21, .external_lex_state = 9}, - [5957] = {.lex_state = 21, .external_lex_state = 8}, - [5958] = {.lex_state = 21, .external_lex_state = 8}, - [5959] = {.lex_state = 21, .external_lex_state = 8}, - [5960] = {.lex_state = 21, .external_lex_state = 8}, - [5961] = {.lex_state = 21, .external_lex_state = 8}, - [5962] = {.lex_state = 21, .external_lex_state = 9}, - [5963] = {.lex_state = 21, .external_lex_state = 9}, - [5964] = {.lex_state = 21, .external_lex_state = 9}, - [5965] = {.lex_state = 21, .external_lex_state = 8}, - [5966] = {.lex_state = 21, .external_lex_state = 8}, - [5967] = {.lex_state = 21, .external_lex_state = 9}, - [5968] = {.lex_state = 21, .external_lex_state = 9}, - [5969] = {.lex_state = 21, .external_lex_state = 9}, - [5970] = {.lex_state = 21, .external_lex_state = 8}, - [5971] = {.lex_state = 21, .external_lex_state = 9}, - [5972] = {.lex_state = 21, .external_lex_state = 9}, - [5973] = {.lex_state = 21, .external_lex_state = 9}, - [5974] = {.lex_state = 21, .external_lex_state = 9}, - [5975] = {.lex_state = 21, .external_lex_state = 8}, - [5976] = {.lex_state = 28, .external_lex_state = 8}, - [5977] = {.lex_state = 21, .external_lex_state = 8}, - [5978] = {.lex_state = 28, .external_lex_state = 8}, - [5979] = {.lex_state = 21, .external_lex_state = 8}, - [5980] = {.lex_state = 21, .external_lex_state = 8}, - [5981] = {.lex_state = 21, .external_lex_state = 8}, - [5982] = {.lex_state = 21, .external_lex_state = 8}, - [5983] = {.lex_state = 21, .external_lex_state = 8}, - [5984] = {.lex_state = 21, .external_lex_state = 8}, - [5985] = {.lex_state = 21, .external_lex_state = 8}, - [5986] = {.lex_state = 21, .external_lex_state = 8}, - [5987] = {.lex_state = 21, .external_lex_state = 8}, - [5988] = {.lex_state = 21, .external_lex_state = 8}, - [5989] = {.lex_state = 21, .external_lex_state = 8}, - [5990] = {.lex_state = 21, .external_lex_state = 9}, - [5991] = {.lex_state = 21, .external_lex_state = 8}, - [5992] = {.lex_state = 21, .external_lex_state = 8}, - [5993] = {.lex_state = 21, .external_lex_state = 8}, - [5994] = {.lex_state = 21, .external_lex_state = 8}, - [5995] = {.lex_state = 21, .external_lex_state = 8}, - [5996] = {.lex_state = 21, .external_lex_state = 8}, - [5997] = {.lex_state = 21, .external_lex_state = 9}, - [5998] = {.lex_state = 21, .external_lex_state = 9}, - [5999] = {.lex_state = 21, .external_lex_state = 8}, - [6000] = {.lex_state = 21, .external_lex_state = 8}, - [6001] = {.lex_state = 24, .external_lex_state = 9}, - [6002] = {.lex_state = 21, .external_lex_state = 8}, - [6003] = {.lex_state = 28, .external_lex_state = 8}, - [6004] = {.lex_state = 28, .external_lex_state = 8}, - [6005] = {.lex_state = 28, .external_lex_state = 8}, - [6006] = {.lex_state = 21, .external_lex_state = 8}, - [6007] = {.lex_state = 28, .external_lex_state = 8}, - [6008] = {.lex_state = 24, .external_lex_state = 9}, - [6009] = {.lex_state = 21, .external_lex_state = 8}, - [6010] = {.lex_state = 28, .external_lex_state = 8}, + [5927] = {.lex_state = 25, .external_lex_state = 8}, + [5928] = {.lex_state = 25, .external_lex_state = 8}, + [5929] = {.lex_state = 25, .external_lex_state = 8}, + [5930] = {.lex_state = 25, .external_lex_state = 8}, + [5931] = {.lex_state = 25, .external_lex_state = 8}, + [5932] = {.lex_state = 25, .external_lex_state = 8}, + [5933] = {.lex_state = 25, .external_lex_state = 8}, + [5934] = {.lex_state = 25, .external_lex_state = 8}, + [5935] = {.lex_state = 25, .external_lex_state = 8}, + [5936] = {.lex_state = 25, .external_lex_state = 8}, + [5937] = {.lex_state = 25, .external_lex_state = 8}, + [5938] = {.lex_state = 25, .external_lex_state = 8}, + [5939] = {.lex_state = 25, .external_lex_state = 8}, + [5940] = {.lex_state = 25, .external_lex_state = 8}, + [5941] = {.lex_state = 25, .external_lex_state = 8}, + [5942] = {.lex_state = 25, .external_lex_state = 8}, + [5943] = {.lex_state = 25, .external_lex_state = 8}, + [5944] = {.lex_state = 25, .external_lex_state = 8}, + [5945] = {.lex_state = 25, .external_lex_state = 8}, + [5946] = {.lex_state = 25, .external_lex_state = 8}, + [5947] = {.lex_state = 25, .external_lex_state = 8}, + [5948] = {.lex_state = 25, .external_lex_state = 8}, + [5949] = {.lex_state = 25, .external_lex_state = 8}, + [5950] = {.lex_state = 25, .external_lex_state = 8}, + [5951] = {.lex_state = 25, .external_lex_state = 8}, + [5952] = {.lex_state = 25, .external_lex_state = 8}, + [5953] = {.lex_state = 25, .external_lex_state = 8}, + [5954] = {.lex_state = 25, .external_lex_state = 8}, + [5955] = {.lex_state = 25, .external_lex_state = 8}, + [5956] = {.lex_state = 25, .external_lex_state = 8}, + [5957] = {.lex_state = 25, .external_lex_state = 8}, + [5958] = {.lex_state = 25, .external_lex_state = 8}, + [5959] = {.lex_state = 25, .external_lex_state = 8}, + [5960] = {.lex_state = 25, .external_lex_state = 8}, + [5961] = {.lex_state = 25, .external_lex_state = 8}, + [5962] = {.lex_state = 25, .external_lex_state = 8}, + [5963] = {.lex_state = 25, .external_lex_state = 8}, + [5964] = {.lex_state = 25, .external_lex_state = 8}, + [5965] = {.lex_state = 25, .external_lex_state = 8}, + [5966] = {.lex_state = 25, .external_lex_state = 8}, + [5967] = {.lex_state = 25, .external_lex_state = 8}, + [5968] = {.lex_state = 25, .external_lex_state = 8}, + [5969] = {.lex_state = 25, .external_lex_state = 8}, + [5970] = {.lex_state = 25, .external_lex_state = 8}, + [5971] = {.lex_state = 25, .external_lex_state = 8}, + [5972] = {.lex_state = 25, .external_lex_state = 8}, + [5973] = {.lex_state = 25, .external_lex_state = 8}, + [5974] = {.lex_state = 25, .external_lex_state = 8}, + [5975] = {.lex_state = 25, .external_lex_state = 8}, + [5976] = {.lex_state = 25, .external_lex_state = 8}, + [5977] = {.lex_state = 25, .external_lex_state = 8}, + [5978] = {.lex_state = 25, .external_lex_state = 8}, + [5979] = {.lex_state = 25, .external_lex_state = 8}, + [5980] = {.lex_state = 25, .external_lex_state = 8}, + [5981] = {.lex_state = 25, .external_lex_state = 8}, + [5982] = {.lex_state = 25, .external_lex_state = 8}, + [5983] = {.lex_state = 25, .external_lex_state = 8}, + [5984] = {.lex_state = 25, .external_lex_state = 8}, + [5985] = {.lex_state = 25, .external_lex_state = 8}, + [5986] = {.lex_state = 25, .external_lex_state = 8}, + [5987] = {.lex_state = 25, .external_lex_state = 8}, + [5988] = {.lex_state = 25, .external_lex_state = 8}, + [5989] = {.lex_state = 25, .external_lex_state = 8}, + [5990] = {.lex_state = 25, .external_lex_state = 8}, + [5991] = {.lex_state = 25, .external_lex_state = 8}, + [5992] = {.lex_state = 25, .external_lex_state = 8}, + [5993] = {.lex_state = 25, .external_lex_state = 8}, + [5994] = {.lex_state = 25, .external_lex_state = 8}, + [5995] = {.lex_state = 25, .external_lex_state = 8}, + [5996] = {.lex_state = 25, .external_lex_state = 8}, + [5997] = {.lex_state = 28, .external_lex_state = 8}, + [5998] = {.lex_state = 25, .external_lex_state = 8}, + [5999] = {.lex_state = 25, .external_lex_state = 8}, + [6000] = {.lex_state = 25, .external_lex_state = 8}, + [6001] = {.lex_state = 25, .external_lex_state = 8}, + [6002] = {.lex_state = 25, .external_lex_state = 8}, + [6003] = {.lex_state = 25, .external_lex_state = 8}, + [6004] = {.lex_state = 25, .external_lex_state = 8}, + [6005] = {.lex_state = 25, .external_lex_state = 8}, + [6006] = {.lex_state = 25, .external_lex_state = 8}, + [6007] = {.lex_state = 25, .external_lex_state = 8}, + [6008] = {.lex_state = 25, .external_lex_state = 8}, + [6009] = {.lex_state = 25, .external_lex_state = 8}, + [6010] = {.lex_state = 25, .external_lex_state = 8}, [6011] = {.lex_state = 25, .external_lex_state = 8}, - [6012] = {.lex_state = 21, .external_lex_state = 8}, - [6013] = {.lex_state = 21, .external_lex_state = 8}, + [6012] = {.lex_state = 25, .external_lex_state = 8}, + [6013] = {.lex_state = 25, .external_lex_state = 8}, [6014] = {.lex_state = 25, .external_lex_state = 8}, - [6015] = {.lex_state = 21, .external_lex_state = 8}, - [6016] = {.lex_state = 21, .external_lex_state = 8}, - [6017] = {.lex_state = 21, .external_lex_state = 8}, - [6018] = {.lex_state = 21, .external_lex_state = 8}, - [6019] = {.lex_state = 24, .external_lex_state = 8}, + [6015] = {.lex_state = 25, .external_lex_state = 8}, + [6016] = {.lex_state = 25, .external_lex_state = 8}, + [6017] = {.lex_state = 25, .external_lex_state = 8}, + [6018] = {.lex_state = 25, .external_lex_state = 8}, + [6019] = {.lex_state = 25, .external_lex_state = 8}, [6020] = {.lex_state = 25, .external_lex_state = 8}, [6021] = {.lex_state = 25, .external_lex_state = 8}, - [6022] = {.lex_state = 28, .external_lex_state = 8}, + [6022] = {.lex_state = 25, .external_lex_state = 8}, [6023] = {.lex_state = 25, .external_lex_state = 8}, - [6024] = {.lex_state = 21, .external_lex_state = 8}, - [6025] = {.lex_state = 21, .external_lex_state = 8}, - [6026] = {.lex_state = 28, .external_lex_state = 8}, + [6024] = {.lex_state = 25, .external_lex_state = 8}, + [6025] = {.lex_state = 25, .external_lex_state = 8}, + [6026] = {.lex_state = 25, .external_lex_state = 8}, [6027] = {.lex_state = 25, .external_lex_state = 8}, - [6028] = {.lex_state = 21, .external_lex_state = 8}, - [6029] = {.lex_state = 21, .external_lex_state = 8}, + [6028] = {.lex_state = 25, .external_lex_state = 8}, + [6029] = {.lex_state = 25, .external_lex_state = 8}, [6030] = {.lex_state = 25, .external_lex_state = 8}, - [6031] = {.lex_state = 21, .external_lex_state = 8}, + [6031] = {.lex_state = 25, .external_lex_state = 8}, [6032] = {.lex_state = 25, .external_lex_state = 8}, - [6033] = {.lex_state = 21, .external_lex_state = 8}, - [6034] = {.lex_state = 21, .external_lex_state = 8}, - [6035] = {.lex_state = 21, .external_lex_state = 8}, + [6033] = {.lex_state = 25, .external_lex_state = 8}, + [6034] = {.lex_state = 25, .external_lex_state = 8}, + [6035] = {.lex_state = 25, .external_lex_state = 8}, [6036] = {.lex_state = 25, .external_lex_state = 8}, [6037] = {.lex_state = 25, .external_lex_state = 8}, [6038] = {.lex_state = 25, .external_lex_state = 8}, - [6039] = {.lex_state = 21, .external_lex_state = 8}, - [6040] = {.lex_state = 21, .external_lex_state = 8}, - [6041] = {.lex_state = 28, .external_lex_state = 8}, + [6039] = {.lex_state = 25, .external_lex_state = 8}, + [6040] = {.lex_state = 25, .external_lex_state = 8}, + [6041] = {.lex_state = 25, .external_lex_state = 8}, [6042] = {.lex_state = 25, .external_lex_state = 8}, - [6043] = {.lex_state = 21, .external_lex_state = 8}, - [6044] = {.lex_state = 24, .external_lex_state = 8}, + [6043] = {.lex_state = 25, .external_lex_state = 8}, + [6044] = {.lex_state = 25, .external_lex_state = 8}, [6045] = {.lex_state = 25, .external_lex_state = 8}, [6046] = {.lex_state = 25, .external_lex_state = 8}, [6047] = {.lex_state = 25, .external_lex_state = 8}, @@ -29958,7 +29609,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6128] = {.lex_state = 25, .external_lex_state = 8}, [6129] = {.lex_state = 25, .external_lex_state = 8}, [6130] = {.lex_state = 25, .external_lex_state = 8}, - [6131] = {.lex_state = 28, .external_lex_state = 8}, + [6131] = {.lex_state = 25, .external_lex_state = 8}, [6132] = {.lex_state = 25, .external_lex_state = 8}, [6133] = {.lex_state = 25, .external_lex_state = 8}, [6134] = {.lex_state = 25, .external_lex_state = 8}, @@ -29967,12 +29618,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6137] = {.lex_state = 25, .external_lex_state = 8}, [6138] = {.lex_state = 25, .external_lex_state = 8}, [6139] = {.lex_state = 25, .external_lex_state = 8}, - [6140] = {.lex_state = 28, .external_lex_state = 8}, + [6140] = {.lex_state = 25, .external_lex_state = 8}, [6141] = {.lex_state = 25, .external_lex_state = 8}, [6142] = {.lex_state = 25, .external_lex_state = 8}, - [6143] = {.lex_state = 25, .external_lex_state = 8}, + [6143] = {.lex_state = 28, .external_lex_state = 8}, [6144] = {.lex_state = 25, .external_lex_state = 8}, - [6145] = {.lex_state = 25, .external_lex_state = 8}, + [6145] = {.lex_state = 28, .external_lex_state = 8}, [6146] = {.lex_state = 25, .external_lex_state = 8}, [6147] = {.lex_state = 25, .external_lex_state = 8}, [6148] = {.lex_state = 25, .external_lex_state = 8}, @@ -29997,7 +29648,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6167] = {.lex_state = 25, .external_lex_state = 8}, [6168] = {.lex_state = 25, .external_lex_state = 8}, [6169] = {.lex_state = 25, .external_lex_state = 8}, - [6170] = {.lex_state = 28, .external_lex_state = 8}, + [6170] = {.lex_state = 25, .external_lex_state = 8}, [6171] = {.lex_state = 25, .external_lex_state = 8}, [6172] = {.lex_state = 25, .external_lex_state = 8}, [6173] = {.lex_state = 25, .external_lex_state = 8}, @@ -30005,7 +29656,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6175] = {.lex_state = 25, .external_lex_state = 8}, [6176] = {.lex_state = 25, .external_lex_state = 8}, [6177] = {.lex_state = 25, .external_lex_state = 8}, - [6178] = {.lex_state = 25, .external_lex_state = 8}, + [6178] = {.lex_state = 28, .external_lex_state = 8}, [6179] = {.lex_state = 25, .external_lex_state = 8}, [6180] = {.lex_state = 25, .external_lex_state = 8}, [6181] = {.lex_state = 25, .external_lex_state = 8}, @@ -30016,7 +29667,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6186] = {.lex_state = 25, .external_lex_state = 8}, [6187] = {.lex_state = 25, .external_lex_state = 8}, [6188] = {.lex_state = 25, .external_lex_state = 8}, - [6189] = {.lex_state = 25, .external_lex_state = 8}, + [6189] = {.lex_state = 28, .external_lex_state = 8}, [6190] = {.lex_state = 25, .external_lex_state = 8}, [6191] = {.lex_state = 25, .external_lex_state = 8}, [6192] = {.lex_state = 25, .external_lex_state = 8}, @@ -30033,12 +29684,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6203] = {.lex_state = 25, .external_lex_state = 8}, [6204] = {.lex_state = 25, .external_lex_state = 8}, [6205] = {.lex_state = 25, .external_lex_state = 8}, - [6206] = {.lex_state = 25, .external_lex_state = 8}, + [6206] = {.lex_state = 28, .external_lex_state = 8}, [6207] = {.lex_state = 25, .external_lex_state = 8}, [6208] = {.lex_state = 25, .external_lex_state = 8}, [6209] = {.lex_state = 25, .external_lex_state = 8}, [6210] = {.lex_state = 25, .external_lex_state = 8}, - [6211] = {.lex_state = 25, .external_lex_state = 8}, + [6211] = {.lex_state = 20, .external_lex_state = 8}, [6212] = {.lex_state = 25, .external_lex_state = 8}, [6213] = {.lex_state = 25, .external_lex_state = 8}, [6214] = {.lex_state = 25, .external_lex_state = 8}, @@ -30051,11 +29702,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6221] = {.lex_state = 25, .external_lex_state = 8}, [6222] = {.lex_state = 25, .external_lex_state = 8}, [6223] = {.lex_state = 25, .external_lex_state = 8}, - [6224] = {.lex_state = 25, .external_lex_state = 8}, + [6224] = {.lex_state = 20, .external_lex_state = 8}, [6225] = {.lex_state = 25, .external_lex_state = 8}, [6226] = {.lex_state = 25, .external_lex_state = 8}, [6227] = {.lex_state = 25, .external_lex_state = 8}, - [6228] = {.lex_state = 25, .external_lex_state = 8}, + [6228] = {.lex_state = 28, .external_lex_state = 8}, [6229] = {.lex_state = 25, .external_lex_state = 8}, [6230] = {.lex_state = 25, .external_lex_state = 8}, [6231] = {.lex_state = 25, .external_lex_state = 8}, @@ -30076,10 +29727,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6246] = {.lex_state = 25, .external_lex_state = 8}, [6247] = {.lex_state = 25, .external_lex_state = 8}, [6248] = {.lex_state = 25, .external_lex_state = 8}, - [6249] = {.lex_state = 25, .external_lex_state = 8}, + [6249] = {.lex_state = 28, .external_lex_state = 8}, [6250] = {.lex_state = 25, .external_lex_state = 8}, [6251] = {.lex_state = 25, .external_lex_state = 8}, - [6252] = {.lex_state = 25, .external_lex_state = 8}, + [6252] = {.lex_state = 28, .external_lex_state = 8}, [6253] = {.lex_state = 25, .external_lex_state = 8}, [6254] = {.lex_state = 25, .external_lex_state = 8}, [6255] = {.lex_state = 25, .external_lex_state = 8}, @@ -30095,14 +29746,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6265] = {.lex_state = 25, .external_lex_state = 8}, [6266] = {.lex_state = 25, .external_lex_state = 8}, [6267] = {.lex_state = 25, .external_lex_state = 8}, - [6268] = {.lex_state = 25, .external_lex_state = 8}, + [6268] = {.lex_state = 28, .external_lex_state = 8}, [6269] = {.lex_state = 25, .external_lex_state = 8}, [6270] = {.lex_state = 25, .external_lex_state = 8}, [6271] = {.lex_state = 25, .external_lex_state = 8}, - [6272] = {.lex_state = 28, .external_lex_state = 8}, + [6272] = {.lex_state = 25, .external_lex_state = 8}, [6273] = {.lex_state = 25, .external_lex_state = 8}, [6274] = {.lex_state = 25, .external_lex_state = 8}, - [6275] = {.lex_state = 28, .external_lex_state = 8}, + [6275] = {.lex_state = 25, .external_lex_state = 8}, [6276] = {.lex_state = 25, .external_lex_state = 8}, [6277] = {.lex_state = 25, .external_lex_state = 8}, [6278] = {.lex_state = 25, .external_lex_state = 8}, @@ -30136,7 +29787,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6306] = {.lex_state = 25, .external_lex_state = 8}, [6307] = {.lex_state = 25, .external_lex_state = 8}, [6308] = {.lex_state = 25, .external_lex_state = 8}, - [6309] = {.lex_state = 28, .external_lex_state = 8}, + [6309] = {.lex_state = 25, .external_lex_state = 8}, [6310] = {.lex_state = 25, .external_lex_state = 8}, [6311] = {.lex_state = 25, .external_lex_state = 8}, [6312] = {.lex_state = 25, .external_lex_state = 8}, @@ -30161,10 +29812,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6331] = {.lex_state = 25, .external_lex_state = 8}, [6332] = {.lex_state = 25, .external_lex_state = 8}, [6333] = {.lex_state = 25, .external_lex_state = 8}, - [6334] = {.lex_state = 28, .external_lex_state = 8}, + [6334] = {.lex_state = 25, .external_lex_state = 8}, [6335] = {.lex_state = 25, .external_lex_state = 8}, [6336] = {.lex_state = 25, .external_lex_state = 8}, - [6337] = {.lex_state = 28, .external_lex_state = 8}, + [6337] = {.lex_state = 25, .external_lex_state = 8}, [6338] = {.lex_state = 25, .external_lex_state = 8}, [6339] = {.lex_state = 25, .external_lex_state = 8}, [6340] = {.lex_state = 25, .external_lex_state = 8}, @@ -30178,7 +29829,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6348] = {.lex_state = 25, .external_lex_state = 8}, [6349] = {.lex_state = 25, .external_lex_state = 8}, [6350] = {.lex_state = 25, .external_lex_state = 8}, - [6351] = {.lex_state = 25, .external_lex_state = 8}, + [6351] = {.lex_state = 28, .external_lex_state = 8}, [6352] = {.lex_state = 25, .external_lex_state = 8}, [6353] = {.lex_state = 25, .external_lex_state = 8}, [6354] = {.lex_state = 25, .external_lex_state = 8}, @@ -30186,7 +29837,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6356] = {.lex_state = 25, .external_lex_state = 8}, [6357] = {.lex_state = 25, .external_lex_state = 8}, [6358] = {.lex_state = 25, .external_lex_state = 8}, - [6359] = {.lex_state = 28, .external_lex_state = 8}, + [6359] = {.lex_state = 25, .external_lex_state = 8}, [6360] = {.lex_state = 25, .external_lex_state = 8}, [6361] = {.lex_state = 25, .external_lex_state = 8}, [6362] = {.lex_state = 25, .external_lex_state = 8}, @@ -30205,7 +29856,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6375] = {.lex_state = 25, .external_lex_state = 8}, [6376] = {.lex_state = 25, .external_lex_state = 8}, [6377] = {.lex_state = 25, .external_lex_state = 8}, - [6378] = {.lex_state = 28, .external_lex_state = 8}, + [6378] = {.lex_state = 25, .external_lex_state = 8}, [6379] = {.lex_state = 25, .external_lex_state = 8}, [6380] = {.lex_state = 25, .external_lex_state = 8}, [6381] = {.lex_state = 25, .external_lex_state = 8}, @@ -30222,7 +29873,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6392] = {.lex_state = 25, .external_lex_state = 8}, [6393] = {.lex_state = 25, .external_lex_state = 8}, [6394] = {.lex_state = 25, .external_lex_state = 8}, - [6395] = {.lex_state = 28, .external_lex_state = 8}, + [6395] = {.lex_state = 25, .external_lex_state = 8}, [6396] = {.lex_state = 25, .external_lex_state = 8}, [6397] = {.lex_state = 25, .external_lex_state = 8}, [6398] = {.lex_state = 25, .external_lex_state = 8}, @@ -30233,7 +29884,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6403] = {.lex_state = 25, .external_lex_state = 8}, [6404] = {.lex_state = 25, .external_lex_state = 8}, [6405] = {.lex_state = 25, .external_lex_state = 8}, - [6406] = {.lex_state = 20, .external_lex_state = 8}, + [6406] = {.lex_state = 25, .external_lex_state = 8}, [6407] = {.lex_state = 25, .external_lex_state = 8}, [6408] = {.lex_state = 25, .external_lex_state = 8}, [6409] = {.lex_state = 25, .external_lex_state = 8}, @@ -30272,7 +29923,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6442] = {.lex_state = 25, .external_lex_state = 8}, [6443] = {.lex_state = 25, .external_lex_state = 8}, [6444] = {.lex_state = 25, .external_lex_state = 8}, - [6445] = {.lex_state = 20, .external_lex_state = 8}, + [6445] = {.lex_state = 25, .external_lex_state = 8}, [6446] = {.lex_state = 25, .external_lex_state = 8}, [6447] = {.lex_state = 25, .external_lex_state = 8}, [6448] = {.lex_state = 25, .external_lex_state = 8}, @@ -30365,7 +30016,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6535] = {.lex_state = 25, .external_lex_state = 8}, [6536] = {.lex_state = 25, .external_lex_state = 8}, [6537] = {.lex_state = 25, .external_lex_state = 8}, - [6538] = {.lex_state = 25, .external_lex_state = 8}, + [6538] = {.lex_state = 20, .external_lex_state = 8}, [6539] = {.lex_state = 25, .external_lex_state = 8}, [6540] = {.lex_state = 25, .external_lex_state = 8}, [6541] = {.lex_state = 25, .external_lex_state = 8}, @@ -30376,7 +30027,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6546] = {.lex_state = 25, .external_lex_state = 8}, [6547] = {.lex_state = 25, .external_lex_state = 8}, [6548] = {.lex_state = 25, .external_lex_state = 8}, - [6549] = {.lex_state = 25, .external_lex_state = 8}, + [6549] = {.lex_state = 20, .external_lex_state = 8}, [6550] = {.lex_state = 25, .external_lex_state = 8}, [6551] = {.lex_state = 25, .external_lex_state = 8}, [6552] = {.lex_state = 25, .external_lex_state = 8}, @@ -30417,46 +30068,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6587] = {.lex_state = 25, .external_lex_state = 8}, [6588] = {.lex_state = 25, .external_lex_state = 8}, [6589] = {.lex_state = 25, .external_lex_state = 8}, - [6590] = {.lex_state = 25, .external_lex_state = 8}, - [6591] = {.lex_state = 25, .external_lex_state = 8}, - [6592] = {.lex_state = 25, .external_lex_state = 8}, - [6593] = {.lex_state = 25, .external_lex_state = 8}, - [6594] = {.lex_state = 25, .external_lex_state = 8}, - [6595] = {.lex_state = 25, .external_lex_state = 8}, - [6596] = {.lex_state = 25, .external_lex_state = 8}, - [6597] = {.lex_state = 25, .external_lex_state = 8}, - [6598] = {.lex_state = 25, .external_lex_state = 8}, - [6599] = {.lex_state = 25, .external_lex_state = 8}, - [6600] = {.lex_state = 25, .external_lex_state = 8}, - [6601] = {.lex_state = 25, .external_lex_state = 8}, - [6602] = {.lex_state = 25, .external_lex_state = 8}, - [6603] = {.lex_state = 25, .external_lex_state = 8}, - [6604] = {.lex_state = 25, .external_lex_state = 8}, - [6605] = {.lex_state = 25, .external_lex_state = 8}, - [6606] = {.lex_state = 25, .external_lex_state = 8}, - [6607] = {.lex_state = 25, .external_lex_state = 8}, - [6608] = {.lex_state = 25, .external_lex_state = 8}, - [6609] = {.lex_state = 25, .external_lex_state = 8}, - [6610] = {.lex_state = 25, .external_lex_state = 8}, - [6611] = {.lex_state = 25, .external_lex_state = 8}, - [6612] = {.lex_state = 25, .external_lex_state = 8}, - [6613] = {.lex_state = 25, .external_lex_state = 8}, - [6614] = {.lex_state = 25, .external_lex_state = 8}, - [6615] = {.lex_state = 25, .external_lex_state = 8}, - [6616] = {.lex_state = 25, .external_lex_state = 8}, - [6617] = {.lex_state = 25, .external_lex_state = 8}, - [6618] = {.lex_state = 25, .external_lex_state = 8}, - [6619] = {.lex_state = 25, .external_lex_state = 8}, - [6620] = {.lex_state = 25, .external_lex_state = 8}, - [6621] = {.lex_state = 25, .external_lex_state = 8}, - [6622] = {.lex_state = 25, .external_lex_state = 8}, + [6590] = {.lex_state = 20, .external_lex_state = 8}, + [6591] = {.lex_state = 20, .external_lex_state = 8}, + [6592] = {.lex_state = 20, .external_lex_state = 8}, + [6593] = {.lex_state = 27, .external_lex_state = 8}, + [6594] = {.lex_state = 27, .external_lex_state = 8}, + [6595] = {.lex_state = 27, .external_lex_state = 8}, + [6596] = {.lex_state = 27, .external_lex_state = 8}, + [6597] = {.lex_state = 27, .external_lex_state = 8}, + [6598] = {.lex_state = 27, .external_lex_state = 8}, + [6599] = {.lex_state = 27, .external_lex_state = 8}, + [6600] = {.lex_state = 27, .external_lex_state = 8}, + [6601] = {.lex_state = 27, .external_lex_state = 8}, + [6602] = {.lex_state = 27, .external_lex_state = 8}, + [6603] = {.lex_state = 27, .external_lex_state = 8}, + [6604] = {.lex_state = 27, .external_lex_state = 8}, + [6605] = {.lex_state = 20, .external_lex_state = 8}, + [6606] = {.lex_state = 27, .external_lex_state = 8}, + [6607] = {.lex_state = 27, .external_lex_state = 8}, + [6608] = {.lex_state = 27, .external_lex_state = 8}, + [6609] = {.lex_state = 27, .external_lex_state = 8}, + [6610] = {.lex_state = 27, .external_lex_state = 8}, + [6611] = {.lex_state = 27, .external_lex_state = 8}, + [6612] = {.lex_state = 27, .external_lex_state = 8}, + [6613] = {.lex_state = 27, .external_lex_state = 8}, + [6614] = {.lex_state = 27, .external_lex_state = 8}, + [6615] = {.lex_state = 27, .external_lex_state = 8}, + [6616] = {.lex_state = 27, .external_lex_state = 8}, + [6617] = {.lex_state = 27, .external_lex_state = 8}, + [6618] = {.lex_state = 27, .external_lex_state = 8}, + [6619] = {.lex_state = 27, .external_lex_state = 8}, + [6620] = {.lex_state = 27, .external_lex_state = 8}, + [6621] = {.lex_state = 20, .external_lex_state = 8}, + [6622] = {.lex_state = 20, .external_lex_state = 8}, [6623] = {.lex_state = 25, .external_lex_state = 8}, - [6624] = {.lex_state = 25, .external_lex_state = 8}, - [6625] = {.lex_state = 25, .external_lex_state = 8}, + [6624] = {.lex_state = 20, .external_lex_state = 8}, + [6625] = {.lex_state = 27, .external_lex_state = 8}, [6626] = {.lex_state = 25, .external_lex_state = 8}, - [6627] = {.lex_state = 25, .external_lex_state = 8}, + [6627] = {.lex_state = 20, .external_lex_state = 8}, [6628] = {.lex_state = 25, .external_lex_state = 8}, - [6629] = {.lex_state = 25, .external_lex_state = 8}, + [6629] = {.lex_state = 20, .external_lex_state = 8}, [6630] = {.lex_state = 25, .external_lex_state = 8}, [6631] = {.lex_state = 25, .external_lex_state = 8}, [6632] = {.lex_state = 25, .external_lex_state = 8}, @@ -30464,42 +30115,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6634] = {.lex_state = 25, .external_lex_state = 8}, [6635] = {.lex_state = 25, .external_lex_state = 8}, [6636] = {.lex_state = 25, .external_lex_state = 8}, - [6637] = {.lex_state = 25, .external_lex_state = 8}, + [6637] = {.lex_state = 20, .external_lex_state = 8}, [6638] = {.lex_state = 25, .external_lex_state = 8}, [6639] = {.lex_state = 25, .external_lex_state = 8}, [6640] = {.lex_state = 25, .external_lex_state = 8}, [6641] = {.lex_state = 25, .external_lex_state = 8}, - [6642] = {.lex_state = 25, .external_lex_state = 8}, + [6642] = {.lex_state = 20, .external_lex_state = 8}, [6643] = {.lex_state = 25, .external_lex_state = 8}, - [6644] = {.lex_state = 25, .external_lex_state = 8}, + [6644] = {.lex_state = 20, .external_lex_state = 8}, [6645] = {.lex_state = 25, .external_lex_state = 8}, - [6646] = {.lex_state = 25, .external_lex_state = 8}, + [6646] = {.lex_state = 20, .external_lex_state = 8}, [6647] = {.lex_state = 25, .external_lex_state = 8}, [6648] = {.lex_state = 25, .external_lex_state = 8}, - [6649] = {.lex_state = 25, .external_lex_state = 8}, - [6650] = {.lex_state = 25, .external_lex_state = 8}, + [6649] = {.lex_state = 20, .external_lex_state = 8}, + [6650] = {.lex_state = 20, .external_lex_state = 8}, [6651] = {.lex_state = 25, .external_lex_state = 8}, [6652] = {.lex_state = 25, .external_lex_state = 8}, [6653] = {.lex_state = 25, .external_lex_state = 8}, - [6654] = {.lex_state = 25, .external_lex_state = 8}, + [6654] = {.lex_state = 20, .external_lex_state = 8}, [6655] = {.lex_state = 25, .external_lex_state = 8}, [6656] = {.lex_state = 25, .external_lex_state = 8}, [6657] = {.lex_state = 25, .external_lex_state = 8}, - [6658] = {.lex_state = 25, .external_lex_state = 8}, + [6658] = {.lex_state = 20, .external_lex_state = 8}, [6659] = {.lex_state = 25, .external_lex_state = 8}, - [6660] = {.lex_state = 25, .external_lex_state = 8}, + [6660] = {.lex_state = 20, .external_lex_state = 8}, [6661] = {.lex_state = 25, .external_lex_state = 8}, - [6662] = {.lex_state = 25, .external_lex_state = 8}, - [6663] = {.lex_state = 25, .external_lex_state = 8}, - [6664] = {.lex_state = 25, .external_lex_state = 8}, - [6665] = {.lex_state = 25, .external_lex_state = 8}, + [6662] = {.lex_state = 20, .external_lex_state = 8}, + [6663] = {.lex_state = 20, .external_lex_state = 8}, + [6664] = {.lex_state = 20, .external_lex_state = 8}, + [6665] = {.lex_state = 20, .external_lex_state = 8}, [6666] = {.lex_state = 25, .external_lex_state = 8}, [6667] = {.lex_state = 25, .external_lex_state = 8}, - [6668] = {.lex_state = 25, .external_lex_state = 8}, + [6668] = {.lex_state = 20, .external_lex_state = 8}, [6669] = {.lex_state = 25, .external_lex_state = 8}, - [6670] = {.lex_state = 25, .external_lex_state = 8}, + [6670] = {.lex_state = 20, .external_lex_state = 8}, [6671] = {.lex_state = 25, .external_lex_state = 8}, - [6672] = {.lex_state = 25, .external_lex_state = 8}, + [6672] = {.lex_state = 20, .external_lex_state = 8}, [6673] = {.lex_state = 25, .external_lex_state = 8}, [6674] = {.lex_state = 25, .external_lex_state = 8}, [6675] = {.lex_state = 25, .external_lex_state = 8}, @@ -30512,224 +30163,224 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6682] = {.lex_state = 25, .external_lex_state = 8}, [6683] = {.lex_state = 25, .external_lex_state = 8}, [6684] = {.lex_state = 25, .external_lex_state = 8}, - [6685] = {.lex_state = 25, .external_lex_state = 8}, - [6686] = {.lex_state = 25, .external_lex_state = 8}, - [6687] = {.lex_state = 25, .external_lex_state = 8}, - [6688] = {.lex_state = 25, .external_lex_state = 8}, - [6689] = {.lex_state = 25, .external_lex_state = 8}, - [6690] = {.lex_state = 25, .external_lex_state = 8}, - [6691] = {.lex_state = 25, .external_lex_state = 8}, - [6692] = {.lex_state = 25, .external_lex_state = 8}, - [6693] = {.lex_state = 25, .external_lex_state = 8}, - [6694] = {.lex_state = 25, .external_lex_state = 8}, - [6695] = {.lex_state = 25, .external_lex_state = 8}, - [6696] = {.lex_state = 25, .external_lex_state = 8}, - [6697] = {.lex_state = 25, .external_lex_state = 8}, - [6698] = {.lex_state = 25, .external_lex_state = 8}, - [6699] = {.lex_state = 25, .external_lex_state = 8}, - [6700] = {.lex_state = 25, .external_lex_state = 8}, - [6701] = {.lex_state = 25, .external_lex_state = 8}, - [6702] = {.lex_state = 25, .external_lex_state = 8}, - [6703] = {.lex_state = 25, .external_lex_state = 8}, - [6704] = {.lex_state = 25, .external_lex_state = 8}, - [6705] = {.lex_state = 20, .external_lex_state = 8}, - [6706] = {.lex_state = 25, .external_lex_state = 8}, - [6707] = {.lex_state = 25, .external_lex_state = 8}, - [6708] = {.lex_state = 25, .external_lex_state = 8}, - [6709] = {.lex_state = 25, .external_lex_state = 8}, - [6710] = {.lex_state = 25, .external_lex_state = 8}, - [6711] = {.lex_state = 25, .external_lex_state = 8}, - [6712] = {.lex_state = 25, .external_lex_state = 8}, - [6713] = {.lex_state = 25, .external_lex_state = 8}, - [6714] = {.lex_state = 25, .external_lex_state = 8}, - [6715] = {.lex_state = 25, .external_lex_state = 8}, - [6716] = {.lex_state = 25, .external_lex_state = 8}, - [6717] = {.lex_state = 25, .external_lex_state = 8}, - [6718] = {.lex_state = 25, .external_lex_state = 8}, - [6719] = {.lex_state = 25, .external_lex_state = 8}, - [6720] = {.lex_state = 25, .external_lex_state = 8}, - [6721] = {.lex_state = 25, .external_lex_state = 8}, - [6722] = {.lex_state = 25, .external_lex_state = 8}, - [6723] = {.lex_state = 25, .external_lex_state = 8}, - [6724] = {.lex_state = 25, .external_lex_state = 8}, - [6725] = {.lex_state = 25, .external_lex_state = 8}, - [6726] = {.lex_state = 25, .external_lex_state = 8}, - [6727] = {.lex_state = 25, .external_lex_state = 8}, - [6728] = {.lex_state = 25, .external_lex_state = 8}, - [6729] = {.lex_state = 25, .external_lex_state = 8}, - [6730] = {.lex_state = 20, .external_lex_state = 8}, - [6731] = {.lex_state = 25, .external_lex_state = 8}, - [6732] = {.lex_state = 25, .external_lex_state = 8}, - [6733] = {.lex_state = 25, .external_lex_state = 8}, - [6734] = {.lex_state = 25, .external_lex_state = 8}, - [6735] = {.lex_state = 25, .external_lex_state = 8}, - [6736] = {.lex_state = 25, .external_lex_state = 8}, - [6737] = {.lex_state = 25, .external_lex_state = 8}, - [6738] = {.lex_state = 25, .external_lex_state = 8}, - [6739] = {.lex_state = 25, .external_lex_state = 8}, - [6740] = {.lex_state = 25, .external_lex_state = 8}, - [6741] = {.lex_state = 25, .external_lex_state = 8}, - [6742] = {.lex_state = 25, .external_lex_state = 8}, - [6743] = {.lex_state = 25, .external_lex_state = 8}, - [6744] = {.lex_state = 25, .external_lex_state = 8}, - [6745] = {.lex_state = 25, .external_lex_state = 8}, - [6746] = {.lex_state = 25, .external_lex_state = 8}, - [6747] = {.lex_state = 25, .external_lex_state = 8}, - [6748] = {.lex_state = 25, .external_lex_state = 8}, - [6749] = {.lex_state = 25, .external_lex_state = 8}, + [6685] = {.lex_state = 20, .external_lex_state = 8}, + [6686] = {.lex_state = 20, .external_lex_state = 8}, + [6687] = {.lex_state = 27, .external_lex_state = 8}, + [6688] = {.lex_state = 20, .external_lex_state = 8}, + [6689] = {.lex_state = 27, .external_lex_state = 8}, + [6690] = {.lex_state = 27, .external_lex_state = 8}, + [6691] = {.lex_state = 27, .external_lex_state = 8}, + [6692] = {.lex_state = 27, .external_lex_state = 8}, + [6693] = {.lex_state = 27, .external_lex_state = 8}, + [6694] = {.lex_state = 27, .external_lex_state = 8}, + [6695] = {.lex_state = 27, .external_lex_state = 8}, + [6696] = {.lex_state = 27, .external_lex_state = 8}, + [6697] = {.lex_state = 27, .external_lex_state = 8}, + [6698] = {.lex_state = 27, .external_lex_state = 8}, + [6699] = {.lex_state = 27, .external_lex_state = 8}, + [6700] = {.lex_state = 27, .external_lex_state = 8}, + [6701] = {.lex_state = 27, .external_lex_state = 8}, + [6702] = {.lex_state = 27, .external_lex_state = 8}, + [6703] = {.lex_state = 27, .external_lex_state = 8}, + [6704] = {.lex_state = 27, .external_lex_state = 8}, + [6705] = {.lex_state = 27, .external_lex_state = 8}, + [6706] = {.lex_state = 27, .external_lex_state = 8}, + [6707] = {.lex_state = 27, .external_lex_state = 8}, + [6708] = {.lex_state = 27, .external_lex_state = 8}, + [6709] = {.lex_state = 27, .external_lex_state = 8}, + [6710] = {.lex_state = 27, .external_lex_state = 8}, + [6711] = {.lex_state = 27, .external_lex_state = 8}, + [6712] = {.lex_state = 27, .external_lex_state = 8}, + [6713] = {.lex_state = 27, .external_lex_state = 8}, + [6714] = {.lex_state = 27, .external_lex_state = 8}, + [6715] = {.lex_state = 27, .external_lex_state = 8}, + [6716] = {.lex_state = 27, .external_lex_state = 8}, + [6717] = {.lex_state = 27, .external_lex_state = 8}, + [6718] = {.lex_state = 27, .external_lex_state = 8}, + [6719] = {.lex_state = 27, .external_lex_state = 8}, + [6720] = {.lex_state = 27, .external_lex_state = 8}, + [6721] = {.lex_state = 27, .external_lex_state = 8}, + [6722] = {.lex_state = 27, .external_lex_state = 8}, + [6723] = {.lex_state = 27, .external_lex_state = 8}, + [6724] = {.lex_state = 27, .external_lex_state = 8}, + [6725] = {.lex_state = 27, .external_lex_state = 8}, + [6726] = {.lex_state = 27, .external_lex_state = 8}, + [6727] = {.lex_state = 27, .external_lex_state = 8}, + [6728] = {.lex_state = 27, .external_lex_state = 8}, + [6729] = {.lex_state = 27, .external_lex_state = 8}, + [6730] = {.lex_state = 27, .external_lex_state = 8}, + [6731] = {.lex_state = 27, .external_lex_state = 8}, + [6732] = {.lex_state = 27, .external_lex_state = 8}, + [6733] = {.lex_state = 27, .external_lex_state = 8}, + [6734] = {.lex_state = 27, .external_lex_state = 8}, + [6735] = {.lex_state = 27, .external_lex_state = 8}, + [6736] = {.lex_state = 27, .external_lex_state = 8}, + [6737] = {.lex_state = 27, .external_lex_state = 8}, + [6738] = {.lex_state = 20, .external_lex_state = 8}, + [6739] = {.lex_state = 27, .external_lex_state = 8}, + [6740] = {.lex_state = 27, .external_lex_state = 8}, + [6741] = {.lex_state = 27, .external_lex_state = 8}, + [6742] = {.lex_state = 27, .external_lex_state = 8}, + [6743] = {.lex_state = 20, .external_lex_state = 8}, + [6744] = {.lex_state = 20, .external_lex_state = 8}, + [6745] = {.lex_state = 20, .external_lex_state = 8}, + [6746] = {.lex_state = 20, .external_lex_state = 8}, + [6747] = {.lex_state = 20, .external_lex_state = 8}, + [6748] = {.lex_state = 20, .external_lex_state = 8}, + [6749] = {.lex_state = 20, .external_lex_state = 8}, [6750] = {.lex_state = 20, .external_lex_state = 8}, - [6751] = {.lex_state = 27, .external_lex_state = 8}, + [6751] = {.lex_state = 20, .external_lex_state = 8}, [6752] = {.lex_state = 20, .external_lex_state = 8}, - [6753] = {.lex_state = 27, .external_lex_state = 8}, - [6754] = {.lex_state = 27, .external_lex_state = 8}, - [6755] = {.lex_state = 27, .external_lex_state = 8}, - [6756] = {.lex_state = 27, .external_lex_state = 8}, - [6757] = {.lex_state = 27, .external_lex_state = 8}, - [6758] = {.lex_state = 27, .external_lex_state = 8}, - [6759] = {.lex_state = 27, .external_lex_state = 8}, - [6760] = {.lex_state = 27, .external_lex_state = 8}, + [6753] = {.lex_state = 20, .external_lex_state = 8}, + [6754] = {.lex_state = 20, .external_lex_state = 8}, + [6755] = {.lex_state = 20, .external_lex_state = 8}, + [6756] = {.lex_state = 20, .external_lex_state = 8}, + [6757] = {.lex_state = 20, .external_lex_state = 8}, + [6758] = {.lex_state = 20, .external_lex_state = 8}, + [6759] = {.lex_state = 20, .external_lex_state = 8}, + [6760] = {.lex_state = 20, .external_lex_state = 8}, [6761] = {.lex_state = 20, .external_lex_state = 8}, - [6762] = {.lex_state = 27, .external_lex_state = 8}, - [6763] = {.lex_state = 27, .external_lex_state = 8}, - [6764] = {.lex_state = 27, .external_lex_state = 8}, - [6765] = {.lex_state = 27, .external_lex_state = 8}, + [6762] = {.lex_state = 20, .external_lex_state = 8}, + [6763] = {.lex_state = 20, .external_lex_state = 8}, + [6764] = {.lex_state = 20, .external_lex_state = 8}, + [6765] = {.lex_state = 20, .external_lex_state = 8}, [6766] = {.lex_state = 20, .external_lex_state = 8}, - [6767] = {.lex_state = 27, .external_lex_state = 8}, - [6768] = {.lex_state = 27, .external_lex_state = 8}, - [6769] = {.lex_state = 27, .external_lex_state = 8}, - [6770] = {.lex_state = 27, .external_lex_state = 8}, - [6771] = {.lex_state = 27, .external_lex_state = 8}, - [6772] = {.lex_state = 27, .external_lex_state = 8}, - [6773] = {.lex_state = 27, .external_lex_state = 8}, + [6767] = {.lex_state = 20, .external_lex_state = 8}, + [6768] = {.lex_state = 20, .external_lex_state = 8}, + [6769] = {.lex_state = 20, .external_lex_state = 8}, + [6770] = {.lex_state = 20, .external_lex_state = 8}, + [6771] = {.lex_state = 20, .external_lex_state = 8}, + [6772] = {.lex_state = 20, .external_lex_state = 8}, + [6773] = {.lex_state = 20, .external_lex_state = 8}, [6774] = {.lex_state = 20, .external_lex_state = 8}, - [6775] = {.lex_state = 27, .external_lex_state = 8}, - [6776] = {.lex_state = 27, .external_lex_state = 8}, + [6775] = {.lex_state = 20, .external_lex_state = 8}, + [6776] = {.lex_state = 20, .external_lex_state = 8}, [6777] = {.lex_state = 20, .external_lex_state = 8}, - [6778] = {.lex_state = 27, .external_lex_state = 8}, - [6779] = {.lex_state = 27, .external_lex_state = 8}, - [6780] = {.lex_state = 27, .external_lex_state = 8}, - [6781] = {.lex_state = 27, .external_lex_state = 8}, - [6782] = {.lex_state = 27, .external_lex_state = 8}, - [6783] = {.lex_state = 25, .external_lex_state = 8}, - [6784] = {.lex_state = 25, .external_lex_state = 8}, + [6778] = {.lex_state = 20, .external_lex_state = 8}, + [6779] = {.lex_state = 20, .external_lex_state = 8}, + [6780] = {.lex_state = 20, .external_lex_state = 8}, + [6781] = {.lex_state = 20, .external_lex_state = 8}, + [6782] = {.lex_state = 20, .external_lex_state = 8}, + [6783] = {.lex_state = 20, .external_lex_state = 8}, + [6784] = {.lex_state = 20, .external_lex_state = 8}, [6785] = {.lex_state = 20, .external_lex_state = 8}, [6786] = {.lex_state = 20, .external_lex_state = 8}, - [6787] = {.lex_state = 25, .external_lex_state = 8}, - [6788] = {.lex_state = 25, .external_lex_state = 8}, - [6789] = {.lex_state = 25, .external_lex_state = 8}, - [6790] = {.lex_state = 25, .external_lex_state = 8}, + [6787] = {.lex_state = 20, .external_lex_state = 8}, + [6788] = {.lex_state = 20, .external_lex_state = 8}, + [6789] = {.lex_state = 20, .external_lex_state = 8}, + [6790] = {.lex_state = 20, .external_lex_state = 8}, [6791] = {.lex_state = 20, .external_lex_state = 8}, - [6792] = {.lex_state = 25, .external_lex_state = 8}, + [6792] = {.lex_state = 20, .external_lex_state = 8}, [6793] = {.lex_state = 20, .external_lex_state = 8}, - [6794] = {.lex_state = 25, .external_lex_state = 8}, - [6795] = {.lex_state = 25, .external_lex_state = 8}, - [6796] = {.lex_state = 25, .external_lex_state = 8}, - [6797] = {.lex_state = 25, .external_lex_state = 8}, - [6798] = {.lex_state = 25, .external_lex_state = 8}, - [6799] = {.lex_state = 25, .external_lex_state = 8}, - [6800] = {.lex_state = 27, .external_lex_state = 8}, + [6794] = {.lex_state = 20, .external_lex_state = 8}, + [6795] = {.lex_state = 20, .external_lex_state = 8}, + [6796] = {.lex_state = 20, .external_lex_state = 8}, + [6797] = {.lex_state = 20, .external_lex_state = 8}, + [6798] = {.lex_state = 20, .external_lex_state = 8}, + [6799] = {.lex_state = 20, .external_lex_state = 8}, + [6800] = {.lex_state = 20, .external_lex_state = 8}, [6801] = {.lex_state = 20, .external_lex_state = 8}, - [6802] = {.lex_state = 25, .external_lex_state = 8}, - [6803] = {.lex_state = 25, .external_lex_state = 8}, - [6804] = {.lex_state = 25, .external_lex_state = 8}, + [6802] = {.lex_state = 20, .external_lex_state = 8}, + [6803] = {.lex_state = 20, .external_lex_state = 8}, + [6804] = {.lex_state = 20, .external_lex_state = 8}, [6805] = {.lex_state = 20, .external_lex_state = 8}, - [6806] = {.lex_state = 25, .external_lex_state = 8}, - [6807] = {.lex_state = 25, .external_lex_state = 8}, + [6806] = {.lex_state = 20, .external_lex_state = 8}, + [6807] = {.lex_state = 20, .external_lex_state = 8}, [6808] = {.lex_state = 20, .external_lex_state = 8}, [6809] = {.lex_state = 20, .external_lex_state = 8}, - [6810] = {.lex_state = 25, .external_lex_state = 8}, - [6811] = {.lex_state = 25, .external_lex_state = 8}, - [6812] = {.lex_state = 25, .external_lex_state = 8}, + [6810] = {.lex_state = 20, .external_lex_state = 8}, + [6811] = {.lex_state = 20, .external_lex_state = 8}, + [6812] = {.lex_state = 20, .external_lex_state = 8}, [6813] = {.lex_state = 20, .external_lex_state = 8}, - [6814] = {.lex_state = 25, .external_lex_state = 8}, - [6815] = {.lex_state = 25, .external_lex_state = 8}, - [6816] = {.lex_state = 25, .external_lex_state = 8}, + [6814] = {.lex_state = 20, .external_lex_state = 8}, + [6815] = {.lex_state = 20, .external_lex_state = 8}, + [6816] = {.lex_state = 20, .external_lex_state = 8}, [6817] = {.lex_state = 20, .external_lex_state = 8}, [6818] = {.lex_state = 20, .external_lex_state = 8}, [6819] = {.lex_state = 20, .external_lex_state = 8}, - [6820] = {.lex_state = 25, .external_lex_state = 8}, - [6821] = {.lex_state = 25, .external_lex_state = 8}, - [6822] = {.lex_state = 25, .external_lex_state = 8}, - [6823] = {.lex_state = 25, .external_lex_state = 8}, + [6820] = {.lex_state = 20, .external_lex_state = 8}, + [6821] = {.lex_state = 20, .external_lex_state = 8}, + [6822] = {.lex_state = 20, .external_lex_state = 8}, + [6823] = {.lex_state = 20, .external_lex_state = 8}, [6824] = {.lex_state = 20, .external_lex_state = 8}, - [6825] = {.lex_state = 25, .external_lex_state = 8}, + [6825] = {.lex_state = 20, .external_lex_state = 8}, [6826] = {.lex_state = 20, .external_lex_state = 8}, - [6827] = {.lex_state = 25, .external_lex_state = 8}, - [6828] = {.lex_state = 25, .external_lex_state = 8}, - [6829] = {.lex_state = 25, .external_lex_state = 8}, - [6830] = {.lex_state = 25, .external_lex_state = 8}, + [6827] = {.lex_state = 20, .external_lex_state = 8}, + [6828] = {.lex_state = 20, .external_lex_state = 8}, + [6829] = {.lex_state = 20, .external_lex_state = 8}, + [6830] = {.lex_state = 20, .external_lex_state = 8}, [6831] = {.lex_state = 20, .external_lex_state = 8}, [6832] = {.lex_state = 20, .external_lex_state = 8}, [6833] = {.lex_state = 20, .external_lex_state = 8}, [6834] = {.lex_state = 20, .external_lex_state = 8}, [6835] = {.lex_state = 20, .external_lex_state = 8}, - [6836] = {.lex_state = 25, .external_lex_state = 8}, - [6837] = {.lex_state = 25, .external_lex_state = 8}, - [6838] = {.lex_state = 25, .external_lex_state = 8}, + [6836] = {.lex_state = 20, .external_lex_state = 8}, + [6837] = {.lex_state = 20, .external_lex_state = 8}, + [6838] = {.lex_state = 20, .external_lex_state = 8}, [6839] = {.lex_state = 20, .external_lex_state = 8}, - [6840] = {.lex_state = 25, .external_lex_state = 8}, - [6841] = {.lex_state = 25, .external_lex_state = 8}, + [6840] = {.lex_state = 20, .external_lex_state = 8}, + [6841] = {.lex_state = 20, .external_lex_state = 8}, [6842] = {.lex_state = 20, .external_lex_state = 8}, - [6843] = {.lex_state = 25, .external_lex_state = 8}, - [6844] = {.lex_state = 25, .external_lex_state = 8}, - [6845] = {.lex_state = 25, .external_lex_state = 8}, - [6846] = {.lex_state = 25, .external_lex_state = 8}, - [6847] = {.lex_state = 27, .external_lex_state = 8}, - [6848] = {.lex_state = 27, .external_lex_state = 8}, - [6849] = {.lex_state = 27, .external_lex_state = 8}, + [6843] = {.lex_state = 20, .external_lex_state = 8}, + [6844] = {.lex_state = 20, .external_lex_state = 8}, + [6845] = {.lex_state = 20, .external_lex_state = 8}, + [6846] = {.lex_state = 20, .external_lex_state = 8}, + [6847] = {.lex_state = 20, .external_lex_state = 8}, + [6848] = {.lex_state = 20, .external_lex_state = 8}, + [6849] = {.lex_state = 20, .external_lex_state = 8}, [6850] = {.lex_state = 20, .external_lex_state = 8}, - [6851] = {.lex_state = 27, .external_lex_state = 8}, - [6852] = {.lex_state = 27, .external_lex_state = 8}, - [6853] = {.lex_state = 27, .external_lex_state = 8}, - [6854] = {.lex_state = 27, .external_lex_state = 8}, - [6855] = {.lex_state = 27, .external_lex_state = 8}, - [6856] = {.lex_state = 27, .external_lex_state = 8}, - [6857] = {.lex_state = 27, .external_lex_state = 8}, - [6858] = {.lex_state = 27, .external_lex_state = 8}, - [6859] = {.lex_state = 27, .external_lex_state = 8}, - [6860] = {.lex_state = 27, .external_lex_state = 8}, - [6861] = {.lex_state = 27, .external_lex_state = 8}, - [6862] = {.lex_state = 27, .external_lex_state = 8}, + [6851] = {.lex_state = 20, .external_lex_state = 8}, + [6852] = {.lex_state = 20, .external_lex_state = 8}, + [6853] = {.lex_state = 20, .external_lex_state = 8}, + [6854] = {.lex_state = 20, .external_lex_state = 8}, + [6855] = {.lex_state = 20, .external_lex_state = 8}, + [6856] = {.lex_state = 20, .external_lex_state = 8}, + [6857] = {.lex_state = 20, .external_lex_state = 8}, + [6858] = {.lex_state = 20, .external_lex_state = 8}, + [6859] = {.lex_state = 20, .external_lex_state = 8}, + [6860] = {.lex_state = 20, .external_lex_state = 8}, + [6861] = {.lex_state = 20, .external_lex_state = 8}, + [6862] = {.lex_state = 20, .external_lex_state = 8}, [6863] = {.lex_state = 20, .external_lex_state = 8}, - [6864] = {.lex_state = 27, .external_lex_state = 8}, - [6865] = {.lex_state = 27, .external_lex_state = 8}, - [6866] = {.lex_state = 27, .external_lex_state = 8}, - [6867] = {.lex_state = 27, .external_lex_state = 8}, - [6868] = {.lex_state = 27, .external_lex_state = 8}, - [6869] = {.lex_state = 27, .external_lex_state = 8}, - [6870] = {.lex_state = 27, .external_lex_state = 8}, - [6871] = {.lex_state = 27, .external_lex_state = 8}, - [6872] = {.lex_state = 27, .external_lex_state = 8}, - [6873] = {.lex_state = 27, .external_lex_state = 8}, - [6874] = {.lex_state = 27, .external_lex_state = 8}, - [6875] = {.lex_state = 27, .external_lex_state = 8}, - [6876] = {.lex_state = 27, .external_lex_state = 8}, - [6877] = {.lex_state = 27, .external_lex_state = 8}, - [6878] = {.lex_state = 27, .external_lex_state = 8}, - [6879] = {.lex_state = 27, .external_lex_state = 8}, - [6880] = {.lex_state = 27, .external_lex_state = 8}, - [6881] = {.lex_state = 27, .external_lex_state = 8}, - [6882] = {.lex_state = 27, .external_lex_state = 8}, - [6883] = {.lex_state = 27, .external_lex_state = 8}, - [6884] = {.lex_state = 27, .external_lex_state = 8}, - [6885] = {.lex_state = 27, .external_lex_state = 8}, - [6886] = {.lex_state = 27, .external_lex_state = 8}, - [6887] = {.lex_state = 27, .external_lex_state = 8}, - [6888] = {.lex_state = 27, .external_lex_state = 8}, - [6889] = {.lex_state = 27, .external_lex_state = 8}, - [6890] = {.lex_state = 27, .external_lex_state = 8}, - [6891] = {.lex_state = 27, .external_lex_state = 8}, - [6892] = {.lex_state = 27, .external_lex_state = 8}, - [6893] = {.lex_state = 27, .external_lex_state = 8}, - [6894] = {.lex_state = 27, .external_lex_state = 8}, - [6895] = {.lex_state = 27, .external_lex_state = 8}, - [6896] = {.lex_state = 27, .external_lex_state = 8}, - [6897] = {.lex_state = 27, .external_lex_state = 8}, - [6898] = {.lex_state = 27, .external_lex_state = 8}, - [6899] = {.lex_state = 27, .external_lex_state = 8}, - [6900] = {.lex_state = 27, .external_lex_state = 8}, - [6901] = {.lex_state = 27, .external_lex_state = 8}, - [6902] = {.lex_state = 27, .external_lex_state = 8}, + [6864] = {.lex_state = 20, .external_lex_state = 8}, + [6865] = {.lex_state = 20, .external_lex_state = 8}, + [6866] = {.lex_state = 20, .external_lex_state = 8}, + [6867] = {.lex_state = 20, .external_lex_state = 8}, + [6868] = {.lex_state = 20, .external_lex_state = 8}, + [6869] = {.lex_state = 20, .external_lex_state = 8}, + [6870] = {.lex_state = 20, .external_lex_state = 8}, + [6871] = {.lex_state = 20, .external_lex_state = 8}, + [6872] = {.lex_state = 20, .external_lex_state = 8}, + [6873] = {.lex_state = 20, .external_lex_state = 8}, + [6874] = {.lex_state = 20, .external_lex_state = 8}, + [6875] = {.lex_state = 20, .external_lex_state = 8}, + [6876] = {.lex_state = 20, .external_lex_state = 8}, + [6877] = {.lex_state = 20, .external_lex_state = 8}, + [6878] = {.lex_state = 20, .external_lex_state = 8}, + [6879] = {.lex_state = 20, .external_lex_state = 8}, + [6880] = {.lex_state = 20, .external_lex_state = 8}, + [6881] = {.lex_state = 20, .external_lex_state = 8}, + [6882] = {.lex_state = 20, .external_lex_state = 8}, + [6883] = {.lex_state = 20, .external_lex_state = 8}, + [6884] = {.lex_state = 20, .external_lex_state = 8}, + [6885] = {.lex_state = 20, .external_lex_state = 8}, + [6886] = {.lex_state = 20, .external_lex_state = 8}, + [6887] = {.lex_state = 20, .external_lex_state = 8}, + [6888] = {.lex_state = 20, .external_lex_state = 8}, + [6889] = {.lex_state = 20, .external_lex_state = 8}, + [6890] = {.lex_state = 20, .external_lex_state = 8}, + [6891] = {.lex_state = 20, .external_lex_state = 8}, + [6892] = {.lex_state = 20, .external_lex_state = 8}, + [6893] = {.lex_state = 20, .external_lex_state = 8}, + [6894] = {.lex_state = 20, .external_lex_state = 8}, + [6895] = {.lex_state = 20, .external_lex_state = 8}, + [6896] = {.lex_state = 20, .external_lex_state = 8}, + [6897] = {.lex_state = 20, .external_lex_state = 8}, + [6898] = {.lex_state = 20, .external_lex_state = 8}, + [6899] = {.lex_state = 20, .external_lex_state = 8}, + [6900] = {.lex_state = 20, .external_lex_state = 8}, + [6901] = {.lex_state = 20, .external_lex_state = 8}, + [6902] = {.lex_state = 20, .external_lex_state = 8}, [6903] = {.lex_state = 20, .external_lex_state = 8}, [6904] = {.lex_state = 20, .external_lex_state = 8}, [6905] = {.lex_state = 20, .external_lex_state = 8}, @@ -30966,7 +30617,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7136] = {.lex_state = 20, .external_lex_state = 8}, [7137] = {.lex_state = 20, .external_lex_state = 8}, [7138] = {.lex_state = 20, .external_lex_state = 8}, - [7139] = {.lex_state = 20, .external_lex_state = 8}, + [7139] = {.lex_state = 0, .external_lex_state = 6}, [7140] = {.lex_state = 20, .external_lex_state = 8}, [7141] = {.lex_state = 20, .external_lex_state = 8}, [7142] = {.lex_state = 20, .external_lex_state = 8}, @@ -30977,7 +30628,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7147] = {.lex_state = 20, .external_lex_state = 8}, [7148] = {.lex_state = 20, .external_lex_state = 8}, [7149] = {.lex_state = 20, .external_lex_state = 8}, - [7150] = {.lex_state = 20, .external_lex_state = 8}, + [7150] = {.lex_state = 26, .external_lex_state = 8}, [7151] = {.lex_state = 20, .external_lex_state = 8}, [7152] = {.lex_state = 20, .external_lex_state = 8}, [7153] = {.lex_state = 20, .external_lex_state = 8}, @@ -31013,7 +30664,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7183] = {.lex_state = 20, .external_lex_state = 8}, [7184] = {.lex_state = 20, .external_lex_state = 8}, [7185] = {.lex_state = 20, .external_lex_state = 8}, - [7186] = {.lex_state = 20, .external_lex_state = 8}, + [7186] = {.lex_state = 26, .external_lex_state = 8}, [7187] = {.lex_state = 20, .external_lex_state = 8}, [7188] = {.lex_state = 20, .external_lex_state = 8}, [7189] = {.lex_state = 20, .external_lex_state = 8}, @@ -31036,27 +30687,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7206] = {.lex_state = 20, .external_lex_state = 8}, [7207] = {.lex_state = 20, .external_lex_state = 8}, [7208] = {.lex_state = 20, .external_lex_state = 8}, - [7209] = {.lex_state = 20, .external_lex_state = 8}, + [7209] = {.lex_state = 0, .external_lex_state = 6}, [7210] = {.lex_state = 20, .external_lex_state = 8}, - [7211] = {.lex_state = 20, .external_lex_state = 8}, - [7212] = {.lex_state = 20, .external_lex_state = 8}, - [7213] = {.lex_state = 20, .external_lex_state = 8}, - [7214] = {.lex_state = 20, .external_lex_state = 8}, - [7215] = {.lex_state = 20, .external_lex_state = 8}, + [7211] = {.lex_state = 25, .external_lex_state = 8}, + [7212] = {.lex_state = 27, .external_lex_state = 8}, + [7213] = {.lex_state = 25, .external_lex_state = 8}, + [7214] = {.lex_state = 25, .external_lex_state = 8}, + [7215] = {.lex_state = 26, .external_lex_state = 8}, [7216] = {.lex_state = 20, .external_lex_state = 8}, - [7217] = {.lex_state = 20, .external_lex_state = 8}, - [7218] = {.lex_state = 20, .external_lex_state = 8}, - [7219] = {.lex_state = 20, .external_lex_state = 8}, - [7220] = {.lex_state = 20, .external_lex_state = 8}, - [7221] = {.lex_state = 20, .external_lex_state = 8}, - [7222] = {.lex_state = 20, .external_lex_state = 8}, - [7223] = {.lex_state = 20, .external_lex_state = 8}, + [7217] = {.lex_state = 25, .external_lex_state = 8}, + [7218] = {.lex_state = 26, .external_lex_state = 8}, + [7219] = {.lex_state = 25, .external_lex_state = 8}, + [7220] = {.lex_state = 26, .external_lex_state = 8}, + [7221] = {.lex_state = 26, .external_lex_state = 8}, + [7222] = {.lex_state = 26, .external_lex_state = 8}, + [7223] = {.lex_state = 27, .external_lex_state = 8}, [7224] = {.lex_state = 20, .external_lex_state = 8}, [7225] = {.lex_state = 20, .external_lex_state = 8}, [7226] = {.lex_state = 20, .external_lex_state = 8}, [7227] = {.lex_state = 20, .external_lex_state = 8}, - [7228] = {.lex_state = 20, .external_lex_state = 8}, - [7229] = {.lex_state = 20, .external_lex_state = 8}, + [7228] = {.lex_state = 27, .external_lex_state = 8}, + [7229] = {.lex_state = 26, .external_lex_state = 8}, [7230] = {.lex_state = 20, .external_lex_state = 8}, [7231] = {.lex_state = 20, .external_lex_state = 8}, [7232] = {.lex_state = 20, .external_lex_state = 8}, @@ -31073,8 +30724,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7243] = {.lex_state = 20, .external_lex_state = 8}, [7244] = {.lex_state = 20, .external_lex_state = 8}, [7245] = {.lex_state = 20, .external_lex_state = 8}, - [7246] = {.lex_state = 20, .external_lex_state = 8}, - [7247] = {.lex_state = 20, .external_lex_state = 8}, + [7246] = {.lex_state = 26, .external_lex_state = 8}, + [7247] = {.lex_state = 26, .external_lex_state = 8}, [7248] = {.lex_state = 20, .external_lex_state = 8}, [7249] = {.lex_state = 20, .external_lex_state = 8}, [7250] = {.lex_state = 20, .external_lex_state = 8}, @@ -31090,10 +30741,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7260] = {.lex_state = 20, .external_lex_state = 8}, [7261] = {.lex_state = 20, .external_lex_state = 8}, [7262] = {.lex_state = 20, .external_lex_state = 8}, - [7263] = {.lex_state = 20, .external_lex_state = 8}, + [7263] = {.lex_state = 26, .external_lex_state = 8}, [7264] = {.lex_state = 20, .external_lex_state = 8}, [7265] = {.lex_state = 20, .external_lex_state = 8}, - [7266] = {.lex_state = 20, .external_lex_state = 8}, + [7266] = {.lex_state = 27, .external_lex_state = 8}, [7267] = {.lex_state = 20, .external_lex_state = 8}, [7268] = {.lex_state = 20, .external_lex_state = 8}, [7269] = {.lex_state = 20, .external_lex_state = 8}, @@ -31106,25 +30757,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7276] = {.lex_state = 20, .external_lex_state = 8}, [7277] = {.lex_state = 20, .external_lex_state = 8}, [7278] = {.lex_state = 20, .external_lex_state = 8}, - [7279] = {.lex_state = 20, .external_lex_state = 8}, + [7279] = {.lex_state = 26, .external_lex_state = 8}, [7280] = {.lex_state = 20, .external_lex_state = 8}, [7281] = {.lex_state = 20, .external_lex_state = 8}, [7282] = {.lex_state = 20, .external_lex_state = 8}, [7283] = {.lex_state = 20, .external_lex_state = 8}, - [7284] = {.lex_state = 20, .external_lex_state = 8}, + [7284] = {.lex_state = 26, .external_lex_state = 8}, [7285] = {.lex_state = 20, .external_lex_state = 8}, [7286] = {.lex_state = 20, .external_lex_state = 8}, [7287] = {.lex_state = 20, .external_lex_state = 8}, [7288] = {.lex_state = 20, .external_lex_state = 8}, [7289] = {.lex_state = 20, .external_lex_state = 8}, - [7290] = {.lex_state = 20, .external_lex_state = 8}, + [7290] = {.lex_state = 26, .external_lex_state = 8}, [7291] = {.lex_state = 20, .external_lex_state = 8}, [7292] = {.lex_state = 20, .external_lex_state = 8}, [7293] = {.lex_state = 20, .external_lex_state = 8}, [7294] = {.lex_state = 20, .external_lex_state = 8}, [7295] = {.lex_state = 20, .external_lex_state = 8}, [7296] = {.lex_state = 20, .external_lex_state = 8}, - [7297] = {.lex_state = 20, .external_lex_state = 8}, + [7297] = {.lex_state = 27, .external_lex_state = 8}, [7298] = {.lex_state = 20, .external_lex_state = 8}, [7299] = {.lex_state = 20, .external_lex_state = 8}, [7300] = {.lex_state = 20, .external_lex_state = 8}, @@ -31138,37 +30789,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7308] = {.lex_state = 20, .external_lex_state = 8}, [7309] = {.lex_state = 20, .external_lex_state = 8}, [7310] = {.lex_state = 20, .external_lex_state = 8}, - [7311] = {.lex_state = 20, .external_lex_state = 8}, + [7311] = {.lex_state = 26, .external_lex_state = 8}, [7312] = {.lex_state = 20, .external_lex_state = 8}, [7313] = {.lex_state = 20, .external_lex_state = 8}, - [7314] = {.lex_state = 20, .external_lex_state = 8}, - [7315] = {.lex_state = 20, .external_lex_state = 8}, + [7314] = {.lex_state = 27, .external_lex_state = 8}, + [7315] = {.lex_state = 26, .external_lex_state = 8}, [7316] = {.lex_state = 20, .external_lex_state = 8}, [7317] = {.lex_state = 20, .external_lex_state = 8}, [7318] = {.lex_state = 20, .external_lex_state = 8}, [7319] = {.lex_state = 20, .external_lex_state = 8}, [7320] = {.lex_state = 20, .external_lex_state = 8}, - [7321] = {.lex_state = 20, .external_lex_state = 8}, - [7322] = {.lex_state = 20, .external_lex_state = 8}, + [7321] = {.lex_state = 26, .external_lex_state = 8}, + [7322] = {.lex_state = 26, .external_lex_state = 8}, [7323] = {.lex_state = 20, .external_lex_state = 8}, [7324] = {.lex_state = 20, .external_lex_state = 8}, [7325] = {.lex_state = 20, .external_lex_state = 8}, - [7326] = {.lex_state = 20, .external_lex_state = 8}, - [7327] = {.lex_state = 20, .external_lex_state = 8}, + [7326] = {.lex_state = 26, .external_lex_state = 8}, + [7327] = {.lex_state = 26, .external_lex_state = 8}, [7328] = {.lex_state = 20, .external_lex_state = 8}, [7329] = {.lex_state = 20, .external_lex_state = 8}, [7330] = {.lex_state = 20, .external_lex_state = 8}, [7331] = {.lex_state = 20, .external_lex_state = 8}, [7332] = {.lex_state = 20, .external_lex_state = 8}, - [7333] = {.lex_state = 20, .external_lex_state = 8}, + [7333] = {.lex_state = 27, .external_lex_state = 8}, [7334] = {.lex_state = 20, .external_lex_state = 8}, [7335] = {.lex_state = 20, .external_lex_state = 8}, - [7336] = {.lex_state = 20, .external_lex_state = 8}, + [7336] = {.lex_state = 26, .external_lex_state = 8}, [7337] = {.lex_state = 20, .external_lex_state = 8}, - [7338] = {.lex_state = 20, .external_lex_state = 8}, + [7338] = {.lex_state = 27, .external_lex_state = 8}, [7339] = {.lex_state = 20, .external_lex_state = 8}, - [7340] = {.lex_state = 20, .external_lex_state = 8}, - [7341] = {.lex_state = 20, .external_lex_state = 8}, + [7340] = {.lex_state = 25, .external_lex_state = 8}, + [7341] = {.lex_state = 26, .external_lex_state = 8}, [7342] = {.lex_state = 20, .external_lex_state = 8}, [7343] = {.lex_state = 20, .external_lex_state = 8}, [7344] = {.lex_state = 20, .external_lex_state = 8}, @@ -31177,17 +30828,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7347] = {.lex_state = 20, .external_lex_state = 8}, [7348] = {.lex_state = 20, .external_lex_state = 8}, [7349] = {.lex_state = 20, .external_lex_state = 8}, - [7350] = {.lex_state = 20, .external_lex_state = 8}, + [7350] = {.lex_state = 26, .external_lex_state = 8}, [7351] = {.lex_state = 20, .external_lex_state = 8}, [7352] = {.lex_state = 20, .external_lex_state = 8}, - [7353] = {.lex_state = 20, .external_lex_state = 8}, + [7353] = {.lex_state = 27, .external_lex_state = 8}, [7354] = {.lex_state = 20, .external_lex_state = 8}, [7355] = {.lex_state = 20, .external_lex_state = 8}, [7356] = {.lex_state = 20, .external_lex_state = 8}, - [7357] = {.lex_state = 20, .external_lex_state = 8}, + [7357] = {.lex_state = 25, .external_lex_state = 8}, [7358] = {.lex_state = 20, .external_lex_state = 8}, [7359] = {.lex_state = 20, .external_lex_state = 8}, - [7360] = {.lex_state = 20, .external_lex_state = 8}, + [7360] = {.lex_state = 27, .external_lex_state = 8}, [7361] = {.lex_state = 20, .external_lex_state = 8}, [7362] = {.lex_state = 20, .external_lex_state = 8}, [7363] = {.lex_state = 20, .external_lex_state = 8}, @@ -31202,7 +30853,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7372] = {.lex_state = 20, .external_lex_state = 8}, [7373] = {.lex_state = 20, .external_lex_state = 8}, [7374] = {.lex_state = 20, .external_lex_state = 8}, - [7375] = {.lex_state = 20, .external_lex_state = 8}, + [7375] = {.lex_state = 25, .external_lex_state = 8}, [7376] = {.lex_state = 20, .external_lex_state = 8}, [7377] = {.lex_state = 20, .external_lex_state = 8}, [7378] = {.lex_state = 20, .external_lex_state = 8}, @@ -31215,7 +30866,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7385] = {.lex_state = 20, .external_lex_state = 8}, [7386] = {.lex_state = 20, .external_lex_state = 8}, [7387] = {.lex_state = 20, .external_lex_state = 8}, - [7388] = {.lex_state = 20, .external_lex_state = 8}, + [7388] = {.lex_state = 25, .external_lex_state = 8}, [7389] = {.lex_state = 20, .external_lex_state = 8}, [7390] = {.lex_state = 20, .external_lex_state = 8}, [7391] = {.lex_state = 20, .external_lex_state = 8}, @@ -31229,8 +30880,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7399] = {.lex_state = 20, .external_lex_state = 8}, [7400] = {.lex_state = 20, .external_lex_state = 8}, [7401] = {.lex_state = 20, .external_lex_state = 8}, - [7402] = {.lex_state = 26, .external_lex_state = 8}, - [7403] = {.lex_state = 20, .external_lex_state = 8}, + [7402] = {.lex_state = 20, .external_lex_state = 8}, + [7403] = {.lex_state = 25, .external_lex_state = 8}, [7404] = {.lex_state = 20, .external_lex_state = 8}, [7405] = {.lex_state = 20, .external_lex_state = 8}, [7406] = {.lex_state = 20, .external_lex_state = 8}, @@ -31238,7 +30889,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7408] = {.lex_state = 20, .external_lex_state = 8}, [7409] = {.lex_state = 20, .external_lex_state = 8}, [7410] = {.lex_state = 20, .external_lex_state = 8}, - [7411] = {.lex_state = 0, .external_lex_state = 6}, + [7411] = {.lex_state = 20, .external_lex_state = 8}, [7412] = {.lex_state = 20, .external_lex_state = 8}, [7413] = {.lex_state = 20, .external_lex_state = 8}, [7414] = {.lex_state = 20, .external_lex_state = 8}, @@ -31270,35 +30921,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7440] = {.lex_state = 20, .external_lex_state = 8}, [7441] = {.lex_state = 20, .external_lex_state = 8}, [7442] = {.lex_state = 20, .external_lex_state = 8}, - [7443] = {.lex_state = 0, .external_lex_state = 6}, + [7443] = {.lex_state = 20, .external_lex_state = 8}, [7444] = {.lex_state = 20, .external_lex_state = 8}, [7445] = {.lex_state = 20, .external_lex_state = 8}, - [7446] = {.lex_state = 26, .external_lex_state = 8}, + [7446] = {.lex_state = 20, .external_lex_state = 8}, [7447] = {.lex_state = 20, .external_lex_state = 8}, [7448] = {.lex_state = 20, .external_lex_state = 8}, [7449] = {.lex_state = 20, .external_lex_state = 8}, [7450] = {.lex_state = 20, .external_lex_state = 8}, [7451] = {.lex_state = 20, .external_lex_state = 8}, - [7452] = {.lex_state = 26, .external_lex_state = 8}, - [7453] = {.lex_state = 25, .external_lex_state = 8}, - [7454] = {.lex_state = 25, .external_lex_state = 8}, - [7455] = {.lex_state = 26, .external_lex_state = 8}, - [7456] = {.lex_state = 27, .external_lex_state = 8}, - [7457] = {.lex_state = 26, .external_lex_state = 8}, - [7458] = {.lex_state = 25, .external_lex_state = 8}, + [7452] = {.lex_state = 20, .external_lex_state = 8}, + [7453] = {.lex_state = 20, .external_lex_state = 8}, + [7454] = {.lex_state = 20, .external_lex_state = 8}, + [7455] = {.lex_state = 20, .external_lex_state = 8}, + [7456] = {.lex_state = 20, .external_lex_state = 8}, + [7457] = {.lex_state = 20, .external_lex_state = 8}, + [7458] = {.lex_state = 20, .external_lex_state = 8}, [7459] = {.lex_state = 20, .external_lex_state = 8}, - [7460] = {.lex_state = 26, .external_lex_state = 8}, - [7461] = {.lex_state = 27, .external_lex_state = 8}, - [7462] = {.lex_state = 25, .external_lex_state = 8}, - [7463] = {.lex_state = 26, .external_lex_state = 8}, - [7464] = {.lex_state = 25, .external_lex_state = 8}, + [7460] = {.lex_state = 20, .external_lex_state = 9}, + [7461] = {.lex_state = 20, .external_lex_state = 8}, + [7462] = {.lex_state = 20, .external_lex_state = 8}, + [7463] = {.lex_state = 20, .external_lex_state = 8}, + [7464] = {.lex_state = 20, .external_lex_state = 8}, [7465] = {.lex_state = 20, .external_lex_state = 8}, [7466] = {.lex_state = 20, .external_lex_state = 8}, - [7467] = {.lex_state = 26, .external_lex_state = 8}, + [7467] = {.lex_state = 20, .external_lex_state = 8}, [7468] = {.lex_state = 20, .external_lex_state = 8}, [7469] = {.lex_state = 20, .external_lex_state = 8}, [7470] = {.lex_state = 20, .external_lex_state = 8}, - [7471] = {.lex_state = 20, .external_lex_state = 8}, + [7471] = {.lex_state = 27, .external_lex_state = 8}, [7472] = {.lex_state = 20, .external_lex_state = 8}, [7473] = {.lex_state = 20, .external_lex_state = 8}, [7474] = {.lex_state = 20, .external_lex_state = 8}, @@ -31309,7 +30960,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7479] = {.lex_state = 20, .external_lex_state = 8}, [7480] = {.lex_state = 20, .external_lex_state = 8}, [7481] = {.lex_state = 20, .external_lex_state = 8}, - [7482] = {.lex_state = 20, .external_lex_state = 8}, + [7482] = {.lex_state = 25, .external_lex_state = 8}, [7483] = {.lex_state = 20, .external_lex_state = 8}, [7484] = {.lex_state = 20, .external_lex_state = 8}, [7485] = {.lex_state = 20, .external_lex_state = 8}, @@ -31321,23 +30972,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7491] = {.lex_state = 20, .external_lex_state = 8}, [7492] = {.lex_state = 20, .external_lex_state = 8}, [7493] = {.lex_state = 20, .external_lex_state = 8}, - [7494] = {.lex_state = 26, .external_lex_state = 8}, + [7494] = {.lex_state = 20, .external_lex_state = 8}, [7495] = {.lex_state = 20, .external_lex_state = 8}, [7496] = {.lex_state = 20, .external_lex_state = 8}, - [7497] = {.lex_state = 27, .external_lex_state = 8}, + [7497] = {.lex_state = 20, .external_lex_state = 8}, [7498] = {.lex_state = 20, .external_lex_state = 8}, - [7499] = {.lex_state = 26, .external_lex_state = 8}, + [7499] = {.lex_state = 20, .external_lex_state = 8}, [7500] = {.lex_state = 20, .external_lex_state = 8}, - [7501] = {.lex_state = 20, .external_lex_state = 8}, - [7502] = {.lex_state = 26, .external_lex_state = 8}, + [7501] = {.lex_state = 27, .external_lex_state = 8}, + [7502] = {.lex_state = 20, .external_lex_state = 8}, [7503] = {.lex_state = 20, .external_lex_state = 8}, [7504] = {.lex_state = 20, .external_lex_state = 8}, [7505] = {.lex_state = 20, .external_lex_state = 8}, - [7506] = {.lex_state = 20, .external_lex_state = 8}, + [7506] = {.lex_state = 27, .external_lex_state = 8}, [7507] = {.lex_state = 20, .external_lex_state = 8}, [7508] = {.lex_state = 20, .external_lex_state = 8}, [7509] = {.lex_state = 20, .external_lex_state = 8}, - [7510] = {.lex_state = 26, .external_lex_state = 8}, + [7510] = {.lex_state = 20, .external_lex_state = 8}, [7511] = {.lex_state = 20, .external_lex_state = 8}, [7512] = {.lex_state = 20, .external_lex_state = 8}, [7513] = {.lex_state = 20, .external_lex_state = 8}, @@ -31346,16 +30997,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7516] = {.lex_state = 20, .external_lex_state = 8}, [7517] = {.lex_state = 20, .external_lex_state = 8}, [7518] = {.lex_state = 20, .external_lex_state = 8}, - [7519] = {.lex_state = 27, .external_lex_state = 8}, + [7519] = {.lex_state = 20, .external_lex_state = 8}, [7520] = {.lex_state = 20, .external_lex_state = 8}, [7521] = {.lex_state = 20, .external_lex_state = 8}, [7522] = {.lex_state = 20, .external_lex_state = 8}, [7523] = {.lex_state = 20, .external_lex_state = 8}, - [7524] = {.lex_state = 26, .external_lex_state = 8}, + [7524] = {.lex_state = 20, .external_lex_state = 8}, [7525] = {.lex_state = 20, .external_lex_state = 8}, [7526] = {.lex_state = 20, .external_lex_state = 8}, - [7527] = {.lex_state = 25, .external_lex_state = 8}, - [7528] = {.lex_state = 26, .external_lex_state = 8}, + [7527] = {.lex_state = 20, .external_lex_state = 8}, + [7528] = {.lex_state = 20, .external_lex_state = 8}, [7529] = {.lex_state = 20, .external_lex_state = 8}, [7530] = {.lex_state = 20, .external_lex_state = 8}, [7531] = {.lex_state = 20, .external_lex_state = 8}, @@ -31375,26 +31026,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7545] = {.lex_state = 20, .external_lex_state = 8}, [7546] = {.lex_state = 20, .external_lex_state = 8}, [7547] = {.lex_state = 20, .external_lex_state = 8}, - [7548] = {.lex_state = 26, .external_lex_state = 8}, + [7548] = {.lex_state = 20, .external_lex_state = 8}, [7549] = {.lex_state = 20, .external_lex_state = 8}, - [7550] = {.lex_state = 26, .external_lex_state = 8}, + [7550] = {.lex_state = 20, .external_lex_state = 8}, [7551] = {.lex_state = 20, .external_lex_state = 8}, [7552] = {.lex_state = 20, .external_lex_state = 8}, [7553] = {.lex_state = 20, .external_lex_state = 8}, [7554] = {.lex_state = 20, .external_lex_state = 8}, - [7555] = {.lex_state = 26, .external_lex_state = 8}, - [7556] = {.lex_state = 26, .external_lex_state = 8}, + [7555] = {.lex_state = 20, .external_lex_state = 8}, + [7556] = {.lex_state = 20, .external_lex_state = 8}, [7557] = {.lex_state = 20, .external_lex_state = 8}, - [7558] = {.lex_state = 26, .external_lex_state = 8}, - [7559] = {.lex_state = 27, .external_lex_state = 8}, + [7558] = {.lex_state = 20, .external_lex_state = 9}, + [7559] = {.lex_state = 20, .external_lex_state = 8}, [7560] = {.lex_state = 20, .external_lex_state = 8}, [7561] = {.lex_state = 20, .external_lex_state = 8}, - [7562] = {.lex_state = 26, .external_lex_state = 8}, + [7562] = {.lex_state = 20, .external_lex_state = 8}, [7563] = {.lex_state = 20, .external_lex_state = 8}, [7564] = {.lex_state = 20, .external_lex_state = 8}, - [7565] = {.lex_state = 27, .external_lex_state = 8}, - [7566] = {.lex_state = 20, .external_lex_state = 8}, - [7567] = {.lex_state = 20, .external_lex_state = 8}, + [7565] = {.lex_state = 20, .external_lex_state = 8}, + [7566] = {.lex_state = 25, .external_lex_state = 8}, + [7567] = {.lex_state = 25, .external_lex_state = 8}, [7568] = {.lex_state = 20, .external_lex_state = 8}, [7569] = {.lex_state = 20, .external_lex_state = 8}, [7570] = {.lex_state = 20, .external_lex_state = 8}, @@ -31405,10 +31056,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7575] = {.lex_state = 20, .external_lex_state = 8}, [7576] = {.lex_state = 20, .external_lex_state = 8}, [7577] = {.lex_state = 20, .external_lex_state = 8}, - [7578] = {.lex_state = 26, .external_lex_state = 8}, - [7579] = {.lex_state = 26, .external_lex_state = 8}, + [7578] = {.lex_state = 20, .external_lex_state = 8}, + [7579] = {.lex_state = 20, .external_lex_state = 8}, [7580] = {.lex_state = 20, .external_lex_state = 8}, - [7581] = {.lex_state = 27, .external_lex_state = 8}, + [7581] = {.lex_state = 20, .external_lex_state = 8}, [7582] = {.lex_state = 20, .external_lex_state = 8}, [7583] = {.lex_state = 20, .external_lex_state = 8}, [7584] = {.lex_state = 20, .external_lex_state = 8}, @@ -31418,11 +31069,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7588] = {.lex_state = 20, .external_lex_state = 8}, [7589] = {.lex_state = 20, .external_lex_state = 8}, [7590] = {.lex_state = 20, .external_lex_state = 8}, - [7591] = {.lex_state = 26, .external_lex_state = 8}, + [7591] = {.lex_state = 20, .external_lex_state = 8}, [7592] = {.lex_state = 20, .external_lex_state = 8}, [7593] = {.lex_state = 20, .external_lex_state = 8}, - [7594] = {.lex_state = 27, .external_lex_state = 8}, - [7595] = {.lex_state = 25, .external_lex_state = 8}, + [7594] = {.lex_state = 20, .external_lex_state = 8}, + [7595] = {.lex_state = 20, .external_lex_state = 8}, [7596] = {.lex_state = 20, .external_lex_state = 8}, [7597] = {.lex_state = 20, .external_lex_state = 8}, [7598] = {.lex_state = 20, .external_lex_state = 8}, @@ -31439,14 +31090,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7609] = {.lex_state = 20, .external_lex_state = 8}, [7610] = {.lex_state = 20, .external_lex_state = 8}, [7611] = {.lex_state = 20, .external_lex_state = 8}, - [7612] = {.lex_state = 25, .external_lex_state = 8}, + [7612] = {.lex_state = 20, .external_lex_state = 8}, [7613] = {.lex_state = 20, .external_lex_state = 8}, [7614] = {.lex_state = 20, .external_lex_state = 8}, [7615] = {.lex_state = 20, .external_lex_state = 8}, [7616] = {.lex_state = 20, .external_lex_state = 8}, [7617] = {.lex_state = 20, .external_lex_state = 8}, [7618] = {.lex_state = 20, .external_lex_state = 8}, - [7619] = {.lex_state = 20, .external_lex_state = 9}, + [7619] = {.lex_state = 20, .external_lex_state = 8}, [7620] = {.lex_state = 20, .external_lex_state = 8}, [7621] = {.lex_state = 20, .external_lex_state = 8}, [7622] = {.lex_state = 20, .external_lex_state = 8}, @@ -31468,19 +31119,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7638] = {.lex_state = 20, .external_lex_state = 8}, [7639] = {.lex_state = 20, .external_lex_state = 8}, [7640] = {.lex_state = 20, .external_lex_state = 8}, - [7641] = {.lex_state = 20, .external_lex_state = 8}, + [7641] = {.lex_state = 25, .external_lex_state = 8}, [7642] = {.lex_state = 20, .external_lex_state = 8}, - [7643] = {.lex_state = 25, .external_lex_state = 8}, + [7643] = {.lex_state = 20, .external_lex_state = 8}, [7644] = {.lex_state = 20, .external_lex_state = 8}, [7645] = {.lex_state = 20, .external_lex_state = 8}, [7646] = {.lex_state = 20, .external_lex_state = 8}, - [7647] = {.lex_state = 20, .external_lex_state = 8}, + [7647] = {.lex_state = 25, .external_lex_state = 8}, [7648] = {.lex_state = 20, .external_lex_state = 8}, [7649] = {.lex_state = 20, .external_lex_state = 8}, [7650] = {.lex_state = 20, .external_lex_state = 8}, [7651] = {.lex_state = 20, .external_lex_state = 8}, [7652] = {.lex_state = 20, .external_lex_state = 8}, - [7653] = {.lex_state = 20, .external_lex_state = 8}, + [7653] = {.lex_state = 25, .external_lex_state = 8}, [7654] = {.lex_state = 20, .external_lex_state = 8}, [7655] = {.lex_state = 20, .external_lex_state = 8}, [7656] = {.lex_state = 20, .external_lex_state = 8}, @@ -31511,7 +31162,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7681] = {.lex_state = 20, .external_lex_state = 8}, [7682] = {.lex_state = 20, .external_lex_state = 8}, [7683] = {.lex_state = 20, .external_lex_state = 8}, - [7684] = {.lex_state = 25, .external_lex_state = 8}, + [7684] = {.lex_state = 20, .external_lex_state = 8}, [7685] = {.lex_state = 20, .external_lex_state = 8}, [7686] = {.lex_state = 20, .external_lex_state = 8}, [7687] = {.lex_state = 20, .external_lex_state = 8}, @@ -31520,9 +31171,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7690] = {.lex_state = 20, .external_lex_state = 8}, [7691] = {.lex_state = 20, .external_lex_state = 8}, [7692] = {.lex_state = 20, .external_lex_state = 8}, - [7693] = {.lex_state = 20, .external_lex_state = 8}, + [7693] = {.lex_state = 25, .external_lex_state = 8}, [7694] = {.lex_state = 20, .external_lex_state = 8}, - [7695] = {.lex_state = 27, .external_lex_state = 8}, + [7695] = {.lex_state = 20, .external_lex_state = 8}, [7696] = {.lex_state = 20, .external_lex_state = 8}, [7697] = {.lex_state = 20, .external_lex_state = 8}, [7698] = {.lex_state = 20, .external_lex_state = 8}, @@ -31536,7 +31187,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7706] = {.lex_state = 20, .external_lex_state = 8}, [7707] = {.lex_state = 20, .external_lex_state = 8}, [7708] = {.lex_state = 20, .external_lex_state = 8}, - [7709] = {.lex_state = 20, .external_lex_state = 8}, + [7709] = {.lex_state = 25, .external_lex_state = 8}, [7710] = {.lex_state = 20, .external_lex_state = 8}, [7711] = {.lex_state = 20, .external_lex_state = 8}, [7712] = {.lex_state = 20, .external_lex_state = 8}, @@ -31549,12 +31200,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7719] = {.lex_state = 20, .external_lex_state = 8}, [7720] = {.lex_state = 20, .external_lex_state = 8}, [7721] = {.lex_state = 20, .external_lex_state = 8}, - [7722] = {.lex_state = 25, .external_lex_state = 8}, + [7722] = {.lex_state = 20, .external_lex_state = 8}, [7723] = {.lex_state = 20, .external_lex_state = 8}, [7724] = {.lex_state = 20, .external_lex_state = 8}, [7725] = {.lex_state = 20, .external_lex_state = 8}, [7726] = {.lex_state = 20, .external_lex_state = 8}, - [7727] = {.lex_state = 20, .external_lex_state = 8}, + [7727] = {.lex_state = 25, .external_lex_state = 8}, [7728] = {.lex_state = 20, .external_lex_state = 8}, [7729] = {.lex_state = 20, .external_lex_state = 8}, [7730] = {.lex_state = 20, .external_lex_state = 8}, @@ -31563,8 +31214,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7733] = {.lex_state = 20, .external_lex_state = 8}, [7734] = {.lex_state = 20, .external_lex_state = 8}, [7735] = {.lex_state = 20, .external_lex_state = 8}, - [7736] = {.lex_state = 27, .external_lex_state = 8}, - [7737] = {.lex_state = 27, .external_lex_state = 8}, + [7736] = {.lex_state = 20, .external_lex_state = 8}, + [7737] = {.lex_state = 20, .external_lex_state = 8}, [7738] = {.lex_state = 20, .external_lex_state = 8}, [7739] = {.lex_state = 20, .external_lex_state = 8}, [7740] = {.lex_state = 20, .external_lex_state = 8}, @@ -31572,7 +31223,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7742] = {.lex_state = 20, .external_lex_state = 8}, [7743] = {.lex_state = 20, .external_lex_state = 8}, [7744] = {.lex_state = 20, .external_lex_state = 8}, - [7745] = {.lex_state = 27, .external_lex_state = 8}, + [7745] = {.lex_state = 20, .external_lex_state = 8}, [7746] = {.lex_state = 20, .external_lex_state = 8}, [7747] = {.lex_state = 20, .external_lex_state = 8}, [7748] = {.lex_state = 20, .external_lex_state = 8}, @@ -31583,7 +31234,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7753] = {.lex_state = 20, .external_lex_state = 8}, [7754] = {.lex_state = 20, .external_lex_state = 8}, [7755] = {.lex_state = 20, .external_lex_state = 8}, - [7756] = {.lex_state = 27, .external_lex_state = 8}, + [7756] = {.lex_state = 20, .external_lex_state = 8}, [7757] = {.lex_state = 20, .external_lex_state = 8}, [7758] = {.lex_state = 20, .external_lex_state = 8}, [7759] = {.lex_state = 20, .external_lex_state = 8}, @@ -31630,7 +31281,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7800] = {.lex_state = 20, .external_lex_state = 8}, [7801] = {.lex_state = 20, .external_lex_state = 8}, [7802] = {.lex_state = 20, .external_lex_state = 8}, - [7803] = {.lex_state = 20, .external_lex_state = 9}, + [7803] = {.lex_state = 20, .external_lex_state = 8}, [7804] = {.lex_state = 20, .external_lex_state = 8}, [7805] = {.lex_state = 20, .external_lex_state = 8}, [7806] = {.lex_state = 20, .external_lex_state = 8}, @@ -31646,16 +31297,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7816] = {.lex_state = 20, .external_lex_state = 8}, [7817] = {.lex_state = 20, .external_lex_state = 8}, [7818] = {.lex_state = 20, .external_lex_state = 8}, - [7819] = {.lex_state = 25, .external_lex_state = 8}, + [7819] = {.lex_state = 20, .external_lex_state = 8}, [7820] = {.lex_state = 20, .external_lex_state = 8}, [7821] = {.lex_state = 20, .external_lex_state = 8}, [7822] = {.lex_state = 20, .external_lex_state = 8}, [7823] = {.lex_state = 20, .external_lex_state = 8}, [7824] = {.lex_state = 20, .external_lex_state = 8}, - [7825] = {.lex_state = 25, .external_lex_state = 8}, + [7825] = {.lex_state = 20, .external_lex_state = 8}, [7826] = {.lex_state = 20, .external_lex_state = 8}, [7827] = {.lex_state = 20, .external_lex_state = 8}, - [7828] = {.lex_state = 20, .external_lex_state = 8}, + [7828] = {.lex_state = 25, .external_lex_state = 8}, [7829] = {.lex_state = 20, .external_lex_state = 8}, [7830] = {.lex_state = 20, .external_lex_state = 8}, [7831] = {.lex_state = 20, .external_lex_state = 8}, @@ -31667,40 +31318,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7837] = {.lex_state = 20, .external_lex_state = 8}, [7838] = {.lex_state = 20, .external_lex_state = 8}, [7839] = {.lex_state = 20, .external_lex_state = 8}, - [7840] = {.lex_state = 20, .external_lex_state = 8}, - [7841] = {.lex_state = 20, .external_lex_state = 8}, + [7840] = {.lex_state = 25, .external_lex_state = 8}, + [7841] = {.lex_state = 25, .external_lex_state = 8}, [7842] = {.lex_state = 20, .external_lex_state = 8}, [7843] = {.lex_state = 20, .external_lex_state = 8}, - [7844] = {.lex_state = 20, .external_lex_state = 8}, - [7845] = {.lex_state = 20, .external_lex_state = 8}, - [7846] = {.lex_state = 20, .external_lex_state = 8}, - [7847] = {.lex_state = 20, .external_lex_state = 8}, - [7848] = {.lex_state = 20, .external_lex_state = 8}, - [7849] = {.lex_state = 25, .external_lex_state = 8}, - [7850] = {.lex_state = 20, .external_lex_state = 8}, - [7851] = {.lex_state = 20, .external_lex_state = 8}, + [7844] = {.lex_state = 27, .external_lex_state = 8}, + [7845] = {.lex_state = 27, .external_lex_state = 8}, + [7846] = {.lex_state = 25, .external_lex_state = 8}, + [7847] = {.lex_state = 25, .external_lex_state = 8}, + [7848] = {.lex_state = 25, .external_lex_state = 8}, + [7849] = {.lex_state = 27, .external_lex_state = 8}, + [7850] = {.lex_state = 25, .external_lex_state = 8}, + [7851] = {.lex_state = 27, .external_lex_state = 8}, [7852] = {.lex_state = 20, .external_lex_state = 8}, - [7853] = {.lex_state = 20, .external_lex_state = 8}, - [7854] = {.lex_state = 20, .external_lex_state = 8}, - [7855] = {.lex_state = 20, .external_lex_state = 8}, + [7853] = {.lex_state = 27, .external_lex_state = 8}, + [7854] = {.lex_state = 25, .external_lex_state = 8}, + [7855] = {.lex_state = 27, .external_lex_state = 8}, [7856] = {.lex_state = 20, .external_lex_state = 8}, [7857] = {.lex_state = 20, .external_lex_state = 8}, - [7858] = {.lex_state = 20, .external_lex_state = 8}, - [7859] = {.lex_state = 20, .external_lex_state = 8}, - [7860] = {.lex_state = 20, .external_lex_state = 8}, - [7861] = {.lex_state = 20, .external_lex_state = 8}, + [7858] = {.lex_state = 27, .external_lex_state = 8}, + [7859] = {.lex_state = 27, .external_lex_state = 8}, + [7860] = {.lex_state = 27, .external_lex_state = 8}, + [7861] = {.lex_state = 27, .external_lex_state = 8}, [7862] = {.lex_state = 20, .external_lex_state = 8}, - [7863] = {.lex_state = 20, .external_lex_state = 8}, - [7864] = {.lex_state = 20, .external_lex_state = 8}, - [7865] = {.lex_state = 20, .external_lex_state = 8}, - [7866] = {.lex_state = 20, .external_lex_state = 8}, + [7863] = {.lex_state = 27, .external_lex_state = 8}, + [7864] = {.lex_state = 25, .external_lex_state = 8}, + [7865] = {.lex_state = 25, .external_lex_state = 8}, + [7866] = {.lex_state = 25, .external_lex_state = 8}, [7867] = {.lex_state = 20, .external_lex_state = 8}, [7868] = {.lex_state = 20, .external_lex_state = 8}, [7869] = {.lex_state = 20, .external_lex_state = 8}, [7870] = {.lex_state = 20, .external_lex_state = 8}, [7871] = {.lex_state = 20, .external_lex_state = 8}, [7872] = {.lex_state = 20, .external_lex_state = 8}, - [7873] = {.lex_state = 20, .external_lex_state = 8}, + [7873] = {.lex_state = 23, .external_lex_state = 9}, [7874] = {.lex_state = 20, .external_lex_state = 8}, [7875] = {.lex_state = 20, .external_lex_state = 8}, [7876] = {.lex_state = 20, .external_lex_state = 8}, @@ -31714,13 +31365,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7884] = {.lex_state = 20, .external_lex_state = 8}, [7885] = {.lex_state = 20, .external_lex_state = 8}, [7886] = {.lex_state = 20, .external_lex_state = 8}, - [7887] = {.lex_state = 20, .external_lex_state = 8}, + [7887] = {.lex_state = 23, .external_lex_state = 9}, [7888] = {.lex_state = 20, .external_lex_state = 8}, [7889] = {.lex_state = 20, .external_lex_state = 8}, [7890] = {.lex_state = 20, .external_lex_state = 8}, - [7891] = {.lex_state = 20, .external_lex_state = 8}, + [7891] = {.lex_state = 23, .external_lex_state = 9}, [7892] = {.lex_state = 20, .external_lex_state = 8}, - [7893] = {.lex_state = 20, .external_lex_state = 8}, + [7893] = {.lex_state = 23, .external_lex_state = 8}, [7894] = {.lex_state = 20, .external_lex_state = 8}, [7895] = {.lex_state = 20, .external_lex_state = 8}, [7896] = {.lex_state = 20, .external_lex_state = 8}, @@ -31734,7 +31385,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7904] = {.lex_state = 20, .external_lex_state = 8}, [7905] = {.lex_state = 20, .external_lex_state = 8}, [7906] = {.lex_state = 20, .external_lex_state = 8}, - [7907] = {.lex_state = 25, .external_lex_state = 8}, + [7907] = {.lex_state = 20, .external_lex_state = 8}, [7908] = {.lex_state = 20, .external_lex_state = 8}, [7909] = {.lex_state = 20, .external_lex_state = 8}, [7910] = {.lex_state = 20, .external_lex_state = 8}, @@ -31792,7 +31443,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7962] = {.lex_state = 20, .external_lex_state = 8}, [7963] = {.lex_state = 20, .external_lex_state = 8}, [7964] = {.lex_state = 20, .external_lex_state = 8}, - [7965] = {.lex_state = 25, .external_lex_state = 8}, + [7965] = {.lex_state = 20, .external_lex_state = 8}, [7966] = {.lex_state = 20, .external_lex_state = 8}, [7967] = {.lex_state = 20, .external_lex_state = 8}, [7968] = {.lex_state = 20, .external_lex_state = 8}, @@ -31830,7 +31481,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8000] = {.lex_state = 20, .external_lex_state = 8}, [8001] = {.lex_state = 20, .external_lex_state = 8}, [8002] = {.lex_state = 20, .external_lex_state = 8}, - [8003] = {.lex_state = 20, .external_lex_state = 8}, + [8003] = {.lex_state = 31, .external_lex_state = 8}, [8004] = {.lex_state = 20, .external_lex_state = 8}, [8005] = {.lex_state = 20, .external_lex_state = 8}, [8006] = {.lex_state = 20, .external_lex_state = 8}, @@ -31839,7 +31490,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8009] = {.lex_state = 20, .external_lex_state = 8}, [8010] = {.lex_state = 20, .external_lex_state = 8}, [8011] = {.lex_state = 20, .external_lex_state = 8}, - [8012] = {.lex_state = 25, .external_lex_state = 8}, + [8012] = {.lex_state = 20, .external_lex_state = 8}, [8013] = {.lex_state = 20, .external_lex_state = 8}, [8014] = {.lex_state = 20, .external_lex_state = 8}, [8015] = {.lex_state = 20, .external_lex_state = 8}, @@ -31850,7 +31501,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8020] = {.lex_state = 20, .external_lex_state = 8}, [8021] = {.lex_state = 20, .external_lex_state = 8}, [8022] = {.lex_state = 20, .external_lex_state = 8}, - [8023] = {.lex_state = 25, .external_lex_state = 8}, + [8023] = {.lex_state = 20, .external_lex_state = 8}, [8024] = {.lex_state = 20, .external_lex_state = 8}, [8025] = {.lex_state = 20, .external_lex_state = 8}, [8026] = {.lex_state = 20, .external_lex_state = 8}, @@ -31860,18 +31511,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8030] = {.lex_state = 20, .external_lex_state = 8}, [8031] = {.lex_state = 20, .external_lex_state = 8}, [8032] = {.lex_state = 20, .external_lex_state = 8}, - [8033] = {.lex_state = 20, .external_lex_state = 8}, + [8033] = {.lex_state = 13, .external_lex_state = 8}, [8034] = {.lex_state = 20, .external_lex_state = 8}, [8035] = {.lex_state = 20, .external_lex_state = 8}, [8036] = {.lex_state = 20, .external_lex_state = 8}, [8037] = {.lex_state = 20, .external_lex_state = 8}, - [8038] = {.lex_state = 20, .external_lex_state = 8}, + [8038] = {.lex_state = 23, .external_lex_state = 8}, [8039] = {.lex_state = 20, .external_lex_state = 8}, - [8040] = {.lex_state = 20, .external_lex_state = 8}, + [8040] = {.lex_state = 23, .external_lex_state = 8}, [8041] = {.lex_state = 20, .external_lex_state = 8}, [8042] = {.lex_state = 20, .external_lex_state = 8}, [8043] = {.lex_state = 20, .external_lex_state = 8}, - [8044] = {.lex_state = 20, .external_lex_state = 8}, + [8044] = {.lex_state = 13, .external_lex_state = 8}, [8045] = {.lex_state = 20, .external_lex_state = 8}, [8046] = {.lex_state = 20, .external_lex_state = 8}, [8047] = {.lex_state = 20, .external_lex_state = 8}, @@ -31892,7 +31543,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8062] = {.lex_state = 20, .external_lex_state = 8}, [8063] = {.lex_state = 20, .external_lex_state = 8}, [8064] = {.lex_state = 20, .external_lex_state = 8}, - [8065] = {.lex_state = 25, .external_lex_state = 8}, + [8065] = {.lex_state = 20, .external_lex_state = 8}, [8066] = {.lex_state = 20, .external_lex_state = 8}, [8067] = {.lex_state = 20, .external_lex_state = 8}, [8068] = {.lex_state = 20, .external_lex_state = 8}, @@ -31907,36 +31558,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8077] = {.lex_state = 20, .external_lex_state = 8}, [8078] = {.lex_state = 20, .external_lex_state = 8}, [8079] = {.lex_state = 20, .external_lex_state = 8}, - [8080] = {.lex_state = 25, .external_lex_state = 8}, - [8081] = {.lex_state = 25, .external_lex_state = 8}, - [8082] = {.lex_state = 27, .external_lex_state = 8}, - [8083] = {.lex_state = 27, .external_lex_state = 8}, - [8084] = {.lex_state = 27, .external_lex_state = 8}, + [8080] = {.lex_state = 20, .external_lex_state = 8}, + [8081] = {.lex_state = 20, .external_lex_state = 8}, + [8082] = {.lex_state = 20, .external_lex_state = 8}, + [8083] = {.lex_state = 20, .external_lex_state = 8}, + [8084] = {.lex_state = 20, .external_lex_state = 8}, [8085] = {.lex_state = 20, .external_lex_state = 8}, - [8086] = {.lex_state = 27, .external_lex_state = 8}, - [8087] = {.lex_state = 25, .external_lex_state = 8}, - [8088] = {.lex_state = 25, .external_lex_state = 8}, - [8089] = {.lex_state = 25, .external_lex_state = 8}, - [8090] = {.lex_state = 27, .external_lex_state = 8}, - [8091] = {.lex_state = 25, .external_lex_state = 8}, + [8086] = {.lex_state = 20, .external_lex_state = 8}, + [8087] = {.lex_state = 20, .external_lex_state = 8}, + [8088] = {.lex_state = 20, .external_lex_state = 8}, + [8089] = {.lex_state = 20, .external_lex_state = 8}, + [8090] = {.lex_state = 20, .external_lex_state = 8}, + [8091] = {.lex_state = 20, .external_lex_state = 8}, [8092] = {.lex_state = 20, .external_lex_state = 8}, [8093] = {.lex_state = 20, .external_lex_state = 8}, - [8094] = {.lex_state = 25, .external_lex_state = 8}, - [8095] = {.lex_state = 25, .external_lex_state = 8}, + [8094] = {.lex_state = 20, .external_lex_state = 8}, + [8095] = {.lex_state = 20, .external_lex_state = 8}, [8096] = {.lex_state = 20, .external_lex_state = 8}, - [8097] = {.lex_state = 27, .external_lex_state = 8}, - [8098] = {.lex_state = 27, .external_lex_state = 8}, - [8099] = {.lex_state = 27, .external_lex_state = 8}, - [8100] = {.lex_state = 27, .external_lex_state = 8}, - [8101] = {.lex_state = 27, .external_lex_state = 8}, - [8102] = {.lex_state = 27, .external_lex_state = 8}, - [8103] = {.lex_state = 25, .external_lex_state = 8}, + [8097] = {.lex_state = 20, .external_lex_state = 8}, + [8098] = {.lex_state = 20, .external_lex_state = 8}, + [8099] = {.lex_state = 20, .external_lex_state = 8}, + [8100] = {.lex_state = 20, .external_lex_state = 8}, + [8101] = {.lex_state = 20, .external_lex_state = 8}, + [8102] = {.lex_state = 20, .external_lex_state = 8}, + [8103] = {.lex_state = 20, .external_lex_state = 8}, [8104] = {.lex_state = 20, .external_lex_state = 8}, [8105] = {.lex_state = 20, .external_lex_state = 8}, - [8106] = {.lex_state = 25, .external_lex_state = 8}, - [8107] = {.lex_state = 25, .external_lex_state = 8}, + [8106] = {.lex_state = 20, .external_lex_state = 8}, + [8107] = {.lex_state = 20, .external_lex_state = 8}, [8108] = {.lex_state = 20, .external_lex_state = 8}, - [8109] = {.lex_state = 20, .external_lex_state = 8}, + [8109] = {.lex_state = 13, .external_lex_state = 8}, [8110] = {.lex_state = 20, .external_lex_state = 8}, [8111] = {.lex_state = 20, .external_lex_state = 8}, [8112] = {.lex_state = 20, .external_lex_state = 8}, @@ -31952,7 +31603,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8122] = {.lex_state = 20, .external_lex_state = 8}, [8123] = {.lex_state = 20, .external_lex_state = 8}, [8124] = {.lex_state = 20, .external_lex_state = 8}, - [8125] = {.lex_state = 20, .external_lex_state = 8}, + [8125] = {.lex_state = 23, .external_lex_state = 8}, [8126] = {.lex_state = 20, .external_lex_state = 8}, [8127] = {.lex_state = 20, .external_lex_state = 8}, [8128] = {.lex_state = 20, .external_lex_state = 8}, @@ -31965,8 +31616,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8135] = {.lex_state = 20, .external_lex_state = 8}, [8136] = {.lex_state = 20, .external_lex_state = 8}, [8137] = {.lex_state = 20, .external_lex_state = 8}, - [8138] = {.lex_state = 20, .external_lex_state = 8}, - [8139] = {.lex_state = 20, .external_lex_state = 8}, + [8138] = {.lex_state = 23, .external_lex_state = 8}, + [8139] = {.lex_state = 13, .external_lex_state = 8}, [8140] = {.lex_state = 20, .external_lex_state = 8}, [8141] = {.lex_state = 20, .external_lex_state = 8}, [8142] = {.lex_state = 20, .external_lex_state = 8}, @@ -31982,13 +31633,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8152] = {.lex_state = 20, .external_lex_state = 8}, [8153] = {.lex_state = 20, .external_lex_state = 8}, [8154] = {.lex_state = 20, .external_lex_state = 8}, - [8155] = {.lex_state = 23, .external_lex_state = 9}, - [8156] = {.lex_state = 31, .external_lex_state = 8}, + [8155] = {.lex_state = 20, .external_lex_state = 8}, + [8156] = {.lex_state = 20, .external_lex_state = 8}, [8157] = {.lex_state = 20, .external_lex_state = 8}, [8158] = {.lex_state = 20, .external_lex_state = 8}, [8159] = {.lex_state = 20, .external_lex_state = 8}, [8160] = {.lex_state = 20, .external_lex_state = 8}, - [8161] = {.lex_state = 23, .external_lex_state = 8}, + [8161] = {.lex_state = 20, .external_lex_state = 8}, [8162] = {.lex_state = 20, .external_lex_state = 8}, [8163] = {.lex_state = 20, .external_lex_state = 8}, [8164] = {.lex_state = 20, .external_lex_state = 8}, @@ -32009,10 +31660,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8179] = {.lex_state = 20, .external_lex_state = 8}, [8180] = {.lex_state = 20, .external_lex_state = 8}, [8181] = {.lex_state = 20, .external_lex_state = 8}, - [8182] = {.lex_state = 23, .external_lex_state = 9}, + [8182] = {.lex_state = 20, .external_lex_state = 8}, [8183] = {.lex_state = 20, .external_lex_state = 8}, [8184] = {.lex_state = 20, .external_lex_state = 8}, - [8185] = {.lex_state = 20, .external_lex_state = 8}, + [8185] = {.lex_state = 23, .external_lex_state = 8}, [8186] = {.lex_state = 20, .external_lex_state = 8}, [8187] = {.lex_state = 20, .external_lex_state = 8}, [8188] = {.lex_state = 20, .external_lex_state = 8}, @@ -32043,7 +31694,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8213] = {.lex_state = 20, .external_lex_state = 8}, [8214] = {.lex_state = 20, .external_lex_state = 8}, [8215] = {.lex_state = 20, .external_lex_state = 8}, - [8216] = {.lex_state = 20, .external_lex_state = 8}, + [8216] = {.lex_state = 23, .external_lex_state = 8}, [8217] = {.lex_state = 20, .external_lex_state = 8}, [8218] = {.lex_state = 20, .external_lex_state = 8}, [8219] = {.lex_state = 20, .external_lex_state = 8}, @@ -32056,7 +31707,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8226] = {.lex_state = 20, .external_lex_state = 8}, [8227] = {.lex_state = 20, .external_lex_state = 8}, [8228] = {.lex_state = 20, .external_lex_state = 8}, - [8229] = {.lex_state = 23, .external_lex_state = 9}, + [8229] = {.lex_state = 20, .external_lex_state = 8}, [8230] = {.lex_state = 20, .external_lex_state = 8}, [8231] = {.lex_state = 20, .external_lex_state = 8}, [8232] = {.lex_state = 20, .external_lex_state = 8}, @@ -32076,7 +31727,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8246] = {.lex_state = 20, .external_lex_state = 8}, [8247] = {.lex_state = 20, .external_lex_state = 8}, [8248] = {.lex_state = 20, .external_lex_state = 8}, - [8249] = {.lex_state = 20, .external_lex_state = 8}, + [8249] = {.lex_state = 13, .external_lex_state = 8}, [8250] = {.lex_state = 20, .external_lex_state = 8}, [8251] = {.lex_state = 20, .external_lex_state = 8}, [8252] = {.lex_state = 20, .external_lex_state = 8}, @@ -32087,7 +31738,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8257] = {.lex_state = 20, .external_lex_state = 8}, [8258] = {.lex_state = 20, .external_lex_state = 8}, [8259] = {.lex_state = 20, .external_lex_state = 8}, - [8260] = {.lex_state = 20, .external_lex_state = 8}, + [8260] = {.lex_state = 23, .external_lex_state = 8}, [8261] = {.lex_state = 20, .external_lex_state = 8}, [8262] = {.lex_state = 20, .external_lex_state = 8}, [8263] = {.lex_state = 20, .external_lex_state = 8}, @@ -32097,605 +31748,605 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8267] = {.lex_state = 20, .external_lex_state = 8}, [8268] = {.lex_state = 20, .external_lex_state = 8}, [8269] = {.lex_state = 20, .external_lex_state = 8}, - [8270] = {.lex_state = 23, .external_lex_state = 8}, - [8271] = {.lex_state = 23, .external_lex_state = 8}, + [8270] = {.lex_state = 20, .external_lex_state = 8}, + [8271] = {.lex_state = 20, .external_lex_state = 8}, [8272] = {.lex_state = 20, .external_lex_state = 8}, [8273] = {.lex_state = 20, .external_lex_state = 8}, [8274] = {.lex_state = 20, .external_lex_state = 8}, [8275] = {.lex_state = 20, .external_lex_state = 8}, [8276] = {.lex_state = 20, .external_lex_state = 8}, [8277] = {.lex_state = 20, .external_lex_state = 8}, - [8278] = {.lex_state = 20, .external_lex_state = 8}, + [8278] = {.lex_state = 23, .external_lex_state = 8}, [8279] = {.lex_state = 20, .external_lex_state = 8}, [8280] = {.lex_state = 20, .external_lex_state = 8}, - [8281] = {.lex_state = 20, .external_lex_state = 8}, + [8281] = {.lex_state = 13, .external_lex_state = 8}, [8282] = {.lex_state = 20, .external_lex_state = 8}, [8283] = {.lex_state = 20, .external_lex_state = 8}, - [8284] = {.lex_state = 20, .external_lex_state = 8}, - [8285] = {.lex_state = 20, .external_lex_state = 8}, - [8286] = {.lex_state = 20, .external_lex_state = 8}, - [8287] = {.lex_state = 20, .external_lex_state = 8}, - [8288] = {.lex_state = 20, .external_lex_state = 8}, - [8289] = {.lex_state = 20, .external_lex_state = 8}, - [8290] = {.lex_state = 20, .external_lex_state = 8}, - [8291] = {.lex_state = 20, .external_lex_state = 8}, - [8292] = {.lex_state = 20, .external_lex_state = 8}, - [8293] = {.lex_state = 20, .external_lex_state = 8}, - [8294] = {.lex_state = 20, .external_lex_state = 8}, - [8295] = {.lex_state = 20, .external_lex_state = 8}, - [8296] = {.lex_state = 20, .external_lex_state = 8}, - [8297] = {.lex_state = 20, .external_lex_state = 8}, - [8298] = {.lex_state = 20, .external_lex_state = 8}, - [8299] = {.lex_state = 20, .external_lex_state = 8}, - [8300] = {.lex_state = 20, .external_lex_state = 8}, + [8284] = {.lex_state = 31, .external_lex_state = 8}, + [8285] = {.lex_state = 31, .external_lex_state = 8}, + [8286] = {.lex_state = 23, .external_lex_state = 8}, + [8287] = {.lex_state = 23, .external_lex_state = 8}, + [8288] = {.lex_state = 31, .external_lex_state = 8}, + [8289] = {.lex_state = 31, .external_lex_state = 8}, + [8290] = {.lex_state = 23, .external_lex_state = 8}, + [8291] = {.lex_state = 23, .external_lex_state = 8}, + [8292] = {.lex_state = 23, .external_lex_state = 8}, + [8293] = {.lex_state = 23, .external_lex_state = 8}, + [8294] = {.lex_state = 31, .external_lex_state = 8}, + [8295] = {.lex_state = 31, .external_lex_state = 8}, + [8296] = {.lex_state = 23, .external_lex_state = 8}, + [8297] = {.lex_state = 31, .external_lex_state = 8}, + [8298] = {.lex_state = 31, .external_lex_state = 8}, + [8299] = {.lex_state = 31, .external_lex_state = 8}, + [8300] = {.lex_state = 31, .external_lex_state = 8}, [8301] = {.lex_state = 20, .external_lex_state = 8}, - [8302] = {.lex_state = 20, .external_lex_state = 8}, - [8303] = {.lex_state = 20, .external_lex_state = 8}, - [8304] = {.lex_state = 20, .external_lex_state = 8}, - [8305] = {.lex_state = 20, .external_lex_state = 8}, - [8306] = {.lex_state = 20, .external_lex_state = 8}, - [8307] = {.lex_state = 20, .external_lex_state = 8}, - [8308] = {.lex_state = 20, .external_lex_state = 8}, - [8309] = {.lex_state = 20, .external_lex_state = 8}, - [8310] = {.lex_state = 20, .external_lex_state = 8}, - [8311] = {.lex_state = 20, .external_lex_state = 8}, - [8312] = {.lex_state = 20, .external_lex_state = 8}, - [8313] = {.lex_state = 20, .external_lex_state = 8}, - [8314] = {.lex_state = 20, .external_lex_state = 8}, - [8315] = {.lex_state = 20, .external_lex_state = 8}, - [8316] = {.lex_state = 20, .external_lex_state = 8}, - [8317] = {.lex_state = 20, .external_lex_state = 8}, - [8318] = {.lex_state = 20, .external_lex_state = 8}, - [8319] = {.lex_state = 20, .external_lex_state = 8}, - [8320] = {.lex_state = 20, .external_lex_state = 8}, - [8321] = {.lex_state = 20, .external_lex_state = 8}, - [8322] = {.lex_state = 20, .external_lex_state = 8}, - [8323] = {.lex_state = 20, .external_lex_state = 8}, - [8324] = {.lex_state = 20, .external_lex_state = 8}, - [8325] = {.lex_state = 20, .external_lex_state = 8}, - [8326] = {.lex_state = 20, .external_lex_state = 8}, - [8327] = {.lex_state = 20, .external_lex_state = 8}, - [8328] = {.lex_state = 20, .external_lex_state = 8}, - [8329] = {.lex_state = 20, .external_lex_state = 8}, - [8330] = {.lex_state = 20, .external_lex_state = 8}, - [8331] = {.lex_state = 20, .external_lex_state = 8}, - [8332] = {.lex_state = 20, .external_lex_state = 8}, - [8333] = {.lex_state = 20, .external_lex_state = 8}, - [8334] = {.lex_state = 20, .external_lex_state = 8}, - [8335] = {.lex_state = 20, .external_lex_state = 8}, - [8336] = {.lex_state = 20, .external_lex_state = 8}, - [8337] = {.lex_state = 20, .external_lex_state = 8}, - [8338] = {.lex_state = 20, .external_lex_state = 8}, - [8339] = {.lex_state = 20, .external_lex_state = 8}, - [8340] = {.lex_state = 20, .external_lex_state = 8}, - [8341] = {.lex_state = 20, .external_lex_state = 8}, - [8342] = {.lex_state = 20, .external_lex_state = 8}, - [8343] = {.lex_state = 20, .external_lex_state = 8}, - [8344] = {.lex_state = 20, .external_lex_state = 8}, - [8345] = {.lex_state = 20, .external_lex_state = 8}, - [8346] = {.lex_state = 20, .external_lex_state = 8}, - [8347] = {.lex_state = 20, .external_lex_state = 8}, - [8348] = {.lex_state = 20, .external_lex_state = 8}, - [8349] = {.lex_state = 20, .external_lex_state = 8}, - [8350] = {.lex_state = 20, .external_lex_state = 8}, - [8351] = {.lex_state = 20, .external_lex_state = 8}, - [8352] = {.lex_state = 20, .external_lex_state = 8}, - [8353] = {.lex_state = 20, .external_lex_state = 8}, - [8354] = {.lex_state = 20, .external_lex_state = 8}, - [8355] = {.lex_state = 20, .external_lex_state = 8}, - [8356] = {.lex_state = 20, .external_lex_state = 8}, - [8357] = {.lex_state = 20, .external_lex_state = 8}, - [8358] = {.lex_state = 20, .external_lex_state = 8}, - [8359] = {.lex_state = 20, .external_lex_state = 8}, - [8360] = {.lex_state = 20, .external_lex_state = 8}, - [8361] = {.lex_state = 20, .external_lex_state = 8}, - [8362] = {.lex_state = 20, .external_lex_state = 8}, - [8363] = {.lex_state = 20, .external_lex_state = 8}, - [8364] = {.lex_state = 20, .external_lex_state = 8}, - [8365] = {.lex_state = 13, .external_lex_state = 8}, - [8366] = {.lex_state = 20, .external_lex_state = 8}, - [8367] = {.lex_state = 20, .external_lex_state = 8}, - [8368] = {.lex_state = 20, .external_lex_state = 8}, - [8369] = {.lex_state = 20, .external_lex_state = 8}, - [8370] = {.lex_state = 20, .external_lex_state = 8}, - [8371] = {.lex_state = 20, .external_lex_state = 8}, - [8372] = {.lex_state = 20, .external_lex_state = 8}, - [8373] = {.lex_state = 20, .external_lex_state = 8}, - [8374] = {.lex_state = 20, .external_lex_state = 8}, - [8375] = {.lex_state = 20, .external_lex_state = 8}, - [8376] = {.lex_state = 20, .external_lex_state = 8}, - [8377] = {.lex_state = 20, .external_lex_state = 8}, - [8378] = {.lex_state = 20, .external_lex_state = 8}, - [8379] = {.lex_state = 20, .external_lex_state = 8}, - [8380] = {.lex_state = 13, .external_lex_state = 8}, - [8381] = {.lex_state = 20, .external_lex_state = 8}, - [8382] = {.lex_state = 20, .external_lex_state = 8}, - [8383] = {.lex_state = 20, .external_lex_state = 8}, - [8384] = {.lex_state = 20, .external_lex_state = 8}, - [8385] = {.lex_state = 20, .external_lex_state = 8}, - [8386] = {.lex_state = 20, .external_lex_state = 8}, - [8387] = {.lex_state = 20, .external_lex_state = 8}, - [8388] = {.lex_state = 20, .external_lex_state = 8}, - [8389] = {.lex_state = 20, .external_lex_state = 8}, - [8390] = {.lex_state = 20, .external_lex_state = 8}, - [8391] = {.lex_state = 20, .external_lex_state = 8}, - [8392] = {.lex_state = 20, .external_lex_state = 8}, - [8393] = {.lex_state = 20, .external_lex_state = 8}, - [8394] = {.lex_state = 20, .external_lex_state = 8}, - [8395] = {.lex_state = 20, .external_lex_state = 8}, - [8396] = {.lex_state = 20, .external_lex_state = 8}, - [8397] = {.lex_state = 20, .external_lex_state = 8}, - [8398] = {.lex_state = 20, .external_lex_state = 8}, - [8399] = {.lex_state = 20, .external_lex_state = 8}, - [8400] = {.lex_state = 20, .external_lex_state = 8}, - [8401] = {.lex_state = 20, .external_lex_state = 8}, - [8402] = {.lex_state = 20, .external_lex_state = 8}, - [8403] = {.lex_state = 20, .external_lex_state = 8}, - [8404] = {.lex_state = 20, .external_lex_state = 8}, - [8405] = {.lex_state = 20, .external_lex_state = 8}, - [8406] = {.lex_state = 20, .external_lex_state = 8}, - [8407] = {.lex_state = 20, .external_lex_state = 8}, - [8408] = {.lex_state = 20, .external_lex_state = 8}, - [8409] = {.lex_state = 20, .external_lex_state = 8}, - [8410] = {.lex_state = 20, .external_lex_state = 8}, - [8411] = {.lex_state = 20, .external_lex_state = 8}, - [8412] = {.lex_state = 20, .external_lex_state = 8}, - [8413] = {.lex_state = 20, .external_lex_state = 8}, - [8414] = {.lex_state = 20, .external_lex_state = 8}, - [8415] = {.lex_state = 20, .external_lex_state = 8}, - [8416] = {.lex_state = 20, .external_lex_state = 8}, - [8417] = {.lex_state = 20, .external_lex_state = 8}, - [8418] = {.lex_state = 20, .external_lex_state = 8}, - [8419] = {.lex_state = 20, .external_lex_state = 8}, - [8420] = {.lex_state = 20, .external_lex_state = 8}, - [8421] = {.lex_state = 20, .external_lex_state = 8}, - [8422] = {.lex_state = 20, .external_lex_state = 8}, - [8423] = {.lex_state = 20, .external_lex_state = 8}, - [8424] = {.lex_state = 20, .external_lex_state = 8}, - [8425] = {.lex_state = 20, .external_lex_state = 8}, - [8426] = {.lex_state = 20, .external_lex_state = 8}, - [8427] = {.lex_state = 20, .external_lex_state = 8}, - [8428] = {.lex_state = 20, .external_lex_state = 8}, - [8429] = {.lex_state = 20, .external_lex_state = 8}, - [8430] = {.lex_state = 20, .external_lex_state = 8}, - [8431] = {.lex_state = 20, .external_lex_state = 8}, - [8432] = {.lex_state = 20, .external_lex_state = 8}, - [8433] = {.lex_state = 20, .external_lex_state = 8}, - [8434] = {.lex_state = 20, .external_lex_state = 8}, - [8435] = {.lex_state = 20, .external_lex_state = 8}, - [8436] = {.lex_state = 20, .external_lex_state = 8}, - [8437] = {.lex_state = 20, .external_lex_state = 8}, - [8438] = {.lex_state = 20, .external_lex_state = 8}, - [8439] = {.lex_state = 20, .external_lex_state = 8}, - [8440] = {.lex_state = 20, .external_lex_state = 8}, - [8441] = {.lex_state = 20, .external_lex_state = 8}, - [8442] = {.lex_state = 23, .external_lex_state = 8}, - [8443] = {.lex_state = 20, .external_lex_state = 8}, - [8444] = {.lex_state = 13, .external_lex_state = 8}, - [8445] = {.lex_state = 20, .external_lex_state = 8}, - [8446] = {.lex_state = 20, .external_lex_state = 8}, - [8447] = {.lex_state = 20, .external_lex_state = 8}, - [8448] = {.lex_state = 20, .external_lex_state = 8}, - [8449] = {.lex_state = 20, .external_lex_state = 8}, - [8450] = {.lex_state = 20, .external_lex_state = 8}, - [8451] = {.lex_state = 20, .external_lex_state = 8}, - [8452] = {.lex_state = 20, .external_lex_state = 8}, - [8453] = {.lex_state = 20, .external_lex_state = 8}, - [8454] = {.lex_state = 20, .external_lex_state = 8}, - [8455] = {.lex_state = 20, .external_lex_state = 8}, - [8456] = {.lex_state = 20, .external_lex_state = 8}, - [8457] = {.lex_state = 20, .external_lex_state = 8}, - [8458] = {.lex_state = 20, .external_lex_state = 8}, - [8459] = {.lex_state = 20, .external_lex_state = 8}, - [8460] = {.lex_state = 20, .external_lex_state = 8}, - [8461] = {.lex_state = 20, .external_lex_state = 8}, - [8462] = {.lex_state = 20, .external_lex_state = 8}, - [8463] = {.lex_state = 20, .external_lex_state = 8}, - [8464] = {.lex_state = 20, .external_lex_state = 8}, - [8465] = {.lex_state = 20, .external_lex_state = 8}, - [8466] = {.lex_state = 20, .external_lex_state = 8}, - [8467] = {.lex_state = 20, .external_lex_state = 8}, - [8468] = {.lex_state = 20, .external_lex_state = 8}, - [8469] = {.lex_state = 20, .external_lex_state = 8}, - [8470] = {.lex_state = 20, .external_lex_state = 8}, - [8471] = {.lex_state = 20, .external_lex_state = 8}, - [8472] = {.lex_state = 20, .external_lex_state = 8}, - [8473] = {.lex_state = 20, .external_lex_state = 8}, - [8474] = {.lex_state = 20, .external_lex_state = 8}, - [8475] = {.lex_state = 20, .external_lex_state = 8}, - [8476] = {.lex_state = 20, .external_lex_state = 8}, - [8477] = {.lex_state = 20, .external_lex_state = 8}, - [8478] = {.lex_state = 23, .external_lex_state = 8}, - [8479] = {.lex_state = 20, .external_lex_state = 8}, - [8480] = {.lex_state = 20, .external_lex_state = 8}, - [8481] = {.lex_state = 20, .external_lex_state = 8}, - [8482] = {.lex_state = 20, .external_lex_state = 8}, - [8483] = {.lex_state = 13, .external_lex_state = 8}, - [8484] = {.lex_state = 20, .external_lex_state = 8}, - [8485] = {.lex_state = 20, .external_lex_state = 8}, - [8486] = {.lex_state = 20, .external_lex_state = 8}, - [8487] = {.lex_state = 20, .external_lex_state = 8}, - [8488] = {.lex_state = 20, .external_lex_state = 8}, - [8489] = {.lex_state = 20, .external_lex_state = 8}, - [8490] = {.lex_state = 20, .external_lex_state = 8}, - [8491] = {.lex_state = 20, .external_lex_state = 8}, - [8492] = {.lex_state = 20, .external_lex_state = 8}, - [8493] = {.lex_state = 23, .external_lex_state = 8}, - [8494] = {.lex_state = 20, .external_lex_state = 8}, - [8495] = {.lex_state = 20, .external_lex_state = 8}, - [8496] = {.lex_state = 13, .external_lex_state = 8}, - [8497] = {.lex_state = 20, .external_lex_state = 8}, - [8498] = {.lex_state = 23, .external_lex_state = 8}, - [8499] = {.lex_state = 20, .external_lex_state = 8}, - [8500] = {.lex_state = 20, .external_lex_state = 8}, - [8501] = {.lex_state = 20, .external_lex_state = 8}, - [8502] = {.lex_state = 20, .external_lex_state = 8}, - [8503] = {.lex_state = 20, .external_lex_state = 8}, - [8504] = {.lex_state = 20, .external_lex_state = 8}, - [8505] = {.lex_state = 20, .external_lex_state = 8}, - [8506] = {.lex_state = 20, .external_lex_state = 8}, - [8507] = {.lex_state = 20, .external_lex_state = 8}, - [8508] = {.lex_state = 20, .external_lex_state = 8}, - [8509] = {.lex_state = 20, .external_lex_state = 8}, - [8510] = {.lex_state = 20, .external_lex_state = 8}, - [8511] = {.lex_state = 20, .external_lex_state = 8}, - [8512] = {.lex_state = 20, .external_lex_state = 8}, - [8513] = {.lex_state = 20, .external_lex_state = 8}, - [8514] = {.lex_state = 20, .external_lex_state = 8}, - [8515] = {.lex_state = 20, .external_lex_state = 8}, - [8516] = {.lex_state = 20, .external_lex_state = 8}, - [8517] = {.lex_state = 20, .external_lex_state = 8}, - [8518] = {.lex_state = 20, .external_lex_state = 8}, - [8519] = {.lex_state = 20, .external_lex_state = 8}, - [8520] = {.lex_state = 20, .external_lex_state = 8}, - [8521] = {.lex_state = 20, .external_lex_state = 8}, - [8522] = {.lex_state = 20, .external_lex_state = 8}, - [8523] = {.lex_state = 20, .external_lex_state = 8}, - [8524] = {.lex_state = 20, .external_lex_state = 8}, - [8525] = {.lex_state = 20, .external_lex_state = 8}, - [8526] = {.lex_state = 20, .external_lex_state = 8}, - [8527] = {.lex_state = 20, .external_lex_state = 8}, - [8528] = {.lex_state = 20, .external_lex_state = 8}, - [8529] = {.lex_state = 20, .external_lex_state = 8}, - [8530] = {.lex_state = 20, .external_lex_state = 8}, - [8531] = {.lex_state = 20, .external_lex_state = 8}, - [8532] = {.lex_state = 13, .external_lex_state = 8}, + [8302] = {.lex_state = 31, .external_lex_state = 8}, + [8303] = {.lex_state = 31, .external_lex_state = 8}, + [8304] = {.lex_state = 31, .external_lex_state = 8}, + [8305] = {.lex_state = 31, .external_lex_state = 8}, + [8306] = {.lex_state = 23, .external_lex_state = 8}, + [8307] = {.lex_state = 31, .external_lex_state = 8}, + [8308] = {.lex_state = 31, .external_lex_state = 8}, + [8309] = {.lex_state = 31, .external_lex_state = 8}, + [8310] = {.lex_state = 31, .external_lex_state = 8}, + [8311] = {.lex_state = 31, .external_lex_state = 8}, + [8312] = {.lex_state = 31, .external_lex_state = 8}, + [8313] = {.lex_state = 31, .external_lex_state = 8}, + [8314] = {.lex_state = 23, .external_lex_state = 9}, + [8315] = {.lex_state = 31, .external_lex_state = 8}, + [8316] = {.lex_state = 31, .external_lex_state = 8}, + [8317] = {.lex_state = 31, .external_lex_state = 8}, + [8318] = {.lex_state = 23, .external_lex_state = 8}, + [8319] = {.lex_state = 31, .external_lex_state = 8}, + [8320] = {.lex_state = 31, .external_lex_state = 8}, + [8321] = {.lex_state = 31, .external_lex_state = 8}, + [8322] = {.lex_state = 23, .external_lex_state = 9}, + [8323] = {.lex_state = 23, .external_lex_state = 8}, + [8324] = {.lex_state = 23, .external_lex_state = 9}, + [8325] = {.lex_state = 23, .external_lex_state = 8}, + [8326] = {.lex_state = 23, .external_lex_state = 9}, + [8327] = {.lex_state = 23, .external_lex_state = 9}, + [8328] = {.lex_state = 23, .external_lex_state = 9}, + [8329] = {.lex_state = 23, .external_lex_state = 9}, + [8330] = {.lex_state = 23, .external_lex_state = 9}, + [8331] = {.lex_state = 23, .external_lex_state = 8}, + [8332] = {.lex_state = 23, .external_lex_state = 8}, + [8333] = {.lex_state = 23, .external_lex_state = 8}, + [8334] = {.lex_state = 23, .external_lex_state = 9}, + [8335] = {.lex_state = 23, .external_lex_state = 9}, + [8336] = {.lex_state = 13, .external_lex_state = 8}, + [8337] = {.lex_state = 23, .external_lex_state = 9}, + [8338] = {.lex_state = 23, .external_lex_state = 8}, + [8339] = {.lex_state = 23, .external_lex_state = 8}, + [8340] = {.lex_state = 13, .external_lex_state = 8}, + [8341] = {.lex_state = 23, .external_lex_state = 8}, + [8342] = {.lex_state = 13, .external_lex_state = 8}, + [8343] = {.lex_state = 318, .external_lex_state = 8}, + [8344] = {.lex_state = 23, .external_lex_state = 8}, + [8345] = {.lex_state = 23, .external_lex_state = 9}, + [8346] = {.lex_state = 23, .external_lex_state = 8}, + [8347] = {.lex_state = 23, .external_lex_state = 8}, + [8348] = {.lex_state = 318, .external_lex_state = 8}, + [8349] = {.lex_state = 23, .external_lex_state = 8}, + [8350] = {.lex_state = 13, .external_lex_state = 8}, + [8351] = {.lex_state = 13, .external_lex_state = 8}, + [8352] = {.lex_state = 13, .external_lex_state = 8}, + [8353] = {.lex_state = 23, .external_lex_state = 8}, + [8354] = {.lex_state = 23, .external_lex_state = 8}, + [8355] = {.lex_state = 23, .external_lex_state = 9}, + [8356] = {.lex_state = 23, .external_lex_state = 9}, + [8357] = {.lex_state = 23, .external_lex_state = 9}, + [8358] = {.lex_state = 0, .external_lex_state = 8}, + [8359] = {.lex_state = 0, .external_lex_state = 8}, + [8360] = {.lex_state = 13, .external_lex_state = 8}, + [8361] = {.lex_state = 0, .external_lex_state = 8}, + [8362] = {.lex_state = 0, .external_lex_state = 8}, + [8363] = {.lex_state = 0, .external_lex_state = 8}, + [8364] = {.lex_state = 0, .external_lex_state = 8}, + [8365] = {.lex_state = 0, .external_lex_state = 8}, + [8366] = {.lex_state = 0, .external_lex_state = 8}, + [8367] = {.lex_state = 23, .external_lex_state = 9}, + [8368] = {.lex_state = 23, .external_lex_state = 8}, + [8369] = {.lex_state = 23, .external_lex_state = 8}, + [8370] = {.lex_state = 0, .external_lex_state = 8}, + [8371] = {.lex_state = 0, .external_lex_state = 8}, + [8372] = {.lex_state = 0, .external_lex_state = 8}, + [8373] = {.lex_state = 23, .external_lex_state = 8}, + [8374] = {.lex_state = 0, .external_lex_state = 8}, + [8375] = {.lex_state = 23, .external_lex_state = 8}, + [8376] = {.lex_state = 23, .external_lex_state = 9}, + [8377] = {.lex_state = 0, .external_lex_state = 8}, + [8378] = {.lex_state = 0, .external_lex_state = 8}, + [8379] = {.lex_state = 0, .external_lex_state = 8}, + [8380] = {.lex_state = 23, .external_lex_state = 8}, + [8381] = {.lex_state = 23, .external_lex_state = 8}, + [8382] = {.lex_state = 23, .external_lex_state = 9}, + [8383] = {.lex_state = 23, .external_lex_state = 9}, + [8384] = {.lex_state = 0, .external_lex_state = 8}, + [8385] = {.lex_state = 23, .external_lex_state = 8}, + [8386] = {.lex_state = 0, .external_lex_state = 8}, + [8387] = {.lex_state = 0, .external_lex_state = 8}, + [8388] = {.lex_state = 0, .external_lex_state = 8}, + [8389] = {.lex_state = 23, .external_lex_state = 9}, + [8390] = {.lex_state = 0, .external_lex_state = 8}, + [8391] = {.lex_state = 0, .external_lex_state = 8}, + [8392] = {.lex_state = 0, .external_lex_state = 8}, + [8393] = {.lex_state = 23, .external_lex_state = 9}, + [8394] = {.lex_state = 23, .external_lex_state = 8}, + [8395] = {.lex_state = 0, .external_lex_state = 8}, + [8396] = {.lex_state = 23, .external_lex_state = 8}, + [8397] = {.lex_state = 23, .external_lex_state = 8}, + [8398] = {.lex_state = 0, .external_lex_state = 8}, + [8399] = {.lex_state = 23, .external_lex_state = 9}, + [8400] = {.lex_state = 0, .external_lex_state = 8}, + [8401] = {.lex_state = 0, .external_lex_state = 8}, + [8402] = {.lex_state = 23, .external_lex_state = 8}, + [8403] = {.lex_state = 23, .external_lex_state = 8}, + [8404] = {.lex_state = 0, .external_lex_state = 10}, + [8405] = {.lex_state = 0, .external_lex_state = 9}, + [8406] = {.lex_state = 23, .external_lex_state = 8}, + [8407] = {.lex_state = 23, .external_lex_state = 8}, + [8408] = {.lex_state = 23, .external_lex_state = 9}, + [8409] = {.lex_state = 23, .external_lex_state = 9}, + [8410] = {.lex_state = 0, .external_lex_state = 10}, + [8411] = {.lex_state = 0, .external_lex_state = 8}, + [8412] = {.lex_state = 23, .external_lex_state = 9}, + [8413] = {.lex_state = 0, .external_lex_state = 9}, + [8414] = {.lex_state = 0, .external_lex_state = 10}, + [8415] = {.lex_state = 23, .external_lex_state = 8}, + [8416] = {.lex_state = 23, .external_lex_state = 9}, + [8417] = {.lex_state = 23, .external_lex_state = 9}, + [8418] = {.lex_state = 23, .external_lex_state = 9}, + [8419] = {.lex_state = 0, .external_lex_state = 10}, + [8420] = {.lex_state = 23, .external_lex_state = 8}, + [8421] = {.lex_state = 23, .external_lex_state = 9}, + [8422] = {.lex_state = 23, .external_lex_state = 9}, + [8423] = {.lex_state = 0, .external_lex_state = 10}, + [8424] = {.lex_state = 0, .external_lex_state = 10}, + [8425] = {.lex_state = 23, .external_lex_state = 9}, + [8426] = {.lex_state = 0, .external_lex_state = 9}, + [8427] = {.lex_state = 0, .external_lex_state = 9}, + [8428] = {.lex_state = 23, .external_lex_state = 9}, + [8429] = {.lex_state = 23, .external_lex_state = 8}, + [8430] = {.lex_state = 0, .external_lex_state = 10}, + [8431] = {.lex_state = 0, .external_lex_state = 9}, + [8432] = {.lex_state = 23, .external_lex_state = 9}, + [8433] = {.lex_state = 23, .external_lex_state = 8}, + [8434] = {.lex_state = 0, .external_lex_state = 10}, + [8435] = {.lex_state = 23, .external_lex_state = 9}, + [8436] = {.lex_state = 0, .external_lex_state = 9}, + [8437] = {.lex_state = 23, .external_lex_state = 8}, + [8438] = {.lex_state = 0, .external_lex_state = 9}, + [8439] = {.lex_state = 23, .external_lex_state = 9}, + [8440] = {.lex_state = 23, .external_lex_state = 9}, + [8441] = {.lex_state = 0, .external_lex_state = 10}, + [8442] = {.lex_state = 0, .external_lex_state = 10}, + [8443] = {.lex_state = 23, .external_lex_state = 9}, + [8444] = {.lex_state = 0, .external_lex_state = 10}, + [8445] = {.lex_state = 23, .external_lex_state = 9}, + [8446] = {.lex_state = 0, .external_lex_state = 10}, + [8447] = {.lex_state = 0, .external_lex_state = 9}, + [8448] = {.lex_state = 23, .external_lex_state = 8}, + [8449] = {.lex_state = 23, .external_lex_state = 8}, + [8450] = {.lex_state = 0, .external_lex_state = 9}, + [8451] = {.lex_state = 23, .external_lex_state = 9}, + [8452] = {.lex_state = 23, .external_lex_state = 8}, + [8453] = {.lex_state = 0, .external_lex_state = 9}, + [8454] = {.lex_state = 0, .external_lex_state = 10}, + [8455] = {.lex_state = 23, .external_lex_state = 9}, + [8456] = {.lex_state = 23, .external_lex_state = 9}, + [8457] = {.lex_state = 23, .external_lex_state = 9}, + [8458] = {.lex_state = 0, .external_lex_state = 8}, + [8459] = {.lex_state = 0, .external_lex_state = 8}, + [8460] = {.lex_state = 0, .external_lex_state = 8}, + [8461] = {.lex_state = 0, .external_lex_state = 8}, + [8462] = {.lex_state = 0, .external_lex_state = 8}, + [8463] = {.lex_state = 0, .external_lex_state = 8}, + [8464] = {.lex_state = 0, .external_lex_state = 8}, + [8465] = {.lex_state = 0, .external_lex_state = 8}, + [8466] = {.lex_state = 0, .external_lex_state = 8}, + [8467] = {.lex_state = 0, .external_lex_state = 8}, + [8468] = {.lex_state = 0, .external_lex_state = 8}, + [8469] = {.lex_state = 23, .external_lex_state = 9}, + [8470] = {.lex_state = 23, .external_lex_state = 9}, + [8471] = {.lex_state = 32, .external_lex_state = 8}, + [8472] = {.lex_state = 0, .external_lex_state = 8}, + [8473] = {.lex_state = 23, .external_lex_state = 9}, + [8474] = {.lex_state = 0, .external_lex_state = 8}, + [8475] = {.lex_state = 0, .external_lex_state = 8}, + [8476] = {.lex_state = 0, .external_lex_state = 8}, + [8477] = {.lex_state = 0, .external_lex_state = 8}, + [8478] = {.lex_state = 23, .external_lex_state = 9}, + [8479] = {.lex_state = 23, .external_lex_state = 9}, + [8480] = {.lex_state = 0, .external_lex_state = 8}, + [8481] = {.lex_state = 0, .external_lex_state = 8}, + [8482] = {.lex_state = 0, .external_lex_state = 8}, + [8483] = {.lex_state = 0, .external_lex_state = 8}, + [8484] = {.lex_state = 23, .external_lex_state = 8}, + [8485] = {.lex_state = 0, .external_lex_state = 8}, + [8486] = {.lex_state = 23, .external_lex_state = 9}, + [8487] = {.lex_state = 0, .external_lex_state = 8}, + [8488] = {.lex_state = 0, .external_lex_state = 8}, + [8489] = {.lex_state = 0, .external_lex_state = 8}, + [8490] = {.lex_state = 0, .external_lex_state = 8}, + [8491] = {.lex_state = 0, .external_lex_state = 8}, + [8492] = {.lex_state = 0, .external_lex_state = 8}, + [8493] = {.lex_state = 0, .external_lex_state = 8}, + [8494] = {.lex_state = 0, .external_lex_state = 8}, + [8495] = {.lex_state = 0, .external_lex_state = 8}, + [8496] = {.lex_state = 0, .external_lex_state = 8}, + [8497] = {.lex_state = 23, .external_lex_state = 9}, + [8498] = {.lex_state = 23, .external_lex_state = 9}, + [8499] = {.lex_state = 0, .external_lex_state = 8}, + [8500] = {.lex_state = 0, .external_lex_state = 8}, + [8501] = {.lex_state = 0, .external_lex_state = 8}, + [8502] = {.lex_state = 0, .external_lex_state = 8}, + [8503] = {.lex_state = 0, .external_lex_state = 8}, + [8504] = {.lex_state = 0, .external_lex_state = 8}, + [8505] = {.lex_state = 0, .external_lex_state = 8}, + [8506] = {.lex_state = 0, .external_lex_state = 8}, + [8507] = {.lex_state = 23, .external_lex_state = 8}, + [8508] = {.lex_state = 0, .external_lex_state = 8}, + [8509] = {.lex_state = 0, .external_lex_state = 8}, + [8510] = {.lex_state = 23, .external_lex_state = 8}, + [8511] = {.lex_state = 0, .external_lex_state = 8}, + [8512] = {.lex_state = 0, .external_lex_state = 8}, + [8513] = {.lex_state = 0, .external_lex_state = 8}, + [8514] = {.lex_state = 0, .external_lex_state = 8}, + [8515] = {.lex_state = 0, .external_lex_state = 8}, + [8516] = {.lex_state = 23, .external_lex_state = 9}, + [8517] = {.lex_state = 23, .external_lex_state = 9}, + [8518] = {.lex_state = 0, .external_lex_state = 8}, + [8519] = {.lex_state = 23, .external_lex_state = 8}, + [8520] = {.lex_state = 0, .external_lex_state = 8}, + [8521] = {.lex_state = 0, .external_lex_state = 8}, + [8522] = {.lex_state = 0, .external_lex_state = 8}, + [8523] = {.lex_state = 0, .external_lex_state = 8}, + [8524] = {.lex_state = 0, .external_lex_state = 8}, + [8525] = {.lex_state = 23, .external_lex_state = 9}, + [8526] = {.lex_state = 0, .external_lex_state = 8}, + [8527] = {.lex_state = 0, .external_lex_state = 8}, + [8528] = {.lex_state = 0, .external_lex_state = 8}, + [8529] = {.lex_state = 23, .external_lex_state = 8}, + [8530] = {.lex_state = 0, .external_lex_state = 8}, + [8531] = {.lex_state = 0, .external_lex_state = 8}, + [8532] = {.lex_state = 0, .external_lex_state = 8}, [8533] = {.lex_state = 23, .external_lex_state = 8}, - [8534] = {.lex_state = 20, .external_lex_state = 8}, - [8535] = {.lex_state = 20, .external_lex_state = 8}, - [8536] = {.lex_state = 20, .external_lex_state = 8}, - [8537] = {.lex_state = 20, .external_lex_state = 8}, - [8538] = {.lex_state = 20, .external_lex_state = 8}, - [8539] = {.lex_state = 23, .external_lex_state = 8}, - [8540] = {.lex_state = 20, .external_lex_state = 8}, - [8541] = {.lex_state = 20, .external_lex_state = 8}, - [8542] = {.lex_state = 20, .external_lex_state = 8}, - [8543] = {.lex_state = 20, .external_lex_state = 8}, - [8544] = {.lex_state = 20, .external_lex_state = 8}, - [8545] = {.lex_state = 20, .external_lex_state = 8}, - [8546] = {.lex_state = 20, .external_lex_state = 8}, - [8547] = {.lex_state = 20, .external_lex_state = 8}, - [8548] = {.lex_state = 20, .external_lex_state = 8}, - [8549] = {.lex_state = 20, .external_lex_state = 8}, - [8550] = {.lex_state = 20, .external_lex_state = 8}, - [8551] = {.lex_state = 20, .external_lex_state = 8}, - [8552] = {.lex_state = 31, .external_lex_state = 8}, - [8553] = {.lex_state = 31, .external_lex_state = 8}, - [8554] = {.lex_state = 31, .external_lex_state = 8}, - [8555] = {.lex_state = 23, .external_lex_state = 8}, - [8556] = {.lex_state = 31, .external_lex_state = 8}, - [8557] = {.lex_state = 31, .external_lex_state = 8}, - [8558] = {.lex_state = 31, .external_lex_state = 8}, + [8534] = {.lex_state = 23, .external_lex_state = 8}, + [8535] = {.lex_state = 0, .external_lex_state = 8}, + [8536] = {.lex_state = 23, .external_lex_state = 8}, + [8537] = {.lex_state = 0, .external_lex_state = 8}, + [8538] = {.lex_state = 0, .external_lex_state = 8}, + [8539] = {.lex_state = 0, .external_lex_state = 8}, + [8540] = {.lex_state = 0, .external_lex_state = 8}, + [8541] = {.lex_state = 0, .external_lex_state = 8}, + [8542] = {.lex_state = 23, .external_lex_state = 8}, + [8543] = {.lex_state = 0, .external_lex_state = 8}, + [8544] = {.lex_state = 0, .external_lex_state = 8}, + [8545] = {.lex_state = 0, .external_lex_state = 8}, + [8546] = {.lex_state = 0, .external_lex_state = 8}, + [8547] = {.lex_state = 0, .external_lex_state = 8}, + [8548] = {.lex_state = 0, .external_lex_state = 9}, + [8549] = {.lex_state = 23, .external_lex_state = 8}, + [8550] = {.lex_state = 23, .external_lex_state = 8}, + [8551] = {.lex_state = 23, .external_lex_state = 8}, + [8552] = {.lex_state = 23, .external_lex_state = 8}, + [8553] = {.lex_state = 23, .external_lex_state = 8}, + [8554] = {.lex_state = 0, .external_lex_state = 8}, + [8555] = {.lex_state = 23, .external_lex_state = 9}, + [8556] = {.lex_state = 0, .external_lex_state = 8}, + [8557] = {.lex_state = 0, .external_lex_state = 8}, + [8558] = {.lex_state = 0, .external_lex_state = 8}, [8559] = {.lex_state = 23, .external_lex_state = 8}, - [8560] = {.lex_state = 31, .external_lex_state = 8}, - [8561] = {.lex_state = 20, .external_lex_state = 8}, - [8562] = {.lex_state = 31, .external_lex_state = 8}, - [8563] = {.lex_state = 31, .external_lex_state = 8}, - [8564] = {.lex_state = 31, .external_lex_state = 8}, - [8565] = {.lex_state = 31, .external_lex_state = 8}, - [8566] = {.lex_state = 31, .external_lex_state = 8}, - [8567] = {.lex_state = 31, .external_lex_state = 8}, - [8568] = {.lex_state = 31, .external_lex_state = 8}, - [8569] = {.lex_state = 31, .external_lex_state = 8}, - [8570] = {.lex_state = 31, .external_lex_state = 8}, - [8571] = {.lex_state = 23, .external_lex_state = 8}, - [8572] = {.lex_state = 31, .external_lex_state = 8}, - [8573] = {.lex_state = 23, .external_lex_state = 8}, - [8574] = {.lex_state = 23, .external_lex_state = 8}, - [8575] = {.lex_state = 31, .external_lex_state = 8}, - [8576] = {.lex_state = 31, .external_lex_state = 8}, - [8577] = {.lex_state = 31, .external_lex_state = 8}, - [8578] = {.lex_state = 31, .external_lex_state = 8}, - [8579] = {.lex_state = 31, .external_lex_state = 8}, - [8580] = {.lex_state = 31, .external_lex_state = 8}, - [8581] = {.lex_state = 23, .external_lex_state = 8}, - [8582] = {.lex_state = 31, .external_lex_state = 8}, - [8583] = {.lex_state = 23, .external_lex_state = 8}, - [8584] = {.lex_state = 23, .external_lex_state = 8}, - [8585] = {.lex_state = 31, .external_lex_state = 8}, - [8586] = {.lex_state = 23, .external_lex_state = 8}, - [8587] = {.lex_state = 23, .external_lex_state = 9}, - [8588] = {.lex_state = 31, .external_lex_state = 8}, - [8589] = {.lex_state = 31, .external_lex_state = 8}, - [8590] = {.lex_state = 23, .external_lex_state = 9}, + [8560] = {.lex_state = 0, .external_lex_state = 8}, + [8561] = {.lex_state = 0, .external_lex_state = 8}, + [8562] = {.lex_state = 23, .external_lex_state = 8}, + [8563] = {.lex_state = 23, .external_lex_state = 9}, + [8564] = {.lex_state = 0, .external_lex_state = 8}, + [8565] = {.lex_state = 0, .external_lex_state = 8}, + [8566] = {.lex_state = 0, .external_lex_state = 8}, + [8567] = {.lex_state = 23, .external_lex_state = 8}, + [8568] = {.lex_state = 0, .external_lex_state = 8}, + [8569] = {.lex_state = 0, .external_lex_state = 8}, + [8570] = {.lex_state = 0, .external_lex_state = 8}, + [8571] = {.lex_state = 23, .external_lex_state = 9}, + [8572] = {.lex_state = 23, .external_lex_state = 8}, + [8573] = {.lex_state = 0, .external_lex_state = 8}, + [8574] = {.lex_state = 32, .external_lex_state = 8}, + [8575] = {.lex_state = 0, .external_lex_state = 8}, + [8576] = {.lex_state = 0, .external_lex_state = 8}, + [8577] = {.lex_state = 0, .external_lex_state = 8}, + [8578] = {.lex_state = 0, .external_lex_state = 8}, + [8579] = {.lex_state = 0, .external_lex_state = 8}, + [8580] = {.lex_state = 23, .external_lex_state = 8}, + [8581] = {.lex_state = 0, .external_lex_state = 8}, + [8582] = {.lex_state = 0, .external_lex_state = 8}, + [8583] = {.lex_state = 32, .external_lex_state = 8}, + [8584] = {.lex_state = 32, .external_lex_state = 8}, + [8585] = {.lex_state = 23, .external_lex_state = 8}, + [8586] = {.lex_state = 0, .external_lex_state = 8}, + [8587] = {.lex_state = 23, .external_lex_state = 8}, + [8588] = {.lex_state = 23, .external_lex_state = 8}, + [8589] = {.lex_state = 0, .external_lex_state = 8}, + [8590] = {.lex_state = 23, .external_lex_state = 8}, [8591] = {.lex_state = 23, .external_lex_state = 8}, - [8592] = {.lex_state = 23, .external_lex_state = 9}, - [8593] = {.lex_state = 23, .external_lex_state = 9}, - [8594] = {.lex_state = 23, .external_lex_state = 8}, - [8595] = {.lex_state = 23, .external_lex_state = 9}, + [8592] = {.lex_state = 0, .external_lex_state = 8}, + [8593] = {.lex_state = 0, .external_lex_state = 8}, + [8594] = {.lex_state = 0, .external_lex_state = 8}, + [8595] = {.lex_state = 0, .external_lex_state = 8}, [8596] = {.lex_state = 23, .external_lex_state = 8}, - [8597] = {.lex_state = 23, .external_lex_state = 8}, - [8598] = {.lex_state = 23, .external_lex_state = 8}, - [8599] = {.lex_state = 23, .external_lex_state = 9}, - [8600] = {.lex_state = 23, .external_lex_state = 9}, - [8601] = {.lex_state = 23, .external_lex_state = 9}, - [8602] = {.lex_state = 13, .external_lex_state = 8}, - [8603] = {.lex_state = 23, .external_lex_state = 9}, - [8604] = {.lex_state = 23, .external_lex_state = 9}, - [8605] = {.lex_state = 13, .external_lex_state = 8}, - [8606] = {.lex_state = 23, .external_lex_state = 9}, + [8597] = {.lex_state = 32, .external_lex_state = 8}, + [8598] = {.lex_state = 0, .external_lex_state = 8}, + [8599] = {.lex_state = 0, .external_lex_state = 8}, + [8600] = {.lex_state = 0, .external_lex_state = 8}, + [8601] = {.lex_state = 0, .external_lex_state = 8}, + [8602] = {.lex_state = 0, .external_lex_state = 8}, + [8603] = {.lex_state = 0, .external_lex_state = 8}, + [8604] = {.lex_state = 23, .external_lex_state = 8}, + [8605] = {.lex_state = 23, .external_lex_state = 8}, + [8606] = {.lex_state = 0, .external_lex_state = 8}, [8607] = {.lex_state = 23, .external_lex_state = 9}, - [8608] = {.lex_state = 23, .external_lex_state = 8}, - [8609] = {.lex_state = 13, .external_lex_state = 8}, + [8608] = {.lex_state = 23, .external_lex_state = 9}, + [8609] = {.lex_state = 23, .external_lex_state = 9}, [8610] = {.lex_state = 23, .external_lex_state = 8}, - [8611] = {.lex_state = 23, .external_lex_state = 8}, - [8612] = {.lex_state = 23, .external_lex_state = 9}, - [8613] = {.lex_state = 23, .external_lex_state = 8}, - [8614] = {.lex_state = 23, .external_lex_state = 8}, - [8615] = {.lex_state = 13, .external_lex_state = 8}, - [8616] = {.lex_state = 23, .external_lex_state = 8}, - [8617] = {.lex_state = 318, .external_lex_state = 8}, + [8611] = {.lex_state = 32, .external_lex_state = 8}, + [8612] = {.lex_state = 0, .external_lex_state = 8}, + [8613] = {.lex_state = 0, .external_lex_state = 8}, + [8614] = {.lex_state = 0, .external_lex_state = 8}, + [8615] = {.lex_state = 23, .external_lex_state = 8}, + [8616] = {.lex_state = 0, .external_lex_state = 8}, + [8617] = {.lex_state = 0, .external_lex_state = 9}, [8618] = {.lex_state = 23, .external_lex_state = 8}, [8619] = {.lex_state = 23, .external_lex_state = 8}, [8620] = {.lex_state = 23, .external_lex_state = 8}, - [8621] = {.lex_state = 318, .external_lex_state = 8}, - [8622] = {.lex_state = 13, .external_lex_state = 8}, - [8623] = {.lex_state = 23, .external_lex_state = 9}, - [8624] = {.lex_state = 13, .external_lex_state = 8}, - [8625] = {.lex_state = 23, .external_lex_state = 9}, - [8626] = {.lex_state = 0, .external_lex_state = 8}, + [8621] = {.lex_state = 0, .external_lex_state = 8}, + [8622] = {.lex_state = 23, .external_lex_state = 8}, + [8623] = {.lex_state = 23, .external_lex_state = 8}, + [8624] = {.lex_state = 23, .external_lex_state = 8}, + [8625] = {.lex_state = 23, .external_lex_state = 8}, + [8626] = {.lex_state = 23, .external_lex_state = 9}, [8627] = {.lex_state = 0, .external_lex_state = 8}, - [8628] = {.lex_state = 23, .external_lex_state = 8}, - [8629] = {.lex_state = 23, .external_lex_state = 9}, - [8630] = {.lex_state = 23, .external_lex_state = 8}, - [8631] = {.lex_state = 23, .external_lex_state = 9}, - [8632] = {.lex_state = 0, .external_lex_state = 8}, - [8633] = {.lex_state = 23, .external_lex_state = 8}, + [8628] = {.lex_state = 0, .external_lex_state = 8}, + [8629] = {.lex_state = 23, .external_lex_state = 8}, + [8630] = {.lex_state = 0, .external_lex_state = 8}, + [8631] = {.lex_state = 0, .external_lex_state = 8}, + [8632] = {.lex_state = 23, .external_lex_state = 8}, + [8633] = {.lex_state = 0, .external_lex_state = 8}, [8634] = {.lex_state = 0, .external_lex_state = 8}, [8635] = {.lex_state = 0, .external_lex_state = 8}, [8636] = {.lex_state = 0, .external_lex_state = 8}, - [8637] = {.lex_state = 0, .external_lex_state = 8}, + [8637] = {.lex_state = 23, .external_lex_state = 8}, [8638] = {.lex_state = 0, .external_lex_state = 8}, [8639] = {.lex_state = 0, .external_lex_state = 8}, [8640] = {.lex_state = 0, .external_lex_state = 8}, - [8641] = {.lex_state = 13, .external_lex_state = 8}, + [8641] = {.lex_state = 0, .external_lex_state = 8}, [8642] = {.lex_state = 0, .external_lex_state = 8}, [8643] = {.lex_state = 23, .external_lex_state = 8}, [8644] = {.lex_state = 0, .external_lex_state = 8}, - [8645] = {.lex_state = 23, .external_lex_state = 9}, + [8645] = {.lex_state = 0, .external_lex_state = 8}, [8646] = {.lex_state = 0, .external_lex_state = 8}, - [8647] = {.lex_state = 23, .external_lex_state = 8}, - [8648] = {.lex_state = 23, .external_lex_state = 9}, - [8649] = {.lex_state = 23, .external_lex_state = 9}, - [8650] = {.lex_state = 0, .external_lex_state = 8}, - [8651] = {.lex_state = 23, .external_lex_state = 8}, - [8652] = {.lex_state = 0, .external_lex_state = 8}, - [8653] = {.lex_state = 0, .external_lex_state = 8}, - [8654] = {.lex_state = 23, .external_lex_state = 8}, - [8655] = {.lex_state = 23, .external_lex_state = 8}, - [8656] = {.lex_state = 0, .external_lex_state = 8}, + [8647] = {.lex_state = 0, .external_lex_state = 8}, + [8648] = {.lex_state = 0, .external_lex_state = 8}, + [8649] = {.lex_state = 0, .external_lex_state = 8}, + [8650] = {.lex_state = 0, .external_lex_state = 10}, + [8651] = {.lex_state = 0, .external_lex_state = 8}, + [8652] = {.lex_state = 23, .external_lex_state = 8}, + [8653] = {.lex_state = 0, .external_lex_state = 9}, + [8654] = {.lex_state = 23, .external_lex_state = 9}, + [8655] = {.lex_state = 0, .external_lex_state = 9}, + [8656] = {.lex_state = 0, .external_lex_state = 9}, [8657] = {.lex_state = 0, .external_lex_state = 8}, - [8658] = {.lex_state = 23, .external_lex_state = 9}, - [8659] = {.lex_state = 23, .external_lex_state = 9}, + [8658] = {.lex_state = 0, .external_lex_state = 8}, + [8659] = {.lex_state = 0, .external_lex_state = 8}, [8660] = {.lex_state = 0, .external_lex_state = 8}, [8661] = {.lex_state = 0, .external_lex_state = 8}, [8662] = {.lex_state = 0, .external_lex_state = 8}, - [8663] = {.lex_state = 23, .external_lex_state = 9}, - [8664] = {.lex_state = 0, .external_lex_state = 8}, - [8665] = {.lex_state = 23, .external_lex_state = 8}, + [8663] = {.lex_state = 0, .external_lex_state = 9}, + [8664] = {.lex_state = 0, .external_lex_state = 9}, + [8665] = {.lex_state = 0, .external_lex_state = 8}, [8666] = {.lex_state = 0, .external_lex_state = 8}, [8667] = {.lex_state = 0, .external_lex_state = 8}, [8668] = {.lex_state = 0, .external_lex_state = 8}, [8669] = {.lex_state = 0, .external_lex_state = 8}, - [8670] = {.lex_state = 23, .external_lex_state = 9}, - [8671] = {.lex_state = 23, .external_lex_state = 8}, - [8672] = {.lex_state = 23, .external_lex_state = 9}, - [8673] = {.lex_state = 23, .external_lex_state = 8}, - [8674] = {.lex_state = 23, .external_lex_state = 9}, - [8675] = {.lex_state = 23, .external_lex_state = 9}, - [8676] = {.lex_state = 0, .external_lex_state = 10}, - [8677] = {.lex_state = 23, .external_lex_state = 9}, - [8678] = {.lex_state = 0, .external_lex_state = 9}, - [8679] = {.lex_state = 23, .external_lex_state = 9}, - [8680] = {.lex_state = 23, .external_lex_state = 9}, - [8681] = {.lex_state = 23, .external_lex_state = 9}, - [8682] = {.lex_state = 0, .external_lex_state = 10}, - [8683] = {.lex_state = 23, .external_lex_state = 8}, - [8684] = {.lex_state = 23, .external_lex_state = 9}, - [8685] = {.lex_state = 23, .external_lex_state = 9}, - [8686] = {.lex_state = 23, .external_lex_state = 9}, - [8687] = {.lex_state = 23, .external_lex_state = 8}, - [8688] = {.lex_state = 23, .external_lex_state = 8}, - [8689] = {.lex_state = 0, .external_lex_state = 9}, - [8690] = {.lex_state = 23, .external_lex_state = 9}, - [8691] = {.lex_state = 23, .external_lex_state = 9}, - [8692] = {.lex_state = 23, .external_lex_state = 8}, - [8693] = {.lex_state = 0, .external_lex_state = 9}, - [8694] = {.lex_state = 0, .external_lex_state = 9}, - [8695] = {.lex_state = 0, .external_lex_state = 9}, - [8696] = {.lex_state = 0, .external_lex_state = 9}, - [8697] = {.lex_state = 0, .external_lex_state = 9}, - [8698] = {.lex_state = 0, .external_lex_state = 9}, - [8699] = {.lex_state = 0, .external_lex_state = 10}, - [8700] = {.lex_state = 23, .external_lex_state = 9}, - [8701] = {.lex_state = 0, .external_lex_state = 10}, - [8702] = {.lex_state = 23, .external_lex_state = 9}, - [8703] = {.lex_state = 0, .external_lex_state = 9}, - [8704] = {.lex_state = 23, .external_lex_state = 9}, - [8705] = {.lex_state = 0, .external_lex_state = 10}, - [8706] = {.lex_state = 23, .external_lex_state = 8}, - [8707] = {.lex_state = 0, .external_lex_state = 10}, - [8708] = {.lex_state = 23, .external_lex_state = 9}, - [8709] = {.lex_state = 0, .external_lex_state = 10}, - [8710] = {.lex_state = 23, .external_lex_state = 9}, - [8711] = {.lex_state = 0, .external_lex_state = 10}, - [8712] = {.lex_state = 23, .external_lex_state = 8}, + [8670] = {.lex_state = 0, .external_lex_state = 8}, + [8671] = {.lex_state = 0, .external_lex_state = 8}, + [8672] = {.lex_state = 0, .external_lex_state = 8}, + [8673] = {.lex_state = 318, .external_lex_state = 8}, + [8674] = {.lex_state = 0, .external_lex_state = 9}, + [8675] = {.lex_state = 0, .external_lex_state = 8}, + [8676] = {.lex_state = 0, .external_lex_state = 8}, + [8677] = {.lex_state = 0, .external_lex_state = 8}, + [8678] = {.lex_state = 23, .external_lex_state = 8}, + [8679] = {.lex_state = 0, .external_lex_state = 8}, + [8680] = {.lex_state = 0, .external_lex_state = 8}, + [8681] = {.lex_state = 0, .external_lex_state = 8}, + [8682] = {.lex_state = 0, .external_lex_state = 8}, + [8683] = {.lex_state = 0, .external_lex_state = 8}, + [8684] = {.lex_state = 0, .external_lex_state = 8}, + [8685] = {.lex_state = 0, .external_lex_state = 8}, + [8686] = {.lex_state = 0, .external_lex_state = 8}, + [8687] = {.lex_state = 0, .external_lex_state = 9}, + [8688] = {.lex_state = 0, .external_lex_state = 8}, + [8689] = {.lex_state = 0, .external_lex_state = 8}, + [8690] = {.lex_state = 0, .external_lex_state = 8}, + [8691] = {.lex_state = 0, .external_lex_state = 8}, + [8692] = {.lex_state = 0, .external_lex_state = 8}, + [8693] = {.lex_state = 0, .external_lex_state = 8}, + [8694] = {.lex_state = 0, .external_lex_state = 8}, + [8695] = {.lex_state = 0, .external_lex_state = 10}, + [8696] = {.lex_state = 23, .external_lex_state = 11}, + [8697] = {.lex_state = 0, .external_lex_state = 8}, + [8698] = {.lex_state = 23, .external_lex_state = 8}, + [8699] = {.lex_state = 0, .external_lex_state = 9}, + [8700] = {.lex_state = 0, .external_lex_state = 9}, + [8701] = {.lex_state = 23, .external_lex_state = 8}, + [8702] = {.lex_state = 0, .external_lex_state = 9}, + [8703] = {.lex_state = 0, .external_lex_state = 8}, + [8704] = {.lex_state = 0, .external_lex_state = 8}, + [8705] = {.lex_state = 23, .external_lex_state = 8}, + [8706] = {.lex_state = 0, .external_lex_state = 8}, + [8707] = {.lex_state = 0, .external_lex_state = 8}, + [8708] = {.lex_state = 0, .external_lex_state = 8}, + [8709] = {.lex_state = 0, .external_lex_state = 8}, + [8710] = {.lex_state = 0, .external_lex_state = 8}, + [8711] = {.lex_state = 0, .external_lex_state = 8}, + [8712] = {.lex_state = 0, .external_lex_state = 8}, [8713] = {.lex_state = 0, .external_lex_state = 9}, - [8714] = {.lex_state = 23, .external_lex_state = 8}, - [8715] = {.lex_state = 23, .external_lex_state = 9}, - [8716] = {.lex_state = 0, .external_lex_state = 10}, + [8714] = {.lex_state = 0, .external_lex_state = 8}, + [8715] = {.lex_state = 0, .external_lex_state = 9}, + [8716] = {.lex_state = 0, .external_lex_state = 8}, [8717] = {.lex_state = 23, .external_lex_state = 8}, - [8718] = {.lex_state = 0, .external_lex_state = 10}, - [8719] = {.lex_state = 23, .external_lex_state = 9}, - [8720] = {.lex_state = 23, .external_lex_state = 9}, - [8721] = {.lex_state = 23, .external_lex_state = 9}, - [8722] = {.lex_state = 0, .external_lex_state = 8}, - [8723] = {.lex_state = 0, .external_lex_state = 10}, - [8724] = {.lex_state = 23, .external_lex_state = 9}, + [8718] = {.lex_state = 0, .external_lex_state = 8}, + [8719] = {.lex_state = 0, .external_lex_state = 9}, + [8720] = {.lex_state = 0, .external_lex_state = 8}, + [8721] = {.lex_state = 0, .external_lex_state = 8}, + [8722] = {.lex_state = 0, .external_lex_state = 9}, + [8723] = {.lex_state = 23, .external_lex_state = 8}, + [8724] = {.lex_state = 0, .external_lex_state = 8}, [8725] = {.lex_state = 23, .external_lex_state = 8}, - [8726] = {.lex_state = 23, .external_lex_state = 8}, - [8727] = {.lex_state = 23, .external_lex_state = 8}, - [8728] = {.lex_state = 23, .external_lex_state = 9}, - [8729] = {.lex_state = 23, .external_lex_state = 8}, - [8730] = {.lex_state = 0, .external_lex_state = 10}, - [8731] = {.lex_state = 0, .external_lex_state = 10}, - [8732] = {.lex_state = 23, .external_lex_state = 8}, - [8733] = {.lex_state = 0, .external_lex_state = 8}, + [8726] = {.lex_state = 0, .external_lex_state = 8}, + [8727] = {.lex_state = 0, .external_lex_state = 9}, + [8728] = {.lex_state = 0, .external_lex_state = 8}, + [8729] = {.lex_state = 0, .external_lex_state = 8}, + [8730] = {.lex_state = 0, .external_lex_state = 8}, + [8731] = {.lex_state = 0, .external_lex_state = 8}, + [8732] = {.lex_state = 0, .external_lex_state = 9}, + [8733] = {.lex_state = 23, .external_lex_state = 8}, [8734] = {.lex_state = 0, .external_lex_state = 8}, [8735] = {.lex_state = 0, .external_lex_state = 8}, - [8736] = {.lex_state = 32, .external_lex_state = 8}, + [8736] = {.lex_state = 0, .external_lex_state = 9}, [8737] = {.lex_state = 23, .external_lex_state = 8}, - [8738] = {.lex_state = 0, .external_lex_state = 8}, - [8739] = {.lex_state = 23, .external_lex_state = 8}, + [8738] = {.lex_state = 0, .external_lex_state = 9}, + [8739] = {.lex_state = 0, .external_lex_state = 8}, [8740] = {.lex_state = 0, .external_lex_state = 8}, [8741] = {.lex_state = 0, .external_lex_state = 8}, [8742] = {.lex_state = 0, .external_lex_state = 8}, - [8743] = {.lex_state = 0, .external_lex_state = 8}, + [8743] = {.lex_state = 23, .external_lex_state = 8}, [8744] = {.lex_state = 0, .external_lex_state = 8}, - [8745] = {.lex_state = 23, .external_lex_state = 8}, - [8746] = {.lex_state = 23, .external_lex_state = 8}, - [8747] = {.lex_state = 23, .external_lex_state = 8}, - [8748] = {.lex_state = 23, .external_lex_state = 8}, - [8749] = {.lex_state = 0, .external_lex_state = 8}, - [8750] = {.lex_state = 23, .external_lex_state = 8}, - [8751] = {.lex_state = 23, .external_lex_state = 8}, + [8745] = {.lex_state = 0, .external_lex_state = 8}, + [8746] = {.lex_state = 0, .external_lex_state = 8}, + [8747] = {.lex_state = 0, .external_lex_state = 9}, + [8748] = {.lex_state = 0, .external_lex_state = 9}, + [8749] = {.lex_state = 0, .external_lex_state = 9}, + [8750] = {.lex_state = 0, .external_lex_state = 9}, + [8751] = {.lex_state = 23, .external_lex_state = 11}, [8752] = {.lex_state = 0, .external_lex_state = 8}, - [8753] = {.lex_state = 23, .external_lex_state = 8}, + [8753] = {.lex_state = 0, .external_lex_state = 8}, [8754] = {.lex_state = 0, .external_lex_state = 8}, [8755] = {.lex_state = 0, .external_lex_state = 8}, - [8756] = {.lex_state = 23, .external_lex_state = 8}, + [8756] = {.lex_state = 0, .external_lex_state = 8}, [8757] = {.lex_state = 0, .external_lex_state = 8}, - [8758] = {.lex_state = 0, .external_lex_state = 8}, - [8759] = {.lex_state = 23, .external_lex_state = 8}, + [8758] = {.lex_state = 23, .external_lex_state = 8}, + [8759] = {.lex_state = 0, .external_lex_state = 8}, [8760] = {.lex_state = 0, .external_lex_state = 8}, - [8761] = {.lex_state = 0, .external_lex_state = 8}, + [8761] = {.lex_state = 0, .external_lex_state = 10}, [8762] = {.lex_state = 0, .external_lex_state = 8}, - [8763] = {.lex_state = 23, .external_lex_state = 8}, + [8763] = {.lex_state = 0, .external_lex_state = 9}, [8764] = {.lex_state = 0, .external_lex_state = 8}, - [8765] = {.lex_state = 23, .external_lex_state = 9}, - [8766] = {.lex_state = 32, .external_lex_state = 8}, - [8767] = {.lex_state = 23, .external_lex_state = 9}, - [8768] = {.lex_state = 23, .external_lex_state = 8}, - [8769] = {.lex_state = 23, .external_lex_state = 8}, - [8770] = {.lex_state = 0, .external_lex_state = 8}, + [8765] = {.lex_state = 0, .external_lex_state = 8}, + [8766] = {.lex_state = 0, .external_lex_state = 9}, + [8767] = {.lex_state = 0, .external_lex_state = 9}, + [8768] = {.lex_state = 0, .external_lex_state = 8}, + [8769] = {.lex_state = 0, .external_lex_state = 8}, + [8770] = {.lex_state = 0, .external_lex_state = 9}, [8771] = {.lex_state = 0, .external_lex_state = 8}, - [8772] = {.lex_state = 23, .external_lex_state = 9}, + [8772] = {.lex_state = 0, .external_lex_state = 8}, [8773] = {.lex_state = 0, .external_lex_state = 8}, - [8774] = {.lex_state = 23, .external_lex_state = 9}, - [8775] = {.lex_state = 23, .external_lex_state = 9}, - [8776] = {.lex_state = 23, .external_lex_state = 8}, + [8774] = {.lex_state = 0, .external_lex_state = 8}, + [8775] = {.lex_state = 0, .external_lex_state = 8}, + [8776] = {.lex_state = 0, .external_lex_state = 9}, [8777] = {.lex_state = 0, .external_lex_state = 8}, - [8778] = {.lex_state = 0, .external_lex_state = 8}, + [8778] = {.lex_state = 0, .external_lex_state = 9}, [8779] = {.lex_state = 0, .external_lex_state = 8}, - [8780] = {.lex_state = 0, .external_lex_state = 8}, - [8781] = {.lex_state = 23, .external_lex_state = 9}, + [8780] = {.lex_state = 0, .external_lex_state = 10}, + [8781] = {.lex_state = 0, .external_lex_state = 8}, [8782] = {.lex_state = 0, .external_lex_state = 8}, - [8783] = {.lex_state = 0, .external_lex_state = 8}, + [8783] = {.lex_state = 0, .external_lex_state = 9}, [8784] = {.lex_state = 0, .external_lex_state = 8}, [8785] = {.lex_state = 0, .external_lex_state = 8}, - [8786] = {.lex_state = 23, .external_lex_state = 9}, + [8786] = {.lex_state = 0, .external_lex_state = 8}, [8787] = {.lex_state = 0, .external_lex_state = 8}, - [8788] = {.lex_state = 23, .external_lex_state = 9}, - [8789] = {.lex_state = 23, .external_lex_state = 8}, + [8788] = {.lex_state = 0, .external_lex_state = 8}, + [8789] = {.lex_state = 0, .external_lex_state = 8}, [8790] = {.lex_state = 0, .external_lex_state = 8}, [8791] = {.lex_state = 0, .external_lex_state = 8}, - [8792] = {.lex_state = 23, .external_lex_state = 8}, + [8792] = {.lex_state = 0, .external_lex_state = 8}, [8793] = {.lex_state = 0, .external_lex_state = 8}, [8794] = {.lex_state = 0, .external_lex_state = 8}, - [8795] = {.lex_state = 0, .external_lex_state = 8}, - [8796] = {.lex_state = 23, .external_lex_state = 9}, - [8797] = {.lex_state = 23, .external_lex_state = 9}, - [8798] = {.lex_state = 23, .external_lex_state = 9}, - [8799] = {.lex_state = 0, .external_lex_state = 8}, - [8800] = {.lex_state = 23, .external_lex_state = 9}, - [8801] = {.lex_state = 23, .external_lex_state = 9}, - [8802] = {.lex_state = 0, .external_lex_state = 8}, - [8803] = {.lex_state = 0, .external_lex_state = 8}, - [8804] = {.lex_state = 0, .external_lex_state = 8}, + [8795] = {.lex_state = 23, .external_lex_state = 8}, + [8796] = {.lex_state = 318, .external_lex_state = 8}, + [8797] = {.lex_state = 0, .external_lex_state = 8}, + [8798] = {.lex_state = 23, .external_lex_state = 8}, + [8799] = {.lex_state = 23, .external_lex_state = 8}, + [8800] = {.lex_state = 23, .external_lex_state = 8}, + [8801] = {.lex_state = 318, .external_lex_state = 8}, + [8802] = {.lex_state = 23, .external_lex_state = 8}, + [8803] = {.lex_state = 23, .external_lex_state = 8}, + [8804] = {.lex_state = 0, .external_lex_state = 9}, [8805] = {.lex_state = 0, .external_lex_state = 8}, [8806] = {.lex_state = 0, .external_lex_state = 8}, - [8807] = {.lex_state = 0, .external_lex_state = 8}, - [8808] = {.lex_state = 32, .external_lex_state = 8}, + [8807] = {.lex_state = 0, .external_lex_state = 9}, + [8808] = {.lex_state = 0, .external_lex_state = 8}, [8809] = {.lex_state = 0, .external_lex_state = 8}, - [8810] = {.lex_state = 0, .external_lex_state = 8}, - [8811] = {.lex_state = 0, .external_lex_state = 8}, + [8810] = {.lex_state = 0, .external_lex_state = 9}, + [8811] = {.lex_state = 23, .external_lex_state = 8}, [8812] = {.lex_state = 0, .external_lex_state = 8}, [8813] = {.lex_state = 0, .external_lex_state = 8}, - [8814] = {.lex_state = 0, .external_lex_state = 8}, + [8814] = {.lex_state = 23, .external_lex_state = 8}, [8815] = {.lex_state = 23, .external_lex_state = 8}, - [8816] = {.lex_state = 0, .external_lex_state = 8}, - [8817] = {.lex_state = 23, .external_lex_state = 9}, + [8816] = {.lex_state = 23, .external_lex_state = 8}, + [8817] = {.lex_state = 0, .external_lex_state = 8}, [8818] = {.lex_state = 0, .external_lex_state = 8}, - [8819] = {.lex_state = 0, .external_lex_state = 8}, + [8819] = {.lex_state = 23, .external_lex_state = 8}, [8820] = {.lex_state = 0, .external_lex_state = 8}, - [8821] = {.lex_state = 23, .external_lex_state = 8}, + [8821] = {.lex_state = 0, .external_lex_state = 8}, [8822] = {.lex_state = 0, .external_lex_state = 8}, - [8823] = {.lex_state = 0, .external_lex_state = 8}, - [8824] = {.lex_state = 23, .external_lex_state = 9}, - [8825] = {.lex_state = 0, .external_lex_state = 8}, + [8823] = {.lex_state = 23, .external_lex_state = 8}, + [8824] = {.lex_state = 0, .external_lex_state = 8}, + [8825] = {.lex_state = 23, .external_lex_state = 8}, [8826] = {.lex_state = 0, .external_lex_state = 8}, - [8827] = {.lex_state = 23, .external_lex_state = 8}, - [8828] = {.lex_state = 0, .external_lex_state = 8}, - [8829] = {.lex_state = 23, .external_lex_state = 8}, + [8827] = {.lex_state = 318, .external_lex_state = 8}, + [8828] = {.lex_state = 318, .external_lex_state = 8}, + [8829] = {.lex_state = 0, .external_lex_state = 8}, [8830] = {.lex_state = 0, .external_lex_state = 8}, - [8831] = {.lex_state = 0, .external_lex_state = 8}, - [8832] = {.lex_state = 0, .external_lex_state = 8}, + [8831] = {.lex_state = 0, .external_lex_state = 9}, + [8832] = {.lex_state = 0, .external_lex_state = 9}, [8833] = {.lex_state = 0, .external_lex_state = 8}, [8834] = {.lex_state = 0, .external_lex_state = 8}, [8835] = {.lex_state = 0, .external_lex_state = 8}, [8836] = {.lex_state = 0, .external_lex_state = 8}, - [8837] = {.lex_state = 23, .external_lex_state = 8}, - [8838] = {.lex_state = 0, .external_lex_state = 9}, + [8837] = {.lex_state = 0, .external_lex_state = 8}, + [8838] = {.lex_state = 0, .external_lex_state = 8}, [8839] = {.lex_state = 0, .external_lex_state = 8}, [8840] = {.lex_state = 0, .external_lex_state = 8}, - [8841] = {.lex_state = 0, .external_lex_state = 8}, + [8841] = {.lex_state = 318, .external_lex_state = 8}, [8842] = {.lex_state = 0, .external_lex_state = 8}, - [8843] = {.lex_state = 23, .external_lex_state = 8}, - [8844] = {.lex_state = 0, .external_lex_state = 8}, + [8843] = {.lex_state = 0, .external_lex_state = 8}, + [8844] = {.lex_state = 318, .external_lex_state = 8}, [8845] = {.lex_state = 0, .external_lex_state = 8}, [8846] = {.lex_state = 0, .external_lex_state = 8}, [8847] = {.lex_state = 0, .external_lex_state = 8}, - [8848] = {.lex_state = 23, .external_lex_state = 8}, - [8849] = {.lex_state = 32, .external_lex_state = 8}, - [8850] = {.lex_state = 23, .external_lex_state = 8}, + [8848] = {.lex_state = 0, .external_lex_state = 8}, + [8849] = {.lex_state = 0, .external_lex_state = 8}, + [8850] = {.lex_state = 0, .external_lex_state = 8}, [8851] = {.lex_state = 0, .external_lex_state = 8}, - [8852] = {.lex_state = 23, .external_lex_state = 9}, + [8852] = {.lex_state = 0, .external_lex_state = 8}, [8853] = {.lex_state = 0, .external_lex_state = 8}, [8854] = {.lex_state = 0, .external_lex_state = 8}, - [8855] = {.lex_state = 0, .external_lex_state = 8}, - [8856] = {.lex_state = 0, .external_lex_state = 8}, - [8857] = {.lex_state = 32, .external_lex_state = 8}, - [8858] = {.lex_state = 23, .external_lex_state = 8}, + [8855] = {.lex_state = 318, .external_lex_state = 8}, + [8856] = {.lex_state = 318, .external_lex_state = 8}, + [8857] = {.lex_state = 0, .external_lex_state = 8}, + [8858] = {.lex_state = 0, .external_lex_state = 8}, [8859] = {.lex_state = 0, .external_lex_state = 8}, - [8860] = {.lex_state = 23, .external_lex_state = 8}, - [8861] = {.lex_state = 0, .external_lex_state = 8}, - [8862] = {.lex_state = 0, .external_lex_state = 8}, - [8863] = {.lex_state = 0, .external_lex_state = 8}, + [8860] = {.lex_state = 318, .external_lex_state = 8}, + [8861] = {.lex_state = 23, .external_lex_state = 8}, + [8862] = {.lex_state = 23, .external_lex_state = 8}, + [8863] = {.lex_state = 318, .external_lex_state = 8}, [8864] = {.lex_state = 23, .external_lex_state = 8}, - [8865] = {.lex_state = 0, .external_lex_state = 8}, + [8865] = {.lex_state = 23, .external_lex_state = 8}, [8866] = {.lex_state = 0, .external_lex_state = 8}, - [8867] = {.lex_state = 0, .external_lex_state = 8}, - [8868] = {.lex_state = 0, .external_lex_state = 8}, + [8867] = {.lex_state = 0, .external_lex_state = 9}, + [8868] = {.lex_state = 0, .external_lex_state = 9}, [8869] = {.lex_state = 0, .external_lex_state = 8}, [8870] = {.lex_state = 0, .external_lex_state = 8}, [8871] = {.lex_state = 0, .external_lex_state = 8}, @@ -32704,1012 +32355,1012 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8874] = {.lex_state = 0, .external_lex_state = 8}, [8875] = {.lex_state = 0, .external_lex_state = 8}, [8876] = {.lex_state = 0, .external_lex_state = 8}, - [8877] = {.lex_state = 0, .external_lex_state = 8}, + [8877] = {.lex_state = 23, .external_lex_state = 8}, [8878] = {.lex_state = 0, .external_lex_state = 8}, - [8879] = {.lex_state = 23, .external_lex_state = 9}, - [8880] = {.lex_state = 0, .external_lex_state = 8}, + [8879] = {.lex_state = 0, .external_lex_state = 8}, + [8880] = {.lex_state = 23, .external_lex_state = 8}, [8881] = {.lex_state = 0, .external_lex_state = 8}, - [8882] = {.lex_state = 23, .external_lex_state = 8}, + [8882] = {.lex_state = 318, .external_lex_state = 8}, [8883] = {.lex_state = 0, .external_lex_state = 8}, [8884] = {.lex_state = 23, .external_lex_state = 8}, - [8885] = {.lex_state = 23, .external_lex_state = 8}, - [8886] = {.lex_state = 0, .external_lex_state = 8}, - [8887] = {.lex_state = 0, .external_lex_state = 8}, + [8885] = {.lex_state = 0, .external_lex_state = 8}, + [8886] = {.lex_state = 23, .external_lex_state = 8}, + [8887] = {.lex_state = 23, .external_lex_state = 8}, [8888] = {.lex_state = 23, .external_lex_state = 8}, - [8889] = {.lex_state = 0, .external_lex_state = 8}, + [8889] = {.lex_state = 23, .external_lex_state = 8}, [8890] = {.lex_state = 23, .external_lex_state = 8}, [8891] = {.lex_state = 23, .external_lex_state = 8}, [8892] = {.lex_state = 0, .external_lex_state = 8}, [8893] = {.lex_state = 23, .external_lex_state = 8}, [8894] = {.lex_state = 0, .external_lex_state = 8}, - [8895] = {.lex_state = 0, .external_lex_state = 8}, + [8895] = {.lex_state = 23, .external_lex_state = 8}, [8896] = {.lex_state = 23, .external_lex_state = 8}, [8897] = {.lex_state = 23, .external_lex_state = 8}, - [8898] = {.lex_state = 0, .external_lex_state = 8}, - [8899] = {.lex_state = 0, .external_lex_state = 9}, - [8900] = {.lex_state = 23, .external_lex_state = 9}, - [8901] = {.lex_state = 0, .external_lex_state = 8}, + [8898] = {.lex_state = 23, .external_lex_state = 8}, + [8899] = {.lex_state = 23, .external_lex_state = 8}, + [8900] = {.lex_state = 0, .external_lex_state = 8}, + [8901] = {.lex_state = 23, .external_lex_state = 8}, [8902] = {.lex_state = 0, .external_lex_state = 8}, - [8903] = {.lex_state = 0, .external_lex_state = 8}, + [8903] = {.lex_state = 23, .external_lex_state = 8}, [8904] = {.lex_state = 23, .external_lex_state = 8}, - [8905] = {.lex_state = 32, .external_lex_state = 8}, - [8906] = {.lex_state = 23, .external_lex_state = 8}, + [8905] = {.lex_state = 0, .external_lex_state = 8}, + [8906] = {.lex_state = 0, .external_lex_state = 8}, [8907] = {.lex_state = 0, .external_lex_state = 8}, - [8908] = {.lex_state = 23, .external_lex_state = 8}, - [8909] = {.lex_state = 0, .external_lex_state = 8}, + [8908] = {.lex_state = 318, .external_lex_state = 8}, + [8909] = {.lex_state = 23, .external_lex_state = 8}, [8910] = {.lex_state = 23, .external_lex_state = 8}, - [8911] = {.lex_state = 0, .external_lex_state = 8}, - [8912] = {.lex_state = 0, .external_lex_state = 9}, - [8913] = {.lex_state = 0, .external_lex_state = 9}, - [8914] = {.lex_state = 0, .external_lex_state = 8}, - [8915] = {.lex_state = 0, .external_lex_state = 8}, - [8916] = {.lex_state = 23, .external_lex_state = 8}, - [8917] = {.lex_state = 0, .external_lex_state = 9}, + [8911] = {.lex_state = 23, .external_lex_state = 8}, + [8912] = {.lex_state = 23, .external_lex_state = 8}, + [8913] = {.lex_state = 23, .external_lex_state = 8}, + [8914] = {.lex_state = 23, .external_lex_state = 8}, + [8915] = {.lex_state = 23, .external_lex_state = 8}, + [8916] = {.lex_state = 0, .external_lex_state = 8}, + [8917] = {.lex_state = 0, .external_lex_state = 8}, [8918] = {.lex_state = 0, .external_lex_state = 8}, - [8919] = {.lex_state = 0, .external_lex_state = 9}, - [8920] = {.lex_state = 0, .external_lex_state = 8}, - [8921] = {.lex_state = 0, .external_lex_state = 8}, - [8922] = {.lex_state = 0, .external_lex_state = 8}, - [8923] = {.lex_state = 0, .external_lex_state = 9}, + [8919] = {.lex_state = 0, .external_lex_state = 8}, + [8920] = {.lex_state = 23, .external_lex_state = 8}, + [8921] = {.lex_state = 23, .external_lex_state = 8}, + [8922] = {.lex_state = 23, .external_lex_state = 8}, + [8923] = {.lex_state = 0, .external_lex_state = 8}, [8924] = {.lex_state = 0, .external_lex_state = 8}, - [8925] = {.lex_state = 0, .external_lex_state = 8}, + [8925] = {.lex_state = 23, .external_lex_state = 8}, [8926] = {.lex_state = 0, .external_lex_state = 8}, [8927] = {.lex_state = 0, .external_lex_state = 8}, [8928] = {.lex_state = 0, .external_lex_state = 8}, [8929] = {.lex_state = 0, .external_lex_state = 8}, [8930] = {.lex_state = 0, .external_lex_state = 8}, - [8931] = {.lex_state = 0, .external_lex_state = 8}, + [8931] = {.lex_state = 318, .external_lex_state = 8}, [8932] = {.lex_state = 0, .external_lex_state = 8}, - [8933] = {.lex_state = 0, .external_lex_state = 8}, + [8933] = {.lex_state = 318, .external_lex_state = 8}, [8934] = {.lex_state = 0, .external_lex_state = 8}, - [8935] = {.lex_state = 0, .external_lex_state = 9}, - [8936] = {.lex_state = 0, .external_lex_state = 8}, + [8935] = {.lex_state = 0, .external_lex_state = 8}, + [8936] = {.lex_state = 318, .external_lex_state = 8}, [8937] = {.lex_state = 0, .external_lex_state = 8}, [8938] = {.lex_state = 0, .external_lex_state = 8}, - [8939] = {.lex_state = 0, .external_lex_state = 8}, - [8940] = {.lex_state = 0, .external_lex_state = 8}, + [8939] = {.lex_state = 23, .external_lex_state = 8}, + [8940] = {.lex_state = 318, .external_lex_state = 8}, [8941] = {.lex_state = 23, .external_lex_state = 8}, - [8942] = {.lex_state = 0, .external_lex_state = 8}, + [8942] = {.lex_state = 318, .external_lex_state = 8}, [8943] = {.lex_state = 0, .external_lex_state = 8}, - [8944] = {.lex_state = 0, .external_lex_state = 9}, + [8944] = {.lex_state = 318, .external_lex_state = 8}, [8945] = {.lex_state = 0, .external_lex_state = 8}, - [8946] = {.lex_state = 0, .external_lex_state = 8}, - [8947] = {.lex_state = 0, .external_lex_state = 8}, - [8948] = {.lex_state = 0, .external_lex_state = 9}, - [8949] = {.lex_state = 0, .external_lex_state = 9}, - [8950] = {.lex_state = 0, .external_lex_state = 8}, - [8951] = {.lex_state = 0, .external_lex_state = 10}, - [8952] = {.lex_state = 0, .external_lex_state = 8}, - [8953] = {.lex_state = 0, .external_lex_state = 9}, - [8954] = {.lex_state = 0, .external_lex_state = 9}, + [8946] = {.lex_state = 318, .external_lex_state = 8}, + [8947] = {.lex_state = 23, .external_lex_state = 8}, + [8948] = {.lex_state = 0, .external_lex_state = 8}, + [8949] = {.lex_state = 0, .external_lex_state = 8}, + [8950] = {.lex_state = 23, .external_lex_state = 8}, + [8951] = {.lex_state = 23, .external_lex_state = 8}, + [8952] = {.lex_state = 318, .external_lex_state = 8}, + [8953] = {.lex_state = 0, .external_lex_state = 8}, + [8954] = {.lex_state = 318, .external_lex_state = 8}, [8955] = {.lex_state = 0, .external_lex_state = 8}, [8956] = {.lex_state = 0, .external_lex_state = 8}, - [8957] = {.lex_state = 23, .external_lex_state = 8}, - [8958] = {.lex_state = 0, .external_lex_state = 8}, + [8957] = {.lex_state = 0, .external_lex_state = 8}, + [8958] = {.lex_state = 318, .external_lex_state = 8}, [8959] = {.lex_state = 0, .external_lex_state = 8}, - [8960] = {.lex_state = 23, .external_lex_state = 8}, + [8960] = {.lex_state = 318, .external_lex_state = 8}, [8961] = {.lex_state = 0, .external_lex_state = 8}, [8962] = {.lex_state = 0, .external_lex_state = 8}, - [8963] = {.lex_state = 0, .external_lex_state = 9}, + [8963] = {.lex_state = 0, .external_lex_state = 8}, [8964] = {.lex_state = 0, .external_lex_state = 8}, - [8965] = {.lex_state = 0, .external_lex_state = 8}, + [8965] = {.lex_state = 318, .external_lex_state = 8}, [8966] = {.lex_state = 0, .external_lex_state = 8}, [8967] = {.lex_state = 0, .external_lex_state = 8}, - [8968] = {.lex_state = 0, .external_lex_state = 9}, - [8969] = {.lex_state = 0, .external_lex_state = 8}, - [8970] = {.lex_state = 0, .external_lex_state = 8}, - [8971] = {.lex_state = 0, .external_lex_state = 8}, + [8968] = {.lex_state = 0, .external_lex_state = 8}, + [8969] = {.lex_state = 318, .external_lex_state = 8}, + [8970] = {.lex_state = 318, .external_lex_state = 8}, + [8971] = {.lex_state = 318, .external_lex_state = 8}, [8972] = {.lex_state = 0, .external_lex_state = 8}, [8973] = {.lex_state = 0, .external_lex_state = 8}, [8974] = {.lex_state = 0, .external_lex_state = 8}, - [8975] = {.lex_state = 0, .external_lex_state = 8}, - [8976] = {.lex_state = 0, .external_lex_state = 9}, - [8977] = {.lex_state = 23, .external_lex_state = 8}, - [8978] = {.lex_state = 0, .external_lex_state = 8}, + [8975] = {.lex_state = 318, .external_lex_state = 8}, + [8976] = {.lex_state = 318, .external_lex_state = 8}, + [8977] = {.lex_state = 318, .external_lex_state = 8}, + [8978] = {.lex_state = 318, .external_lex_state = 8}, [8979] = {.lex_state = 0, .external_lex_state = 8}, - [8980] = {.lex_state = 0, .external_lex_state = 8}, + [8980] = {.lex_state = 318, .external_lex_state = 8}, [8981] = {.lex_state = 0, .external_lex_state = 8}, [8982] = {.lex_state = 0, .external_lex_state = 8}, - [8983] = {.lex_state = 0, .external_lex_state = 9}, + [8983] = {.lex_state = 318, .external_lex_state = 8}, [8984] = {.lex_state = 0, .external_lex_state = 8}, [8985] = {.lex_state = 0, .external_lex_state = 8}, - [8986] = {.lex_state = 0, .external_lex_state = 8}, + [8986] = {.lex_state = 23, .external_lex_state = 8}, [8987] = {.lex_state = 0, .external_lex_state = 8}, [8988] = {.lex_state = 0, .external_lex_state = 8}, - [8989] = {.lex_state = 0, .external_lex_state = 8}, - [8990] = {.lex_state = 0, .external_lex_state = 8}, + [8989] = {.lex_state = 318, .external_lex_state = 8}, + [8990] = {.lex_state = 318, .external_lex_state = 8}, [8991] = {.lex_state = 0, .external_lex_state = 8}, - [8992] = {.lex_state = 0, .external_lex_state = 9}, - [8993] = {.lex_state = 0, .external_lex_state = 9}, + [8992] = {.lex_state = 318, .external_lex_state = 8}, + [8993] = {.lex_state = 0, .external_lex_state = 8}, [8994] = {.lex_state = 0, .external_lex_state = 8}, [8995] = {.lex_state = 0, .external_lex_state = 8}, [8996] = {.lex_state = 0, .external_lex_state = 8}, - [8997] = {.lex_state = 0, .external_lex_state = 8}, + [8997] = {.lex_state = 318, .external_lex_state = 8}, [8998] = {.lex_state = 0, .external_lex_state = 8}, - [8999] = {.lex_state = 0, .external_lex_state = 8}, - [9000] = {.lex_state = 0, .external_lex_state = 8}, - [9001] = {.lex_state = 0, .external_lex_state = 8}, - [9002] = {.lex_state = 0, .external_lex_state = 9}, + [8999] = {.lex_state = 318, .external_lex_state = 8}, + [9000] = {.lex_state = 23, .external_lex_state = 8}, + [9001] = {.lex_state = 318, .external_lex_state = 8}, + [9002] = {.lex_state = 0, .external_lex_state = 8}, [9003] = {.lex_state = 0, .external_lex_state = 8}, - [9004] = {.lex_state = 0, .external_lex_state = 8}, + [9004] = {.lex_state = 318, .external_lex_state = 8}, [9005] = {.lex_state = 0, .external_lex_state = 8}, - [9006] = {.lex_state = 23, .external_lex_state = 8}, - [9007] = {.lex_state = 0, .external_lex_state = 9}, + [9006] = {.lex_state = 0, .external_lex_state = 8}, + [9007] = {.lex_state = 23, .external_lex_state = 8}, [9008] = {.lex_state = 0, .external_lex_state = 8}, - [9009] = {.lex_state = 0, .external_lex_state = 9}, - [9010] = {.lex_state = 0, .external_lex_state = 8}, - [9011] = {.lex_state = 23, .external_lex_state = 8}, + [9009] = {.lex_state = 0, .external_lex_state = 8}, + [9010] = {.lex_state = 318, .external_lex_state = 8}, + [9011] = {.lex_state = 0, .external_lex_state = 8}, [9012] = {.lex_state = 0, .external_lex_state = 8}, - [9013] = {.lex_state = 0, .external_lex_state = 10}, - [9014] = {.lex_state = 0, .external_lex_state = 9}, - [9015] = {.lex_state = 23, .external_lex_state = 9}, - [9016] = {.lex_state = 0, .external_lex_state = 8}, + [9013] = {.lex_state = 318, .external_lex_state = 8}, + [9014] = {.lex_state = 0, .external_lex_state = 8}, + [9015] = {.lex_state = 318, .external_lex_state = 8}, + [9016] = {.lex_state = 23, .external_lex_state = 8}, [9017] = {.lex_state = 23, .external_lex_state = 8}, [9018] = {.lex_state = 0, .external_lex_state = 8}, - [9019] = {.lex_state = 0, .external_lex_state = 8}, + [9019] = {.lex_state = 23, .external_lex_state = 8}, [9020] = {.lex_state = 0, .external_lex_state = 8}, [9021] = {.lex_state = 0, .external_lex_state = 8}, [9022] = {.lex_state = 0, .external_lex_state = 8}, [9023] = {.lex_state = 0, .external_lex_state = 8}, - [9024] = {.lex_state = 0, .external_lex_state = 8}, + [9024] = {.lex_state = 318, .external_lex_state = 8}, [9025] = {.lex_state = 0, .external_lex_state = 8}, [9026] = {.lex_state = 0, .external_lex_state = 8}, - [9027] = {.lex_state = 0, .external_lex_state = 8}, - [9028] = {.lex_state = 0, .external_lex_state = 9}, - [9029] = {.lex_state = 0, .external_lex_state = 8}, + [9027] = {.lex_state = 318, .external_lex_state = 8}, + [9028] = {.lex_state = 0, .external_lex_state = 8}, + [9029] = {.lex_state = 23, .external_lex_state = 8}, [9030] = {.lex_state = 0, .external_lex_state = 8}, - [9031] = {.lex_state = 0, .external_lex_state = 9}, - [9032] = {.lex_state = 23, .external_lex_state = 8}, + [9031] = {.lex_state = 23, .external_lex_state = 8}, + [9032] = {.lex_state = 0, .external_lex_state = 8}, [9033] = {.lex_state = 0, .external_lex_state = 8}, [9034] = {.lex_state = 0, .external_lex_state = 8}, - [9035] = {.lex_state = 0, .external_lex_state = 8}, - [9036] = {.lex_state = 0, .external_lex_state = 9}, - [9037] = {.lex_state = 23, .external_lex_state = 11}, - [9038] = {.lex_state = 0, .external_lex_state = 8}, - [9039] = {.lex_state = 0, .external_lex_state = 9}, - [9040] = {.lex_state = 0, .external_lex_state = 8}, - [9041] = {.lex_state = 0, .external_lex_state = 8}, + [9035] = {.lex_state = 318, .external_lex_state = 8}, + [9036] = {.lex_state = 0, .external_lex_state = 8}, + [9037] = {.lex_state = 23, .external_lex_state = 8}, + [9038] = {.lex_state = 23, .external_lex_state = 8}, + [9039] = {.lex_state = 23, .external_lex_state = 8}, + [9040] = {.lex_state = 318, .external_lex_state = 8}, + [9041] = {.lex_state = 318, .external_lex_state = 8}, [9042] = {.lex_state = 0, .external_lex_state = 8}, [9043] = {.lex_state = 23, .external_lex_state = 8}, - [9044] = {.lex_state = 0, .external_lex_state = 8}, - [9045] = {.lex_state = 0, .external_lex_state = 9}, - [9046] = {.lex_state = 0, .external_lex_state = 9}, + [9044] = {.lex_state = 23, .external_lex_state = 8}, + [9045] = {.lex_state = 0, .external_lex_state = 8}, + [9046] = {.lex_state = 0, .external_lex_state = 8}, [9047] = {.lex_state = 0, .external_lex_state = 8}, [9048] = {.lex_state = 0, .external_lex_state = 8}, - [9049] = {.lex_state = 0, .external_lex_state = 8}, - [9050] = {.lex_state = 0, .external_lex_state = 9}, - [9051] = {.lex_state = 0, .external_lex_state = 8}, - [9052] = {.lex_state = 0, .external_lex_state = 8}, - [9053] = {.lex_state = 0, .external_lex_state = 9}, + [9049] = {.lex_state = 318, .external_lex_state = 8}, + [9050] = {.lex_state = 23, .external_lex_state = 8}, + [9051] = {.lex_state = 23, .external_lex_state = 8}, + [9052] = {.lex_state = 23, .external_lex_state = 8}, + [9053] = {.lex_state = 0, .external_lex_state = 8}, [9054] = {.lex_state = 0, .external_lex_state = 8}, - [9055] = {.lex_state = 0, .external_lex_state = 8}, + [9055] = {.lex_state = 318, .external_lex_state = 8}, [9056] = {.lex_state = 0, .external_lex_state = 8}, [9057] = {.lex_state = 0, .external_lex_state = 8}, - [9058] = {.lex_state = 23, .external_lex_state = 8}, - [9059] = {.lex_state = 0, .external_lex_state = 9}, - [9060] = {.lex_state = 0, .external_lex_state = 9}, - [9061] = {.lex_state = 0, .external_lex_state = 8}, - [9062] = {.lex_state = 0, .external_lex_state = 9}, - [9063] = {.lex_state = 0, .external_lex_state = 10}, - [9064] = {.lex_state = 0, .external_lex_state = 8}, + [9058] = {.lex_state = 0, .external_lex_state = 8}, + [9059] = {.lex_state = 0, .external_lex_state = 8}, + [9060] = {.lex_state = 0, .external_lex_state = 8}, + [9061] = {.lex_state = 318, .external_lex_state = 8}, + [9062] = {.lex_state = 0, .external_lex_state = 8}, + [9063] = {.lex_state = 0, .external_lex_state = 8}, + [9064] = {.lex_state = 23, .external_lex_state = 8}, [9065] = {.lex_state = 0, .external_lex_state = 8}, - [9066] = {.lex_state = 23, .external_lex_state = 8}, - [9067] = {.lex_state = 0, .external_lex_state = 9}, - [9068] = {.lex_state = 23, .external_lex_state = 8}, - [9069] = {.lex_state = 23, .external_lex_state = 8}, - [9070] = {.lex_state = 23, .external_lex_state = 11}, + [9066] = {.lex_state = 318, .external_lex_state = 8}, + [9067] = {.lex_state = 0, .external_lex_state = 8}, + [9068] = {.lex_state = 0, .external_lex_state = 8}, + [9069] = {.lex_state = 0, .external_lex_state = 9}, + [9070] = {.lex_state = 0, .external_lex_state = 9}, [9071] = {.lex_state = 0, .external_lex_state = 8}, [9072] = {.lex_state = 0, .external_lex_state = 8}, - [9073] = {.lex_state = 0, .external_lex_state = 8}, - [9074] = {.lex_state = 0, .external_lex_state = 9}, - [9075] = {.lex_state = 0, .external_lex_state = 10}, - [9076] = {.lex_state = 318, .external_lex_state = 8}, + [9073] = {.lex_state = 0, .external_lex_state = 9}, + [9074] = {.lex_state = 318, .external_lex_state = 8}, + [9075] = {.lex_state = 0, .external_lex_state = 8}, + [9076] = {.lex_state = 0, .external_lex_state = 8}, [9077] = {.lex_state = 0, .external_lex_state = 8}, [9078] = {.lex_state = 0, .external_lex_state = 8}, - [9079] = {.lex_state = 0, .external_lex_state = 8}, - [9080] = {.lex_state = 0, .external_lex_state = 8}, - [9081] = {.lex_state = 318, .external_lex_state = 8}, + [9079] = {.lex_state = 318, .external_lex_state = 8}, + [9080] = {.lex_state = 318, .external_lex_state = 8}, + [9081] = {.lex_state = 0, .external_lex_state = 8}, [9082] = {.lex_state = 0, .external_lex_state = 8}, - [9083] = {.lex_state = 0, .external_lex_state = 8}, + [9083] = {.lex_state = 318, .external_lex_state = 8}, [9084] = {.lex_state = 0, .external_lex_state = 8}, [9085] = {.lex_state = 0, .external_lex_state = 8}, - [9086] = {.lex_state = 23, .external_lex_state = 8}, - [9087] = {.lex_state = 23, .external_lex_state = 8}, - [9088] = {.lex_state = 318, .external_lex_state = 8}, - [9089] = {.lex_state = 23, .external_lex_state = 8}, + [9086] = {.lex_state = 0, .external_lex_state = 8}, + [9087] = {.lex_state = 0, .external_lex_state = 8}, + [9088] = {.lex_state = 0, .external_lex_state = 9}, + [9089] = {.lex_state = 318, .external_lex_state = 8}, [9090] = {.lex_state = 0, .external_lex_state = 8}, [9091] = {.lex_state = 0, .external_lex_state = 8}, - [9092] = {.lex_state = 0, .external_lex_state = 9}, + [9092] = {.lex_state = 0, .external_lex_state = 8}, [9093] = {.lex_state = 0, .external_lex_state = 8}, - [9094] = {.lex_state = 0, .external_lex_state = 9}, - [9095] = {.lex_state = 0, .external_lex_state = 8}, - [9096] = {.lex_state = 318, .external_lex_state = 8}, + [9094] = {.lex_state = 0, .external_lex_state = 8}, + [9095] = {.lex_state = 318, .external_lex_state = 8}, + [9096] = {.lex_state = 0, .external_lex_state = 8}, [9097] = {.lex_state = 0, .external_lex_state = 8}, - [9098] = {.lex_state = 0, .external_lex_state = 8}, - [9099] = {.lex_state = 23, .external_lex_state = 8}, + [9098] = {.lex_state = 0, .external_lex_state = 9}, + [9099] = {.lex_state = 0, .external_lex_state = 8}, [9100] = {.lex_state = 0, .external_lex_state = 8}, - [9101] = {.lex_state = 0, .external_lex_state = 8}, - [9102] = {.lex_state = 23, .external_lex_state = 8}, - [9103] = {.lex_state = 23, .external_lex_state = 8}, - [9104] = {.lex_state = 23, .external_lex_state = 8}, - [9105] = {.lex_state = 23, .external_lex_state = 8}, - [9106] = {.lex_state = 0, .external_lex_state = 9}, - [9107] = {.lex_state = 0, .external_lex_state = 9}, - [9108] = {.lex_state = 0, .external_lex_state = 9}, - [9109] = {.lex_state = 0, .external_lex_state = 8}, - [9110] = {.lex_state = 318, .external_lex_state = 8}, - [9111] = {.lex_state = 318, .external_lex_state = 8}, - [9112] = {.lex_state = 23, .external_lex_state = 8}, - [9113] = {.lex_state = 0, .external_lex_state = 8}, - [9114] = {.lex_state = 318, .external_lex_state = 8}, - [9115] = {.lex_state = 0, .external_lex_state = 8}, - [9116] = {.lex_state = 23, .external_lex_state = 8}, - [9117] = {.lex_state = 23, .external_lex_state = 8}, - [9118] = {.lex_state = 318, .external_lex_state = 8}, - [9119] = {.lex_state = 23, .external_lex_state = 8}, - [9120] = {.lex_state = 0, .external_lex_state = 8}, - [9121] = {.lex_state = 0, .external_lex_state = 8}, + [9101] = {.lex_state = 0, .external_lex_state = 9}, + [9102] = {.lex_state = 0, .external_lex_state = 8}, + [9103] = {.lex_state = 0, .external_lex_state = 8}, + [9104] = {.lex_state = 0, .external_lex_state = 8}, + [9105] = {.lex_state = 0, .external_lex_state = 8}, + [9106] = {.lex_state = 0, .external_lex_state = 8}, + [9107] = {.lex_state = 30, .external_lex_state = 8}, + [9108] = {.lex_state = 0, .external_lex_state = 8}, + [9109] = {.lex_state = 30, .external_lex_state = 8}, + [9110] = {.lex_state = 0, .external_lex_state = 9}, + [9111] = {.lex_state = 0, .external_lex_state = 8}, + [9112] = {.lex_state = 318, .external_lex_state = 8}, + [9113] = {.lex_state = 0, .external_lex_state = 9}, + [9114] = {.lex_state = 0, .external_lex_state = 9}, + [9115] = {.lex_state = 0, .external_lex_state = 9}, + [9116] = {.lex_state = 0, .external_lex_state = 8}, + [9117] = {.lex_state = 30, .external_lex_state = 8}, + [9118] = {.lex_state = 0, .external_lex_state = 8}, + [9119] = {.lex_state = 0, .external_lex_state = 9}, + [9120] = {.lex_state = 23, .external_lex_state = 8}, + [9121] = {.lex_state = 23, .external_lex_state = 8}, [9122] = {.lex_state = 0, .external_lex_state = 8}, - [9123] = {.lex_state = 0, .external_lex_state = 8}, - [9124] = {.lex_state = 0, .external_lex_state = 8}, + [9123] = {.lex_state = 0, .external_lex_state = 9}, + [9124] = {.lex_state = 23, .external_lex_state = 8}, [9125] = {.lex_state = 0, .external_lex_state = 8}, - [9126] = {.lex_state = 0, .external_lex_state = 8}, + [9126] = {.lex_state = 23, .external_lex_state = 8}, [9127] = {.lex_state = 0, .external_lex_state = 8}, [9128] = {.lex_state = 0, .external_lex_state = 8}, [9129] = {.lex_state = 0, .external_lex_state = 8}, - [9130] = {.lex_state = 0, .external_lex_state = 8}, - [9131] = {.lex_state = 0, .external_lex_state = 8}, + [9130] = {.lex_state = 23, .external_lex_state = 8}, + [9131] = {.lex_state = 0, .external_lex_state = 9}, [9132] = {.lex_state = 23, .external_lex_state = 8}, - [9133] = {.lex_state = 0, .external_lex_state = 8}, - [9134] = {.lex_state = 0, .external_lex_state = 8}, - [9135] = {.lex_state = 0, .external_lex_state = 8}, - [9136] = {.lex_state = 23, .external_lex_state = 8}, - [9137] = {.lex_state = 318, .external_lex_state = 8}, - [9138] = {.lex_state = 23, .external_lex_state = 8}, - [9139] = {.lex_state = 23, .external_lex_state = 8}, - [9140] = {.lex_state = 23, .external_lex_state = 8}, + [9133] = {.lex_state = 0, .external_lex_state = 9}, + [9134] = {.lex_state = 0, .external_lex_state = 9}, + [9135] = {.lex_state = 0, .external_lex_state = 9}, + [9136] = {.lex_state = 0, .external_lex_state = 9}, + [9137] = {.lex_state = 30, .external_lex_state = 8}, + [9138] = {.lex_state = 0, .external_lex_state = 8}, + [9139] = {.lex_state = 0, .external_lex_state = 8}, + [9140] = {.lex_state = 0, .external_lex_state = 8}, [9141] = {.lex_state = 0, .external_lex_state = 8}, - [9142] = {.lex_state = 23, .external_lex_state = 8}, - [9143] = {.lex_state = 0, .external_lex_state = 9}, - [9144] = {.lex_state = 0, .external_lex_state = 8}, + [9142] = {.lex_state = 0, .external_lex_state = 8}, + [9143] = {.lex_state = 0, .external_lex_state = 8}, + [9144] = {.lex_state = 0, .external_lex_state = 9}, [9145] = {.lex_state = 0, .external_lex_state = 8}, - [9146] = {.lex_state = 0, .external_lex_state = 8}, - [9147] = {.lex_state = 23, .external_lex_state = 8}, + [9146] = {.lex_state = 0, .external_lex_state = 9}, + [9147] = {.lex_state = 0, .external_lex_state = 9}, [9148] = {.lex_state = 0, .external_lex_state = 8}, - [9149] = {.lex_state = 0, .external_lex_state = 8}, - [9150] = {.lex_state = 0, .external_lex_state = 8}, - [9151] = {.lex_state = 0, .external_lex_state = 8}, - [9152] = {.lex_state = 318, .external_lex_state = 8}, + [9149] = {.lex_state = 0, .external_lex_state = 9}, + [9150] = {.lex_state = 0, .external_lex_state = 9}, + [9151] = {.lex_state = 23, .external_lex_state = 8}, + [9152] = {.lex_state = 0, .external_lex_state = 9}, [9153] = {.lex_state = 0, .external_lex_state = 8}, - [9154] = {.lex_state = 0, .external_lex_state = 8}, - [9155] = {.lex_state = 0, .external_lex_state = 8}, - [9156] = {.lex_state = 23, .external_lex_state = 8}, - [9157] = {.lex_state = 0, .external_lex_state = 8}, + [9154] = {.lex_state = 0, .external_lex_state = 9}, + [9155] = {.lex_state = 23, .external_lex_state = 8}, + [9156] = {.lex_state = 0, .external_lex_state = 9}, + [9157] = {.lex_state = 0, .external_lex_state = 9}, [9158] = {.lex_state = 0, .external_lex_state = 8}, - [9159] = {.lex_state = 23, .external_lex_state = 8}, - [9160] = {.lex_state = 0, .external_lex_state = 8}, - [9161] = {.lex_state = 0, .external_lex_state = 8}, + [9159] = {.lex_state = 0, .external_lex_state = 9}, + [9160] = {.lex_state = 0, .external_lex_state = 9}, + [9161] = {.lex_state = 0, .external_lex_state = 9}, [9162] = {.lex_state = 23, .external_lex_state = 8}, - [9163] = {.lex_state = 0, .external_lex_state = 8}, - [9164] = {.lex_state = 318, .external_lex_state = 8}, + [9163] = {.lex_state = 0, .external_lex_state = 9}, + [9164] = {.lex_state = 23, .external_lex_state = 8}, [9165] = {.lex_state = 0, .external_lex_state = 8}, - [9166] = {.lex_state = 318, .external_lex_state = 8}, - [9167] = {.lex_state = 318, .external_lex_state = 8}, - [9168] = {.lex_state = 0, .external_lex_state = 8}, + [9166] = {.lex_state = 0, .external_lex_state = 8}, + [9167] = {.lex_state = 0, .external_lex_state = 8}, + [9168] = {.lex_state = 0, .external_lex_state = 9}, [9169] = {.lex_state = 0, .external_lex_state = 8}, - [9170] = {.lex_state = 23, .external_lex_state = 8}, - [9171] = {.lex_state = 318, .external_lex_state = 8}, - [9172] = {.lex_state = 318, .external_lex_state = 8}, + [9170] = {.lex_state = 30, .external_lex_state = 8}, + [9171] = {.lex_state = 0, .external_lex_state = 8}, + [9172] = {.lex_state = 0, .external_lex_state = 8}, [9173] = {.lex_state = 0, .external_lex_state = 8}, - [9174] = {.lex_state = 0, .external_lex_state = 8}, - [9175] = {.lex_state = 23, .external_lex_state = 8}, - [9176] = {.lex_state = 0, .external_lex_state = 8}, - [9177] = {.lex_state = 0, .external_lex_state = 8}, + [9174] = {.lex_state = 0, .external_lex_state = 9}, + [9175] = {.lex_state = 0, .external_lex_state = 9}, + [9176] = {.lex_state = 0, .external_lex_state = 9}, + [9177] = {.lex_state = 0, .external_lex_state = 9}, [9178] = {.lex_state = 0, .external_lex_state = 8}, - [9179] = {.lex_state = 318, .external_lex_state = 8}, + [9179] = {.lex_state = 0, .external_lex_state = 8}, [9180] = {.lex_state = 0, .external_lex_state = 8}, [9181] = {.lex_state = 0, .external_lex_state = 8}, [9182] = {.lex_state = 0, .external_lex_state = 8}, - [9183] = {.lex_state = 23, .external_lex_state = 8}, + [9183] = {.lex_state = 0, .external_lex_state = 8}, [9184] = {.lex_state = 0, .external_lex_state = 8}, - [9185] = {.lex_state = 318, .external_lex_state = 8}, + [9185] = {.lex_state = 30, .external_lex_state = 8}, [9186] = {.lex_state = 0, .external_lex_state = 8}, [9187] = {.lex_state = 0, .external_lex_state = 8}, [9188] = {.lex_state = 0, .external_lex_state = 8}, - [9189] = {.lex_state = 0, .external_lex_state = 8}, + [9189] = {.lex_state = 23, .external_lex_state = 8}, [9190] = {.lex_state = 23, .external_lex_state = 8}, - [9191] = {.lex_state = 23, .external_lex_state = 8}, + [9191] = {.lex_state = 0, .external_lex_state = 8}, [9192] = {.lex_state = 0, .external_lex_state = 8}, - [9193] = {.lex_state = 318, .external_lex_state = 8}, - [9194] = {.lex_state = 0, .external_lex_state = 9}, - [9195] = {.lex_state = 0, .external_lex_state = 9}, + [9193] = {.lex_state = 0, .external_lex_state = 8}, + [9194] = {.lex_state = 30, .external_lex_state = 8}, + [9195] = {.lex_state = 0, .external_lex_state = 8}, [9196] = {.lex_state = 0, .external_lex_state = 8}, - [9197] = {.lex_state = 23, .external_lex_state = 8}, + [9197] = {.lex_state = 0, .external_lex_state = 8}, [9198] = {.lex_state = 0, .external_lex_state = 8}, - [9199] = {.lex_state = 318, .external_lex_state = 8}, - [9200] = {.lex_state = 23, .external_lex_state = 8}, + [9199] = {.lex_state = 0, .external_lex_state = 8}, + [9200] = {.lex_state = 0, .external_lex_state = 8}, [9201] = {.lex_state = 0, .external_lex_state = 8}, [9202] = {.lex_state = 0, .external_lex_state = 8}, [9203] = {.lex_state = 0, .external_lex_state = 8}, - [9204] = {.lex_state = 318, .external_lex_state = 8}, + [9204] = {.lex_state = 0, .external_lex_state = 8}, [9205] = {.lex_state = 23, .external_lex_state = 8}, - [9206] = {.lex_state = 0, .external_lex_state = 8}, + [9206] = {.lex_state = 23, .external_lex_state = 8}, [9207] = {.lex_state = 23, .external_lex_state = 8}, - [9208] = {.lex_state = 23, .external_lex_state = 8}, + [9208] = {.lex_state = 0, .external_lex_state = 8}, [9209] = {.lex_state = 0, .external_lex_state = 8}, [9210] = {.lex_state = 0, .external_lex_state = 8}, [9211] = {.lex_state = 0, .external_lex_state = 8}, - [9212] = {.lex_state = 23, .external_lex_state = 8}, - [9213] = {.lex_state = 23, .external_lex_state = 8}, - [9214] = {.lex_state = 23, .external_lex_state = 8}, - [9215] = {.lex_state = 0, .external_lex_state = 8}, + [9212] = {.lex_state = 0, .external_lex_state = 8}, + [9213] = {.lex_state = 0, .external_lex_state = 8}, + [9214] = {.lex_state = 0, .external_lex_state = 8}, + [9215] = {.lex_state = 30, .external_lex_state = 8}, [9216] = {.lex_state = 0, .external_lex_state = 8}, - [9217] = {.lex_state = 0, .external_lex_state = 9}, + [9217] = {.lex_state = 0, .external_lex_state = 8}, [9218] = {.lex_state = 0, .external_lex_state = 8}, [9219] = {.lex_state = 0, .external_lex_state = 8}, - [9220] = {.lex_state = 23, .external_lex_state = 8}, - [9221] = {.lex_state = 23, .external_lex_state = 8}, - [9222] = {.lex_state = 23, .external_lex_state = 8}, - [9223] = {.lex_state = 23, .external_lex_state = 8}, + [9220] = {.lex_state = 0, .external_lex_state = 8}, + [9221] = {.lex_state = 0, .external_lex_state = 8}, + [9222] = {.lex_state = 0, .external_lex_state = 8}, + [9223] = {.lex_state = 0, .external_lex_state = 8}, [9224] = {.lex_state = 0, .external_lex_state = 8}, - [9225] = {.lex_state = 0, .external_lex_state = 9}, + [9225] = {.lex_state = 0, .external_lex_state = 8}, [9226] = {.lex_state = 0, .external_lex_state = 8}, [9227] = {.lex_state = 0, .external_lex_state = 8}, - [9228] = {.lex_state = 318, .external_lex_state = 8}, + [9228] = {.lex_state = 0, .external_lex_state = 8}, [9229] = {.lex_state = 0, .external_lex_state = 8}, - [9230] = {.lex_state = 23, .external_lex_state = 8}, + [9230] = {.lex_state = 30, .external_lex_state = 8}, [9231] = {.lex_state = 0, .external_lex_state = 8}, - [9232] = {.lex_state = 23, .external_lex_state = 8}, + [9232] = {.lex_state = 0, .external_lex_state = 8}, [9233] = {.lex_state = 0, .external_lex_state = 8}, [9234] = {.lex_state = 0, .external_lex_state = 8}, - [9235] = {.lex_state = 318, .external_lex_state = 8}, - [9236] = {.lex_state = 318, .external_lex_state = 8}, + [9235] = {.lex_state = 0, .external_lex_state = 8}, + [9236] = {.lex_state = 0, .external_lex_state = 8}, [9237] = {.lex_state = 0, .external_lex_state = 8}, [9238] = {.lex_state = 0, .external_lex_state = 8}, - [9239] = {.lex_state = 23, .external_lex_state = 8}, - [9240] = {.lex_state = 318, .external_lex_state = 8}, - [9241] = {.lex_state = 0, .external_lex_state = 8}, - [9242] = {.lex_state = 23, .external_lex_state = 8}, - [9243] = {.lex_state = 318, .external_lex_state = 8}, + [9239] = {.lex_state = 0, .external_lex_state = 8}, + [9240] = {.lex_state = 0, .external_lex_state = 8}, + [9241] = {.lex_state = 0, .external_lex_state = 9}, + [9242] = {.lex_state = 0, .external_lex_state = 8}, + [9243] = {.lex_state = 0, .external_lex_state = 9}, [9244] = {.lex_state = 0, .external_lex_state = 9}, [9245] = {.lex_state = 0, .external_lex_state = 8}, - [9246] = {.lex_state = 0, .external_lex_state = 8}, + [9246] = {.lex_state = 0, .external_lex_state = 9}, [9247] = {.lex_state = 0, .external_lex_state = 8}, - [9248] = {.lex_state = 318, .external_lex_state = 8}, - [9249] = {.lex_state = 0, .external_lex_state = 8}, - [9250] = {.lex_state = 23, .external_lex_state = 8}, + [9248] = {.lex_state = 0, .external_lex_state = 9}, + [9249] = {.lex_state = 30, .external_lex_state = 8}, + [9250] = {.lex_state = 0, .external_lex_state = 8}, [9251] = {.lex_state = 0, .external_lex_state = 8}, - [9252] = {.lex_state = 23, .external_lex_state = 8}, + [9252] = {.lex_state = 0, .external_lex_state = 8}, [9253] = {.lex_state = 0, .external_lex_state = 8}, [9254] = {.lex_state = 0, .external_lex_state = 8}, [9255] = {.lex_state = 0, .external_lex_state = 8}, - [9256] = {.lex_state = 0, .external_lex_state = 8}, - [9257] = {.lex_state = 23, .external_lex_state = 8}, - [9258] = {.lex_state = 318, .external_lex_state = 8}, + [9256] = {.lex_state = 0, .external_lex_state = 9}, + [9257] = {.lex_state = 30, .external_lex_state = 8}, + [9258] = {.lex_state = 0, .external_lex_state = 9}, [9259] = {.lex_state = 0, .external_lex_state = 8}, - [9260] = {.lex_state = 23, .external_lex_state = 8}, - [9261] = {.lex_state = 23, .external_lex_state = 8}, + [9260] = {.lex_state = 0, .external_lex_state = 9}, + [9261] = {.lex_state = 0, .external_lex_state = 8}, [9262] = {.lex_state = 0, .external_lex_state = 8}, - [9263] = {.lex_state = 0, .external_lex_state = 8}, - [9264] = {.lex_state = 0, .external_lex_state = 8}, - [9265] = {.lex_state = 0, .external_lex_state = 8}, + [9263] = {.lex_state = 23, .external_lex_state = 11}, + [9264] = {.lex_state = 318, .external_lex_state = 8}, + [9265] = {.lex_state = 0, .external_lex_state = 9}, [9266] = {.lex_state = 0, .external_lex_state = 8}, - [9267] = {.lex_state = 318, .external_lex_state = 8}, + [9267] = {.lex_state = 0, .external_lex_state = 8}, [9268] = {.lex_state = 0, .external_lex_state = 8}, [9269] = {.lex_state = 0, .external_lex_state = 8}, - [9270] = {.lex_state = 318, .external_lex_state = 8}, - [9271] = {.lex_state = 0, .external_lex_state = 8}, - [9272] = {.lex_state = 0, .external_lex_state = 8}, + [9270] = {.lex_state = 0, .external_lex_state = 8}, + [9271] = {.lex_state = 30, .external_lex_state = 8}, + [9272] = {.lex_state = 0, .external_lex_state = 9}, [9273] = {.lex_state = 0, .external_lex_state = 8}, - [9274] = {.lex_state = 0, .external_lex_state = 8}, - [9275] = {.lex_state = 318, .external_lex_state = 8}, - [9276] = {.lex_state = 318, .external_lex_state = 8}, - [9277] = {.lex_state = 318, .external_lex_state = 8}, - [9278] = {.lex_state = 0, .external_lex_state = 8}, - [9279] = {.lex_state = 0, .external_lex_state = 8}, + [9274] = {.lex_state = 0, .external_lex_state = 9}, + [9275] = {.lex_state = 0, .external_lex_state = 8}, + [9276] = {.lex_state = 0, .external_lex_state = 9}, + [9277] = {.lex_state = 0, .external_lex_state = 8}, + [9278] = {.lex_state = 0, .external_lex_state = 9}, + [9279] = {.lex_state = 0, .external_lex_state = 9}, [9280] = {.lex_state = 0, .external_lex_state = 8}, - [9281] = {.lex_state = 23, .external_lex_state = 8}, - [9282] = {.lex_state = 0, .external_lex_state = 8}, - [9283] = {.lex_state = 23, .external_lex_state = 8}, + [9281] = {.lex_state = 0, .external_lex_state = 8}, + [9282] = {.lex_state = 30, .external_lex_state = 8}, + [9283] = {.lex_state = 0, .external_lex_state = 8}, [9284] = {.lex_state = 0, .external_lex_state = 8}, [9285] = {.lex_state = 0, .external_lex_state = 8}, - [9286] = {.lex_state = 318, .external_lex_state = 8}, - [9287] = {.lex_state = 318, .external_lex_state = 8}, - [9288] = {.lex_state = 318, .external_lex_state = 8}, + [9286] = {.lex_state = 0, .external_lex_state = 8}, + [9287] = {.lex_state = 0, .external_lex_state = 8}, + [9288] = {.lex_state = 0, .external_lex_state = 8}, [9289] = {.lex_state = 0, .external_lex_state = 8}, [9290] = {.lex_state = 0, .external_lex_state = 8}, - [9291] = {.lex_state = 0, .external_lex_state = 8}, + [9291] = {.lex_state = 0, .external_lex_state = 9}, [9292] = {.lex_state = 0, .external_lex_state = 8}, - [9293] = {.lex_state = 23, .external_lex_state = 8}, - [9294] = {.lex_state = 318, .external_lex_state = 8}, + [9293] = {.lex_state = 0, .external_lex_state = 8}, + [9294] = {.lex_state = 0, .external_lex_state = 9}, [9295] = {.lex_state = 0, .external_lex_state = 8}, - [9296] = {.lex_state = 0, .external_lex_state = 8}, - [9297] = {.lex_state = 318, .external_lex_state = 8}, + [9296] = {.lex_state = 0, .external_lex_state = 9}, + [9297] = {.lex_state = 0, .external_lex_state = 9}, [9298] = {.lex_state = 0, .external_lex_state = 8}, [9299] = {.lex_state = 0, .external_lex_state = 8}, [9300] = {.lex_state = 0, .external_lex_state = 8}, - [9301] = {.lex_state = 318, .external_lex_state = 8}, - [9302] = {.lex_state = 0, .external_lex_state = 8}, - [9303] = {.lex_state = 23, .external_lex_state = 8}, - [9304] = {.lex_state = 318, .external_lex_state = 8}, - [9305] = {.lex_state = 318, .external_lex_state = 8}, + [9301] = {.lex_state = 0, .external_lex_state = 8}, + [9302] = {.lex_state = 30, .external_lex_state = 8}, + [9303] = {.lex_state = 0, .external_lex_state = 9}, + [9304] = {.lex_state = 0, .external_lex_state = 8}, + [9305] = {.lex_state = 0, .external_lex_state = 8}, [9306] = {.lex_state = 0, .external_lex_state = 8}, [9307] = {.lex_state = 0, .external_lex_state = 8}, [9308] = {.lex_state = 0, .external_lex_state = 8}, - [9309] = {.lex_state = 318, .external_lex_state = 8}, - [9310] = {.lex_state = 0, .external_lex_state = 8}, - [9311] = {.lex_state = 23, .external_lex_state = 8}, + [9309] = {.lex_state = 0, .external_lex_state = 8}, + [9310] = {.lex_state = 30, .external_lex_state = 8}, + [9311] = {.lex_state = 0, .external_lex_state = 9}, [9312] = {.lex_state = 0, .external_lex_state = 8}, - [9313] = {.lex_state = 318, .external_lex_state = 8}, + [9313] = {.lex_state = 0, .external_lex_state = 8}, [9314] = {.lex_state = 0, .external_lex_state = 8}, [9315] = {.lex_state = 0, .external_lex_state = 8}, - [9316] = {.lex_state = 23, .external_lex_state = 8}, - [9317] = {.lex_state = 23, .external_lex_state = 8}, + [9316] = {.lex_state = 0, .external_lex_state = 8}, + [9317] = {.lex_state = 0, .external_lex_state = 8}, [9318] = {.lex_state = 0, .external_lex_state = 8}, - [9319] = {.lex_state = 318, .external_lex_state = 8}, + [9319] = {.lex_state = 0, .external_lex_state = 8}, [9320] = {.lex_state = 0, .external_lex_state = 8}, - [9321] = {.lex_state = 318, .external_lex_state = 8}, - [9322] = {.lex_state = 0, .external_lex_state = 8}, - [9323] = {.lex_state = 318, .external_lex_state = 8}, + [9321] = {.lex_state = 0, .external_lex_state = 8}, + [9322] = {.lex_state = 30, .external_lex_state = 8}, + [9323] = {.lex_state = 0, .external_lex_state = 8}, [9324] = {.lex_state = 0, .external_lex_state = 8}, - [9325] = {.lex_state = 318, .external_lex_state = 8}, + [9325] = {.lex_state = 0, .external_lex_state = 8}, [9326] = {.lex_state = 0, .external_lex_state = 8}, [9327] = {.lex_state = 0, .external_lex_state = 8}, [9328] = {.lex_state = 0, .external_lex_state = 8}, - [9329] = {.lex_state = 23, .external_lex_state = 8}, - [9330] = {.lex_state = 23, .external_lex_state = 8}, - [9331] = {.lex_state = 23, .external_lex_state = 8}, - [9332] = {.lex_state = 23, .external_lex_state = 8}, - [9333] = {.lex_state = 23, .external_lex_state = 8}, - [9334] = {.lex_state = 318, .external_lex_state = 8}, - [9335] = {.lex_state = 23, .external_lex_state = 8}, - [9336] = {.lex_state = 23, .external_lex_state = 8}, - [9337] = {.lex_state = 318, .external_lex_state = 8}, + [9329] = {.lex_state = 0, .external_lex_state = 8}, + [9330] = {.lex_state = 0, .external_lex_state = 8}, + [9331] = {.lex_state = 0, .external_lex_state = 8}, + [9332] = {.lex_state = 0, .external_lex_state = 8}, + [9333] = {.lex_state = 0, .external_lex_state = 8}, + [9334] = {.lex_state = 0, .external_lex_state = 8}, + [9335] = {.lex_state = 0, .external_lex_state = 8}, + [9336] = {.lex_state = 0, .external_lex_state = 8}, + [9337] = {.lex_state = 0, .external_lex_state = 8}, [9338] = {.lex_state = 0, .external_lex_state = 8}, [9339] = {.lex_state = 0, .external_lex_state = 8}, [9340] = {.lex_state = 0, .external_lex_state = 8}, [9341] = {.lex_state = 0, .external_lex_state = 8}, - [9342] = {.lex_state = 23, .external_lex_state = 8}, - [9343] = {.lex_state = 318, .external_lex_state = 8}, + [9342] = {.lex_state = 0, .external_lex_state = 8}, + [9343] = {.lex_state = 0, .external_lex_state = 8}, [9344] = {.lex_state = 0, .external_lex_state = 8}, - [9345] = {.lex_state = 23, .external_lex_state = 8}, + [9345] = {.lex_state = 0, .external_lex_state = 8}, [9346] = {.lex_state = 0, .external_lex_state = 8}, [9347] = {.lex_state = 0, .external_lex_state = 8}, [9348] = {.lex_state = 0, .external_lex_state = 8}, - [9349] = {.lex_state = 318, .external_lex_state = 8}, + [9349] = {.lex_state = 0, .external_lex_state = 8}, [9350] = {.lex_state = 0, .external_lex_state = 8}, [9351] = {.lex_state = 0, .external_lex_state = 8}, - [9352] = {.lex_state = 318, .external_lex_state = 8}, + [9352] = {.lex_state = 0, .external_lex_state = 8}, [9353] = {.lex_state = 0, .external_lex_state = 8}, - [9354] = {.lex_state = 318, .external_lex_state = 8}, - [9355] = {.lex_state = 23, .external_lex_state = 8}, - [9356] = {.lex_state = 0, .external_lex_state = 8}, + [9354] = {.lex_state = 0, .external_lex_state = 9}, + [9355] = {.lex_state = 0, .external_lex_state = 8}, + [9356] = {.lex_state = 0, .external_lex_state = 9}, [9357] = {.lex_state = 0, .external_lex_state = 8}, - [9358] = {.lex_state = 0, .external_lex_state = 8}, - [9359] = {.lex_state = 0, .external_lex_state = 8}, - [9360] = {.lex_state = 23, .external_lex_state = 8}, - [9361] = {.lex_state = 318, .external_lex_state = 8}, - [9362] = {.lex_state = 0, .external_lex_state = 8}, - [9363] = {.lex_state = 318, .external_lex_state = 8}, - [9364] = {.lex_state = 23, .external_lex_state = 8}, + [9358] = {.lex_state = 0, .external_lex_state = 9}, + [9359] = {.lex_state = 0, .external_lex_state = 9}, + [9360] = {.lex_state = 0, .external_lex_state = 8}, + [9361] = {.lex_state = 0, .external_lex_state = 8}, + [9362] = {.lex_state = 318, .external_lex_state = 8}, + [9363] = {.lex_state = 0, .external_lex_state = 8}, + [9364] = {.lex_state = 0, .external_lex_state = 8}, [9365] = {.lex_state = 0, .external_lex_state = 8}, - [9366] = {.lex_state = 23, .external_lex_state = 8}, + [9366] = {.lex_state = 0, .external_lex_state = 8}, [9367] = {.lex_state = 0, .external_lex_state = 8}, - [9368] = {.lex_state = 0, .external_lex_state = 8}, - [9369] = {.lex_state = 23, .external_lex_state = 8}, - [9370] = {.lex_state = 318, .external_lex_state = 8}, + [9368] = {.lex_state = 30, .external_lex_state = 8}, + [9369] = {.lex_state = 0, .external_lex_state = 8}, + [9370] = {.lex_state = 0, .external_lex_state = 9}, [9371] = {.lex_state = 0, .external_lex_state = 8}, [9372] = {.lex_state = 0, .external_lex_state = 8}, - [9373] = {.lex_state = 23, .external_lex_state = 8}, + [9373] = {.lex_state = 0, .external_lex_state = 8}, [9374] = {.lex_state = 0, .external_lex_state = 8}, [9375] = {.lex_state = 0, .external_lex_state = 8}, - [9376] = {.lex_state = 318, .external_lex_state = 8}, - [9377] = {.lex_state = 318, .external_lex_state = 8}, - [9378] = {.lex_state = 318, .external_lex_state = 8}, - [9379] = {.lex_state = 23, .external_lex_state = 8}, - [9380] = {.lex_state = 23, .external_lex_state = 8}, + [9376] = {.lex_state = 30, .external_lex_state = 8}, + [9377] = {.lex_state = 0, .external_lex_state = 8}, + [9378] = {.lex_state = 0, .external_lex_state = 8}, + [9379] = {.lex_state = 0, .external_lex_state = 8}, + [9380] = {.lex_state = 0, .external_lex_state = 8}, [9381] = {.lex_state = 0, .external_lex_state = 8}, - [9382] = {.lex_state = 23, .external_lex_state = 8}, - [9383] = {.lex_state = 318, .external_lex_state = 8}, + [9382] = {.lex_state = 0, .external_lex_state = 8}, + [9383] = {.lex_state = 0, .external_lex_state = 8}, [9384] = {.lex_state = 0, .external_lex_state = 8}, [9385] = {.lex_state = 0, .external_lex_state = 8}, - [9386] = {.lex_state = 0, .external_lex_state = 8}, + [9386] = {.lex_state = 318, .external_lex_state = 8}, [9387] = {.lex_state = 0, .external_lex_state = 9}, - [9388] = {.lex_state = 0, .external_lex_state = 8}, - [9389] = {.lex_state = 0, .external_lex_state = 8}, + [9388] = {.lex_state = 0, .external_lex_state = 9}, + [9389] = {.lex_state = 30, .external_lex_state = 8}, [9390] = {.lex_state = 0, .external_lex_state = 8}, [9391] = {.lex_state = 0, .external_lex_state = 8}, - [9392] = {.lex_state = 0, .external_lex_state = 8}, - [9393] = {.lex_state = 0, .external_lex_state = 8}, + [9392] = {.lex_state = 30, .external_lex_state = 8}, + [9393] = {.lex_state = 0, .external_lex_state = 9}, [9394] = {.lex_state = 0, .external_lex_state = 8}, [9395] = {.lex_state = 0, .external_lex_state = 8}, - [9396] = {.lex_state = 0, .external_lex_state = 9}, + [9396] = {.lex_state = 0, .external_lex_state = 8}, [9397] = {.lex_state = 0, .external_lex_state = 8}, [9398] = {.lex_state = 0, .external_lex_state = 8}, [9399] = {.lex_state = 0, .external_lex_state = 8}, - [9400] = {.lex_state = 318, .external_lex_state = 8}, - [9401] = {.lex_state = 0, .external_lex_state = 8}, + [9400] = {.lex_state = 0, .external_lex_state = 8}, + [9401] = {.lex_state = 30, .external_lex_state = 8}, [9402] = {.lex_state = 0, .external_lex_state = 9}, - [9403] = {.lex_state = 0, .external_lex_state = 8}, - [9404] = {.lex_state = 0, .external_lex_state = 8}, - [9405] = {.lex_state = 0, .external_lex_state = 8}, - [9406] = {.lex_state = 0, .external_lex_state = 8}, + [9403] = {.lex_state = 30, .external_lex_state = 8}, + [9404] = {.lex_state = 0, .external_lex_state = 9}, + [9405] = {.lex_state = 0, .external_lex_state = 9}, + [9406] = {.lex_state = 30, .external_lex_state = 8}, [9407] = {.lex_state = 0, .external_lex_state = 8}, - [9408] = {.lex_state = 0, .external_lex_state = 9}, + [9408] = {.lex_state = 0, .external_lex_state = 8}, [9409] = {.lex_state = 0, .external_lex_state = 8}, [9410] = {.lex_state = 0, .external_lex_state = 8}, - [9411] = {.lex_state = 30, .external_lex_state = 8}, + [9411] = {.lex_state = 0, .external_lex_state = 8}, [9412] = {.lex_state = 0, .external_lex_state = 9}, - [9413] = {.lex_state = 0, .external_lex_state = 9}, + [9413] = {.lex_state = 0, .external_lex_state = 8}, [9414] = {.lex_state = 0, .external_lex_state = 8}, - [9415] = {.lex_state = 0, .external_lex_state = 9}, - [9416] = {.lex_state = 30, .external_lex_state = 8}, + [9415] = {.lex_state = 30, .external_lex_state = 8}, + [9416] = {.lex_state = 0, .external_lex_state = 8}, [9417] = {.lex_state = 0, .external_lex_state = 8}, - [9418] = {.lex_state = 30, .external_lex_state = 8}, - [9419] = {.lex_state = 0, .external_lex_state = 9}, + [9418] = {.lex_state = 0, .external_lex_state = 9}, + [9419] = {.lex_state = 0, .external_lex_state = 8}, [9420] = {.lex_state = 0, .external_lex_state = 8}, - [9421] = {.lex_state = 0, .external_lex_state = 9}, - [9422] = {.lex_state = 0, .external_lex_state = 9}, + [9421] = {.lex_state = 0, .external_lex_state = 8}, + [9422] = {.lex_state = 0, .external_lex_state = 8}, [9423] = {.lex_state = 0, .external_lex_state = 8}, [9424] = {.lex_state = 0, .external_lex_state = 9}, - [9425] = {.lex_state = 0, .external_lex_state = 9}, - [9426] = {.lex_state = 0, .external_lex_state = 9}, - [9427] = {.lex_state = 0, .external_lex_state = 9}, - [9428] = {.lex_state = 30, .external_lex_state = 8}, + [9425] = {.lex_state = 0, .external_lex_state = 8}, + [9426] = {.lex_state = 0, .external_lex_state = 8}, + [9427] = {.lex_state = 0, .external_lex_state = 8}, + [9428] = {.lex_state = 0, .external_lex_state = 8}, [9429] = {.lex_state = 0, .external_lex_state = 9}, - [9430] = {.lex_state = 0, .external_lex_state = 9}, - [9431] = {.lex_state = 0, .external_lex_state = 9}, - [9432] = {.lex_state = 30, .external_lex_state = 8}, - [9433] = {.lex_state = 0, .external_lex_state = 9}, + [9430] = {.lex_state = 23, .external_lex_state = 11}, + [9431] = {.lex_state = 0, .external_lex_state = 8}, + [9432] = {.lex_state = 0, .external_lex_state = 9}, + [9433] = {.lex_state = 0, .external_lex_state = 8}, [9434] = {.lex_state = 0, .external_lex_state = 8}, [9435] = {.lex_state = 0, .external_lex_state = 8}, - [9436] = {.lex_state = 0, .external_lex_state = 9}, - [9437] = {.lex_state = 30, .external_lex_state = 8}, - [9438] = {.lex_state = 0, .external_lex_state = 9}, + [9436] = {.lex_state = 0, .external_lex_state = 8}, + [9437] = {.lex_state = 0, .external_lex_state = 8}, + [9438] = {.lex_state = 0, .external_lex_state = 8}, [9439] = {.lex_state = 0, .external_lex_state = 8}, [9440] = {.lex_state = 0, .external_lex_state = 9}, - [9441] = {.lex_state = 0, .external_lex_state = 9}, + [9441] = {.lex_state = 0, .external_lex_state = 8}, [9442] = {.lex_state = 0, .external_lex_state = 8}, - [9443] = {.lex_state = 0, .external_lex_state = 8}, - [9444] = {.lex_state = 0, .external_lex_state = 8}, - [9445] = {.lex_state = 0, .external_lex_state = 8}, - [9446] = {.lex_state = 30, .external_lex_state = 8}, - [9447] = {.lex_state = 0, .external_lex_state = 9}, - [9448] = {.lex_state = 0, .external_lex_state = 8}, + [9443] = {.lex_state = 0, .external_lex_state = 9}, + [9444] = {.lex_state = 30, .external_lex_state = 8}, + [9445] = {.lex_state = 0, .external_lex_state = 9}, + [9446] = {.lex_state = 0, .external_lex_state = 8}, + [9447] = {.lex_state = 30, .external_lex_state = 8}, + [9448] = {.lex_state = 30, .external_lex_state = 8}, [9449] = {.lex_state = 0, .external_lex_state = 8}, - [9450] = {.lex_state = 0, .external_lex_state = 9}, - [9451] = {.lex_state = 0, .external_lex_state = 9}, - [9452] = {.lex_state = 0, .external_lex_state = 9}, - [9453] = {.lex_state = 0, .external_lex_state = 8}, - [9454] = {.lex_state = 0, .external_lex_state = 8}, - [9455] = {.lex_state = 0, .external_lex_state = 9}, - [9456] = {.lex_state = 30, .external_lex_state = 8}, - [9457] = {.lex_state = 0, .external_lex_state = 9}, - [9458] = {.lex_state = 0, .external_lex_state = 8}, + [9450] = {.lex_state = 0, .external_lex_state = 8}, + [9451] = {.lex_state = 0, .external_lex_state = 8}, + [9452] = {.lex_state = 0, .external_lex_state = 8}, + [9453] = {.lex_state = 0, .external_lex_state = 9}, + [9454] = {.lex_state = 318, .external_lex_state = 8}, + [9455] = {.lex_state = 0, .external_lex_state = 8}, + [9456] = {.lex_state = 0, .external_lex_state = 8}, + [9457] = {.lex_state = 318, .external_lex_state = 8}, + [9458] = {.lex_state = 0, .external_lex_state = 9}, [9459] = {.lex_state = 0, .external_lex_state = 8}, - [9460] = {.lex_state = 30, .external_lex_state = 8}, + [9460] = {.lex_state = 0, .external_lex_state = 9}, [9461] = {.lex_state = 0, .external_lex_state = 9}, - [9462] = {.lex_state = 0, .external_lex_state = 8}, + [9462] = {.lex_state = 23, .external_lex_state = 8}, [9463] = {.lex_state = 0, .external_lex_state = 8}, - [9464] = {.lex_state = 0, .external_lex_state = 8}, + [9464] = {.lex_state = 23, .external_lex_state = 8}, [9465] = {.lex_state = 0, .external_lex_state = 8}, [9466] = {.lex_state = 0, .external_lex_state = 8}, [9467] = {.lex_state = 0, .external_lex_state = 8}, - [9468] = {.lex_state = 30, .external_lex_state = 8}, - [9469] = {.lex_state = 0, .external_lex_state = 8}, - [9470] = {.lex_state = 0, .external_lex_state = 9}, - [9471] = {.lex_state = 0, .external_lex_state = 8}, + [9468] = {.lex_state = 23, .external_lex_state = 8}, + [9469] = {.lex_state = 318, .external_lex_state = 8}, + [9470] = {.lex_state = 0, .external_lex_state = 8}, + [9471] = {.lex_state = 23, .external_lex_state = 8}, [9472] = {.lex_state = 0, .external_lex_state = 8}, [9473] = {.lex_state = 0, .external_lex_state = 8}, - [9474] = {.lex_state = 0, .external_lex_state = 9}, + [9474] = {.lex_state = 0, .external_lex_state = 8}, [9475] = {.lex_state = 0, .external_lex_state = 8}, - [9476] = {.lex_state = 0, .external_lex_state = 8}, - [9477] = {.lex_state = 0, .external_lex_state = 9}, - [9478] = {.lex_state = 0, .external_lex_state = 8}, + [9476] = {.lex_state = 23, .external_lex_state = 8}, + [9477] = {.lex_state = 0, .external_lex_state = 8}, + [9478] = {.lex_state = 23, .external_lex_state = 8}, [9479] = {.lex_state = 0, .external_lex_state = 8}, [9480] = {.lex_state = 0, .external_lex_state = 8}, - [9481] = {.lex_state = 0, .external_lex_state = 8}, - [9482] = {.lex_state = 0, .external_lex_state = 9}, - [9483] = {.lex_state = 0, .external_lex_state = 9}, - [9484] = {.lex_state = 0, .external_lex_state = 9}, - [9485] = {.lex_state = 0, .external_lex_state = 8}, - [9486] = {.lex_state = 0, .external_lex_state = 8}, + [9481] = {.lex_state = 0, .external_lex_state = 9}, + [9482] = {.lex_state = 23, .external_lex_state = 8}, + [9483] = {.lex_state = 23, .external_lex_state = 8}, + [9484] = {.lex_state = 23, .external_lex_state = 8}, + [9485] = {.lex_state = 23, .external_lex_state = 8}, + [9486] = {.lex_state = 0, .external_lex_state = 9}, [9487] = {.lex_state = 0, .external_lex_state = 8}, [9488] = {.lex_state = 0, .external_lex_state = 8}, [9489] = {.lex_state = 0, .external_lex_state = 8}, [9490] = {.lex_state = 0, .external_lex_state = 8}, - [9491] = {.lex_state = 0, .external_lex_state = 9}, + [9491] = {.lex_state = 0, .external_lex_state = 8}, [9492] = {.lex_state = 0, .external_lex_state = 8}, [9493] = {.lex_state = 0, .external_lex_state = 8}, [9494] = {.lex_state = 0, .external_lex_state = 8}, - [9495] = {.lex_state = 0, .external_lex_state = 9}, - [9496] = {.lex_state = 0, .external_lex_state = 9}, - [9497] = {.lex_state = 0, .external_lex_state = 9}, - [9498] = {.lex_state = 0, .external_lex_state = 9}, + [9495] = {.lex_state = 0, .external_lex_state = 8}, + [9496] = {.lex_state = 0, .external_lex_state = 8}, + [9497] = {.lex_state = 0, .external_lex_state = 8}, + [9498] = {.lex_state = 0, .external_lex_state = 8}, [9499] = {.lex_state = 0, .external_lex_state = 8}, - [9500] = {.lex_state = 0, .external_lex_state = 9}, - [9501] = {.lex_state = 0, .external_lex_state = 9}, - [9502] = {.lex_state = 0, .external_lex_state = 9}, - [9503] = {.lex_state = 0, .external_lex_state = 9}, - [9504] = {.lex_state = 0, .external_lex_state = 9}, - [9505] = {.lex_state = 23, .external_lex_state = 11}, - [9506] = {.lex_state = 0, .external_lex_state = 8}, - [9507] = {.lex_state = 0, .external_lex_state = 8}, - [9508] = {.lex_state = 30, .external_lex_state = 8}, - [9509] = {.lex_state = 0, .external_lex_state = 9}, + [9500] = {.lex_state = 0, .external_lex_state = 8}, + [9501] = {.lex_state = 23, .external_lex_state = 8}, + [9502] = {.lex_state = 23, .external_lex_state = 8}, + [9503] = {.lex_state = 0, .external_lex_state = 8}, + [9504] = {.lex_state = 0, .external_lex_state = 8}, + [9505] = {.lex_state = 0, .external_lex_state = 9}, + [9506] = {.lex_state = 23, .external_lex_state = 8}, + [9507] = {.lex_state = 23, .external_lex_state = 8}, + [9508] = {.lex_state = 0, .external_lex_state = 8}, + [9509] = {.lex_state = 0, .external_lex_state = 8}, [9510] = {.lex_state = 0, .external_lex_state = 8}, - [9511] = {.lex_state = 0, .external_lex_state = 8}, + [9511] = {.lex_state = 23, .external_lex_state = 8}, [9512] = {.lex_state = 0, .external_lex_state = 8}, - [9513] = {.lex_state = 0, .external_lex_state = 9}, - [9514] = {.lex_state = 30, .external_lex_state = 8}, - [9515] = {.lex_state = 0, .external_lex_state = 8}, - [9516] = {.lex_state = 318, .external_lex_state = 8}, - [9517] = {.lex_state = 0, .external_lex_state = 8}, - [9518] = {.lex_state = 0, .external_lex_state = 8}, + [9513] = {.lex_state = 0, .external_lex_state = 8}, + [9514] = {.lex_state = 0, .external_lex_state = 8}, + [9515] = {.lex_state = 23, .external_lex_state = 8}, + [9516] = {.lex_state = 0, .external_lex_state = 8}, + [9517] = {.lex_state = 318, .external_lex_state = 8}, + [9518] = {.lex_state = 23, .external_lex_state = 8}, [9519] = {.lex_state = 0, .external_lex_state = 8}, [9520] = {.lex_state = 0, .external_lex_state = 8}, - [9521] = {.lex_state = 0, .external_lex_state = 9}, - [9522] = {.lex_state = 0, .external_lex_state = 8}, + [9521] = {.lex_state = 0, .external_lex_state = 8}, + [9522] = {.lex_state = 23, .external_lex_state = 8}, [9523] = {.lex_state = 0, .external_lex_state = 8}, - [9524] = {.lex_state = 0, .external_lex_state = 9}, - [9525] = {.lex_state = 0, .external_lex_state = 8}, + [9524] = {.lex_state = 0, .external_lex_state = 8}, + [9525] = {.lex_state = 23, .external_lex_state = 8}, [9526] = {.lex_state = 0, .external_lex_state = 8}, - [9527] = {.lex_state = 30, .external_lex_state = 8}, + [9527] = {.lex_state = 23, .external_lex_state = 8}, [9528] = {.lex_state = 0, .external_lex_state = 8}, - [9529] = {.lex_state = 0, .external_lex_state = 8}, + [9529] = {.lex_state = 23, .external_lex_state = 8}, [9530] = {.lex_state = 0, .external_lex_state = 8}, [9531] = {.lex_state = 0, .external_lex_state = 8}, [9532] = {.lex_state = 0, .external_lex_state = 8}, - [9533] = {.lex_state = 0, .external_lex_state = 9}, + [9533] = {.lex_state = 0, .external_lex_state = 8}, [9534] = {.lex_state = 0, .external_lex_state = 8}, [9535] = {.lex_state = 0, .external_lex_state = 8}, [9536] = {.lex_state = 0, .external_lex_state = 8}, [9537] = {.lex_state = 0, .external_lex_state = 8}, - [9538] = {.lex_state = 0, .external_lex_state = 9}, + [9538] = {.lex_state = 0, .external_lex_state = 8}, [9539] = {.lex_state = 0, .external_lex_state = 8}, [9540] = {.lex_state = 0, .external_lex_state = 8}, - [9541] = {.lex_state = 0, .external_lex_state = 9}, + [9541] = {.lex_state = 0, .external_lex_state = 8}, [9542] = {.lex_state = 0, .external_lex_state = 8}, - [9543] = {.lex_state = 0, .external_lex_state = 8}, + [9543] = {.lex_state = 23, .external_lex_state = 8}, [9544] = {.lex_state = 0, .external_lex_state = 8}, - [9545] = {.lex_state = 0, .external_lex_state = 8}, + [9545] = {.lex_state = 23, .external_lex_state = 8}, [9546] = {.lex_state = 0, .external_lex_state = 8}, [9547] = {.lex_state = 0, .external_lex_state = 8}, [9548] = {.lex_state = 0, .external_lex_state = 8}, [9549] = {.lex_state = 0, .external_lex_state = 8}, [9550] = {.lex_state = 0, .external_lex_state = 8}, - [9551] = {.lex_state = 0, .external_lex_state = 9}, - [9552] = {.lex_state = 30, .external_lex_state = 8}, - [9553] = {.lex_state = 0, .external_lex_state = 9}, - [9554] = {.lex_state = 30, .external_lex_state = 8}, + [9551] = {.lex_state = 0, .external_lex_state = 8}, + [9552] = {.lex_state = 0, .external_lex_state = 8}, + [9553] = {.lex_state = 0, .external_lex_state = 8}, + [9554] = {.lex_state = 0, .external_lex_state = 8}, [9555] = {.lex_state = 0, .external_lex_state = 8}, - [9556] = {.lex_state = 0, .external_lex_state = 8}, + [9556] = {.lex_state = 23, .external_lex_state = 8}, [9557] = {.lex_state = 0, .external_lex_state = 8}, [9558] = {.lex_state = 0, .external_lex_state = 8}, [9559] = {.lex_state = 0, .external_lex_state = 8}, [9560] = {.lex_state = 0, .external_lex_state = 8}, [9561] = {.lex_state = 0, .external_lex_state = 8}, - [9562] = {.lex_state = 0, .external_lex_state = 9}, + [9562] = {.lex_state = 23, .external_lex_state = 8}, [9563] = {.lex_state = 0, .external_lex_state = 8}, - [9564] = {.lex_state = 30, .external_lex_state = 8}, - [9565] = {.lex_state = 30, .external_lex_state = 8}, + [9564] = {.lex_state = 0, .external_lex_state = 8}, + [9565] = {.lex_state = 23, .external_lex_state = 8}, [9566] = {.lex_state = 0, .external_lex_state = 8}, [9567] = {.lex_state = 0, .external_lex_state = 8}, - [9568] = {.lex_state = 0, .external_lex_state = 8}, + [9568] = {.lex_state = 23, .external_lex_state = 8}, [9569] = {.lex_state = 0, .external_lex_state = 8}, - [9570] = {.lex_state = 0, .external_lex_state = 9}, - [9571] = {.lex_state = 0, .external_lex_state = 8}, + [9570] = {.lex_state = 0, .external_lex_state = 8}, + [9571] = {.lex_state = 23, .external_lex_state = 8}, [9572] = {.lex_state = 0, .external_lex_state = 8}, - [9573] = {.lex_state = 0, .external_lex_state = 9}, - [9574] = {.lex_state = 0, .external_lex_state = 9}, - [9575] = {.lex_state = 0, .external_lex_state = 8}, + [9573] = {.lex_state = 23, .external_lex_state = 8}, + [9574] = {.lex_state = 0, .external_lex_state = 8}, + [9575] = {.lex_state = 23, .external_lex_state = 8}, [9576] = {.lex_state = 0, .external_lex_state = 8}, - [9577] = {.lex_state = 0, .external_lex_state = 8}, - [9578] = {.lex_state = 30, .external_lex_state = 8}, + [9577] = {.lex_state = 23, .external_lex_state = 8}, + [9578] = {.lex_state = 23, .external_lex_state = 8}, [9579] = {.lex_state = 0, .external_lex_state = 8}, [9580] = {.lex_state = 0, .external_lex_state = 8}, [9581] = {.lex_state = 0, .external_lex_state = 8}, [9582] = {.lex_state = 0, .external_lex_state = 8}, [9583] = {.lex_state = 0, .external_lex_state = 8}, [9584] = {.lex_state = 0, .external_lex_state = 8}, - [9585] = {.lex_state = 0, .external_lex_state = 8}, + [9585] = {.lex_state = 23, .external_lex_state = 8}, [9586] = {.lex_state = 23, .external_lex_state = 8}, [9587] = {.lex_state = 23, .external_lex_state = 8}, - [9588] = {.lex_state = 0, .external_lex_state = 8}, + [9588] = {.lex_state = 23, .external_lex_state = 8}, [9589] = {.lex_state = 0, .external_lex_state = 8}, - [9590] = {.lex_state = 0, .external_lex_state = 8}, + [9590] = {.lex_state = 0, .external_lex_state = 9}, [9591] = {.lex_state = 0, .external_lex_state = 8}, [9592] = {.lex_state = 0, .external_lex_state = 8}, [9593] = {.lex_state = 0, .external_lex_state = 8}, [9594] = {.lex_state = 0, .external_lex_state = 8}, - [9595] = {.lex_state = 0, .external_lex_state = 8}, + [9595] = {.lex_state = 23, .external_lex_state = 8}, [9596] = {.lex_state = 0, .external_lex_state = 8}, [9597] = {.lex_state = 0, .external_lex_state = 8}, - [9598] = {.lex_state = 0, .external_lex_state = 8}, - [9599] = {.lex_state = 0, .external_lex_state = 8}, - [9600] = {.lex_state = 0, .external_lex_state = 8}, - [9601] = {.lex_state = 0, .external_lex_state = 8}, - [9602] = {.lex_state = 0, .external_lex_state = 8}, - [9603] = {.lex_state = 318, .external_lex_state = 8}, - [9604] = {.lex_state = 0, .external_lex_state = 8}, + [9598] = {.lex_state = 23, .external_lex_state = 8}, + [9599] = {.lex_state = 23, .external_lex_state = 8}, + [9600] = {.lex_state = 23, .external_lex_state = 8}, + [9601] = {.lex_state = 23, .external_lex_state = 8}, + [9602] = {.lex_state = 318, .external_lex_state = 8}, + [9603] = {.lex_state = 0, .external_lex_state = 8}, + [9604] = {.lex_state = 23, .external_lex_state = 8}, [9605] = {.lex_state = 0, .external_lex_state = 8}, [9606] = {.lex_state = 23, .external_lex_state = 8}, - [9607] = {.lex_state = 23, .external_lex_state = 8}, + [9607] = {.lex_state = 0, .external_lex_state = 8}, [9608] = {.lex_state = 0, .external_lex_state = 8}, - [9609] = {.lex_state = 0, .external_lex_state = 8}, + [9609] = {.lex_state = 23, .external_lex_state = 8}, [9610] = {.lex_state = 0, .external_lex_state = 8}, - [9611] = {.lex_state = 0, .external_lex_state = 8}, + [9611] = {.lex_state = 23, .external_lex_state = 8}, [9612] = {.lex_state = 0, .external_lex_state = 8}, - [9613] = {.lex_state = 0, .external_lex_state = 8}, + [9613] = {.lex_state = 23, .external_lex_state = 8}, [9614] = {.lex_state = 23, .external_lex_state = 8}, - [9615] = {.lex_state = 23, .external_lex_state = 8}, + [9615] = {.lex_state = 0, .external_lex_state = 8}, [9616] = {.lex_state = 23, .external_lex_state = 8}, - [9617] = {.lex_state = 0, .external_lex_state = 8}, + [9617] = {.lex_state = 23, .external_lex_state = 8}, [9618] = {.lex_state = 0, .external_lex_state = 8}, [9619] = {.lex_state = 0, .external_lex_state = 8}, - [9620] = {.lex_state = 0, .external_lex_state = 8}, - [9621] = {.lex_state = 0, .external_lex_state = 8}, + [9620] = {.lex_state = 23, .external_lex_state = 8}, + [9621] = {.lex_state = 23, .external_lex_state = 8}, [9622] = {.lex_state = 23, .external_lex_state = 8}, - [9623] = {.lex_state = 0, .external_lex_state = 8}, + [9623] = {.lex_state = 23, .external_lex_state = 8}, [9624] = {.lex_state = 0, .external_lex_state = 8}, - [9625] = {.lex_state = 0, .external_lex_state = 8}, - [9626] = {.lex_state = 0, .external_lex_state = 8}, - [9627] = {.lex_state = 0, .external_lex_state = 8}, - [9628] = {.lex_state = 0, .external_lex_state = 9}, - [9629] = {.lex_state = 30, .external_lex_state = 8}, - [9630] = {.lex_state = 0, .external_lex_state = 9}, - [9631] = {.lex_state = 0, .external_lex_state = 8}, - [9632] = {.lex_state = 30, .external_lex_state = 8}, - [9633] = {.lex_state = 0, .external_lex_state = 9}, - [9634] = {.lex_state = 0, .external_lex_state = 8}, + [9625] = {.lex_state = 23, .external_lex_state = 8}, + [9626] = {.lex_state = 23, .external_lex_state = 8}, + [9627] = {.lex_state = 23, .external_lex_state = 8}, + [9628] = {.lex_state = 0, .external_lex_state = 8}, + [9629] = {.lex_state = 23, .external_lex_state = 8}, + [9630] = {.lex_state = 23, .external_lex_state = 8}, + [9631] = {.lex_state = 23, .external_lex_state = 8}, + [9632] = {.lex_state = 23, .external_lex_state = 8}, + [9633] = {.lex_state = 23, .external_lex_state = 8}, + [9634] = {.lex_state = 23, .external_lex_state = 8}, [9635] = {.lex_state = 0, .external_lex_state = 8}, - [9636] = {.lex_state = 0, .external_lex_state = 8}, - [9637] = {.lex_state = 0, .external_lex_state = 8}, + [9636] = {.lex_state = 23, .external_lex_state = 8}, + [9637] = {.lex_state = 23, .external_lex_state = 8}, [9638] = {.lex_state = 0, .external_lex_state = 8}, - [9639] = {.lex_state = 0, .external_lex_state = 8}, - [9640] = {.lex_state = 0, .external_lex_state = 8}, - [9641] = {.lex_state = 0, .external_lex_state = 8}, + [9639] = {.lex_state = 23, .external_lex_state = 8}, + [9640] = {.lex_state = 23, .external_lex_state = 8}, + [9641] = {.lex_state = 23, .external_lex_state = 8}, [9642] = {.lex_state = 0, .external_lex_state = 8}, [9643] = {.lex_state = 0, .external_lex_state = 8}, - [9644] = {.lex_state = 0, .external_lex_state = 8}, + [9644] = {.lex_state = 23, .external_lex_state = 8}, [9645] = {.lex_state = 0, .external_lex_state = 8}, - [9646] = {.lex_state = 0, .external_lex_state = 8}, - [9647] = {.lex_state = 0, .external_lex_state = 8}, + [9646] = {.lex_state = 23, .external_lex_state = 8}, + [9647] = {.lex_state = 23, .external_lex_state = 8}, [9648] = {.lex_state = 0, .external_lex_state = 8}, [9649] = {.lex_state = 0, .external_lex_state = 8}, - [9650] = {.lex_state = 0, .external_lex_state = 9}, + [9650] = {.lex_state = 23, .external_lex_state = 8}, [9651] = {.lex_state = 0, .external_lex_state = 8}, [9652] = {.lex_state = 0, .external_lex_state = 8}, - [9653] = {.lex_state = 0, .external_lex_state = 8}, + [9653] = {.lex_state = 23, .external_lex_state = 8}, [9654] = {.lex_state = 0, .external_lex_state = 8}, - [9655] = {.lex_state = 318, .external_lex_state = 8}, - [9656] = {.lex_state = 0, .external_lex_state = 9}, + [9655] = {.lex_state = 23, .external_lex_state = 8}, + [9656] = {.lex_state = 23, .external_lex_state = 8}, [9657] = {.lex_state = 0, .external_lex_state = 8}, - [9658] = {.lex_state = 0, .external_lex_state = 8}, - [9659] = {.lex_state = 318, .external_lex_state = 8}, - [9660] = {.lex_state = 0, .external_lex_state = 8}, - [9661] = {.lex_state = 0, .external_lex_state = 8}, + [9658] = {.lex_state = 23, .external_lex_state = 8}, + [9659] = {.lex_state = 23, .external_lex_state = 8}, + [9660] = {.lex_state = 23, .external_lex_state = 8}, + [9661] = {.lex_state = 23, .external_lex_state = 8}, [9662] = {.lex_state = 0, .external_lex_state = 8}, [9663] = {.lex_state = 0, .external_lex_state = 8}, - [9664] = {.lex_state = 0, .external_lex_state = 8}, - [9665] = {.lex_state = 23, .external_lex_state = 11}, - [9666] = {.lex_state = 0, .external_lex_state = 8}, - [9667] = {.lex_state = 0, .external_lex_state = 9}, - [9668] = {.lex_state = 0, .external_lex_state = 8}, + [9664] = {.lex_state = 23, .external_lex_state = 8}, + [9665] = {.lex_state = 0, .external_lex_state = 8}, + [9666] = {.lex_state = 23, .external_lex_state = 8}, + [9667] = {.lex_state = 23, .external_lex_state = 8}, + [9668] = {.lex_state = 23, .external_lex_state = 8}, [9669] = {.lex_state = 0, .external_lex_state = 8}, - [9670] = {.lex_state = 23, .external_lex_state = 8}, + [9670] = {.lex_state = 0, .external_lex_state = 8}, [9671] = {.lex_state = 0, .external_lex_state = 8}, - [9672] = {.lex_state = 0, .external_lex_state = 8}, + [9672] = {.lex_state = 23, .external_lex_state = 8}, [9673] = {.lex_state = 0, .external_lex_state = 8}, [9674] = {.lex_state = 0, .external_lex_state = 8}, - [9675] = {.lex_state = 30, .external_lex_state = 8}, - [9676] = {.lex_state = 0, .external_lex_state = 9}, + [9675] = {.lex_state = 23, .external_lex_state = 8}, + [9676] = {.lex_state = 0, .external_lex_state = 8}, [9677] = {.lex_state = 0, .external_lex_state = 8}, [9678] = {.lex_state = 0, .external_lex_state = 8}, - [9679] = {.lex_state = 23, .external_lex_state = 8}, - [9680] = {.lex_state = 0, .external_lex_state = 9}, + [9679] = {.lex_state = 0, .external_lex_state = 8}, + [9680] = {.lex_state = 0, .external_lex_state = 8}, [9681] = {.lex_state = 0, .external_lex_state = 8}, [9682] = {.lex_state = 0, .external_lex_state = 8}, [9683] = {.lex_state = 0, .external_lex_state = 8}, - [9684] = {.lex_state = 23, .external_lex_state = 8}, + [9684] = {.lex_state = 0, .external_lex_state = 8}, [9685] = {.lex_state = 0, .external_lex_state = 8}, - [9686] = {.lex_state = 23, .external_lex_state = 8}, + [9686] = {.lex_state = 0, .external_lex_state = 8}, [9687] = {.lex_state = 23, .external_lex_state = 8}, - [9688] = {.lex_state = 0, .external_lex_state = 8}, + [9688] = {.lex_state = 23, .external_lex_state = 8}, [9689] = {.lex_state = 0, .external_lex_state = 8}, [9690] = {.lex_state = 0, .external_lex_state = 8}, - [9691] = {.lex_state = 0, .external_lex_state = 8}, - [9692] = {.lex_state = 30, .external_lex_state = 8}, + [9691] = {.lex_state = 23, .external_lex_state = 8}, + [9692] = {.lex_state = 0, .external_lex_state = 8}, [9693] = {.lex_state = 0, .external_lex_state = 8}, [9694] = {.lex_state = 0, .external_lex_state = 8}, [9695] = {.lex_state = 0, .external_lex_state = 8}, - [9696] = {.lex_state = 0, .external_lex_state = 9}, + [9696] = {.lex_state = 23, .external_lex_state = 8}, [9697] = {.lex_state = 0, .external_lex_state = 8}, [9698] = {.lex_state = 0, .external_lex_state = 8}, - [9699] = {.lex_state = 0, .external_lex_state = 8}, - [9700] = {.lex_state = 30, .external_lex_state = 8}, - [9701] = {.lex_state = 0, .external_lex_state = 8}, + [9699] = {.lex_state = 23, .external_lex_state = 8}, + [9700] = {.lex_state = 23, .external_lex_state = 8}, + [9701] = {.lex_state = 23, .external_lex_state = 8}, [9702] = {.lex_state = 0, .external_lex_state = 8}, [9703] = {.lex_state = 0, .external_lex_state = 8}, [9704] = {.lex_state = 0, .external_lex_state = 8}, - [9705] = {.lex_state = 0, .external_lex_state = 8}, - [9706] = {.lex_state = 0, .external_lex_state = 8}, + [9705] = {.lex_state = 23, .external_lex_state = 8}, + [9706] = {.lex_state = 23, .external_lex_state = 8}, [9707] = {.lex_state = 0, .external_lex_state = 8}, - [9708] = {.lex_state = 23, .external_lex_state = 8}, - [9709] = {.lex_state = 23, .external_lex_state = 8}, + [9708] = {.lex_state = 0, .external_lex_state = 8}, + [9709] = {.lex_state = 0, .external_lex_state = 8}, [9710] = {.lex_state = 0, .external_lex_state = 8}, [9711] = {.lex_state = 0, .external_lex_state = 8}, [9712] = {.lex_state = 0, .external_lex_state = 8}, - [9713] = {.lex_state = 0, .external_lex_state = 9}, + [9713] = {.lex_state = 0, .external_lex_state = 8}, [9714] = {.lex_state = 0, .external_lex_state = 8}, - [9715] = {.lex_state = 0, .external_lex_state = 8}, + [9715] = {.lex_state = 23, .external_lex_state = 8}, [9716] = {.lex_state = 0, .external_lex_state = 8}, - [9717] = {.lex_state = 30, .external_lex_state = 8}, + [9717] = {.lex_state = 0, .external_lex_state = 8}, [9718] = {.lex_state = 0, .external_lex_state = 8}, [9719] = {.lex_state = 0, .external_lex_state = 8}, [9720] = {.lex_state = 0, .external_lex_state = 8}, - [9721] = {.lex_state = 30, .external_lex_state = 8}, + [9721] = {.lex_state = 0, .external_lex_state = 8}, [9722] = {.lex_state = 0, .external_lex_state = 8}, [9723] = {.lex_state = 0, .external_lex_state = 8}, - [9724] = {.lex_state = 0, .external_lex_state = 9}, - [9725] = {.lex_state = 0, .external_lex_state = 9}, - [9726] = {.lex_state = 0, .external_lex_state = 9}, - [9727] = {.lex_state = 0, .external_lex_state = 8}, + [9724] = {.lex_state = 0, .external_lex_state = 8}, + [9725] = {.lex_state = 0, .external_lex_state = 8}, + [9726] = {.lex_state = 0, .external_lex_state = 8}, + [9727] = {.lex_state = 23, .external_lex_state = 8}, [9728] = {.lex_state = 0, .external_lex_state = 8}, [9729] = {.lex_state = 0, .external_lex_state = 8}, - [9730] = {.lex_state = 0, .external_lex_state = 9}, + [9730] = {.lex_state = 0, .external_lex_state = 8}, [9731] = {.lex_state = 0, .external_lex_state = 8}, - [9732] = {.lex_state = 0, .external_lex_state = 9}, - [9733] = {.lex_state = 0, .external_lex_state = 8}, + [9732] = {.lex_state = 0, .external_lex_state = 8}, + [9733] = {.lex_state = 23, .external_lex_state = 8}, [9734] = {.lex_state = 0, .external_lex_state = 8}, - [9735] = {.lex_state = 30, .external_lex_state = 8}, + [9735] = {.lex_state = 0, .external_lex_state = 8}, [9736] = {.lex_state = 0, .external_lex_state = 8}, - [9737] = {.lex_state = 0, .external_lex_state = 8}, + [9737] = {.lex_state = 23, .external_lex_state = 8}, [9738] = {.lex_state = 0, .external_lex_state = 8}, - [9739] = {.lex_state = 0, .external_lex_state = 8}, + [9739] = {.lex_state = 23, .external_lex_state = 8}, [9740] = {.lex_state = 0, .external_lex_state = 8}, - [9741] = {.lex_state = 0, .external_lex_state = 9}, + [9741] = {.lex_state = 0, .external_lex_state = 8}, [9742] = {.lex_state = 0, .external_lex_state = 8}, [9743] = {.lex_state = 0, .external_lex_state = 8}, [9744] = {.lex_state = 0, .external_lex_state = 8}, - [9745] = {.lex_state = 318, .external_lex_state = 8}, - [9746] = {.lex_state = 0, .external_lex_state = 8}, - [9747] = {.lex_state = 30, .external_lex_state = 8}, + [9745] = {.lex_state = 0, .external_lex_state = 8}, + [9746] = {.lex_state = 23, .external_lex_state = 8}, + [9747] = {.lex_state = 23, .external_lex_state = 8}, [9748] = {.lex_state = 0, .external_lex_state = 8}, [9749] = {.lex_state = 0, .external_lex_state = 8}, - [9750] = {.lex_state = 23, .external_lex_state = 8}, - [9751] = {.lex_state = 0, .external_lex_state = 8}, - [9752] = {.lex_state = 23, .external_lex_state = 8}, + [9750] = {.lex_state = 0, .external_lex_state = 8}, + [9751] = {.lex_state = 23, .external_lex_state = 8}, + [9752] = {.lex_state = 0, .external_lex_state = 8}, [9753] = {.lex_state = 0, .external_lex_state = 8}, [9754] = {.lex_state = 0, .external_lex_state = 8}, - [9755] = {.lex_state = 0, .external_lex_state = 8}, - [9756] = {.lex_state = 23, .external_lex_state = 8}, - [9757] = {.lex_state = 0, .external_lex_state = 8}, - [9758] = {.lex_state = 23, .external_lex_state = 8}, - [9759] = {.lex_state = 23, .external_lex_state = 8}, - [9760] = {.lex_state = 23, .external_lex_state = 8}, + [9755] = {.lex_state = 318, .external_lex_state = 8}, + [9756] = {.lex_state = 0, .external_lex_state = 8}, + [9757] = {.lex_state = 23, .external_lex_state = 8}, + [9758] = {.lex_state = 0, .external_lex_state = 8}, + [9759] = {.lex_state = 0, .external_lex_state = 8}, + [9760] = {.lex_state = 0, .external_lex_state = 8}, [9761] = {.lex_state = 0, .external_lex_state = 8}, [9762] = {.lex_state = 0, .external_lex_state = 8}, [9763] = {.lex_state = 0, .external_lex_state = 8}, [9764] = {.lex_state = 23, .external_lex_state = 8}, [9765] = {.lex_state = 0, .external_lex_state = 8}, - [9766] = {.lex_state = 23, .external_lex_state = 8}, + [9766] = {.lex_state = 0, .external_lex_state = 8}, [9767] = {.lex_state = 0, .external_lex_state = 8}, - [9768] = {.lex_state = 23, .external_lex_state = 8}, + [9768] = {.lex_state = 0, .external_lex_state = 8}, [9769] = {.lex_state = 0, .external_lex_state = 8}, [9770] = {.lex_state = 0, .external_lex_state = 8}, - [9771] = {.lex_state = 23, .external_lex_state = 8}, - [9772] = {.lex_state = 23, .external_lex_state = 8}, - [9773] = {.lex_state = 23, .external_lex_state = 8}, + [9771] = {.lex_state = 0, .external_lex_state = 8}, + [9772] = {.lex_state = 0, .external_lex_state = 8}, + [9773] = {.lex_state = 0, .external_lex_state = 8}, [9774] = {.lex_state = 0, .external_lex_state = 8}, - [9775] = {.lex_state = 23, .external_lex_state = 8}, - [9776] = {.lex_state = 23, .external_lex_state = 8}, - [9777] = {.lex_state = 23, .external_lex_state = 8}, - [9778] = {.lex_state = 23, .external_lex_state = 8}, - [9779] = {.lex_state = 23, .external_lex_state = 8}, - [9780] = {.lex_state = 23, .external_lex_state = 8}, - [9781] = {.lex_state = 0, .external_lex_state = 8}, + [9775] = {.lex_state = 0, .external_lex_state = 8}, + [9776] = {.lex_state = 0, .external_lex_state = 8}, + [9777] = {.lex_state = 0, .external_lex_state = 8}, + [9778] = {.lex_state = 0, .external_lex_state = 8}, + [9779] = {.lex_state = 0, .external_lex_state = 8}, + [9780] = {.lex_state = 0, .external_lex_state = 8}, + [9781] = {.lex_state = 23, .external_lex_state = 8}, [9782] = {.lex_state = 23, .external_lex_state = 8}, - [9783] = {.lex_state = 23, .external_lex_state = 8}, - [9784] = {.lex_state = 23, .external_lex_state = 8}, + [9783] = {.lex_state = 0, .external_lex_state = 8}, + [9784] = {.lex_state = 0, .external_lex_state = 8}, [9785] = {.lex_state = 0, .external_lex_state = 8}, - [9786] = {.lex_state = 23, .external_lex_state = 8}, - [9787] = {.lex_state = 23, .external_lex_state = 8}, - [9788] = {.lex_state = 23, .external_lex_state = 8}, - [9789] = {.lex_state = 0, .external_lex_state = 9}, - [9790] = {.lex_state = 23, .external_lex_state = 8}, - [9791] = {.lex_state = 318, .external_lex_state = 8}, + [9786] = {.lex_state = 0, .external_lex_state = 8}, + [9787] = {.lex_state = 0, .external_lex_state = 8}, + [9788] = {.lex_state = 0, .external_lex_state = 8}, + [9789] = {.lex_state = 23, .external_lex_state = 8}, + [9790] = {.lex_state = 0, .external_lex_state = 8}, + [9791] = {.lex_state = 0, .external_lex_state = 8}, [9792] = {.lex_state = 23, .external_lex_state = 8}, - [9793] = {.lex_state = 23, .external_lex_state = 8}, + [9793] = {.lex_state = 0, .external_lex_state = 8}, [9794] = {.lex_state = 0, .external_lex_state = 8}, [9795] = {.lex_state = 0, .external_lex_state = 8}, - [9796] = {.lex_state = 23, .external_lex_state = 8}, - [9797] = {.lex_state = 23, .external_lex_state = 8}, + [9796] = {.lex_state = 0, .external_lex_state = 8}, + [9797] = {.lex_state = 0, .external_lex_state = 8}, [9798] = {.lex_state = 0, .external_lex_state = 8}, - [9799] = {.lex_state = 23, .external_lex_state = 8}, - [9800] = {.lex_state = 23, .external_lex_state = 8}, + [9799] = {.lex_state = 0, .external_lex_state = 8}, + [9800] = {.lex_state = 0, .external_lex_state = 8}, [9801] = {.lex_state = 0, .external_lex_state = 8}, [9802] = {.lex_state = 0, .external_lex_state = 8}, [9803] = {.lex_state = 0, .external_lex_state = 8}, [9804] = {.lex_state = 0, .external_lex_state = 8}, - [9805] = {.lex_state = 23, .external_lex_state = 8}, - [9806] = {.lex_state = 0, .external_lex_state = 8}, - [9807] = {.lex_state = 23, .external_lex_state = 8}, + [9805] = {.lex_state = 0, .external_lex_state = 8}, + [9806] = {.lex_state = 23, .external_lex_state = 8}, + [9807] = {.lex_state = 0, .external_lex_state = 8}, [9808] = {.lex_state = 0, .external_lex_state = 8}, [9809] = {.lex_state = 23, .external_lex_state = 8}, [9810] = {.lex_state = 0, .external_lex_state = 8}, - [9811] = {.lex_state = 0, .external_lex_state = 8}, - [9812] = {.lex_state = 23, .external_lex_state = 8}, - [9813] = {.lex_state = 23, .external_lex_state = 8}, + [9811] = {.lex_state = 23, .external_lex_state = 8}, + [9812] = {.lex_state = 0, .external_lex_state = 9}, + [9813] = {.lex_state = 0, .external_lex_state = 8}, [9814] = {.lex_state = 23, .external_lex_state = 8}, [9815] = {.lex_state = 0, .external_lex_state = 8}, - [9816] = {.lex_state = 0, .external_lex_state = 8}, - [9817] = {.lex_state = 23, .external_lex_state = 8}, + [9816] = {.lex_state = 23, .external_lex_state = 8}, + [9817] = {.lex_state = 0, .external_lex_state = 8}, [9818] = {.lex_state = 0, .external_lex_state = 8}, [9819] = {.lex_state = 23, .external_lex_state = 8}, - [9820] = {.lex_state = 23, .external_lex_state = 8}, - [9821] = {.lex_state = 0, .external_lex_state = 8}, - [9822] = {.lex_state = 23, .external_lex_state = 8}, - [9823] = {.lex_state = 23, .external_lex_state = 8}, - [9824] = {.lex_state = 23, .external_lex_state = 8}, + [9820] = {.lex_state = 0, .external_lex_state = 8}, + [9821] = {.lex_state = 23, .external_lex_state = 8}, + [9822] = {.lex_state = 0, .external_lex_state = 8}, + [9823] = {.lex_state = 0, .external_lex_state = 8}, + [9824] = {.lex_state = 0, .external_lex_state = 8}, [9825] = {.lex_state = 0, .external_lex_state = 8}, - [9826] = {.lex_state = 0, .external_lex_state = 8}, - [9827] = {.lex_state = 23, .external_lex_state = 8}, + [9826] = {.lex_state = 318, .external_lex_state = 8}, + [9827] = {.lex_state = 0, .external_lex_state = 8}, [9828] = {.lex_state = 0, .external_lex_state = 8}, [9829] = {.lex_state = 0, .external_lex_state = 8}, - [9830] = {.lex_state = 23, .external_lex_state = 8}, + [9830] = {.lex_state = 0, .external_lex_state = 8}, [9831] = {.lex_state = 0, .external_lex_state = 8}, [9832] = {.lex_state = 0, .external_lex_state = 8}, [9833] = {.lex_state = 0, .external_lex_state = 8}, - [9834] = {.lex_state = 0, .external_lex_state = 8}, - [9835] = {.lex_state = 23, .external_lex_state = 8}, + [9834] = {.lex_state = 0, .external_lex_state = 9}, + [9835] = {.lex_state = 0, .external_lex_state = 8}, [9836] = {.lex_state = 0, .external_lex_state = 8}, - [9837] = {.lex_state = 23, .external_lex_state = 8}, - [9838] = {.lex_state = 23, .external_lex_state = 8}, - [9839] = {.lex_state = 0, .external_lex_state = 8}, + [9837] = {.lex_state = 30, .external_lex_state = 8}, + [9838] = {.lex_state = 0, .external_lex_state = 8}, + [9839] = {.lex_state = 23, .external_lex_state = 8}, [9840] = {.lex_state = 0, .external_lex_state = 8}, - [9841] = {.lex_state = 23, .external_lex_state = 8}, - [9842] = {.lex_state = 23, .external_lex_state = 8}, - [9843] = {.lex_state = 23, .external_lex_state = 8}, + [9841] = {.lex_state = 0, .external_lex_state = 8}, + [9842] = {.lex_state = 0, .external_lex_state = 8}, + [9843] = {.lex_state = 0, .external_lex_state = 8}, [9844] = {.lex_state = 0, .external_lex_state = 8}, [9845] = {.lex_state = 0, .external_lex_state = 8}, [9846] = {.lex_state = 0, .external_lex_state = 8}, [9847] = {.lex_state = 0, .external_lex_state = 8}, [9848] = {.lex_state = 0, .external_lex_state = 8}, - [9849] = {.lex_state = 0, .external_lex_state = 8}, + [9849] = {.lex_state = 23, .external_lex_state = 8}, [9850] = {.lex_state = 0, .external_lex_state = 8}, [9851] = {.lex_state = 23, .external_lex_state = 8}, [9852] = {.lex_state = 0, .external_lex_state = 8}, [9853] = {.lex_state = 23, .external_lex_state = 8}, - [9854] = {.lex_state = 0, .external_lex_state = 8}, - [9855] = {.lex_state = 0, .external_lex_state = 8}, - [9856] = {.lex_state = 23, .external_lex_state = 8}, + [9854] = {.lex_state = 23, .external_lex_state = 8}, + [9855] = {.lex_state = 0, .external_lex_state = 9}, + [9856] = {.lex_state = 0, .external_lex_state = 8}, [9857] = {.lex_state = 0, .external_lex_state = 8}, - [9858] = {.lex_state = 23, .external_lex_state = 8}, + [9858] = {.lex_state = 0, .external_lex_state = 8}, [9859] = {.lex_state = 0, .external_lex_state = 8}, [9860] = {.lex_state = 0, .external_lex_state = 8}, [9861] = {.lex_state = 0, .external_lex_state = 8}, [9862] = {.lex_state = 0, .external_lex_state = 8}, [9863] = {.lex_state = 0, .external_lex_state = 8}, - [9864] = {.lex_state = 0, .external_lex_state = 8}, + [9864] = {.lex_state = 23, .external_lex_state = 8}, [9865] = {.lex_state = 0, .external_lex_state = 8}, [9866] = {.lex_state = 0, .external_lex_state = 8}, [9867] = {.lex_state = 0, .external_lex_state = 8}, [9868] = {.lex_state = 0, .external_lex_state = 8}, - [9869] = {.lex_state = 23, .external_lex_state = 8}, - [9870] = {.lex_state = 0, .external_lex_state = 8}, + [9869] = {.lex_state = 0, .external_lex_state = 8}, + [9870] = {.lex_state = 23, .external_lex_state = 8}, [9871] = {.lex_state = 0, .external_lex_state = 8}, [9872] = {.lex_state = 0, .external_lex_state = 8}, - [9873] = {.lex_state = 23, .external_lex_state = 8}, - [9874] = {.lex_state = 0, .external_lex_state = 8}, + [9873] = {.lex_state = 0, .external_lex_state = 9}, + [9874] = {.lex_state = 23, .external_lex_state = 8}, [9875] = {.lex_state = 0, .external_lex_state = 8}, - [9876] = {.lex_state = 0, .external_lex_state = 8}, + [9876] = {.lex_state = 23, .external_lex_state = 8}, [9877] = {.lex_state = 0, .external_lex_state = 8}, [9878] = {.lex_state = 0, .external_lex_state = 8}, - [9879] = {.lex_state = 0, .external_lex_state = 8}, + [9879] = {.lex_state = 23, .external_lex_state = 8}, [9880] = {.lex_state = 0, .external_lex_state = 8}, [9881] = {.lex_state = 0, .external_lex_state = 8}, - [9882] = {.lex_state = 0, .external_lex_state = 9}, + [9882] = {.lex_state = 23, .external_lex_state = 8}, [9883] = {.lex_state = 0, .external_lex_state = 8}, [9884] = {.lex_state = 0, .external_lex_state = 8}, [9885] = {.lex_state = 0, .external_lex_state = 8}, @@ -33718,41 +33369,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9888] = {.lex_state = 0, .external_lex_state = 8}, [9889] = {.lex_state = 0, .external_lex_state = 8}, [9890] = {.lex_state = 0, .external_lex_state = 8}, - [9891] = {.lex_state = 0, .external_lex_state = 8}, - [9892] = {.lex_state = 23, .external_lex_state = 8}, - [9893] = {.lex_state = 0, .external_lex_state = 8}, + [9891] = {.lex_state = 0, .external_lex_state = 9}, + [9892] = {.lex_state = 0, .external_lex_state = 8}, + [9893] = {.lex_state = 23, .external_lex_state = 8}, [9894] = {.lex_state = 0, .external_lex_state = 8}, - [9895] = {.lex_state = 23, .external_lex_state = 8}, - [9896] = {.lex_state = 23, .external_lex_state = 8}, + [9895] = {.lex_state = 0, .external_lex_state = 9}, + [9896] = {.lex_state = 0, .external_lex_state = 8}, [9897] = {.lex_state = 23, .external_lex_state = 8}, - [9898] = {.lex_state = 0, .external_lex_state = 8}, - [9899] = {.lex_state = 0, .external_lex_state = 8}, - [9900] = {.lex_state = 23, .external_lex_state = 8}, + [9898] = {.lex_state = 23, .external_lex_state = 8}, + [9899] = {.lex_state = 318, .external_lex_state = 8}, + [9900] = {.lex_state = 0, .external_lex_state = 8}, [9901] = {.lex_state = 0, .external_lex_state = 8}, [9902] = {.lex_state = 0, .external_lex_state = 8}, [9903] = {.lex_state = 0, .external_lex_state = 8}, - [9904] = {.lex_state = 23, .external_lex_state = 8}, + [9904] = {.lex_state = 0, .external_lex_state = 8}, [9905] = {.lex_state = 0, .external_lex_state = 8}, - [9906] = {.lex_state = 0, .external_lex_state = 8}, - [9907] = {.lex_state = 0, .external_lex_state = 8}, + [9906] = {.lex_state = 23, .external_lex_state = 8}, + [9907] = {.lex_state = 23, .external_lex_state = 8}, [9908] = {.lex_state = 0, .external_lex_state = 8}, - [9909] = {.lex_state = 0, .external_lex_state = 8}, + [9909] = {.lex_state = 23, .external_lex_state = 8}, [9910] = {.lex_state = 0, .external_lex_state = 8}, [9911] = {.lex_state = 0, .external_lex_state = 8}, [9912] = {.lex_state = 0, .external_lex_state = 8}, [9913] = {.lex_state = 0, .external_lex_state = 8}, - [9914] = {.lex_state = 0, .external_lex_state = 8}, - [9915] = {.lex_state = 0, .external_lex_state = 8}, + [9914] = {.lex_state = 23, .external_lex_state = 8}, + [9915] = {.lex_state = 23, .external_lex_state = 8}, [9916] = {.lex_state = 0, .external_lex_state = 8}, [9917] = {.lex_state = 0, .external_lex_state = 8}, - [9918] = {.lex_state = 23, .external_lex_state = 8}, + [9918] = {.lex_state = 0, .external_lex_state = 8}, [9919] = {.lex_state = 0, .external_lex_state = 8}, - [9920] = {.lex_state = 23, .external_lex_state = 8}, - [9921] = {.lex_state = 23, .external_lex_state = 8}, - [9922] = {.lex_state = 23, .external_lex_state = 8}, - [9923] = {.lex_state = 0, .external_lex_state = 8}, - [9924] = {.lex_state = 23, .external_lex_state = 8}, - [9925] = {.lex_state = 0, .external_lex_state = 8}, + [9920] = {.lex_state = 0, .external_lex_state = 8}, + [9921] = {.lex_state = 0, .external_lex_state = 8}, + [9922] = {.lex_state = 0, .external_lex_state = 8}, + [9923] = {.lex_state = 23, .external_lex_state = 8}, + [9924] = {.lex_state = 0, .external_lex_state = 8}, + [9925] = {.lex_state = 23, .external_lex_state = 8}, [9926] = {.lex_state = 23, .external_lex_state = 8}, [9927] = {.lex_state = 0, .external_lex_state = 8}, [9928] = {.lex_state = 0, .external_lex_state = 8}, @@ -33764,99 +33415,99 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9934] = {.lex_state = 0, .external_lex_state = 8}, [9935] = {.lex_state = 0, .external_lex_state = 8}, [9936] = {.lex_state = 0, .external_lex_state = 8}, - [9937] = {.lex_state = 23, .external_lex_state = 8}, + [9937] = {.lex_state = 0, .external_lex_state = 8}, [9938] = {.lex_state = 0, .external_lex_state = 8}, [9939] = {.lex_state = 0, .external_lex_state = 8}, [9940] = {.lex_state = 0, .external_lex_state = 8}, - [9941] = {.lex_state = 23, .external_lex_state = 8}, - [9942] = {.lex_state = 23, .external_lex_state = 8}, + [9941] = {.lex_state = 0, .external_lex_state = 8}, + [9942] = {.lex_state = 0, .external_lex_state = 8}, [9943] = {.lex_state = 0, .external_lex_state = 8}, [9944] = {.lex_state = 0, .external_lex_state = 8}, [9945] = {.lex_state = 0, .external_lex_state = 8}, - [9946] = {.lex_state = 23, .external_lex_state = 8}, - [9947] = {.lex_state = 23, .external_lex_state = 8}, - [9948] = {.lex_state = 23, .external_lex_state = 8}, + [9946] = {.lex_state = 0, .external_lex_state = 8}, + [9947] = {.lex_state = 0, .external_lex_state = 8}, + [9948] = {.lex_state = 0, .external_lex_state = 8}, [9949] = {.lex_state = 0, .external_lex_state = 8}, [9950] = {.lex_state = 0, .external_lex_state = 8}, [9951] = {.lex_state = 0, .external_lex_state = 8}, - [9952] = {.lex_state = 23, .external_lex_state = 8}, + [9952] = {.lex_state = 0, .external_lex_state = 8}, [9953] = {.lex_state = 0, .external_lex_state = 8}, [9954] = {.lex_state = 0, .external_lex_state = 8}, - [9955] = {.lex_state = 23, .external_lex_state = 8}, + [9955] = {.lex_state = 0, .external_lex_state = 8}, [9956] = {.lex_state = 0, .external_lex_state = 8}, - [9957] = {.lex_state = 0, .external_lex_state = 8}, - [9958] = {.lex_state = 0, .external_lex_state = 8}, + [9957] = {.lex_state = 23, .external_lex_state = 8}, + [9958] = {.lex_state = 23, .external_lex_state = 8}, [9959] = {.lex_state = 23, .external_lex_state = 8}, [9960] = {.lex_state = 0, .external_lex_state = 8}, [9961] = {.lex_state = 0, .external_lex_state = 8}, - [9962] = {.lex_state = 23, .external_lex_state = 8}, + [9962] = {.lex_state = 0, .external_lex_state = 8}, [9963] = {.lex_state = 0, .external_lex_state = 8}, [9964] = {.lex_state = 0, .external_lex_state = 8}, - [9965] = {.lex_state = 0, .external_lex_state = 8}, + [9965] = {.lex_state = 23, .external_lex_state = 8}, [9966] = {.lex_state = 0, .external_lex_state = 8}, [9967] = {.lex_state = 0, .external_lex_state = 8}, [9968] = {.lex_state = 23, .external_lex_state = 8}, - [9969] = {.lex_state = 23, .external_lex_state = 8}, + [9969] = {.lex_state = 0, .external_lex_state = 8}, [9970] = {.lex_state = 0, .external_lex_state = 8}, - [9971] = {.lex_state = 0, .external_lex_state = 8}, - [9972] = {.lex_state = 23, .external_lex_state = 8}, + [9971] = {.lex_state = 23, .external_lex_state = 8}, + [9972] = {.lex_state = 0, .external_lex_state = 8}, [9973] = {.lex_state = 23, .external_lex_state = 8}, - [9974] = {.lex_state = 23, .external_lex_state = 8}, - [9975] = {.lex_state = 23, .external_lex_state = 8}, + [9974] = {.lex_state = 0, .external_lex_state = 8}, + [9975] = {.lex_state = 0, .external_lex_state = 8}, [9976] = {.lex_state = 0, .external_lex_state = 8}, [9977] = {.lex_state = 0, .external_lex_state = 8}, [9978] = {.lex_state = 0, .external_lex_state = 8}, - [9979] = {.lex_state = 0, .external_lex_state = 8}, - [9980] = {.lex_state = 0, .external_lex_state = 8}, - [9981] = {.lex_state = 0, .external_lex_state = 8}, - [9982] = {.lex_state = 23, .external_lex_state = 8}, + [9979] = {.lex_state = 23, .external_lex_state = 8}, + [9980] = {.lex_state = 23, .external_lex_state = 8}, + [9981] = {.lex_state = 23, .external_lex_state = 8}, + [9982] = {.lex_state = 0, .external_lex_state = 8}, [9983] = {.lex_state = 0, .external_lex_state = 8}, - [9984] = {.lex_state = 0, .external_lex_state = 8}, - [9985] = {.lex_state = 0, .external_lex_state = 8}, - [9986] = {.lex_state = 23, .external_lex_state = 8}, - [9987] = {.lex_state = 0, .external_lex_state = 8}, - [9988] = {.lex_state = 23, .external_lex_state = 8}, - [9989] = {.lex_state = 0, .external_lex_state = 8}, - [9990] = {.lex_state = 0, .external_lex_state = 8}, - [9991] = {.lex_state = 23, .external_lex_state = 8}, - [9992] = {.lex_state = 0, .external_lex_state = 8}, - [9993] = {.lex_state = 0, .external_lex_state = 8}, + [9984] = {.lex_state = 0, .external_lex_state = 9}, + [9985] = {.lex_state = 23, .external_lex_state = 8}, + [9986] = {.lex_state = 0, .external_lex_state = 8}, + [9987] = {.lex_state = 0, .external_lex_state = 9}, + [9988] = {.lex_state = 0, .external_lex_state = 8}, + [9989] = {.lex_state = 23, .external_lex_state = 8}, + [9990] = {.lex_state = 23, .external_lex_state = 8}, + [9991] = {.lex_state = 0, .external_lex_state = 8}, + [9992] = {.lex_state = 23, .external_lex_state = 8}, + [9993] = {.lex_state = 23, .external_lex_state = 8}, [9994] = {.lex_state = 0, .external_lex_state = 8}, - [9995] = {.lex_state = 0, .external_lex_state = 8}, - [9996] = {.lex_state = 0, .external_lex_state = 8}, + [9995] = {.lex_state = 23, .external_lex_state = 8}, + [9996] = {.lex_state = 23, .external_lex_state = 8}, [9997] = {.lex_state = 0, .external_lex_state = 8}, - [9998] = {.lex_state = 0, .external_lex_state = 8}, + [9998] = {.lex_state = 23, .external_lex_state = 8}, [9999] = {.lex_state = 0, .external_lex_state = 8}, - [10000] = {.lex_state = 318, .external_lex_state = 8}, + [10000] = {.lex_state = 23, .external_lex_state = 8}, [10001] = {.lex_state = 0, .external_lex_state = 8}, [10002] = {.lex_state = 0, .external_lex_state = 8}, [10003] = {.lex_state = 0, .external_lex_state = 8}, [10004] = {.lex_state = 0, .external_lex_state = 8}, [10005] = {.lex_state = 23, .external_lex_state = 8}, [10006] = {.lex_state = 0, .external_lex_state = 8}, - [10007] = {.lex_state = 0, .external_lex_state = 8}, + [10007] = {.lex_state = 23, .external_lex_state = 8}, [10008] = {.lex_state = 0, .external_lex_state = 8}, [10009] = {.lex_state = 0, .external_lex_state = 8}, - [10010] = {.lex_state = 23, .external_lex_state = 8}, - [10011] = {.lex_state = 0, .external_lex_state = 8}, + [10010] = {.lex_state = 0, .external_lex_state = 8}, + [10011] = {.lex_state = 23, .external_lex_state = 8}, [10012] = {.lex_state = 0, .external_lex_state = 8}, - [10013] = {.lex_state = 0, .external_lex_state = 8}, - [10014] = {.lex_state = 0, .external_lex_state = 8}, - [10015] = {.lex_state = 23, .external_lex_state = 8}, + [10013] = {.lex_state = 0, .external_lex_state = 9}, + [10014] = {.lex_state = 23, .external_lex_state = 8}, + [10015] = {.lex_state = 0, .external_lex_state = 8}, [10016] = {.lex_state = 0, .external_lex_state = 8}, [10017] = {.lex_state = 0, .external_lex_state = 8}, [10018] = {.lex_state = 0, .external_lex_state = 8}, - [10019] = {.lex_state = 0, .external_lex_state = 8}, + [10019] = {.lex_state = 23, .external_lex_state = 8}, [10020] = {.lex_state = 0, .external_lex_state = 8}, - [10021] = {.lex_state = 0, .external_lex_state = 8}, + [10021] = {.lex_state = 0, .external_lex_state = 9}, [10022] = {.lex_state = 0, .external_lex_state = 8}, [10023] = {.lex_state = 23, .external_lex_state = 8}, [10024] = {.lex_state = 0, .external_lex_state = 8}, [10025] = {.lex_state = 0, .external_lex_state = 8}, [10026] = {.lex_state = 23, .external_lex_state = 8}, - [10027] = {.lex_state = 318, .external_lex_state = 8}, - [10028] = {.lex_state = 23, .external_lex_state = 8}, - [10029] = {.lex_state = 0, .external_lex_state = 8}, + [10027] = {.lex_state = 0, .external_lex_state = 8}, + [10028] = {.lex_state = 0, .external_lex_state = 8}, + [10029] = {.lex_state = 23, .external_lex_state = 8}, [10030] = {.lex_state = 0, .external_lex_state = 8}, [10031] = {.lex_state = 0, .external_lex_state = 8}, [10032] = {.lex_state = 0, .external_lex_state = 8}, @@ -33865,487 +33516,122 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [10035] = {.lex_state = 23, .external_lex_state = 8}, [10036] = {.lex_state = 0, .external_lex_state = 8}, [10037] = {.lex_state = 0, .external_lex_state = 8}, - [10038] = {.lex_state = 23, .external_lex_state = 8}, + [10038] = {.lex_state = 0, .external_lex_state = 8}, [10039] = {.lex_state = 0, .external_lex_state = 8}, [10040] = {.lex_state = 23, .external_lex_state = 8}, [10041] = {.lex_state = 0, .external_lex_state = 8}, - [10042] = {.lex_state = 0, .external_lex_state = 8}, - [10043] = {.lex_state = 23, .external_lex_state = 8}, - [10044] = {.lex_state = 23, .external_lex_state = 8}, + [10042] = {.lex_state = 23, .external_lex_state = 8}, + [10043] = {.lex_state = 0, .external_lex_state = 8}, + [10044] = {.lex_state = 0, .external_lex_state = 8}, [10045] = {.lex_state = 23, .external_lex_state = 8}, [10046] = {.lex_state = 0, .external_lex_state = 8}, - [10047] = {.lex_state = 23, .external_lex_state = 8}, + [10047] = {.lex_state = 0, .external_lex_state = 8}, [10048] = {.lex_state = 23, .external_lex_state = 8}, [10049] = {.lex_state = 0, .external_lex_state = 8}, [10050] = {.lex_state = 0, .external_lex_state = 8}, - [10051] = {.lex_state = 0, .external_lex_state = 8}, - [10052] = {.lex_state = 0, .external_lex_state = 8}, + [10051] = {.lex_state = 23, .external_lex_state = 8}, + [10052] = {.lex_state = 23, .external_lex_state = 8}, [10053] = {.lex_state = 0, .external_lex_state = 8}, [10054] = {.lex_state = 0, .external_lex_state = 8}, - [10055] = {.lex_state = 0, .external_lex_state = 8}, + [10055] = {.lex_state = 23, .external_lex_state = 8}, [10056] = {.lex_state = 0, .external_lex_state = 8}, - [10057] = {.lex_state = 318, .external_lex_state = 8}, - [10058] = {.lex_state = 0, .external_lex_state = 8}, + [10057] = {.lex_state = 0, .external_lex_state = 8}, + [10058] = {.lex_state = 23, .external_lex_state = 8}, [10059] = {.lex_state = 0, .external_lex_state = 8}, [10060] = {.lex_state = 0, .external_lex_state = 8}, - [10061] = {.lex_state = 0, .external_lex_state = 8}, - [10062] = {.lex_state = 0, .external_lex_state = 8}, - [10063] = {.lex_state = 23, .external_lex_state = 8}, + [10061] = {.lex_state = 23, .external_lex_state = 8}, + [10062] = {.lex_state = 23, .external_lex_state = 8}, + [10063] = {.lex_state = 0, .external_lex_state = 8}, [10064] = {.lex_state = 0, .external_lex_state = 8}, [10065] = {.lex_state = 0, .external_lex_state = 8}, - [10066] = {.lex_state = 23, .external_lex_state = 8}, + [10066] = {.lex_state = 0, .external_lex_state = 8}, [10067] = {.lex_state = 0, .external_lex_state = 8}, [10068] = {.lex_state = 0, .external_lex_state = 8}, [10069] = {.lex_state = 0, .external_lex_state = 8}, [10070] = {.lex_state = 0, .external_lex_state = 8}, - [10071] = {.lex_state = 0, .external_lex_state = 8}, + [10071] = {.lex_state = 23, .external_lex_state = 8}, [10072] = {.lex_state = 23, .external_lex_state = 8}, - [10073] = {.lex_state = 318, .external_lex_state = 8}, - [10074] = {.lex_state = 0, .external_lex_state = 9}, - [10075] = {.lex_state = 0, .external_lex_state = 9}, - [10076] = {.lex_state = 0, .external_lex_state = 8}, + [10073] = {.lex_state = 0, .external_lex_state = 8}, + [10074] = {.lex_state = 0, .external_lex_state = 8}, + [10075] = {.lex_state = 0, .external_lex_state = 8}, + [10076] = {.lex_state = 23, .external_lex_state = 8}, [10077] = {.lex_state = 0, .external_lex_state = 8}, [10078] = {.lex_state = 0, .external_lex_state = 8}, - [10079] = {.lex_state = 23, .external_lex_state = 8}, + [10079] = {.lex_state = 0, .external_lex_state = 8}, [10080] = {.lex_state = 0, .external_lex_state = 8}, [10081] = {.lex_state = 0, .external_lex_state = 8}, [10082] = {.lex_state = 0, .external_lex_state = 8}, [10083] = {.lex_state = 0, .external_lex_state = 8}, - [10084] = {.lex_state = 0, .external_lex_state = 8}, - [10085] = {.lex_state = 0, .external_lex_state = 8}, + [10084] = {.lex_state = 23, .external_lex_state = 8}, + [10085] = {.lex_state = 23, .external_lex_state = 8}, [10086] = {.lex_state = 0, .external_lex_state = 8}, [10087] = {.lex_state = 0, .external_lex_state = 8}, - [10088] = {.lex_state = 23, .external_lex_state = 8}, - [10089] = {.lex_state = 0, .external_lex_state = 8}, - [10090] = {.lex_state = 0, .external_lex_state = 8}, - [10091] = {.lex_state = 0, .external_lex_state = 8}, + [10088] = {.lex_state = 0, .external_lex_state = 8}, + [10089] = {.lex_state = 23, .external_lex_state = 8}, + [10090] = {.lex_state = 23, .external_lex_state = 8}, + [10091] = {.lex_state = 23, .external_lex_state = 8}, [10092] = {.lex_state = 0, .external_lex_state = 8}, [10093] = {.lex_state = 0, .external_lex_state = 8}, - [10094] = {.lex_state = 0, .external_lex_state = 8}, - [10095] = {.lex_state = 0, .external_lex_state = 8}, + [10094] = {.lex_state = 23, .external_lex_state = 8}, + [10095] = {.lex_state = 23, .external_lex_state = 8}, [10096] = {.lex_state = 0, .external_lex_state = 8}, [10097] = {.lex_state = 0, .external_lex_state = 8}, [10098] = {.lex_state = 23, .external_lex_state = 8}, - [10099] = {.lex_state = 0, .external_lex_state = 8}, + [10099] = {.lex_state = 23, .external_lex_state = 8}, [10100] = {.lex_state = 0, .external_lex_state = 8}, [10101] = {.lex_state = 0, .external_lex_state = 8}, - [10102] = {.lex_state = 0, .external_lex_state = 8}, - [10103] = {.lex_state = 0, .external_lex_state = 8}, + [10102] = {.lex_state = 23, .external_lex_state = 8}, + [10103] = {.lex_state = 23, .external_lex_state = 8}, [10104] = {.lex_state = 0, .external_lex_state = 8}, [10105] = {.lex_state = 0, .external_lex_state = 8}, - [10106] = {.lex_state = 0, .external_lex_state = 8}, - [10107] = {.lex_state = 0, .external_lex_state = 8}, + [10106] = {.lex_state = 23, .external_lex_state = 8}, + [10107] = {.lex_state = 23, .external_lex_state = 8}, [10108] = {.lex_state = 0, .external_lex_state = 8}, [10109] = {.lex_state = 0, .external_lex_state = 8}, - [10110] = {.lex_state = 0, .external_lex_state = 8}, + [10110] = {.lex_state = 23, .external_lex_state = 8}, [10111] = {.lex_state = 23, .external_lex_state = 8}, - [10112] = {.lex_state = 23, .external_lex_state = 8}, - [10113] = {.lex_state = 0, .external_lex_state = 8}, - [10114] = {.lex_state = 0, .external_lex_state = 8}, + [10112] = {.lex_state = 0, .external_lex_state = 8}, + [10113] = {.lex_state = 23, .external_lex_state = 8}, + [10114] = {.lex_state = 23, .external_lex_state = 8}, [10115] = {.lex_state = 0, .external_lex_state = 8}, - [10116] = {.lex_state = 0, .external_lex_state = 8}, + [10116] = {.lex_state = 23, .external_lex_state = 8}, [10117] = {.lex_state = 0, .external_lex_state = 8}, - [10118] = {.lex_state = 0, .external_lex_state = 8}, + [10118] = {.lex_state = 23, .external_lex_state = 8}, [10119] = {.lex_state = 0, .external_lex_state = 8}, [10120] = {.lex_state = 0, .external_lex_state = 8}, [10121] = {.lex_state = 23, .external_lex_state = 8}, - [10122] = {.lex_state = 0, .external_lex_state = 8}, + [10122] = {.lex_state = 23, .external_lex_state = 8}, [10123] = {.lex_state = 0, .external_lex_state = 8}, [10124] = {.lex_state = 0, .external_lex_state = 8}, [10125] = {.lex_state = 0, .external_lex_state = 8}, - [10126] = {.lex_state = 0, .external_lex_state = 8}, - [10127] = {.lex_state = 0, .external_lex_state = 8}, - [10128] = {.lex_state = 0, .external_lex_state = 8}, + [10126] = {.lex_state = 23, .external_lex_state = 8}, + [10127] = {.lex_state = 23, .external_lex_state = 8}, + [10128] = {.lex_state = 23, .external_lex_state = 8}, [10129] = {.lex_state = 23, .external_lex_state = 8}, - [10130] = {.lex_state = 0, .external_lex_state = 8}, - [10131] = {.lex_state = 0, .external_lex_state = 8}, - [10132] = {.lex_state = 0, .external_lex_state = 8}, - [10133] = {.lex_state = 0, .external_lex_state = 8}, - [10134] = {.lex_state = 0, .external_lex_state = 8}, - [10135] = {.lex_state = 0, .external_lex_state = 8}, + [10130] = {.lex_state = 23, .external_lex_state = 8}, + [10131] = {.lex_state = 23, .external_lex_state = 8}, + [10132] = {.lex_state = 23, .external_lex_state = 8}, + [10133] = {.lex_state = 23, .external_lex_state = 8}, + [10134] = {.lex_state = 23, .external_lex_state = 8}, + [10135] = {.lex_state = 23, .external_lex_state = 8}, [10136] = {.lex_state = 0, .external_lex_state = 8}, - [10137] = {.lex_state = 0, .external_lex_state = 9}, + [10137] = {.lex_state = 23, .external_lex_state = 8}, [10138] = {.lex_state = 0, .external_lex_state = 8}, - [10139] = {.lex_state = 0, .external_lex_state = 8}, + [10139] = {.lex_state = 23, .external_lex_state = 8}, [10140] = {.lex_state = 0, .external_lex_state = 8}, - [10141] = {.lex_state = 0, .external_lex_state = 8}, - [10142] = {.lex_state = 0, .external_lex_state = 8}, + [10141] = {.lex_state = 23, .external_lex_state = 8}, + [10142] = {.lex_state = 23, .external_lex_state = 8}, [10143] = {.lex_state = 0, .external_lex_state = 8}, [10144] = {.lex_state = 0, .external_lex_state = 8}, [10145] = {.lex_state = 0, .external_lex_state = 8}, [10146] = {.lex_state = 0, .external_lex_state = 8}, - [10147] = {.lex_state = 0, .external_lex_state = 8}, + [10147] = {.lex_state = 23, .external_lex_state = 8}, [10148] = {.lex_state = 0, .external_lex_state = 8}, [10149] = {.lex_state = 0, .external_lex_state = 8}, [10150] = {.lex_state = 0, .external_lex_state = 8}, [10151] = {.lex_state = 0, .external_lex_state = 8}, - [10152] = {.lex_state = 0, .external_lex_state = 8}, - [10153] = {.lex_state = 0, .external_lex_state = 8}, - [10154] = {.lex_state = 23, .external_lex_state = 8}, - [10155] = {.lex_state = 23, .external_lex_state = 8}, - [10156] = {.lex_state = 0, .external_lex_state = 8}, - [10157] = {.lex_state = 23, .external_lex_state = 8}, - [10158] = {.lex_state = 0, .external_lex_state = 8}, - [10159] = {.lex_state = 0, .external_lex_state = 8}, - [10160] = {.lex_state = 0, .external_lex_state = 8}, - [10161] = {.lex_state = 23, .external_lex_state = 8}, - [10162] = {.lex_state = 0, .external_lex_state = 8}, - [10163] = {.lex_state = 0, .external_lex_state = 8}, - [10164] = {.lex_state = 0, .external_lex_state = 8}, - [10165] = {.lex_state = 0, .external_lex_state = 8}, - [10166] = {.lex_state = 23, .external_lex_state = 8}, - [10167] = {.lex_state = 0, .external_lex_state = 8}, - [10168] = {.lex_state = 0, .external_lex_state = 8}, - [10169] = {.lex_state = 0, .external_lex_state = 8}, - [10170] = {.lex_state = 0, .external_lex_state = 8}, - [10171] = {.lex_state = 0, .external_lex_state = 8}, - [10172] = {.lex_state = 0, .external_lex_state = 8}, - [10173] = {.lex_state = 0, .external_lex_state = 8}, - [10174] = {.lex_state = 23, .external_lex_state = 8}, - [10175] = {.lex_state = 318, .external_lex_state = 8}, - [10176] = {.lex_state = 23, .external_lex_state = 8}, - [10177] = {.lex_state = 23, .external_lex_state = 8}, - [10178] = {.lex_state = 0, .external_lex_state = 8}, - [10179] = {.lex_state = 0, .external_lex_state = 8}, - [10180] = {.lex_state = 0, .external_lex_state = 8}, - [10181] = {.lex_state = 0, .external_lex_state = 8}, - [10182] = {.lex_state = 0, .external_lex_state = 8}, - [10183] = {.lex_state = 0, .external_lex_state = 8}, - [10184] = {.lex_state = 0, .external_lex_state = 8}, - [10185] = {.lex_state = 0, .external_lex_state = 8}, - [10186] = {.lex_state = 0, .external_lex_state = 9}, - [10187] = {.lex_state = 0, .external_lex_state = 8}, - [10188] = {.lex_state = 0, .external_lex_state = 9}, - [10189] = {.lex_state = 0, .external_lex_state = 8}, - [10190] = {.lex_state = 0, .external_lex_state = 8}, - [10191] = {.lex_state = 0, .external_lex_state = 8}, - [10192] = {.lex_state = 23, .external_lex_state = 8}, - [10193] = {.lex_state = 0, .external_lex_state = 8}, - [10194] = {.lex_state = 23, .external_lex_state = 8}, - [10195] = {.lex_state = 23, .external_lex_state = 8}, - [10196] = {.lex_state = 0, .external_lex_state = 8}, - [10197] = {.lex_state = 0, .external_lex_state = 8}, - [10198] = {.lex_state = 0, .external_lex_state = 8}, - [10199] = {.lex_state = 0, .external_lex_state = 8}, - [10200] = {.lex_state = 0, .external_lex_state = 8}, - [10201] = {.lex_state = 0, .external_lex_state = 8}, - [10202] = {.lex_state = 0, .external_lex_state = 8}, - [10203] = {.lex_state = 0, .external_lex_state = 8}, - [10204] = {.lex_state = 0, .external_lex_state = 8}, - [10205] = {.lex_state = 0, .external_lex_state = 8}, - [10206] = {.lex_state = 0, .external_lex_state = 8}, - [10207] = {.lex_state = 0, .external_lex_state = 8}, - [10208] = {.lex_state = 0, .external_lex_state = 8}, - [10209] = {.lex_state = 0, .external_lex_state = 8}, - [10210] = {.lex_state = 0, .external_lex_state = 8}, - [10211] = {.lex_state = 0, .external_lex_state = 8}, - [10212] = {.lex_state = 0, .external_lex_state = 8}, - [10213] = {.lex_state = 0, .external_lex_state = 8}, - [10214] = {.lex_state = 0, .external_lex_state = 8}, - [10215] = {.lex_state = 0, .external_lex_state = 8}, - [10216] = {.lex_state = 0, .external_lex_state = 8}, - [10217] = {.lex_state = 0, .external_lex_state = 8}, - [10218] = {.lex_state = 0, .external_lex_state = 8}, - [10219] = {.lex_state = 0, .external_lex_state = 8}, - [10220] = {.lex_state = 0, .external_lex_state = 8}, - [10221] = {.lex_state = 0, .external_lex_state = 8}, - [10222] = {.lex_state = 0, .external_lex_state = 8}, - [10223] = {.lex_state = 0, .external_lex_state = 8}, - [10224] = {.lex_state = 0, .external_lex_state = 8}, - [10225] = {.lex_state = 0, .external_lex_state = 8}, - [10226] = {.lex_state = 0, .external_lex_state = 8}, - [10227] = {.lex_state = 0, .external_lex_state = 8}, - [10228] = {.lex_state = 23, .external_lex_state = 8}, - [10229] = {.lex_state = 23, .external_lex_state = 8}, - [10230] = {.lex_state = 0, .external_lex_state = 8}, - [10231] = {.lex_state = 0, .external_lex_state = 8}, - [10232] = {.lex_state = 0, .external_lex_state = 8}, - [10233] = {.lex_state = 0, .external_lex_state = 8}, - [10234] = {.lex_state = 0, .external_lex_state = 8}, - [10235] = {.lex_state = 0, .external_lex_state = 8}, - [10236] = {.lex_state = 23, .external_lex_state = 8}, - [10237] = {.lex_state = 23, .external_lex_state = 8}, - [10238] = {.lex_state = 0, .external_lex_state = 8}, - [10239] = {.lex_state = 0, .external_lex_state = 8}, - [10240] = {.lex_state = 0, .external_lex_state = 8}, - [10241] = {.lex_state = 23, .external_lex_state = 8}, - [10242] = {.lex_state = 0, .external_lex_state = 8}, - [10243] = {.lex_state = 23, .external_lex_state = 8}, - [10244] = {.lex_state = 0, .external_lex_state = 8}, - [10245] = {.lex_state = 0, .external_lex_state = 9}, - [10246] = {.lex_state = 0, .external_lex_state = 8}, - [10247] = {.lex_state = 0, .external_lex_state = 8}, - [10248] = {.lex_state = 0, .external_lex_state = 8}, - [10249] = {.lex_state = 0, .external_lex_state = 8}, - [10250] = {.lex_state = 23, .external_lex_state = 8}, - [10251] = {.lex_state = 0, .external_lex_state = 8}, - [10252] = {.lex_state = 23, .external_lex_state = 8}, - [10253] = {.lex_state = 0, .external_lex_state = 8}, - [10254] = {.lex_state = 23, .external_lex_state = 8}, - [10255] = {.lex_state = 0, .external_lex_state = 8}, - [10256] = {.lex_state = 23, .external_lex_state = 8}, - [10257] = {.lex_state = 0, .external_lex_state = 8}, - [10258] = {.lex_state = 0, .external_lex_state = 8}, - [10259] = {.lex_state = 0, .external_lex_state = 8}, - [10260] = {.lex_state = 0, .external_lex_state = 8}, - [10261] = {.lex_state = 0, .external_lex_state = 8}, - [10262] = {.lex_state = 0, .external_lex_state = 8}, - [10263] = {.lex_state = 23, .external_lex_state = 8}, - [10264] = {.lex_state = 23, .external_lex_state = 8}, - [10265] = {.lex_state = 30, .external_lex_state = 8}, - [10266] = {.lex_state = 0, .external_lex_state = 8}, - [10267] = {.lex_state = 0, .external_lex_state = 8}, - [10268] = {.lex_state = 0, .external_lex_state = 8}, - [10269] = {.lex_state = 0, .external_lex_state = 8}, - [10270] = {.lex_state = 0, .external_lex_state = 8}, - [10271] = {.lex_state = 23, .external_lex_state = 8}, - [10272] = {.lex_state = 0, .external_lex_state = 8}, - [10273] = {.lex_state = 23, .external_lex_state = 8}, - [10274] = {.lex_state = 0, .external_lex_state = 9}, - [10275] = {.lex_state = 23, .external_lex_state = 8}, - [10276] = {.lex_state = 0, .external_lex_state = 8}, - [10277] = {.lex_state = 23, .external_lex_state = 8}, - [10278] = {.lex_state = 23, .external_lex_state = 8}, - [10279] = {.lex_state = 0, .external_lex_state = 8}, - [10280] = {.lex_state = 0, .external_lex_state = 9}, - [10281] = {.lex_state = 0, .external_lex_state = 8}, - [10282] = {.lex_state = 23, .external_lex_state = 8}, - [10283] = {.lex_state = 0, .external_lex_state = 8}, - [10284] = {.lex_state = 23, .external_lex_state = 8}, - [10285] = {.lex_state = 0, .external_lex_state = 8}, - [10286] = {.lex_state = 23, .external_lex_state = 8}, - [10287] = {.lex_state = 23, .external_lex_state = 8}, - [10288] = {.lex_state = 23, .external_lex_state = 8}, - [10289] = {.lex_state = 0, .external_lex_state = 8}, - [10290] = {.lex_state = 23, .external_lex_state = 8}, - [10291] = {.lex_state = 0, .external_lex_state = 8}, - [10292] = {.lex_state = 23, .external_lex_state = 8}, - [10293] = {.lex_state = 23, .external_lex_state = 8}, - [10294] = {.lex_state = 23, .external_lex_state = 8}, - [10295] = {.lex_state = 23, .external_lex_state = 8}, - [10296] = {.lex_state = 23, .external_lex_state = 8}, - [10297] = {.lex_state = 0, .external_lex_state = 8}, - [10298] = {.lex_state = 0, .external_lex_state = 8}, - [10299] = {.lex_state = 0, .external_lex_state = 8}, - [10300] = {.lex_state = 0, .external_lex_state = 8}, - [10301] = {.lex_state = 0, .external_lex_state = 8}, - [10302] = {.lex_state = 23, .external_lex_state = 8}, - [10303] = {.lex_state = 0, .external_lex_state = 8}, - [10304] = {.lex_state = 23, .external_lex_state = 8}, - [10305] = {.lex_state = 0, .external_lex_state = 8}, - [10306] = {.lex_state = 0, .external_lex_state = 8}, - [10307] = {.lex_state = 0, .external_lex_state = 8}, - [10308] = {.lex_state = 23, .external_lex_state = 8}, - [10309] = {.lex_state = 0, .external_lex_state = 8}, - [10310] = {.lex_state = 23, .external_lex_state = 8}, - [10311] = {.lex_state = 0, .external_lex_state = 8}, - [10312] = {.lex_state = 0, .external_lex_state = 8}, - [10313] = {.lex_state = 23, .external_lex_state = 8}, - [10314] = {.lex_state = 0, .external_lex_state = 8}, - [10315] = {.lex_state = 23, .external_lex_state = 8}, - [10316] = {.lex_state = 0, .external_lex_state = 8}, - [10317] = {.lex_state = 0, .external_lex_state = 9}, - [10318] = {.lex_state = 0, .external_lex_state = 8}, - [10319] = {.lex_state = 23, .external_lex_state = 8}, - [10320] = {.lex_state = 0, .external_lex_state = 8}, - [10321] = {.lex_state = 0, .external_lex_state = 8}, - [10322] = {.lex_state = 0, .external_lex_state = 8}, - [10323] = {.lex_state = 23, .external_lex_state = 8}, - [10324] = {.lex_state = 0, .external_lex_state = 8}, - [10325] = {.lex_state = 0, .external_lex_state = 8}, - [10326] = {.lex_state = 23, .external_lex_state = 8}, - [10327] = {.lex_state = 0, .external_lex_state = 8}, - [10328] = {.lex_state = 0, .external_lex_state = 8}, - [10329] = {.lex_state = 0, .external_lex_state = 8}, - [10330] = {.lex_state = 23, .external_lex_state = 8}, - [10331] = {.lex_state = 0, .external_lex_state = 8}, - [10332] = {.lex_state = 23, .external_lex_state = 8}, - [10333] = {.lex_state = 0, .external_lex_state = 8}, - [10334] = {.lex_state = 0, .external_lex_state = 8}, - [10335] = {.lex_state = 23, .external_lex_state = 8}, - [10336] = {.lex_state = 0, .external_lex_state = 8}, - [10337] = {.lex_state = 23, .external_lex_state = 8}, - [10338] = {.lex_state = 0, .external_lex_state = 8}, - [10339] = {.lex_state = 23, .external_lex_state = 8}, - [10340] = {.lex_state = 0, .external_lex_state = 8}, - [10341] = {.lex_state = 23, .external_lex_state = 8}, - [10342] = {.lex_state = 0, .external_lex_state = 8}, - [10343] = {.lex_state = 0, .external_lex_state = 8}, - [10344] = {.lex_state = 0, .external_lex_state = 8}, - [10345] = {.lex_state = 23, .external_lex_state = 8}, - [10346] = {.lex_state = 0, .external_lex_state = 8}, - [10347] = {.lex_state = 0, .external_lex_state = 8}, - [10348] = {.lex_state = 23, .external_lex_state = 8}, - [10349] = {.lex_state = 23, .external_lex_state = 8}, - [10350] = {.lex_state = 0, .external_lex_state = 8}, - [10351] = {.lex_state = 0, .external_lex_state = 8}, - [10352] = {.lex_state = 23, .external_lex_state = 8}, - [10353] = {.lex_state = 23, .external_lex_state = 8}, - [10354] = {.lex_state = 0, .external_lex_state = 8}, - [10355] = {.lex_state = 0, .external_lex_state = 9}, - [10356] = {.lex_state = 23, .external_lex_state = 8}, - [10357] = {.lex_state = 23, .external_lex_state = 8}, - [10358] = {.lex_state = 0, .external_lex_state = 8}, - [10359] = {.lex_state = 0, .external_lex_state = 8}, - [10360] = {.lex_state = 23, .external_lex_state = 8}, - [10361] = {.lex_state = 23, .external_lex_state = 8}, - [10362] = {.lex_state = 0, .external_lex_state = 9}, - [10363] = {.lex_state = 0, .external_lex_state = 8}, - [10364] = {.lex_state = 0, .external_lex_state = 8}, - [10365] = {.lex_state = 0, .external_lex_state = 8}, - [10366] = {.lex_state = 0, .external_lex_state = 8}, - [10367] = {.lex_state = 0, .external_lex_state = 8}, - [10368] = {.lex_state = 23, .external_lex_state = 8}, - [10369] = {.lex_state = 23, .external_lex_state = 8}, - [10370] = {.lex_state = 0, .external_lex_state = 8}, - [10371] = {.lex_state = 0, .external_lex_state = 8}, - [10372] = {.lex_state = 23, .external_lex_state = 8}, - [10373] = {.lex_state = 23, .external_lex_state = 8}, - [10374] = {.lex_state = 23, .external_lex_state = 8}, - [10375] = {.lex_state = 0, .external_lex_state = 8}, - [10376] = {.lex_state = 0, .external_lex_state = 8}, - [10377] = {.lex_state = 23, .external_lex_state = 8}, - [10378] = {.lex_state = 23, .external_lex_state = 8}, - [10379] = {.lex_state = 0, .external_lex_state = 8}, - [10380] = {.lex_state = 0, .external_lex_state = 8}, - [10381] = {.lex_state = 23, .external_lex_state = 8}, - [10382] = {.lex_state = 23, .external_lex_state = 8}, - [10383] = {.lex_state = 0, .external_lex_state = 8}, - [10384] = {.lex_state = 0, .external_lex_state = 8}, - [10385] = {.lex_state = 23, .external_lex_state = 8}, - [10386] = {.lex_state = 23, .external_lex_state = 8}, - [10387] = {.lex_state = 0, .external_lex_state = 8}, - [10388] = {.lex_state = 0, .external_lex_state = 8}, - [10389] = {.lex_state = 23, .external_lex_state = 8}, - [10390] = {.lex_state = 23, .external_lex_state = 8}, - [10391] = {.lex_state = 0, .external_lex_state = 8}, - [10392] = {.lex_state = 0, .external_lex_state = 8}, - [10393] = {.lex_state = 23, .external_lex_state = 8}, - [10394] = {.lex_state = 23, .external_lex_state = 8}, - [10395] = {.lex_state = 0, .external_lex_state = 8}, - [10396] = {.lex_state = 0, .external_lex_state = 8}, - [10397] = {.lex_state = 23, .external_lex_state = 8}, - [10398] = {.lex_state = 23, .external_lex_state = 8}, - [10399] = {.lex_state = 0, .external_lex_state = 8}, - [10400] = {.lex_state = 23, .external_lex_state = 8}, - [10401] = {.lex_state = 23, .external_lex_state = 8}, - [10402] = {.lex_state = 0, .external_lex_state = 8}, - [10403] = {.lex_state = 23, .external_lex_state = 8}, - [10404] = {.lex_state = 23, .external_lex_state = 8}, - [10405] = {.lex_state = 0, .external_lex_state = 9}, - [10406] = {.lex_state = 0, .external_lex_state = 8}, - [10407] = {.lex_state = 0, .external_lex_state = 8}, - [10408] = {.lex_state = 23, .external_lex_state = 8}, - [10409] = {.lex_state = 23, .external_lex_state = 8}, - [10410] = {.lex_state = 0, .external_lex_state = 8}, - [10411] = {.lex_state = 0, .external_lex_state = 8}, - [10412] = {.lex_state = 23, .external_lex_state = 8}, - [10413] = {.lex_state = 0, .external_lex_state = 8}, - [10414] = {.lex_state = 23, .external_lex_state = 8}, - [10415] = {.lex_state = 0, .external_lex_state = 8}, - [10416] = {.lex_state = 23, .external_lex_state = 8}, - [10417] = {.lex_state = 23, .external_lex_state = 8}, - [10418] = {.lex_state = 23, .external_lex_state = 8}, - [10419] = {.lex_state = 23, .external_lex_state = 8}, - [10420] = {.lex_state = 23, .external_lex_state = 8}, - [10421] = {.lex_state = 23, .external_lex_state = 8}, - [10422] = {.lex_state = 23, .external_lex_state = 8}, - [10423] = {.lex_state = 23, .external_lex_state = 8}, - [10424] = {.lex_state = 23, .external_lex_state = 8}, - [10425] = {.lex_state = 23, .external_lex_state = 8}, - [10426] = {.lex_state = 0, .external_lex_state = 8}, - [10427] = {.lex_state = 0, .external_lex_state = 8}, - [10428] = {.lex_state = 23, .external_lex_state = 8}, - [10429] = {.lex_state = 23, .external_lex_state = 8}, - [10430] = {.lex_state = 0, .external_lex_state = 8}, - [10431] = {.lex_state = 0, .external_lex_state = 8}, - [10432] = {.lex_state = 0, .external_lex_state = 8}, - [10433] = {.lex_state = 23, .external_lex_state = 8}, - [10434] = {.lex_state = 0, .external_lex_state = 8}, - [10435] = {.lex_state = 0, .external_lex_state = 8}, - [10436] = {.lex_state = 0, .external_lex_state = 8}, - [10437] = {.lex_state = 0, .external_lex_state = 8}, - [10438] = {.lex_state = 0, .external_lex_state = 8}, - [10439] = {.lex_state = 0, .external_lex_state = 8}, - [10440] = {.lex_state = 0, .external_lex_state = 8}, - [10441] = {.lex_state = 322, .external_lex_state = 8}, -}; - -enum { - ts_external_token__automatic_semicolon = 0, - ts_external_token__import_list_delimiter = 1, - ts_external_token_safe_nav = 2, - ts_external_token_multiline_comment = 3, - ts_external_token__string_start = 4, - ts_external_token__string_end = 5, - ts_external_token__string_content = 6, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token__automatic_semicolon] = sym__automatic_semicolon, - [ts_external_token__import_list_delimiter] = sym__import_list_delimiter, - [ts_external_token_safe_nav] = sym_safe_nav, - [ts_external_token_multiline_comment] = sym_multiline_comment, - [ts_external_token__string_start] = sym__string_start, - [ts_external_token__string_end] = sym__string_end, - [ts_external_token__string_content] = sym__string_content, -}; - -static const bool ts_external_scanner_states[12][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token__import_list_delimiter] = true, - [ts_external_token_safe_nav] = true, - [ts_external_token_multiline_comment] = true, - [ts_external_token__string_start] = true, - [ts_external_token__string_end] = true, - [ts_external_token__string_content] = true, - }, - [2] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__string_start] = true, - }, - [3] = { - [ts_external_token_safe_nav] = true, - [ts_external_token_multiline_comment] = true, - [ts_external_token__string_start] = true, - }, - [4] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token_safe_nav] = true, - [ts_external_token_multiline_comment] = true, - [ts_external_token__string_start] = true, - }, - [5] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token_multiline_comment] = true, - [ts_external_token__string_start] = true, - }, - [6] = { - [ts_external_token_safe_nav] = true, - [ts_external_token_multiline_comment] = true, - }, - [7] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token_safe_nav] = true, - [ts_external_token_multiline_comment] = true, - }, - [8] = { - [ts_external_token_multiline_comment] = true, - }, - [9] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token_multiline_comment] = true, - }, - [10] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__string_end] = true, - [ts_external_token__string_content] = true, - }, - [11] = { - [ts_external_token__import_list_delimiter] = true, - [ts_external_token_multiline_comment] = true, - }, + [10152] = {.lex_state = 23, .external_lex_state = 8}, + [10153] = {.lex_state = 322, .external_lex_state = 8}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -34365,7 +33651,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typealias] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), - [anon_sym_fun] = ACTIONS(1), [anon_sym_interface] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), [anon_sym_constructor] = ACTIONS(1), @@ -34383,6 +33668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_init] = ACTIONS(1), [anon_sym_companion] = ACTIONS(1), [anon_sym_object] = ACTIONS(1), + [anon_sym_fun] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_get] = ACTIONS(1), @@ -34501,94 +33787,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_content] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(10343), + [sym_source_file] = STATE(10057), [sym_shebang_line] = STATE(53), - [sym_file_annotation] = STATE(54), - [sym_package_header] = STATE(76), - [sym_import_list] = STATE(66), - [sym_import_header] = STATE(9037), - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat1] = STATE(54), - [aux_sym_source_file_repeat2] = STATE(66), - [aux_sym_source_file_repeat3] = STATE(228), - [aux_sym_import_list_repeat1] = STATE(9037), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_file_annotation] = STATE(52), + [sym_package_header] = STATE(58), + [sym_import_list] = STATE(69), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat1] = STATE(52), + [aux_sym_source_file_repeat2] = STATE(69), + [aux_sym_source_file_repeat3] = STATE(252), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [ts_builtin_sym_end] = ACTIONS(5), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_POUND_BANG] = ACTIONS(9), @@ -34598,14 +33884,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -34673,86 +33959,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [2] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4826), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(3412), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1831), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8666), - [sym_modifiers] = STATE(8567), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(768), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3473), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), @@ -34761,20 +34047,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typealias] = ACTIONS(125), [anon_sym_EQ] = ACTIONS(123), [anon_sym_class] = ACTIONS(127), - [anon_sym_fun] = ACTIONS(129), [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_COMMA] = ACTIONS(121), [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_val] = ACTIONS(137), - [anon_sym_var] = ACTIONS(137), + [anon_sym_val] = ACTIONS(135), + [anon_sym_var] = ACTIONS(135), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), [anon_sym_where] = ACTIONS(123), - [anon_sym_object] = ACTIONS(139), + [anon_sym_object] = ACTIONS(137), + [anon_sym_fun] = ACTIONS(139), [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), [anon_sym_get] = ACTIONS(141), @@ -34870,86 +34156,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(205), }, [3] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4823), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(3412), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1831), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8666), - [sym_modifiers] = STATE(8567), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(768), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3487), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), @@ -34958,20 +34244,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typealias] = ACTIONS(125), [anon_sym_EQ] = ACTIONS(209), [anon_sym_class] = ACTIONS(127), - [anon_sym_fun] = ACTIONS(129), [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_COMMA] = ACTIONS(207), [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_val] = ACTIONS(137), - [anon_sym_var] = ACTIONS(137), + [anon_sym_val] = ACTIONS(135), + [anon_sym_var] = ACTIONS(135), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), [anon_sym_where] = ACTIONS(209), - [anon_sym_object] = ACTIONS(139), + [anon_sym_object] = ACTIONS(137), + [anon_sym_fun] = ACTIONS(139), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), [anon_sym_get] = ACTIONS(141), @@ -35067,86 +34353,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(205), }, [4] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3689), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(1241), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(2078), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8668), - [sym_modifiers] = STATE(8588), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4779), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(768), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(217), + [anon_sym_interface] = ACTIONS(217), + [anon_sym_enum] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(239), + [anon_sym_DASH_GT] = ACTIONS(121), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [5] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4701), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(768), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(213), @@ -35155,20 +34638,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typealias] = ACTIONS(215), [anon_sym_EQ] = ACTIONS(209), [anon_sym_class] = ACTIONS(217), - [anon_sym_fun] = ACTIONS(219), [anon_sym_interface] = ACTIONS(217), - [anon_sym_enum] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_enum] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(221), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_COMMA] = ACTIONS(207), [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_val] = ACTIONS(227), - [anon_sym_var] = ACTIONS(227), + [anon_sym_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), [anon_sym_where] = ACTIONS(209), - [anon_sym_object] = ACTIONS(229), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), [anon_sym_get] = ACTIONS(231), @@ -35263,115 +34746,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [5] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(9752), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), + [6] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9478), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_RBRACK] = ACTIONS(297), [anon_sym_as] = ACTIONS(299), [anon_sym_typealias] = ACTIONS(301), [anon_sym_EQ] = ACTIONS(299), [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), [anon_sym_RBRACE] = ACTIONS(297), - [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_COMMA] = ACTIONS(297), [anon_sym_RPAREN] = ACTIONS(297), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), [anon_sym_LT] = ACTIONS(299), [anon_sym_GT] = ACTIONS(299), [anon_sym_where] = ACTIONS(299), - [anon_sym_object] = ACTIONS(313), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(299), [anon_sym_SEMI] = ACTIONS(315), [anon_sym_get] = ACTIONS(317), [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(321), [anon_sym_DASH_GT] = ACTIONS(297), [sym_label] = ACTIONS(323), @@ -35386,13 +34869,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), [anon_sym_else] = ACTIONS(299), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(335), [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS_EQ] = ACTIONS(297), [anon_sym_DASH_EQ] = ACTIONS(297), [anon_sym_STAR_EQ] = ACTIONS(297), @@ -35419,9 +34902,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -35440,156 +34923,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_safe_nav] = ACTIONS(297), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [6] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3637), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(1241), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(2078), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8668), - [sym_modifiers] = STATE(8588), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(211), + [7] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5214), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(3771), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_modifiers] = STATE(8284), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(215), + [anon_sym_typealias] = ACTIONS(345), [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(217), - [anon_sym_fun] = ACTIONS(219), - [anon_sym_interface] = ACTIONS(217), - [anon_sym_enum] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_class] = ACTIONS(347), + [anon_sym_interface] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_val] = ACTIONS(227), - [anon_sym_var] = ACTIONS(227), + [anon_sym_val] = ACTIONS(353), + [anon_sym_var] = ACTIONS(353), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), [anon_sym_where] = ACTIONS(123), - [anon_sym_object] = ACTIONS(229), + [anon_sym_object] = ACTIONS(355), + [anon_sym_fun] = ACTIONS(357), [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(231), - [anon_sym_set] = ACTIONS(233), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_DASH_GT] = ACTIONS(121), - [sym_label] = ACTIONS(241), - [anon_sym_for] = ACTIONS(243), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(363), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(245), - [anon_sym_do] = ACTIONS(247), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(251), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -35604,21 +35084,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(381), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(269), - [anon_sym_inner] = ACTIONS(269), - [anon_sym_value] = ACTIONS(269), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -35637,377 +35117,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(271), - [anon_sym_actual] = ACTIONS(271), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(283), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [7] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(9752), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_as] = ACTIONS(299), - [anon_sym_typealias] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(299), - [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), - [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(297), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(297), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(299), - [anon_sym_GT] = ACTIONS(299), - [anon_sym_where] = ACTIONS(299), - [anon_sym_object] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(299), - [anon_sym_SEMI] = ACTIONS(315), - [anon_sym_get] = ACTIONS(317), - [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(321), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(325), - [anon_sym_in] = ACTIONS(299), - [anon_sym_while] = ACTIONS(327), - [anon_sym_do] = ACTIONS(329), - [anon_sym_DOT_DOT] = ACTIONS(297), - [anon_sym_QMARK_COLON] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_PIPE_PIPE] = ACTIONS(297), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(299), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_PERCENT_EQ] = ACTIONS(297), - [anon_sym_BANG_EQ] = ACTIONS(299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(297), - [anon_sym_EQ_EQ] = ACTIONS(299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(297), - [anon_sym_LT_EQ] = ACTIONS(297), - [anon_sym_GT_EQ] = ACTIONS(297), - [anon_sym_BANGin] = ACTIONS(297), - [anon_sym_is] = ACTIONS(299), - [anon_sym_BANGis] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_SLASH] = ACTIONS(299), - [anon_sym_PERCENT] = ACTIONS(299), - [anon_sym_as_QMARK] = ACTIONS(297), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_BANG_BANG] = ACTIONS(297), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym__automatic_semicolon] = ACTIONS(297), - [sym_safe_nav] = ACTIONS(297), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(113), }, [8] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4084), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(1425), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8636), - [sym_modifiers] = STATE(8553), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(779), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1059), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8297), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_class] = ACTIONS(351), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_interface] = ACTIONS(351), - [anon_sym_enum] = ACTIONS(355), - [anon_sym_LBRACE] = ACTIONS(357), - [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_val] = ACTIONS(361), - [anon_sym_var] = ACTIONS(361), - [anon_sym_LT] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_where] = ACTIONS(209), - [anon_sym_object] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(365), - [anon_sym_set] = ACTIONS(367), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(373), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), - [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(207), - [anon_sym_QMARK_COLON] = ACTIONS(207), - [anon_sym_AMP_AMP] = ACTIONS(207), - [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(207), - [anon_sym_DASH_EQ] = ACTIONS(207), - [anon_sym_STAR_EQ] = ACTIONS(207), - [anon_sym_SLASH_EQ] = ACTIONS(207), - [anon_sym_PERCENT_EQ] = ACTIONS(207), - [anon_sym_BANG_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(207), - [anon_sym_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(207), - [anon_sym_LT_EQ] = ACTIONS(207), - [anon_sym_GT_EQ] = ACTIONS(207), - [anon_sym_BANGin] = ACTIONS(207), - [anon_sym_is] = ACTIONS(209), - [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_BANG_BANG] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(393), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(441), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -36026,154 +35312,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(207), - [sym_safe_nav] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(471), }, [9] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1167), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(373), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2024), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8635), - [sym_modifiers] = STATE(8572), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1052), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8297), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(389), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(435), + [anon_sym_typealias] = ACTIONS(391), [anon_sym_EQ] = ACTIONS(209), - [anon_sym_class] = ACTIONS(437), - [anon_sym_fun] = ACTIONS(439), - [anon_sym_interface] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_class] = ACTIONS(393), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(397), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_LPAREN] = ACTIONS(399), [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_val] = ACTIONS(447), - [anon_sym_var] = ACTIONS(447), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), [anon_sym_where] = ACTIONS(209), - [anon_sym_object] = ACTIONS(449), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(451), - [anon_sym_set] = ACTIONS(453), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(459), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), [anon_sym_PLUS_EQ] = ACTIONS(207), [anon_sym_DASH_EQ] = ACTIONS(207), [anon_sym_STAR_EQ] = ACTIONS(207), @@ -36188,21 +35474,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(207), [anon_sym_is] = ACTIONS(209), [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), [anon_sym_SLASH] = ACTIONS(209), [anon_sym_PERCENT] = ACTIONS(209), [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(441), [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -36221,154 +35507,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym__automatic_semicolon] = ACTIONS(207), [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, [10] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4092), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(1425), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8636), - [sym_modifiers] = STATE(8553), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3986), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(1392), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8319), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(779), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(763), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(475), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(349), + [anon_sym_typealias] = ACTIONS(477), [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(351), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_interface] = ACTIONS(351), - [anon_sym_enum] = ACTIONS(355), - [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_class] = ACTIONS(479), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(483), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(485), [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_val] = ACTIONS(361), - [anon_sym_var] = ACTIONS(361), + [anon_sym_val] = ACTIONS(487), + [anon_sym_var] = ACTIONS(487), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), [anon_sym_where] = ACTIONS(123), - [anon_sym_object] = ACTIONS(363), + [anon_sym_object] = ACTIONS(489), + [anon_sym_fun] = ACTIONS(491), [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(365), - [anon_sym_set] = ACTIONS(367), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(373), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), + [anon_sym_get] = ACTIONS(493), + [anon_sym_set] = ACTIONS(495), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(501), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -36383,21 +35669,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(527), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -36416,154 +35702,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, [11] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1129), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(373), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2024), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8635), - [sym_modifiers] = STATE(8572), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3943), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(1392), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8319), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(763), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_class] = ACTIONS(479), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_val] = ACTIONS(487), + [anon_sym_var] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_where] = ACTIONS(209), + [anon_sym_object] = ACTIONS(489), + [anon_sym_fun] = ACTIONS(491), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(493), + [anon_sym_set] = ACTIONS(495), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(501), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS_EQ] = ACTIONS(207), + [anon_sym_DASH_EQ] = ACTIONS(207), + [anon_sym_STAR_EQ] = ACTIONS(207), + [anon_sym_SLASH_EQ] = ACTIONS(207), + [anon_sym_PERCENT_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(209), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(527), + [anon_sym_BANG_BANG] = ACTIONS(207), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [12] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3156), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8305), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(435), + [anon_sym_typealias] = ACTIONS(561), [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(437), - [anon_sym_fun] = ACTIONS(439), - [anon_sym_interface] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_class] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_val] = ACTIONS(447), - [anon_sym_var] = ACTIONS(447), + [anon_sym_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), [anon_sym_where] = ACTIONS(123), - [anon_sym_object] = ACTIONS(449), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(451), - [anon_sym_set] = ACTIONS(453), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(459), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(585), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -36578,21 +36059,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(611), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -36611,154 +36092,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(639), }, - [12] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3150), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(968), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(2216), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8652), - [sym_modifiers] = STATE(8566), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), + [13] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3215), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8305), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(774), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(519), + [anon_sym_typealias] = ACTIONS(561), [anon_sym_EQ] = ACTIONS(209), - [anon_sym_class] = ACTIONS(521), - [anon_sym_fun] = ACTIONS(523), - [anon_sym_interface] = ACTIONS(521), - [anon_sym_enum] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), + [anon_sym_class] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(529), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_val] = ACTIONS(531), - [anon_sym_var] = ACTIONS(531), + [anon_sym_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), [anon_sym_where] = ACTIONS(209), - [anon_sym_object] = ACTIONS(533), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(535), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [sym_label] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(585), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(549), - [anon_sym_do] = ACTIONS(551), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS_EQ] = ACTIONS(207), [anon_sym_DASH_EQ] = ACTIONS(207), [anon_sym_STAR_EQ] = ACTIONS(207), @@ -36773,21 +36254,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(207), [anon_sym_is] = ACTIONS(209), [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), [anon_sym_SLASH] = ACTIONS(209), [anon_sym_PERCENT] = ACTIONS(209), [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(569), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(611), [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -36806,183 +36287,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym__automatic_semicolon] = ACTIONS(207), [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(639), }, - [13] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5372), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(3818), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8644), - [sym_modifiers] = STATE(8576), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [14] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9478), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(601), - [anon_sym_fun] = ACTIONS(603), - [anon_sym_interface] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_val] = ACTIONS(609), - [anon_sym_var] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(123), - [anon_sym_GT] = ACTIONS(123), - [anon_sym_where] = ACTIONS(123), - [anon_sym_object] = ACTIONS(611), - [anon_sym_DOT] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(615), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(617), - [sym_label] = ACTIONS(619), - [anon_sym_for] = ACTIONS(621), - [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(623), - [anon_sym_do] = ACTIONS(625), - [anon_sym_DOT_DOT] = ACTIONS(121), - [anon_sym_QMARK_COLON] = ACTIONS(121), - [anon_sym_AMP_AMP] = ACTIONS(121), - [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(627), - [anon_sym_if] = ACTIONS(629), - [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(121), - [anon_sym_EQ_EQ] = ACTIONS(123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(121), - [anon_sym_LT_EQ] = ACTIONS(121), - [anon_sym_GT_EQ] = ACTIONS(121), - [anon_sym_BANGin] = ACTIONS(121), - [anon_sym_is] = ACTIONS(123), - [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(635), - [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_as] = ACTIONS(299), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(299), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(297), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(299), + [anon_sym_GT] = ACTIONS(299), + [anon_sym_where] = ACTIONS(299), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(321), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_in] = ACTIONS(299), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(329), + [anon_sym_DOT_DOT] = ACTIONS(297), + [anon_sym_QMARK_COLON] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_PIPE_PIPE] = ACTIONS(297), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(299), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS_EQ] = ACTIONS(297), + [anon_sym_DASH_EQ] = ACTIONS(297), + [anon_sym_STAR_EQ] = ACTIONS(297), + [anon_sym_SLASH_EQ] = ACTIONS(297), + [anon_sym_PERCENT_EQ] = ACTIONS(297), + [anon_sym_BANG_EQ] = ACTIONS(299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(297), + [anon_sym_EQ_EQ] = ACTIONS(299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(297), + [anon_sym_GT_EQ] = ACTIONS(297), + [anon_sym_BANGin] = ACTIONS(297), + [anon_sym_is] = ACTIONS(299), + [anon_sym_BANGis] = ACTIONS(297), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_SLASH] = ACTIONS(299), + [anon_sym_PERCENT] = ACTIONS(299), + [anon_sym_as_QMARK] = ACTIONS(297), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_BANG_BANG] = ACTIONS(297), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -37001,151 +36482,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(121), - [sym_safe_nav] = ACTIONS(121), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym__automatic_semicolon] = ACTIONS(297), + [sym_safe_nav] = ACTIONS(297), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(295), }, - [14] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5329), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(3818), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8644), - [sym_modifiers] = STATE(8576), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), + [15] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5236), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(3771), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_modifiers] = STATE(8284), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(599), + [anon_sym_typealias] = ACTIONS(345), [anon_sym_EQ] = ACTIONS(209), - [anon_sym_class] = ACTIONS(601), - [anon_sym_fun] = ACTIONS(603), - [anon_sym_interface] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_class] = ACTIONS(347), + [anon_sym_interface] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_val] = ACTIONS(609), - [anon_sym_var] = ACTIONS(609), + [anon_sym_val] = ACTIONS(353), + [anon_sym_var] = ACTIONS(353), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), [anon_sym_where] = ACTIONS(209), - [anon_sym_object] = ACTIONS(611), + [anon_sym_object] = ACTIONS(355), + [anon_sym_fun] = ACTIONS(357), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(615), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(617), - [sym_label] = ACTIONS(619), - [anon_sym_for] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(363), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(623), - [anon_sym_do] = ACTIONS(625), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(627), - [anon_sym_if] = ACTIONS(629), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), [anon_sym_else] = ACTIONS(209), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), @@ -37163,14 +36644,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(207), [anon_sym_is] = ACTIONS(209), [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), [anon_sym_SLASH] = ACTIONS(209), [anon_sym_PERCENT] = ACTIONS(209), [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(381), [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -37204,7 +36685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), + [sym_real_literal] = ACTIONS(385), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -37217,302 +36698,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [15] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3178), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(968), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(2216), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8652), - [sym_modifiers] = STATE(8566), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(774), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(521), - [anon_sym_fun] = ACTIONS(523), - [anon_sym_interface] = ACTIONS(521), - [anon_sym_enum] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_val] = ACTIONS(531), - [anon_sym_var] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(123), - [anon_sym_GT] = ACTIONS(123), - [anon_sym_where] = ACTIONS(123), - [anon_sym_object] = ACTIONS(533), - [anon_sym_DOT] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(535), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [sym_label] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(549), - [anon_sym_do] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(121), - [anon_sym_QMARK_COLON] = ACTIONS(121), - [anon_sym_AMP_AMP] = ACTIONS(121), - [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(121), - [anon_sym_EQ_EQ] = ACTIONS(123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(121), - [anon_sym_LT_EQ] = ACTIONS(121), - [anon_sym_GT_EQ] = ACTIONS(121), - [anon_sym_BANGin] = ACTIONS(121), - [anon_sym_is] = ACTIONS(123), - [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym__automatic_semicolon] = ACTIONS(121), - [sym_safe_nav] = ACTIONS(121), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, [16] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5372), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4185), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8650), - [sym_modifiers] = STATE(8564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(802), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5236), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_modifiers] = STATE(8288), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_EQ] = ACTIONS(123), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_EQ] = ACTIONS(209), [anon_sym_class] = ACTIONS(641), - [anon_sym_fun] = ACTIONS(643), [anon_sym_interface] = ACTIONS(641), - [anon_sym_enum] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(647), - [anon_sym_var] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(123), - [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(649), - [anon_sym_DOT] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), [anon_sym_get] = ACTIONS(651), [anon_sym_set] = ACTIONS(653), [anon_sym_this] = ACTIONS(39), @@ -37520,16 +36806,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(655), [sym_label] = ACTIONS(657), [anon_sym_for] = ACTIONS(659), - [anon_sym_in] = ACTIONS(123), + [anon_sym_in] = ACTIONS(209), [anon_sym_while] = ACTIONS(661), - [anon_sym_do] = ACTIONS(625), - [anon_sym_DOT_DOT] = ACTIONS(121), - [anon_sym_QMARK_COLON] = ACTIONS(121), - [anon_sym_AMP_AMP] = ACTIONS(121), - [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(627), + [anon_sym_do] = ACTIONS(371), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(373), [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(123), + [anon_sym_else] = ACTIONS(209), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), @@ -37537,29 +36823,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(121), - [anon_sym_EQ_EQ] = ACTIONS(123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(121), - [anon_sym_LT_EQ] = ACTIONS(121), - [anon_sym_GT_EQ] = ACTIONS(121), - [anon_sym_BANGin] = ACTIONS(121), - [anon_sym_is] = ACTIONS(123), - [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS_EQ] = ACTIONS(207), + [anon_sym_DASH_EQ] = ACTIONS(207), + [anon_sym_STAR_EQ] = ACTIONS(207), + [anon_sym_SLASH_EQ] = ACTIONS(207), + [anon_sym_PERCENT_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(663), [anon_sym_DASH] = ACTIONS(663), - [anon_sym_SLASH] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(209), + [anon_sym_as_QMARK] = ACTIONS(207), [anon_sym_PLUS_PLUS] = ACTIONS(665), [anon_sym_DASH_DASH] = ACTIONS(665), [anon_sym_BANG] = ACTIONS(663), - [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -37592,7 +36878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), + [sym_real_literal] = ACTIONS(385), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -37600,136 +36886,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(107), [anon_sym_SQUOTE] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(121), - [sym_safe_nav] = ACTIONS(121), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, [17] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4084), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2246), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1979), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8667), - [sym_modifiers] = STATE(8563), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(777), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4701), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8320), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(349), + [anon_sym_typealias] = ACTIONS(215), [anon_sym_EQ] = ACTIONS(209), [anon_sym_class] = ACTIONS(667), - [anon_sym_fun] = ACTIONS(669), [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(221), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(673), - [anon_sym_var] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_val] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), - [anon_sym_object] = ACTIONS(675), + [anon_sym_object] = ACTIONS(673), + [anon_sym_fun] = ACTIONS(675), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), [anon_sym_get] = ACTIONS(677), [anon_sym_set] = ACTIONS(679), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(681), [sym_label] = ACTIONS(683), [anon_sym_for] = ACTIONS(685), [anon_sym_in] = ACTIONS(209), [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(381), + [anon_sym_do] = ACTIONS(247), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(689), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(333), [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS_EQ] = ACTIONS(207), [anon_sym_DASH_EQ] = ACTIONS(207), [anon_sym_STAR_EQ] = ACTIONS(207), @@ -37744,21 +37031,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(207), [anon_sym_is] = ACTIONS(209), [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), [anon_sym_SLASH] = ACTIONS(209), [anon_sym_PERCENT] = ACTIONS(209), [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(695), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(689), [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -37777,150 +37064,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(295), }, [18] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3637), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(1680), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(1724), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8640), - [sym_modifiers] = STATE(8589), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4779), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8320), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_as] = ACTIONS(123), [anon_sym_typealias] = ACTIONS(215), [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(699), - [anon_sym_fun] = ACTIONS(701), - [anon_sym_interface] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_class] = ACTIONS(667), + [anon_sym_interface] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(221), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_val] = ACTIONS(705), - [anon_sym_var] = ACTIONS(705), + [anon_sym_val] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(707), + [anon_sym_object] = ACTIONS(673), + [anon_sym_fun] = ACTIONS(675), [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(711), + [anon_sym_get] = ACTIONS(677), + [anon_sym_set] = ACTIONS(679), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(713), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), + [anon_sym_STAR] = ACTIONS(681), + [sym_label] = ACTIONS(683), + [anon_sym_for] = ACTIONS(685), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(719), + [anon_sym_while] = ACTIONS(687), [anon_sym_do] = ACTIONS(247), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(721), + [anon_sym_if] = ACTIONS(333), [anon_sym_else] = ACTIONS(123), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), @@ -37938,14 +37224,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(727), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(689), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -37992,323 +37278,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(295), }, [19] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4826), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4101), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1799), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8656), - [sym_modifiers] = STATE(8575), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(731), - [anon_sym_fun] = ACTIONS(733), - [anon_sym_interface] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_val] = ACTIONS(737), - [anon_sym_var] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(123), - [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(743), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(745), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), - [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(751), - [anon_sym_do] = ACTIONS(157), - [anon_sym_DOT_DOT] = ACTIONS(121), - [anon_sym_QMARK_COLON] = ACTIONS(121), - [anon_sym_AMP_AMP] = ACTIONS(121), - [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(121), - [anon_sym_EQ_EQ] = ACTIONS(123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(121), - [anon_sym_LT_EQ] = ACTIONS(121), - [anon_sym_GT_EQ] = ACTIONS(121), - [anon_sym_BANGin] = ACTIONS(121), - [anon_sym_is] = ACTIONS(123), - [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(193), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_safe_nav] = ACTIONS(121), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [20] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1167), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(383), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2201), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8642), - [sym_modifiers] = STATE(8554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3215), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8295), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(753), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(435), + [anon_sym_typealias] = ACTIONS(561), [anon_sym_EQ] = ACTIONS(209), - [anon_sym_class] = ACTIONS(757), - [anon_sym_fun] = ACTIONS(759), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_class] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(763), - [anon_sym_var] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(697), + [anon_sym_var] = ACTIONS(697), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), - [anon_sym_object] = ACTIONS(765), + [anon_sym_object] = ACTIONS(699), + [anon_sym_fun] = ACTIONS(701), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(769), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(771), - [sym_label] = ACTIONS(773), - [anon_sym_for] = ACTIONS(775), + [anon_sym_get] = ACTIONS(703), + [anon_sym_set] = ACTIONS(705), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(707), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(467), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(779), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS_EQ] = ACTIONS(207), [anon_sym_DASH_EQ] = ACTIONS(207), [anon_sym_STAR_EQ] = ACTIONS(207), @@ -38323,21 +37416,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(207), [anon_sym_is] = ACTIONS(209), [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), [anon_sym_SLASH] = ACTIONS(209), [anon_sym_PERCENT] = ACTIONS(209), [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(721), [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -38356,153 +37449,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym__automatic_semicolon] = ACTIONS(207), [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(639), }, - [21] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4823), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4101), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1799), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8656), - [sym_modifiers] = STATE(8575), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [20] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3943), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8316), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(475), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(125), + [anon_sym_typealias] = ACTIONS(477), [anon_sym_EQ] = ACTIONS(209), - [anon_sym_class] = ACTIONS(731), - [anon_sym_fun] = ACTIONS(733), - [anon_sym_interface] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_class] = ACTIONS(725), + [anon_sym_interface] = ACTIONS(725), + [anon_sym_enum] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(483), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_val] = ACTIONS(737), - [anon_sym_var] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), - [anon_sym_object] = ACTIONS(739), + [anon_sym_object] = ACTIONS(731), + [anon_sym_fun] = ACTIONS(733), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(743), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(745), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(737), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(739), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(751), - [anon_sym_do] = ACTIONS(157), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(333), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), [anon_sym_PLUS_EQ] = ACTIONS(207), [anon_sym_DASH_EQ] = ACTIONS(207), [anon_sym_STAR_EQ] = ACTIONS(207), @@ -38529,9 +37621,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -38550,151 +37642,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(193), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(207), [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(555), }, - [22] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3178), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(1850), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8662), - [sym_modifiers] = STATE(8579), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(788), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [21] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3986), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8316), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(475), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(519), + [anon_sym_typealias] = ACTIONS(477), [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(789), - [anon_sym_fun] = ACTIONS(791), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(527), + [anon_sym_class] = ACTIONS(725), + [anon_sym_interface] = ACTIONS(725), + [anon_sym_enum] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(483), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(795), - [anon_sym_var] = ACTIONS(795), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(797), + [anon_sym_object] = ACTIONS(731), + [anon_sym_fun] = ACTIONS(733), [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(799), - [anon_sym_set] = ACTIONS(801), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(803), - [sym_label] = ACTIONS(805), - [anon_sym_for] = ACTIONS(807), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(737), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(739), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(551), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(553), - [anon_sym_if] = ACTIONS(811), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -38709,21 +37802,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(753), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -38742,152 +37835,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(555), }, - [23] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5329), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4185), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8650), - [sym_modifiers] = STATE(8564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(802), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [22] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3487), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_modifiers] = STATE(8303), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(784), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(599), + [anon_sym_typealias] = ACTIONS(125), [anon_sym_EQ] = ACTIONS(209), - [anon_sym_class] = ACTIONS(641), - [anon_sym_fun] = ACTIONS(643), - [anon_sym_interface] = ACTIONS(641), - [anon_sym_enum] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_class] = ACTIONS(757), + [anon_sym_interface] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(647), - [anon_sym_var] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_val] = ACTIONS(761), + [anon_sym_var] = ACTIONS(761), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), - [anon_sym_object] = ACTIONS(649), + [anon_sym_object] = ACTIONS(763), + [anon_sym_fun] = ACTIONS(765), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(651), - [anon_sym_set] = ACTIONS(653), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(655), - [sym_label] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), + [anon_sym_get] = ACTIONS(767), + [anon_sym_set] = ACTIONS(769), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(771), + [sym_label] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(661), - [anon_sym_do] = ACTIONS(625), + [anon_sym_while] = ACTIONS(777), + [anon_sym_do] = ACTIONS(157), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(627), - [anon_sym_if] = ACTIONS(55), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(779), [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), [anon_sym_PLUS_EQ] = ACTIONS(207), [anon_sym_DASH_EQ] = ACTIONS(207), [anon_sym_STAR_EQ] = ACTIONS(207), @@ -38902,21 +37996,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(207), [anon_sym_is] = ACTIONS(209), [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), [anon_sym_SLASH] = ACTIONS(209), [anon_sym_PERCENT] = ACTIONS(209), [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(785), [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -38935,152 +38029,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(207), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(205), }, - [24] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4092), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2246), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1979), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8667), - [sym_modifiers] = STATE(8563), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), + [23] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3473), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_modifiers] = STATE(8303), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(777), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(784), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(349), + [anon_sym_typealias] = ACTIONS(125), [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(667), - [anon_sym_fun] = ACTIONS(669), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_class] = ACTIONS(757), + [anon_sym_interface] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(673), - [anon_sym_var] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(761), + [anon_sym_var] = ACTIONS(761), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(675), + [anon_sym_object] = ACTIONS(763), + [anon_sym_fun] = ACTIONS(765), [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(677), - [anon_sym_set] = ACTIONS(679), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(681), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), + [anon_sym_get] = ACTIONS(767), + [anon_sym_set] = ACTIONS(769), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(771), + [sym_label] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(381), + [anon_sym_while] = ACTIONS(777), + [anon_sym_do] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(779), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [24] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3156), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8295), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(753), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(697), + [anon_sym_var] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(699), + [anon_sym_fun] = ACTIONS(701), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(703), + [anon_sym_set] = ACTIONS(705), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(707), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(689), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -39095,21 +38381,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(695), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(721), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -39128,152 +38414,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(639), }, [25] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1129), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(383), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2201), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8642), - [sym_modifiers] = STATE(8554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5214), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_modifiers] = STATE(8288), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(435), + [anon_sym_typealias] = ACTIONS(345), [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(757), - [anon_sym_fun] = ACTIONS(759), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(351), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(763), - [anon_sym_var] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(765), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(769), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(771), - [sym_label] = ACTIONS(773), - [anon_sym_for] = ACTIONS(775), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(655), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(467), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(371), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(779), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(55), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -39288,21 +38574,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(663), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -39321,152 +38607,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, [26] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3150), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(1850), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8662), - [sym_modifiers] = STATE(8579), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1052), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(385), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), [aux_sym__statement_repeat1] = STATE(788), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(389), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(519), + [anon_sym_typealias] = ACTIONS(391), [anon_sym_EQ] = ACTIONS(209), [anon_sym_class] = ACTIONS(789), - [anon_sym_fun] = ACTIONS(791), [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(527), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(397), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(795), - [anon_sym_var] = ACTIONS(795), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(793), + [anon_sym_var] = ACTIONS(793), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), - [anon_sym_object] = ACTIONS(797), + [anon_sym_object] = ACTIONS(795), + [anon_sym_fun] = ACTIONS(797), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), [anon_sym_get] = ACTIONS(799), [anon_sym_set] = ACTIONS(801), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), [anon_sym_STAR] = ACTIONS(803), [sym_label] = ACTIONS(805), [anon_sym_for] = ACTIONS(807), [anon_sym_in] = ACTIONS(209), [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(551), + [anon_sym_do] = ACTIONS(423), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(553), + [anon_sym_null] = ACTIONS(425), [anon_sym_if] = ACTIONS(811), [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), [anon_sym_throw] = ACTIONS(813), [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), [anon_sym_PLUS_EQ] = ACTIONS(207), [anon_sym_DASH_EQ] = ACTIONS(207), [anon_sym_STAR_EQ] = ACTIONS(207), @@ -39493,9 +38779,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -39514,158 +38800,540 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym__automatic_semicolon] = ACTIONS(207), [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(471), }, [27] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3689), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(1680), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(1724), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8640), - [sym_modifiers] = STATE(8589), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1059), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(385), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(789), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(793), + [anon_sym_var] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(795), + [anon_sym_fun] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(799), + [anon_sym_set] = ACTIONS(801), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(803), + [sym_label] = ACTIONS(805), + [anon_sym_for] = ACTIONS(807), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(817), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [28] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3473), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8309), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(821), + [anon_sym_interface] = ACTIONS(821), + [anon_sym_enum] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(827), + [anon_sym_var] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(829), + [anon_sym_fun] = ACTIONS(831), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(835), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [anon_sym_DASH_GT] = ACTIONS(121), + [sym_label] = ACTIONS(839), + [anon_sym_for] = ACTIONS(841), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(843), + [anon_sym_do] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(161), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [29] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4701), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4101), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_modifiers] = STATE(8289), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_RBRACK] = ACTIONS(207), [anon_sym_as] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_class] = ACTIONS(699), - [anon_sym_fun] = ACTIONS(701), - [anon_sym_interface] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_class] = ACTIONS(853), + [anon_sym_interface] = ACTIONS(853), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(207), [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_val] = ACTIONS(705), - [anon_sym_var] = ACTIONS(705), + [anon_sym_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), - [anon_sym_object] = ACTIONS(707), + [anon_sym_where] = ACTIONS(209), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(711), + [anon_sym_get] = ACTIONS(865), + [anon_sym_set] = ACTIONS(867), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(713), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(207), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(719), + [anon_sym_while] = ACTIONS(875), [anon_sym_do] = ACTIONS(247), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(721), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(251), [anon_sym_else] = ACTIONS(209), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS_EQ] = ACTIONS(207), - [anon_sym_DASH_EQ] = ACTIONS(207), - [anon_sym_STAR_EQ] = ACTIONS(207), - [anon_sym_SLASH_EQ] = ACTIONS(207), - [anon_sym_PERCENT_EQ] = ACTIONS(207), [anon_sym_BANG_EQ] = ACTIONS(209), [anon_sym_BANG_EQ_EQ] = ACTIONS(207), [anon_sym_EQ_EQ] = ACTIONS(209), @@ -39675,14 +39343,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(207), [anon_sym_is] = ACTIONS(209), [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(207), [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(727), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -39716,7 +39384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(283), + [sym_real_literal] = ACTIONS(343), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -39728,135 +39396,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [28] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3689), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(2315), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1540), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8653), - [sym_modifiers] = STATE(8577), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(211), + [30] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3487), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8309), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_RBRACK] = ACTIONS(207), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(215), + [anon_sym_typealias] = ACTIONS(125), [anon_sym_class] = ACTIONS(821), - [anon_sym_fun] = ACTIONS(823), [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_enum] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(825), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_COMMA] = ACTIONS(207), [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_val] = ACTIONS(829), - [anon_sym_var] = ACTIONS(829), + [anon_sym_val] = ACTIONS(827), + [anon_sym_var] = ACTIONS(827), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), [anon_sym_where] = ACTIONS(209), - [anon_sym_object] = ACTIONS(831), + [anon_sym_object] = ACTIONS(829), + [anon_sym_fun] = ACTIONS(831), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), [anon_sym_get] = ACTIONS(833), [anon_sym_set] = ACTIONS(835), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(837), [anon_sym_DASH_GT] = ACTIONS(207), [sym_label] = ACTIONS(839), [anon_sym_for] = ACTIONS(841), [anon_sym_in] = ACTIONS(209), [anon_sym_while] = ACTIONS(843), - [anon_sym_do] = ACTIONS(247), + [anon_sym_do] = ACTIONS(157), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(251), + [anon_sym_if] = ACTIONS(161), [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), [anon_sym_BANG_EQ] = ACTIONS(209), [anon_sym_BANG_EQ_EQ] = ACTIONS(207), [anon_sym_EQ_EQ] = ACTIONS(209), @@ -39878,9 +39546,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(269), - [anon_sym_inner] = ACTIONS(269), - [anon_sym_value] = ACTIONS(269), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -39899,146 +39567,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(271), - [anon_sym_actual] = ACTIONS(271), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), [sym_real_literal] = ACTIONS(851), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [29] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3637), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(2315), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1540), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8653), - [sym_modifiers] = STATE(8577), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5781), + [31] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4779), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4101), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_modifiers] = STATE(8289), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_RBRACK] = ACTIONS(121), [anon_sym_as] = ACTIONS(123), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(821), - [anon_sym_fun] = ACTIONS(823), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_class] = ACTIONS(853), + [anon_sym_interface] = ACTIONS(853), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_COMMA] = ACTIONS(121), [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_val] = ACTIONS(829), - [anon_sym_var] = ACTIONS(829), + [anon_sym_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), [anon_sym_where] = ACTIONS(123), - [anon_sym_object] = ACTIONS(831), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(833), - [anon_sym_set] = ACTIONS(835), + [anon_sym_get] = ACTIONS(865), + [anon_sym_set] = ACTIONS(867), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(869), [anon_sym_DASH_GT] = ACTIONS(121), - [sym_label] = ACTIONS(839), - [anon_sym_for] = ACTIONS(841), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(843), + [anon_sym_while] = ACTIONS(875), [anon_sym_do] = ACTIONS(247), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(845), + [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(251), [anon_sym_else] = ACTIONS(123), [anon_sym_when] = ACTIONS(253), @@ -40057,14 +39725,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(121), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -40098,7 +39766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(851), + [sym_real_literal] = ACTIONS(343), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -40110,135 +39778,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [30] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4826), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4206), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2020), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8639), - [sym_modifiers] = STATE(8580), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [32] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3986), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8307), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(765), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(475), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(853), - [anon_sym_fun] = ACTIONS(855), - [anon_sym_interface] = ACTIONS(853), - [anon_sym_enum] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(485), [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_val] = ACTIONS(861), - [anon_sym_var] = ACTIONS(861), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), [anon_sym_where] = ACTIONS(123), - [anon_sym_object] = ACTIONS(863), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(865), - [anon_sym_set] = ACTIONS(867), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [anon_sym_DASH_GT] = ACTIONS(121), - [sym_label] = ACTIONS(871), - [anon_sym_for] = ACTIONS(873), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(875), - [anon_sym_do] = ACTIONS(157), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(509), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(161), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(513), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -40248,21 +39913,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(121), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -40281,155 +39946,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(555), }, - [31] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4823), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4206), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2020), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8639), - [sym_modifiers] = STATE(8580), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [33] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1052), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_RBRACK] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(389), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(853), - [anon_sym_fun] = ACTIONS(855), - [anon_sym_interface] = ACTIONS(853), - [anon_sym_enum] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(913), + [anon_sym_interface] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(399), [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_val] = ACTIONS(861), - [anon_sym_var] = ACTIONS(861), + [anon_sym_val] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), [anon_sym_where] = ACTIONS(209), - [anon_sym_object] = ACTIONS(863), + [anon_sym_object] = ACTIONS(921), + [anon_sym_fun] = ACTIONS(923), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(865), - [anon_sym_set] = ACTIONS(867), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [anon_sym_DASH_GT] = ACTIONS(207), - [sym_label] = ACTIONS(871), - [anon_sym_for] = ACTIONS(873), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(927), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(875), - [anon_sym_do] = ACTIONS(157), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(423), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(161), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), [anon_sym_BANG_EQ] = ACTIONS(209), [anon_sym_BANG_EQ_EQ] = ACTIONS(207), [anon_sym_EQ_EQ] = ACTIONS(209), @@ -40439,21 +40102,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(207), [anon_sym_is] = ACTIONS(209), [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), [anon_sym_SLASH] = ACTIONS(209), [anon_sym_PERCENT] = ACTIONS(207), [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(939), [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -40472,176 +40135,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(207), [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(471), }, - [32] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3150), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(1800), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(1679), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8632), - [sym_modifiers] = STATE(8565), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), + [34] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5214), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4251), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(762), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(371), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [35] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3156), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1757), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8311), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(881), - [anon_sym_fun] = ACTIONS(883), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_val] = ACTIONS(889), - [anon_sym_var] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_where] = ACTIONS(209), - [anon_sym_object] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(895), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(899), - [anon_sym_for] = ACTIONS(901), - [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(207), - [anon_sym_QMARK_COLON] = ACTIONS(207), - [anon_sym_AMP_AMP] = ACTIONS(207), - [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(207), - [anon_sym_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(207), - [anon_sym_LT_EQ] = ACTIONS(207), - [anon_sym_GT_EQ] = ACTIONS(207), - [anon_sym_BANGin] = ACTIONS(207), - [anon_sym_is] = ACTIONS(209), - [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(207), - [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_BANG_BANG] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(973), + [anon_sym_interface] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(979), + [anon_sym_var] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(983), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(987), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -40660,153 +40513,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym__automatic_semicolon] = ACTIONS(207), - [sym_safe_nav] = ACTIONS(207), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(639), }, - [33] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1167), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(481), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(1634), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8657), - [sym_modifiers] = STATE(8560), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(769), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [36] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3215), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1757), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8311), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(913), - [anon_sym_fun] = ACTIONS(915), - [anon_sym_interface] = ACTIONS(913), - [anon_sym_enum] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(973), + [anon_sym_interface] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_val] = ACTIONS(921), - [anon_sym_var] = ACTIONS(921), + [anon_sym_val] = ACTIONS(979), + [anon_sym_var] = ACTIONS(979), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), [anon_sym_where] = ACTIONS(209), - [anon_sym_object] = ACTIONS(923), + [anon_sym_object] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(983), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(925), - [anon_sym_set] = ACTIONS(927), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(931), - [anon_sym_for] = ACTIONS(933), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(987), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(467), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(471), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_BANG_EQ] = ACTIONS(209), [anon_sym_BANG_EQ_EQ] = ACTIONS(207), [anon_sym_EQ_EQ] = ACTIONS(209), @@ -40816,21 +40669,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(207), [anon_sym_is] = ACTIONS(209), [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), [anon_sym_SLASH] = ACTIONS(209), [anon_sym_PERCENT] = ACTIONS(207), [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -40849,127 +40702,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym__automatic_semicolon] = ACTIONS(207), [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(639), }, - [34] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5329), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4363), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1980), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8669), - [sym_modifiers] = STATE(8585), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), + [37] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5236), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4251), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(762), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(599), + [anon_sym_typealias] = ACTIONS(345), [anon_sym_class] = ACTIONS(945), - [anon_sym_fun] = ACTIONS(947), [anon_sym_interface] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_val] = ACTIONS(953), - [anon_sym_var] = ACTIONS(953), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), [anon_sym_where] = ACTIONS(209), - [anon_sym_object] = ACTIONS(955), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), [anon_sym_get] = ACTIONS(957), @@ -40981,18 +40834,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(965), [anon_sym_in] = ACTIONS(209), [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(625), + [anon_sym_do] = ACTIONS(371), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(629), + [anon_sym_if] = ACTIONS(375), [anon_sym_else] = ACTIONS(209), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), @@ -41059,156 +40912,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [35] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3178), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(1800), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(1679), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8632), - [sym_modifiers] = STATE(8565), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [38] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3943), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8307), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(765), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(519), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(477), [anon_sym_class] = ACTIONS(881), - [anon_sym_fun] = ACTIONS(883), [anon_sym_interface] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_val] = ACTIONS(889), - [anon_sym_var] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(123), - [anon_sym_GT] = ACTIONS(123), - [anon_sym_where] = ACTIONS(123), - [anon_sym_object] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_where] = ACTIONS(209), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), [anon_sym_get] = ACTIONS(893), [anon_sym_set] = ACTIONS(895), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), [anon_sym_STAR] = ACTIONS(897), [sym_label] = ACTIONS(899), [anon_sym_for] = ACTIONS(901), - [anon_sym_in] = ACTIONS(123), + [anon_sym_in] = ACTIONS(209), [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(121), - [anon_sym_QMARK_COLON] = ACTIONS(121), - [anon_sym_AMP_AMP] = ACTIONS(121), - [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_do] = ACTIONS(509), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(121), - [anon_sym_EQ_EQ] = ACTIONS(123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(121), - [anon_sym_LT_EQ] = ACTIONS(121), - [anon_sym_GT_EQ] = ACTIONS(121), - [anon_sym_BANGin] = ACTIONS(121), - [anon_sym_is] = ACTIONS(123), - [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(907), [anon_sym_DASH] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(121), - [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(207), [anon_sym_PLUS_PLUS] = ACTIONS(909), [anon_sym_DASH_DASH] = ACTIONS(909), [anon_sym_BANG] = ACTIONS(907), - [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41227,153 +41080,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym__automatic_semicolon] = ACTIONS(121), - [sym_safe_nav] = ACTIONS(121), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(555), }, - [36] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5372), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4363), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1980), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8669), - [sym_modifiers] = STATE(8585), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [39] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1059), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(389), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(945), - [anon_sym_fun] = ACTIONS(947), - [anon_sym_interface] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(913), + [anon_sym_interface] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(399), [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_val] = ACTIONS(953), - [anon_sym_var] = ACTIONS(953), + [anon_sym_val] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), [anon_sym_where] = ACTIONS(123), - [anon_sym_object] = ACTIONS(955), + [anon_sym_object] = ACTIONS(921), + [anon_sym_fun] = ACTIONS(923), [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(959), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(963), - [anon_sym_for] = ACTIONS(965), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(927), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(625), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(423), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(629), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -41383,21 +41236,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(121), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(939), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41416,177 +41269,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(471), }, - [37] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1129), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(481), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(1634), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8657), - [sym_modifiers] = STATE(8560), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(769), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [40] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1052), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8321), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(913), - [anon_sym_fun] = ACTIONS(915), - [anon_sym_interface] = ACTIONS(913), - [anon_sym_enum] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_val] = ACTIONS(921), - [anon_sym_var] = ACTIONS(921), - [anon_sym_LT] = ACTIONS(123), - [anon_sym_GT] = ACTIONS(123), - [anon_sym_where] = ACTIONS(123), - [anon_sym_object] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(925), - [anon_sym_set] = ACTIONS(927), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(931), - [anon_sym_for] = ACTIONS(933), - [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(467), - [anon_sym_DOT_DOT] = ACTIONS(121), - [anon_sym_QMARK_COLON] = ACTIONS(121), - [anon_sym_AMP_AMP] = ACTIONS(121), - [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(471), - [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(121), - [anon_sym_EQ_EQ] = ACTIONS(123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(121), - [anon_sym_LT_EQ] = ACTIONS(121), - [anon_sym_GT_EQ] = ACTIONS(121), - [anon_sym_BANGin] = ACTIONS(121), - [anon_sym_is] = ACTIONS(123), - [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_SLASH] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(121), - [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41605,153 +41456,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(121), - [sym_safe_nav] = ACTIONS(121), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [38] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4092), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2507), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1759), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8660), - [sym_modifiers] = STATE(8552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [41] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3986), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2565), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_modifiers] = STATE(8298), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(475), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(973), - [anon_sym_fun] = ACTIONS(975), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_val] = ACTIONS(981), - [anon_sym_var] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), - [anon_sym_where] = ACTIONS(123), - [anon_sym_object] = ACTIONS(983), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(987), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(381), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(509), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(385), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -41761,21 +41610,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(121), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1053), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41794,153 +41643,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [39] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4084), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2507), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1759), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8660), - [sym_modifiers] = STATE(8552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [42] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5236), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8300), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(766), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(973), - [anon_sym_fun] = ACTIONS(975), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_val] = ACTIONS(981), - [anon_sym_var] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), - [anon_sym_where] = ACTIONS(209), - [anon_sym_object] = ACTIONS(983), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(987), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1071), [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(381), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(371), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(385), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), [anon_sym_BANG_EQ] = ACTIONS(209), [anon_sym_BANG_EQ_EQ] = ACTIONS(207), [anon_sym_EQ_EQ] = ACTIONS(209), @@ -41950,21 +41797,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(207), [anon_sym_is] = ACTIONS(209), [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(209), [anon_sym_PERCENT] = ACTIONS(207), [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41983,149 +41830,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(207), [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(113), }, - [40] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3637), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(2557), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1836), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8626), - [sym_modifiers] = STATE(8558), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), + [43] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5214), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8300), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(766), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(371), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [44] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3473), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8285), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(812), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(779), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [45] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4779), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8304), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_as] = ACTIONS(123), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_fun] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(857), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(1013), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1017), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1117), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(1025), + [anon_sym_while] = ACTIONS(1119), [anon_sym_do] = ACTIONS(247), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(721), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), [anon_sym_else] = ACTIONS(123), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), @@ -42138,14 +42359,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(121), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(339), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -42179,7 +42400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(851), + [sym_real_literal] = ACTIONS(343), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -42191,117 +42412,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [41] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4823), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8582), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), + [46] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4701), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8304), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(1031), - [anon_sym_fun] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(857), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1043), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1117), [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(157), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(247), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), @@ -42309,13 +42530,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(335), [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_BANG_EQ] = ACTIONS(209), [anon_sym_BANG_EQ_EQ] = ACTIONS(207), [anon_sym_EQ_EQ] = ACTIONS(209), @@ -42337,9 +42558,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -42358,151 +42579,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [42] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3689), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(2557), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1836), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8626), - [sym_modifiers] = STATE(8558), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), + [47] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3487), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8285), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(812), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(211), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_fun] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(825), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), - [anon_sym_object] = ACTIONS(1013), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1017), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(247), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(157), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(721), + [anon_sym_if] = ACTIONS(779), [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), [anon_sym_BANG_EQ] = ACTIONS(209), [anon_sym_BANG_EQ_EQ] = ACTIONS(207), [anon_sym_EQ_EQ] = ACTIONS(209), @@ -42512,21 +42733,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(207), [anon_sym_is] = ACTIONS(209), [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), [anon_sym_SLASH] = ACTIONS(209), [anon_sym_PERCENT] = ACTIONS(207), [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1097), [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(269), - [anon_sym_inner] = ACTIONS(269), - [anon_sym_value] = ACTIONS(269), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -42545,150 +42766,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(271), - [anon_sym_actual] = ACTIONS(271), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), [sym_real_literal] = ACTIONS(851), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [43] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3178), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(2308), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(2221), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8638), - [sym_modifiers] = STATE(8556), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(792), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [48] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3156), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8317), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(771), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(1051), - [anon_sym_fun] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1121), + [anon_sym_interface] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(977), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1125), + [anon_sym_var] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(1059), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_fun] = ACTIONS(1129), [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1063), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1069), + [anon_sym_get] = ACTIONS(1131), + [anon_sym_set] = ACTIONS(1133), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(1071), - [anon_sym_do] = ACTIONS(551), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(905), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [49] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1059), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8321), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(937), [anon_sym_if] = ACTIONS(811), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), [anon_sym_throw] = ACTIONS(813), [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -42698,21 +43106,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(121), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1027), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -42731,151 +43139,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(471), }, - [44] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3150), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(2308), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(2221), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8638), - [sym_modifiers] = STATE(8556), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(792), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [50] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3215), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8317), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(771), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(1051), - [anon_sym_fun] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1121), + [anon_sym_interface] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(977), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1125), + [anon_sym_var] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), - [anon_sym_object] = ACTIONS(1059), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_fun] = ACTIONS(1129), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1063), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1069), + [anon_sym_get] = ACTIONS(1131), + [anon_sym_set] = ACTIONS(1133), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(1071), - [anon_sym_do] = ACTIONS(551), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(811), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_BANG_EQ] = ACTIONS(209), [anon_sym_BANG_EQ_EQ] = ACTIONS(207), [anon_sym_EQ_EQ] = ACTIONS(209), @@ -42885,21 +43293,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(207), [anon_sym_is] = ACTIONS(209), [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), [anon_sym_SLASH] = ACTIONS(209), [anon_sym_PERCENT] = ACTIONS(207), [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1143), [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -42918,151 +43326,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym__automatic_semicolon] = ACTIONS(207), [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(639), }, - [45] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1167), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(550), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(2034), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8634), - [sym_modifiers] = STATE(8570), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [51] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3943), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2565), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_modifiers] = STATE(8298), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(475), [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(1077), - [anon_sym_fun] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1077), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), [anon_sym_LT] = ACTIONS(209), [anon_sym_GT] = ACTIONS(209), - [anon_sym_object] = ACTIONS(1085), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), [anon_sym_DOT] = ACTIONS(209), [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(1087), - [anon_sym_set] = ACTIONS(1089), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1093), - [anon_sym_for] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(467), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(509), [anon_sym_DOT_DOT] = ACTIONS(207), [anon_sym_QMARK_COLON] = ACTIONS(207), [anon_sym_AMP_AMP] = ACTIONS(207), [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(779), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), [anon_sym_BANG_EQ] = ACTIONS(209), [anon_sym_BANG_EQ_EQ] = ACTIONS(207), [anon_sym_EQ_EQ] = ACTIONS(209), @@ -43072,21 +43480,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(207), [anon_sym_is] = ACTIONS(209), [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), [anon_sym_SLASH] = ACTIONS(209), [anon_sym_PERCENT] = ACTIONS(207), [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1053), [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -43105,176 +43513,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym__automatic_semicolon] = ACTIONS(207), [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(555), }, - [46] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4826), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8582), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(1031), - [anon_sym_fun] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(123), - [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_DOT] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1043), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(157), - [anon_sym_DOT_DOT] = ACTIONS(121), - [anon_sym_QMARK_COLON] = ACTIONS(121), - [anon_sym_AMP_AMP] = ACTIONS(121), - [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(121), - [anon_sym_EQ_EQ] = ACTIONS(123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(121), - [anon_sym_LT_EQ] = ACTIONS(121), - [anon_sym_GT_EQ] = ACTIONS(121), - [anon_sym_BANGin] = ACTIONS(121), - [anon_sym_is] = ACTIONS(123), - [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_SLASH] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(121), - [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_BANG_BANG] = ACTIONS(121), + [52] = { + [sym_file_annotation] = STATE(3122), + [sym_package_header] = STATE(67), + [sym_import_list] = STATE(70), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat1] = STATE(3122), + [aux_sym_source_file_repeat2] = STATE(70), + [aux_sym_source_file_repeat3] = STATE(251), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1147), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_package] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -43293,143 +43684,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_safe_nav] = ACTIONS(121), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(113), }, - [47] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5329), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8569), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5781), + [53] = { + [sym_file_annotation] = STATE(54), + [sym_package_header] = STATE(67), + [sym_import_list] = STATE(70), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat1] = STATE(54), + [aux_sym_source_file_repeat2] = STATE(70), + [aux_sym_source_file_repeat3] = STATE(251), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1147), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(117), + [anon_sym_AT] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_object] = ACTIONS(1111), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1115), + [anon_sym_package] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(1119), - [anon_sym_do] = ACTIONS(625), - [anon_sym_DOT_DOT] = ACTIONS(207), - [anon_sym_QMARK_COLON] = ACTIONS(207), - [anon_sym_AMP_AMP] = ACTIONS(207), - [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), [anon_sym_null] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(209), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), @@ -43437,24 +43824,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(207), - [anon_sym_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(207), - [anon_sym_LT_EQ] = ACTIONS(207), - [anon_sym_GT_EQ] = ACTIONS(207), - [anon_sym_BANGin] = ACTIONS(207), - [anon_sym_is] = ACTIONS(209), - [anon_sym_BANGis] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(69), [anon_sym_DASH] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(207), - [anon_sym_as_QMARK] = ACTIONS(207), [anon_sym_PLUS_PLUS] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_BANG_BANG] = ACTIONS(207), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -43495,161 +43869,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(107), [anon_sym_SQUOTE] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(207), - [sym_safe_nav] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [48] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4084), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2643), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8646), - [sym_modifiers] = STATE(8568), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(782), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_fun] = ACTIONS(1123), - [anon_sym_interface] = ACTIONS(1121), - [anon_sym_enum] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(1127), - [anon_sym_var] = ACTIONS(1127), - [anon_sym_LT] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(1131), - [anon_sym_set] = ACTIONS(1133), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1137), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(207), - [anon_sym_QMARK_COLON] = ACTIONS(207), - [anon_sym_AMP_AMP] = ACTIONS(207), - [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), - [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(207), - [anon_sym_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(207), - [anon_sym_LT_EQ] = ACTIONS(207), - [anon_sym_GT_EQ] = ACTIONS(207), - [anon_sym_BANGin] = ACTIONS(207), - [anon_sym_is] = ACTIONS(209), - [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(207), - [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1143), - [anon_sym_BANG_BANG] = ACTIONS(207), + [54] = { + [sym_file_annotation] = STATE(3122), + [sym_package_header] = STATE(74), + [sym_import_list] = STATE(75), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat1] = STATE(3122), + [aux_sym_source_file_repeat2] = STATE(75), + [aux_sym_source_file_repeat3] = STATE(241), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1149), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_package] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), [anon_sym_private] = ACTIONS(81), [anon_sym_internal] = ACTIONS(81), @@ -43666,175 +44022,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(207), - [sym_safe_nav] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(113), }, - [49] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4092), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2643), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8646), - [sym_modifiers] = STATE(8568), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(782), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [55] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9478), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_fun] = ACTIONS(1123), - [anon_sym_interface] = ACTIONS(1121), - [anon_sym_enum] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_in] = ACTIONS(299), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(299), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(297), + [anon_sym_is] = ACTIONS(299), + [anon_sym_BANGis] = ACTIONS(297), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym__automatic_semicolon] = ACTIONS(297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [56] = { + [sym_type_alias] = STATE(5382), + [sym__declaration] = STATE(5382), + [sym_class_declaration] = STATE(5382), + [sym_function_declaration] = STATE(5382), + [sym_property_declaration] = STATE(5382), + [sym_getter] = STATE(5382), + [sym_setter] = STATE(5382), + [sym_object_declaration] = STATE(5382), + [sym__statement] = STATE(5382), + [sym_control_structure_body] = STATE(5405), + [sym__block] = STATE(5382), + [sym__loop_statement] = STATE(5382), + [sym_for_statement] = STATE(5382), + [sym_while_statement] = STATE(5382), + [sym_do_while_statement] = STATE(5382), + [sym_assignment] = STATE(5382), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8312), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(755), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(1151), + [anon_sym_class] = ACTIONS(1153), + [anon_sym_interface] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(1127), - [anon_sym_var] = ACTIONS(1127), - [anon_sym_LT] = ACTIONS(123), - [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(1131), - [anon_sym_set] = ACTIONS(1133), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1159), + [anon_sym_var] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1161), + [anon_sym_fun] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1165), + [anon_sym_set] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(1135), [sym_label] = ACTIONS(1137), - [anon_sym_for] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1169), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(121), - [anon_sym_QMARK_COLON] = ACTIONS(121), - [anon_sym_AMP_AMP] = ACTIONS(121), - [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), + [anon_sym_if] = ACTIONS(715), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(121), - [anon_sym_EQ_EQ] = ACTIONS(123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(121), - [anon_sym_LT_EQ] = ACTIONS(121), - [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), [anon_sym_PLUS] = ACTIONS(1143), [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_SLASH] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(121), - [anon_sym_as_QMARK] = ACTIONS(121), [anon_sym_PLUS_PLUS] = ACTIONS(1145), [anon_sym_DASH_DASH] = ACTIONS(1145), [anon_sym_BANG] = ACTIONS(1143), - [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -43853,175 +44356,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym__automatic_semicolon] = ACTIONS(121), - [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(639), }, - [50] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1129), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(550), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(2034), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8634), - [sym_modifiers] = STATE(8570), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [57] = { + [sym_type_alias] = STATE(5382), + [sym__declaration] = STATE(5382), + [sym_class_declaration] = STATE(5382), + [sym_function_declaration] = STATE(5382), + [sym_property_declaration] = STATE(5382), + [sym_getter] = STATE(5382), + [sym_setter] = STATE(5382), + [sym_object_declaration] = STATE(5382), + [sym__statement] = STATE(5382), + [sym_control_structure_body] = STATE(5417), + [sym__block] = STATE(5382), + [sym__loop_statement] = STATE(5382), + [sym_for_statement] = STATE(5382), + [sym_while_statement] = STATE(5382), + [sym_do_while_statement] = STATE(5382), + [sym_assignment] = STATE(5382), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8312), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(755), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(1077), - [anon_sym_fun] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1077), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_LT] = ACTIONS(123), - [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(1085), - [anon_sym_DOT] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(1087), - [anon_sym_set] = ACTIONS(1089), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1093), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(467), - [anon_sym_DOT_DOT] = ACTIONS(121), - [anon_sym_QMARK_COLON] = ACTIONS(121), - [anon_sym_AMP_AMP] = ACTIONS(121), - [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(779), - [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(121), - [anon_sym_EQ_EQ] = ACTIONS(123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(121), - [anon_sym_LT_EQ] = ACTIONS(121), - [anon_sym_GT_EQ] = ACTIONS(121), - [anon_sym_BANGin] = ACTIONS(121), - [anon_sym_is] = ACTIONS(123), - [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_SLASH] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(121), - [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(1151), + [anon_sym_class] = ACTIONS(1153), + [anon_sym_interface] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1159), + [anon_sym_var] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1161), + [anon_sym_fun] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1165), + [anon_sym_set] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1143), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -44040,144 +44523,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(121), - [sym_safe_nav] = ACTIONS(121), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(207), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(639), }, - [51] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5372), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8569), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5781), + [58] = { + [sym_import_list] = STATE(70), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat2] = STATE(70), + [aux_sym_source_file_repeat3] = STATE(251), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1147), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(123), - [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(1111), - [anon_sym_DOT] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1115), + [anon_sym_import] = ACTIONS(17), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(1119), - [anon_sym_do] = ACTIONS(625), - [anon_sym_DOT_DOT] = ACTIONS(121), - [anon_sym_QMARK_COLON] = ACTIONS(121), - [anon_sym_AMP_AMP] = ACTIONS(121), - [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), [anon_sym_null] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(123), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), @@ -44185,24 +44660,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(121), - [anon_sym_EQ_EQ] = ACTIONS(123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(121), - [anon_sym_LT_EQ] = ACTIONS(121), - [anon_sym_GT_EQ] = ACTIONS(121), - [anon_sym_BANGin] = ACTIONS(121), - [anon_sym_is] = ACTIONS(123), - [anon_sym_BANGis] = ACTIONS(121), [anon_sym_PLUS] = ACTIONS(69), [anon_sym_DASH] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(121), - [anon_sym_as_QMARK] = ACTIONS(121), [anon_sym_PLUS_PLUS] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -44243,119 +44705,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(107), [anon_sym_SQUOTE] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(121), - [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [52] = { - [sym_file_annotation] = STATE(3309), - [sym_package_header] = STATE(69), - [sym_import_list] = STATE(59), - [sym_import_header] = STATE(9037), - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat1] = STATE(3309), - [aux_sym_source_file_repeat2] = STATE(59), - [aux_sym_source_file_repeat3] = STATE(246), - [aux_sym_import_list_repeat1] = STATE(9037), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [ts_builtin_sym_end] = ACTIONS(1147), + [59] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9892), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9519), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(11), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_package] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1179), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -44417,114 +44873,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [53] = { - [sym_file_annotation] = STATE(52), - [sym_package_header] = STATE(84), - [sym_import_list] = STATE(82), - [sym_import_header] = STATE(9037), - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat1] = STATE(52), - [aux_sym_source_file_repeat2] = STATE(82), - [aux_sym_source_file_repeat3] = STATE(214), - [aux_sym_import_list_repeat1] = STATE(9037), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [ts_builtin_sym_end] = ACTIONS(1149), + [60] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9793), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9692), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(11), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_package] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1183), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -44586,114 +45038,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [54] = { - [sym_file_annotation] = STATE(3309), - [sym_package_header] = STATE(84), - [sym_import_list] = STATE(82), - [sym_import_header] = STATE(9037), - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat1] = STATE(3309), - [aux_sym_source_file_repeat2] = STATE(82), - [aux_sym_source_file_repeat3] = STATE(214), - [aux_sym_import_list_repeat1] = STATE(9037), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [ts_builtin_sym_end] = ACTIONS(1149), + [61] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9731), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9692), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(11), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_package] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1183), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -44755,612 +45203,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [55] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(9752), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(301), - [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), - [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(297), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_object] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(315), - [anon_sym_get] = ACTIONS(317), - [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(325), - [anon_sym_in] = ACTIONS(299), - [anon_sym_while] = ACTIONS(327), - [anon_sym_do] = ACTIONS(329), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(299), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(297), - [anon_sym_is] = ACTIONS(299), - [anon_sym_BANGis] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym__automatic_semicolon] = ACTIONS(297), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [56] = { - [sym_type_alias] = STATE(5481), - [sym__declaration] = STATE(5481), - [sym_class_declaration] = STATE(5481), - [sym_function_declaration] = STATE(5481), - [sym_property_declaration] = STATE(5481), - [sym_getter] = STATE(5481), - [sym_setter] = STATE(5481), - [sym_object_declaration] = STATE(5481), - [sym__statement] = STATE(5481), - [sym_control_structure_body] = STATE(5568), - [sym__block] = STATE(5481), - [sym__loop_statement] = STATE(5481), - [sym_for_statement] = STATE(5481), - [sym_while_statement] = STATE(5481), - [sym_do_while_statement] = STATE(5481), - [sym_assignment] = STATE(5481), - [sym__expression] = STATE(2308), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(2221), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8638), - [sym_modifiers] = STATE(8578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(803), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(1151), - [anon_sym_class] = ACTIONS(1153), - [anon_sym_fun] = ACTIONS(1155), - [anon_sym_interface] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(1161), - [anon_sym_var] = ACTIONS(1161), - [anon_sym_object] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1165), - [anon_sym_set] = ACTIONS(1167), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(207), - [anon_sym_is] = ACTIONS(209), - [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym__automatic_semicolon] = ACTIONS(207), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [57] = { - [sym_type_alias] = STATE(5481), - [sym__declaration] = STATE(5481), - [sym_class_declaration] = STATE(5481), - [sym_function_declaration] = STATE(5481), - [sym_property_declaration] = STATE(5481), - [sym_getter] = STATE(5481), - [sym_setter] = STATE(5481), - [sym_object_declaration] = STATE(5481), - [sym__statement] = STATE(5481), - [sym_control_structure_body] = STATE(5536), - [sym__block] = STATE(5481), - [sym__loop_statement] = STATE(5481), - [sym_for_statement] = STATE(5481), - [sym_while_statement] = STATE(5481), - [sym_do_while_statement] = STATE(5481), - [sym_assignment] = STATE(5481), - [sym__expression] = STATE(2308), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(2221), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8638), - [sym_modifiers] = STATE(8578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(803), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(1151), - [anon_sym_class] = ACTIONS(1153), - [anon_sym_fun] = ACTIONS(1155), - [anon_sym_interface] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(1161), - [anon_sym_var] = ACTIONS(1161), - [anon_sym_object] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1165), - [anon_sym_set] = ACTIONS(1167), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(121), - [anon_sym_is] = ACTIONS(123), - [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym__automatic_semicolon] = ACTIONS(121), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [58] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10179), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(10076), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [62] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9608), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9643), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1187), [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1179), + [anon_sym_DASH_GT] = ACTIONS(1189), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45422,110 +45368,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [59] = { - [sym_import_list] = STATE(3062), - [sym_import_header] = STATE(9037), - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat2] = STATE(3062), - [aux_sym_source_file_repeat3] = STATE(227), - [aux_sym_import_list_repeat1] = STATE(9037), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [ts_builtin_sym_end] = ACTIONS(1181), + [63] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9570), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9740), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1193), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45587,110 +45533,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [60] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10144), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(10076), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [64] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9531), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9670), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1195), [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1179), + [anon_sym_DASH_GT] = ACTIONS(1197), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45752,110 +45698,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [61] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9929), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(10102), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [65] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9514), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9740), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1199), [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1187), + [anon_sym_DASH_GT] = ACTIONS(1193), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45917,110 +45863,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [62] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10113), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(9989), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [66] = { + [sym_import_list] = STATE(3053), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat2] = STATE(3053), + [aux_sym_source_file_repeat3] = STATE(228), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1201), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1191), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -46082,110 +46028,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [63] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9999), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(10298), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [67] = { + [sym_import_list] = STATE(75), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat2] = STATE(75), + [aux_sym_source_file_repeat3] = STATE(241), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1149), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1195), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -46247,110 +46193,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [64] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9944), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(10034), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [68] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9466), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9881), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1203), [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1199), + [anon_sym_DASH_GT] = ACTIONS(1205), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -46412,110 +46358,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [65] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10117), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(10102), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [69] = { + [sym_import_list] = STATE(3053), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat2] = STATE(3053), + [aux_sym_source_file_repeat3] = STATE(251), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1147), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1187), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -46577,90 +46523,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [66] = { - [sym_import_list] = STATE(3062), - [sym_import_header] = STATE(9037), - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat2] = STATE(3062), - [aux_sym_source_file_repeat3] = STATE(214), - [aux_sym_import_list_repeat1] = STATE(9037), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [70] = { + [sym_import_list] = STATE(3053), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat2] = STATE(3053), + [aux_sym_source_file_repeat3] = STATE(241), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [ts_builtin_sym_end] = ACTIONS(1149), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -46668,14 +46614,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -46742,275 +46688,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [67] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9940), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(10102), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [71] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9825), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9881), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1187), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [68] = { - [sym_import_list] = STATE(3062), - [sym_import_header] = STATE(9037), - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat2] = STATE(3062), - [aux_sym_source_file_repeat3] = STATE(255), - [aux_sym_import_list_repeat1] = STATE(9037), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [ts_builtin_sym_end] = ACTIONS(1205), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_import] = ACTIONS(17), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1205), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47072,110 +46853,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [69] = { - [sym_import_list] = STATE(68), - [sym_import_header] = STATE(9037), - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat2] = STATE(68), - [aux_sym_source_file_repeat3] = STATE(227), - [aux_sym_import_list_repeat1] = STATE(9037), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [ts_builtin_sym_end] = ACTIONS(1181), + [72] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9463), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9670), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1197), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47237,110 +47018,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [70] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9844), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(10076), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [73] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9558), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9740), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1179), + [anon_sym_DASH_GT] = ACTIONS(1193), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47402,110 +47183,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [71] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10300), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(10298), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [74] = { + [sym_import_list] = STATE(66), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat2] = STATE(66), + [aux_sym_source_file_repeat3] = STATE(216), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1213), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1195), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47567,110 +47348,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [72] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10167), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(9949), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [75] = { + [sym_import_list] = STATE(3053), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat2] = STATE(3053), + [aux_sym_source_file_repeat3] = STATE(216), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1213), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1213), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47732,110 +47513,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [73] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9794), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(10298), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [76] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9883), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9881), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1205), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47897,110 +47678,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [74] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10056), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(10298), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [77] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9745), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9692), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(1217), [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1183), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -48062,110 +47843,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [75] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9933), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(9989), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [78] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9539), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9643), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(1219), [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1191), + [anon_sym_DASH_GT] = ACTIONS(1189), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -48227,275 +48008,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [76] = { - [sym_import_list] = STATE(82), - [sym_import_header] = STATE(9037), - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat2] = STATE(82), - [aux_sym_source_file_repeat3] = STATE(214), - [aux_sym_import_list_repeat1] = STATE(9037), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [ts_builtin_sym_end] = ACTIONS(1149), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_import] = ACTIONS(17), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [77] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9762), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(10034), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [79] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9857), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9670), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(1221), [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1199), + [anon_sym_DASH_GT] = ACTIONS(1197), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -48557,110 +48173,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [78] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9878), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(9949), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [80] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9932), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9643), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(1223), [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1213), + [anon_sym_DASH_GT] = ACTIONS(1189), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -48722,110 +48338,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [79] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9825), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(9989), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [81] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(10037), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9519), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(1225), [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1191), + [anon_sym_DASH_GT] = ACTIONS(1179), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -48887,440 +48503,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [80] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10289), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(9949), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [82] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9783), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9692), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1213), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [81] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10022), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(9949), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1213), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [82] = { - [sym_import_list] = STATE(3062), - [sym_import_header] = STATE(9037), - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat2] = STATE(3062), - [aux_sym_source_file_repeat3] = STATE(246), - [aux_sym_import_list_repeat1] = STATE(9037), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [ts_builtin_sym_end] = ACTIONS(1147), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_import] = ACTIONS(17), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1183), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -49383,103 +48669,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [83] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9936), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(10076), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9880), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9519), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1229), [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -49548,109 +48834,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [84] = { - [sym_import_list] = STATE(59), - [sym_import_header] = STATE(9037), - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat2] = STATE(59), - [aux_sym_source_file_repeat3] = STATE(246), - [aux_sym_import_list_repeat1] = STATE(9037), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [ts_builtin_sym_end] = ACTIONS(1147), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9523), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9881), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1205), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -49713,109 +48999,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [85] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_variable_declaration] = STATE(9282), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9852), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_multi_variable_declaration] = STATE(9282), - [sym_lambda_parameters] = STATE(10034), - [sym__lambda_parameter] = STATE(9282), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5460), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9597), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9519), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(1233), [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1199), + [anon_sym_DASH_GT] = ACTIONS(1179), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -49878,119 +49164,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [86] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(9752), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9478), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), [anon_sym_RBRACE] = ACTIONS(297), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_object] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), [anon_sym_SEMI] = ACTIONS(315), [anon_sym_get] = ACTIONS(317), [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), [anon_sym_while] = ACTIONS(327), [anon_sym_do] = ACTIONS(329), [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(335), [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -49999,9 +49285,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50020,145 +49306,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym__automatic_semicolon] = ACTIONS(297), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, [87] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4968), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(3412), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1831), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8666), - [sym_modifiers] = STATE(8567), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(768), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1252), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(385), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(789), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(793), + [anon_sym_var] = ACTIONS(793), + [anon_sym_object] = ACTIONS(795), + [anon_sym_fun] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_get] = ACTIONS(799), + [anon_sym_set] = ACTIONS(801), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(805), + [anon_sym_for] = ACTIONS(807), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [88] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(4061), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_modifiers] = STATE(8303), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(784), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(137), - [anon_sym_var] = ACTIONS(137), - [anon_sym_object] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym_get] = ACTIONS(141), - [anon_sym_set] = ACTIONS(143), + [anon_sym_class] = ACTIONS(757), + [anon_sym_interface] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(761), + [anon_sym_var] = ACTIONS(761), + [anon_sym_object] = ACTIONS(763), + [anon_sym_fun] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_get] = ACTIONS(767), + [anon_sym_set] = ACTIONS(769), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(151), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_while] = ACTIONS(777), [anon_sym_do] = ACTIONS(157), [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_else] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(779), + [anon_sym_else] = ACTIONS(1245), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -50202,293 +49650,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [88] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5810), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8569), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1115), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1119), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, [89] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5551), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4185), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8650), - [sym_modifiers] = STATE(8564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(802), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(4318), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2565), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_modifiers] = STATE(8298), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(641), - [anon_sym_fun] = ACTIONS(643), - [anon_sym_interface] = ACTIONS(641), - [anon_sym_enum] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(647), - [anon_sym_var] = ACTIONS(647), - [anon_sym_object] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_get] = ACTIONS(651), - [anon_sym_set] = ACTIONS(653), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_while] = ACTIONS(661), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(627), - [anon_sym_if] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), [anon_sym_else] = ACTIONS(1249), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50507,150 +49793,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(555), }, [90] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1076), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(373), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2024), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8635), - [sym_modifiers] = STATE(8572), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(4286), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8285), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_fun] = ACTIONS(439), - [anon_sym_interface] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(447), - [anon_sym_var] = ACTIONS(447), - [anon_sym_object] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_get] = ACTIONS(451), - [anon_sym_set] = ACTIONS(453), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(779), + [anon_sym_else] = ACTIONS(1253), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50669,144 +49955,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [91] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5245), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(3818), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8644), - [sym_modifiers] = STATE(8576), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5216), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(3771), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_modifiers] = STATE(8284), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(601), - [anon_sym_fun] = ACTIONS(603), - [anon_sym_interface] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(609), - [anon_sym_var] = ACTIONS(609), - [anon_sym_object] = ACTIONS(611), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(615), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(347), + [anon_sym_interface] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(353), + [anon_sym_var] = ACTIONS(353), + [anon_sym_object] = ACTIONS(355), + [anon_sym_fun] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(619), - [anon_sym_for] = ACTIONS(621), - [anon_sym_while] = ACTIONS(623), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(627), - [anon_sym_if] = ACTIONS(629), - [anon_sym_else] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(1259), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -50839,7 +50125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), + [sym_real_literal] = ACTIONS(385), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -50851,119 +50137,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [92] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(2252), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(481), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(1634), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8657), - [sym_modifiers] = STATE(8560), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(2210), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(769), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), [anon_sym_class] = ACTIONS(913), - [anon_sym_fun] = ACTIONS(915), [anon_sym_interface] = ACTIONS(913), - [anon_sym_enum] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(921), - [anon_sym_var] = ACTIONS(921), - [anon_sym_object] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), + [anon_sym_object] = ACTIONS(921), + [anon_sym_fun] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(1261), [anon_sym_get] = ACTIONS(925), [anon_sym_set] = ACTIONS(927), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), [anon_sym_STAR] = ACTIONS(929), [sym_label] = ACTIONS(931), [anon_sym_for] = ACTIONS(933), [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(467), + [anon_sym_do] = ACTIONS(423), [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(471), - [anon_sym_else] = ACTIONS(1265), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_if] = ACTIONS(427), + [anon_sym_else] = ACTIONS(1263), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), [anon_sym_PLUS] = ACTIONS(939), [anon_sym_DASH] = ACTIONS(939), [anon_sym_PLUS_PLUS] = ACTIONS(941), @@ -50972,9 +50258,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50993,150 +50279,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, [93] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3247), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(968), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(2216), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8652), - [sym_modifiers] = STATE(8566), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(774), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(5441), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4101), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_modifiers] = STATE(8289), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(521), - [anon_sym_fun] = ACTIONS(523), - [anon_sym_interface] = ACTIONS(521), - [anon_sym_enum] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(531), - [anon_sym_var] = ACTIONS(531), - [anon_sym_object] = ACTIONS(533), - [anon_sym_SEMI] = ACTIONS(1267), - [anon_sym_get] = ACTIONS(535), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(1271), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(853), + [anon_sym_interface] = ACTIONS(853), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_get] = ACTIONS(865), + [anon_sym_set] = ACTIONS(867), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(251), + [anon_sym_else] = ACTIONS(1267), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51155,150 +50441,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [94] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5767), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4363), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1980), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8669), - [sym_modifiers] = STATE(8585), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4738), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(768), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(945), - [anon_sym_fun] = ACTIONS(947), - [anon_sym_interface] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(953), - [anon_sym_var] = ACTIONS(953), - [anon_sym_object] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(959), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(963), - [anon_sym_for] = ACTIONS(965), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(629), - [anon_sym_else] = ACTIONS(1275), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(217), + [anon_sym_interface] = ACTIONS(217), + [anon_sym_enum] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51317,312 +50603,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(295), }, [95] = { - [sym_type_alias] = STATE(9551), - [sym__declaration] = STATE(9551), - [sym_class_declaration] = STATE(9551), - [sym_function_declaration] = STATE(9551), - [sym_property_declaration] = STATE(9551), - [sym_getter] = STATE(9551), - [sym_setter] = STATE(9551), - [sym_object_declaration] = STATE(9551), - [sym__statement] = STATE(9551), - [sym_control_structure_body] = STATE(9441), - [sym__block] = STATE(9551), - [sym__loop_statement] = STATE(9551), - [sym_for_statement] = STATE(9551), - [sym_while_statement] = STATE(9551), - [sym_do_while_statement] = STATE(9551), - [sym_assignment] = STATE(9551), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(121), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [96] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4108), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(1425), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8636), - [sym_modifiers] = STATE(8553), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3886), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(1392), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8319), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(779), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(763), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(351), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_interface] = ACTIONS(351), - [anon_sym_enum] = ACTIONS(355), - [anon_sym_LBRACE] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(361), - [anon_sym_var] = ACTIONS(361), - [anon_sym_object] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(365), - [anon_sym_set] = ACTIONS(367), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(1283), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(487), + [anon_sym_var] = ACTIONS(487), + [anon_sym_object] = ACTIONS(489), + [anon_sym_fun] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_get] = ACTIONS(493), + [anon_sym_set] = ACTIONS(495), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(1279), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51641,144 +50765,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [97] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(5448), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4101), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1799), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8656), - [sym_modifiers] = STATE(8575), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), + [96] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3465), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(731), - [anon_sym_fun] = ACTIONS(733), - [anon_sym_interface] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(737), - [anon_sym_var] = ACTIONS(737), - [anon_sym_object] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(743), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(135), + [anon_sym_var] = ACTIONS(135), + [anon_sym_object] = ACTIONS(137), + [anon_sym_fun] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(143), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), - [anon_sym_while] = ACTIONS(751), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(155), [anon_sym_do] = ACTIONS(157), [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(1289), + [anon_sym_if] = ACTIONS(161), + [anon_sym_else] = ACTIONS(1285), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -51822,131 +50946,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [98] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(4303), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(2315), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1540), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8653), - [sym_modifiers] = STATE(8577), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(211), + [97] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(4077), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1757), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8311), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(821), - [anon_sym_fun] = ACTIONS(823), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(829), - [anon_sym_var] = ACTIONS(829), - [anon_sym_object] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym_get] = ACTIONS(833), - [anon_sym_set] = ACTIONS(835), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(839), - [anon_sym_for] = ACTIONS(841), - [anon_sym_while] = ACTIONS(843), - [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(251), - [anon_sym_else] = ACTIONS(1293), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(973), + [anon_sym_interface] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(979), + [anon_sym_var] = ACTIONS(979), + [anon_sym_object] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(987), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1289), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(269), - [anon_sym_inner] = ACTIONS(269), - [anon_sym_value] = ACTIONS(269), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51965,150 +51089,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(271), - [anon_sym_actual] = ACTIONS(271), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(851), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(639), }, - [99] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4247), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2246), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1979), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8667), - [sym_modifiers] = STATE(8563), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(777), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [98] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(4177), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8317), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(771), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(667), - [anon_sym_fun] = ACTIONS(669), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(673), - [anon_sym_var] = ACTIONS(673), - [anon_sym_object] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym_get] = ACTIONS(677), - [anon_sym_set] = ACTIONS(679), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(689), - [anon_sym_else] = ACTIONS(1299), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1121), + [anon_sym_interface] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1125), + [anon_sym_var] = ACTIONS(1125), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_fun] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_get] = ACTIONS(1131), + [anon_sym_set] = ACTIONS(1133), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(1293), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52127,150 +51251,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [100] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4434), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2643), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8646), - [sym_modifiers] = STATE(8568), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), + [99] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(4138), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8316), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(782), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_fun] = ACTIONS(1123), - [anon_sym_interface] = ACTIONS(1121), - [anon_sym_enum] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(1127), - [anon_sym_var] = ACTIONS(1127), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1131), - [anon_sym_set] = ACTIONS(1133), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1137), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), - [anon_sym_else] = ACTIONS(1303), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(725), + [anon_sym_interface] = ACTIONS(725), + [anon_sym_enum] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [anon_sym_object] = ACTIONS(731), + [anon_sym_fun] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(737), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), + [anon_sym_else] = ACTIONS(1299), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52289,150 +51413,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [101] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(4190), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(1680), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(1724), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8640), - [sym_modifiers] = STATE(8589), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(211), + [100] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1035), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8297), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(699), - [anon_sym_fun] = ACTIONS(701), - [anon_sym_interface] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(223), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(705), - [anon_sym_var] = ACTIONS(705), - [anon_sym_object] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(711), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), - [anon_sym_while] = ACTIONS(719), - [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(721), - [anon_sym_else] = ACTIONS(1309), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(393), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_else] = ACTIONS(1305), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(269), - [anon_sym_inner] = ACTIONS(269), - [anon_sym_value] = ACTIONS(269), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52451,150 +51575,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(271), - [anon_sym_actual] = ACTIONS(271), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(283), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [102] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4396), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2507), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1759), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8660), - [sym_modifiers] = STATE(8552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [101] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3088), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8305), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(973), - [anon_sym_fun] = ACTIONS(975), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(981), - [anon_sym_var] = ACTIONS(981), - [anon_sym_object] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(1311), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(987), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(1313), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1311), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52613,150 +51737,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [103] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1278), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(383), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2201), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8642), - [sym_modifiers] = STATE(8554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), + [102] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(2379), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8321), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(757), - [anon_sym_fun] = ACTIONS(759), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(763), - [anon_sym_var] = ACTIONS(763), - [anon_sym_object] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(769), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(773), - [anon_sym_for] = ACTIONS(775), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(779), - [anon_sym_else] = ACTIONS(1319), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52775,132 +51899,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [104] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(5630), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4206), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2020), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8639), - [sym_modifiers] = STATE(8580), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [103] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(4187), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8309), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(853), - [anon_sym_fun] = ACTIONS(855), - [anon_sym_interface] = ACTIONS(853), - [anon_sym_enum] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(861), - [anon_sym_var] = ACTIONS(861), - [anon_sym_object] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_get] = ACTIONS(865), - [anon_sym_set] = ACTIONS(867), + [anon_sym_class] = ACTIONS(821), + [anon_sym_interface] = ACTIONS(821), + [anon_sym_enum] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(827), + [anon_sym_var] = ACTIONS(827), + [anon_sym_object] = ACTIONS(829), + [anon_sym_fun] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(835), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(871), - [anon_sym_for] = ACTIONS(873), - [anon_sym_while] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(839), + [anon_sym_for] = ACTIONS(841), + [anon_sym_while] = ACTIONS(843), [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(331), + [anon_sym_null] = ACTIONS(845), [anon_sym_if] = ACTIONS(161), - [anon_sym_else] = ACTIONS(1323), + [anon_sym_else] = ACTIONS(1319), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), [anon_sym_throw] = ACTIONS(167), @@ -52908,11 +52032,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -52945,7 +52069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), + [sym_real_literal] = ACTIONS(851), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -52956,131 +52080,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [105] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3649), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(1850), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8662), - [sym_modifiers] = STATE(8579), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(788), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [104] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5646), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8300), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(766), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(789), - [anon_sym_fun] = ACTIONS(791), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(795), - [anon_sym_var] = ACTIONS(795), - [anon_sym_object] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(799), - [anon_sym_set] = ACTIONS(801), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(805), - [anon_sym_for] = ACTIONS(807), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(553), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(1329), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(1323), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53099,312 +52223,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [106] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(5787), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8582), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(1031), - [anon_sym_fun] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1043), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(1333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(113), }, - [107] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(2378), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(550), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(2034), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8634), - [sym_modifiers] = STATE(8570), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [105] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(4272), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8307), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(765), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(1077), - [anon_sym_fun] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1077), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_object] = ACTIONS(1085), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_get] = ACTIONS(1087), - [anon_sym_set] = ACTIONS(1089), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1093), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(779), - [anon_sym_else] = ACTIONS(1337), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53423,120 +52385,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(555), }, - [108] = { - [sym_type_alias] = STATE(9551), - [sym__declaration] = STATE(9551), - [sym_class_declaration] = STATE(9551), - [sym_function_declaration] = STATE(9551), - [sym_property_declaration] = STATE(9551), - [sym_getter] = STATE(9551), - [sym_setter] = STATE(9551), - [sym_object_declaration] = STATE(9551), - [sym__statement] = STATE(9551), - [sym_control_structure_body] = STATE(9461), - [sym__block] = STATE(9551), - [sym__loop_statement] = STATE(9551), - [sym_for_statement] = STATE(9551), - [sym_while_statement] = STATE(9551), - [sym_do_while_statement] = STATE(9551), - [sym_assignment] = STATE(9551), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [106] = { + [sym_type_alias] = STATE(9177), + [sym__declaration] = STATE(9177), + [sym_class_declaration] = STATE(9177), + [sym_function_declaration] = STATE(9177), + [sym_property_declaration] = STATE(9177), + [sym_getter] = STATE(9177), + [sym_setter] = STATE(9177), + [sym_object_declaration] = STATE(9177), + [sym__statement] = STATE(9177), + [sym_control_structure_body] = STATE(9163), + [sym__block] = STATE(9177), + [sym__loop_statement] = STATE(9177), + [sym_for_statement] = STATE(9177), + [sym_while_statement] = STATE(9177), + [sym_do_while_statement] = STATE(9177), + [sym_assignment] = STATE(9177), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -53600,135 +52562,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(107), [anon_sym_SQUOTE] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(207), + [sym__automatic_semicolon] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [109] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(4181), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(1800), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(1679), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8632), - [sym_modifiers] = STATE(8565), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [107] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3523), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8295), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(753), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(881), - [anon_sym_fun] = ACTIONS(883), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(889), - [anon_sym_var] = ACTIONS(889), - [anon_sym_object] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(895), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(899), - [anon_sym_for] = ACTIONS(901), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(1341), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(697), + [anon_sym_var] = ACTIONS(697), + [anon_sym_object] = ACTIONS(699), + [anon_sym_fun] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(703), + [anon_sym_set] = ACTIONS(705), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(1335), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53747,144 +52709,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [110] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3611), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(1241), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(2078), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8668), - [sym_modifiers] = STATE(8588), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5781), + [108] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(5280), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8320), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(217), - [anon_sym_fun] = ACTIONS(219), - [anon_sym_interface] = ACTIONS(217), - [anon_sym_enum] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(227), - [anon_sym_var] = ACTIONS(227), - [anon_sym_object] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_get] = ACTIONS(231), - [anon_sym_set] = ACTIONS(233), + [anon_sym_class] = ACTIONS(667), + [anon_sym_interface] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), + [anon_sym_object] = ACTIONS(673), + [anon_sym_fun] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(677), + [anon_sym_set] = ACTIONS(679), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(241), - [anon_sym_for] = ACTIONS(243), - [anon_sym_while] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(683), + [anon_sym_for] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), [anon_sym_do] = ACTIONS(247), [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(251), - [anon_sym_else] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(1341), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -53928,125 +52890,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [111] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(4405), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(2557), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1836), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8626), - [sym_modifiers] = STATE(8558), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(812), - [aux_sym_modifiers_repeat1] = STATE(5781), + [109] = { + [sym_type_alias] = STATE(9177), + [sym__declaration] = STATE(9177), + [sym_class_declaration] = STATE(9177), + [sym_function_declaration] = STATE(9177), + [sym_property_declaration] = STATE(9177), + [sym_getter] = STATE(9177), + [sym_setter] = STATE(9177), + [sym_object_declaration] = STATE(9177), + [sym__statement] = STATE(9177), + [sym_control_structure_body] = STATE(9101), + [sym__block] = STATE(9177), + [sym__loop_statement] = STATE(9177), + [sym_for_statement] = STATE(9177), + [sym_while_statement] = STATE(9177), + [sym_do_while_statement] = STATE(9177), + [sym_assignment] = STATE(9177), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [110] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(5627), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8304), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_fun] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1017), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(721), - [anon_sym_else] = ACTIONS(1351), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(1345), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -54079,7 +53203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(851), + [sym_real_literal] = ACTIONS(343), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -54090,131 +53214,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, + [111] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5611), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4251), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(762), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(1349), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, [112] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(4266), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(2308), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(2221), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8638), - [sym_modifiers] = STATE(8556), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5339), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_modifiers] = STATE(8288), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), [aux_sym__statement_repeat1] = STATE(792), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(1051), - [anon_sym_fun] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), - [anon_sym_object] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1063), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1069), - [anon_sym_while] = ACTIONS(1071), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(811), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(55), [anon_sym_else] = ACTIONS(1355), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54233,149 +53519,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(113), }, [113] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1206), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(550), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(2034), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8634), - [sym_modifiers] = STATE(8570), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8307), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(765), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(1077), - [anon_sym_fun] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1077), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_object] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(1087), - [anon_sym_set] = ACTIONS(1089), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1093), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54394,149 +53680,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(555), }, [114] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(3968), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(1425), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8636), - [sym_modifiers] = STATE(8553), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(779), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4888), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(768), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(351), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_interface] = ACTIONS(351), - [anon_sym_enum] = ACTIONS(355), - [anon_sym_LBRACE] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(361), - [anon_sym_var] = ACTIONS(361), - [anon_sym_object] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(217), + [anon_sym_interface] = ACTIONS(217), + [anon_sym_enum] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(365), - [anon_sym_set] = ACTIONS(367), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54555,149 +53841,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [115] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4962), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(3412), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1831), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8666), - [sym_modifiers] = STATE(8567), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(768), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [sym_type_alias] = STATE(9177), + [sym__declaration] = STATE(9177), + [sym_class_declaration] = STATE(9177), + [sym_function_declaration] = STATE(9177), + [sym_property_declaration] = STATE(9177), + [sym_getter] = STATE(9177), + [sym_setter] = STATE(9177), + [sym_object_declaration] = STATE(9177), + [sym__statement] = STATE(9177), + [sym_control_structure_body] = STATE(9388), + [sym__block] = STATE(9177), + [sym__loop_statement] = STATE(9177), + [sym_for_statement] = STATE(9177), + [sym_while_statement] = STATE(9177), + [sym_do_while_statement] = STATE(9177), + [sym_assignment] = STATE(9177), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(137), - [anon_sym_var] = ACTIONS(137), - [anon_sym_object] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(141), - [anon_sym_set] = ACTIONS(143), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(151), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54716,149 +54002,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(193), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(113), }, [116] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(3968), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2246), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1979), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8667), - [sym_modifiers] = STATE(8563), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(777), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1151), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8321), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(667), - [anon_sym_fun] = ACTIONS(669), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(673), - [anon_sym_var] = ACTIONS(673), - [anon_sym_object] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(677), - [anon_sym_set] = ACTIONS(679), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54877,143 +54163,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [117] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5296), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(3818), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8644), - [sym_modifiers] = STATE(8576), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5213), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8300), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(766), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(601), - [anon_sym_fun] = ACTIONS(603), - [anon_sym_interface] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(609), - [anon_sym_var] = ACTIONS(609), - [anon_sym_object] = ACTIONS(611), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(615), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(619), - [anon_sym_for] = ACTIONS(621), - [anon_sym_while] = ACTIONS(623), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(627), - [anon_sym_if] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -55046,7 +54332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), + [sym_real_literal] = ACTIONS(101), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -55058,129 +54344,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [118] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1134), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(550), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(2034), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8634), - [sym_modifiers] = STATE(8570), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5166), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8300), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(766), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(1077), - [anon_sym_fun] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1077), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_object] = ACTIONS(1085), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(1087), - [anon_sym_set] = ACTIONS(1089), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1093), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -55199,143 +54485,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, [119] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5257), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(3818), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8644), - [sym_modifiers] = STATE(8576), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5161), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8300), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(766), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(601), - [anon_sym_fun] = ACTIONS(603), - [anon_sym_interface] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(609), - [anon_sym_var] = ACTIONS(609), - [anon_sym_object] = ACTIONS(611), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(615), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(619), - [anon_sym_for] = ACTIONS(621), - [anon_sym_while] = ACTIONS(623), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(627), - [anon_sym_if] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -55368,7 +54654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), + [sym_real_literal] = ACTIONS(101), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -55380,123 +54666,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [120] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3545), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(1680), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(1724), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8640), - [sym_modifiers] = STATE(8589), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4888), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8320), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(699), - [anon_sym_fun] = ACTIONS(701), - [anon_sym_interface] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(223), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(705), - [anon_sym_var] = ACTIONS(705), - [anon_sym_object] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(711), + [anon_sym_class] = ACTIONS(667), + [anon_sym_interface] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), + [anon_sym_object] = ACTIONS(673), + [anon_sym_fun] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(677), + [anon_sym_set] = ACTIONS(679), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), - [anon_sym_while] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(683), + [anon_sym_for] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), [anon_sym_do] = ACTIONS(247), [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(721), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -55541,123 +54827,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(295), }, [121] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3545), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(2315), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1540), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8653), - [sym_modifiers] = STATE(8577), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4884), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8320), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(821), - [anon_sym_fun] = ACTIONS(823), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(829), - [anon_sym_var] = ACTIONS(829), - [anon_sym_object] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_get] = ACTIONS(833), - [anon_sym_set] = ACTIONS(835), + [anon_sym_class] = ACTIONS(667), + [anon_sym_interface] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), + [anon_sym_object] = ACTIONS(673), + [anon_sym_fun] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(677), + [anon_sym_set] = ACTIONS(679), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(839), - [anon_sym_for] = ACTIONS(841), - [anon_sym_while] = ACTIONS(843), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(683), + [anon_sym_for] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(251), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -55690,7 +54976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(851), + [sym_real_literal] = ACTIONS(283), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -55702,129 +54988,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(295), }, [122] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3271), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(2308), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(2221), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8638), - [sym_modifiers] = STATE(8556), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(792), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4837), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8320), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(1051), - [anon_sym_fun] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), - [anon_sym_object] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1063), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1069), - [anon_sym_while] = ACTIONS(1071), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(667), + [anon_sym_interface] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), + [anon_sym_object] = ACTIONS(673), + [anon_sym_fun] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_get] = ACTIONS(677), + [anon_sym_set] = ACTIONS(679), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(683), + [anon_sym_for] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -55843,149 +55129,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, [123] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(3970), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2246), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1979), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8667), - [sym_modifiers] = STATE(8563), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(777), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1103), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8321), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(667), - [anon_sym_fun] = ACTIONS(669), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(673), - [anon_sym_var] = ACTIONS(673), - [anon_sym_object] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(677), - [anon_sym_set] = ACTIONS(679), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56004,149 +55290,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [124] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4145), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2643), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8646), - [sym_modifiers] = STATE(8568), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(4001), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2565), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_modifiers] = STATE(8298), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(782), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_fun] = ACTIONS(1123), - [anon_sym_interface] = ACTIONS(1121), - [anon_sym_enum] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(1127), - [anon_sym_var] = ACTIONS(1127), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(1131), - [anon_sym_set] = ACTIONS(1133), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1137), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56165,138 +55451,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, [125] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3678), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(2557), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1836), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8626), - [sym_modifiers] = STATE(8558), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(812), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(211), + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1067), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8321), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_typealias] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), [anon_sym_class] = ACTIONS(1005), - [anon_sym_fun] = ACTIONS(1007), [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1379), [anon_sym_get] = ACTIONS(1015), [anon_sym_set] = ACTIONS(1017), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), [anon_sym_STAR] = ACTIONS(1019), [sym_label] = ACTIONS(1021), [anon_sym_for] = ACTIONS(1023), [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), [anon_sym_PLUS] = ACTIONS(1027), [anon_sym_DASH] = ACTIONS(1027), [anon_sym_PLUS_PLUS] = ACTIONS(1029), @@ -56305,9 +55591,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(269), - [anon_sym_inner] = ACTIONS(269), - [anon_sym_value] = ACTIONS(269), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56326,934 +55612,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(271), - [anon_sym_actual] = ACTIONS(271), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(851), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(471), }, [126] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4006), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2246), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1979), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8667), - [sym_modifiers] = STATE(8563), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(777), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(667), - [anon_sym_fun] = ACTIONS(669), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(673), - [anon_sym_var] = ACTIONS(673), - [anon_sym_object] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(677), - [anon_sym_set] = ACTIONS(679), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [127] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3253), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(2308), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(2221), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8638), - [sym_modifiers] = STATE(8556), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(792), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(1051), - [anon_sym_fun] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), - [anon_sym_object] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1063), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1069), - [anon_sym_while] = ACTIONS(1071), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [128] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3545), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(1241), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(2078), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8668), - [sym_modifiers] = STATE(8588), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(217), - [anon_sym_fun] = ACTIONS(219), - [anon_sym_interface] = ACTIONS(217), - [anon_sym_enum] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(227), - [anon_sym_var] = ACTIONS(227), - [anon_sym_object] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_get] = ACTIONS(231), - [anon_sym_set] = ACTIONS(233), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(241), - [anon_sym_for] = ACTIONS(243), - [anon_sym_while] = ACTIONS(245), - [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(251), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(269), - [anon_sym_inner] = ACTIONS(269), - [anon_sym_value] = ACTIONS(269), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(271), - [anon_sym_actual] = ACTIONS(271), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(283), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [129] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3329), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(1800), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(1679), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8632), - [sym_modifiers] = STATE(8565), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(881), - [anon_sym_fun] = ACTIONS(883), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(889), - [anon_sym_var] = ACTIONS(889), - [anon_sym_object] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(895), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(899), - [anon_sym_for] = ACTIONS(901), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [130] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4933), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4101), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1799), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8656), - [sym_modifiers] = STATE(8575), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(731), - [anon_sym_fun] = ACTIONS(733), - [anon_sym_interface] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(737), - [anon_sym_var] = ACTIONS(737), - [anon_sym_object] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(743), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), - [anon_sym_while] = ACTIONS(751), - [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(193), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [131] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5257), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8569), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5145), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8300), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(766), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1115), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1119), - [anon_sym_do] = ACTIONS(625), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(371), [anon_sym_null] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), @@ -57311,130 +55792,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [132] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1134), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(481), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(1634), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8657), - [sym_modifiers] = STATE(8560), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(769), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [127] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5213), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_modifiers] = STATE(8288), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(913), - [anon_sym_fun] = ACTIONS(915), - [anon_sym_interface] = ACTIONS(913), - [anon_sym_enum] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(921), - [anon_sym_var] = ACTIONS(921), - [anon_sym_object] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(925), - [anon_sym_set] = ACTIONS(927), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(931), - [anon_sym_for] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -57453,149 +55934,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [133] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1172), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(481), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(1634), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8657), - [sym_modifiers] = STATE(8560), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(769), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [128] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3906), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8316), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(913), - [anon_sym_fun] = ACTIONS(915), - [anon_sym_interface] = ACTIONS(913), - [anon_sym_enum] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(921), - [anon_sym_var] = ACTIONS(921), - [anon_sym_object] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_get] = ACTIONS(925), - [anon_sym_set] = ACTIONS(927), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(931), - [anon_sym_for] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(725), + [anon_sym_interface] = ACTIONS(725), + [anon_sym_enum] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [anon_sym_object] = ACTIONS(731), + [anon_sym_fun] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(737), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -57614,149 +56095,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [134] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1172), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(373), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2024), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8635), - [sym_modifiers] = STATE(8572), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [129] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3895), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8316), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_fun] = ACTIONS(439), - [anon_sym_interface] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(447), - [anon_sym_var] = ACTIONS(447), - [anon_sym_object] = ACTIONS(449), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_get] = ACTIONS(451), - [anon_sym_set] = ACTIONS(453), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(725), + [anon_sym_interface] = ACTIONS(725), + [anon_sym_enum] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [anon_sym_object] = ACTIONS(731), + [anon_sym_fun] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(737), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -57775,149 +56256,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [135] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5257), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4185), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8650), - [sym_modifiers] = STATE(8564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(802), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [130] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8316), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(641), - [anon_sym_fun] = ACTIONS(643), - [anon_sym_interface] = ACTIONS(641), - [anon_sym_enum] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(647), - [anon_sym_var] = ACTIONS(647), - [anon_sym_object] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_get] = ACTIONS(651), - [anon_sym_set] = ACTIONS(653), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_while] = ACTIONS(661), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(627), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(725), + [anon_sym_interface] = ACTIONS(725), + [anon_sym_enum] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [anon_sym_object] = ACTIONS(731), + [anon_sym_fun] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(737), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -57936,149 +56417,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [136] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(3970), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(1425), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8636), - [sym_modifiers] = STATE(8553), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(779), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [131] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3235), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8295), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(753), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(351), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_interface] = ACTIONS(351), - [anon_sym_enum] = ACTIONS(355), - [anon_sym_LBRACE] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(361), - [anon_sym_var] = ACTIONS(361), - [anon_sym_object] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(365), - [anon_sym_set] = ACTIONS(367), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(697), + [anon_sym_var] = ACTIONS(697), + [anon_sym_object] = ACTIONS(699), + [anon_sym_fun] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_get] = ACTIONS(703), + [anon_sym_set] = ACTIONS(705), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -58097,138 +56578,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [137] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1172), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(383), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2201), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8642), - [sym_modifiers] = STATE(8554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [132] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3419), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_modifiers] = STATE(8303), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(784), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), [anon_sym_class] = ACTIONS(757), - [anon_sym_fun] = ACTIONS(759), [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(763), - [anon_sym_var] = ACTIONS(763), - [anon_sym_object] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(761), + [anon_sym_var] = ACTIONS(761), + [anon_sym_object] = ACTIONS(763), + [anon_sym_fun] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(1389), [anon_sym_get] = ACTIONS(767), [anon_sym_set] = ACTIONS(769), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), [sym_label] = ACTIONS(773), [anon_sym_for] = ACTIONS(775), [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), [anon_sym_throw] = ACTIONS(781), [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(785), [anon_sym_DASH] = ACTIONS(785), [anon_sym_PLUS_PLUS] = ACTIONS(787), @@ -58237,9 +56718,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -58258,143 +56739,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [138] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(9752), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), + [133] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3398), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_modifiers] = STATE(8303), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(784), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(301), - [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), - [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_object] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(315), - [anon_sym_get] = ACTIONS(317), - [anon_sym_set] = ACTIONS(319), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(757), + [anon_sym_interface] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(761), + [anon_sym_var] = ACTIONS(761), + [anon_sym_object] = ACTIONS(763), + [anon_sym_fun] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(767), + [anon_sym_set] = ACTIONS(769), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(327), - [anon_sym_do] = ACTIONS(329), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_while] = ACTIONS(777), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -58427,7 +56908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), + [sym_real_literal] = ACTIONS(193), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -58438,446 +56919,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [139] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3329), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(1850), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8662), - [sym_modifiers] = STATE(8579), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(788), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(789), - [anon_sym_fun] = ACTIONS(791), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(795), - [anon_sym_var] = ACTIONS(795), - [anon_sym_object] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_get] = ACTIONS(799), - [anon_sym_set] = ACTIONS(801), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(805), - [anon_sym_for] = ACTIONS(807), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(553), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [140] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1160), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(481), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(1634), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8657), - [sym_modifiers] = STATE(8560), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(769), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(913), - [anon_sym_fun] = ACTIONS(915), - [anon_sym_interface] = ACTIONS(913), - [anon_sym_enum] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(921), - [anon_sym_var] = ACTIONS(921), - [anon_sym_object] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(925), - [anon_sym_set] = ACTIONS(927), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(931), - [anon_sym_for] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [141] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4954), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4101), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1799), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8656), - [sym_modifiers] = STATE(8575), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5781), + [134] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3396), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_modifiers] = STATE(8303), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(784), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(731), - [anon_sym_fun] = ACTIONS(733), - [anon_sym_interface] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(737), - [anon_sym_var] = ACTIONS(737), - [anon_sym_object] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(743), + [anon_sym_class] = ACTIONS(757), + [anon_sym_interface] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(761), + [anon_sym_var] = ACTIONS(761), + [anon_sym_object] = ACTIONS(763), + [anon_sym_fun] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_get] = ACTIONS(767), + [anon_sym_set] = ACTIONS(769), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), - [anon_sym_while] = ACTIONS(751), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_while] = ACTIONS(777), [anon_sym_do] = ACTIONS(157), [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -58921,124 +57080,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [142] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3550), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(1680), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(1724), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8640), - [sym_modifiers] = STATE(8589), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5781), + [135] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4851), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8320), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(699), - [anon_sym_fun] = ACTIONS(701), - [anon_sym_interface] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(223), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(705), - [anon_sym_var] = ACTIONS(705), - [anon_sym_object] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(711), + [anon_sym_class] = ACTIONS(667), + [anon_sym_interface] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), + [anon_sym_object] = ACTIONS(673), + [anon_sym_fun] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(677), + [anon_sym_set] = ACTIONS(679), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), - [anon_sym_while] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(683), + [anon_sym_for] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), [anon_sym_do] = ACTIONS(247), [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(721), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -59082,130 +57241,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [143] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5223), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(3818), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8644), - [sym_modifiers] = STATE(8576), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [136] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3260), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8317), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(771), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(601), - [anon_sym_fun] = ACTIONS(603), - [anon_sym_interface] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(609), - [anon_sym_var] = ACTIONS(609), - [anon_sym_object] = ACTIONS(611), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(615), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(619), - [anon_sym_for] = ACTIONS(621), - [anon_sym_while] = ACTIONS(623), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(627), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1121), + [anon_sym_interface] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1125), + [anon_sym_var] = ACTIONS(1125), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_fun] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_get] = ACTIONS(1131), + [anon_sym_set] = ACTIONS(1133), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -59224,149 +57383,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(639), }, - [144] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4006), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(1425), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8636), - [sym_modifiers] = STATE(8553), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(779), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [137] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3227), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8317), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(771), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(351), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_interface] = ACTIONS(351), - [anon_sym_enum] = ACTIONS(355), - [anon_sym_LBRACE] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(361), - [anon_sym_var] = ACTIONS(361), - [anon_sym_object] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(365), - [anon_sym_set] = ACTIONS(367), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1121), + [anon_sym_interface] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1125), + [anon_sym_var] = ACTIONS(1125), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_fun] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(1131), + [anon_sym_set] = ACTIONS(1133), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -59385,149 +57544,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [145] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3329), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(968), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(2216), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8652), - [sym_modifiers] = STATE(8566), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(774), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [138] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3263), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8317), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(771), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(521), - [anon_sym_fun] = ACTIONS(523), - [anon_sym_interface] = ACTIONS(521), - [anon_sym_enum] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(531), - [anon_sym_var] = ACTIONS(531), - [anon_sym_object] = ACTIONS(533), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_get] = ACTIONS(535), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1121), + [anon_sym_interface] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1125), + [anon_sym_var] = ACTIONS(1125), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_fun] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1131), + [anon_sym_set] = ACTIONS(1133), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -59546,149 +57705,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [146] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5290), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8569), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [139] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(4001), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8316), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1115), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1119), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(725), + [anon_sym_interface] = ACTIONS(725), + [anon_sym_enum] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [anon_sym_object] = ACTIONS(731), + [anon_sym_fun] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(737), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -59707,149 +57866,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [147] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1160), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(550), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(2034), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8634), - [sym_modifiers] = STATE(8570), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [140] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1182), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8297), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(1077), - [anon_sym_fun] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1077), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_object] = ACTIONS(1085), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1087), - [anon_sym_set] = ACTIONS(1089), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1093), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(393), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -59868,149 +58027,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [148] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3617), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(1680), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(1724), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8640), - [sym_modifiers] = STATE(8589), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(211), + [141] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1182), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(699), - [anon_sym_fun] = ACTIONS(701), - [anon_sym_interface] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(223), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(705), - [anon_sym_var] = ACTIONS(705), - [anon_sym_object] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(711), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), - [anon_sym_while] = ACTIONS(719), - [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(913), + [anon_sym_interface] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), + [anon_sym_object] = ACTIONS(921), + [anon_sym_fun] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(927), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(269), - [anon_sym_inner] = ACTIONS(269), - [anon_sym_value] = ACTIONS(269), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60029,149 +58188,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(271), - [anon_sym_actual] = ACTIONS(271), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(283), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(471), }, - [149] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3678), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(1680), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(1724), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8640), - [sym_modifiers] = STATE(8589), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(211), + [142] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3235), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1757), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8311), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(699), - [anon_sym_fun] = ACTIONS(701), - [anon_sym_interface] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(223), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(705), - [anon_sym_var] = ACTIONS(705), - [anon_sym_object] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(711), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), - [anon_sym_while] = ACTIONS(719), - [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(973), + [anon_sym_interface] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(979), + [anon_sym_var] = ACTIONS(979), + [anon_sym_object] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(987), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(269), - [anon_sym_inner] = ACTIONS(269), - [anon_sym_value] = ACTIONS(269), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60190,149 +58349,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(271), - [anon_sym_actual] = ACTIONS(271), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(283), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(639), }, - [150] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3550), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(1241), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(2078), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8668), - [sym_modifiers] = STATE(8588), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(211), + [143] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3895), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2565), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_modifiers] = STATE(8298), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(217), - [anon_sym_fun] = ACTIONS(219), - [anon_sym_interface] = ACTIONS(217), - [anon_sym_enum] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(227), - [anon_sym_var] = ACTIONS(227), - [anon_sym_object] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_get] = ACTIONS(231), - [anon_sym_set] = ACTIONS(233), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(241), - [anon_sym_for] = ACTIONS(243), - [anon_sym_while] = ACTIONS(245), - [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(251), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(269), - [anon_sym_inner] = ACTIONS(269), - [anon_sym_value] = ACTIONS(269), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60351,149 +58510,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(271), - [anon_sym_actual] = ACTIONS(271), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(283), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(555), }, - [151] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3617), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(1241), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(2078), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8668), - [sym_modifiers] = STATE(8588), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(211), + [144] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1151), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(385), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(217), - [anon_sym_fun] = ACTIONS(219), - [anon_sym_interface] = ACTIONS(217), - [anon_sym_enum] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(227), - [anon_sym_var] = ACTIONS(227), - [anon_sym_object] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(231), - [anon_sym_set] = ACTIONS(233), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(241), - [anon_sym_for] = ACTIONS(243), - [anon_sym_while] = ACTIONS(245), - [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(251), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(789), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(793), + [anon_sym_var] = ACTIONS(793), + [anon_sym_object] = ACTIONS(795), + [anon_sym_fun] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(799), + [anon_sym_set] = ACTIONS(801), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(805), + [anon_sym_for] = ACTIONS(807), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(269), - [anon_sym_inner] = ACTIONS(269), - [anon_sym_value] = ACTIONS(269), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60512,149 +58671,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(271), - [anon_sym_actual] = ACTIONS(271), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(283), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [152] = { - [sym_type_alias] = STATE(5481), - [sym__declaration] = STATE(5481), - [sym_class_declaration] = STATE(5481), - [sym_function_declaration] = STATE(5481), - [sym_property_declaration] = STATE(5481), - [sym_getter] = STATE(5481), - [sym_setter] = STATE(5481), - [sym_object_declaration] = STATE(5481), - [sym__statement] = STATE(5481), - [sym_control_structure_body] = STATE(5555), - [sym__block] = STATE(5481), - [sym__loop_statement] = STATE(5481), - [sym_for_statement] = STATE(5481), - [sym_while_statement] = STATE(5481), - [sym_do_while_statement] = STATE(5481), - [sym_assignment] = STATE(5481), - [sym__expression] = STATE(2308), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(2221), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8638), - [sym_modifiers] = STATE(8578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), + [145] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1103), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(385), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(803), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(1151), - [anon_sym_class] = ACTIONS(1153), - [anon_sym_fun] = ACTIONS(1155), - [anon_sym_interface] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(1161), - [anon_sym_var] = ACTIONS(1161), - [anon_sym_object] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1165), - [anon_sym_set] = ACTIONS(1167), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(789), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(793), + [anon_sym_var] = ACTIONS(793), + [anon_sym_object] = ACTIONS(795), + [anon_sym_fun] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(799), + [anon_sym_set] = ACTIONS(801), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(805), + [anon_sym_for] = ACTIONS(807), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), [anon_sym_throw] = ACTIONS(813), [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60673,149 +58832,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [153] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3678), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(1241), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(2078), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8668), - [sym_modifiers] = STATE(8588), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(211), + [146] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1067), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(385), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(217), - [anon_sym_fun] = ACTIONS(219), - [anon_sym_interface] = ACTIONS(217), - [anon_sym_enum] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(227), - [anon_sym_var] = ACTIONS(227), - [anon_sym_object] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_get] = ACTIONS(231), - [anon_sym_set] = ACTIONS(233), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(241), - [anon_sym_for] = ACTIONS(243), - [anon_sym_while] = ACTIONS(245), - [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(251), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(789), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(793), + [anon_sym_var] = ACTIONS(793), + [anon_sym_object] = ACTIONS(795), + [anon_sym_fun] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(799), + [anon_sym_set] = ACTIONS(801), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(805), + [anon_sym_for] = ACTIONS(807), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(269), - [anon_sym_inner] = ACTIONS(269), - [anon_sym_value] = ACTIONS(269), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60834,143 +58993,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(271), - [anon_sym_actual] = ACTIONS(271), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [147] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5166), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_modifiers] = STATE(8288), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(283), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(113), }, - [154] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4954), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(3412), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1831), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8666), - [sym_modifiers] = STATE(8567), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(768), - [aux_sym_modifiers_repeat1] = STATE(5781), + [148] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3527), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_modifiers] = STATE(8303), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(784), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(137), - [anon_sym_var] = ACTIONS(137), - [anon_sym_object] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(141), - [anon_sym_set] = ACTIONS(143), + [anon_sym_class] = ACTIONS(757), + [anon_sym_interface] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(761), + [anon_sym_var] = ACTIONS(761), + [anon_sym_object] = ACTIONS(763), + [anon_sym_fun] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_get] = ACTIONS(767), + [anon_sym_set] = ACTIONS(769), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(151), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_while] = ACTIONS(777), [anon_sym_do] = ACTIONS(157), [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -61014,285 +59334,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [155] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3329), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(2308), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(2221), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8638), - [sym_modifiers] = STATE(8556), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(792), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(1051), - [anon_sym_fun] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), - [anon_sym_object] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1063), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1069), - [anon_sym_while] = ACTIONS(1071), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [156] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4962), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4206), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2020), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8639), - [sym_modifiers] = STATE(8580), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5781), + [149] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3527), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8285), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(853), - [anon_sym_fun] = ACTIONS(855), - [anon_sym_interface] = ACTIONS(853), - [anon_sym_enum] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(861), - [anon_sym_var] = ACTIONS(861), - [anon_sym_object] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(865), - [anon_sym_set] = ACTIONS(867), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(871), - [anon_sym_for] = ACTIONS(873), - [anon_sym_while] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(161), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -61325,7 +59484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), + [sym_real_literal] = ACTIONS(851), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -61336,130 +59495,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [157] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3253), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(1800), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(1679), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8632), - [sym_modifiers] = STATE(8565), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [150] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3263), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8295), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(753), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(881), - [anon_sym_fun] = ACTIONS(883), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(889), - [anon_sym_var] = ACTIONS(889), - [anon_sym_object] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(895), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(899), - [anon_sym_for] = ACTIONS(901), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(697), + [anon_sym_var] = ACTIONS(697), + [anon_sym_object] = ACTIONS(699), + [anon_sym_fun] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(703), + [anon_sym_set] = ACTIONS(705), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61478,149 +59637,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [151] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5161), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_modifiers] = STATE(8288), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(113), }, - [158] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3271), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(968), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(2216), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8652), - [sym_modifiers] = STATE(8566), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(774), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [152] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3235), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8317), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(771), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(521), - [anon_sym_fun] = ACTIONS(523), - [anon_sym_interface] = ACTIONS(521), - [anon_sym_enum] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(531), - [anon_sym_var] = ACTIONS(531), - [anon_sym_object] = ACTIONS(533), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_get] = ACTIONS(535), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1121), + [anon_sym_interface] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1125), + [anon_sym_var] = ACTIONS(1125), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_fun] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_get] = ACTIONS(1131), + [anon_sym_set] = ACTIONS(1133), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61639,149 +59959,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [159] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4145), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2246), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1979), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8667), - [sym_modifiers] = STATE(8563), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(777), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [153] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3227), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8295), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(753), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(667), - [anon_sym_fun] = ACTIONS(669), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(673), - [anon_sym_var] = ACTIONS(673), - [anon_sym_object] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(677), - [anon_sym_set] = ACTIONS(679), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(697), + [anon_sym_var] = ACTIONS(697), + [anon_sym_object] = ACTIONS(699), + [anon_sym_fun] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(703), + [anon_sym_set] = ACTIONS(705), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61800,130 +60120,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [160] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5223), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8569), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5781), + [154] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5145), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_modifiers] = STATE(8288), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1115), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1119), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(53), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -61932,11 +60252,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -61969,7 +60289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), + [sym_real_literal] = ACTIONS(385), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -61980,130 +60300,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [161] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1134), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(373), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2024), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8635), - [sym_modifiers] = STATE(8572), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [155] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1182), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8321), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_fun] = ACTIONS(439), - [anon_sym_interface] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(447), - [anon_sym_var] = ACTIONS(447), - [anon_sym_object] = ACTIONS(449), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(451), - [anon_sym_set] = ACTIONS(453), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62122,149 +60442,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [162] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4905), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8582), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [156] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1182), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(385), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(1031), - [anon_sym_fun] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(789), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(793), + [anon_sym_var] = ACTIONS(793), + [anon_sym_object] = ACTIONS(795), + [anon_sym_fun] = ACTIONS(797), [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1043), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_get] = ACTIONS(799), + [anon_sym_set] = ACTIONS(801), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(805), + [anon_sym_for] = ACTIONS(807), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62283,149 +60603,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [163] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4933), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8582), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [157] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3260), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8295), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(753), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(1031), - [anon_sym_fun] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1043), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(697), + [anon_sym_var] = ACTIONS(697), + [anon_sym_object] = ACTIONS(699), + [anon_sym_fun] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_get] = ACTIONS(703), + [anon_sym_set] = ACTIONS(705), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62444,149 +60764,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [164] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3271), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(1800), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(1679), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8632), - [sym_modifiers] = STATE(8565), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [158] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4851), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4101), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_modifiers] = STATE(8289), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(881), - [anon_sym_fun] = ACTIONS(883), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(889), - [anon_sym_var] = ACTIONS(889), - [anon_sym_object] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(895), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(899), - [anon_sym_for] = ACTIONS(901), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(853), + [anon_sym_interface] = ACTIONS(853), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(865), + [anon_sym_set] = ACTIONS(867), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62605,149 +60925,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [165] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3274), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(2308), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(2221), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8638), - [sym_modifiers] = STATE(8556), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(792), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [159] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4837), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4101), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_modifiers] = STATE(8289), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(1051), - [anon_sym_fun] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), - [anon_sym_object] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1063), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1069), - [anon_sym_while] = ACTIONS(1071), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(853), + [anon_sym_interface] = ACTIONS(853), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_get] = ACTIONS(865), + [anon_sym_set] = ACTIONS(867), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62766,149 +61086,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [166] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3274), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(968), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(2216), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8652), - [sym_modifiers] = STATE(8566), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(774), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [160] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5213), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(3771), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_modifiers] = STATE(8284), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(521), - [anon_sym_fun] = ACTIONS(523), - [anon_sym_interface] = ACTIONS(521), - [anon_sym_enum] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(531), - [anon_sym_var] = ACTIONS(531), - [anon_sym_object] = ACTIONS(533), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_get] = ACTIONS(535), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(347), + [anon_sym_interface] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(353), + [anon_sym_var] = ACTIONS(353), + [anon_sym_object] = ACTIONS(355), + [anon_sym_fun] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62927,149 +61247,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [167] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4145), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2507), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1759), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8660), - [sym_modifiers] = STATE(8552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [161] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5166), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(3771), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_modifiers] = STATE(8284), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(973), - [anon_sym_fun] = ACTIONS(975), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(981), - [anon_sym_var] = ACTIONS(981), - [anon_sym_object] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(987), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(347), + [anon_sym_interface] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(353), + [anon_sym_var] = ACTIONS(353), + [anon_sym_object] = ACTIONS(355), + [anon_sym_fun] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63088,149 +61408,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(113), }, - [168] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3274), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(1850), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8662), - [sym_modifiers] = STATE(8579), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(788), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [162] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5161), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(3771), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_modifiers] = STATE(8284), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(789), - [anon_sym_fun] = ACTIONS(791), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(795), - [anon_sym_var] = ACTIONS(795), - [anon_sym_object] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_get] = ACTIONS(799), - [anon_sym_set] = ACTIONS(801), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(805), - [anon_sym_for] = ACTIONS(807), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(553), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(347), + [anon_sym_interface] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(353), + [anon_sym_var] = ACTIONS(353), + [anon_sym_object] = ACTIONS(355), + [anon_sym_fun] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63249,149 +61569,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [169] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1160), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(373), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2024), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8635), - [sym_modifiers] = STATE(8572), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [163] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5145), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(3771), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_modifiers] = STATE(8284), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_fun] = ACTIONS(439), - [anon_sym_interface] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(447), - [anon_sym_var] = ACTIONS(447), - [anon_sym_object] = ACTIONS(449), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(451), - [anon_sym_set] = ACTIONS(453), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(347), + [anon_sym_interface] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(353), + [anon_sym_var] = ACTIONS(353), + [anon_sym_object] = ACTIONS(355), + [anon_sym_fun] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63410,632 +61730,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [170] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4954), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4206), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2020), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8639), - [sym_modifiers] = STATE(8580), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [164] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3906), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2565), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_modifiers] = STATE(8298), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(853), - [anon_sym_fun] = ACTIONS(855), - [anon_sym_interface] = ACTIONS(853), - [anon_sym_enum] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(861), - [anon_sym_var] = ACTIONS(861), - [anon_sym_object] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(865), - [anon_sym_set] = ACTIONS(867), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(871), - [anon_sym_for] = ACTIONS(873), - [anon_sym_while] = ACTIONS(875), - [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(161), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [171] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4962), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8582), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), [anon_sym_class] = ACTIONS(1031), - [anon_sym_fun] = ACTIONS(1033), [anon_sym_interface] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1383), [anon_sym_get] = ACTIONS(1041), [anon_sym_set] = ACTIONS(1043), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [172] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(9752), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(301), - [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), - [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_object] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(315), - [anon_sym_get] = ACTIONS(317), - [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(327), - [anon_sym_do] = ACTIONS(329), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [173] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4905), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4206), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2020), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8639), - [sym_modifiers] = STATE(8580), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(853), - [anon_sym_fun] = ACTIONS(855), - [anon_sym_interface] = ACTIONS(853), - [anon_sym_enum] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(861), - [anon_sym_var] = ACTIONS(861), - [anon_sym_object] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_get] = ACTIONS(865), - [anon_sym_set] = ACTIONS(867), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(871), - [anon_sym_for] = ACTIONS(873), - [anon_sym_while] = ACTIONS(875), - [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(161), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -64054,143 +61891,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(555), }, - [174] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5223), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4185), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8650), - [sym_modifiers] = STATE(8564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(802), - [aux_sym_modifiers_repeat1] = STATE(5781), + [165] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5213), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4251), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(762), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(641), - [anon_sym_fun] = ACTIONS(643), - [anon_sym_interface] = ACTIONS(641), - [anon_sym_enum] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(647), - [anon_sym_var] = ACTIONS(647), - [anon_sym_object] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_get] = ACTIONS(651), - [anon_sym_set] = ACTIONS(653), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_while] = ACTIONS(661), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(627), - [anon_sym_if] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(375), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -64223,7 +62060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), + [sym_real_literal] = ACTIONS(101), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -64234,768 +62071,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [175] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(3968), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2507), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1759), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8660), - [sym_modifiers] = STATE(8552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(973), - [anon_sym_fun] = ACTIONS(975), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(981), - [anon_sym_var] = ACTIONS(981), - [anon_sym_object] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(987), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [176] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1206), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(481), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(1634), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8657), - [sym_modifiers] = STATE(8560), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(769), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(913), - [anon_sym_fun] = ACTIONS(915), - [anon_sym_interface] = ACTIONS(913), - [anon_sym_enum] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(921), - [anon_sym_var] = ACTIONS(921), - [anon_sym_object] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(925), - [anon_sym_set] = ACTIONS(927), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(931), - [anon_sym_for] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [177] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(3970), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2507), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1759), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8660), - [sym_modifiers] = STATE(8552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(973), - [anon_sym_fun] = ACTIONS(975), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(981), - [anon_sym_var] = ACTIONS(981), - [anon_sym_object] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(987), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [178] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1206), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(383), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2201), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8642), - [sym_modifiers] = STATE(8554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(757), - [anon_sym_fun] = ACTIONS(759), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(763), - [anon_sym_var] = ACTIONS(763), - [anon_sym_object] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(769), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(773), - [anon_sym_for] = ACTIONS(775), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [179] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5290), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4185), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8650), - [sym_modifiers] = STATE(8564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(802), - [aux_sym_modifiers_repeat1] = STATE(5781), + [166] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5166), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4251), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(762), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(641), - [anon_sym_fun] = ACTIONS(643), - [anon_sym_interface] = ACTIONS(641), - [anon_sym_enum] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(647), - [anon_sym_var] = ACTIONS(647), - [anon_sym_object] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_get] = ACTIONS(651), - [anon_sym_set] = ACTIONS(653), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_while] = ACTIONS(661), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(627), - [anon_sym_if] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(375), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -65028,7 +62221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), + [sym_real_literal] = ACTIONS(101), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -65039,124 +62232,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [180] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5296), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4185), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8650), - [sym_modifiers] = STATE(8564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(802), - [aux_sym_modifiers_repeat1] = STATE(5781), + [167] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5161), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4251), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(762), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(641), - [anon_sym_fun] = ACTIONS(643), - [anon_sym_interface] = ACTIONS(641), - [anon_sym_enum] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(647), - [anon_sym_var] = ACTIONS(647), - [anon_sym_object] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(651), - [anon_sym_set] = ACTIONS(653), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_while] = ACTIONS(661), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(627), - [anon_sym_if] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(375), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -65189,7 +62382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), + [sym_real_literal] = ACTIONS(101), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -65200,285 +62393,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [181] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4006), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2507), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1759), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8660), - [sym_modifiers] = STATE(8552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(973), - [anon_sym_fun] = ACTIONS(975), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(981), - [anon_sym_var] = ACTIONS(981), - [anon_sym_object] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(987), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [182] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5296), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8569), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5781), + [168] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5145), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4251), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(762), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1115), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1119), - [anon_sym_do] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(371), [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(375), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -65522,124 +62554,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [183] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4905), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4101), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1799), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8656), - [sym_modifiers] = STATE(8575), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5781), + [169] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3396), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8285), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(731), - [anon_sym_fun] = ACTIONS(733), - [anon_sym_interface] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(737), - [anon_sym_var] = ACTIONS(737), - [anon_sym_object] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(743), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), - [anon_sym_while] = ACTIONS(751), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(333), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -65672,7 +62704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(193), + [sym_real_literal] = ACTIONS(851), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -65683,130 +62715,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [184] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5290), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4363), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1980), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8669), - [sym_modifiers] = STATE(8585), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [170] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3398), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8285), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(945), - [anon_sym_fun] = ACTIONS(947), - [anon_sym_interface] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(953), - [anon_sym_var] = ACTIONS(953), - [anon_sym_object] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(959), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(963), - [anon_sym_for] = ACTIONS(965), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -65825,143 +62857,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(205), }, - [185] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3550), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(2315), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1540), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8653), - [sym_modifiers] = STATE(8577), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5781), + [171] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3419), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8285), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [172] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4888), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8304), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(821), - [anon_sym_fun] = ACTIONS(823), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(829), - [anon_sym_var] = ACTIONS(829), - [anon_sym_object] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_get] = ACTIONS(833), - [anon_sym_set] = ACTIONS(835), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(839), - [anon_sym_for] = ACTIONS(841), - [anon_sym_while] = ACTIONS(843), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(251), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -65994,7 +63187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(851), + [sym_real_literal] = ACTIONS(343), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -66005,267 +63198,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [186] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3271), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(1850), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8662), - [sym_modifiers] = STATE(8579), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(788), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(789), - [anon_sym_fun] = ACTIONS(791), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(795), - [anon_sym_var] = ACTIONS(795), - [anon_sym_object] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_get] = ACTIONS(799), - [anon_sym_set] = ACTIONS(801), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(805), - [anon_sym_for] = ACTIONS(807), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(553), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [187] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4933), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(3412), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1831), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8666), - [sym_modifiers] = STATE(8567), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(768), - [aux_sym_modifiers_repeat1] = STATE(5781), + [173] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3527), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_typealias] = ACTIONS(125), [anon_sym_class] = ACTIONS(127), - [anon_sym_fun] = ACTIONS(129), [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(137), - [anon_sym_var] = ACTIONS(137), - [anon_sym_object] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(135), + [anon_sym_var] = ACTIONS(135), + [anon_sym_object] = ACTIONS(137), + [anon_sym_fun] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(1405), [anon_sym_get] = ACTIONS(141), [anon_sym_set] = ACTIONS(143), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1283), [sym_label] = ACTIONS(151), [anon_sym_for] = ACTIONS(153), [anon_sym_while] = ACTIONS(155), @@ -66327,130 +63359,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [188] = { - [sym_type_alias] = STATE(9551), - [sym__declaration] = STATE(9551), - [sym_class_declaration] = STATE(9551), - [sym_function_declaration] = STATE(9551), - [sym_property_declaration] = STATE(9551), - [sym_getter] = STATE(9551), - [sym_setter] = STATE(9551), - [sym_object_declaration] = STATE(9551), - [sym__statement] = STATE(9551), - [sym_control_structure_body] = STATE(9533), - [sym__block] = STATE(9551), - [sym__loop_statement] = STATE(9551), - [sym_for_statement] = STATE(9551), - [sym_while_statement] = STATE(9551), - [sym_do_while_statement] = STATE(9551), - [sym_assignment] = STATE(9551), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [174] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1067), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8297), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(393), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -66469,143 +63501,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [189] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3617), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(2315), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1540), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8653), - [sym_modifiers] = STATE(8577), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5781), + [175] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4884), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8304), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(821), - [anon_sym_fun] = ACTIONS(823), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(829), - [anon_sym_var] = ACTIONS(829), - [anon_sym_object] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(833), - [anon_sym_set] = ACTIONS(835), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(839), - [anon_sym_for] = ACTIONS(841), - [anon_sym_while] = ACTIONS(843), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(251), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -66638,7 +63670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(851), + [sym_real_literal] = ACTIONS(343), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -66649,130 +63681,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [190] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(3968), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2643), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8646), - [sym_modifiers] = STATE(8568), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(782), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [176] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4837), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8304), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_fun] = ACTIONS(1123), - [anon_sym_interface] = ACTIONS(1121), - [anon_sym_enum] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(1127), - [anon_sym_var] = ACTIONS(1127), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(1131), - [anon_sym_set] = ACTIONS(1133), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1137), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -66791,149 +63823,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(295), }, - [191] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5223), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4363), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1980), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8669), - [sym_modifiers] = STATE(8585), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [177] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3906), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8307), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(765), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(945), - [anon_sym_fun] = ACTIONS(947), - [anon_sym_interface] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(953), - [anon_sym_var] = ACTIONS(953), - [anon_sym_object] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(959), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(963), - [anon_sym_for] = ACTIONS(965), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -66952,149 +63984,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(555), }, - [192] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3253), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(968), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(2216), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8652), - [sym_modifiers] = STATE(8566), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(774), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [178] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4888), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4101), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_modifiers] = STATE(8289), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(521), - [anon_sym_fun] = ACTIONS(523), - [anon_sym_interface] = ACTIONS(521), - [anon_sym_enum] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(531), - [anon_sym_var] = ACTIONS(531), - [anon_sym_object] = ACTIONS(533), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_get] = ACTIONS(535), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(853), + [anon_sym_interface] = ACTIONS(853), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(865), + [anon_sym_set] = ACTIONS(867), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -67113,149 +64145,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [193] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4933), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4206), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2020), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8639), - [sym_modifiers] = STATE(8580), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [179] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3895), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8307), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(765), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(853), - [anon_sym_fun] = ACTIONS(855), - [anon_sym_interface] = ACTIONS(853), - [anon_sym_enum] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(861), - [anon_sym_var] = ACTIONS(861), - [anon_sym_object] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_get] = ACTIONS(865), - [anon_sym_set] = ACTIONS(867), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(871), - [anon_sym_for] = ACTIONS(873), - [anon_sym_while] = ACTIONS(875), - [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(161), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -67274,143 +64306,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(555), }, - [194] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3545), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(2557), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1836), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8626), - [sym_modifiers] = STATE(8558), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(812), - [aux_sym_modifiers_repeat1] = STATE(5781), + [180] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9478), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_fun] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1017), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -67443,7 +64475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(851), + [sym_real_literal] = ACTIONS(343), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -67454,291 +64486,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [195] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1160), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(383), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2201), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8642), - [sym_modifiers] = STATE(8554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(757), - [anon_sym_fun] = ACTIONS(759), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(763), - [anon_sym_var] = ACTIONS(763), - [anon_sym_object] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(769), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(773), - [anon_sym_for] = ACTIONS(775), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [196] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1134), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(383), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2201), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8642), - [sym_modifiers] = STATE(8554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), + [181] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1103), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8297), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(757), - [anon_sym_fun] = ACTIONS(759), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(763), - [anon_sym_var] = ACTIONS(763), - [anon_sym_object] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(769), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(773), - [anon_sym_for] = ACTIONS(775), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(393), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -67757,143 +64628,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [197] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4954), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8582), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5781), + [182] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3419), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8309), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(1031), - [anon_sym_fun] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1043), + [anon_sym_class] = ACTIONS(821), + [anon_sym_interface] = ACTIONS(821), + [anon_sym_enum] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(827), + [anon_sym_var] = ACTIONS(827), + [anon_sym_object] = ACTIONS(829), + [anon_sym_fun] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(835), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(839), + [anon_sym_for] = ACTIONS(841), + [anon_sym_while] = ACTIONS(843), [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -67926,7 +64797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), + [sym_real_literal] = ACTIONS(851), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -67937,119 +64808,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [198] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3678), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(2315), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1540), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8653), - [sym_modifiers] = STATE(8577), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(211), + [183] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3398), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8309), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_typealias] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), [anon_sym_class] = ACTIONS(821), - [anon_sym_fun] = ACTIONS(823), [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(829), - [anon_sym_var] = ACTIONS(829), - [anon_sym_object] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_enum] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(827), + [anon_sym_var] = ACTIONS(827), + [anon_sym_object] = ACTIONS(829), + [anon_sym_fun] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(1391), [anon_sym_get] = ACTIONS(833), [anon_sym_set] = ACTIONS(835), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(837), [sym_label] = ACTIONS(839), [anon_sym_for] = ACTIONS(841), [anon_sym_while] = ACTIONS(843), - [anon_sym_do] = ACTIONS(247), + [anon_sym_do] = ACTIONS(157), [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(251), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -68058,9 +64929,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(269), - [anon_sym_inner] = ACTIONS(269), - [anon_sym_value] = ACTIONS(269), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -68079,149 +64950,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(271), - [anon_sym_actual] = ACTIONS(271), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), [sym_real_literal] = ACTIONS(851), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [199] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1206), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(373), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2024), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8635), - [sym_modifiers] = STATE(8572), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), + [184] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1151), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8297), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_fun] = ACTIONS(439), - [anon_sym_interface] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(447), - [anon_sym_var] = ACTIONS(447), - [anon_sym_object] = ACTIONS(449), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(451), - [anon_sym_set] = ACTIONS(453), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(393), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -68240,143 +65111,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [200] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4962), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(4101), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1799), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8656), - [sym_modifiers] = STATE(8575), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5781), + [185] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3396), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8309), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(731), - [anon_sym_fun] = ACTIONS(733), - [anon_sym_interface] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(737), - [anon_sym_var] = ACTIONS(737), - [anon_sym_object] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(743), + [anon_sym_class] = ACTIONS(821), + [anon_sym_interface] = ACTIONS(821), + [anon_sym_enum] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(827), + [anon_sym_var] = ACTIONS(827), + [anon_sym_object] = ACTIONS(829), + [anon_sym_fun] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(835), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), - [anon_sym_while] = ACTIONS(751), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(839), + [anon_sym_for] = ACTIONS(841), + [anon_sym_while] = ACTIONS(843), [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(333), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -68409,7 +65280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(193), + [sym_real_literal] = ACTIONS(851), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -68420,130 +65291,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [201] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5296), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4363), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1980), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8669), - [sym_modifiers] = STATE(8585), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [186] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(4001), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(1392), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8319), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(763), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(945), - [anon_sym_fun] = ACTIONS(947), - [anon_sym_interface] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(953), - [anon_sym_var] = ACTIONS(953), - [anon_sym_object] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(959), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(963), - [anon_sym_for] = ACTIONS(965), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(487), + [anon_sym_var] = ACTIONS(487), + [anon_sym_object] = ACTIONS(489), + [anon_sym_fun] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_get] = ACTIONS(493), + [anon_sym_set] = ACTIONS(495), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -68562,149 +65433,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [202] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3274), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(1800), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(1679), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8632), - [sym_modifiers] = STATE(8565), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), + [187] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3263), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1757), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8311), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(881), - [anon_sym_fun] = ACTIONS(883), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(889), - [anon_sym_var] = ACTIONS(889), - [anon_sym_object] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(895), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(899), - [anon_sym_for] = ACTIONS(901), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(973), + [anon_sym_interface] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(979), + [anon_sym_var] = ACTIONS(979), + [anon_sym_object] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(987), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -68723,465 +65594,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [203] = { - [sym_type_alias] = STATE(1115), - [sym__declaration] = STATE(1115), - [sym_class_declaration] = STATE(1115), - [sym_function_declaration] = STATE(1115), - [sym_property_declaration] = STATE(1115), - [sym_getter] = STATE(1115), - [sym_setter] = STATE(1115), - [sym_object_declaration] = STATE(1115), - [sym__statement] = STATE(1115), - [sym_control_structure_body] = STATE(1172), - [sym__block] = STATE(1115), - [sym__loop_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_while_statement] = STATE(1115), - [sym_assignment] = STATE(1115), - [sym__expression] = STATE(550), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(2034), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8634), - [sym_modifiers] = STATE(8570), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(1077), - [anon_sym_fun] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1077), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_val] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_object] = ACTIONS(1085), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_get] = ACTIONS(1087), - [anon_sym_set] = ACTIONS(1089), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1093), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [204] = { - [sym_type_alias] = STATE(3219), - [sym__declaration] = STATE(3219), - [sym_class_declaration] = STATE(3219), - [sym_function_declaration] = STATE(3219), - [sym_property_declaration] = STATE(3219), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_object_declaration] = STATE(3219), - [sym__statement] = STATE(3219), - [sym_control_structure_body] = STATE(3253), - [sym__block] = STATE(3219), - [sym__loop_statement] = STATE(3219), - [sym_for_statement] = STATE(3219), - [sym_while_statement] = STATE(3219), - [sym_do_while_statement] = STATE(3219), - [sym_assignment] = STATE(3219), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(1850), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8662), - [sym_modifiers] = STATE(8579), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(788), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(519), - [anon_sym_class] = ACTIONS(789), - [anon_sym_fun] = ACTIONS(791), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(795), - [anon_sym_var] = ACTIONS(795), - [anon_sym_object] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_get] = ACTIONS(799), - [anon_sym_set] = ACTIONS(801), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(805), - [anon_sym_for] = ACTIONS(807), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(553), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(639), }, - [205] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3617), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(2557), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1836), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8626), - [sym_modifiers] = STATE(8558), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(812), - [aux_sym_modifiers_repeat1] = STATE(5781), + [188] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4851), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8304), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_fun] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1017), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(721), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -69214,7 +65763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(851), + [sym_real_literal] = ACTIONS(343), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -69225,130 +65774,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [206] = { - [sym_type_alias] = STATE(4940), - [sym__declaration] = STATE(4940), - [sym_class_declaration] = STATE(4940), - [sym_function_declaration] = STATE(4940), - [sym_property_declaration] = STATE(4940), - [sym_getter] = STATE(4940), - [sym_setter] = STATE(4940), - [sym_object_declaration] = STATE(4940), - [sym__statement] = STATE(4940), - [sym_control_structure_body] = STATE(4905), - [sym__block] = STATE(4940), - [sym__loop_statement] = STATE(4940), - [sym_for_statement] = STATE(4940), - [sym_while_statement] = STATE(4940), - [sym_do_while_statement] = STATE(4940), - [sym_assignment] = STATE(4940), - [sym__expression] = STATE(3412), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1831), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8666), - [sym_modifiers] = STATE(8567), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(768), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [189] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3260), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8305), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(137), - [anon_sym_var] = ACTIONS(137), - [anon_sym_object] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_get] = ACTIONS(141), - [anon_sym_set] = ACTIONS(143), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(151), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -69367,149 +65916,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(193), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [207] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5257), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(4363), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1980), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8669), - [sym_modifiers] = STATE(8585), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [190] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3227), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1757), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8311), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(945), - [anon_sym_fun] = ACTIONS(947), - [anon_sym_interface] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(953), - [anon_sym_var] = ACTIONS(953), - [anon_sym_object] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(959), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(963), - [anon_sym_for] = ACTIONS(965), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(973), + [anon_sym_interface] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(979), + [anon_sym_var] = ACTIONS(979), + [anon_sym_object] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(987), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -69528,149 +66077,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(639), }, - [208] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4006), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2643), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8646), - [sym_modifiers] = STATE(8568), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), + [191] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2565), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_modifiers] = STATE(8298), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(782), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_fun] = ACTIONS(1123), - [anon_sym_interface] = ACTIONS(1121), - [anon_sym_enum] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(1127), - [anon_sym_var] = ACTIONS(1127), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(1131), - [anon_sym_set] = ACTIONS(1133), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1137), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -69689,143 +66238,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [209] = { - [sym_type_alias] = STATE(3475), - [sym__declaration] = STATE(3475), - [sym_class_declaration] = STATE(3475), - [sym_function_declaration] = STATE(3475), - [sym_property_declaration] = STATE(3475), - [sym_getter] = STATE(3475), - [sym_setter] = STATE(3475), - [sym_object_declaration] = STATE(3475), - [sym__statement] = STATE(3475), - [sym_control_structure_body] = STATE(3550), - [sym__block] = STATE(3475), - [sym__loop_statement] = STATE(3475), - [sym_for_statement] = STATE(3475), - [sym_while_statement] = STATE(3475), - [sym_do_while_statement] = STATE(3475), - [sym_assignment] = STATE(3475), - [sym__expression] = STATE(2557), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1836), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8626), - [sym_modifiers] = STATE(8558), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(812), - [aux_sym_modifiers_repeat1] = STATE(5781), + [192] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3227), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8305), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [193] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9478), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_fun] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1017), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -69858,7 +66568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(851), + [sym_real_literal] = ACTIONS(343), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -69869,130 +66579,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [210] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(3970), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(2643), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8646), - [sym_modifiers] = STATE(8568), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(782), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [194] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1067), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_fun] = ACTIONS(1123), - [anon_sym_interface] = ACTIONS(1121), - [anon_sym_enum] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(1127), - [anon_sym_var] = ACTIONS(1127), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1131), - [anon_sym_set] = ACTIONS(1133), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1137), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(913), + [anon_sym_interface] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), + [anon_sym_object] = ACTIONS(921), + [anon_sym_fun] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(927), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -70011,149 +66721,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(471), }, - [211] = { - [sym_type_alias] = STATE(5394), - [sym__declaration] = STATE(5394), - [sym_class_declaration] = STATE(5394), - [sym_function_declaration] = STATE(5394), - [sym_property_declaration] = STATE(5394), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_object_declaration] = STATE(5394), - [sym__statement] = STATE(5394), - [sym_control_structure_body] = STATE(5290), - [sym__block] = STATE(5394), - [sym__loop_statement] = STATE(5394), - [sym_for_statement] = STATE(5394), - [sym_while_statement] = STATE(5394), - [sym_do_while_statement] = STATE(5394), - [sym_assignment] = STATE(5394), - [sym__expression] = STATE(3818), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8644), - [sym_modifiers] = STATE(8576), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [195] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(4001), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8307), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(765), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(599), - [anon_sym_class] = ACTIONS(601), - [anon_sym_fun] = ACTIONS(603), - [anon_sym_interface] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(609), - [anon_sym_var] = ACTIONS(609), - [anon_sym_object] = ACTIONS(611), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(615), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(619), - [anon_sym_for] = ACTIONS(621), - [anon_sym_while] = ACTIONS(623), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(627), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -70172,149 +66882,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [196] = { + [sym_type_alias] = STATE(5382), + [sym__declaration] = STATE(5382), + [sym_class_declaration] = STATE(5382), + [sym_function_declaration] = STATE(5382), + [sym_property_declaration] = STATE(5382), + [sym_getter] = STATE(5382), + [sym_setter] = STATE(5382), + [sym_object_declaration] = STATE(5382), + [sym__statement] = STATE(5382), + [sym_control_structure_body] = STATE(5424), + [sym__block] = STATE(5382), + [sym__loop_statement] = STATE(5382), + [sym_for_statement] = STATE(5382), + [sym_while_statement] = STATE(5382), + [sym_do_while_statement] = STATE(5382), + [sym_assignment] = STATE(5382), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8312), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(755), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(1151), + [anon_sym_class] = ACTIONS(1153), + [anon_sym_interface] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1159), + [anon_sym_var] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1161), + [anon_sym_fun] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_get] = ACTIONS(1165), + [anon_sym_set] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(639), }, - [212] = { - [sym_type_alias] = STATE(4125), - [sym__declaration] = STATE(4125), - [sym_class_declaration] = STATE(4125), - [sym_function_declaration] = STATE(4125), - [sym_property_declaration] = STATE(4125), - [sym_getter] = STATE(4125), - [sym_setter] = STATE(4125), - [sym_object_declaration] = STATE(4125), - [sym__statement] = STATE(4125), - [sym_control_structure_body] = STATE(4145), - [sym__block] = STATE(4125), - [sym__loop_statement] = STATE(4125), - [sym_for_statement] = STATE(4125), - [sym_while_statement] = STATE(4125), - [sym_do_while_statement] = STATE(4125), - [sym_assignment] = STATE(4125), - [sym__expression] = STATE(1425), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8636), - [sym_modifiers] = STATE(8553), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(779), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(345), + [197] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1103), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(351), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_interface] = ACTIONS(351), - [anon_sym_enum] = ACTIONS(355), - [anon_sym_LBRACE] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_val] = ACTIONS(361), - [anon_sym_var] = ACTIONS(361), - [anon_sym_object] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(913), + [anon_sym_interface] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), + [anon_sym_object] = ACTIONS(921), + [anon_sym_fun] = ACTIONS(923), [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(365), - [anon_sym_set] = ACTIONS(367), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(927), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -70333,148 +67204,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [213] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10246), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [198] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3263), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8305), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -70493,148 +67365,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [214] = { - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), + [199] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3260), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1757), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8311), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat3] = STATE(239), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [ts_builtin_sym_end] = ACTIONS(1147), - [sym__alpha_identifier] = ACTIONS(7), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(973), + [anon_sym_interface] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(979), + [anon_sym_var] = ACTIONS(979), + [anon_sym_object] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(987), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -70653,148 +67526,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(639), }, - [215] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(10033), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [200] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4884), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4101), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_modifiers] = STATE(8289), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(301), - [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), - [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_object] = ACTIONS(313), - [anon_sym_get] = ACTIONS(317), - [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(853), + [anon_sym_interface] = ACTIONS(853), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(865), + [anon_sym_set] = ACTIONS(867), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(247), [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -70813,148 +67687,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [216] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10004), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [201] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4851), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(768), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(217), + [anon_sym_interface] = ACTIONS(217), + [anon_sym_enum] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -70973,148 +67848,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(295), }, - [217] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10312), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [202] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3396), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(135), + [anon_sym_var] = ACTIONS(135), + [anon_sym_object] = ACTIONS(137), + [anon_sym_fun] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(143), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(155), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -71133,148 +68009,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(205), }, - [218] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9821), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [203] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3398), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(135), + [anon_sym_var] = ACTIONS(135), + [anon_sym_object] = ACTIONS(137), + [anon_sym_fun] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(143), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(155), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -71293,148 +68170,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(205), }, - [219] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10082), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [204] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3419), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(135), + [anon_sym_var] = ACTIONS(135), + [anon_sym_object] = ACTIONS(137), + [anon_sym_fun] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(143), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(155), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -71453,148 +68331,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(205), }, - [220] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10019), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [205] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3527), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8309), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(821), + [anon_sym_interface] = ACTIONS(821), + [anon_sym_enum] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(827), + [anon_sym_var] = ACTIONS(827), + [anon_sym_object] = ACTIONS(829), + [anon_sym_fun] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(835), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(839), + [anon_sym_for] = ACTIONS(841), + [anon_sym_while] = ACTIONS(843), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -71613,148 +68492,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(205), }, - [221] = { - [sym_type_alias] = STATE(5481), - [sym__declaration] = STATE(5481), - [sym_class_declaration] = STATE(5481), - [sym_function_declaration] = STATE(5481), - [sym_property_declaration] = STATE(5481), - [sym_getter] = STATE(5481), - [sym_setter] = STATE(5481), - [sym_object_declaration] = STATE(5481), - [sym__statement] = STATE(5481), - [sym_control_structure_body] = STATE(5423), - [sym__block] = STATE(5481), - [sym__loop_statement] = STATE(5481), - [sym_for_statement] = STATE(5481), - [sym_while_statement] = STATE(5481), - [sym_do_while_statement] = STATE(5481), - [sym_assignment] = STATE(5481), - [sym__expression] = STATE(2308), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(2221), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8638), - [sym_modifiers] = STATE(8578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(803), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [206] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3235), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8305), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(1151), - [anon_sym_class] = ACTIONS(1153), - [anon_sym_fun] = ACTIONS(1155), - [anon_sym_interface] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(1161), - [anon_sym_var] = ACTIONS(1161), - [anon_sym_object] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1165), - [anon_sym_set] = ACTIONS(1167), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -71773,148 +68653,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [222] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9987), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [207] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(1392), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8319), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(763), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(487), + [anon_sym_var] = ACTIONS(487), + [anon_sym_object] = ACTIONS(489), + [anon_sym_fun] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(493), + [anon_sym_set] = ACTIONS(495), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -71933,148 +68814,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [223] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9808), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [208] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3895), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(1392), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8319), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(763), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(487), + [anon_sym_var] = ACTIONS(487), + [anon_sym_object] = ACTIONS(489), + [anon_sym_fun] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_get] = ACTIONS(493), + [anon_sym_set] = ACTIONS(495), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -72093,148 +68975,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [224] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10069), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [209] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3906), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(1392), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8319), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(763), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(487), + [anon_sym_var] = ACTIONS(487), + [anon_sym_object] = ACTIONS(489), + [anon_sym_fun] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(493), + [anon_sym_set] = ACTIONS(495), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -72253,137 +69136,620 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [225] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(10035), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), + [210] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1151), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(913), + [anon_sym_interface] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), + [anon_sym_object] = ACTIONS(921), + [anon_sym_fun] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(927), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [211] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4837), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(768), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(217), + [anon_sym_interface] = ACTIONS(217), + [anon_sym_enum] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [212] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4884), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(768), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(217), + [anon_sym_interface] = ACTIONS(217), + [anon_sym_enum] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [213] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9485), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_object] = ACTIONS(313), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), [anon_sym_get] = ACTIONS(317), [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1409), [anon_sym_do] = ACTIONS(329), [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(335), [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -72392,9 +69758,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -72413,119 +69779,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [226] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9934), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [214] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9790), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -72592,100 +69958,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [227] = { - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat3] = STATE(239), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [ts_builtin_sym_end] = ACTIONS(1205), + [215] = { + [sym_type_alias] = STATE(5382), + [sym__declaration] = STATE(5382), + [sym_class_declaration] = STATE(5382), + [sym_function_declaration] = STATE(5382), + [sym_property_declaration] = STATE(5382), + [sym_getter] = STATE(5382), + [sym_setter] = STATE(5382), + [sym_object_declaration] = STATE(5382), + [sym__statement] = STATE(5382), + [sym_control_structure_body] = STATE(5275), + [sym__block] = STATE(5382), + [sym__loop_statement] = STATE(5382), + [sym_for_statement] = STATE(5382), + [sym_while_statement] = STATE(5382), + [sym_do_while_statement] = STATE(5382), + [sym_assignment] = STATE(5382), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8312), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(755), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(1151), + [anon_sym_class] = ACTIONS(1153), + [anon_sym_interface] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1159), + [anon_sym_var] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1161), + [anon_sym_fun] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1165), + [anon_sym_set] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [216] = { + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat3] = STATE(218), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1201), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -72752,100 +70278,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [228] = { - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat3] = STATE(239), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [ts_builtin_sym_end] = ACTIONS(1149), + [217] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9788), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -72912,129 +70438,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [229] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(10045), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [218] = { + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat3] = STATE(218), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1415), + [sym__alpha_identifier] = ACTIONS(1417), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_typealias] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(1429), + [anon_sym_interface] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_val] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1444), + [anon_sym_fun] = ACTIONS(1447), + [anon_sym_get] = ACTIONS(1450), + [anon_sym_set] = ACTIONS(1453), + [anon_sym_this] = ACTIONS(1456), + [anon_sym_super] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1462), + [sym_label] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_when] = ACTIONS(1483), + [anon_sym_try] = ACTIONS(1486), + [anon_sym_throw] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_suspend] = ACTIONS(1507), + [anon_sym_sealed] = ACTIONS(1510), + [anon_sym_annotation] = ACTIONS(1510), + [anon_sym_data] = ACTIONS(1513), + [anon_sym_inner] = ACTIONS(1513), + [anon_sym_value] = ACTIONS(1513), + [anon_sym_override] = ACTIONS(1516), + [anon_sym_lateinit] = ACTIONS(1516), + [anon_sym_public] = ACTIONS(1519), + [anon_sym_private] = ACTIONS(1519), + [anon_sym_internal] = ACTIONS(1519), + [anon_sym_protected] = ACTIONS(1519), + [anon_sym_tailrec] = ACTIONS(1507), + [anon_sym_operator] = ACTIONS(1507), + [anon_sym_infix] = ACTIONS(1507), + [anon_sym_inline] = ACTIONS(1507), + [anon_sym_external] = ACTIONS(1507), + [sym_property_modifier] = ACTIONS(1522), + [anon_sym_abstract] = ACTIONS(1525), + [anon_sym_final] = ACTIONS(1525), + [anon_sym_open] = ACTIONS(1525), + [anon_sym_vararg] = ACTIONS(1528), + [anon_sym_noinline] = ACTIONS(1528), + [anon_sym_crossinline] = ACTIONS(1528), + [anon_sym_expect] = ACTIONS(1531), + [anon_sym_actual] = ACTIONS(1531), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1534), + [anon_sym_continue_AT] = ACTIONS(1537), + [anon_sym_break_AT] = ACTIONS(1540), + [anon_sym_this_AT] = ACTIONS(1543), + [anon_sym_super_AT] = ACTIONS(1546), + [sym_real_literal] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1552), + [sym_hex_literal] = ACTIONS(1555), + [sym_bin_literal] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1558), + [anon_sym_false] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1561), + [sym__backtick_identifier] = ACTIONS(1564), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1567), + }, + [219] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9823), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(301), - [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), - [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_object] = ACTIONS(313), - [anon_sym_get] = ACTIONS(317), - [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(329), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -73053,119 +70739,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(113), }, - [230] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10067), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [220] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9752), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -73232,118 +70918,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [231] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(9805), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), + [221] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9856), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [222] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9476), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_object] = ACTIONS(313), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), [anon_sym_get] = ACTIONS(317), [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1409), [anon_sym_do] = ACTIONS(329), [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(335), [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -73352,9 +71198,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -73373,137 +71219,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [232] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(10028), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), + [223] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9482), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_object] = ACTIONS(313), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), [anon_sym_get] = ACTIONS(317), [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1576), [anon_sym_do] = ACTIONS(329), [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(335), [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -73512,9 +71358,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -73533,119 +71379,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [233] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10055), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [224] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9729), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -73712,118 +71558,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [234] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(9858), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), + [225] = { + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(1582), + [sym_label] = ACTIONS(175), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [226] = { + [sym_type_alias] = STATE(5382), + [sym__declaration] = STATE(5382), + [sym_class_declaration] = STATE(5382), + [sym_function_declaration] = STATE(5382), + [sym_property_declaration] = STATE(5382), + [sym_getter] = STATE(5382), + [sym_setter] = STATE(5382), + [sym_object_declaration] = STATE(5382), + [sym__statement] = STATE(5382), + [sym_control_structure_body] = STATE(5272), + [sym__block] = STATE(5382), + [sym__loop_statement] = STATE(5382), + [sym_for_statement] = STATE(5382), + [sym_while_statement] = STATE(5382), + [sym_do_while_statement] = STATE(5382), + [sym_assignment] = STATE(5382), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8312), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(755), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(1151), + [anon_sym_class] = ACTIONS(1153), + [anon_sym_interface] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1159), + [anon_sym_var] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1161), + [anon_sym_fun] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1165), + [anon_sym_set] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [227] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9606), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_object] = ACTIONS(313), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), [anon_sym_get] = ACTIONS(317), [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), [anon_sym_while] = ACTIONS(327), [anon_sym_do] = ACTIONS(329), [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(335), [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -73832,9 +71998,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -73853,119 +72019,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [235] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10127), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [228] = { + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat3] = STATE(218), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1598), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -74032,100 +72198,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [236] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10018), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [229] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9850), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -74192,260 +72358,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [237] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(10433), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(301), - [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), - [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_object] = ACTIONS(313), - [anon_sym_get] = ACTIONS(317), - [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_do] = ACTIONS(329), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [238] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10130), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [230] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9663), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -74512,278 +72518,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [239] = { - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat3] = STATE(239), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [ts_builtin_sym_end] = ACTIONS(1447), - [sym__alpha_identifier] = ACTIONS(1449), - [anon_sym_AT] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_typealias] = ACTIONS(1458), - [anon_sym_class] = ACTIONS(1461), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_interface] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_val] = ACTIONS(1476), - [anon_sym_var] = ACTIONS(1476), - [anon_sym_object] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1485), - [anon_sym_this] = ACTIONS(1488), - [anon_sym_super] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1494), - [sym_label] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_when] = ACTIONS(1515), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_throw] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_COLON_COLON] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1536), - [anon_sym_suspend] = ACTIONS(1539), - [anon_sym_sealed] = ACTIONS(1542), - [anon_sym_annotation] = ACTIONS(1542), - [anon_sym_data] = ACTIONS(1545), - [anon_sym_inner] = ACTIONS(1545), - [anon_sym_value] = ACTIONS(1545), - [anon_sym_override] = ACTIONS(1548), - [anon_sym_lateinit] = ACTIONS(1548), - [anon_sym_public] = ACTIONS(1551), - [anon_sym_private] = ACTIONS(1551), - [anon_sym_internal] = ACTIONS(1551), - [anon_sym_protected] = ACTIONS(1551), - [anon_sym_tailrec] = ACTIONS(1539), - [anon_sym_operator] = ACTIONS(1539), - [anon_sym_infix] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [anon_sym_external] = ACTIONS(1539), - [sym_property_modifier] = ACTIONS(1554), - [anon_sym_abstract] = ACTIONS(1557), - [anon_sym_final] = ACTIONS(1557), - [anon_sym_open] = ACTIONS(1557), - [anon_sym_vararg] = ACTIONS(1560), - [anon_sym_noinline] = ACTIONS(1560), - [anon_sym_crossinline] = ACTIONS(1560), - [anon_sym_expect] = ACTIONS(1563), - [anon_sym_actual] = ACTIONS(1563), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1566), - [anon_sym_continue_AT] = ACTIONS(1569), - [anon_sym_break_AT] = ACTIONS(1572), - [anon_sym_this_AT] = ACTIONS(1575), - [anon_sym_super_AT] = ACTIONS(1578), - [sym_real_literal] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1584), - [sym_hex_literal] = ACTIONS(1587), - [sym_bin_literal] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1590), - [anon_sym_false] = ACTIONS(1590), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym__backtick_identifier] = ACTIONS(1596), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1599), - }, - [240] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(9796), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), + [231] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(10147), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_object] = ACTIONS(313), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), [anon_sym_get] = ACTIONS(317), [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(327), + [anon_sym_while] = ACTIONS(1604), [anon_sym_do] = ACTIONS(329), [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(335), [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -74792,9 +72638,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -74813,119 +72659,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [241] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9883), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [232] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9583), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -74992,118 +72838,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [242] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(10047), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), + [233] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9483), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_object] = ACTIONS(313), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), [anon_sym_get] = ACTIONS(317), [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1409), [anon_sym_do] = ACTIONS(329), [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(335), [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -75112,9 +72958,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -75133,123 +72979,763 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [243] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9845), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), + [234] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9849), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(7), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(1608), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [235] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9622), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [236] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9700), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [237] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9468), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(1576), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [238] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9572), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), @@ -75312,100 +73798,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [244] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9930), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [239] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9465), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -75472,100 +73958,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [245] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9996), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [240] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9510), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -75632,100 +74118,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [246] = { - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat3] = STATE(239), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [ts_builtin_sym_end] = ACTIONS(1181), + [241] = { + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat3] = STATE(218), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1213), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -75792,118 +74278,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [247] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(9926), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), + [242] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9491), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [243] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9724), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [244] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9764), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_object] = ACTIONS(313), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), [anon_sym_get] = ACTIONS(317), [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1620), [anon_sym_do] = ACTIONS(329), [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(335), [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -75912,9 +74718,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -75933,119 +74739,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [248] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9763), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [245] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9924), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -76112,100 +74918,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [249] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9765), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [246] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(10046), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -76272,100 +75078,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [250] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9913), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [247] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9524), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1626), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -76432,100 +75238,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [251] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(9801), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [248] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9717), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -76592,260 +75398,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [252] = { - [sym__expression] = STATE(1245), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(1620), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_DASH_GT] = ACTIONS(1620), - [sym_label] = ACTIONS(265), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(265), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_suspend] = ACTIONS(1622), - [anon_sym_sealed] = ACTIONS(1622), - [anon_sym_annotation] = ACTIONS(1622), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_override] = ACTIONS(1622), - [anon_sym_lateinit] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_internal] = ACTIONS(1622), - [anon_sym_protected] = ACTIONS(1622), - [anon_sym_tailrec] = ACTIONS(1622), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_infix] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_external] = ACTIONS(1622), - [sym_property_modifier] = ACTIONS(1622), - [anon_sym_abstract] = ACTIONS(1622), - [anon_sym_final] = ACTIONS(1622), - [anon_sym_open] = ACTIONS(1622), - [anon_sym_vararg] = ACTIONS(1622), - [anon_sym_noinline] = ACTIONS(1622), - [anon_sym_crossinline] = ACTIONS(1622), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [249] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9473), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1630), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_safe_nav] = ACTIONS(1620), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(113), }, - [253] = { - [sym_type_alias] = STATE(8976), - [sym__declaration] = STATE(8976), - [sym_class_declaration] = STATE(8976), - [sym_function_declaration] = STATE(8976), - [sym_property_declaration] = STATE(8976), - [sym_getter] = STATE(8976), - [sym_setter] = STATE(8976), - [sym_object_declaration] = STATE(8976), - [sym_statements] = STATE(10227), - [sym__statement] = STATE(8976), - [sym__loop_statement] = STATE(8976), - [sym_for_statement] = STATE(8976), - [sym_while_statement] = STATE(8976), - [sym_do_while_statement] = STATE(8976), - [sym_assignment] = STATE(8976), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [250] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9499), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -76912,129 +75718,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [254] = { - [sym_type_alias] = STATE(5481), - [sym__declaration] = STATE(5481), - [sym_class_declaration] = STATE(5481), - [sym_function_declaration] = STATE(5481), - [sym_property_declaration] = STATE(5481), - [sym_getter] = STATE(5481), - [sym_setter] = STATE(5481), - [sym_object_declaration] = STATE(5481), - [sym__statement] = STATE(5481), - [sym_control_structure_body] = STATE(5440), - [sym__block] = STATE(5481), - [sym__loop_statement] = STATE(5481), - [sym_for_statement] = STATE(5481), - [sym_while_statement] = STATE(5481), - [sym_do_while_statement] = STATE(5481), - [sym_assignment] = STATE(5481), - [sym__expression] = STATE(2308), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(2221), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8638), - [sym_modifiers] = STATE(8578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(803), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(515), + [251] = { + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat3] = STATE(218), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1149), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_typealias] = ACTIONS(1151), - [anon_sym_class] = ACTIONS(1153), - [anon_sym_fun] = ACTIONS(1155), - [anon_sym_interface] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_val] = ACTIONS(1161), - [anon_sym_var] = ACTIONS(1161), - [anon_sym_object] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1165), - [anon_sym_set] = ACTIONS(1167), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(573), - [anon_sym_inner] = ACTIONS(573), - [anon_sym_value] = ACTIONS(573), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -77053,119 +75859,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(575), - [anon_sym_actual] = ACTIONS(575), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(113), }, - [255] = { - [sym_type_alias] = STATE(9412), - [sym__declaration] = STATE(9412), - [sym_class_declaration] = STATE(9412), - [sym_function_declaration] = STATE(9412), - [sym_property_declaration] = STATE(9412), - [sym_getter] = STATE(9412), - [sym_setter] = STATE(9412), - [sym_object_declaration] = STATE(9412), - [sym__statement] = STATE(9412), - [sym__loop_statement] = STATE(9412), - [sym_for_statement] = STATE(9412), - [sym_while_statement] = STATE(9412), - [sym_do_while_statement] = STATE(9412), - [sym_assignment] = STATE(9412), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym_source_file_repeat3] = STATE(239), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), - [ts_builtin_sym_end] = ACTIONS(1638), + [252] = { + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat3] = STATE(218), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1147), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -77232,129 +76038,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [256] = { - [sym_type_alias] = STATE(10278), - [sym__declaration] = STATE(10278), - [sym_class_declaration] = STATE(10278), - [sym_function_declaration] = STATE(10278), - [sym_property_declaration] = STATE(10278), - [sym_getter] = STATE(10278), - [sym_setter] = STATE(10278), - [sym_object_declaration] = STATE(10278), - [sym__statement] = STATE(10278), - [sym_control_structure_body] = STATE(10277), - [sym__block] = STATE(10278), - [sym__loop_statement] = STATE(10278), - [sym_for_statement] = STATE(10278), - [sym_while_statement] = STATE(10278), - [sym_do_while_statement] = STATE(10278), - [sym_assignment] = STATE(10278), - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_modifiers] = STATE(8557), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(115), + [253] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(10063), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(301), - [anon_sym_class] = ACTIONS(303), - [anon_sym_fun] = ACTIONS(305), - [anon_sym_interface] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(311), - [anon_sym_var] = ACTIONS(311), - [anon_sym_object] = ACTIONS(313), - [anon_sym_get] = ACTIONS(317), - [anon_sym_set] = ACTIONS(319), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_do] = ACTIONS(329), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(179), - [anon_sym_inner] = ACTIONS(179), - [anon_sym_value] = ACTIONS(179), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -77373,118 +76179,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(181), - [anon_sym_actual] = ACTIONS(181), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(113), }, - [257] = { - [sym_type_alias] = STATE(9726), - [sym__declaration] = STATE(9726), - [sym_class_declaration] = STATE(9726), - [sym_function_declaration] = STATE(9726), - [sym_property_declaration] = STATE(9726), - [sym_getter] = STATE(9726), - [sym_setter] = STATE(9726), - [sym_object_declaration] = STATE(9726), - [sym__statement] = STATE(9726), - [sym__loop_statement] = STATE(9726), - [sym_for_statement] = STATE(9726), - [sym_while_statement] = STATE(9726), - [sym_do_while_statement] = STATE(9726), - [sym_assignment] = STATE(9726), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [254] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9867), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -77551,99 +76358,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [258] = { - [sym_type_alias] = STATE(9726), - [sym__declaration] = STATE(9726), - [sym_class_declaration] = STATE(9726), - [sym_function_declaration] = STATE(9726), - [sym_property_declaration] = STATE(9726), - [sym_getter] = STATE(9726), - [sym_setter] = STATE(9726), - [sym_object_declaration] = STATE(9726), - [sym__statement] = STATE(9726), - [sym__loop_statement] = STATE(9726), - [sym_for_statement] = STATE(9726), - [sym_while_statement] = STATE(9726), - [sym_do_while_statement] = STATE(9726), - [sym_assignment] = STATE(9726), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [255] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9785), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1644), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -77710,98 +76518,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [259] = { - [sym_type_alias] = STATE(9726), - [sym__declaration] = STATE(9726), - [sym_class_declaration] = STATE(9726), - [sym_function_declaration] = STATE(9726), - [sym_property_declaration] = STATE(9726), - [sym_getter] = STATE(9726), - [sym_setter] = STATE(9726), - [sym_object_declaration] = STATE(9726), - [sym__statement] = STATE(9726), - [sym__loop_statement] = STATE(9726), - [sym_for_statement] = STATE(9726), - [sym_while_statement] = STATE(9726), - [sym_do_while_statement] = STATE(9726), - [sym_assignment] = STATE(9726), - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_modifiers] = STATE(8562), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3947), - [sym__multi_annotation] = STATE(3947), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5781), + [256] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(10031), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), - [anon_sym_fun] = ACTIONS(23), [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_object] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), [anon_sym_get] = ACTIONS(35), [anon_sym_set] = ACTIONS(37), [anon_sym_this] = ACTIONS(39), @@ -77868,1732 +76678,2207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [260] = { - [sym__expression] = STATE(1433), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(373), - [sym_label] = ACTIONS(399), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_suspend] = ACTIONS(1622), - [anon_sym_sealed] = ACTIONS(1622), - [anon_sym_annotation] = ACTIONS(1622), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_override] = ACTIONS(1622), - [anon_sym_lateinit] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_internal] = ACTIONS(1622), - [anon_sym_protected] = ACTIONS(1622), - [anon_sym_tailrec] = ACTIONS(1622), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_infix] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_external] = ACTIONS(1622), - [sym_property_modifier] = ACTIONS(1622), - [anon_sym_abstract] = ACTIONS(1622), - [anon_sym_final] = ACTIONS(1622), - [anon_sym_open] = ACTIONS(1622), - [anon_sym_vararg] = ACTIONS(1622), - [anon_sym_noinline] = ACTIONS(1622), - [anon_sym_crossinline] = ACTIONS(1622), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [261] = { - [sym__expression] = STATE(377), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(459), - [sym_label] = ACTIONS(485), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(485), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_suspend] = ACTIONS(1622), - [anon_sym_sealed] = ACTIONS(1622), - [anon_sym_annotation] = ACTIONS(1622), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_override] = ACTIONS(1622), - [anon_sym_lateinit] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_internal] = ACTIONS(1622), - [anon_sym_protected] = ACTIONS(1622), - [anon_sym_tailrec] = ACTIONS(1622), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_infix] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_external] = ACTIONS(1622), - [sym_property_modifier] = ACTIONS(1622), - [anon_sym_abstract] = ACTIONS(1622), - [anon_sym_final] = ACTIONS(1622), - [anon_sym_open] = ACTIONS(1622), - [anon_sym_vararg] = ACTIONS(1622), - [anon_sym_noinline] = ACTIONS(1622), - [anon_sym_crossinline] = ACTIONS(1622), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [262] = { - [sym__expression] = STATE(1969), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(713), - [sym_label] = ACTIONS(727), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(727), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_suspend] = ACTIONS(1622), - [anon_sym_sealed] = ACTIONS(1622), - [anon_sym_annotation] = ACTIONS(1622), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_override] = ACTIONS(1622), - [anon_sym_lateinit] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_internal] = ACTIONS(1622), - [anon_sym_protected] = ACTIONS(1622), - [anon_sym_tailrec] = ACTIONS(1622), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_infix] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_external] = ACTIONS(1622), - [sym_property_modifier] = ACTIONS(1622), - [anon_sym_abstract] = ACTIONS(1622), - [anon_sym_final] = ACTIONS(1622), - [anon_sym_open] = ACTIONS(1622), - [anon_sym_vararg] = ACTIONS(1622), - [anon_sym_noinline] = ACTIONS(1622), - [anon_sym_crossinline] = ACTIONS(1622), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [257] = { + [sym_type_alias] = STATE(9458), + [sym__declaration] = STATE(9458), + [sym_class_declaration] = STATE(9458), + [sym_function_declaration] = STATE(9458), + [sym_property_declaration] = STATE(9458), + [sym_getter] = STATE(9458), + [sym_setter] = STATE(9458), + [sym_object_declaration] = STATE(9458), + [sym__statement] = STATE(9458), + [sym__loop_statement] = STATE(9458), + [sym_for_statement] = STATE(9458), + [sym_while_statement] = STATE(9458), + [sym_do_while_statement] = STATE(9458), + [sym_assignment] = STATE(9458), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_safe_nav] = ACTIONS(1620), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [263] = { - [sym__expression] = STATE(2241), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(681), - [sym_label] = ACTIONS(695), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_suspend] = ACTIONS(1622), - [anon_sym_sealed] = ACTIONS(1622), - [anon_sym_annotation] = ACTIONS(1622), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_override] = ACTIONS(1622), - [anon_sym_lateinit] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_internal] = ACTIONS(1622), - [anon_sym_protected] = ACTIONS(1622), - [anon_sym_tailrec] = ACTIONS(1622), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_infix] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_external] = ACTIONS(1622), - [sym_property_modifier] = ACTIONS(1622), - [anon_sym_abstract] = ACTIONS(1622), - [anon_sym_final] = ACTIONS(1622), - [anon_sym_open] = ACTIONS(1622), - [anon_sym_vararg] = ACTIONS(1622), - [anon_sym_noinline] = ACTIONS(1622), - [anon_sym_crossinline] = ACTIONS(1622), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(113), }, - [264] = { - [sym__expression] = STATE(393), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), + [258] = { + [sym_type_alias] = STATE(9458), + [sym__declaration] = STATE(9458), + [sym_class_declaration] = STATE(9458), + [sym_function_declaration] = STATE(9458), + [sym_property_declaration] = STATE(9458), + [sym_getter] = STATE(9458), + [sym_setter] = STATE(9458), + [sym_object_declaration] = STATE(9458), + [sym__statement] = STATE(9458), + [sym__loop_statement] = STATE(9458), + [sym_for_statement] = STATE(9458), + [sym_while_statement] = STATE(9458), + [sym_do_while_statement] = STATE(9458), + [sym_assignment] = STATE(9458), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [259] = { + [sym_type_alias] = STATE(9458), + [sym__declaration] = STATE(9458), + [sym_class_declaration] = STATE(9458), + [sym_function_declaration] = STATE(9458), + [sym_property_declaration] = STATE(9458), + [sym_getter] = STATE(9458), + [sym_setter] = STATE(9458), + [sym_object_declaration] = STATE(9458), + [sym__statement] = STATE(9458), + [sym__loop_statement] = STATE(9458), + [sym_for_statement] = STATE(9458), + [sym_while_statement] = STATE(9458), + [sym_do_while_statement] = STATE(9458), + [sym_assignment] = STATE(9458), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [260] = { + [sym__expression] = STATE(1416), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(501), + [sym_label] = ACTIONS(527), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(527), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [261] = { + [sym__expression] = STATE(361), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [sym_label] = ACTIONS(441), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(441), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [262] = { + [sym__expression] = STATE(1848), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(771), [sym_label] = ACTIONS(785), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1666), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1594), [anon_sym_if] = ACTIONS(779), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), [anon_sym_throw] = ACTIONS(781), [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), [anon_sym_PLUS] = ACTIONS(785), [anon_sym_DASH] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), [anon_sym_PLUS_PLUS] = ACTIONS(787), [anon_sym_DASH_DASH] = ACTIONS(787), [anon_sym_BANG] = ACTIONS(785), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_suspend] = ACTIONS(1622), - [anon_sym_sealed] = ACTIONS(1622), - [anon_sym_annotation] = ACTIONS(1622), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [263] = { + [sym__expression] = STATE(2199), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(739), + [sym_label] = ACTIONS(753), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [264] = { + [sym__expression] = STATE(405), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(803), + [sym_label] = ACTIONS(817), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(817), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), - [anon_sym_override] = ACTIONS(1622), - [anon_sym_lateinit] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_internal] = ACTIONS(1622), - [anon_sym_protected] = ACTIONS(1622), - [anon_sym_tailrec] = ACTIONS(1622), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_infix] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_external] = ACTIONS(1622), - [sym_property_modifier] = ACTIONS(1622), - [anon_sym_abstract] = ACTIONS(1622), - [anon_sym_final] = ACTIONS(1622), - [anon_sym_open] = ACTIONS(1622), - [anon_sym_vararg] = ACTIONS(1622), - [anon_sym_noinline] = ACTIONS(1622), - [anon_sym_crossinline] = ACTIONS(1622), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [265] = { - [sym__expression] = STATE(2339), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [sym__expression] = STATE(2284), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(1620), - [anon_sym_as] = ACTIONS(1622), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(837), - [anon_sym_DASH_GT] = ACTIONS(1620), + [anon_sym_DASH_GT] = ACTIONS(1582), [sym_label] = ACTIONS(847), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1632), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1594), [anon_sym_if] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), [anon_sym_throw] = ACTIONS(1680), [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_as_QMARK] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), [anon_sym_PLUS_PLUS] = ACTIONS(849), [anon_sym_DASH_DASH] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(847), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_suspend] = ACTIONS(1622), - [anon_sym_sealed] = ACTIONS(1622), - [anon_sym_annotation] = ACTIONS(1622), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_override] = ACTIONS(1622), - [anon_sym_lateinit] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_internal] = ACTIONS(1622), - [anon_sym_protected] = ACTIONS(1622), - [anon_sym_tailrec] = ACTIONS(1622), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_infix] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_external] = ACTIONS(1622), - [sym_property_modifier] = ACTIONS(1622), - [anon_sym_abstract] = ACTIONS(1622), - [anon_sym_final] = ACTIONS(1622), - [anon_sym_open] = ACTIONS(1622), - [anon_sym_vararg] = ACTIONS(1622), - [anon_sym_noinline] = ACTIONS(1622), - [anon_sym_crossinline] = ACTIONS(1622), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_safe_nav] = ACTIONS(1620), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(1582), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, [266] = { - [sym__expression] = STATE(486), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), + [sym__expression] = STATE(466), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_as] = ACTIONS(1622), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), [anon_sym_STAR] = ACTIONS(929), [sym_label] = ACTIONS(939), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), [anon_sym_null] = ACTIONS(1666), [anon_sym_if] = ACTIONS(1686), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), [anon_sym_throw] = ACTIONS(1688), [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), [anon_sym_PLUS] = ACTIONS(939), [anon_sym_DASH] = ACTIONS(939), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_as_QMARK] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), [anon_sym_PLUS_PLUS] = ACTIONS(941), [anon_sym_DASH_DASH] = ACTIONS(941), [anon_sym_BANG] = ACTIONS(939), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_suspend] = ACTIONS(1622), - [anon_sym_sealed] = ACTIONS(1622), - [anon_sym_annotation] = ACTIONS(1622), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), - [anon_sym_override] = ACTIONS(1622), - [anon_sym_lateinit] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_internal] = ACTIONS(1622), - [anon_sym_protected] = ACTIONS(1622), - [anon_sym_tailrec] = ACTIONS(1622), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_infix] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_external] = ACTIONS(1622), - [sym_property_modifier] = ACTIONS(1622), - [anon_sym_abstract] = ACTIONS(1622), - [anon_sym_final] = ACTIONS(1622), - [anon_sym_open] = ACTIONS(1622), - [anon_sym_vararg] = ACTIONS(1622), - [anon_sym_noinline] = ACTIONS(1622), - [anon_sym_crossinline] = ACTIONS(1622), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [267] = { - [sym__expression] = STATE(2487), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [sym__expression] = STATE(2423), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_as] = ACTIONS(1622), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), [anon_sym_throw] = ACTIONS(1696), [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_suspend] = ACTIONS(1622), - [anon_sym_sealed] = ACTIONS(1622), - [anon_sym_annotation] = ACTIONS(1622), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), - [anon_sym_override] = ACTIONS(1622), - [anon_sym_lateinit] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_internal] = ACTIONS(1622), - [anon_sym_protected] = ACTIONS(1622), - [anon_sym_tailrec] = ACTIONS(1622), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_infix] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_external] = ACTIONS(1622), - [sym_property_modifier] = ACTIONS(1622), - [anon_sym_abstract] = ACTIONS(1622), - [anon_sym_final] = ACTIONS(1622), - [anon_sym_open] = ACTIONS(1622), - [anon_sym_vararg] = ACTIONS(1622), - [anon_sym_noinline] = ACTIONS(1622), - [anon_sym_crossinline] = ACTIONS(1622), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [268] = { - [sym__expression] = STATE(2555), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [sym__expression] = STATE(2480), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_as] = ACTIONS(1622), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1632), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1594), [anon_sym_if] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), [anon_sym_throw] = ACTIONS(1704), [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_suspend] = ACTIONS(1622), - [anon_sym_sealed] = ACTIONS(1622), - [anon_sym_annotation] = ACTIONS(1622), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_override] = ACTIONS(1622), - [anon_sym_lateinit] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_internal] = ACTIONS(1622), - [anon_sym_protected] = ACTIONS(1622), - [anon_sym_tailrec] = ACTIONS(1622), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_infix] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_external] = ACTIONS(1622), - [sym_property_modifier] = ACTIONS(1622), - [anon_sym_abstract] = ACTIONS(1622), - [anon_sym_final] = ACTIONS(1622), - [anon_sym_open] = ACTIONS(1622), - [anon_sym_vararg] = ACTIONS(1622), - [anon_sym_noinline] = ACTIONS(1622), - [anon_sym_crossinline] = ACTIONS(1622), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_safe_nav] = ACTIONS(1620), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(1582), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, [269] = { - [sym__expression] = STATE(2628), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [sym__expression] = STATE(2566), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_as] = ACTIONS(1622), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1710), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), [anon_sym_throw] = ACTIONS(1712), [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1143), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_suspend] = ACTIONS(1622), - [anon_sym_sealed] = ACTIONS(1622), - [anon_sym_annotation] = ACTIONS(1622), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), - [anon_sym_override] = ACTIONS(1622), - [anon_sym_lateinit] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_internal] = ACTIONS(1622), - [anon_sym_protected] = ACTIONS(1622), - [anon_sym_tailrec] = ACTIONS(1622), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_infix] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_external] = ACTIONS(1622), - [sym_property_modifier] = ACTIONS(1622), - [anon_sym_abstract] = ACTIONS(1622), - [anon_sym_final] = ACTIONS(1622), - [anon_sym_open] = ACTIONS(1622), - [anon_sym_vararg] = ACTIONS(1622), - [anon_sym_noinline] = ACTIONS(1622), - [anon_sym_crossinline] = ACTIONS(1622), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [270] = { - [sym__expression] = STATE(547), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), + [sym__expression] = STATE(527), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_as] = ACTIONS(1622), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), [anon_sym_null] = ACTIONS(1666), [anon_sym_if] = ACTIONS(1718), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), [anon_sym_throw] = ACTIONS(1720), [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_suspend] = ACTIONS(1622), - [anon_sym_sealed] = ACTIONS(1622), - [anon_sym_annotation] = ACTIONS(1622), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), - [anon_sym_override] = ACTIONS(1622), - [anon_sym_lateinit] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_internal] = ACTIONS(1622), - [anon_sym_protected] = ACTIONS(1622), - [anon_sym_tailrec] = ACTIONS(1622), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_infix] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_external] = ACTIONS(1622), - [sym_property_modifier] = ACTIONS(1622), - [anon_sym_abstract] = ACTIONS(1622), - [anon_sym_final] = ACTIONS(1622), - [anon_sym_open] = ACTIONS(1622), - [anon_sym_vararg] = ACTIONS(1622), - [anon_sym_noinline] = ACTIONS(1622), - [anon_sym_crossinline] = ACTIONS(1622), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [271] = { - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_COMMA] = ACTIONS(1734), @@ -79601,6 +78886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1740), [anon_sym_where] = ACTIONS(1732), [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1744), [anon_sym_get] = ACTIONS(1746), @@ -79693,47 +78979,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1734), }, [272] = { - [sym_getter] = STATE(3230), - [sym_setter] = STATE(3230), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_COMMA] = ACTIONS(1792), @@ -79741,10 +79026,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1740), [anon_sym_where] = ACTIONS(1790), [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_get] = ACTIONS(1796), - [anon_sym_set] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(1746), + [anon_sym_set] = ACTIONS(1748), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1750), @@ -79833,60 +79119,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1792), }, [273] = { - [sym_getter] = STATE(1190), - [sym_setter] = STATE(1190), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_COMMA] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1800), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1800), [anon_sym_get] = ACTIONS(1746), [anon_sym_set] = ACTIONS(1748), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -79894,21 +79180,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1758), [anon_sym_AMP_AMP] = ACTIONS(1760), [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -79925,7 +79211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1796), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -79954,79 +79240,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), + [sym__automatic_semicolon] = ACTIONS(1798), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [sym__string_start] = ACTIONS(1798), }, [274] = { - [sym_getter] = STATE(3269), - [sym_setter] = STATE(3269), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_COMMA] = ACTIONS(1804), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1800), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_get] = ACTIONS(1796), - [anon_sym_set] = ACTIONS(1798), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1746), + [anon_sym_set] = ACTIONS(1748), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -80034,21 +79320,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1758), [anon_sym_AMP_AMP] = ACTIONS(1760), [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -80065,7 +79351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -80094,66 +79380,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), + [sym__automatic_semicolon] = ACTIONS(1804), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [sym__string_start] = ACTIONS(1804), }, [275] = { - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_COMMA] = ACTIONS(1810), @@ -80161,10 +79446,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1740), [anon_sym_where] = ACTIONS(1808), [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_get] = ACTIONS(1796), - [anon_sym_set] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(1746), + [anon_sym_set] = ACTIONS(1748), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1750), @@ -80253,60 +79539,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1810), }, [276] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1816), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_get] = ACTIONS(1796), - [anon_sym_set] = ACTIONS(1798), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_get] = ACTIONS(1746), + [anon_sym_set] = ACTIONS(1748), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -80314,21 +79600,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1758), [anon_sym_AMP_AMP] = ACTIONS(1760), [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -80345,7 +79631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1814), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -80374,79 +79660,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1816), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1816), }, [277] = { - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1818), + [anon_sym_COMMA] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_get] = ACTIONS(1746), - [anon_sym_set] = ACTIONS(1748), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1824), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -80454,21 +79740,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1758), [anon_sym_AMP_AMP] = ACTIONS(1760), [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -80485,7 +79771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1796), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -80514,206 +79800,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), + [sym__automatic_semicolon] = ACTIONS(1798), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [sym__string_start] = ACTIONS(1798), }, [278] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_get] = ACTIONS(1796), - [anon_sym_set] = ACTIONS(1798), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), - }, - [279] = { - [sym_getter] = STATE(1186), - [sym_setter] = STATE(1186), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_COMMA] = ACTIONS(1792), @@ -80721,10 +79866,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1740), [anon_sym_where] = ACTIONS(1790), [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(1746), - [anon_sym_set] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1824), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1750), @@ -80812,61 +79958,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [280] = { - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [279] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1828), + [anon_sym_COMMA] = ACTIONS(1804), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_get] = ACTIONS(1796), - [anon_sym_set] = ACTIONS(1798), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1824), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -80874,21 +80020,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1758), [anon_sym_AMP_AMP] = ACTIONS(1760), [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -80905,7 +80051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -80934,79 +80080,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), + [sym__automatic_semicolon] = ACTIONS(1804), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [sym__string_start] = ACTIONS(1804), }, - [281] = { - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [280] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1828), + [anon_sym_COMMA] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_get] = ACTIONS(1746), - [anon_sym_set] = ACTIONS(1748), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1824), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -81014,21 +80160,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1758), [anon_sym_AMP_AMP] = ACTIONS(1760), [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -81045,7 +80191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1732), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -81074,66 +80220,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [sym__string_start] = ACTIONS(1734), }, - [282] = { - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [281] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_COMMA] = ACTIONS(1810), @@ -81141,10 +80286,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1740), [anon_sym_where] = ACTIONS(1808), [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_get] = ACTIONS(1746), - [anon_sym_set] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1824), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1750), @@ -81232,198 +80378,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, + [282] = { + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1824), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1772), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), + }, [283] = { - [sym__expression] = STATE(3415), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [sym__expression] = STATE(3299), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_RBRACK] = ACTIONS(1620), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_DASH_GT] = ACTIONS(1620), - [sym_label] = ACTIONS(175), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(239), + [anon_sym_DASH_GT] = ACTIONS(1582), + [sym_label] = ACTIONS(265), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(161), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_BANG_BANG] = ACTIONS(1620), + [anon_sym_if] = ACTIONS(251), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_BANG_BANG] = ACTIONS(1582), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_safe_nav] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(1582), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, [284] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1850), [anon_sym_get] = ACTIONS(1852), [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -81431,21 +80717,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -81462,7 +80748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1796), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -81491,77 +80777,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1798), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1798), }, [285] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1816), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1878), [anon_sym_get] = ACTIONS(1852), [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -81569,21 +80855,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -81600,7 +80886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -81629,77 +80915,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), + [sym__automatic_semicolon] = ACTIONS(1816), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [sym__string_start] = ACTIONS(1816), }, [286] = { - [sym_getter] = STATE(1186), - [sym_setter] = STATE(1186), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_get] = ACTIONS(1882), - [anon_sym_set] = ACTIONS(1884), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), + [anon_sym_get] = ACTIONS(1852), + [anon_sym_set] = ACTIONS(1854), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -81707,21 +80993,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -81738,7 +81024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1808), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -81767,77 +81053,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [sym__string_start] = ACTIONS(1810), }, [287] = { - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1816), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_get] = ACTIONS(1882), - [anon_sym_set] = ACTIONS(1884), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_get] = ACTIONS(1852), + [anon_sym_set] = ACTIONS(1854), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -81845,21 +81131,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -81876,7 +81162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1732), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -81905,77 +81191,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [sym__string_start] = ACTIONS(1734), }, [288] = { - [sym_getter] = STATE(1190), - [sym_setter] = STATE(1190), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1800), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_get] = ACTIONS(1882), - [anon_sym_set] = ACTIONS(1884), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_get] = ACTIONS(1852), + [anon_sym_set] = ACTIONS(1854), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -81983,21 +81269,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -82014,7 +81300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -82043,75 +81329,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), + [sym__automatic_semicolon] = ACTIONS(1804), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [sym__string_start] = ACTIONS(1804), }, [289] = { - [sym_getter] = STATE(3230), - [sym_setter] = STATE(3230), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_get] = ACTIONS(1852), - [anon_sym_set] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1888), + [anon_sym_set] = ACTIONS(1890), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1856), @@ -82200,58 +81486,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1792), }, [290] = { - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_get] = ACTIONS(1882), - [anon_sym_set] = ACTIONS(1884), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), + [anon_sym_get] = ACTIONS(1852), + [anon_sym_set] = ACTIONS(1854), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -82259,21 +81545,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -82290,7 +81576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -82319,77 +81605,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1792), }, [291] = { - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1826), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_get] = ACTIONS(1852), - [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), + [anon_sym_get] = ACTIONS(1888), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -82397,21 +81683,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -82428,7 +81714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -82457,77 +81743,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), + [sym__automatic_semicolon] = ACTIONS(1804), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [sym__string_start] = ACTIONS(1804), }, [292] = { - [sym_getter] = STATE(3269), - [sym_setter] = STATE(3269), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1800), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_get] = ACTIONS(1852), - [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1888), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -82535,21 +81821,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -82566,7 +81852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1796), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -82595,77 +81881,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), + [sym__automatic_semicolon] = ACTIONS(1798), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [sym__string_start] = ACTIONS(1798), }, [293] = { - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1826), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_get] = ACTIONS(1882), - [anon_sym_set] = ACTIONS(1884), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), + [anon_sym_get] = ACTIONS(1888), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -82673,21 +81959,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -82704,7 +81990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1808), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -82733,77 +82019,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), + [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [sym__string_start] = ACTIONS(1810), }, [294] = { - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_get] = ACTIONS(1852), - [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), + [anon_sym_get] = ACTIONS(1888), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -82811,21 +82097,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -82842,7 +82128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1814), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -82871,77 +82157,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1816), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [sym__string_start] = ACTIONS(1816), }, [295] = { - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_get] = ACTIONS(1882), - [anon_sym_set] = ACTIONS(1884), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), + [anon_sym_get] = ACTIONS(1888), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -82949,21 +82235,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -82980,7 +82266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1732), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -83009,136 +82295,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [sym__string_start] = ACTIONS(1734), }, [296] = { - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), [anon_sym_get] = ACTIONS(1910), [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [sym_label] = ACTIONS(569), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(585), + [sym_label] = ACTIONS(611), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_BANG_BANG] = ACTIONS(1620), + [anon_sym_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_BANG_BANG] = ACTIONS(1582), [anon_sym_data] = ACTIONS(1910), [anon_sym_inner] = ACTIONS(1910), [anon_sym_value] = ACTIONS(1910), @@ -83146,135 +82432,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [297] = { - [sym__expression] = STATE(3885), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), + [sym__expression] = STATE(3809), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(617), - [sym_label] = ACTIONS(635), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(363), + [sym_label] = ACTIONS(381), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), - [anon_sym_else] = ACTIONS(1622), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(1584), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(635), - [anon_sym_BANG_BANG] = ACTIONS(1620), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_BANG_BANG] = ACTIONS(1582), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -83294,368 +82580,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(107), [anon_sym_SQUOTE] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, [298] = { - [sym__expression] = STATE(4104), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [sym__expression] = STATE(3922), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(745), - [sym_label] = ACTIONS(753), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(681), + [sym_label] = ACTIONS(689), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(335), [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_BANG_BANG] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_BANG_BANG] = ACTIONS(1582), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_safe_nav] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(1582), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, [299] = { - [sym__expression] = STATE(4153), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(655), - [sym_label] = ACTIONS(663), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [300] = { - [sym_getter] = STATE(1186), - [sym_setter] = STATE(1186), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_get] = ACTIONS(1934), - [anon_sym_set] = ACTIONS(1936), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1932), + [anon_sym_set] = ACTIONS(1934), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1796), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -83684,112 +82836,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1798), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [sym__string_start] = ACTIONS(1798), }, - [301] = { - [sym_getter] = STATE(3269), - [sym_setter] = STATE(3269), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [300] = { + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_COMMA] = ACTIONS(1816), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1800), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_get] = ACTIONS(1964), - [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1960), + [anon_sym_get] = ACTIONS(1932), + [anon_sym_set] = ACTIONS(1934), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1814), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -83818,112 +82970,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), + [sym__automatic_semicolon] = ACTIONS(1816), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [sym__string_start] = ACTIONS(1816), }, - [302] = { - [sym_getter] = STATE(3230), - [sym_setter] = STATE(3230), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [301] = { + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1816), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1962), [anon_sym_get] = ACTIONS(1964), [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1814), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -83952,112 +83104,380 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1816), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [sym__string_start] = ACTIONS(1816), + }, + [302] = { + [sym__expression] = STATE(4080), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(655), + [sym_label] = ACTIONS(663), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(663), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [303] = { - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym__expression] = STATE(1223), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(707), + [sym_label] = ACTIONS(721), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [304] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1972), [anon_sym_get] = ACTIONS(1964), [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1796), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -84086,112 +83506,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1798), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [sym__string_start] = ACTIONS(1798), }, - [304] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [305] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_get] = ACTIONS(1964), - [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(1932), + [anon_sym_set] = ACTIONS(1934), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -84220,112 +83640,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1792), }, - [305] = { - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [306] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1818), + [anon_sym_COMMA] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_get] = ACTIONS(1934), - [anon_sym_set] = ACTIONS(1936), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_get] = ACTIONS(1964), + [anon_sym_set] = ACTIONS(1966), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -84354,112 +83774,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [sym__string_start] = ACTIONS(1792), }, - [306] = { - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [307] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1828), + [anon_sym_COMMA] = ACTIONS(1804), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_get] = ACTIONS(1934), - [anon_sym_set] = ACTIONS(1936), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1964), + [anon_sym_set] = ACTIONS(1966), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -84488,112 +83908,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), + [sym__automatic_semicolon] = ACTIONS(1804), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [sym__string_start] = ACTIONS(1804), }, - [307] = { - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [308] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1804), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1934), - [anon_sym_set] = ACTIONS(1936), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(1932), + [anon_sym_set] = ACTIONS(1934), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -84622,112 +84042,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1804), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1804), }, - [308] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [309] = { + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1818), + [anon_sym_COMMA] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1982), [anon_sym_get] = ACTIONS(1964), [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1808), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -84756,112 +84176,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), + [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [sym__string_start] = ACTIONS(1810), }, - [309] = { - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [310] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1828), + [anon_sym_COMMA] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1964), - [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_get] = ACTIONS(1932), + [anon_sym_set] = ACTIONS(1934), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1732), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -84890,246 +84310,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), - }, - [310] = { - [sym__expression] = STATE(1229), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(803), - [sym_label] = ACTIONS(817), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(1734), }, [311] = { - [sym_getter] = STATE(1190), - [sym_setter] = STATE(1190), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_COMMA] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1800), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(1934), - [anon_sym_set] = ACTIONS(1936), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1964), + [anon_sym_set] = ACTIONS(1966), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1732), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -85158,85 +84444,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [sym__string_start] = ACTIONS(1734), }, [312] = { - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_COMMA] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1928), [anon_sym_where] = ACTIONS(1808), [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1934), - [anon_sym_set] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1932), + [anon_sym_set] = ACTIONS(1934), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), [anon_sym_null] = ACTIONS(1808), [anon_sym_if] = ACTIONS(1808), [anon_sym_else] = ACTIONS(1808), @@ -85247,19 +84533,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(1808), [anon_sym_break] = ACTIONS(1808), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), @@ -85311,190 +84597,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1810), }, [313] = { - [sym__expression] = STATE(4224), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [sym__expression] = STATE(4136), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_RBRACK] = ACTIONS(1620), - [anon_sym_as] = ACTIONS(1622), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), - [anon_sym_DASH_GT] = ACTIONS(1620), + [anon_sym_DASH_GT] = ACTIONS(1582), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_as_QMARK] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), [anon_sym_PLUS_PLUS] = ACTIONS(879), [anon_sym_DASH_DASH] = ACTIONS(879), [anon_sym_BANG] = ACTIONS(877), - [anon_sym_BANG_BANG] = ACTIONS(1620), + [anon_sym_BANG_BANG] = ACTIONS(1582), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_safe_nav] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(1582), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, [314] = { - [sym_getter] = STATE(1190), - [sym_setter] = STATE(1190), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1800), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2000), [anon_sym_get] = ACTIONS(2002), [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -85502,15 +84788,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -85528,7 +84814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1814), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -85557,76 +84843,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), + [sym__automatic_semicolon] = ACTIONS(1816), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [sym__string_start] = ACTIONS(1816), }, [315] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(5373), + [sym_setter] = STATE(5373), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2030), [anon_sym_get] = ACTIONS(2032), [anon_sym_set] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -85634,15 +84920,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -85660,7 +84946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1814), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -85689,76 +84975,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1816), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1816), }, [316] = { - [sym_getter] = STATE(5476), - [sym_setter] = STATE(5476), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2036), [anon_sym_get] = ACTIONS(2038), [anon_sym_set] = ACTIONS(2040), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -85766,15 +85052,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -85792,7 +85078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1796), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -85821,76 +85107,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1798), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [sym__string_start] = ACTIONS(1798), }, [317] = { - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_get] = ACTIONS(2002), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), + [anon_sym_get] = ACTIONS(2038), + [anon_sym_set] = ACTIONS(2040), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -85898,15 +85184,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -85924,7 +85210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -85953,76 +85239,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1792), }, [318] = { - [sym_getter] = STATE(5490), - [sym_setter] = STATE(5490), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1826), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2044), [anon_sym_get] = ACTIONS(2038), [anon_sym_set] = ACTIONS(2040), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -86030,15 +85316,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -86056,7 +85342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1732), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -86085,76 +85371,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [sym__string_start] = ACTIONS(1734), }, [319] = { - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(5407), + [sym_setter] = STATE(5407), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1826), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_get] = ACTIONS(2002), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), + [anon_sym_get] = ACTIONS(2032), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -86162,15 +85448,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -86188,7 +85474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1732), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -86217,76 +85503,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [sym__string_start] = ACTIONS(1734), }, [320] = { - [sym_getter] = STATE(5548), - [sym_setter] = STATE(5548), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(5416), + [sym_setter] = STATE(5416), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_get] = ACTIONS(2038), - [anon_sym_set] = ACTIONS(2040), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), + [anon_sym_get] = ACTIONS(2032), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -86294,15 +85580,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -86320,7 +85606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1796), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -86349,74 +85635,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1798), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1798), }, [321] = { - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2034), + [anon_sym_get] = ACTIONS(2038), + [anon_sym_set] = ACTIONS(2040), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(2006), @@ -86500,57 +85786,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1810), }, [322] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(5394), + [sym_setter] = STATE(5394), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1816), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2052), [anon_sym_get] = ACTIONS(2032), [anon_sym_set] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -86558,15 +85844,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -86584,7 +85870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -86613,76 +85899,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), + [sym__automatic_semicolon] = ACTIONS(1804), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [sym__string_start] = ACTIONS(1804), }, [323] = { - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2054), [anon_sym_get] = ACTIONS(2002), [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -86690,15 +85976,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -86716,7 +86002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1796), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -86745,74 +86031,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1798), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [sym__string_start] = ACTIONS(1798), }, [324] = { - [sym_getter] = STATE(3230), - [sym_setter] = STATE(3230), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2056), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2034), + [anon_sym_get] = ACTIONS(2002), + [anon_sym_set] = ACTIONS(2004), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(2006), @@ -86896,57 +86182,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1792), }, [325] = { - [sym_getter] = STATE(5491), - [sym_setter] = STATE(5491), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_get] = ACTIONS(2038), - [anon_sym_set] = ACTIONS(2040), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), + [anon_sym_get] = ACTIONS(2002), + [anon_sym_set] = ACTIONS(2004), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -86954,15 +86240,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -86980,7 +86266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -87009,76 +86295,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1804), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [sym__string_start] = ACTIONS(1804), }, [326] = { - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(5393), + [sym_setter] = STATE(5393), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1826), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2060), [anon_sym_get] = ACTIONS(2032), [anon_sym_set] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -87086,15 +86372,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -87112,7 +86398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1808), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -87141,76 +86427,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), + [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [sym__string_start] = ACTIONS(1810), }, [327] = { - [sym_getter] = STATE(3269), - [sym_setter] = STATE(3269), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1800), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(2002), + [anon_sym_set] = ACTIONS(2004), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -87218,15 +86504,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -87244,7 +86530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1808), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -87273,76 +86559,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), + [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [sym__string_start] = ACTIONS(1810), }, [328] = { - [sym_getter] = STATE(5514), - [sym_setter] = STATE(5514), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1800), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2064), [anon_sym_get] = ACTIONS(2038), [anon_sym_set] = ACTIONS(2040), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -87350,15 +86636,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -87376,7 +86662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -87405,76 +86691,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), + [sym__automatic_semicolon] = ACTIONS(1804), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [sym__string_start] = ACTIONS(1804), }, [329] = { - [sym_getter] = STATE(1186), - [sym_setter] = STATE(1186), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2066), [anon_sym_get] = ACTIONS(2002), [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -87482,15 +86768,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -87508,7 +86794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1732), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -87537,76 +86823,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [sym__string_start] = ACTIONS(1734), }, [330] = { - [sym_getter] = STATE(5561), - [sym_setter] = STATE(5561), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(5347), + [sym_setter] = STATE(5347), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1816), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_get] = ACTIONS(2038), - [anon_sym_set] = ACTIONS(2040), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(2032), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -87614,15 +86900,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -87640,7 +86926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -87669,76 +86955,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [sym__string_start] = ACTIONS(1792), }, [331] = { - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1816), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_get] = ACTIONS(2002), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(2038), + [anon_sym_set] = ACTIONS(2040), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -87746,15 +87032,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -87772,7 +87058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -87801,89 +87087,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1786), [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), + [sym__automatic_semicolon] = ACTIONS(1816), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [sym__string_start] = ACTIONS(1816), }, [332] = { - [sym__expression] = STATE(526), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), [sym__alpha_identifier] = ACTIONS(2072), [anon_sym_AT] = ACTIONS(2075), [anon_sym_LBRACK] = ACTIONS(2079), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2084), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2094), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_fun] = ACTIONS(2094), [anon_sym_get] = ACTIONS(2098), [anon_sym_set] = ACTIONS(2098), [anon_sym_this] = ACTIONS(2102), @@ -87951,70 +87237,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(2176), }, [333] = { - [sym__expression] = STATE(4103), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [sym__expression] = STATE(1204), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(2179), [anon_sym_AT] = ACTIONS(2075), [anon_sym_LBRACK] = ACTIONS(2182), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2185), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2195), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_fun] = ACTIONS(2195), [anon_sym_get] = ACTIONS(2199), [anon_sym_set] = ACTIONS(2199), [anon_sym_this] = ACTIONS(2203), @@ -88082,99 +87368,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(2275), }, [334] = { - [sym__expression] = STATE(2257), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(2278), + [sym__expression] = STATE(1847), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(2179), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2182), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2284), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2294), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2308), - [sym_label] = ACTIONS(2311), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_fun] = ACTIONS(2278), + [anon_sym_get] = ACTIONS(2199), + [anon_sym_set] = ACTIONS(2199), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2282), + [sym_label] = ACTIONS(2285), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2326), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), + [anon_sym_null] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2298), - [anon_sym_inner] = ACTIONS(2298), - [anon_sym_value] = ACTIONS(2298), + [anon_sym_data] = ACTIONS(2199), + [anon_sym_inner] = ACTIONS(2199), + [anon_sym_value] = ACTIONS(2199), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -88193,119 +87479,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2298), - [anon_sym_actual] = ACTIONS(2298), + [anon_sym_expect] = ACTIONS(2199), + [anon_sym_actual] = ACTIONS(2199), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), + [anon_sym_return_AT] = ACTIONS(2242), + [anon_sym_continue_AT] = ACTIONS(2245), + [anon_sym_break_AT] = ACTIONS(2248), + [anon_sym_this_AT] = ACTIONS(2251), + [anon_sym_super_AT] = ACTIONS(2254), + [sym_real_literal] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2260), + [sym_hex_literal] = ACTIONS(2263), + [sym_bin_literal] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2266), + [anon_sym_false] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2269), + [sym__backtick_identifier] = ACTIONS(2272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2275), }, [335] = { - [sym__expression] = STATE(1422), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(2278), + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2303), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2374), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2294), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2378), - [sym_label] = ACTIONS(2381), + [anon_sym_object] = ACTIONS(2312), + [anon_sym_fun] = ACTIONS(2316), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2330), + [sym_label] = ACTIONS(2333), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2393), - [anon_sym_DASH_DASH] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2339), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2360), [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2298), - [anon_sym_inner] = ACTIONS(2298), - [anon_sym_value] = ACTIONS(2298), + [anon_sym_data] = ACTIONS(2320), + [anon_sym_inner] = ACTIONS(2320), + [anon_sym_value] = ACTIONS(2320), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -88324,119 +87610,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2298), - [anon_sym_actual] = ACTIONS(2298), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), + [anon_sym_expect] = ACTIONS(2320), + [anon_sym_actual] = ACTIONS(2320), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), }, [336] = { - [sym__expression] = STATE(2311), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2396), + [sym__expression] = STATE(397), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2402), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2402), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2412), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2426), - [sym_label] = ACTIONS(2429), + [anon_sym_object] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2415), + [anon_sym_get] = ACTIONS(2419), + [anon_sym_set] = ACTIONS(2419), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2429), + [sym_label] = ACTIONS(2432), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2435), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_PLUS_PLUS] = ACTIONS(2456), - [anon_sym_DASH_DASH] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_null] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2459), [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2416), - [anon_sym_inner] = ACTIONS(2416), - [anon_sym_value] = ACTIONS(2416), + [anon_sym_data] = ACTIONS(2419), + [anon_sym_inner] = ACTIONS(2419), + [anon_sym_value] = ACTIONS(2419), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -88455,10 +87741,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2416), - [anon_sym_actual] = ACTIONS(2416), + [anon_sym_expect] = ACTIONS(2419), + [anon_sym_actual] = ACTIONS(2419), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), + [anon_sym_return_AT] = ACTIONS(2143), [anon_sym_continue_AT] = ACTIONS(2462), [anon_sym_break_AT] = ACTIONS(2465), [anon_sym_this_AT] = ACTIONS(2468), @@ -88475,88 +87761,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(2492), }, [337] = { - [sym__expression] = STATE(965), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2396), + [sym__expression] = STATE(530), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2402), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2495), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2412), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), + [anon_sym_object] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2495), + [anon_sym_get] = ACTIONS(2419), + [anon_sym_set] = ACTIONS(2419), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), [anon_sym_STAR] = ACTIONS(2499), [sym_label] = ACTIONS(2502), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), + [anon_sym_null] = ACTIONS(2435), [anon_sym_if] = ACTIONS(2505), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), [anon_sym_throw] = ACTIONS(2508), [anon_sym_return] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), [anon_sym_PLUS] = ACTIONS(2502), [anon_sym_DASH] = ACTIONS(2502), [anon_sym_PLUS_PLUS] = ACTIONS(2514), @@ -88565,9 +87851,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2416), - [anon_sym_inner] = ACTIONS(2416), - [anon_sym_value] = ACTIONS(2416), + [anon_sym_data] = ACTIONS(2419), + [anon_sym_inner] = ACTIONS(2419), + [anon_sym_value] = ACTIONS(2419), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -88586,10 +87872,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2416), - [anon_sym_actual] = ACTIONS(2416), + [anon_sym_expect] = ACTIONS(2419), + [anon_sym_actual] = ACTIONS(2419), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), + [anon_sym_return_AT] = ACTIONS(2143), [anon_sym_continue_AT] = ACTIONS(2462), [anon_sym_break_AT] = ACTIONS(2465), [anon_sym_this_AT] = ACTIONS(2468), @@ -88606,88 +87892,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(2492), }, [338] = { - [sym__expression] = STATE(4377), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [sym__expression] = STATE(3921), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(2179), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2303), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2517), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2195), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(2203), - [anon_sym_super] = ACTIONS(2206), + [anon_sym_object] = ACTIONS(2312), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), [anon_sym_STAR] = ACTIONS(2521), [sym_label] = ACTIONS(2524), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2215), + [anon_sym_null] = ACTIONS(2336), [anon_sym_if] = ACTIONS(2527), - [anon_sym_when] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2224), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), [anon_sym_throw] = ACTIONS(2530), [anon_sym_return] = ACTIONS(2533), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), [anon_sym_PLUS] = ACTIONS(2524), [anon_sym_DASH] = ACTIONS(2524), [anon_sym_PLUS_PLUS] = ACTIONS(2536), @@ -88696,9 +87982,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2199), - [anon_sym_inner] = ACTIONS(2199), - [anon_sym_value] = ACTIONS(2199), + [anon_sym_data] = ACTIONS(2320), + [anon_sym_inner] = ACTIONS(2320), + [anon_sym_value] = ACTIONS(2320), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -88717,119 +88003,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2199), - [anon_sym_actual] = ACTIONS(2199), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2245), - [anon_sym_break_AT] = ACTIONS(2248), - [anon_sym_this_AT] = ACTIONS(2251), - [anon_sym_super_AT] = ACTIONS(2254), - [sym_real_literal] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2260), - [sym_hex_literal] = ACTIONS(2263), - [sym_bin_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2269), - [sym__backtick_identifier] = ACTIONS(2272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2275), + [anon_sym_expect] = ACTIONS(2320), + [anon_sym_actual] = ACTIONS(2320), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), }, [339] = { - [sym__expression] = STATE(4226), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(2179), + [sym__expression] = STATE(4053), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2542), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2539), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2195), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(2203), - [anon_sym_super] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2543), - [sym_label] = ACTIONS(2546), + [anon_sym_object] = ACTIONS(2551), + [anon_sym_fun] = ACTIONS(2555), + [anon_sym_get] = ACTIONS(2559), + [anon_sym_set] = ACTIONS(2559), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2569), + [sym_label] = ACTIONS(2572), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2549), - [anon_sym_when] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2552), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_COLON_COLON] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_PLUS_PLUS] = ACTIONS(2558), - [anon_sym_DASH_DASH] = ACTIONS(2558), - [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_null] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2578), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS_PLUS] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2599), + [anon_sym_BANG] = ACTIONS(2599), [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2199), - [anon_sym_inner] = ACTIONS(2199), - [anon_sym_value] = ACTIONS(2199), + [anon_sym_data] = ACTIONS(2559), + [anon_sym_inner] = ACTIONS(2559), + [anon_sym_value] = ACTIONS(2559), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -88848,119 +88134,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2199), - [anon_sym_actual] = ACTIONS(2199), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2245), - [anon_sym_break_AT] = ACTIONS(2248), - [anon_sym_this_AT] = ACTIONS(2251), - [anon_sym_super_AT] = ACTIONS(2254), - [sym_real_literal] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2260), - [sym_hex_literal] = ACTIONS(2263), - [sym_bin_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2269), - [sym__backtick_identifier] = ACTIONS(2272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2275), + [anon_sym_expect] = ACTIONS(2559), + [anon_sym_actual] = ACTIONS(2559), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), }, [340] = { - [sym__expression] = STATE(1966), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(2561), + [sym__expression] = STATE(2285), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2641), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2567), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2577), - [anon_sym_get] = ACTIONS(2581), - [anon_sym_set] = ACTIONS(2581), - [anon_sym_this] = ACTIONS(2585), - [anon_sym_super] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2591), - [sym_label] = ACTIONS(2594), + [anon_sym_object] = ACTIONS(2650), + [anon_sym_fun] = ACTIONS(2654), + [anon_sym_get] = ACTIONS(2658), + [anon_sym_set] = ACTIONS(2658), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2668), + [sym_label] = ACTIONS(2671), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2600), - [anon_sym_when] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2612), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2618), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2686), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2698), [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2581), - [anon_sym_inner] = ACTIONS(2581), - [anon_sym_value] = ACTIONS(2581), + [anon_sym_data] = ACTIONS(2658), + [anon_sym_inner] = ACTIONS(2658), + [anon_sym_value] = ACTIONS(2658), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -88979,119 +88265,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2581), - [anon_sym_actual] = ACTIONS(2581), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2624), - [anon_sym_continue_AT] = ACTIONS(2627), - [anon_sym_break_AT] = ACTIONS(2630), - [anon_sym_this_AT] = ACTIONS(2633), - [anon_sym_super_AT] = ACTIONS(2636), - [sym_real_literal] = ACTIONS(2639), - [sym_integer_literal] = ACTIONS(2642), - [sym_hex_literal] = ACTIONS(2645), - [sym_bin_literal] = ACTIONS(2645), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2651), - [sym__backtick_identifier] = ACTIONS(2654), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2657), + [anon_sym_expect] = ACTIONS(2658), + [anon_sym_actual] = ACTIONS(2658), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), }, [341] = { - [sym__expression] = STATE(2340), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(2561), + [sym__expression] = STATE(3768), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2542), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2660), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2577), - [anon_sym_get] = ACTIONS(2581), - [anon_sym_set] = ACTIONS(2581), - [anon_sym_this] = ACTIONS(2585), - [anon_sym_super] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2664), - [sym_label] = ACTIONS(2667), + [anon_sym_object] = ACTIONS(2551), + [anon_sym_fun] = ACTIONS(2734), + [anon_sym_get] = ACTIONS(2559), + [anon_sym_set] = ACTIONS(2559), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2738), + [sym_label] = ACTIONS(2741), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2670), - [anon_sym_when] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2676), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2618), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_null] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2750), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2753), + [anon_sym_DASH_DASH] = ACTIONS(2753), + [anon_sym_BANG] = ACTIONS(2753), [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2581), - [anon_sym_inner] = ACTIONS(2581), - [anon_sym_value] = ACTIONS(2581), + [anon_sym_data] = ACTIONS(2559), + [anon_sym_inner] = ACTIONS(2559), + [anon_sym_value] = ACTIONS(2559), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -89110,119 +88396,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2581), - [anon_sym_actual] = ACTIONS(2581), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2624), - [anon_sym_continue_AT] = ACTIONS(2627), - [anon_sym_break_AT] = ACTIONS(2630), - [anon_sym_this_AT] = ACTIONS(2633), - [anon_sym_super_AT] = ACTIONS(2636), - [sym_real_literal] = ACTIONS(2639), - [sym_integer_literal] = ACTIONS(2642), - [sym_hex_literal] = ACTIONS(2645), - [sym_bin_literal] = ACTIONS(2645), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2651), - [sym__backtick_identifier] = ACTIONS(2654), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2657), + [anon_sym_expect] = ACTIONS(2559), + [anon_sym_actual] = ACTIONS(2559), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), }, [342] = { - [sym__expression] = STATE(4365), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(2682), + [sym__expression] = STATE(950), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2641), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2688), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2698), - [anon_sym_get] = ACTIONS(2702), - [anon_sym_set] = ACTIONS(2702), - [anon_sym_this] = ACTIONS(2706), - [anon_sym_super] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2712), - [sym_label] = ACTIONS(2715), + [anon_sym_object] = ACTIONS(2650), + [anon_sym_fun] = ACTIONS(2756), + [anon_sym_get] = ACTIONS(2658), + [anon_sym_set] = ACTIONS(2658), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2760), + [sym_label] = ACTIONS(2763), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2721), - [anon_sym_when] = ACTIONS(2724), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_throw] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_null] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2766), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2702), - [anon_sym_inner] = ACTIONS(2702), - [anon_sym_value] = ACTIONS(2702), + [anon_sym_data] = ACTIONS(2658), + [anon_sym_inner] = ACTIONS(2658), + [anon_sym_value] = ACTIONS(2658), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -89241,108 +88527,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2702), - [anon_sym_actual] = ACTIONS(2702), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2745), - [anon_sym_break_AT] = ACTIONS(2748), - [anon_sym_this_AT] = ACTIONS(2751), - [anon_sym_super_AT] = ACTIONS(2754), - [sym_real_literal] = ACTIONS(2757), - [sym_integer_literal] = ACTIONS(2760), - [sym_hex_literal] = ACTIONS(2763), - [sym_bin_literal] = ACTIONS(2763), - [anon_sym_true] = ACTIONS(2766), - [anon_sym_false] = ACTIONS(2766), - [anon_sym_SQUOTE] = ACTIONS(2769), - [sym__backtick_identifier] = ACTIONS(2772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2775), + [anon_sym_expect] = ACTIONS(2658), + [anon_sym_actual] = ACTIONS(2658), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), }, [343] = { - [sym__expression] = STATE(4182), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(2682), + [sym__expression] = STATE(1230), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2641), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2778), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2698), - [anon_sym_get] = ACTIONS(2702), - [anon_sym_set] = ACTIONS(2702), - [anon_sym_this] = ACTIONS(2706), - [anon_sym_super] = ACTIONS(2709), + [anon_sym_object] = ACTIONS(2650), + [anon_sym_fun] = ACTIONS(2778), + [anon_sym_get] = ACTIONS(2658), + [anon_sym_set] = ACTIONS(2658), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), [anon_sym_STAR] = ACTIONS(2782), [sym_label] = ACTIONS(2785), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2718), + [anon_sym_null] = ACTIONS(2674), [anon_sym_if] = ACTIONS(2788), - [anon_sym_when] = ACTIONS(2724), - [anon_sym_try] = ACTIONS(2727), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), [anon_sym_throw] = ACTIONS(2791), [anon_sym_return] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), [anon_sym_PLUS] = ACTIONS(2785), [anon_sym_DASH] = ACTIONS(2785), [anon_sym_PLUS_PLUS] = ACTIONS(2797), @@ -89351,9 +88637,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2702), - [anon_sym_inner] = ACTIONS(2702), - [anon_sym_value] = ACTIONS(2702), + [anon_sym_data] = ACTIONS(2658), + [anon_sym_inner] = ACTIONS(2658), + [anon_sym_value] = ACTIONS(2658), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -89372,108 +88658,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2702), - [anon_sym_actual] = ACTIONS(2702), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2745), - [anon_sym_break_AT] = ACTIONS(2748), - [anon_sym_this_AT] = ACTIONS(2751), - [anon_sym_super_AT] = ACTIONS(2754), - [sym_real_literal] = ACTIONS(2757), - [sym_integer_literal] = ACTIONS(2760), - [sym_hex_literal] = ACTIONS(2763), - [sym_bin_literal] = ACTIONS(2763), - [anon_sym_true] = ACTIONS(2766), - [anon_sym_false] = ACTIONS(2766), - [anon_sym_SQUOTE] = ACTIONS(2769), - [sym__backtick_identifier] = ACTIONS(2772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2775), + [anon_sym_expect] = ACTIONS(2658), + [anon_sym_actual] = ACTIONS(2658), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), }, [344] = { - [sym__expression] = STATE(2559), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [sym__expression] = STATE(2479), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(2561), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(2179), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2182), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2800), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2577), - [anon_sym_get] = ACTIONS(2581), - [anon_sym_set] = ACTIONS(2581), - [anon_sym_this] = ACTIONS(2585), - [anon_sym_super] = ACTIONS(2588), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_fun] = ACTIONS(2800), + [anon_sym_get] = ACTIONS(2199), + [anon_sym_set] = ACTIONS(2199), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), [anon_sym_STAR] = ACTIONS(2804), [sym_label] = ACTIONS(2807), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2597), + [anon_sym_null] = ACTIONS(2215), [anon_sym_if] = ACTIONS(2810), - [anon_sym_when] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2606), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), [anon_sym_throw] = ACTIONS(2813), [anon_sym_return] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2618), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), [anon_sym_PLUS] = ACTIONS(2807), [anon_sym_DASH] = ACTIONS(2807), [anon_sym_PLUS_PLUS] = ACTIONS(2819), @@ -89482,9 +88768,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2581), - [anon_sym_inner] = ACTIONS(2581), - [anon_sym_value] = ACTIONS(2581), + [anon_sym_data] = ACTIONS(2199), + [anon_sym_inner] = ACTIONS(2199), + [anon_sym_value] = ACTIONS(2199), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -89503,90 +88789,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2581), - [anon_sym_actual] = ACTIONS(2581), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2624), - [anon_sym_continue_AT] = ACTIONS(2627), - [anon_sym_break_AT] = ACTIONS(2630), - [anon_sym_this_AT] = ACTIONS(2633), - [anon_sym_super_AT] = ACTIONS(2636), - [sym_real_literal] = ACTIONS(2639), - [sym_integer_literal] = ACTIONS(2642), - [sym_hex_literal] = ACTIONS(2645), - [sym_bin_literal] = ACTIONS(2645), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2651), - [sym__backtick_identifier] = ACTIONS(2654), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2657), + [anon_sym_expect] = ACTIONS(2199), + [anon_sym_actual] = ACTIONS(2199), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2242), + [anon_sym_continue_AT] = ACTIONS(2245), + [anon_sym_break_AT] = ACTIONS(2248), + [anon_sym_this_AT] = ACTIONS(2251), + [anon_sym_super_AT] = ACTIONS(2254), + [sym_real_literal] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2260), + [sym_hex_literal] = ACTIONS(2263), + [sym_bin_literal] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2266), + [anon_sym_false] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2269), + [sym__backtick_identifier] = ACTIONS(2272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2275), }, [345] = { - [sym__expression] = STATE(484), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), + [sym__expression] = STATE(2425), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), [sym__alpha_identifier] = ACTIONS(2072), [anon_sym_AT] = ACTIONS(2075), [anon_sym_LBRACK] = ACTIONS(2079), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2822), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2094), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_fun] = ACTIONS(2822), [anon_sym_get] = ACTIONS(2098), [anon_sym_set] = ACTIONS(2098), [anon_sym_this] = ACTIONS(2102), @@ -89654,88 +88940,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(2176), }, [346] = { - [sym__expression] = STATE(4420), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(2682), + [sym__expression] = STATE(1872), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2641), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2844), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2698), - [anon_sym_get] = ACTIONS(2702), - [anon_sym_set] = ACTIONS(2702), - [anon_sym_this] = ACTIONS(2706), - [anon_sym_super] = ACTIONS(2709), + [anon_sym_object] = ACTIONS(2650), + [anon_sym_fun] = ACTIONS(2844), + [anon_sym_get] = ACTIONS(2658), + [anon_sym_set] = ACTIONS(2658), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), [anon_sym_STAR] = ACTIONS(2848), [sym_label] = ACTIONS(2851), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2718), + [anon_sym_null] = ACTIONS(2674), [anon_sym_if] = ACTIONS(2854), - [anon_sym_when] = ACTIONS(2724), - [anon_sym_try] = ACTIONS(2727), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), [anon_sym_throw] = ACTIONS(2857), [anon_sym_return] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), [anon_sym_PLUS] = ACTIONS(2851), [anon_sym_DASH] = ACTIONS(2851), [anon_sym_PLUS_PLUS] = ACTIONS(2863), @@ -89744,9 +89030,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2702), - [anon_sym_inner] = ACTIONS(2702), - [anon_sym_value] = ACTIONS(2702), + [anon_sym_data] = ACTIONS(2658), + [anon_sym_inner] = ACTIONS(2658), + [anon_sym_value] = ACTIONS(2658), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -89765,108 +89051,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2702), - [anon_sym_actual] = ACTIONS(2702), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2745), - [anon_sym_break_AT] = ACTIONS(2748), - [anon_sym_this_AT] = ACTIONS(2751), - [anon_sym_super_AT] = ACTIONS(2754), - [sym_real_literal] = ACTIONS(2757), - [sym_integer_literal] = ACTIONS(2760), - [sym_hex_literal] = ACTIONS(2763), - [sym_bin_literal] = ACTIONS(2763), - [anon_sym_true] = ACTIONS(2766), - [anon_sym_false] = ACTIONS(2766), - [anon_sym_SQUOTE] = ACTIONS(2769), - [sym__backtick_identifier] = ACTIONS(2772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2775), + [anon_sym_expect] = ACTIONS(2658), + [anon_sym_actual] = ACTIONS(2658), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), }, [347] = { - [sym__expression] = STATE(1246), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(2561), + [sym__expression] = STATE(3296), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2303), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2866), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2577), - [anon_sym_get] = ACTIONS(2581), - [anon_sym_set] = ACTIONS(2581), - [anon_sym_this] = ACTIONS(2585), - [anon_sym_super] = ACTIONS(2588), + [anon_sym_object] = ACTIONS(2312), + [anon_sym_fun] = ACTIONS(2866), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), [anon_sym_STAR] = ACTIONS(2870), [sym_label] = ACTIONS(2873), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2597), + [anon_sym_null] = ACTIONS(2336), [anon_sym_if] = ACTIONS(2876), - [anon_sym_when] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2606), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), [anon_sym_throw] = ACTIONS(2879), [anon_sym_return] = ACTIONS(2882), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2618), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), [anon_sym_PLUS] = ACTIONS(2873), [anon_sym_DASH] = ACTIONS(2873), [anon_sym_PLUS_PLUS] = ACTIONS(2885), @@ -89875,9 +89161,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2581), - [anon_sym_inner] = ACTIONS(2581), - [anon_sym_value] = ACTIONS(2581), + [anon_sym_data] = ACTIONS(2320), + [anon_sym_inner] = ACTIONS(2320), + [anon_sym_value] = ACTIONS(2320), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -89896,108 +89182,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2581), - [anon_sym_actual] = ACTIONS(2581), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2624), - [anon_sym_continue_AT] = ACTIONS(2627), - [anon_sym_break_AT] = ACTIONS(2630), - [anon_sym_this_AT] = ACTIONS(2633), - [anon_sym_super_AT] = ACTIONS(2636), - [sym_real_literal] = ACTIONS(2639), - [sym_integer_literal] = ACTIONS(2642), - [sym_hex_literal] = ACTIONS(2645), - [sym_bin_literal] = ACTIONS(2645), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2651), - [sym__backtick_identifier] = ACTIONS(2654), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2657), + [anon_sym_expect] = ACTIONS(2320), + [anon_sym_actual] = ACTIONS(2320), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), }, [348] = { - [sym__expression] = STATE(2486), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(2278), + [sym__expression] = STATE(471), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2402), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2888), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2294), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), + [anon_sym_object] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2888), + [anon_sym_get] = ACTIONS(2419), + [anon_sym_set] = ACTIONS(2419), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), [anon_sym_STAR] = ACTIONS(2892), [sym_label] = ACTIONS(2895), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), + [anon_sym_null] = ACTIONS(2435), [anon_sym_if] = ACTIONS(2898), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), [anon_sym_throw] = ACTIONS(2901), [anon_sym_return] = ACTIONS(2904), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), [anon_sym_PLUS] = ACTIONS(2895), [anon_sym_DASH] = ACTIONS(2895), [anon_sym_PLUS_PLUS] = ACTIONS(2907), @@ -90006,9 +89292,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2298), - [anon_sym_inner] = ACTIONS(2298), - [anon_sym_value] = ACTIONS(2298), + [anon_sym_data] = ACTIONS(2419), + [anon_sym_inner] = ACTIONS(2419), + [anon_sym_value] = ACTIONS(2419), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -90027,141 +89313,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2298), - [anon_sym_actual] = ACTIONS(2298), + [anon_sym_expect] = ACTIONS(2419), + [anon_sym_actual] = ACTIONS(2419), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), - }, - [349] = { - [sym__expression] = STATE(1239), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2910), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2412), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2914), - [sym_label] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2929), - [anon_sym_BANG] = ACTIONS(2929), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2416), - [anon_sym_inner] = ACTIONS(2416), - [anon_sym_value] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2416), - [anon_sym_actual] = ACTIONS(2416), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), [anon_sym_continue_AT] = ACTIONS(2462), [anon_sym_break_AT] = ACTIONS(2465), [anon_sym_this_AT] = ACTIONS(2468), @@ -90177,100 +89332,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2492), }, - [350] = { - [sym__expression] = STATE(2627), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(2278), + [349] = { + [sym__expression] = STATE(4242), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2542), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2932), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2294), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2936), - [sym_label] = ACTIONS(2939), + [anon_sym_object] = ACTIONS(2551), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_get] = ACTIONS(2559), + [anon_sym_set] = ACTIONS(2559), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2914), + [sym_label] = ACTIONS(2917), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2948), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_null] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2926), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2298), - [anon_sym_inner] = ACTIONS(2298), - [anon_sym_value] = ACTIONS(2298), + [anon_sym_data] = ACTIONS(2559), + [anon_sym_inner] = ACTIONS(2559), + [anon_sym_value] = ACTIONS(2559), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -90289,113 +89444,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2298), - [anon_sym_actual] = ACTIONS(2298), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), + [anon_sym_expect] = ACTIONS(2559), + [anon_sym_actual] = ACTIONS(2559), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), }, - [351] = { - [sym__expression] = STATE(386), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), + [350] = { + [sym__expression] = STATE(1415), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), [sym__alpha_identifier] = ACTIONS(2072), [anon_sym_AT] = ACTIONS(2075), [anon_sym_LBRACK] = ACTIONS(2079), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2954), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2094), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_fun] = ACTIONS(2932), [anon_sym_get] = ACTIONS(2098), [anon_sym_set] = ACTIONS(2098), [anon_sym_this] = ACTIONS(2102), [anon_sym_super] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2958), - [sym_label] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2936), + [sym_label] = ACTIONS(2939), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), [anon_sym_null] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2942), [anon_sym_when] = ACTIONS(2122), [anon_sym_try] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2967), - [anon_sym_return] = ACTIONS(2970), + [anon_sym_throw] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2948), [anon_sym_continue] = ACTIONS(2134), [anon_sym_break] = ACTIONS(2134), [anon_sym_COLON_COLON] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2939), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2951), [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), @@ -90439,89 +89594,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2176), }, + [351] = { + [sym__expression] = STATE(367), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2954), + [anon_sym_get] = ACTIONS(2419), + [anon_sym_set] = ACTIONS(2419), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2958), + [sym_label] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2419), + [anon_sym_inner] = ACTIONS(2419), + [anon_sym_value] = ACTIONS(2419), + [anon_sym_override] = ACTIONS(2082), + [anon_sym_lateinit] = ACTIONS(2082), + [anon_sym_public] = ACTIONS(2082), + [anon_sym_private] = ACTIONS(2082), + [anon_sym_internal] = ACTIONS(2082), + [anon_sym_protected] = ACTIONS(2082), + [anon_sym_tailrec] = ACTIONS(2082), + [anon_sym_operator] = ACTIONS(2082), + [anon_sym_infix] = ACTIONS(2082), + [anon_sym_inline] = ACTIONS(2082), + [anon_sym_external] = ACTIONS(2082), + [sym_property_modifier] = ACTIONS(2082), + [anon_sym_abstract] = ACTIONS(2082), + [anon_sym_final] = ACTIONS(2082), + [anon_sym_open] = ACTIONS(2082), + [anon_sym_vararg] = ACTIONS(2082), + [anon_sym_noinline] = ACTIONS(2082), + [anon_sym_crossinline] = ACTIONS(2082), + [anon_sym_expect] = ACTIONS(2419), + [anon_sym_actual] = ACTIONS(2419), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(2462), + [anon_sym_break_AT] = ACTIONS(2465), + [anon_sym_this_AT] = ACTIONS(2468), + [anon_sym_super_AT] = ACTIONS(2471), + [sym_real_literal] = ACTIONS(2474), + [sym_integer_literal] = ACTIONS(2477), + [sym_hex_literal] = ACTIONS(2480), + [sym_bin_literal] = ACTIONS(2480), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(2486), + [sym__backtick_identifier] = ACTIONS(2489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2492), + }, [352] = { - [sym__expression] = STATE(3866), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(2682), + [sym__expression] = STATE(4114), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2303), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2976), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2698), - [anon_sym_get] = ACTIONS(2702), - [anon_sym_set] = ACTIONS(2702), - [anon_sym_this] = ACTIONS(2706), - [anon_sym_super] = ACTIONS(2709), + [anon_sym_object] = ACTIONS(2312), + [anon_sym_fun] = ACTIONS(2976), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), [anon_sym_STAR] = ACTIONS(2980), [sym_label] = ACTIONS(2983), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2718), + [anon_sym_null] = ACTIONS(2336), [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(2724), - [anon_sym_try] = ACTIONS(2727), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), [anon_sym_throw] = ACTIONS(2989), [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), [anon_sym_PLUS] = ACTIONS(2983), [anon_sym_DASH] = ACTIONS(2983), [anon_sym_PLUS_PLUS] = ACTIONS(2995), @@ -90530,9 +89816,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2702), - [anon_sym_inner] = ACTIONS(2702), - [anon_sym_value] = ACTIONS(2702), + [anon_sym_data] = ACTIONS(2320), + [anon_sym_inner] = ACTIONS(2320), + [anon_sym_value] = ACTIONS(2320), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -90551,108 +89837,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2702), - [anon_sym_actual] = ACTIONS(2702), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2745), - [anon_sym_break_AT] = ACTIONS(2748), - [anon_sym_this_AT] = ACTIONS(2751), - [anon_sym_super_AT] = ACTIONS(2754), - [sym_real_literal] = ACTIONS(2757), - [sym_integer_literal] = ACTIONS(2760), - [sym_hex_literal] = ACTIONS(2763), - [sym_bin_literal] = ACTIONS(2763), - [anon_sym_true] = ACTIONS(2766), - [anon_sym_false] = ACTIONS(2766), - [anon_sym_SQUOTE] = ACTIONS(2769), - [sym__backtick_identifier] = ACTIONS(2772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2775), + [anon_sym_expect] = ACTIONS(2320), + [anon_sym_actual] = ACTIONS(2320), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), }, [353] = { - [sym__expression] = STATE(1854), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2396), + [sym__expression] = STATE(2559), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(2072), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2079), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(2998), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2412), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_fun] = ACTIONS(2998), + [anon_sym_get] = ACTIONS(2098), + [anon_sym_set] = ACTIONS(2098), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), [anon_sym_STAR] = ACTIONS(3002), [sym_label] = ACTIONS(3005), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), + [anon_sym_null] = ACTIONS(2116), [anon_sym_if] = ACTIONS(3008), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), [anon_sym_throw] = ACTIONS(3011), [anon_sym_return] = ACTIONS(3014), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), [anon_sym_PLUS] = ACTIONS(3005), [anon_sym_DASH] = ACTIONS(3005), [anon_sym_PLUS_PLUS] = ACTIONS(3017), @@ -90661,9 +89947,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2416), - [anon_sym_inner] = ACTIONS(2416), - [anon_sym_value] = ACTIONS(2416), + [anon_sym_data] = ACTIONS(2098), + [anon_sym_inner] = ACTIONS(2098), + [anon_sym_value] = ACTIONS(2098), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -90682,90 +89968,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2416), - [anon_sym_actual] = ACTIONS(2416), + [anon_sym_expect] = ACTIONS(2098), + [anon_sym_actual] = ACTIONS(2098), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2462), - [anon_sym_break_AT] = ACTIONS(2465), - [anon_sym_this_AT] = ACTIONS(2468), - [anon_sym_super_AT] = ACTIONS(2471), - [sym_real_literal] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2477), - [sym_hex_literal] = ACTIONS(2480), - [sym_bin_literal] = ACTIONS(2480), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2486), - [sym__backtick_identifier] = ACTIONS(2489), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(2146), + [anon_sym_break_AT] = ACTIONS(2149), + [anon_sym_this_AT] = ACTIONS(2152), + [anon_sym_super_AT] = ACTIONS(2155), + [sym_real_literal] = ACTIONS(2158), + [sym_integer_literal] = ACTIONS(2161), + [sym_hex_literal] = ACTIONS(2164), + [sym_bin_literal] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2167), + [anon_sym_false] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym__backtick_identifier] = ACTIONS(2173), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2492), + [sym__string_start] = ACTIONS(2176), }, [354] = { - [sym__expression] = STATE(3414), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [sym__expression] = STATE(2277), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(2179), [anon_sym_AT] = ACTIONS(2075), [anon_sym_LBRACK] = ACTIONS(2182), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(3020), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2195), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_fun] = ACTIONS(3020), [anon_sym_get] = ACTIONS(2199), [anon_sym_set] = ACTIONS(2199), [anon_sym_this] = ACTIONS(2203), @@ -90833,88 +90119,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(2275), }, [355] = { - [sym__expression] = STATE(379), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(2072), + [sym__expression] = STATE(4292), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2542), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), - [anon_sym_fun] = ACTIONS(3042), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2094), - [anon_sym_get] = ACTIONS(2098), - [anon_sym_set] = ACTIONS(2098), - [anon_sym_this] = ACTIONS(2102), - [anon_sym_super] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2551), + [anon_sym_fun] = ACTIONS(3042), + [anon_sym_get] = ACTIONS(2559), + [anon_sym_set] = ACTIONS(2559), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), [anon_sym_STAR] = ACTIONS(3046), [sym_label] = ACTIONS(3049), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2116), + [anon_sym_null] = ACTIONS(2575), [anon_sym_if] = ACTIONS(3052), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), [anon_sym_throw] = ACTIONS(3055), [anon_sym_return] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), [anon_sym_PLUS] = ACTIONS(3049), [anon_sym_DASH] = ACTIONS(3049), [anon_sym_PLUS_PLUS] = ACTIONS(3061), @@ -90923,9 +90209,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2098), - [anon_sym_inner] = ACTIONS(2098), - [anon_sym_value] = ACTIONS(2098), + [anon_sym_data] = ACTIONS(2559), + [anon_sym_inner] = ACTIONS(2559), + [anon_sym_value] = ACTIONS(2559), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -90944,131 +90230,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2082), [anon_sym_noinline] = ACTIONS(2082), [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2098), - [anon_sym_actual] = ACTIONS(2098), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2146), - [anon_sym_break_AT] = ACTIONS(2149), - [anon_sym_this_AT] = ACTIONS(2152), - [anon_sym_super_AT] = ACTIONS(2155), - [sym_real_literal] = ACTIONS(2158), - [sym_integer_literal] = ACTIONS(2161), - [sym_hex_literal] = ACTIONS(2164), - [sym_bin_literal] = ACTIONS(2164), - [anon_sym_true] = ACTIONS(2167), - [anon_sym_false] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2170), - [sym__backtick_identifier] = ACTIONS(2173), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2176), + [anon_sym_expect] = ACTIONS(2559), + [anon_sym_actual] = ACTIONS(2559), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), }, [356] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), + [sym__expression] = STATE(1892), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [357] = { + [sym__expression] = STATE(4239), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(961), [sym_label] = ACTIONS(969), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_else] = ACTIONS(1622), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(1584), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), [anon_sym_PLUS] = ACTIONS(969), [anon_sym_DASH] = ACTIONS(969), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_as_QMARK] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), [anon_sym_PLUS_PLUS] = ACTIONS(971), [anon_sym_DASH_DASH] = ACTIONS(971), [anon_sym_BANG] = ACTIONS(969), - [anon_sym_BANG_BANG] = ACTIONS(1620), + [anon_sym_BANG_BANG] = ACTIONS(1582), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -91088,320 +90504,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(107), [anon_sym_SQUOTE] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [357] = { - [sym__expression] = STATE(1975), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(907), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, [358] = { - [sym__expression] = STATE(4378), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [sym__expression] = STATE(4271), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_as] = ACTIONS(1622), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_as_QMARK] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), [anon_sym_PLUS_PLUS] = ACTIONS(341), [anon_sym_DASH_DASH] = ACTIONS(341), [anon_sym_BANG] = ACTIONS(339), - [anon_sym_BANG_BANG] = ACTIONS(1620), + [anon_sym_BANG_BANG] = ACTIONS(1582), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_safe_nav] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(1582), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, [359] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3090), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), [anon_sym_where] = ACTIONS(3088), [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), [anon_sym_this] = ACTIONS(3088), [anon_sym_super] = ACTIONS(3088), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3088), + [anon_sym_in] = ACTIONS(1754), [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_QMARK_COLON] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), [anon_sym_null] = ACTIONS(3088), [anon_sym_if] = ACTIONS(3088), [anon_sym_else] = ACTIONS(3088), @@ -91417,15 +90703,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(3090), [anon_sym_SLASH_EQ] = ACTIONS(3090), [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1772), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), [anon_sym_PLUS] = ACTIONS(1778), [anon_sym_DASH] = ACTIONS(1778), [anon_sym_SLASH] = ACTIONS(1750), @@ -91438,9 +90724,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(3088), [anon_sym_sealed] = ACTIONS(3088), [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), [anon_sym_override] = ACTIONS(3088), [anon_sym_lateinit] = ACTIONS(3088), [anon_sym_public] = ACTIONS(3088), @@ -91459,8 +90745,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3088), [anon_sym_noinline] = ACTIONS(3088), [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3090), [anon_sym_continue_AT] = ACTIONS(3090), @@ -91481,79 +90767,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(3090), }, [360] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3094), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_fun] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3096), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(3097), - [anon_sym_object] = ACTIONS(3097), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3097), - [anon_sym_super] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_null] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_when] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3097), - [anon_sym_throw] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_when] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), [anon_sym_PLUS] = ACTIONS(1778), [anon_sym_DASH] = ACTIONS(1778), [anon_sym_SLASH] = ACTIONS(1750), @@ -91561,83 +90847,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3094), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3097), - [anon_sym_sealed] = ACTIONS(3097), - [anon_sym_annotation] = ACTIONS(3097), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3097), - [anon_sym_lateinit] = ACTIONS(3097), - [anon_sym_public] = ACTIONS(3097), - [anon_sym_private] = ACTIONS(3097), - [anon_sym_internal] = ACTIONS(3097), - [anon_sym_protected] = ACTIONS(3097), - [anon_sym_tailrec] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_infix] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym_external] = ACTIONS(3097), - [sym_property_modifier] = ACTIONS(3097), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_final] = ACTIONS(3097), - [anon_sym_open] = ACTIONS(3097), - [anon_sym_vararg] = ACTIONS(3097), - [anon_sym_noinline] = ACTIONS(3097), - [anon_sym_crossinline] = ACTIONS(3097), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3099), - [anon_sym_continue_AT] = ACTIONS(3099), - [anon_sym_break_AT] = ACTIONS(3099), - [anon_sym_this_AT] = ACTIONS(3099), - [anon_sym_super_AT] = ACTIONS(3099), - [sym_real_literal] = ACTIONS(3099), - [sym_integer_literal] = ACTIONS(3097), - [sym_hex_literal] = ACTIONS(3099), - [sym_bin_literal] = ACTIONS(3099), - [anon_sym_true] = ACTIONS(3097), - [anon_sym_false] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3099), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3099), + [sym__string_start] = ACTIONS(3096), }, [361] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), [anon_sym_EQ] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3103), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_COMMA] = ACTIONS(3103), @@ -91645,10 +90930,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1740), [anon_sym_where] = ACTIONS(3101), [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), [anon_sym_this] = ACTIONS(3101), [anon_sym_super] = ACTIONS(3101), [anon_sym_STAR] = ACTIONS(1750), @@ -91694,9 +90980,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(3101), [anon_sym_sealed] = ACTIONS(3101), [anon_sym_annotation] = ACTIONS(3101), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), [anon_sym_override] = ACTIONS(3101), [anon_sym_lateinit] = ACTIONS(3101), [anon_sym_public] = ACTIONS(3101), @@ -91715,8 +91001,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3101), [anon_sym_noinline] = ACTIONS(3101), [anon_sym_crossinline] = ACTIONS(3101), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3103), [anon_sym_continue_AT] = ACTIONS(3103), @@ -91737,48 +91023,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(3103), }, [362] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [363] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym_fun] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3115), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3107), + [anon_sym_COMMA] = ACTIONS(3115), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(3105), - [anon_sym_object] = ACTIONS(3105), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3105), - [anon_sym_super] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -91786,21 +91200,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1758), [anon_sym_AMP_AMP] = ACTIONS(1760), [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_when] = ACTIONS(3105), - [anon_sym_try] = ACTIONS(3105), - [anon_sym_throw] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -91817,127 +91231,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3113), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3105), - [anon_sym_sealed] = ACTIONS(3105), - [anon_sym_annotation] = ACTIONS(3105), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3105), - [anon_sym_lateinit] = ACTIONS(3105), - [anon_sym_public] = ACTIONS(3105), - [anon_sym_private] = ACTIONS(3105), - [anon_sym_internal] = ACTIONS(3105), - [anon_sym_protected] = ACTIONS(3105), - [anon_sym_tailrec] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_infix] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym_external] = ACTIONS(3105), - [sym_property_modifier] = ACTIONS(3105), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_final] = ACTIONS(3105), - [anon_sym_open] = ACTIONS(3105), - [anon_sym_vararg] = ACTIONS(3105), - [anon_sym_noinline] = ACTIONS(3105), - [anon_sym_crossinline] = ACTIONS(3105), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3107), - [anon_sym_continue_AT] = ACTIONS(3107), - [anon_sym_break_AT] = ACTIONS(3107), - [anon_sym_this_AT] = ACTIONS(3107), - [anon_sym_super_AT] = ACTIONS(3107), - [sym_real_literal] = ACTIONS(3107), - [sym_integer_literal] = ACTIONS(3105), - [sym_hex_literal] = ACTIONS(3107), - [sym_bin_literal] = ACTIONS(3107), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), + [sym__automatic_semicolon] = ACTIONS(3115), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3107), + [sym__string_start] = ACTIONS(3115), }, - [363] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3109), + [364] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_fun] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3119), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_this] = ACTIONS(3109), - [anon_sym_super] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3109), + [anon_sym_in] = ACTIONS(1754), [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_null] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_when] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1772), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), [anon_sym_PLUS] = ACTIONS(1778), [anon_sym_DASH] = ACTIONS(1778), [anon_sym_SLASH] = ACTIONS(1750), @@ -91945,383 +91359,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3109), - [anon_sym_sealed] = ACTIONS(3109), - [anon_sym_annotation] = ACTIONS(3109), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_lateinit] = ACTIONS(3109), - [anon_sym_public] = ACTIONS(3109), - [anon_sym_private] = ACTIONS(3109), - [anon_sym_internal] = ACTIONS(3109), - [anon_sym_protected] = ACTIONS(3109), - [anon_sym_tailrec] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_infix] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym_external] = ACTIONS(3109), - [sym_property_modifier] = ACTIONS(3109), - [anon_sym_abstract] = ACTIONS(3109), - [anon_sym_final] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_vararg] = ACTIONS(3109), - [anon_sym_noinline] = ACTIONS(3109), - [anon_sym_crossinline] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3111), - [anon_sym_continue_AT] = ACTIONS(3111), - [anon_sym_break_AT] = ACTIONS(3111), - [anon_sym_this_AT] = ACTIONS(3111), - [anon_sym_super_AT] = ACTIONS(3111), - [sym_real_literal] = ACTIONS(3111), - [sym_integer_literal] = ACTIONS(3109), - [sym_hex_literal] = ACTIONS(3111), - [sym_bin_literal] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3111), - }, - [364] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3116), - [anon_sym_fun] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_where] = ACTIONS(3116), - [anon_sym_object] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_this] = ACTIONS(3116), - [anon_sym_super] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3116), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_when] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3117), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3116), - [anon_sym_sealed] = ACTIONS(3116), - [anon_sym_annotation] = ACTIONS(3116), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_lateinit] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_internal] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_tailrec] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_infix] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym_external] = ACTIONS(3116), - [sym_property_modifier] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_final] = ACTIONS(3116), - [anon_sym_open] = ACTIONS(3116), - [anon_sym_vararg] = ACTIONS(3116), - [anon_sym_noinline] = ACTIONS(3116), - [anon_sym_crossinline] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [anon_sym_this_AT] = ACTIONS(3118), - [anon_sym_super_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3116), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3116), - [anon_sym_false] = ACTIONS(3116), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [sym__string_start] = ACTIONS(3119), }, [365] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3123), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym_fun] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3125), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3123), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_object] = ACTIONS(3123), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_object] = ACTIONS(3121), + [anon_sym_fun] = ACTIONS(3121), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_this] = ACTIONS(3123), - [anon_sym_super] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3121), + [anon_sym_super] = ACTIONS(3121), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_when] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_throw] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_when] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_STAR_EQ] = ACTIONS(3125), - [anon_sym_SLASH_EQ] = ACTIONS(3125), - [anon_sym_PERCENT_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS_EQ] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3123), + [anon_sym_STAR_EQ] = ACTIONS(3123), + [anon_sym_SLASH_EQ] = ACTIONS(3123), + [anon_sym_PERCENT_EQ] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1772), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), [anon_sym_SLASH] = ACTIONS(1750), [anon_sym_PERCENT] = ACTIONS(1750), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_BANG] = ACTIONS(3121), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3123), - [anon_sym_sealed] = ACTIONS(3123), - [anon_sym_annotation] = ACTIONS(3123), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_lateinit] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_tailrec] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3123), - [sym_property_modifier] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_vararg] = ACTIONS(3123), - [anon_sym_noinline] = ACTIONS(3123), - [anon_sym_crossinline] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3125), - [anon_sym_continue_AT] = ACTIONS(3125), - [anon_sym_break_AT] = ACTIONS(3125), - [anon_sym_this_AT] = ACTIONS(3125), - [anon_sym_super_AT] = ACTIONS(3125), - [sym_real_literal] = ACTIONS(3125), - [sym_integer_literal] = ACTIONS(3123), - [sym_hex_literal] = ACTIONS(3125), - [sym_bin_literal] = ACTIONS(3125), - [anon_sym_true] = ACTIONS(3123), - [anon_sym_false] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3125), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), + [anon_sym_suspend] = ACTIONS(3121), + [anon_sym_sealed] = ACTIONS(3121), + [anon_sym_annotation] = ACTIONS(3121), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_lateinit] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_internal] = ACTIONS(3121), + [anon_sym_protected] = ACTIONS(3121), + [anon_sym_tailrec] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_infix] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_external] = ACTIONS(3121), + [sym_property_modifier] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_final] = ACTIONS(3121), + [anon_sym_open] = ACTIONS(3121), + [anon_sym_vararg] = ACTIONS(3121), + [anon_sym_noinline] = ACTIONS(3121), + [anon_sym_crossinline] = ACTIONS(3121), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3123), + [anon_sym_continue_AT] = ACTIONS(3123), + [anon_sym_break_AT] = ACTIONS(3123), + [anon_sym_this_AT] = ACTIONS(3123), + [anon_sym_super_AT] = ACTIONS(3123), + [sym_real_literal] = ACTIONS(3123), + [sym_integer_literal] = ACTIONS(3121), + [sym_hex_literal] = ACTIONS(3123), + [sym_bin_literal] = ACTIONS(3123), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3123), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3123), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3125), + [sym__string_start] = ACTIONS(3123), }, [366] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3127), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3130), - [anon_sym_super] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3130), + [anon_sym_in] = ACTIONS(3125), [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_when] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), [anon_sym_PLUS] = ACTIONS(1778), [anon_sym_DASH] = ACTIONS(1778), [anon_sym_SLASH] = ACTIONS(1750), @@ -92329,124 +91615,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3125), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_annotation] = ACTIONS(3130), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_lateinit] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_tailrec] = ACTIONS(3130), - [anon_sym_operator] = ACTIONS(3130), - [anon_sym_infix] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_external] = ACTIONS(3130), - [sym_property_modifier] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3130), - [anon_sym_noinline] = ACTIONS(3130), - [anon_sym_crossinline] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3132), - [anon_sym_continue_AT] = ACTIONS(3132), - [anon_sym_break_AT] = ACTIONS(3132), - [anon_sym_this_AT] = ACTIONS(3132), - [anon_sym_super_AT] = ACTIONS(3132), - [sym_real_literal] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(3130), - [sym_hex_literal] = ACTIONS(3132), - [sym_bin_literal] = ACTIONS(3132), - [anon_sym_true] = ACTIONS(3130), - [anon_sym_false] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3132), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3127), + [anon_sym_continue_AT] = ACTIONS(3127), + [anon_sym_break_AT] = ACTIONS(3127), + [anon_sym_this_AT] = ACTIONS(3127), + [anon_sym_super_AT] = ACTIONS(3127), + [sym_real_literal] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(3125), + [sym_hex_literal] = ACTIONS(3127), + [sym_bin_literal] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3127), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), + [sym__automatic_semicolon] = ACTIONS(3127), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3132), + [sym__string_start] = ACTIONS(3127), }, [367] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_fun] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3134), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3134), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_where] = ACTIONS(3137), - [anon_sym_object] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3137), - [anon_sym_super] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), [anon_sym_DOT_DOT] = ACTIONS(1756), [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_when] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), + [anon_sym_AMP_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), [anon_sym_BANGin] = ACTIONS(1772), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), @@ -92457,118 +91743,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3132), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3139), - [anon_sym_continue_AT] = ACTIONS(3139), - [anon_sym_break_AT] = ACTIONS(3139), - [anon_sym_this_AT] = ACTIONS(3139), - [anon_sym_super_AT] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3139), - [sym_integer_literal] = ACTIONS(3137), - [sym_hex_literal] = ACTIONS(3139), - [sym_bin_literal] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3139), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), + [sym__automatic_semicolon] = ACTIONS(3134), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3139), + [sym__string_start] = ACTIONS(3134), }, [368] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_fun] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3138), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3143), + [anon_sym_COMMA] = ACTIONS(3138), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3141), - [anon_sym_super] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), [anon_sym_DOT_DOT] = ACTIONS(1756), [anon_sym_QMARK_COLON] = ACTIONS(1758), [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_when] = ACTIONS(3141), - [anon_sym_try] = ACTIONS(3141), - [anon_sym_throw] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -92585,122 +91871,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3136), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3143), - [anon_sym_continue_AT] = ACTIONS(3143), - [anon_sym_break_AT] = ACTIONS(3143), - [anon_sym_this_AT] = ACTIONS(3143), - [anon_sym_super_AT] = ACTIONS(3143), - [sym_real_literal] = ACTIONS(3143), - [sym_integer_literal] = ACTIONS(3141), - [sym_hex_literal] = ACTIONS(3143), - [sym_bin_literal] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3143), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), + [sym__automatic_semicolon] = ACTIONS(3138), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3143), + [sym__string_start] = ACTIONS(3138), }, [369] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3145), - [anon_sym_fun] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3142), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3142), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(3145), - [anon_sym_object] = ACTIONS(3145), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3145), - [anon_sym_super] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), [anon_sym_DOT_DOT] = ACTIONS(1756), [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_null] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_when] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), [anon_sym_LT_EQ] = ACTIONS(1770), [anon_sym_GT_EQ] = ACTIONS(1770), [anon_sym_BANGin] = ACTIONS(1772), @@ -92713,127 +91999,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3140), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3145), - [anon_sym_sealed] = ACTIONS(3145), - [anon_sym_annotation] = ACTIONS(3145), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_lateinit] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_tailrec] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym_external] = ACTIONS(3145), - [sym_property_modifier] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_vararg] = ACTIONS(3145), - [anon_sym_noinline] = ACTIONS(3145), - [anon_sym_crossinline] = ACTIONS(3145), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3147), - [anon_sym_continue_AT] = ACTIONS(3147), - [anon_sym_break_AT] = ACTIONS(3147), - [anon_sym_this_AT] = ACTIONS(3147), - [anon_sym_super_AT] = ACTIONS(3147), - [sym_real_literal] = ACTIONS(3147), - [sym_integer_literal] = ACTIONS(3145), - [sym_hex_literal] = ACTIONS(3147), - [sym_bin_literal] = ACTIONS(3147), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3147), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), + [sym__automatic_semicolon] = ACTIONS(3142), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3147), + [sym__string_start] = ACTIONS(3142), }, [370] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3149), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_fun] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3146), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_where] = ACTIONS(3149), - [anon_sym_object] = ACTIONS(3149), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_this] = ACTIONS(3149), - [anon_sym_super] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_null] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_when] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3149), - [anon_sym_throw] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(1772), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), [anon_sym_PLUS] = ACTIONS(1778), [anon_sym_DASH] = ACTIONS(1778), [anon_sym_SLASH] = ACTIONS(1750), @@ -92841,83 +92127,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3144), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3149), - [anon_sym_sealed] = ACTIONS(3149), - [anon_sym_annotation] = ACTIONS(3149), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3149), - [anon_sym_lateinit] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_internal] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_tailrec] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_infix] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym_external] = ACTIONS(3149), - [sym_property_modifier] = ACTIONS(3149), - [anon_sym_abstract] = ACTIONS(3149), - [anon_sym_final] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_vararg] = ACTIONS(3149), - [anon_sym_noinline] = ACTIONS(3149), - [anon_sym_crossinline] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3151), - [anon_sym_continue_AT] = ACTIONS(3151), - [anon_sym_break_AT] = ACTIONS(3151), - [anon_sym_this_AT] = ACTIONS(3151), - [anon_sym_super_AT] = ACTIONS(3151), - [sym_real_literal] = ACTIONS(3151), - [sym_integer_literal] = ACTIONS(3149), - [sym_hex_literal] = ACTIONS(3151), - [sym_bin_literal] = ACTIONS(3151), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3151), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3151), + [sym__string_start] = ACTIONS(3146), }, [371] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [sym__expression] = STATE(2286), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [372] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3158), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_COMMA] = ACTIONS(3158), @@ -92925,10 +92338,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1740), [anon_sym_where] = ACTIONS(3156), [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), [anon_sym_this] = ACTIONS(3156), [anon_sym_super] = ACTIONS(3156), [anon_sym_STAR] = ACTIONS(1750), @@ -92974,9 +92388,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(3156), [anon_sym_sealed] = ACTIONS(3156), [anon_sym_annotation] = ACTIONS(3156), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), [anon_sym_override] = ACTIONS(3156), [anon_sym_lateinit] = ACTIONS(3156), [anon_sym_public] = ACTIONS(3156), @@ -92995,8 +92409,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3156), [anon_sym_noinline] = ACTIONS(3156), [anon_sym_crossinline] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3158), [anon_sym_continue_AT] = ACTIONS(3158), @@ -93016,208 +92430,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3158), }, - [372] = { - [sym__expression] = STATE(4400), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, [373] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3168), - [anon_sym_fun] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3170), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3162), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3168), - [anon_sym_super] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(3160), [anon_sym_DOT_DOT] = ACTIONS(1756), [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_when] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3170), - [anon_sym_DASH_EQ] = ACTIONS(3170), - [anon_sym_STAR_EQ] = ACTIONS(3170), - [anon_sym_SLASH_EQ] = ACTIONS(3170), - [anon_sym_PERCENT_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), [anon_sym_PLUS] = ACTIONS(1778), [anon_sym_DASH] = ACTIONS(1778), [anon_sym_SLASH] = ACTIONS(1750), @@ -93225,96 +92511,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3168), + [anon_sym_BANG] = ACTIONS(3160), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3168), - [anon_sym_sealed] = ACTIONS(3168), - [anon_sym_annotation] = ACTIONS(3168), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_lateinit] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_internal] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_tailrec] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_infix] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym_external] = ACTIONS(3168), - [sym_property_modifier] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_final] = ACTIONS(3168), - [anon_sym_open] = ACTIONS(3168), - [anon_sym_vararg] = ACTIONS(3168), - [anon_sym_noinline] = ACTIONS(3168), - [anon_sym_crossinline] = ACTIONS(3168), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3170), - [anon_sym_continue_AT] = ACTIONS(3170), - [anon_sym_break_AT] = ACTIONS(3170), - [anon_sym_this_AT] = ACTIONS(3170), - [anon_sym_super_AT] = ACTIONS(3170), - [sym_real_literal] = ACTIONS(3170), - [sym_integer_literal] = ACTIONS(3168), - [sym_hex_literal] = ACTIONS(3170), - [sym_bin_literal] = ACTIONS(3170), - [anon_sym_true] = ACTIONS(3168), - [anon_sym_false] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), + [sym__automatic_semicolon] = ACTIONS(3162), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3170), + [sym__string_start] = ACTIONS(3162), }, [374] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3172), - [anon_sym_fun] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3169), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3169), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(3172), - [anon_sym_object] = ACTIONS(3172), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3172), - [anon_sym_super] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -93322,21 +92608,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1758), [anon_sym_AMP_AMP] = ACTIONS(1760), [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3174), - [anon_sym_DASH_EQ] = ACTIONS(3174), - [anon_sym_STAR_EQ] = ACTIONS(3174), - [anon_sym_SLASH_EQ] = ACTIONS(3174), - [anon_sym_PERCENT_EQ] = ACTIONS(3174), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -93353,352 +92639,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3167), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3172), - [anon_sym_sealed] = ACTIONS(3172), - [anon_sym_annotation] = ACTIONS(3172), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_lateinit] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_internal] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_tailrec] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_infix] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym_external] = ACTIONS(3172), - [sym_property_modifier] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_final] = ACTIONS(3172), - [anon_sym_open] = ACTIONS(3172), - [anon_sym_vararg] = ACTIONS(3172), - [anon_sym_noinline] = ACTIONS(3172), - [anon_sym_crossinline] = ACTIONS(3172), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3174), - [anon_sym_continue_AT] = ACTIONS(3174), - [anon_sym_break_AT] = ACTIONS(3174), - [anon_sym_this_AT] = ACTIONS(3174), - [anon_sym_super_AT] = ACTIONS(3174), - [sym_real_literal] = ACTIONS(3174), - [sym_integer_literal] = ACTIONS(3172), - [sym_hex_literal] = ACTIONS(3174), - [sym_bin_literal] = ACTIONS(3174), - [anon_sym_true] = ACTIONS(3172), - [anon_sym_false] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3174), + [sym__automatic_semicolon] = ACTIONS(3169), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3174), + [sym__string_start] = ACTIONS(3169), }, [375] = { - [sym__expression] = STATE(2291), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [376] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3184), - [anon_sym_fun] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(3184), - [anon_sym_object] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3184), - [anon_sym_super] = ACTIONS(3184), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_when] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3186), - [anon_sym_DASH_EQ] = ACTIONS(3186), - [anon_sym_STAR_EQ] = ACTIONS(3186), - [anon_sym_SLASH_EQ] = ACTIONS(3186), - [anon_sym_PERCENT_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3184), - [anon_sym_sealed] = ACTIONS(3184), - [anon_sym_annotation] = ACTIONS(3184), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_lateinit] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_internal] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_tailrec] = ACTIONS(3184), - [anon_sym_operator] = ACTIONS(3184), - [anon_sym_infix] = ACTIONS(3184), - [anon_sym_inline] = ACTIONS(3184), - [anon_sym_external] = ACTIONS(3184), - [sym_property_modifier] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_final] = ACTIONS(3184), - [anon_sym_open] = ACTIONS(3184), - [anon_sym_vararg] = ACTIONS(3184), - [anon_sym_noinline] = ACTIONS(3184), - [anon_sym_crossinline] = ACTIONS(3184), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3186), - [anon_sym_continue_AT] = ACTIONS(3186), - [anon_sym_break_AT] = ACTIONS(3186), - [anon_sym_this_AT] = ACTIONS(3186), - [anon_sym_super_AT] = ACTIONS(3186), - [sym_real_literal] = ACTIONS(3186), - [sym_integer_literal] = ACTIONS(3184), - [sym_hex_literal] = ACTIONS(3186), - [sym_bin_literal] = ACTIONS(3186), - [anon_sym_true] = ACTIONS(3184), - [anon_sym_false] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3186), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3186), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3186), - }, - [377] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3188), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3173), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_COMMA] = ACTIONS(3173), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), + [anon_sym_where] = ACTIONS(3171), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3188), - [anon_sym_super] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3171), + [anon_sym_super] = ACTIONS(3171), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -93706,21 +92736,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1758), [anon_sym_AMP_AMP] = ACTIONS(1760), [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_when] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_when] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), + [anon_sym_PLUS_EQ] = ACTIONS(3173), + [anon_sym_DASH_EQ] = ACTIONS(3173), + [anon_sym_STAR_EQ] = ACTIONS(3173), + [anon_sym_SLASH_EQ] = ACTIONS(3173), + [anon_sym_PERCENT_EQ] = ACTIONS(3173), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -93737,127 +92767,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3171), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3188), - [anon_sym_sealed] = ACTIONS(3188), - [anon_sym_annotation] = ACTIONS(3188), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_lateinit] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_internal] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_tailrec] = ACTIONS(3188), - [anon_sym_operator] = ACTIONS(3188), - [anon_sym_infix] = ACTIONS(3188), - [anon_sym_inline] = ACTIONS(3188), - [anon_sym_external] = ACTIONS(3188), - [sym_property_modifier] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_final] = ACTIONS(3188), - [anon_sym_open] = ACTIONS(3188), - [anon_sym_vararg] = ACTIONS(3188), - [anon_sym_noinline] = ACTIONS(3188), - [anon_sym_crossinline] = ACTIONS(3188), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [anon_sym_this_AT] = ACTIONS(3190), - [anon_sym_super_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3188), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3188), - [anon_sym_false] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3190), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3173), + [anon_sym_continue_AT] = ACTIONS(3173), + [anon_sym_break_AT] = ACTIONS(3173), + [anon_sym_this_AT] = ACTIONS(3173), + [anon_sym_super_AT] = ACTIONS(3173), + [sym_real_literal] = ACTIONS(3173), + [sym_integer_literal] = ACTIONS(3171), + [sym_hex_literal] = ACTIONS(3173), + [sym_bin_literal] = ACTIONS(3173), + [anon_sym_true] = ACTIONS(3171), + [anon_sym_false] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3173), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), + [sym__automatic_semicolon] = ACTIONS(3173), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [sym__string_start] = ACTIONS(3173), }, - [378] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), + [376] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3175), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_fun] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3177), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(3192), - [anon_sym_object] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3192), - [anon_sym_super] = ACTIONS(3192), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(3175), [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_when] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3194), - [anon_sym_DASH_EQ] = ACTIONS(3194), - [anon_sym_STAR_EQ] = ACTIONS(3194), - [anon_sym_SLASH_EQ] = ACTIONS(3194), - [anon_sym_PERCENT_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), [anon_sym_PLUS] = ACTIONS(1778), [anon_sym_DASH] = ACTIONS(1778), [anon_sym_SLASH] = ACTIONS(1750), @@ -93865,96 +92895,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_BANG] = ACTIONS(3175), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3192), - [anon_sym_sealed] = ACTIONS(3192), - [anon_sym_annotation] = ACTIONS(3192), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_lateinit] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_internal] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_tailrec] = ACTIONS(3192), - [anon_sym_operator] = ACTIONS(3192), - [anon_sym_infix] = ACTIONS(3192), - [anon_sym_inline] = ACTIONS(3192), - [anon_sym_external] = ACTIONS(3192), - [sym_property_modifier] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_final] = ACTIONS(3192), - [anon_sym_open] = ACTIONS(3192), - [anon_sym_vararg] = ACTIONS(3192), - [anon_sym_noinline] = ACTIONS(3192), - [anon_sym_crossinline] = ACTIONS(3192), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3194), - [anon_sym_continue_AT] = ACTIONS(3194), - [anon_sym_break_AT] = ACTIONS(3194), - [anon_sym_this_AT] = ACTIONS(3194), - [anon_sym_super_AT] = ACTIONS(3194), - [sym_real_literal] = ACTIONS(3194), - [sym_integer_literal] = ACTIONS(3192), - [sym_hex_literal] = ACTIONS(3194), - [sym_bin_literal] = ACTIONS(3194), - [anon_sym_true] = ACTIONS(3192), - [anon_sym_false] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3194), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3194), + [sym__string_start] = ACTIONS(3177), }, - [379] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1976), - [sym__in_operator] = STATE(1916), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1846), - [sym__multiplicative_operator] = STATE(1845), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [377] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3184), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_COMMA] = ACTIONS(3184), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -93962,21 +92992,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1758), [anon_sym_AMP_AMP] = ACTIONS(1760), [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -93993,724 +93023,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [anon_sym_this_AT] = ACTIONS(3198), - [anon_sym_super_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [380] = { - [sym_primary_constructor] = STATE(852), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(412), - [sym_type_constraints] = STATE(1021), - [sym_enum_class_body] = STATE(1147), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), - }, - [381] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_fun] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3097), - [anon_sym_super] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_null] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_when] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3097), - [anon_sym_throw] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3182), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3097), - [anon_sym_sealed] = ACTIONS(3097), - [anon_sym_annotation] = ACTIONS(3097), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3097), - [anon_sym_lateinit] = ACTIONS(3097), - [anon_sym_public] = ACTIONS(3097), - [anon_sym_private] = ACTIONS(3097), - [anon_sym_internal] = ACTIONS(3097), - [anon_sym_protected] = ACTIONS(3097), - [anon_sym_tailrec] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_infix] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym_external] = ACTIONS(3097), - [sym_property_modifier] = ACTIONS(3097), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_final] = ACTIONS(3097), - [anon_sym_open] = ACTIONS(3097), - [anon_sym_vararg] = ACTIONS(3097), - [anon_sym_noinline] = ACTIONS(3097), - [anon_sym_crossinline] = ACTIONS(3097), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3099), - [anon_sym_continue_AT] = ACTIONS(3099), - [anon_sym_break_AT] = ACTIONS(3099), - [anon_sym_this_AT] = ACTIONS(3099), - [anon_sym_super_AT] = ACTIONS(3099), - [sym_real_literal] = ACTIONS(3099), - [sym_integer_literal] = ACTIONS(3097), - [sym_hex_literal] = ACTIONS(3099), - [sym_bin_literal] = ACTIONS(3099), - [anon_sym_true] = ACTIONS(3097), - [anon_sym_false] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3099), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), + [sym__automatic_semicolon] = ACTIONS(3184), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3099), + [sym__string_start] = ACTIONS(3184), }, - [382] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3116), + [378] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3186), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3116), - [anon_sym_fun] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3188), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_object] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_this] = ACTIONS(3116), - [anon_sym_super] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_when] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3186), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3116), - [anon_sym_sealed] = ACTIONS(3116), - [anon_sym_annotation] = ACTIONS(3116), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_lateinit] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_internal] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_tailrec] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_infix] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym_external] = ACTIONS(3116), - [sym_property_modifier] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_final] = ACTIONS(3116), - [anon_sym_open] = ACTIONS(3116), - [anon_sym_vararg] = ACTIONS(3116), - [anon_sym_noinline] = ACTIONS(3116), - [anon_sym_crossinline] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [anon_sym_this_AT] = ACTIONS(3118), - [anon_sym_super_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3116), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3116), - [anon_sym_false] = ACTIONS(3116), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [sym__string_start] = ACTIONS(3188), }, - [383] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), + [379] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3193), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3168), - [anon_sym_fun] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3170), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3195), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3168), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3168), - [anon_sym_super] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_when] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3170), - [anon_sym_DASH_EQ] = ACTIONS(3170), - [anon_sym_STAR_EQ] = ACTIONS(3170), - [anon_sym_SLASH_EQ] = ACTIONS(3170), - [anon_sym_PERCENT_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3168), + [anon_sym_BANG] = ACTIONS(3193), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3168), - [anon_sym_sealed] = ACTIONS(3168), - [anon_sym_annotation] = ACTIONS(3168), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_lateinit] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_internal] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_tailrec] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_infix] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym_external] = ACTIONS(3168), - [sym_property_modifier] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_final] = ACTIONS(3168), - [anon_sym_open] = ACTIONS(3168), - [anon_sym_vararg] = ACTIONS(3168), - [anon_sym_noinline] = ACTIONS(3168), - [anon_sym_crossinline] = ACTIONS(3168), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3170), - [anon_sym_continue_AT] = ACTIONS(3170), - [anon_sym_break_AT] = ACTIONS(3170), - [anon_sym_this_AT] = ACTIONS(3170), - [anon_sym_super_AT] = ACTIONS(3170), - [sym_real_literal] = ACTIONS(3170), - [sym_integer_literal] = ACTIONS(3168), - [sym_hex_literal] = ACTIONS(3170), - [sym_bin_literal] = ACTIONS(3170), - [anon_sym_true] = ACTIONS(3168), - [anon_sym_false] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3170), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3195), + [anon_sym_continue_AT] = ACTIONS(3195), + [anon_sym_break_AT] = ACTIONS(3195), + [anon_sym_this_AT] = ACTIONS(3195), + [anon_sym_super_AT] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_hex_literal] = ACTIONS(3195), + [sym_bin_literal] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3170), + [sym__string_start] = ACTIONS(3195), }, - [384] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3109), + [380] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3193), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_fun] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3195), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_this] = ACTIONS(3109), - [anon_sym_super] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_null] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_when] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), [anon_sym_SLASH] = ACTIONS(1856), [anon_sym_PERCENT] = ACTIONS(1856), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(3193), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3109), - [anon_sym_sealed] = ACTIONS(3109), - [anon_sym_annotation] = ACTIONS(3109), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_lateinit] = ACTIONS(3109), - [anon_sym_public] = ACTIONS(3109), - [anon_sym_private] = ACTIONS(3109), - [anon_sym_internal] = ACTIONS(3109), - [anon_sym_protected] = ACTIONS(3109), - [anon_sym_tailrec] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_infix] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym_external] = ACTIONS(3109), - [sym_property_modifier] = ACTIONS(3109), - [anon_sym_abstract] = ACTIONS(3109), - [anon_sym_final] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_vararg] = ACTIONS(3109), - [anon_sym_noinline] = ACTIONS(3109), - [anon_sym_crossinline] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3111), - [anon_sym_continue_AT] = ACTIONS(3111), - [anon_sym_break_AT] = ACTIONS(3111), - [anon_sym_this_AT] = ACTIONS(3111), - [anon_sym_super_AT] = ACTIONS(3111), - [sym_real_literal] = ACTIONS(3111), - [sym_integer_literal] = ACTIONS(3109), - [sym_hex_literal] = ACTIONS(3111), - [sym_bin_literal] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3195), + [anon_sym_continue_AT] = ACTIONS(3195), + [anon_sym_break_AT] = ACTIONS(3195), + [anon_sym_this_AT] = ACTIONS(3195), + [anon_sym_super_AT] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_hex_literal] = ACTIONS(3195), + [sym_bin_literal] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3111), + [sym__string_start] = ACTIONS(3195), }, - [385] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [381] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym_fun] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3090), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3105), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3105), - [anon_sym_super] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -94718,21 +93500,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_when] = ACTIONS(3105), - [anon_sym_try] = ACTIONS(3105), - [anon_sym_throw] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_when] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_throw] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -94749,116 +93531,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3088), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3105), - [anon_sym_sealed] = ACTIONS(3105), - [anon_sym_annotation] = ACTIONS(3105), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3105), - [anon_sym_lateinit] = ACTIONS(3105), - [anon_sym_public] = ACTIONS(3105), - [anon_sym_private] = ACTIONS(3105), - [anon_sym_internal] = ACTIONS(3105), - [anon_sym_protected] = ACTIONS(3105), - [anon_sym_tailrec] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_infix] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym_external] = ACTIONS(3105), - [sym_property_modifier] = ACTIONS(3105), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_final] = ACTIONS(3105), - [anon_sym_open] = ACTIONS(3105), - [anon_sym_vararg] = ACTIONS(3105), - [anon_sym_noinline] = ACTIONS(3105), - [anon_sym_crossinline] = ACTIONS(3105), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3107), - [anon_sym_continue_AT] = ACTIONS(3107), - [anon_sym_break_AT] = ACTIONS(3107), - [anon_sym_this_AT] = ACTIONS(3107), - [anon_sym_super_AT] = ACTIONS(3107), - [sym_real_literal] = ACTIONS(3107), - [sym_integer_literal] = ACTIONS(3105), - [sym_hex_literal] = ACTIONS(3107), - [sym_bin_literal] = ACTIONS(3107), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3090), + [anon_sym_continue_AT] = ACTIONS(3090), + [anon_sym_break_AT] = ACTIONS(3090), + [anon_sym_this_AT] = ACTIONS(3090), + [anon_sym_super_AT] = ACTIONS(3090), + [sym_real_literal] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [sym_hex_literal] = ACTIONS(3090), + [sym_bin_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), + [sym__automatic_semicolon] = ACTIONS(3090), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3107), + [sym__string_start] = ACTIONS(3090), }, - [386] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [382] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3119), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3196), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), [anon_sym_DOT_DOT] = ACTIONS(1860), [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -94875,220 +93657,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_BANG] = ACTIONS(3117), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [anon_sym_this_AT] = ACTIONS(3198), - [anon_sym_super_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [387] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_fun] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_object] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_this] = ACTIONS(3149), - [anon_sym_super] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_null] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_when] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3149), - [anon_sym_throw] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3149), - [anon_sym_sealed] = ACTIONS(3149), - [anon_sym_annotation] = ACTIONS(3149), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3149), - [anon_sym_lateinit] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_internal] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_tailrec] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_infix] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym_external] = ACTIONS(3149), - [sym_property_modifier] = ACTIONS(3149), - [anon_sym_abstract] = ACTIONS(3149), - [anon_sym_final] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_vararg] = ACTIONS(3149), - [anon_sym_noinline] = ACTIONS(3149), - [anon_sym_crossinline] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3151), - [anon_sym_continue_AT] = ACTIONS(3151), - [anon_sym_break_AT] = ACTIONS(3151), - [anon_sym_this_AT] = ACTIONS(3151), - [anon_sym_super_AT] = ACTIONS(3151), - [sym_real_literal] = ACTIONS(3151), - [sym_integer_literal] = ACTIONS(3149), - [sym_hex_literal] = ACTIONS(3151), - [sym_bin_literal] = ACTIONS(3151), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3151), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), + [sym__automatic_semicolon] = ACTIONS(3119), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3151), + [sym__string_start] = ACTIONS(3119), }, - [388] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [383] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3169), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3101), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3101), - [anon_sym_super] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -95096,21 +93752,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_when] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -95127,81 +93783,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3167), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3101), - [anon_sym_sealed] = ACTIONS(3101), - [anon_sym_annotation] = ACTIONS(3101), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3101), - [anon_sym_lateinit] = ACTIONS(3101), - [anon_sym_public] = ACTIONS(3101), - [anon_sym_private] = ACTIONS(3101), - [anon_sym_internal] = ACTIONS(3101), - [anon_sym_protected] = ACTIONS(3101), - [anon_sym_tailrec] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_infix] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym_external] = ACTIONS(3101), - [sym_property_modifier] = ACTIONS(3101), - [anon_sym_abstract] = ACTIONS(3101), - [anon_sym_final] = ACTIONS(3101), - [anon_sym_open] = ACTIONS(3101), - [anon_sym_vararg] = ACTIONS(3101), - [anon_sym_noinline] = ACTIONS(3101), - [anon_sym_crossinline] = ACTIONS(3101), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3103), - [anon_sym_continue_AT] = ACTIONS(3103), - [anon_sym_break_AT] = ACTIONS(3103), - [anon_sym_this_AT] = ACTIONS(3103), - [anon_sym_super_AT] = ACTIONS(3103), - [sym_real_literal] = ACTIONS(3103), - [sym_integer_literal] = ACTIONS(3101), - [sym_hex_literal] = ACTIONS(3103), - [sym_bin_literal] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3101), - [anon_sym_false] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3103), + [sym__automatic_semicolon] = ACTIONS(3169), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3103), + [sym__string_start] = ACTIONS(3169), }, - [389] = { - [sym_primary_constructor] = STATE(870), - [sym_class_body] = STATE(1147), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(416), - [sym_type_constraints] = STATE(1024), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), + [384] = { + [sym_primary_constructor] = STATE(853), + [sym_class_body] = STATE(1023), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(420), + [sym_type_constraints] = STATE(939), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3234), + [anon_sym_COLON] = ACTIONS(3204), [anon_sym_LBRACK] = ACTIONS(3206), [anon_sym_as] = ACTIONS(3200), [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3210), [anon_sym_RBRACE] = ACTIONS(3206), [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_COMMA] = ACTIONS(3206), @@ -95209,6 +93864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(3200), [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), [anon_sym_DOT] = ACTIONS(3200), [anon_sym_SEMI] = ACTIONS(3206), [anon_sym_get] = ACTIONS(3200), @@ -95300,213 +93956,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3206), }, - [390] = { - [sym_primary_constructor] = STATE(847), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(417), - [sym_type_constraints] = STATE(1020), - [sym_enum_class_body] = STATE(1159), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3240), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), + [385] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1858), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_QMARK_COLON] = ACTIONS(1862), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), + [anon_sym_LT_EQ] = ACTIONS(1872), + [anon_sym_GT_EQ] = ACTIONS(1872), + [anon_sym_BANGin] = ACTIONS(1874), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3184), }, - [391] = { - [sym_primary_constructor] = STATE(849), - [sym_class_body] = STATE(1159), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(418), - [sym_type_constraints] = STATE(1018), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [386] = { + [sym_primary_constructor] = STATE(850), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(415), + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1186), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), + [anon_sym_COLON] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3238), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3238), [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), + [anon_sym_GT] = ACTIONS(3234), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -95534,105 +94190,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, - [392] = { - [sym_primary_constructor] = STATE(851), - [sym_class_body] = STATE(1137), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(420), - [sym_type_constraints] = STATE(976), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), + [387] = { + [sym_primary_constructor] = STATE(835), + [sym_class_body] = STATE(1186), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(414), + [sym_type_constraints] = STATE(983), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_fun] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3238), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3238), [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3234), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_this] = ACTIONS(3246), - [anon_sym_super] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3246), - [sym_label] = ACTIONS(3246), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_when] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_PLUS_EQ] = ACTIONS(3250), - [anon_sym_DASH_EQ] = ACTIONS(3250), - [anon_sym_STAR_EQ] = ACTIONS(3250), - [anon_sym_SLASH_EQ] = ACTIONS(3250), - [anon_sym_PERCENT_EQ] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_BANG_BANG] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -95660,87 +94316,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3250), - [anon_sym_continue_AT] = ACTIONS(3250), - [anon_sym_break_AT] = ACTIONS(3250), - [anon_sym_this_AT] = ACTIONS(3250), - [anon_sym_super_AT] = ACTIONS(3250), - [sym_real_literal] = ACTIONS(3250), - [sym_integer_literal] = ACTIONS(3246), - [sym_hex_literal] = ACTIONS(3250), - [sym_bin_literal] = ACTIONS(3250), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3250), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3250), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, - [393] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [388] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_QMARK_COLON] = ACTIONS(1862), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), + }, + [389] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3188), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3138), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3188), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3188), - [anon_sym_super] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), [anon_sym_DOT_DOT] = ACTIONS(1860), [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_when] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -95757,125 +94539,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3136), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3188), - [anon_sym_sealed] = ACTIONS(3188), - [anon_sym_annotation] = ACTIONS(3188), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_lateinit] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_internal] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_tailrec] = ACTIONS(3188), - [anon_sym_operator] = ACTIONS(3188), - [anon_sym_infix] = ACTIONS(3188), - [anon_sym_inline] = ACTIONS(3188), - [anon_sym_external] = ACTIONS(3188), - [sym_property_modifier] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_final] = ACTIONS(3188), - [anon_sym_open] = ACTIONS(3188), - [anon_sym_vararg] = ACTIONS(3188), - [anon_sym_noinline] = ACTIONS(3188), - [anon_sym_crossinline] = ACTIONS(3188), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [anon_sym_this_AT] = ACTIONS(3190), - [anon_sym_super_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3188), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3188), - [anon_sym_false] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3190), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), + [sym__automatic_semicolon] = ACTIONS(3138), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [sym__string_start] = ACTIONS(3138), }, - [394] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [390] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3142), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_object] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3088), + [anon_sym_in] = ACTIONS(1858), [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), + [anon_sym_QMARK_COLON] = ACTIONS(1862), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(1872), + [anon_sym_GT_EQ] = ACTIONS(1872), + [anon_sym_BANGin] = ACTIONS(1874), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), [anon_sym_PLUS] = ACTIONS(1876), [anon_sym_DASH] = ACTIONS(1876), [anon_sym_SLASH] = ACTIONS(1856), @@ -95883,377 +94665,503 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3140), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3090), - [anon_sym_continue_AT] = ACTIONS(3090), - [anon_sym_break_AT] = ACTIONS(3090), - [anon_sym_this_AT] = ACTIONS(3090), - [anon_sym_super_AT] = ACTIONS(3090), - [sym_real_literal] = ACTIONS(3090), - [sym_integer_literal] = ACTIONS(3088), - [sym_hex_literal] = ACTIONS(3090), - [sym_bin_literal] = ACTIONS(3090), - [anon_sym_true] = ACTIONS(3088), - [anon_sym_false] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3090), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), + [sym__automatic_semicolon] = ACTIONS(3142), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), + [sym__string_start] = ACTIONS(3142), }, - [395] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3123), + [391] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym_fun] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3125), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3127), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_object] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_this] = ACTIONS(3123), - [anon_sym_super] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_when] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_throw] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_STAR_EQ] = ACTIONS(3125), - [anon_sym_SLASH_EQ] = ACTIONS(3125), - [anon_sym_PERCENT_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), [anon_sym_SLASH] = ACTIONS(1856), [anon_sym_PERCENT] = ACTIONS(1856), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_BANG] = ACTIONS(3125), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3123), - [anon_sym_sealed] = ACTIONS(3123), - [anon_sym_annotation] = ACTIONS(3123), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_lateinit] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_tailrec] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3123), - [sym_property_modifier] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_vararg] = ACTIONS(3123), - [anon_sym_noinline] = ACTIONS(3123), - [anon_sym_crossinline] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3125), - [anon_sym_continue_AT] = ACTIONS(3125), - [anon_sym_break_AT] = ACTIONS(3125), - [anon_sym_this_AT] = ACTIONS(3125), - [anon_sym_super_AT] = ACTIONS(3125), - [sym_real_literal] = ACTIONS(3125), - [sym_integer_literal] = ACTIONS(3123), - [sym_hex_literal] = ACTIONS(3125), - [sym_bin_literal] = ACTIONS(3125), - [anon_sym_true] = ACTIONS(3123), - [anon_sym_false] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3125), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3127), + [anon_sym_continue_AT] = ACTIONS(3127), + [anon_sym_break_AT] = ACTIONS(3127), + [anon_sym_this_AT] = ACTIONS(3127), + [anon_sym_super_AT] = ACTIONS(3127), + [sym_real_literal] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(3125), + [sym_hex_literal] = ACTIONS(3127), + [sym_bin_literal] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3127), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3125), + [sym__string_start] = ACTIONS(3127), }, - [396] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), + [392] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3186), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3188), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3130), - [anon_sym_super] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_when] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3186), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_annotation] = ACTIONS(3130), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_lateinit] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_tailrec] = ACTIONS(3130), - [anon_sym_operator] = ACTIONS(3130), - [anon_sym_infix] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_external] = ACTIONS(3130), - [sym_property_modifier] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3130), - [anon_sym_noinline] = ACTIONS(3130), - [anon_sym_crossinline] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3132), - [anon_sym_continue_AT] = ACTIONS(3132), - [anon_sym_break_AT] = ACTIONS(3132), - [anon_sym_this_AT] = ACTIONS(3132), - [anon_sym_super_AT] = ACTIONS(3132), - [sym_real_literal] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(3130), - [sym_hex_literal] = ACTIONS(3132), - [sym_bin_literal] = ACTIONS(3132), - [anon_sym_true] = ACTIONS(3130), - [anon_sym_false] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3132), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3132), + [sym__string_start] = ACTIONS(3188), }, - [397] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), + [393] = { + [sym_primary_constructor] = STATE(2854), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(421), + [sym_type_constraints] = STATE(3012), + [sym_enum_class_body] = STATE(3244), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3248), + [anon_sym_continue_AT] = ACTIONS(3248), + [anon_sym_break_AT] = ACTIONS(3248), + [anon_sym_this_AT] = ACTIONS(3248), + [anon_sym_super_AT] = ACTIONS(3248), + [sym_real_literal] = ACTIONS(3248), + [sym_integer_literal] = ACTIONS(3244), + [sym_hex_literal] = ACTIONS(3248), + [sym_bin_literal] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3248), + }, + [394] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3175), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_fun] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3177), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_object] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3137), - [anon_sym_super] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), + [anon_sym_in] = ACTIONS(3175), [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_when] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), [anon_sym_PLUS] = ACTIONS(1876), [anon_sym_DASH] = ACTIONS(1876), [anon_sym_SLASH] = ACTIONS(1856), @@ -96261,134 +95169,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3175), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3139), - [anon_sym_continue_AT] = ACTIONS(3139), - [anon_sym_break_AT] = ACTIONS(3139), - [anon_sym_this_AT] = ACTIONS(3139), - [anon_sym_super_AT] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3139), - [sym_integer_literal] = ACTIONS(3137), - [sym_hex_literal] = ACTIONS(3139), - [sym_bin_literal] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3139), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3139), + [sym__string_start] = ACTIONS(3177), }, - [398] = { - [sym_primary_constructor] = STATE(2935), - [sym_class_body] = STATE(3228), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(410), - [sym_type_constraints] = STATE(3085), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), + [395] = { + [sym_primary_constructor] = STATE(855), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(411), + [sym_type_constraints] = STATE(928), + [sym_enum_class_body] = STATE(1175), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_fun] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3248), [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_this] = ACTIONS(3246), - [anon_sym_super] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3246), - [sym_label] = ACTIONS(3246), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_when] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_PLUS_EQ] = ACTIONS(3250), - [anon_sym_DASH_EQ] = ACTIONS(3250), - [anon_sym_STAR_EQ] = ACTIONS(3250), - [anon_sym_SLASH_EQ] = ACTIONS(3250), - [anon_sym_PERCENT_EQ] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_BANG_BANG] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -96416,87 +95324,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3250), - [anon_sym_continue_AT] = ACTIONS(3250), - [anon_sym_break_AT] = ACTIONS(3250), - [anon_sym_this_AT] = ACTIONS(3250), - [anon_sym_super_AT] = ACTIONS(3250), - [sym_real_literal] = ACTIONS(3250), - [sym_integer_literal] = ACTIONS(3246), - [sym_hex_literal] = ACTIONS(3250), - [sym_bin_literal] = ACTIONS(3250), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3250), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3250), + [anon_sym_return_AT] = ACTIONS(3248), + [anon_sym_continue_AT] = ACTIONS(3248), + [anon_sym_break_AT] = ACTIONS(3248), + [anon_sym_this_AT] = ACTIONS(3248), + [anon_sym_super_AT] = ACTIONS(3248), + [sym_real_literal] = ACTIONS(3248), + [sym_integer_literal] = ACTIONS(3244), + [sym_hex_literal] = ACTIONS(3248), + [sym_bin_literal] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3248), }, - [399] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [396] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_when] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), + }, + [397] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3145), - [anon_sym_fun] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3134), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3145), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3145), - [anon_sym_super] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), [anon_sym_DOT_DOT] = ACTIONS(1860), [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_null] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_when] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -96513,88 +95547,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3132), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3145), - [anon_sym_sealed] = ACTIONS(3145), - [anon_sym_annotation] = ACTIONS(3145), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_lateinit] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_tailrec] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym_external] = ACTIONS(3145), - [sym_property_modifier] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_vararg] = ACTIONS(3145), - [anon_sym_noinline] = ACTIONS(3145), - [anon_sym_crossinline] = ACTIONS(3145), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3147), - [anon_sym_continue_AT] = ACTIONS(3147), - [anon_sym_break_AT] = ACTIONS(3147), - [anon_sym_this_AT] = ACTIONS(3147), - [anon_sym_super_AT] = ACTIONS(3147), - [sym_real_literal] = ACTIONS(3147), - [sym_integer_literal] = ACTIONS(3145), - [sym_hex_literal] = ACTIONS(3147), - [sym_bin_literal] = ACTIONS(3147), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3147), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), + [sym__automatic_semicolon] = ACTIONS(3134), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3147), + [sym__string_start] = ACTIONS(3134), }, - [400] = { - [sym_primary_constructor] = STATE(2946), - [sym_class_body] = STATE(3334), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(422), - [sym_type_constraints] = STATE(3095), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), + [398] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1858), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_QMARK_COLON] = ACTIONS(1862), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), + [anon_sym_LT_EQ] = ACTIONS(1872), + [anon_sym_GT_EQ] = ACTIONS(1872), + [anon_sym_BANGin] = ACTIONS(1874), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), + }, + [399] = { + [sym_primary_constructor] = STATE(2839), + [sym_class_body] = STATE(3137), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(407), + [sym_type_constraints] = STATE(3047), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3260), [anon_sym_LBRACK] = ACTIONS(3206), [anon_sym_as] = ACTIONS(3200), [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3254), [anon_sym_COMMA] = ACTIONS(3206), [anon_sym_LT] = ACTIONS(3214), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3260), + [anon_sym_where] = ACTIONS(3256), [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), [anon_sym_DOT] = ACTIONS(3200), [anon_sym_SEMI] = ACTIONS(3206), [anon_sym_get] = ACTIONS(3200), @@ -96686,171 +95846,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3206), }, - [401] = { - [sym_primary_constructor] = STATE(2940), - [sym_class_body] = STATE(3268), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(414), - [sym_type_constraints] = STATE(3061), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), - }, - [402] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [400] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3158), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), [anon_sym_this] = ACTIONS(3156), [anon_sym_super] = ACTIONS(3156), [anon_sym_STAR] = ACTIONS(1856), @@ -96896,9 +95930,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(3156), [anon_sym_sealed] = ACTIONS(3156), [anon_sym_annotation] = ACTIONS(3156), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), [anon_sym_override] = ACTIONS(3156), [anon_sym_lateinit] = ACTIONS(3156), [anon_sym_public] = ACTIONS(3156), @@ -96917,8 +95951,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3156), [anon_sym_noinline] = ACTIONS(3156), [anon_sym_crossinline] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3158), [anon_sym_continue_AT] = ACTIONS(3158), @@ -96938,87 +95972,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3158), }, - [403] = { - [sym_primary_constructor] = STATE(2947), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(424), - [sym_type_constraints] = STATE(3100), - [sym_enum_class_body] = STATE(3334), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), + [401] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1858), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_QMARK_COLON] = ACTIONS(1862), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(1874), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3146), + }, + [402] = { + [sym_primary_constructor] = STATE(2844), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(409), + [sym_type_constraints] = STATE(2970), + [sym_enum_class_body] = STATE(3178), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3238), [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -97046,105 +96206,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, - [404] = { - [sym_primary_constructor] = STATE(2941), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(419), - [sym_type_constraints] = STATE(3054), - [sym_enum_class_body] = STATE(3268), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [403] = { + [sym_primary_constructor] = STATE(2846), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(410), + [sym_type_constraints] = STATE(3027), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3238), [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -97172,191 +96332,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), - }, - [405] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_fun] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3141), - [anon_sym_super] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_when] = ACTIONS(3141), - [anon_sym_try] = ACTIONS(3141), - [anon_sym_throw] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3143), - [anon_sym_continue_AT] = ACTIONS(3143), - [anon_sym_break_AT] = ACTIONS(3143), - [anon_sym_this_AT] = ACTIONS(3143), - [anon_sym_super_AT] = ACTIONS(3143), - [sym_real_literal] = ACTIONS(3143), - [sym_integer_literal] = ACTIONS(3141), - [sym_hex_literal] = ACTIONS(3143), - [sym_bin_literal] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3143), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3143), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, - [406] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [404] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_fun] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3173), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3192), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3192), - [anon_sym_super] = ACTIONS(3192), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3171), + [anon_sym_super] = ACTIONS(3171), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -97364,21 +96398,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_when] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_when] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3194), - [anon_sym_DASH_EQ] = ACTIONS(3194), - [anon_sym_STAR_EQ] = ACTIONS(3194), - [anon_sym_SLASH_EQ] = ACTIONS(3194), - [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3173), + [anon_sym_DASH_EQ] = ACTIONS(3173), + [anon_sym_STAR_EQ] = ACTIONS(3173), + [anon_sym_SLASH_EQ] = ACTIONS(3173), + [anon_sym_PERCENT_EQ] = ACTIONS(3173), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -97395,94 +96429,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_BANG] = ACTIONS(3171), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3192), - [anon_sym_sealed] = ACTIONS(3192), - [anon_sym_annotation] = ACTIONS(3192), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_lateinit] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_internal] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_tailrec] = ACTIONS(3192), - [anon_sym_operator] = ACTIONS(3192), - [anon_sym_infix] = ACTIONS(3192), - [anon_sym_inline] = ACTIONS(3192), - [anon_sym_external] = ACTIONS(3192), - [sym_property_modifier] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_final] = ACTIONS(3192), - [anon_sym_open] = ACTIONS(3192), - [anon_sym_vararg] = ACTIONS(3192), - [anon_sym_noinline] = ACTIONS(3192), - [anon_sym_crossinline] = ACTIONS(3192), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3194), - [anon_sym_continue_AT] = ACTIONS(3194), - [anon_sym_break_AT] = ACTIONS(3194), - [anon_sym_this_AT] = ACTIONS(3194), - [anon_sym_super_AT] = ACTIONS(3194), - [sym_real_literal] = ACTIONS(3194), - [sym_integer_literal] = ACTIONS(3192), - [sym_hex_literal] = ACTIONS(3194), - [sym_bin_literal] = ACTIONS(3194), - [anon_sym_true] = ACTIONS(3192), - [anon_sym_false] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3173), + [anon_sym_continue_AT] = ACTIONS(3173), + [anon_sym_break_AT] = ACTIONS(3173), + [anon_sym_this_AT] = ACTIONS(3173), + [anon_sym_super_AT] = ACTIONS(3173), + [sym_real_literal] = ACTIONS(3173), + [sym_integer_literal] = ACTIONS(3171), + [sym_hex_literal] = ACTIONS(3173), + [sym_bin_literal] = ACTIONS(3173), + [anon_sym_true] = ACTIONS(3171), + [anon_sym_false] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3173), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3173), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3194), + [sym__string_start] = ACTIONS(3173), }, - [407] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(2195), - [sym__comparison_operator] = STATE(2194), - [sym__in_operator] = STATE(2193), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(2190), - [sym__multiplicative_operator] = STATE(2189), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2188), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [405] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3172), - [anon_sym_fun] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3103), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3172), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3172), - [anon_sym_super] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_super] = ACTIONS(3101), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -97490,21 +96524,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1862), [anon_sym_AMP_AMP] = ACTIONS(1864), [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_when] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3174), - [anon_sym_DASH_EQ] = ACTIONS(3174), - [anon_sym_STAR_EQ] = ACTIONS(3174), - [anon_sym_SLASH_EQ] = ACTIONS(3174), - [anon_sym_PERCENT_EQ] = ACTIONS(3174), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -97521,133 +96555,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3101), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3172), - [anon_sym_sealed] = ACTIONS(3172), - [anon_sym_annotation] = ACTIONS(3172), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_lateinit] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_internal] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_tailrec] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_infix] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym_external] = ACTIONS(3172), - [sym_property_modifier] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_final] = ACTIONS(3172), - [anon_sym_open] = ACTIONS(3172), - [anon_sym_vararg] = ACTIONS(3172), - [anon_sym_noinline] = ACTIONS(3172), - [anon_sym_crossinline] = ACTIONS(3172), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3174), - [anon_sym_continue_AT] = ACTIONS(3174), - [anon_sym_break_AT] = ACTIONS(3174), - [anon_sym_this_AT] = ACTIONS(3174), - [anon_sym_super_AT] = ACTIONS(3174), - [sym_real_literal] = ACTIONS(3174), - [sym_integer_literal] = ACTIONS(3172), - [sym_hex_literal] = ACTIONS(3174), - [sym_bin_literal] = ACTIONS(3174), - [anon_sym_true] = ACTIONS(3172), - [anon_sym_false] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3103), + [anon_sym_continue_AT] = ACTIONS(3103), + [anon_sym_break_AT] = ACTIONS(3103), + [anon_sym_this_AT] = ACTIONS(3103), + [anon_sym_super_AT] = ACTIONS(3103), + [sym_real_literal] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(3101), + [sym_hex_literal] = ACTIONS(3103), + [sym_bin_literal] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3103), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3174), + [sym__automatic_semicolon] = ACTIONS(3103), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3174), + [sym__string_start] = ACTIONS(3103), }, - [408] = { - [sym_primary_constructor] = STATE(2984), - [sym_class_body] = STATE(3334), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(445), - [sym_type_constraints] = STATE(3095), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), + [406] = { + [sym_primary_constructor] = STATE(2884), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(439), + [sym_type_constraints] = STATE(3027), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -97675,104 +96709,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, - [409] = { - [sym_primary_constructor] = STATE(917), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(431), - [sym_type_constraints] = STATE(1021), - [sym_enum_class_body] = STATE(1147), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), + [407] = { + [sym_primary_constructor] = STATE(2843), + [sym_class_body] = STATE(3173), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3039), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), + [anon_sym_COLON] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [408] = { + [sym_primary_constructor] = STATE(862), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(432), + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1186), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3238), [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), + [anon_sym_GT] = ACTIONS(3234), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -97800,104 +96959,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, - [410] = { - [sym_primary_constructor] = STATE(2939), - [sym_class_body] = STATE(3264), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3064), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), + [409] = { + [sym_primary_constructor] = STATE(2851), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -97925,104 +97084,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [411] = { - [sym_primary_constructor] = STATE(925), - [sym_class_body] = STATE(1137), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(438), - [sym_type_constraints] = STATE(976), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), + [410] = { + [sym_primary_constructor] = STATE(2852), + [sym_class_body] = STATE(3061), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3015), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_fun] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_this] = ACTIONS(3246), - [anon_sym_super] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3246), - [sym_label] = ACTIONS(3246), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_when] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_PLUS_EQ] = ACTIONS(3250), - [anon_sym_DASH_EQ] = ACTIONS(3250), - [anon_sym_STAR_EQ] = ACTIONS(3250), - [anon_sym_SLASH_EQ] = ACTIONS(3250), - [anon_sym_PERCENT_EQ] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_BANG_BANG] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -98050,104 +97209,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3250), - [anon_sym_continue_AT] = ACTIONS(3250), - [anon_sym_break_AT] = ACTIONS(3250), - [anon_sym_this_AT] = ACTIONS(3250), - [anon_sym_super_AT] = ACTIONS(3250), - [sym_real_literal] = ACTIONS(3250), - [sym_integer_literal] = ACTIONS(3246), - [sym_hex_literal] = ACTIONS(3250), - [sym_bin_literal] = ACTIONS(3250), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3250), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3250), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [412] = { - [sym_primary_constructor] = STATE(856), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(959), - [sym_enum_class_body] = STATE(1057), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [411] = { + [sym_primary_constructor] = STATE(857), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(947), + [sym_enum_class_body] = STATE(1148), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), + [anon_sym_COLON] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -98175,104 +97334,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [413] = { - [sym_primary_constructor] = STATE(3023), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(436), - [sym_type_constraints] = STATE(3054), - [sym_enum_class_body] = STATE(3268), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [412] = { + [sym_primary_constructor] = STATE(2888), + [sym_class_body] = STATE(3137), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(429), + [sym_type_constraints] = STATE(3047), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3254), [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_this] = ACTIONS(3200), + [anon_sym_super] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_null] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_when] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3206), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -98300,104 +97459,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(3206), + [anon_sym_continue_AT] = ACTIONS(3206), + [anon_sym_break_AT] = ACTIONS(3206), + [anon_sym_this_AT] = ACTIONS(3206), + [anon_sym_super_AT] = ACTIONS(3206), + [sym_real_literal] = ACTIONS(3206), + [sym_integer_literal] = ACTIONS(3200), + [sym_hex_literal] = ACTIONS(3206), + [sym_bin_literal] = ACTIONS(3206), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3206), }, - [414] = { - [sym_primary_constructor] = STATE(2942), - [sym_class_body] = STATE(3304), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3053), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [413] = { + [sym_primary_constructor] = STATE(916), + [sym_class_body] = STATE(1186), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(426), + [sym_type_constraints] = STATE(983), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), [anon_sym_COLON] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -98425,104 +97584,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, - [415] = { - [sym_primary_constructor] = STATE(3014), - [sym_class_body] = STATE(3268), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(434), - [sym_type_constraints] = STATE(3061), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [414] = { + [sym_primary_constructor] = STATE(829), + [sym_class_body] = STATE(1068), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(969), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -98550,104 +97709,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [416] = { - [sym_primary_constructor] = STATE(853), - [sym_class_body] = STATE(1057), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(998), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [415] = { + [sym_primary_constructor] = STATE(832), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), + [anon_sym_COLON] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -98675,104 +97834,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [417] = { - [sym_primary_constructor] = STATE(879), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(975), - [sym_enum_class_body] = STATE(1200), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [416] = { + [sym_primary_constructor] = STATE(922), + [sym_class_body] = STATE(1023), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(423), + [sym_type_constraints] = STATE(939), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), [anon_sym_constructor] = ACTIONS(3208), [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3206), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3200), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_this] = ACTIONS(3200), + [anon_sym_super] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_null] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_when] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3206), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -98800,104 +97959,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [anon_sym_return_AT] = ACTIONS(3206), + [anon_sym_continue_AT] = ACTIONS(3206), + [anon_sym_break_AT] = ACTIONS(3206), + [anon_sym_this_AT] = ACTIONS(3206), + [anon_sym_super_AT] = ACTIONS(3206), + [sym_real_literal] = ACTIONS(3206), + [sym_integer_literal] = ACTIONS(3200), + [sym_hex_literal] = ACTIONS(3206), + [sym_bin_literal] = ACTIONS(3206), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3206), }, - [418] = { - [sym_primary_constructor] = STATE(845), - [sym_class_body] = STATE(1200), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(1002), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [417] = { + [sym_primary_constructor] = STATE(890), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(428), + [sym_type_constraints] = STATE(928), + [sym_enum_class_body] = STATE(1175), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), + [anon_sym_COLON] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3248), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3244), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -98925,104 +98084,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [anon_sym_return_AT] = ACTIONS(3248), + [anon_sym_continue_AT] = ACTIONS(3248), + [anon_sym_break_AT] = ACTIONS(3248), + [anon_sym_this_AT] = ACTIONS(3248), + [anon_sym_super_AT] = ACTIONS(3248), + [sym_real_literal] = ACTIONS(3248), + [sym_integer_literal] = ACTIONS(3244), + [sym_hex_literal] = ACTIONS(3248), + [sym_bin_literal] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3248), }, - [419] = { - [sym_primary_constructor] = STATE(2943), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3078), - [sym_enum_class_body] = STATE(3304), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [418] = { + [sym_primary_constructor] = STATE(2895), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(422), + [sym_type_constraints] = STATE(2970), + [sym_enum_class_body] = STATE(3178), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -99050,104 +98209,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, - [420] = { - [sym_primary_constructor] = STATE(850), - [sym_class_body] = STATE(1148), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(958), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), + [419] = { + [sym_primary_constructor] = STATE(2921), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(427), + [sym_type_constraints] = STATE(3012), + [sym_enum_class_body] = STATE(3244), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -99175,104 +98334,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_return_AT] = ACTIONS(3248), + [anon_sym_continue_AT] = ACTIONS(3248), + [anon_sym_break_AT] = ACTIONS(3248), + [anon_sym_this_AT] = ACTIONS(3248), + [anon_sym_super_AT] = ACTIONS(3248), + [sym_real_literal] = ACTIONS(3248), + [sym_integer_literal] = ACTIONS(3244), + [sym_hex_literal] = ACTIONS(3248), + [sym_bin_literal] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3248), }, - [421] = { - [sym_primary_constructor] = STATE(918), - [sym_class_body] = STATE(1147), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(435), - [sym_type_constraints] = STATE(1024), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), + [420] = { + [sym_primary_constructor] = STATE(859), + [sym_class_body] = STATE(1180), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(945), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3310), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -99300,104 +98459,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, - [422] = { - [sym_primary_constructor] = STATE(2948), - [sym_class_body] = STATE(3204), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3107), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [421] = { + [sym_primary_constructor] = STATE(2855), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -99425,104 +98584,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [423] = { - [sym_primary_constructor] = STATE(2990), - [sym_class_body] = STATE(3228), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(428), - [sym_type_constraints] = STATE(3085), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), + [422] = { + [sym_primary_constructor] = STATE(2907), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_fun] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_this] = ACTIONS(3246), - [anon_sym_super] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3246), - [sym_label] = ACTIONS(3246), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_when] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_PLUS_EQ] = ACTIONS(3250), - [anon_sym_DASH_EQ] = ACTIONS(3250), - [anon_sym_STAR_EQ] = ACTIONS(3250), - [anon_sym_SLASH_EQ] = ACTIONS(3250), - [anon_sym_PERCENT_EQ] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_BANG_BANG] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -99550,104 +98708,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3250), - [anon_sym_continue_AT] = ACTIONS(3250), - [anon_sym_break_AT] = ACTIONS(3250), - [anon_sym_this_AT] = ACTIONS(3250), - [anon_sym_super_AT] = ACTIONS(3250), - [sym_real_literal] = ACTIONS(3250), - [sym_integer_literal] = ACTIONS(3246), - [sym_hex_literal] = ACTIONS(3250), - [sym_bin_literal] = ACTIONS(3250), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3250), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3250), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [424] = { - [sym_primary_constructor] = STATE(2923), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3134), - [sym_enum_class_body] = STATE(3204), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [423] = { + [sym_primary_constructor] = STATE(923), + [sym_class_body] = STATE(1180), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(945), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -99675,104 +98832,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [424] = { + [sym_type_constraints] = STATE(456), + [sym_property_delegate] = STATE(503), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, [425] = { - [sym_primary_constructor] = STATE(921), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(437), - [sym_type_constraints] = STATE(1020), - [sym_enum_class_body] = STATE(1159), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [sym_type_constraints] = STATE(446), + [sym_property_delegate] = STATE(506), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), + }, + [426] = { + [sym_primary_constructor] = STATE(893), + [sym_class_body] = STATE(1068), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(969), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3318), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), + [anon_sym_COLON] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), [anon_sym_constructor] = ACTIONS(3208), [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3282), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -99800,104 +99204,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [426] = { - [sym_primary_constructor] = STATE(922), - [sym_class_body] = STATE(1159), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(439), - [sym_type_constraints] = STATE(1018), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [427] = { + [sym_primary_constructor] = STATE(2937), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -99925,104 +99328,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [427] = { - [sym_primary_constructor] = STATE(2980), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(442), - [sym_type_constraints] = STATE(3100), - [sym_enum_class_body] = STATE(3334), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), + [428] = { + [sym_primary_constructor] = STATE(888), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(947), + [sym_enum_class_body] = STATE(1148), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3322), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_COLON] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -100050,103 +99452,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [428] = { - [sym_primary_constructor] = STATE(3013), - [sym_class_body] = STATE(3264), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3064), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), + [429] = { + [sym_primary_constructor] = STATE(2896), + [sym_class_body] = STATE(3173), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3039), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -100174,103 +99576,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, - [429] = { - [sym_type_constraints] = STATE(454), - [sym_property_delegate] = STATE(519), - [sym_getter] = STATE(3244), - [sym_setter] = STATE(3244), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3332), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_COMMA] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), + [430] = { + [sym_type_constraints] = STATE(442), + [sym_property_delegate] = STATE(513), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(3326), - [anon_sym_super] = ACTIONS(3326), - [anon_sym_STAR] = ACTIONS(3326), - [sym_label] = ACTIONS(3326), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_when] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_PLUS_EQ] = ACTIONS(3330), - [anon_sym_DASH_EQ] = ACTIONS(3330), - [anon_sym_STAR_EQ] = ACTIONS(3330), - [anon_sym_SLASH_EQ] = ACTIONS(3330), - [anon_sym_PERCENT_EQ] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_BANG_BANG] = ACTIONS(3330), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -100295,64 +99697,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3330), - [anon_sym_continue_AT] = ACTIONS(3330), - [anon_sym_break_AT] = ACTIONS(3330), - [anon_sym_this_AT] = ACTIONS(3330), - [anon_sym_super_AT] = ACTIONS(3330), - [sym_real_literal] = ACTIONS(3330), - [sym_integer_literal] = ACTIONS(3326), - [sym_hex_literal] = ACTIONS(3330), - [sym_bin_literal] = ACTIONS(3330), - [anon_sym_true] = ACTIONS(3326), - [anon_sym_false] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3330), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3330), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [430] = { - [sym_type_constraints] = STATE(467), - [sym_property_delegate] = STATE(515), - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [431] = { + [sym_type_constraints] = STATE(440), + [sym_property_delegate] = STATE(508), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), [anon_sym_EQ] = ACTIONS(3348), - [anon_sym_fun] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3334), + [anon_sym_by] = ACTIONS(3320), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3344), @@ -100419,8 +99821,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -100440,85 +99842,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [431] = { - [sym_primary_constructor] = STATE(915), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(959), - [sym_enum_class_body] = STATE(1057), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [432] = { + [sym_primary_constructor] = STATE(913), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), [anon_sym_COLON] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -100546,103 +99948,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [432] = { - [sym_type_constraints] = STATE(465), - [sym_property_delegate] = STATE(501), - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), + [433] = { + [sym_type_constraints] = STATE(448), + [sym_property_delegate] = STATE(511), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), [anon_sym_EQ] = ACTIONS(3354), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -100667,106 +100069,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [433] = { - [sym_type_constraints] = STATE(466), - [sym_property_delegate] = STATE(504), - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(3360), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), + [434] = { + [sym_type_constraints] = STATE(449), + [sym_property_delegate] = STATE(480), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -100791,974 +100193,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), - }, - [434] = { - [sym_primary_constructor] = STATE(3019), - [sym_class_body] = STATE(3304), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3053), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, [435] = { - [sym_primary_constructor] = STATE(916), - [sym_class_body] = STATE(1057), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(998), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), + [sym_type_constraints] = STATE(454), + [sym_property_delegate] = STATE(498), + [sym_getter] = STATE(1029), + [sym_setter] = STATE(1029), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), - }, - [436] = { - [sym_primary_constructor] = STATE(2998), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3078), - [sym_enum_class_body] = STATE(3304), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [437] = { - [sym_primary_constructor] = STATE(919), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(975), - [sym_enum_class_body] = STATE(1200), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [438] = { - [sym_primary_constructor] = STATE(924), - [sym_class_body] = STATE(1148), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(958), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [439] = { - [sym_primary_constructor] = STATE(920), - [sym_class_body] = STATE(1200), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(1002), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [440] = { - [sym_type_constraints] = STATE(452), - [sym_property_delegate] = STATE(487), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3374), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), - }, - [441] = { - [sym_type_constraints] = STATE(461), - [sym_property_delegate] = STATE(521), - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3376), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -101783,602 +100317,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), - }, - [442] = { - [sym_primary_constructor] = STATE(2958), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3134), - [sym_enum_class_body] = STATE(3204), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3378), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, - [443] = { + [436] = { [sym_type_constraints] = STATE(453), - [sym_property_delegate] = STATE(516), - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3380), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), - }, - [444] = { - [sym_type_constraints] = STATE(460), - [sym_property_delegate] = STATE(488), - [sym_getter] = STATE(1116), - [sym_setter] = STATE(1116), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3382), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_COMMA] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3384), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(3326), - [anon_sym_super] = ACTIONS(3326), - [anon_sym_STAR] = ACTIONS(3326), - [sym_label] = ACTIONS(3326), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_when] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_PLUS_EQ] = ACTIONS(3330), - [anon_sym_DASH_EQ] = ACTIONS(3330), - [anon_sym_STAR_EQ] = ACTIONS(3330), - [anon_sym_SLASH_EQ] = ACTIONS(3330), - [anon_sym_PERCENT_EQ] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_BANG_BANG] = ACTIONS(3330), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3330), - [anon_sym_continue_AT] = ACTIONS(3330), - [anon_sym_break_AT] = ACTIONS(3330), - [anon_sym_this_AT] = ACTIONS(3330), - [anon_sym_super_AT] = ACTIONS(3330), - [sym_real_literal] = ACTIONS(3330), - [sym_integer_literal] = ACTIONS(3326), - [sym_hex_literal] = ACTIONS(3330), - [sym_bin_literal] = ACTIONS(3330), - [anon_sym_true] = ACTIONS(3326), - [anon_sym_false] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3330), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3330), - }, - [445] = { - [sym_primary_constructor] = STATE(2987), - [sym_class_body] = STATE(3204), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3107), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3386), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), - }, - [446] = { - [sym_type_constraints] = STATE(448), - [sym_property_delegate] = STATE(497), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3388), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), + [sym_property_delegate] = STATE(510), + [sym_getter] = STATE(3149), + [sym_setter] = STATE(3149), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -102403,64 +100441,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, - [447] = { - [sym_type_constraints] = STATE(450), - [sym_property_delegate] = STATE(499), - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [437] = { + [sym_type_constraints] = STATE(445), + [sym_property_delegate] = STATE(487), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3390), - [anon_sym_fun] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3370), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3334), + [anon_sym_by] = ACTIONS(3320), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3392), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3344), @@ -102527,8 +100565,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -102548,84 +100586,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [448] = { - [sym_property_delegate] = STATE(487), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), + [438] = { + [sym_type_constraints] = STATE(458), + [sym_property_delegate] = STATE(514), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), [anon_sym_EQ] = ACTIONS(3374), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -102650,105 +100689,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), + }, + [439] = { + [sym_primary_constructor] = STATE(2919), + [sym_class_body] = STATE(3061), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3015), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3376), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [449] = { - [sym_type_constraints] = STATE(507), - [sym_property_delegate] = STATE(597), - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3394), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [440] = { + [sym_property_delegate] = STATE(480), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -102773,105 +100936,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [450] = { - [sym_property_delegate] = STATE(501), - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(3354), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [441] = { + [sym_type_constraints] = STATE(507), + [sym_property_delegate] = STATE(556), + [sym_getter] = STATE(3149), + [sym_setter] = STATE(3149), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -102896,63 +101059,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, - [451] = { - [sym_type_constraints] = STATE(498), - [sym_property_delegate] = STATE(585), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [442] = { + [sym_property_delegate] = STATE(483), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3402), - [anon_sym_fun] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3388), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3396), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(3320), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(1732), [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), [anon_sym_this] = ACTIONS(1732), [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1732), @@ -103019,8 +101182,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1734), [anon_sym_continue_AT] = ACTIONS(1734), @@ -103040,288 +101203,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1734), }, - [452] = { - [sym_property_delegate] = STATE(491), - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3408), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), - }, - [453] = { - [sym_property_delegate] = STATE(511), - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3410), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), - }, - [454] = { - [sym_property_delegate] = STATE(515), - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [443] = { + [sym_type_constraints] = STATE(496), + [sym_property_delegate] = STATE(545), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3348), - [anon_sym_fun] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3390), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3334), + [anon_sym_by] = ACTIONS(3380), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3392), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3344), @@ -103388,8 +101305,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -103409,84 +101326,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [455] = { - [sym_type_constraints] = STATE(508), - [sym_property_delegate] = STATE(604), - [sym_getter] = STATE(3244), - [sym_setter] = STATE(3244), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3412), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), + [444] = { + [sym_type_constraints] = STATE(479), + [sym_property_delegate] = STATE(595), + [sym_getter] = STATE(1029), + [sym_setter] = STATE(1029), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(3326), - [anon_sym_super] = ACTIONS(3326), - [anon_sym_STAR] = ACTIONS(3326), - [sym_label] = ACTIONS(3326), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_when] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_PLUS_EQ] = ACTIONS(3330), - [anon_sym_DASH_EQ] = ACTIONS(3330), - [anon_sym_STAR_EQ] = ACTIONS(3330), - [anon_sym_SLASH_EQ] = ACTIONS(3330), - [anon_sym_PERCENT_EQ] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_BANG_BANG] = ACTIONS(3330), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3400), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103511,105 +101428,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3330), - [anon_sym_continue_AT] = ACTIONS(3330), - [anon_sym_break_AT] = ACTIONS(3330), - [anon_sym_this_AT] = ACTIONS(3330), - [anon_sym_super_AT] = ACTIONS(3330), - [sym_real_literal] = ACTIONS(3330), - [sym_integer_literal] = ACTIONS(3326), - [sym_hex_literal] = ACTIONS(3330), - [sym_bin_literal] = ACTIONS(3330), - [anon_sym_true] = ACTIONS(3326), - [anon_sym_false] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3330), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3330), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, - [456] = { - [sym_type_constraints] = STATE(509), - [sym_property_delegate] = STATE(602), - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3416), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [445] = { + [sym_property_delegate] = STATE(511), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103634,105 +101551,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [457] = { - [sym_type_constraints] = STATE(523), - [sym_property_delegate] = STATE(567), - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(3418), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [446] = { + [sym_property_delegate] = STATE(513), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103757,105 +101674,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [458] = { - [sym_type_constraints] = STATE(522), - [sym_property_delegate] = STATE(553), - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), + [447] = { + [sym_type_constraints] = STATE(505), + [sym_property_delegate] = STATE(589), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103880,105 +101797,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [459] = { - [sym_type_constraints] = STATE(518), - [sym_property_delegate] = STATE(555), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3424), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [448] = { + [sym_property_delegate] = STATE(503), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104003,63 +101920,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), - }, - [460] = { - [sym_property_delegate] = STATE(499), - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), + }, + [449] = { + [sym_property_delegate] = STATE(506), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), + }, + [450] = { + [sym_type_constraints] = STATE(501), + [sym_property_delegate] = STATE(549), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [451] = { + [sym_type_constraints] = STATE(500), + [sym_property_delegate] = STATE(553), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3390), - [anon_sym_fun] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3406), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3334), + [anon_sym_by] = ACTIONS(3380), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3392), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3344), @@ -104126,8 +102289,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -104147,84 +102310,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [461] = { - [sym_property_delegate] = STATE(516), - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3380), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [452] = { + [sym_type_constraints] = STATE(495), + [sym_property_delegate] = STATE(547), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104249,63 +102412,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1792), }, - [462] = { - [sym_type_constraints] = STATE(494), - [sym_property_delegate] = STATE(609), - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [453] = { + [sym_property_delegate] = STATE(487), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3426), - [anon_sym_fun] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3370), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3396), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3320), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(3344), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3428), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3344), @@ -104372,8 +102535,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -104393,84 +102556,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [463] = { - [sym_type_constraints] = STATE(496), - [sym_property_delegate] = STATE(608), - [sym_getter] = STATE(1116), - [sym_setter] = STATE(1116), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3430), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3432), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(3326), - [anon_sym_super] = ACTIONS(3326), - [anon_sym_STAR] = ACTIONS(3326), - [sym_label] = ACTIONS(3326), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_when] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_PLUS_EQ] = ACTIONS(3330), - [anon_sym_DASH_EQ] = ACTIONS(3330), - [anon_sym_STAR_EQ] = ACTIONS(3330), - [anon_sym_SLASH_EQ] = ACTIONS(3330), - [anon_sym_PERCENT_EQ] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_BANG_BANG] = ACTIONS(3330), + [454] = { + [sym_property_delegate] = STATE(508), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104495,105 +102658,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3330), - [anon_sym_continue_AT] = ACTIONS(3330), - [anon_sym_break_AT] = ACTIONS(3330), - [anon_sym_this_AT] = ACTIONS(3330), - [anon_sym_super_AT] = ACTIONS(3330), - [sym_real_literal] = ACTIONS(3330), - [sym_integer_literal] = ACTIONS(3326), - [sym_hex_literal] = ACTIONS(3330), - [sym_bin_literal] = ACTIONS(3330), - [anon_sym_true] = ACTIONS(3326), - [anon_sym_false] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3330), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3330), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [464] = { - [sym_type_constraints] = STATE(505), - [sym_property_delegate] = STATE(605), - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(3434), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), + [455] = { + [sym_type_constraints] = STATE(491), + [sym_property_delegate] = STATE(568), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104618,105 +102781,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [465] = { - [sym_property_delegate] = STATE(521), - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3376), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [456] = { + [sym_property_delegate] = STATE(514), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104741,105 +102904,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [466] = { - [sym_property_delegate] = STATE(497), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3388), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [457] = { + [sym_type_constraints] = STATE(493), + [sym_property_delegate] = STATE(560), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104864,105 +103027,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [467] = { - [sym_property_delegate] = STATE(504), - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(3360), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), + [458] = { + [sym_property_delegate] = STATE(485), + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3416), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104987,320 +103150,931 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [468] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [459] = { + [sym_type_constraints] = STATE(494), + [sym_property_delegate] = STATE(557), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [460] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3184), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3107), + [anon_sym_COMMA] = ACTIONS(3184), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(3105), - [anon_sym_object] = ACTIONS(3105), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3105), - [anon_sym_super] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_when] = ACTIONS(3105), - [anon_sym_try] = ACTIONS(3105), - [anon_sym_throw] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3182), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3105), - [anon_sym_sealed] = ACTIONS(3105), - [anon_sym_annotation] = ACTIONS(3105), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3105), - [anon_sym_lateinit] = ACTIONS(3105), - [anon_sym_public] = ACTIONS(3105), - [anon_sym_private] = ACTIONS(3105), - [anon_sym_internal] = ACTIONS(3105), - [anon_sym_protected] = ACTIONS(3105), - [anon_sym_tailrec] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_infix] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym_external] = ACTIONS(3105), - [sym_property_modifier] = ACTIONS(3105), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_final] = ACTIONS(3105), - [anon_sym_open] = ACTIONS(3105), - [anon_sym_vararg] = ACTIONS(3105), - [anon_sym_noinline] = ACTIONS(3105), - [anon_sym_crossinline] = ACTIONS(3105), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3107), - [anon_sym_continue_AT] = ACTIONS(3107), - [anon_sym_break_AT] = ACTIONS(3107), - [anon_sym_this_AT] = ACTIONS(3107), - [anon_sym_super_AT] = ACTIONS(3107), - [sym_real_literal] = ACTIONS(3107), - [sym_integer_literal] = ACTIONS(3105), - [sym_hex_literal] = ACTIONS(3107), - [sym_bin_literal] = ACTIONS(3107), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), + [sym__automatic_semicolon] = ACTIONS(3184), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3107), + [sym__string_start] = ACTIONS(3184), }, - [469] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3149), + [461] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), + }, + [462] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3173), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_where] = ACTIONS(3149), - [anon_sym_object] = ACTIONS(3149), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3171), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_this] = ACTIONS(3149), - [anon_sym_super] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3171), + [anon_sym_super] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_null] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_when] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3149), - [anon_sym_throw] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_when] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3171), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3149), - [anon_sym_sealed] = ACTIONS(3149), - [anon_sym_annotation] = ACTIONS(3149), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3149), - [anon_sym_lateinit] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_internal] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_tailrec] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_infix] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym_external] = ACTIONS(3149), - [sym_property_modifier] = ACTIONS(3149), - [anon_sym_abstract] = ACTIONS(3149), - [anon_sym_final] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_vararg] = ACTIONS(3149), - [anon_sym_noinline] = ACTIONS(3149), - [anon_sym_crossinline] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3151), - [anon_sym_continue_AT] = ACTIONS(3151), - [anon_sym_break_AT] = ACTIONS(3151), - [anon_sym_this_AT] = ACTIONS(3151), - [anon_sym_super_AT] = ACTIONS(3151), - [sym_real_literal] = ACTIONS(3151), - [sym_integer_literal] = ACTIONS(3149), - [sym_hex_literal] = ACTIONS(3151), - [sym_bin_literal] = ACTIONS(3151), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3151), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3173), + [anon_sym_continue_AT] = ACTIONS(3173), + [anon_sym_break_AT] = ACTIONS(3173), + [anon_sym_this_AT] = ACTIONS(3173), + [anon_sym_super_AT] = ACTIONS(3173), + [sym_real_literal] = ACTIONS(3173), + [sym_integer_literal] = ACTIONS(3171), + [sym_hex_literal] = ACTIONS(3173), + [sym_bin_literal] = ACTIONS(3173), + [anon_sym_true] = ACTIONS(3171), + [anon_sym_false] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3173), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3173), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3151), + [sym__string_start] = ACTIONS(3173), }, - [470] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [463] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3195), + [anon_sym_continue_AT] = ACTIONS(3195), + [anon_sym_break_AT] = ACTIONS(3195), + [anon_sym_this_AT] = ACTIONS(3195), + [anon_sym_super_AT] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_hex_literal] = ACTIONS(3195), + [sym_bin_literal] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3195), + }, + [464] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), + }, + [465] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3127), + [anon_sym_continue_AT] = ACTIONS(3127), + [anon_sym_break_AT] = ACTIONS(3127), + [anon_sym_this_AT] = ACTIONS(3127), + [anon_sym_super_AT] = ACTIONS(3127), + [sym_real_literal] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(3125), + [sym_hex_literal] = ACTIONS(3127), + [sym_bin_literal] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3127), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3127), + }, + [466] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3103), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_COMMA] = ACTIONS(3103), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1928), [anon_sym_where] = ACTIONS(3101), [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), [anon_sym_this] = ACTIONS(3101), [anon_sym_super] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), [anon_sym_null] = ACTIONS(3101), [anon_sym_if] = ACTIONS(3101), [anon_sym_else] = ACTIONS(3101), @@ -105311,19 +104085,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(3101), [anon_sym_break] = ACTIONS(3101), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), @@ -105332,9 +104106,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(3101), [anon_sym_sealed] = ACTIONS(3101), [anon_sym_annotation] = ACTIONS(3101), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), [anon_sym_override] = ACTIONS(3101), [anon_sym_lateinit] = ACTIONS(3101), [anon_sym_public] = ACTIONS(3101), @@ -105353,8 +104127,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3101), [anon_sym_noinline] = ACTIONS(3101), [anon_sym_crossinline] = ACTIONS(3101), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3103), [anon_sym_continue_AT] = ACTIONS(3103), @@ -105374,1397 +104148,1275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3103), }, - [471] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3109), + [467] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3142), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_this] = ACTIONS(3109), - [anon_sym_super] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_null] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_when] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(3140), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3109), - [anon_sym_sealed] = ACTIONS(3109), - [anon_sym_annotation] = ACTIONS(3109), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_lateinit] = ACTIONS(3109), - [anon_sym_public] = ACTIONS(3109), - [anon_sym_private] = ACTIONS(3109), - [anon_sym_internal] = ACTIONS(3109), - [anon_sym_protected] = ACTIONS(3109), - [anon_sym_tailrec] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_infix] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym_external] = ACTIONS(3109), - [sym_property_modifier] = ACTIONS(3109), - [anon_sym_abstract] = ACTIONS(3109), - [anon_sym_final] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_vararg] = ACTIONS(3109), - [anon_sym_noinline] = ACTIONS(3109), - [anon_sym_crossinline] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3111), - [anon_sym_continue_AT] = ACTIONS(3111), - [anon_sym_break_AT] = ACTIONS(3111), - [anon_sym_this_AT] = ACTIONS(3111), - [anon_sym_super_AT] = ACTIONS(3111), - [sym_real_literal] = ACTIONS(3111), - [sym_integer_literal] = ACTIONS(3109), - [sym_hex_literal] = ACTIONS(3111), - [sym_bin_literal] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3111), + [sym__string_start] = ACTIONS(3142), }, - [472] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3116), + [468] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3094), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3096), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_where] = ACTIONS(3116), - [anon_sym_object] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_this] = ACTIONS(3116), - [anon_sym_super] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_when] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_when] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3094), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3116), - [anon_sym_sealed] = ACTIONS(3116), - [anon_sym_annotation] = ACTIONS(3116), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_lateinit] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_internal] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_tailrec] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_infix] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym_external] = ACTIONS(3116), - [sym_property_modifier] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_final] = ACTIONS(3116), - [anon_sym_open] = ACTIONS(3116), - [anon_sym_vararg] = ACTIONS(3116), - [anon_sym_noinline] = ACTIONS(3116), - [anon_sym_crossinline] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [anon_sym_this_AT] = ACTIONS(3118), - [anon_sym_super_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3116), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3116), - [anon_sym_false] = ACTIONS(3116), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [sym__string_start] = ACTIONS(3096), }, - [473] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [469] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3119), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3119), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(3172), - [anon_sym_object] = ACTIONS(3172), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3172), - [anon_sym_super] = ACTIONS(3172), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3117), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3172), - [anon_sym_sealed] = ACTIONS(3172), - [anon_sym_annotation] = ACTIONS(3172), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_lateinit] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_internal] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_tailrec] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_infix] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym_external] = ACTIONS(3172), - [sym_property_modifier] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_final] = ACTIONS(3172), - [anon_sym_open] = ACTIONS(3172), - [anon_sym_vararg] = ACTIONS(3172), - [anon_sym_noinline] = ACTIONS(3172), - [anon_sym_crossinline] = ACTIONS(3172), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3174), - [anon_sym_continue_AT] = ACTIONS(3174), - [anon_sym_break_AT] = ACTIONS(3174), - [anon_sym_this_AT] = ACTIONS(3174), - [anon_sym_super_AT] = ACTIONS(3174), - [sym_real_literal] = ACTIONS(3174), - [sym_integer_literal] = ACTIONS(3172), - [sym_hex_literal] = ACTIONS(3174), - [sym_bin_literal] = ACTIONS(3174), - [anon_sym_true] = ACTIONS(3172), - [anon_sym_false] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3174), + [sym__automatic_semicolon] = ACTIONS(3119), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3174), + [sym__string_start] = ACTIONS(3119), }, - [474] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [470] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3146), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_COMMA] = ACTIONS(3146), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(3184), - [anon_sym_object] = ACTIONS(3184), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3184), - [anon_sym_super] = ACTIONS(3184), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_when] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3144), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3184), - [anon_sym_sealed] = ACTIONS(3184), - [anon_sym_annotation] = ACTIONS(3184), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_lateinit] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_internal] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_tailrec] = ACTIONS(3184), - [anon_sym_operator] = ACTIONS(3184), - [anon_sym_infix] = ACTIONS(3184), - [anon_sym_inline] = ACTIONS(3184), - [anon_sym_external] = ACTIONS(3184), - [sym_property_modifier] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_final] = ACTIONS(3184), - [anon_sym_open] = ACTIONS(3184), - [anon_sym_vararg] = ACTIONS(3184), - [anon_sym_noinline] = ACTIONS(3184), - [anon_sym_crossinline] = ACTIONS(3184), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3186), - [anon_sym_continue_AT] = ACTIONS(3186), - [anon_sym_break_AT] = ACTIONS(3186), - [anon_sym_this_AT] = ACTIONS(3186), - [anon_sym_super_AT] = ACTIONS(3186), - [sym_real_literal] = ACTIONS(3186), - [sym_integer_literal] = ACTIONS(3184), - [sym_hex_literal] = ACTIONS(3186), - [sym_bin_literal] = ACTIONS(3186), - [anon_sym_true] = ACTIONS(3184), - [anon_sym_false] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3186), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3186), - }, - [475] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_object] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_this] = ACTIONS(3123), - [anon_sym_super] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(1938), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_when] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_throw] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3123), - [anon_sym_sealed] = ACTIONS(3123), - [anon_sym_annotation] = ACTIONS(3123), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_lateinit] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_tailrec] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3123), - [sym_property_modifier] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_vararg] = ACTIONS(3123), - [anon_sym_noinline] = ACTIONS(3123), - [anon_sym_crossinline] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3125), - [anon_sym_continue_AT] = ACTIONS(3125), - [anon_sym_break_AT] = ACTIONS(3125), - [anon_sym_this_AT] = ACTIONS(3125), - [anon_sym_super_AT] = ACTIONS(3125), - [sym_real_literal] = ACTIONS(3125), - [sym_integer_literal] = ACTIONS(3123), - [sym_hex_literal] = ACTIONS(3125), - [sym_bin_literal] = ACTIONS(3125), - [anon_sym_true] = ACTIONS(3123), - [anon_sym_false] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3125), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), + [sym__automatic_semicolon] = ACTIONS(3146), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3125), + [sym__string_start] = ACTIONS(3146), }, - [476] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [471] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3134), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3130), - [anon_sym_super] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_when] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_annotation] = ACTIONS(3130), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_lateinit] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_tailrec] = ACTIONS(3130), - [anon_sym_operator] = ACTIONS(3130), - [anon_sym_infix] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_external] = ACTIONS(3130), - [sym_property_modifier] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3130), - [anon_sym_noinline] = ACTIONS(3130), - [anon_sym_crossinline] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3132), - [anon_sym_continue_AT] = ACTIONS(3132), - [anon_sym_break_AT] = ACTIONS(3132), - [anon_sym_this_AT] = ACTIONS(3132), - [anon_sym_super_AT] = ACTIONS(3132), - [sym_real_literal] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(3130), - [sym_hex_literal] = ACTIONS(3132), - [sym_bin_literal] = ACTIONS(3132), - [anon_sym_true] = ACTIONS(3130), - [anon_sym_false] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3132), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), + [sym__automatic_semicolon] = ACTIONS(3134), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3132), + [sym__string_start] = ACTIONS(3134), }, - [477] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [472] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3169), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3169), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_where] = ACTIONS(3137), - [anon_sym_object] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3137), - [anon_sym_super] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_when] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3167), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3139), - [anon_sym_continue_AT] = ACTIONS(3139), - [anon_sym_break_AT] = ACTIONS(3139), - [anon_sym_this_AT] = ACTIONS(3139), - [anon_sym_super_AT] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3139), - [sym_integer_literal] = ACTIONS(3137), - [sym_hex_literal] = ACTIONS(3139), - [sym_bin_literal] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3139), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), + [sym__automatic_semicolon] = ACTIONS(3169), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3139), + [sym__string_start] = ACTIONS(3169), }, - [478] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [473] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3162), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(3097), - [anon_sym_object] = ACTIONS(3097), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3097), - [anon_sym_super] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_null] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_when] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3097), - [anon_sym_throw] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3160), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3097), - [anon_sym_sealed] = ACTIONS(3097), - [anon_sym_annotation] = ACTIONS(3097), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3097), - [anon_sym_lateinit] = ACTIONS(3097), - [anon_sym_public] = ACTIONS(3097), - [anon_sym_private] = ACTIONS(3097), - [anon_sym_internal] = ACTIONS(3097), - [anon_sym_protected] = ACTIONS(3097), - [anon_sym_tailrec] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_infix] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym_external] = ACTIONS(3097), - [sym_property_modifier] = ACTIONS(3097), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_final] = ACTIONS(3097), - [anon_sym_open] = ACTIONS(3097), - [anon_sym_vararg] = ACTIONS(3097), - [anon_sym_noinline] = ACTIONS(3097), - [anon_sym_crossinline] = ACTIONS(3097), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3099), - [anon_sym_continue_AT] = ACTIONS(3099), - [anon_sym_break_AT] = ACTIONS(3099), - [anon_sym_this_AT] = ACTIONS(3099), - [anon_sym_super_AT] = ACTIONS(3099), - [sym_real_literal] = ACTIONS(3099), - [sym_integer_literal] = ACTIONS(3097), - [sym_hex_literal] = ACTIONS(3099), - [sym_bin_literal] = ACTIONS(3099), - [anon_sym_true] = ACTIONS(3097), - [anon_sym_false] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3099), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), + [sym__automatic_semicolon] = ACTIONS(3162), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3099), + [sym__string_start] = ACTIONS(3162), }, - [479] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), + [474] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3175), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3177), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3141), - [anon_sym_super] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_when] = ACTIONS(3141), - [anon_sym_try] = ACTIONS(3141), - [anon_sym_throw] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3175), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3143), - [anon_sym_continue_AT] = ACTIONS(3143), - [anon_sym_break_AT] = ACTIONS(3143), - [anon_sym_this_AT] = ACTIONS(3143), - [anon_sym_super_AT] = ACTIONS(3143), - [sym_real_literal] = ACTIONS(3143), - [sym_integer_literal] = ACTIONS(3141), - [sym_hex_literal] = ACTIONS(3143), - [sym_bin_literal] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3143), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3143), + [sym__string_start] = ACTIONS(3177), }, - [480] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), + [475] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3186), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3188), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(3145), - [anon_sym_object] = ACTIONS(3145), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3145), - [anon_sym_super] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_null] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_when] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3186), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3145), - [anon_sym_sealed] = ACTIONS(3145), - [anon_sym_annotation] = ACTIONS(3145), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_lateinit] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_tailrec] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym_external] = ACTIONS(3145), - [sym_property_modifier] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_vararg] = ACTIONS(3145), - [anon_sym_noinline] = ACTIONS(3145), - [anon_sym_crossinline] = ACTIONS(3145), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3147), - [anon_sym_continue_AT] = ACTIONS(3147), - [anon_sym_break_AT] = ACTIONS(3147), - [anon_sym_this_AT] = ACTIONS(3147), - [anon_sym_super_AT] = ACTIONS(3147), - [sym_real_literal] = ACTIONS(3147), - [sym_integer_literal] = ACTIONS(3145), - [sym_hex_literal] = ACTIONS(3147), - [sym_bin_literal] = ACTIONS(3147), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3147), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3147), + [sym__string_start] = ACTIONS(3188), }, - [481] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [476] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3138), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3170), + [anon_sym_COMMA] = ACTIONS(3138), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3168), - [anon_sym_super] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_when] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3168), + [anon_sym_BANG] = ACTIONS(3136), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3168), - [anon_sym_sealed] = ACTIONS(3168), - [anon_sym_annotation] = ACTIONS(3168), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_lateinit] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_internal] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_tailrec] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_infix] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym_external] = ACTIONS(3168), - [sym_property_modifier] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_final] = ACTIONS(3168), - [anon_sym_open] = ACTIONS(3168), - [anon_sym_vararg] = ACTIONS(3168), - [anon_sym_noinline] = ACTIONS(3168), - [anon_sym_crossinline] = ACTIONS(3168), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3170), - [anon_sym_continue_AT] = ACTIONS(3170), - [anon_sym_break_AT] = ACTIONS(3170), - [anon_sym_this_AT] = ACTIONS(3170), - [anon_sym_super_AT] = ACTIONS(3170), - [sym_real_literal] = ACTIONS(3170), - [sym_integer_literal] = ACTIONS(3168), - [sym_hex_literal] = ACTIONS(3170), - [sym_bin_literal] = ACTIONS(3170), - [anon_sym_true] = ACTIONS(3168), - [anon_sym_false] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), + [sym__automatic_semicolon] = ACTIONS(3138), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3170), + [sym__string_start] = ACTIONS(3138), }, - [482] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [477] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3090), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), [anon_sym_where] = ACTIONS(3088), [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), [anon_sym_this] = ACTIONS(3088), [anon_sym_super] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), [anon_sym_null] = ACTIONS(3088), [anon_sym_if] = ACTIONS(3088), [anon_sym_else] = ACTIONS(3088), @@ -106775,19 +105427,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(3088), [anon_sym_break] = ACTIONS(3088), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), @@ -106796,9 +105448,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(3088), [anon_sym_sealed] = ACTIONS(3088), [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), [anon_sym_override] = ACTIONS(3088), [anon_sym_lateinit] = ACTIONS(3088), [anon_sym_public] = ACTIONS(3088), @@ -106817,8 +105469,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3088), [anon_sym_noinline] = ACTIONS(3088), [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3090), [anon_sym_continue_AT] = ACTIONS(3090), @@ -106838,649 +105490,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3090), }, - [483] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(3192), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3192), - [anon_sym_super] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(1938), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_when] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3192), - [anon_sym_sealed] = ACTIONS(3192), - [anon_sym_annotation] = ACTIONS(3192), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_lateinit] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_internal] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_tailrec] = ACTIONS(3192), - [anon_sym_operator] = ACTIONS(3192), - [anon_sym_infix] = ACTIONS(3192), - [anon_sym_inline] = ACTIONS(3192), - [anon_sym_external] = ACTIONS(3192), - [sym_property_modifier] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_final] = ACTIONS(3192), - [anon_sym_open] = ACTIONS(3192), - [anon_sym_vararg] = ACTIONS(3192), - [anon_sym_noinline] = ACTIONS(3192), - [anon_sym_crossinline] = ACTIONS(3192), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3194), - [anon_sym_continue_AT] = ACTIONS(3194), - [anon_sym_break_AT] = ACTIONS(3194), - [anon_sym_this_AT] = ACTIONS(3194), - [anon_sym_super_AT] = ACTIONS(3194), - [sym_real_literal] = ACTIONS(3194), - [sym_integer_literal] = ACTIONS(3192), - [sym_hex_literal] = ACTIONS(3194), - [sym_bin_literal] = ACTIONS(3194), - [anon_sym_true] = ACTIONS(3192), - [anon_sym_false] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3194), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3194), - }, - [484] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(1938), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [anon_sym_this_AT] = ACTIONS(3198), - [anon_sym_super_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [485] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3156), - [anon_sym_super] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(1938), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_when] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3156), - [anon_sym_sealed] = ACTIONS(3156), - [anon_sym_annotation] = ACTIONS(3156), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_lateinit] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_internal] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_tailrec] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_infix] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym_external] = ACTIONS(3156), - [sym_property_modifier] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_final] = ACTIONS(3156), - [anon_sym_open] = ACTIONS(3156), - [anon_sym_vararg] = ACTIONS(3156), - [anon_sym_noinline] = ACTIONS(3156), - [anon_sym_crossinline] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3158), - [anon_sym_continue_AT] = ACTIONS(3158), - [anon_sym_break_AT] = ACTIONS(3158), - [anon_sym_this_AT] = ACTIONS(3158), - [anon_sym_super_AT] = ACTIONS(3158), - [sym_real_literal] = ACTIONS(3158), - [sym_integer_literal] = ACTIONS(3156), - [sym_hex_literal] = ACTIONS(3158), - [sym_bin_literal] = ACTIONS(3158), - [anon_sym_true] = ACTIONS(3156), - [anon_sym_false] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3158), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3158), - }, - [486] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1628), - [sym__in_operator] = STATE(1627), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1625), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1624), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [478] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3123), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_COMMA] = ACTIONS(3123), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_object] = ACTIONS(3121), + [anon_sym_fun] = ACTIONS(3121), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3188), - [anon_sym_super] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3121), + [anon_sym_super] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(1936), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_QMARK_COLON] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1948), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_when] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_when] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_BANGin] = ACTIONS(1956), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3121), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3188), - [anon_sym_sealed] = ACTIONS(3188), - [anon_sym_annotation] = ACTIONS(3188), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_lateinit] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_internal] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_tailrec] = ACTIONS(3188), - [anon_sym_operator] = ACTIONS(3188), - [anon_sym_infix] = ACTIONS(3188), - [anon_sym_inline] = ACTIONS(3188), - [anon_sym_external] = ACTIONS(3188), - [sym_property_modifier] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_final] = ACTIONS(3188), - [anon_sym_open] = ACTIONS(3188), - [anon_sym_vararg] = ACTIONS(3188), - [anon_sym_noinline] = ACTIONS(3188), - [anon_sym_crossinline] = ACTIONS(3188), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [anon_sym_this_AT] = ACTIONS(3190), - [anon_sym_super_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3188), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3188), - [anon_sym_false] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3190), + [anon_sym_suspend] = ACTIONS(3121), + [anon_sym_sealed] = ACTIONS(3121), + [anon_sym_annotation] = ACTIONS(3121), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_lateinit] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_internal] = ACTIONS(3121), + [anon_sym_protected] = ACTIONS(3121), + [anon_sym_tailrec] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_infix] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_external] = ACTIONS(3121), + [sym_property_modifier] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_final] = ACTIONS(3121), + [anon_sym_open] = ACTIONS(3121), + [anon_sym_vararg] = ACTIONS(3121), + [anon_sym_noinline] = ACTIONS(3121), + [anon_sym_crossinline] = ACTIONS(3121), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3123), + [anon_sym_continue_AT] = ACTIONS(3123), + [anon_sym_break_AT] = ACTIONS(3123), + [anon_sym_this_AT] = ACTIONS(3123), + [anon_sym_super_AT] = ACTIONS(3123), + [sym_real_literal] = ACTIONS(3123), + [sym_integer_literal] = ACTIONS(3121), + [sym_hex_literal] = ACTIONS(3123), + [sym_bin_literal] = ACTIONS(3123), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3123), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), + [sym__automatic_semicolon] = ACTIONS(3123), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [487] = { - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [sym__string_start] = ACTIONS(3123), }, - [488] = { - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [479] = { + [sym_property_delegate] = STATE(545), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_fun] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3390), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3380), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), [anon_sym_SEMI] = ACTIONS(3392), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3344), @@ -107547,8 +105712,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -107568,270 +105733,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [489] = { - [sym_getter] = STATE(1201), - [sym_setter] = STATE(1201), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_fun] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_object] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(3436), - [anon_sym_super] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3436), - [sym_label] = ACTIONS(3436), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_null] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_when] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3438), - [anon_sym_continue_AT] = ACTIONS(3438), - [anon_sym_break_AT] = ACTIONS(3438), - [anon_sym_this_AT] = ACTIONS(3438), - [anon_sym_super_AT] = ACTIONS(3438), - [sym_real_literal] = ACTIONS(3438), - [sym_integer_literal] = ACTIONS(3436), - [sym_hex_literal] = ACTIONS(3438), - [sym_bin_literal] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [anon_sym_SQUOTE] = ACTIONS(3438), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3438), - }, - [490] = { - [sym_getter] = STATE(3269), - [sym_setter] = STATE(3269), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [sym_label] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), - }, - [491] = { - [sym_getter] = STATE(3230), - [sym_setter] = STATE(3230), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [480] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), @@ -107840,10 +105762,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1790), [anon_sym_where] = ACTIONS(1790), [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1790), @@ -107910,8 +105833,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1792), [anon_sym_continue_AT] = ACTIONS(1792), @@ -107931,82 +105854,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [492] = { - [sym_getter] = STATE(3230), - [sym_setter] = STATE(3230), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [481] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -108031,49 +105954,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [493] = { - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [482] = { + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_fun] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), @@ -108082,10 +106004,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(3344), [anon_sym_where] = ACTIONS(3344), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3344), @@ -108152,8 +106075,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -108173,149 +106096,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [494] = { - [sym_property_delegate] = STATE(605), - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(3434), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), - }, - [495] = { - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [483] = { + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), @@ -108324,10 +106125,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1808), [anon_sym_where] = ACTIONS(1808), [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1808), @@ -108394,8 +106196,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1810), [anon_sym_continue_AT] = ACTIONS(1810), @@ -108415,203 +106217,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [496] = { - [sym_property_delegate] = STATE(609), - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3426), - [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3428), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), - }, - [497] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [484] = { + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -108636,61 +106317,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [498] = { - [sym_property_delegate] = STATE(586), - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [485] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3440), - [anon_sym_fun] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3396), + [anon_sym_COMMA] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1808), @@ -108757,8 +106438,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1810), [anon_sym_continue_AT] = ACTIONS(1810), @@ -108778,82 +106459,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [499] = { - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [486] = { + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -108878,103 +106559,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [500] = { - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [487] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -108999,103 +106680,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [501] = { - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [488] = { + [sym_getter] = STATE(3111), + [sym_setter] = STATE(3111), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -109120,103 +106801,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), }, - [502] = { - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [489] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [490] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -109241,61 +107043,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1792), }, - [503] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [491] = { + [sym_property_delegate] = STATE(579), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3424), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(3380), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), [anon_sym_this] = ACTIONS(1732), [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1732), @@ -109362,8 +107164,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1734), [anon_sym_continue_AT] = ACTIONS(1734), @@ -109383,82 +107185,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1734), }, - [504] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [492] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -109483,103 +107285,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [505] = { - [sym_property_delegate] = STATE(602), - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3416), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [493] = { + [sym_property_delegate] = STATE(568), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -109604,103 +107406,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [506] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [494] = { + [sym_property_delegate] = STATE(560), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -109725,61 +107527,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), + [sym__string_start] = ACTIONS(1792), }, - [507] = { - [sym_property_delegate] = STATE(593), - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [495] = { + [sym_property_delegate] = STATE(589), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), + }, + [496] = { + [sym_property_delegate] = STATE(557), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [497] = { + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3442), - [anon_sym_fun] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3396), + [anon_sym_COMMA] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1808), @@ -109846,8 +107890,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1810), [anon_sym_continue_AT] = ACTIONS(1810), @@ -109867,40 +107911,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [508] = { - [sym_property_delegate] = STATE(553), - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [498] = { + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_fun] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3396), + [anon_sym_COMMA] = ACTIONS(3346), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3344), @@ -109967,8 +108011,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -109988,270 +108032,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [509] = { - [sym_property_delegate] = STATE(597), - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3394), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), - }, - [510] = { - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), - }, - [511] = { - [sym_getter] = STATE(1186), - [sym_setter] = STATE(1186), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [499] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), @@ -110260,10 +108061,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1790), [anon_sym_where] = ACTIONS(1790), [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1790), @@ -110330,8 +108132,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1792), [anon_sym_continue_AT] = ACTIONS(1792), @@ -110351,82 +108153,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [512] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [500] = { + [sym_property_delegate] = STATE(549), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -110451,61 +108253,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [513] = { - [sym_getter] = STATE(1186), - [sym_setter] = STATE(1186), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [501] = { + [sym_property_delegate] = STATE(547), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3410), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3380), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1790), @@ -110572,8 +108374,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1792), [anon_sym_continue_AT] = ACTIONS(1792), @@ -110593,203 +108395,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [514] = { - [sym_getter] = STATE(3282), - [sym_setter] = STATE(3282), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_fun] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_object] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(3436), - [anon_sym_super] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3436), - [sym_label] = ACTIONS(3436), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_null] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_when] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3438), - [anon_sym_continue_AT] = ACTIONS(3438), - [anon_sym_break_AT] = ACTIONS(3438), - [anon_sym_this_AT] = ACTIONS(3438), - [anon_sym_super_AT] = ACTIONS(3438), - [sym_real_literal] = ACTIONS(3438), - [sym_integer_literal] = ACTIONS(3436), - [sym_hex_literal] = ACTIONS(3438), - [sym_bin_literal] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [anon_sym_SQUOTE] = ACTIONS(3438), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3438), - }, - [515] = { - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [502] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -110814,103 +108495,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [516] = { - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [503] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -110935,103 +108616,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [517] = { - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [504] = { + [sym_getter] = STATE(1099), + [sym_setter] = STATE(1099), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111056,61 +108737,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), }, - [518] = { - [sym_property_delegate] = STATE(585), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [505] = { + [sym_property_delegate] = STATE(583), + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3402), - [anon_sym_fun] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3426), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3396), + [anon_sym_by] = ACTIONS(3380), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), [anon_sym_this] = ACTIONS(1732), [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1732), @@ -111177,8 +108858,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1734), [anon_sym_continue_AT] = ACTIONS(1734), @@ -111198,28 +108879,511 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1734), }, - [519] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [506] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), + }, + [507] = { + [sym_property_delegate] = STATE(553), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), + }, + [508] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [509] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [510] = { + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), @@ -111228,10 +109392,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(3344), [anon_sym_where] = ACTIONS(3344), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3344), @@ -111298,8 +109463,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -111319,82 +109484,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [520] = { - [sym_getter] = STATE(1190), - [sym_setter] = STATE(1190), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [sym_label] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_BANG_BANG] = ACTIONS(1802), + [511] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111419,49 +109584,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [521] = { - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9508), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [512] = { + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), + }, + [513] = { + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), @@ -111470,10 +109755,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1732), [anon_sym_where] = ACTIONS(1732), [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3358), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), [anon_sym_this] = ACTIONS(1732), [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1732), @@ -111540,8 +109826,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1734), [anon_sym_continue_AT] = ACTIONS(1734), @@ -111561,82 +109847,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1734), }, - [522] = { - [sym_property_delegate] = STATE(567), - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(3418), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [514] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111661,103 +109947,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [523] = { - [sym_property_delegate] = STATE(555), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3424), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [515] = { + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111782,103 +110068,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [524] = { - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9527), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [516] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111903,102 +110189,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [525] = { - [sym_primary_constructor] = STATE(1371), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(566), - [sym_type_constraints] = STATE(1021), - [sym_enum_class_body] = STATE(1147), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), + [517] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2028), + [anon_sym_PERCENT] = ACTIONS(2006), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3127), + [anon_sym_continue_AT] = ACTIONS(3127), + [anon_sym_break_AT] = ACTIONS(3127), + [anon_sym_this_AT] = ACTIONS(3127), + [anon_sym_super_AT] = ACTIONS(3127), + [sym_real_literal] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(3125), + [sym_hex_literal] = ACTIONS(3127), + [sym_bin_literal] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3127), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3127), + }, + [518] = { + [sym_primary_constructor] = STATE(1349), + [sym_class_body] = STATE(1186), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(563), + [sym_type_constraints] = STATE(983), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), + [anon_sym_COLON] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), [anon_sym_constructor] = ACTIONS(3208), [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_RBRACE] = ACTIONS(3238), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_COMMA] = ACTIONS(3238), [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), + [anon_sym_GT] = ACTIONS(3234), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -112026,64 +110432,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, - [526] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [519] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3115), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3196), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -112091,15 +110497,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -112117,119 +110523,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_BANG] = ACTIONS(3113), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [anon_sym_this_AT] = ACTIONS(3198), - [anon_sym_super_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3115), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [sym__string_start] = ACTIONS(3115), }, - [527] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), + [520] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3094), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3096), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3097), - [anon_sym_super] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_null] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_when] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3097), - [anon_sym_throw] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_when] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), [anon_sym_PLUS] = ACTIONS(2026), [anon_sym_DASH] = ACTIONS(2026), [anon_sym_SLASH] = ACTIONS(2028), @@ -112237,116 +110643,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3094), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3097), - [anon_sym_sealed] = ACTIONS(3097), - [anon_sym_annotation] = ACTIONS(3097), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3097), - [anon_sym_lateinit] = ACTIONS(3097), - [anon_sym_public] = ACTIONS(3097), - [anon_sym_private] = ACTIONS(3097), - [anon_sym_internal] = ACTIONS(3097), - [anon_sym_protected] = ACTIONS(3097), - [anon_sym_tailrec] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_infix] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym_external] = ACTIONS(3097), - [sym_property_modifier] = ACTIONS(3097), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_final] = ACTIONS(3097), - [anon_sym_open] = ACTIONS(3097), - [anon_sym_vararg] = ACTIONS(3097), - [anon_sym_noinline] = ACTIONS(3097), - [anon_sym_crossinline] = ACTIONS(3097), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3099), - [anon_sym_continue_AT] = ACTIONS(3099), - [anon_sym_break_AT] = ACTIONS(3099), - [anon_sym_this_AT] = ACTIONS(3099), - [anon_sym_super_AT] = ACTIONS(3099), - [sym_real_literal] = ACTIONS(3099), - [sym_integer_literal] = ACTIONS(3097), - [sym_hex_literal] = ACTIONS(3099), - [sym_bin_literal] = ACTIONS(3099), - [anon_sym_true] = ACTIONS(3097), - [anon_sym_false] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3099), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3099), + [sym__string_start] = ACTIONS(3096), }, - [528] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [521] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3119), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_object] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3137), - [anon_sym_super] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), [anon_sym_DOT_DOT] = ACTIONS(2010), [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_when] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2022), + [anon_sym_GT_EQ] = ACTIONS(2022), [anon_sym_BANGin] = ACTIONS(2024), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), @@ -112357,109 +110763,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3117), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3139), - [anon_sym_continue_AT] = ACTIONS(3139), - [anon_sym_break_AT] = ACTIONS(3139), - [anon_sym_this_AT] = ACTIONS(3139), - [anon_sym_super_AT] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3139), - [sym_integer_literal] = ACTIONS(3137), - [sym_hex_literal] = ACTIONS(3139), - [sym_bin_literal] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3139), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), + [sym__automatic_semicolon] = ACTIONS(3119), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3139), + [sym__string_start] = ACTIONS(3119), }, - [529] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [522] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3138), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3145), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3145), - [anon_sym_super] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), [anon_sym_DOT_DOT] = ACTIONS(2010), [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_null] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_when] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -112477,119 +110883,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3136), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3145), - [anon_sym_sealed] = ACTIONS(3145), - [anon_sym_annotation] = ACTIONS(3145), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_lateinit] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_tailrec] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym_external] = ACTIONS(3145), - [sym_property_modifier] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_vararg] = ACTIONS(3145), - [anon_sym_noinline] = ACTIONS(3145), - [anon_sym_crossinline] = ACTIONS(3145), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3147), - [anon_sym_continue_AT] = ACTIONS(3147), - [anon_sym_break_AT] = ACTIONS(3147), - [anon_sym_this_AT] = ACTIONS(3147), - [anon_sym_super_AT] = ACTIONS(3147), - [sym_real_literal] = ACTIONS(3147), - [sym_integer_literal] = ACTIONS(3145), - [sym_hex_literal] = ACTIONS(3147), - [sym_bin_literal] = ACTIONS(3147), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3147), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), + [sym__automatic_semicolon] = ACTIONS(3138), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3147), + [sym__string_start] = ACTIONS(3138), }, - [530] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [523] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3142), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_object] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3088), + [anon_sym_in] = ACTIONS(2008), [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), + [anon_sym_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(2022), + [anon_sym_GT_EQ] = ACTIONS(2022), + [anon_sym_BANGin] = ACTIONS(2024), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), [anon_sym_PLUS] = ACTIONS(2026), [anon_sym_DASH] = ACTIONS(2026), [anon_sym_SLASH] = ACTIONS(2028), @@ -112597,119 +111003,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3140), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3090), - [anon_sym_continue_AT] = ACTIONS(3090), - [anon_sym_break_AT] = ACTIONS(3090), - [anon_sym_this_AT] = ACTIONS(3090), - [anon_sym_super_AT] = ACTIONS(3090), - [sym_real_literal] = ACTIONS(3090), - [sym_integer_literal] = ACTIONS(3088), - [sym_hex_literal] = ACTIONS(3090), - [sym_bin_literal] = ACTIONS(3090), - [anon_sym_true] = ACTIONS(3088), - [anon_sym_false] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3090), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), + [sym__automatic_semicolon] = ACTIONS(3142), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), + [sym__string_start] = ACTIONS(3142), }, - [531] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3149), + [524] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3146), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_object] = ACTIONS(3149), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_this] = ACTIONS(3149), - [anon_sym_super] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_null] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_when] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3149), - [anon_sym_throw] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(2024), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), [anon_sym_PLUS] = ACTIONS(2026), [anon_sym_DASH] = ACTIONS(2026), [anon_sym_SLASH] = ACTIONS(2028), @@ -112717,213 +111123,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3144), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3149), - [anon_sym_sealed] = ACTIONS(3149), - [anon_sym_annotation] = ACTIONS(3149), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3149), - [anon_sym_lateinit] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_internal] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_tailrec] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_infix] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym_external] = ACTIONS(3149), - [sym_property_modifier] = ACTIONS(3149), - [anon_sym_abstract] = ACTIONS(3149), - [anon_sym_final] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_vararg] = ACTIONS(3149), - [anon_sym_noinline] = ACTIONS(3149), - [anon_sym_crossinline] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3151), - [anon_sym_continue_AT] = ACTIONS(3151), - [anon_sym_break_AT] = ACTIONS(3151), - [anon_sym_this_AT] = ACTIONS(3151), - [anon_sym_super_AT] = ACTIONS(3151), - [sym_real_literal] = ACTIONS(3151), - [sym_integer_literal] = ACTIONS(3149), - [sym_hex_literal] = ACTIONS(3151), - [sym_bin_literal] = ACTIONS(3151), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3151), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3151), + [sym__string_start] = ACTIONS(3146), }, - [532] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3123), + [525] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3162), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_object] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_this] = ACTIONS(3123), - [anon_sym_super] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_when] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_throw] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), [anon_sym_SLASH] = ACTIONS(2028), [anon_sym_PERCENT] = ACTIONS(2006), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_BANG] = ACTIONS(3160), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3123), - [anon_sym_sealed] = ACTIONS(3123), - [anon_sym_annotation] = ACTIONS(3123), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_lateinit] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_tailrec] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3123), - [sym_property_modifier] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_vararg] = ACTIONS(3123), - [anon_sym_noinline] = ACTIONS(3123), - [anon_sym_crossinline] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3125), - [anon_sym_continue_AT] = ACTIONS(3125), - [anon_sym_break_AT] = ACTIONS(3125), - [anon_sym_this_AT] = ACTIONS(3125), - [anon_sym_super_AT] = ACTIONS(3125), - [sym_real_literal] = ACTIONS(3125), - [sym_integer_literal] = ACTIONS(3123), - [sym_hex_literal] = ACTIONS(3125), - [sym_bin_literal] = ACTIONS(3125), - [anon_sym_true] = ACTIONS(3123), - [anon_sym_false] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3125), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3125), + [sym__string_start] = ACTIONS(3162), }, - [533] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [526] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3173), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3172), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3172), - [anon_sym_super] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3171), + [anon_sym_super] = ACTIONS(3171), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -112931,15 +111337,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_when] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -112957,333 +111363,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3171), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3172), - [anon_sym_sealed] = ACTIONS(3172), - [anon_sym_annotation] = ACTIONS(3172), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_lateinit] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_internal] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_tailrec] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_infix] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym_external] = ACTIONS(3172), - [sym_property_modifier] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_final] = ACTIONS(3172), - [anon_sym_open] = ACTIONS(3172), - [anon_sym_vararg] = ACTIONS(3172), - [anon_sym_noinline] = ACTIONS(3172), - [anon_sym_crossinline] = ACTIONS(3172), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3174), - [anon_sym_continue_AT] = ACTIONS(3174), - [anon_sym_break_AT] = ACTIONS(3174), - [anon_sym_this_AT] = ACTIONS(3174), - [anon_sym_super_AT] = ACTIONS(3174), - [sym_real_literal] = ACTIONS(3174), - [sym_integer_literal] = ACTIONS(3172), - [sym_hex_literal] = ACTIONS(3174), - [sym_bin_literal] = ACTIONS(3174), - [anon_sym_true] = ACTIONS(3172), - [anon_sym_false] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3173), + [anon_sym_continue_AT] = ACTIONS(3173), + [anon_sym_break_AT] = ACTIONS(3173), + [anon_sym_this_AT] = ACTIONS(3173), + [anon_sym_super_AT] = ACTIONS(3173), + [sym_real_literal] = ACTIONS(3173), + [sym_integer_literal] = ACTIONS(3171), + [sym_hex_literal] = ACTIONS(3173), + [sym_bin_literal] = ACTIONS(3173), + [anon_sym_true] = ACTIONS(3171), + [anon_sym_false] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3173), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3174), + [sym__automatic_semicolon] = ACTIONS(3173), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3174), + [sym__string_start] = ACTIONS(3173), }, - [534] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3116), + [527] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3103), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_object] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_this] = ACTIONS(3116), - [anon_sym_super] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_when] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_super] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_when] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2022), + [anon_sym_GT_EQ] = ACTIONS(2022), + [anon_sym_BANGin] = ACTIONS(2024), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2028), + [anon_sym_PERCENT] = ACTIONS(2006), + [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3101), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3116), - [anon_sym_sealed] = ACTIONS(3116), - [anon_sym_annotation] = ACTIONS(3116), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_lateinit] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_internal] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_tailrec] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_infix] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym_external] = ACTIONS(3116), - [sym_property_modifier] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_final] = ACTIONS(3116), - [anon_sym_open] = ACTIONS(3116), - [anon_sym_vararg] = ACTIONS(3116), - [anon_sym_noinline] = ACTIONS(3116), - [anon_sym_crossinline] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [anon_sym_this_AT] = ACTIONS(3118), - [anon_sym_super_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3116), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3116), - [anon_sym_false] = ACTIONS(3116), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3103), + [anon_sym_continue_AT] = ACTIONS(3103), + [anon_sym_break_AT] = ACTIONS(3103), + [anon_sym_this_AT] = ACTIONS(3103), + [anon_sym_super_AT] = ACTIONS(3103), + [sym_real_literal] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(3101), + [sym_hex_literal] = ACTIONS(3103), + [sym_bin_literal] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [sym__string_start] = ACTIONS(3103), }, - [535] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(3109), + [528] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3193), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3195), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_this] = ACTIONS(3109), - [anon_sym_super] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_null] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_when] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), [anon_sym_SLASH] = ACTIONS(2028), [anon_sym_PERCENT] = ACTIONS(2006), [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(3193), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3109), - [anon_sym_sealed] = ACTIONS(3109), - [anon_sym_annotation] = ACTIONS(3109), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_lateinit] = ACTIONS(3109), - [anon_sym_public] = ACTIONS(3109), - [anon_sym_private] = ACTIONS(3109), - [anon_sym_internal] = ACTIONS(3109), - [anon_sym_protected] = ACTIONS(3109), - [anon_sym_tailrec] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_infix] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym_external] = ACTIONS(3109), - [sym_property_modifier] = ACTIONS(3109), - [anon_sym_abstract] = ACTIONS(3109), - [anon_sym_final] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_vararg] = ACTIONS(3109), - [anon_sym_noinline] = ACTIONS(3109), - [anon_sym_crossinline] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3111), - [anon_sym_continue_AT] = ACTIONS(3111), - [anon_sym_break_AT] = ACTIONS(3111), - [anon_sym_this_AT] = ACTIONS(3111), - [anon_sym_super_AT] = ACTIONS(3111), - [sym_real_literal] = ACTIONS(3111), - [sym_integer_literal] = ACTIONS(3109), - [sym_hex_literal] = ACTIONS(3111), - [sym_bin_literal] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3195), + [anon_sym_continue_AT] = ACTIONS(3195), + [anon_sym_break_AT] = ACTIONS(3195), + [anon_sym_this_AT] = ACTIONS(3195), + [anon_sym_super_AT] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_hex_literal] = ACTIONS(3195), + [sym_bin_literal] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3111), + [sym__string_start] = ACTIONS(3195), }, - [536] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [529] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3188), + }, + [530] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3134), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3105), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3105), - [anon_sym_super] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -113291,15 +111817,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_when] = ACTIONS(3105), - [anon_sym_try] = ACTIONS(3105), - [anon_sym_throw] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -113317,109 +111843,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3132), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3105), - [anon_sym_sealed] = ACTIONS(3105), - [anon_sym_annotation] = ACTIONS(3105), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3105), - [anon_sym_lateinit] = ACTIONS(3105), - [anon_sym_public] = ACTIONS(3105), - [anon_sym_private] = ACTIONS(3105), - [anon_sym_internal] = ACTIONS(3105), - [anon_sym_protected] = ACTIONS(3105), - [anon_sym_tailrec] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_infix] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym_external] = ACTIONS(3105), - [sym_property_modifier] = ACTIONS(3105), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_final] = ACTIONS(3105), - [anon_sym_open] = ACTIONS(3105), - [anon_sym_vararg] = ACTIONS(3105), - [anon_sym_noinline] = ACTIONS(3105), - [anon_sym_crossinline] = ACTIONS(3105), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3107), - [anon_sym_continue_AT] = ACTIONS(3107), - [anon_sym_break_AT] = ACTIONS(3107), - [anon_sym_this_AT] = ACTIONS(3107), - [anon_sym_super_AT] = ACTIONS(3107), - [sym_real_literal] = ACTIONS(3107), - [sym_integer_literal] = ACTIONS(3105), - [sym_hex_literal] = ACTIONS(3107), - [sym_bin_literal] = ACTIONS(3107), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), + [sym__automatic_semicolon] = ACTIONS(3134), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3107), + [sym__string_start] = ACTIONS(3134), }, - [537] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [531] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2028), + [anon_sym_PERCENT] = ACTIONS(2006), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3177), + }, + [532] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3090), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3141), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3141), - [anon_sym_super] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), [anon_sym_DOT_DOT] = ACTIONS(2010), [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_when] = ACTIONS(3141), - [anon_sym_try] = ACTIONS(3141), - [anon_sym_throw] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_when] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_throw] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -113437,239 +112083,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3088), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3143), - [anon_sym_continue_AT] = ACTIONS(3143), - [anon_sym_break_AT] = ACTIONS(3143), - [anon_sym_this_AT] = ACTIONS(3143), - [anon_sym_super_AT] = ACTIONS(3143), - [sym_real_literal] = ACTIONS(3143), - [sym_integer_literal] = ACTIONS(3141), - [sym_hex_literal] = ACTIONS(3143), - [sym_bin_literal] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3143), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3090), + [anon_sym_continue_AT] = ACTIONS(3090), + [anon_sym_break_AT] = ACTIONS(3090), + [anon_sym_this_AT] = ACTIONS(3090), + [anon_sym_super_AT] = ACTIONS(3090), + [sym_real_literal] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [sym_hex_literal] = ACTIONS(3090), + [sym_bin_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), + [sym__automatic_semicolon] = ACTIONS(3090), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3143), - }, - [538] = { - [sym_primary_constructor] = STATE(3754), - [sym_class_body] = STATE(3268), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(563), - [sym_type_constraints] = STATE(3061), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3446), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), + [sym__string_start] = ACTIONS(3090), }, - [539] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [533] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3169), [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3130), - [anon_sym_super] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3130), + [anon_sym_in] = ACTIONS(2008), [anon_sym_DOT_DOT] = ACTIONS(2010), [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_when] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2022), + [anon_sym_GT_EQ] = ACTIONS(2022), + [anon_sym_BANGin] = ACTIONS(2024), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), [anon_sym_PLUS] = ACTIONS(2026), [anon_sym_DASH] = ACTIONS(2026), [anon_sym_SLASH] = ACTIONS(2028), @@ -113677,333 +112203,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3167), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_annotation] = ACTIONS(3130), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_lateinit] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_tailrec] = ACTIONS(3130), - [anon_sym_operator] = ACTIONS(3130), - [anon_sym_infix] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_external] = ACTIONS(3130), - [sym_property_modifier] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3130), - [anon_sym_noinline] = ACTIONS(3130), - [anon_sym_crossinline] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3132), - [anon_sym_continue_AT] = ACTIONS(3132), - [anon_sym_break_AT] = ACTIONS(3132), - [anon_sym_this_AT] = ACTIONS(3132), - [anon_sym_super_AT] = ACTIONS(3132), - [sym_real_literal] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(3130), - [sym_hex_literal] = ACTIONS(3132), - [sym_bin_literal] = ACTIONS(3132), - [anon_sym_true] = ACTIONS(3130), - [anon_sym_false] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3132), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), + [sym__automatic_semicolon] = ACTIONS(3169), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3132), - }, - [540] = { - [sym_primary_constructor] = STATE(1364), - [sym_class_body] = STATE(1147), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(565), - [sym_type_constraints] = STATE(1024), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3448), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), - }, - [541] = { - [sym_primary_constructor] = STATE(1395), - [sym_class_body] = STATE(1159), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(558), - [sym_type_constraints] = STATE(1018), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), + [sym__string_start] = ACTIONS(3169), }, - [542] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [534] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3184), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3101), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3101), - [anon_sym_super] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -114011,15 +112297,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(2012), [anon_sym_AMP_AMP] = ACTIONS(2014), [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_when] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -114037,211 +112323,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1780), [anon_sym_PLUS_PLUS] = ACTIONS(1782), [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3182), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3101), - [anon_sym_sealed] = ACTIONS(3101), - [anon_sym_annotation] = ACTIONS(3101), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3101), - [anon_sym_lateinit] = ACTIONS(3101), - [anon_sym_public] = ACTIONS(3101), - [anon_sym_private] = ACTIONS(3101), - [anon_sym_internal] = ACTIONS(3101), - [anon_sym_protected] = ACTIONS(3101), - [anon_sym_tailrec] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_infix] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym_external] = ACTIONS(3101), - [sym_property_modifier] = ACTIONS(3101), - [anon_sym_abstract] = ACTIONS(3101), - [anon_sym_final] = ACTIONS(3101), - [anon_sym_open] = ACTIONS(3101), - [anon_sym_vararg] = ACTIONS(3101), - [anon_sym_noinline] = ACTIONS(3101), - [anon_sym_crossinline] = ACTIONS(3101), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3103), - [anon_sym_continue_AT] = ACTIONS(3103), - [anon_sym_break_AT] = ACTIONS(3103), - [anon_sym_this_AT] = ACTIONS(3103), - [anon_sym_super_AT] = ACTIONS(3103), - [sym_real_literal] = ACTIONS(3103), - [sym_integer_literal] = ACTIONS(3101), - [sym_hex_literal] = ACTIONS(3103), - [sym_bin_literal] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3101), - [anon_sym_false] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3103), + [sym__automatic_semicolon] = ACTIONS(3184), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3103), - }, - [543] = { - [sym_primary_constructor] = STATE(1367), - [sym_class_body] = STATE(1137), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(592), - [sym_type_constraints] = STATE(976), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_fun] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_this] = ACTIONS(3246), - [anon_sym_super] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3250), - [sym_label] = ACTIONS(3246), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_when] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3250), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_BANG_BANG] = ACTIONS(3250), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3250), - [anon_sym_continue_AT] = ACTIONS(3250), - [anon_sym_break_AT] = ACTIONS(3250), - [anon_sym_this_AT] = ACTIONS(3250), - [anon_sym_super_AT] = ACTIONS(3250), - [sym_real_literal] = ACTIONS(3250), - [sym_integer_literal] = ACTIONS(3246), - [sym_hex_literal] = ACTIONS(3250), - [sym_bin_literal] = ACTIONS(3250), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3250), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3250), + [sym__string_start] = ACTIONS(3184), }, - [544] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), + [535] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3158), [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(1998), [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), [anon_sym_this] = ACTIONS(3156), [anon_sym_super] = ACTIONS(3156), [anon_sym_STAR] = ACTIONS(2006), @@ -114282,9 +112448,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(3156), [anon_sym_sealed] = ACTIONS(3156), [anon_sym_annotation] = ACTIONS(3156), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), [anon_sym_override] = ACTIONS(3156), [anon_sym_lateinit] = ACTIONS(3156), [anon_sym_public] = ACTIONS(3156), @@ -114303,8 +112469,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3156), [anon_sym_noinline] = ACTIONS(3156), [anon_sym_crossinline] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3158), [anon_sym_continue_AT] = ACTIONS(3158), @@ -114324,40 +112490,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3158), }, - [545] = { - [sym_primary_constructor] = STATE(3704), - [sym_class_body] = STATE(3334), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(587), - [sym_type_constraints] = STATE(3095), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), + [536] = { + [sym_primary_constructor] = STATE(3689), + [sym_class_body] = STATE(3137), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(575), + [sym_type_constraints] = STATE(3047), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3454), + [anon_sym_COLON] = ACTIONS(3430), [anon_sym_LBRACK] = ACTIONS(3206), [anon_sym_as] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3254), [anon_sym_COMMA] = ACTIONS(3206), [anon_sym_LT] = ACTIONS(3214), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3260), + [anon_sym_where] = ACTIONS(3256), [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), [anon_sym_DOT] = ACTIONS(3200), [anon_sym_SEMI] = ACTIONS(3206), [anon_sym_get] = ACTIONS(3200), @@ -114444,81 +112610,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3206), }, - [546] = { - [sym_primary_constructor] = STATE(3752), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(580), - [sym_type_constraints] = STATE(3054), - [sym_enum_class_body] = STATE(3268), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [537] = { + [sym_primary_constructor] = STATE(1350), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(564), + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1186), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3456), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(3432), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3238), [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -114546,219 +112712,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), - }, - [547] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3188), - [anon_sym_super] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_when] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3188), - [anon_sym_sealed] = ACTIONS(3188), - [anon_sym_annotation] = ACTIONS(3188), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_lateinit] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_internal] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_tailrec] = ACTIONS(3188), - [anon_sym_operator] = ACTIONS(3188), - [anon_sym_infix] = ACTIONS(3188), - [anon_sym_inline] = ACTIONS(3188), - [anon_sym_external] = ACTIONS(3188), - [sym_property_modifier] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_final] = ACTIONS(3188), - [anon_sym_open] = ACTIONS(3188), - [anon_sym_vararg] = ACTIONS(3188), - [anon_sym_noinline] = ACTIONS(3188), - [anon_sym_crossinline] = ACTIONS(3188), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [anon_sym_this_AT] = ACTIONS(3190), - [anon_sym_super_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3188), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3188), - [anon_sym_false] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, - [548] = { - [sym_primary_constructor] = STATE(3702), - [sym_class_body] = STATE(3228), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(574), - [sym_type_constraints] = STATE(3085), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), + [538] = { + [sym_primary_constructor] = STATE(1346), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(561), + [sym_type_constraints] = STATE(928), + [sym_enum_class_body] = STATE(1175), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_fun] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3248), [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_this] = ACTIONS(3246), - [anon_sym_super] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3250), - [sym_label] = ACTIONS(3246), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_when] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3250), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_BANG_BANG] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -114786,298 +112832,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3250), - [anon_sym_continue_AT] = ACTIONS(3250), - [anon_sym_break_AT] = ACTIONS(3250), - [anon_sym_this_AT] = ACTIONS(3250), - [anon_sym_super_AT] = ACTIONS(3250), - [sym_real_literal] = ACTIONS(3250), - [sym_integer_literal] = ACTIONS(3246), - [sym_hex_literal] = ACTIONS(3250), - [sym_bin_literal] = ACTIONS(3250), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3250), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3250), + [anon_sym_return_AT] = ACTIONS(3248), + [anon_sym_continue_AT] = ACTIONS(3248), + [anon_sym_break_AT] = ACTIONS(3248), + [anon_sym_this_AT] = ACTIONS(3248), + [anon_sym_super_AT] = ACTIONS(3248), + [sym_real_literal] = ACTIONS(3248), + [sym_integer_literal] = ACTIONS(3244), + [sym_hex_literal] = ACTIONS(3248), + [sym_bin_literal] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3248), }, - [549] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3192), - [anon_sym_super] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_when] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3192), - [anon_sym_sealed] = ACTIONS(3192), - [anon_sym_annotation] = ACTIONS(3192), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_lateinit] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_internal] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_tailrec] = ACTIONS(3192), - [anon_sym_operator] = ACTIONS(3192), - [anon_sym_infix] = ACTIONS(3192), - [anon_sym_inline] = ACTIONS(3192), - [anon_sym_external] = ACTIONS(3192), - [sym_property_modifier] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_final] = ACTIONS(3192), - [anon_sym_open] = ACTIONS(3192), - [anon_sym_vararg] = ACTIONS(3192), - [anon_sym_noinline] = ACTIONS(3192), - [anon_sym_crossinline] = ACTIONS(3192), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3194), - [anon_sym_continue_AT] = ACTIONS(3194), - [anon_sym_break_AT] = ACTIONS(3194), - [anon_sym_this_AT] = ACTIONS(3194), - [anon_sym_super_AT] = ACTIONS(3194), - [sym_real_literal] = ACTIONS(3194), - [sym_integer_literal] = ACTIONS(3192), - [sym_hex_literal] = ACTIONS(3194), - [sym_bin_literal] = ACTIONS(3194), - [anon_sym_true] = ACTIONS(3192), - [anon_sym_false] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3194), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3194), - }, - [550] = { - [sym_indexing_suffix] = STATE(1095), - [sym_navigation_suffix] = STATE(1094), - [sym_call_suffix] = STATE(1093), - [sym_annotated_lambda] = STATE(1091), - [sym_type_arguments] = STATE(8496), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1089), - [sym__equality_operator] = STATE(1942), - [sym__comparison_operator] = STATE(1941), - [sym__in_operator] = STATE(1938), - [sym__is_operator] = STATE(6569), - [sym__additive_operator] = STATE(1922), - [sym__multiplicative_operator] = STATE(1921), - [sym__as_operator] = STATE(6566), - [sym__postfix_unary_operator] = STATE(1088), - [sym__member_access_operator] = STATE(8026), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1899), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_fun] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3168), - [anon_sym_super] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_when] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3168), - [anon_sym_sealed] = ACTIONS(3168), - [anon_sym_annotation] = ACTIONS(3168), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_lateinit] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_internal] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_tailrec] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_infix] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym_external] = ACTIONS(3168), - [sym_property_modifier] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_final] = ACTIONS(3168), - [anon_sym_open] = ACTIONS(3168), - [anon_sym_vararg] = ACTIONS(3168), - [anon_sym_noinline] = ACTIONS(3168), - [anon_sym_crossinline] = ACTIONS(3168), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3170), - [anon_sym_continue_AT] = ACTIONS(3170), - [anon_sym_break_AT] = ACTIONS(3170), - [anon_sym_this_AT] = ACTIONS(3170), - [anon_sym_super_AT] = ACTIONS(3170), - [sym_real_literal] = ACTIONS(3170), - [sym_integer_literal] = ACTIONS(3168), - [sym_hex_literal] = ACTIONS(3170), - [sym_bin_literal] = ACTIONS(3170), - [anon_sym_true] = ACTIONS(3168), - [anon_sym_false] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3170), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3170), + [539] = { + [sym_primary_constructor] = STATE(3696), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(572), + [sym_type_constraints] = STATE(3027), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, - [551] = { - [sym_primary_constructor] = STATE(3705), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(606), - [sym_type_constraints] = STATE(3100), - [sym_enum_class_body] = STATE(3334), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), + [540] = { + [sym_primary_constructor] = STATE(1363), + [sym_class_body] = STATE(1023), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(567), + [sym_type_constraints] = STATE(939), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3460), + [anon_sym_COLON] = ACTIONS(3438), [anon_sym_LBRACK] = ACTIONS(3206), [anon_sym_as] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_COMMA] = ACTIONS(3206), [anon_sym_LT] = ACTIONS(3214), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3260), + [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), [anon_sym_DOT] = ACTIONS(3200), [anon_sym_SEMI] = ACTIONS(3206), [anon_sym_get] = ACTIONS(3200), @@ -115164,81 +113090,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3206), }, - [552] = { - [sym_primary_constructor] = STATE(1415), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(562), - [sym_type_constraints] = STATE(1020), - [sym_enum_class_body] = STATE(1159), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [541] = { + [sym_primary_constructor] = STATE(3699), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(571), + [sym_type_constraints] = STATE(3012), + [sym_enum_class_body] = STATE(3244), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3462), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(3440), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3248), [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -115266,98 +113192,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(3248), + [anon_sym_continue_AT] = ACTIONS(3248), + [anon_sym_break_AT] = ACTIONS(3248), + [anon_sym_this_AT] = ACTIONS(3248), + [anon_sym_super_AT] = ACTIONS(3248), + [sym_real_literal] = ACTIONS(3248), + [sym_integer_literal] = ACTIONS(3244), + [sym_hex_literal] = ACTIONS(3248), + [sym_bin_literal] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3248), }, - [553] = { - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [542] = { + [sym_primary_constructor] = STATE(3695), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(573), + [sym_type_constraints] = STATE(2970), + [sym_enum_class_body] = STATE(3178), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), + }, + [543] = { + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115382,101 +113428,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [554] = { - [sym_type_constraints] = STATE(639), - [sym_property_delegate] = STATE(672), - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(3464), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [544] = { + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115501,101 +113547,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [555] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [545] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115620,101 +113666,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [546] = { + [sym_primary_constructor] = STATE(3783), + [sym_class_body] = STATE(3137), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(623), + [sym_type_constraints] = STATE(3047), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_this] = ACTIONS(3200), + [anon_sym_super] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_null] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_when] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(3206), + [anon_sym_continue_AT] = ACTIONS(3206), + [anon_sym_break_AT] = ACTIONS(3206), + [anon_sym_this_AT] = ACTIONS(3206), + [anon_sym_super_AT] = ACTIONS(3206), + [sym_real_literal] = ACTIONS(3206), + [sym_integer_literal] = ACTIONS(3200), + [sym_hex_literal] = ACTIONS(3206), + [sym_bin_literal] = ACTIONS(3206), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(3206), }, - [556] = { - [sym_type_constraints] = STATE(636), - [sym_property_delegate] = STATE(690), - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [547] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115739,101 +113904,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [557] = { - [sym_type_constraints] = STATE(616), - [sym_property_delegate] = STATE(686), - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [548] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115858,220 +114023,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [558] = { - [sym_primary_constructor] = STATE(1359), - [sym_class_body] = STATE(1200), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(1002), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [559] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [549] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116096,101 +114142,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1792), }, - [560] = { - [sym_type_constraints] = STATE(625), - [sym_property_delegate] = STATE(679), - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [550] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116215,101 +114261,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1792), }, - [561] = { - [sym_type_constraints] = STATE(628), - [sym_property_delegate] = STATE(676), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3484), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [551] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116334,101 +114380,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1792), }, - [562] = { - [sym_primary_constructor] = STATE(1358), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(975), - [sym_enum_class_body] = STATE(1200), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [552] = { + [sym_primary_constructor] = STATE(3758), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(617), + [sym_type_constraints] = STATE(3012), + [sym_enum_class_body] = STATE(3244), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -116456,217 +114502,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [anon_sym_return_AT] = ACTIONS(3248), + [anon_sym_continue_AT] = ACTIONS(3248), + [anon_sym_break_AT] = ACTIONS(3248), + [anon_sym_this_AT] = ACTIONS(3248), + [anon_sym_super_AT] = ACTIONS(3248), + [sym_real_literal] = ACTIONS(3248), + [sym_integer_literal] = ACTIONS(3244), + [sym_hex_literal] = ACTIONS(3248), + [sym_bin_literal] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3248), }, - [563] = { - [sym_primary_constructor] = STATE(3699), - [sym_class_body] = STATE(3304), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3053), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [553] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [564] = { - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [554] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116691,101 +114737,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [565] = { - [sym_primary_constructor] = STATE(1374), - [sym_class_body] = STATE(1057), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(998), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [555] = { + [sym_primary_constructor] = STATE(1423), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(619), + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1186), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3490), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), + [anon_sym_COLON] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3238), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -116813,98 +114859,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, - [566] = { - [sym_primary_constructor] = STATE(1413), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(959), - [sym_enum_class_body] = STATE(1057), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [556] = { + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), + }, + [557] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), + }, + [558] = { + [sym_primary_constructor] = STATE(1391), + [sym_class_body] = STATE(1186), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(615), + [sym_type_constraints] = STATE(983), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), + [anon_sym_COLON] = ACTIONS(3450), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), [anon_sym_constructor] = ACTIONS(3208), [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3238), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -116932,98 +115216,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, - [567] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [559] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117048,101 +115332,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [568] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [560] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117167,220 +115451,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [569] = { - [sym_type_constraints] = STATE(640), - [sym_property_delegate] = STATE(674), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3494), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), + [561] = { + [sym_primary_constructor] = STATE(1345), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(947), + [sym_enum_class_body] = STATE(1148), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [570] = { - [sym_type_constraints] = STATE(618), - [sym_property_delegate] = STATE(663), - [sym_getter] = STATE(1116), - [sym_setter] = STATE(1116), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3496), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_COMMA] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), + [562] = { + [sym_type_constraints] = STATE(612), + [sym_property_delegate] = STATE(664), + [sym_getter] = STATE(3149), + [sym_setter] = STATE(3149), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3498), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(3326), - [anon_sym_super] = ACTIONS(3326), - [anon_sym_STAR] = ACTIONS(3330), - [sym_label] = ACTIONS(3326), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_when] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_BANG_BANG] = ACTIONS(3330), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117405,101 +115689,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3330), - [anon_sym_continue_AT] = ACTIONS(3330), - [anon_sym_break_AT] = ACTIONS(3330), - [anon_sym_this_AT] = ACTIONS(3330), - [anon_sym_super_AT] = ACTIONS(3330), - [sym_real_literal] = ACTIONS(3330), - [sym_integer_literal] = ACTIONS(3326), - [sym_hex_literal] = ACTIONS(3330), - [sym_bin_literal] = ACTIONS(3330), - [anon_sym_true] = ACTIONS(3326), - [anon_sym_false] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3330), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3330), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, - [571] = { - [sym_primary_constructor] = STATE(3932), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(638), - [sym_type_constraints] = STATE(3100), - [sym_enum_class_body] = STATE(3334), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), + [563] = { + [sym_primary_constructor] = STATE(1347), + [sym_class_body] = STATE(1068), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(969), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3500), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_COLON] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -117527,98 +115811,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [572] = { - [sym_primary_constructor] = STATE(3931), - [sym_class_body] = STATE(3334), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(623), - [sym_type_constraints] = STATE(3095), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), + [564] = { + [sym_primary_constructor] = STATE(1295), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_COLON] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -117646,98 +115930,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [565] = { + [sym_getter] = STATE(3111), + [sym_setter] = STATE(3111), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), + }, + [566] = { + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [sym__string_start] = ACTIONS(1734), }, - [573] = { - [sym_primary_constructor] = STATE(1441), - [sym_class_body] = STATE(1137), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(620), - [sym_type_constraints] = STATE(976), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), + [567] = { + [sym_primary_constructor] = STATE(1353), + [sym_class_body] = STATE(1180), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(945), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3504), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_fun] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_this] = ACTIONS(3246), - [anon_sym_super] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3250), - [sym_label] = ACTIONS(3246), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_when] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3250), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_BANG_BANG] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -117765,178 +116287,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3250), - [anon_sym_continue_AT] = ACTIONS(3250), - [anon_sym_break_AT] = ACTIONS(3250), - [anon_sym_this_AT] = ACTIONS(3250), - [anon_sym_super_AT] = ACTIONS(3250), - [sym_real_literal] = ACTIONS(3250), - [sym_integer_literal] = ACTIONS(3246), - [sym_hex_literal] = ACTIONS(3250), - [sym_bin_literal] = ACTIONS(3250), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3250), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3250), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, - [574] = { - [sym_primary_constructor] = STATE(3698), - [sym_class_body] = STATE(3264), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3064), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3506), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [568] = { + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [575] = { - [sym_type_constraints] = STATE(613), - [sym_property_delegate] = STATE(682), - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [569] = { + [sym_type_constraints] = STATE(603), + [sym_property_delegate] = STATE(668), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3508), - [anon_sym_fun] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3470), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3456), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_SEMI] = ACTIONS(3472), [anon_sym_get] = ACTIONS(3474), [anon_sym_set] = ACTIONS(3476), [anon_sym_this] = ACTIONS(3344), @@ -118000,8 +116522,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -118021,80 +116543,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [576] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [570] = { + [sym_type_constraints] = STATE(620), + [sym_property_delegate] = STATE(673), + [sym_getter] = STATE(1029), + [sym_setter] = STATE(1029), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118119,101 +116641,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), + }, + [571] = { + [sym_primary_constructor] = STATE(3703), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [577] = { - [sym_primary_constructor] = STATE(3919), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(632), - [sym_type_constraints] = STATE(3054), - [sym_enum_class_body] = STATE(3268), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [572] = { + [sym_primary_constructor] = STATE(3698), + [sym_class_body] = STATE(3061), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3015), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -118241,98 +116882,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [578] = { - [sym_primary_constructor] = STATE(3918), - [sym_class_body] = STATE(3268), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(631), - [sym_type_constraints] = STATE(3061), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [573] = { + [sym_primary_constructor] = STATE(3697), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3514), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -118360,56 +117001,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [579] = { - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [574] = { + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_fun] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3344), @@ -118476,8 +117117,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -118497,80 +117138,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [580] = { - [sym_primary_constructor] = STATE(3700), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3078), - [sym_enum_class_body] = STATE(3304), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [575] = { + [sym_primary_constructor] = STATE(3693), + [sym_class_body] = STATE(3173), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3039), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -118598,98 +117239,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, - [581] = { - [sym_primary_constructor] = STATE(3914), - [sym_class_body] = STATE(3228), - [sym__class_parameters] = STATE(3086), - [sym_type_parameters] = STATE(629), - [sym_type_constraints] = STATE(3085), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), + [576] = { + [sym_primary_constructor] = STATE(1420), + [sym_class_body] = STATE(1023), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(621), + [sym_type_constraints] = STATE(939), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_fun] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_COLON] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_this] = ACTIONS(3246), - [anon_sym_super] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3250), - [sym_label] = ACTIONS(3246), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_when] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3250), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_BANG_BANG] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_this] = ACTIONS(3200), + [anon_sym_super] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_null] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_when] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3206), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -118717,336 +117358,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3250), - [anon_sym_continue_AT] = ACTIONS(3250), - [anon_sym_break_AT] = ACTIONS(3250), - [anon_sym_this_AT] = ACTIONS(3250), - [anon_sym_super_AT] = ACTIONS(3250), - [sym_real_literal] = ACTIONS(3250), - [sym_integer_literal] = ACTIONS(3246), - [sym_hex_literal] = ACTIONS(3250), - [sym_bin_literal] = ACTIONS(3250), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3250), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3250), - }, - [582] = { - [sym_getter] = STATE(3282), - [sym_setter] = STATE(3282), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_fun] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_object] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(3436), - [anon_sym_super] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3436), - [sym_label] = ACTIONS(3436), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_null] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_when] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3438), - [anon_sym_continue_AT] = ACTIONS(3438), - [anon_sym_break_AT] = ACTIONS(3438), - [anon_sym_this_AT] = ACTIONS(3438), - [anon_sym_super_AT] = ACTIONS(3438), - [sym_real_literal] = ACTIONS(3438), - [sym_integer_literal] = ACTIONS(3436), - [sym_hex_literal] = ACTIONS(3438), - [sym_bin_literal] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [anon_sym_SQUOTE] = ACTIONS(3438), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3438), - }, - [583] = { - [sym_getter] = STATE(3269), - [sym_setter] = STATE(3269), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [sym_label] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [anon_sym_return_AT] = ACTIONS(3206), + [anon_sym_continue_AT] = ACTIONS(3206), + [anon_sym_break_AT] = ACTIONS(3206), + [anon_sym_this_AT] = ACTIONS(3206), + [anon_sym_super_AT] = ACTIONS(3206), + [sym_real_literal] = ACTIONS(3206), + [sym_integer_literal] = ACTIONS(3200), + [sym_hex_literal] = ACTIONS(3206), + [sym_bin_literal] = ACTIONS(3206), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3206), }, - [584] = { - [sym_primary_constructor] = STATE(1431), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(630), - [sym_type_constraints] = STATE(1020), - [sym_enum_class_body] = STATE(1159), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [577] = { + [sym_primary_constructor] = STATE(1414), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(613), + [sym_type_constraints] = STATE(928), + [sym_enum_class_body] = STATE(1175), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), + [anon_sym_COLON] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3248), [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), + [anon_sym_GT] = ACTIONS(3244), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -119074,56 +117477,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(3248), + [anon_sym_continue_AT] = ACTIONS(3248), + [anon_sym_break_AT] = ACTIONS(3248), + [anon_sym_this_AT] = ACTIONS(3248), + [anon_sym_super_AT] = ACTIONS(3248), + [sym_real_literal] = ACTIONS(3248), + [sym_integer_literal] = ACTIONS(3244), + [sym_hex_literal] = ACTIONS(3248), + [sym_bin_literal] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3248), }, - [585] = { - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [578] = { + [sym_primary_constructor] = STATE(3814), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(604), + [sym_type_constraints] = STATE(2970), + [sym_enum_class_body] = STATE(3178), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), + }, + [579] = { + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1808), @@ -119190,8 +117712,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1810), [anon_sym_continue_AT] = ACTIONS(1810), @@ -119211,80 +117733,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [586] = { - [sym_getter] = STATE(3230), - [sym_setter] = STATE(3230), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [580] = { + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119309,220 +117831,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), - }, - [587] = { - [sym_primary_constructor] = STATE(3708), - [sym_class_body] = STATE(3204), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3107), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3522), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [588] = { - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [581] = { + [sym_type_constraints] = STATE(608), + [sym_property_delegate] = STATE(660), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119547,101 +117950,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [589] = { - [sym_getter] = STATE(1201), - [sym_setter] = STATE(1201), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_fun] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_object] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(3436), - [anon_sym_super] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3436), - [sym_label] = ACTIONS(3436), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_null] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_when] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [582] = { + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119666,101 +118069,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3438), - [anon_sym_continue_AT] = ACTIONS(3438), - [anon_sym_break_AT] = ACTIONS(3438), - [anon_sym_this_AT] = ACTIONS(3438), - [anon_sym_super_AT] = ACTIONS(3438), - [sym_real_literal] = ACTIONS(3438), - [sym_integer_literal] = ACTIONS(3436), - [sym_hex_literal] = ACTIONS(3438), - [sym_bin_literal] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [anon_sym_SQUOTE] = ACTIONS(3438), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3438), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [590] = { - [sym_getter] = STATE(1190), - [sym_setter] = STATE(1190), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [sym_label] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_BANG_BANG] = ACTIONS(1802), + [583] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119785,101 +118188,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [591] = { - [sym_getter] = STATE(3230), - [sym_setter] = STATE(3230), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [584] = { + [sym_type_constraints] = STATE(610), + [sym_property_delegate] = STATE(648), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119904,220 +118307,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), - }, - [592] = { - [sym_primary_constructor] = STATE(1362), - [sym_class_body] = STATE(1148), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(958), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [sym__string_start] = ACTIONS(3346), }, - [593] = { - [sym_getter] = STATE(1186), - [sym_setter] = STATE(1186), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [585] = { + [sym_getter] = STATE(1099), + [sym_setter] = STATE(1099), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -120142,654 +118426,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), }, - [594] = { - [sym_getter] = STATE(1186), - [sym_setter] = STATE(1186), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), - }, - [595] = { - [sym_primary_constructor] = STATE(1461), - [sym_class_body] = STATE(1147), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(621), - [sym_type_constraints] = STATE(1024), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), - }, - [596] = { - [sym_primary_constructor] = STATE(1456), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(619), - [sym_type_constraints] = STATE(1021), - [sym_enum_class_body] = STATE(1147), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), - }, - [597] = { - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [586] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), - }, - [598] = { - [sym_type_constraints] = STATE(634), - [sym_property_delegate] = STATE(667), - [sym_getter] = STATE(3244), - [sym_setter] = STATE(3244), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3530), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_COMMA] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3532), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(3326), - [anon_sym_super] = ACTIONS(3326), - [anon_sym_STAR] = ACTIONS(3330), - [sym_label] = ACTIONS(3326), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_when] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_BANG_BANG] = ACTIONS(3330), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3330), - [anon_sym_continue_AT] = ACTIONS(3330), - [anon_sym_break_AT] = ACTIONS(3330), - [anon_sym_this_AT] = ACTIONS(3330), - [anon_sym_super_AT] = ACTIONS(3330), - [sym_real_literal] = ACTIONS(3330), - [sym_integer_literal] = ACTIONS(3326), - [sym_hex_literal] = ACTIONS(3330), - [sym_bin_literal] = ACTIONS(3330), - [anon_sym_true] = ACTIONS(3326), - [anon_sym_false] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3330), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3330), - }, - [599] = { - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1808), @@ -120856,8 +118545,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1810), [anon_sym_continue_AT] = ACTIONS(1810), @@ -120877,276 +118566,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [600] = { - [sym_type_constraints] = STATE(637), - [sym_property_delegate] = STATE(669), - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3534), - [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3536), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), - }, - [601] = { - [sym_primary_constructor] = STATE(1460), - [sym_class_body] = STATE(1159), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(615), - [sym_type_constraints] = STATE(1018), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_fun] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), - }, - [602] = { - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [587] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), [anon_sym_this] = ACTIONS(1732), [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1732), @@ -121213,8 +118664,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1734), [anon_sym_continue_AT] = ACTIONS(1734), @@ -121234,38 +118685,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1734), }, - [603] = { - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [588] = { + [sym_type_constraints] = STATE(600), + [sym_property_delegate] = STATE(647), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), + }, + [589] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), [anon_sym_this] = ACTIONS(1732), [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1732), @@ -121332,8 +118902,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1734), [anon_sym_continue_AT] = ACTIONS(1734), @@ -121353,80 +118923,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1734), }, - [604] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9552), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3406), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [590] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121451,101 +119021,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [605] = { - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [591] = { + [sym_type_constraints] = STATE(599), + [sym_property_delegate] = STATE(657), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3504), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121570,101 +119140,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [606] = { - [sym_primary_constructor] = STATE(3709), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3134), - [sym_enum_class_body] = STATE(3204), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [592] = { + [sym_primary_constructor] = STATE(3765), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(624), + [sym_type_constraints] = STATE(3027), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -121692,98 +119262,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, - [607] = { - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [593] = { + [sym_type_constraints] = STATE(601), + [sym_property_delegate] = STATE(654), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121808,59 +119378,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [608] = { - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [594] = { + [sym_type_constraints] = STATE(605), + [sym_property_delegate] = STATE(650), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), + }, + [595] = { + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_fun] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3428), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), + [anon_sym_SEMI] = ACTIONS(3392), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3344), @@ -121927,8 +119616,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -121948,80 +119637,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [609] = { - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [596] = { + [sym_type_constraints] = STATE(609), + [sym_property_delegate] = STATE(666), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122046,101 +119735,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [610] = { - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9418), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [597] = { + [sym_type_constraints] = STATE(644), + [sym_property_delegate] = STATE(730), + [sym_getter] = STATE(1029), + [sym_setter] = STATE(1029), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3518), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122165,100 +119853,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, - [611] = { - [sym_type_constraints] = STATE(661), - [sym_property_delegate] = STATE(742), - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3542), - [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), + [598] = { + [sym_type_constraints] = STATE(640), + [sym_property_delegate] = STATE(720), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122283,100 +119971,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), + [sym__string_start] = ACTIONS(1792), }, - [612] = { - [sym_type_constraints] = STATE(656), - [sym_property_delegate] = STATE(750), - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3552), - [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3554), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [599] = { + [sym_property_delegate] = STATE(654), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122401,100 +120089,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), + [sym__string_start] = ACTIONS(1792), }, - [613] = { - [sym_property_delegate] = STATE(686), - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1976), + [600] = { + [sym_property_delegate] = STATE(666), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), + }, + [601] = { + [sym_property_delegate] = STATE(650), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1978), [anon_sym_get] = ACTIONS(3474), [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122519,63 +120325,417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [614] = { - [sym_type_constraints] = STATE(660), - [sym_property_delegate] = STATE(737), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [602] = { + [sym_type_constraints] = STATE(643), + [sym_property_delegate] = STATE(749), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), + }, + [603] = { + [sym_property_delegate] = STATE(657), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3504), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [604] = { + [sym_primary_constructor] = STATE(3764), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [605] = { + [sym_property_delegate] = STATE(659), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3560), - [anon_sym_fun] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3534), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3544), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(3456), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(1732), [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(2030), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), [anon_sym_this] = ACTIONS(1732), [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1734), @@ -122637,8 +120797,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1734), [anon_sym_continue_AT] = ACTIONS(1734), @@ -122658,197 +120818,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1734), }, - [615] = { - [sym_primary_constructor] = STATE(1459), - [sym_class_body] = STATE(1200), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(1002), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3562), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), + [606] = { + [sym_type_constraints] = STATE(645), + [sym_property_delegate] = STATE(739), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [616] = { - [sym_property_delegate] = STATE(690), - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), + [607] = { + [sym_type_constraints] = STATE(646), + [sym_property_delegate] = STATE(743), + [sym_getter] = STATE(3149), + [sym_setter] = STATE(3149), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3538), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3540), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), + }, + [608] = { + [sym_property_delegate] = STATE(647), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122873,100 +121151,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [617] = { - [sym_type_constraints] = STATE(659), - [sym_property_delegate] = STATE(735), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3564), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), + [609] = { + [sym_property_delegate] = STATE(672), + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), + }, + [610] = { + [sym_property_delegate] = STATE(660), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [611] = { + [sym_type_constraints] = STATE(639), + [sym_property_delegate] = STATE(732), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122991,63 +121505,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [618] = { - [sym_property_delegate] = STATE(682), - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [612] = { + [sym_property_delegate] = STATE(648), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3508), - [anon_sym_fun] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3498), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3456), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_where] = ACTIONS(3344), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3346), @@ -123109,8 +121623,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -123130,79 +121644,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [619] = { - [sym_primary_constructor] = STATE(1423), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(959), - [sym_enum_class_body] = STATE(1057), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [613] = { + [sym_primary_constructor] = STATE(1426), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(947), + [sym_enum_class_body] = STATE(1148), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), + [anon_sym_COLON] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -123230,97 +121744,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [620] = { - [sym_primary_constructor] = STATE(1434), - [sym_class_body] = STATE(1148), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(958), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), + [614] = { + [sym_type_constraints] = STATE(641), + [sym_property_delegate] = STATE(747), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), + }, + [615] = { + [sym_primary_constructor] = STATE(1427), + [sym_class_body] = STATE(1068), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(969), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3568), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -123348,97 +121980,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [621] = { - [sym_primary_constructor] = STATE(1429), - [sym_class_body] = STATE(1057), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(998), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), + [616] = { + [sym_type_constraints] = STATE(637), + [sym_property_delegate] = STATE(741), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3554), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), + }, + [617] = { + [sym_primary_constructor] = STATE(3797), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -123466,97 +122216,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [622] = { - [sym_type_constraints] = STATE(658), - [sym_property_delegate] = STATE(732), - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(3572), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), + [618] = { + [sym_type_constraints] = STATE(638), + [sym_property_delegate] = STATE(718), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123581,100 +122331,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [623] = { - [sym_primary_constructor] = STATE(3933), - [sym_class_body] = STATE(3204), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3107), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [619] = { + [sym_primary_constructor] = STATE(1390), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -123702,97 +122452,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [624] = { - [sym_type_constraints] = STATE(655), - [sym_property_delegate] = STATE(764), - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3576), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [620] = { + [sym_property_delegate] = STATE(668), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3472), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123817,100 +122567,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [625] = { - [sym_property_delegate] = STATE(685), - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3578), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [621] = { + [sym_primary_constructor] = STATE(1424), + [sym_class_body] = STATE(1180), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(945), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [622] = { + [sym_type_constraints] = STATE(642), + [sym_property_delegate] = STATE(723), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123935,808 +122803,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [626] = { - [sym_type_constraints] = STATE(657), - [sym_property_delegate] = STATE(760), - [sym_getter] = STATE(1116), - [sym_setter] = STATE(1116), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3580), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(3326), - [anon_sym_super] = ACTIONS(3326), - [anon_sym_STAR] = ACTIONS(3330), - [sym_label] = ACTIONS(3326), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_when] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_BANG_BANG] = ACTIONS(3330), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3330), - [anon_sym_continue_AT] = ACTIONS(3330), - [anon_sym_break_AT] = ACTIONS(3330), - [anon_sym_this_AT] = ACTIONS(3330), - [anon_sym_super_AT] = ACTIONS(3330), - [sym_real_literal] = ACTIONS(3330), - [sym_integer_literal] = ACTIONS(3326), - [sym_hex_literal] = ACTIONS(3330), - [sym_bin_literal] = ACTIONS(3330), - [anon_sym_true] = ACTIONS(3326), - [anon_sym_false] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3330), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3330), - }, - [627] = { - [sym_type_constraints] = STATE(662), - [sym_property_delegate] = STATE(752), - [sym_getter] = STATE(3244), - [sym_setter] = STATE(3244), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3584), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3586), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(3326), - [anon_sym_super] = ACTIONS(3326), - [anon_sym_STAR] = ACTIONS(3330), - [sym_label] = ACTIONS(3326), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_when] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_BANG_BANG] = ACTIONS(3330), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3330), - [anon_sym_continue_AT] = ACTIONS(3330), - [anon_sym_break_AT] = ACTIONS(3330), - [anon_sym_this_AT] = ACTIONS(3330), - [anon_sym_super_AT] = ACTIONS(3330), - [sym_real_literal] = ACTIONS(3330), - [sym_integer_literal] = ACTIONS(3326), - [sym_hex_literal] = ACTIONS(3330), - [sym_bin_literal] = ACTIONS(3330), - [anon_sym_true] = ACTIONS(3326), - [anon_sym_false] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3330), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3330), - }, - [628] = { - [sym_property_delegate] = STATE(680), - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3588), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), - }, - [629] = { - [sym_primary_constructor] = STATE(3915), - [sym_class_body] = STATE(3264), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3064), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [630] = { - [sym_primary_constructor] = STATE(1451), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(975), - [sym_enum_class_body] = STATE(1200), - [sym_modifiers] = STATE(10195), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3592), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [631] = { - [sym_primary_constructor] = STATE(3926), - [sym_class_body] = STATE(3304), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3053), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [632] = { - [sym_primary_constructor] = STATE(3929), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3078), - [sym_enum_class_body] = STATE(3304), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [623] = { + [sym_primary_constructor] = STATE(3798), + [sym_class_body] = STATE(3173), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3039), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -124764,687 +122924,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [633] = { - [sym_type_constraints] = STATE(653), - [sym_property_delegate] = STATE(756), - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3598), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), - }, - [634] = { - [sym_property_delegate] = STATE(669), - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3534), - [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3536), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), - }, - [635] = { - [sym_type_constraints] = STATE(654), - [sym_property_delegate] = STATE(747), - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), - }, - [636] = { - [sym_property_delegate] = STATE(679), - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), - }, - [637] = { - [sym_property_delegate] = STATE(672), - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(3464), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, - [638] = { - [sym_primary_constructor] = STATE(3912), - [sym__class_parameters] = STATE(3086), - [sym_type_constraints] = STATE(3134), - [sym_enum_class_body] = STATE(3204), - [sym_modifiers] = STATE(10177), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [624] = { + [sym_primary_constructor] = STATE(3767), + [sym_class_body] = STATE(3061), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3015), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -125472,221 +123042,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), - }, - [639] = { - [sym_property_delegate] = STATE(674), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3494), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [640] = { - [sym_property_delegate] = STATE(676), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3484), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [625] = { + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -125705,113 +123170,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), }, - [641] = { - [sym_getter] = STATE(4976), - [sym_setter] = STATE(4976), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [626] = { + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3614), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(1802), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125840,95 +123291,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [642] = { - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [627] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym_get] = ACTIONS(3656), - [anon_sym_set] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125957,95 +123408,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [643] = { - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [628] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -126074,95 +123525,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [644] = { - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [629] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -126191,95 +123642,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [645] = { - [sym_getter] = STATE(4978), - [sym_setter] = STATE(4978), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [630] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -126308,212 +123759,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [646] = { - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [631] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3572), [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3574), [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1586), [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3576), [anon_sym_COMMA] = ACTIONS(1810), [anon_sym_RPAREN] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), + [anon_sym_GT] = ACTIONS(3578), [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3666), - [anon_sym_get] = ACTIONS(3656), - [anon_sym_set] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3588), [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3634), + [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_PLUS_EQ] = ACTIONS(1810), [anon_sym_DASH_EQ] = ACTIONS(1810), [anon_sym_STAR_EQ] = ACTIONS(1810), [anon_sym_SLASH_EQ] = ACTIONS(1810), [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [647] = { - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_get] = ACTIONS(3656), - [anon_sym_set] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -126542,95 +123876,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [648] = { - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [632] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3572), [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3574), [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1586), [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3576), [anon_sym_COMMA] = ACTIONS(1734), [anon_sym_RPAREN] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), + [anon_sym_GT] = ACTIONS(3578), [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3670), - [anon_sym_get] = ACTIONS(3656), - [anon_sym_set] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3588), [anon_sym_DASH_GT] = ACTIONS(1734), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3634), + [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_PLUS_EQ] = ACTIONS(1734), [anon_sym_DASH_EQ] = ACTIONS(1734), [anon_sym_STAR_EQ] = ACTIONS(1734), [anon_sym_SLASH_EQ] = ACTIONS(1734), [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -126659,95 +123993,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [649] = { - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [633] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(1734), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -126776,95 +124110,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [650] = { - [sym_getter] = STATE(3552), - [sym_setter] = STATE(3552), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [634] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3572), [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3574), [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1586), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3576), [anon_sym_COMMA] = ACTIONS(1792), [anon_sym_RPAREN] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), + [anon_sym_GT] = ACTIONS(3578), [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3674), - [anon_sym_get] = ACTIONS(3656), - [anon_sym_set] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3588), [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3634), + [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_PLUS_EQ] = ACTIONS(1792), [anon_sym_DASH_EQ] = ACTIONS(1792), [anon_sym_STAR_EQ] = ACTIONS(1792), [anon_sym_SLASH_EQ] = ACTIONS(1792), [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -126893,95 +124227,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [651] = { - [sym_getter] = STATE(3530), - [sym_setter] = STATE(3530), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [635] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_get] = ACTIONS(3656), - [anon_sym_set] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(1802), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -127010,95 +124344,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [652] = { - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [636] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3572), [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3574), [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1586), [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3576), [anon_sym_COMMA] = ACTIONS(1810), [anon_sym_RPAREN] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), + [anon_sym_GT] = ACTIONS(3578), [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3588), [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3634), + [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_PLUS_EQ] = ACTIONS(1810), [anon_sym_DASH_EQ] = ACTIONS(1810), [anon_sym_STAR_EQ] = ACTIONS(1810), [anon_sym_SLASH_EQ] = ACTIONS(1810), [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -127127,80 +124461,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [653] = { - [sym_property_delegate] = STATE(753), - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [637] = { + [sym_property_delegate] = STATE(739), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -127225,98 +124559,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [654] = { - [sym_property_delegate] = STATE(764), - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3576), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [638] = { + [sym_property_delegate] = STATE(750), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -127341,61 +124675,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [655] = { - [sym_property_delegate] = STATE(756), - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [639] = { + [sym_property_delegate] = STATE(728), + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3598), - [anon_sym_fun] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3650), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3544), + [anon_sym_by] = ACTIONS(3516), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), [anon_sym_this] = ACTIONS(1732), [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1734), @@ -127457,8 +124791,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1734), [anon_sym_continue_AT] = ACTIONS(1734), @@ -127478,77 +124812,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1734), }, - [656] = { - [sym_property_delegate] = STATE(732), - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(3572), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [640] = { + [sym_property_delegate] = STATE(718), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -127573,98 +124907,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [657] = { - [sym_property_delegate] = STATE(742), - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3542), - [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [641] = { + [sym_property_delegate] = STATE(723), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -127689,214 +125023,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), - }, - [658] = { - [sym_property_delegate] = STATE(735), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3564), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [659] = { - [sym_property_delegate] = STATE(737), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3560), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(2030), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [642] = { + [sym_property_delegate] = STATE(720), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -127921,98 +125139,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1792), }, - [660] = { - [sym_property_delegate] = STATE(739), - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3682), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [643] = { + [sym_property_delegate] = STATE(732), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -128037,292 +125255,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [661] = { + [644] = { [sym_property_delegate] = STATE(747), - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), - }, - [662] = { - [sym_property_delegate] = STATE(750), - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3552), - [anon_sym_fun] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3548), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3544), + [anon_sym_by] = ACTIONS(3516), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3554), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), - }, - [663] = { - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3346), @@ -128384,8 +125371,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -128405,191 +125392,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [664] = { - [sym_getter] = STATE(1201), - [sym_setter] = STATE(1201), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_fun] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_object] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(3436), - [anon_sym_super] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3438), - [sym_label] = ACTIONS(3436), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_null] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_when] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3438), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3438), - [anon_sym_continue_AT] = ACTIONS(3438), - [anon_sym_break_AT] = ACTIONS(3438), - [anon_sym_this_AT] = ACTIONS(3438), - [anon_sym_super_AT] = ACTIONS(3438), - [sym_real_literal] = ACTIONS(3438), - [sym_integer_literal] = ACTIONS(3436), - [sym_hex_literal] = ACTIONS(3438), - [sym_bin_literal] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [anon_sym_SQUOTE] = ACTIONS(3438), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3438), - }, - [665] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [645] = { + [sym_property_delegate] = STATE(749), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -128614,175 +125487,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), + [sym__string_start] = ACTIONS(1792), }, - [666] = { - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [646] = { + [sym_property_delegate] = STATE(741), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_fun] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3554), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3516), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), - }, - [667] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3536), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3346), @@ -128844,8 +125603,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -128865,421 +125624,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [668] = { - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), - }, - [669] = { - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), - }, - [670] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), - }, - [671] = { - [sym_getter] = STATE(3282), - [sym_setter] = STATE(3282), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_fun] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_object] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(3436), - [anon_sym_super] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3438), - [sym_label] = ACTIONS(3436), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_null] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_when] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3438), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [647] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -129304,97 +125718,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3438), - [anon_sym_continue_AT] = ACTIONS(3438), - [anon_sym_break_AT] = ACTIONS(3438), - [anon_sym_this_AT] = ACTIONS(3438), - [anon_sym_super_AT] = ACTIONS(3438), - [sym_real_literal] = ACTIONS(3438), - [sym_integer_literal] = ACTIONS(3436), - [sym_hex_literal] = ACTIONS(3438), - [sym_bin_literal] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [anon_sym_SQUOTE] = ACTIONS(3438), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3438), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [672] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [648] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -129419,48 +125833,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [673] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [649] = { + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), @@ -129469,10 +125882,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1732), [anon_sym_where] = ACTIONS(1732), [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), [anon_sym_this] = ACTIONS(1732), [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1734), @@ -129534,8 +125948,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1734), [anon_sym_continue_AT] = ACTIONS(1734), @@ -129555,27 +125969,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1734), }, - [674] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [650] = { + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), @@ -129584,10 +125997,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1732), [anon_sym_where] = ACTIONS(1732), [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), [anon_sym_this] = ACTIONS(1732), [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1734), @@ -129649,8 +126063,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1734), [anon_sym_continue_AT] = ACTIONS(1734), @@ -129670,27 +126084,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1734), }, - [675] = { - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [651] = { + [sym_getter] = STATE(3111), + [sym_setter] = STATE(3111), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), + }, + [652] = { + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), @@ -129699,10 +126227,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1808), [anon_sym_where] = ACTIONS(1808), [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1810), @@ -129764,8 +126293,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1810), [anon_sym_continue_AT] = ACTIONS(1810), @@ -129785,76 +126314,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [676] = { - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [653] = { + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -129879,48 +126408,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [sym__string_start] = ACTIONS(3346), }, - [677] = { - [sym_getter] = STATE(3230), - [sym_setter] = STATE(3230), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [654] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), + }, + [655] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), + }, + [656] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), + }, + [657] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), @@ -129929,10 +126802,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1790), [anon_sym_where] = ACTIONS(1790), [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1792), @@ -129994,8 +126868,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1792), [anon_sym_continue_AT] = ACTIONS(1792), @@ -130015,76 +126889,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [678] = { - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [658] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -130109,48 +126983,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [sym__string_start] = ACTIONS(1792), }, - [679] = { - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [659] = { + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), @@ -130159,8 +127032,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1808), [anon_sym_where] = ACTIONS(1808), [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_SEMI] = ACTIONS(1982), [anon_sym_get] = ACTIONS(3474), [anon_sym_set] = ACTIONS(3476), [anon_sym_this] = ACTIONS(1808), @@ -130224,8 +127098,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1810), [anon_sym_continue_AT] = ACTIONS(1810), @@ -130245,27 +127119,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [680] = { - [sym_getter] = STATE(3230), - [sym_setter] = STATE(3230), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [660] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), @@ -130274,10 +127147,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1790), [anon_sym_where] = ACTIONS(1790), [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1792), @@ -130339,8 +127213,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1792), [anon_sym_continue_AT] = ACTIONS(1792), @@ -130360,76 +127234,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [681] = { - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), + [661] = { + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), [anon_sym_get] = ACTIONS(3474), [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -130454,97 +127328,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [682] = { - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [662] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -130569,97 +127443,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [683] = { - [sym_getter] = STATE(1186), - [sym_setter] = STATE(1186), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), + [663] = { + [sym_getter] = STATE(1099), + [sym_setter] = STATE(1099), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), [anon_sym_get] = ACTIONS(3474), [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), + }, + [664] = { + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -130684,97 +127673,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [sym__string_start] = ACTIONS(3346), }, - [684] = { - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [665] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), + }, + [666] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -130799,48 +127903,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [685] = { - [sym_getter] = STATE(1186), - [sym_setter] = STATE(1186), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [667] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), @@ -130849,8 +127952,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1790), [anon_sym_where] = ACTIONS(1790), [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_SEMI] = ACTIONS(1792), [anon_sym_get] = ACTIONS(3474), [anon_sym_set] = ACTIONS(3476), [anon_sym_this] = ACTIONS(1790), @@ -130914,8 +128018,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1792), [anon_sym_continue_AT] = ACTIONS(1792), @@ -130935,76 +128039,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [686] = { - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1974), + [668] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1972), [anon_sym_get] = ACTIONS(3474), [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131029,97 +128133,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [687] = { - [sym_getter] = STATE(1190), - [sym_setter] = STATE(1190), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), + [669] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), + }, + [670] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), [anon_sym_get] = ACTIONS(3474), [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1802), - [sym_label] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_BANG_BANG] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131144,97 +128363,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [688] = { - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), + [671] = { + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), [anon_sym_get] = ACTIONS(3474), [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131259,97 +128478,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(3346), }, - [689] = { - [sym_getter] = STATE(3269), - [sym_setter] = STATE(3269), - [sym_modifiers] = STATE(9700), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1802), - [sym_label] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_BANG_BANG] = ACTIONS(1802), + [672] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131374,97 +128593,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [690] = { - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9675), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1978), + [673] = { + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3472), [anon_sym_get] = ACTIONS(3474), [anon_sym_set] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131489,109 +128708,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(3346), }, - [691] = { - [sym_getter] = STATE(5259), - [sym_setter] = STATE(5259), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [674] = { + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), + }, + [675] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym_get] = ACTIONS(3696), - [anon_sym_set] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131620,895 +128954,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [692] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(702), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(702), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3734), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [693] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(696), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(696), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3746), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [694] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(699), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(699), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3748), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [695] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(700), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(700), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3750), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [696] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(700), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(700), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3752), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [697] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(700), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(700), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3754), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [676] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_get] = ACTIONS(3704), + [anon_sym_set] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [698] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(695), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(695), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3752), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [677] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [699] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(700), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [678] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(700), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3710), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3756), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3712), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -132520,223 +129284,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [700] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(700), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(700), - [sym__alpha_identifier] = ACTIONS(3758), - [anon_sym_AT] = ACTIONS(3761), - [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_fun] = ACTIONS(3767), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(3773), - [anon_sym_LPAREN] = ACTIONS(3775), - [anon_sym_object] = ACTIONS(3778), - [anon_sym_get] = ACTIONS(3781), - [anon_sym_set] = ACTIONS(3781), - [anon_sym_this] = ACTIONS(3784), - [anon_sym_super] = ACTIONS(3787), - [anon_sym_STAR] = ACTIONS(3790), - [sym_label] = ACTIONS(3793), - [anon_sym_in] = ACTIONS(3796), - [anon_sym_null] = ACTIONS(3799), - [anon_sym_if] = ACTIONS(3802), - [anon_sym_else] = ACTIONS(3805), - [anon_sym_when] = ACTIONS(3808), - [anon_sym_try] = ACTIONS(3811), - [anon_sym_throw] = ACTIONS(3814), - [anon_sym_return] = ACTIONS(3817), - [anon_sym_continue] = ACTIONS(3820), - [anon_sym_break] = ACTIONS(3820), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3826), - [anon_sym_is] = ACTIONS(3829), - [anon_sym_BANGis] = ACTIONS(3832), - [anon_sym_PLUS] = ACTIONS(3793), - [anon_sym_DASH] = ACTIONS(3793), - [anon_sym_PLUS_PLUS] = ACTIONS(3835), - [anon_sym_DASH_DASH] = ACTIONS(3835), - [anon_sym_BANG] = ACTIONS(3793), - [anon_sym_data] = ACTIONS(3781), - [anon_sym_inner] = ACTIONS(3781), - [anon_sym_value] = ACTIONS(3781), - [anon_sym_expect] = ACTIONS(3781), - [anon_sym_actual] = ACTIONS(3781), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3838), - [anon_sym_continue_AT] = ACTIONS(3841), - [anon_sym_break_AT] = ACTIONS(3844), - [anon_sym_this_AT] = ACTIONS(3847), - [anon_sym_super_AT] = ACTIONS(3850), - [sym_real_literal] = ACTIONS(3853), - [sym_integer_literal] = ACTIONS(3856), - [sym_hex_literal] = ACTIONS(3859), - [sym_bin_literal] = ACTIONS(3859), - [anon_sym_true] = ACTIONS(3862), - [anon_sym_false] = ACTIONS(3862), - [anon_sym_SQUOTE] = ACTIONS(3865), - [sym__backtick_identifier] = ACTIONS(3868), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3871), + [sym__string_start] = ACTIONS(295), }, - [701] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(706), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [679] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(678), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(706), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(678), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3756), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3712), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -132748,109 +129398,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [702] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(700), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [680] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(700), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3712), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -132862,109 +129512,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [703] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(721), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [681] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(680), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(721), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(680), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3724), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3712), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -132976,104 +129626,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [704] = { - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [682] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1804), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_get] = ACTIONS(3878), - [anon_sym_set] = ACTIONS(3880), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym_get] = ACTIONS(3704), + [anon_sym_set] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -133102,325 +129752,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [705] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(719), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(719), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3754), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [706] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(700), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(700), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [707] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(700), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [683] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(685), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(700), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(685), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3884), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3712), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -133432,446 +129854,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [708] = { - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_get] = ACTIONS(3878), - [anon_sym_set] = ACTIONS(3880), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [709] = { - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym_get] = ACTIONS(3696), - [anon_sym_set] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [710] = { - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3890), - [anon_sym_get] = ACTIONS(3696), - [anon_sym_set] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3714), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [711] = { - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [684] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_COMMA] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), + [anon_sym_GT] = ACTIONS(3658), [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3892), - [anon_sym_get] = ACTIONS(3696), - [anon_sym_set] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym_get] = ACTIONS(3704), + [anon_sym_set] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_COLON_COLON] = ACTIONS(3682), [anon_sym_PLUS_EQ] = ACTIONS(1734), [anon_sym_DASH_EQ] = ACTIONS(1734), [anon_sym_STAR_EQ] = ACTIONS(1734), [anon_sym_SLASH_EQ] = ACTIONS(1734), [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -133901,91 +129981,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(3714), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [712] = { - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [685] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [686] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_COMMA] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), + [anon_sym_GT] = ACTIONS(3658), [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3894), - [anon_sym_get] = ACTIONS(3696), - [anon_sym_set] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3734), + [anon_sym_get] = ACTIONS(3704), + [anon_sym_set] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_COLON_COLON] = ACTIONS(3682), [anon_sym_PLUS_EQ] = ACTIONS(1810), [anon_sym_DASH_EQ] = ACTIONS(1810), [anon_sym_STAR_EQ] = ACTIONS(1810), [anon_sym_SLASH_EQ] = ACTIONS(1810), [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -134015,96 +130209,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3714), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [713] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(700), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [687] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(689), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(700), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(689), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3896), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3712), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -134116,104 +130310,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [714] = { - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [688] = { + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1816), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3898), - [anon_sym_get] = ACTIONS(3696), - [anon_sym_set] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3738), + [anon_sym_get] = ACTIONS(3704), + [anon_sym_set] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -134242,97 +130436,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [715] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(723), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [689] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(723), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3896), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3712), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -134344,109 +130538,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [716] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(707), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [690] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(705), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(707), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(705), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3900), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3712), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -134458,218 +130652,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [717] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(700), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(700), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3900), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [718] = { - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [691] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3902), - [anon_sym_get] = ACTIONS(3878), - [anon_sym_set] = ACTIONS(3880), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_get] = ACTIONS(3704), + [anon_sym_set] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -134698,97 +130778,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [719] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(700), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [692] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(699), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(700), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(699), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3744), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3904), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3712), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -134800,109 +130880,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [720] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(697), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [693] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(696), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(697), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(696), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3746), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3906), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3712), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -134914,109 +130994,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [721] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(700), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [694] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(700), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(3748), + [anon_sym_AT] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_LBRACE] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(3760), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_object] = ACTIONS(3765), + [anon_sym_fun] = ACTIONS(3768), + [anon_sym_get] = ACTIONS(3771), + [anon_sym_set] = ACTIONS(3771), + [anon_sym_this] = ACTIONS(3774), + [anon_sym_super] = ACTIONS(3777), + [anon_sym_STAR] = ACTIONS(3780), + [sym_label] = ACTIONS(3783), + [anon_sym_in] = ACTIONS(3786), + [anon_sym_null] = ACTIONS(3789), + [anon_sym_if] = ACTIONS(3792), + [anon_sym_else] = ACTIONS(3795), + [anon_sym_when] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3801), + [anon_sym_throw] = ACTIONS(3804), + [anon_sym_return] = ACTIONS(3807), + [anon_sym_continue] = ACTIONS(3810), + [anon_sym_break] = ACTIONS(3810), + [anon_sym_COLON_COLON] = ACTIONS(3813), + [anon_sym_BANGin] = ACTIONS(3816), + [anon_sym_is] = ACTIONS(3819), + [anon_sym_BANGis] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3783), + [anon_sym_DASH] = ACTIONS(3783), + [anon_sym_PLUS_PLUS] = ACTIONS(3825), + [anon_sym_DASH_DASH] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3783), + [anon_sym_data] = ACTIONS(3771), + [anon_sym_inner] = ACTIONS(3771), + [anon_sym_value] = ACTIONS(3771), + [anon_sym_expect] = ACTIONS(3771), + [anon_sym_actual] = ACTIONS(3771), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3828), + [anon_sym_continue_AT] = ACTIONS(3831), + [anon_sym_break_AT] = ACTIONS(3834), + [anon_sym_this_AT] = ACTIONS(3837), + [anon_sym_super_AT] = ACTIONS(3840), + [sym_real_literal] = ACTIONS(3843), + [sym_integer_literal] = ACTIONS(3846), + [sym_hex_literal] = ACTIONS(3849), + [sym_bin_literal] = ACTIONS(3849), + [anon_sym_true] = ACTIONS(3852), + [anon_sym_false] = ACTIONS(3852), + [anon_sym_SQUOTE] = ACTIONS(3855), + [sym__backtick_identifier] = ACTIONS(3858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3861), + }, + [695] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3864), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3908), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3712), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -135028,223 +131222,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [722] = { - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3910), - [anon_sym_get] = ACTIONS(3878), - [anon_sym_set] = ACTIONS(3880), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [696] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3866), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [723] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(700), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [697] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(698), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(700), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(698), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3866), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3712), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -135256,223 +131450,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [724] = { - [sym_getter] = STATE(4045), - [sym_setter] = STATE(4045), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3914), - [anon_sym_get] = ACTIONS(3878), - [anon_sym_set] = ACTIONS(3880), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [698] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3868), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [725] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(717), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [699] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(717), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3916), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3712), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -135484,104 +131678,560 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [726] = { - [sym_getter] = STATE(4022), - [sym_setter] = STATE(4022), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [700] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(701), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(701), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3870), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [701] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3872), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [702] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(703), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(703), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3872), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [703] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3874), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [704] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3918), - [anon_sym_get] = ACTIONS(3878), - [anon_sym_set] = ACTIONS(3880), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -135610,97 +132260,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [727] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_entry] = STATE(713), - [sym_when_condition] = STATE(9254), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [705] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym_when_expression_repeat1] = STATE(713), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3878), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3920), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3712), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -135712,96 +132362,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [728] = { - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [706] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -135820,109 +132484,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), }, - [729] = { - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [707] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym_get] = ACTIONS(3926), - [anon_sym_set] = ACTIONS(3928), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -135951,422 +132602,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [730] = { - [sym_getter] = STATE(1190), - [sym_setter] = STATE(1190), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1802), - [sym_label] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), - }, - [731] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), - }, - [732] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), - }, - [733] = { - [sym_getter] = STATE(1186), - [sym_setter] = STATE(1186), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [708] = { + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3884), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -136385,58 +132712,1065 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), }, - [734] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), + [709] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(710), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(710), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [710] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [711] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(695), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(695), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [712] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3892), + [anon_sym_get] = ACTIONS(3894), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [713] = { + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), + }, + [714] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3920), + [anon_sym_get] = ACTIONS(3922), + [anon_sym_set] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [715] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3926), + [anon_sym_get] = ACTIONS(3922), + [anon_sym_set] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [716] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym_get] = ACTIONS(3922), + [anon_sym_set] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [717] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3930), + [anon_sym_get] = ACTIONS(3922), + [anon_sym_set] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [718] = { + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), [anon_sym_this] = ACTIONS(1732), [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1734), @@ -136498,8 +133832,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1734), [anon_sym_continue_AT] = ACTIONS(1734), @@ -136519,37 +133853,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1734), }, - [735] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [719] = { + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(2030), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), [anon_sym_this] = ACTIONS(1732), [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1734), @@ -136611,8 +133945,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1734), [anon_sym_continue_AT] = ACTIONS(1734), @@ -136632,74 +133966,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1734), }, - [736] = { - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [720] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -136724,95 +134058,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), + }, + [721] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3932), + [anon_sym_get] = ACTIONS(3922), + [anon_sym_set] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), }, - [737] = { - [sym_getter] = STATE(3152), - [sym_setter] = STATE(3152), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [722] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -136837,58 +134284,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [738] = { - [sym_getter] = STATE(3230), - [sym_setter] = STATE(3230), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [723] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1792), @@ -136950,8 +134397,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1792), [anon_sym_continue_AT] = ACTIONS(1792), @@ -136971,37 +134418,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [739] = { - [sym_getter] = STATE(3230), - [sym_setter] = STATE(3230), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [724] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(2056), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1792), @@ -137063,8 +134510,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1792), [anon_sym_continue_AT] = ACTIONS(1792), @@ -137084,540 +134531,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [740] = { - [sym_getter] = STATE(3269), - [sym_setter] = STATE(3269), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1802), - [sym_label] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), - }, - [741] = { - [sym_getter] = STATE(3282), - [sym_setter] = STATE(3282), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_fun] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_object] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(3436), - [anon_sym_super] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3438), - [sym_label] = ACTIONS(3436), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_null] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_when] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3438), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3438), - [anon_sym_continue_AT] = ACTIONS(3438), - [anon_sym_break_AT] = ACTIONS(3438), - [anon_sym_this_AT] = ACTIONS(3438), - [anon_sym_super_AT] = ACTIONS(3438), - [sym_real_literal] = ACTIONS(3438), - [sym_integer_literal] = ACTIONS(3436), - [sym_hex_literal] = ACTIONS(3438), - [sym_bin_literal] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [anon_sym_SQUOTE] = ACTIONS(3438), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3438), - }, - [742] = { - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), - }, - [743] = { - [sym_getter] = STATE(4976), - [sym_setter] = STATE(4976), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3952), - [anon_sym_get] = ACTIONS(3926), - [anon_sym_set] = ACTIONS(3928), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [744] = { - [sym_getter] = STATE(4978), - [sym_setter] = STATE(4978), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [725] = { + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1816), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3954), - [anon_sym_get] = ACTIONS(3926), - [anon_sym_set] = ACTIONS(3928), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(3894), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -137646,91 +134641,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [745] = { - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [726] = { + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1816), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3956), - [anon_sym_get] = ACTIONS(3926), - [anon_sym_set] = ACTIONS(3928), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_get] = ACTIONS(3922), + [anon_sym_set] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -137759,97 +134754,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [746] = { - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3958), - [anon_sym_get] = ACTIONS(3926), - [anon_sym_set] = ACTIONS(3928), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [727] = { + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -137868,81 +134849,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [747] = { - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [728] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -137967,109 +134962,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [748] = { - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [729] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3960), - [anon_sym_get] = ACTIONS(3926), - [anon_sym_set] = ACTIONS(3928), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_get] = ACTIONS(3894), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -138098,379 +135093,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [749] = { - [sym_getter] = STATE(1180), - [sym_setter] = STATE(1180), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), - }, - [750] = { - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), - }, - [751] = { - [sym_getter] = STATE(3324), - [sym_setter] = STATE(3324), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), - }, - [752] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [730] = { + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_fun] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3554), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3346), @@ -138532,8 +135188,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -138553,376 +135209,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [753] = { - [sym_getter] = STATE(1186), - [sym_setter] = STATE(1186), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), - }, - [754] = { - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3962), - [anon_sym_get] = ACTIONS(3964), - [anon_sym_set] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [755] = { - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym_get] = ACTIONS(3964), - [anon_sym_set] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [756] = { - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [731] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1810), @@ -138984,8 +135301,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1810), [anon_sym_continue_AT] = ACTIONS(1810), @@ -139005,94 +135322,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [757] = { - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1626), + [732] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3970), - [anon_sym_get] = ACTIONS(3964), - [anon_sym_set] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -139111,95 +135414,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [758] = { - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [733] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), + }, + [734] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1804), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym_get] = ACTIONS(3964), - [anon_sym_set] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym_get] = ACTIONS(3894), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -139228,91 +135658,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [759] = { - [sym_getter] = STATE(3552), - [sym_setter] = STATE(3552), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [735] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1586), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3576), [anon_sym_RPAREN] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3974), - [anon_sym_get] = ACTIONS(3964), - [anon_sym_set] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3942), + [anon_sym_get] = ACTIONS(3894), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3634), + [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_PLUS_EQ] = ACTIONS(1792), [anon_sym_DASH_EQ] = ACTIONS(1792), [anon_sym_STAR_EQ] = ACTIONS(1792), [anon_sym_SLASH_EQ] = ACTIONS(1792), [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -139341,40 +135771,831 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [760] = { - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [736] = { + [sym_getter] = STATE(3111), + [sym_setter] = STATE(3111), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), + }, + [737] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), + }, + [738] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_get] = ACTIONS(3894), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [739] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), + }, + [740] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), + }, + [741] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [742] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [743] = { + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_fun] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3346), @@ -139436,8 +136657,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -139457,37 +136678,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [761] = { - [sym_getter] = STATE(1211), - [sym_setter] = STATE(1211), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [744] = { + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), + }, + [745] = { + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_fun] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3346), @@ -139549,8 +136883,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -139570,187 +136904,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [762] = { - [sym_getter] = STATE(3530), - [sym_setter] = STATE(3530), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_get] = ACTIONS(3964), - [anon_sym_set] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [763] = { - [sym_getter] = STATE(1201), - [sym_setter] = STATE(1201), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_fun] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_object] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(3436), - [anon_sym_super] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3438), - [sym_label] = ACTIONS(3436), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_null] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_when] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3438), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [746] = { + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -139775,95 +136996,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3438), - [anon_sym_continue_AT] = ACTIONS(3438), - [anon_sym_break_AT] = ACTIONS(3438), - [anon_sym_this_AT] = ACTIONS(3438), - [anon_sym_super_AT] = ACTIONS(3438), - [sym_real_literal] = ACTIONS(3438), - [sym_integer_literal] = ACTIONS(3436), - [sym_hex_literal] = ACTIONS(3438), - [sym_bin_literal] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [anon_sym_SQUOTE] = ACTIONS(3438), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3438), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [764] = { - [sym_getter] = STATE(1126), - [sym_setter] = STATE(1126), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [747] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -139888,95 +137109,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [765] = { - [sym_getter] = STATE(1051), - [sym_setter] = STATE(1051), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [748] = { + [sym_getter] = STATE(1099), + [sym_setter] = STATE(1099), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -140001,95 +137222,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), }, - [766] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9428), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3556), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [749] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -140114,58 +137335,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [767] = { - [sym_getter] = STATE(1166), - [sym_setter] = STATE(1166), - [sym_modifiers] = STATE(9629), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [750] = { + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3550), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1810), @@ -140227,8 +137448,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1810), [anon_sym_continue_AT] = ACTIONS(1810), @@ -140248,78 +137469,415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [768] = { - [sym__loop_statement] = STATE(4979), - [sym_for_statement] = STATE(4979), - [sym_while_statement] = STATE(4979), - [sym_do_while_statement] = STATE(4979), - [sym_assignment] = STATE(4979), - [sym__expression] = STATE(3398), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1831), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8666), - [sym_annotation] = STATE(1317), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(5506), + [751] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [752] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [753] = { + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1209), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_annotation] = STATE(1286), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [754] = { + [sym__loop_statement] = STATE(3603), + [sym_for_statement] = STATE(3603), + [sym_while_statement] = STATE(3603), + [sym_do_while_statement] = STATE(3603), + [sym_assignment] = STATE(3603), + [sym__expression] = STATE(1231), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_annotation] = STATE(1241), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(5345), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1283), [sym_label] = ACTIONS(151), [anon_sym_for] = ACTIONS(153), [anon_sym_while] = ACTIONS(155), @@ -140338,11 +137896,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(177), [anon_sym_DASH_DASH] = ACTIONS(177), [anon_sym_BANG] = ACTIONS(177), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), @@ -140360,198 +137918,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [769] = { - [sym__loop_statement] = STATE(1119), - [sym_for_statement] = STATE(1119), - [sym_while_statement] = STATE(1119), - [sym_do_while_statement] = STATE(1119), - [sym_assignment] = STATE(1119), - [sym__expression] = STATE(485), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(1634), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8657), - [sym_annotation] = STATE(1288), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(931), - [anon_sym_for] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [755] = { + [sym__loop_statement] = STATE(5351), + [sym_for_statement] = STATE(5351), + [sym_while_statement] = STATE(5351), + [sym_do_while_statement] = STATE(5351), + [sym_assignment] = STATE(5351), + [sym__expression] = STATE(2263), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_annotation] = STATE(1255), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(639), }, - [770] = { - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [756] = { + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3980), - [anon_sym_get] = ACTIONS(3982), - [anon_sym_set] = ACTIONS(3984), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -140580,202 +138138,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [771] = { - [sym__loop_statement] = STATE(3474), - [sym_for_statement] = STATE(3474), - [sym_while_statement] = STATE(3474), - [sym_do_while_statement] = STATE(3474), - [sym_assignment] = STATE(3474), - [sym__expression] = STATE(1663), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(1724), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8640), - [sym_annotation] = STATE(1280), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), - [anon_sym_while] = ACTIONS(719), - [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(283), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), }, - [772] = { - [sym_getter] = STATE(4045), - [sym_setter] = STATE(4045), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [757] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4008), - [anon_sym_get] = ACTIONS(3982), - [anon_sym_set] = ACTIONS(3984), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -140804,986 +138250,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [773] = { - [sym__loop_statement] = STATE(5375), - [sym_for_statement] = STATE(5375), - [sym_while_statement] = STATE(5375), - [sym_do_while_statement] = STATE(5375), - [sym_assignment] = STATE(5375), - [sym__expression] = STATE(4345), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1980), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8669), - [sym_annotation] = STATE(1309), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(963), - [anon_sym_for] = ACTIONS(965), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [774] = { - [sym__loop_statement] = STATE(3222), - [sym_for_statement] = STATE(3222), - [sym_while_statement] = STATE(3222), - [sym_do_while_statement] = STATE(3222), - [sym_assignment] = STATE(3222), - [sym__expression] = STATE(955), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(2216), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8652), - [sym_annotation] = STATE(1296), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [775] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_typealias] = ACTIONS(4017), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4017), - [anon_sym_fun] = ACTIONS(4019), - [anon_sym_interface] = ACTIONS(4017), - [anon_sym_enum] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_val] = ACTIONS(4017), - [anon_sym_var] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4010), - [sym_label] = ACTIONS(4010), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4019), - [anon_sym_sealed] = ACTIONS(4019), - [anon_sym_annotation] = ACTIONS(4019), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_value] = ACTIONS(4019), - [anon_sym_override] = ACTIONS(4019), - [anon_sym_lateinit] = ACTIONS(4019), - [anon_sym_public] = ACTIONS(4019), - [anon_sym_private] = ACTIONS(4019), - [anon_sym_internal] = ACTIONS(4019), - [anon_sym_protected] = ACTIONS(4019), - [anon_sym_tailrec] = ACTIONS(4019), - [anon_sym_operator] = ACTIONS(4019), - [anon_sym_infix] = ACTIONS(4019), - [anon_sym_inline] = ACTIONS(4019), - [anon_sym_external] = ACTIONS(4019), - [sym_property_modifier] = ACTIONS(4019), - [anon_sym_abstract] = ACTIONS(4019), - [anon_sym_final] = ACTIONS(4019), - [anon_sym_open] = ACTIONS(4019), - [anon_sym_vararg] = ACTIONS(4019), - [anon_sym_noinline] = ACTIONS(4019), - [anon_sym_crossinline] = ACTIONS(4019), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4015), - [sym__automatic_semicolon] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [776] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4022), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_typealias] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4025), - [anon_sym_fun] = ACTIONS(4027), - [anon_sym_interface] = ACTIONS(4025), - [anon_sym_enum] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_val] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4027), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4027), - [anon_sym_set] = ACTIONS(4027), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4010), - [sym_label] = ACTIONS(4010), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4027), - [anon_sym_sealed] = ACTIONS(4027), - [anon_sym_annotation] = ACTIONS(4027), - [anon_sym_data] = ACTIONS(4027), - [anon_sym_inner] = ACTIONS(4027), - [anon_sym_value] = ACTIONS(4027), - [anon_sym_override] = ACTIONS(4027), - [anon_sym_lateinit] = ACTIONS(4027), - [anon_sym_public] = ACTIONS(4027), - [anon_sym_private] = ACTIONS(4027), - [anon_sym_internal] = ACTIONS(4027), - [anon_sym_protected] = ACTIONS(4027), - [anon_sym_tailrec] = ACTIONS(4027), - [anon_sym_operator] = ACTIONS(4027), - [anon_sym_infix] = ACTIONS(4027), - [anon_sym_inline] = ACTIONS(4027), - [anon_sym_external] = ACTIONS(4027), - [sym_property_modifier] = ACTIONS(4027), - [anon_sym_abstract] = ACTIONS(4027), - [anon_sym_final] = ACTIONS(4027), - [anon_sym_open] = ACTIONS(4027), - [anon_sym_vararg] = ACTIONS(4027), - [anon_sym_noinline] = ACTIONS(4027), - [anon_sym_crossinline] = ACTIONS(4027), - [anon_sym_expect] = ACTIONS(4027), - [anon_sym_actual] = ACTIONS(4027), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4015), - [sym__automatic_semicolon] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [777] = { - [sym__loop_statement] = STATE(4096), - [sym_for_statement] = STATE(4096), - [sym_while_statement] = STATE(4096), - [sym_do_while_statement] = STATE(4096), - [sym_assignment] = STATE(4096), - [sym__expression] = STATE(2268), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1979), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8667), - [sym_annotation] = STATE(1310), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [778] = { - [sym_annotated_lambda] = STATE(1065), - [sym_lambda_literal] = STATE(1089), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(4030), - [anon_sym_AT] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_as] = ACTIONS(4030), - [anon_sym_EQ] = ACTIONS(4030), - [anon_sym_fun] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_RBRACE] = ACTIONS(4032), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_COMMA] = ACTIONS(4032), - [anon_sym_LT] = ACTIONS(4030), - [anon_sym_GT] = ACTIONS(4030), - [anon_sym_where] = ACTIONS(4030), - [anon_sym_object] = ACTIONS(4030), - [anon_sym_DOT] = ACTIONS(4030), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym_get] = ACTIONS(4030), - [anon_sym_set] = ACTIONS(4030), - [anon_sym_this] = ACTIONS(4030), - [anon_sym_super] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4030), - [sym_label] = ACTIONS(4030), - [anon_sym_in] = ACTIONS(4030), - [anon_sym_DOT_DOT] = ACTIONS(4032), - [anon_sym_QMARK_COLON] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4032), - [anon_sym_null] = ACTIONS(4030), - [anon_sym_if] = ACTIONS(4030), - [anon_sym_else] = ACTIONS(4030), - [anon_sym_when] = ACTIONS(4030), - [anon_sym_try] = ACTIONS(4030), - [anon_sym_throw] = ACTIONS(4030), - [anon_sym_return] = ACTIONS(4030), - [anon_sym_continue] = ACTIONS(4030), - [anon_sym_break] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(4032), - [anon_sym_PLUS_EQ] = ACTIONS(4032), - [anon_sym_DASH_EQ] = ACTIONS(4032), - [anon_sym_STAR_EQ] = ACTIONS(4032), - [anon_sym_SLASH_EQ] = ACTIONS(4032), - [anon_sym_PERCENT_EQ] = ACTIONS(4032), - [anon_sym_BANG_EQ] = ACTIONS(4030), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4032), - [anon_sym_EQ_EQ] = ACTIONS(4030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4032), - [anon_sym_LT_EQ] = ACTIONS(4032), - [anon_sym_GT_EQ] = ACTIONS(4032), - [anon_sym_BANGin] = ACTIONS(4032), - [anon_sym_is] = ACTIONS(4030), - [anon_sym_BANGis] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_SLASH] = ACTIONS(4030), - [anon_sym_PERCENT] = ACTIONS(4030), - [anon_sym_as_QMARK] = ACTIONS(4032), - [anon_sym_PLUS_PLUS] = ACTIONS(4032), - [anon_sym_DASH_DASH] = ACTIONS(4032), - [anon_sym_BANG] = ACTIONS(4030), - [anon_sym_BANG_BANG] = ACTIONS(4032), - [anon_sym_suspend] = ACTIONS(4030), - [anon_sym_sealed] = ACTIONS(4030), - [anon_sym_annotation] = ACTIONS(4030), - [anon_sym_data] = ACTIONS(4030), - [anon_sym_inner] = ACTIONS(4030), - [anon_sym_value] = ACTIONS(4030), - [anon_sym_override] = ACTIONS(4030), - [anon_sym_lateinit] = ACTIONS(4030), - [anon_sym_public] = ACTIONS(4030), - [anon_sym_private] = ACTIONS(4030), - [anon_sym_internal] = ACTIONS(4030), - [anon_sym_protected] = ACTIONS(4030), - [anon_sym_tailrec] = ACTIONS(4030), - [anon_sym_operator] = ACTIONS(4030), - [anon_sym_infix] = ACTIONS(4030), - [anon_sym_inline] = ACTIONS(4030), - [anon_sym_external] = ACTIONS(4030), - [sym_property_modifier] = ACTIONS(4030), - [anon_sym_abstract] = ACTIONS(4030), - [anon_sym_final] = ACTIONS(4030), - [anon_sym_open] = ACTIONS(4030), - [anon_sym_vararg] = ACTIONS(4030), - [anon_sym_noinline] = ACTIONS(4030), - [anon_sym_crossinline] = ACTIONS(4030), - [anon_sym_expect] = ACTIONS(4030), - [anon_sym_actual] = ACTIONS(4030), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4032), - [anon_sym_continue_AT] = ACTIONS(4032), - [anon_sym_break_AT] = ACTIONS(4032), - [anon_sym_this_AT] = ACTIONS(4032), - [anon_sym_super_AT] = ACTIONS(4032), - [sym_real_literal] = ACTIONS(4032), - [sym_integer_literal] = ACTIONS(4030), - [sym_hex_literal] = ACTIONS(4032), - [sym_bin_literal] = ACTIONS(4032), - [anon_sym_true] = ACTIONS(4030), - [anon_sym_false] = ACTIONS(4030), - [anon_sym_SQUOTE] = ACTIONS(4032), - [sym__backtick_identifier] = ACTIONS(4032), - [sym__automatic_semicolon] = ACTIONS(4032), - [sym_safe_nav] = ACTIONS(4032), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4032), - }, - [779] = { - [sym__loop_statement] = STATE(4096), - [sym_for_statement] = STATE(4096), - [sym_while_statement] = STATE(4096), - [sym_do_while_statement] = STATE(4096), - [sym_assignment] = STATE(4096), - [sym__expression] = STATE(1428), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3044), - [sym_parenthesized_expression] = STATE(3044), - [sym_collection_literal] = STATE(3044), - [sym__literal_constant] = STATE(3044), - [sym_string_literal] = STATE(3044), - [sym_lambda_literal] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [sym__function_literal] = STATE(3044), - [sym_object_literal] = STATE(3044), - [sym_this_expression] = STATE(3044), - [sym_super_expression] = STATE(3044), - [sym_if_expression] = STATE(3044), - [sym_when_expression] = STATE(3044), - [sym_try_expression] = STATE(3044), - [sym_jump_expression] = STATE(3044), - [sym_callable_reference] = STATE(3044), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8636), - [sym_annotation] = STATE(1284), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3044), - [sym_long_literal] = STATE(3044), - [sym_boolean_literal] = STATE(3044), - [sym_character_literal] = STATE(3044), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [780] = { - [sym_indexing_suffix] = STATE(7443), - [sym_navigation_suffix] = STATE(7443), - [sym__postfix_unary_operator] = STATE(7443), - [sym__member_access_operator] = STATE(7875), - [sym__postfix_unary_suffix] = STATE(7443), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7443), - [sym__alpha_identifier] = ACTIONS(4034), - [anon_sym_AT] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4038), - [anon_sym_as] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4041), - [anon_sym_fun] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_COMMA] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_where] = ACTIONS(4034), - [anon_sym_object] = ACTIONS(4034), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_get] = ACTIONS(4034), - [anon_sym_set] = ACTIONS(4034), - [anon_sym_this] = ACTIONS(4034), - [anon_sym_super] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4034), - [sym_label] = ACTIONS(4034), - [anon_sym_in] = ACTIONS(4034), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_QMARK_COLON] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_null] = ACTIONS(4034), - [anon_sym_if] = ACTIONS(4034), - [anon_sym_else] = ACTIONS(4034), - [anon_sym_when] = ACTIONS(4034), - [anon_sym_try] = ACTIONS(4034), - [anon_sym_throw] = ACTIONS(4034), - [anon_sym_return] = ACTIONS(4034), - [anon_sym_continue] = ACTIONS(4034), - [anon_sym_break] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4046), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT_EQ] = ACTIONS(4036), - [anon_sym_GT_EQ] = ACTIONS(4036), - [anon_sym_BANGin] = ACTIONS(4036), - [anon_sym_is] = ACTIONS(4034), - [anon_sym_BANGis] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_SLASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_as_QMARK] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(4051), - [anon_sym_BANG] = ACTIONS(4034), - [anon_sym_BANG_BANG] = ACTIONS(4051), - [anon_sym_suspend] = ACTIONS(4034), - [anon_sym_sealed] = ACTIONS(4034), - [anon_sym_annotation] = ACTIONS(4034), - [anon_sym_data] = ACTIONS(4034), - [anon_sym_inner] = ACTIONS(4034), - [anon_sym_value] = ACTIONS(4034), - [anon_sym_override] = ACTIONS(4034), - [anon_sym_lateinit] = ACTIONS(4034), - [anon_sym_public] = ACTIONS(4034), - [anon_sym_private] = ACTIONS(4034), - [anon_sym_internal] = ACTIONS(4034), - [anon_sym_protected] = ACTIONS(4034), - [anon_sym_tailrec] = ACTIONS(4034), - [anon_sym_operator] = ACTIONS(4034), - [anon_sym_infix] = ACTIONS(4034), - [anon_sym_inline] = ACTIONS(4034), - [anon_sym_external] = ACTIONS(4034), - [sym_property_modifier] = ACTIONS(4034), - [anon_sym_abstract] = ACTIONS(4034), - [anon_sym_final] = ACTIONS(4034), - [anon_sym_open] = ACTIONS(4034), - [anon_sym_vararg] = ACTIONS(4034), - [anon_sym_noinline] = ACTIONS(4034), - [anon_sym_crossinline] = ACTIONS(4034), - [anon_sym_expect] = ACTIONS(4034), - [anon_sym_actual] = ACTIONS(4034), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4036), - [anon_sym_continue_AT] = ACTIONS(4036), - [anon_sym_break_AT] = ACTIONS(4036), - [anon_sym_this_AT] = ACTIONS(4036), - [anon_sym_super_AT] = ACTIONS(4036), - [sym_real_literal] = ACTIONS(4036), - [sym_integer_literal] = ACTIONS(4034), - [sym_hex_literal] = ACTIONS(4036), - [sym_bin_literal] = ACTIONS(4036), - [anon_sym_true] = ACTIONS(4034), - [anon_sym_false] = ACTIONS(4034), - [anon_sym_SQUOTE] = ACTIONS(4036), - [sym__backtick_identifier] = ACTIONS(4036), - [sym__automatic_semicolon] = ACTIONS(4036), - [sym_safe_nav] = ACTIONS(4046), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4036), }, - [781] = { - [sym_getter] = STATE(4022), - [sym_setter] = STATE(4022), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [758] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4054), - [anon_sym_get] = ACTIONS(3982), - [anon_sym_set] = ACTIONS(3984), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3984), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -141812,202 +138362,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [782] = { - [sym__loop_statement] = STATE(4096), - [sym_for_statement] = STATE(4096), - [sym_while_statement] = STATE(4096), - [sym_do_while_statement] = STATE(4096), - [sym_assignment] = STATE(4096), - [sym__expression] = STATE(2638), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8646), - [sym_annotation] = STATE(1319), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1137), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), }, - [783] = { - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [759] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4056), - [anon_sym_get] = ACTIONS(4058), - [anon_sym_set] = ACTIONS(4060), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -142036,90 +138474,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [784] = { - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [760] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4062), - [anon_sym_get] = ACTIONS(4058), - [anon_sym_set] = ACTIONS(4060), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -142148,314 +138586,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [785] = { - [sym__loop_statement] = STATE(1119), - [sym_for_statement] = STATE(1119), - [sym_while_statement] = STATE(1119), - [sym_do_while_statement] = STATE(1119), - [sym_assignment] = STATE(1119), - [sym__expression] = STATE(402), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2201), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8642), - [sym_annotation] = STATE(1318), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1111), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(773), - [anon_sym_for] = ACTIONS(775), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [786] = { - [sym__loop_statement] = STATE(4096), - [sym_for_statement] = STATE(4096), - [sym_while_statement] = STATE(4096), - [sym_do_while_statement] = STATE(4096), - [sym_assignment] = STATE(4096), - [sym__expression] = STATE(2508), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(3049), - [sym_parenthesized_expression] = STATE(3049), - [sym_collection_literal] = STATE(3049), - [sym__literal_constant] = STATE(3049), - [sym_string_literal] = STATE(3049), - [sym_lambda_literal] = STATE(3049), - [sym_anonymous_function] = STATE(3049), - [sym__function_literal] = STATE(3049), - [sym_object_literal] = STATE(3049), - [sym_this_expression] = STATE(3049), - [sym_super_expression] = STATE(3049), - [sym_if_expression] = STATE(3049), - [sym_when_expression] = STATE(3049), - [sym_try_expression] = STATE(3049), - [sym_jump_expression] = STATE(3049), - [sym_callable_reference] = STATE(3049), - [sym__prefix_unary_operator] = STATE(1759), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8660), - [sym_annotation] = STATE(1302), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4011), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(3049), - [sym_long_literal] = STATE(3049), - [sym_boolean_literal] = STATE(3049), - [sym_character_literal] = STATE(3049), - [sym__lexical_identifier] = STATE(3366), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), }, - [787] = { - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [761] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4064), - [anon_sym_get] = ACTIONS(3982), - [anon_sym_set] = ACTIONS(3984), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -142484,212 +138698,548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [788] = { - [sym__loop_statement] = STATE(3222), - [sym_for_statement] = STATE(3222), - [sym_while_statement] = STATE(3222), - [sym_do_while_statement] = STATE(3222), - [sym_assignment] = STATE(3222), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2817), - [sym_parenthesized_expression] = STATE(2817), - [sym_collection_literal] = STATE(2817), - [sym__literal_constant] = STATE(2817), - [sym_string_literal] = STATE(2817), - [sym_lambda_literal] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [sym__function_literal] = STATE(2817), - [sym_object_literal] = STATE(2817), - [sym_this_expression] = STATE(2817), - [sym_super_expression] = STATE(2817), - [sym_if_expression] = STATE(2817), - [sym_when_expression] = STATE(2817), - [sym_try_expression] = STATE(2817), - [sym_jump_expression] = STATE(2817), - [sym_callable_reference] = STATE(2817), - [sym__prefix_unary_operator] = STATE(1850), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8662), - [sym_annotation] = STATE(1305), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2817), - [sym_long_literal] = STATE(2817), - [sym_boolean_literal] = STATE(2817), - [sym_character_literal] = STATE(2817), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(805), - [anon_sym_for] = ACTIONS(807), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(553), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [762] = { + [sym__loop_statement] = STATE(5112), + [sym_for_statement] = STATE(5112), + [sym_while_statement] = STATE(5112), + [sym_do_while_statement] = STATE(5112), + [sym_assignment] = STATE(5112), + [sym__expression] = STATE(4237), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_annotation] = STATE(1249), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(585), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [789] = { - [sym__loop_statement] = STATE(5375), - [sym_for_statement] = STATE(5375), - [sym_while_statement] = STATE(5375), - [sym_do_while_statement] = STATE(5375), - [sym_assignment] = STATE(5375), - [sym__expression] = STATE(3848), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8644), - [sym_annotation] = STATE(1272), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(5506), + [763] = { + [sym__loop_statement] = STATE(4006), + [sym_for_statement] = STATE(4006), + [sym_while_statement] = STATE(4006), + [sym_do_while_statement] = STATE(4006), + [sym_assignment] = STATE(4006), + [sym__expression] = STATE(1398), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_annotation] = STATE(1260), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [764] = { + [sym_annotated_lambda] = STATE(1171), + [sym_lambda_literal] = STATE(1044), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_object] = ACTIONS(3992), + [anon_sym_fun] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_this] = ACTIONS(3992), + [anon_sym_super] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3992), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_null] = ACTIONS(3992), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_when] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3994), + [anon_sym_continue_AT] = ACTIONS(3994), + [anon_sym_break_AT] = ACTIONS(3994), + [anon_sym_this_AT] = ACTIONS(3994), + [anon_sym_super_AT] = ACTIONS(3994), + [sym_real_literal] = ACTIONS(3994), + [sym_integer_literal] = ACTIONS(3992), + [sym_hex_literal] = ACTIONS(3994), + [sym_bin_literal] = ACTIONS(3994), + [anon_sym_true] = ACTIONS(3992), + [anon_sym_false] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3994), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3994), + }, + [765] = { + [sym__loop_statement] = STATE(4006), + [sym_for_statement] = STATE(4006), + [sym_while_statement] = STATE(4006), + [sym_do_while_statement] = STATE(4006), + [sym_assignment] = STATE(4006), + [sym__expression] = STATE(2450), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_annotation] = STATE(1262), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [766] = { + [sym__loop_statement] = STATE(5112), + [sym_for_statement] = STATE(5112), + [sym_while_statement] = STATE(5112), + [sym_do_while_statement] = STATE(5112), + [sym_assignment] = STATE(5112), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_annotation] = STATE(1242), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(5345), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(619), - [anon_sym_for] = ACTIONS(621), - [anon_sym_while] = ACTIONS(623), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(627), - [anon_sym_if] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -142701,7 +139251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), + [sym_real_literal] = ACTIONS(101), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -142712,73 +139262,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [790] = { - [sym__loop_statement] = STATE(9477), - [sym_for_statement] = STATE(9477), - [sym_while_statement] = STATE(9477), - [sym_do_while_statement] = STATE(9477), - [sym_assignment] = STATE(9477), - [sym__expression] = STATE(4407), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_annotation] = STATE(1265), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(5506), + [767] = { + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1790), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_annotation] = STATE(1247), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [768] = { + [sym__loop_statement] = STATE(4817), + [sym_for_statement] = STATE(4817), + [sym_while_statement] = STATE(4817), + [sym_do_while_statement] = STATE(4817), + [sym_assignment] = STATE(4817), + [sym__expression] = STATE(3277), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_annotation] = STATE(1288), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [769] = { + [sym__loop_statement] = STATE(9246), + [sym_for_statement] = STATE(9246), + [sym_while_statement] = STATE(9246), + [sym_do_while_statement] = STATE(9246), + [sym_assignment] = STATE(9246), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_annotation] = STATE(1242), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(5345), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), @@ -142824,86 +139598,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [791] = { - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [770] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4066), - [anon_sym_get] = ACTIONS(3982), - [anon_sym_set] = ACTIONS(3984), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -142932,100 +139706,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [792] = { - [sym__loop_statement] = STATE(3222), - [sym_for_statement] = STATE(3222), - [sym_while_statement] = STATE(3222), - [sym_do_while_statement] = STATE(3222), - [sym_assignment] = STATE(3222), - [sym__expression] = STATE(2295), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(2221), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8638), - [sym_annotation] = STATE(1285), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), + [771] = { + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(2263), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_annotation] = STATE(1255), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), [anon_sym_get] = ACTIONS(1910), [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1069), - [anon_sym_while] = ACTIONS(1071), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), [anon_sym_data] = ACTIONS(1910), [anon_sym_inner] = ACTIONS(1910), [anon_sym_value] = ACTIONS(1910), @@ -143033,101 +139807,437 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(639), }, - [793] = { - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [772] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4068), - [anon_sym_get] = ACTIONS(4058), - [anon_sym_set] = ACTIONS(4060), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [773] = { + [sym_annotated_lambda] = STATE(1076), + [sym_lambda_literal] = STATE(1044), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_object] = ACTIONS(4000), + [anon_sym_fun] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_this] = ACTIONS(4000), + [anon_sym_super] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_null] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_when] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), [anon_sym_LT_EQ] = ACTIONS(4002), [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4002), + [anon_sym_continue_AT] = ACTIONS(4002), + [anon_sym_break_AT] = ACTIONS(4002), + [anon_sym_this_AT] = ACTIONS(4002), + [anon_sym_super_AT] = ACTIONS(4002), + [sym_real_literal] = ACTIONS(4002), + [sym_integer_literal] = ACTIONS(4000), + [sym_hex_literal] = ACTIONS(4002), + [sym_bin_literal] = ACTIONS(4002), + [anon_sym_true] = ACTIONS(4000), + [anon_sym_false] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4002), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4002), + }, + [774] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4011), + [anon_sym_interface] = ACTIONS(4011), + [anon_sym_enum] = ACTIONS(4011), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4011), + [anon_sym_var] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4013), + [anon_sym_fun] = ACTIONS(4013), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4013), + [anon_sym_set] = ACTIONS(4013), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4013), + [anon_sym_sealed] = ACTIONS(4013), + [anon_sym_annotation] = ACTIONS(4013), + [anon_sym_data] = ACTIONS(4013), + [anon_sym_inner] = ACTIONS(4013), + [anon_sym_value] = ACTIONS(4013), + [anon_sym_override] = ACTIONS(4013), + [anon_sym_lateinit] = ACTIONS(4013), + [anon_sym_public] = ACTIONS(4013), + [anon_sym_private] = ACTIONS(4013), + [anon_sym_internal] = ACTIONS(4013), + [anon_sym_protected] = ACTIONS(4013), + [anon_sym_tailrec] = ACTIONS(4013), + [anon_sym_operator] = ACTIONS(4013), + [anon_sym_infix] = ACTIONS(4013), + [anon_sym_inline] = ACTIONS(4013), + [anon_sym_external] = ACTIONS(4013), + [sym_property_modifier] = ACTIONS(4013), + [anon_sym_abstract] = ACTIONS(4013), + [anon_sym_final] = ACTIONS(4013), + [anon_sym_open] = ACTIONS(4013), + [anon_sym_vararg] = ACTIONS(4013), + [anon_sym_noinline] = ACTIONS(4013), + [anon_sym_crossinline] = ACTIONS(4013), + [anon_sym_expect] = ACTIONS(4013), + [anon_sym_actual] = ACTIONS(4013), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [775] = { + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4016), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -143156,224 +140266,448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [794] = { - [sym_indexing_suffix] = STATE(7443), - [sym_navigation_suffix] = STATE(7443), - [sym__postfix_unary_operator] = STATE(7443), - [sym__member_access_operator] = STATE(7875), - [sym__postfix_unary_suffix] = STATE(7443), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7443), - [sym__alpha_identifier] = ACTIONS(4034), - [anon_sym_AT] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4038), - [anon_sym_as] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4070), - [anon_sym_fun] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_COMMA] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_where] = ACTIONS(4034), - [anon_sym_object] = ACTIONS(4034), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_get] = ACTIONS(4034), - [anon_sym_set] = ACTIONS(4034), - [anon_sym_this] = ACTIONS(4034), - [anon_sym_super] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4034), - [sym_label] = ACTIONS(4034), - [anon_sym_in] = ACTIONS(4034), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_QMARK_COLON] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_null] = ACTIONS(4034), - [anon_sym_if] = ACTIONS(4034), - [anon_sym_else] = ACTIONS(4034), - [anon_sym_when] = ACTIONS(4034), - [anon_sym_try] = ACTIONS(4034), - [anon_sym_throw] = ACTIONS(4034), - [anon_sym_return] = ACTIONS(4034), - [anon_sym_continue] = ACTIONS(4034), - [anon_sym_break] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4046), - [anon_sym_PLUS_EQ] = ACTIONS(4073), - [anon_sym_DASH_EQ] = ACTIONS(4073), - [anon_sym_STAR_EQ] = ACTIONS(4073), - [anon_sym_SLASH_EQ] = ACTIONS(4073), - [anon_sym_PERCENT_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT_EQ] = ACTIONS(4036), - [anon_sym_GT_EQ] = ACTIONS(4036), - [anon_sym_BANGin] = ACTIONS(4036), - [anon_sym_is] = ACTIONS(4034), - [anon_sym_BANGis] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_SLASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_as_QMARK] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(4051), - [anon_sym_BANG] = ACTIONS(4034), - [anon_sym_BANG_BANG] = ACTIONS(4051), - [anon_sym_suspend] = ACTIONS(4034), - [anon_sym_sealed] = ACTIONS(4034), - [anon_sym_annotation] = ACTIONS(4034), - [anon_sym_data] = ACTIONS(4034), - [anon_sym_inner] = ACTIONS(4034), - [anon_sym_value] = ACTIONS(4034), - [anon_sym_override] = ACTIONS(4034), - [anon_sym_lateinit] = ACTIONS(4034), - [anon_sym_public] = ACTIONS(4034), - [anon_sym_private] = ACTIONS(4034), - [anon_sym_internal] = ACTIONS(4034), - [anon_sym_protected] = ACTIONS(4034), - [anon_sym_tailrec] = ACTIONS(4034), - [anon_sym_operator] = ACTIONS(4034), - [anon_sym_infix] = ACTIONS(4034), - [anon_sym_inline] = ACTIONS(4034), - [anon_sym_external] = ACTIONS(4034), - [sym_property_modifier] = ACTIONS(4034), - [anon_sym_abstract] = ACTIONS(4034), - [anon_sym_final] = ACTIONS(4034), - [anon_sym_open] = ACTIONS(4034), - [anon_sym_vararg] = ACTIONS(4034), - [anon_sym_noinline] = ACTIONS(4034), - [anon_sym_crossinline] = ACTIONS(4034), - [anon_sym_expect] = ACTIONS(4034), - [anon_sym_actual] = ACTIONS(4034), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4036), - [anon_sym_continue_AT] = ACTIONS(4036), - [anon_sym_break_AT] = ACTIONS(4036), - [anon_sym_this_AT] = ACTIONS(4036), - [anon_sym_super_AT] = ACTIONS(4036), - [sym_real_literal] = ACTIONS(4036), - [sym_integer_literal] = ACTIONS(4034), - [sym_hex_literal] = ACTIONS(4036), - [sym_bin_literal] = ACTIONS(4036), - [anon_sym_true] = ACTIONS(4034), - [anon_sym_false] = ACTIONS(4034), - [anon_sym_SQUOTE] = ACTIONS(4036), - [sym__backtick_identifier] = ACTIONS(4036), - [sym__automatic_semicolon] = ACTIONS(4036), - [sym_safe_nav] = ACTIONS(4046), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4036), + [776] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4011), + [anon_sym_interface] = ACTIONS(4011), + [anon_sym_enum] = ACTIONS(4011), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4011), + [anon_sym_var] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4013), + [anon_sym_fun] = ACTIONS(4013), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4013), + [anon_sym_set] = ACTIONS(4013), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4011), + [anon_sym_sealed] = ACTIONS(4011), + [anon_sym_annotation] = ACTIONS(4011), + [anon_sym_data] = ACTIONS(4013), + [anon_sym_inner] = ACTIONS(4013), + [anon_sym_value] = ACTIONS(4013), + [anon_sym_override] = ACTIONS(4011), + [anon_sym_lateinit] = ACTIONS(4011), + [anon_sym_public] = ACTIONS(4011), + [anon_sym_private] = ACTIONS(4011), + [anon_sym_internal] = ACTIONS(4011), + [anon_sym_protected] = ACTIONS(4011), + [anon_sym_tailrec] = ACTIONS(4011), + [anon_sym_operator] = ACTIONS(4011), + [anon_sym_infix] = ACTIONS(4011), + [anon_sym_inline] = ACTIONS(4011), + [anon_sym_external] = ACTIONS(4011), + [sym_property_modifier] = ACTIONS(4011), + [anon_sym_abstract] = ACTIONS(4011), + [anon_sym_final] = ACTIONS(4011), + [anon_sym_open] = ACTIONS(4011), + [anon_sym_vararg] = ACTIONS(4011), + [anon_sym_noinline] = ACTIONS(4011), + [anon_sym_crossinline] = ACTIONS(4011), + [anon_sym_expect] = ACTIONS(4013), + [anon_sym_actual] = ACTIONS(4013), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [795] = { - [sym__loop_statement] = STATE(4979), - [sym_for_statement] = STATE(4979), - [sym_while_statement] = STATE(4979), - [sym_do_while_statement] = STATE(4979), - [sym_assignment] = STATE(4979), - [sym__expression] = STATE(4375), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_annotation] = STATE(1311), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(5506), + [777] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4021), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_interface] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4021), + [anon_sym_var] = ACTIONS(4021), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4023), + [anon_sym_fun] = ACTIONS(4023), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4023), + [anon_sym_set] = ACTIONS(4023), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4023), + [anon_sym_sealed] = ACTIONS(4023), + [anon_sym_annotation] = ACTIONS(4023), + [anon_sym_data] = ACTIONS(4023), + [anon_sym_inner] = ACTIONS(4023), + [anon_sym_value] = ACTIONS(4023), + [anon_sym_override] = ACTIONS(4023), + [anon_sym_lateinit] = ACTIONS(4023), + [anon_sym_public] = ACTIONS(4023), + [anon_sym_private] = ACTIONS(4023), + [anon_sym_internal] = ACTIONS(4023), + [anon_sym_protected] = ACTIONS(4023), + [anon_sym_tailrec] = ACTIONS(4023), + [anon_sym_operator] = ACTIONS(4023), + [anon_sym_infix] = ACTIONS(4023), + [anon_sym_inline] = ACTIONS(4023), + [anon_sym_external] = ACTIONS(4023), + [sym_property_modifier] = ACTIONS(4023), + [anon_sym_abstract] = ACTIONS(4023), + [anon_sym_final] = ACTIONS(4023), + [anon_sym_open] = ACTIONS(4023), + [anon_sym_vararg] = ACTIONS(4023), + [anon_sym_noinline] = ACTIONS(4023), + [anon_sym_crossinline] = ACTIONS(4023), + [anon_sym_expect] = ACTIONS(4023), + [anon_sym_actual] = ACTIONS(4023), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [778] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4021), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_interface] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4021), + [anon_sym_var] = ACTIONS(4021), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4023), + [anon_sym_fun] = ACTIONS(4023), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4023), + [anon_sym_set] = ACTIONS(4023), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4021), + [anon_sym_sealed] = ACTIONS(4021), + [anon_sym_annotation] = ACTIONS(4021), + [anon_sym_data] = ACTIONS(4023), + [anon_sym_inner] = ACTIONS(4023), + [anon_sym_value] = ACTIONS(4023), + [anon_sym_override] = ACTIONS(4021), + [anon_sym_lateinit] = ACTIONS(4021), + [anon_sym_public] = ACTIONS(4021), + [anon_sym_private] = ACTIONS(4021), + [anon_sym_internal] = ACTIONS(4021), + [anon_sym_protected] = ACTIONS(4021), + [anon_sym_tailrec] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(4021), + [anon_sym_infix] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym_external] = ACTIONS(4021), + [sym_property_modifier] = ACTIONS(4021), + [anon_sym_abstract] = ACTIONS(4021), + [anon_sym_final] = ACTIONS(4021), + [anon_sym_open] = ACTIONS(4021), + [anon_sym_vararg] = ACTIONS(4021), + [anon_sym_noinline] = ACTIONS(4021), + [anon_sym_crossinline] = ACTIONS(4021), + [anon_sym_expect] = ACTIONS(4023), + [anon_sym_actual] = ACTIONS(4023), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [779] = { + [sym__loop_statement] = STATE(3603), + [sym_for_statement] = STATE(3603), + [sym_while_statement] = STATE(3603), + [sym_do_while_statement] = STATE(3603), + [sym_assignment] = STATE(3603), + [sym__expression] = STATE(2255), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_annotation] = STATE(1257), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(5345), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(839), + [anon_sym_for] = ACTIONS(841), + [anon_sym_while] = ACTIONS(843), [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), + [sym_real_literal] = ACTIONS(851), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -143384,325 +140718,549 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [796] = { - [sym__loop_statement] = STATE(1119), - [sym_for_statement] = STATE(1119), - [sym_while_statement] = STATE(1119), - [sym_do_while_statement] = STATE(1119), - [sym_assignment] = STATE(1119), - [sym__expression] = STATE(371), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(794), - [sym_parenthesized_expression] = STATE(794), - [sym_collection_literal] = STATE(794), - [sym__literal_constant] = STATE(794), - [sym_string_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_anonymous_function] = STATE(794), - [sym__function_literal] = STATE(794), - [sym_object_literal] = STATE(794), - [sym_this_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_expression] = STATE(794), - [sym_when_expression] = STATE(794), - [sym_try_expression] = STATE(794), - [sym_jump_expression] = STATE(794), - [sym_callable_reference] = STATE(794), - [sym__prefix_unary_operator] = STATE(2024), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8635), - [sym_annotation] = STATE(1269), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1111), + [780] = { + [sym__loop_statement] = STATE(1026), + [sym_for_statement] = STATE(1026), + [sym_while_statement] = STATE(1026), + [sym_do_while_statement] = STATE(1026), + [sym_assignment] = STATE(1026), + [sym__expression] = STATE(519), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_annotation] = STATE(1272), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [781] = { + [sym__loop_statement] = STATE(1026), + [sym_for_statement] = STATE(1026), + [sym_while_statement] = STATE(1026), + [sym_do_while_statement] = STATE(1026), + [sym_assignment] = STATE(1026), + [sym__expression] = STATE(464), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_annotation] = STATE(1275), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1106), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(794), - [sym_long_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym_character_literal] = STATE(794), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [797] = { - [sym__loop_statement] = STATE(5375), - [sym_for_statement] = STATE(5375), - [sym_while_statement] = STATE(5375), - [sym_do_while_statement] = STATE(5375), - [sym_assignment] = STATE(5375), - [sym__expression] = STATE(4407), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4670), - [sym_parenthesized_expression] = STATE(4670), - [sym_collection_literal] = STATE(4670), - [sym__literal_constant] = STATE(4670), - [sym_string_literal] = STATE(4670), - [sym_lambda_literal] = STATE(4670), - [sym_anonymous_function] = STATE(4670), - [sym__function_literal] = STATE(4670), - [sym_object_literal] = STATE(4670), - [sym_this_expression] = STATE(4670), - [sym_super_expression] = STATE(4670), - [sym_if_expression] = STATE(4670), - [sym_when_expression] = STATE(4670), - [sym_try_expression] = STATE(4670), - [sym_jump_expression] = STATE(4670), - [sym_callable_reference] = STATE(4670), - [sym__prefix_unary_operator] = STATE(1582), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8637), - [sym_annotation] = STATE(1265), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4670), - [sym_long_literal] = STATE(4670), - [sym_boolean_literal] = STATE(4670), - [sym_character_literal] = STATE(4670), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1119), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [782] = { + [sym__loop_statement] = STATE(1026), + [sym_for_statement] = STATE(1026), + [sym_while_statement] = STATE(1026), + [sym_do_while_statement] = STATE(1026), + [sym_assignment] = STATE(1026), + [sym__expression] = STATE(363), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_annotation] = STATE(1246), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [783] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4026), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), }, - [798] = { - [sym__loop_statement] = STATE(4979), - [sym_for_statement] = STATE(4979), - [sym_while_statement] = STATE(4979), - [sym_do_while_statement] = STATE(4979), - [sym_assignment] = STATE(4979), - [sym__expression] = STATE(4053), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4642), - [sym_parenthesized_expression] = STATE(4642), - [sym_collection_literal] = STATE(4642), - [sym__literal_constant] = STATE(4642), - [sym_string_literal] = STATE(4642), - [sym_lambda_literal] = STATE(4642), - [sym_anonymous_function] = STATE(4642), - [sym__function_literal] = STATE(4642), - [sym_object_literal] = STATE(4642), - [sym_this_expression] = STATE(4642), - [sym_super_expression] = STATE(4642), - [sym_if_expression] = STATE(4642), - [sym_when_expression] = STATE(4642), - [sym_try_expression] = STATE(4642), - [sym_jump_expression] = STATE(4642), - [sym_callable_reference] = STATE(4642), - [sym__prefix_unary_operator] = STATE(1799), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8656), - [sym_annotation] = STATE(1312), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4642), - [sym_long_literal] = STATE(4642), - [sym_boolean_literal] = STATE(4642), - [sym_character_literal] = STATE(4642), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(5506), + [784] = { + [sym__loop_statement] = STATE(3603), + [sym_for_statement] = STATE(3603), + [sym_while_statement] = STATE(3603), + [sym_do_while_statement] = STATE(3603), + [sym_assignment] = STATE(3603), + [sym__expression] = STATE(1668), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_annotation] = STATE(1248), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(5345), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), - [anon_sym_while] = ACTIONS(751), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_while] = ACTIONS(777), [anon_sym_do] = ACTIONS(157), [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), @@ -143720,419 +141278,867 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [799] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4022), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_typealias] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4025), - [anon_sym_fun] = ACTIONS(4027), - [anon_sym_interface] = ACTIONS(4025), - [anon_sym_enum] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_val] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4027), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4027), - [anon_sym_set] = ACTIONS(4027), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4010), - [sym_label] = ACTIONS(4010), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4025), - [anon_sym_sealed] = ACTIONS(4025), - [anon_sym_annotation] = ACTIONS(4025), - [anon_sym_data] = ACTIONS(4027), - [anon_sym_inner] = ACTIONS(4027), - [anon_sym_value] = ACTIONS(4027), - [anon_sym_override] = ACTIONS(4025), - [anon_sym_lateinit] = ACTIONS(4025), - [anon_sym_public] = ACTIONS(4025), - [anon_sym_private] = ACTIONS(4025), - [anon_sym_internal] = ACTIONS(4025), - [anon_sym_protected] = ACTIONS(4025), - [anon_sym_tailrec] = ACTIONS(4025), - [anon_sym_operator] = ACTIONS(4025), - [anon_sym_infix] = ACTIONS(4025), - [anon_sym_inline] = ACTIONS(4025), - [anon_sym_external] = ACTIONS(4025), - [sym_property_modifier] = ACTIONS(4025), - [anon_sym_abstract] = ACTIONS(4025), - [anon_sym_final] = ACTIONS(4025), - [anon_sym_open] = ACTIONS(4025), - [anon_sym_vararg] = ACTIONS(4025), - [anon_sym_noinline] = ACTIONS(4025), - [anon_sym_crossinline] = ACTIONS(4025), - [anon_sym_expect] = ACTIONS(4027), - [anon_sym_actual] = ACTIONS(4027), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4015), - [sym__automatic_semicolon] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), + [785] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_object] = ACTIONS(4028), + [anon_sym_fun] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_this] = ACTIONS(4028), + [anon_sym_super] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4028), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4043), + [anon_sym_DASH_EQ] = ACTIONS(4043), + [anon_sym_STAR_EQ] = ACTIONS(4043), + [anon_sym_SLASH_EQ] = ACTIONS(4043), + [anon_sym_PERCENT_EQ] = ACTIONS(4043), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4030), + [anon_sym_continue_AT] = ACTIONS(4030), + [anon_sym_break_AT] = ACTIONS(4030), + [anon_sym_this_AT] = ACTIONS(4030), + [anon_sym_super_AT] = ACTIONS(4030), + [sym_real_literal] = ACTIONS(4030), + [sym_integer_literal] = ACTIONS(4028), + [sym_hex_literal] = ACTIONS(4030), + [sym_bin_literal] = ACTIONS(4030), + [anon_sym_true] = ACTIONS(4028), + [anon_sym_false] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4030), }, - [800] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_typealias] = ACTIONS(4017), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4017), - [anon_sym_fun] = ACTIONS(4019), - [anon_sym_interface] = ACTIONS(4017), - [anon_sym_enum] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_val] = ACTIONS(4017), - [anon_sym_var] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4010), - [sym_label] = ACTIONS(4010), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4017), - [anon_sym_sealed] = ACTIONS(4017), - [anon_sym_annotation] = ACTIONS(4017), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_value] = ACTIONS(4019), - [anon_sym_override] = ACTIONS(4017), - [anon_sym_lateinit] = ACTIONS(4017), - [anon_sym_public] = ACTIONS(4017), - [anon_sym_private] = ACTIONS(4017), - [anon_sym_internal] = ACTIONS(4017), - [anon_sym_protected] = ACTIONS(4017), - [anon_sym_tailrec] = ACTIONS(4017), - [anon_sym_operator] = ACTIONS(4017), - [anon_sym_infix] = ACTIONS(4017), - [anon_sym_inline] = ACTIONS(4017), - [anon_sym_external] = ACTIONS(4017), - [sym_property_modifier] = ACTIONS(4017), - [anon_sym_abstract] = ACTIONS(4017), - [anon_sym_final] = ACTIONS(4017), - [anon_sym_open] = ACTIONS(4017), - [anon_sym_vararg] = ACTIONS(4017), - [anon_sym_noinline] = ACTIONS(4017), - [anon_sym_crossinline] = ACTIONS(4017), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4015), - [sym__automatic_semicolon] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), + [786] = { + [sym__loop_statement] = STATE(3603), + [sym_for_statement] = STATE(3603), + [sym_while_statement] = STATE(3603), + [sym_do_while_statement] = STATE(3603), + [sym_assignment] = STATE(3603), + [sym__expression] = STATE(2486), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_annotation] = STATE(1238), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [801] = { - [sym__loop_statement] = STATE(1119), - [sym_for_statement] = STATE(1119), - [sym_while_statement] = STATE(1119), - [sym_do_while_statement] = STATE(1119), - [sym_assignment] = STATE(1119), - [sym__expression] = STATE(544), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_collection_literal] = STATE(780), - [sym__literal_constant] = STATE(780), - [sym_string_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_anonymous_function] = STATE(780), - [sym__function_literal] = STATE(780), - [sym_object_literal] = STATE(780), - [sym_this_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_expression] = STATE(780), - [sym_when_expression] = STATE(780), - [sym_try_expression] = STATE(780), - [sym_jump_expression] = STATE(780), - [sym_callable_reference] = STATE(780), - [sym__prefix_unary_operator] = STATE(2034), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8634), - [sym_annotation] = STATE(1299), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1111), + [787] = { + [sym__loop_statement] = STATE(4006), + [sym_for_statement] = STATE(4006), + [sym_while_statement] = STATE(4006), + [sym_do_while_statement] = STATE(4006), + [sym_assignment] = STATE(4006), + [sym__expression] = STATE(2593), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_annotation] = STATE(1285), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [788] = { + [sym__loop_statement] = STATE(1026), + [sym_for_statement] = STATE(1026), + [sym_while_statement] = STATE(1026), + [sym_do_while_statement] = STATE(1026), + [sym_assignment] = STATE(1026), + [sym__expression] = STATE(398), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_annotation] = STATE(1245), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1106), [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(780), - [sym_long_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym_character_literal] = STATE(780), - [sym__lexical_identifier] = STATE(829), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1093), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(805), + [anon_sym_for] = ACTIONS(807), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [789] = { + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(958), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_annotation] = STATE(1270), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [790] = { + [sym__loop_statement] = STATE(9907), + [sym_for_statement] = STATE(9907), + [sym_while_statement] = STATE(9907), + [sym_do_while_statement] = STATE(9907), + [sym_assignment] = STATE(9907), + [sym__expression] = STATE(4278), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_annotation] = STATE(1293), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(295), }, - [802] = { - [sym__loop_statement] = STATE(5375), - [sym_for_statement] = STATE(5375), - [sym_while_statement] = STATE(5375), - [sym_do_while_statement] = STATE(5375), - [sym_assignment] = STATE(5375), - [sym__expression] = STATE(4168), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(4691), - [sym_parenthesized_expression] = STATE(4691), - [sym_collection_literal] = STATE(4691), - [sym__literal_constant] = STATE(4691), - [sym_string_literal] = STATE(4691), - [sym_lambda_literal] = STATE(4691), - [sym_anonymous_function] = STATE(4691), - [sym__function_literal] = STATE(4691), - [sym_object_literal] = STATE(4691), - [sym_this_expression] = STATE(4691), - [sym_super_expression] = STATE(4691), - [sym_if_expression] = STATE(4691), - [sym_when_expression] = STATE(4691), - [sym_try_expression] = STATE(4691), - [sym_jump_expression] = STATE(4691), - [sym_callable_reference] = STATE(4691), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8650), - [sym_annotation] = STATE(1283), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5231), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(4691), - [sym_long_literal] = STATE(4691), - [sym_boolean_literal] = STATE(4691), - [sym_character_literal] = STATE(4691), - [sym__lexical_identifier] = STATE(4726), - [aux_sym__statement_repeat1] = STATE(5506), + [791] = { + [sym__loop_statement] = STATE(4006), + [sym_for_statement] = STATE(4006), + [sym_while_statement] = STATE(4006), + [sym_do_while_statement] = STATE(4006), + [sym_assignment] = STATE(4006), + [sym__expression] = STATE(2205), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_annotation] = STATE(1292), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [792] = { + [sym__loop_statement] = STATE(5112), + [sym_for_statement] = STATE(5112), + [sym_while_statement] = STATE(5112), + [sym_do_while_statement] = STATE(5112), + [sym_assignment] = STATE(5112), + [sym__expression] = STATE(4089), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_annotation] = STATE(1282), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(5345), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1353), [sym_label] = ACTIONS(657), [anon_sym_for] = ACTIONS(659), [anon_sym_while] = ACTIONS(661), - [anon_sym_do] = ACTIONS(625), - [anon_sym_null] = ACTIONS(627), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -144157,7 +142163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(639), + [sym_real_literal] = ACTIONS(385), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -144168,220 +142174,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [803] = { - [sym__loop_statement] = STATE(5505), - [sym_for_statement] = STATE(5505), - [sym_while_statement] = STATE(5505), - [sym_do_while_statement] = STATE(5505), - [sym_assignment] = STATE(5505), - [sym__expression] = STATE(2295), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(2221), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8638), - [sym_annotation] = STATE(1285), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [804] = { - [sym__loop_statement] = STATE(3474), - [sym_for_statement] = STATE(3474), - [sym_while_statement] = STATE(3474), - [sym_do_while_statement] = STATE(3474), - [sym_assignment] = STATE(3474), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_collection_literal] = STATE(2873), - [sym__literal_constant] = STATE(2873), - [sym_string_literal] = STATE(2873), - [sym_lambda_literal] = STATE(2873), - [sym_anonymous_function] = STATE(2873), - [sym__function_literal] = STATE(2873), - [sym_object_literal] = STATE(2873), - [sym_this_expression] = STATE(2873), - [sym_super_expression] = STATE(2873), - [sym_if_expression] = STATE(2873), - [sym_when_expression] = STATE(2873), - [sym_try_expression] = STATE(2873), - [sym_jump_expression] = STATE(2873), - [sym_callable_reference] = STATE(2873), - [sym__prefix_unary_operator] = STATE(2078), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8668), - [sym_annotation] = STATE(1281), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2873), - [sym_long_literal] = STATE(2873), - [sym_boolean_literal] = STATE(2873), - [sym_character_literal] = STATE(2873), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(5506), + [793] = { + [sym__loop_statement] = STATE(4817), + [sym_for_statement] = STATE(4817), + [sym_while_statement] = STATE(4817), + [sym_do_while_statement] = STATE(4817), + [sym_assignment] = STATE(4817), + [sym__expression] = STATE(4278), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_annotation] = STATE(1293), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(5345), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(241), - [anon_sym_for] = ACTIONS(243), - [anon_sym_while] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(251), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(283), + [sym_real_literal] = ACTIONS(343), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -144392,892 +142286,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [805] = { - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4076), - [anon_sym_get] = ACTIONS(3982), - [anon_sym_set] = ACTIONS(3984), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [806] = { - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4078), - [anon_sym_get] = ACTIONS(4058), - [anon_sym_set] = ACTIONS(4060), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [807] = { - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4080), - [anon_sym_get] = ACTIONS(4058), - [anon_sym_set] = ACTIONS(4060), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [808] = { - [sym_annotated_lambda] = STATE(1123), - [sym_lambda_literal] = STATE(1089), - [sym_annotation] = STATE(8602), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8602), - [sym__alpha_identifier] = ACTIONS(4082), - [anon_sym_AT] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(4082), - [anon_sym_EQ] = ACTIONS(4082), - [anon_sym_fun] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_where] = ACTIONS(4082), - [anon_sym_object] = ACTIONS(4082), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_get] = ACTIONS(4082), - [anon_sym_set] = ACTIONS(4082), - [anon_sym_this] = ACTIONS(4082), - [anon_sym_super] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [sym_label] = ACTIONS(4082), - [anon_sym_in] = ACTIONS(4082), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_QMARK_COLON] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_null] = ACTIONS(4082), - [anon_sym_if] = ACTIONS(4082), - [anon_sym_else] = ACTIONS(4082), - [anon_sym_when] = ACTIONS(4082), - [anon_sym_try] = ACTIONS(4082), - [anon_sym_throw] = ACTIONS(4082), - [anon_sym_return] = ACTIONS(4082), - [anon_sym_continue] = ACTIONS(4082), - [anon_sym_break] = ACTIONS(4082), - [anon_sym_COLON_COLON] = ACTIONS(4084), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_STAR_EQ] = ACTIONS(4084), - [anon_sym_SLASH_EQ] = ACTIONS(4084), - [anon_sym_PERCENT_EQ] = ACTIONS(4084), - [anon_sym_BANG_EQ] = ACTIONS(4082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_BANGin] = ACTIONS(4084), - [anon_sym_is] = ACTIONS(4082), - [anon_sym_BANGis] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_SLASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4082), - [anon_sym_as_QMARK] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_BANG_BANG] = ACTIONS(4084), - [anon_sym_suspend] = ACTIONS(4082), - [anon_sym_sealed] = ACTIONS(4082), - [anon_sym_annotation] = ACTIONS(4082), - [anon_sym_data] = ACTIONS(4082), - [anon_sym_inner] = ACTIONS(4082), - [anon_sym_value] = ACTIONS(4082), - [anon_sym_override] = ACTIONS(4082), - [anon_sym_lateinit] = ACTIONS(4082), - [anon_sym_public] = ACTIONS(4082), - [anon_sym_private] = ACTIONS(4082), - [anon_sym_internal] = ACTIONS(4082), - [anon_sym_protected] = ACTIONS(4082), - [anon_sym_tailrec] = ACTIONS(4082), - [anon_sym_operator] = ACTIONS(4082), - [anon_sym_infix] = ACTIONS(4082), - [anon_sym_inline] = ACTIONS(4082), - [anon_sym_external] = ACTIONS(4082), - [sym_property_modifier] = ACTIONS(4082), - [anon_sym_abstract] = ACTIONS(4082), - [anon_sym_final] = ACTIONS(4082), - [anon_sym_open] = ACTIONS(4082), - [anon_sym_vararg] = ACTIONS(4082), - [anon_sym_noinline] = ACTIONS(4082), - [anon_sym_crossinline] = ACTIONS(4082), - [anon_sym_expect] = ACTIONS(4082), - [anon_sym_actual] = ACTIONS(4082), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4084), - [anon_sym_continue_AT] = ACTIONS(4084), - [anon_sym_break_AT] = ACTIONS(4084), - [anon_sym_this_AT] = ACTIONS(4084), - [anon_sym_super_AT] = ACTIONS(4084), - [sym_real_literal] = ACTIONS(4084), - [sym_integer_literal] = ACTIONS(4082), - [sym_hex_literal] = ACTIONS(4084), - [sym_bin_literal] = ACTIONS(4084), - [anon_sym_true] = ACTIONS(4082), - [anon_sym_false] = ACTIONS(4082), - [anon_sym_SQUOTE] = ACTIONS(4084), - [sym__backtick_identifier] = ACTIONS(4084), - [sym__automatic_semicolon] = ACTIONS(4084), - [sym_safe_nav] = ACTIONS(4084), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4084), - }, - [809] = { - [sym__loop_statement] = STATE(3222), - [sym_for_statement] = STATE(3222), - [sym_while_statement] = STATE(3222), - [sym_do_while_statement] = STATE(3222), - [sym_assignment] = STATE(3222), - [sym__expression] = STATE(1821), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(2816), - [sym_parenthesized_expression] = STATE(2816), - [sym_collection_literal] = STATE(2816), - [sym__literal_constant] = STATE(2816), - [sym_string_literal] = STATE(2816), - [sym_lambda_literal] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [sym__function_literal] = STATE(2816), - [sym_object_literal] = STATE(2816), - [sym_this_expression] = STATE(2816), - [sym_super_expression] = STATE(2816), - [sym_if_expression] = STATE(2816), - [sym_when_expression] = STATE(2816), - [sym_try_expression] = STATE(2816), - [sym_jump_expression] = STATE(2816), - [sym_callable_reference] = STATE(2816), - [sym__prefix_unary_operator] = STATE(1679), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8632), - [sym_annotation] = STATE(1304), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3237), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(2816), - [sym_long_literal] = STATE(2816), - [sym_boolean_literal] = STATE(2816), - [sym_character_literal] = STATE(2816), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(899), - [anon_sym_for] = ACTIONS(901), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(551), - [anon_sym_null] = ACTIONS(905), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [794] = { + [sym__loop_statement] = STATE(5112), + [sym_for_statement] = STATE(5112), + [sym_while_statement] = STATE(5112), + [sym_do_while_statement] = STATE(5112), + [sym_assignment] = STATE(5112), + [sym__expression] = STATE(3792), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_annotation] = STATE(1269), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [810] = { - [sym_getter] = STATE(5259), - [sym_setter] = STATE(5259), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym_get] = ACTIONS(4058), - [anon_sym_set] = ACTIONS(4060), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [811] = { - [sym__loop_statement] = STATE(4979), - [sym_for_statement] = STATE(4979), - [sym_while_statement] = STATE(4979), - [sym_do_while_statement] = STATE(4979), - [sym_assignment] = STATE(4979), - [sym__expression] = STATE(4209), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2020), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8639), - [sym_annotation] = STATE(1301), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(871), - [anon_sym_for] = ACTIONS(873), - [anon_sym_while] = ACTIONS(875), - [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(161), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(113), }, - [812] = { - [sym__loop_statement] = STATE(3474), - [sym_for_statement] = STATE(3474), - [sym_while_statement] = STATE(3474), - [sym_do_while_statement] = STATE(3474), - [sym_assignment] = STATE(3474), - [sym__expression] = STATE(2577), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1836), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8626), - [sym_annotation] = STATE(1266), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(5506), + [795] = { + [sym__loop_statement] = STATE(4817), + [sym_for_statement] = STATE(4817), + [sym_while_statement] = STATE(4817), + [sym_do_while_statement] = STATE(4817), + [sym_assignment] = STATE(4817), + [sym__expression] = STATE(3879), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_annotation] = STATE(1239), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(5345), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(683), + [anon_sym_for] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(721), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(851), + [sym_real_literal] = ACTIONS(283), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -145288,83 +142510,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [813] = { - [sym__loop_statement] = STATE(3474), - [sym_for_statement] = STATE(3474), - [sym_while_statement] = STATE(3474), - [sym_do_while_statement] = STATE(3474), - [sym_assignment] = STATE(3474), - [sym__expression] = STATE(2293), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_collection_literal] = STATE(2854), - [sym__literal_constant] = STATE(2854), - [sym_string_literal] = STATE(2854), - [sym_lambda_literal] = STATE(2854), - [sym_anonymous_function] = STATE(2854), - [sym__function_literal] = STATE(2854), - [sym_object_literal] = STATE(2854), - [sym_this_expression] = STATE(2854), - [sym_super_expression] = STATE(2854), - [sym_if_expression] = STATE(2854), - [sym_when_expression] = STATE(2854), - [sym_try_expression] = STATE(2854), - [sym_jump_expression] = STATE(2854), - [sym_callable_reference] = STATE(2854), - [sym__prefix_unary_operator] = STATE(1540), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8653), - [sym_annotation] = STATE(1314), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3694), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(2854), - [sym_long_literal] = STATE(2854), - [sym_boolean_literal] = STATE(2854), - [sym_character_literal] = STATE(2854), - [sym__lexical_identifier] = STATE(3032), - [aux_sym__statement_repeat1] = STATE(5506), + [796] = { + [sym__loop_statement] = STATE(4817), + [sym_for_statement] = STATE(4817), + [sym_while_statement] = STATE(4817), + [sym_do_while_statement] = STATE(4817), + [sym_assignment] = STATE(4817), + [sym__expression] = STATE(4122), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_annotation] = STATE(1276), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(5345), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(839), - [anon_sym_for] = ACTIONS(841), - [anon_sym_while] = ACTIONS(843), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(875), [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(845), + [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), @@ -145373,23 +142595,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(851), + [sym_real_literal] = ACTIONS(343), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -145400,198 +142622,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [814] = { - [sym__loop_statement] = STATE(10010), - [sym_for_statement] = STATE(10010), - [sym_while_statement] = STATE(10010), - [sym_do_while_statement] = STATE(10010), - [sym_assignment] = STATE(10010), - [sym__expression] = STATE(4375), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4643), - [sym_parenthesized_expression] = STATE(4643), - [sym_collection_literal] = STATE(4643), - [sym__literal_constant] = STATE(4643), - [sym_string_literal] = STATE(4643), - [sym_lambda_literal] = STATE(4643), - [sym_anonymous_function] = STATE(4643), - [sym__function_literal] = STATE(4643), - [sym_object_literal] = STATE(4643), - [sym_this_expression] = STATE(4643), - [sym_super_expression] = STATE(4643), - [sym_if_expression] = STATE(4643), - [sym_when_expression] = STATE(4643), - [sym_try_expression] = STATE(4643), - [sym_jump_expression] = STATE(4643), - [sym_callable_reference] = STATE(4643), - [sym__prefix_unary_operator] = STATE(2218), - [sym__postfix_unary_expression] = STATE(8722), - [sym_directly_assignable_expression] = STATE(8664), - [sym_annotation] = STATE(1311), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4927), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4643), - [sym_long_literal] = STATE(4643), - [sym_boolean_literal] = STATE(4643), - [sym_character_literal] = STATE(4643), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__statement_repeat1] = STATE(5506), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(327), - [anon_sym_do] = ACTIONS(329), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [797] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [815] = { - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [798] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_object] = ACTIONS(4028), + [anon_sym_fun] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_this] = ACTIONS(4028), + [anon_sym_super] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4028), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4053), + [anon_sym_DASH_EQ] = ACTIONS(4053), + [anon_sym_STAR_EQ] = ACTIONS(4053), + [anon_sym_SLASH_EQ] = ACTIONS(4053), + [anon_sym_PERCENT_EQ] = ACTIONS(4053), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4030), + [anon_sym_continue_AT] = ACTIONS(4030), + [anon_sym_break_AT] = ACTIONS(4030), + [anon_sym_this_AT] = ACTIONS(4030), + [anon_sym_super_AT] = ACTIONS(4030), + [sym_real_literal] = ACTIONS(4030), + [sym_integer_literal] = ACTIONS(4028), + [sym_hex_literal] = ACTIONS(4030), + [sym_bin_literal] = ACTIONS(4030), + [anon_sym_true] = ACTIONS(4028), + [anon_sym_false] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4030), + }, + [799] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4092), - [anon_sym_set] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(4060), + [anon_sym_set] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -145620,89 +142954,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [816] = { - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [800] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3572), [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3576), [anon_sym_COMMA] = ACTIONS(1734), [anon_sym_RPAREN] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), + [anon_sym_GT] = ACTIONS(4056), [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4120), - [anon_sym_get] = ACTIONS(4092), - [anon_sym_set] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4096), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym_get] = ACTIONS(4090), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4064), [anon_sym_DASH_GT] = ACTIONS(1734), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -145731,89 +143065,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [817] = { - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [801] = { + [sym_catch_block] = STATE(813), + [sym_finally_block] = STATE(1149), + [aux_sym_try_expression_repeat1] = STATE(813), + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_object] = ACTIONS(4094), + [anon_sym_fun] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_this] = ACTIONS(4094), + [anon_sym_super] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_null] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_when] = ACTIONS(4094), + [anon_sym_try] = ACTIONS(4094), + [anon_sym_catch] = ACTIONS(4098), + [anon_sym_finally] = ACTIONS(4100), + [anon_sym_throw] = ACTIONS(4094), + [anon_sym_return] = ACTIONS(4094), + [anon_sym_continue] = ACTIONS(4094), + [anon_sym_break] = ACTIONS(4094), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_suspend] = ACTIONS(4094), + [anon_sym_sealed] = ACTIONS(4094), + [anon_sym_annotation] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_override] = ACTIONS(4094), + [anon_sym_lateinit] = ACTIONS(4094), + [anon_sym_public] = ACTIONS(4094), + [anon_sym_private] = ACTIONS(4094), + [anon_sym_internal] = ACTIONS(4094), + [anon_sym_protected] = ACTIONS(4094), + [anon_sym_tailrec] = ACTIONS(4094), + [anon_sym_operator] = ACTIONS(4094), + [anon_sym_infix] = ACTIONS(4094), + [anon_sym_inline] = ACTIONS(4094), + [anon_sym_external] = ACTIONS(4094), + [sym_property_modifier] = ACTIONS(4094), + [anon_sym_abstract] = ACTIONS(4094), + [anon_sym_final] = ACTIONS(4094), + [anon_sym_open] = ACTIONS(4094), + [anon_sym_vararg] = ACTIONS(4094), + [anon_sym_noinline] = ACTIONS(4094), + [anon_sym_crossinline] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4096), + [anon_sym_continue_AT] = ACTIONS(4096), + [anon_sym_break_AT] = ACTIONS(4096), + [anon_sym_this_AT] = ACTIONS(4096), + [anon_sym_super_AT] = ACTIONS(4096), + [sym_real_literal] = ACTIONS(4096), + [sym_integer_literal] = ACTIONS(4094), + [sym_hex_literal] = ACTIONS(4096), + [sym_bin_literal] = ACTIONS(4096), + [anon_sym_true] = ACTIONS(4094), + [anon_sym_false] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4096), + [sym__backtick_identifier] = ACTIONS(4096), + [sym__automatic_semicolon] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4096), + }, + [802] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4122), - [anon_sym_get] = ACTIONS(4124), - [anon_sym_set] = ACTIONS(4126), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_get] = ACTIONS(4090), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -145842,89 +143287,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [818] = { - [sym_getter] = STATE(4976), - [sym_setter] = STATE(4976), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [803] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4128), - [anon_sym_get] = ACTIONS(4092), - [anon_sym_set] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(1802), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4060), + [anon_sym_set] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -145953,200 +143398,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [819] = { - [sym_catch_block] = STATE(831), - [sym_finally_block] = STATE(1117), - [aux_sym_try_expression_repeat1] = STATE(831), - [sym__alpha_identifier] = ACTIONS(4130), - [anon_sym_AT] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_as] = ACTIONS(4130), - [anon_sym_EQ] = ACTIONS(4130), - [anon_sym_fun] = ACTIONS(4130), - [anon_sym_LBRACE] = ACTIONS(4132), - [anon_sym_RBRACE] = ACTIONS(4132), - [anon_sym_LPAREN] = ACTIONS(4132), - [anon_sym_COMMA] = ACTIONS(4132), - [anon_sym_LT] = ACTIONS(4130), - [anon_sym_GT] = ACTIONS(4130), - [anon_sym_where] = ACTIONS(4130), - [anon_sym_object] = ACTIONS(4130), - [anon_sym_DOT] = ACTIONS(4130), - [anon_sym_SEMI] = ACTIONS(4132), - [anon_sym_get] = ACTIONS(4130), - [anon_sym_set] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_super] = ACTIONS(4130), - [anon_sym_STAR] = ACTIONS(4130), - [sym_label] = ACTIONS(4130), - [anon_sym_in] = ACTIONS(4130), - [anon_sym_DOT_DOT] = ACTIONS(4132), - [anon_sym_QMARK_COLON] = ACTIONS(4132), - [anon_sym_AMP_AMP] = ACTIONS(4132), - [anon_sym_PIPE_PIPE] = ACTIONS(4132), - [anon_sym_null] = ACTIONS(4130), - [anon_sym_if] = ACTIONS(4130), - [anon_sym_else] = ACTIONS(4130), - [anon_sym_when] = ACTIONS(4130), - [anon_sym_try] = ACTIONS(4130), - [anon_sym_catch] = ACTIONS(4134), - [anon_sym_finally] = ACTIONS(4136), - [anon_sym_throw] = ACTIONS(4130), - [anon_sym_return] = ACTIONS(4130), - [anon_sym_continue] = ACTIONS(4130), - [anon_sym_break] = ACTIONS(4130), - [anon_sym_COLON_COLON] = ACTIONS(4132), - [anon_sym_PLUS_EQ] = ACTIONS(4132), - [anon_sym_DASH_EQ] = ACTIONS(4132), - [anon_sym_STAR_EQ] = ACTIONS(4132), - [anon_sym_SLASH_EQ] = ACTIONS(4132), - [anon_sym_PERCENT_EQ] = ACTIONS(4132), - [anon_sym_BANG_EQ] = ACTIONS(4130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4132), - [anon_sym_EQ_EQ] = ACTIONS(4130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4132), - [anon_sym_LT_EQ] = ACTIONS(4132), - [anon_sym_GT_EQ] = ACTIONS(4132), - [anon_sym_BANGin] = ACTIONS(4132), - [anon_sym_is] = ACTIONS(4130), - [anon_sym_BANGis] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4130), - [anon_sym_DASH] = ACTIONS(4130), - [anon_sym_SLASH] = ACTIONS(4130), - [anon_sym_PERCENT] = ACTIONS(4130), - [anon_sym_as_QMARK] = ACTIONS(4132), - [anon_sym_PLUS_PLUS] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4132), - [anon_sym_BANG] = ACTIONS(4130), - [anon_sym_BANG_BANG] = ACTIONS(4132), - [anon_sym_suspend] = ACTIONS(4130), - [anon_sym_sealed] = ACTIONS(4130), - [anon_sym_annotation] = ACTIONS(4130), - [anon_sym_data] = ACTIONS(4130), - [anon_sym_inner] = ACTIONS(4130), - [anon_sym_value] = ACTIONS(4130), - [anon_sym_override] = ACTIONS(4130), - [anon_sym_lateinit] = ACTIONS(4130), - [anon_sym_public] = ACTIONS(4130), - [anon_sym_private] = ACTIONS(4130), - [anon_sym_internal] = ACTIONS(4130), - [anon_sym_protected] = ACTIONS(4130), - [anon_sym_tailrec] = ACTIONS(4130), - [anon_sym_operator] = ACTIONS(4130), - [anon_sym_infix] = ACTIONS(4130), - [anon_sym_inline] = ACTIONS(4130), - [anon_sym_external] = ACTIONS(4130), - [sym_property_modifier] = ACTIONS(4130), - [anon_sym_abstract] = ACTIONS(4130), - [anon_sym_final] = ACTIONS(4130), - [anon_sym_open] = ACTIONS(4130), - [anon_sym_vararg] = ACTIONS(4130), - [anon_sym_noinline] = ACTIONS(4130), - [anon_sym_crossinline] = ACTIONS(4130), - [anon_sym_expect] = ACTIONS(4130), - [anon_sym_actual] = ACTIONS(4130), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4132), - [anon_sym_continue_AT] = ACTIONS(4132), - [anon_sym_break_AT] = ACTIONS(4132), - [anon_sym_this_AT] = ACTIONS(4132), - [anon_sym_super_AT] = ACTIONS(4132), - [sym_real_literal] = ACTIONS(4132), - [sym_integer_literal] = ACTIONS(4130), - [sym_hex_literal] = ACTIONS(4132), - [sym_bin_literal] = ACTIONS(4132), - [anon_sym_true] = ACTIONS(4130), - [anon_sym_false] = ACTIONS(4130), - [anon_sym_SQUOTE] = ACTIONS(4132), - [sym__backtick_identifier] = ACTIONS(4132), - [sym__automatic_semicolon] = ACTIONS(4132), - [sym_safe_nav] = ACTIONS(4132), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4132), }, - [820] = { - [sym_getter] = STATE(4978), - [sym_setter] = STATE(4978), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [804] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3572), [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3576), [anon_sym_COMMA] = ACTIONS(1792), [anon_sym_RPAREN] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), + [anon_sym_GT] = ACTIONS(4056), [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4138), - [anon_sym_get] = ACTIONS(4092), - [anon_sym_set] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4096), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym_get] = ACTIONS(4060), + [anon_sym_set] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -146175,89 +143509,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [821] = { - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [805] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4092), - [anon_sym_set] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(4060), + [anon_sym_set] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -146286,89 +143620,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [822] = { - [sym_getter] = STATE(3530), - [sym_setter] = STATE(3530), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [806] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym_get] = ACTIONS(4124), - [anon_sym_set] = ACTIONS(4126), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(1802), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4090), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -146397,89 +143731,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [823] = { - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [807] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4124), - [anon_sym_set] = ACTIONS(4126), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym_get] = ACTIONS(4060), + [anon_sym_set] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -146508,89 +143842,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [824] = { - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [808] = { + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_get] = ACTIONS(4124), - [anon_sym_set] = ACTIONS(4126), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4114), + [anon_sym_get] = ACTIONS(4060), + [anon_sym_set] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -146619,89 +143953,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [825] = { - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [809] = { + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4148), - [anon_sym_get] = ACTIONS(4092), - [anon_sym_set] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4090), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -146730,89 +144064,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [826] = { - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [810] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4150), - [anon_sym_get] = ACTIONS(4124), - [anon_sym_set] = ACTIONS(4126), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(1734), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4118), + [anon_sym_get] = ACTIONS(4090), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -146841,89 +144175,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [827] = { - [sym_getter] = STATE(3552), - [sym_setter] = STATE(3552), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [811] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4152), - [anon_sym_get] = ACTIONS(4124), - [anon_sym_set] = ACTIONS(4126), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4120), + [anon_sym_get] = ACTIONS(4090), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -146952,571 +144286,1120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [828] = { - [sym_type_constraints] = STATE(907), - [sym_function_body] = STATE(1045), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [812] = { + [sym_type_arguments] = STATE(6538), + [sym__alpha_identifier] = ACTIONS(4122), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_COLON] = ACTIONS(4126), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_as] = ACTIONS(4122), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_RBRACE] = ACTIONS(4124), + [anon_sym_LPAREN] = ACTIONS(4124), + [anon_sym_COMMA] = ACTIONS(4124), + [anon_sym_by] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4122), + [anon_sym_where] = ACTIONS(4122), + [anon_sym_object] = ACTIONS(4122), + [anon_sym_fun] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym_get] = ACTIONS(4122), + [anon_sym_set] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_super] = ACTIONS(4122), + [sym__quest] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4122), + [anon_sym_DOT_DOT] = ACTIONS(4124), + [anon_sym_QMARK_COLON] = ACTIONS(4124), + [anon_sym_AMP_AMP] = ACTIONS(4124), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_null] = ACTIONS(4122), + [anon_sym_if] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4122), + [anon_sym_when] = ACTIONS(4122), + [anon_sym_try] = ACTIONS(4122), + [anon_sym_throw] = ACTIONS(4122), + [anon_sym_return] = ACTIONS(4122), + [anon_sym_continue] = ACTIONS(4122), + [anon_sym_break] = ACTIONS(4122), + [anon_sym_COLON_COLON] = ACTIONS(4124), + [anon_sym_PLUS_EQ] = ACTIONS(4124), + [anon_sym_DASH_EQ] = ACTIONS(4124), + [anon_sym_STAR_EQ] = ACTIONS(4124), + [anon_sym_SLASH_EQ] = ACTIONS(4124), + [anon_sym_PERCENT_EQ] = ACTIONS(4124), + [anon_sym_BANG_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), + [anon_sym_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), + [anon_sym_LT_EQ] = ACTIONS(4124), + [anon_sym_GT_EQ] = ACTIONS(4124), + [anon_sym_BANGin] = ACTIONS(4124), + [anon_sym_is] = ACTIONS(4122), + [anon_sym_BANGis] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_SLASH] = ACTIONS(4122), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4124), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4124), + [anon_sym_suspend] = ACTIONS(4122), + [anon_sym_sealed] = ACTIONS(4122), + [anon_sym_annotation] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4122), + [anon_sym_inner] = ACTIONS(4122), + [anon_sym_value] = ACTIONS(4122), + [anon_sym_override] = ACTIONS(4122), + [anon_sym_lateinit] = ACTIONS(4122), + [anon_sym_public] = ACTIONS(4122), + [anon_sym_private] = ACTIONS(4122), + [anon_sym_internal] = ACTIONS(4122), + [anon_sym_protected] = ACTIONS(4122), + [anon_sym_tailrec] = ACTIONS(4122), + [anon_sym_operator] = ACTIONS(4122), + [anon_sym_infix] = ACTIONS(4122), + [anon_sym_inline] = ACTIONS(4122), + [anon_sym_external] = ACTIONS(4122), + [sym_property_modifier] = ACTIONS(4122), + [anon_sym_abstract] = ACTIONS(4122), + [anon_sym_final] = ACTIONS(4122), + [anon_sym_open] = ACTIONS(4122), + [anon_sym_vararg] = ACTIONS(4122), + [anon_sym_noinline] = ACTIONS(4122), + [anon_sym_crossinline] = ACTIONS(4122), + [anon_sym_expect] = ACTIONS(4122), + [anon_sym_actual] = ACTIONS(4122), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4124), + [anon_sym_continue_AT] = ACTIONS(4124), + [anon_sym_break_AT] = ACTIONS(4124), + [anon_sym_this_AT] = ACTIONS(4124), + [anon_sym_super_AT] = ACTIONS(4124), + [sym_real_literal] = ACTIONS(4124), + [sym_integer_literal] = ACTIONS(4122), + [sym_hex_literal] = ACTIONS(4124), + [sym_bin_literal] = ACTIONS(4124), + [anon_sym_true] = ACTIONS(4122), + [anon_sym_false] = ACTIONS(4122), + [anon_sym_SQUOTE] = ACTIONS(4124), + [sym__backtick_identifier] = ACTIONS(4124), + [sym__automatic_semicolon] = ACTIONS(4124), + [sym_safe_nav] = ACTIONS(4124), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4124), }, - [829] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_by] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4010), - [anon_sym_set] = ACTIONS(4010), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_AMP] = ACTIONS(4010), - [sym__quest] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4010), - [sym_label] = ACTIONS(4010), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4010), - [anon_sym_sealed] = ACTIONS(4010), - [anon_sym_annotation] = ACTIONS(4010), - [anon_sym_data] = ACTIONS(4010), - [anon_sym_inner] = ACTIONS(4010), - [anon_sym_value] = ACTIONS(4010), - [anon_sym_override] = ACTIONS(4010), - [anon_sym_lateinit] = ACTIONS(4010), - [anon_sym_public] = ACTIONS(4010), - [anon_sym_private] = ACTIONS(4010), - [anon_sym_internal] = ACTIONS(4010), - [anon_sym_protected] = ACTIONS(4010), - [anon_sym_tailrec] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_infix] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym_external] = ACTIONS(4010), - [sym_property_modifier] = ACTIONS(4010), - [anon_sym_abstract] = ACTIONS(4010), - [anon_sym_final] = ACTIONS(4010), - [anon_sym_open] = ACTIONS(4010), - [anon_sym_vararg] = ACTIONS(4010), - [anon_sym_noinline] = ACTIONS(4010), - [anon_sym_crossinline] = ACTIONS(4010), - [anon_sym_expect] = ACTIONS(4010), - [anon_sym_actual] = ACTIONS(4010), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4015), - [sym__automatic_semicolon] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), + [813] = { + [sym_catch_block] = STATE(813), + [aux_sym_try_expression_repeat1] = STATE(813), + [sym__alpha_identifier] = ACTIONS(4130), + [anon_sym_AT] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_as] = ACTIONS(4130), + [anon_sym_EQ] = ACTIONS(4130), + [anon_sym_LBRACE] = ACTIONS(4132), + [anon_sym_RBRACE] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4132), + [anon_sym_COMMA] = ACTIONS(4132), + [anon_sym_LT] = ACTIONS(4130), + [anon_sym_GT] = ACTIONS(4130), + [anon_sym_where] = ACTIONS(4130), + [anon_sym_object] = ACTIONS(4130), + [anon_sym_fun] = ACTIONS(4130), + [anon_sym_DOT] = ACTIONS(4130), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4130), + [anon_sym_set] = ACTIONS(4130), + [anon_sym_this] = ACTIONS(4130), + [anon_sym_super] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4130), + [sym_label] = ACTIONS(4130), + [anon_sym_in] = ACTIONS(4130), + [anon_sym_DOT_DOT] = ACTIONS(4132), + [anon_sym_QMARK_COLON] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_PIPE_PIPE] = ACTIONS(4132), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_if] = ACTIONS(4130), + [anon_sym_else] = ACTIONS(4130), + [anon_sym_when] = ACTIONS(4130), + [anon_sym_try] = ACTIONS(4130), + [anon_sym_catch] = ACTIONS(4134), + [anon_sym_finally] = ACTIONS(4130), + [anon_sym_throw] = ACTIONS(4130), + [anon_sym_return] = ACTIONS(4130), + [anon_sym_continue] = ACTIONS(4130), + [anon_sym_break] = ACTIONS(4130), + [anon_sym_COLON_COLON] = ACTIONS(4132), + [anon_sym_PLUS_EQ] = ACTIONS(4132), + [anon_sym_DASH_EQ] = ACTIONS(4132), + [anon_sym_STAR_EQ] = ACTIONS(4132), + [anon_sym_SLASH_EQ] = ACTIONS(4132), + [anon_sym_PERCENT_EQ] = ACTIONS(4132), + [anon_sym_BANG_EQ] = ACTIONS(4130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4132), + [anon_sym_EQ_EQ] = ACTIONS(4130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4132), + [anon_sym_LT_EQ] = ACTIONS(4132), + [anon_sym_GT_EQ] = ACTIONS(4132), + [anon_sym_BANGin] = ACTIONS(4132), + [anon_sym_is] = ACTIONS(4130), + [anon_sym_BANGis] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_SLASH] = ACTIONS(4130), + [anon_sym_PERCENT] = ACTIONS(4130), + [anon_sym_as_QMARK] = ACTIONS(4132), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_BANG] = ACTIONS(4130), + [anon_sym_BANG_BANG] = ACTIONS(4132), + [anon_sym_suspend] = ACTIONS(4130), + [anon_sym_sealed] = ACTIONS(4130), + [anon_sym_annotation] = ACTIONS(4130), + [anon_sym_data] = ACTIONS(4130), + [anon_sym_inner] = ACTIONS(4130), + [anon_sym_value] = ACTIONS(4130), + [anon_sym_override] = ACTIONS(4130), + [anon_sym_lateinit] = ACTIONS(4130), + [anon_sym_public] = ACTIONS(4130), + [anon_sym_private] = ACTIONS(4130), + [anon_sym_internal] = ACTIONS(4130), + [anon_sym_protected] = ACTIONS(4130), + [anon_sym_tailrec] = ACTIONS(4130), + [anon_sym_operator] = ACTIONS(4130), + [anon_sym_infix] = ACTIONS(4130), + [anon_sym_inline] = ACTIONS(4130), + [anon_sym_external] = ACTIONS(4130), + [sym_property_modifier] = ACTIONS(4130), + [anon_sym_abstract] = ACTIONS(4130), + [anon_sym_final] = ACTIONS(4130), + [anon_sym_open] = ACTIONS(4130), + [anon_sym_vararg] = ACTIONS(4130), + [anon_sym_noinline] = ACTIONS(4130), + [anon_sym_crossinline] = ACTIONS(4130), + [anon_sym_expect] = ACTIONS(4130), + [anon_sym_actual] = ACTIONS(4130), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4132), + [anon_sym_continue_AT] = ACTIONS(4132), + [anon_sym_break_AT] = ACTIONS(4132), + [anon_sym_this_AT] = ACTIONS(4132), + [anon_sym_super_AT] = ACTIONS(4132), + [sym_real_literal] = ACTIONS(4132), + [sym_integer_literal] = ACTIONS(4130), + [sym_hex_literal] = ACTIONS(4132), + [sym_bin_literal] = ACTIONS(4132), + [anon_sym_true] = ACTIONS(4130), + [anon_sym_false] = ACTIONS(4130), + [anon_sym_SQUOTE] = ACTIONS(4132), + [sym__backtick_identifier] = ACTIONS(4132), + [sym__automatic_semicolon] = ACTIONS(4132), + [sym_safe_nav] = ACTIONS(4132), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4132), }, - [830] = { + [814] = { + [sym_type_constraints] = STATE(909), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), + }, + [815] = { [sym_type_constraints] = STATE(905), - [sym_function_body] = STATE(1087), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(4151), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [831] = { - [sym_catch_block] = STATE(831), - [aux_sym_try_expression_repeat1] = STATE(831), - [sym__alpha_identifier] = ACTIONS(4170), - [anon_sym_AT] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_as] = ACTIONS(4170), - [anon_sym_EQ] = ACTIONS(4170), - [anon_sym_fun] = ACTIONS(4170), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4172), - [anon_sym_LPAREN] = ACTIONS(4172), - [anon_sym_COMMA] = ACTIONS(4172), - [anon_sym_LT] = ACTIONS(4170), - [anon_sym_GT] = ACTIONS(4170), - [anon_sym_where] = ACTIONS(4170), - [anon_sym_object] = ACTIONS(4170), + [816] = { + [aux_sym_user_type_repeat1] = STATE(819), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_by] = ACTIONS(4153), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(4153), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_fun] = ACTIONS(4153), + [anon_sym_DOT] = ACTIONS(4157), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_this] = ACTIONS(4153), + [anon_sym_super] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4153), + [sym__quest] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4153), + [sym_label] = ACTIONS(4153), + [anon_sym_in] = ACTIONS(4153), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_QMARK_COLON] = ACTIONS(4155), + [anon_sym_AMP_AMP] = ACTIONS(4155), + [anon_sym_PIPE_PIPE] = ACTIONS(4155), + [anon_sym_null] = ACTIONS(4153), + [anon_sym_if] = ACTIONS(4153), + [anon_sym_else] = ACTIONS(4153), + [anon_sym_when] = ACTIONS(4153), + [anon_sym_try] = ACTIONS(4153), + [anon_sym_throw] = ACTIONS(4153), + [anon_sym_return] = ACTIONS(4153), + [anon_sym_continue] = ACTIONS(4153), + [anon_sym_break] = ACTIONS(4153), + [anon_sym_COLON_COLON] = ACTIONS(4155), + [anon_sym_PLUS_EQ] = ACTIONS(4155), + [anon_sym_DASH_EQ] = ACTIONS(4155), + [anon_sym_STAR_EQ] = ACTIONS(4155), + [anon_sym_SLASH_EQ] = ACTIONS(4155), + [anon_sym_PERCENT_EQ] = ACTIONS(4155), + [anon_sym_BANG_EQ] = ACTIONS(4153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4155), + [anon_sym_EQ_EQ] = ACTIONS(4153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4155), + [anon_sym_LT_EQ] = ACTIONS(4155), + [anon_sym_GT_EQ] = ACTIONS(4155), + [anon_sym_BANGin] = ACTIONS(4155), + [anon_sym_is] = ACTIONS(4153), + [anon_sym_BANGis] = ACTIONS(4155), + [anon_sym_PLUS] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_SLASH] = ACTIONS(4153), + [anon_sym_PERCENT] = ACTIONS(4153), + [anon_sym_as_QMARK] = ACTIONS(4155), + [anon_sym_PLUS_PLUS] = ACTIONS(4155), + [anon_sym_DASH_DASH] = ACTIONS(4155), + [anon_sym_BANG] = ACTIONS(4153), + [anon_sym_BANG_BANG] = ACTIONS(4155), + [anon_sym_suspend] = ACTIONS(4153), + [anon_sym_sealed] = ACTIONS(4153), + [anon_sym_annotation] = ACTIONS(4153), + [anon_sym_data] = ACTIONS(4153), + [anon_sym_inner] = ACTIONS(4153), + [anon_sym_value] = ACTIONS(4153), + [anon_sym_override] = ACTIONS(4153), + [anon_sym_lateinit] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4153), + [anon_sym_private] = ACTIONS(4153), + [anon_sym_internal] = ACTIONS(4153), + [anon_sym_protected] = ACTIONS(4153), + [anon_sym_tailrec] = ACTIONS(4153), + [anon_sym_operator] = ACTIONS(4153), + [anon_sym_infix] = ACTIONS(4153), + [anon_sym_inline] = ACTIONS(4153), + [anon_sym_external] = ACTIONS(4153), + [sym_property_modifier] = ACTIONS(4153), + [anon_sym_abstract] = ACTIONS(4153), + [anon_sym_final] = ACTIONS(4153), + [anon_sym_open] = ACTIONS(4153), + [anon_sym_vararg] = ACTIONS(4153), + [anon_sym_noinline] = ACTIONS(4153), + [anon_sym_crossinline] = ACTIONS(4153), + [anon_sym_expect] = ACTIONS(4153), + [anon_sym_actual] = ACTIONS(4153), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4155), + [anon_sym_continue_AT] = ACTIONS(4155), + [anon_sym_break_AT] = ACTIONS(4155), + [anon_sym_this_AT] = ACTIONS(4155), + [anon_sym_super_AT] = ACTIONS(4155), + [sym_real_literal] = ACTIONS(4155), + [sym_integer_literal] = ACTIONS(4153), + [sym_hex_literal] = ACTIONS(4155), + [sym_bin_literal] = ACTIONS(4155), + [anon_sym_true] = ACTIONS(4153), + [anon_sym_false] = ACTIONS(4153), + [anon_sym_SQUOTE] = ACTIONS(4155), + [sym__backtick_identifier] = ACTIONS(4155), + [sym__automatic_semicolon] = ACTIONS(4155), + [sym_safe_nav] = ACTIONS(4155), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4155), + }, + [817] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_condition] = STATE(9384), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [818] = { + [sym_type_constraints] = STATE(903), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [819] = { + [aux_sym_user_type_repeat1] = STATE(819), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), [anon_sym_DOT] = ACTIONS(4170), - [anon_sym_SEMI] = ACTIONS(4172), - [anon_sym_get] = ACTIONS(4170), - [anon_sym_set] = ACTIONS(4170), - [anon_sym_this] = ACTIONS(4170), - [anon_sym_super] = ACTIONS(4170), - [anon_sym_STAR] = ACTIONS(4170), - [sym_label] = ACTIONS(4170), - [anon_sym_in] = ACTIONS(4170), - [anon_sym_DOT_DOT] = ACTIONS(4172), - [anon_sym_QMARK_COLON] = ACTIONS(4172), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [anon_sym_null] = ACTIONS(4170), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(4170), - [anon_sym_when] = ACTIONS(4170), - [anon_sym_try] = ACTIONS(4170), - [anon_sym_catch] = ACTIONS(4174), - [anon_sym_finally] = ACTIONS(4170), - [anon_sym_throw] = ACTIONS(4170), - [anon_sym_return] = ACTIONS(4170), - [anon_sym_continue] = ACTIONS(4170), - [anon_sym_break] = ACTIONS(4170), - [anon_sym_COLON_COLON] = ACTIONS(4172), - [anon_sym_PLUS_EQ] = ACTIONS(4172), - [anon_sym_DASH_EQ] = ACTIONS(4172), - [anon_sym_STAR_EQ] = ACTIONS(4172), - [anon_sym_SLASH_EQ] = ACTIONS(4172), - [anon_sym_PERCENT_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ] = ACTIONS(4170), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ] = ACTIONS(4170), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), - [anon_sym_LT_EQ] = ACTIONS(4172), - [anon_sym_GT_EQ] = ACTIONS(4172), - [anon_sym_BANGin] = ACTIONS(4172), - [anon_sym_is] = ACTIONS(4170), - [anon_sym_BANGis] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4170), - [anon_sym_DASH] = ACTIONS(4170), - [anon_sym_SLASH] = ACTIONS(4170), - [anon_sym_PERCENT] = ACTIONS(4170), - [anon_sym_as_QMARK] = ACTIONS(4172), - [anon_sym_PLUS_PLUS] = ACTIONS(4172), - [anon_sym_DASH_DASH] = ACTIONS(4172), - [anon_sym_BANG] = ACTIONS(4170), - [anon_sym_BANG_BANG] = ACTIONS(4172), - [anon_sym_suspend] = ACTIONS(4170), - [anon_sym_sealed] = ACTIONS(4170), - [anon_sym_annotation] = ACTIONS(4170), - [anon_sym_data] = ACTIONS(4170), - [anon_sym_inner] = ACTIONS(4170), - [anon_sym_value] = ACTIONS(4170), - [anon_sym_override] = ACTIONS(4170), - [anon_sym_lateinit] = ACTIONS(4170), - [anon_sym_public] = ACTIONS(4170), - [anon_sym_private] = ACTIONS(4170), - [anon_sym_internal] = ACTIONS(4170), - [anon_sym_protected] = ACTIONS(4170), - [anon_sym_tailrec] = ACTIONS(4170), - [anon_sym_operator] = ACTIONS(4170), - [anon_sym_infix] = ACTIONS(4170), - [anon_sym_inline] = ACTIONS(4170), - [anon_sym_external] = ACTIONS(4170), - [sym_property_modifier] = ACTIONS(4170), - [anon_sym_abstract] = ACTIONS(4170), - [anon_sym_final] = ACTIONS(4170), - [anon_sym_open] = ACTIONS(4170), - [anon_sym_vararg] = ACTIONS(4170), - [anon_sym_noinline] = ACTIONS(4170), - [anon_sym_crossinline] = ACTIONS(4170), - [anon_sym_expect] = ACTIONS(4170), - [anon_sym_actual] = ACTIONS(4170), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4172), - [anon_sym_continue_AT] = ACTIONS(4172), - [anon_sym_break_AT] = ACTIONS(4172), - [anon_sym_this_AT] = ACTIONS(4172), - [anon_sym_super_AT] = ACTIONS(4172), - [sym_real_literal] = ACTIONS(4172), - [sym_integer_literal] = ACTIONS(4170), - [sym_hex_literal] = ACTIONS(4172), - [sym_bin_literal] = ACTIONS(4172), - [anon_sym_true] = ACTIONS(4170), - [anon_sym_false] = ACTIONS(4170), - [anon_sym_SQUOTE] = ACTIONS(4172), - [sym__backtick_identifier] = ACTIONS(4172), - [sym__automatic_semicolon] = ACTIONS(4172), - [sym_safe_nav] = ACTIONS(4172), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4172), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), }, - [832] = { - [sym_type_arguments] = STATE(866), - [sym__alpha_identifier] = ACTIONS(4177), - [anon_sym_AT] = ACTIONS(4179), - [anon_sym_LBRACK] = ACTIONS(4179), - [anon_sym_as] = ACTIONS(4177), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_fun] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4179), - [anon_sym_RBRACE] = ACTIONS(4179), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_COMMA] = ACTIONS(4179), - [anon_sym_by] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4181), - [anon_sym_GT] = ACTIONS(4177), - [anon_sym_where] = ACTIONS(4177), - [anon_sym_object] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4177), - [anon_sym_SEMI] = ACTIONS(4179), - [anon_sym_get] = ACTIONS(4177), - [anon_sym_set] = ACTIONS(4177), - [anon_sym_this] = ACTIONS(4177), - [anon_sym_super] = ACTIONS(4177), - [anon_sym_AMP] = ACTIONS(4177), - [sym__quest] = ACTIONS(4177), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4177), - [anon_sym_DOT_DOT] = ACTIONS(4179), - [anon_sym_QMARK_COLON] = ACTIONS(4179), - [anon_sym_AMP_AMP] = ACTIONS(4179), - [anon_sym_PIPE_PIPE] = ACTIONS(4179), - [anon_sym_null] = ACTIONS(4177), - [anon_sym_if] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4177), - [anon_sym_when] = ACTIONS(4177), - [anon_sym_try] = ACTIONS(4177), - [anon_sym_throw] = ACTIONS(4177), - [anon_sym_return] = ACTIONS(4177), - [anon_sym_continue] = ACTIONS(4177), - [anon_sym_break] = ACTIONS(4177), - [anon_sym_COLON_COLON] = ACTIONS(4179), - [anon_sym_PLUS_EQ] = ACTIONS(4179), - [anon_sym_DASH_EQ] = ACTIONS(4179), - [anon_sym_STAR_EQ] = ACTIONS(4179), - [anon_sym_SLASH_EQ] = ACTIONS(4179), - [anon_sym_PERCENT_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), - [anon_sym_LT_EQ] = ACTIONS(4179), - [anon_sym_GT_EQ] = ACTIONS(4179), - [anon_sym_BANGin] = ACTIONS(4179), - [anon_sym_is] = ACTIONS(4177), - [anon_sym_BANGis] = ACTIONS(4179), - [anon_sym_PLUS] = ACTIONS(4177), - [anon_sym_DASH] = ACTIONS(4177), - [anon_sym_SLASH] = ACTIONS(4177), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4179), - [anon_sym_PLUS_PLUS] = ACTIONS(4179), - [anon_sym_DASH_DASH] = ACTIONS(4179), - [anon_sym_BANG] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4179), - [anon_sym_suspend] = ACTIONS(4177), - [anon_sym_sealed] = ACTIONS(4177), - [anon_sym_annotation] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4177), - [anon_sym_inner] = ACTIONS(4177), - [anon_sym_value] = ACTIONS(4177), - [anon_sym_override] = ACTIONS(4177), - [anon_sym_lateinit] = ACTIONS(4177), - [anon_sym_public] = ACTIONS(4177), - [anon_sym_private] = ACTIONS(4177), - [anon_sym_internal] = ACTIONS(4177), - [anon_sym_protected] = ACTIONS(4177), - [anon_sym_tailrec] = ACTIONS(4177), - [anon_sym_operator] = ACTIONS(4177), - [anon_sym_infix] = ACTIONS(4177), - [anon_sym_inline] = ACTIONS(4177), - [anon_sym_external] = ACTIONS(4177), - [sym_property_modifier] = ACTIONS(4177), - [anon_sym_abstract] = ACTIONS(4177), - [anon_sym_final] = ACTIONS(4177), - [anon_sym_open] = ACTIONS(4177), - [anon_sym_vararg] = ACTIONS(4177), - [anon_sym_noinline] = ACTIONS(4177), - [anon_sym_crossinline] = ACTIONS(4177), - [anon_sym_expect] = ACTIONS(4177), - [anon_sym_actual] = ACTIONS(4177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4179), - [anon_sym_continue_AT] = ACTIONS(4179), - [anon_sym_break_AT] = ACTIONS(4179), - [anon_sym_this_AT] = ACTIONS(4179), - [anon_sym_super_AT] = ACTIONS(4179), - [sym_real_literal] = ACTIONS(4179), - [sym_integer_literal] = ACTIONS(4177), - [sym_hex_literal] = ACTIONS(4179), - [sym_bin_literal] = ACTIONS(4179), - [anon_sym_true] = ACTIONS(4177), - [anon_sym_false] = ACTIONS(4177), - [anon_sym_SQUOTE] = ACTIONS(4179), - [sym__backtick_identifier] = ACTIONS(4179), - [sym__automatic_semicolon] = ACTIONS(4179), - [sym_safe_nav] = ACTIONS(4179), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4179), + [820] = { + [sym_type_constraints] = STATE(911), + [sym_function_body] = STATE(1014), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), }, - [833] = { - [sym_type_constraints] = STATE(901), - [sym_function_body] = STATE(1153), - [sym__block] = STATE(1092), + [821] = { + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_by] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_object] = ACTIONS(4179), + [anon_sym_fun] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_this] = ACTIONS(4179), + [anon_sym_super] = ACTIONS(4179), + [anon_sym_AMP] = ACTIONS(4179), + [sym__quest] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_QMARK_COLON] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_null] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_throw] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS_EQ] = ACTIONS(4181), + [anon_sym_DASH_EQ] = ACTIONS(4181), + [anon_sym_STAR_EQ] = ACTIONS(4181), + [anon_sym_SLASH_EQ] = ACTIONS(4181), + [anon_sym_PERCENT_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_as_QMARK] = ACTIONS(4181), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4181), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4181), + [anon_sym_continue_AT] = ACTIONS(4181), + [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [anon_sym_SQUOTE] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4181), + [sym__automatic_semicolon] = ACTIONS(4181), + [sym_safe_nav] = ACTIONS(4181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4181), + }, + [822] = { + [sym_type_constraints] = STATE(899), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), [anon_sym_COLON] = ACTIONS(4187), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_COMMA] = ACTIONS(4185), @@ -147524,6 +145407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4183), [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), @@ -147615,2532 +145499,2417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4185), }, - [834] = { - [aux_sym_user_type_repeat1] = STATE(834), - [sym__alpha_identifier] = ACTIONS(4189), - [anon_sym_AT] = ACTIONS(4191), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_as] = ACTIONS(4189), - [anon_sym_EQ] = ACTIONS(4189), - [anon_sym_fun] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_by] = ACTIONS(4189), - [anon_sym_LT] = ACTIONS(4189), - [anon_sym_GT] = ACTIONS(4189), - [anon_sym_where] = ACTIONS(4189), - [anon_sym_object] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(4193), - [anon_sym_SEMI] = ACTIONS(4191), - [anon_sym_get] = ACTIONS(4189), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_this] = ACTIONS(4189), - [anon_sym_super] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [sym__quest] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [sym_label] = ACTIONS(4189), - [anon_sym_in] = ACTIONS(4189), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_QMARK_COLON] = ACTIONS(4191), - [anon_sym_AMP_AMP] = ACTIONS(4191), - [anon_sym_PIPE_PIPE] = ACTIONS(4191), - [anon_sym_null] = ACTIONS(4189), - [anon_sym_if] = ACTIONS(4189), - [anon_sym_else] = ACTIONS(4189), - [anon_sym_when] = ACTIONS(4189), - [anon_sym_try] = ACTIONS(4189), - [anon_sym_throw] = ACTIONS(4189), - [anon_sym_return] = ACTIONS(4189), - [anon_sym_continue] = ACTIONS(4189), - [anon_sym_break] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(4191), - [anon_sym_PLUS_EQ] = ACTIONS(4191), - [anon_sym_DASH_EQ] = ACTIONS(4191), - [anon_sym_STAR_EQ] = ACTIONS(4191), - [anon_sym_SLASH_EQ] = ACTIONS(4191), - [anon_sym_PERCENT_EQ] = ACTIONS(4191), - [anon_sym_BANG_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4191), - [anon_sym_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4191), - [anon_sym_LT_EQ] = ACTIONS(4191), - [anon_sym_GT_EQ] = ACTIONS(4191), - [anon_sym_BANGin] = ACTIONS(4191), - [anon_sym_is] = ACTIONS(4189), - [anon_sym_BANGis] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_SLASH] = ACTIONS(4189), - [anon_sym_PERCENT] = ACTIONS(4189), - [anon_sym_as_QMARK] = ACTIONS(4191), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_BANG_BANG] = ACTIONS(4191), - [anon_sym_suspend] = ACTIONS(4189), - [anon_sym_sealed] = ACTIONS(4189), - [anon_sym_annotation] = ACTIONS(4189), - [anon_sym_data] = ACTIONS(4189), - [anon_sym_inner] = ACTIONS(4189), - [anon_sym_value] = ACTIONS(4189), - [anon_sym_override] = ACTIONS(4189), - [anon_sym_lateinit] = ACTIONS(4189), - [anon_sym_public] = ACTIONS(4189), - [anon_sym_private] = ACTIONS(4189), - [anon_sym_internal] = ACTIONS(4189), - [anon_sym_protected] = ACTIONS(4189), - [anon_sym_tailrec] = ACTIONS(4189), - [anon_sym_operator] = ACTIONS(4189), - [anon_sym_infix] = ACTIONS(4189), - [anon_sym_inline] = ACTIONS(4189), - [anon_sym_external] = ACTIONS(4189), - [sym_property_modifier] = ACTIONS(4189), - [anon_sym_abstract] = ACTIONS(4189), - [anon_sym_final] = ACTIONS(4189), - [anon_sym_open] = ACTIONS(4189), - [anon_sym_vararg] = ACTIONS(4189), - [anon_sym_noinline] = ACTIONS(4189), - [anon_sym_crossinline] = ACTIONS(4189), - [anon_sym_expect] = ACTIONS(4189), - [anon_sym_actual] = ACTIONS(4189), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4191), - [anon_sym_continue_AT] = ACTIONS(4191), - [anon_sym_break_AT] = ACTIONS(4191), - [anon_sym_this_AT] = ACTIONS(4191), - [anon_sym_super_AT] = ACTIONS(4191), - [sym_real_literal] = ACTIONS(4191), - [sym_integer_literal] = ACTIONS(4189), - [sym_hex_literal] = ACTIONS(4191), - [sym_bin_literal] = ACTIONS(4191), - [anon_sym_true] = ACTIONS(4189), - [anon_sym_false] = ACTIONS(4189), - [anon_sym_SQUOTE] = ACTIONS(4191), - [sym__backtick_identifier] = ACTIONS(4191), - [sym__automatic_semicolon] = ACTIONS(4191), - [sym_safe_nav] = ACTIONS(4191), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4191), + [823] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_by] = ACTIONS(4004), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4004), + [sym__quest] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [835] = { - [sym_type_constraints] = STATE(908), - [sym_function_body] = STATE(1197), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), + [824] = { + [sym_type_arguments] = STATE(861), + [sym__alpha_identifier] = ACTIONS(4128), + [anon_sym_AT] = ACTIONS(4189), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_as] = ACTIONS(4128), + [anon_sym_EQ] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_RBRACE] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_COMMA] = ACTIONS(4189), + [anon_sym_by] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(4191), + [anon_sym_GT] = ACTIONS(4128), + [anon_sym_where] = ACTIONS(4128), + [anon_sym_object] = ACTIONS(4128), + [anon_sym_fun] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4189), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4128), + [anon_sym_this] = ACTIONS(4128), + [anon_sym_super] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4128), + [sym__quest] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4128), + [sym_label] = ACTIONS(4128), + [anon_sym_in] = ACTIONS(4128), + [anon_sym_DOT_DOT] = ACTIONS(4189), + [anon_sym_QMARK_COLON] = ACTIONS(4189), + [anon_sym_AMP_AMP] = ACTIONS(4189), + [anon_sym_PIPE_PIPE] = ACTIONS(4189), + [anon_sym_null] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(4128), + [anon_sym_else] = ACTIONS(4128), + [anon_sym_when] = ACTIONS(4128), + [anon_sym_try] = ACTIONS(4128), + [anon_sym_throw] = ACTIONS(4128), + [anon_sym_return] = ACTIONS(4128), + [anon_sym_continue] = ACTIONS(4128), + [anon_sym_break] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4189), + [anon_sym_PLUS_EQ] = ACTIONS(4189), + [anon_sym_DASH_EQ] = ACTIONS(4189), + [anon_sym_STAR_EQ] = ACTIONS(4189), + [anon_sym_SLASH_EQ] = ACTIONS(4189), + [anon_sym_PERCENT_EQ] = ACTIONS(4189), + [anon_sym_BANG_EQ] = ACTIONS(4128), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), + [anon_sym_EQ_EQ] = ACTIONS(4128), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), + [anon_sym_LT_EQ] = ACTIONS(4189), + [anon_sym_GT_EQ] = ACTIONS(4189), + [anon_sym_BANGin] = ACTIONS(4189), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4189), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_SLASH] = ACTIONS(4128), + [anon_sym_PERCENT] = ACTIONS(4128), + [anon_sym_as_QMARK] = ACTIONS(4189), + [anon_sym_PLUS_PLUS] = ACTIONS(4189), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_BANG] = ACTIONS(4128), + [anon_sym_BANG_BANG] = ACTIONS(4189), + [anon_sym_suspend] = ACTIONS(4128), + [anon_sym_sealed] = ACTIONS(4128), + [anon_sym_annotation] = ACTIONS(4128), + [anon_sym_data] = ACTIONS(4128), + [anon_sym_inner] = ACTIONS(4128), + [anon_sym_value] = ACTIONS(4128), + [anon_sym_override] = ACTIONS(4128), + [anon_sym_lateinit] = ACTIONS(4128), + [anon_sym_public] = ACTIONS(4128), + [anon_sym_private] = ACTIONS(4128), + [anon_sym_internal] = ACTIONS(4128), + [anon_sym_protected] = ACTIONS(4128), + [anon_sym_tailrec] = ACTIONS(4128), + [anon_sym_operator] = ACTIONS(4128), + [anon_sym_infix] = ACTIONS(4128), + [anon_sym_inline] = ACTIONS(4128), + [anon_sym_external] = ACTIONS(4128), + [sym_property_modifier] = ACTIONS(4128), + [anon_sym_abstract] = ACTIONS(4128), + [anon_sym_final] = ACTIONS(4128), + [anon_sym_open] = ACTIONS(4128), + [anon_sym_vararg] = ACTIONS(4128), + [anon_sym_noinline] = ACTIONS(4128), + [anon_sym_crossinline] = ACTIONS(4128), + [anon_sym_expect] = ACTIONS(4128), + [anon_sym_actual] = ACTIONS(4128), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4189), + [anon_sym_continue_AT] = ACTIONS(4189), + [anon_sym_break_AT] = ACTIONS(4189), + [anon_sym_this_AT] = ACTIONS(4189), + [anon_sym_super_AT] = ACTIONS(4189), + [sym_real_literal] = ACTIONS(4189), + [sym_integer_literal] = ACTIONS(4128), + [sym_hex_literal] = ACTIONS(4189), + [sym_bin_literal] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4189), + [sym__backtick_identifier] = ACTIONS(4189), + [sym__automatic_semicolon] = ACTIONS(4189), + [sym_safe_nav] = ACTIONS(4189), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4189), + }, + [825] = { + [aux_sym_user_type_repeat1] = STATE(816), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_object] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_this] = ACTIONS(4193), + [anon_sym_super] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4193), + [sym__quest] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [sym_label] = ACTIONS(4193), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_when] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_throw] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4195), + [anon_sym_continue_AT] = ACTIONS(4195), + [anon_sym_break_AT] = ACTIONS(4195), + [anon_sym_this_AT] = ACTIONS(4195), + [anon_sym_super_AT] = ACTIONS(4195), + [sym_real_literal] = ACTIONS(4195), + [sym_integer_literal] = ACTIONS(4193), + [sym_hex_literal] = ACTIONS(4195), + [sym_bin_literal] = ACTIONS(4195), + [anon_sym_true] = ACTIONS(4193), + [anon_sym_false] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4195), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4195), + }, + [826] = { + [sym_type_constraints] = STATE(1102), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), [anon_sym_COLON] = ACTIONS(4200), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [836] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_when_condition] = STATE(9528), - [sym_range_test] = STATE(9583), - [sym_type_test] = STATE(9583), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__in_operator] = STATE(2172), - [sym__is_operator] = STATE(6178), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3736), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_BANGin] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(3742), - [anon_sym_BANGis] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [827] = { + [aux_sym_nullable_type_repeat1] = STATE(839), + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [sym__quest] = ACTIONS(4208), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_null] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4206), + [anon_sym_continue_AT] = ACTIONS(4206), + [anon_sym_break_AT] = ACTIONS(4206), + [anon_sym_this_AT] = ACTIONS(4206), + [anon_sym_super_AT] = ACTIONS(4206), + [sym_real_literal] = ACTIONS(4206), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4206), + [sym_bin_literal] = ACTIONS(4206), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4206), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4206), }, - [837] = { - [aux_sym_user_type_repeat1] = STATE(834), - [sym__alpha_identifier] = ACTIONS(4202), - [anon_sym_AT] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_as] = ACTIONS(4202), - [anon_sym_EQ] = ACTIONS(4202), - [anon_sym_fun] = ACTIONS(4202), - [anon_sym_LBRACE] = ACTIONS(4204), - [anon_sym_RBRACE] = ACTIONS(4204), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym_COMMA] = ACTIONS(4204), - [anon_sym_by] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4202), - [anon_sym_GT] = ACTIONS(4202), - [anon_sym_where] = ACTIONS(4202), - [anon_sym_object] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4204), - [anon_sym_get] = ACTIONS(4202), - [anon_sym_set] = ACTIONS(4202), - [anon_sym_this] = ACTIONS(4202), - [anon_sym_super] = ACTIONS(4202), - [anon_sym_AMP] = ACTIONS(4202), - [sym__quest] = ACTIONS(4202), - [anon_sym_STAR] = ACTIONS(4202), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4202), - [anon_sym_DOT_DOT] = ACTIONS(4204), - [anon_sym_QMARK_COLON] = ACTIONS(4204), - [anon_sym_AMP_AMP] = ACTIONS(4204), - [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), - [anon_sym_if] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4202), - [anon_sym_when] = ACTIONS(4202), - [anon_sym_try] = ACTIONS(4202), - [anon_sym_throw] = ACTIONS(4202), - [anon_sym_return] = ACTIONS(4202), - [anon_sym_continue] = ACTIONS(4202), - [anon_sym_break] = ACTIONS(4202), - [anon_sym_COLON_COLON] = ACTIONS(4204), - [anon_sym_PLUS_EQ] = ACTIONS(4204), - [anon_sym_DASH_EQ] = ACTIONS(4204), - [anon_sym_STAR_EQ] = ACTIONS(4204), - [anon_sym_SLASH_EQ] = ACTIONS(4204), - [anon_sym_PERCENT_EQ] = ACTIONS(4204), - [anon_sym_BANG_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), - [anon_sym_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), - [anon_sym_LT_EQ] = ACTIONS(4204), - [anon_sym_GT_EQ] = ACTIONS(4204), - [anon_sym_BANGin] = ACTIONS(4204), - [anon_sym_is] = ACTIONS(4202), - [anon_sym_BANGis] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4202), - [anon_sym_DASH] = ACTIONS(4202), - [anon_sym_SLASH] = ACTIONS(4202), - [anon_sym_PERCENT] = ACTIONS(4202), - [anon_sym_as_QMARK] = ACTIONS(4204), - [anon_sym_PLUS_PLUS] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4204), - [anon_sym_BANG] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4204), - [anon_sym_suspend] = ACTIONS(4202), - [anon_sym_sealed] = ACTIONS(4202), - [anon_sym_annotation] = ACTIONS(4202), - [anon_sym_data] = ACTIONS(4202), - [anon_sym_inner] = ACTIONS(4202), - [anon_sym_value] = ACTIONS(4202), - [anon_sym_override] = ACTIONS(4202), - [anon_sym_lateinit] = ACTIONS(4202), - [anon_sym_public] = ACTIONS(4202), - [anon_sym_private] = ACTIONS(4202), - [anon_sym_internal] = ACTIONS(4202), - [anon_sym_protected] = ACTIONS(4202), - [anon_sym_tailrec] = ACTIONS(4202), - [anon_sym_operator] = ACTIONS(4202), - [anon_sym_infix] = ACTIONS(4202), - [anon_sym_inline] = ACTIONS(4202), - [anon_sym_external] = ACTIONS(4202), - [sym_property_modifier] = ACTIONS(4202), - [anon_sym_abstract] = ACTIONS(4202), - [anon_sym_final] = ACTIONS(4202), - [anon_sym_open] = ACTIONS(4202), - [anon_sym_vararg] = ACTIONS(4202), - [anon_sym_noinline] = ACTIONS(4202), - [anon_sym_crossinline] = ACTIONS(4202), - [anon_sym_expect] = ACTIONS(4202), - [anon_sym_actual] = ACTIONS(4202), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4204), - [anon_sym_continue_AT] = ACTIONS(4204), - [anon_sym_break_AT] = ACTIONS(4204), - [anon_sym_this_AT] = ACTIONS(4204), - [anon_sym_super_AT] = ACTIONS(4204), - [sym_real_literal] = ACTIONS(4204), - [sym_integer_literal] = ACTIONS(4202), - [sym_hex_literal] = ACTIONS(4204), - [sym_bin_literal] = ACTIONS(4204), - [anon_sym_true] = ACTIONS(4202), - [anon_sym_false] = ACTIONS(4202), - [anon_sym_SQUOTE] = ACTIONS(4204), - [sym__backtick_identifier] = ACTIONS(4204), - [sym__automatic_semicolon] = ACTIONS(4204), - [sym_safe_nav] = ACTIONS(4204), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4204), + [828] = { + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_as] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4210), + [anon_sym_GT] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_object] = ACTIONS(4210), + [anon_sym_fun] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_this] = ACTIONS(4210), + [anon_sym_super] = ACTIONS(4210), + [sym__quest] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_DASH_GT] = ACTIONS(4214), + [sym_label] = ACTIONS(4210), + [anon_sym_in] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(4212), + [anon_sym_QMARK_COLON] = ACTIONS(4212), + [anon_sym_AMP_AMP] = ACTIONS(4212), + [anon_sym_PIPE_PIPE] = ACTIONS(4212), + [anon_sym_null] = ACTIONS(4210), + [anon_sym_if] = ACTIONS(4210), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_try] = ACTIONS(4210), + [anon_sym_throw] = ACTIONS(4210), + [anon_sym_return] = ACTIONS(4210), + [anon_sym_continue] = ACTIONS(4210), + [anon_sym_break] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_PLUS_EQ] = ACTIONS(4212), + [anon_sym_DASH_EQ] = ACTIONS(4212), + [anon_sym_STAR_EQ] = ACTIONS(4212), + [anon_sym_SLASH_EQ] = ACTIONS(4212), + [anon_sym_PERCENT_EQ] = ACTIONS(4212), + [anon_sym_BANG_EQ] = ACTIONS(4210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4212), + [anon_sym_EQ_EQ] = ACTIONS(4210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4212), + [anon_sym_LT_EQ] = ACTIONS(4212), + [anon_sym_GT_EQ] = ACTIONS(4212), + [anon_sym_BANGin] = ACTIONS(4212), + [anon_sym_is] = ACTIONS(4210), + [anon_sym_BANGis] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_SLASH] = ACTIONS(4210), + [anon_sym_PERCENT] = ACTIONS(4210), + [anon_sym_as_QMARK] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_BANG_BANG] = ACTIONS(4212), + [anon_sym_suspend] = ACTIONS(4210), + [anon_sym_sealed] = ACTIONS(4210), + [anon_sym_annotation] = ACTIONS(4210), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_override] = ACTIONS(4210), + [anon_sym_lateinit] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_internal] = ACTIONS(4210), + [anon_sym_protected] = ACTIONS(4210), + [anon_sym_tailrec] = ACTIONS(4210), + [anon_sym_operator] = ACTIONS(4210), + [anon_sym_infix] = ACTIONS(4210), + [anon_sym_inline] = ACTIONS(4210), + [anon_sym_external] = ACTIONS(4210), + [sym_property_modifier] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_open] = ACTIONS(4210), + [anon_sym_vararg] = ACTIONS(4210), + [anon_sym_noinline] = ACTIONS(4210), + [anon_sym_crossinline] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4212), + [anon_sym_continue_AT] = ACTIONS(4212), + [anon_sym_break_AT] = ACTIONS(4212), + [anon_sym_this_AT] = ACTIONS(4212), + [anon_sym_super_AT] = ACTIONS(4212), + [sym_real_literal] = ACTIONS(4212), + [sym_integer_literal] = ACTIONS(4210), + [sym_hex_literal] = ACTIONS(4212), + [sym_bin_literal] = ACTIONS(4212), + [anon_sym_true] = ACTIONS(4210), + [anon_sym_false] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4212), + [sym__backtick_identifier] = ACTIONS(4212), + [sym__automatic_semicolon] = ACTIONS(4212), + [sym_safe_nav] = ACTIONS(4212), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4212), }, - [838] = { - [sym_type_constraints] = STATE(881), - [sym_function_body] = STATE(1215), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(4213), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_COMMA] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), + [829] = { + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(943), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4209), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_this] = ACTIONS(4209), - [anon_sym_super] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4209), - [sym_label] = ACTIONS(4209), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_if] = ACTIONS(4209), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_when] = ACTIONS(4209), - [anon_sym_try] = ACTIONS(4209), - [anon_sym_throw] = ACTIONS(4209), - [anon_sym_return] = ACTIONS(4209), - [anon_sym_continue] = ACTIONS(4209), - [anon_sym_break] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_PLUS_EQ] = ACTIONS(4211), - [anon_sym_DASH_EQ] = ACTIONS(4211), - [anon_sym_STAR_EQ] = ACTIONS(4211), - [anon_sym_SLASH_EQ] = ACTIONS(4211), - [anon_sym_PERCENT_EQ] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4209), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG] = ACTIONS(4209), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_suspend] = ACTIONS(4209), - [anon_sym_sealed] = ACTIONS(4209), - [anon_sym_annotation] = ACTIONS(4209), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_override] = ACTIONS(4209), - [anon_sym_lateinit] = ACTIONS(4209), - [anon_sym_public] = ACTIONS(4209), - [anon_sym_private] = ACTIONS(4209), - [anon_sym_internal] = ACTIONS(4209), - [anon_sym_protected] = ACTIONS(4209), - [anon_sym_tailrec] = ACTIONS(4209), - [anon_sym_operator] = ACTIONS(4209), - [anon_sym_infix] = ACTIONS(4209), - [anon_sym_inline] = ACTIONS(4209), - [anon_sym_external] = ACTIONS(4209), - [sym_property_modifier] = ACTIONS(4209), - [anon_sym_abstract] = ACTIONS(4209), - [anon_sym_final] = ACTIONS(4209), - [anon_sym_open] = ACTIONS(4209), - [anon_sym_vararg] = ACTIONS(4209), - [anon_sym_noinline] = ACTIONS(4209), - [anon_sym_crossinline] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4211), - [anon_sym_continue_AT] = ACTIONS(4211), - [anon_sym_break_AT] = ACTIONS(4211), - [anon_sym_this_AT] = ACTIONS(4211), - [anon_sym_super_AT] = ACTIONS(4211), - [sym_real_literal] = ACTIONS(4211), - [sym_integer_literal] = ACTIONS(4209), - [sym_hex_literal] = ACTIONS(4211), - [sym_bin_literal] = ACTIONS(4211), - [anon_sym_true] = ACTIONS(4209), - [anon_sym_false] = ACTIONS(4209), - [anon_sym_SQUOTE] = ACTIONS(4211), - [sym__backtick_identifier] = ACTIONS(4211), - [sym__automatic_semicolon] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4211), - }, - [839] = { - [sym__alpha_identifier] = ACTIONS(4215), - [anon_sym_AT] = ACTIONS(4217), - [anon_sym_COLON] = ACTIONS(4215), - [anon_sym_LBRACK] = ACTIONS(4217), - [anon_sym_as] = ACTIONS(4215), - [anon_sym_EQ] = ACTIONS(4215), - [anon_sym_fun] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4217), - [anon_sym_COMMA] = ACTIONS(4217), - [anon_sym_by] = ACTIONS(4215), - [anon_sym_LT] = ACTIONS(4215), - [anon_sym_GT] = ACTIONS(4215), - [anon_sym_where] = ACTIONS(4215), - [anon_sym_object] = ACTIONS(4215), - [anon_sym_DOT] = ACTIONS(4215), - [anon_sym_SEMI] = ACTIONS(4217), - [anon_sym_get] = ACTIONS(4215), - [anon_sym_set] = ACTIONS(4215), - [anon_sym_this] = ACTIONS(4215), - [anon_sym_super] = ACTIONS(4215), - [anon_sym_AMP] = ACTIONS(4215), - [sym__quest] = ACTIONS(4215), - [anon_sym_STAR] = ACTIONS(4215), - [sym_label] = ACTIONS(4215), - [anon_sym_in] = ACTIONS(4215), - [anon_sym_DOT_DOT] = ACTIONS(4217), - [anon_sym_QMARK_COLON] = ACTIONS(4217), - [anon_sym_AMP_AMP] = ACTIONS(4217), - [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4215), - [anon_sym_if] = ACTIONS(4215), - [anon_sym_else] = ACTIONS(4215), - [anon_sym_when] = ACTIONS(4215), - [anon_sym_try] = ACTIONS(4215), - [anon_sym_throw] = ACTIONS(4215), - [anon_sym_return] = ACTIONS(4215), - [anon_sym_continue] = ACTIONS(4215), - [anon_sym_break] = ACTIONS(4215), - [anon_sym_COLON_COLON] = ACTIONS(4217), - [anon_sym_PLUS_EQ] = ACTIONS(4217), - [anon_sym_DASH_EQ] = ACTIONS(4217), - [anon_sym_STAR_EQ] = ACTIONS(4217), - [anon_sym_SLASH_EQ] = ACTIONS(4217), - [anon_sym_PERCENT_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ] = ACTIONS(4215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ] = ACTIONS(4215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), - [anon_sym_LT_EQ] = ACTIONS(4217), - [anon_sym_GT_EQ] = ACTIONS(4217), - [anon_sym_BANGin] = ACTIONS(4217), - [anon_sym_is] = ACTIONS(4215), - [anon_sym_BANGis] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4215), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_SLASH] = ACTIONS(4215), - [anon_sym_PERCENT] = ACTIONS(4215), - [anon_sym_as_QMARK] = ACTIONS(4217), - [anon_sym_PLUS_PLUS] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4217), - [anon_sym_BANG] = ACTIONS(4215), - [anon_sym_BANG_BANG] = ACTIONS(4217), - [anon_sym_suspend] = ACTIONS(4215), - [anon_sym_sealed] = ACTIONS(4215), - [anon_sym_annotation] = ACTIONS(4215), - [anon_sym_data] = ACTIONS(4215), - [anon_sym_inner] = ACTIONS(4215), - [anon_sym_value] = ACTIONS(4215), - [anon_sym_override] = ACTIONS(4215), - [anon_sym_lateinit] = ACTIONS(4215), - [anon_sym_public] = ACTIONS(4215), - [anon_sym_private] = ACTIONS(4215), - [anon_sym_internal] = ACTIONS(4215), - [anon_sym_protected] = ACTIONS(4215), - [anon_sym_tailrec] = ACTIONS(4215), - [anon_sym_operator] = ACTIONS(4215), - [anon_sym_infix] = ACTIONS(4215), - [anon_sym_inline] = ACTIONS(4215), - [anon_sym_external] = ACTIONS(4215), - [sym_property_modifier] = ACTIONS(4215), - [anon_sym_abstract] = ACTIONS(4215), - [anon_sym_final] = ACTIONS(4215), - [anon_sym_open] = ACTIONS(4215), - [anon_sym_vararg] = ACTIONS(4215), - [anon_sym_noinline] = ACTIONS(4215), - [anon_sym_crossinline] = ACTIONS(4215), - [anon_sym_expect] = ACTIONS(4215), - [anon_sym_actual] = ACTIONS(4215), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4217), - [anon_sym_continue_AT] = ACTIONS(4217), - [anon_sym_break_AT] = ACTIONS(4217), - [anon_sym_this_AT] = ACTIONS(4217), - [anon_sym_super_AT] = ACTIONS(4217), - [sym_real_literal] = ACTIONS(4217), - [sym_integer_literal] = ACTIONS(4215), - [sym_hex_literal] = ACTIONS(4217), - [sym_bin_literal] = ACTIONS(4217), - [anon_sym_true] = ACTIONS(4215), - [anon_sym_false] = ACTIONS(4215), - [anon_sym_SQUOTE] = ACTIONS(4217), - [sym__backtick_identifier] = ACTIONS(4217), - [sym__automatic_semicolon] = ACTIONS(4217), - [sym_safe_nav] = ACTIONS(4217), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4217), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, - [840] = { - [sym_type_arguments] = STATE(6730), - [sym__alpha_identifier] = ACTIONS(4219), - [anon_sym_AT] = ACTIONS(4221), - [anon_sym_COLON] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4221), - [anon_sym_as] = ACTIONS(4219), - [anon_sym_EQ] = ACTIONS(4219), - [anon_sym_fun] = ACTIONS(4219), - [anon_sym_LBRACE] = ACTIONS(4221), - [anon_sym_RBRACE] = ACTIONS(4221), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_COMMA] = ACTIONS(4221), - [anon_sym_by] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4219), - [anon_sym_GT] = ACTIONS(4219), - [anon_sym_where] = ACTIONS(4219), - [anon_sym_object] = ACTIONS(4219), - [anon_sym_DOT] = ACTIONS(4219), - [anon_sym_SEMI] = ACTIONS(4221), - [anon_sym_get] = ACTIONS(4219), - [anon_sym_set] = ACTIONS(4219), - [anon_sym_this] = ACTIONS(4219), - [anon_sym_super] = ACTIONS(4219), - [sym__quest] = ACTIONS(4177), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4219), - [anon_sym_DOT_DOT] = ACTIONS(4221), - [anon_sym_QMARK_COLON] = ACTIONS(4221), - [anon_sym_AMP_AMP] = ACTIONS(4221), - [anon_sym_PIPE_PIPE] = ACTIONS(4221), - [anon_sym_null] = ACTIONS(4219), - [anon_sym_if] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4219), - [anon_sym_when] = ACTIONS(4219), - [anon_sym_try] = ACTIONS(4219), - [anon_sym_throw] = ACTIONS(4219), - [anon_sym_return] = ACTIONS(4219), - [anon_sym_continue] = ACTIONS(4219), - [anon_sym_break] = ACTIONS(4219), - [anon_sym_COLON_COLON] = ACTIONS(4221), - [anon_sym_PLUS_EQ] = ACTIONS(4221), - [anon_sym_DASH_EQ] = ACTIONS(4221), - [anon_sym_STAR_EQ] = ACTIONS(4221), - [anon_sym_SLASH_EQ] = ACTIONS(4221), - [anon_sym_PERCENT_EQ] = ACTIONS(4221), - [anon_sym_BANG_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4221), - [anon_sym_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4221), - [anon_sym_LT_EQ] = ACTIONS(4221), - [anon_sym_GT_EQ] = ACTIONS(4221), - [anon_sym_BANGin] = ACTIONS(4221), - [anon_sym_is] = ACTIONS(4219), - [anon_sym_BANGis] = ACTIONS(4221), - [anon_sym_PLUS] = ACTIONS(4219), - [anon_sym_DASH] = ACTIONS(4219), - [anon_sym_SLASH] = ACTIONS(4219), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4221), - [anon_sym_PLUS_PLUS] = ACTIONS(4221), - [anon_sym_DASH_DASH] = ACTIONS(4221), - [anon_sym_BANG] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4221), - [anon_sym_suspend] = ACTIONS(4219), - [anon_sym_sealed] = ACTIONS(4219), - [anon_sym_annotation] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4219), - [anon_sym_inner] = ACTIONS(4219), - [anon_sym_value] = ACTIONS(4219), - [anon_sym_override] = ACTIONS(4219), - [anon_sym_lateinit] = ACTIONS(4219), - [anon_sym_public] = ACTIONS(4219), - [anon_sym_private] = ACTIONS(4219), - [anon_sym_internal] = ACTIONS(4219), - [anon_sym_protected] = ACTIONS(4219), - [anon_sym_tailrec] = ACTIONS(4219), - [anon_sym_operator] = ACTIONS(4219), - [anon_sym_infix] = ACTIONS(4219), - [anon_sym_inline] = ACTIONS(4219), - [anon_sym_external] = ACTIONS(4219), - [sym_property_modifier] = ACTIONS(4219), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_final] = ACTIONS(4219), - [anon_sym_open] = ACTIONS(4219), - [anon_sym_vararg] = ACTIONS(4219), - [anon_sym_noinline] = ACTIONS(4219), - [anon_sym_crossinline] = ACTIONS(4219), - [anon_sym_expect] = ACTIONS(4219), - [anon_sym_actual] = ACTIONS(4219), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4221), - [anon_sym_continue_AT] = ACTIONS(4221), - [anon_sym_break_AT] = ACTIONS(4221), - [anon_sym_this_AT] = ACTIONS(4221), - [anon_sym_super_AT] = ACTIONS(4221), - [sym_real_literal] = ACTIONS(4221), - [sym_integer_literal] = ACTIONS(4219), - [sym_hex_literal] = ACTIONS(4221), - [sym_bin_literal] = ACTIONS(4221), - [anon_sym_true] = ACTIONS(4219), - [anon_sym_false] = ACTIONS(4219), - [anon_sym_SQUOTE] = ACTIONS(4221), - [sym__backtick_identifier] = ACTIONS(4221), - [sym__automatic_semicolon] = ACTIONS(4221), - [sym_safe_nav] = ACTIONS(4221), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4221), + [830] = { + [aux_sym_nullable_type_repeat1] = STATE(830), + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_RBRACE] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4222), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [sym__quest] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4222), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4224), + [anon_sym_QMARK_COLON] = ACTIONS(4224), + [anon_sym_AMP_AMP] = ACTIONS(4224), + [anon_sym_PIPE_PIPE] = ACTIONS(4224), + [anon_sym_null] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4224), + [anon_sym_PLUS_EQ] = ACTIONS(4224), + [anon_sym_DASH_EQ] = ACTIONS(4224), + [anon_sym_STAR_EQ] = ACTIONS(4224), + [anon_sym_SLASH_EQ] = ACTIONS(4224), + [anon_sym_PERCENT_EQ] = ACTIONS(4224), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4224), + [anon_sym_LT_EQ] = ACTIONS(4224), + [anon_sym_GT_EQ] = ACTIONS(4224), + [anon_sym_BANGin] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4224), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4224), + [anon_sym_DASH_DASH] = ACTIONS(4224), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4224), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4224), + [anon_sym_continue_AT] = ACTIONS(4224), + [anon_sym_break_AT] = ACTIONS(4224), + [anon_sym_this_AT] = ACTIONS(4224), + [anon_sym_super_AT] = ACTIONS(4224), + [sym_real_literal] = ACTIONS(4224), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4224), + [sym_bin_literal] = ACTIONS(4224), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4224), + [sym__backtick_identifier] = ACTIONS(4224), + [sym__automatic_semicolon] = ACTIONS(4224), + [sym_safe_nav] = ACTIONS(4224), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4224), }, - [841] = { - [aux_sym_user_type_repeat1] = STATE(837), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_fun] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_COMMA] = ACTIONS(4227), - [anon_sym_by] = ACTIONS(4225), - [anon_sym_LT] = ACTIONS(4225), - [anon_sym_GT] = ACTIONS(4225), - [anon_sym_where] = ACTIONS(4225), - [anon_sym_object] = ACTIONS(4225), + [831] = { + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4233), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), [anon_sym_DOT] = ACTIONS(4229), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [anon_sym_this] = ACTIONS(4225), - [anon_sym_super] = ACTIONS(4225), - [anon_sym_AMP] = ACTIONS(4225), - [sym__quest] = ACTIONS(4225), - [anon_sym_STAR] = ACTIONS(4225), - [sym_label] = ACTIONS(4225), - [anon_sym_in] = ACTIONS(4225), - [anon_sym_DOT_DOT] = ACTIONS(4227), - [anon_sym_QMARK_COLON] = ACTIONS(4227), - [anon_sym_AMP_AMP] = ACTIONS(4227), - [anon_sym_PIPE_PIPE] = ACTIONS(4227), - [anon_sym_null] = ACTIONS(4225), - [anon_sym_if] = ACTIONS(4225), - [anon_sym_else] = ACTIONS(4225), - [anon_sym_when] = ACTIONS(4225), - [anon_sym_try] = ACTIONS(4225), - [anon_sym_throw] = ACTIONS(4225), - [anon_sym_return] = ACTIONS(4225), - [anon_sym_continue] = ACTIONS(4225), - [anon_sym_break] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_PLUS_EQ] = ACTIONS(4227), - [anon_sym_DASH_EQ] = ACTIONS(4227), - [anon_sym_STAR_EQ] = ACTIONS(4227), - [anon_sym_SLASH_EQ] = ACTIONS(4227), - [anon_sym_PERCENT_EQ] = ACTIONS(4227), - [anon_sym_BANG_EQ] = ACTIONS(4225), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4227), - [anon_sym_EQ_EQ] = ACTIONS(4225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4227), - [anon_sym_LT_EQ] = ACTIONS(4227), - [anon_sym_GT_EQ] = ACTIONS(4227), - [anon_sym_BANGin] = ACTIONS(4227), - [anon_sym_is] = ACTIONS(4225), - [anon_sym_BANGis] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_SLASH] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_as_QMARK] = ACTIONS(4227), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG] = ACTIONS(4225), - [anon_sym_BANG_BANG] = ACTIONS(4227), - [anon_sym_suspend] = ACTIONS(4225), - [anon_sym_sealed] = ACTIONS(4225), - [anon_sym_annotation] = ACTIONS(4225), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_override] = ACTIONS(4225), - [anon_sym_lateinit] = ACTIONS(4225), - [anon_sym_public] = ACTIONS(4225), - [anon_sym_private] = ACTIONS(4225), - [anon_sym_internal] = ACTIONS(4225), - [anon_sym_protected] = ACTIONS(4225), - [anon_sym_tailrec] = ACTIONS(4225), - [anon_sym_operator] = ACTIONS(4225), - [anon_sym_infix] = ACTIONS(4225), - [anon_sym_inline] = ACTIONS(4225), - [anon_sym_external] = ACTIONS(4225), - [sym_property_modifier] = ACTIONS(4225), - [anon_sym_abstract] = ACTIONS(4225), - [anon_sym_final] = ACTIONS(4225), - [anon_sym_open] = ACTIONS(4225), - [anon_sym_vararg] = ACTIONS(4225), - [anon_sym_noinline] = ACTIONS(4225), - [anon_sym_crossinline] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4227), - [anon_sym_continue_AT] = ACTIONS(4227), - [anon_sym_break_AT] = ACTIONS(4227), - [anon_sym_this_AT] = ACTIONS(4227), - [anon_sym_super_AT] = ACTIONS(4227), - [sym_real_literal] = ACTIONS(4227), - [sym_integer_literal] = ACTIONS(4225), - [sym_hex_literal] = ACTIONS(4227), - [sym_bin_literal] = ACTIONS(4227), - [anon_sym_true] = ACTIONS(4225), - [anon_sym_false] = ACTIONS(4225), - [anon_sym_SQUOTE] = ACTIONS(4227), - [sym__backtick_identifier] = ACTIONS(4227), - [sym__automatic_semicolon] = ACTIONS(4227), - [sym_safe_nav] = ACTIONS(4227), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), }, - [842] = { - [sym__alpha_identifier] = ACTIONS(4232), - [anon_sym_AT] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4232), - [anon_sym_EQ] = ACTIONS(4232), - [anon_sym_fun] = ACTIONS(4232), - [anon_sym_LBRACE] = ACTIONS(4234), - [anon_sym_RBRACE] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_COMMA] = ACTIONS(4234), - [anon_sym_by] = ACTIONS(4232), - [anon_sym_LT] = ACTIONS(4232), - [anon_sym_GT] = ACTIONS(4232), - [anon_sym_where] = ACTIONS(4232), - [anon_sym_object] = ACTIONS(4232), - [anon_sym_DOT] = ACTIONS(4232), - [anon_sym_SEMI] = ACTIONS(4234), - [anon_sym_get] = ACTIONS(4232), - [anon_sym_set] = ACTIONS(4232), - [anon_sym_this] = ACTIONS(4232), - [anon_sym_super] = ACTIONS(4232), - [anon_sym_AMP] = ACTIONS(4232), - [sym__quest] = ACTIONS(4232), - [anon_sym_STAR] = ACTIONS(4232), - [sym_label] = ACTIONS(4232), - [anon_sym_in] = ACTIONS(4232), - [anon_sym_DOT_DOT] = ACTIONS(4234), - [anon_sym_QMARK_COLON] = ACTIONS(4234), - [anon_sym_AMP_AMP] = ACTIONS(4234), - [anon_sym_PIPE_PIPE] = ACTIONS(4234), - [anon_sym_null] = ACTIONS(4232), - [anon_sym_if] = ACTIONS(4232), - [anon_sym_else] = ACTIONS(4232), - [anon_sym_when] = ACTIONS(4232), - [anon_sym_try] = ACTIONS(4232), - [anon_sym_throw] = ACTIONS(4232), - [anon_sym_return] = ACTIONS(4232), - [anon_sym_continue] = ACTIONS(4232), - [anon_sym_break] = ACTIONS(4232), - [anon_sym_COLON_COLON] = ACTIONS(4234), - [anon_sym_PLUS_EQ] = ACTIONS(4234), - [anon_sym_DASH_EQ] = ACTIONS(4234), - [anon_sym_STAR_EQ] = ACTIONS(4234), - [anon_sym_SLASH_EQ] = ACTIONS(4234), - [anon_sym_PERCENT_EQ] = ACTIONS(4234), - [anon_sym_BANG_EQ] = ACTIONS(4232), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), - [anon_sym_EQ_EQ] = ACTIONS(4232), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), - [anon_sym_LT_EQ] = ACTIONS(4234), - [anon_sym_GT_EQ] = ACTIONS(4234), - [anon_sym_BANGin] = ACTIONS(4234), - [anon_sym_is] = ACTIONS(4232), - [anon_sym_BANGis] = ACTIONS(4234), - [anon_sym_PLUS] = ACTIONS(4232), - [anon_sym_DASH] = ACTIONS(4232), - [anon_sym_SLASH] = ACTIONS(4232), - [anon_sym_PERCENT] = ACTIONS(4232), - [anon_sym_as_QMARK] = ACTIONS(4234), - [anon_sym_PLUS_PLUS] = ACTIONS(4234), - [anon_sym_DASH_DASH] = ACTIONS(4234), - [anon_sym_BANG] = ACTIONS(4232), - [anon_sym_BANG_BANG] = ACTIONS(4234), - [anon_sym_suspend] = ACTIONS(4232), - [anon_sym_sealed] = ACTIONS(4232), - [anon_sym_annotation] = ACTIONS(4232), - [anon_sym_data] = ACTIONS(4232), - [anon_sym_inner] = ACTIONS(4232), - [anon_sym_value] = ACTIONS(4232), - [anon_sym_override] = ACTIONS(4232), - [anon_sym_lateinit] = ACTIONS(4232), - [anon_sym_public] = ACTIONS(4232), - [anon_sym_private] = ACTIONS(4232), - [anon_sym_internal] = ACTIONS(4232), - [anon_sym_protected] = ACTIONS(4232), - [anon_sym_tailrec] = ACTIONS(4232), - [anon_sym_operator] = ACTIONS(4232), - [anon_sym_infix] = ACTIONS(4232), - [anon_sym_inline] = ACTIONS(4232), - [anon_sym_external] = ACTIONS(4232), - [sym_property_modifier] = ACTIONS(4232), - [anon_sym_abstract] = ACTIONS(4232), - [anon_sym_final] = ACTIONS(4232), - [anon_sym_open] = ACTIONS(4232), - [anon_sym_vararg] = ACTIONS(4232), - [anon_sym_noinline] = ACTIONS(4232), - [anon_sym_crossinline] = ACTIONS(4232), - [anon_sym_expect] = ACTIONS(4232), - [anon_sym_actual] = ACTIONS(4232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4234), - [anon_sym_continue_AT] = ACTIONS(4234), - [anon_sym_break_AT] = ACTIONS(4234), - [anon_sym_this_AT] = ACTIONS(4234), - [anon_sym_super_AT] = ACTIONS(4234), - [sym_real_literal] = ACTIONS(4234), - [sym_integer_literal] = ACTIONS(4232), - [sym_hex_literal] = ACTIONS(4234), - [sym_bin_literal] = ACTIONS(4234), - [anon_sym_true] = ACTIONS(4232), - [anon_sym_false] = ACTIONS(4232), - [anon_sym_SQUOTE] = ACTIONS(4234), - [sym__backtick_identifier] = ACTIONS(4234), - [sym__automatic_semicolon] = ACTIONS(4234), - [sym_safe_nav] = ACTIONS(4234), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4234), + [832] = { + [sym_type_constraints] = STATE(935), + [sym_enum_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, - [843] = { - [sym__alpha_identifier] = ACTIONS(4236), + [833] = { + [sym__alpha_identifier] = ACTIONS(4237), [anon_sym_AT] = ACTIONS(4239), [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_RBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4236), - [anon_sym_DASH_GT] = ACTIONS(4242), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_while] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_object] = ACTIONS(4237), + [anon_sym_fun] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_this] = ACTIONS(4237), + [anon_sym_super] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(4241), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [sym_label] = ACTIONS(4237), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_null] = ACTIONS(4237), + [anon_sym_if] = ACTIONS(4237), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_when] = ACTIONS(4237), + [anon_sym_try] = ACTIONS(4237), + [anon_sym_throw] = ACTIONS(4237), + [anon_sym_return] = ACTIONS(4237), + [anon_sym_continue] = ACTIONS(4237), + [anon_sym_break] = ACTIONS(4237), [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), [anon_sym_PLUS_PLUS] = ACTIONS(4239), [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4239), + [anon_sym_continue_AT] = ACTIONS(4239), + [anon_sym_break_AT] = ACTIONS(4239), + [anon_sym_this_AT] = ACTIONS(4239), + [anon_sym_super_AT] = ACTIONS(4239), + [sym_real_literal] = ACTIONS(4239), + [sym_integer_literal] = ACTIONS(4237), + [sym_hex_literal] = ACTIONS(4239), + [sym_bin_literal] = ACTIONS(4239), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4239), [sym__backtick_identifier] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), + [sym__string_start] = ACTIONS(4239), }, - [844] = { - [aux_sym_nullable_type_repeat1] = STATE(877), - [sym__alpha_identifier] = ACTIONS(4250), - [anon_sym_AT] = ACTIONS(4252), - [anon_sym_LBRACK] = ACTIONS(4252), - [anon_sym_as] = ACTIONS(4250), - [anon_sym_EQ] = ACTIONS(4250), - [anon_sym_fun] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4252), - [anon_sym_RBRACE] = ACTIONS(4252), - [anon_sym_LPAREN] = ACTIONS(4252), - [anon_sym_COMMA] = ACTIONS(4252), - [anon_sym_by] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4250), - [anon_sym_GT] = ACTIONS(4250), - [anon_sym_where] = ACTIONS(4250), - [anon_sym_object] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4250), - [anon_sym_SEMI] = ACTIONS(4252), - [anon_sym_get] = ACTIONS(4250), - [anon_sym_set] = ACTIONS(4250), - [anon_sym_this] = ACTIONS(4250), - [anon_sym_super] = ACTIONS(4250), - [sym__quest] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4250), - [sym_label] = ACTIONS(4250), - [anon_sym_in] = ACTIONS(4250), - [anon_sym_DOT_DOT] = ACTIONS(4252), - [anon_sym_QMARK_COLON] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4252), - [anon_sym_PIPE_PIPE] = ACTIONS(4252), - [anon_sym_null] = ACTIONS(4250), - [anon_sym_if] = ACTIONS(4250), - [anon_sym_else] = ACTIONS(4250), - [anon_sym_when] = ACTIONS(4250), - [anon_sym_try] = ACTIONS(4250), - [anon_sym_throw] = ACTIONS(4250), - [anon_sym_return] = ACTIONS(4250), - [anon_sym_continue] = ACTIONS(4250), - [anon_sym_break] = ACTIONS(4250), - [anon_sym_COLON_COLON] = ACTIONS(4252), - [anon_sym_PLUS_EQ] = ACTIONS(4252), - [anon_sym_DASH_EQ] = ACTIONS(4252), - [anon_sym_STAR_EQ] = ACTIONS(4252), - [anon_sym_SLASH_EQ] = ACTIONS(4252), - [anon_sym_PERCENT_EQ] = ACTIONS(4252), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), - [anon_sym_LT_EQ] = ACTIONS(4252), - [anon_sym_GT_EQ] = ACTIONS(4252), - [anon_sym_BANGin] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4250), - [anon_sym_BANGis] = ACTIONS(4252), - [anon_sym_PLUS] = ACTIONS(4250), - [anon_sym_DASH] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4250), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_as_QMARK] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4252), - [anon_sym_DASH_DASH] = ACTIONS(4252), - [anon_sym_BANG] = ACTIONS(4250), - [anon_sym_BANG_BANG] = ACTIONS(4252), - [anon_sym_suspend] = ACTIONS(4250), - [anon_sym_sealed] = ACTIONS(4250), - [anon_sym_annotation] = ACTIONS(4250), - [anon_sym_data] = ACTIONS(4250), - [anon_sym_inner] = ACTIONS(4250), - [anon_sym_value] = ACTIONS(4250), - [anon_sym_override] = ACTIONS(4250), - [anon_sym_lateinit] = ACTIONS(4250), - [anon_sym_public] = ACTIONS(4250), - [anon_sym_private] = ACTIONS(4250), - [anon_sym_internal] = ACTIONS(4250), - [anon_sym_protected] = ACTIONS(4250), - [anon_sym_tailrec] = ACTIONS(4250), - [anon_sym_operator] = ACTIONS(4250), - [anon_sym_infix] = ACTIONS(4250), - [anon_sym_inline] = ACTIONS(4250), - [anon_sym_external] = ACTIONS(4250), - [sym_property_modifier] = ACTIONS(4250), - [anon_sym_abstract] = ACTIONS(4250), - [anon_sym_final] = ACTIONS(4250), - [anon_sym_open] = ACTIONS(4250), - [anon_sym_vararg] = ACTIONS(4250), - [anon_sym_noinline] = ACTIONS(4250), - [anon_sym_crossinline] = ACTIONS(4250), - [anon_sym_expect] = ACTIONS(4250), - [anon_sym_actual] = ACTIONS(4250), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4252), - [anon_sym_continue_AT] = ACTIONS(4252), - [anon_sym_break_AT] = ACTIONS(4252), - [anon_sym_this_AT] = ACTIONS(4252), - [anon_sym_super_AT] = ACTIONS(4252), - [sym_real_literal] = ACTIONS(4252), - [sym_integer_literal] = ACTIONS(4250), - [sym_hex_literal] = ACTIONS(4252), - [sym_bin_literal] = ACTIONS(4252), - [anon_sym_true] = ACTIONS(4250), - [anon_sym_false] = ACTIONS(4250), - [anon_sym_SQUOTE] = ACTIONS(4252), - [sym__backtick_identifier] = ACTIONS(4252), - [sym__automatic_semicolon] = ACTIONS(4252), - [sym_safe_nav] = ACTIONS(4252), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4252), + [834] = { + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_RBRACK] = ACTIONS(4181), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_object] = ACTIONS(4179), + [anon_sym_fun] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_this] = ACTIONS(4179), + [anon_sym_super] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [anon_sym_DASH_GT] = ACTIONS(4181), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_while] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_QMARK_COLON] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_null] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_throw] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS_EQ] = ACTIONS(4181), + [anon_sym_DASH_EQ] = ACTIONS(4181), + [anon_sym_STAR_EQ] = ACTIONS(4181), + [anon_sym_SLASH_EQ] = ACTIONS(4181), + [anon_sym_PERCENT_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_as_QMARK] = ACTIONS(4181), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4181), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4181), + [anon_sym_continue_AT] = ACTIONS(4181), + [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [anon_sym_SQUOTE] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4181), + [sym_safe_nav] = ACTIONS(4181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4181), }, - [845] = { - [sym_class_body] = STATE(1127), - [sym_type_constraints] = STATE(984), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), + [835] = { + [sym_class_body] = STATE(1068), + [sym_type_constraints] = STATE(969), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), - }, - [846] = { - [aux_sym_nullable_type_repeat1] = STATE(846), - [sym__alpha_identifier] = ACTIONS(4262), - [anon_sym_AT] = ACTIONS(4264), - [anon_sym_LBRACK] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4262), - [anon_sym_EQ] = ACTIONS(4262), - [anon_sym_fun] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_LPAREN] = ACTIONS(4264), - [anon_sym_COMMA] = ACTIONS(4264), - [anon_sym_by] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4262), - [anon_sym_GT] = ACTIONS(4262), - [anon_sym_where] = ACTIONS(4262), - [anon_sym_object] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym_get] = ACTIONS(4262), - [anon_sym_set] = ACTIONS(4262), - [anon_sym_this] = ACTIONS(4262), - [anon_sym_super] = ACTIONS(4262), - [sym__quest] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4262), - [sym_label] = ACTIONS(4262), - [anon_sym_in] = ACTIONS(4262), - [anon_sym_DOT_DOT] = ACTIONS(4264), - [anon_sym_QMARK_COLON] = ACTIONS(4264), - [anon_sym_AMP_AMP] = ACTIONS(4264), - [anon_sym_PIPE_PIPE] = ACTIONS(4264), - [anon_sym_null] = ACTIONS(4262), - [anon_sym_if] = ACTIONS(4262), - [anon_sym_else] = ACTIONS(4262), - [anon_sym_when] = ACTIONS(4262), - [anon_sym_try] = ACTIONS(4262), - [anon_sym_throw] = ACTIONS(4262), - [anon_sym_return] = ACTIONS(4262), - [anon_sym_continue] = ACTIONS(4262), - [anon_sym_break] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_PLUS_EQ] = ACTIONS(4264), - [anon_sym_DASH_EQ] = ACTIONS(4264), - [anon_sym_STAR_EQ] = ACTIONS(4264), - [anon_sym_SLASH_EQ] = ACTIONS(4264), - [anon_sym_PERCENT_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), - [anon_sym_LT_EQ] = ACTIONS(4264), - [anon_sym_GT_EQ] = ACTIONS(4264), - [anon_sym_BANGin] = ACTIONS(4264), - [anon_sym_is] = ACTIONS(4262), - [anon_sym_BANGis] = ACTIONS(4264), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4262), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_as_QMARK] = ACTIONS(4264), - [anon_sym_PLUS_PLUS] = ACTIONS(4264), - [anon_sym_DASH_DASH] = ACTIONS(4264), - [anon_sym_BANG] = ACTIONS(4262), - [anon_sym_BANG_BANG] = ACTIONS(4264), - [anon_sym_suspend] = ACTIONS(4262), - [anon_sym_sealed] = ACTIONS(4262), - [anon_sym_annotation] = ACTIONS(4262), - [anon_sym_data] = ACTIONS(4262), - [anon_sym_inner] = ACTIONS(4262), - [anon_sym_value] = ACTIONS(4262), - [anon_sym_override] = ACTIONS(4262), - [anon_sym_lateinit] = ACTIONS(4262), - [anon_sym_public] = ACTIONS(4262), - [anon_sym_private] = ACTIONS(4262), - [anon_sym_internal] = ACTIONS(4262), - [anon_sym_protected] = ACTIONS(4262), - [anon_sym_tailrec] = ACTIONS(4262), - [anon_sym_operator] = ACTIONS(4262), - [anon_sym_infix] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym_external] = ACTIONS(4262), - [sym_property_modifier] = ACTIONS(4262), - [anon_sym_abstract] = ACTIONS(4262), - [anon_sym_final] = ACTIONS(4262), - [anon_sym_open] = ACTIONS(4262), - [anon_sym_vararg] = ACTIONS(4262), - [anon_sym_noinline] = ACTIONS(4262), - [anon_sym_crossinline] = ACTIONS(4262), - [anon_sym_expect] = ACTIONS(4262), - [anon_sym_actual] = ACTIONS(4262), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4264), - [anon_sym_continue_AT] = ACTIONS(4264), - [anon_sym_break_AT] = ACTIONS(4264), - [anon_sym_this_AT] = ACTIONS(4264), - [anon_sym_super_AT] = ACTIONS(4264), - [sym_real_literal] = ACTIONS(4264), - [sym_integer_literal] = ACTIONS(4262), - [sym_hex_literal] = ACTIONS(4264), - [sym_bin_literal] = ACTIONS(4264), - [anon_sym_true] = ACTIONS(4262), - [anon_sym_false] = ACTIONS(4262), - [anon_sym_SQUOTE] = ACTIONS(4264), - [sym__backtick_identifier] = ACTIONS(4264), - [sym__automatic_semicolon] = ACTIONS(4264), - [sym_safe_nav] = ACTIONS(4264), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4264), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [847] = { - [sym_type_constraints] = STATE(975), - [sym_enum_class_body] = STATE(1200), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), + [836] = { + [sym_type_constraints] = STATE(1107), + [sym_function_body] = STATE(1014), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), }, - [848] = { - [sym_function_body] = STATE(1083), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(4273), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_where] = ACTIONS(4269), - [anon_sym_object] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_this] = ACTIONS(4269), - [anon_sym_super] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4269), - [sym_label] = ACTIONS(4269), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_null] = ACTIONS(4269), - [anon_sym_if] = ACTIONS(4269), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_when] = ACTIONS(4269), - [anon_sym_try] = ACTIONS(4269), - [anon_sym_throw] = ACTIONS(4269), - [anon_sym_return] = ACTIONS(4269), - [anon_sym_continue] = ACTIONS(4269), - [anon_sym_break] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_PLUS_EQ] = ACTIONS(4271), - [anon_sym_DASH_EQ] = ACTIONS(4271), - [anon_sym_STAR_EQ] = ACTIONS(4271), - [anon_sym_SLASH_EQ] = ACTIONS(4271), - [anon_sym_PERCENT_EQ] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4269), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4269), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_suspend] = ACTIONS(4269), - [anon_sym_sealed] = ACTIONS(4269), - [anon_sym_annotation] = ACTIONS(4269), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_override] = ACTIONS(4269), - [anon_sym_lateinit] = ACTIONS(4269), - [anon_sym_public] = ACTIONS(4269), - [anon_sym_private] = ACTIONS(4269), - [anon_sym_internal] = ACTIONS(4269), - [anon_sym_protected] = ACTIONS(4269), - [anon_sym_tailrec] = ACTIONS(4269), - [anon_sym_operator] = ACTIONS(4269), - [anon_sym_infix] = ACTIONS(4269), - [anon_sym_inline] = ACTIONS(4269), - [anon_sym_external] = ACTIONS(4269), - [sym_property_modifier] = ACTIONS(4269), - [anon_sym_abstract] = ACTIONS(4269), - [anon_sym_final] = ACTIONS(4269), - [anon_sym_open] = ACTIONS(4269), - [anon_sym_vararg] = ACTIONS(4269), - [anon_sym_noinline] = ACTIONS(4269), - [anon_sym_crossinline] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4271), - [anon_sym_continue_AT] = ACTIONS(4271), - [anon_sym_break_AT] = ACTIONS(4271), - [anon_sym_this_AT] = ACTIONS(4271), - [anon_sym_super_AT] = ACTIONS(4271), - [sym_real_literal] = ACTIONS(4271), - [sym_integer_literal] = ACTIONS(4269), - [sym_hex_literal] = ACTIONS(4271), - [sym_bin_literal] = ACTIONS(4271), - [anon_sym_true] = ACTIONS(4269), - [anon_sym_false] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4271), - [sym__backtick_identifier] = ACTIONS(4271), - [sym__automatic_semicolon] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4271), + [837] = { + [sym_type_constraints] = STATE(905), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [849] = { - [sym_class_body] = STATE(1200), - [sym_type_constraints] = STATE(1002), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), + [838] = { + [sym_type_constraints] = STATE(1105), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(4245), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, - [850] = { - [sym_class_body] = STATE(1203), - [sym_type_constraints] = STATE(1034), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_fun] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), + [839] = { + [aux_sym_nullable_type_repeat1] = STATE(830), + [sym__alpha_identifier] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_as] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_RBRACE] = ACTIONS(4249), + [anon_sym_LPAREN] = ACTIONS(4249), + [anon_sym_COMMA] = ACTIONS(4249), + [anon_sym_by] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4247), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_where] = ACTIONS(4247), + [anon_sym_object] = ACTIONS(4247), + [anon_sym_fun] = ACTIONS(4247), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4249), + [anon_sym_get] = ACTIONS(4247), + [anon_sym_set] = ACTIONS(4247), + [anon_sym_this] = ACTIONS(4247), + [anon_sym_super] = ACTIONS(4247), + [sym__quest] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4247), + [sym_label] = ACTIONS(4247), + [anon_sym_in] = ACTIONS(4247), + [anon_sym_DOT_DOT] = ACTIONS(4249), + [anon_sym_QMARK_COLON] = ACTIONS(4249), + [anon_sym_AMP_AMP] = ACTIONS(4249), + [anon_sym_PIPE_PIPE] = ACTIONS(4249), + [anon_sym_null] = ACTIONS(4247), + [anon_sym_if] = ACTIONS(4247), + [anon_sym_else] = ACTIONS(4247), + [anon_sym_when] = ACTIONS(4247), + [anon_sym_try] = ACTIONS(4247), + [anon_sym_throw] = ACTIONS(4247), + [anon_sym_return] = ACTIONS(4247), + [anon_sym_continue] = ACTIONS(4247), + [anon_sym_break] = ACTIONS(4247), + [anon_sym_COLON_COLON] = ACTIONS(4249), + [anon_sym_PLUS_EQ] = ACTIONS(4249), + [anon_sym_DASH_EQ] = ACTIONS(4249), + [anon_sym_STAR_EQ] = ACTIONS(4249), + [anon_sym_SLASH_EQ] = ACTIONS(4249), + [anon_sym_PERCENT_EQ] = ACTIONS(4249), + [anon_sym_BANG_EQ] = ACTIONS(4247), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4249), + [anon_sym_EQ_EQ] = ACTIONS(4247), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4249), + [anon_sym_LT_EQ] = ACTIONS(4249), + [anon_sym_GT_EQ] = ACTIONS(4249), + [anon_sym_BANGin] = ACTIONS(4249), + [anon_sym_is] = ACTIONS(4247), + [anon_sym_BANGis] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_as_QMARK] = ACTIONS(4249), + [anon_sym_PLUS_PLUS] = ACTIONS(4249), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_BANG_BANG] = ACTIONS(4249), + [anon_sym_suspend] = ACTIONS(4247), + [anon_sym_sealed] = ACTIONS(4247), + [anon_sym_annotation] = ACTIONS(4247), + [anon_sym_data] = ACTIONS(4247), + [anon_sym_inner] = ACTIONS(4247), + [anon_sym_value] = ACTIONS(4247), + [anon_sym_override] = ACTIONS(4247), + [anon_sym_lateinit] = ACTIONS(4247), + [anon_sym_public] = ACTIONS(4247), + [anon_sym_private] = ACTIONS(4247), + [anon_sym_internal] = ACTIONS(4247), + [anon_sym_protected] = ACTIONS(4247), + [anon_sym_tailrec] = ACTIONS(4247), + [anon_sym_operator] = ACTIONS(4247), + [anon_sym_infix] = ACTIONS(4247), + [anon_sym_inline] = ACTIONS(4247), + [anon_sym_external] = ACTIONS(4247), + [sym_property_modifier] = ACTIONS(4247), + [anon_sym_abstract] = ACTIONS(4247), + [anon_sym_final] = ACTIONS(4247), + [anon_sym_open] = ACTIONS(4247), + [anon_sym_vararg] = ACTIONS(4247), + [anon_sym_noinline] = ACTIONS(4247), + [anon_sym_crossinline] = ACTIONS(4247), + [anon_sym_expect] = ACTIONS(4247), + [anon_sym_actual] = ACTIONS(4247), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4249), + [anon_sym_continue_AT] = ACTIONS(4249), + [anon_sym_break_AT] = ACTIONS(4249), + [anon_sym_this_AT] = ACTIONS(4249), + [anon_sym_super_AT] = ACTIONS(4249), + [sym_real_literal] = ACTIONS(4249), + [sym_integer_literal] = ACTIONS(4247), + [sym_hex_literal] = ACTIONS(4249), + [sym_bin_literal] = ACTIONS(4249), + [anon_sym_true] = ACTIONS(4247), + [anon_sym_false] = ACTIONS(4247), + [anon_sym_SQUOTE] = ACTIONS(4249), + [sym__backtick_identifier] = ACTIONS(4249), + [sym__automatic_semicolon] = ACTIONS(4249), + [sym_safe_nav] = ACTIONS(4249), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4249), + }, + [840] = { + [sym__alpha_identifier] = ACTIONS(4253), + [anon_sym_AT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4255), + [anon_sym_RBRACK] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4253), + [anon_sym_EQ] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_RBRACE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4253), + [anon_sym_where] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_fun] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_get] = ACTIONS(4253), + [anon_sym_set] = ACTIONS(4253), + [anon_sym_this] = ACTIONS(4253), + [anon_sym_super] = ACTIONS(4253), + [anon_sym_STAR] = ACTIONS(4253), + [anon_sym_DASH_GT] = ACTIONS(4255), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4253), + [anon_sym_while] = ACTIONS(4253), + [anon_sym_DOT_DOT] = ACTIONS(4255), + [anon_sym_QMARK_COLON] = ACTIONS(4255), + [anon_sym_AMP_AMP] = ACTIONS(4255), + [anon_sym_PIPE_PIPE] = ACTIONS(4255), + [anon_sym_null] = ACTIONS(4253), + [anon_sym_if] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4253), + [anon_sym_when] = ACTIONS(4253), + [anon_sym_try] = ACTIONS(4253), + [anon_sym_throw] = ACTIONS(4253), + [anon_sym_return] = ACTIONS(4253), + [anon_sym_continue] = ACTIONS(4253), + [anon_sym_break] = ACTIONS(4253), + [anon_sym_COLON_COLON] = ACTIONS(4255), + [anon_sym_PLUS_EQ] = ACTIONS(4255), + [anon_sym_DASH_EQ] = ACTIONS(4255), + [anon_sym_STAR_EQ] = ACTIONS(4255), + [anon_sym_SLASH_EQ] = ACTIONS(4255), + [anon_sym_PERCENT_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4255), + [anon_sym_LT_EQ] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4255), + [anon_sym_BANGin] = ACTIONS(4255), + [anon_sym_is] = ACTIONS(4253), + [anon_sym_BANGis] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4253), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4255), + [anon_sym_PLUS_PLUS] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4255), + [anon_sym_suspend] = ACTIONS(4253), + [anon_sym_sealed] = ACTIONS(4253), + [anon_sym_annotation] = ACTIONS(4253), + [anon_sym_data] = ACTIONS(4253), + [anon_sym_inner] = ACTIONS(4253), + [anon_sym_value] = ACTIONS(4253), + [anon_sym_override] = ACTIONS(4253), + [anon_sym_lateinit] = ACTIONS(4253), + [anon_sym_public] = ACTIONS(4253), + [anon_sym_private] = ACTIONS(4253), + [anon_sym_internal] = ACTIONS(4253), + [anon_sym_protected] = ACTIONS(4253), + [anon_sym_tailrec] = ACTIONS(4253), + [anon_sym_operator] = ACTIONS(4253), + [anon_sym_infix] = ACTIONS(4253), + [anon_sym_inline] = ACTIONS(4253), + [anon_sym_external] = ACTIONS(4253), + [sym_property_modifier] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4253), + [anon_sym_final] = ACTIONS(4253), + [anon_sym_open] = ACTIONS(4253), + [anon_sym_vararg] = ACTIONS(4253), + [anon_sym_noinline] = ACTIONS(4253), + [anon_sym_crossinline] = ACTIONS(4253), + [anon_sym_expect] = ACTIONS(4253), + [anon_sym_actual] = ACTIONS(4253), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4255), + [anon_sym_continue_AT] = ACTIONS(4255), + [anon_sym_break_AT] = ACTIONS(4255), + [anon_sym_this_AT] = ACTIONS(4255), + [anon_sym_super_AT] = ACTIONS(4255), + [sym_real_literal] = ACTIONS(4255), + [sym_integer_literal] = ACTIONS(4253), + [sym_hex_literal] = ACTIONS(4255), + [sym_bin_literal] = ACTIONS(4255), + [anon_sym_true] = ACTIONS(4253), + [anon_sym_false] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4255), + [sym__backtick_identifier] = ACTIONS(4255), + [sym_safe_nav] = ACTIONS(4255), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4255), + }, + [841] = { + [sym_type_constraints] = STATE(1100), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4275), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_this] = ACTIONS(4275), - [anon_sym_super] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), - [sym_label] = ACTIONS(4275), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4275), - [anon_sym_if] = ACTIONS(4275), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_when] = ACTIONS(4275), - [anon_sym_try] = ACTIONS(4275), - [anon_sym_throw] = ACTIONS(4275), - [anon_sym_return] = ACTIONS(4275), - [anon_sym_continue] = ACTIONS(4275), - [anon_sym_break] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_PLUS_EQ] = ACTIONS(4277), - [anon_sym_DASH_EQ] = ACTIONS(4277), - [anon_sym_STAR_EQ] = ACTIONS(4277), - [anon_sym_SLASH_EQ] = ACTIONS(4277), - [anon_sym_PERCENT_EQ] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_suspend] = ACTIONS(4275), - [anon_sym_sealed] = ACTIONS(4275), - [anon_sym_annotation] = ACTIONS(4275), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_override] = ACTIONS(4275), - [anon_sym_lateinit] = ACTIONS(4275), - [anon_sym_public] = ACTIONS(4275), - [anon_sym_private] = ACTIONS(4275), - [anon_sym_internal] = ACTIONS(4275), - [anon_sym_protected] = ACTIONS(4275), - [anon_sym_tailrec] = ACTIONS(4275), - [anon_sym_operator] = ACTIONS(4275), - [anon_sym_infix] = ACTIONS(4275), - [anon_sym_inline] = ACTIONS(4275), - [anon_sym_external] = ACTIONS(4275), - [sym_property_modifier] = ACTIONS(4275), - [anon_sym_abstract] = ACTIONS(4275), - [anon_sym_final] = ACTIONS(4275), - [anon_sym_open] = ACTIONS(4275), - [anon_sym_vararg] = ACTIONS(4275), - [anon_sym_noinline] = ACTIONS(4275), - [anon_sym_crossinline] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4277), - [anon_sym_continue_AT] = ACTIONS(4277), - [anon_sym_break_AT] = ACTIONS(4277), - [anon_sym_this_AT] = ACTIONS(4277), - [anon_sym_super_AT] = ACTIONS(4277), - [sym_real_literal] = ACTIONS(4277), - [sym_integer_literal] = ACTIONS(4275), - [sym_hex_literal] = ACTIONS(4277), - [sym_bin_literal] = ACTIONS(4277), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [anon_sym_SQUOTE] = ACTIONS(4277), - [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, - [851] = { - [sym_class_body] = STATE(1148), - [sym_type_constraints] = STATE(958), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [852] = { - [sym_type_constraints] = STATE(959), - [sym_enum_class_body] = STATE(1057), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [842] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_DASH_GT] = ACTIONS(4265), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [853] = { - [sym_class_body] = STATE(1130), - [sym_type_constraints] = STATE(1011), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(4285), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), + [843] = { + [sym_type_constraints] = STATE(1096), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(4273), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), + [sym__string_start] = ACTIONS(4185), }, - [854] = { - [sym_type_constraints] = STATE(898), - [sym_function_body] = STATE(1189), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), + [844] = { + [sym_type_constraints] = STATE(903), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, - [855] = { + [845] = { [sym_type_constraints] = STATE(899), - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), - }, - [856] = { - [sym_type_constraints] = STATE(1014), - [sym_enum_class_body] = STATE(1130), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), - }, - [857] = { - [sym_type_constraints] = STATE(901), - [sym_function_body] = STATE(1153), - [sym__block] = STATE(1092), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_COMMA] = ACTIONS(4185), @@ -150148,6 +147917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4183), [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), @@ -150239,885 +148009,1102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4185), }, - [858] = { - [sym_type_constraints] = STATE(905), - [sym_function_body] = STATE(1087), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), + [846] = { + [sym_function_body] = STATE(1048), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4279), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), + }, + [847] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4281), + [anon_sym_DASH_GT] = ACTIONS(4287), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [848] = { + [sym_type_constraints] = STATE(898), + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, - [859] = { - [sym_type_constraints] = STATE(907), - [sym_function_body] = STATE(1045), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), + [849] = { + [sym_type_constraints] = STATE(896), + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), }, - [860] = { - [sym__alpha_identifier] = ACTIONS(4215), - [anon_sym_AT] = ACTIONS(4217), - [anon_sym_LBRACK] = ACTIONS(4217), - [anon_sym_RBRACK] = ACTIONS(4217), - [anon_sym_as] = ACTIONS(4215), - [anon_sym_EQ] = ACTIONS(4215), - [anon_sym_fun] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4217), - [anon_sym_COMMA] = ACTIONS(4217), - [anon_sym_RPAREN] = ACTIONS(4217), - [anon_sym_LT] = ACTIONS(4215), - [anon_sym_GT] = ACTIONS(4215), - [anon_sym_where] = ACTIONS(4215), - [anon_sym_object] = ACTIONS(4215), - [anon_sym_DOT] = ACTIONS(4215), - [anon_sym_SEMI] = ACTIONS(4217), - [anon_sym_get] = ACTIONS(4215), - [anon_sym_set] = ACTIONS(4215), - [anon_sym_this] = ACTIONS(4215), - [anon_sym_super] = ACTIONS(4215), - [anon_sym_STAR] = ACTIONS(4215), - [anon_sym_DASH_GT] = ACTIONS(4217), - [sym_label] = ACTIONS(4215), - [anon_sym_in] = ACTIONS(4215), - [anon_sym_while] = ACTIONS(4215), - [anon_sym_DOT_DOT] = ACTIONS(4217), - [anon_sym_QMARK_COLON] = ACTIONS(4217), - [anon_sym_AMP_AMP] = ACTIONS(4217), - [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4215), - [anon_sym_if] = ACTIONS(4215), - [anon_sym_else] = ACTIONS(4215), - [anon_sym_when] = ACTIONS(4215), - [anon_sym_try] = ACTIONS(4215), - [anon_sym_throw] = ACTIONS(4215), - [anon_sym_return] = ACTIONS(4215), - [anon_sym_continue] = ACTIONS(4215), - [anon_sym_break] = ACTIONS(4215), - [anon_sym_COLON_COLON] = ACTIONS(4217), - [anon_sym_PLUS_EQ] = ACTIONS(4217), - [anon_sym_DASH_EQ] = ACTIONS(4217), - [anon_sym_STAR_EQ] = ACTIONS(4217), - [anon_sym_SLASH_EQ] = ACTIONS(4217), - [anon_sym_PERCENT_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ] = ACTIONS(4215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ] = ACTIONS(4215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), - [anon_sym_LT_EQ] = ACTIONS(4217), - [anon_sym_GT_EQ] = ACTIONS(4217), - [anon_sym_BANGin] = ACTIONS(4217), - [anon_sym_is] = ACTIONS(4215), - [anon_sym_BANGis] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4215), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_SLASH] = ACTIONS(4215), - [anon_sym_PERCENT] = ACTIONS(4215), - [anon_sym_as_QMARK] = ACTIONS(4217), - [anon_sym_PLUS_PLUS] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4217), - [anon_sym_BANG] = ACTIONS(4215), - [anon_sym_BANG_BANG] = ACTIONS(4217), - [anon_sym_suspend] = ACTIONS(4215), - [anon_sym_sealed] = ACTIONS(4215), - [anon_sym_annotation] = ACTIONS(4215), - [anon_sym_data] = ACTIONS(4215), - [anon_sym_inner] = ACTIONS(4215), - [anon_sym_value] = ACTIONS(4215), - [anon_sym_override] = ACTIONS(4215), - [anon_sym_lateinit] = ACTIONS(4215), - [anon_sym_public] = ACTIONS(4215), - [anon_sym_private] = ACTIONS(4215), - [anon_sym_internal] = ACTIONS(4215), - [anon_sym_protected] = ACTIONS(4215), - [anon_sym_tailrec] = ACTIONS(4215), - [anon_sym_operator] = ACTIONS(4215), - [anon_sym_infix] = ACTIONS(4215), - [anon_sym_inline] = ACTIONS(4215), - [anon_sym_external] = ACTIONS(4215), - [sym_property_modifier] = ACTIONS(4215), - [anon_sym_abstract] = ACTIONS(4215), - [anon_sym_final] = ACTIONS(4215), - [anon_sym_open] = ACTIONS(4215), - [anon_sym_vararg] = ACTIONS(4215), - [anon_sym_noinline] = ACTIONS(4215), - [anon_sym_crossinline] = ACTIONS(4215), - [anon_sym_expect] = ACTIONS(4215), - [anon_sym_actual] = ACTIONS(4215), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4217), - [anon_sym_continue_AT] = ACTIONS(4217), - [anon_sym_break_AT] = ACTIONS(4217), - [anon_sym_this_AT] = ACTIONS(4217), - [anon_sym_super_AT] = ACTIONS(4217), - [sym_real_literal] = ACTIONS(4217), - [sym_integer_literal] = ACTIONS(4215), - [sym_hex_literal] = ACTIONS(4217), - [sym_bin_literal] = ACTIONS(4217), - [anon_sym_true] = ACTIONS(4215), - [anon_sym_false] = ACTIONS(4215), - [anon_sym_SQUOTE] = ACTIONS(4217), - [sym__backtick_identifier] = ACTIONS(4217), - [sym_safe_nav] = ACTIONS(4217), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4217), + [850] = { + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [861] = { - [sym__alpha_identifier] = ACTIONS(4297), - [anon_sym_AT] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4297), - [anon_sym_EQ] = ACTIONS(4297), - [anon_sym_fun] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_RBRACE] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_by] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_where] = ACTIONS(4297), - [anon_sym_object] = ACTIONS(4297), - [anon_sym_DOT] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_get] = ACTIONS(4297), - [anon_sym_set] = ACTIONS(4297), - [anon_sym_this] = ACTIONS(4297), - [anon_sym_super] = ACTIONS(4297), - [anon_sym_AMP] = ACTIONS(4301), - [sym__quest] = ACTIONS(4297), - [anon_sym_STAR] = ACTIONS(4297), - [sym_label] = ACTIONS(4297), - [anon_sym_in] = ACTIONS(4297), - [anon_sym_DOT_DOT] = ACTIONS(4299), - [anon_sym_QMARK_COLON] = ACTIONS(4299), - [anon_sym_AMP_AMP] = ACTIONS(4299), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_null] = ACTIONS(4297), - [anon_sym_if] = ACTIONS(4297), - [anon_sym_else] = ACTIONS(4297), - [anon_sym_when] = ACTIONS(4297), - [anon_sym_try] = ACTIONS(4297), - [anon_sym_throw] = ACTIONS(4297), - [anon_sym_return] = ACTIONS(4297), - [anon_sym_continue] = ACTIONS(4297), - [anon_sym_break] = ACTIONS(4297), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym_PLUS_EQ] = ACTIONS(4299), - [anon_sym_DASH_EQ] = ACTIONS(4299), - [anon_sym_STAR_EQ] = ACTIONS(4299), - [anon_sym_SLASH_EQ] = ACTIONS(4299), - [anon_sym_PERCENT_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ] = ACTIONS(4297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ] = ACTIONS(4297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ] = ACTIONS(4299), - [anon_sym_GT_EQ] = ACTIONS(4299), - [anon_sym_BANGin] = ACTIONS(4299), - [anon_sym_is] = ACTIONS(4297), - [anon_sym_BANGis] = ACTIONS(4299), - [anon_sym_PLUS] = ACTIONS(4297), - [anon_sym_DASH] = ACTIONS(4297), - [anon_sym_SLASH] = ACTIONS(4297), - [anon_sym_PERCENT] = ACTIONS(4297), - [anon_sym_as_QMARK] = ACTIONS(4299), - [anon_sym_PLUS_PLUS] = ACTIONS(4299), - [anon_sym_DASH_DASH] = ACTIONS(4299), - [anon_sym_BANG] = ACTIONS(4297), - [anon_sym_BANG_BANG] = ACTIONS(4299), - [anon_sym_suspend] = ACTIONS(4297), - [anon_sym_sealed] = ACTIONS(4297), - [anon_sym_annotation] = ACTIONS(4297), - [anon_sym_data] = ACTIONS(4297), - [anon_sym_inner] = ACTIONS(4297), - [anon_sym_value] = ACTIONS(4297), - [anon_sym_override] = ACTIONS(4297), - [anon_sym_lateinit] = ACTIONS(4297), - [anon_sym_public] = ACTIONS(4297), - [anon_sym_private] = ACTIONS(4297), - [anon_sym_internal] = ACTIONS(4297), - [anon_sym_protected] = ACTIONS(4297), - [anon_sym_tailrec] = ACTIONS(4297), - [anon_sym_operator] = ACTIONS(4297), - [anon_sym_infix] = ACTIONS(4297), - [anon_sym_inline] = ACTIONS(4297), - [anon_sym_external] = ACTIONS(4297), - [sym_property_modifier] = ACTIONS(4297), - [anon_sym_abstract] = ACTIONS(4297), - [anon_sym_final] = ACTIONS(4297), - [anon_sym_open] = ACTIONS(4297), - [anon_sym_vararg] = ACTIONS(4297), - [anon_sym_noinline] = ACTIONS(4297), - [anon_sym_crossinline] = ACTIONS(4297), - [anon_sym_expect] = ACTIONS(4297), - [anon_sym_actual] = ACTIONS(4297), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4299), - [anon_sym_continue_AT] = ACTIONS(4299), - [anon_sym_break_AT] = ACTIONS(4299), - [anon_sym_this_AT] = ACTIONS(4299), - [anon_sym_super_AT] = ACTIONS(4299), - [sym_real_literal] = ACTIONS(4299), - [sym_integer_literal] = ACTIONS(4297), - [sym_hex_literal] = ACTIONS(4299), - [sym_bin_literal] = ACTIONS(4299), - [anon_sym_true] = ACTIONS(4297), - [anon_sym_false] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym__backtick_identifier] = ACTIONS(4299), - [sym__automatic_semicolon] = ACTIONS(4299), - [sym_safe_nav] = ACTIONS(4299), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4299), + [851] = { + [aux_sym_nullable_type_repeat1] = STATE(839), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_by] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_object] = ACTIONS(4303), + [anon_sym_fun] = ACTIONS(4303), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_this] = ACTIONS(4303), + [anon_sym_super] = ACTIONS(4303), + [sym__quest] = ACTIONS(4208), + [anon_sym_STAR] = ACTIONS(4303), + [sym_label] = ACTIONS(4303), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_DOT_DOT] = ACTIONS(4305), + [anon_sym_QMARK_COLON] = ACTIONS(4305), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4305), + [anon_sym_null] = ACTIONS(4303), + [anon_sym_if] = ACTIONS(4303), + [anon_sym_else] = ACTIONS(4303), + [anon_sym_when] = ACTIONS(4303), + [anon_sym_try] = ACTIONS(4303), + [anon_sym_throw] = ACTIONS(4303), + [anon_sym_return] = ACTIONS(4303), + [anon_sym_continue] = ACTIONS(4303), + [anon_sym_break] = ACTIONS(4303), + [anon_sym_COLON_COLON] = ACTIONS(4305), + [anon_sym_PLUS_EQ] = ACTIONS(4305), + [anon_sym_DASH_EQ] = ACTIONS(4305), + [anon_sym_STAR_EQ] = ACTIONS(4305), + [anon_sym_SLASH_EQ] = ACTIONS(4305), + [anon_sym_PERCENT_EQ] = ACTIONS(4305), + [anon_sym_BANG_EQ] = ACTIONS(4303), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4305), + [anon_sym_EQ_EQ] = ACTIONS(4303), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4305), + [anon_sym_LT_EQ] = ACTIONS(4305), + [anon_sym_GT_EQ] = ACTIONS(4305), + [anon_sym_BANGin] = ACTIONS(4305), + [anon_sym_is] = ACTIONS(4303), + [anon_sym_BANGis] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_as_QMARK] = ACTIONS(4305), + [anon_sym_PLUS_PLUS] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_BANG_BANG] = ACTIONS(4305), + [anon_sym_suspend] = ACTIONS(4303), + [anon_sym_sealed] = ACTIONS(4303), + [anon_sym_annotation] = ACTIONS(4303), + [anon_sym_data] = ACTIONS(4303), + [anon_sym_inner] = ACTIONS(4303), + [anon_sym_value] = ACTIONS(4303), + [anon_sym_override] = ACTIONS(4303), + [anon_sym_lateinit] = ACTIONS(4303), + [anon_sym_public] = ACTIONS(4303), + [anon_sym_private] = ACTIONS(4303), + [anon_sym_internal] = ACTIONS(4303), + [anon_sym_protected] = ACTIONS(4303), + [anon_sym_tailrec] = ACTIONS(4303), + [anon_sym_operator] = ACTIONS(4303), + [anon_sym_infix] = ACTIONS(4303), + [anon_sym_inline] = ACTIONS(4303), + [anon_sym_external] = ACTIONS(4303), + [sym_property_modifier] = ACTIONS(4303), + [anon_sym_abstract] = ACTIONS(4303), + [anon_sym_final] = ACTIONS(4303), + [anon_sym_open] = ACTIONS(4303), + [anon_sym_vararg] = ACTIONS(4303), + [anon_sym_noinline] = ACTIONS(4303), + [anon_sym_crossinline] = ACTIONS(4303), + [anon_sym_expect] = ACTIONS(4303), + [anon_sym_actual] = ACTIONS(4303), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4305), + [anon_sym_continue_AT] = ACTIONS(4305), + [anon_sym_break_AT] = ACTIONS(4305), + [anon_sym_this_AT] = ACTIONS(4305), + [anon_sym_super_AT] = ACTIONS(4305), + [sym_real_literal] = ACTIONS(4305), + [sym_integer_literal] = ACTIONS(4303), + [sym_hex_literal] = ACTIONS(4305), + [sym_bin_literal] = ACTIONS(4305), + [anon_sym_true] = ACTIONS(4303), + [anon_sym_false] = ACTIONS(4303), + [anon_sym_SQUOTE] = ACTIONS(4305), + [sym__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4305), }, - [862] = { - [sym_type_constraints] = STATE(1196), - [sym_function_body] = STATE(1215), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4209), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_this] = ACTIONS(4209), - [anon_sym_super] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4209), - [sym_label] = ACTIONS(4209), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_if] = ACTIONS(4209), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_when] = ACTIONS(4209), - [anon_sym_try] = ACTIONS(4209), - [anon_sym_throw] = ACTIONS(4209), - [anon_sym_return] = ACTIONS(4209), - [anon_sym_continue] = ACTIONS(4209), - [anon_sym_break] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_PLUS_EQ] = ACTIONS(4211), - [anon_sym_DASH_EQ] = ACTIONS(4211), - [anon_sym_STAR_EQ] = ACTIONS(4211), - [anon_sym_SLASH_EQ] = ACTIONS(4211), - [anon_sym_PERCENT_EQ] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4209), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG] = ACTIONS(4209), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_suspend] = ACTIONS(4209), - [anon_sym_sealed] = ACTIONS(4209), - [anon_sym_annotation] = ACTIONS(4209), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_override] = ACTIONS(4209), - [anon_sym_lateinit] = ACTIONS(4209), - [anon_sym_public] = ACTIONS(4209), - [anon_sym_private] = ACTIONS(4209), - [anon_sym_internal] = ACTIONS(4209), - [anon_sym_protected] = ACTIONS(4209), - [anon_sym_tailrec] = ACTIONS(4209), - [anon_sym_operator] = ACTIONS(4209), - [anon_sym_infix] = ACTIONS(4209), - [anon_sym_inline] = ACTIONS(4209), - [anon_sym_external] = ACTIONS(4209), - [sym_property_modifier] = ACTIONS(4209), - [anon_sym_abstract] = ACTIONS(4209), - [anon_sym_final] = ACTIONS(4209), - [anon_sym_open] = ACTIONS(4209), - [anon_sym_vararg] = ACTIONS(4209), - [anon_sym_noinline] = ACTIONS(4209), - [anon_sym_crossinline] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4211), - [anon_sym_continue_AT] = ACTIONS(4211), - [anon_sym_break_AT] = ACTIONS(4211), - [anon_sym_this_AT] = ACTIONS(4211), - [anon_sym_super_AT] = ACTIONS(4211), - [sym_real_literal] = ACTIONS(4211), - [sym_integer_literal] = ACTIONS(4209), - [sym_hex_literal] = ACTIONS(4211), - [sym_bin_literal] = ACTIONS(4211), - [anon_sym_true] = ACTIONS(4209), - [anon_sym_false] = ACTIONS(4209), - [anon_sym_SQUOTE] = ACTIONS(4211), - [sym__backtick_identifier] = ACTIONS(4211), - [sym__automatic_semicolon] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4211), + [852] = { + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(4311), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, - [863] = { - [sym_type_constraints] = STATE(1195), - [sym_function_body] = STATE(1197), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), + [853] = { + [sym_class_body] = STATE(1180), + [sym_type_constraints] = STATE(945), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, - [864] = { - [sym_type_constraints] = STATE(1193), - [sym_function_body] = STATE(1045), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(4309), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [854] = { + [sym__alpha_identifier] = ACTIONS(4313), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_as] = ACTIONS(4313), + [anon_sym_EQ] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_RBRACE] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_COMMA] = ACTIONS(4315), + [anon_sym_by] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4313), + [anon_sym_GT] = ACTIONS(4313), + [anon_sym_where] = ACTIONS(4313), + [anon_sym_object] = ACTIONS(4313), + [anon_sym_fun] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym_get] = ACTIONS(4313), + [anon_sym_set] = ACTIONS(4313), + [anon_sym_this] = ACTIONS(4313), + [anon_sym_super] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4313), + [sym__quest] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4313), + [sym_label] = ACTIONS(4313), + [anon_sym_in] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_QMARK_COLON] = ACTIONS(4315), + [anon_sym_AMP_AMP] = ACTIONS(4315), + [anon_sym_PIPE_PIPE] = ACTIONS(4315), + [anon_sym_null] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4313), + [anon_sym_else] = ACTIONS(4313), + [anon_sym_when] = ACTIONS(4313), + [anon_sym_try] = ACTIONS(4313), + [anon_sym_throw] = ACTIONS(4313), + [anon_sym_return] = ACTIONS(4313), + [anon_sym_continue] = ACTIONS(4313), + [anon_sym_break] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_PLUS_EQ] = ACTIONS(4315), + [anon_sym_DASH_EQ] = ACTIONS(4315), + [anon_sym_STAR_EQ] = ACTIONS(4315), + [anon_sym_SLASH_EQ] = ACTIONS(4315), + [anon_sym_PERCENT_EQ] = ACTIONS(4315), + [anon_sym_BANG_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4315), + [anon_sym_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4315), + [anon_sym_LT_EQ] = ACTIONS(4315), + [anon_sym_GT_EQ] = ACTIONS(4315), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(4313), + [anon_sym_BANGis] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_SLASH] = ACTIONS(4313), + [anon_sym_PERCENT] = ACTIONS(4313), + [anon_sym_as_QMARK] = ACTIONS(4315), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(4313), + [anon_sym_BANG_BANG] = ACTIONS(4315), + [anon_sym_suspend] = ACTIONS(4313), + [anon_sym_sealed] = ACTIONS(4313), + [anon_sym_annotation] = ACTIONS(4313), + [anon_sym_data] = ACTIONS(4313), + [anon_sym_inner] = ACTIONS(4313), + [anon_sym_value] = ACTIONS(4313), + [anon_sym_override] = ACTIONS(4313), + [anon_sym_lateinit] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_internal] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_tailrec] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_infix] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym_external] = ACTIONS(4313), + [sym_property_modifier] = ACTIONS(4313), + [anon_sym_abstract] = ACTIONS(4313), + [anon_sym_final] = ACTIONS(4313), + [anon_sym_open] = ACTIONS(4313), + [anon_sym_vararg] = ACTIONS(4313), + [anon_sym_noinline] = ACTIONS(4313), + [anon_sym_crossinline] = ACTIONS(4313), + [anon_sym_expect] = ACTIONS(4313), + [anon_sym_actual] = ACTIONS(4313), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4315), + [anon_sym_continue_AT] = ACTIONS(4315), + [anon_sym_break_AT] = ACTIONS(4315), + [anon_sym_this_AT] = ACTIONS(4315), + [anon_sym_super_AT] = ACTIONS(4315), + [sym_real_literal] = ACTIONS(4315), + [sym_integer_literal] = ACTIONS(4313), + [sym_hex_literal] = ACTIONS(4315), + [sym_bin_literal] = ACTIONS(4315), + [anon_sym_true] = ACTIONS(4313), + [anon_sym_false] = ACTIONS(4313), + [anon_sym_SQUOTE] = ACTIONS(4315), + [sym__backtick_identifier] = ACTIONS(4315), + [sym__automatic_semicolon] = ACTIONS(4315), + [sym_safe_nav] = ACTIONS(4315), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4315), }, - [865] = { - [sym__alpha_identifier] = ACTIONS(4311), - [anon_sym_AT] = ACTIONS(4313), - [anon_sym_LBRACK] = ACTIONS(4313), - [anon_sym_as] = ACTIONS(4311), - [anon_sym_EQ] = ACTIONS(4311), - [anon_sym_fun] = ACTIONS(4311), - [anon_sym_LBRACE] = ACTIONS(4313), - [anon_sym_RBRACE] = ACTIONS(4313), - [anon_sym_LPAREN] = ACTIONS(4313), - [anon_sym_COMMA] = ACTIONS(4313), - [anon_sym_by] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_where] = ACTIONS(4311), - [anon_sym_object] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4311), - [anon_sym_SEMI] = ACTIONS(4313), - [anon_sym_get] = ACTIONS(4311), - [anon_sym_set] = ACTIONS(4311), - [anon_sym_this] = ACTIONS(4311), - [anon_sym_super] = ACTIONS(4311), - [sym__quest] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_DASH_GT] = ACTIONS(4315), - [sym_label] = ACTIONS(4311), - [anon_sym_in] = ACTIONS(4311), - [anon_sym_DOT_DOT] = ACTIONS(4313), - [anon_sym_QMARK_COLON] = ACTIONS(4313), - [anon_sym_AMP_AMP] = ACTIONS(4313), - [anon_sym_PIPE_PIPE] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4311), - [anon_sym_if] = ACTIONS(4311), - [anon_sym_else] = ACTIONS(4311), - [anon_sym_when] = ACTIONS(4311), - [anon_sym_try] = ACTIONS(4311), - [anon_sym_throw] = ACTIONS(4311), - [anon_sym_return] = ACTIONS(4311), - [anon_sym_continue] = ACTIONS(4311), - [anon_sym_break] = ACTIONS(4311), - [anon_sym_COLON_COLON] = ACTIONS(4313), - [anon_sym_PLUS_EQ] = ACTIONS(4313), - [anon_sym_DASH_EQ] = ACTIONS(4313), - [anon_sym_STAR_EQ] = ACTIONS(4313), - [anon_sym_SLASH_EQ] = ACTIONS(4313), - [anon_sym_PERCENT_EQ] = ACTIONS(4313), - [anon_sym_BANG_EQ] = ACTIONS(4311), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), - [anon_sym_EQ_EQ] = ACTIONS(4311), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), - [anon_sym_LT_EQ] = ACTIONS(4313), - [anon_sym_GT_EQ] = ACTIONS(4313), - [anon_sym_BANGin] = ACTIONS(4313), - [anon_sym_is] = ACTIONS(4311), - [anon_sym_BANGis] = ACTIONS(4313), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_PERCENT] = ACTIONS(4311), - [anon_sym_as_QMARK] = ACTIONS(4313), - [anon_sym_PLUS_PLUS] = ACTIONS(4313), - [anon_sym_DASH_DASH] = ACTIONS(4313), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_BANG_BANG] = ACTIONS(4313), - [anon_sym_suspend] = ACTIONS(4311), - [anon_sym_sealed] = ACTIONS(4311), - [anon_sym_annotation] = ACTIONS(4311), - [anon_sym_data] = ACTIONS(4311), - [anon_sym_inner] = ACTIONS(4311), - [anon_sym_value] = ACTIONS(4311), - [anon_sym_override] = ACTIONS(4311), - [anon_sym_lateinit] = ACTIONS(4311), - [anon_sym_public] = ACTIONS(4311), - [anon_sym_private] = ACTIONS(4311), - [anon_sym_internal] = ACTIONS(4311), - [anon_sym_protected] = ACTIONS(4311), - [anon_sym_tailrec] = ACTIONS(4311), - [anon_sym_operator] = ACTIONS(4311), - [anon_sym_infix] = ACTIONS(4311), - [anon_sym_inline] = ACTIONS(4311), - [anon_sym_external] = ACTIONS(4311), - [sym_property_modifier] = ACTIONS(4311), - [anon_sym_abstract] = ACTIONS(4311), - [anon_sym_final] = ACTIONS(4311), - [anon_sym_open] = ACTIONS(4311), - [anon_sym_vararg] = ACTIONS(4311), - [anon_sym_noinline] = ACTIONS(4311), - [anon_sym_crossinline] = ACTIONS(4311), - [anon_sym_expect] = ACTIONS(4311), - [anon_sym_actual] = ACTIONS(4311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4313), - [anon_sym_continue_AT] = ACTIONS(4313), - [anon_sym_break_AT] = ACTIONS(4313), - [anon_sym_this_AT] = ACTIONS(4313), - [anon_sym_super_AT] = ACTIONS(4313), - [sym_real_literal] = ACTIONS(4313), - [sym_integer_literal] = ACTIONS(4311), - [sym_hex_literal] = ACTIONS(4313), - [sym_bin_literal] = ACTIONS(4313), - [anon_sym_true] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4313), - [sym__backtick_identifier] = ACTIONS(4313), - [sym__automatic_semicolon] = ACTIONS(4313), - [sym_safe_nav] = ACTIONS(4313), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4313), + [855] = { + [sym_type_constraints] = STATE(947), + [sym_enum_class_body] = STATE(1148), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [866] = { + [856] = { [sym__alpha_identifier] = ACTIONS(4317), [anon_sym_AT] = ACTIONS(4319), [anon_sym_LBRACK] = ACTIONS(4319), [anon_sym_as] = ACTIONS(4317), [anon_sym_EQ] = ACTIONS(4317), - [anon_sym_fun] = ACTIONS(4317), [anon_sym_LBRACE] = ACTIONS(4319), [anon_sym_RBRACE] = ACTIONS(4319), [anon_sym_LPAREN] = ACTIONS(4319), @@ -151127,6 +149114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4317), [anon_sym_where] = ACTIONS(4317), [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = ACTIONS(4317), [anon_sym_DOT] = ACTIONS(4317), [anon_sym_SEMI] = ACTIONS(4319), [anon_sym_get] = ACTIONS(4317), @@ -151220,24 +149208,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4319), }, - [867] = { - [sym_function_body] = STATE(1202), - [sym__block] = STATE(1092), + [857] = { + [sym_type_constraints] = STATE(990), + [sym_enum_class_body] = STATE(1133), [sym__alpha_identifier] = ACTIONS(4321), [anon_sym_AT] = ACTIONS(4323), [anon_sym_COLON] = ACTIONS(4325), [anon_sym_LBRACK] = ACTIONS(4323), [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3240), [anon_sym_RBRACE] = ACTIONS(4323), [anon_sym_LPAREN] = ACTIONS(4323), [anon_sym_COMMA] = ACTIONS(4323), [anon_sym_LT] = ACTIONS(4321), [anon_sym_GT] = ACTIONS(4321), - [anon_sym_where] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), [anon_sym_DOT] = ACTIONS(4321), [anon_sym_SEMI] = ACTIONS(4323), [anon_sym_get] = ACTIONS(4321), @@ -151329,30 +149317,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4323), }, - [868] = { - [aux_sym_nullable_type_repeat1] = STATE(877), + [858] = { + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), + }, + [859] = { + [sym_class_body] = STATE(1141), + [sym_type_constraints] = STATE(933), [sym__alpha_identifier] = ACTIONS(4327), [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4331), [anon_sym_LBRACK] = ACTIONS(4329), [anon_sym_as] = ACTIONS(4327), [anon_sym_EQ] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(3210), [anon_sym_RBRACE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4327), [anon_sym_LT] = ACTIONS(4327), [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), [anon_sym_DOT] = ACTIONS(4327), [anon_sym_SEMI] = ACTIONS(4329), [anon_sym_get] = ACTIONS(4327), [anon_sym_set] = ACTIONS(4327), [anon_sym_this] = ACTIONS(4327), [anon_sym_super] = ACTIONS(4327), - [sym__quest] = ACTIONS(4254), [anon_sym_STAR] = ACTIONS(4327), [sym_label] = ACTIONS(4327), [anon_sym_in] = ACTIONS(4327), @@ -151438,340 +149535,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4329), }, - [869] = { - [sym__alpha_identifier] = ACTIONS(4189), - [anon_sym_AT] = ACTIONS(4191), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_as] = ACTIONS(4189), - [anon_sym_EQ] = ACTIONS(4189), - [anon_sym_fun] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_by] = ACTIONS(4189), - [anon_sym_LT] = ACTIONS(4189), - [anon_sym_GT] = ACTIONS(4189), - [anon_sym_where] = ACTIONS(4189), - [anon_sym_object] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_SEMI] = ACTIONS(4191), - [anon_sym_get] = ACTIONS(4189), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_this] = ACTIONS(4189), - [anon_sym_super] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [sym__quest] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [sym_label] = ACTIONS(4189), - [anon_sym_in] = ACTIONS(4189), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_QMARK_COLON] = ACTIONS(4191), - [anon_sym_AMP_AMP] = ACTIONS(4191), - [anon_sym_PIPE_PIPE] = ACTIONS(4191), - [anon_sym_null] = ACTIONS(4189), - [anon_sym_if] = ACTIONS(4189), - [anon_sym_else] = ACTIONS(4189), - [anon_sym_when] = ACTIONS(4189), - [anon_sym_try] = ACTIONS(4189), - [anon_sym_throw] = ACTIONS(4189), - [anon_sym_return] = ACTIONS(4189), - [anon_sym_continue] = ACTIONS(4189), - [anon_sym_break] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(4191), - [anon_sym_PLUS_EQ] = ACTIONS(4191), - [anon_sym_DASH_EQ] = ACTIONS(4191), - [anon_sym_STAR_EQ] = ACTIONS(4191), - [anon_sym_SLASH_EQ] = ACTIONS(4191), - [anon_sym_PERCENT_EQ] = ACTIONS(4191), - [anon_sym_BANG_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4191), - [anon_sym_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4191), - [anon_sym_LT_EQ] = ACTIONS(4191), - [anon_sym_GT_EQ] = ACTIONS(4191), - [anon_sym_BANGin] = ACTIONS(4191), - [anon_sym_is] = ACTIONS(4189), - [anon_sym_BANGis] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_SLASH] = ACTIONS(4189), - [anon_sym_PERCENT] = ACTIONS(4189), - [anon_sym_as_QMARK] = ACTIONS(4191), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_BANG_BANG] = ACTIONS(4191), - [anon_sym_suspend] = ACTIONS(4189), - [anon_sym_sealed] = ACTIONS(4189), - [anon_sym_annotation] = ACTIONS(4189), - [anon_sym_data] = ACTIONS(4189), - [anon_sym_inner] = ACTIONS(4189), - [anon_sym_value] = ACTIONS(4189), - [anon_sym_override] = ACTIONS(4189), - [anon_sym_lateinit] = ACTIONS(4189), - [anon_sym_public] = ACTIONS(4189), - [anon_sym_private] = ACTIONS(4189), - [anon_sym_internal] = ACTIONS(4189), - [anon_sym_protected] = ACTIONS(4189), - [anon_sym_tailrec] = ACTIONS(4189), - [anon_sym_operator] = ACTIONS(4189), - [anon_sym_infix] = ACTIONS(4189), - [anon_sym_inline] = ACTIONS(4189), - [anon_sym_external] = ACTIONS(4189), - [sym_property_modifier] = ACTIONS(4189), - [anon_sym_abstract] = ACTIONS(4189), - [anon_sym_final] = ACTIONS(4189), - [anon_sym_open] = ACTIONS(4189), - [anon_sym_vararg] = ACTIONS(4189), - [anon_sym_noinline] = ACTIONS(4189), - [anon_sym_crossinline] = ACTIONS(4189), - [anon_sym_expect] = ACTIONS(4189), - [anon_sym_actual] = ACTIONS(4189), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4191), - [anon_sym_continue_AT] = ACTIONS(4191), - [anon_sym_break_AT] = ACTIONS(4191), - [anon_sym_this_AT] = ACTIONS(4191), - [anon_sym_super_AT] = ACTIONS(4191), - [sym_real_literal] = ACTIONS(4191), - [sym_integer_literal] = ACTIONS(4189), - [sym_hex_literal] = ACTIONS(4191), - [sym_bin_literal] = ACTIONS(4191), - [anon_sym_true] = ACTIONS(4189), - [anon_sym_false] = ACTIONS(4189), - [anon_sym_SQUOTE] = ACTIONS(4191), - [sym__backtick_identifier] = ACTIONS(4191), - [sym__automatic_semicolon] = ACTIONS(4191), - [sym_safe_nav] = ACTIONS(4191), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4191), - }, - [870] = { - [sym_class_body] = STATE(1057), - [sym_type_constraints] = STATE(998), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), - }, - [871] = { - [sym__alpha_identifier] = ACTIONS(4331), - [anon_sym_AT] = ACTIONS(4333), - [anon_sym_LBRACK] = ACTIONS(4333), - [anon_sym_RBRACK] = ACTIONS(4333), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_EQ] = ACTIONS(4331), - [anon_sym_fun] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4333), - [anon_sym_RBRACE] = ACTIONS(4333), - [anon_sym_LPAREN] = ACTIONS(4333), - [anon_sym_COMMA] = ACTIONS(4333), - [anon_sym_RPAREN] = ACTIONS(4333), - [anon_sym_LT] = ACTIONS(4331), - [anon_sym_GT] = ACTIONS(4331), - [anon_sym_where] = ACTIONS(4331), - [anon_sym_object] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_SEMI] = ACTIONS(4333), - [anon_sym_get] = ACTIONS(4331), - [anon_sym_set] = ACTIONS(4331), - [anon_sym_this] = ACTIONS(4331), - [anon_sym_super] = ACTIONS(4331), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4333), - [sym_label] = ACTIONS(4331), - [anon_sym_in] = ACTIONS(4331), - [anon_sym_while] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4333), - [anon_sym_QMARK_COLON] = ACTIONS(4333), - [anon_sym_AMP_AMP] = ACTIONS(4333), - [anon_sym_PIPE_PIPE] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(4331), - [anon_sym_if] = ACTIONS(4331), - [anon_sym_else] = ACTIONS(4331), - [anon_sym_when] = ACTIONS(4331), - [anon_sym_try] = ACTIONS(4331), - [anon_sym_throw] = ACTIONS(4331), - [anon_sym_return] = ACTIONS(4331), - [anon_sym_continue] = ACTIONS(4331), - [anon_sym_break] = ACTIONS(4331), - [anon_sym_COLON_COLON] = ACTIONS(4333), - [anon_sym_PLUS_EQ] = ACTIONS(4333), - [anon_sym_DASH_EQ] = ACTIONS(4333), - [anon_sym_STAR_EQ] = ACTIONS(4333), - [anon_sym_SLASH_EQ] = ACTIONS(4333), - [anon_sym_PERCENT_EQ] = ACTIONS(4333), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), - [anon_sym_LT_EQ] = ACTIONS(4333), - [anon_sym_GT_EQ] = ACTIONS(4333), - [anon_sym_BANGin] = ACTIONS(4333), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_BANGis] = ACTIONS(4333), - [anon_sym_PLUS] = ACTIONS(4331), - [anon_sym_DASH] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4331), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_as_QMARK] = ACTIONS(4333), - [anon_sym_PLUS_PLUS] = ACTIONS(4333), - [anon_sym_DASH_DASH] = ACTIONS(4333), - [anon_sym_BANG] = ACTIONS(4331), - [anon_sym_BANG_BANG] = ACTIONS(4333), - [anon_sym_suspend] = ACTIONS(4331), - [anon_sym_sealed] = ACTIONS(4331), - [anon_sym_annotation] = ACTIONS(4331), - [anon_sym_data] = ACTIONS(4331), - [anon_sym_inner] = ACTIONS(4331), - [anon_sym_value] = ACTIONS(4331), - [anon_sym_override] = ACTIONS(4331), - [anon_sym_lateinit] = ACTIONS(4331), - [anon_sym_public] = ACTIONS(4331), - [anon_sym_private] = ACTIONS(4331), - [anon_sym_internal] = ACTIONS(4331), - [anon_sym_protected] = ACTIONS(4331), - [anon_sym_tailrec] = ACTIONS(4331), - [anon_sym_operator] = ACTIONS(4331), - [anon_sym_infix] = ACTIONS(4331), - [anon_sym_inline] = ACTIONS(4331), - [anon_sym_external] = ACTIONS(4331), - [sym_property_modifier] = ACTIONS(4331), - [anon_sym_abstract] = ACTIONS(4331), - [anon_sym_final] = ACTIONS(4331), - [anon_sym_open] = ACTIONS(4331), - [anon_sym_vararg] = ACTIONS(4331), - [anon_sym_noinline] = ACTIONS(4331), - [anon_sym_crossinline] = ACTIONS(4331), - [anon_sym_expect] = ACTIONS(4331), - [anon_sym_actual] = ACTIONS(4331), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4333), - [anon_sym_continue_AT] = ACTIONS(4333), - [anon_sym_break_AT] = ACTIONS(4333), - [anon_sym_this_AT] = ACTIONS(4333), - [anon_sym_super_AT] = ACTIONS(4333), - [sym_real_literal] = ACTIONS(4333), - [sym_integer_literal] = ACTIONS(4331), - [sym_hex_literal] = ACTIONS(4333), - [sym_bin_literal] = ACTIONS(4333), - [anon_sym_true] = ACTIONS(4331), - [anon_sym_false] = ACTIONS(4331), - [anon_sym_SQUOTE] = ACTIONS(4333), - [sym__backtick_identifier] = ACTIONS(4333), - [sym_safe_nav] = ACTIONS(4333), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4333), + [860] = { + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_object] = ACTIONS(4237), + [anon_sym_fun] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_this] = ACTIONS(4237), + [anon_sym_super] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(4333), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [sym_label] = ACTIONS(4237), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_null] = ACTIONS(4237), + [anon_sym_if] = ACTIONS(4237), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_when] = ACTIONS(4237), + [anon_sym_try] = ACTIONS(4237), + [anon_sym_throw] = ACTIONS(4237), + [anon_sym_return] = ACTIONS(4237), + [anon_sym_continue] = ACTIONS(4237), + [anon_sym_break] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4239), + [anon_sym_continue_AT] = ACTIONS(4239), + [anon_sym_break_AT] = ACTIONS(4239), + [anon_sym_this_AT] = ACTIONS(4239), + [anon_sym_super_AT] = ACTIONS(4239), + [sym_real_literal] = ACTIONS(4239), + [sym_integer_literal] = ACTIONS(4237), + [sym_hex_literal] = ACTIONS(4239), + [sym_bin_literal] = ACTIONS(4239), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4239), + [sym__backtick_identifier] = ACTIONS(4239), + [sym__automatic_semicolon] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4239), }, - [872] = { + [861] = { [sym__alpha_identifier] = ACTIONS(4335), [anon_sym_AT] = ACTIONS(4337), [anon_sym_LBRACK] = ACTIONS(4337), [anon_sym_as] = ACTIONS(4335), [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_fun] = ACTIONS(4335), [anon_sym_LBRACE] = ACTIONS(4337), [anon_sym_RBRACE] = ACTIONS(4337), [anon_sym_LPAREN] = ACTIONS(4337), @@ -151781,6 +149659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4335), [anon_sym_where] = ACTIONS(4335), [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), [anon_sym_DOT] = ACTIONS(4335), [anon_sym_SEMI] = ACTIONS(4337), [anon_sym_get] = ACTIONS(4335), @@ -151874,24 +149753,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4337), }, - [873] = { - [sym_function_body] = STATE(1155), - [sym__block] = STATE(1092), + [862] = { + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3352), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [863] = { + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_constructor] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_object] = ACTIONS(4179), + [anon_sym_fun] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_this] = ACTIONS(4179), + [anon_sym_super] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_QMARK_COLON] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_null] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_throw] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS_EQ] = ACTIONS(4181), + [anon_sym_DASH_EQ] = ACTIONS(4181), + [anon_sym_STAR_EQ] = ACTIONS(4181), + [anon_sym_SLASH_EQ] = ACTIONS(4181), + [anon_sym_PERCENT_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_as_QMARK] = ACTIONS(4181), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4181), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4181), + [anon_sym_continue_AT] = ACTIONS(4181), + [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [anon_sym_SQUOTE] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4181), + [sym__automatic_semicolon] = ACTIONS(4181), + [sym_safe_nav] = ACTIONS(4181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4181), + }, + [864] = { + [aux_sym_type_constraints_repeat1] = STATE(885), [sym__alpha_identifier] = ACTIONS(4339), [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(4343), [anon_sym_LBRACK] = ACTIONS(4341), [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(4339), + [anon_sym_LBRACE] = ACTIONS(4341), [anon_sym_RBRACE] = ACTIONS(4341), [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), + [anon_sym_COMMA] = ACTIONS(4343), + [anon_sym_by] = ACTIONS(4339), [anon_sym_LT] = ACTIONS(4339), [anon_sym_GT] = ACTIONS(4339), [anon_sym_where] = ACTIONS(4339), [anon_sym_object] = ACTIONS(4339), + [anon_sym_fun] = ACTIONS(4339), [anon_sym_DOT] = ACTIONS(4339), [anon_sym_SEMI] = ACTIONS(4341), [anon_sym_get] = ACTIONS(4339), @@ -151983,186 +150077,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4341), }, - [874] = { - [sym__alpha_identifier] = ACTIONS(4297), - [anon_sym_AT] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4297), - [anon_sym_EQ] = ACTIONS(4297), - [anon_sym_fun] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_RBRACE] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_by] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_where] = ACTIONS(4297), - [anon_sym_object] = ACTIONS(4297), - [anon_sym_DOT] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_get] = ACTIONS(4297), - [anon_sym_set] = ACTIONS(4297), - [anon_sym_this] = ACTIONS(4297), - [anon_sym_super] = ACTIONS(4297), - [anon_sym_AMP] = ACTIONS(4345), - [sym__quest] = ACTIONS(4297), - [anon_sym_STAR] = ACTIONS(4297), - [sym_label] = ACTIONS(4297), - [anon_sym_in] = ACTIONS(4297), - [anon_sym_DOT_DOT] = ACTIONS(4299), - [anon_sym_QMARK_COLON] = ACTIONS(4299), - [anon_sym_AMP_AMP] = ACTIONS(4299), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_null] = ACTIONS(4297), - [anon_sym_if] = ACTIONS(4297), - [anon_sym_else] = ACTIONS(4297), - [anon_sym_when] = ACTIONS(4297), - [anon_sym_try] = ACTIONS(4297), - [anon_sym_throw] = ACTIONS(4297), - [anon_sym_return] = ACTIONS(4297), - [anon_sym_continue] = ACTIONS(4297), - [anon_sym_break] = ACTIONS(4297), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym_PLUS_EQ] = ACTIONS(4299), - [anon_sym_DASH_EQ] = ACTIONS(4299), - [anon_sym_STAR_EQ] = ACTIONS(4299), - [anon_sym_SLASH_EQ] = ACTIONS(4299), - [anon_sym_PERCENT_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ] = ACTIONS(4297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ] = ACTIONS(4297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ] = ACTIONS(4299), - [anon_sym_GT_EQ] = ACTIONS(4299), - [anon_sym_BANGin] = ACTIONS(4299), - [anon_sym_is] = ACTIONS(4297), - [anon_sym_BANGis] = ACTIONS(4299), - [anon_sym_PLUS] = ACTIONS(4297), - [anon_sym_DASH] = ACTIONS(4297), - [anon_sym_SLASH] = ACTIONS(4297), - [anon_sym_PERCENT] = ACTIONS(4297), - [anon_sym_as_QMARK] = ACTIONS(4299), - [anon_sym_PLUS_PLUS] = ACTIONS(4299), - [anon_sym_DASH_DASH] = ACTIONS(4299), - [anon_sym_BANG] = ACTIONS(4297), - [anon_sym_BANG_BANG] = ACTIONS(4299), - [anon_sym_suspend] = ACTIONS(4297), - [anon_sym_sealed] = ACTIONS(4297), - [anon_sym_annotation] = ACTIONS(4297), - [anon_sym_data] = ACTIONS(4297), - [anon_sym_inner] = ACTIONS(4297), - [anon_sym_value] = ACTIONS(4297), - [anon_sym_override] = ACTIONS(4297), - [anon_sym_lateinit] = ACTIONS(4297), - [anon_sym_public] = ACTIONS(4297), - [anon_sym_private] = ACTIONS(4297), - [anon_sym_internal] = ACTIONS(4297), - [anon_sym_protected] = ACTIONS(4297), - [anon_sym_tailrec] = ACTIONS(4297), - [anon_sym_operator] = ACTIONS(4297), - [anon_sym_infix] = ACTIONS(4297), - [anon_sym_inline] = ACTIONS(4297), - [anon_sym_external] = ACTIONS(4297), - [sym_property_modifier] = ACTIONS(4297), - [anon_sym_abstract] = ACTIONS(4297), - [anon_sym_final] = ACTIONS(4297), - [anon_sym_open] = ACTIONS(4297), - [anon_sym_vararg] = ACTIONS(4297), - [anon_sym_noinline] = ACTIONS(4297), - [anon_sym_crossinline] = ACTIONS(4297), - [anon_sym_expect] = ACTIONS(4297), - [anon_sym_actual] = ACTIONS(4297), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4299), - [anon_sym_continue_AT] = ACTIONS(4299), - [anon_sym_break_AT] = ACTIONS(4299), - [anon_sym_this_AT] = ACTIONS(4299), - [anon_sym_super_AT] = ACTIONS(4299), - [sym_real_literal] = ACTIONS(4299), - [sym_integer_literal] = ACTIONS(4297), - [sym_hex_literal] = ACTIONS(4299), - [sym_bin_literal] = ACTIONS(4299), - [anon_sym_true] = ACTIONS(4297), - [anon_sym_false] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym__backtick_identifier] = ACTIONS(4299), - [sym__automatic_semicolon] = ACTIONS(4299), - [sym_safe_nav] = ACTIONS(4299), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4299), + [865] = { + [sym__alpha_identifier] = ACTIONS(4345), + [anon_sym_AT] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4345), + [anon_sym_EQ] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4347), + [anon_sym_RBRACE] = ACTIONS(4347), + [anon_sym_LPAREN] = ACTIONS(4347), + [anon_sym_COMMA] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_where] = ACTIONS(4345), + [anon_sym_object] = ACTIONS(4345), + [anon_sym_fun] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_SEMI] = ACTIONS(4347), + [anon_sym_get] = ACTIONS(4345), + [anon_sym_set] = ACTIONS(4345), + [anon_sym_this] = ACTIONS(4345), + [anon_sym_super] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [sym_label] = ACTIONS(4345), + [anon_sym_in] = ACTIONS(4345), + [anon_sym_DOT_DOT] = ACTIONS(4347), + [anon_sym_QMARK_COLON] = ACTIONS(4347), + [anon_sym_AMP_AMP] = ACTIONS(4347), + [anon_sym_PIPE_PIPE] = ACTIONS(4347), + [anon_sym_null] = ACTIONS(4345), + [anon_sym_if] = ACTIONS(4345), + [anon_sym_else] = ACTIONS(4345), + [anon_sym_when] = ACTIONS(4345), + [anon_sym_try] = ACTIONS(4345), + [anon_sym_catch] = ACTIONS(4345), + [anon_sym_finally] = ACTIONS(4345), + [anon_sym_throw] = ACTIONS(4345), + [anon_sym_return] = ACTIONS(4345), + [anon_sym_continue] = ACTIONS(4345), + [anon_sym_break] = ACTIONS(4345), + [anon_sym_COLON_COLON] = ACTIONS(4347), + [anon_sym_PLUS_EQ] = ACTIONS(4347), + [anon_sym_DASH_EQ] = ACTIONS(4347), + [anon_sym_STAR_EQ] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [anon_sym_PERCENT_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_BANGin] = ACTIONS(4347), + [anon_sym_is] = ACTIONS(4345), + [anon_sym_BANGis] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4345), + [anon_sym_DASH] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4345), + [anon_sym_as_QMARK] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4347), + [anon_sym_DASH_DASH] = ACTIONS(4347), + [anon_sym_BANG] = ACTIONS(4345), + [anon_sym_BANG_BANG] = ACTIONS(4347), + [anon_sym_suspend] = ACTIONS(4345), + [anon_sym_sealed] = ACTIONS(4345), + [anon_sym_annotation] = ACTIONS(4345), + [anon_sym_data] = ACTIONS(4345), + [anon_sym_inner] = ACTIONS(4345), + [anon_sym_value] = ACTIONS(4345), + [anon_sym_override] = ACTIONS(4345), + [anon_sym_lateinit] = ACTIONS(4345), + [anon_sym_public] = ACTIONS(4345), + [anon_sym_private] = ACTIONS(4345), + [anon_sym_internal] = ACTIONS(4345), + [anon_sym_protected] = ACTIONS(4345), + [anon_sym_tailrec] = ACTIONS(4345), + [anon_sym_operator] = ACTIONS(4345), + [anon_sym_infix] = ACTIONS(4345), + [anon_sym_inline] = ACTIONS(4345), + [anon_sym_external] = ACTIONS(4345), + [sym_property_modifier] = ACTIONS(4345), + [anon_sym_abstract] = ACTIONS(4345), + [anon_sym_final] = ACTIONS(4345), + [anon_sym_open] = ACTIONS(4345), + [anon_sym_vararg] = ACTIONS(4345), + [anon_sym_noinline] = ACTIONS(4345), + [anon_sym_crossinline] = ACTIONS(4345), + [anon_sym_expect] = ACTIONS(4345), + [anon_sym_actual] = ACTIONS(4345), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4347), + [anon_sym_continue_AT] = ACTIONS(4347), + [anon_sym_break_AT] = ACTIONS(4347), + [anon_sym_this_AT] = ACTIONS(4347), + [anon_sym_super_AT] = ACTIONS(4347), + [sym_real_literal] = ACTIONS(4347), + [sym_integer_literal] = ACTIONS(4345), + [sym_hex_literal] = ACTIONS(4347), + [sym_bin_literal] = ACTIONS(4347), + [anon_sym_true] = ACTIONS(4345), + [anon_sym_false] = ACTIONS(4345), + [anon_sym_SQUOTE] = ACTIONS(4347), + [sym__backtick_identifier] = ACTIONS(4347), + [sym__automatic_semicolon] = ACTIONS(4347), + [sym_safe_nav] = ACTIONS(4347), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4347), }, - [875] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_RBRACK] = ACTIONS(4353), + [866] = { + [sym__alpha_identifier] = ACTIONS(4122), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_COLON] = ACTIONS(4126), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_as] = ACTIONS(4122), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_RBRACE] = ACTIONS(4124), + [anon_sym_LPAREN] = ACTIONS(4124), + [anon_sym_COMMA] = ACTIONS(4124), + [anon_sym_by] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4122), + [anon_sym_where] = ACTIONS(4122), + [anon_sym_object] = ACTIONS(4122), + [anon_sym_fun] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym_get] = ACTIONS(4122), + [anon_sym_set] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_super] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4122), + [anon_sym_DOT_DOT] = ACTIONS(4124), + [anon_sym_QMARK_COLON] = ACTIONS(4124), + [anon_sym_AMP_AMP] = ACTIONS(4124), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_null] = ACTIONS(4122), + [anon_sym_if] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4122), + [anon_sym_when] = ACTIONS(4122), + [anon_sym_try] = ACTIONS(4122), + [anon_sym_throw] = ACTIONS(4122), + [anon_sym_return] = ACTIONS(4122), + [anon_sym_continue] = ACTIONS(4122), + [anon_sym_break] = ACTIONS(4122), + [anon_sym_COLON_COLON] = ACTIONS(4124), + [anon_sym_PLUS_EQ] = ACTIONS(4124), + [anon_sym_DASH_EQ] = ACTIONS(4124), + [anon_sym_STAR_EQ] = ACTIONS(4124), + [anon_sym_SLASH_EQ] = ACTIONS(4124), + [anon_sym_PERCENT_EQ] = ACTIONS(4124), + [anon_sym_BANG_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), + [anon_sym_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), + [anon_sym_LT_EQ] = ACTIONS(4124), + [anon_sym_GT_EQ] = ACTIONS(4124), + [anon_sym_BANGin] = ACTIONS(4124), + [anon_sym_is] = ACTIONS(4122), + [anon_sym_BANGis] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_SLASH] = ACTIONS(4122), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4124), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4124), + [anon_sym_suspend] = ACTIONS(4122), + [anon_sym_sealed] = ACTIONS(4122), + [anon_sym_annotation] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4122), + [anon_sym_inner] = ACTIONS(4122), + [anon_sym_value] = ACTIONS(4122), + [anon_sym_override] = ACTIONS(4122), + [anon_sym_lateinit] = ACTIONS(4122), + [anon_sym_public] = ACTIONS(4122), + [anon_sym_private] = ACTIONS(4122), + [anon_sym_internal] = ACTIONS(4122), + [anon_sym_protected] = ACTIONS(4122), + [anon_sym_tailrec] = ACTIONS(4122), + [anon_sym_operator] = ACTIONS(4122), + [anon_sym_infix] = ACTIONS(4122), + [anon_sym_inline] = ACTIONS(4122), + [anon_sym_external] = ACTIONS(4122), + [sym_property_modifier] = ACTIONS(4122), + [anon_sym_abstract] = ACTIONS(4122), + [anon_sym_final] = ACTIONS(4122), + [anon_sym_open] = ACTIONS(4122), + [anon_sym_vararg] = ACTIONS(4122), + [anon_sym_noinline] = ACTIONS(4122), + [anon_sym_crossinline] = ACTIONS(4122), + [anon_sym_expect] = ACTIONS(4122), + [anon_sym_actual] = ACTIONS(4122), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4124), + [anon_sym_continue_AT] = ACTIONS(4124), + [anon_sym_break_AT] = ACTIONS(4124), + [anon_sym_this_AT] = ACTIONS(4124), + [anon_sym_super_AT] = ACTIONS(4124), + [sym_real_literal] = ACTIONS(4124), + [sym_integer_literal] = ACTIONS(4122), + [sym_hex_literal] = ACTIONS(4124), + [sym_bin_literal] = ACTIONS(4124), + [anon_sym_true] = ACTIONS(4122), + [anon_sym_false] = ACTIONS(4122), + [anon_sym_SQUOTE] = ACTIONS(4124), + [sym__backtick_identifier] = ACTIONS(4124), + [sym__automatic_semicolon] = ACTIONS(4124), + [sym_safe_nav] = ACTIONS(4124), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4124), + }, + [867] = { + [sym_class_body] = STATE(1137), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), + }, + [868] = { + [sym_class_body] = STATE(1172), + [sym_type_constraints] = STATE(955), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), [anon_sym_as] = ACTIONS(4355), [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4357), [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RPAREN] = ACTIONS(4353), + [anon_sym_COMMA] = ACTIONS(4357), [anon_sym_LT] = ACTIONS(4355), [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4355), + [anon_sym_fun] = ACTIONS(4355), [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4347), - [anon_sym_DASH_GT] = ACTIONS(4353), - [sym_label] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_this] = ACTIONS(4355), + [anon_sym_super] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), [anon_sym_in] = ACTIONS(4355), - [anon_sym_while] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_null] = ACTIONS(4355), + [anon_sym_if] = ACTIONS(4355), [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), + [anon_sym_when] = ACTIONS(4355), + [anon_sym_try] = ACTIONS(4355), + [anon_sym_throw] = ACTIONS(4355), + [anon_sym_return] = ACTIONS(4355), + [anon_sym_continue] = ACTIONS(4355), + [anon_sym_break] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), [anon_sym_SLASH] = ACTIONS(4355), [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4357), [anon_sym_suspend] = ACTIONS(4355), [anon_sym_sealed] = ACTIONS(4355), [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), [anon_sym_override] = ACTIONS(4355), [anon_sym_lateinit] = ACTIONS(4355), [anon_sym_public] = ACTIONS(4355), @@ -152181,1078 +150488,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(4355), [anon_sym_noinline] = ACTIONS(4355), [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [876] = { - [sym_type_constraints] = STATE(1192), - [sym_function_body] = STATE(1087), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(4361), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), - }, - [877] = { - [aux_sym_nullable_type_repeat1] = STATE(846), - [sym__alpha_identifier] = ACTIONS(4363), - [anon_sym_AT] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_as] = ACTIONS(4363), - [anon_sym_EQ] = ACTIONS(4363), - [anon_sym_fun] = ACTIONS(4363), - [anon_sym_LBRACE] = ACTIONS(4365), - [anon_sym_RBRACE] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_COMMA] = ACTIONS(4365), - [anon_sym_by] = ACTIONS(4363), - [anon_sym_LT] = ACTIONS(4363), - [anon_sym_GT] = ACTIONS(4363), - [anon_sym_where] = ACTIONS(4363), - [anon_sym_object] = ACTIONS(4363), - [anon_sym_DOT] = ACTIONS(4363), - [anon_sym_SEMI] = ACTIONS(4365), - [anon_sym_get] = ACTIONS(4363), - [anon_sym_set] = ACTIONS(4363), - [anon_sym_this] = ACTIONS(4363), - [anon_sym_super] = ACTIONS(4363), - [sym__quest] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4363), - [sym_label] = ACTIONS(4363), - [anon_sym_in] = ACTIONS(4363), - [anon_sym_DOT_DOT] = ACTIONS(4365), - [anon_sym_QMARK_COLON] = ACTIONS(4365), - [anon_sym_AMP_AMP] = ACTIONS(4365), - [anon_sym_PIPE_PIPE] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4363), - [anon_sym_if] = ACTIONS(4363), - [anon_sym_else] = ACTIONS(4363), - [anon_sym_when] = ACTIONS(4363), - [anon_sym_try] = ACTIONS(4363), - [anon_sym_throw] = ACTIONS(4363), - [anon_sym_return] = ACTIONS(4363), - [anon_sym_continue] = ACTIONS(4363), - [anon_sym_break] = ACTIONS(4363), - [anon_sym_COLON_COLON] = ACTIONS(4365), - [anon_sym_PLUS_EQ] = ACTIONS(4365), - [anon_sym_DASH_EQ] = ACTIONS(4365), - [anon_sym_STAR_EQ] = ACTIONS(4365), - [anon_sym_SLASH_EQ] = ACTIONS(4365), - [anon_sym_PERCENT_EQ] = ACTIONS(4365), - [anon_sym_BANG_EQ] = ACTIONS(4363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), - [anon_sym_EQ_EQ] = ACTIONS(4363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), - [anon_sym_LT_EQ] = ACTIONS(4365), - [anon_sym_GT_EQ] = ACTIONS(4365), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(4363), - [anon_sym_BANGis] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4363), - [anon_sym_DASH] = ACTIONS(4363), - [anon_sym_SLASH] = ACTIONS(4363), - [anon_sym_PERCENT] = ACTIONS(4363), - [anon_sym_as_QMARK] = ACTIONS(4365), - [anon_sym_PLUS_PLUS] = ACTIONS(4365), - [anon_sym_DASH_DASH] = ACTIONS(4365), - [anon_sym_BANG] = ACTIONS(4363), - [anon_sym_BANG_BANG] = ACTIONS(4365), - [anon_sym_suspend] = ACTIONS(4363), - [anon_sym_sealed] = ACTIONS(4363), - [anon_sym_annotation] = ACTIONS(4363), - [anon_sym_data] = ACTIONS(4363), - [anon_sym_inner] = ACTIONS(4363), - [anon_sym_value] = ACTIONS(4363), - [anon_sym_override] = ACTIONS(4363), - [anon_sym_lateinit] = ACTIONS(4363), - [anon_sym_public] = ACTIONS(4363), - [anon_sym_private] = ACTIONS(4363), - [anon_sym_internal] = ACTIONS(4363), - [anon_sym_protected] = ACTIONS(4363), - [anon_sym_tailrec] = ACTIONS(4363), - [anon_sym_operator] = ACTIONS(4363), - [anon_sym_infix] = ACTIONS(4363), - [anon_sym_inline] = ACTIONS(4363), - [anon_sym_external] = ACTIONS(4363), - [sym_property_modifier] = ACTIONS(4363), - [anon_sym_abstract] = ACTIONS(4363), - [anon_sym_final] = ACTIONS(4363), - [anon_sym_open] = ACTIONS(4363), - [anon_sym_vararg] = ACTIONS(4363), - [anon_sym_noinline] = ACTIONS(4363), - [anon_sym_crossinline] = ACTIONS(4363), - [anon_sym_expect] = ACTIONS(4363), - [anon_sym_actual] = ACTIONS(4363), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4365), - [anon_sym_continue_AT] = ACTIONS(4365), - [anon_sym_break_AT] = ACTIONS(4365), - [anon_sym_this_AT] = ACTIONS(4365), - [anon_sym_super_AT] = ACTIONS(4365), - [sym_real_literal] = ACTIONS(4365), - [sym_integer_literal] = ACTIONS(4363), - [sym_hex_literal] = ACTIONS(4365), - [sym_bin_literal] = ACTIONS(4365), - [anon_sym_true] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_SQUOTE] = ACTIONS(4365), - [sym__backtick_identifier] = ACTIONS(4365), - [sym__automatic_semicolon] = ACTIONS(4365), - [sym_safe_nav] = ACTIONS(4365), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4365), - }, - [878] = { - [sym_type_constraints] = STATE(1188), - [sym_function_body] = STATE(1153), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(4369), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4183), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_PLUS_EQ] = ACTIONS(4185), - [anon_sym_DASH_EQ] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4185), - [anon_sym_SLASH_EQ] = ACTIONS(4185), - [anon_sym_PERCENT_EQ] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4183), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [anon_sym_return_AT] = ACTIONS(4357), + [anon_sym_continue_AT] = ACTIONS(4357), + [anon_sym_break_AT] = ACTIONS(4357), + [anon_sym_this_AT] = ACTIONS(4357), + [anon_sym_super_AT] = ACTIONS(4357), + [sym_real_literal] = ACTIONS(4357), + [sym_integer_literal] = ACTIONS(4355), + [sym_hex_literal] = ACTIONS(4357), + [sym_bin_literal] = ACTIONS(4357), + [anon_sym_true] = ACTIONS(4355), + [anon_sym_false] = ACTIONS(4355), + [anon_sym_SQUOTE] = ACTIONS(4357), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), + [sym__string_start] = ACTIONS(4357), }, - [879] = { - [sym_type_constraints] = STATE(1035), - [sym_enum_class_body] = STATE(1127), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(4371), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), + [869] = { + [sym_class_body] = STATE(1140), + [sym_type_constraints] = STATE(966), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, - [880] = { - [sym__alpha_identifier] = ACTIONS(4373), - [anon_sym_AT] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_as] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_fun] = ACTIONS(4373), - [anon_sym_LBRACE] = ACTIONS(4375), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_where] = ACTIONS(4373), - [anon_sym_object] = ACTIONS(4373), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_get] = ACTIONS(4373), - [anon_sym_set] = ACTIONS(4373), - [anon_sym_this] = ACTIONS(4373), - [anon_sym_super] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4373), - [sym_label] = ACTIONS(4373), + [870] = { + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4367), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), [anon_sym_in] = ACTIONS(4373), [anon_sym_DOT_DOT] = ACTIONS(4375), - [anon_sym_QMARK_COLON] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_null] = ACTIONS(4373), - [anon_sym_if] = ACTIONS(4373), - [anon_sym_else] = ACTIONS(4373), - [anon_sym_when] = ACTIONS(4373), - [anon_sym_try] = ACTIONS(4373), - [anon_sym_catch] = ACTIONS(4373), - [anon_sym_finally] = ACTIONS(4373), - [anon_sym_throw] = ACTIONS(4373), - [anon_sym_return] = ACTIONS(4373), - [anon_sym_continue] = ACTIONS(4373), - [anon_sym_break] = ACTIONS(4373), - [anon_sym_COLON_COLON] = ACTIONS(4375), - [anon_sym_PLUS_EQ] = ACTIONS(4375), - [anon_sym_DASH_EQ] = ACTIONS(4375), - [anon_sym_STAR_EQ] = ACTIONS(4375), - [anon_sym_SLASH_EQ] = ACTIONS(4375), - [anon_sym_PERCENT_EQ] = ACTIONS(4375), - [anon_sym_BANG_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4375), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_BANGin] = ACTIONS(4375), - [anon_sym_is] = ACTIONS(4373), - [anon_sym_BANGis] = ACTIONS(4375), - [anon_sym_PLUS] = ACTIONS(4373), - [anon_sym_DASH] = ACTIONS(4373), - [anon_sym_SLASH] = ACTIONS(4373), - [anon_sym_PERCENT] = ACTIONS(4373), - [anon_sym_as_QMARK] = ACTIONS(4375), - [anon_sym_PLUS_PLUS] = ACTIONS(4375), - [anon_sym_DASH_DASH] = ACTIONS(4375), - [anon_sym_BANG] = ACTIONS(4373), - [anon_sym_BANG_BANG] = ACTIONS(4375), - [anon_sym_suspend] = ACTIONS(4373), - [anon_sym_sealed] = ACTIONS(4373), - [anon_sym_annotation] = ACTIONS(4373), - [anon_sym_data] = ACTIONS(4373), - [anon_sym_inner] = ACTIONS(4373), - [anon_sym_value] = ACTIONS(4373), - [anon_sym_override] = ACTIONS(4373), - [anon_sym_lateinit] = ACTIONS(4373), - [anon_sym_public] = ACTIONS(4373), - [anon_sym_private] = ACTIONS(4373), - [anon_sym_internal] = ACTIONS(4373), - [anon_sym_protected] = ACTIONS(4373), - [anon_sym_tailrec] = ACTIONS(4373), - [anon_sym_operator] = ACTIONS(4373), - [anon_sym_infix] = ACTIONS(4373), - [anon_sym_inline] = ACTIONS(4373), - [anon_sym_external] = ACTIONS(4373), - [sym_property_modifier] = ACTIONS(4373), - [anon_sym_abstract] = ACTIONS(4373), - [anon_sym_final] = ACTIONS(4373), - [anon_sym_open] = ACTIONS(4373), - [anon_sym_vararg] = ACTIONS(4373), - [anon_sym_noinline] = ACTIONS(4373), - [anon_sym_crossinline] = ACTIONS(4373), - [anon_sym_expect] = ACTIONS(4373), - [anon_sym_actual] = ACTIONS(4373), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4375), - [anon_sym_continue_AT] = ACTIONS(4375), - [anon_sym_break_AT] = ACTIONS(4375), - [anon_sym_this_AT] = ACTIONS(4375), - [anon_sym_super_AT] = ACTIONS(4375), - [sym_real_literal] = ACTIONS(4375), - [sym_integer_literal] = ACTIONS(4373), - [sym_hex_literal] = ACTIONS(4375), - [sym_bin_literal] = ACTIONS(4375), - [anon_sym_true] = ACTIONS(4373), - [anon_sym_false] = ACTIONS(4373), - [anon_sym_SQUOTE] = ACTIONS(4375), - [sym__backtick_identifier] = ACTIONS(4375), - [sym__automatic_semicolon] = ACTIONS(4375), - [sym_safe_nav] = ACTIONS(4375), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4375), - }, - [881] = { - [sym_function_body] = STATE(1197), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), - }, - [882] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), + [anon_sym_QMARK_COLON] = ACTIONS(4377), [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_catch] = ACTIONS(4377), - [anon_sym_finally] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), - }, - [883] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4381), - [anon_sym_fun] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_GT] = ACTIONS(4381), - [anon_sym_where] = ACTIONS(4381), - [anon_sym_object] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_this] = ACTIONS(4381), - [anon_sym_super] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [sym_label] = ACTIONS(4381), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_QMARK_COLON] = ACTIONS(4383), - [anon_sym_AMP_AMP] = ACTIONS(4383), - [anon_sym_PIPE_PIPE] = ACTIONS(4383), - [anon_sym_null] = ACTIONS(4381), - [anon_sym_if] = ACTIONS(4381), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_when] = ACTIONS(4381), - [anon_sym_try] = ACTIONS(4381), - [anon_sym_catch] = ACTIONS(4381), - [anon_sym_finally] = ACTIONS(4381), - [anon_sym_throw] = ACTIONS(4381), - [anon_sym_return] = ACTIONS(4381), - [anon_sym_continue] = ACTIONS(4381), - [anon_sym_break] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4383), - [anon_sym_DASH_EQ] = ACTIONS(4383), - [anon_sym_STAR_EQ] = ACTIONS(4383), - [anon_sym_SLASH_EQ] = ACTIONS(4383), - [anon_sym_PERCENT_EQ] = ACTIONS(4383), - [anon_sym_BANG_EQ] = ACTIONS(4381), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), - [anon_sym_EQ_EQ] = ACTIONS(4381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), - [anon_sym_LT_EQ] = ACTIONS(4383), - [anon_sym_GT_EQ] = ACTIONS(4383), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_as_QMARK] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG] = ACTIONS(4381), - [anon_sym_BANG_BANG] = ACTIONS(4383), - [anon_sym_suspend] = ACTIONS(4381), - [anon_sym_sealed] = ACTIONS(4381), - [anon_sym_annotation] = ACTIONS(4381), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_override] = ACTIONS(4381), - [anon_sym_lateinit] = ACTIONS(4381), - [anon_sym_public] = ACTIONS(4381), - [anon_sym_private] = ACTIONS(4381), - [anon_sym_internal] = ACTIONS(4381), - [anon_sym_protected] = ACTIONS(4381), - [anon_sym_tailrec] = ACTIONS(4381), - [anon_sym_operator] = ACTIONS(4381), - [anon_sym_infix] = ACTIONS(4381), - [anon_sym_inline] = ACTIONS(4381), - [anon_sym_external] = ACTIONS(4381), - [sym_property_modifier] = ACTIONS(4381), - [anon_sym_abstract] = ACTIONS(4381), - [anon_sym_final] = ACTIONS(4381), - [anon_sym_open] = ACTIONS(4381), - [anon_sym_vararg] = ACTIONS(4381), - [anon_sym_noinline] = ACTIONS(4381), - [anon_sym_crossinline] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4383), - [anon_sym_continue_AT] = ACTIONS(4383), - [anon_sym_break_AT] = ACTIONS(4383), - [anon_sym_this_AT] = ACTIONS(4383), - [anon_sym_super_AT] = ACTIONS(4383), - [sym_real_literal] = ACTIONS(4383), - [sym_integer_literal] = ACTIONS(4381), - [sym_hex_literal] = ACTIONS(4383), - [sym_bin_literal] = ACTIONS(4383), - [anon_sym_true] = ACTIONS(4381), - [anon_sym_false] = ACTIONS(4381), - [anon_sym_SQUOTE] = ACTIONS(4383), - [sym__backtick_identifier] = ACTIONS(4383), - [sym__automatic_semicolon] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4383), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4383), - }, - [884] = { - [sym_type_constraints] = STATE(953), - [sym_enum_class_body] = STATE(1187), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), [anon_sym_LT_EQ] = ACTIONS(4387), [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [885] = { - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [871] = { + [sym_type_constraints] = STATE(935), + [sym_enum_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [872] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_COMMA] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4363), [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4391), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4367), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -153282,85 +150938,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3714), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [886] = { - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [873] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_get] = ACTIONS(4399), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -153389,518 +151045,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [887] = { - [sym_class_body] = STATE(1187), - [sym_type_constraints] = STATE(952), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), - }, - [888] = { - [sym__alpha_identifier] = ACTIONS(4219), - [anon_sym_AT] = ACTIONS(4221), - [anon_sym_COLON] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4221), - [anon_sym_as] = ACTIONS(4219), - [anon_sym_EQ] = ACTIONS(4219), - [anon_sym_fun] = ACTIONS(4219), - [anon_sym_LBRACE] = ACTIONS(4221), - [anon_sym_RBRACE] = ACTIONS(4221), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_COMMA] = ACTIONS(4221), - [anon_sym_by] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4219), - [anon_sym_GT] = ACTIONS(4219), - [anon_sym_where] = ACTIONS(4219), - [anon_sym_object] = ACTIONS(4219), - [anon_sym_DOT] = ACTIONS(4219), - [anon_sym_SEMI] = ACTIONS(4221), - [anon_sym_get] = ACTIONS(4219), - [anon_sym_set] = ACTIONS(4219), - [anon_sym_this] = ACTIONS(4219), - [anon_sym_super] = ACTIONS(4219), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4219), - [anon_sym_DOT_DOT] = ACTIONS(4221), - [anon_sym_QMARK_COLON] = ACTIONS(4221), - [anon_sym_AMP_AMP] = ACTIONS(4221), - [anon_sym_PIPE_PIPE] = ACTIONS(4221), - [anon_sym_null] = ACTIONS(4219), - [anon_sym_if] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4219), - [anon_sym_when] = ACTIONS(4219), - [anon_sym_try] = ACTIONS(4219), - [anon_sym_throw] = ACTIONS(4219), - [anon_sym_return] = ACTIONS(4219), - [anon_sym_continue] = ACTIONS(4219), - [anon_sym_break] = ACTIONS(4219), - [anon_sym_COLON_COLON] = ACTIONS(4221), - [anon_sym_PLUS_EQ] = ACTIONS(4221), - [anon_sym_DASH_EQ] = ACTIONS(4221), - [anon_sym_STAR_EQ] = ACTIONS(4221), - [anon_sym_SLASH_EQ] = ACTIONS(4221), - [anon_sym_PERCENT_EQ] = ACTIONS(4221), - [anon_sym_BANG_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4221), - [anon_sym_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4221), - [anon_sym_LT_EQ] = ACTIONS(4221), - [anon_sym_GT_EQ] = ACTIONS(4221), - [anon_sym_BANGin] = ACTIONS(4221), - [anon_sym_is] = ACTIONS(4219), - [anon_sym_BANGis] = ACTIONS(4221), - [anon_sym_PLUS] = ACTIONS(4219), - [anon_sym_DASH] = ACTIONS(4219), - [anon_sym_SLASH] = ACTIONS(4219), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4221), - [anon_sym_PLUS_PLUS] = ACTIONS(4221), - [anon_sym_DASH_DASH] = ACTIONS(4221), - [anon_sym_BANG] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4221), - [anon_sym_suspend] = ACTIONS(4219), - [anon_sym_sealed] = ACTIONS(4219), - [anon_sym_annotation] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4219), - [anon_sym_inner] = ACTIONS(4219), - [anon_sym_value] = ACTIONS(4219), - [anon_sym_override] = ACTIONS(4219), - [anon_sym_lateinit] = ACTIONS(4219), - [anon_sym_public] = ACTIONS(4219), - [anon_sym_private] = ACTIONS(4219), - [anon_sym_internal] = ACTIONS(4219), - [anon_sym_protected] = ACTIONS(4219), - [anon_sym_tailrec] = ACTIONS(4219), - [anon_sym_operator] = ACTIONS(4219), - [anon_sym_infix] = ACTIONS(4219), - [anon_sym_inline] = ACTIONS(4219), - [anon_sym_external] = ACTIONS(4219), - [sym_property_modifier] = ACTIONS(4219), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_final] = ACTIONS(4219), - [anon_sym_open] = ACTIONS(4219), - [anon_sym_vararg] = ACTIONS(4219), - [anon_sym_noinline] = ACTIONS(4219), - [anon_sym_crossinline] = ACTIONS(4219), - [anon_sym_expect] = ACTIONS(4219), - [anon_sym_actual] = ACTIONS(4219), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4221), - [anon_sym_continue_AT] = ACTIONS(4221), - [anon_sym_break_AT] = ACTIONS(4221), - [anon_sym_this_AT] = ACTIONS(4221), - [anon_sym_super_AT] = ACTIONS(4221), - [sym_real_literal] = ACTIONS(4221), - [sym_integer_literal] = ACTIONS(4219), - [sym_hex_literal] = ACTIONS(4221), - [sym_bin_literal] = ACTIONS(4221), - [anon_sym_true] = ACTIONS(4219), - [anon_sym_false] = ACTIONS(4219), - [anon_sym_SQUOTE] = ACTIONS(4221), - [sym__backtick_identifier] = ACTIONS(4221), - [sym__automatic_semicolon] = ACTIONS(4221), - [sym_safe_nav] = ACTIONS(4221), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4221), - }, - [889] = { - [sym_type_constraints] = STATE(985), - [sym_enum_class_body] = STATE(1084), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), - }, - [890] = { - [sym_class_body] = STATE(1207), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), - }, - [891] = { - [sym_getter] = STATE(4045), - [sym_setter] = STATE(4045), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [874] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_COMMA] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4363), [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4433), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4399), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -153930,193 +151154,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3714), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [892] = { - [sym_value_arguments] = STATE(1103), - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_fun] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(4439), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_object] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_this] = ACTIONS(4435), - [anon_sym_super] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4435), - [sym_label] = ACTIONS(4435), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_null] = ACTIONS(4435), - [anon_sym_if] = ACTIONS(4435), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_when] = ACTIONS(4435), - [anon_sym_try] = ACTIONS(4435), - [anon_sym_throw] = ACTIONS(4435), - [anon_sym_return] = ACTIONS(4435), - [anon_sym_continue] = ACTIONS(4435), - [anon_sym_break] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_PLUS_EQ] = ACTIONS(4437), - [anon_sym_DASH_EQ] = ACTIONS(4437), - [anon_sym_STAR_EQ] = ACTIONS(4437), - [anon_sym_SLASH_EQ] = ACTIONS(4437), - [anon_sym_PERCENT_EQ] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4435), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4435), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_suspend] = ACTIONS(4435), - [anon_sym_sealed] = ACTIONS(4435), - [anon_sym_annotation] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_override] = ACTIONS(4435), - [anon_sym_lateinit] = ACTIONS(4435), - [anon_sym_public] = ACTIONS(4435), - [anon_sym_private] = ACTIONS(4435), - [anon_sym_internal] = ACTIONS(4435), - [anon_sym_protected] = ACTIONS(4435), - [anon_sym_tailrec] = ACTIONS(4435), - [anon_sym_operator] = ACTIONS(4435), - [anon_sym_infix] = ACTIONS(4435), - [anon_sym_inline] = ACTIONS(4435), - [anon_sym_external] = ACTIONS(4435), - [sym_property_modifier] = ACTIONS(4435), - [anon_sym_abstract] = ACTIONS(4435), - [anon_sym_final] = ACTIONS(4435), - [anon_sym_open] = ACTIONS(4435), - [anon_sym_vararg] = ACTIONS(4435), - [anon_sym_noinline] = ACTIONS(4435), - [anon_sym_crossinline] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4437), - [anon_sym_continue_AT] = ACTIONS(4437), - [anon_sym_break_AT] = ACTIONS(4437), - [anon_sym_this_AT] = ACTIONS(4437), - [anon_sym_super_AT] = ACTIONS(4437), - [sym_real_literal] = ACTIONS(4437), - [sym_integer_literal] = ACTIONS(4435), - [sym_hex_literal] = ACTIONS(4437), - [sym_bin_literal] = ACTIONS(4437), - [anon_sym_true] = ACTIONS(4435), - [anon_sym_false] = ACTIONS(4435), - [anon_sym_SQUOTE] = ACTIONS(4437), - [sym__backtick_identifier] = ACTIONS(4437), - [sym__automatic_semicolon] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4437), - }, - [893] = { - [sym_getter] = STATE(4022), - [sym_setter] = STATE(4022), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [875] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4441), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4367), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -154145,4730 +151261,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [894] = { - [sym_class_body] = STATE(1132), - [sym__alpha_identifier] = ACTIONS(4443), - [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_as] = ACTIONS(4443), - [anon_sym_EQ] = ACTIONS(4443), - [anon_sym_fun] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4443), - [anon_sym_GT] = ACTIONS(4443), - [anon_sym_where] = ACTIONS(4443), - [anon_sym_object] = ACTIONS(4443), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4445), - [anon_sym_get] = ACTIONS(4443), - [anon_sym_set] = ACTIONS(4443), - [anon_sym_this] = ACTIONS(4443), - [anon_sym_super] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4443), - [sym_label] = ACTIONS(4443), - [anon_sym_in] = ACTIONS(4443), - [anon_sym_DOT_DOT] = ACTIONS(4445), - [anon_sym_QMARK_COLON] = ACTIONS(4445), - [anon_sym_AMP_AMP] = ACTIONS(4445), - [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), - [anon_sym_if] = ACTIONS(4443), - [anon_sym_else] = ACTIONS(4443), - [anon_sym_when] = ACTIONS(4443), - [anon_sym_try] = ACTIONS(4443), - [anon_sym_throw] = ACTIONS(4443), - [anon_sym_return] = ACTIONS(4443), - [anon_sym_continue] = ACTIONS(4443), - [anon_sym_break] = ACTIONS(4443), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_PLUS_EQ] = ACTIONS(4445), - [anon_sym_DASH_EQ] = ACTIONS(4445), - [anon_sym_STAR_EQ] = ACTIONS(4445), - [anon_sym_SLASH_EQ] = ACTIONS(4445), - [anon_sym_PERCENT_EQ] = ACTIONS(4445), - [anon_sym_BANG_EQ] = ACTIONS(4443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), - [anon_sym_EQ_EQ] = ACTIONS(4443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), - [anon_sym_LT_EQ] = ACTIONS(4445), - [anon_sym_GT_EQ] = ACTIONS(4445), - [anon_sym_BANGin] = ACTIONS(4445), - [anon_sym_is] = ACTIONS(4443), - [anon_sym_BANGis] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_SLASH] = ACTIONS(4443), - [anon_sym_PERCENT] = ACTIONS(4443), - [anon_sym_as_QMARK] = ACTIONS(4445), - [anon_sym_PLUS_PLUS] = ACTIONS(4445), - [anon_sym_DASH_DASH] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4443), - [anon_sym_BANG_BANG] = ACTIONS(4445), - [anon_sym_suspend] = ACTIONS(4443), - [anon_sym_sealed] = ACTIONS(4443), - [anon_sym_annotation] = ACTIONS(4443), - [anon_sym_data] = ACTIONS(4443), - [anon_sym_inner] = ACTIONS(4443), - [anon_sym_value] = ACTIONS(4443), - [anon_sym_override] = ACTIONS(4443), - [anon_sym_lateinit] = ACTIONS(4443), - [anon_sym_public] = ACTIONS(4443), - [anon_sym_private] = ACTIONS(4443), - [anon_sym_internal] = ACTIONS(4443), - [anon_sym_protected] = ACTIONS(4443), - [anon_sym_tailrec] = ACTIONS(4443), - [anon_sym_operator] = ACTIONS(4443), - [anon_sym_infix] = ACTIONS(4443), - [anon_sym_inline] = ACTIONS(4443), - [anon_sym_external] = ACTIONS(4443), - [sym_property_modifier] = ACTIONS(4443), - [anon_sym_abstract] = ACTIONS(4443), - [anon_sym_final] = ACTIONS(4443), - [anon_sym_open] = ACTIONS(4443), - [anon_sym_vararg] = ACTIONS(4443), - [anon_sym_noinline] = ACTIONS(4443), - [anon_sym_crossinline] = ACTIONS(4443), - [anon_sym_expect] = ACTIONS(4443), - [anon_sym_actual] = ACTIONS(4443), + [876] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_get] = ACTIONS(4399), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4445), - [anon_sym_continue_AT] = ACTIONS(4445), - [anon_sym_break_AT] = ACTIONS(4445), - [anon_sym_this_AT] = ACTIONS(4445), - [anon_sym_super_AT] = ACTIONS(4445), - [sym_real_literal] = ACTIONS(4445), - [sym_integer_literal] = ACTIONS(4443), - [sym_hex_literal] = ACTIONS(4445), - [sym_bin_literal] = ACTIONS(4445), - [anon_sym_true] = ACTIONS(4443), - [anon_sym_false] = ACTIONS(4443), - [anon_sym_SQUOTE] = ACTIONS(4445), - [sym__backtick_identifier] = ACTIONS(4445), - [sym__automatic_semicolon] = ACTIONS(4445), - [sym_safe_nav] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4445), }, - [895] = { - [sym__alpha_identifier] = ACTIONS(4449), - [anon_sym_AT] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [anon_sym_as] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(4449), - [anon_sym_fun] = ACTIONS(4449), - [anon_sym_LBRACE] = ACTIONS(4451), - [anon_sym_RBRACE] = ACTIONS(4451), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_COMMA] = ACTIONS(4451), - [anon_sym_LT] = ACTIONS(4449), - [anon_sym_GT] = ACTIONS(4449), - [anon_sym_where] = ACTIONS(4449), - [anon_sym_object] = ACTIONS(4449), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [anon_sym_get] = ACTIONS(4449), - [anon_sym_set] = ACTIONS(4449), - [anon_sym_this] = ACTIONS(4449), - [anon_sym_super] = ACTIONS(4449), - [anon_sym_STAR] = ACTIONS(4449), - [sym_label] = ACTIONS(4449), - [anon_sym_in] = ACTIONS(4449), - [anon_sym_DOT_DOT] = ACTIONS(4451), - [anon_sym_QMARK_COLON] = ACTIONS(4451), - [anon_sym_AMP_AMP] = ACTIONS(4451), - [anon_sym_PIPE_PIPE] = ACTIONS(4451), - [anon_sym_null] = ACTIONS(4449), - [anon_sym_if] = ACTIONS(4449), - [anon_sym_else] = ACTIONS(4449), - [anon_sym_when] = ACTIONS(4449), - [anon_sym_try] = ACTIONS(4449), - [anon_sym_catch] = ACTIONS(4449), - [anon_sym_finally] = ACTIONS(4449), - [anon_sym_throw] = ACTIONS(4449), - [anon_sym_return] = ACTIONS(4449), - [anon_sym_continue] = ACTIONS(4449), - [anon_sym_break] = ACTIONS(4449), - [anon_sym_COLON_COLON] = ACTIONS(4451), - [anon_sym_PLUS_EQ] = ACTIONS(4451), - [anon_sym_DASH_EQ] = ACTIONS(4451), - [anon_sym_STAR_EQ] = ACTIONS(4451), - [anon_sym_SLASH_EQ] = ACTIONS(4451), - [anon_sym_PERCENT_EQ] = ACTIONS(4451), - [anon_sym_BANG_EQ] = ACTIONS(4449), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4451), - [anon_sym_EQ_EQ] = ACTIONS(4449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4451), - [anon_sym_LT_EQ] = ACTIONS(4451), - [anon_sym_GT_EQ] = ACTIONS(4451), - [anon_sym_BANGin] = ACTIONS(4451), - [anon_sym_is] = ACTIONS(4449), - [anon_sym_BANGis] = ACTIONS(4451), - [anon_sym_PLUS] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_SLASH] = ACTIONS(4449), - [anon_sym_PERCENT] = ACTIONS(4449), - [anon_sym_as_QMARK] = ACTIONS(4451), - [anon_sym_PLUS_PLUS] = ACTIONS(4451), - [anon_sym_DASH_DASH] = ACTIONS(4451), - [anon_sym_BANG] = ACTIONS(4449), - [anon_sym_BANG_BANG] = ACTIONS(4451), - [anon_sym_suspend] = ACTIONS(4449), - [anon_sym_sealed] = ACTIONS(4449), - [anon_sym_annotation] = ACTIONS(4449), - [anon_sym_data] = ACTIONS(4449), - [anon_sym_inner] = ACTIONS(4449), - [anon_sym_value] = ACTIONS(4449), - [anon_sym_override] = ACTIONS(4449), - [anon_sym_lateinit] = ACTIONS(4449), - [anon_sym_public] = ACTIONS(4449), - [anon_sym_private] = ACTIONS(4449), - [anon_sym_internal] = ACTIONS(4449), - [anon_sym_protected] = ACTIONS(4449), - [anon_sym_tailrec] = ACTIONS(4449), - [anon_sym_operator] = ACTIONS(4449), - [anon_sym_infix] = ACTIONS(4449), - [anon_sym_inline] = ACTIONS(4449), - [anon_sym_external] = ACTIONS(4449), - [sym_property_modifier] = ACTIONS(4449), - [anon_sym_abstract] = ACTIONS(4449), - [anon_sym_final] = ACTIONS(4449), - [anon_sym_open] = ACTIONS(4449), - [anon_sym_vararg] = ACTIONS(4449), - [anon_sym_noinline] = ACTIONS(4449), - [anon_sym_crossinline] = ACTIONS(4449), - [anon_sym_expect] = ACTIONS(4449), - [anon_sym_actual] = ACTIONS(4449), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4451), - [anon_sym_continue_AT] = ACTIONS(4451), - [anon_sym_break_AT] = ACTIONS(4451), - [anon_sym_this_AT] = ACTIONS(4451), - [anon_sym_super_AT] = ACTIONS(4451), - [sym_real_literal] = ACTIONS(4451), - [sym_integer_literal] = ACTIONS(4449), - [sym_hex_literal] = ACTIONS(4451), - [sym_bin_literal] = ACTIONS(4451), - [anon_sym_true] = ACTIONS(4449), - [anon_sym_false] = ACTIONS(4449), - [anon_sym_SQUOTE] = ACTIONS(4451), - [sym__backtick_identifier] = ACTIONS(4451), - [sym__automatic_semicolon] = ACTIONS(4451), - [sym_safe_nav] = ACTIONS(4451), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4451), - }, - [896] = { - [sym_type_constraints] = STATE(1185), - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), + [877] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_constructor] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [897] = { - [sym_class_body] = STATE(1130), - [sym_type_constraints] = STATE(1011), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), - }, - [898] = { - [sym_function_body] = STATE(1199), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4453), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_where] = ACTIONS(4453), - [anon_sym_object] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_this] = ACTIONS(4453), - [anon_sym_super] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4453), - [sym_label] = ACTIONS(4453), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_null] = ACTIONS(4453), - [anon_sym_if] = ACTIONS(4453), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_when] = ACTIONS(4453), - [anon_sym_try] = ACTIONS(4453), - [anon_sym_throw] = ACTIONS(4453), - [anon_sym_return] = ACTIONS(4453), - [anon_sym_continue] = ACTIONS(4453), - [anon_sym_break] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_PLUS_EQ] = ACTIONS(4455), - [anon_sym_DASH_EQ] = ACTIONS(4455), - [anon_sym_STAR_EQ] = ACTIONS(4455), - [anon_sym_SLASH_EQ] = ACTIONS(4455), - [anon_sym_PERCENT_EQ] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4453), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4453), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_suspend] = ACTIONS(4453), - [anon_sym_sealed] = ACTIONS(4453), - [anon_sym_annotation] = ACTIONS(4453), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4453), - [anon_sym_lateinit] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_internal] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_tailrec] = ACTIONS(4453), - [anon_sym_operator] = ACTIONS(4453), - [anon_sym_infix] = ACTIONS(4453), - [anon_sym_inline] = ACTIONS(4453), - [anon_sym_external] = ACTIONS(4453), - [sym_property_modifier] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_open] = ACTIONS(4453), - [anon_sym_vararg] = ACTIONS(4453), - [anon_sym_noinline] = ACTIONS(4453), - [anon_sym_crossinline] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4455), - [anon_sym_continue_AT] = ACTIONS(4455), - [anon_sym_break_AT] = ACTIONS(4455), - [anon_sym_this_AT] = ACTIONS(4455), - [anon_sym_super_AT] = ACTIONS(4455), - [sym_real_literal] = ACTIONS(4455), - [sym_integer_literal] = ACTIONS(4453), - [sym_hex_literal] = ACTIONS(4455), - [sym_bin_literal] = ACTIONS(4455), - [anon_sym_true] = ACTIONS(4453), - [anon_sym_false] = ACTIONS(4453), - [anon_sym_SQUOTE] = ACTIONS(4455), - [sym__backtick_identifier] = ACTIONS(4455), - [sym__automatic_semicolon] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4455), - }, - [899] = { - [sym_function_body] = STATE(1189), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(4287), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), - }, - [900] = { - [sym_class_body] = STATE(1203), - [sym_type_constraints] = STATE(1034), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_fun] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4275), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_this] = ACTIONS(4275), - [anon_sym_super] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), - [sym_label] = ACTIONS(4275), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4275), - [anon_sym_if] = ACTIONS(4275), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_when] = ACTIONS(4275), - [anon_sym_try] = ACTIONS(4275), - [anon_sym_throw] = ACTIONS(4275), - [anon_sym_return] = ACTIONS(4275), - [anon_sym_continue] = ACTIONS(4275), - [anon_sym_break] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_PLUS_EQ] = ACTIONS(4277), - [anon_sym_DASH_EQ] = ACTIONS(4277), - [anon_sym_STAR_EQ] = ACTIONS(4277), - [anon_sym_SLASH_EQ] = ACTIONS(4277), - [anon_sym_PERCENT_EQ] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_suspend] = ACTIONS(4275), - [anon_sym_sealed] = ACTIONS(4275), - [anon_sym_annotation] = ACTIONS(4275), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_override] = ACTIONS(4275), - [anon_sym_lateinit] = ACTIONS(4275), - [anon_sym_public] = ACTIONS(4275), - [anon_sym_private] = ACTIONS(4275), - [anon_sym_internal] = ACTIONS(4275), - [anon_sym_protected] = ACTIONS(4275), - [anon_sym_tailrec] = ACTIONS(4275), - [anon_sym_operator] = ACTIONS(4275), - [anon_sym_infix] = ACTIONS(4275), - [anon_sym_inline] = ACTIONS(4275), - [anon_sym_external] = ACTIONS(4275), - [sym_property_modifier] = ACTIONS(4275), - [anon_sym_abstract] = ACTIONS(4275), - [anon_sym_final] = ACTIONS(4275), - [anon_sym_open] = ACTIONS(4275), - [anon_sym_vararg] = ACTIONS(4275), - [anon_sym_noinline] = ACTIONS(4275), - [anon_sym_crossinline] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4277), - [anon_sym_continue_AT] = ACTIONS(4277), - [anon_sym_break_AT] = ACTIONS(4277), - [anon_sym_this_AT] = ACTIONS(4277), - [anon_sym_super_AT] = ACTIONS(4277), - [sym_real_literal] = ACTIONS(4277), - [sym_integer_literal] = ACTIONS(4275), - [sym_hex_literal] = ACTIONS(4277), - [sym_bin_literal] = ACTIONS(4277), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [anon_sym_SQUOTE] = ACTIONS(4277), - [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), - }, - [901] = { - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), - }, - [902] = { - [sym_type_constraints] = STATE(1038), - [sym_enum_class_body] = STATE(1168), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_fun] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_this] = ACTIONS(4457), - [anon_sym_super] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [sym_label] = ACTIONS(4457), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_null] = ACTIONS(4457), - [anon_sym_if] = ACTIONS(4457), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_when] = ACTIONS(4457), - [anon_sym_try] = ACTIONS(4457), - [anon_sym_throw] = ACTIONS(4457), - [anon_sym_return] = ACTIONS(4457), - [anon_sym_continue] = ACTIONS(4457), - [anon_sym_break] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_suspend] = ACTIONS(4457), - [anon_sym_sealed] = ACTIONS(4457), - [anon_sym_annotation] = ACTIONS(4457), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_override] = ACTIONS(4457), - [anon_sym_lateinit] = ACTIONS(4457), - [anon_sym_public] = ACTIONS(4457), - [anon_sym_private] = ACTIONS(4457), - [anon_sym_internal] = ACTIONS(4457), - [anon_sym_protected] = ACTIONS(4457), - [anon_sym_tailrec] = ACTIONS(4457), - [anon_sym_operator] = ACTIONS(4457), - [anon_sym_infix] = ACTIONS(4457), - [anon_sym_inline] = ACTIONS(4457), - [anon_sym_external] = ACTIONS(4457), - [sym_property_modifier] = ACTIONS(4457), - [anon_sym_abstract] = ACTIONS(4457), - [anon_sym_final] = ACTIONS(4457), - [anon_sym_open] = ACTIONS(4457), - [anon_sym_vararg] = ACTIONS(4457), - [anon_sym_noinline] = ACTIONS(4457), - [anon_sym_crossinline] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4459), - [anon_sym_continue_AT] = ACTIONS(4459), - [anon_sym_break_AT] = ACTIONS(4459), - [anon_sym_this_AT] = ACTIONS(4459), - [anon_sym_super_AT] = ACTIONS(4459), - [sym_real_literal] = ACTIONS(4459), - [sym_integer_literal] = ACTIONS(4457), - [sym_hex_literal] = ACTIONS(4459), - [sym_bin_literal] = ACTIONS(4459), - [anon_sym_true] = ACTIONS(4457), - [anon_sym_false] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4459), - [sym__backtick_identifier] = ACTIONS(4459), - [sym__automatic_semicolon] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4459), - }, - [903] = { - [sym_class_body] = STATE(1136), - [sym_type_constraints] = STATE(1004), - [sym__alpha_identifier] = ACTIONS(4461), - [anon_sym_AT] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_as] = ACTIONS(4461), - [anon_sym_EQ] = ACTIONS(4461), - [anon_sym_fun] = ACTIONS(4461), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4461), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [anon_sym_get] = ACTIONS(4461), - [anon_sym_set] = ACTIONS(4461), - [anon_sym_this] = ACTIONS(4461), - [anon_sym_super] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [sym_label] = ACTIONS(4461), - [anon_sym_in] = ACTIONS(4461), - [anon_sym_DOT_DOT] = ACTIONS(4463), - [anon_sym_QMARK_COLON] = ACTIONS(4463), - [anon_sym_AMP_AMP] = ACTIONS(4463), - [anon_sym_PIPE_PIPE] = ACTIONS(4463), - [anon_sym_null] = ACTIONS(4461), - [anon_sym_if] = ACTIONS(4461), - [anon_sym_else] = ACTIONS(4461), - [anon_sym_when] = ACTIONS(4461), - [anon_sym_try] = ACTIONS(4461), - [anon_sym_throw] = ACTIONS(4461), - [anon_sym_return] = ACTIONS(4461), - [anon_sym_continue] = ACTIONS(4461), - [anon_sym_break] = ACTIONS(4461), - [anon_sym_COLON_COLON] = ACTIONS(4463), - [anon_sym_PLUS_EQ] = ACTIONS(4463), - [anon_sym_DASH_EQ] = ACTIONS(4463), - [anon_sym_STAR_EQ] = ACTIONS(4463), - [anon_sym_SLASH_EQ] = ACTIONS(4463), - [anon_sym_PERCENT_EQ] = ACTIONS(4463), - [anon_sym_BANG_EQ] = ACTIONS(4461), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4463), - [anon_sym_EQ_EQ] = ACTIONS(4461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4463), - [anon_sym_LT_EQ] = ACTIONS(4463), - [anon_sym_GT_EQ] = ACTIONS(4463), - [anon_sym_BANGin] = ACTIONS(4463), - [anon_sym_is] = ACTIONS(4461), - [anon_sym_BANGis] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(4461), - [anon_sym_as_QMARK] = ACTIONS(4463), - [anon_sym_PLUS_PLUS] = ACTIONS(4463), - [anon_sym_DASH_DASH] = ACTIONS(4463), - [anon_sym_BANG] = ACTIONS(4461), - [anon_sym_BANG_BANG] = ACTIONS(4463), - [anon_sym_suspend] = ACTIONS(4461), - [anon_sym_sealed] = ACTIONS(4461), - [anon_sym_annotation] = ACTIONS(4461), - [anon_sym_data] = ACTIONS(4461), - [anon_sym_inner] = ACTIONS(4461), - [anon_sym_value] = ACTIONS(4461), - [anon_sym_override] = ACTIONS(4461), - [anon_sym_lateinit] = ACTIONS(4461), - [anon_sym_public] = ACTIONS(4461), - [anon_sym_private] = ACTIONS(4461), - [anon_sym_internal] = ACTIONS(4461), - [anon_sym_protected] = ACTIONS(4461), - [anon_sym_tailrec] = ACTIONS(4461), - [anon_sym_operator] = ACTIONS(4461), - [anon_sym_infix] = ACTIONS(4461), - [anon_sym_inline] = ACTIONS(4461), - [anon_sym_external] = ACTIONS(4461), - [sym_property_modifier] = ACTIONS(4461), - [anon_sym_abstract] = ACTIONS(4461), - [anon_sym_final] = ACTIONS(4461), - [anon_sym_open] = ACTIONS(4461), - [anon_sym_vararg] = ACTIONS(4461), - [anon_sym_noinline] = ACTIONS(4461), - [anon_sym_crossinline] = ACTIONS(4461), - [anon_sym_expect] = ACTIONS(4461), - [anon_sym_actual] = ACTIONS(4461), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4463), - [anon_sym_continue_AT] = ACTIONS(4463), - [anon_sym_break_AT] = ACTIONS(4463), - [anon_sym_this_AT] = ACTIONS(4463), - [anon_sym_super_AT] = ACTIONS(4463), - [sym_real_literal] = ACTIONS(4463), - [sym_integer_literal] = ACTIONS(4461), - [sym_hex_literal] = ACTIONS(4463), - [sym_bin_literal] = ACTIONS(4463), - [anon_sym_true] = ACTIONS(4461), - [anon_sym_false] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym__backtick_identifier] = ACTIONS(4463), - [sym__automatic_semicolon] = ACTIONS(4463), - [sym_safe_nav] = ACTIONS(4463), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4463), - }, - [904] = { - [sym_class_body] = STATE(1168), - [sym_type_constraints] = STATE(1036), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_fun] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_this] = ACTIONS(4457), - [anon_sym_super] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [sym_label] = ACTIONS(4457), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_null] = ACTIONS(4457), - [anon_sym_if] = ACTIONS(4457), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_when] = ACTIONS(4457), - [anon_sym_try] = ACTIONS(4457), - [anon_sym_throw] = ACTIONS(4457), - [anon_sym_return] = ACTIONS(4457), - [anon_sym_continue] = ACTIONS(4457), - [anon_sym_break] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_suspend] = ACTIONS(4457), - [anon_sym_sealed] = ACTIONS(4457), - [anon_sym_annotation] = ACTIONS(4457), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_override] = ACTIONS(4457), - [anon_sym_lateinit] = ACTIONS(4457), - [anon_sym_public] = ACTIONS(4457), - [anon_sym_private] = ACTIONS(4457), - [anon_sym_internal] = ACTIONS(4457), - [anon_sym_protected] = ACTIONS(4457), - [anon_sym_tailrec] = ACTIONS(4457), - [anon_sym_operator] = ACTIONS(4457), - [anon_sym_infix] = ACTIONS(4457), - [anon_sym_inline] = ACTIONS(4457), - [anon_sym_external] = ACTIONS(4457), - [sym_property_modifier] = ACTIONS(4457), - [anon_sym_abstract] = ACTIONS(4457), - [anon_sym_final] = ACTIONS(4457), - [anon_sym_open] = ACTIONS(4457), - [anon_sym_vararg] = ACTIONS(4457), - [anon_sym_noinline] = ACTIONS(4457), - [anon_sym_crossinline] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4459), - [anon_sym_continue_AT] = ACTIONS(4459), - [anon_sym_break_AT] = ACTIONS(4459), - [anon_sym_this_AT] = ACTIONS(4459), - [anon_sym_super_AT] = ACTIONS(4459), - [sym_real_literal] = ACTIONS(4459), - [sym_integer_literal] = ACTIONS(4457), - [sym_hex_literal] = ACTIONS(4459), - [sym_bin_literal] = ACTIONS(4459), - [anon_sym_true] = ACTIONS(4457), - [anon_sym_false] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4459), - [sym__backtick_identifier] = ACTIONS(4459), - [sym__automatic_semicolon] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4459), - }, - [905] = { - [sym_function_body] = STATE(1153), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(4183), - [anon_sym_object] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4183), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_PLUS_EQ] = ACTIONS(4185), - [anon_sym_DASH_EQ] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4185), - [anon_sym_SLASH_EQ] = ACTIONS(4185), - [anon_sym_PERCENT_EQ] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4183), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), - }, - [906] = { - [sym_class_body] = STATE(1127), - [sym_type_constraints] = STATE(984), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), - }, - [907] = { - [sym_function_body] = STATE(1087), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(4164), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), - }, - [908] = { - [sym_function_body] = STATE(1045), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(4154), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), - }, - [909] = { - [sym_type_constraints] = STATE(1183), - [sym_function_body] = STATE(1189), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), - }, - [910] = { - [sym_type_constraints] = STATE(1028), - [sym_enum_class_body] = STATE(1146), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_fun] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_this] = ACTIONS(4465), - [anon_sym_super] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [sym_label] = ACTIONS(4465), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_null] = ACTIONS(4465), - [anon_sym_if] = ACTIONS(4465), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_when] = ACTIONS(4465), - [anon_sym_try] = ACTIONS(4465), - [anon_sym_throw] = ACTIONS(4465), - [anon_sym_return] = ACTIONS(4465), - [anon_sym_continue] = ACTIONS(4465), - [anon_sym_break] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_suspend] = ACTIONS(4465), - [anon_sym_sealed] = ACTIONS(4465), - [anon_sym_annotation] = ACTIONS(4465), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_override] = ACTIONS(4465), - [anon_sym_lateinit] = ACTIONS(4465), - [anon_sym_public] = ACTIONS(4465), - [anon_sym_private] = ACTIONS(4465), - [anon_sym_internal] = ACTIONS(4465), - [anon_sym_protected] = ACTIONS(4465), - [anon_sym_tailrec] = ACTIONS(4465), - [anon_sym_operator] = ACTIONS(4465), - [anon_sym_infix] = ACTIONS(4465), - [anon_sym_inline] = ACTIONS(4465), - [anon_sym_external] = ACTIONS(4465), - [sym_property_modifier] = ACTIONS(4465), - [anon_sym_abstract] = ACTIONS(4465), - [anon_sym_final] = ACTIONS(4465), - [anon_sym_open] = ACTIONS(4465), - [anon_sym_vararg] = ACTIONS(4465), - [anon_sym_noinline] = ACTIONS(4465), - [anon_sym_crossinline] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4467), - [anon_sym_continue_AT] = ACTIONS(4467), - [anon_sym_break_AT] = ACTIONS(4467), - [anon_sym_this_AT] = ACTIONS(4467), - [anon_sym_super_AT] = ACTIONS(4467), - [sym_real_literal] = ACTIONS(4467), - [sym_integer_literal] = ACTIONS(4465), - [sym_hex_literal] = ACTIONS(4467), - [sym_bin_literal] = ACTIONS(4467), - [anon_sym_true] = ACTIONS(4465), - [anon_sym_false] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4467), - [sym__backtick_identifier] = ACTIONS(4467), - [sym__automatic_semicolon] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4467), - }, - [911] = { - [sym_class_body] = STATE(1080), - [sym_type_constraints] = STATE(960), - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_fun] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_super] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [sym_label] = ACTIONS(4469), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_null] = ACTIONS(4469), - [anon_sym_if] = ACTIONS(4469), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_when] = ACTIONS(4469), - [anon_sym_try] = ACTIONS(4469), - [anon_sym_throw] = ACTIONS(4469), - [anon_sym_return] = ACTIONS(4469), - [anon_sym_continue] = ACTIONS(4469), - [anon_sym_break] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_suspend] = ACTIONS(4469), - [anon_sym_sealed] = ACTIONS(4469), - [anon_sym_annotation] = ACTIONS(4469), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_value] = ACTIONS(4469), - [anon_sym_override] = ACTIONS(4469), - [anon_sym_lateinit] = ACTIONS(4469), - [anon_sym_public] = ACTIONS(4469), - [anon_sym_private] = ACTIONS(4469), - [anon_sym_internal] = ACTIONS(4469), - [anon_sym_protected] = ACTIONS(4469), - [anon_sym_tailrec] = ACTIONS(4469), - [anon_sym_operator] = ACTIONS(4469), - [anon_sym_infix] = ACTIONS(4469), - [anon_sym_inline] = ACTIONS(4469), - [anon_sym_external] = ACTIONS(4469), - [sym_property_modifier] = ACTIONS(4469), - [anon_sym_abstract] = ACTIONS(4469), - [anon_sym_final] = ACTIONS(4469), - [anon_sym_open] = ACTIONS(4469), - [anon_sym_vararg] = ACTIONS(4469), - [anon_sym_noinline] = ACTIONS(4469), - [anon_sym_crossinline] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4471), - [anon_sym_continue_AT] = ACTIONS(4471), - [anon_sym_break_AT] = ACTIONS(4471), - [anon_sym_this_AT] = ACTIONS(4471), - [anon_sym_super_AT] = ACTIONS(4471), - [sym_real_literal] = ACTIONS(4471), - [sym_integer_literal] = ACTIONS(4469), - [sym_hex_literal] = ACTIONS(4471), - [sym_bin_literal] = ACTIONS(4471), - [anon_sym_true] = ACTIONS(4469), - [anon_sym_false] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4471), - [sym__backtick_identifier] = ACTIONS(4471), - [sym__automatic_semicolon] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4471), - }, - [912] = { - [sym__alpha_identifier] = ACTIONS(4473), - [anon_sym_AT] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4475), - [anon_sym_as] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_fun] = ACTIONS(4473), - [anon_sym_constructor] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4475), - [anon_sym_RBRACE] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4475), - [anon_sym_COMMA] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4473), - [anon_sym_GT] = ACTIONS(4473), - [anon_sym_where] = ACTIONS(4473), - [anon_sym_object] = ACTIONS(4473), - [anon_sym_DOT] = ACTIONS(4473), - [anon_sym_SEMI] = ACTIONS(4475), - [anon_sym_get] = ACTIONS(4473), - [anon_sym_set] = ACTIONS(4473), - [anon_sym_this] = ACTIONS(4473), - [anon_sym_super] = ACTIONS(4473), - [anon_sym_STAR] = ACTIONS(4473), - [sym_label] = ACTIONS(4473), - [anon_sym_in] = ACTIONS(4473), - [anon_sym_DOT_DOT] = ACTIONS(4475), - [anon_sym_QMARK_COLON] = ACTIONS(4475), - [anon_sym_AMP_AMP] = ACTIONS(4475), - [anon_sym_PIPE_PIPE] = ACTIONS(4475), - [anon_sym_null] = ACTIONS(4473), - [anon_sym_if] = ACTIONS(4473), - [anon_sym_else] = ACTIONS(4473), - [anon_sym_when] = ACTIONS(4473), - [anon_sym_try] = ACTIONS(4473), - [anon_sym_throw] = ACTIONS(4473), - [anon_sym_return] = ACTIONS(4473), - [anon_sym_continue] = ACTIONS(4473), - [anon_sym_break] = ACTIONS(4473), - [anon_sym_COLON_COLON] = ACTIONS(4475), - [anon_sym_PLUS_EQ] = ACTIONS(4475), - [anon_sym_DASH_EQ] = ACTIONS(4475), - [anon_sym_STAR_EQ] = ACTIONS(4475), - [anon_sym_SLASH_EQ] = ACTIONS(4475), - [anon_sym_PERCENT_EQ] = ACTIONS(4475), - [anon_sym_BANG_EQ] = ACTIONS(4473), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4475), - [anon_sym_EQ_EQ] = ACTIONS(4473), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4475), - [anon_sym_LT_EQ] = ACTIONS(4475), - [anon_sym_GT_EQ] = ACTIONS(4475), - [anon_sym_BANGin] = ACTIONS(4475), - [anon_sym_is] = ACTIONS(4473), - [anon_sym_BANGis] = ACTIONS(4475), - [anon_sym_PLUS] = ACTIONS(4473), - [anon_sym_DASH] = ACTIONS(4473), - [anon_sym_SLASH] = ACTIONS(4473), - [anon_sym_PERCENT] = ACTIONS(4473), - [anon_sym_as_QMARK] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4473), - [anon_sym_BANG_BANG] = ACTIONS(4475), - [anon_sym_suspend] = ACTIONS(4473), - [anon_sym_sealed] = ACTIONS(4473), - [anon_sym_annotation] = ACTIONS(4473), - [anon_sym_data] = ACTIONS(4473), - [anon_sym_inner] = ACTIONS(4473), - [anon_sym_value] = ACTIONS(4473), - [anon_sym_override] = ACTIONS(4473), - [anon_sym_lateinit] = ACTIONS(4473), - [anon_sym_public] = ACTIONS(4473), - [anon_sym_private] = ACTIONS(4473), - [anon_sym_internal] = ACTIONS(4473), - [anon_sym_protected] = ACTIONS(4473), - [anon_sym_tailrec] = ACTIONS(4473), - [anon_sym_operator] = ACTIONS(4473), - [anon_sym_infix] = ACTIONS(4473), - [anon_sym_inline] = ACTIONS(4473), - [anon_sym_external] = ACTIONS(4473), - [sym_property_modifier] = ACTIONS(4473), - [anon_sym_abstract] = ACTIONS(4473), - [anon_sym_final] = ACTIONS(4473), - [anon_sym_open] = ACTIONS(4473), - [anon_sym_vararg] = ACTIONS(4473), - [anon_sym_noinline] = ACTIONS(4473), - [anon_sym_crossinline] = ACTIONS(4473), - [anon_sym_expect] = ACTIONS(4473), - [anon_sym_actual] = ACTIONS(4473), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4475), - [anon_sym_continue_AT] = ACTIONS(4475), - [anon_sym_break_AT] = ACTIONS(4475), - [anon_sym_this_AT] = ACTIONS(4475), - [anon_sym_super_AT] = ACTIONS(4475), - [sym_real_literal] = ACTIONS(4475), - [sym_integer_literal] = ACTIONS(4473), - [sym_hex_literal] = ACTIONS(4475), - [sym_bin_literal] = ACTIONS(4475), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_false] = ACTIONS(4473), - [anon_sym_SQUOTE] = ACTIONS(4475), - [sym__backtick_identifier] = ACTIONS(4475), - [sym__automatic_semicolon] = ACTIONS(4475), - [sym_safe_nav] = ACTIONS(4475), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4475), - }, - [913] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_constructor] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4010), - [anon_sym_set] = ACTIONS(4010), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4010), - [sym_label] = ACTIONS(4010), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4010), - [anon_sym_sealed] = ACTIONS(4010), - [anon_sym_annotation] = ACTIONS(4010), - [anon_sym_data] = ACTIONS(4010), - [anon_sym_inner] = ACTIONS(4010), - [anon_sym_value] = ACTIONS(4010), - [anon_sym_override] = ACTIONS(4010), - [anon_sym_lateinit] = ACTIONS(4010), - [anon_sym_public] = ACTIONS(4010), - [anon_sym_private] = ACTIONS(4010), - [anon_sym_internal] = ACTIONS(4010), - [anon_sym_protected] = ACTIONS(4010), - [anon_sym_tailrec] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_infix] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym_external] = ACTIONS(4010), - [sym_property_modifier] = ACTIONS(4010), - [anon_sym_abstract] = ACTIONS(4010), - [anon_sym_final] = ACTIONS(4010), - [anon_sym_open] = ACTIONS(4010), - [anon_sym_vararg] = ACTIONS(4010), - [anon_sym_noinline] = ACTIONS(4010), - [anon_sym_crossinline] = ACTIONS(4010), - [anon_sym_expect] = ACTIONS(4010), - [anon_sym_actual] = ACTIONS(4010), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4015), - [sym__automatic_semicolon] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [914] = { - [sym__alpha_identifier] = ACTIONS(4215), - [anon_sym_AT] = ACTIONS(4217), - [anon_sym_COLON] = ACTIONS(4215), - [anon_sym_LBRACK] = ACTIONS(4217), - [anon_sym_as] = ACTIONS(4215), - [anon_sym_EQ] = ACTIONS(4215), - [anon_sym_fun] = ACTIONS(4215), - [anon_sym_constructor] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4217), - [anon_sym_COMMA] = ACTIONS(4217), - [anon_sym_LT] = ACTIONS(4215), - [anon_sym_GT] = ACTIONS(4215), - [anon_sym_where] = ACTIONS(4215), - [anon_sym_object] = ACTIONS(4215), - [anon_sym_DOT] = ACTIONS(4215), - [anon_sym_SEMI] = ACTIONS(4217), - [anon_sym_get] = ACTIONS(4215), - [anon_sym_set] = ACTIONS(4215), - [anon_sym_this] = ACTIONS(4215), - [anon_sym_super] = ACTIONS(4215), - [anon_sym_STAR] = ACTIONS(4215), - [sym_label] = ACTIONS(4215), - [anon_sym_in] = ACTIONS(4215), - [anon_sym_DOT_DOT] = ACTIONS(4217), - [anon_sym_QMARK_COLON] = ACTIONS(4217), - [anon_sym_AMP_AMP] = ACTIONS(4217), - [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4215), - [anon_sym_if] = ACTIONS(4215), - [anon_sym_else] = ACTIONS(4215), - [anon_sym_when] = ACTIONS(4215), - [anon_sym_try] = ACTIONS(4215), - [anon_sym_throw] = ACTIONS(4215), - [anon_sym_return] = ACTIONS(4215), - [anon_sym_continue] = ACTIONS(4215), - [anon_sym_break] = ACTIONS(4215), - [anon_sym_COLON_COLON] = ACTIONS(4217), - [anon_sym_PLUS_EQ] = ACTIONS(4217), - [anon_sym_DASH_EQ] = ACTIONS(4217), - [anon_sym_STAR_EQ] = ACTIONS(4217), - [anon_sym_SLASH_EQ] = ACTIONS(4217), - [anon_sym_PERCENT_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ] = ACTIONS(4215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ] = ACTIONS(4215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), - [anon_sym_LT_EQ] = ACTIONS(4217), - [anon_sym_GT_EQ] = ACTIONS(4217), - [anon_sym_BANGin] = ACTIONS(4217), - [anon_sym_is] = ACTIONS(4215), - [anon_sym_BANGis] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4215), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_SLASH] = ACTIONS(4215), - [anon_sym_PERCENT] = ACTIONS(4215), - [anon_sym_as_QMARK] = ACTIONS(4217), - [anon_sym_PLUS_PLUS] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4217), - [anon_sym_BANG] = ACTIONS(4215), - [anon_sym_BANG_BANG] = ACTIONS(4217), - [anon_sym_suspend] = ACTIONS(4215), - [anon_sym_sealed] = ACTIONS(4215), - [anon_sym_annotation] = ACTIONS(4215), - [anon_sym_data] = ACTIONS(4215), - [anon_sym_inner] = ACTIONS(4215), - [anon_sym_value] = ACTIONS(4215), - [anon_sym_override] = ACTIONS(4215), - [anon_sym_lateinit] = ACTIONS(4215), - [anon_sym_public] = ACTIONS(4215), - [anon_sym_private] = ACTIONS(4215), - [anon_sym_internal] = ACTIONS(4215), - [anon_sym_protected] = ACTIONS(4215), - [anon_sym_tailrec] = ACTIONS(4215), - [anon_sym_operator] = ACTIONS(4215), - [anon_sym_infix] = ACTIONS(4215), - [anon_sym_inline] = ACTIONS(4215), - [anon_sym_external] = ACTIONS(4215), - [sym_property_modifier] = ACTIONS(4215), - [anon_sym_abstract] = ACTIONS(4215), - [anon_sym_final] = ACTIONS(4215), - [anon_sym_open] = ACTIONS(4215), - [anon_sym_vararg] = ACTIONS(4215), - [anon_sym_noinline] = ACTIONS(4215), - [anon_sym_crossinline] = ACTIONS(4215), - [anon_sym_expect] = ACTIONS(4215), - [anon_sym_actual] = ACTIONS(4215), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4217), - [anon_sym_continue_AT] = ACTIONS(4217), - [anon_sym_break_AT] = ACTIONS(4217), - [anon_sym_this_AT] = ACTIONS(4217), - [anon_sym_super_AT] = ACTIONS(4217), - [sym_real_literal] = ACTIONS(4217), - [sym_integer_literal] = ACTIONS(4215), - [sym_hex_literal] = ACTIONS(4217), - [sym_bin_literal] = ACTIONS(4217), - [anon_sym_true] = ACTIONS(4215), - [anon_sym_false] = ACTIONS(4215), - [anon_sym_SQUOTE] = ACTIONS(4217), - [sym__backtick_identifier] = ACTIONS(4217), - [sym__automatic_semicolon] = ACTIONS(4217), - [sym_safe_nav] = ACTIONS(4217), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4217), - }, - [915] = { - [sym_type_constraints] = STATE(1014), - [sym_enum_class_body] = STATE(1130), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), - }, - [916] = { - [sym_class_body] = STATE(1130), - [sym_type_constraints] = STATE(1011), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), - }, - [917] = { - [sym_type_constraints] = STATE(959), - [sym_enum_class_body] = STATE(1057), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), - }, - [918] = { - [sym_class_body] = STATE(1057), - [sym_type_constraints] = STATE(998), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), - }, - [919] = { - [sym_type_constraints] = STATE(1035), - [sym_enum_class_body] = STATE(1127), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), - }, - [920] = { - [sym_class_body] = STATE(1127), - [sym_type_constraints] = STATE(984), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), - }, - [921] = { - [sym_type_constraints] = STATE(975), - [sym_enum_class_body] = STATE(1200), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [922] = { - [sym_class_body] = STATE(1200), - [sym_type_constraints] = STATE(1002), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [923] = { - [sym_class_body] = STATE(1146), - [sym_type_constraints] = STATE(1026), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_fun] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_this] = ACTIONS(4465), - [anon_sym_super] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [sym_label] = ACTIONS(4465), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_null] = ACTIONS(4465), - [anon_sym_if] = ACTIONS(4465), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_when] = ACTIONS(4465), - [anon_sym_try] = ACTIONS(4465), - [anon_sym_throw] = ACTIONS(4465), - [anon_sym_return] = ACTIONS(4465), - [anon_sym_continue] = ACTIONS(4465), - [anon_sym_break] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_suspend] = ACTIONS(4465), - [anon_sym_sealed] = ACTIONS(4465), - [anon_sym_annotation] = ACTIONS(4465), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_override] = ACTIONS(4465), - [anon_sym_lateinit] = ACTIONS(4465), - [anon_sym_public] = ACTIONS(4465), - [anon_sym_private] = ACTIONS(4465), - [anon_sym_internal] = ACTIONS(4465), - [anon_sym_protected] = ACTIONS(4465), - [anon_sym_tailrec] = ACTIONS(4465), - [anon_sym_operator] = ACTIONS(4465), - [anon_sym_infix] = ACTIONS(4465), - [anon_sym_inline] = ACTIONS(4465), - [anon_sym_external] = ACTIONS(4465), - [sym_property_modifier] = ACTIONS(4465), - [anon_sym_abstract] = ACTIONS(4465), - [anon_sym_final] = ACTIONS(4465), - [anon_sym_open] = ACTIONS(4465), - [anon_sym_vararg] = ACTIONS(4465), - [anon_sym_noinline] = ACTIONS(4465), - [anon_sym_crossinline] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4467), - [anon_sym_continue_AT] = ACTIONS(4467), - [anon_sym_break_AT] = ACTIONS(4467), - [anon_sym_this_AT] = ACTIONS(4467), - [anon_sym_super_AT] = ACTIONS(4467), - [sym_real_literal] = ACTIONS(4467), - [sym_integer_literal] = ACTIONS(4465), - [sym_hex_literal] = ACTIONS(4467), - [sym_bin_literal] = ACTIONS(4467), - [anon_sym_true] = ACTIONS(4465), - [anon_sym_false] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4467), - [sym__backtick_identifier] = ACTIONS(4467), - [sym__automatic_semicolon] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4467), - }, - [924] = { - [sym_class_body] = STATE(1203), - [sym_type_constraints] = STATE(1034), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(4485), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_fun] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4275), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_this] = ACTIONS(4275), - [anon_sym_super] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), - [sym_label] = ACTIONS(4275), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4275), - [anon_sym_if] = ACTIONS(4275), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_when] = ACTIONS(4275), - [anon_sym_try] = ACTIONS(4275), - [anon_sym_throw] = ACTIONS(4275), - [anon_sym_return] = ACTIONS(4275), - [anon_sym_continue] = ACTIONS(4275), - [anon_sym_break] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_PLUS_EQ] = ACTIONS(4277), - [anon_sym_DASH_EQ] = ACTIONS(4277), - [anon_sym_STAR_EQ] = ACTIONS(4277), - [anon_sym_SLASH_EQ] = ACTIONS(4277), - [anon_sym_PERCENT_EQ] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_suspend] = ACTIONS(4275), - [anon_sym_sealed] = ACTIONS(4275), - [anon_sym_annotation] = ACTIONS(4275), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_override] = ACTIONS(4275), - [anon_sym_lateinit] = ACTIONS(4275), - [anon_sym_public] = ACTIONS(4275), - [anon_sym_private] = ACTIONS(4275), - [anon_sym_internal] = ACTIONS(4275), - [anon_sym_protected] = ACTIONS(4275), - [anon_sym_tailrec] = ACTIONS(4275), - [anon_sym_operator] = ACTIONS(4275), - [anon_sym_infix] = ACTIONS(4275), - [anon_sym_inline] = ACTIONS(4275), - [anon_sym_external] = ACTIONS(4275), - [sym_property_modifier] = ACTIONS(4275), - [anon_sym_abstract] = ACTIONS(4275), - [anon_sym_final] = ACTIONS(4275), - [anon_sym_open] = ACTIONS(4275), - [anon_sym_vararg] = ACTIONS(4275), - [anon_sym_noinline] = ACTIONS(4275), - [anon_sym_crossinline] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4277), - [anon_sym_continue_AT] = ACTIONS(4277), - [anon_sym_break_AT] = ACTIONS(4277), - [anon_sym_this_AT] = ACTIONS(4277), - [anon_sym_super_AT] = ACTIONS(4277), - [sym_real_literal] = ACTIONS(4277), - [sym_integer_literal] = ACTIONS(4275), - [sym_hex_literal] = ACTIONS(4277), - [sym_bin_literal] = ACTIONS(4277), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [anon_sym_SQUOTE] = ACTIONS(4277), - [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), - }, - [925] = { - [sym_class_body] = STATE(1148), - [sym_type_constraints] = STATE(958), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [926] = { - [sym_class_body] = STATE(1084), - [sym_type_constraints] = STATE(962), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), - }, - [927] = { - [sym__alpha_identifier] = ACTIONS(4487), - [anon_sym_AT] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [anon_sym_as] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_fun] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_RBRACE] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_COMMA] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_where] = ACTIONS(4487), - [anon_sym_object] = ACTIONS(4487), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_SEMI] = ACTIONS(4489), - [anon_sym_get] = ACTIONS(4487), - [anon_sym_set] = ACTIONS(4487), - [anon_sym_this] = ACTIONS(4487), - [anon_sym_super] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [sym_label] = ACTIONS(4487), - [anon_sym_in] = ACTIONS(4487), - [anon_sym_DOT_DOT] = ACTIONS(4489), - [anon_sym_QMARK_COLON] = ACTIONS(4489), - [anon_sym_AMP_AMP] = ACTIONS(4489), - [anon_sym_PIPE_PIPE] = ACTIONS(4489), - [anon_sym_null] = ACTIONS(4487), - [anon_sym_if] = ACTIONS(4487), - [anon_sym_else] = ACTIONS(4487), - [anon_sym_when] = ACTIONS(4487), - [anon_sym_try] = ACTIONS(4487), - [anon_sym_throw] = ACTIONS(4487), - [anon_sym_return] = ACTIONS(4487), - [anon_sym_continue] = ACTIONS(4487), - [anon_sym_break] = ACTIONS(4487), - [anon_sym_COLON_COLON] = ACTIONS(4489), - [anon_sym_PLUS_EQ] = ACTIONS(4489), - [anon_sym_DASH_EQ] = ACTIONS(4489), - [anon_sym_STAR_EQ] = ACTIONS(4489), - [anon_sym_SLASH_EQ] = ACTIONS(4489), - [anon_sym_PERCENT_EQ] = ACTIONS(4489), - [anon_sym_BANG_EQ] = ACTIONS(4487), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4489), - [anon_sym_EQ_EQ] = ACTIONS(4487), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4489), - [anon_sym_LT_EQ] = ACTIONS(4489), - [anon_sym_GT_EQ] = ACTIONS(4489), - [anon_sym_BANGin] = ACTIONS(4489), - [anon_sym_is] = ACTIONS(4487), - [anon_sym_BANGis] = ACTIONS(4489), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_PERCENT] = ACTIONS(4487), - [anon_sym_as_QMARK] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_BANG_BANG] = ACTIONS(4489), - [anon_sym_suspend] = ACTIONS(4487), - [anon_sym_sealed] = ACTIONS(4487), - [anon_sym_annotation] = ACTIONS(4487), - [anon_sym_data] = ACTIONS(4487), - [anon_sym_inner] = ACTIONS(4487), - [anon_sym_value] = ACTIONS(4487), - [anon_sym_override] = ACTIONS(4487), - [anon_sym_lateinit] = ACTIONS(4487), - [anon_sym_public] = ACTIONS(4487), - [anon_sym_private] = ACTIONS(4487), - [anon_sym_internal] = ACTIONS(4487), - [anon_sym_protected] = ACTIONS(4487), - [anon_sym_tailrec] = ACTIONS(4487), - [anon_sym_operator] = ACTIONS(4487), - [anon_sym_infix] = ACTIONS(4487), - [anon_sym_inline] = ACTIONS(4487), - [anon_sym_external] = ACTIONS(4487), - [sym_property_modifier] = ACTIONS(4487), - [anon_sym_abstract] = ACTIONS(4487), - [anon_sym_final] = ACTIONS(4487), - [anon_sym_open] = ACTIONS(4487), - [anon_sym_vararg] = ACTIONS(4487), - [anon_sym_noinline] = ACTIONS(4487), - [anon_sym_crossinline] = ACTIONS(4487), - [anon_sym_expect] = ACTIONS(4487), - [anon_sym_actual] = ACTIONS(4487), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4489), - [anon_sym_continue_AT] = ACTIONS(4489), - [anon_sym_break_AT] = ACTIONS(4489), - [anon_sym_this_AT] = ACTIONS(4489), - [anon_sym_super_AT] = ACTIONS(4489), - [sym_real_literal] = ACTIONS(4489), - [sym_integer_literal] = ACTIONS(4487), - [sym_hex_literal] = ACTIONS(4489), - [sym_bin_literal] = ACTIONS(4489), - [aux_sym_unsigned_literal_token1] = ACTIONS(4491), - [anon_sym_L] = ACTIONS(4493), - [anon_sym_true] = ACTIONS(4487), - [anon_sym_false] = ACTIONS(4487), - [anon_sym_SQUOTE] = ACTIONS(4489), - [sym__backtick_identifier] = ACTIONS(4489), - [sym__automatic_semicolon] = ACTIONS(4489), - [sym_safe_nav] = ACTIONS(4489), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4489), - }, - [928] = { - [aux_sym_type_constraints_repeat1] = STATE(928), - [sym__alpha_identifier] = ACTIONS(4495), - [anon_sym_AT] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_as] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4495), - [anon_sym_fun] = ACTIONS(4495), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_COMMA] = ACTIONS(4499), - [anon_sym_by] = ACTIONS(4495), - [anon_sym_LT] = ACTIONS(4495), - [anon_sym_GT] = ACTIONS(4495), - [anon_sym_where] = ACTIONS(4495), - [anon_sym_object] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4495), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_get] = ACTIONS(4495), - [anon_sym_set] = ACTIONS(4495), - [anon_sym_this] = ACTIONS(4495), - [anon_sym_super] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4495), - [anon_sym_DOT_DOT] = ACTIONS(4497), - [anon_sym_QMARK_COLON] = ACTIONS(4497), - [anon_sym_AMP_AMP] = ACTIONS(4497), - [anon_sym_PIPE_PIPE] = ACTIONS(4497), - [anon_sym_null] = ACTIONS(4495), - [anon_sym_if] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4495), - [anon_sym_when] = ACTIONS(4495), - [anon_sym_try] = ACTIONS(4495), - [anon_sym_throw] = ACTIONS(4495), - [anon_sym_return] = ACTIONS(4495), - [anon_sym_continue] = ACTIONS(4495), - [anon_sym_break] = ACTIONS(4495), - [anon_sym_COLON_COLON] = ACTIONS(4497), - [anon_sym_PLUS_EQ] = ACTIONS(4497), - [anon_sym_DASH_EQ] = ACTIONS(4497), - [anon_sym_STAR_EQ] = ACTIONS(4497), - [anon_sym_SLASH_EQ] = ACTIONS(4497), - [anon_sym_PERCENT_EQ] = ACTIONS(4497), - [anon_sym_BANG_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4497), - [anon_sym_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4497), - [anon_sym_LT_EQ] = ACTIONS(4497), - [anon_sym_GT_EQ] = ACTIONS(4497), - [anon_sym_BANGin] = ACTIONS(4497), - [anon_sym_is] = ACTIONS(4495), - [anon_sym_BANGis] = ACTIONS(4497), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_SLASH] = ACTIONS(4495), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4497), - [anon_sym_PLUS_PLUS] = ACTIONS(4497), - [anon_sym_DASH_DASH] = ACTIONS(4497), - [anon_sym_BANG] = ACTIONS(4495), - [anon_sym_BANG_BANG] = ACTIONS(4497), - [anon_sym_suspend] = ACTIONS(4495), - [anon_sym_sealed] = ACTIONS(4495), - [anon_sym_annotation] = ACTIONS(4495), - [anon_sym_data] = ACTIONS(4495), - [anon_sym_inner] = ACTIONS(4495), - [anon_sym_value] = ACTIONS(4495), - [anon_sym_override] = ACTIONS(4495), - [anon_sym_lateinit] = ACTIONS(4495), - [anon_sym_public] = ACTIONS(4495), - [anon_sym_private] = ACTIONS(4495), - [anon_sym_internal] = ACTIONS(4495), - [anon_sym_protected] = ACTIONS(4495), - [anon_sym_tailrec] = ACTIONS(4495), - [anon_sym_operator] = ACTIONS(4495), - [anon_sym_infix] = ACTIONS(4495), - [anon_sym_inline] = ACTIONS(4495), - [anon_sym_external] = ACTIONS(4495), - [sym_property_modifier] = ACTIONS(4495), - [anon_sym_abstract] = ACTIONS(4495), - [anon_sym_final] = ACTIONS(4495), - [anon_sym_open] = ACTIONS(4495), - [anon_sym_vararg] = ACTIONS(4495), - [anon_sym_noinline] = ACTIONS(4495), - [anon_sym_crossinline] = ACTIONS(4495), - [anon_sym_expect] = ACTIONS(4495), - [anon_sym_actual] = ACTIONS(4495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4497), - [anon_sym_continue_AT] = ACTIONS(4497), - [anon_sym_break_AT] = ACTIONS(4497), - [anon_sym_this_AT] = ACTIONS(4497), - [anon_sym_super_AT] = ACTIONS(4497), - [sym_real_literal] = ACTIONS(4497), - [sym_integer_literal] = ACTIONS(4495), - [sym_hex_literal] = ACTIONS(4497), - [sym_bin_literal] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4495), - [anon_sym_false] = ACTIONS(4495), - [anon_sym_SQUOTE] = ACTIONS(4497), - [sym__backtick_identifier] = ACTIONS(4497), - [sym__automatic_semicolon] = ACTIONS(4497), - [sym_safe_nav] = ACTIONS(4497), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4497), - }, - [929] = { - [sym_type_constraints] = STATE(1035), - [sym_enum_class_body] = STATE(1127), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), - }, - [930] = { - [sym__alpha_identifier] = ACTIONS(4502), - [anon_sym_AT] = ACTIONS(4504), - [anon_sym_COLON] = ACTIONS(4502), - [anon_sym_LBRACK] = ACTIONS(4504), - [anon_sym_as] = ACTIONS(4502), - [anon_sym_EQ] = ACTIONS(4502), - [anon_sym_fun] = ACTIONS(4502), - [anon_sym_constructor] = ACTIONS(4502), - [anon_sym_LBRACE] = ACTIONS(4504), - [anon_sym_RBRACE] = ACTIONS(4504), - [anon_sym_LPAREN] = ACTIONS(4504), - [anon_sym_COMMA] = ACTIONS(4504), - [anon_sym_LT] = ACTIONS(4502), - [anon_sym_GT] = ACTIONS(4502), - [anon_sym_where] = ACTIONS(4502), - [anon_sym_object] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4502), - [anon_sym_SEMI] = ACTIONS(4504), - [anon_sym_get] = ACTIONS(4502), - [anon_sym_set] = ACTIONS(4502), - [anon_sym_this] = ACTIONS(4502), - [anon_sym_super] = ACTIONS(4502), - [anon_sym_STAR] = ACTIONS(4502), - [sym_label] = ACTIONS(4502), - [anon_sym_in] = ACTIONS(4502), - [anon_sym_DOT_DOT] = ACTIONS(4504), - [anon_sym_QMARK_COLON] = ACTIONS(4504), - [anon_sym_AMP_AMP] = ACTIONS(4504), - [anon_sym_PIPE_PIPE] = ACTIONS(4504), - [anon_sym_null] = ACTIONS(4502), - [anon_sym_if] = ACTIONS(4502), - [anon_sym_else] = ACTIONS(4502), - [anon_sym_when] = ACTIONS(4502), - [anon_sym_try] = ACTIONS(4502), - [anon_sym_throw] = ACTIONS(4502), - [anon_sym_return] = ACTIONS(4502), - [anon_sym_continue] = ACTIONS(4502), - [anon_sym_break] = ACTIONS(4502), - [anon_sym_COLON_COLON] = ACTIONS(4504), - [anon_sym_PLUS_EQ] = ACTIONS(4504), - [anon_sym_DASH_EQ] = ACTIONS(4504), - [anon_sym_STAR_EQ] = ACTIONS(4504), - [anon_sym_SLASH_EQ] = ACTIONS(4504), - [anon_sym_PERCENT_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ] = ACTIONS(4502), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ] = ACTIONS(4502), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), - [anon_sym_LT_EQ] = ACTIONS(4504), - [anon_sym_GT_EQ] = ACTIONS(4504), - [anon_sym_BANGin] = ACTIONS(4504), - [anon_sym_is] = ACTIONS(4502), - [anon_sym_BANGis] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4502), - [anon_sym_DASH] = ACTIONS(4502), - [anon_sym_SLASH] = ACTIONS(4502), - [anon_sym_PERCENT] = ACTIONS(4502), - [anon_sym_as_QMARK] = ACTIONS(4504), - [anon_sym_PLUS_PLUS] = ACTIONS(4504), - [anon_sym_DASH_DASH] = ACTIONS(4504), - [anon_sym_BANG] = ACTIONS(4502), - [anon_sym_BANG_BANG] = ACTIONS(4504), - [anon_sym_suspend] = ACTIONS(4502), - [anon_sym_sealed] = ACTIONS(4502), - [anon_sym_annotation] = ACTIONS(4502), - [anon_sym_data] = ACTIONS(4502), - [anon_sym_inner] = ACTIONS(4502), - [anon_sym_value] = ACTIONS(4502), - [anon_sym_override] = ACTIONS(4502), - [anon_sym_lateinit] = ACTIONS(4502), - [anon_sym_public] = ACTIONS(4502), - [anon_sym_private] = ACTIONS(4502), - [anon_sym_internal] = ACTIONS(4502), - [anon_sym_protected] = ACTIONS(4502), - [anon_sym_tailrec] = ACTIONS(4502), - [anon_sym_operator] = ACTIONS(4502), - [anon_sym_infix] = ACTIONS(4502), - [anon_sym_inline] = ACTIONS(4502), - [anon_sym_external] = ACTIONS(4502), - [sym_property_modifier] = ACTIONS(4502), - [anon_sym_abstract] = ACTIONS(4502), - [anon_sym_final] = ACTIONS(4502), - [anon_sym_open] = ACTIONS(4502), - [anon_sym_vararg] = ACTIONS(4502), - [anon_sym_noinline] = ACTIONS(4502), - [anon_sym_crossinline] = ACTIONS(4502), - [anon_sym_expect] = ACTIONS(4502), - [anon_sym_actual] = ACTIONS(4502), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4504), - [anon_sym_continue_AT] = ACTIONS(4504), - [anon_sym_break_AT] = ACTIONS(4504), - [anon_sym_this_AT] = ACTIONS(4504), - [anon_sym_super_AT] = ACTIONS(4504), - [sym_real_literal] = ACTIONS(4504), - [sym_integer_literal] = ACTIONS(4502), - [sym_hex_literal] = ACTIONS(4504), - [sym_bin_literal] = ACTIONS(4504), - [anon_sym_true] = ACTIONS(4502), - [anon_sym_false] = ACTIONS(4502), - [anon_sym_SQUOTE] = ACTIONS(4504), - [sym__backtick_identifier] = ACTIONS(4504), - [sym__automatic_semicolon] = ACTIONS(4504), - [sym_safe_nav] = ACTIONS(4504), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4504), - }, - [931] = { - [sym_type_constraints] = STATE(1188), - [sym_function_body] = STATE(1153), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4183), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_PLUS_EQ] = ACTIONS(4185), - [anon_sym_DASH_EQ] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4185), - [anon_sym_SLASH_EQ] = ACTIONS(4185), - [anon_sym_PERCENT_EQ] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4183), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), - }, - [932] = { - [sym_type_constraints] = STATE(1192), - [sym_function_body] = STATE(1087), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), - }, - [933] = { - [aux_sym_type_constraints_repeat1] = STATE(928), - [sym__alpha_identifier] = ACTIONS(4506), - [anon_sym_AT] = ACTIONS(4508), - [anon_sym_LBRACK] = ACTIONS(4508), - [anon_sym_as] = ACTIONS(4506), - [anon_sym_EQ] = ACTIONS(4506), - [anon_sym_fun] = ACTIONS(4506), - [anon_sym_LBRACE] = ACTIONS(4508), - [anon_sym_RBRACE] = ACTIONS(4508), - [anon_sym_LPAREN] = ACTIONS(4508), - [anon_sym_COMMA] = ACTIONS(4510), - [anon_sym_by] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4506), - [anon_sym_GT] = ACTIONS(4506), - [anon_sym_where] = ACTIONS(4506), - [anon_sym_object] = ACTIONS(4506), - [anon_sym_DOT] = ACTIONS(4506), - [anon_sym_SEMI] = ACTIONS(4508), - [anon_sym_get] = ACTIONS(4506), - [anon_sym_set] = ACTIONS(4506), - [anon_sym_this] = ACTIONS(4506), - [anon_sym_super] = ACTIONS(4506), - [anon_sym_STAR] = ACTIONS(4506), - [sym_label] = ACTIONS(4506), - [anon_sym_in] = ACTIONS(4506), - [anon_sym_DOT_DOT] = ACTIONS(4508), - [anon_sym_QMARK_COLON] = ACTIONS(4508), - [anon_sym_AMP_AMP] = ACTIONS(4508), - [anon_sym_PIPE_PIPE] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4506), - [anon_sym_if] = ACTIONS(4506), - [anon_sym_else] = ACTIONS(4506), - [anon_sym_when] = ACTIONS(4506), - [anon_sym_try] = ACTIONS(4506), - [anon_sym_throw] = ACTIONS(4506), - [anon_sym_return] = ACTIONS(4506), - [anon_sym_continue] = ACTIONS(4506), - [anon_sym_break] = ACTIONS(4506), - [anon_sym_COLON_COLON] = ACTIONS(4508), - [anon_sym_PLUS_EQ] = ACTIONS(4508), - [anon_sym_DASH_EQ] = ACTIONS(4508), - [anon_sym_STAR_EQ] = ACTIONS(4508), - [anon_sym_SLASH_EQ] = ACTIONS(4508), - [anon_sym_PERCENT_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ] = ACTIONS(4506), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4508), - [anon_sym_LT_EQ] = ACTIONS(4508), - [anon_sym_GT_EQ] = ACTIONS(4508), - [anon_sym_BANGin] = ACTIONS(4508), - [anon_sym_is] = ACTIONS(4506), - [anon_sym_BANGis] = ACTIONS(4508), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_DASH] = ACTIONS(4506), - [anon_sym_SLASH] = ACTIONS(4506), - [anon_sym_PERCENT] = ACTIONS(4506), - [anon_sym_as_QMARK] = ACTIONS(4508), - [anon_sym_PLUS_PLUS] = ACTIONS(4508), - [anon_sym_DASH_DASH] = ACTIONS(4508), - [anon_sym_BANG] = ACTIONS(4506), - [anon_sym_BANG_BANG] = ACTIONS(4508), - [anon_sym_suspend] = ACTIONS(4506), - [anon_sym_sealed] = ACTIONS(4506), - [anon_sym_annotation] = ACTIONS(4506), - [anon_sym_data] = ACTIONS(4506), - [anon_sym_inner] = ACTIONS(4506), - [anon_sym_value] = ACTIONS(4506), - [anon_sym_override] = ACTIONS(4506), - [anon_sym_lateinit] = ACTIONS(4506), - [anon_sym_public] = ACTIONS(4506), - [anon_sym_private] = ACTIONS(4506), - [anon_sym_internal] = ACTIONS(4506), - [anon_sym_protected] = ACTIONS(4506), - [anon_sym_tailrec] = ACTIONS(4506), - [anon_sym_operator] = ACTIONS(4506), - [anon_sym_infix] = ACTIONS(4506), - [anon_sym_inline] = ACTIONS(4506), - [anon_sym_external] = ACTIONS(4506), - [sym_property_modifier] = ACTIONS(4506), - [anon_sym_abstract] = ACTIONS(4506), - [anon_sym_final] = ACTIONS(4506), - [anon_sym_open] = ACTIONS(4506), - [anon_sym_vararg] = ACTIONS(4506), - [anon_sym_noinline] = ACTIONS(4506), - [anon_sym_crossinline] = ACTIONS(4506), - [anon_sym_expect] = ACTIONS(4506), - [anon_sym_actual] = ACTIONS(4506), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4508), - [anon_sym_continue_AT] = ACTIONS(4508), - [anon_sym_break_AT] = ACTIONS(4508), - [anon_sym_this_AT] = ACTIONS(4508), - [anon_sym_super_AT] = ACTIONS(4508), - [sym_real_literal] = ACTIONS(4508), - [sym_integer_literal] = ACTIONS(4506), - [sym_hex_literal] = ACTIONS(4508), - [sym_bin_literal] = ACTIONS(4508), - [anon_sym_true] = ACTIONS(4506), - [anon_sym_false] = ACTIONS(4506), - [anon_sym_SQUOTE] = ACTIONS(4508), - [sym__backtick_identifier] = ACTIONS(4508), - [sym__automatic_semicolon] = ACTIONS(4508), - [sym_safe_nav] = ACTIONS(4508), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4508), - }, - [934] = { - [sym_type_constraints] = STATE(1014), - [sym_enum_class_body] = STATE(1130), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), - }, - [935] = { - [sym_getter] = STATE(5259), - [sym_setter] = STATE(5259), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4512), - [anon_sym_get] = ACTIONS(4514), - [anon_sym_set] = ACTIONS(4516), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [936] = { - [sym_function_body] = STATE(1135), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_COMMA] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_where] = ACTIONS(4518), - [anon_sym_object] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_this] = ACTIONS(4518), - [anon_sym_super] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4518), - [sym_label] = ACTIONS(4518), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_null] = ACTIONS(4518), - [anon_sym_if] = ACTIONS(4518), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_when] = ACTIONS(4518), - [anon_sym_try] = ACTIONS(4518), - [anon_sym_throw] = ACTIONS(4518), - [anon_sym_return] = ACTIONS(4518), - [anon_sym_continue] = ACTIONS(4518), - [anon_sym_break] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_PLUS_EQ] = ACTIONS(4520), - [anon_sym_DASH_EQ] = ACTIONS(4520), - [anon_sym_STAR_EQ] = ACTIONS(4520), - [anon_sym_SLASH_EQ] = ACTIONS(4520), - [anon_sym_PERCENT_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4518), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4518), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_suspend] = ACTIONS(4518), - [anon_sym_sealed] = ACTIONS(4518), - [anon_sym_annotation] = ACTIONS(4518), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_override] = ACTIONS(4518), - [anon_sym_lateinit] = ACTIONS(4518), - [anon_sym_public] = ACTIONS(4518), - [anon_sym_private] = ACTIONS(4518), - [anon_sym_internal] = ACTIONS(4518), - [anon_sym_protected] = ACTIONS(4518), - [anon_sym_tailrec] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_infix] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym_external] = ACTIONS(4518), - [sym_property_modifier] = ACTIONS(4518), - [anon_sym_abstract] = ACTIONS(4518), - [anon_sym_final] = ACTIONS(4518), - [anon_sym_open] = ACTIONS(4518), - [anon_sym_vararg] = ACTIONS(4518), - [anon_sym_noinline] = ACTIONS(4518), - [anon_sym_crossinline] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4520), - [anon_sym_continue_AT] = ACTIONS(4520), - [anon_sym_break_AT] = ACTIONS(4520), - [anon_sym_this_AT] = ACTIONS(4520), - [anon_sym_super_AT] = ACTIONS(4520), - [sym_real_literal] = ACTIONS(4520), - [sym_integer_literal] = ACTIONS(4518), - [sym_hex_literal] = ACTIONS(4520), - [sym_bin_literal] = ACTIONS(4520), - [anon_sym_true] = ACTIONS(4518), - [anon_sym_false] = ACTIONS(4518), - [anon_sym_SQUOTE] = ACTIONS(4520), - [sym__backtick_identifier] = ACTIONS(4520), - [sym__automatic_semicolon] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4520), - }, - [937] = { - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [878] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4514), - [anon_sym_set] = ACTIONS(4516), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(4399), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -158897,86 +151585,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [938] = { - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [879] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_COMMA] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4363), [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4524), - [anon_sym_get] = ACTIONS(4514), - [anon_sym_set] = ACTIONS(4516), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4399), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -159006,85 +151694,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3714), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [939] = { - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [880] = { + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1816), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4526), - [anon_sym_get] = ACTIONS(4514), - [anon_sym_set] = ACTIONS(4516), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4399), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -159113,194 +151801,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [940] = { - [sym_type_constraints] = STATE(1193), - [sym_function_body] = STATE(1045), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), - }, - [941] = { - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [881] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1804), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4528), - [anon_sym_get] = ACTIONS(4514), - [anon_sym_set] = ACTIONS(4516), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4367), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -159329,194 +151909,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [942] = { - [sym_function_body] = STATE(1043), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_where] = ACTIONS(4530), - [anon_sym_object] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_this] = ACTIONS(4530), - [anon_sym_super] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_null] = ACTIONS(4530), - [anon_sym_if] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_when] = ACTIONS(4530), - [anon_sym_try] = ACTIONS(4530), - [anon_sym_throw] = ACTIONS(4530), - [anon_sym_return] = ACTIONS(4530), - [anon_sym_continue] = ACTIONS(4530), - [anon_sym_break] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4530), - [anon_sym_sealed] = ACTIONS(4530), - [anon_sym_annotation] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_override] = ACTIONS(4530), - [anon_sym_lateinit] = ACTIONS(4530), - [anon_sym_public] = ACTIONS(4530), - [anon_sym_private] = ACTIONS(4530), - [anon_sym_internal] = ACTIONS(4530), - [anon_sym_protected] = ACTIONS(4530), - [anon_sym_tailrec] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_infix] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym_external] = ACTIONS(4530), - [sym_property_modifier] = ACTIONS(4530), - [anon_sym_abstract] = ACTIONS(4530), - [anon_sym_final] = ACTIONS(4530), - [anon_sym_open] = ACTIONS(4530), - [anon_sym_vararg] = ACTIONS(4530), - [anon_sym_noinline] = ACTIONS(4530), - [anon_sym_crossinline] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4532), - [anon_sym_continue_AT] = ACTIONS(4532), - [anon_sym_break_AT] = ACTIONS(4532), - [anon_sym_this_AT] = ACTIONS(4532), - [anon_sym_super_AT] = ACTIONS(4532), - [sym_real_literal] = ACTIONS(4532), - [sym_integer_literal] = ACTIONS(4530), - [sym_hex_literal] = ACTIONS(4532), - [sym_bin_literal] = ACTIONS(4532), - [anon_sym_true] = ACTIONS(4530), - [anon_sym_false] = ACTIONS(4530), - [anon_sym_SQUOTE] = ACTIONS(4532), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4532), - }, - [943] = { - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [882] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4534), - [anon_sym_get] = ACTIONS(4514), - [anon_sym_set] = ACTIONS(4516), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4417), + [anon_sym_get] = ACTIONS(4367), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -159545,302 +152017,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [944] = { - [sym_function_body] = STATE(1155), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4339), - [anon_sym_object] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_this] = ACTIONS(4339), - [anon_sym_super] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [sym_label] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [anon_sym_try] = ACTIONS(4339), - [anon_sym_throw] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_PLUS_EQ] = ACTIONS(4341), - [anon_sym_DASH_EQ] = ACTIONS(4341), - [anon_sym_STAR_EQ] = ACTIONS(4341), - [anon_sym_SLASH_EQ] = ACTIONS(4341), - [anon_sym_PERCENT_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4339), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4341), - [anon_sym_continue_AT] = ACTIONS(4341), - [anon_sym_break_AT] = ACTIONS(4341), - [anon_sym_this_AT] = ACTIONS(4341), - [anon_sym_super_AT] = ACTIONS(4341), - [sym_real_literal] = ACTIONS(4341), - [sym_integer_literal] = ACTIONS(4339), - [sym_hex_literal] = ACTIONS(4341), - [sym_bin_literal] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4339), - [anon_sym_false] = ACTIONS(4339), - [anon_sym_SQUOTE] = ACTIONS(4341), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4341), - }, - [945] = { - [aux_sym_user_type_repeat1] = STATE(837), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_fun] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_COMMA] = ACTIONS(4227), - [anon_sym_by] = ACTIONS(4225), - [anon_sym_LT] = ACTIONS(4225), - [anon_sym_GT] = ACTIONS(4225), - [anon_sym_where] = ACTIONS(4225), - [anon_sym_object] = ACTIONS(4225), - [anon_sym_DOT] = ACTIONS(4536), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [anon_sym_this] = ACTIONS(4225), - [anon_sym_super] = ACTIONS(4225), - [anon_sym_STAR] = ACTIONS(4225), - [sym_label] = ACTIONS(4225), - [anon_sym_in] = ACTIONS(4225), - [anon_sym_DOT_DOT] = ACTIONS(4227), - [anon_sym_QMARK_COLON] = ACTIONS(4227), - [anon_sym_AMP_AMP] = ACTIONS(4227), - [anon_sym_PIPE_PIPE] = ACTIONS(4227), - [anon_sym_null] = ACTIONS(4225), - [anon_sym_if] = ACTIONS(4225), - [anon_sym_else] = ACTIONS(4225), - [anon_sym_when] = ACTIONS(4225), - [anon_sym_try] = ACTIONS(4225), - [anon_sym_throw] = ACTIONS(4225), - [anon_sym_return] = ACTIONS(4225), - [anon_sym_continue] = ACTIONS(4225), - [anon_sym_break] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_PLUS_EQ] = ACTIONS(4227), - [anon_sym_DASH_EQ] = ACTIONS(4227), - [anon_sym_STAR_EQ] = ACTIONS(4227), - [anon_sym_SLASH_EQ] = ACTIONS(4227), - [anon_sym_PERCENT_EQ] = ACTIONS(4227), - [anon_sym_BANG_EQ] = ACTIONS(4225), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4227), - [anon_sym_EQ_EQ] = ACTIONS(4225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4227), - [anon_sym_LT_EQ] = ACTIONS(4227), - [anon_sym_GT_EQ] = ACTIONS(4227), - [anon_sym_BANGin] = ACTIONS(4227), - [anon_sym_is] = ACTIONS(4225), - [anon_sym_BANGis] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_SLASH] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_as_QMARK] = ACTIONS(4227), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG] = ACTIONS(4225), - [anon_sym_BANG_BANG] = ACTIONS(4227), - [anon_sym_suspend] = ACTIONS(4225), - [anon_sym_sealed] = ACTIONS(4225), - [anon_sym_annotation] = ACTIONS(4225), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_override] = ACTIONS(4225), - [anon_sym_lateinit] = ACTIONS(4225), - [anon_sym_public] = ACTIONS(4225), - [anon_sym_private] = ACTIONS(4225), - [anon_sym_internal] = ACTIONS(4225), - [anon_sym_protected] = ACTIONS(4225), - [anon_sym_tailrec] = ACTIONS(4225), - [anon_sym_operator] = ACTIONS(4225), - [anon_sym_infix] = ACTIONS(4225), - [anon_sym_inline] = ACTIONS(4225), - [anon_sym_external] = ACTIONS(4225), - [sym_property_modifier] = ACTIONS(4225), - [anon_sym_abstract] = ACTIONS(4225), - [anon_sym_final] = ACTIONS(4225), - [anon_sym_open] = ACTIONS(4225), - [anon_sym_vararg] = ACTIONS(4225), - [anon_sym_noinline] = ACTIONS(4225), - [anon_sym_crossinline] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4227), - [anon_sym_continue_AT] = ACTIONS(4227), - [anon_sym_break_AT] = ACTIONS(4227), - [anon_sym_this_AT] = ACTIONS(4227), - [anon_sym_super_AT] = ACTIONS(4227), - [sym_real_literal] = ACTIONS(4227), - [sym_integer_literal] = ACTIONS(4225), - [sym_hex_literal] = ACTIONS(4227), - [sym_bin_literal] = ACTIONS(4227), - [anon_sym_true] = ACTIONS(4225), - [anon_sym_false] = ACTIONS(4225), - [anon_sym_SQUOTE] = ACTIONS(4227), - [sym__backtick_identifier] = ACTIONS(4227), - [sym__automatic_semicolon] = ACTIONS(4227), - [sym_safe_nav] = ACTIONS(4227), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4227), }, - [946] = { - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [883] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4539), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4419), + [anon_sym_get] = ACTIONS(4367), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -159869,2061 +152125,459 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [947] = { - [aux_sym_type_constraints_repeat1] = STATE(933), - [sym__alpha_identifier] = ACTIONS(4541), - [anon_sym_AT] = ACTIONS(4543), - [anon_sym_LBRACK] = ACTIONS(4543), - [anon_sym_as] = ACTIONS(4541), - [anon_sym_EQ] = ACTIONS(4541), - [anon_sym_fun] = ACTIONS(4541), - [anon_sym_LBRACE] = ACTIONS(4543), - [anon_sym_RBRACE] = ACTIONS(4543), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_COMMA] = ACTIONS(4510), - [anon_sym_by] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4541), - [anon_sym_GT] = ACTIONS(4541), - [anon_sym_where] = ACTIONS(4541), - [anon_sym_object] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4541), - [anon_sym_SEMI] = ACTIONS(4543), - [anon_sym_get] = ACTIONS(4541), - [anon_sym_set] = ACTIONS(4541), - [anon_sym_this] = ACTIONS(4541), - [anon_sym_super] = ACTIONS(4541), - [anon_sym_STAR] = ACTIONS(4541), - [sym_label] = ACTIONS(4541), - [anon_sym_in] = ACTIONS(4541), - [anon_sym_DOT_DOT] = ACTIONS(4543), - [anon_sym_QMARK_COLON] = ACTIONS(4543), - [anon_sym_AMP_AMP] = ACTIONS(4543), - [anon_sym_PIPE_PIPE] = ACTIONS(4543), - [anon_sym_null] = ACTIONS(4541), - [anon_sym_if] = ACTIONS(4541), - [anon_sym_else] = ACTIONS(4541), - [anon_sym_when] = ACTIONS(4541), - [anon_sym_try] = ACTIONS(4541), - [anon_sym_throw] = ACTIONS(4541), - [anon_sym_return] = ACTIONS(4541), - [anon_sym_continue] = ACTIONS(4541), - [anon_sym_break] = ACTIONS(4541), - [anon_sym_COLON_COLON] = ACTIONS(4543), - [anon_sym_PLUS_EQ] = ACTIONS(4543), - [anon_sym_DASH_EQ] = ACTIONS(4543), - [anon_sym_STAR_EQ] = ACTIONS(4543), - [anon_sym_SLASH_EQ] = ACTIONS(4543), - [anon_sym_PERCENT_EQ] = ACTIONS(4543), - [anon_sym_BANG_EQ] = ACTIONS(4541), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4543), - [anon_sym_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4543), - [anon_sym_LT_EQ] = ACTIONS(4543), - [anon_sym_GT_EQ] = ACTIONS(4543), - [anon_sym_BANGin] = ACTIONS(4543), - [anon_sym_is] = ACTIONS(4541), - [anon_sym_BANGis] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4541), - [anon_sym_DASH] = ACTIONS(4541), - [anon_sym_SLASH] = ACTIONS(4541), - [anon_sym_PERCENT] = ACTIONS(4541), - [anon_sym_as_QMARK] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_BANG] = ACTIONS(4541), - [anon_sym_BANG_BANG] = ACTIONS(4543), - [anon_sym_suspend] = ACTIONS(4541), - [anon_sym_sealed] = ACTIONS(4541), - [anon_sym_annotation] = ACTIONS(4541), - [anon_sym_data] = ACTIONS(4541), - [anon_sym_inner] = ACTIONS(4541), - [anon_sym_value] = ACTIONS(4541), - [anon_sym_override] = ACTIONS(4541), - [anon_sym_lateinit] = ACTIONS(4541), - [anon_sym_public] = ACTIONS(4541), - [anon_sym_private] = ACTIONS(4541), - [anon_sym_internal] = ACTIONS(4541), - [anon_sym_protected] = ACTIONS(4541), - [anon_sym_tailrec] = ACTIONS(4541), - [anon_sym_operator] = ACTIONS(4541), - [anon_sym_infix] = ACTIONS(4541), - [anon_sym_inline] = ACTIONS(4541), - [anon_sym_external] = ACTIONS(4541), - [sym_property_modifier] = ACTIONS(4541), - [anon_sym_abstract] = ACTIONS(4541), - [anon_sym_final] = ACTIONS(4541), - [anon_sym_open] = ACTIONS(4541), - [anon_sym_vararg] = ACTIONS(4541), - [anon_sym_noinline] = ACTIONS(4541), - [anon_sym_crossinline] = ACTIONS(4541), - [anon_sym_expect] = ACTIONS(4541), - [anon_sym_actual] = ACTIONS(4541), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4543), - [anon_sym_continue_AT] = ACTIONS(4543), - [anon_sym_break_AT] = ACTIONS(4543), - [anon_sym_this_AT] = ACTIONS(4543), - [anon_sym_super_AT] = ACTIONS(4543), - [sym_real_literal] = ACTIONS(4543), - [sym_integer_literal] = ACTIONS(4541), - [sym_hex_literal] = ACTIONS(4543), - [sym_bin_literal] = ACTIONS(4543), - [anon_sym_true] = ACTIONS(4541), - [anon_sym_false] = ACTIONS(4541), - [anon_sym_SQUOTE] = ACTIONS(4543), - [sym__backtick_identifier] = ACTIONS(4543), - [sym__automatic_semicolon] = ACTIONS(4543), - [sym_safe_nav] = ACTIONS(4543), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4543), + [884] = { + [aux_sym_user_type_repeat1] = STATE(816), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_object] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_this] = ACTIONS(4193), + [anon_sym_super] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [sym_label] = ACTIONS(4193), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_when] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_throw] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4195), + [anon_sym_continue_AT] = ACTIONS(4195), + [anon_sym_break_AT] = ACTIONS(4195), + [anon_sym_this_AT] = ACTIONS(4195), + [anon_sym_super_AT] = ACTIONS(4195), + [sym_real_literal] = ACTIONS(4195), + [sym_integer_literal] = ACTIONS(4193), + [sym_hex_literal] = ACTIONS(4195), + [sym_bin_literal] = ACTIONS(4195), + [anon_sym_true] = ACTIONS(4193), + [anon_sym_false] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4195), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4195), }, - [948] = { - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4545), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [949] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3145), - [anon_sym_fun] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(3145), - [anon_sym_object] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3145), - [anon_sym_super] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(4561), - [anon_sym_DOT_DOT] = ACTIONS(4563), - [anon_sym_QMARK_COLON] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_null] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_when] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(4569), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4571), - [anon_sym_EQ_EQ] = ACTIONS(4569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4571), - [anon_sym_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_EQ] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4575), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3147), - [anon_sym_continue_AT] = ACTIONS(3147), - [anon_sym_break_AT] = ACTIONS(3147), - [anon_sym_this_AT] = ACTIONS(3147), - [anon_sym_super_AT] = ACTIONS(3147), - [sym_real_literal] = ACTIONS(3147), - [sym_integer_literal] = ACTIONS(3145), - [sym_hex_literal] = ACTIONS(3147), - [sym_bin_literal] = ACTIONS(3147), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3147), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3147), - }, - [950] = { - [sym__alpha_identifier] = ACTIONS(4587), - [anon_sym_AT] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_as] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_fun] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4589), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_LPAREN] = ACTIONS(4589), - [anon_sym_COMMA] = ACTIONS(4589), - [anon_sym_by] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4587), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_where] = ACTIONS(4587), - [anon_sym_object] = ACTIONS(4587), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [anon_sym_get] = ACTIONS(4587), - [anon_sym_set] = ACTIONS(4587), - [anon_sym_this] = ACTIONS(4587), - [anon_sym_super] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [sym_label] = ACTIONS(4587), - [anon_sym_in] = ACTIONS(4587), - [anon_sym_DOT_DOT] = ACTIONS(4589), - [anon_sym_QMARK_COLON] = ACTIONS(4589), - [anon_sym_AMP_AMP] = ACTIONS(4589), - [anon_sym_PIPE_PIPE] = ACTIONS(4589), - [anon_sym_null] = ACTIONS(4587), - [anon_sym_if] = ACTIONS(4587), - [anon_sym_else] = ACTIONS(4587), - [anon_sym_when] = ACTIONS(4587), - [anon_sym_try] = ACTIONS(4587), - [anon_sym_throw] = ACTIONS(4587), - [anon_sym_return] = ACTIONS(4587), - [anon_sym_continue] = ACTIONS(4587), - [anon_sym_break] = ACTIONS(4587), - [anon_sym_COLON_COLON] = ACTIONS(4589), - [anon_sym_PLUS_EQ] = ACTIONS(4589), - [anon_sym_DASH_EQ] = ACTIONS(4589), - [anon_sym_STAR_EQ] = ACTIONS(4589), - [anon_sym_SLASH_EQ] = ACTIONS(4589), - [anon_sym_PERCENT_EQ] = ACTIONS(4589), - [anon_sym_BANG_EQ] = ACTIONS(4587), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), - [anon_sym_EQ_EQ] = ACTIONS(4587), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), - [anon_sym_LT_EQ] = ACTIONS(4589), - [anon_sym_GT_EQ] = ACTIONS(4589), - [anon_sym_BANGin] = ACTIONS(4589), - [anon_sym_is] = ACTIONS(4587), - [anon_sym_BANGis] = ACTIONS(4589), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_as_QMARK] = ACTIONS(4589), - [anon_sym_PLUS_PLUS] = ACTIONS(4589), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_BANG_BANG] = ACTIONS(4589), - [anon_sym_suspend] = ACTIONS(4587), - [anon_sym_sealed] = ACTIONS(4587), - [anon_sym_annotation] = ACTIONS(4587), - [anon_sym_data] = ACTIONS(4587), - [anon_sym_inner] = ACTIONS(4587), - [anon_sym_value] = ACTIONS(4587), - [anon_sym_override] = ACTIONS(4587), - [anon_sym_lateinit] = ACTIONS(4587), - [anon_sym_public] = ACTIONS(4587), - [anon_sym_private] = ACTIONS(4587), - [anon_sym_internal] = ACTIONS(4587), - [anon_sym_protected] = ACTIONS(4587), - [anon_sym_tailrec] = ACTIONS(4587), - [anon_sym_operator] = ACTIONS(4587), - [anon_sym_infix] = ACTIONS(4587), - [anon_sym_inline] = ACTIONS(4587), - [anon_sym_external] = ACTIONS(4587), - [sym_property_modifier] = ACTIONS(4587), - [anon_sym_abstract] = ACTIONS(4587), - [anon_sym_final] = ACTIONS(4587), - [anon_sym_open] = ACTIONS(4587), - [anon_sym_vararg] = ACTIONS(4587), - [anon_sym_noinline] = ACTIONS(4587), - [anon_sym_crossinline] = ACTIONS(4587), - [anon_sym_expect] = ACTIONS(4587), - [anon_sym_actual] = ACTIONS(4587), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4589), - [anon_sym_continue_AT] = ACTIONS(4589), - [anon_sym_break_AT] = ACTIONS(4589), - [anon_sym_this_AT] = ACTIONS(4589), - [anon_sym_super_AT] = ACTIONS(4589), - [sym_real_literal] = ACTIONS(4589), - [sym_integer_literal] = ACTIONS(4587), - [sym_hex_literal] = ACTIONS(4589), - [sym_bin_literal] = ACTIONS(4589), - [anon_sym_true] = ACTIONS(4587), - [anon_sym_false] = ACTIONS(4587), - [anon_sym_SQUOTE] = ACTIONS(4589), - [sym__backtick_identifier] = ACTIONS(4589), - [sym__automatic_semicolon] = ACTIONS(4589), - [sym_safe_nav] = ACTIONS(4589), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4589), - }, - [951] = { - [sym__alpha_identifier] = ACTIONS(4591), - [anon_sym_AT] = ACTIONS(4593), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_as] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_fun] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4593), - [anon_sym_RBRACE] = ACTIONS(4593), - [anon_sym_LPAREN] = ACTIONS(4593), - [anon_sym_COMMA] = ACTIONS(4593), - [anon_sym_LT] = ACTIONS(4591), - [anon_sym_GT] = ACTIONS(4591), - [anon_sym_where] = ACTIONS(4591), - [anon_sym_object] = ACTIONS(4591), - [anon_sym_DOT] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4593), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), - [anon_sym_this] = ACTIONS(4591), - [anon_sym_super] = ACTIONS(4591), - [anon_sym_STAR] = ACTIONS(4591), - [sym_label] = ACTIONS(4591), - [anon_sym_in] = ACTIONS(4591), - [anon_sym_DOT_DOT] = ACTIONS(4593), - [anon_sym_QMARK_COLON] = ACTIONS(4593), - [anon_sym_AMP_AMP] = ACTIONS(4593), - [anon_sym_PIPE_PIPE] = ACTIONS(4593), - [anon_sym_null] = ACTIONS(4591), - [anon_sym_if] = ACTIONS(4591), - [anon_sym_else] = ACTIONS(4591), - [anon_sym_when] = ACTIONS(4591), - [anon_sym_try] = ACTIONS(4591), - [anon_sym_throw] = ACTIONS(4591), - [anon_sym_return] = ACTIONS(4591), - [anon_sym_continue] = ACTIONS(4591), - [anon_sym_break] = ACTIONS(4591), - [anon_sym_COLON_COLON] = ACTIONS(4593), - [anon_sym_PLUS_EQ] = ACTIONS(4593), - [anon_sym_DASH_EQ] = ACTIONS(4593), - [anon_sym_STAR_EQ] = ACTIONS(4593), - [anon_sym_SLASH_EQ] = ACTIONS(4593), - [anon_sym_PERCENT_EQ] = ACTIONS(4593), - [anon_sym_BANG_EQ] = ACTIONS(4591), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4593), - [anon_sym_EQ_EQ] = ACTIONS(4591), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4593), - [anon_sym_LT_EQ] = ACTIONS(4593), - [anon_sym_GT_EQ] = ACTIONS(4593), - [anon_sym_BANGin] = ACTIONS(4593), - [anon_sym_is] = ACTIONS(4591), - [anon_sym_BANGis] = ACTIONS(4593), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4591), - [anon_sym_SLASH] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_as_QMARK] = ACTIONS(4593), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(4591), - [anon_sym_BANG_BANG] = ACTIONS(4593), - [anon_sym_suspend] = ACTIONS(4591), - [anon_sym_sealed] = ACTIONS(4591), - [anon_sym_annotation] = ACTIONS(4591), - [anon_sym_data] = ACTIONS(4591), - [anon_sym_inner] = ACTIONS(4591), - [anon_sym_value] = ACTIONS(4591), - [anon_sym_override] = ACTIONS(4591), - [anon_sym_lateinit] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_internal] = ACTIONS(4591), - [anon_sym_protected] = ACTIONS(4591), - [anon_sym_tailrec] = ACTIONS(4591), - [anon_sym_operator] = ACTIONS(4591), - [anon_sym_infix] = ACTIONS(4591), - [anon_sym_inline] = ACTIONS(4591), - [anon_sym_external] = ACTIONS(4591), - [sym_property_modifier] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_open] = ACTIONS(4591), - [anon_sym_vararg] = ACTIONS(4591), - [anon_sym_noinline] = ACTIONS(4591), - [anon_sym_crossinline] = ACTIONS(4591), - [anon_sym_expect] = ACTIONS(4591), - [anon_sym_actual] = ACTIONS(4591), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4593), - [anon_sym_continue_AT] = ACTIONS(4593), - [anon_sym_break_AT] = ACTIONS(4593), - [anon_sym_this_AT] = ACTIONS(4593), - [anon_sym_super_AT] = ACTIONS(4593), - [sym_real_literal] = ACTIONS(4593), - [sym_integer_literal] = ACTIONS(4591), - [sym_hex_literal] = ACTIONS(4593), - [sym_bin_literal] = ACTIONS(4593), - [anon_sym_true] = ACTIONS(4591), - [anon_sym_false] = ACTIONS(4591), - [anon_sym_SQUOTE] = ACTIONS(4593), - [sym__backtick_identifier] = ACTIONS(4593), - [sym__automatic_semicolon] = ACTIONS(4593), - [sym_safe_nav] = ACTIONS(4593), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4593), - }, - [952] = { - [sym_class_body] = STATE(1198), - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_fun] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_LT] = ACTIONS(4595), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_where] = ACTIONS(4595), - [anon_sym_object] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_this] = ACTIONS(4595), - [anon_sym_super] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [sym_label] = ACTIONS(4595), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_if] = ACTIONS(4595), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_when] = ACTIONS(4595), - [anon_sym_try] = ACTIONS(4595), - [anon_sym_throw] = ACTIONS(4595), - [anon_sym_return] = ACTIONS(4595), - [anon_sym_continue] = ACTIONS(4595), - [anon_sym_break] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_suspend] = ACTIONS(4595), - [anon_sym_sealed] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4595), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_override] = ACTIONS(4595), - [anon_sym_lateinit] = ACTIONS(4595), - [anon_sym_public] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4595), - [anon_sym_internal] = ACTIONS(4595), - [anon_sym_protected] = ACTIONS(4595), - [anon_sym_tailrec] = ACTIONS(4595), - [anon_sym_operator] = ACTIONS(4595), - [anon_sym_infix] = ACTIONS(4595), - [anon_sym_inline] = ACTIONS(4595), - [anon_sym_external] = ACTIONS(4595), - [sym_property_modifier] = ACTIONS(4595), - [anon_sym_abstract] = ACTIONS(4595), - [anon_sym_final] = ACTIONS(4595), - [anon_sym_open] = ACTIONS(4595), - [anon_sym_vararg] = ACTIONS(4595), - [anon_sym_noinline] = ACTIONS(4595), - [anon_sym_crossinline] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4597), - [anon_sym_continue_AT] = ACTIONS(4597), - [anon_sym_break_AT] = ACTIONS(4597), - [anon_sym_this_AT] = ACTIONS(4597), - [anon_sym_super_AT] = ACTIONS(4597), - [sym_real_literal] = ACTIONS(4597), - [sym_integer_literal] = ACTIONS(4595), - [sym_hex_literal] = ACTIONS(4597), - [sym_bin_literal] = ACTIONS(4597), - [anon_sym_true] = ACTIONS(4595), - [anon_sym_false] = ACTIONS(4595), - [anon_sym_SQUOTE] = ACTIONS(4597), - [sym__backtick_identifier] = ACTIONS(4597), - [sym__automatic_semicolon] = ACTIONS(4597), - [sym_safe_nav] = ACTIONS(4597), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4597), - }, - [953] = { - [sym_enum_class_body] = STATE(1198), - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_fun] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_LT] = ACTIONS(4595), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_where] = ACTIONS(4595), - [anon_sym_object] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_this] = ACTIONS(4595), - [anon_sym_super] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [sym_label] = ACTIONS(4595), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_if] = ACTIONS(4595), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_when] = ACTIONS(4595), - [anon_sym_try] = ACTIONS(4595), - [anon_sym_throw] = ACTIONS(4595), - [anon_sym_return] = ACTIONS(4595), - [anon_sym_continue] = ACTIONS(4595), - [anon_sym_break] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_suspend] = ACTIONS(4595), - [anon_sym_sealed] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4595), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_override] = ACTIONS(4595), - [anon_sym_lateinit] = ACTIONS(4595), - [anon_sym_public] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4595), - [anon_sym_internal] = ACTIONS(4595), - [anon_sym_protected] = ACTIONS(4595), - [anon_sym_tailrec] = ACTIONS(4595), - [anon_sym_operator] = ACTIONS(4595), - [anon_sym_infix] = ACTIONS(4595), - [anon_sym_inline] = ACTIONS(4595), - [anon_sym_external] = ACTIONS(4595), - [sym_property_modifier] = ACTIONS(4595), - [anon_sym_abstract] = ACTIONS(4595), - [anon_sym_final] = ACTIONS(4595), - [anon_sym_open] = ACTIONS(4595), - [anon_sym_vararg] = ACTIONS(4595), - [anon_sym_noinline] = ACTIONS(4595), - [anon_sym_crossinline] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4597), - [anon_sym_continue_AT] = ACTIONS(4597), - [anon_sym_break_AT] = ACTIONS(4597), - [anon_sym_this_AT] = ACTIONS(4597), - [anon_sym_super_AT] = ACTIONS(4597), - [sym_real_literal] = ACTIONS(4597), - [sym_integer_literal] = ACTIONS(4595), - [sym_hex_literal] = ACTIONS(4597), - [sym_bin_literal] = ACTIONS(4597), - [anon_sym_true] = ACTIONS(4595), - [anon_sym_false] = ACTIONS(4595), - [anon_sym_SQUOTE] = ACTIONS(4597), - [sym__backtick_identifier] = ACTIONS(4597), - [sym__automatic_semicolon] = ACTIONS(4597), - [sym_safe_nav] = ACTIONS(4597), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4597), - }, - [954] = { - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4601), - [anon_sym_get] = ACTIONS(4603), - [anon_sym_set] = ACTIONS(4605), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [955] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3156), - [anon_sym_super] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(4561), - [anon_sym_DOT_DOT] = ACTIONS(4563), - [anon_sym_QMARK_COLON] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(4631), - [anon_sym_PIPE_PIPE] = ACTIONS(4633), - [anon_sym_null] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_when] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_STAR_EQ] = ACTIONS(3158), - [anon_sym_SLASH_EQ] = ACTIONS(3158), - [anon_sym_PERCENT_EQ] = ACTIONS(3158), - [anon_sym_BANG_EQ] = ACTIONS(4569), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4571), - [anon_sym_EQ_EQ] = ACTIONS(4569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4571), - [anon_sym_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_EQ] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4575), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3158), - [anon_sym_continue_AT] = ACTIONS(3158), - [anon_sym_break_AT] = ACTIONS(3158), - [anon_sym_this_AT] = ACTIONS(3158), - [anon_sym_super_AT] = ACTIONS(3158), - [sym_real_literal] = ACTIONS(3158), - [sym_integer_literal] = ACTIONS(3156), - [sym_hex_literal] = ACTIONS(3158), - [sym_bin_literal] = ACTIONS(3158), - [anon_sym_true] = ACTIONS(3156), - [anon_sym_false] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3158), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3158), - }, - [956] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym_fun] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(3105), - [anon_sym_object] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3105), - [anon_sym_super] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(4561), - [anon_sym_DOT_DOT] = ACTIONS(4563), - [anon_sym_QMARK_COLON] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(4631), - [anon_sym_PIPE_PIPE] = ACTIONS(4633), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_when] = ACTIONS(3105), - [anon_sym_try] = ACTIONS(3105), - [anon_sym_throw] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(4569), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4571), - [anon_sym_EQ_EQ] = ACTIONS(4569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4571), - [anon_sym_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_EQ] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4575), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3107), - [anon_sym_continue_AT] = ACTIONS(3107), - [anon_sym_break_AT] = ACTIONS(3107), - [anon_sym_this_AT] = ACTIONS(3107), - [anon_sym_super_AT] = ACTIONS(3107), - [sym_real_literal] = ACTIONS(3107), - [sym_integer_literal] = ACTIONS(3105), - [sym_hex_literal] = ACTIONS(3107), - [sym_bin_literal] = ACTIONS(3107), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3107), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3107), - }, - [957] = { - [sym_function_body] = STATE(1155), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(4635), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_object] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_this] = ACTIONS(4339), - [anon_sym_super] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [sym_label] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [anon_sym_try] = ACTIONS(4339), - [anon_sym_throw] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_PLUS_EQ] = ACTIONS(4341), - [anon_sym_DASH_EQ] = ACTIONS(4341), - [anon_sym_STAR_EQ] = ACTIONS(4341), - [anon_sym_SLASH_EQ] = ACTIONS(4341), - [anon_sym_PERCENT_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4339), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4341), - [anon_sym_continue_AT] = ACTIONS(4341), - [anon_sym_break_AT] = ACTIONS(4341), - [anon_sym_this_AT] = ACTIONS(4341), - [anon_sym_super_AT] = ACTIONS(4341), - [sym_real_literal] = ACTIONS(4341), - [sym_integer_literal] = ACTIONS(4339), - [sym_hex_literal] = ACTIONS(4341), - [sym_bin_literal] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4339), - [anon_sym_false] = ACTIONS(4339), - [anon_sym_SQUOTE] = ACTIONS(4341), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4341), - }, - [958] = { - [sym_class_body] = STATE(1203), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_fun] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(4275), - [anon_sym_object] = ACTIONS(4275), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_this] = ACTIONS(4275), - [anon_sym_super] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), - [sym_label] = ACTIONS(4275), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4275), - [anon_sym_if] = ACTIONS(4275), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_when] = ACTIONS(4275), - [anon_sym_try] = ACTIONS(4275), - [anon_sym_throw] = ACTIONS(4275), - [anon_sym_return] = ACTIONS(4275), - [anon_sym_continue] = ACTIONS(4275), - [anon_sym_break] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_PLUS_EQ] = ACTIONS(4277), - [anon_sym_DASH_EQ] = ACTIONS(4277), - [anon_sym_STAR_EQ] = ACTIONS(4277), - [anon_sym_SLASH_EQ] = ACTIONS(4277), - [anon_sym_PERCENT_EQ] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_suspend] = ACTIONS(4275), - [anon_sym_sealed] = ACTIONS(4275), - [anon_sym_annotation] = ACTIONS(4275), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_override] = ACTIONS(4275), - [anon_sym_lateinit] = ACTIONS(4275), - [anon_sym_public] = ACTIONS(4275), - [anon_sym_private] = ACTIONS(4275), - [anon_sym_internal] = ACTIONS(4275), - [anon_sym_protected] = ACTIONS(4275), - [anon_sym_tailrec] = ACTIONS(4275), - [anon_sym_operator] = ACTIONS(4275), - [anon_sym_infix] = ACTIONS(4275), - [anon_sym_inline] = ACTIONS(4275), - [anon_sym_external] = ACTIONS(4275), - [sym_property_modifier] = ACTIONS(4275), - [anon_sym_abstract] = ACTIONS(4275), - [anon_sym_final] = ACTIONS(4275), - [anon_sym_open] = ACTIONS(4275), - [anon_sym_vararg] = ACTIONS(4275), - [anon_sym_noinline] = ACTIONS(4275), - [anon_sym_crossinline] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4277), - [anon_sym_continue_AT] = ACTIONS(4277), - [anon_sym_break_AT] = ACTIONS(4277), - [anon_sym_this_AT] = ACTIONS(4277), - [anon_sym_super_AT] = ACTIONS(4277), - [sym_real_literal] = ACTIONS(4277), - [sym_integer_literal] = ACTIONS(4275), - [sym_hex_literal] = ACTIONS(4277), - [sym_bin_literal] = ACTIONS(4277), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [anon_sym_SQUOTE] = ACTIONS(4277), - [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), - }, - [959] = { - [sym_enum_class_body] = STATE(1130), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(4281), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), - }, - [960] = { - [sym_class_body] = STATE(1145), - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_fun] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_object] = ACTIONS(4637), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_this] = ACTIONS(4637), - [anon_sym_super] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [sym_label] = ACTIONS(4637), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_null] = ACTIONS(4637), - [anon_sym_if] = ACTIONS(4637), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_when] = ACTIONS(4637), - [anon_sym_try] = ACTIONS(4637), - [anon_sym_throw] = ACTIONS(4637), - [anon_sym_return] = ACTIONS(4637), - [anon_sym_continue] = ACTIONS(4637), - [anon_sym_break] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_suspend] = ACTIONS(4637), - [anon_sym_sealed] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4637), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_override] = ACTIONS(4637), - [anon_sym_lateinit] = ACTIONS(4637), - [anon_sym_public] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4637), - [anon_sym_internal] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4637), - [anon_sym_tailrec] = ACTIONS(4637), - [anon_sym_operator] = ACTIONS(4637), - [anon_sym_infix] = ACTIONS(4637), - [anon_sym_inline] = ACTIONS(4637), - [anon_sym_external] = ACTIONS(4637), - [sym_property_modifier] = ACTIONS(4637), - [anon_sym_abstract] = ACTIONS(4637), - [anon_sym_final] = ACTIONS(4637), - [anon_sym_open] = ACTIONS(4637), - [anon_sym_vararg] = ACTIONS(4637), - [anon_sym_noinline] = ACTIONS(4637), - [anon_sym_crossinline] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4639), - [anon_sym_continue_AT] = ACTIONS(4639), - [anon_sym_break_AT] = ACTIONS(4639), - [anon_sym_this_AT] = ACTIONS(4639), - [anon_sym_super_AT] = ACTIONS(4639), - [sym_real_literal] = ACTIONS(4639), - [sym_integer_literal] = ACTIONS(4637), - [sym_hex_literal] = ACTIONS(4639), - [sym_bin_literal] = ACTIONS(4639), - [anon_sym_true] = ACTIONS(4637), - [anon_sym_false] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4639), - [sym__backtick_identifier] = ACTIONS(4639), - [sym__automatic_semicolon] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4639), - }, - [961] = { - [sym__alpha_identifier] = ACTIONS(4641), - [anon_sym_AT] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_as] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_fun] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4643), - [anon_sym_RBRACE] = ACTIONS(4643), - [anon_sym_LPAREN] = ACTIONS(4643), - [anon_sym_COMMA] = ACTIONS(4643), - [anon_sym_LT] = ACTIONS(4641), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_where] = ACTIONS(4641), - [anon_sym_object] = ACTIONS(4641), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4643), - [anon_sym_get] = ACTIONS(4641), - [anon_sym_set] = ACTIONS(4641), - [anon_sym_this] = ACTIONS(4641), - [anon_sym_super] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [sym_label] = ACTIONS(4641), - [anon_sym_in] = ACTIONS(4641), - [anon_sym_DOT_DOT] = ACTIONS(4643), - [anon_sym_QMARK_COLON] = ACTIONS(4643), - [anon_sym_AMP_AMP] = ACTIONS(4643), - [anon_sym_PIPE_PIPE] = ACTIONS(4643), - [anon_sym_null] = ACTIONS(4641), - [anon_sym_if] = ACTIONS(4641), - [anon_sym_else] = ACTIONS(4641), - [anon_sym_when] = ACTIONS(4641), - [anon_sym_try] = ACTIONS(4641), - [anon_sym_throw] = ACTIONS(4641), - [anon_sym_return] = ACTIONS(4641), - [anon_sym_continue] = ACTIONS(4641), - [anon_sym_break] = ACTIONS(4641), - [anon_sym_COLON_COLON] = ACTIONS(4643), - [anon_sym_PLUS_EQ] = ACTIONS(4643), - [anon_sym_DASH_EQ] = ACTIONS(4643), - [anon_sym_STAR_EQ] = ACTIONS(4643), - [anon_sym_SLASH_EQ] = ACTIONS(4643), - [anon_sym_PERCENT_EQ] = ACTIONS(4643), - [anon_sym_BANG_EQ] = ACTIONS(4641), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4643), - [anon_sym_EQ_EQ] = ACTIONS(4641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4643), - [anon_sym_LT_EQ] = ACTIONS(4643), - [anon_sym_GT_EQ] = ACTIONS(4643), - [anon_sym_BANGin] = ACTIONS(4643), - [anon_sym_is] = ACTIONS(4641), - [anon_sym_BANGis] = ACTIONS(4643), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4641), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_as_QMARK] = ACTIONS(4643), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_suspend] = ACTIONS(4641), - [anon_sym_sealed] = ACTIONS(4641), - [anon_sym_annotation] = ACTIONS(4641), - [anon_sym_data] = ACTIONS(4641), - [anon_sym_inner] = ACTIONS(4641), - [anon_sym_value] = ACTIONS(4641), - [anon_sym_override] = ACTIONS(4641), - [anon_sym_lateinit] = ACTIONS(4641), - [anon_sym_public] = ACTIONS(4641), - [anon_sym_private] = ACTIONS(4641), - [anon_sym_internal] = ACTIONS(4641), - [anon_sym_protected] = ACTIONS(4641), - [anon_sym_tailrec] = ACTIONS(4641), - [anon_sym_operator] = ACTIONS(4641), - [anon_sym_infix] = ACTIONS(4641), - [anon_sym_inline] = ACTIONS(4641), - [anon_sym_external] = ACTIONS(4641), - [sym_property_modifier] = ACTIONS(4641), - [anon_sym_abstract] = ACTIONS(4641), - [anon_sym_final] = ACTIONS(4641), - [anon_sym_open] = ACTIONS(4641), - [anon_sym_vararg] = ACTIONS(4641), - [anon_sym_noinline] = ACTIONS(4641), - [anon_sym_crossinline] = ACTIONS(4641), - [anon_sym_expect] = ACTIONS(4641), - [anon_sym_actual] = ACTIONS(4641), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4643), - [anon_sym_continue_AT] = ACTIONS(4643), - [anon_sym_break_AT] = ACTIONS(4643), - [anon_sym_this_AT] = ACTIONS(4643), - [anon_sym_super_AT] = ACTIONS(4643), - [anon_sym_AT2] = ACTIONS(4645), - [sym_real_literal] = ACTIONS(4643), - [sym_integer_literal] = ACTIONS(4641), - [sym_hex_literal] = ACTIONS(4643), - [sym_bin_literal] = ACTIONS(4643), - [anon_sym_true] = ACTIONS(4641), - [anon_sym_false] = ACTIONS(4641), - [anon_sym_SQUOTE] = ACTIONS(4643), - [sym__backtick_identifier] = ACTIONS(4643), - [sym__automatic_semicolon] = ACTIONS(4643), - [sym_safe_nav] = ACTIONS(4643), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4643), - }, - [962] = { - [sym_class_body] = STATE(1146), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_fun] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(4465), - [anon_sym_object] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_this] = ACTIONS(4465), - [anon_sym_super] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [sym_label] = ACTIONS(4465), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_null] = ACTIONS(4465), - [anon_sym_if] = ACTIONS(4465), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_when] = ACTIONS(4465), - [anon_sym_try] = ACTIONS(4465), - [anon_sym_throw] = ACTIONS(4465), - [anon_sym_return] = ACTIONS(4465), - [anon_sym_continue] = ACTIONS(4465), - [anon_sym_break] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_suspend] = ACTIONS(4465), - [anon_sym_sealed] = ACTIONS(4465), - [anon_sym_annotation] = ACTIONS(4465), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_override] = ACTIONS(4465), - [anon_sym_lateinit] = ACTIONS(4465), - [anon_sym_public] = ACTIONS(4465), - [anon_sym_private] = ACTIONS(4465), - [anon_sym_internal] = ACTIONS(4465), - [anon_sym_protected] = ACTIONS(4465), - [anon_sym_tailrec] = ACTIONS(4465), - [anon_sym_operator] = ACTIONS(4465), - [anon_sym_infix] = ACTIONS(4465), - [anon_sym_inline] = ACTIONS(4465), - [anon_sym_external] = ACTIONS(4465), - [sym_property_modifier] = ACTIONS(4465), - [anon_sym_abstract] = ACTIONS(4465), - [anon_sym_final] = ACTIONS(4465), - [anon_sym_open] = ACTIONS(4465), - [anon_sym_vararg] = ACTIONS(4465), - [anon_sym_noinline] = ACTIONS(4465), - [anon_sym_crossinline] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4467), - [anon_sym_continue_AT] = ACTIONS(4467), - [anon_sym_break_AT] = ACTIONS(4467), - [anon_sym_this_AT] = ACTIONS(4467), - [anon_sym_super_AT] = ACTIONS(4467), - [sym_real_literal] = ACTIONS(4467), - [sym_integer_literal] = ACTIONS(4465), - [sym_hex_literal] = ACTIONS(4467), - [sym_bin_literal] = ACTIONS(4467), - [anon_sym_true] = ACTIONS(4465), - [anon_sym_false] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4467), - [sym__backtick_identifier] = ACTIONS(4467), - [sym__automatic_semicolon] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4467), - }, - [963] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_fun] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(3192), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3192), - [anon_sym_super] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(4561), - [anon_sym_DOT_DOT] = ACTIONS(4563), - [anon_sym_QMARK_COLON] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(4631), - [anon_sym_PIPE_PIPE] = ACTIONS(4633), - [anon_sym_null] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_when] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3194), - [anon_sym_DASH_EQ] = ACTIONS(3194), - [anon_sym_STAR_EQ] = ACTIONS(3194), - [anon_sym_SLASH_EQ] = ACTIONS(3194), - [anon_sym_PERCENT_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ] = ACTIONS(4569), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4571), - [anon_sym_EQ_EQ] = ACTIONS(4569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4571), - [anon_sym_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_EQ] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4575), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3194), - [anon_sym_continue_AT] = ACTIONS(3194), - [anon_sym_break_AT] = ACTIONS(3194), - [anon_sym_this_AT] = ACTIONS(3194), - [anon_sym_super_AT] = ACTIONS(3194), - [sym_real_literal] = ACTIONS(3194), - [sym_integer_literal] = ACTIONS(3192), - [sym_hex_literal] = ACTIONS(3194), - [sym_bin_literal] = ACTIONS(3194), - [anon_sym_true] = ACTIONS(3192), - [anon_sym_false] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3194), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3194), + [885] = { + [aux_sym_type_constraints_repeat1] = STATE(891), + [sym__alpha_identifier] = ACTIONS(4424), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_as] = ACTIONS(4424), + [anon_sym_EQ] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(4343), + [anon_sym_by] = ACTIONS(4424), + [anon_sym_LT] = ACTIONS(4424), + [anon_sym_GT] = ACTIONS(4424), + [anon_sym_where] = ACTIONS(4424), + [anon_sym_object] = ACTIONS(4424), + [anon_sym_fun] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym_get] = ACTIONS(4424), + [anon_sym_set] = ACTIONS(4424), + [anon_sym_this] = ACTIONS(4424), + [anon_sym_super] = ACTIONS(4424), + [anon_sym_STAR] = ACTIONS(4424), + [sym_label] = ACTIONS(4424), + [anon_sym_in] = ACTIONS(4424), + [anon_sym_DOT_DOT] = ACTIONS(4426), + [anon_sym_QMARK_COLON] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_PIPE_PIPE] = ACTIONS(4426), + [anon_sym_null] = ACTIONS(4424), + [anon_sym_if] = ACTIONS(4424), + [anon_sym_else] = ACTIONS(4424), + [anon_sym_when] = ACTIONS(4424), + [anon_sym_try] = ACTIONS(4424), + [anon_sym_throw] = ACTIONS(4424), + [anon_sym_return] = ACTIONS(4424), + [anon_sym_continue] = ACTIONS(4424), + [anon_sym_break] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_PERCENT_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4424), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4426), + [anon_sym_EQ_EQ] = ACTIONS(4424), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4426), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_BANGin] = ACTIONS(4426), + [anon_sym_is] = ACTIONS(4424), + [anon_sym_BANGis] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_SLASH] = ACTIONS(4424), + [anon_sym_PERCENT] = ACTIONS(4424), + [anon_sym_as_QMARK] = ACTIONS(4426), + [anon_sym_PLUS_PLUS] = ACTIONS(4426), + [anon_sym_DASH_DASH] = ACTIONS(4426), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_BANG_BANG] = ACTIONS(4426), + [anon_sym_suspend] = ACTIONS(4424), + [anon_sym_sealed] = ACTIONS(4424), + [anon_sym_annotation] = ACTIONS(4424), + [anon_sym_data] = ACTIONS(4424), + [anon_sym_inner] = ACTIONS(4424), + [anon_sym_value] = ACTIONS(4424), + [anon_sym_override] = ACTIONS(4424), + [anon_sym_lateinit] = ACTIONS(4424), + [anon_sym_public] = ACTIONS(4424), + [anon_sym_private] = ACTIONS(4424), + [anon_sym_internal] = ACTIONS(4424), + [anon_sym_protected] = ACTIONS(4424), + [anon_sym_tailrec] = ACTIONS(4424), + [anon_sym_operator] = ACTIONS(4424), + [anon_sym_infix] = ACTIONS(4424), + [anon_sym_inline] = ACTIONS(4424), + [anon_sym_external] = ACTIONS(4424), + [sym_property_modifier] = ACTIONS(4424), + [anon_sym_abstract] = ACTIONS(4424), + [anon_sym_final] = ACTIONS(4424), + [anon_sym_open] = ACTIONS(4424), + [anon_sym_vararg] = ACTIONS(4424), + [anon_sym_noinline] = ACTIONS(4424), + [anon_sym_crossinline] = ACTIONS(4424), + [anon_sym_expect] = ACTIONS(4424), + [anon_sym_actual] = ACTIONS(4424), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4426), + [anon_sym_continue_AT] = ACTIONS(4426), + [anon_sym_break_AT] = ACTIONS(4426), + [anon_sym_this_AT] = ACTIONS(4426), + [anon_sym_super_AT] = ACTIONS(4426), + [sym_real_literal] = ACTIONS(4426), + [sym_integer_literal] = ACTIONS(4424), + [sym_hex_literal] = ACTIONS(4426), + [sym_bin_literal] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4424), + [anon_sym_false] = ACTIONS(4424), + [anon_sym_SQUOTE] = ACTIONS(4426), + [sym__backtick_identifier] = ACTIONS(4426), + [sym__automatic_semicolon] = ACTIONS(4426), + [sym_safe_nav] = ACTIONS(4426), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4426), }, - [964] = { - [sym__alpha_identifier] = ACTIONS(4647), - [anon_sym_AT] = ACTIONS(4649), - [anon_sym_LBRACK] = ACTIONS(4649), - [anon_sym_as] = ACTIONS(4647), - [anon_sym_EQ] = ACTIONS(4647), - [anon_sym_fun] = ACTIONS(4647), - [anon_sym_LBRACE] = ACTIONS(4649), - [anon_sym_RBRACE] = ACTIONS(4649), - [anon_sym_LPAREN] = ACTIONS(4649), - [anon_sym_COMMA] = ACTIONS(4649), - [anon_sym_by] = ACTIONS(4647), - [anon_sym_LT] = ACTIONS(4647), - [anon_sym_GT] = ACTIONS(4647), - [anon_sym_where] = ACTIONS(4647), - [anon_sym_object] = ACTIONS(4647), - [anon_sym_DOT] = ACTIONS(4647), - [anon_sym_SEMI] = ACTIONS(4649), - [anon_sym_get] = ACTIONS(4647), - [anon_sym_set] = ACTIONS(4647), - [anon_sym_this] = ACTIONS(4647), - [anon_sym_super] = ACTIONS(4647), - [anon_sym_STAR] = ACTIONS(4647), - [sym_label] = ACTIONS(4647), - [anon_sym_in] = ACTIONS(4647), - [anon_sym_DOT_DOT] = ACTIONS(4649), - [anon_sym_QMARK_COLON] = ACTIONS(4649), - [anon_sym_AMP_AMP] = ACTIONS(4649), - [anon_sym_PIPE_PIPE] = ACTIONS(4649), - [anon_sym_null] = ACTIONS(4647), - [anon_sym_if] = ACTIONS(4647), - [anon_sym_else] = ACTIONS(4647), - [anon_sym_when] = ACTIONS(4647), - [anon_sym_try] = ACTIONS(4647), - [anon_sym_throw] = ACTIONS(4647), - [anon_sym_return] = ACTIONS(4647), - [anon_sym_continue] = ACTIONS(4647), - [anon_sym_break] = ACTIONS(4647), - [anon_sym_COLON_COLON] = ACTIONS(4649), - [anon_sym_PLUS_EQ] = ACTIONS(4649), - [anon_sym_DASH_EQ] = ACTIONS(4649), - [anon_sym_STAR_EQ] = ACTIONS(4649), - [anon_sym_SLASH_EQ] = ACTIONS(4649), - [anon_sym_PERCENT_EQ] = ACTIONS(4649), - [anon_sym_BANG_EQ] = ACTIONS(4647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4649), - [anon_sym_EQ_EQ] = ACTIONS(4647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4649), - [anon_sym_LT_EQ] = ACTIONS(4649), - [anon_sym_GT_EQ] = ACTIONS(4649), - [anon_sym_BANGin] = ACTIONS(4649), - [anon_sym_is] = ACTIONS(4647), - [anon_sym_BANGis] = ACTIONS(4649), - [anon_sym_PLUS] = ACTIONS(4647), - [anon_sym_DASH] = ACTIONS(4647), - [anon_sym_SLASH] = ACTIONS(4647), - [anon_sym_PERCENT] = ACTIONS(4647), - [anon_sym_as_QMARK] = ACTIONS(4649), - [anon_sym_PLUS_PLUS] = ACTIONS(4649), - [anon_sym_DASH_DASH] = ACTIONS(4649), - [anon_sym_BANG] = ACTIONS(4647), - [anon_sym_BANG_BANG] = ACTIONS(4649), - [anon_sym_suspend] = ACTIONS(4647), - [anon_sym_sealed] = ACTIONS(4647), - [anon_sym_annotation] = ACTIONS(4647), - [anon_sym_data] = ACTIONS(4647), - [anon_sym_inner] = ACTIONS(4647), - [anon_sym_value] = ACTIONS(4647), - [anon_sym_override] = ACTIONS(4647), - [anon_sym_lateinit] = ACTIONS(4647), - [anon_sym_public] = ACTIONS(4647), - [anon_sym_private] = ACTIONS(4647), - [anon_sym_internal] = ACTIONS(4647), - [anon_sym_protected] = ACTIONS(4647), - [anon_sym_tailrec] = ACTIONS(4647), - [anon_sym_operator] = ACTIONS(4647), - [anon_sym_infix] = ACTIONS(4647), - [anon_sym_inline] = ACTIONS(4647), - [anon_sym_external] = ACTIONS(4647), - [sym_property_modifier] = ACTIONS(4647), - [anon_sym_abstract] = ACTIONS(4647), - [anon_sym_final] = ACTIONS(4647), - [anon_sym_open] = ACTIONS(4647), - [anon_sym_vararg] = ACTIONS(4647), - [anon_sym_noinline] = ACTIONS(4647), - [anon_sym_crossinline] = ACTIONS(4647), - [anon_sym_expect] = ACTIONS(4647), - [anon_sym_actual] = ACTIONS(4647), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4649), - [anon_sym_continue_AT] = ACTIONS(4649), - [anon_sym_break_AT] = ACTIONS(4649), - [anon_sym_this_AT] = ACTIONS(4649), - [anon_sym_super_AT] = ACTIONS(4649), - [sym_real_literal] = ACTIONS(4649), - [sym_integer_literal] = ACTIONS(4647), - [sym_hex_literal] = ACTIONS(4649), - [sym_bin_literal] = ACTIONS(4649), - [anon_sym_true] = ACTIONS(4647), - [anon_sym_false] = ACTIONS(4647), - [anon_sym_SQUOTE] = ACTIONS(4649), - [sym__backtick_identifier] = ACTIONS(4649), - [sym__automatic_semicolon] = ACTIONS(4649), - [sym_safe_nav] = ACTIONS(4649), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4649), + [886] = { + [sym_type_constraints] = STATE(963), + [sym_enum_class_body] = STATE(1140), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, - [965] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(4561), - [anon_sym_DOT_DOT] = ACTIONS(4563), - [anon_sym_QMARK_COLON] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(4631), - [anon_sym_PIPE_PIPE] = ACTIONS(4633), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(4569), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4571), - [anon_sym_EQ_EQ] = ACTIONS(4569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4571), - [anon_sym_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_EQ] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4575), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [anon_sym_this_AT] = ACTIONS(3198), - [anon_sym_super_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [887] = { + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, - [966] = { - [sym_function_body] = STATE(1202), - [sym__block] = STATE(1092), + [888] = { + [sym_type_constraints] = STATE(990), + [sym_enum_class_body] = STATE(1133), [sym__alpha_identifier] = ACTIONS(4321), [anon_sym_AT] = ACTIONS(4323), - [anon_sym_COLON] = ACTIONS(4651), + [anon_sym_COLON] = ACTIONS(4428), [anon_sym_LBRACK] = ACTIONS(4323), [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3240), [anon_sym_RBRACE] = ACTIONS(4323), [anon_sym_LPAREN] = ACTIONS(4323), [anon_sym_LT] = ACTIONS(4321), [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), [anon_sym_DOT] = ACTIONS(4321), [anon_sym_SEMI] = ACTIONS(4323), [anon_sym_get] = ACTIONS(4321), @@ -162015,2650 +152669,4078 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4323), }, - [967] = { - [sym__alpha_identifier] = ACTIONS(4653), - [anon_sym_AT] = ACTIONS(4655), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_as] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_fun] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4655), - [anon_sym_RBRACE] = ACTIONS(4655), - [anon_sym_LPAREN] = ACTIONS(4655), - [anon_sym_COMMA] = ACTIONS(4655), - [anon_sym_LT] = ACTIONS(4653), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_where] = ACTIONS(4653), - [anon_sym_object] = ACTIONS(4653), - [anon_sym_DOT] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4655), - [anon_sym_get] = ACTIONS(4653), - [anon_sym_set] = ACTIONS(4653), - [anon_sym_this] = ACTIONS(4653), - [anon_sym_super] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [sym_label] = ACTIONS(4653), - [anon_sym_in] = ACTIONS(4653), - [anon_sym_DOT_DOT] = ACTIONS(4655), - [anon_sym_QMARK_COLON] = ACTIONS(4655), - [anon_sym_AMP_AMP] = ACTIONS(4655), - [anon_sym_PIPE_PIPE] = ACTIONS(4655), - [anon_sym_null] = ACTIONS(4653), - [anon_sym_if] = ACTIONS(4653), - [anon_sym_else] = ACTIONS(4653), - [anon_sym_when] = ACTIONS(4653), - [anon_sym_try] = ACTIONS(4653), - [anon_sym_throw] = ACTIONS(4653), - [anon_sym_return] = ACTIONS(4653), - [anon_sym_continue] = ACTIONS(4653), - [anon_sym_break] = ACTIONS(4653), - [anon_sym_COLON_COLON] = ACTIONS(4655), - [anon_sym_PLUS_EQ] = ACTIONS(4655), - [anon_sym_DASH_EQ] = ACTIONS(4655), - [anon_sym_STAR_EQ] = ACTIONS(4655), - [anon_sym_SLASH_EQ] = ACTIONS(4655), - [anon_sym_PERCENT_EQ] = ACTIONS(4655), - [anon_sym_BANG_EQ] = ACTIONS(4653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4655), - [anon_sym_EQ_EQ] = ACTIONS(4653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4655), - [anon_sym_LT_EQ] = ACTIONS(4655), - [anon_sym_GT_EQ] = ACTIONS(4655), - [anon_sym_BANGin] = ACTIONS(4655), - [anon_sym_is] = ACTIONS(4653), - [anon_sym_BANGis] = ACTIONS(4655), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_as_QMARK] = ACTIONS(4655), - [anon_sym_PLUS_PLUS] = ACTIONS(4655), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_BANG_BANG] = ACTIONS(4655), - [anon_sym_suspend] = ACTIONS(4653), - [anon_sym_sealed] = ACTIONS(4653), - [anon_sym_annotation] = ACTIONS(4653), - [anon_sym_data] = ACTIONS(4653), - [anon_sym_inner] = ACTIONS(4653), - [anon_sym_value] = ACTIONS(4653), - [anon_sym_override] = ACTIONS(4653), - [anon_sym_lateinit] = ACTIONS(4653), - [anon_sym_public] = ACTIONS(4653), - [anon_sym_private] = ACTIONS(4653), - [anon_sym_internal] = ACTIONS(4653), - [anon_sym_protected] = ACTIONS(4653), - [anon_sym_tailrec] = ACTIONS(4653), - [anon_sym_operator] = ACTIONS(4653), - [anon_sym_infix] = ACTIONS(4653), - [anon_sym_inline] = ACTIONS(4653), - [anon_sym_external] = ACTIONS(4653), - [sym_property_modifier] = ACTIONS(4653), - [anon_sym_abstract] = ACTIONS(4653), - [anon_sym_final] = ACTIONS(4653), - [anon_sym_open] = ACTIONS(4653), - [anon_sym_vararg] = ACTIONS(4653), - [anon_sym_noinline] = ACTIONS(4653), - [anon_sym_crossinline] = ACTIONS(4653), - [anon_sym_expect] = ACTIONS(4653), - [anon_sym_actual] = ACTIONS(4653), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4655), - [anon_sym_continue_AT] = ACTIONS(4655), - [anon_sym_break_AT] = ACTIONS(4655), - [anon_sym_this_AT] = ACTIONS(4655), - [anon_sym_super_AT] = ACTIONS(4655), - [sym_real_literal] = ACTIONS(4655), - [sym_integer_literal] = ACTIONS(4653), - [sym_hex_literal] = ACTIONS(4655), - [sym_bin_literal] = ACTIONS(4655), - [anon_sym_L] = ACTIONS(4657), - [anon_sym_true] = ACTIONS(4653), - [anon_sym_false] = ACTIONS(4653), - [anon_sym_SQUOTE] = ACTIONS(4655), - [sym__backtick_identifier] = ACTIONS(4655), - [sym__automatic_semicolon] = ACTIONS(4655), - [sym_safe_nav] = ACTIONS(4655), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4655), - }, - [968] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3168), - [anon_sym_fun] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3168), - [anon_sym_super] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(4561), - [anon_sym_DOT_DOT] = ACTIONS(4563), - [anon_sym_QMARK_COLON] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(4631), - [anon_sym_PIPE_PIPE] = ACTIONS(4633), - [anon_sym_null] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_when] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3170), - [anon_sym_DASH_EQ] = ACTIONS(3170), - [anon_sym_STAR_EQ] = ACTIONS(3170), - [anon_sym_SLASH_EQ] = ACTIONS(3170), - [anon_sym_PERCENT_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(4569), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4571), - [anon_sym_EQ_EQ] = ACTIONS(4569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4571), - [anon_sym_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_EQ] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4575), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3170), - [anon_sym_continue_AT] = ACTIONS(3170), - [anon_sym_break_AT] = ACTIONS(3170), - [anon_sym_this_AT] = ACTIONS(3170), - [anon_sym_super_AT] = ACTIONS(3170), - [sym_real_literal] = ACTIONS(3170), - [sym_integer_literal] = ACTIONS(3168), - [sym_hex_literal] = ACTIONS(3170), - [sym_bin_literal] = ACTIONS(3170), - [anon_sym_true] = ACTIONS(3168), - [anon_sym_false] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3170), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3170), - }, - [969] = { - [sym_getter] = STATE(3552), - [sym_setter] = STATE(3552), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4659), - [anon_sym_get] = ACTIONS(4661), - [anon_sym_set] = ACTIONS(4663), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [970] = { - [sym_getter] = STATE(4978), - [sym_setter] = STATE(4978), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_get] = ACTIONS(4603), - [anon_sym_set] = ACTIONS(4605), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [971] = { - [sym__alpha_identifier] = ACTIONS(4667), - [anon_sym_AT] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4669), - [anon_sym_as] = ACTIONS(4667), - [anon_sym_EQ] = ACTIONS(4667), - [anon_sym_fun] = ACTIONS(4667), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_RBRACE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_by] = ACTIONS(4667), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4667), - [anon_sym_where] = ACTIONS(4667), - [anon_sym_object] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_get] = ACTIONS(4667), - [anon_sym_set] = ACTIONS(4667), - [anon_sym_this] = ACTIONS(4667), - [anon_sym_super] = ACTIONS(4667), - [anon_sym_STAR] = ACTIONS(4667), - [sym_label] = ACTIONS(4667), - [anon_sym_in] = ACTIONS(4667), - [anon_sym_DOT_DOT] = ACTIONS(4669), - [anon_sym_QMARK_COLON] = ACTIONS(4669), - [anon_sym_AMP_AMP] = ACTIONS(4669), - [anon_sym_PIPE_PIPE] = ACTIONS(4669), - [anon_sym_null] = ACTIONS(4667), - [anon_sym_if] = ACTIONS(4667), - [anon_sym_else] = ACTIONS(4667), - [anon_sym_when] = ACTIONS(4667), - [anon_sym_try] = ACTIONS(4667), - [anon_sym_throw] = ACTIONS(4667), - [anon_sym_return] = ACTIONS(4667), - [anon_sym_continue] = ACTIONS(4667), - [anon_sym_break] = ACTIONS(4667), - [anon_sym_COLON_COLON] = ACTIONS(4669), - [anon_sym_PLUS_EQ] = ACTIONS(4669), - [anon_sym_DASH_EQ] = ACTIONS(4669), - [anon_sym_STAR_EQ] = ACTIONS(4669), - [anon_sym_SLASH_EQ] = ACTIONS(4669), - [anon_sym_PERCENT_EQ] = ACTIONS(4669), - [anon_sym_BANG_EQ] = ACTIONS(4667), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4669), - [anon_sym_EQ_EQ] = ACTIONS(4667), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4669), - [anon_sym_LT_EQ] = ACTIONS(4669), - [anon_sym_GT_EQ] = ACTIONS(4669), - [anon_sym_BANGin] = ACTIONS(4669), - [anon_sym_is] = ACTIONS(4667), - [anon_sym_BANGis] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4667), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4667), - [anon_sym_PERCENT] = ACTIONS(4667), - [anon_sym_as_QMARK] = ACTIONS(4669), - [anon_sym_PLUS_PLUS] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4667), - [anon_sym_BANG_BANG] = ACTIONS(4669), - [anon_sym_suspend] = ACTIONS(4667), - [anon_sym_sealed] = ACTIONS(4667), - [anon_sym_annotation] = ACTIONS(4667), - [anon_sym_data] = ACTIONS(4667), - [anon_sym_inner] = ACTIONS(4667), - [anon_sym_value] = ACTIONS(4667), - [anon_sym_override] = ACTIONS(4667), - [anon_sym_lateinit] = ACTIONS(4667), - [anon_sym_public] = ACTIONS(4667), - [anon_sym_private] = ACTIONS(4667), - [anon_sym_internal] = ACTIONS(4667), - [anon_sym_protected] = ACTIONS(4667), - [anon_sym_tailrec] = ACTIONS(4667), - [anon_sym_operator] = ACTIONS(4667), - [anon_sym_infix] = ACTIONS(4667), - [anon_sym_inline] = ACTIONS(4667), - [anon_sym_external] = ACTIONS(4667), - [sym_property_modifier] = ACTIONS(4667), - [anon_sym_abstract] = ACTIONS(4667), - [anon_sym_final] = ACTIONS(4667), - [anon_sym_open] = ACTIONS(4667), - [anon_sym_vararg] = ACTIONS(4667), - [anon_sym_noinline] = ACTIONS(4667), - [anon_sym_crossinline] = ACTIONS(4667), - [anon_sym_expect] = ACTIONS(4667), - [anon_sym_actual] = ACTIONS(4667), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4669), - [anon_sym_continue_AT] = ACTIONS(4669), - [anon_sym_break_AT] = ACTIONS(4669), - [anon_sym_this_AT] = ACTIONS(4669), - [anon_sym_super_AT] = ACTIONS(4669), - [sym_real_literal] = ACTIONS(4669), - [sym_integer_literal] = ACTIONS(4667), - [sym_hex_literal] = ACTIONS(4669), - [sym_bin_literal] = ACTIONS(4669), - [anon_sym_true] = ACTIONS(4667), - [anon_sym_false] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4669), - [sym__backtick_identifier] = ACTIONS(4669), - [sym__automatic_semicolon] = ACTIONS(4669), - [sym_safe_nav] = ACTIONS(4669), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4669), + [889] = { + [sym_type_constraints] = STATE(1093), + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), }, - [972] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1010), - [sym__alpha_identifier] = ACTIONS(4671), - [anon_sym_AT] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4673), - [anon_sym_as] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_fun] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_RBRACE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4675), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4671), - [anon_sym_where] = ACTIONS(4671), - [anon_sym_object] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_get] = ACTIONS(4671), - [anon_sym_set] = ACTIONS(4671), - [anon_sym_this] = ACTIONS(4671), - [anon_sym_super] = ACTIONS(4671), - [anon_sym_STAR] = ACTIONS(4671), - [sym_label] = ACTIONS(4671), - [anon_sym_in] = ACTIONS(4671), - [anon_sym_DOT_DOT] = ACTIONS(4673), - [anon_sym_QMARK_COLON] = ACTIONS(4673), - [anon_sym_AMP_AMP] = ACTIONS(4673), - [anon_sym_PIPE_PIPE] = ACTIONS(4673), - [anon_sym_null] = ACTIONS(4671), - [anon_sym_if] = ACTIONS(4671), - [anon_sym_else] = ACTIONS(4671), - [anon_sym_when] = ACTIONS(4671), - [anon_sym_try] = ACTIONS(4671), - [anon_sym_throw] = ACTIONS(4671), - [anon_sym_return] = ACTIONS(4671), - [anon_sym_continue] = ACTIONS(4671), - [anon_sym_break] = ACTIONS(4671), - [anon_sym_COLON_COLON] = ACTIONS(4673), - [anon_sym_PLUS_EQ] = ACTIONS(4673), - [anon_sym_DASH_EQ] = ACTIONS(4673), - [anon_sym_STAR_EQ] = ACTIONS(4673), - [anon_sym_SLASH_EQ] = ACTIONS(4673), - [anon_sym_PERCENT_EQ] = ACTIONS(4673), - [anon_sym_BANG_EQ] = ACTIONS(4671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4673), - [anon_sym_EQ_EQ] = ACTIONS(4671), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4673), - [anon_sym_LT_EQ] = ACTIONS(4673), - [anon_sym_GT_EQ] = ACTIONS(4673), - [anon_sym_BANGin] = ACTIONS(4673), - [anon_sym_is] = ACTIONS(4671), - [anon_sym_BANGis] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4671), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4671), - [anon_sym_PERCENT] = ACTIONS(4671), - [anon_sym_as_QMARK] = ACTIONS(4673), - [anon_sym_PLUS_PLUS] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4671), - [anon_sym_BANG_BANG] = ACTIONS(4673), - [anon_sym_suspend] = ACTIONS(4671), - [anon_sym_sealed] = ACTIONS(4671), - [anon_sym_annotation] = ACTIONS(4671), - [anon_sym_data] = ACTIONS(4671), - [anon_sym_inner] = ACTIONS(4671), - [anon_sym_value] = ACTIONS(4671), - [anon_sym_override] = ACTIONS(4671), - [anon_sym_lateinit] = ACTIONS(4671), - [anon_sym_public] = ACTIONS(4671), - [anon_sym_private] = ACTIONS(4671), - [anon_sym_internal] = ACTIONS(4671), - [anon_sym_protected] = ACTIONS(4671), - [anon_sym_tailrec] = ACTIONS(4671), - [anon_sym_operator] = ACTIONS(4671), - [anon_sym_infix] = ACTIONS(4671), - [anon_sym_inline] = ACTIONS(4671), - [anon_sym_external] = ACTIONS(4671), - [sym_property_modifier] = ACTIONS(4671), - [anon_sym_abstract] = ACTIONS(4671), - [anon_sym_final] = ACTIONS(4671), - [anon_sym_open] = ACTIONS(4671), - [anon_sym_vararg] = ACTIONS(4671), - [anon_sym_noinline] = ACTIONS(4671), - [anon_sym_crossinline] = ACTIONS(4671), - [anon_sym_expect] = ACTIONS(4671), - [anon_sym_actual] = ACTIONS(4671), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4673), - [anon_sym_continue_AT] = ACTIONS(4673), - [anon_sym_break_AT] = ACTIONS(4673), - [anon_sym_this_AT] = ACTIONS(4673), - [anon_sym_super_AT] = ACTIONS(4673), - [sym_real_literal] = ACTIONS(4673), - [sym_integer_literal] = ACTIONS(4671), - [sym_hex_literal] = ACTIONS(4673), - [sym_bin_literal] = ACTIONS(4673), - [anon_sym_true] = ACTIONS(4671), - [anon_sym_false] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4673), - [sym__backtick_identifier] = ACTIONS(4673), - [sym__automatic_semicolon] = ACTIONS(4673), - [sym_safe_nav] = ACTIONS(4673), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4673), + [890] = { + [sym_type_constraints] = STATE(947), + [sym_enum_class_body] = STATE(1148), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [973] = { - [sym__alpha_identifier] = ACTIONS(4677), - [anon_sym_AT] = ACTIONS(4679), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_as] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_fun] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4679), - [anon_sym_RBRACE] = ACTIONS(4679), - [anon_sym_LPAREN] = ACTIONS(4679), - [anon_sym_COMMA] = ACTIONS(4679), - [anon_sym_LT] = ACTIONS(4677), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_where] = ACTIONS(4677), - [anon_sym_object] = ACTIONS(4677), - [anon_sym_DOT] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4679), - [anon_sym_get] = ACTIONS(4677), - [anon_sym_set] = ACTIONS(4677), - [anon_sym_this] = ACTIONS(4677), - [anon_sym_super] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [sym_label] = ACTIONS(4677), - [anon_sym_in] = ACTIONS(4677), - [anon_sym_DOT_DOT] = ACTIONS(4679), - [anon_sym_QMARK_COLON] = ACTIONS(4679), - [anon_sym_AMP_AMP] = ACTIONS(4679), - [anon_sym_PIPE_PIPE] = ACTIONS(4679), - [anon_sym_null] = ACTIONS(4677), - [anon_sym_if] = ACTIONS(4677), - [anon_sym_else] = ACTIONS(4677), - [anon_sym_when] = ACTIONS(4677), - [anon_sym_try] = ACTIONS(4677), - [anon_sym_throw] = ACTIONS(4677), - [anon_sym_return] = ACTIONS(4677), - [anon_sym_continue] = ACTIONS(4677), - [anon_sym_break] = ACTIONS(4677), - [anon_sym_COLON_COLON] = ACTIONS(4679), - [anon_sym_PLUS_EQ] = ACTIONS(4679), - [anon_sym_DASH_EQ] = ACTIONS(4679), - [anon_sym_STAR_EQ] = ACTIONS(4679), - [anon_sym_SLASH_EQ] = ACTIONS(4679), - [anon_sym_PERCENT_EQ] = ACTIONS(4679), - [anon_sym_BANG_EQ] = ACTIONS(4677), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4679), - [anon_sym_EQ_EQ] = ACTIONS(4677), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4679), - [anon_sym_LT_EQ] = ACTIONS(4679), - [anon_sym_GT_EQ] = ACTIONS(4679), - [anon_sym_BANGin] = ACTIONS(4679), - [anon_sym_is] = ACTIONS(4677), - [anon_sym_BANGis] = ACTIONS(4679), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_as_QMARK] = ACTIONS(4679), - [anon_sym_PLUS_PLUS] = ACTIONS(4679), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_BANG_BANG] = ACTIONS(4679), - [anon_sym_suspend] = ACTIONS(4677), - [anon_sym_sealed] = ACTIONS(4677), - [anon_sym_annotation] = ACTIONS(4677), - [anon_sym_data] = ACTIONS(4677), - [anon_sym_inner] = ACTIONS(4677), - [anon_sym_value] = ACTIONS(4677), - [anon_sym_override] = ACTIONS(4677), - [anon_sym_lateinit] = ACTIONS(4677), - [anon_sym_public] = ACTIONS(4677), - [anon_sym_private] = ACTIONS(4677), - [anon_sym_internal] = ACTIONS(4677), - [anon_sym_protected] = ACTIONS(4677), - [anon_sym_tailrec] = ACTIONS(4677), - [anon_sym_operator] = ACTIONS(4677), - [anon_sym_infix] = ACTIONS(4677), - [anon_sym_inline] = ACTIONS(4677), - [anon_sym_external] = ACTIONS(4677), - [sym_property_modifier] = ACTIONS(4677), - [anon_sym_abstract] = ACTIONS(4677), - [anon_sym_final] = ACTIONS(4677), - [anon_sym_open] = ACTIONS(4677), - [anon_sym_vararg] = ACTIONS(4677), - [anon_sym_noinline] = ACTIONS(4677), - [anon_sym_crossinline] = ACTIONS(4677), - [anon_sym_expect] = ACTIONS(4677), - [anon_sym_actual] = ACTIONS(4677), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4679), - [anon_sym_continue_AT] = ACTIONS(4679), - [anon_sym_break_AT] = ACTIONS(4679), - [anon_sym_this_AT] = ACTIONS(4679), - [anon_sym_super_AT] = ACTIONS(4679), - [sym_real_literal] = ACTIONS(4679), - [sym_integer_literal] = ACTIONS(4677), - [sym_hex_literal] = ACTIONS(4679), - [sym_bin_literal] = ACTIONS(4679), - [anon_sym_true] = ACTIONS(4677), - [anon_sym_false] = ACTIONS(4677), - [anon_sym_SQUOTE] = ACTIONS(4679), - [sym__backtick_identifier] = ACTIONS(4679), - [sym__automatic_semicolon] = ACTIONS(4679), - [sym_safe_nav] = ACTIONS(4679), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4679), + [891] = { + [aux_sym_type_constraints_repeat1] = STATE(891), + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(4434), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_object] = ACTIONS(4430), + [anon_sym_fun] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_this] = ACTIONS(4430), + [anon_sym_super] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [sym_label] = ACTIONS(4430), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_null] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_when] = ACTIONS(4430), + [anon_sym_try] = ACTIONS(4430), + [anon_sym_throw] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4432), + [anon_sym_continue_AT] = ACTIONS(4432), + [anon_sym_break_AT] = ACTIONS(4432), + [anon_sym_this_AT] = ACTIONS(4432), + [anon_sym_super_AT] = ACTIONS(4432), + [sym_real_literal] = ACTIONS(4432), + [sym_integer_literal] = ACTIONS(4430), + [sym_hex_literal] = ACTIONS(4432), + [sym_bin_literal] = ACTIONS(4432), + [anon_sym_true] = ACTIONS(4430), + [anon_sym_false] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4432), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4432), }, - [974] = { - [sym__alpha_identifier] = ACTIONS(4681), - [anon_sym_AT] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_as] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_fun] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4683), - [anon_sym_RBRACE] = ACTIONS(4683), - [anon_sym_LPAREN] = ACTIONS(4683), - [anon_sym_COMMA] = ACTIONS(4683), - [anon_sym_by] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4681), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_where] = ACTIONS(4681), - [anon_sym_object] = ACTIONS(4681), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_get] = ACTIONS(4681), - [anon_sym_set] = ACTIONS(4681), - [anon_sym_this] = ACTIONS(4681), - [anon_sym_super] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [sym_label] = ACTIONS(4681), - [anon_sym_in] = ACTIONS(4681), - [anon_sym_DOT_DOT] = ACTIONS(4683), - [anon_sym_QMARK_COLON] = ACTIONS(4683), - [anon_sym_AMP_AMP] = ACTIONS(4683), - [anon_sym_PIPE_PIPE] = ACTIONS(4683), - [anon_sym_null] = ACTIONS(4681), - [anon_sym_if] = ACTIONS(4681), - [anon_sym_else] = ACTIONS(4681), - [anon_sym_when] = ACTIONS(4681), - [anon_sym_try] = ACTIONS(4681), - [anon_sym_throw] = ACTIONS(4681), - [anon_sym_return] = ACTIONS(4681), - [anon_sym_continue] = ACTIONS(4681), - [anon_sym_break] = ACTIONS(4681), - [anon_sym_COLON_COLON] = ACTIONS(4683), - [anon_sym_PLUS_EQ] = ACTIONS(4683), - [anon_sym_DASH_EQ] = ACTIONS(4683), - [anon_sym_STAR_EQ] = ACTIONS(4683), - [anon_sym_SLASH_EQ] = ACTIONS(4683), - [anon_sym_PERCENT_EQ] = ACTIONS(4683), - [anon_sym_BANG_EQ] = ACTIONS(4681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4683), - [anon_sym_EQ_EQ] = ACTIONS(4681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4683), - [anon_sym_LT_EQ] = ACTIONS(4683), - [anon_sym_GT_EQ] = ACTIONS(4683), - [anon_sym_BANGin] = ACTIONS(4683), - [anon_sym_is] = ACTIONS(4681), - [anon_sym_BANGis] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4681), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_as_QMARK] = ACTIONS(4683), - [anon_sym_PLUS_PLUS] = ACTIONS(4683), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_BANG_BANG] = ACTIONS(4683), - [anon_sym_suspend] = ACTIONS(4681), - [anon_sym_sealed] = ACTIONS(4681), - [anon_sym_annotation] = ACTIONS(4681), - [anon_sym_data] = ACTIONS(4681), - [anon_sym_inner] = ACTIONS(4681), - [anon_sym_value] = ACTIONS(4681), - [anon_sym_override] = ACTIONS(4681), - [anon_sym_lateinit] = ACTIONS(4681), - [anon_sym_public] = ACTIONS(4681), - [anon_sym_private] = ACTIONS(4681), - [anon_sym_internal] = ACTIONS(4681), - [anon_sym_protected] = ACTIONS(4681), - [anon_sym_tailrec] = ACTIONS(4681), - [anon_sym_operator] = ACTIONS(4681), - [anon_sym_infix] = ACTIONS(4681), - [anon_sym_inline] = ACTIONS(4681), - [anon_sym_external] = ACTIONS(4681), - [sym_property_modifier] = ACTIONS(4681), - [anon_sym_abstract] = ACTIONS(4681), - [anon_sym_final] = ACTIONS(4681), - [anon_sym_open] = ACTIONS(4681), - [anon_sym_vararg] = ACTIONS(4681), - [anon_sym_noinline] = ACTIONS(4681), - [anon_sym_crossinline] = ACTIONS(4681), - [anon_sym_expect] = ACTIONS(4681), - [anon_sym_actual] = ACTIONS(4681), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4683), - [anon_sym_continue_AT] = ACTIONS(4683), - [anon_sym_break_AT] = ACTIONS(4683), - [anon_sym_this_AT] = ACTIONS(4683), - [anon_sym_super_AT] = ACTIONS(4683), - [sym_real_literal] = ACTIONS(4683), - [sym_integer_literal] = ACTIONS(4681), - [sym_hex_literal] = ACTIONS(4683), - [sym_bin_literal] = ACTIONS(4683), - [anon_sym_true] = ACTIONS(4681), - [anon_sym_false] = ACTIONS(4681), - [anon_sym_SQUOTE] = ACTIONS(4683), - [sym__backtick_identifier] = ACTIONS(4683), - [sym__automatic_semicolon] = ACTIONS(4683), - [sym_safe_nav] = ACTIONS(4683), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4683), + [892] = { + [sym_type_constraints] = STATE(1095), + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, - [975] = { - [sym_enum_class_body] = STATE(1127), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), + [893] = { + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(943), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), - }, - [976] = { - [sym_class_body] = STATE(1148), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, - [977] = { - [sym__alpha_identifier] = ACTIONS(4685), - [anon_sym_AT] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_as] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_fun] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_RBRACE] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_COMMA] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4685), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_where] = ACTIONS(4685), - [anon_sym_object] = ACTIONS(4685), - [anon_sym_DOT] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_get] = ACTIONS(4685), - [anon_sym_set] = ACTIONS(4685), - [anon_sym_this] = ACTIONS(4685), - [anon_sym_super] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [sym_label] = ACTIONS(4685), - [anon_sym_in] = ACTIONS(4685), - [anon_sym_DOT_DOT] = ACTIONS(4687), - [anon_sym_QMARK_COLON] = ACTIONS(4687), - [anon_sym_AMP_AMP] = ACTIONS(4687), - [anon_sym_PIPE_PIPE] = ACTIONS(4687), - [anon_sym_null] = ACTIONS(4685), - [anon_sym_if] = ACTIONS(4685), - [anon_sym_else] = ACTIONS(4685), - [anon_sym_when] = ACTIONS(4685), - [anon_sym_try] = ACTIONS(4685), - [anon_sym_throw] = ACTIONS(4685), - [anon_sym_return] = ACTIONS(4685), - [anon_sym_continue] = ACTIONS(4685), - [anon_sym_break] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4687), - [anon_sym_PLUS_EQ] = ACTIONS(4687), - [anon_sym_DASH_EQ] = ACTIONS(4687), - [anon_sym_STAR_EQ] = ACTIONS(4687), - [anon_sym_SLASH_EQ] = ACTIONS(4687), - [anon_sym_PERCENT_EQ] = ACTIONS(4687), - [anon_sym_BANG_EQ] = ACTIONS(4685), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4687), - [anon_sym_EQ_EQ] = ACTIONS(4685), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4687), - [anon_sym_LT_EQ] = ACTIONS(4687), - [anon_sym_GT_EQ] = ACTIONS(4687), - [anon_sym_BANGin] = ACTIONS(4687), - [anon_sym_is] = ACTIONS(4685), - [anon_sym_BANGis] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_as_QMARK] = ACTIONS(4687), - [anon_sym_PLUS_PLUS] = ACTIONS(4687), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_BANG_BANG] = ACTIONS(4687), - [anon_sym_suspend] = ACTIONS(4685), - [anon_sym_sealed] = ACTIONS(4685), - [anon_sym_annotation] = ACTIONS(4685), - [anon_sym_data] = ACTIONS(4685), - [anon_sym_inner] = ACTIONS(4685), - [anon_sym_value] = ACTIONS(4685), - [anon_sym_override] = ACTIONS(4685), - [anon_sym_lateinit] = ACTIONS(4685), - [anon_sym_public] = ACTIONS(4685), - [anon_sym_private] = ACTIONS(4685), - [anon_sym_internal] = ACTIONS(4685), - [anon_sym_protected] = ACTIONS(4685), - [anon_sym_tailrec] = ACTIONS(4685), - [anon_sym_operator] = ACTIONS(4685), - [anon_sym_infix] = ACTIONS(4685), - [anon_sym_inline] = ACTIONS(4685), - [anon_sym_external] = ACTIONS(4685), - [sym_property_modifier] = ACTIONS(4685), - [anon_sym_abstract] = ACTIONS(4685), - [anon_sym_final] = ACTIONS(4685), - [anon_sym_open] = ACTIONS(4685), - [anon_sym_vararg] = ACTIONS(4685), - [anon_sym_noinline] = ACTIONS(4685), - [anon_sym_crossinline] = ACTIONS(4685), - [anon_sym_expect] = ACTIONS(4685), - [anon_sym_actual] = ACTIONS(4685), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4687), - [anon_sym_continue_AT] = ACTIONS(4687), - [anon_sym_break_AT] = ACTIONS(4687), - [anon_sym_this_AT] = ACTIONS(4687), - [anon_sym_super_AT] = ACTIONS(4687), - [sym_real_literal] = ACTIONS(4687), - [sym_integer_literal] = ACTIONS(4685), - [sym_hex_literal] = ACTIONS(4687), - [sym_bin_literal] = ACTIONS(4687), - [anon_sym_true] = ACTIONS(4685), - [anon_sym_false] = ACTIONS(4685), - [anon_sym_SQUOTE] = ACTIONS(4687), - [sym__backtick_identifier] = ACTIONS(4687), - [sym__automatic_semicolon] = ACTIONS(4687), - [sym_safe_nav] = ACTIONS(4687), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4687), + [894] = { + [sym_class_body] = STATE(1141), + [sym_type_constraints] = STATE(933), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, - [978] = { - [sym_getter] = STATE(3530), - [sym_setter] = STATE(3530), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4689), - [anon_sym_get] = ACTIONS(4661), - [anon_sym_set] = ACTIONS(4663), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [895] = { + [sym_type_constraints] = STATE(1096), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [979] = { - [sym__alpha_identifier] = ACTIONS(4691), - [anon_sym_AT] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_as] = ACTIONS(4691), - [anon_sym_EQ] = ACTIONS(4691), - [anon_sym_fun] = ACTIONS(4691), - [anon_sym_LBRACE] = ACTIONS(4693), - [anon_sym_RBRACE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_where] = ACTIONS(4691), - [anon_sym_object] = ACTIONS(4691), - [anon_sym_DOT] = ACTIONS(4691), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_get] = ACTIONS(4691), - [anon_sym_set] = ACTIONS(4691), - [anon_sym_this] = ACTIONS(4691), - [anon_sym_super] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [sym_label] = ACTIONS(4691), - [anon_sym_in] = ACTIONS(4691), - [anon_sym_DOT_DOT] = ACTIONS(4693), - [anon_sym_QMARK_COLON] = ACTIONS(4693), - [anon_sym_AMP_AMP] = ACTIONS(4693), - [anon_sym_PIPE_PIPE] = ACTIONS(4693), - [anon_sym_null] = ACTIONS(4691), - [anon_sym_if] = ACTIONS(4691), - [anon_sym_else] = ACTIONS(4691), - [anon_sym_when] = ACTIONS(4691), - [anon_sym_try] = ACTIONS(4691), - [anon_sym_throw] = ACTIONS(4691), - [anon_sym_return] = ACTIONS(4691), - [anon_sym_continue] = ACTIONS(4691), - [anon_sym_break] = ACTIONS(4691), - [anon_sym_COLON_COLON] = ACTIONS(4693), - [anon_sym_PLUS_EQ] = ACTIONS(4693), - [anon_sym_DASH_EQ] = ACTIONS(4693), - [anon_sym_STAR_EQ] = ACTIONS(4693), - [anon_sym_SLASH_EQ] = ACTIONS(4693), - [anon_sym_PERCENT_EQ] = ACTIONS(4693), - [anon_sym_BANG_EQ] = ACTIONS(4691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4693), - [anon_sym_EQ_EQ] = ACTIONS(4691), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4693), - [anon_sym_LT_EQ] = ACTIONS(4693), - [anon_sym_GT_EQ] = ACTIONS(4693), - [anon_sym_BANGin] = ACTIONS(4693), - [anon_sym_is] = ACTIONS(4691), - [anon_sym_BANGis] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_PERCENT] = ACTIONS(4691), - [anon_sym_as_QMARK] = ACTIONS(4693), - [anon_sym_PLUS_PLUS] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4693), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_BANG_BANG] = ACTIONS(4693), - [anon_sym_suspend] = ACTIONS(4691), - [anon_sym_sealed] = ACTIONS(4691), - [anon_sym_annotation] = ACTIONS(4691), - [anon_sym_data] = ACTIONS(4691), - [anon_sym_inner] = ACTIONS(4691), - [anon_sym_value] = ACTIONS(4691), - [anon_sym_override] = ACTIONS(4691), - [anon_sym_lateinit] = ACTIONS(4691), - [anon_sym_public] = ACTIONS(4691), - [anon_sym_private] = ACTIONS(4691), - [anon_sym_internal] = ACTIONS(4691), - [anon_sym_protected] = ACTIONS(4691), - [anon_sym_tailrec] = ACTIONS(4691), - [anon_sym_operator] = ACTIONS(4691), - [anon_sym_infix] = ACTIONS(4691), - [anon_sym_inline] = ACTIONS(4691), - [anon_sym_external] = ACTIONS(4691), - [sym_property_modifier] = ACTIONS(4691), - [anon_sym_abstract] = ACTIONS(4691), - [anon_sym_final] = ACTIONS(4691), - [anon_sym_open] = ACTIONS(4691), - [anon_sym_vararg] = ACTIONS(4691), - [anon_sym_noinline] = ACTIONS(4691), - [anon_sym_crossinline] = ACTIONS(4691), - [anon_sym_expect] = ACTIONS(4691), - [anon_sym_actual] = ACTIONS(4691), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4693), - [anon_sym_continue_AT] = ACTIONS(4693), - [anon_sym_break_AT] = ACTIONS(4693), - [anon_sym_this_AT] = ACTIONS(4693), - [anon_sym_super_AT] = ACTIONS(4693), - [sym_real_literal] = ACTIONS(4693), - [sym_integer_literal] = ACTIONS(4691), - [sym_hex_literal] = ACTIONS(4693), - [sym_bin_literal] = ACTIONS(4693), - [anon_sym_true] = ACTIONS(4691), - [anon_sym_false] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4693), - [sym__backtick_identifier] = ACTIONS(4693), - [sym__automatic_semicolon] = ACTIONS(4693), - [sym_safe_nav] = ACTIONS(4693), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4693), + [896] = { + [sym_function_body] = STATE(1085), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), }, - [980] = { - [sym__alpha_identifier] = ACTIONS(4495), - [anon_sym_AT] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_as] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4495), - [anon_sym_fun] = ACTIONS(4495), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_COMMA] = ACTIONS(4497), - [anon_sym_by] = ACTIONS(4495), - [anon_sym_LT] = ACTIONS(4495), - [anon_sym_GT] = ACTIONS(4495), - [anon_sym_where] = ACTIONS(4495), - [anon_sym_object] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4495), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_get] = ACTIONS(4495), - [anon_sym_set] = ACTIONS(4495), - [anon_sym_this] = ACTIONS(4495), - [anon_sym_super] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4495), - [anon_sym_DOT_DOT] = ACTIONS(4497), - [anon_sym_QMARK_COLON] = ACTIONS(4497), - [anon_sym_AMP_AMP] = ACTIONS(4497), - [anon_sym_PIPE_PIPE] = ACTIONS(4497), - [anon_sym_null] = ACTIONS(4495), - [anon_sym_if] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4495), - [anon_sym_when] = ACTIONS(4495), - [anon_sym_try] = ACTIONS(4495), - [anon_sym_throw] = ACTIONS(4495), - [anon_sym_return] = ACTIONS(4495), - [anon_sym_continue] = ACTIONS(4495), - [anon_sym_break] = ACTIONS(4495), - [anon_sym_COLON_COLON] = ACTIONS(4497), - [anon_sym_PLUS_EQ] = ACTIONS(4497), - [anon_sym_DASH_EQ] = ACTIONS(4497), - [anon_sym_STAR_EQ] = ACTIONS(4497), - [anon_sym_SLASH_EQ] = ACTIONS(4497), - [anon_sym_PERCENT_EQ] = ACTIONS(4497), - [anon_sym_BANG_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4497), - [anon_sym_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4497), - [anon_sym_LT_EQ] = ACTIONS(4497), - [anon_sym_GT_EQ] = ACTIONS(4497), - [anon_sym_BANGin] = ACTIONS(4497), - [anon_sym_is] = ACTIONS(4495), - [anon_sym_BANGis] = ACTIONS(4497), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_SLASH] = ACTIONS(4495), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4497), - [anon_sym_PLUS_PLUS] = ACTIONS(4497), - [anon_sym_DASH_DASH] = ACTIONS(4497), - [anon_sym_BANG] = ACTIONS(4495), - [anon_sym_BANG_BANG] = ACTIONS(4497), - [anon_sym_suspend] = ACTIONS(4495), - [anon_sym_sealed] = ACTIONS(4495), - [anon_sym_annotation] = ACTIONS(4495), - [anon_sym_data] = ACTIONS(4495), - [anon_sym_inner] = ACTIONS(4495), - [anon_sym_value] = ACTIONS(4495), - [anon_sym_override] = ACTIONS(4495), - [anon_sym_lateinit] = ACTIONS(4495), - [anon_sym_public] = ACTIONS(4495), - [anon_sym_private] = ACTIONS(4495), - [anon_sym_internal] = ACTIONS(4495), - [anon_sym_protected] = ACTIONS(4495), - [anon_sym_tailrec] = ACTIONS(4495), - [anon_sym_operator] = ACTIONS(4495), - [anon_sym_infix] = ACTIONS(4495), - [anon_sym_inline] = ACTIONS(4495), - [anon_sym_external] = ACTIONS(4495), - [sym_property_modifier] = ACTIONS(4495), - [anon_sym_abstract] = ACTIONS(4495), - [anon_sym_final] = ACTIONS(4495), - [anon_sym_open] = ACTIONS(4495), - [anon_sym_vararg] = ACTIONS(4495), - [anon_sym_noinline] = ACTIONS(4495), - [anon_sym_crossinline] = ACTIONS(4495), - [anon_sym_expect] = ACTIONS(4495), - [anon_sym_actual] = ACTIONS(4495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4497), - [anon_sym_continue_AT] = ACTIONS(4497), - [anon_sym_break_AT] = ACTIONS(4497), - [anon_sym_this_AT] = ACTIONS(4497), - [anon_sym_super_AT] = ACTIONS(4497), - [sym_real_literal] = ACTIONS(4497), - [sym_integer_literal] = ACTIONS(4495), - [sym_hex_literal] = ACTIONS(4497), - [sym_bin_literal] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4495), - [anon_sym_false] = ACTIONS(4495), - [anon_sym_SQUOTE] = ACTIONS(4497), - [sym__backtick_identifier] = ACTIONS(4497), - [sym__automatic_semicolon] = ACTIONS(4497), - [sym_safe_nav] = ACTIONS(4497), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4497), + [897] = { + [sym_type_constraints] = STATE(1100), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, - [981] = { - [sym__alpha_identifier] = ACTIONS(4695), - [anon_sym_AT] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_as] = ACTIONS(4695), - [anon_sym_EQ] = ACTIONS(4695), - [anon_sym_fun] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4697), - [anon_sym_RBRACE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_where] = ACTIONS(4695), - [anon_sym_object] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_get] = ACTIONS(4695), - [anon_sym_set] = ACTIONS(4695), - [anon_sym_this] = ACTIONS(4695), - [anon_sym_super] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [sym_label] = ACTIONS(4695), - [anon_sym_in] = ACTIONS(4695), - [anon_sym_DOT_DOT] = ACTIONS(4697), - [anon_sym_QMARK_COLON] = ACTIONS(4697), - [anon_sym_AMP_AMP] = ACTIONS(4697), - [anon_sym_PIPE_PIPE] = ACTIONS(4697), - [anon_sym_null] = ACTIONS(4695), - [anon_sym_if] = ACTIONS(4695), - [anon_sym_else] = ACTIONS(4695), - [anon_sym_when] = ACTIONS(4695), - [anon_sym_try] = ACTIONS(4695), - [anon_sym_throw] = ACTIONS(4695), - [anon_sym_return] = ACTIONS(4695), - [anon_sym_continue] = ACTIONS(4695), - [anon_sym_break] = ACTIONS(4695), - [anon_sym_COLON_COLON] = ACTIONS(4697), - [anon_sym_PLUS_EQ] = ACTIONS(4697), - [anon_sym_DASH_EQ] = ACTIONS(4697), - [anon_sym_STAR_EQ] = ACTIONS(4697), - [anon_sym_SLASH_EQ] = ACTIONS(4697), - [anon_sym_PERCENT_EQ] = ACTIONS(4697), - [anon_sym_BANG_EQ] = ACTIONS(4695), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4697), - [anon_sym_EQ_EQ] = ACTIONS(4695), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4697), - [anon_sym_LT_EQ] = ACTIONS(4697), - [anon_sym_GT_EQ] = ACTIONS(4697), - [anon_sym_BANGin] = ACTIONS(4697), - [anon_sym_is] = ACTIONS(4695), - [anon_sym_BANGis] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_PERCENT] = ACTIONS(4695), - [anon_sym_as_QMARK] = ACTIONS(4697), - [anon_sym_PLUS_PLUS] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_BANG_BANG] = ACTIONS(4697), - [anon_sym_suspend] = ACTIONS(4695), - [anon_sym_sealed] = ACTIONS(4695), - [anon_sym_annotation] = ACTIONS(4695), - [anon_sym_data] = ACTIONS(4695), - [anon_sym_inner] = ACTIONS(4695), - [anon_sym_value] = ACTIONS(4695), - [anon_sym_override] = ACTIONS(4695), - [anon_sym_lateinit] = ACTIONS(4695), - [anon_sym_public] = ACTIONS(4695), - [anon_sym_private] = ACTIONS(4695), - [anon_sym_internal] = ACTIONS(4695), - [anon_sym_protected] = ACTIONS(4695), - [anon_sym_tailrec] = ACTIONS(4695), - [anon_sym_operator] = ACTIONS(4695), - [anon_sym_infix] = ACTIONS(4695), - [anon_sym_inline] = ACTIONS(4695), - [anon_sym_external] = ACTIONS(4695), - [sym_property_modifier] = ACTIONS(4695), - [anon_sym_abstract] = ACTIONS(4695), - [anon_sym_final] = ACTIONS(4695), - [anon_sym_open] = ACTIONS(4695), - [anon_sym_vararg] = ACTIONS(4695), - [anon_sym_noinline] = ACTIONS(4695), - [anon_sym_crossinline] = ACTIONS(4695), - [anon_sym_expect] = ACTIONS(4695), - [anon_sym_actual] = ACTIONS(4695), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4697), - [anon_sym_continue_AT] = ACTIONS(4697), - [anon_sym_break_AT] = ACTIONS(4697), - [anon_sym_this_AT] = ACTIONS(4697), - [anon_sym_super_AT] = ACTIONS(4697), - [sym_real_literal] = ACTIONS(4697), - [sym_integer_literal] = ACTIONS(4695), - [sym_hex_literal] = ACTIONS(4697), - [sym_bin_literal] = ACTIONS(4697), - [anon_sym_true] = ACTIONS(4695), - [anon_sym_false] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4697), - [sym__backtick_identifier] = ACTIONS(4697), - [sym__automatic_semicolon] = ACTIONS(4697), - [sym_safe_nav] = ACTIONS(4697), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4697), + [898] = { + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), }, - [982] = { - [sym__alpha_identifier] = ACTIONS(4699), - [anon_sym_AT] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_as] = ACTIONS(4699), - [anon_sym_EQ] = ACTIONS(4699), - [anon_sym_fun] = ACTIONS(4699), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_RBRACE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_where] = ACTIONS(4699), - [anon_sym_object] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_get] = ACTIONS(4699), - [anon_sym_set] = ACTIONS(4699), - [anon_sym_this] = ACTIONS(4699), - [anon_sym_super] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [sym_label] = ACTIONS(4699), - [anon_sym_in] = ACTIONS(4699), - [anon_sym_DOT_DOT] = ACTIONS(4701), - [anon_sym_QMARK_COLON] = ACTIONS(4701), - [anon_sym_AMP_AMP] = ACTIONS(4701), - [anon_sym_PIPE_PIPE] = ACTIONS(4701), - [anon_sym_null] = ACTIONS(4699), - [anon_sym_if] = ACTIONS(4699), - [anon_sym_else] = ACTIONS(4699), - [anon_sym_when] = ACTIONS(4699), - [anon_sym_try] = ACTIONS(4699), - [anon_sym_throw] = ACTIONS(4699), - [anon_sym_return] = ACTIONS(4699), - [anon_sym_continue] = ACTIONS(4699), - [anon_sym_break] = ACTIONS(4699), - [anon_sym_COLON_COLON] = ACTIONS(4701), - [anon_sym_PLUS_EQ] = ACTIONS(4701), - [anon_sym_DASH_EQ] = ACTIONS(4701), - [anon_sym_STAR_EQ] = ACTIONS(4701), - [anon_sym_SLASH_EQ] = ACTIONS(4701), - [anon_sym_PERCENT_EQ] = ACTIONS(4701), - [anon_sym_BANG_EQ] = ACTIONS(4699), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4701), - [anon_sym_EQ_EQ] = ACTIONS(4699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4701), - [anon_sym_LT_EQ] = ACTIONS(4701), - [anon_sym_GT_EQ] = ACTIONS(4701), - [anon_sym_BANGin] = ACTIONS(4701), - [anon_sym_is] = ACTIONS(4699), - [anon_sym_BANGis] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_PERCENT] = ACTIONS(4699), - [anon_sym_as_QMARK] = ACTIONS(4701), - [anon_sym_PLUS_PLUS] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_BANG_BANG] = ACTIONS(4701), - [anon_sym_suspend] = ACTIONS(4699), - [anon_sym_sealed] = ACTIONS(4699), - [anon_sym_annotation] = ACTIONS(4699), - [anon_sym_data] = ACTIONS(4699), - [anon_sym_inner] = ACTIONS(4699), - [anon_sym_value] = ACTIONS(4699), - [anon_sym_override] = ACTIONS(4699), - [anon_sym_lateinit] = ACTIONS(4699), - [anon_sym_public] = ACTIONS(4699), - [anon_sym_private] = ACTIONS(4699), - [anon_sym_internal] = ACTIONS(4699), - [anon_sym_protected] = ACTIONS(4699), - [anon_sym_tailrec] = ACTIONS(4699), - [anon_sym_operator] = ACTIONS(4699), - [anon_sym_infix] = ACTIONS(4699), - [anon_sym_inline] = ACTIONS(4699), - [anon_sym_external] = ACTIONS(4699), - [sym_property_modifier] = ACTIONS(4699), - [anon_sym_abstract] = ACTIONS(4699), - [anon_sym_final] = ACTIONS(4699), - [anon_sym_open] = ACTIONS(4699), - [anon_sym_vararg] = ACTIONS(4699), - [anon_sym_noinline] = ACTIONS(4699), - [anon_sym_crossinline] = ACTIONS(4699), - [anon_sym_expect] = ACTIONS(4699), - [anon_sym_actual] = ACTIONS(4699), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4701), - [anon_sym_continue_AT] = ACTIONS(4701), - [anon_sym_break_AT] = ACTIONS(4701), - [anon_sym_this_AT] = ACTIONS(4701), - [anon_sym_super_AT] = ACTIONS(4701), - [sym_real_literal] = ACTIONS(4701), - [sym_integer_literal] = ACTIONS(4699), - [sym_hex_literal] = ACTIONS(4701), - [sym_bin_literal] = ACTIONS(4701), - [anon_sym_true] = ACTIONS(4699), - [anon_sym_false] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4701), - [sym__backtick_identifier] = ACTIONS(4701), - [sym__automatic_semicolon] = ACTIONS(4701), - [sym_safe_nav] = ACTIONS(4701), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4701), + [899] = { + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, - [983] = { - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4703), - [anon_sym_get] = ACTIONS(4661), - [anon_sym_set] = ACTIONS(4663), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [900] = { + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, - [984] = { - [sym_class_body] = STATE(1084), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), - }, - [985] = { - [sym_enum_class_body] = STATE(1146), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_fun] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(4465), - [anon_sym_object] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_this] = ACTIONS(4465), - [anon_sym_super] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [sym_label] = ACTIONS(4465), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_null] = ACTIONS(4465), - [anon_sym_if] = ACTIONS(4465), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_when] = ACTIONS(4465), - [anon_sym_try] = ACTIONS(4465), - [anon_sym_throw] = ACTIONS(4465), - [anon_sym_return] = ACTIONS(4465), - [anon_sym_continue] = ACTIONS(4465), - [anon_sym_break] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_suspend] = ACTIONS(4465), - [anon_sym_sealed] = ACTIONS(4465), - [anon_sym_annotation] = ACTIONS(4465), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_override] = ACTIONS(4465), - [anon_sym_lateinit] = ACTIONS(4465), - [anon_sym_public] = ACTIONS(4465), - [anon_sym_private] = ACTIONS(4465), - [anon_sym_internal] = ACTIONS(4465), - [anon_sym_protected] = ACTIONS(4465), - [anon_sym_tailrec] = ACTIONS(4465), - [anon_sym_operator] = ACTIONS(4465), - [anon_sym_infix] = ACTIONS(4465), - [anon_sym_inline] = ACTIONS(4465), - [anon_sym_external] = ACTIONS(4465), - [sym_property_modifier] = ACTIONS(4465), - [anon_sym_abstract] = ACTIONS(4465), - [anon_sym_final] = ACTIONS(4465), - [anon_sym_open] = ACTIONS(4465), - [anon_sym_vararg] = ACTIONS(4465), - [anon_sym_noinline] = ACTIONS(4465), - [anon_sym_crossinline] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4467), - [anon_sym_continue_AT] = ACTIONS(4467), - [anon_sym_break_AT] = ACTIONS(4467), - [anon_sym_this_AT] = ACTIONS(4467), - [anon_sym_super_AT] = ACTIONS(4467), - [sym_real_literal] = ACTIONS(4467), - [sym_integer_literal] = ACTIONS(4465), - [sym_hex_literal] = ACTIONS(4467), - [sym_bin_literal] = ACTIONS(4467), - [anon_sym_true] = ACTIONS(4465), - [anon_sym_false] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4467), - [sym__backtick_identifier] = ACTIONS(4467), - [sym__automatic_semicolon] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4467), + [901] = { + [sym_function_body] = STATE(1097), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), }, - [986] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_fun] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_this] = ACTIONS(3109), - [anon_sym_super] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(4563), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_null] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_when] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3111), - [anon_sym_continue_AT] = ACTIONS(3111), - [anon_sym_break_AT] = ACTIONS(3111), - [anon_sym_this_AT] = ACTIONS(3111), - [anon_sym_super_AT] = ACTIONS(3111), - [sym_real_literal] = ACTIONS(3111), - [sym_integer_literal] = ACTIONS(3109), - [sym_hex_literal] = ACTIONS(3111), - [sym_bin_literal] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3111), + [902] = { + [sym_type_constraints] = STATE(1102), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [987] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3116), - [anon_sym_fun] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_where] = ACTIONS(3116), - [anon_sym_object] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_this] = ACTIONS(3116), - [anon_sym_super] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3116), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_when] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3116), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [anon_sym_this_AT] = ACTIONS(3118), - [anon_sym_super_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3116), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3116), - [anon_sym_false] = ACTIONS(3116), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [903] = { + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [988] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym_fun] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_object] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_this] = ACTIONS(3123), - [anon_sym_super] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_when] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_throw] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_STAR_EQ] = ACTIONS(3125), - [anon_sym_SLASH_EQ] = ACTIONS(3125), - [anon_sym_PERCENT_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3125), - [anon_sym_continue_AT] = ACTIONS(3125), - [anon_sym_break_AT] = ACTIONS(3125), - [anon_sym_this_AT] = ACTIONS(3125), - [anon_sym_super_AT] = ACTIONS(3125), - [sym_real_literal] = ACTIONS(3125), - [sym_integer_literal] = ACTIONS(3123), - [sym_hex_literal] = ACTIONS(3125), - [sym_bin_literal] = ACTIONS(3125), - [anon_sym_true] = ACTIONS(3123), - [anon_sym_false] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3125), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3125), + [904] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_catch] = ACTIONS(4451), + [anon_sym_finally] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), }, - [989] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3130), - [anon_sym_super] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(4563), - [anon_sym_QMARK_COLON] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_when] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3132), - [anon_sym_continue_AT] = ACTIONS(3132), - [anon_sym_break_AT] = ACTIONS(3132), - [anon_sym_this_AT] = ACTIONS(3132), - [anon_sym_super_AT] = ACTIONS(3132), - [sym_real_literal] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(3130), - [sym_hex_literal] = ACTIONS(3132), - [sym_bin_literal] = ACTIONS(3132), - [anon_sym_true] = ACTIONS(3130), - [anon_sym_false] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3132), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(4567), + [905] = { + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [906] = { + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_object] = ACTIONS(4455), + [anon_sym_fun] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_this] = ACTIONS(4455), + [anon_sym_super] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [sym_label] = ACTIONS(4455), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_null] = ACTIONS(4455), + [anon_sym_if] = ACTIONS(4455), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_when] = ACTIONS(4455), + [anon_sym_try] = ACTIONS(4455), + [anon_sym_throw] = ACTIONS(4455), + [anon_sym_return] = ACTIONS(4455), + [anon_sym_continue] = ACTIONS(4455), + [anon_sym_break] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4455), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_suspend] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_annotation] = ACTIONS(4455), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_lateinit] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_tailrec] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_infix] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_external] = ACTIONS(4455), + [sym_property_modifier] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_final] = ACTIONS(4455), + [anon_sym_open] = ACTIONS(4455), + [anon_sym_vararg] = ACTIONS(4455), + [anon_sym_noinline] = ACTIONS(4455), + [anon_sym_crossinline] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4457), + [anon_sym_continue_AT] = ACTIONS(4457), + [anon_sym_break_AT] = ACTIONS(4457), + [anon_sym_this_AT] = ACTIONS(4457), + [anon_sym_super_AT] = ACTIONS(4457), + [sym_real_literal] = ACTIONS(4457), + [sym_integer_literal] = ACTIONS(4455), + [sym_hex_literal] = ACTIONS(4457), + [sym_bin_literal] = ACTIONS(4457), + [aux_sym_unsigned_literal_token1] = ACTIONS(4459), + [anon_sym_L] = ACTIONS(4461), + [anon_sym_true] = ACTIONS(4455), + [anon_sym_false] = ACTIONS(4455), + [anon_sym_SQUOTE] = ACTIONS(4457), + [sym__backtick_identifier] = ACTIONS(4457), + [sym__automatic_semicolon] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4457), + }, + [907] = { + [sym_type_constraints] = STATE(990), + [sym_enum_class_body] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3132), + [sym__string_start] = ACTIONS(4323), }, - [990] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(990), - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_fun] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(4709), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_object] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_this] = ACTIONS(4705), - [anon_sym_super] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4705), - [sym_label] = ACTIONS(4705), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_null] = ACTIONS(4705), - [anon_sym_if] = ACTIONS(4705), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_when] = ACTIONS(4705), - [anon_sym_try] = ACTIONS(4705), - [anon_sym_throw] = ACTIONS(4705), - [anon_sym_return] = ACTIONS(4705), - [anon_sym_continue] = ACTIONS(4705), - [anon_sym_break] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_PLUS_EQ] = ACTIONS(4707), - [anon_sym_DASH_EQ] = ACTIONS(4707), - [anon_sym_STAR_EQ] = ACTIONS(4707), - [anon_sym_SLASH_EQ] = ACTIONS(4707), - [anon_sym_PERCENT_EQ] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4705), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4705), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_suspend] = ACTIONS(4705), - [anon_sym_sealed] = ACTIONS(4705), - [anon_sym_annotation] = ACTIONS(4705), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_override] = ACTIONS(4705), - [anon_sym_lateinit] = ACTIONS(4705), - [anon_sym_public] = ACTIONS(4705), - [anon_sym_private] = ACTIONS(4705), - [anon_sym_internal] = ACTIONS(4705), - [anon_sym_protected] = ACTIONS(4705), - [anon_sym_tailrec] = ACTIONS(4705), - [anon_sym_operator] = ACTIONS(4705), - [anon_sym_infix] = ACTIONS(4705), - [anon_sym_inline] = ACTIONS(4705), - [anon_sym_external] = ACTIONS(4705), - [sym_property_modifier] = ACTIONS(4705), - [anon_sym_abstract] = ACTIONS(4705), - [anon_sym_final] = ACTIONS(4705), - [anon_sym_open] = ACTIONS(4705), - [anon_sym_vararg] = ACTIONS(4705), - [anon_sym_noinline] = ACTIONS(4705), - [anon_sym_crossinline] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4707), - [anon_sym_continue_AT] = ACTIONS(4707), - [anon_sym_break_AT] = ACTIONS(4707), - [anon_sym_this_AT] = ACTIONS(4707), - [anon_sym_super_AT] = ACTIONS(4707), - [sym_real_literal] = ACTIONS(4707), - [sym_integer_literal] = ACTIONS(4705), - [sym_hex_literal] = ACTIONS(4707), - [sym_bin_literal] = ACTIONS(4707), - [anon_sym_true] = ACTIONS(4705), - [anon_sym_false] = ACTIONS(4705), - [anon_sym_SQUOTE] = ACTIONS(4707), - [sym__backtick_identifier] = ACTIONS(4707), - [sym__automatic_semicolon] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4707), + [908] = { + [sym_class_body] = STATE(1120), + [sym_type_constraints] = STATE(993), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), }, - [991] = { - [sym_getter] = STATE(4976), - [sym_setter] = STATE(4976), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [909] = { + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [910] = { + [sym_type_constraints] = STATE(960), + [sym_enum_class_body] = STATE(1174), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4467), + [anon_sym_fun] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_this] = ACTIONS(4467), + [anon_sym_super] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4467), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_null] = ACTIONS(4467), + [anon_sym_if] = ACTIONS(4467), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_when] = ACTIONS(4467), + [anon_sym_try] = ACTIONS(4467), + [anon_sym_throw] = ACTIONS(4467), + [anon_sym_return] = ACTIONS(4467), + [anon_sym_continue] = ACTIONS(4467), + [anon_sym_break] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG] = ACTIONS(4467), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4469), + [anon_sym_continue_AT] = ACTIONS(4469), + [anon_sym_break_AT] = ACTIONS(4469), + [anon_sym_this_AT] = ACTIONS(4469), + [anon_sym_super_AT] = ACTIONS(4469), + [sym_real_literal] = ACTIONS(4469), + [sym_integer_literal] = ACTIONS(4467), + [sym_hex_literal] = ACTIONS(4469), + [sym_bin_literal] = ACTIONS(4469), + [anon_sym_true] = ACTIONS(4467), + [anon_sym_false] = ACTIONS(4467), + [anon_sym_SQUOTE] = ACTIONS(4469), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4469), + }, + [911] = { + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), + }, + [912] = { + [sym__alpha_identifier] = ACTIONS(4471), + [anon_sym_AT] = ACTIONS(4473), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4471), + [anon_sym_EQ] = ACTIONS(4471), + [anon_sym_constructor] = ACTIONS(4471), + [anon_sym_LBRACE] = ACTIONS(4473), + [anon_sym_RBRACE] = ACTIONS(4473), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_where] = ACTIONS(4471), + [anon_sym_object] = ACTIONS(4471), + [anon_sym_fun] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4471), + [anon_sym_SEMI] = ACTIONS(4473), + [anon_sym_get] = ACTIONS(4471), + [anon_sym_set] = ACTIONS(4471), + [anon_sym_this] = ACTIONS(4471), + [anon_sym_super] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4471), + [anon_sym_DOT_DOT] = ACTIONS(4473), + [anon_sym_QMARK_COLON] = ACTIONS(4473), + [anon_sym_AMP_AMP] = ACTIONS(4473), + [anon_sym_PIPE_PIPE] = ACTIONS(4473), + [anon_sym_null] = ACTIONS(4471), + [anon_sym_if] = ACTIONS(4471), + [anon_sym_else] = ACTIONS(4471), + [anon_sym_when] = ACTIONS(4471), + [anon_sym_try] = ACTIONS(4471), + [anon_sym_throw] = ACTIONS(4471), + [anon_sym_return] = ACTIONS(4471), + [anon_sym_continue] = ACTIONS(4471), + [anon_sym_break] = ACTIONS(4471), + [anon_sym_COLON_COLON] = ACTIONS(4473), + [anon_sym_PLUS_EQ] = ACTIONS(4473), + [anon_sym_DASH_EQ] = ACTIONS(4473), + [anon_sym_STAR_EQ] = ACTIONS(4473), + [anon_sym_SLASH_EQ] = ACTIONS(4473), + [anon_sym_PERCENT_EQ] = ACTIONS(4473), + [anon_sym_BANG_EQ] = ACTIONS(4471), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4473), + [anon_sym_EQ_EQ] = ACTIONS(4471), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4473), + [anon_sym_LT_EQ] = ACTIONS(4473), + [anon_sym_GT_EQ] = ACTIONS(4473), + [anon_sym_BANGin] = ACTIONS(4473), + [anon_sym_is] = ACTIONS(4471), + [anon_sym_BANGis] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_PERCENT] = ACTIONS(4471), + [anon_sym_as_QMARK] = ACTIONS(4473), + [anon_sym_PLUS_PLUS] = ACTIONS(4473), + [anon_sym_DASH_DASH] = ACTIONS(4473), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_BANG_BANG] = ACTIONS(4473), + [anon_sym_suspend] = ACTIONS(4471), + [anon_sym_sealed] = ACTIONS(4471), + [anon_sym_annotation] = ACTIONS(4471), + [anon_sym_data] = ACTIONS(4471), + [anon_sym_inner] = ACTIONS(4471), + [anon_sym_value] = ACTIONS(4471), + [anon_sym_override] = ACTIONS(4471), + [anon_sym_lateinit] = ACTIONS(4471), + [anon_sym_public] = ACTIONS(4471), + [anon_sym_private] = ACTIONS(4471), + [anon_sym_internal] = ACTIONS(4471), + [anon_sym_protected] = ACTIONS(4471), + [anon_sym_tailrec] = ACTIONS(4471), + [anon_sym_operator] = ACTIONS(4471), + [anon_sym_infix] = ACTIONS(4471), + [anon_sym_inline] = ACTIONS(4471), + [anon_sym_external] = ACTIONS(4471), + [sym_property_modifier] = ACTIONS(4471), + [anon_sym_abstract] = ACTIONS(4471), + [anon_sym_final] = ACTIONS(4471), + [anon_sym_open] = ACTIONS(4471), + [anon_sym_vararg] = ACTIONS(4471), + [anon_sym_noinline] = ACTIONS(4471), + [anon_sym_crossinline] = ACTIONS(4471), + [anon_sym_expect] = ACTIONS(4471), + [anon_sym_actual] = ACTIONS(4471), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4473), + [anon_sym_continue_AT] = ACTIONS(4473), + [anon_sym_break_AT] = ACTIONS(4473), + [anon_sym_this_AT] = ACTIONS(4473), + [anon_sym_super_AT] = ACTIONS(4473), + [sym_real_literal] = ACTIONS(4473), + [sym_integer_literal] = ACTIONS(4471), + [sym_hex_literal] = ACTIONS(4473), + [sym_bin_literal] = ACTIONS(4473), + [anon_sym_true] = ACTIONS(4471), + [anon_sym_false] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4473), + [sym__backtick_identifier] = ACTIONS(4473), + [sym__automatic_semicolon] = ACTIONS(4473), + [sym_safe_nav] = ACTIONS(4473), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4473), + }, + [913] = { + [sym_type_constraints] = STATE(935), + [sym_enum_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [914] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_catch] = ACTIONS(4477), + [anon_sym_finally] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), + }, + [915] = { + [sym_type_constraints] = STATE(937), + [sym_enum_class_body] = STATE(1128), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4481), + [anon_sym_fun] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_this] = ACTIONS(4481), + [anon_sym_super] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_null] = ACTIONS(4481), + [anon_sym_if] = ACTIONS(4481), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_when] = ACTIONS(4481), + [anon_sym_try] = ACTIONS(4481), + [anon_sym_throw] = ACTIONS(4481), + [anon_sym_return] = ACTIONS(4481), + [anon_sym_continue] = ACTIONS(4481), + [anon_sym_break] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4481), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4483), + [anon_sym_continue_AT] = ACTIONS(4483), + [anon_sym_break_AT] = ACTIONS(4483), + [anon_sym_this_AT] = ACTIONS(4483), + [anon_sym_super_AT] = ACTIONS(4483), + [sym_real_literal] = ACTIONS(4483), + [sym_integer_literal] = ACTIONS(4481), + [sym_hex_literal] = ACTIONS(4483), + [sym_bin_literal] = ACTIONS(4483), + [anon_sym_true] = ACTIONS(4481), + [anon_sym_false] = ACTIONS(4481), + [anon_sym_SQUOTE] = ACTIONS(4483), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4483), + }, + [916] = { + [sym_class_body] = STATE(1068), + [sym_type_constraints] = STATE(969), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [917] = { + [sym__alpha_identifier] = ACTIONS(4485), + [anon_sym_AT] = ACTIONS(4487), + [anon_sym_LBRACK] = ACTIONS(4487), + [anon_sym_as] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_LBRACE] = ACTIONS(4487), + [anon_sym_RBRACE] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4487), + [anon_sym_COMMA] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_where] = ACTIONS(4485), + [anon_sym_object] = ACTIONS(4485), + [anon_sym_fun] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_get] = ACTIONS(4485), + [anon_sym_set] = ACTIONS(4485), + [anon_sym_this] = ACTIONS(4485), + [anon_sym_super] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4485), + [sym_label] = ACTIONS(4485), + [anon_sym_in] = ACTIONS(4485), + [anon_sym_DOT_DOT] = ACTIONS(4487), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4487), + [anon_sym_PIPE_PIPE] = ACTIONS(4487), + [anon_sym_null] = ACTIONS(4485), + [anon_sym_if] = ACTIONS(4485), + [anon_sym_else] = ACTIONS(4485), + [anon_sym_when] = ACTIONS(4485), + [anon_sym_try] = ACTIONS(4485), + [anon_sym_catch] = ACTIONS(4485), + [anon_sym_finally] = ACTIONS(4485), + [anon_sym_throw] = ACTIONS(4485), + [anon_sym_return] = ACTIONS(4485), + [anon_sym_continue] = ACTIONS(4485), + [anon_sym_break] = ACTIONS(4485), + [anon_sym_COLON_COLON] = ACTIONS(4487), + [anon_sym_PLUS_EQ] = ACTIONS(4487), + [anon_sym_DASH_EQ] = ACTIONS(4487), + [anon_sym_STAR_EQ] = ACTIONS(4487), + [anon_sym_SLASH_EQ] = ACTIONS(4487), + [anon_sym_PERCENT_EQ] = ACTIONS(4487), + [anon_sym_BANG_EQ] = ACTIONS(4485), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4487), + [anon_sym_EQ_EQ] = ACTIONS(4485), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4487), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_BANGin] = ACTIONS(4487), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4485), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_SLASH] = ACTIONS(4485), + [anon_sym_PERCENT] = ACTIONS(4485), + [anon_sym_as_QMARK] = ACTIONS(4487), + [anon_sym_PLUS_PLUS] = ACTIONS(4487), + [anon_sym_DASH_DASH] = ACTIONS(4487), + [anon_sym_BANG] = ACTIONS(4485), + [anon_sym_BANG_BANG] = ACTIONS(4487), + [anon_sym_suspend] = ACTIONS(4485), + [anon_sym_sealed] = ACTIONS(4485), + [anon_sym_annotation] = ACTIONS(4485), + [anon_sym_data] = ACTIONS(4485), + [anon_sym_inner] = ACTIONS(4485), + [anon_sym_value] = ACTIONS(4485), + [anon_sym_override] = ACTIONS(4485), + [anon_sym_lateinit] = ACTIONS(4485), + [anon_sym_public] = ACTIONS(4485), + [anon_sym_private] = ACTIONS(4485), + [anon_sym_internal] = ACTIONS(4485), + [anon_sym_protected] = ACTIONS(4485), + [anon_sym_tailrec] = ACTIONS(4485), + [anon_sym_operator] = ACTIONS(4485), + [anon_sym_infix] = ACTIONS(4485), + [anon_sym_inline] = ACTIONS(4485), + [anon_sym_external] = ACTIONS(4485), + [sym_property_modifier] = ACTIONS(4485), + [anon_sym_abstract] = ACTIONS(4485), + [anon_sym_final] = ACTIONS(4485), + [anon_sym_open] = ACTIONS(4485), + [anon_sym_vararg] = ACTIONS(4485), + [anon_sym_noinline] = ACTIONS(4485), + [anon_sym_crossinline] = ACTIONS(4485), + [anon_sym_expect] = ACTIONS(4485), + [anon_sym_actual] = ACTIONS(4485), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4487), + [anon_sym_continue_AT] = ACTIONS(4487), + [anon_sym_break_AT] = ACTIONS(4487), + [anon_sym_this_AT] = ACTIONS(4487), + [anon_sym_super_AT] = ACTIONS(4487), + [sym_real_literal] = ACTIONS(4487), + [sym_integer_literal] = ACTIONS(4485), + [sym_hex_literal] = ACTIONS(4487), + [sym_bin_literal] = ACTIONS(4487), + [anon_sym_true] = ACTIONS(4485), + [anon_sym_false] = ACTIONS(4485), + [anon_sym_SQUOTE] = ACTIONS(4487), + [sym__backtick_identifier] = ACTIONS(4487), + [sym__automatic_semicolon] = ACTIONS(4487), + [sym_safe_nav] = ACTIONS(4487), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4487), + }, + [918] = { + [sym__alpha_identifier] = ACTIONS(4489), + [anon_sym_AT] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4489), + [anon_sym_constructor] = ACTIONS(4489), + [anon_sym_LBRACE] = ACTIONS(4491), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_LPAREN] = ACTIONS(4491), + [anon_sym_COMMA] = ACTIONS(4491), + [anon_sym_LT] = ACTIONS(4489), + [anon_sym_GT] = ACTIONS(4489), + [anon_sym_where] = ACTIONS(4489), + [anon_sym_object] = ACTIONS(4489), + [anon_sym_fun] = ACTIONS(4489), + [anon_sym_DOT] = ACTIONS(4489), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_get] = ACTIONS(4489), + [anon_sym_set] = ACTIONS(4489), + [anon_sym_this] = ACTIONS(4489), + [anon_sym_super] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4489), + [sym_label] = ACTIONS(4489), + [anon_sym_in] = ACTIONS(4489), + [anon_sym_DOT_DOT] = ACTIONS(4491), + [anon_sym_QMARK_COLON] = ACTIONS(4491), + [anon_sym_AMP_AMP] = ACTIONS(4491), + [anon_sym_PIPE_PIPE] = ACTIONS(4491), + [anon_sym_null] = ACTIONS(4489), + [anon_sym_if] = ACTIONS(4489), + [anon_sym_else] = ACTIONS(4489), + [anon_sym_when] = ACTIONS(4489), + [anon_sym_try] = ACTIONS(4489), + [anon_sym_throw] = ACTIONS(4489), + [anon_sym_return] = ACTIONS(4489), + [anon_sym_continue] = ACTIONS(4489), + [anon_sym_break] = ACTIONS(4489), + [anon_sym_COLON_COLON] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ] = ACTIONS(4489), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ] = ACTIONS(4489), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4491), + [anon_sym_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_EQ] = ACTIONS(4491), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4489), + [anon_sym_BANGis] = ACTIONS(4491), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4489), + [anon_sym_PERCENT] = ACTIONS(4489), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4491), + [anon_sym_DASH_DASH] = ACTIONS(4491), + [anon_sym_BANG] = ACTIONS(4489), + [anon_sym_BANG_BANG] = ACTIONS(4491), + [anon_sym_suspend] = ACTIONS(4489), + [anon_sym_sealed] = ACTIONS(4489), + [anon_sym_annotation] = ACTIONS(4489), + [anon_sym_data] = ACTIONS(4489), + [anon_sym_inner] = ACTIONS(4489), + [anon_sym_value] = ACTIONS(4489), + [anon_sym_override] = ACTIONS(4489), + [anon_sym_lateinit] = ACTIONS(4489), + [anon_sym_public] = ACTIONS(4489), + [anon_sym_private] = ACTIONS(4489), + [anon_sym_internal] = ACTIONS(4489), + [anon_sym_protected] = ACTIONS(4489), + [anon_sym_tailrec] = ACTIONS(4489), + [anon_sym_operator] = ACTIONS(4489), + [anon_sym_infix] = ACTIONS(4489), + [anon_sym_inline] = ACTIONS(4489), + [anon_sym_external] = ACTIONS(4489), + [sym_property_modifier] = ACTIONS(4489), + [anon_sym_abstract] = ACTIONS(4489), + [anon_sym_final] = ACTIONS(4489), + [anon_sym_open] = ACTIONS(4489), + [anon_sym_vararg] = ACTIONS(4489), + [anon_sym_noinline] = ACTIONS(4489), + [anon_sym_crossinline] = ACTIONS(4489), + [anon_sym_expect] = ACTIONS(4489), + [anon_sym_actual] = ACTIONS(4489), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4491), + [anon_sym_continue_AT] = ACTIONS(4491), + [anon_sym_break_AT] = ACTIONS(4491), + [anon_sym_this_AT] = ACTIONS(4491), + [anon_sym_super_AT] = ACTIONS(4491), + [sym_real_literal] = ACTIONS(4491), + [sym_integer_literal] = ACTIONS(4489), + [sym_hex_literal] = ACTIONS(4491), + [sym_bin_literal] = ACTIONS(4491), + [anon_sym_true] = ACTIONS(4489), + [anon_sym_false] = ACTIONS(4489), + [anon_sym_SQUOTE] = ACTIONS(4491), + [sym__backtick_identifier] = ACTIONS(4491), + [sym__automatic_semicolon] = ACTIONS(4491), + [sym_safe_nav] = ACTIONS(4491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4491), + }, + [919] = { + [sym_type_constraints] = STATE(971), + [sym_enum_class_body] = STATE(1120), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), + }, + [920] = { + [sym_class_body] = STATE(1138), + [sym_type_constraints] = STATE(956), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4493), + [anon_sym_fun] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_this] = ACTIONS(4493), + [anon_sym_super] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_null] = ACTIONS(4493), + [anon_sym_if] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_when] = ACTIONS(4493), + [anon_sym_try] = ACTIONS(4493), + [anon_sym_throw] = ACTIONS(4493), + [anon_sym_return] = ACTIONS(4493), + [anon_sym_continue] = ACTIONS(4493), + [anon_sym_break] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4495), + [anon_sym_continue_AT] = ACTIONS(4495), + [anon_sym_break_AT] = ACTIONS(4495), + [anon_sym_this_AT] = ACTIONS(4495), + [anon_sym_super_AT] = ACTIONS(4495), + [sym_real_literal] = ACTIONS(4495), + [sym_integer_literal] = ACTIONS(4493), + [sym_hex_literal] = ACTIONS(4495), + [sym_bin_literal] = ACTIONS(4495), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [anon_sym_SQUOTE] = ACTIONS(4495), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4495), + }, + [921] = { + [sym_class_body] = STATE(1043), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(4501), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), + }, + [922] = { + [sym_class_body] = STATE(1180), + [sym_type_constraints] = STATE(945), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [923] = { + [sym_class_body] = STATE(1141), + [sym_type_constraints] = STATE(933), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), + }, + [924] = { + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(943), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [925] = { + [sym_value_arguments] = STATE(1170), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), + }, + [926] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_get] = ACTIONS(4603), - [anon_sym_set] = ACTIONS(4605), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4513), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -164687,1844 +156769,1951 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [992] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_fun] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_where] = ACTIONS(3137), - [anon_sym_object] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3137), - [anon_sym_super] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(4561), - [anon_sym_DOT_DOT] = ACTIONS(4563), - [anon_sym_QMARK_COLON] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_when] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(4575), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3139), - [anon_sym_continue_AT] = ACTIONS(3139), - [anon_sym_break_AT] = ACTIONS(3139), - [anon_sym_this_AT] = ACTIONS(3139), - [anon_sym_super_AT] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3139), - [sym_integer_literal] = ACTIONS(3137), - [sym_hex_literal] = ACTIONS(3139), - [sym_bin_literal] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3139), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3139), + [927] = { + [sym__alpha_identifier] = ACTIONS(4543), + [anon_sym_AT] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_as] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_where] = ACTIONS(4543), + [anon_sym_object] = ACTIONS(4543), + [anon_sym_fun] = ACTIONS(4543), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4545), + [anon_sym_get] = ACTIONS(4543), + [anon_sym_set] = ACTIONS(4543), + [anon_sym_this] = ACTIONS(4543), + [anon_sym_super] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4543), + [anon_sym_in] = ACTIONS(4543), + [anon_sym_DOT_DOT] = ACTIONS(4545), + [anon_sym_QMARK_COLON] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_null] = ACTIONS(4543), + [anon_sym_if] = ACTIONS(4543), + [anon_sym_else] = ACTIONS(4543), + [anon_sym_when] = ACTIONS(4543), + [anon_sym_try] = ACTIONS(4543), + [anon_sym_throw] = ACTIONS(4543), + [anon_sym_return] = ACTIONS(4543), + [anon_sym_continue] = ACTIONS(4543), + [anon_sym_break] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4545), + [anon_sym_EQ_EQ] = ACTIONS(4543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_BANGin] = ACTIONS(4545), + [anon_sym_is] = ACTIONS(4543), + [anon_sym_BANGis] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_BANG] = ACTIONS(4543), + [anon_sym_BANG_BANG] = ACTIONS(4545), + [anon_sym_suspend] = ACTIONS(4543), + [anon_sym_sealed] = ACTIONS(4543), + [anon_sym_annotation] = ACTIONS(4543), + [anon_sym_data] = ACTIONS(4543), + [anon_sym_inner] = ACTIONS(4543), + [anon_sym_value] = ACTIONS(4543), + [anon_sym_override] = ACTIONS(4543), + [anon_sym_lateinit] = ACTIONS(4543), + [anon_sym_public] = ACTIONS(4543), + [anon_sym_private] = ACTIONS(4543), + [anon_sym_internal] = ACTIONS(4543), + [anon_sym_protected] = ACTIONS(4543), + [anon_sym_tailrec] = ACTIONS(4543), + [anon_sym_operator] = ACTIONS(4543), + [anon_sym_infix] = ACTIONS(4543), + [anon_sym_inline] = ACTIONS(4543), + [anon_sym_external] = ACTIONS(4543), + [sym_property_modifier] = ACTIONS(4543), + [anon_sym_abstract] = ACTIONS(4543), + [anon_sym_final] = ACTIONS(4543), + [anon_sym_open] = ACTIONS(4543), + [anon_sym_vararg] = ACTIONS(4543), + [anon_sym_noinline] = ACTIONS(4543), + [anon_sym_crossinline] = ACTIONS(4543), + [anon_sym_expect] = ACTIONS(4543), + [anon_sym_actual] = ACTIONS(4543), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4545), + [anon_sym_continue_AT] = ACTIONS(4545), + [anon_sym_break_AT] = ACTIONS(4545), + [anon_sym_this_AT] = ACTIONS(4545), + [anon_sym_super_AT] = ACTIONS(4545), + [sym_real_literal] = ACTIONS(4545), + [sym_integer_literal] = ACTIONS(4543), + [sym_hex_literal] = ACTIONS(4545), + [sym_bin_literal] = ACTIONS(4545), + [anon_sym_true] = ACTIONS(4543), + [anon_sym_false] = ACTIONS(4543), + [anon_sym_SQUOTE] = ACTIONS(4545), + [sym__backtick_identifier] = ACTIONS(4545), + [sym__automatic_semicolon] = ACTIONS(4545), + [sym_safe_nav] = ACTIONS(4545), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4545), }, - [993] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_fun] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(3097), - [anon_sym_object] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3097), - [anon_sym_super] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(4561), - [anon_sym_DOT_DOT] = ACTIONS(4563), - [anon_sym_QMARK_COLON] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_null] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_when] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3097), - [anon_sym_throw] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_EQ] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4575), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3099), - [anon_sym_continue_AT] = ACTIONS(3099), - [anon_sym_break_AT] = ACTIONS(3099), - [anon_sym_this_AT] = ACTIONS(3099), - [anon_sym_super_AT] = ACTIONS(3099), - [sym_real_literal] = ACTIONS(3099), - [sym_integer_literal] = ACTIONS(3097), - [sym_hex_literal] = ACTIONS(3099), - [sym_bin_literal] = ACTIONS(3099), - [anon_sym_true] = ACTIONS(3097), - [anon_sym_false] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3099), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3099), + [928] = { + [sym_enum_class_body] = STATE(1148), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [994] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_fun] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3141), - [anon_sym_super] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(4561), - [anon_sym_DOT_DOT] = ACTIONS(4563), - [anon_sym_QMARK_COLON] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(4631), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_when] = ACTIONS(3141), - [anon_sym_try] = ACTIONS(3141), - [anon_sym_throw] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(4569), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4571), - [anon_sym_EQ_EQ] = ACTIONS(4569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4571), - [anon_sym_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_EQ] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4575), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3143), - [anon_sym_continue_AT] = ACTIONS(3143), - [anon_sym_break_AT] = ACTIONS(3143), - [anon_sym_this_AT] = ACTIONS(3143), - [anon_sym_super_AT] = ACTIONS(3143), - [sym_real_literal] = ACTIONS(3143), - [sym_integer_literal] = ACTIONS(3141), - [sym_hex_literal] = ACTIONS(3143), - [sym_bin_literal] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3143), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3143), + [929] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), }, - [995] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3184), - [anon_sym_fun] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(3184), - [anon_sym_object] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3184), - [anon_sym_super] = ACTIONS(3184), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(4561), - [anon_sym_DOT_DOT] = ACTIONS(4563), - [anon_sym_QMARK_COLON] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(4631), - [anon_sym_PIPE_PIPE] = ACTIONS(4633), - [anon_sym_null] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_when] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3186), - [anon_sym_DASH_EQ] = ACTIONS(3186), - [anon_sym_STAR_EQ] = ACTIONS(3186), - [anon_sym_SLASH_EQ] = ACTIONS(3186), - [anon_sym_PERCENT_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ] = ACTIONS(4569), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4571), - [anon_sym_EQ_EQ] = ACTIONS(4569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4571), - [anon_sym_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_EQ] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4575), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3186), - [anon_sym_continue_AT] = ACTIONS(3186), - [anon_sym_break_AT] = ACTIONS(3186), - [anon_sym_this_AT] = ACTIONS(3186), - [anon_sym_super_AT] = ACTIONS(3186), - [sym_real_literal] = ACTIONS(3186), - [sym_integer_literal] = ACTIONS(3184), - [sym_hex_literal] = ACTIONS(3186), - [sym_bin_literal] = ACTIONS(3186), - [anon_sym_true] = ACTIONS(3184), - [anon_sym_false] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3186), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3186), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3186), + [930] = { + [sym_class_body] = STATE(1144), + [sym__alpha_identifier] = ACTIONS(4547), + [anon_sym_AT] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4549), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_where] = ACTIONS(4547), + [anon_sym_object] = ACTIONS(4547), + [anon_sym_fun] = ACTIONS(4547), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_SEMI] = ACTIONS(4549), + [anon_sym_get] = ACTIONS(4547), + [anon_sym_set] = ACTIONS(4547), + [anon_sym_this] = ACTIONS(4547), + [anon_sym_super] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4547), + [sym_label] = ACTIONS(4547), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_null] = ACTIONS(4547), + [anon_sym_if] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(4547), + [anon_sym_when] = ACTIONS(4547), + [anon_sym_try] = ACTIONS(4547), + [anon_sym_throw] = ACTIONS(4547), + [anon_sym_return] = ACTIONS(4547), + [anon_sym_continue] = ACTIONS(4547), + [anon_sym_break] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ] = ACTIONS(4547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_EQ] = ACTIONS(4549), + [anon_sym_BANGin] = ACTIONS(4549), + [anon_sym_is] = ACTIONS(4547), + [anon_sym_BANGis] = ACTIONS(4549), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_as_QMARK] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_BANG] = ACTIONS(4547), + [anon_sym_BANG_BANG] = ACTIONS(4549), + [anon_sym_suspend] = ACTIONS(4547), + [anon_sym_sealed] = ACTIONS(4547), + [anon_sym_annotation] = ACTIONS(4547), + [anon_sym_data] = ACTIONS(4547), + [anon_sym_inner] = ACTIONS(4547), + [anon_sym_value] = ACTIONS(4547), + [anon_sym_override] = ACTIONS(4547), + [anon_sym_lateinit] = ACTIONS(4547), + [anon_sym_public] = ACTIONS(4547), + [anon_sym_private] = ACTIONS(4547), + [anon_sym_internal] = ACTIONS(4547), + [anon_sym_protected] = ACTIONS(4547), + [anon_sym_tailrec] = ACTIONS(4547), + [anon_sym_operator] = ACTIONS(4547), + [anon_sym_infix] = ACTIONS(4547), + [anon_sym_inline] = ACTIONS(4547), + [anon_sym_external] = ACTIONS(4547), + [sym_property_modifier] = ACTIONS(4547), + [anon_sym_abstract] = ACTIONS(4547), + [anon_sym_final] = ACTIONS(4547), + [anon_sym_open] = ACTIONS(4547), + [anon_sym_vararg] = ACTIONS(4547), + [anon_sym_noinline] = ACTIONS(4547), + [anon_sym_crossinline] = ACTIONS(4547), + [anon_sym_expect] = ACTIONS(4547), + [anon_sym_actual] = ACTIONS(4547), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4549), + [anon_sym_continue_AT] = ACTIONS(4549), + [anon_sym_break_AT] = ACTIONS(4549), + [anon_sym_this_AT] = ACTIONS(4549), + [anon_sym_super_AT] = ACTIONS(4549), + [sym_real_literal] = ACTIONS(4549), + [sym_integer_literal] = ACTIONS(4547), + [sym_hex_literal] = ACTIONS(4549), + [sym_bin_literal] = ACTIONS(4549), + [anon_sym_true] = ACTIONS(4547), + [anon_sym_false] = ACTIONS(4547), + [anon_sym_SQUOTE] = ACTIONS(4549), + [sym__backtick_identifier] = ACTIONS(4549), + [sym__automatic_semicolon] = ACTIONS(4549), + [sym_safe_nav] = ACTIONS(4549), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4549), }, - [996] = { - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_fun] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(4439), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_object] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_this] = ACTIONS(4435), - [anon_sym_super] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4435), - [sym_label] = ACTIONS(4435), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_null] = ACTIONS(4435), - [anon_sym_if] = ACTIONS(4435), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_when] = ACTIONS(4435), - [anon_sym_try] = ACTIONS(4435), - [anon_sym_throw] = ACTIONS(4435), - [anon_sym_return] = ACTIONS(4435), - [anon_sym_continue] = ACTIONS(4435), - [anon_sym_break] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_PLUS_EQ] = ACTIONS(4437), - [anon_sym_DASH_EQ] = ACTIONS(4437), - [anon_sym_STAR_EQ] = ACTIONS(4437), - [anon_sym_SLASH_EQ] = ACTIONS(4437), - [anon_sym_PERCENT_EQ] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4435), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4435), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_suspend] = ACTIONS(4435), - [anon_sym_sealed] = ACTIONS(4435), - [anon_sym_annotation] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_override] = ACTIONS(4435), - [anon_sym_lateinit] = ACTIONS(4435), - [anon_sym_public] = ACTIONS(4435), - [anon_sym_private] = ACTIONS(4435), - [anon_sym_internal] = ACTIONS(4435), - [anon_sym_protected] = ACTIONS(4435), - [anon_sym_tailrec] = ACTIONS(4435), - [anon_sym_operator] = ACTIONS(4435), - [anon_sym_infix] = ACTIONS(4435), - [anon_sym_inline] = ACTIONS(4435), - [anon_sym_external] = ACTIONS(4435), - [sym_property_modifier] = ACTIONS(4435), - [anon_sym_abstract] = ACTIONS(4435), - [anon_sym_final] = ACTIONS(4435), - [anon_sym_open] = ACTIONS(4435), - [anon_sym_vararg] = ACTIONS(4435), - [anon_sym_noinline] = ACTIONS(4435), - [anon_sym_crossinline] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4437), - [anon_sym_continue_AT] = ACTIONS(4437), - [anon_sym_break_AT] = ACTIONS(4437), - [anon_sym_this_AT] = ACTIONS(4437), - [anon_sym_super_AT] = ACTIONS(4437), - [sym_real_literal] = ACTIONS(4437), - [sym_integer_literal] = ACTIONS(4435), - [sym_hex_literal] = ACTIONS(4437), - [sym_bin_literal] = ACTIONS(4437), - [anon_sym_true] = ACTIONS(4435), - [anon_sym_false] = ACTIONS(4435), - [anon_sym_SQUOTE] = ACTIONS(4437), - [sym__backtick_identifier] = ACTIONS(4437), - [sym__automatic_semicolon] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4437), + [931] = { + [sym__alpha_identifier] = ACTIONS(4551), + [anon_sym_AT] = ACTIONS(4553), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_as] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4553), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_where] = ACTIONS(4551), + [anon_sym_object] = ACTIONS(4551), + [anon_sym_fun] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4553), + [anon_sym_get] = ACTIONS(4551), + [anon_sym_set] = ACTIONS(4551), + [anon_sym_this] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [sym_label] = ACTIONS(4551), + [anon_sym_in] = ACTIONS(4551), + [anon_sym_DOT_DOT] = ACTIONS(4553), + [anon_sym_QMARK_COLON] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_null] = ACTIONS(4551), + [anon_sym_if] = ACTIONS(4551), + [anon_sym_else] = ACTIONS(4551), + [anon_sym_when] = ACTIONS(4551), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_throw] = ACTIONS(4551), + [anon_sym_return] = ACTIONS(4551), + [anon_sym_continue] = ACTIONS(4551), + [anon_sym_break] = ACTIONS(4551), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(4553), + [anon_sym_DASH_EQ] = ACTIONS(4553), + [anon_sym_STAR_EQ] = ACTIONS(4553), + [anon_sym_SLASH_EQ] = ACTIONS(4553), + [anon_sym_PERCENT_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4553), + [anon_sym_is] = ACTIONS(4551), + [anon_sym_BANGis] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_as_QMARK] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_BANG_BANG] = ACTIONS(4553), + [anon_sym_suspend] = ACTIONS(4551), + [anon_sym_sealed] = ACTIONS(4551), + [anon_sym_annotation] = ACTIONS(4551), + [anon_sym_data] = ACTIONS(4551), + [anon_sym_inner] = ACTIONS(4551), + [anon_sym_value] = ACTIONS(4551), + [anon_sym_override] = ACTIONS(4551), + [anon_sym_lateinit] = ACTIONS(4551), + [anon_sym_public] = ACTIONS(4551), + [anon_sym_private] = ACTIONS(4551), + [anon_sym_internal] = ACTIONS(4551), + [anon_sym_protected] = ACTIONS(4551), + [anon_sym_tailrec] = ACTIONS(4551), + [anon_sym_operator] = ACTIONS(4551), + [anon_sym_infix] = ACTIONS(4551), + [anon_sym_inline] = ACTIONS(4551), + [anon_sym_external] = ACTIONS(4551), + [sym_property_modifier] = ACTIONS(4551), + [anon_sym_abstract] = ACTIONS(4551), + [anon_sym_final] = ACTIONS(4551), + [anon_sym_open] = ACTIONS(4551), + [anon_sym_vararg] = ACTIONS(4551), + [anon_sym_noinline] = ACTIONS(4551), + [anon_sym_crossinline] = ACTIONS(4551), + [anon_sym_expect] = ACTIONS(4551), + [anon_sym_actual] = ACTIONS(4551), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4553), + [anon_sym_continue_AT] = ACTIONS(4553), + [anon_sym_break_AT] = ACTIONS(4553), + [anon_sym_this_AT] = ACTIONS(4553), + [anon_sym_super_AT] = ACTIONS(4553), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_SQUOTE] = ACTIONS(4553), + [sym__backtick_identifier] = ACTIONS(4553), + [sym__automatic_semicolon] = ACTIONS(4553), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4553), }, - [997] = { - [sym__alpha_identifier] = ACTIONS(4714), - [anon_sym_AT] = ACTIONS(4716), - [anon_sym_COLON] = ACTIONS(4714), - [anon_sym_LBRACK] = ACTIONS(4716), - [anon_sym_as] = ACTIONS(4714), - [anon_sym_EQ] = ACTIONS(4714), - [anon_sym_fun] = ACTIONS(4714), - [anon_sym_LBRACE] = ACTIONS(4716), - [anon_sym_RBRACE] = ACTIONS(4716), - [anon_sym_LPAREN] = ACTIONS(4716), - [anon_sym_COMMA] = ACTIONS(4716), - [anon_sym_LT] = ACTIONS(4714), - [anon_sym_GT] = ACTIONS(4714), - [anon_sym_where] = ACTIONS(4714), - [anon_sym_object] = ACTIONS(4714), - [anon_sym_DOT] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_get] = ACTIONS(4714), - [anon_sym_set] = ACTIONS(4714), - [anon_sym_this] = ACTIONS(4714), - [anon_sym_super] = ACTIONS(4714), - [anon_sym_STAR] = ACTIONS(4714), - [sym_label] = ACTIONS(4714), - [anon_sym_in] = ACTIONS(4714), - [anon_sym_DOT_DOT] = ACTIONS(4716), - [anon_sym_QMARK_COLON] = ACTIONS(4716), - [anon_sym_AMP_AMP] = ACTIONS(4716), - [anon_sym_PIPE_PIPE] = ACTIONS(4716), - [anon_sym_null] = ACTIONS(4714), - [anon_sym_if] = ACTIONS(4714), - [anon_sym_else] = ACTIONS(4714), - [anon_sym_when] = ACTIONS(4714), - [anon_sym_try] = ACTIONS(4714), - [anon_sym_throw] = ACTIONS(4714), - [anon_sym_return] = ACTIONS(4714), - [anon_sym_continue] = ACTIONS(4714), - [anon_sym_break] = ACTIONS(4714), - [anon_sym_COLON_COLON] = ACTIONS(4716), - [anon_sym_PLUS_EQ] = ACTIONS(4716), - [anon_sym_DASH_EQ] = ACTIONS(4716), - [anon_sym_STAR_EQ] = ACTIONS(4716), - [anon_sym_SLASH_EQ] = ACTIONS(4716), - [anon_sym_PERCENT_EQ] = ACTIONS(4716), - [anon_sym_BANG_EQ] = ACTIONS(4714), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4716), - [anon_sym_EQ_EQ] = ACTIONS(4714), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4716), - [anon_sym_LT_EQ] = ACTIONS(4716), - [anon_sym_GT_EQ] = ACTIONS(4716), - [anon_sym_BANGin] = ACTIONS(4716), - [anon_sym_is] = ACTIONS(4714), - [anon_sym_BANGis] = ACTIONS(4716), - [anon_sym_PLUS] = ACTIONS(4714), - [anon_sym_DASH] = ACTIONS(4714), - [anon_sym_SLASH] = ACTIONS(4714), - [anon_sym_PERCENT] = ACTIONS(4714), - [anon_sym_as_QMARK] = ACTIONS(4716), - [anon_sym_PLUS_PLUS] = ACTIONS(4716), - [anon_sym_DASH_DASH] = ACTIONS(4716), - [anon_sym_BANG] = ACTIONS(4714), - [anon_sym_BANG_BANG] = ACTIONS(4716), - [anon_sym_suspend] = ACTIONS(4714), - [anon_sym_sealed] = ACTIONS(4714), - [anon_sym_annotation] = ACTIONS(4714), - [anon_sym_data] = ACTIONS(4714), - [anon_sym_inner] = ACTIONS(4714), - [anon_sym_value] = ACTIONS(4714), - [anon_sym_override] = ACTIONS(4714), - [anon_sym_lateinit] = ACTIONS(4714), - [anon_sym_public] = ACTIONS(4714), - [anon_sym_private] = ACTIONS(4714), - [anon_sym_internal] = ACTIONS(4714), - [anon_sym_protected] = ACTIONS(4714), - [anon_sym_tailrec] = ACTIONS(4714), - [anon_sym_operator] = ACTIONS(4714), - [anon_sym_infix] = ACTIONS(4714), - [anon_sym_inline] = ACTIONS(4714), - [anon_sym_external] = ACTIONS(4714), - [sym_property_modifier] = ACTIONS(4714), - [anon_sym_abstract] = ACTIONS(4714), - [anon_sym_final] = ACTIONS(4714), - [anon_sym_open] = ACTIONS(4714), - [anon_sym_vararg] = ACTIONS(4714), - [anon_sym_noinline] = ACTIONS(4714), - [anon_sym_crossinline] = ACTIONS(4714), - [anon_sym_expect] = ACTIONS(4714), - [anon_sym_actual] = ACTIONS(4714), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4716), - [anon_sym_continue_AT] = ACTIONS(4716), - [anon_sym_break_AT] = ACTIONS(4716), - [anon_sym_this_AT] = ACTIONS(4716), - [anon_sym_super_AT] = ACTIONS(4716), - [sym_real_literal] = ACTIONS(4716), - [sym_integer_literal] = ACTIONS(4714), - [sym_hex_literal] = ACTIONS(4716), - [sym_bin_literal] = ACTIONS(4716), - [anon_sym_true] = ACTIONS(4714), - [anon_sym_false] = ACTIONS(4714), - [anon_sym_SQUOTE] = ACTIONS(4716), - [sym__backtick_identifier] = ACTIONS(4716), - [sym__automatic_semicolon] = ACTIONS(4716), - [sym_safe_nav] = ACTIONS(4716), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4716), + [932] = { + [sym_class_body] = STATE(1187), + [sym__alpha_identifier] = ACTIONS(4555), + [anon_sym_AT] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4555), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_LPAREN] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_where] = ACTIONS(4555), + [anon_sym_object] = ACTIONS(4555), + [anon_sym_fun] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_SEMI] = ACTIONS(4557), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), + [anon_sym_this] = ACTIONS(4555), + [anon_sym_super] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [sym_label] = ACTIONS(4555), + [anon_sym_in] = ACTIONS(4555), + [anon_sym_DOT_DOT] = ACTIONS(4557), + [anon_sym_QMARK_COLON] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_null] = ACTIONS(4555), + [anon_sym_if] = ACTIONS(4555), + [anon_sym_else] = ACTIONS(4555), + [anon_sym_when] = ACTIONS(4555), + [anon_sym_try] = ACTIONS(4555), + [anon_sym_throw] = ACTIONS(4555), + [anon_sym_return] = ACTIONS(4555), + [anon_sym_continue] = ACTIONS(4555), + [anon_sym_break] = ACTIONS(4555), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(4557), + [anon_sym_DASH_EQ] = ACTIONS(4557), + [anon_sym_STAR_EQ] = ACTIONS(4557), + [anon_sym_SLASH_EQ] = ACTIONS(4557), + [anon_sym_PERCENT_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_BANGin] = ACTIONS(4557), + [anon_sym_is] = ACTIONS(4555), + [anon_sym_BANGis] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_as_QMARK] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_BANG_BANG] = ACTIONS(4557), + [anon_sym_suspend] = ACTIONS(4555), + [anon_sym_sealed] = ACTIONS(4555), + [anon_sym_annotation] = ACTIONS(4555), + [anon_sym_data] = ACTIONS(4555), + [anon_sym_inner] = ACTIONS(4555), + [anon_sym_value] = ACTIONS(4555), + [anon_sym_override] = ACTIONS(4555), + [anon_sym_lateinit] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_internal] = ACTIONS(4555), + [anon_sym_protected] = ACTIONS(4555), + [anon_sym_tailrec] = ACTIONS(4555), + [anon_sym_operator] = ACTIONS(4555), + [anon_sym_infix] = ACTIONS(4555), + [anon_sym_inline] = ACTIONS(4555), + [anon_sym_external] = ACTIONS(4555), + [sym_property_modifier] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_open] = ACTIONS(4555), + [anon_sym_vararg] = ACTIONS(4555), + [anon_sym_noinline] = ACTIONS(4555), + [anon_sym_crossinline] = ACTIONS(4555), + [anon_sym_expect] = ACTIONS(4555), + [anon_sym_actual] = ACTIONS(4555), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4557), + [anon_sym_continue_AT] = ACTIONS(4557), + [anon_sym_break_AT] = ACTIONS(4557), + [anon_sym_this_AT] = ACTIONS(4557), + [anon_sym_super_AT] = ACTIONS(4557), + [sym_real_literal] = ACTIONS(4557), + [sym_integer_literal] = ACTIONS(4555), + [sym_hex_literal] = ACTIONS(4557), + [sym_bin_literal] = ACTIONS(4557), + [anon_sym_true] = ACTIONS(4555), + [anon_sym_false] = ACTIONS(4555), + [anon_sym_SQUOTE] = ACTIONS(4557), + [sym__backtick_identifier] = ACTIONS(4557), + [sym__automatic_semicolon] = ACTIONS(4557), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4557), }, - [998] = { - [sym_class_body] = STATE(1130), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(4281), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [933] = { + [sym_class_body] = STATE(1172), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(4355), + [anon_sym_object] = ACTIONS(4355), + [anon_sym_fun] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_this] = ACTIONS(4355), + [anon_sym_super] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_null] = ACTIONS(4355), + [anon_sym_if] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_when] = ACTIONS(4355), + [anon_sym_try] = ACTIONS(4355), + [anon_sym_throw] = ACTIONS(4355), + [anon_sym_return] = ACTIONS(4355), + [anon_sym_continue] = ACTIONS(4355), + [anon_sym_break] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [anon_sym_return_AT] = ACTIONS(4357), + [anon_sym_continue_AT] = ACTIONS(4357), + [anon_sym_break_AT] = ACTIONS(4357), + [anon_sym_this_AT] = ACTIONS(4357), + [anon_sym_super_AT] = ACTIONS(4357), + [sym_real_literal] = ACTIONS(4357), + [sym_integer_literal] = ACTIONS(4355), + [sym_hex_literal] = ACTIONS(4357), + [sym_bin_literal] = ACTIONS(4357), + [anon_sym_true] = ACTIONS(4355), + [anon_sym_false] = ACTIONS(4355), + [anon_sym_SQUOTE] = ACTIONS(4357), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), + [sym__string_start] = ACTIONS(4357), }, - [999] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(4557), + [934] = { + [sym__alpha_identifier] = ACTIONS(4559), + [anon_sym_AT] = ACTIONS(4561), + [anon_sym_COLON] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4561), + [anon_sym_as] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4559), + [anon_sym_LBRACE] = ACTIONS(4561), + [anon_sym_RBRACE] = ACTIONS(4561), + [anon_sym_LPAREN] = ACTIONS(4561), + [anon_sym_COMMA] = ACTIONS(4561), + [anon_sym_LT] = ACTIONS(4559), + [anon_sym_GT] = ACTIONS(4559), + [anon_sym_where] = ACTIONS(4559), + [anon_sym_object] = ACTIONS(4559), + [anon_sym_fun] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_SEMI] = ACTIONS(4561), + [anon_sym_get] = ACTIONS(4559), + [anon_sym_set] = ACTIONS(4559), + [anon_sym_this] = ACTIONS(4559), + [anon_sym_super] = ACTIONS(4559), + [anon_sym_STAR] = ACTIONS(4559), [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(4563), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3090), - [anon_sym_continue_AT] = ACTIONS(3090), - [anon_sym_break_AT] = ACTIONS(3090), - [anon_sym_this_AT] = ACTIONS(3090), - [anon_sym_super_AT] = ACTIONS(3090), - [sym_real_literal] = ACTIONS(3090), - [sym_integer_literal] = ACTIONS(3088), - [sym_hex_literal] = ACTIONS(3090), - [sym_bin_literal] = ACTIONS(3090), - [anon_sym_true] = ACTIONS(3088), - [anon_sym_false] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3090), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), + [anon_sym_in] = ACTIONS(4559), + [anon_sym_DOT_DOT] = ACTIONS(4561), + [anon_sym_QMARK_COLON] = ACTIONS(4561), + [anon_sym_AMP_AMP] = ACTIONS(4561), + [anon_sym_PIPE_PIPE] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4559), + [anon_sym_if] = ACTIONS(4559), + [anon_sym_else] = ACTIONS(4559), + [anon_sym_when] = ACTIONS(4559), + [anon_sym_try] = ACTIONS(4559), + [anon_sym_throw] = ACTIONS(4559), + [anon_sym_return] = ACTIONS(4559), + [anon_sym_continue] = ACTIONS(4559), + [anon_sym_break] = ACTIONS(4559), + [anon_sym_COLON_COLON] = ACTIONS(4561), + [anon_sym_PLUS_EQ] = ACTIONS(4561), + [anon_sym_DASH_EQ] = ACTIONS(4561), + [anon_sym_STAR_EQ] = ACTIONS(4561), + [anon_sym_SLASH_EQ] = ACTIONS(4561), + [anon_sym_PERCENT_EQ] = ACTIONS(4561), + [anon_sym_BANG_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4561), + [anon_sym_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4561), + [anon_sym_LT_EQ] = ACTIONS(4561), + [anon_sym_GT_EQ] = ACTIONS(4561), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4559), + [anon_sym_BANGis] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_DASH] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4559), + [anon_sym_as_QMARK] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(4561), + [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_BANG] = ACTIONS(4559), + [anon_sym_BANG_BANG] = ACTIONS(4561), + [anon_sym_suspend] = ACTIONS(4559), + [anon_sym_sealed] = ACTIONS(4559), + [anon_sym_annotation] = ACTIONS(4559), + [anon_sym_data] = ACTIONS(4559), + [anon_sym_inner] = ACTIONS(4559), + [anon_sym_value] = ACTIONS(4559), + [anon_sym_override] = ACTIONS(4559), + [anon_sym_lateinit] = ACTIONS(4559), + [anon_sym_public] = ACTIONS(4559), + [anon_sym_private] = ACTIONS(4559), + [anon_sym_internal] = ACTIONS(4559), + [anon_sym_protected] = ACTIONS(4559), + [anon_sym_tailrec] = ACTIONS(4559), + [anon_sym_operator] = ACTIONS(4559), + [anon_sym_infix] = ACTIONS(4559), + [anon_sym_inline] = ACTIONS(4559), + [anon_sym_external] = ACTIONS(4559), + [sym_property_modifier] = ACTIONS(4559), + [anon_sym_abstract] = ACTIONS(4559), + [anon_sym_final] = ACTIONS(4559), + [anon_sym_open] = ACTIONS(4559), + [anon_sym_vararg] = ACTIONS(4559), + [anon_sym_noinline] = ACTIONS(4559), + [anon_sym_crossinline] = ACTIONS(4559), + [anon_sym_expect] = ACTIONS(4559), + [anon_sym_actual] = ACTIONS(4559), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4561), + [anon_sym_continue_AT] = ACTIONS(4561), + [anon_sym_break_AT] = ACTIONS(4561), + [anon_sym_this_AT] = ACTIONS(4561), + [anon_sym_super_AT] = ACTIONS(4561), + [sym_real_literal] = ACTIONS(4561), + [sym_integer_literal] = ACTIONS(4559), + [sym_hex_literal] = ACTIONS(4561), + [sym_bin_literal] = ACTIONS(4561), + [anon_sym_true] = ACTIONS(4559), + [anon_sym_false] = ACTIONS(4559), + [anon_sym_SQUOTE] = ACTIONS(4561), + [sym__backtick_identifier] = ACTIONS(4561), + [sym__automatic_semicolon] = ACTIONS(4561), + [sym_safe_nav] = ACTIONS(4561), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4561), }, - [1000] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_fun] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_where] = ACTIONS(3149), - [anon_sym_object] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_this] = ACTIONS(3149), - [anon_sym_super] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_null] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_when] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3149), - [anon_sym_throw] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3151), - [anon_sym_continue_AT] = ACTIONS(3151), - [anon_sym_break_AT] = ACTIONS(3151), - [anon_sym_this_AT] = ACTIONS(3151), - [anon_sym_super_AT] = ACTIONS(3151), - [sym_real_literal] = ACTIONS(3151), - [sym_integer_literal] = ACTIONS(3149), - [sym_hex_literal] = ACTIONS(3151), - [sym_bin_literal] = ACTIONS(3151), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3151), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3151), + [935] = { + [sym_enum_class_body] = STATE(1120), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), }, - [1001] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3188), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3188), - [anon_sym_super] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(4561), - [anon_sym_DOT_DOT] = ACTIONS(4563), + [936] = { + [sym__alpha_identifier] = ACTIONS(4563), + [anon_sym_AT] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_as] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4563), + [anon_sym_GT] = ACTIONS(4563), + [anon_sym_where] = ACTIONS(4563), + [anon_sym_object] = ACTIONS(4563), + [anon_sym_fun] = ACTIONS(4563), + [anon_sym_DOT] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_get] = ACTIONS(4563), + [anon_sym_set] = ACTIONS(4563), + [anon_sym_this] = ACTIONS(4563), + [anon_sym_super] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [sym_label] = ACTIONS(4563), + [anon_sym_in] = ACTIONS(4563), + [anon_sym_DOT_DOT] = ACTIONS(4565), [anon_sym_QMARK_COLON] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(4631), - [anon_sym_PIPE_PIPE] = ACTIONS(4633), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_when] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(4569), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4571), - [anon_sym_EQ_EQ] = ACTIONS(4569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4571), + [anon_sym_AMP_AMP] = ACTIONS(4565), + [anon_sym_PIPE_PIPE] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_if] = ACTIONS(4563), + [anon_sym_else] = ACTIONS(4563), + [anon_sym_when] = ACTIONS(4563), + [anon_sym_try] = ACTIONS(4563), + [anon_sym_throw] = ACTIONS(4563), + [anon_sym_return] = ACTIONS(4563), + [anon_sym_continue] = ACTIONS(4563), + [anon_sym_break] = ACTIONS(4563), + [anon_sym_COLON_COLON] = ACTIONS(4565), + [anon_sym_PLUS_EQ] = ACTIONS(4565), + [anon_sym_DASH_EQ] = ACTIONS(4565), + [anon_sym_STAR_EQ] = ACTIONS(4565), + [anon_sym_SLASH_EQ] = ACTIONS(4565), + [anon_sym_PERCENT_EQ] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4565), + [anon_sym_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4565), + [anon_sym_LT_EQ] = ACTIONS(4565), + [anon_sym_GT_EQ] = ACTIONS(4565), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_as_QMARK] = ACTIONS(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(4565), + [anon_sym_DASH_DASH] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(4563), + [anon_sym_BANG_BANG] = ACTIONS(4565), + [anon_sym_suspend] = ACTIONS(4563), + [anon_sym_sealed] = ACTIONS(4563), + [anon_sym_annotation] = ACTIONS(4563), + [anon_sym_data] = ACTIONS(4563), + [anon_sym_inner] = ACTIONS(4563), + [anon_sym_value] = ACTIONS(4563), + [anon_sym_override] = ACTIONS(4563), + [anon_sym_lateinit] = ACTIONS(4563), + [anon_sym_public] = ACTIONS(4563), + [anon_sym_private] = ACTIONS(4563), + [anon_sym_internal] = ACTIONS(4563), + [anon_sym_protected] = ACTIONS(4563), + [anon_sym_tailrec] = ACTIONS(4563), + [anon_sym_operator] = ACTIONS(4563), + [anon_sym_infix] = ACTIONS(4563), + [anon_sym_inline] = ACTIONS(4563), + [anon_sym_external] = ACTIONS(4563), + [sym_property_modifier] = ACTIONS(4563), + [anon_sym_abstract] = ACTIONS(4563), + [anon_sym_final] = ACTIONS(4563), + [anon_sym_open] = ACTIONS(4563), + [anon_sym_vararg] = ACTIONS(4563), + [anon_sym_noinline] = ACTIONS(4563), + [anon_sym_crossinline] = ACTIONS(4563), + [anon_sym_expect] = ACTIONS(4563), + [anon_sym_actual] = ACTIONS(4563), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4565), + [anon_sym_continue_AT] = ACTIONS(4565), + [anon_sym_break_AT] = ACTIONS(4565), + [anon_sym_this_AT] = ACTIONS(4565), + [anon_sym_super_AT] = ACTIONS(4565), + [sym_real_literal] = ACTIONS(4565), + [sym_integer_literal] = ACTIONS(4563), + [sym_hex_literal] = ACTIONS(4565), + [sym_bin_literal] = ACTIONS(4565), + [anon_sym_true] = ACTIONS(4563), + [anon_sym_false] = ACTIONS(4563), + [anon_sym_SQUOTE] = ACTIONS(4565), + [sym__backtick_identifier] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(4565), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4565), + }, + [937] = { + [sym_enum_class_body] = STATE(1122), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_object] = ACTIONS(4567), + [anon_sym_fun] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_this] = ACTIONS(4567), + [anon_sym_super] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [sym_label] = ACTIONS(4567), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_null] = ACTIONS(4567), + [anon_sym_if] = ACTIONS(4567), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_when] = ACTIONS(4567), + [anon_sym_try] = ACTIONS(4567), + [anon_sym_throw] = ACTIONS(4567), + [anon_sym_return] = ACTIONS(4567), + [anon_sym_continue] = ACTIONS(4567), + [anon_sym_break] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_suspend] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_annotation] = ACTIONS(4567), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_lateinit] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_tailrec] = ACTIONS(4567), + [anon_sym_operator] = ACTIONS(4567), + [anon_sym_infix] = ACTIONS(4567), + [anon_sym_inline] = ACTIONS(4567), + [anon_sym_external] = ACTIONS(4567), + [sym_property_modifier] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_final] = ACTIONS(4567), + [anon_sym_open] = ACTIONS(4567), + [anon_sym_vararg] = ACTIONS(4567), + [anon_sym_noinline] = ACTIONS(4567), + [anon_sym_crossinline] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4569), + [anon_sym_continue_AT] = ACTIONS(4569), + [anon_sym_break_AT] = ACTIONS(4569), + [anon_sym_this_AT] = ACTIONS(4569), + [anon_sym_super_AT] = ACTIONS(4569), + [sym_real_literal] = ACTIONS(4569), + [sym_integer_literal] = ACTIONS(4567), + [sym_hex_literal] = ACTIONS(4569), + [sym_bin_literal] = ACTIONS(4569), + [anon_sym_true] = ACTIONS(4567), + [anon_sym_false] = ACTIONS(4567), + [anon_sym_SQUOTE] = ACTIONS(4569), + [sym__backtick_identifier] = ACTIONS(4569), + [sym__automatic_semicolon] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4569), + }, + [938] = { + [sym__alpha_identifier] = ACTIONS(4571), + [anon_sym_AT] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [anon_sym_as] = ACTIONS(4571), + [anon_sym_EQ] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_COMMA] = ACTIONS(4573), + [anon_sym_by] = ACTIONS(4571), + [anon_sym_LT] = ACTIONS(4571), + [anon_sym_GT] = ACTIONS(4571), + [anon_sym_where] = ACTIONS(4571), + [anon_sym_object] = ACTIONS(4571), + [anon_sym_fun] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_get] = ACTIONS(4571), + [anon_sym_set] = ACTIONS(4571), + [anon_sym_this] = ACTIONS(4571), + [anon_sym_super] = ACTIONS(4571), + [anon_sym_STAR] = ACTIONS(4571), + [sym_label] = ACTIONS(4571), + [anon_sym_in] = ACTIONS(4571), + [anon_sym_DOT_DOT] = ACTIONS(4573), + [anon_sym_QMARK_COLON] = ACTIONS(4573), + [anon_sym_AMP_AMP] = ACTIONS(4573), + [anon_sym_PIPE_PIPE] = ACTIONS(4573), + [anon_sym_null] = ACTIONS(4571), + [anon_sym_if] = ACTIONS(4571), + [anon_sym_else] = ACTIONS(4571), + [anon_sym_when] = ACTIONS(4571), + [anon_sym_try] = ACTIONS(4571), + [anon_sym_throw] = ACTIONS(4571), + [anon_sym_return] = ACTIONS(4571), + [anon_sym_continue] = ACTIONS(4571), + [anon_sym_break] = ACTIONS(4571), + [anon_sym_COLON_COLON] = ACTIONS(4573), + [anon_sym_PLUS_EQ] = ACTIONS(4573), + [anon_sym_DASH_EQ] = ACTIONS(4573), + [anon_sym_STAR_EQ] = ACTIONS(4573), + [anon_sym_SLASH_EQ] = ACTIONS(4573), + [anon_sym_PERCENT_EQ] = ACTIONS(4573), + [anon_sym_BANG_EQ] = ACTIONS(4571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4573), + [anon_sym_EQ_EQ] = ACTIONS(4571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4573), [anon_sym_LT_EQ] = ACTIONS(4573), [anon_sym_GT_EQ] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4575), + [anon_sym_BANGin] = ACTIONS(4573), + [anon_sym_is] = ACTIONS(4571), + [anon_sym_BANGis] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4571), + [anon_sym_PERCENT] = ACTIONS(4571), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4573), + [anon_sym_DASH_DASH] = ACTIONS(4573), + [anon_sym_BANG] = ACTIONS(4571), + [anon_sym_BANG_BANG] = ACTIONS(4573), + [anon_sym_suspend] = ACTIONS(4571), + [anon_sym_sealed] = ACTIONS(4571), + [anon_sym_annotation] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(4571), + [anon_sym_inner] = ACTIONS(4571), + [anon_sym_value] = ACTIONS(4571), + [anon_sym_override] = ACTIONS(4571), + [anon_sym_lateinit] = ACTIONS(4571), + [anon_sym_public] = ACTIONS(4571), + [anon_sym_private] = ACTIONS(4571), + [anon_sym_internal] = ACTIONS(4571), + [anon_sym_protected] = ACTIONS(4571), + [anon_sym_tailrec] = ACTIONS(4571), + [anon_sym_operator] = ACTIONS(4571), + [anon_sym_infix] = ACTIONS(4571), + [anon_sym_inline] = ACTIONS(4571), + [anon_sym_external] = ACTIONS(4571), + [sym_property_modifier] = ACTIONS(4571), + [anon_sym_abstract] = ACTIONS(4571), + [anon_sym_final] = ACTIONS(4571), + [anon_sym_open] = ACTIONS(4571), + [anon_sym_vararg] = ACTIONS(4571), + [anon_sym_noinline] = ACTIONS(4571), + [anon_sym_crossinline] = ACTIONS(4571), + [anon_sym_expect] = ACTIONS(4571), + [anon_sym_actual] = ACTIONS(4571), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4573), + [anon_sym_continue_AT] = ACTIONS(4573), + [anon_sym_break_AT] = ACTIONS(4573), + [anon_sym_this_AT] = ACTIONS(4573), + [anon_sym_super_AT] = ACTIONS(4573), + [sym_real_literal] = ACTIONS(4573), + [sym_integer_literal] = ACTIONS(4571), + [sym_hex_literal] = ACTIONS(4573), + [sym_bin_literal] = ACTIONS(4573), + [anon_sym_true] = ACTIONS(4571), + [anon_sym_false] = ACTIONS(4571), + [anon_sym_SQUOTE] = ACTIONS(4573), + [sym__backtick_identifier] = ACTIONS(4573), + [sym__automatic_semicolon] = ACTIONS(4573), + [sym_safe_nav] = ACTIONS(4573), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4573), + }, + [939] = { + [sym_class_body] = STATE(1180), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [940] = { + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [941] = { + [sym__alpha_identifier] = ACTIONS(4577), + [anon_sym_AT] = ACTIONS(4579), + [anon_sym_COLON] = ACTIONS(4577), + [anon_sym_LBRACK] = ACTIONS(4579), + [anon_sym_as] = ACTIONS(4577), + [anon_sym_EQ] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [anon_sym_RBRACE] = ACTIONS(4579), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym_COMMA] = ACTIONS(4579), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4577), + [anon_sym_where] = ACTIONS(4577), + [anon_sym_object] = ACTIONS(4577), + [anon_sym_fun] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SEMI] = ACTIONS(4579), + [anon_sym_get] = ACTIONS(4577), + [anon_sym_set] = ACTIONS(4577), + [anon_sym_this] = ACTIONS(4577), + [anon_sym_super] = ACTIONS(4577), + [anon_sym_STAR] = ACTIONS(4577), + [sym_label] = ACTIONS(4577), + [anon_sym_in] = ACTIONS(4577), + [anon_sym_DOT_DOT] = ACTIONS(4579), + [anon_sym_QMARK_COLON] = ACTIONS(4579), + [anon_sym_AMP_AMP] = ACTIONS(4579), + [anon_sym_PIPE_PIPE] = ACTIONS(4579), + [anon_sym_null] = ACTIONS(4577), + [anon_sym_if] = ACTIONS(4577), + [anon_sym_else] = ACTIONS(4577), + [anon_sym_when] = ACTIONS(4577), + [anon_sym_try] = ACTIONS(4577), + [anon_sym_throw] = ACTIONS(4577), + [anon_sym_return] = ACTIONS(4577), + [anon_sym_continue] = ACTIONS(4577), + [anon_sym_break] = ACTIONS(4577), + [anon_sym_COLON_COLON] = ACTIONS(4579), + [anon_sym_PLUS_EQ] = ACTIONS(4579), + [anon_sym_DASH_EQ] = ACTIONS(4579), + [anon_sym_STAR_EQ] = ACTIONS(4579), + [anon_sym_SLASH_EQ] = ACTIONS(4579), + [anon_sym_PERCENT_EQ] = ACTIONS(4579), + [anon_sym_BANG_EQ] = ACTIONS(4577), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4579), + [anon_sym_EQ_EQ] = ACTIONS(4577), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4579), + [anon_sym_LT_EQ] = ACTIONS(4579), + [anon_sym_GT_EQ] = ACTIONS(4579), + [anon_sym_BANGin] = ACTIONS(4579), [anon_sym_is] = ACTIONS(4577), [anon_sym_BANGis] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4577), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4577), + [anon_sym_PERCENT] = ACTIONS(4577), + [anon_sym_as_QMARK] = ACTIONS(4579), + [anon_sym_PLUS_PLUS] = ACTIONS(4579), + [anon_sym_DASH_DASH] = ACTIONS(4579), + [anon_sym_BANG] = ACTIONS(4577), + [anon_sym_BANG_BANG] = ACTIONS(4579), + [anon_sym_suspend] = ACTIONS(4577), + [anon_sym_sealed] = ACTIONS(4577), + [anon_sym_annotation] = ACTIONS(4577), + [anon_sym_data] = ACTIONS(4577), + [anon_sym_inner] = ACTIONS(4577), + [anon_sym_value] = ACTIONS(4577), + [anon_sym_override] = ACTIONS(4577), + [anon_sym_lateinit] = ACTIONS(4577), + [anon_sym_public] = ACTIONS(4577), + [anon_sym_private] = ACTIONS(4577), + [anon_sym_internal] = ACTIONS(4577), + [anon_sym_protected] = ACTIONS(4577), + [anon_sym_tailrec] = ACTIONS(4577), + [anon_sym_operator] = ACTIONS(4577), + [anon_sym_infix] = ACTIONS(4577), + [anon_sym_inline] = ACTIONS(4577), + [anon_sym_external] = ACTIONS(4577), + [sym_property_modifier] = ACTIONS(4577), + [anon_sym_abstract] = ACTIONS(4577), + [anon_sym_final] = ACTIONS(4577), + [anon_sym_open] = ACTIONS(4577), + [anon_sym_vararg] = ACTIONS(4577), + [anon_sym_noinline] = ACTIONS(4577), + [anon_sym_crossinline] = ACTIONS(4577), + [anon_sym_expect] = ACTIONS(4577), + [anon_sym_actual] = ACTIONS(4577), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4579), + [anon_sym_continue_AT] = ACTIONS(4579), + [anon_sym_break_AT] = ACTIONS(4579), + [anon_sym_this_AT] = ACTIONS(4579), + [anon_sym_super_AT] = ACTIONS(4579), + [sym_real_literal] = ACTIONS(4579), + [sym_integer_literal] = ACTIONS(4577), + [sym_hex_literal] = ACTIONS(4579), + [sym_bin_literal] = ACTIONS(4579), + [anon_sym_true] = ACTIONS(4577), + [anon_sym_false] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4579), + [sym__backtick_identifier] = ACTIONS(4579), + [sym__automatic_semicolon] = ACTIONS(4579), + [sym_safe_nav] = ACTIONS(4579), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4579), + }, + [942] = { + [sym__alpha_identifier] = ACTIONS(4581), + [anon_sym_AT] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4581), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_as] = ACTIONS(4581), + [anon_sym_EQ] = ACTIONS(4581), + [anon_sym_LBRACE] = ACTIONS(4583), + [anon_sym_RBRACE] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_COMMA] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4581), + [anon_sym_GT] = ACTIONS(4581), + [anon_sym_where] = ACTIONS(4581), + [anon_sym_object] = ACTIONS(4581), + [anon_sym_fun] = ACTIONS(4581), + [anon_sym_DOT] = ACTIONS(4581), + [anon_sym_SEMI] = ACTIONS(4583), + [anon_sym_get] = ACTIONS(4581), + [anon_sym_set] = ACTIONS(4581), + [anon_sym_this] = ACTIONS(4581), + [anon_sym_super] = ACTIONS(4581), + [anon_sym_STAR] = ACTIONS(4581), + [sym_label] = ACTIONS(4581), + [anon_sym_in] = ACTIONS(4581), + [anon_sym_DOT_DOT] = ACTIONS(4583), + [anon_sym_QMARK_COLON] = ACTIONS(4583), + [anon_sym_AMP_AMP] = ACTIONS(4583), + [anon_sym_PIPE_PIPE] = ACTIONS(4583), + [anon_sym_null] = ACTIONS(4581), + [anon_sym_if] = ACTIONS(4581), + [anon_sym_else] = ACTIONS(4581), + [anon_sym_when] = ACTIONS(4581), + [anon_sym_try] = ACTIONS(4581), + [anon_sym_throw] = ACTIONS(4581), + [anon_sym_return] = ACTIONS(4581), + [anon_sym_continue] = ACTIONS(4581), + [anon_sym_break] = ACTIONS(4581), + [anon_sym_COLON_COLON] = ACTIONS(4583), + [anon_sym_PLUS_EQ] = ACTIONS(4583), + [anon_sym_DASH_EQ] = ACTIONS(4583), + [anon_sym_STAR_EQ] = ACTIONS(4583), + [anon_sym_SLASH_EQ] = ACTIONS(4583), + [anon_sym_PERCENT_EQ] = ACTIONS(4583), + [anon_sym_BANG_EQ] = ACTIONS(4581), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4581), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4583), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4583), + [anon_sym_BANGin] = ACTIONS(4583), + [anon_sym_is] = ACTIONS(4581), + [anon_sym_BANGis] = ACTIONS(4583), [anon_sym_PLUS] = ACTIONS(4581), [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4581), + [anon_sym_PERCENT] = ACTIONS(4581), [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [anon_sym_this_AT] = ACTIONS(3190), - [anon_sym_super_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3188), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3188), - [anon_sym_false] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [1002] = { - [sym_class_body] = STATE(1127), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), - }, - [1003] = { - [sym__alpha_identifier] = ACTIONS(4718), - [anon_sym_AT] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4720), - [anon_sym_as] = ACTIONS(4718), - [anon_sym_EQ] = ACTIONS(4718), - [anon_sym_fun] = ACTIONS(4718), - [anon_sym_LBRACE] = ACTIONS(4720), - [anon_sym_RBRACE] = ACTIONS(4720), - [anon_sym_LPAREN] = ACTIONS(4720), - [anon_sym_COMMA] = ACTIONS(4720), - [anon_sym_by] = ACTIONS(4718), - [anon_sym_LT] = ACTIONS(4718), - [anon_sym_GT] = ACTIONS(4718), - [anon_sym_where] = ACTIONS(4718), - [anon_sym_object] = ACTIONS(4718), - [anon_sym_DOT] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_get] = ACTIONS(4718), - [anon_sym_set] = ACTIONS(4718), - [anon_sym_this] = ACTIONS(4718), - [anon_sym_super] = ACTIONS(4718), - [anon_sym_STAR] = ACTIONS(4718), - [sym_label] = ACTIONS(4718), - [anon_sym_in] = ACTIONS(4718), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_QMARK_COLON] = ACTIONS(4720), - [anon_sym_AMP_AMP] = ACTIONS(4720), - [anon_sym_PIPE_PIPE] = ACTIONS(4720), - [anon_sym_null] = ACTIONS(4718), - [anon_sym_if] = ACTIONS(4718), - [anon_sym_else] = ACTIONS(4718), - [anon_sym_when] = ACTIONS(4718), - [anon_sym_try] = ACTIONS(4718), - [anon_sym_throw] = ACTIONS(4718), - [anon_sym_return] = ACTIONS(4718), - [anon_sym_continue] = ACTIONS(4718), - [anon_sym_break] = ACTIONS(4718), - [anon_sym_COLON_COLON] = ACTIONS(4720), - [anon_sym_PLUS_EQ] = ACTIONS(4720), - [anon_sym_DASH_EQ] = ACTIONS(4720), - [anon_sym_STAR_EQ] = ACTIONS(4720), - [anon_sym_SLASH_EQ] = ACTIONS(4720), - [anon_sym_PERCENT_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4718), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), - [anon_sym_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4720), - [anon_sym_BANGin] = ACTIONS(4720), - [anon_sym_is] = ACTIONS(4718), - [anon_sym_BANGis] = ACTIONS(4720), - [anon_sym_PLUS] = ACTIONS(4718), - [anon_sym_DASH] = ACTIONS(4718), - [anon_sym_SLASH] = ACTIONS(4718), - [anon_sym_PERCENT] = ACTIONS(4718), - [anon_sym_as_QMARK] = ACTIONS(4720), - [anon_sym_PLUS_PLUS] = ACTIONS(4720), - [anon_sym_DASH_DASH] = ACTIONS(4720), - [anon_sym_BANG] = ACTIONS(4718), - [anon_sym_BANG_BANG] = ACTIONS(4720), - [anon_sym_suspend] = ACTIONS(4718), - [anon_sym_sealed] = ACTIONS(4718), - [anon_sym_annotation] = ACTIONS(4718), - [anon_sym_data] = ACTIONS(4718), - [anon_sym_inner] = ACTIONS(4718), - [anon_sym_value] = ACTIONS(4718), - [anon_sym_override] = ACTIONS(4718), - [anon_sym_lateinit] = ACTIONS(4718), - [anon_sym_public] = ACTIONS(4718), - [anon_sym_private] = ACTIONS(4718), - [anon_sym_internal] = ACTIONS(4718), - [anon_sym_protected] = ACTIONS(4718), - [anon_sym_tailrec] = ACTIONS(4718), - [anon_sym_operator] = ACTIONS(4718), - [anon_sym_infix] = ACTIONS(4718), - [anon_sym_inline] = ACTIONS(4718), - [anon_sym_external] = ACTIONS(4718), - [sym_property_modifier] = ACTIONS(4718), - [anon_sym_abstract] = ACTIONS(4718), - [anon_sym_final] = ACTIONS(4718), - [anon_sym_open] = ACTIONS(4718), - [anon_sym_vararg] = ACTIONS(4718), - [anon_sym_noinline] = ACTIONS(4718), - [anon_sym_crossinline] = ACTIONS(4718), - [anon_sym_expect] = ACTIONS(4718), - [anon_sym_actual] = ACTIONS(4718), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4720), - [anon_sym_continue_AT] = ACTIONS(4720), - [anon_sym_break_AT] = ACTIONS(4720), - [anon_sym_this_AT] = ACTIONS(4720), - [anon_sym_super_AT] = ACTIONS(4720), - [sym_real_literal] = ACTIONS(4720), - [sym_integer_literal] = ACTIONS(4718), - [sym_hex_literal] = ACTIONS(4720), - [sym_bin_literal] = ACTIONS(4720), - [anon_sym_true] = ACTIONS(4718), - [anon_sym_false] = ACTIONS(4718), - [anon_sym_SQUOTE] = ACTIONS(4720), - [sym__backtick_identifier] = ACTIONS(4720), - [sym__automatic_semicolon] = ACTIONS(4720), - [sym_safe_nav] = ACTIONS(4720), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4720), - }, - [1004] = { - [sym_class_body] = STATE(1080), - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_fun] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(4469), - [anon_sym_object] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_super] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [sym_label] = ACTIONS(4469), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_null] = ACTIONS(4469), - [anon_sym_if] = ACTIONS(4469), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_when] = ACTIONS(4469), - [anon_sym_try] = ACTIONS(4469), - [anon_sym_throw] = ACTIONS(4469), - [anon_sym_return] = ACTIONS(4469), - [anon_sym_continue] = ACTIONS(4469), - [anon_sym_break] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_suspend] = ACTIONS(4469), - [anon_sym_sealed] = ACTIONS(4469), - [anon_sym_annotation] = ACTIONS(4469), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_value] = ACTIONS(4469), - [anon_sym_override] = ACTIONS(4469), - [anon_sym_lateinit] = ACTIONS(4469), - [anon_sym_public] = ACTIONS(4469), - [anon_sym_private] = ACTIONS(4469), - [anon_sym_internal] = ACTIONS(4469), - [anon_sym_protected] = ACTIONS(4469), - [anon_sym_tailrec] = ACTIONS(4469), - [anon_sym_operator] = ACTIONS(4469), - [anon_sym_infix] = ACTIONS(4469), - [anon_sym_inline] = ACTIONS(4469), - [anon_sym_external] = ACTIONS(4469), - [sym_property_modifier] = ACTIONS(4469), - [anon_sym_abstract] = ACTIONS(4469), - [anon_sym_final] = ACTIONS(4469), - [anon_sym_open] = ACTIONS(4469), - [anon_sym_vararg] = ACTIONS(4469), - [anon_sym_noinline] = ACTIONS(4469), - [anon_sym_crossinline] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4471), - [anon_sym_continue_AT] = ACTIONS(4471), - [anon_sym_break_AT] = ACTIONS(4471), - [anon_sym_this_AT] = ACTIONS(4471), - [anon_sym_super_AT] = ACTIONS(4471), - [sym_real_literal] = ACTIONS(4471), - [sym_integer_literal] = ACTIONS(4469), - [sym_hex_literal] = ACTIONS(4471), - [sym_bin_literal] = ACTIONS(4471), - [anon_sym_true] = ACTIONS(4469), - [anon_sym_false] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4471), - [sym__backtick_identifier] = ACTIONS(4471), - [sym__automatic_semicolon] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4471), - }, - [1005] = { - [sym_class_body] = STATE(1176), - [sym__alpha_identifier] = ACTIONS(4722), - [anon_sym_AT] = ACTIONS(4724), - [anon_sym_LBRACK] = ACTIONS(4724), - [anon_sym_as] = ACTIONS(4722), - [anon_sym_EQ] = ACTIONS(4722), - [anon_sym_fun] = ACTIONS(4722), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4724), - [anon_sym_LPAREN] = ACTIONS(4724), - [anon_sym_COMMA] = ACTIONS(4724), - [anon_sym_LT] = ACTIONS(4722), - [anon_sym_GT] = ACTIONS(4722), - [anon_sym_where] = ACTIONS(4722), - [anon_sym_object] = ACTIONS(4722), - [anon_sym_DOT] = ACTIONS(4722), - [anon_sym_SEMI] = ACTIONS(4724), - [anon_sym_get] = ACTIONS(4722), - [anon_sym_set] = ACTIONS(4722), - [anon_sym_this] = ACTIONS(4722), - [anon_sym_super] = ACTIONS(4722), - [anon_sym_STAR] = ACTIONS(4722), - [sym_label] = ACTIONS(4722), - [anon_sym_in] = ACTIONS(4722), - [anon_sym_DOT_DOT] = ACTIONS(4724), - [anon_sym_QMARK_COLON] = ACTIONS(4724), - [anon_sym_AMP_AMP] = ACTIONS(4724), - [anon_sym_PIPE_PIPE] = ACTIONS(4724), - [anon_sym_null] = ACTIONS(4722), - [anon_sym_if] = ACTIONS(4722), - [anon_sym_else] = ACTIONS(4722), - [anon_sym_when] = ACTIONS(4722), - [anon_sym_try] = ACTIONS(4722), - [anon_sym_throw] = ACTIONS(4722), - [anon_sym_return] = ACTIONS(4722), - [anon_sym_continue] = ACTIONS(4722), - [anon_sym_break] = ACTIONS(4722), - [anon_sym_COLON_COLON] = ACTIONS(4724), - [anon_sym_PLUS_EQ] = ACTIONS(4724), - [anon_sym_DASH_EQ] = ACTIONS(4724), - [anon_sym_STAR_EQ] = ACTIONS(4724), - [anon_sym_SLASH_EQ] = ACTIONS(4724), - [anon_sym_PERCENT_EQ] = ACTIONS(4724), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_BANGin] = ACTIONS(4724), - [anon_sym_is] = ACTIONS(4722), - [anon_sym_BANGis] = ACTIONS(4724), - [anon_sym_PLUS] = ACTIONS(4722), - [anon_sym_DASH] = ACTIONS(4722), - [anon_sym_SLASH] = ACTIONS(4722), - [anon_sym_PERCENT] = ACTIONS(4722), - [anon_sym_as_QMARK] = ACTIONS(4724), - [anon_sym_PLUS_PLUS] = ACTIONS(4724), - [anon_sym_DASH_DASH] = ACTIONS(4724), - [anon_sym_BANG] = ACTIONS(4722), - [anon_sym_BANG_BANG] = ACTIONS(4724), - [anon_sym_suspend] = ACTIONS(4722), - [anon_sym_sealed] = ACTIONS(4722), - [anon_sym_annotation] = ACTIONS(4722), - [anon_sym_data] = ACTIONS(4722), - [anon_sym_inner] = ACTIONS(4722), - [anon_sym_value] = ACTIONS(4722), - [anon_sym_override] = ACTIONS(4722), - [anon_sym_lateinit] = ACTIONS(4722), - [anon_sym_public] = ACTIONS(4722), - [anon_sym_private] = ACTIONS(4722), - [anon_sym_internal] = ACTIONS(4722), - [anon_sym_protected] = ACTIONS(4722), - [anon_sym_tailrec] = ACTIONS(4722), - [anon_sym_operator] = ACTIONS(4722), - [anon_sym_infix] = ACTIONS(4722), - [anon_sym_inline] = ACTIONS(4722), - [anon_sym_external] = ACTIONS(4722), - [sym_property_modifier] = ACTIONS(4722), - [anon_sym_abstract] = ACTIONS(4722), - [anon_sym_final] = ACTIONS(4722), - [anon_sym_open] = ACTIONS(4722), - [anon_sym_vararg] = ACTIONS(4722), - [anon_sym_noinline] = ACTIONS(4722), - [anon_sym_crossinline] = ACTIONS(4722), - [anon_sym_expect] = ACTIONS(4722), - [anon_sym_actual] = ACTIONS(4722), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4724), - [anon_sym_continue_AT] = ACTIONS(4724), - [anon_sym_break_AT] = ACTIONS(4724), - [anon_sym_this_AT] = ACTIONS(4724), - [anon_sym_super_AT] = ACTIONS(4724), - [sym_real_literal] = ACTIONS(4724), - [sym_integer_literal] = ACTIONS(4722), - [sym_hex_literal] = ACTIONS(4724), - [sym_bin_literal] = ACTIONS(4724), - [anon_sym_true] = ACTIONS(4722), - [anon_sym_false] = ACTIONS(4722), - [anon_sym_SQUOTE] = ACTIONS(4724), - [sym__backtick_identifier] = ACTIONS(4724), - [sym__automatic_semicolon] = ACTIONS(4724), - [sym_safe_nav] = ACTIONS(4724), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4724), - }, - [1006] = { - [sym__alpha_identifier] = ACTIONS(4726), - [anon_sym_AT] = ACTIONS(4728), - [anon_sym_LBRACK] = ACTIONS(4728), - [anon_sym_as] = ACTIONS(4726), - [anon_sym_EQ] = ACTIONS(4726), - [anon_sym_fun] = ACTIONS(4726), - [anon_sym_LBRACE] = ACTIONS(4728), - [anon_sym_RBRACE] = ACTIONS(4728), - [anon_sym_LPAREN] = ACTIONS(4728), - [anon_sym_COMMA] = ACTIONS(4728), - [anon_sym_by] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4726), - [anon_sym_GT] = ACTIONS(4726), - [anon_sym_where] = ACTIONS(4726), - [anon_sym_object] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4726), - [anon_sym_SEMI] = ACTIONS(4728), - [anon_sym_get] = ACTIONS(4726), - [anon_sym_set] = ACTIONS(4726), - [anon_sym_this] = ACTIONS(4726), - [anon_sym_super] = ACTIONS(4726), - [anon_sym_STAR] = ACTIONS(4726), - [sym_label] = ACTIONS(4726), - [anon_sym_in] = ACTIONS(4726), - [anon_sym_DOT_DOT] = ACTIONS(4728), - [anon_sym_QMARK_COLON] = ACTIONS(4728), - [anon_sym_AMP_AMP] = ACTIONS(4728), - [anon_sym_PIPE_PIPE] = ACTIONS(4728), - [anon_sym_null] = ACTIONS(4726), - [anon_sym_if] = ACTIONS(4726), - [anon_sym_else] = ACTIONS(4726), - [anon_sym_when] = ACTIONS(4726), - [anon_sym_try] = ACTIONS(4726), - [anon_sym_throw] = ACTIONS(4726), - [anon_sym_return] = ACTIONS(4726), - [anon_sym_continue] = ACTIONS(4726), - [anon_sym_break] = ACTIONS(4726), - [anon_sym_COLON_COLON] = ACTIONS(4728), - [anon_sym_PLUS_EQ] = ACTIONS(4728), - [anon_sym_DASH_EQ] = ACTIONS(4728), - [anon_sym_STAR_EQ] = ACTIONS(4728), - [anon_sym_SLASH_EQ] = ACTIONS(4728), - [anon_sym_PERCENT_EQ] = ACTIONS(4728), - [anon_sym_BANG_EQ] = ACTIONS(4726), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), - [anon_sym_EQ_EQ] = ACTIONS(4726), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_GT_EQ] = ACTIONS(4728), - [anon_sym_BANGin] = ACTIONS(4728), - [anon_sym_is] = ACTIONS(4726), - [anon_sym_BANGis] = ACTIONS(4728), - [anon_sym_PLUS] = ACTIONS(4726), - [anon_sym_DASH] = ACTIONS(4726), - [anon_sym_SLASH] = ACTIONS(4726), - [anon_sym_PERCENT] = ACTIONS(4726), - [anon_sym_as_QMARK] = ACTIONS(4728), - [anon_sym_PLUS_PLUS] = ACTIONS(4728), - [anon_sym_DASH_DASH] = ACTIONS(4728), - [anon_sym_BANG] = ACTIONS(4726), - [anon_sym_BANG_BANG] = ACTIONS(4728), - [anon_sym_suspend] = ACTIONS(4726), - [anon_sym_sealed] = ACTIONS(4726), - [anon_sym_annotation] = ACTIONS(4726), - [anon_sym_data] = ACTIONS(4726), - [anon_sym_inner] = ACTIONS(4726), - [anon_sym_value] = ACTIONS(4726), - [anon_sym_override] = ACTIONS(4726), - [anon_sym_lateinit] = ACTIONS(4726), - [anon_sym_public] = ACTIONS(4726), - [anon_sym_private] = ACTIONS(4726), - [anon_sym_internal] = ACTIONS(4726), - [anon_sym_protected] = ACTIONS(4726), - [anon_sym_tailrec] = ACTIONS(4726), - [anon_sym_operator] = ACTIONS(4726), - [anon_sym_infix] = ACTIONS(4726), - [anon_sym_inline] = ACTIONS(4726), - [anon_sym_external] = ACTIONS(4726), - [sym_property_modifier] = ACTIONS(4726), - [anon_sym_abstract] = ACTIONS(4726), - [anon_sym_final] = ACTIONS(4726), - [anon_sym_open] = ACTIONS(4726), - [anon_sym_vararg] = ACTIONS(4726), - [anon_sym_noinline] = ACTIONS(4726), - [anon_sym_crossinline] = ACTIONS(4726), - [anon_sym_expect] = ACTIONS(4726), - [anon_sym_actual] = ACTIONS(4726), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4728), - [anon_sym_continue_AT] = ACTIONS(4728), - [anon_sym_break_AT] = ACTIONS(4728), - [anon_sym_this_AT] = ACTIONS(4728), - [anon_sym_super_AT] = ACTIONS(4728), - [sym_real_literal] = ACTIONS(4728), - [sym_integer_literal] = ACTIONS(4726), - [sym_hex_literal] = ACTIONS(4728), - [sym_bin_literal] = ACTIONS(4728), - [anon_sym_true] = ACTIONS(4726), - [anon_sym_false] = ACTIONS(4726), - [anon_sym_SQUOTE] = ACTIONS(4728), - [sym__backtick_identifier] = ACTIONS(4728), - [sym__automatic_semicolon] = ACTIONS(4728), - [sym_safe_nav] = ACTIONS(4728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4583), + [anon_sym_BANG] = ACTIONS(4581), + [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_suspend] = ACTIONS(4581), + [anon_sym_sealed] = ACTIONS(4581), + [anon_sym_annotation] = ACTIONS(4581), + [anon_sym_data] = ACTIONS(4581), + [anon_sym_inner] = ACTIONS(4581), + [anon_sym_value] = ACTIONS(4581), + [anon_sym_override] = ACTIONS(4581), + [anon_sym_lateinit] = ACTIONS(4581), + [anon_sym_public] = ACTIONS(4581), + [anon_sym_private] = ACTIONS(4581), + [anon_sym_internal] = ACTIONS(4581), + [anon_sym_protected] = ACTIONS(4581), + [anon_sym_tailrec] = ACTIONS(4581), + [anon_sym_operator] = ACTIONS(4581), + [anon_sym_infix] = ACTIONS(4581), + [anon_sym_inline] = ACTIONS(4581), + [anon_sym_external] = ACTIONS(4581), + [sym_property_modifier] = ACTIONS(4581), + [anon_sym_abstract] = ACTIONS(4581), + [anon_sym_final] = ACTIONS(4581), + [anon_sym_open] = ACTIONS(4581), + [anon_sym_vararg] = ACTIONS(4581), + [anon_sym_noinline] = ACTIONS(4581), + [anon_sym_crossinline] = ACTIONS(4581), + [anon_sym_expect] = ACTIONS(4581), + [anon_sym_actual] = ACTIONS(4581), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4583), + [anon_sym_continue_AT] = ACTIONS(4583), + [anon_sym_break_AT] = ACTIONS(4583), + [anon_sym_this_AT] = ACTIONS(4583), + [anon_sym_super_AT] = ACTIONS(4583), + [sym_real_literal] = ACTIONS(4583), + [sym_integer_literal] = ACTIONS(4581), + [sym_hex_literal] = ACTIONS(4583), + [sym_bin_literal] = ACTIONS(4583), + [anon_sym_true] = ACTIONS(4581), + [anon_sym_false] = ACTIONS(4581), + [anon_sym_SQUOTE] = ACTIONS(4583), + [sym__backtick_identifier] = ACTIONS(4583), + [sym__automatic_semicolon] = ACTIONS(4583), + [sym_safe_nav] = ACTIONS(4583), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4583), }, - [1007] = { - [sym__alpha_identifier] = ACTIONS(4730), - [anon_sym_AT] = ACTIONS(4733), - [anon_sym_LBRACK] = ACTIONS(4733), - [anon_sym_as] = ACTIONS(4730), - [anon_sym_EQ] = ACTIONS(4730), - [anon_sym_fun] = ACTIONS(4730), - [anon_sym_LBRACE] = ACTIONS(4733), - [anon_sym_RBRACE] = ACTIONS(4733), - [anon_sym_LPAREN] = ACTIONS(4733), - [anon_sym_COMMA] = ACTIONS(4733), - [anon_sym_by] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4730), - [anon_sym_GT] = ACTIONS(4730), - [anon_sym_where] = ACTIONS(4730), - [anon_sym_object] = ACTIONS(4730), - [anon_sym_DOT] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4733), - [anon_sym_get] = ACTIONS(4730), - [anon_sym_set] = ACTIONS(4730), - [anon_sym_this] = ACTIONS(4730), - [anon_sym_super] = ACTIONS(4730), - [anon_sym_STAR] = ACTIONS(4730), - [sym_label] = ACTIONS(4730), - [anon_sym_in] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4733), - [anon_sym_QMARK_COLON] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_null] = ACTIONS(4730), - [anon_sym_if] = ACTIONS(4730), - [anon_sym_else] = ACTIONS(4730), - [anon_sym_when] = ACTIONS(4730), - [anon_sym_try] = ACTIONS(4730), - [anon_sym_throw] = ACTIONS(4730), - [anon_sym_return] = ACTIONS(4730), - [anon_sym_continue] = ACTIONS(4730), - [anon_sym_break] = ACTIONS(4730), - [anon_sym_COLON_COLON] = ACTIONS(4733), - [anon_sym_PLUS_EQ] = ACTIONS(4733), - [anon_sym_DASH_EQ] = ACTIONS(4733), - [anon_sym_STAR_EQ] = ACTIONS(4733), - [anon_sym_SLASH_EQ] = ACTIONS(4733), - [anon_sym_PERCENT_EQ] = ACTIONS(4733), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4733), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4733), - [anon_sym_LT_EQ] = ACTIONS(4733), - [anon_sym_GT_EQ] = ACTIONS(4733), - [anon_sym_BANGin] = ACTIONS(4733), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_BANGis] = ACTIONS(4733), - [anon_sym_PLUS] = ACTIONS(4730), - [anon_sym_DASH] = ACTIONS(4730), - [anon_sym_SLASH] = ACTIONS(4730), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_as_QMARK] = ACTIONS(4733), - [anon_sym_PLUS_PLUS] = ACTIONS(4733), - [anon_sym_DASH_DASH] = ACTIONS(4733), - [anon_sym_BANG] = ACTIONS(4730), - [anon_sym_BANG_BANG] = ACTIONS(4733), - [anon_sym_suspend] = ACTIONS(4730), - [anon_sym_sealed] = ACTIONS(4730), - [anon_sym_annotation] = ACTIONS(4730), - [anon_sym_data] = ACTIONS(4730), - [anon_sym_inner] = ACTIONS(4730), - [anon_sym_value] = ACTIONS(4730), - [anon_sym_override] = ACTIONS(4730), - [anon_sym_lateinit] = ACTIONS(4730), - [anon_sym_public] = ACTIONS(4730), - [anon_sym_private] = ACTIONS(4730), - [anon_sym_internal] = ACTIONS(4730), - [anon_sym_protected] = ACTIONS(4730), - [anon_sym_tailrec] = ACTIONS(4730), - [anon_sym_operator] = ACTIONS(4730), - [anon_sym_infix] = ACTIONS(4730), - [anon_sym_inline] = ACTIONS(4730), - [anon_sym_external] = ACTIONS(4730), - [sym_property_modifier] = ACTIONS(4730), - [anon_sym_abstract] = ACTIONS(4730), - [anon_sym_final] = ACTIONS(4730), - [anon_sym_open] = ACTIONS(4730), - [anon_sym_vararg] = ACTIONS(4730), - [anon_sym_noinline] = ACTIONS(4730), - [anon_sym_crossinline] = ACTIONS(4730), - [anon_sym_expect] = ACTIONS(4730), - [anon_sym_actual] = ACTIONS(4730), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4733), - [anon_sym_continue_AT] = ACTIONS(4733), - [anon_sym_break_AT] = ACTIONS(4733), - [anon_sym_this_AT] = ACTIONS(4733), - [anon_sym_super_AT] = ACTIONS(4733), - [sym_real_literal] = ACTIONS(4733), - [sym_integer_literal] = ACTIONS(4730), - [sym_hex_literal] = ACTIONS(4733), - [sym_bin_literal] = ACTIONS(4733), - [anon_sym_true] = ACTIONS(4730), - [anon_sym_false] = ACTIONS(4730), - [anon_sym_SQUOTE] = ACTIONS(4733), - [sym__backtick_identifier] = ACTIONS(4733), - [sym__automatic_semicolon] = ACTIONS(4733), - [sym_safe_nav] = ACTIONS(4733), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4733), + [943] = { + [sym_class_body] = STATE(1120), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), }, - [1008] = { - [sym__alpha_identifier] = ACTIONS(4736), - [anon_sym_AT] = ACTIONS(4738), - [anon_sym_LBRACK] = ACTIONS(4738), - [anon_sym_as] = ACTIONS(4736), - [anon_sym_EQ] = ACTIONS(4736), - [anon_sym_fun] = ACTIONS(4736), - [anon_sym_LBRACE] = ACTIONS(4738), - [anon_sym_RBRACE] = ACTIONS(4738), - [anon_sym_LPAREN] = ACTIONS(4738), - [anon_sym_COMMA] = ACTIONS(4738), - [anon_sym_by] = ACTIONS(4736), - [anon_sym_LT] = ACTIONS(4736), - [anon_sym_GT] = ACTIONS(4736), - [anon_sym_where] = ACTIONS(4736), - [anon_sym_object] = ACTIONS(4736), - [anon_sym_DOT] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4738), - [anon_sym_get] = ACTIONS(4736), - [anon_sym_set] = ACTIONS(4736), - [anon_sym_this] = ACTIONS(4736), - [anon_sym_super] = ACTIONS(4736), - [anon_sym_STAR] = ACTIONS(4736), - [sym_label] = ACTIONS(4736), - [anon_sym_in] = ACTIONS(4736), - [anon_sym_DOT_DOT] = ACTIONS(4738), - [anon_sym_QMARK_COLON] = ACTIONS(4738), - [anon_sym_AMP_AMP] = ACTIONS(4738), - [anon_sym_PIPE_PIPE] = ACTIONS(4738), - [anon_sym_null] = ACTIONS(4736), - [anon_sym_if] = ACTIONS(4736), - [anon_sym_else] = ACTIONS(4736), - [anon_sym_when] = ACTIONS(4736), - [anon_sym_try] = ACTIONS(4736), - [anon_sym_throw] = ACTIONS(4736), - [anon_sym_return] = ACTIONS(4736), - [anon_sym_continue] = ACTIONS(4736), - [anon_sym_break] = ACTIONS(4736), - [anon_sym_COLON_COLON] = ACTIONS(4738), - [anon_sym_PLUS_EQ] = ACTIONS(4738), - [anon_sym_DASH_EQ] = ACTIONS(4738), - [anon_sym_STAR_EQ] = ACTIONS(4738), - [anon_sym_SLASH_EQ] = ACTIONS(4738), - [anon_sym_PERCENT_EQ] = ACTIONS(4738), - [anon_sym_BANG_EQ] = ACTIONS(4736), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), - [anon_sym_EQ_EQ] = ACTIONS(4736), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), - [anon_sym_LT_EQ] = ACTIONS(4738), - [anon_sym_GT_EQ] = ACTIONS(4738), - [anon_sym_BANGin] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_BANGis] = ACTIONS(4738), - [anon_sym_PLUS] = ACTIONS(4736), - [anon_sym_DASH] = ACTIONS(4736), - [anon_sym_SLASH] = ACTIONS(4736), - [anon_sym_PERCENT] = ACTIONS(4736), - [anon_sym_as_QMARK] = ACTIONS(4738), - [anon_sym_PLUS_PLUS] = ACTIONS(4738), - [anon_sym_DASH_DASH] = ACTIONS(4738), - [anon_sym_BANG] = ACTIONS(4736), - [anon_sym_BANG_BANG] = ACTIONS(4738), - [anon_sym_suspend] = ACTIONS(4736), - [anon_sym_sealed] = ACTIONS(4736), - [anon_sym_annotation] = ACTIONS(4736), - [anon_sym_data] = ACTIONS(4736), - [anon_sym_inner] = ACTIONS(4736), - [anon_sym_value] = ACTIONS(4736), - [anon_sym_override] = ACTIONS(4736), - [anon_sym_lateinit] = ACTIONS(4736), - [anon_sym_public] = ACTIONS(4736), - [anon_sym_private] = ACTIONS(4736), - [anon_sym_internal] = ACTIONS(4736), - [anon_sym_protected] = ACTIONS(4736), - [anon_sym_tailrec] = ACTIONS(4736), - [anon_sym_operator] = ACTIONS(4736), - [anon_sym_infix] = ACTIONS(4736), - [anon_sym_inline] = ACTIONS(4736), - [anon_sym_external] = ACTIONS(4736), - [sym_property_modifier] = ACTIONS(4736), - [anon_sym_abstract] = ACTIONS(4736), - [anon_sym_final] = ACTIONS(4736), - [anon_sym_open] = ACTIONS(4736), - [anon_sym_vararg] = ACTIONS(4736), - [anon_sym_noinline] = ACTIONS(4736), - [anon_sym_crossinline] = ACTIONS(4736), - [anon_sym_expect] = ACTIONS(4736), - [anon_sym_actual] = ACTIONS(4736), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4738), - [anon_sym_continue_AT] = ACTIONS(4738), - [anon_sym_break_AT] = ACTIONS(4738), - [anon_sym_this_AT] = ACTIONS(4738), - [anon_sym_super_AT] = ACTIONS(4738), - [sym_real_literal] = ACTIONS(4738), - [sym_integer_literal] = ACTIONS(4736), - [sym_hex_literal] = ACTIONS(4738), - [sym_bin_literal] = ACTIONS(4738), - [anon_sym_true] = ACTIONS(4736), - [anon_sym_false] = ACTIONS(4736), - [anon_sym_SQUOTE] = ACTIONS(4738), - [sym__backtick_identifier] = ACTIONS(4738), - [sym__automatic_semicolon] = ACTIONS(4738), - [sym_safe_nav] = ACTIONS(4738), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4738), + [944] = { + [sym__alpha_identifier] = ACTIONS(4585), + [anon_sym_AT] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4585), + [anon_sym_EQ] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_RBRACE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4585), + [anon_sym_where] = ACTIONS(4585), + [anon_sym_object] = ACTIONS(4585), + [anon_sym_fun] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_get] = ACTIONS(4585), + [anon_sym_set] = ACTIONS(4585), + [anon_sym_this] = ACTIONS(4585), + [anon_sym_super] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(4585), + [sym_label] = ACTIONS(4585), + [anon_sym_in] = ACTIONS(4585), + [anon_sym_DOT_DOT] = ACTIONS(4587), + [anon_sym_QMARK_COLON] = ACTIONS(4587), + [anon_sym_AMP_AMP] = ACTIONS(4587), + [anon_sym_PIPE_PIPE] = ACTIONS(4587), + [anon_sym_null] = ACTIONS(4585), + [anon_sym_if] = ACTIONS(4585), + [anon_sym_else] = ACTIONS(4585), + [anon_sym_when] = ACTIONS(4585), + [anon_sym_try] = ACTIONS(4585), + [anon_sym_throw] = ACTIONS(4585), + [anon_sym_return] = ACTIONS(4585), + [anon_sym_continue] = ACTIONS(4585), + [anon_sym_break] = ACTIONS(4585), + [anon_sym_COLON_COLON] = ACTIONS(4587), + [anon_sym_PLUS_EQ] = ACTIONS(4587), + [anon_sym_DASH_EQ] = ACTIONS(4587), + [anon_sym_STAR_EQ] = ACTIONS(4587), + [anon_sym_SLASH_EQ] = ACTIONS(4587), + [anon_sym_PERCENT_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4587), + [anon_sym_LT_EQ] = ACTIONS(4587), + [anon_sym_GT_EQ] = ACTIONS(4587), + [anon_sym_BANGin] = ACTIONS(4587), + [anon_sym_is] = ACTIONS(4585), + [anon_sym_BANGis] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4585), + [anon_sym_SLASH] = ACTIONS(4585), + [anon_sym_PERCENT] = ACTIONS(4585), + [anon_sym_as_QMARK] = ACTIONS(4587), + [anon_sym_PLUS_PLUS] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4585), + [anon_sym_BANG_BANG] = ACTIONS(4587), + [anon_sym_suspend] = ACTIONS(4585), + [anon_sym_sealed] = ACTIONS(4585), + [anon_sym_annotation] = ACTIONS(4585), + [anon_sym_data] = ACTIONS(4585), + [anon_sym_inner] = ACTIONS(4585), + [anon_sym_value] = ACTIONS(4585), + [anon_sym_override] = ACTIONS(4585), + [anon_sym_lateinit] = ACTIONS(4585), + [anon_sym_public] = ACTIONS(4585), + [anon_sym_private] = ACTIONS(4585), + [anon_sym_internal] = ACTIONS(4585), + [anon_sym_protected] = ACTIONS(4585), + [anon_sym_tailrec] = ACTIONS(4585), + [anon_sym_operator] = ACTIONS(4585), + [anon_sym_infix] = ACTIONS(4585), + [anon_sym_inline] = ACTIONS(4585), + [anon_sym_external] = ACTIONS(4585), + [sym_property_modifier] = ACTIONS(4585), + [anon_sym_abstract] = ACTIONS(4585), + [anon_sym_final] = ACTIONS(4585), + [anon_sym_open] = ACTIONS(4585), + [anon_sym_vararg] = ACTIONS(4585), + [anon_sym_noinline] = ACTIONS(4585), + [anon_sym_crossinline] = ACTIONS(4585), + [anon_sym_expect] = ACTIONS(4585), + [anon_sym_actual] = ACTIONS(4585), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4587), + [anon_sym_continue_AT] = ACTIONS(4587), + [anon_sym_break_AT] = ACTIONS(4587), + [anon_sym_this_AT] = ACTIONS(4587), + [anon_sym_super_AT] = ACTIONS(4587), + [sym_real_literal] = ACTIONS(4587), + [sym_integer_literal] = ACTIONS(4585), + [sym_hex_literal] = ACTIONS(4587), + [sym_bin_literal] = ACTIONS(4587), + [anon_sym_true] = ACTIONS(4585), + [anon_sym_false] = ACTIONS(4585), + [anon_sym_SQUOTE] = ACTIONS(4587), + [sym__backtick_identifier] = ACTIONS(4587), + [sym__automatic_semicolon] = ACTIONS(4587), + [sym_safe_nav] = ACTIONS(4587), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4587), }, - [1009] = { + [945] = { + [sym_class_body] = STATE(1141), [sym__alpha_identifier] = ACTIONS(4327), [anon_sym_AT] = ACTIONS(4329), [anon_sym_LBRACK] = ACTIONS(4329), [anon_sym_as] = ACTIONS(4327), [anon_sym_EQ] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(3210), [anon_sym_RBRACE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4327), [anon_sym_LT] = ACTIONS(4327), [anon_sym_GT] = ACTIONS(4327), [anon_sym_where] = ACTIONS(4327), [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), [anon_sym_DOT] = ACTIONS(4327), [anon_sym_SEMI] = ACTIONS(4329), [anon_sym_get] = ACTIONS(4327), @@ -166616,724 +158805,1473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4329), }, - [1010] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(990), - [sym__alpha_identifier] = ACTIONS(4740), - [anon_sym_AT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4740), - [anon_sym_fun] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4675), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_where] = ACTIONS(4740), - [anon_sym_object] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4740), - [anon_sym_set] = ACTIONS(4740), - [anon_sym_this] = ACTIONS(4740), - [anon_sym_super] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4740), - [sym_label] = ACTIONS(4740), - [anon_sym_in] = ACTIONS(4740), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [anon_sym_QMARK_COLON] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_null] = ACTIONS(4740), - [anon_sym_if] = ACTIONS(4740), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_when] = ACTIONS(4740), - [anon_sym_try] = ACTIONS(4740), - [anon_sym_throw] = ACTIONS(4740), - [anon_sym_return] = ACTIONS(4740), - [anon_sym_continue] = ACTIONS(4740), - [anon_sym_break] = ACTIONS(4740), - [anon_sym_COLON_COLON] = ACTIONS(4742), - [anon_sym_PLUS_EQ] = ACTIONS(4742), - [anon_sym_DASH_EQ] = ACTIONS(4742), - [anon_sym_STAR_EQ] = ACTIONS(4742), - [anon_sym_SLASH_EQ] = ACTIONS(4742), - [anon_sym_PERCENT_EQ] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT_EQ] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_BANGin] = ACTIONS(4742), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_BANGis] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4740), - [anon_sym_as_QMARK] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4742), - [anon_sym_BANG] = ACTIONS(4740), - [anon_sym_BANG_BANG] = ACTIONS(4742), - [anon_sym_suspend] = ACTIONS(4740), - [anon_sym_sealed] = ACTIONS(4740), - [anon_sym_annotation] = ACTIONS(4740), - [anon_sym_data] = ACTIONS(4740), - [anon_sym_inner] = ACTIONS(4740), - [anon_sym_value] = ACTIONS(4740), - [anon_sym_override] = ACTIONS(4740), - [anon_sym_lateinit] = ACTIONS(4740), - [anon_sym_public] = ACTIONS(4740), - [anon_sym_private] = ACTIONS(4740), - [anon_sym_internal] = ACTIONS(4740), - [anon_sym_protected] = ACTIONS(4740), - [anon_sym_tailrec] = ACTIONS(4740), - [anon_sym_operator] = ACTIONS(4740), - [anon_sym_infix] = ACTIONS(4740), - [anon_sym_inline] = ACTIONS(4740), - [anon_sym_external] = ACTIONS(4740), - [sym_property_modifier] = ACTIONS(4740), - [anon_sym_abstract] = ACTIONS(4740), - [anon_sym_final] = ACTIONS(4740), - [anon_sym_open] = ACTIONS(4740), - [anon_sym_vararg] = ACTIONS(4740), - [anon_sym_noinline] = ACTIONS(4740), - [anon_sym_crossinline] = ACTIONS(4740), - [anon_sym_expect] = ACTIONS(4740), - [anon_sym_actual] = ACTIONS(4740), + [946] = { + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [947] = { + [sym_enum_class_body] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4742), - [anon_sym_continue_AT] = ACTIONS(4742), - [anon_sym_break_AT] = ACTIONS(4742), - [anon_sym_this_AT] = ACTIONS(4742), - [anon_sym_super_AT] = ACTIONS(4742), - [sym_real_literal] = ACTIONS(4742), - [sym_integer_literal] = ACTIONS(4740), - [sym_hex_literal] = ACTIONS(4742), - [sym_bin_literal] = ACTIONS(4742), - [anon_sym_true] = ACTIONS(4740), - [anon_sym_false] = ACTIONS(4740), - [anon_sym_SQUOTE] = ACTIONS(4742), - [sym__backtick_identifier] = ACTIONS(4742), - [sym__automatic_semicolon] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4742), + [sym__string_start] = ACTIONS(4323), }, - [1011] = { - [sym_class_body] = STATE(1168), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_fun] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(4457), - [anon_sym_object] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_this] = ACTIONS(4457), - [anon_sym_super] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [sym_label] = ACTIONS(4457), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_null] = ACTIONS(4457), - [anon_sym_if] = ACTIONS(4457), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_when] = ACTIONS(4457), - [anon_sym_try] = ACTIONS(4457), - [anon_sym_throw] = ACTIONS(4457), - [anon_sym_return] = ACTIONS(4457), - [anon_sym_continue] = ACTIONS(4457), - [anon_sym_break] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_suspend] = ACTIONS(4457), - [anon_sym_sealed] = ACTIONS(4457), - [anon_sym_annotation] = ACTIONS(4457), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_override] = ACTIONS(4457), - [anon_sym_lateinit] = ACTIONS(4457), - [anon_sym_public] = ACTIONS(4457), - [anon_sym_private] = ACTIONS(4457), - [anon_sym_internal] = ACTIONS(4457), - [anon_sym_protected] = ACTIONS(4457), - [anon_sym_tailrec] = ACTIONS(4457), - [anon_sym_operator] = ACTIONS(4457), - [anon_sym_infix] = ACTIONS(4457), - [anon_sym_inline] = ACTIONS(4457), - [anon_sym_external] = ACTIONS(4457), - [sym_property_modifier] = ACTIONS(4457), - [anon_sym_abstract] = ACTIONS(4457), - [anon_sym_final] = ACTIONS(4457), - [anon_sym_open] = ACTIONS(4457), - [anon_sym_vararg] = ACTIONS(4457), - [anon_sym_noinline] = ACTIONS(4457), - [anon_sym_crossinline] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4459), - [anon_sym_continue_AT] = ACTIONS(4459), - [anon_sym_break_AT] = ACTIONS(4459), - [anon_sym_this_AT] = ACTIONS(4459), - [anon_sym_super_AT] = ACTIONS(4459), - [sym_real_literal] = ACTIONS(4459), - [sym_integer_literal] = ACTIONS(4457), - [sym_hex_literal] = ACTIONS(4459), - [sym_bin_literal] = ACTIONS(4459), - [anon_sym_true] = ACTIONS(4457), - [anon_sym_false] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4459), - [sym__backtick_identifier] = ACTIONS(4459), - [sym__automatic_semicolon] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4459), + [948] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), }, - [1012] = { - [sym__alpha_identifier] = ACTIONS(4744), - [anon_sym_AT] = ACTIONS(4746), - [anon_sym_COLON] = ACTIONS(4744), - [anon_sym_LBRACK] = ACTIONS(4746), - [anon_sym_as] = ACTIONS(4744), - [anon_sym_EQ] = ACTIONS(4744), - [anon_sym_fun] = ACTIONS(4744), - [anon_sym_LBRACE] = ACTIONS(4746), - [anon_sym_RBRACE] = ACTIONS(4746), - [anon_sym_LPAREN] = ACTIONS(4746), - [anon_sym_COMMA] = ACTIONS(4746), - [anon_sym_LT] = ACTIONS(4744), - [anon_sym_GT] = ACTIONS(4744), - [anon_sym_where] = ACTIONS(4744), - [anon_sym_object] = ACTIONS(4744), - [anon_sym_DOT] = ACTIONS(4744), - [anon_sym_SEMI] = ACTIONS(4746), - [anon_sym_get] = ACTIONS(4744), - [anon_sym_set] = ACTIONS(4744), - [anon_sym_this] = ACTIONS(4744), - [anon_sym_super] = ACTIONS(4744), - [anon_sym_STAR] = ACTIONS(4744), - [sym_label] = ACTIONS(4744), - [anon_sym_in] = ACTIONS(4744), - [anon_sym_DOT_DOT] = ACTIONS(4746), - [anon_sym_QMARK_COLON] = ACTIONS(4746), - [anon_sym_AMP_AMP] = ACTIONS(4746), - [anon_sym_PIPE_PIPE] = ACTIONS(4746), - [anon_sym_null] = ACTIONS(4744), - [anon_sym_if] = ACTIONS(4744), - [anon_sym_else] = ACTIONS(4744), - [anon_sym_when] = ACTIONS(4744), - [anon_sym_try] = ACTIONS(4744), - [anon_sym_throw] = ACTIONS(4744), - [anon_sym_return] = ACTIONS(4744), - [anon_sym_continue] = ACTIONS(4744), - [anon_sym_break] = ACTIONS(4744), - [anon_sym_COLON_COLON] = ACTIONS(4746), - [anon_sym_PLUS_EQ] = ACTIONS(4746), - [anon_sym_DASH_EQ] = ACTIONS(4746), - [anon_sym_STAR_EQ] = ACTIONS(4746), - [anon_sym_SLASH_EQ] = ACTIONS(4746), - [anon_sym_PERCENT_EQ] = ACTIONS(4746), - [anon_sym_BANG_EQ] = ACTIONS(4744), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4746), - [anon_sym_EQ_EQ] = ACTIONS(4744), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4746), - [anon_sym_LT_EQ] = ACTIONS(4746), - [anon_sym_GT_EQ] = ACTIONS(4746), - [anon_sym_BANGin] = ACTIONS(4746), - [anon_sym_is] = ACTIONS(4744), - [anon_sym_BANGis] = ACTIONS(4746), - [anon_sym_PLUS] = ACTIONS(4744), - [anon_sym_DASH] = ACTIONS(4744), - [anon_sym_SLASH] = ACTIONS(4744), - [anon_sym_PERCENT] = ACTIONS(4744), - [anon_sym_as_QMARK] = ACTIONS(4746), - [anon_sym_PLUS_PLUS] = ACTIONS(4746), - [anon_sym_DASH_DASH] = ACTIONS(4746), - [anon_sym_BANG] = ACTIONS(4744), - [anon_sym_BANG_BANG] = ACTIONS(4746), - [anon_sym_suspend] = ACTIONS(4744), - [anon_sym_sealed] = ACTIONS(4744), - [anon_sym_annotation] = ACTIONS(4744), - [anon_sym_data] = ACTIONS(4744), - [anon_sym_inner] = ACTIONS(4744), - [anon_sym_value] = ACTIONS(4744), - [anon_sym_override] = ACTIONS(4744), - [anon_sym_lateinit] = ACTIONS(4744), - [anon_sym_public] = ACTIONS(4744), - [anon_sym_private] = ACTIONS(4744), - [anon_sym_internal] = ACTIONS(4744), - [anon_sym_protected] = ACTIONS(4744), - [anon_sym_tailrec] = ACTIONS(4744), - [anon_sym_operator] = ACTIONS(4744), - [anon_sym_infix] = ACTIONS(4744), - [anon_sym_inline] = ACTIONS(4744), - [anon_sym_external] = ACTIONS(4744), - [sym_property_modifier] = ACTIONS(4744), - [anon_sym_abstract] = ACTIONS(4744), - [anon_sym_final] = ACTIONS(4744), - [anon_sym_open] = ACTIONS(4744), - [anon_sym_vararg] = ACTIONS(4744), - [anon_sym_noinline] = ACTIONS(4744), - [anon_sym_crossinline] = ACTIONS(4744), - [anon_sym_expect] = ACTIONS(4744), - [anon_sym_actual] = ACTIONS(4744), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4746), - [anon_sym_continue_AT] = ACTIONS(4746), - [anon_sym_break_AT] = ACTIONS(4746), - [anon_sym_this_AT] = ACTIONS(4746), - [anon_sym_super_AT] = ACTIONS(4746), - [sym_real_literal] = ACTIONS(4746), - [sym_integer_literal] = ACTIONS(4744), - [sym_hex_literal] = ACTIONS(4746), - [sym_bin_literal] = ACTIONS(4746), - [anon_sym_true] = ACTIONS(4744), - [anon_sym_false] = ACTIONS(4744), - [anon_sym_SQUOTE] = ACTIONS(4746), - [sym__backtick_identifier] = ACTIONS(4746), - [sym__automatic_semicolon] = ACTIONS(4746), - [sym_safe_nav] = ACTIONS(4746), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4746), + [949] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_super] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_when] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3103), + [anon_sym_continue_AT] = ACTIONS(3103), + [anon_sym_break_AT] = ACTIONS(3103), + [anon_sym_this_AT] = ACTIONS(3103), + [anon_sym_super_AT] = ACTIONS(3103), + [sym_real_literal] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(3101), + [sym_hex_literal] = ACTIONS(3103), + [sym_bin_literal] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3103), }, - [1013] = { - [sym__alpha_identifier] = ACTIONS(4748), - [anon_sym_AT] = ACTIONS(4750), - [anon_sym_LBRACK] = ACTIONS(4750), - [anon_sym_as] = ACTIONS(4748), - [anon_sym_EQ] = ACTIONS(4748), - [anon_sym_fun] = ACTIONS(4748), - [anon_sym_LBRACE] = ACTIONS(4750), - [anon_sym_RBRACE] = ACTIONS(4750), - [anon_sym_LPAREN] = ACTIONS(4750), - [anon_sym_COMMA] = ACTIONS(4750), - [anon_sym_by] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4748), - [anon_sym_GT] = ACTIONS(4748), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_object] = ACTIONS(4748), - [anon_sym_DOT] = ACTIONS(4748), - [anon_sym_SEMI] = ACTIONS(4750), - [anon_sym_get] = ACTIONS(4748), - [anon_sym_set] = ACTIONS(4748), - [anon_sym_this] = ACTIONS(4748), - [anon_sym_super] = ACTIONS(4748), - [anon_sym_STAR] = ACTIONS(4748), - [sym_label] = ACTIONS(4748), - [anon_sym_in] = ACTIONS(4748), - [anon_sym_DOT_DOT] = ACTIONS(4750), - [anon_sym_QMARK_COLON] = ACTIONS(4750), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4750), - [anon_sym_null] = ACTIONS(4748), - [anon_sym_if] = ACTIONS(4748), - [anon_sym_else] = ACTIONS(4748), - [anon_sym_when] = ACTIONS(4748), - [anon_sym_try] = ACTIONS(4748), - [anon_sym_throw] = ACTIONS(4748), - [anon_sym_return] = ACTIONS(4748), - [anon_sym_continue] = ACTIONS(4748), - [anon_sym_break] = ACTIONS(4748), - [anon_sym_COLON_COLON] = ACTIONS(4750), - [anon_sym_PLUS_EQ] = ACTIONS(4750), - [anon_sym_DASH_EQ] = ACTIONS(4750), - [anon_sym_STAR_EQ] = ACTIONS(4750), - [anon_sym_SLASH_EQ] = ACTIONS(4750), - [anon_sym_PERCENT_EQ] = ACTIONS(4750), - [anon_sym_BANG_EQ] = ACTIONS(4748), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4750), - [anon_sym_EQ_EQ] = ACTIONS(4748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4750), - [anon_sym_LT_EQ] = ACTIONS(4750), - [anon_sym_GT_EQ] = ACTIONS(4750), - [anon_sym_BANGin] = ACTIONS(4750), - [anon_sym_is] = ACTIONS(4748), - [anon_sym_BANGis] = ACTIONS(4750), - [anon_sym_PLUS] = ACTIONS(4748), - [anon_sym_DASH] = ACTIONS(4748), - [anon_sym_SLASH] = ACTIONS(4748), - [anon_sym_PERCENT] = ACTIONS(4748), - [anon_sym_as_QMARK] = ACTIONS(4750), - [anon_sym_PLUS_PLUS] = ACTIONS(4750), - [anon_sym_DASH_DASH] = ACTIONS(4750), - [anon_sym_BANG] = ACTIONS(4748), - [anon_sym_BANG_BANG] = ACTIONS(4750), - [anon_sym_suspend] = ACTIONS(4748), - [anon_sym_sealed] = ACTIONS(4748), - [anon_sym_annotation] = ACTIONS(4748), - [anon_sym_data] = ACTIONS(4748), - [anon_sym_inner] = ACTIONS(4748), - [anon_sym_value] = ACTIONS(4748), - [anon_sym_override] = ACTIONS(4748), - [anon_sym_lateinit] = ACTIONS(4748), - [anon_sym_public] = ACTIONS(4748), - [anon_sym_private] = ACTIONS(4748), - [anon_sym_internal] = ACTIONS(4748), - [anon_sym_protected] = ACTIONS(4748), - [anon_sym_tailrec] = ACTIONS(4748), - [anon_sym_operator] = ACTIONS(4748), - [anon_sym_infix] = ACTIONS(4748), - [anon_sym_inline] = ACTIONS(4748), - [anon_sym_external] = ACTIONS(4748), - [sym_property_modifier] = ACTIONS(4748), - [anon_sym_abstract] = ACTIONS(4748), - [anon_sym_final] = ACTIONS(4748), - [anon_sym_open] = ACTIONS(4748), - [anon_sym_vararg] = ACTIONS(4748), - [anon_sym_noinline] = ACTIONS(4748), - [anon_sym_crossinline] = ACTIONS(4748), - [anon_sym_expect] = ACTIONS(4748), - [anon_sym_actual] = ACTIONS(4748), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4750), - [anon_sym_continue_AT] = ACTIONS(4750), - [anon_sym_break_AT] = ACTIONS(4750), - [anon_sym_this_AT] = ACTIONS(4750), - [anon_sym_super_AT] = ACTIONS(4750), - [sym_real_literal] = ACTIONS(4750), - [sym_integer_literal] = ACTIONS(4748), - [sym_hex_literal] = ACTIONS(4750), - [sym_bin_literal] = ACTIONS(4750), - [anon_sym_true] = ACTIONS(4748), - [anon_sym_false] = ACTIONS(4748), - [anon_sym_SQUOTE] = ACTIONS(4750), - [sym__backtick_identifier] = ACTIONS(4750), - [sym__automatic_semicolon] = ACTIONS(4750), - [sym_safe_nav] = ACTIONS(4750), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4750), + [950] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3134), }, - [1014] = { - [sym_enum_class_body] = STATE(1168), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_fun] = ACTIONS(4457), + [951] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), + }, + [952] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(952), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(4637), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_object] = ACTIONS(4633), + [anon_sym_fun] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_this] = ACTIONS(4633), + [anon_sym_super] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [sym_label] = ACTIONS(4633), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_null] = ACTIONS(4633), + [anon_sym_if] = ACTIONS(4633), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_when] = ACTIONS(4633), + [anon_sym_try] = ACTIONS(4633), + [anon_sym_throw] = ACTIONS(4633), + [anon_sym_return] = ACTIONS(4633), + [anon_sym_continue] = ACTIONS(4633), + [anon_sym_break] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4633), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4635), + [anon_sym_continue_AT] = ACTIONS(4635), + [anon_sym_break_AT] = ACTIONS(4635), + [anon_sym_this_AT] = ACTIONS(4635), + [anon_sym_super_AT] = ACTIONS(4635), + [sym_real_literal] = ACTIONS(4635), + [sym_integer_literal] = ACTIONS(4633), + [sym_hex_literal] = ACTIONS(4635), + [sym_bin_literal] = ACTIONS(4635), + [anon_sym_true] = ACTIONS(4633), + [anon_sym_false] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4635), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4635), + }, + [953] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4640), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [954] = { + [sym_function_body] = STATE(1048), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), + }, + [955] = { + [sym_class_body] = STATE(1138), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(4457), - [anon_sym_object] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_this] = ACTIONS(4457), - [anon_sym_super] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [sym_label] = ACTIONS(4457), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_null] = ACTIONS(4457), - [anon_sym_if] = ACTIONS(4457), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_when] = ACTIONS(4457), - [anon_sym_try] = ACTIONS(4457), - [anon_sym_throw] = ACTIONS(4457), - [anon_sym_return] = ACTIONS(4457), - [anon_sym_continue] = ACTIONS(4457), - [anon_sym_break] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_suspend] = ACTIONS(4457), - [anon_sym_sealed] = ACTIONS(4457), - [anon_sym_annotation] = ACTIONS(4457), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_override] = ACTIONS(4457), - [anon_sym_lateinit] = ACTIONS(4457), - [anon_sym_public] = ACTIONS(4457), - [anon_sym_private] = ACTIONS(4457), - [anon_sym_internal] = ACTIONS(4457), - [anon_sym_protected] = ACTIONS(4457), - [anon_sym_tailrec] = ACTIONS(4457), - [anon_sym_operator] = ACTIONS(4457), - [anon_sym_infix] = ACTIONS(4457), - [anon_sym_inline] = ACTIONS(4457), - [anon_sym_external] = ACTIONS(4457), - [sym_property_modifier] = ACTIONS(4457), - [anon_sym_abstract] = ACTIONS(4457), - [anon_sym_final] = ACTIONS(4457), - [anon_sym_open] = ACTIONS(4457), - [anon_sym_vararg] = ACTIONS(4457), - [anon_sym_noinline] = ACTIONS(4457), - [anon_sym_crossinline] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4459), - [anon_sym_continue_AT] = ACTIONS(4459), - [anon_sym_break_AT] = ACTIONS(4459), - [anon_sym_this_AT] = ACTIONS(4459), - [anon_sym_super_AT] = ACTIONS(4459), - [sym_real_literal] = ACTIONS(4459), - [sym_integer_literal] = ACTIONS(4457), - [sym_hex_literal] = ACTIONS(4459), - [sym_bin_literal] = ACTIONS(4459), - [anon_sym_true] = ACTIONS(4457), - [anon_sym_false] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4459), - [sym__backtick_identifier] = ACTIONS(4459), - [sym__automatic_semicolon] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4459), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_object] = ACTIONS(4493), + [anon_sym_fun] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_this] = ACTIONS(4493), + [anon_sym_super] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_null] = ACTIONS(4493), + [anon_sym_if] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_when] = ACTIONS(4493), + [anon_sym_try] = ACTIONS(4493), + [anon_sym_throw] = ACTIONS(4493), + [anon_sym_return] = ACTIONS(4493), + [anon_sym_continue] = ACTIONS(4493), + [anon_sym_break] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4495), + [anon_sym_continue_AT] = ACTIONS(4495), + [anon_sym_break_AT] = ACTIONS(4495), + [anon_sym_this_AT] = ACTIONS(4495), + [anon_sym_super_AT] = ACTIONS(4495), + [sym_real_literal] = ACTIONS(4495), + [sym_integer_literal] = ACTIONS(4493), + [sym_hex_literal] = ACTIONS(4495), + [sym_bin_literal] = ACTIONS(4495), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [anon_sym_SQUOTE] = ACTIONS(4495), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4495), }, - [1015] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(990), - [sym__alpha_identifier] = ACTIONS(4740), - [anon_sym_AT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4740), - [anon_sym_fun] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_where] = ACTIONS(4740), - [anon_sym_object] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4740), - [anon_sym_set] = ACTIONS(4740), - [anon_sym_this] = ACTIONS(4740), - [anon_sym_super] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4740), - [sym_label] = ACTIONS(4740), - [anon_sym_in] = ACTIONS(4740), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [anon_sym_QMARK_COLON] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_null] = ACTIONS(4740), - [anon_sym_if] = ACTIONS(4740), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_when] = ACTIONS(4740), - [anon_sym_try] = ACTIONS(4740), - [anon_sym_throw] = ACTIONS(4740), - [anon_sym_return] = ACTIONS(4740), - [anon_sym_continue] = ACTIONS(4740), - [anon_sym_break] = ACTIONS(4740), - [anon_sym_COLON_COLON] = ACTIONS(4742), - [anon_sym_PLUS_EQ] = ACTIONS(4742), - [anon_sym_DASH_EQ] = ACTIONS(4742), - [anon_sym_STAR_EQ] = ACTIONS(4742), - [anon_sym_SLASH_EQ] = ACTIONS(4742), - [anon_sym_PERCENT_EQ] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT_EQ] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_BANGin] = ACTIONS(4742), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_BANGis] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4740), - [anon_sym_as_QMARK] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4742), - [anon_sym_BANG] = ACTIONS(4740), - [anon_sym_BANG_BANG] = ACTIONS(4742), - [anon_sym_suspend] = ACTIONS(4740), - [anon_sym_sealed] = ACTIONS(4740), - [anon_sym_annotation] = ACTIONS(4740), - [anon_sym_data] = ACTIONS(4740), - [anon_sym_inner] = ACTIONS(4740), - [anon_sym_value] = ACTIONS(4740), - [anon_sym_override] = ACTIONS(4740), - [anon_sym_lateinit] = ACTIONS(4740), - [anon_sym_public] = ACTIONS(4740), - [anon_sym_private] = ACTIONS(4740), - [anon_sym_internal] = ACTIONS(4740), - [anon_sym_protected] = ACTIONS(4740), - [anon_sym_tailrec] = ACTIONS(4740), - [anon_sym_operator] = ACTIONS(4740), - [anon_sym_infix] = ACTIONS(4740), - [anon_sym_inline] = ACTIONS(4740), - [anon_sym_external] = ACTIONS(4740), - [sym_property_modifier] = ACTIONS(4740), - [anon_sym_abstract] = ACTIONS(4740), - [anon_sym_final] = ACTIONS(4740), - [anon_sym_open] = ACTIONS(4740), - [anon_sym_vararg] = ACTIONS(4740), - [anon_sym_noinline] = ACTIONS(4740), - [anon_sym_crossinline] = ACTIONS(4740), - [anon_sym_expect] = ACTIONS(4740), - [anon_sym_actual] = ACTIONS(4740), + [956] = { + [sym_class_body] = STATE(1063), + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_object] = ACTIONS(4644), + [anon_sym_fun] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_this] = ACTIONS(4644), + [anon_sym_super] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [sym_label] = ACTIONS(4644), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_null] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_when] = ACTIONS(4644), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_throw] = ACTIONS(4644), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_suspend] = ACTIONS(4644), + [anon_sym_sealed] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4644), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_override] = ACTIONS(4644), + [anon_sym_lateinit] = ACTIONS(4644), + [anon_sym_public] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4644), + [anon_sym_internal] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4644), + [anon_sym_tailrec] = ACTIONS(4644), + [anon_sym_operator] = ACTIONS(4644), + [anon_sym_infix] = ACTIONS(4644), + [anon_sym_inline] = ACTIONS(4644), + [anon_sym_external] = ACTIONS(4644), + [sym_property_modifier] = ACTIONS(4644), + [anon_sym_abstract] = ACTIONS(4644), + [anon_sym_final] = ACTIONS(4644), + [anon_sym_open] = ACTIONS(4644), + [anon_sym_vararg] = ACTIONS(4644), + [anon_sym_noinline] = ACTIONS(4644), + [anon_sym_crossinline] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4646), + [anon_sym_continue_AT] = ACTIONS(4646), + [anon_sym_break_AT] = ACTIONS(4646), + [anon_sym_this_AT] = ACTIONS(4646), + [anon_sym_super_AT] = ACTIONS(4646), + [sym_real_literal] = ACTIONS(4646), + [sym_integer_literal] = ACTIONS(4644), + [sym_hex_literal] = ACTIONS(4646), + [sym_bin_literal] = ACTIONS(4646), + [anon_sym_true] = ACTIONS(4644), + [anon_sym_false] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4646), + [sym__backtick_identifier] = ACTIONS(4646), + [sym__automatic_semicolon] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4646), + }, + [957] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_when] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_throw] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4742), - [anon_sym_continue_AT] = ACTIONS(4742), - [anon_sym_break_AT] = ACTIONS(4742), - [anon_sym_this_AT] = ACTIONS(4742), - [anon_sym_super_AT] = ACTIONS(4742), - [sym_real_literal] = ACTIONS(4742), - [sym_integer_literal] = ACTIONS(4740), - [sym_hex_literal] = ACTIONS(4742), - [sym_bin_literal] = ACTIONS(4742), - [anon_sym_true] = ACTIONS(4740), - [anon_sym_false] = ACTIONS(4740), - [anon_sym_SQUOTE] = ACTIONS(4742), - [sym__backtick_identifier] = ACTIONS(4742), - [sym__automatic_semicolon] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), + [anon_sym_return_AT] = ACTIONS(3090), + [anon_sym_continue_AT] = ACTIONS(3090), + [anon_sym_break_AT] = ACTIONS(3090), + [anon_sym_this_AT] = ACTIONS(3090), + [anon_sym_super_AT] = ACTIONS(3090), + [sym_real_literal] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [sym_hex_literal] = ACTIONS(3090), + [sym_bin_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(4613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4742), + [sym__string_start] = ACTIONS(3090), }, - [1016] = { - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [958] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3115), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4752), - [anon_sym_get] = ACTIONS(4661), - [anon_sym_set] = ACTIONS(4663), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), [anon_sym_PLUS] = ACTIONS(4627), [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), + }, + [959] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -167362,620 +160300,513 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [1017] = { - [sym_class_body] = STATE(1073), - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_fun] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4756), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_where] = ACTIONS(4754), - [anon_sym_object] = ACTIONS(4754), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_this] = ACTIONS(4754), - [anon_sym_super] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [sym_label] = ACTIONS(4754), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_null] = ACTIONS(4754), - [anon_sym_if] = ACTIONS(4754), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_when] = ACTIONS(4754), - [anon_sym_try] = ACTIONS(4754), - [anon_sym_throw] = ACTIONS(4754), - [anon_sym_return] = ACTIONS(4754), - [anon_sym_continue] = ACTIONS(4754), - [anon_sym_break] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG] = ACTIONS(4754), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_suspend] = ACTIONS(4754), - [anon_sym_sealed] = ACTIONS(4754), - [anon_sym_annotation] = ACTIONS(4754), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_override] = ACTIONS(4754), - [anon_sym_lateinit] = ACTIONS(4754), - [anon_sym_public] = ACTIONS(4754), - [anon_sym_private] = ACTIONS(4754), - [anon_sym_internal] = ACTIONS(4754), - [anon_sym_protected] = ACTIONS(4754), - [anon_sym_tailrec] = ACTIONS(4754), - [anon_sym_operator] = ACTIONS(4754), - [anon_sym_infix] = ACTIONS(4754), - [anon_sym_inline] = ACTIONS(4754), - [anon_sym_external] = ACTIONS(4754), - [sym_property_modifier] = ACTIONS(4754), - [anon_sym_abstract] = ACTIONS(4754), - [anon_sym_final] = ACTIONS(4754), - [anon_sym_open] = ACTIONS(4754), - [anon_sym_vararg] = ACTIONS(4754), - [anon_sym_noinline] = ACTIONS(4754), - [anon_sym_crossinline] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4756), - [anon_sym_continue_AT] = ACTIONS(4756), - [anon_sym_break_AT] = ACTIONS(4756), - [anon_sym_this_AT] = ACTIONS(4756), - [anon_sym_super_AT] = ACTIONS(4756), - [sym_real_literal] = ACTIONS(4756), - [sym_integer_literal] = ACTIONS(4754), - [sym_hex_literal] = ACTIONS(4756), - [sym_bin_literal] = ACTIONS(4756), - [anon_sym_true] = ACTIONS(4754), - [anon_sym_false] = ACTIONS(4754), - [anon_sym_SQUOTE] = ACTIONS(4756), - [sym__backtick_identifier] = ACTIONS(4756), - [sym__automatic_semicolon] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4756), + [960] = { + [sym_enum_class_body] = STATE(1128), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_object] = ACTIONS(4481), + [anon_sym_fun] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_this] = ACTIONS(4481), + [anon_sym_super] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_null] = ACTIONS(4481), + [anon_sym_if] = ACTIONS(4481), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_when] = ACTIONS(4481), + [anon_sym_try] = ACTIONS(4481), + [anon_sym_throw] = ACTIONS(4481), + [anon_sym_return] = ACTIONS(4481), + [anon_sym_continue] = ACTIONS(4481), + [anon_sym_break] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4481), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4483), + [anon_sym_continue_AT] = ACTIONS(4483), + [anon_sym_break_AT] = ACTIONS(4483), + [anon_sym_this_AT] = ACTIONS(4483), + [anon_sym_super_AT] = ACTIONS(4483), + [sym_real_literal] = ACTIONS(4483), + [sym_integer_literal] = ACTIONS(4481), + [sym_hex_literal] = ACTIONS(4483), + [sym_bin_literal] = ACTIONS(4483), + [anon_sym_true] = ACTIONS(4481), + [anon_sym_false] = ACTIONS(4481), + [anon_sym_SQUOTE] = ACTIONS(4483), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4483), }, - [1018] = { - [sym_class_body] = STATE(1200), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [961] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3184), }, - [1019] = { - [sym__alpha_identifier] = ACTIONS(4758), - [anon_sym_AT] = ACTIONS(4760), - [anon_sym_COLON] = ACTIONS(4758), - [anon_sym_LBRACK] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4758), - [anon_sym_EQ] = ACTIONS(4758), - [anon_sym_fun] = ACTIONS(4758), - [anon_sym_LBRACE] = ACTIONS(4760), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LT] = ACTIONS(4758), - [anon_sym_GT] = ACTIONS(4758), - [anon_sym_where] = ACTIONS(4758), - [anon_sym_object] = ACTIONS(4758), - [anon_sym_DOT] = ACTIONS(4758), - [anon_sym_SEMI] = ACTIONS(4760), - [anon_sym_get] = ACTIONS(4758), - [anon_sym_set] = ACTIONS(4758), - [anon_sym_this] = ACTIONS(4758), - [anon_sym_super] = ACTIONS(4758), - [anon_sym_STAR] = ACTIONS(4758), - [sym_label] = ACTIONS(4758), - [anon_sym_in] = ACTIONS(4758), - [anon_sym_DOT_DOT] = ACTIONS(4760), - [anon_sym_QMARK_COLON] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [anon_sym_null] = ACTIONS(4758), - [anon_sym_if] = ACTIONS(4758), - [anon_sym_else] = ACTIONS(4758), - [anon_sym_when] = ACTIONS(4758), - [anon_sym_try] = ACTIONS(4758), - [anon_sym_throw] = ACTIONS(4758), - [anon_sym_return] = ACTIONS(4758), - [anon_sym_continue] = ACTIONS(4758), - [anon_sym_break] = ACTIONS(4758), - [anon_sym_COLON_COLON] = ACTIONS(4760), - [anon_sym_PLUS_EQ] = ACTIONS(4760), - [anon_sym_DASH_EQ] = ACTIONS(4760), - [anon_sym_STAR_EQ] = ACTIONS(4760), - [anon_sym_SLASH_EQ] = ACTIONS(4760), - [anon_sym_PERCENT_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4758), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_BANGin] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4758), - [anon_sym_BANGis] = ACTIONS(4760), - [anon_sym_PLUS] = ACTIONS(4758), - [anon_sym_DASH] = ACTIONS(4758), - [anon_sym_SLASH] = ACTIONS(4758), - [anon_sym_PERCENT] = ACTIONS(4758), - [anon_sym_as_QMARK] = ACTIONS(4760), - [anon_sym_PLUS_PLUS] = ACTIONS(4760), - [anon_sym_DASH_DASH] = ACTIONS(4760), - [anon_sym_BANG] = ACTIONS(4758), - [anon_sym_BANG_BANG] = ACTIONS(4760), - [anon_sym_suspend] = ACTIONS(4758), - [anon_sym_sealed] = ACTIONS(4758), - [anon_sym_annotation] = ACTIONS(4758), - [anon_sym_data] = ACTIONS(4758), - [anon_sym_inner] = ACTIONS(4758), - [anon_sym_value] = ACTIONS(4758), - [anon_sym_override] = ACTIONS(4758), - [anon_sym_lateinit] = ACTIONS(4758), - [anon_sym_public] = ACTIONS(4758), - [anon_sym_private] = ACTIONS(4758), - [anon_sym_internal] = ACTIONS(4758), - [anon_sym_protected] = ACTIONS(4758), - [anon_sym_tailrec] = ACTIONS(4758), - [anon_sym_operator] = ACTIONS(4758), - [anon_sym_infix] = ACTIONS(4758), - [anon_sym_inline] = ACTIONS(4758), - [anon_sym_external] = ACTIONS(4758), - [sym_property_modifier] = ACTIONS(4758), - [anon_sym_abstract] = ACTIONS(4758), - [anon_sym_final] = ACTIONS(4758), - [anon_sym_open] = ACTIONS(4758), - [anon_sym_vararg] = ACTIONS(4758), - [anon_sym_noinline] = ACTIONS(4758), - [anon_sym_crossinline] = ACTIONS(4758), - [anon_sym_expect] = ACTIONS(4758), - [anon_sym_actual] = ACTIONS(4758), + [962] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4760), - [anon_sym_continue_AT] = ACTIONS(4760), - [anon_sym_break_AT] = ACTIONS(4760), - [anon_sym_this_AT] = ACTIONS(4760), - [anon_sym_super_AT] = ACTIONS(4760), - [sym_real_literal] = ACTIONS(4760), - [sym_integer_literal] = ACTIONS(4758), - [sym_hex_literal] = ACTIONS(4760), - [sym_bin_literal] = ACTIONS(4760), - [anon_sym_true] = ACTIONS(4758), - [anon_sym_false] = ACTIONS(4758), - [anon_sym_SQUOTE] = ACTIONS(4760), - [sym__backtick_identifier] = ACTIONS(4760), - [sym__automatic_semicolon] = ACTIONS(4760), - [sym_safe_nav] = ACTIONS(4760), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4760), }, - [1020] = { - [sym_enum_class_body] = STATE(1200), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [1021] = { - [sym_enum_class_body] = STATE(1057), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [963] = { + [sym_enum_class_body] = STATE(1082), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_object] = ACTIONS(4652), + [anon_sym_fun] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_this] = ACTIONS(4652), + [anon_sym_super] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4652), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_when] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4654), + [anon_sym_continue_AT] = ACTIONS(4654), + [anon_sym_break_AT] = ACTIONS(4654), + [anon_sym_this_AT] = ACTIONS(4654), + [anon_sym_super_AT] = ACTIONS(4654), + [sym_real_literal] = ACTIONS(4654), + [sym_integer_literal] = ACTIONS(4652), + [sym_hex_literal] = ACTIONS(4654), + [sym_bin_literal] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4654), }, - [1022] = { - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [964] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3576), [anon_sym_RPAREN] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4762), - [anon_sym_get] = ACTIONS(4603), - [anon_sym_set] = ACTIONS(4605), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4656), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -168004,85 +160835,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [1023] = { - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [965] = { + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1816), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4764), - [anon_sym_get] = ACTIONS(4603), - [anon_sym_set] = ACTIONS(4605), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4658), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -168111,873 +160942,5787 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [1024] = { - [sym_class_body] = STATE(1057), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), - }, - [1025] = { - [sym__alpha_identifier] = ACTIONS(4766), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_EQ] = ACTIONS(4766), - [anon_sym_fun] = ACTIONS(4766), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(4769), - [anon_sym_COMMA] = ACTIONS(4769), - [anon_sym_by] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_object] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4766), - [anon_sym_set] = ACTIONS(4766), - [anon_sym_this] = ACTIONS(4766), - [anon_sym_super] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4766), - [sym_label] = ACTIONS(4766), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_null] = ACTIONS(4766), - [anon_sym_if] = ACTIONS(4766), - [anon_sym_else] = ACTIONS(4766), - [anon_sym_when] = ACTIONS(4766), - [anon_sym_try] = ACTIONS(4766), - [anon_sym_throw] = ACTIONS(4766), - [anon_sym_return] = ACTIONS(4766), - [anon_sym_continue] = ACTIONS(4766), - [anon_sym_break] = ACTIONS(4766), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_STAR_EQ] = ACTIONS(4769), - [anon_sym_SLASH_EQ] = ACTIONS(4769), - [anon_sym_PERCENT_EQ] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4766), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_suspend] = ACTIONS(4766), - [anon_sym_sealed] = ACTIONS(4766), - [anon_sym_annotation] = ACTIONS(4766), - [anon_sym_data] = ACTIONS(4766), - [anon_sym_inner] = ACTIONS(4766), - [anon_sym_value] = ACTIONS(4766), - [anon_sym_override] = ACTIONS(4766), - [anon_sym_lateinit] = ACTIONS(4766), - [anon_sym_public] = ACTIONS(4766), - [anon_sym_private] = ACTIONS(4766), - [anon_sym_internal] = ACTIONS(4766), - [anon_sym_protected] = ACTIONS(4766), - [anon_sym_tailrec] = ACTIONS(4766), - [anon_sym_operator] = ACTIONS(4766), - [anon_sym_infix] = ACTIONS(4766), - [anon_sym_inline] = ACTIONS(4766), - [anon_sym_external] = ACTIONS(4766), - [sym_property_modifier] = ACTIONS(4766), - [anon_sym_abstract] = ACTIONS(4766), - [anon_sym_final] = ACTIONS(4766), - [anon_sym_open] = ACTIONS(4766), - [anon_sym_vararg] = ACTIONS(4766), - [anon_sym_noinline] = ACTIONS(4766), - [anon_sym_crossinline] = ACTIONS(4766), - [anon_sym_expect] = ACTIONS(4766), - [anon_sym_actual] = ACTIONS(4766), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4769), - [anon_sym_continue_AT] = ACTIONS(4769), - [anon_sym_break_AT] = ACTIONS(4769), - [anon_sym_this_AT] = ACTIONS(4769), - [anon_sym_super_AT] = ACTIONS(4769), - [sym_real_literal] = ACTIONS(4769), - [sym_integer_literal] = ACTIONS(4766), - [sym_hex_literal] = ACTIONS(4769), - [sym_bin_literal] = ACTIONS(4769), - [anon_sym_true] = ACTIONS(4766), - [anon_sym_false] = ACTIONS(4766), - [anon_sym_SQUOTE] = ACTIONS(4769), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4769), + [966] = { + [sym_class_body] = STATE(1082), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_object] = ACTIONS(4652), + [anon_sym_fun] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_this] = ACTIONS(4652), + [anon_sym_super] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4652), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_when] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4654), + [anon_sym_continue_AT] = ACTIONS(4654), + [anon_sym_break_AT] = ACTIONS(4654), + [anon_sym_this_AT] = ACTIONS(4654), + [anon_sym_super_AT] = ACTIONS(4654), + [sym_real_literal] = ACTIONS(4654), + [sym_integer_literal] = ACTIONS(4652), + [sym_hex_literal] = ACTIONS(4654), + [sym_bin_literal] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4654), }, - [1026] = { - [sym_class_body] = STATE(1181), - [sym__alpha_identifier] = ACTIONS(4772), - [anon_sym_AT] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4772), - [anon_sym_fun] = ACTIONS(4772), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4772), - [anon_sym_GT] = ACTIONS(4772), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_object] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4772), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_get] = ACTIONS(4772), - [anon_sym_set] = ACTIONS(4772), - [anon_sym_this] = ACTIONS(4772), - [anon_sym_super] = ACTIONS(4772), - [anon_sym_STAR] = ACTIONS(4772), - [sym_label] = ACTIONS(4772), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_QMARK_COLON] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_null] = ACTIONS(4772), - [anon_sym_if] = ACTIONS(4772), - [anon_sym_else] = ACTIONS(4772), - [anon_sym_when] = ACTIONS(4772), - [anon_sym_try] = ACTIONS(4772), - [anon_sym_throw] = ACTIONS(4772), - [anon_sym_return] = ACTIONS(4772), - [anon_sym_continue] = ACTIONS(4772), - [anon_sym_break] = ACTIONS(4772), - [anon_sym_COLON_COLON] = ACTIONS(4774), - [anon_sym_PLUS_EQ] = ACTIONS(4774), - [anon_sym_DASH_EQ] = ACTIONS(4774), - [anon_sym_STAR_EQ] = ACTIONS(4774), - [anon_sym_SLASH_EQ] = ACTIONS(4774), - [anon_sym_PERCENT_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4772), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_BANGin] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4772), - [anon_sym_BANGis] = ACTIONS(4774), - [anon_sym_PLUS] = ACTIONS(4772), - [anon_sym_DASH] = ACTIONS(4772), - [anon_sym_SLASH] = ACTIONS(4772), - [anon_sym_PERCENT] = ACTIONS(4772), - [anon_sym_as_QMARK] = ACTIONS(4774), - [anon_sym_PLUS_PLUS] = ACTIONS(4774), - [anon_sym_DASH_DASH] = ACTIONS(4774), - [anon_sym_BANG] = ACTIONS(4772), - [anon_sym_BANG_BANG] = ACTIONS(4774), - [anon_sym_suspend] = ACTIONS(4772), - [anon_sym_sealed] = ACTIONS(4772), - [anon_sym_annotation] = ACTIONS(4772), - [anon_sym_data] = ACTIONS(4772), - [anon_sym_inner] = ACTIONS(4772), - [anon_sym_value] = ACTIONS(4772), - [anon_sym_override] = ACTIONS(4772), - [anon_sym_lateinit] = ACTIONS(4772), - [anon_sym_public] = ACTIONS(4772), - [anon_sym_private] = ACTIONS(4772), - [anon_sym_internal] = ACTIONS(4772), - [anon_sym_protected] = ACTIONS(4772), - [anon_sym_tailrec] = ACTIONS(4772), - [anon_sym_operator] = ACTIONS(4772), - [anon_sym_infix] = ACTIONS(4772), - [anon_sym_inline] = ACTIONS(4772), - [anon_sym_external] = ACTIONS(4772), - [sym_property_modifier] = ACTIONS(4772), - [anon_sym_abstract] = ACTIONS(4772), - [anon_sym_final] = ACTIONS(4772), - [anon_sym_open] = ACTIONS(4772), - [anon_sym_vararg] = ACTIONS(4772), - [anon_sym_noinline] = ACTIONS(4772), - [anon_sym_crossinline] = ACTIONS(4772), - [anon_sym_expect] = ACTIONS(4772), - [anon_sym_actual] = ACTIONS(4772), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4774), - [anon_sym_continue_AT] = ACTIONS(4774), - [anon_sym_break_AT] = ACTIONS(4774), - [anon_sym_this_AT] = ACTIONS(4774), - [anon_sym_super_AT] = ACTIONS(4774), - [sym_real_literal] = ACTIONS(4774), - [sym_integer_literal] = ACTIONS(4772), - [sym_hex_literal] = ACTIONS(4774), - [sym_bin_literal] = ACTIONS(4774), - [anon_sym_true] = ACTIONS(4772), - [anon_sym_false] = ACTIONS(4772), - [anon_sym_SQUOTE] = ACTIONS(4774), - [sym__backtick_identifier] = ACTIONS(4774), - [sym__automatic_semicolon] = ACTIONS(4774), - [sym_safe_nav] = ACTIONS(4774), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4774), + [967] = { + [sym__alpha_identifier] = ACTIONS(4660), + [anon_sym_AT] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_by] = ACTIONS(4660), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_where] = ACTIONS(4660), + [anon_sym_object] = ACTIONS(4660), + [anon_sym_fun] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_get] = ACTIONS(4660), + [anon_sym_set] = ACTIONS(4660), + [anon_sym_this] = ACTIONS(4660), + [anon_sym_super] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [sym_label] = ACTIONS(4660), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4662), + [anon_sym_QMARK_COLON] = ACTIONS(4662), + [anon_sym_AMP_AMP] = ACTIONS(4662), + [anon_sym_PIPE_PIPE] = ACTIONS(4662), + [anon_sym_null] = ACTIONS(4660), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_when] = ACTIONS(4660), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_throw] = ACTIONS(4660), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_PLUS_EQ] = ACTIONS(4662), + [anon_sym_DASH_EQ] = ACTIONS(4662), + [anon_sym_STAR_EQ] = ACTIONS(4662), + [anon_sym_SLASH_EQ] = ACTIONS(4662), + [anon_sym_PERCENT_EQ] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4662), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4662), + [anon_sym_LT_EQ] = ACTIONS(4662), + [anon_sym_GT_EQ] = ACTIONS(4662), + [anon_sym_BANGin] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_BANGis] = ACTIONS(4662), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_as_QMARK] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(4660), + [anon_sym_BANG_BANG] = ACTIONS(4662), + [anon_sym_suspend] = ACTIONS(4660), + [anon_sym_sealed] = ACTIONS(4660), + [anon_sym_annotation] = ACTIONS(4660), + [anon_sym_data] = ACTIONS(4660), + [anon_sym_inner] = ACTIONS(4660), + [anon_sym_value] = ACTIONS(4660), + [anon_sym_override] = ACTIONS(4660), + [anon_sym_lateinit] = ACTIONS(4660), + [anon_sym_public] = ACTIONS(4660), + [anon_sym_private] = ACTIONS(4660), + [anon_sym_internal] = ACTIONS(4660), + [anon_sym_protected] = ACTIONS(4660), + [anon_sym_tailrec] = ACTIONS(4660), + [anon_sym_operator] = ACTIONS(4660), + [anon_sym_infix] = ACTIONS(4660), + [anon_sym_inline] = ACTIONS(4660), + [anon_sym_external] = ACTIONS(4660), + [sym_property_modifier] = ACTIONS(4660), + [anon_sym_abstract] = ACTIONS(4660), + [anon_sym_final] = ACTIONS(4660), + [anon_sym_open] = ACTIONS(4660), + [anon_sym_vararg] = ACTIONS(4660), + [anon_sym_noinline] = ACTIONS(4660), + [anon_sym_crossinline] = ACTIONS(4660), + [anon_sym_expect] = ACTIONS(4660), + [anon_sym_actual] = ACTIONS(4660), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4662), + [anon_sym_continue_AT] = ACTIONS(4662), + [anon_sym_break_AT] = ACTIONS(4662), + [anon_sym_this_AT] = ACTIONS(4662), + [anon_sym_super_AT] = ACTIONS(4662), + [sym_real_literal] = ACTIONS(4662), + [sym_integer_literal] = ACTIONS(4660), + [sym_hex_literal] = ACTIONS(4662), + [sym_bin_literal] = ACTIONS(4662), + [anon_sym_true] = ACTIONS(4660), + [anon_sym_false] = ACTIONS(4660), + [anon_sym_SQUOTE] = ACTIONS(4662), + [sym__backtick_identifier] = ACTIONS(4662), + [sym__automatic_semicolon] = ACTIONS(4662), + [sym_safe_nav] = ACTIONS(4662), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4662), }, - [1027] = { - [sym__alpha_identifier] = ACTIONS(4776), - [anon_sym_AT] = ACTIONS(4778), - [anon_sym_LBRACK] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(4776), - [anon_sym_EQ] = ACTIONS(4776), - [anon_sym_fun] = ACTIONS(4776), - [anon_sym_LBRACE] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(4778), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_by] = ACTIONS(4776), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_where] = ACTIONS(4776), - [anon_sym_object] = ACTIONS(4776), - [anon_sym_DOT] = ACTIONS(4776), - [anon_sym_SEMI] = ACTIONS(4778), - [anon_sym_get] = ACTIONS(4776), - [anon_sym_set] = ACTIONS(4776), - [anon_sym_this] = ACTIONS(4776), - [anon_sym_super] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4776), - [sym_label] = ACTIONS(4776), - [anon_sym_in] = ACTIONS(4776), - [anon_sym_DOT_DOT] = ACTIONS(4778), - [anon_sym_QMARK_COLON] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4778), - [anon_sym_PIPE_PIPE] = ACTIONS(4778), - [anon_sym_null] = ACTIONS(4776), - [anon_sym_if] = ACTIONS(4776), - [anon_sym_else] = ACTIONS(4776), - [anon_sym_when] = ACTIONS(4776), - [anon_sym_try] = ACTIONS(4776), - [anon_sym_throw] = ACTIONS(4776), - [anon_sym_return] = ACTIONS(4776), - [anon_sym_continue] = ACTIONS(4776), - [anon_sym_break] = ACTIONS(4776), - [anon_sym_COLON_COLON] = ACTIONS(4778), - [anon_sym_PLUS_EQ] = ACTIONS(4778), - [anon_sym_DASH_EQ] = ACTIONS(4778), - [anon_sym_STAR_EQ] = ACTIONS(4778), - [anon_sym_SLASH_EQ] = ACTIONS(4778), - [anon_sym_PERCENT_EQ] = ACTIONS(4778), - [anon_sym_BANG_EQ] = ACTIONS(4776), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4778), - [anon_sym_EQ_EQ] = ACTIONS(4776), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4778), - [anon_sym_LT_EQ] = ACTIONS(4778), - [anon_sym_GT_EQ] = ACTIONS(4778), - [anon_sym_BANGin] = ACTIONS(4778), - [anon_sym_is] = ACTIONS(4776), - [anon_sym_BANGis] = ACTIONS(4778), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4776), - [anon_sym_as_QMARK] = ACTIONS(4778), - [anon_sym_PLUS_PLUS] = ACTIONS(4778), - [anon_sym_DASH_DASH] = ACTIONS(4778), - [anon_sym_BANG] = ACTIONS(4776), - [anon_sym_BANG_BANG] = ACTIONS(4778), - [anon_sym_suspend] = ACTIONS(4776), - [anon_sym_sealed] = ACTIONS(4776), - [anon_sym_annotation] = ACTIONS(4776), - [anon_sym_data] = ACTIONS(4776), - [anon_sym_inner] = ACTIONS(4776), - [anon_sym_value] = ACTIONS(4776), - [anon_sym_override] = ACTIONS(4776), - [anon_sym_lateinit] = ACTIONS(4776), - [anon_sym_public] = ACTIONS(4776), - [anon_sym_private] = ACTIONS(4776), - [anon_sym_internal] = ACTIONS(4776), - [anon_sym_protected] = ACTIONS(4776), - [anon_sym_tailrec] = ACTIONS(4776), - [anon_sym_operator] = ACTIONS(4776), - [anon_sym_infix] = ACTIONS(4776), - [anon_sym_inline] = ACTIONS(4776), - [anon_sym_external] = ACTIONS(4776), - [sym_property_modifier] = ACTIONS(4776), - [anon_sym_abstract] = ACTIONS(4776), - [anon_sym_final] = ACTIONS(4776), - [anon_sym_open] = ACTIONS(4776), - [anon_sym_vararg] = ACTIONS(4776), - [anon_sym_noinline] = ACTIONS(4776), - [anon_sym_crossinline] = ACTIONS(4776), - [anon_sym_expect] = ACTIONS(4776), - [anon_sym_actual] = ACTIONS(4776), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4778), - [anon_sym_continue_AT] = ACTIONS(4778), - [anon_sym_break_AT] = ACTIONS(4778), - [anon_sym_this_AT] = ACTIONS(4778), - [anon_sym_super_AT] = ACTIONS(4778), - [sym_real_literal] = ACTIONS(4778), - [sym_integer_literal] = ACTIONS(4776), - [sym_hex_literal] = ACTIONS(4778), - [sym_bin_literal] = ACTIONS(4778), - [anon_sym_true] = ACTIONS(4776), - [anon_sym_false] = ACTIONS(4776), - [anon_sym_SQUOTE] = ACTIONS(4778), - [sym__backtick_identifier] = ACTIONS(4778), - [sym__automatic_semicolon] = ACTIONS(4778), - [sym_safe_nav] = ACTIONS(4778), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4778), + [968] = { + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(4432), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_object] = ACTIONS(4430), + [anon_sym_fun] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_this] = ACTIONS(4430), + [anon_sym_super] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [sym_label] = ACTIONS(4430), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_null] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_when] = ACTIONS(4430), + [anon_sym_try] = ACTIONS(4430), + [anon_sym_throw] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4432), + [anon_sym_continue_AT] = ACTIONS(4432), + [anon_sym_break_AT] = ACTIONS(4432), + [anon_sym_this_AT] = ACTIONS(4432), + [anon_sym_super_AT] = ACTIONS(4432), + [sym_real_literal] = ACTIONS(4432), + [sym_integer_literal] = ACTIONS(4430), + [sym_hex_literal] = ACTIONS(4432), + [sym_bin_literal] = ACTIONS(4432), + [anon_sym_true] = ACTIONS(4430), + [anon_sym_false] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4432), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4432), }, - [1028] = { - [sym_enum_class_body] = STATE(1181), - [sym__alpha_identifier] = ACTIONS(4772), - [anon_sym_AT] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4772), - [anon_sym_fun] = ACTIONS(4772), + [969] = { + [sym_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4772), - [anon_sym_GT] = ACTIONS(4772), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_object] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4772), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_get] = ACTIONS(4772), - [anon_sym_set] = ACTIONS(4772), - [anon_sym_this] = ACTIONS(4772), - [anon_sym_super] = ACTIONS(4772), - [anon_sym_STAR] = ACTIONS(4772), - [sym_label] = ACTIONS(4772), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_QMARK_COLON] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_null] = ACTIONS(4772), - [anon_sym_if] = ACTIONS(4772), - [anon_sym_else] = ACTIONS(4772), - [anon_sym_when] = ACTIONS(4772), - [anon_sym_try] = ACTIONS(4772), - [anon_sym_throw] = ACTIONS(4772), - [anon_sym_return] = ACTIONS(4772), - [anon_sym_continue] = ACTIONS(4772), - [anon_sym_break] = ACTIONS(4772), - [anon_sym_COLON_COLON] = ACTIONS(4774), - [anon_sym_PLUS_EQ] = ACTIONS(4774), - [anon_sym_DASH_EQ] = ACTIONS(4774), - [anon_sym_STAR_EQ] = ACTIONS(4774), - [anon_sym_SLASH_EQ] = ACTIONS(4774), - [anon_sym_PERCENT_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4772), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_BANGin] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4772), - [anon_sym_BANGis] = ACTIONS(4774), - [anon_sym_PLUS] = ACTIONS(4772), - [anon_sym_DASH] = ACTIONS(4772), - [anon_sym_SLASH] = ACTIONS(4772), - [anon_sym_PERCENT] = ACTIONS(4772), - [anon_sym_as_QMARK] = ACTIONS(4774), - [anon_sym_PLUS_PLUS] = ACTIONS(4774), - [anon_sym_DASH_DASH] = ACTIONS(4774), - [anon_sym_BANG] = ACTIONS(4772), - [anon_sym_BANG_BANG] = ACTIONS(4774), - [anon_sym_suspend] = ACTIONS(4772), - [anon_sym_sealed] = ACTIONS(4772), - [anon_sym_annotation] = ACTIONS(4772), - [anon_sym_data] = ACTIONS(4772), - [anon_sym_inner] = ACTIONS(4772), - [anon_sym_value] = ACTIONS(4772), - [anon_sym_override] = ACTIONS(4772), - [anon_sym_lateinit] = ACTIONS(4772), - [anon_sym_public] = ACTIONS(4772), - [anon_sym_private] = ACTIONS(4772), - [anon_sym_internal] = ACTIONS(4772), - [anon_sym_protected] = ACTIONS(4772), - [anon_sym_tailrec] = ACTIONS(4772), - [anon_sym_operator] = ACTIONS(4772), - [anon_sym_infix] = ACTIONS(4772), - [anon_sym_inline] = ACTIONS(4772), - [anon_sym_external] = ACTIONS(4772), - [sym_property_modifier] = ACTIONS(4772), - [anon_sym_abstract] = ACTIONS(4772), - [anon_sym_final] = ACTIONS(4772), - [anon_sym_open] = ACTIONS(4772), - [anon_sym_vararg] = ACTIONS(4772), - [anon_sym_noinline] = ACTIONS(4772), - [anon_sym_crossinline] = ACTIONS(4772), - [anon_sym_expect] = ACTIONS(4772), - [anon_sym_actual] = ACTIONS(4772), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4774), - [anon_sym_continue_AT] = ACTIONS(4774), - [anon_sym_break_AT] = ACTIONS(4774), - [anon_sym_this_AT] = ACTIONS(4774), - [anon_sym_super_AT] = ACTIONS(4774), - [sym_real_literal] = ACTIONS(4774), - [sym_integer_literal] = ACTIONS(4772), - [sym_hex_literal] = ACTIONS(4774), - [sym_bin_literal] = ACTIONS(4774), - [anon_sym_true] = ACTIONS(4772), - [anon_sym_false] = ACTIONS(4772), - [anon_sym_SQUOTE] = ACTIONS(4774), - [sym__backtick_identifier] = ACTIONS(4774), - [sym__automatic_semicolon] = ACTIONS(4774), - [sym_safe_nav] = ACTIONS(4774), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4774), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, - [1029] = { - [sym__alpha_identifier] = ACTIONS(4780), - [anon_sym_AT] = ACTIONS(4782), - [anon_sym_LBRACK] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(4780), - [anon_sym_EQ] = ACTIONS(4780), - [anon_sym_fun] = ACTIONS(4780), - [anon_sym_LBRACE] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(4782), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_by] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_where] = ACTIONS(4780), - [anon_sym_object] = ACTIONS(4780), - [anon_sym_DOT] = ACTIONS(4780), - [anon_sym_SEMI] = ACTIONS(4782), - [anon_sym_get] = ACTIONS(4780), - [anon_sym_set] = ACTIONS(4780), - [anon_sym_this] = ACTIONS(4780), - [anon_sym_super] = ACTIONS(4780), - [anon_sym_STAR] = ACTIONS(4780), - [sym_label] = ACTIONS(4780), - [anon_sym_in] = ACTIONS(4780), - [anon_sym_DOT_DOT] = ACTIONS(4782), - [anon_sym_QMARK_COLON] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4782), - [anon_sym_PIPE_PIPE] = ACTIONS(4782), - [anon_sym_null] = ACTIONS(4780), - [anon_sym_if] = ACTIONS(4780), - [anon_sym_else] = ACTIONS(4780), - [anon_sym_when] = ACTIONS(4780), - [anon_sym_try] = ACTIONS(4780), - [anon_sym_throw] = ACTIONS(4780), - [anon_sym_return] = ACTIONS(4780), - [anon_sym_continue] = ACTIONS(4780), - [anon_sym_break] = ACTIONS(4780), - [anon_sym_COLON_COLON] = ACTIONS(4782), - [anon_sym_PLUS_EQ] = ACTIONS(4782), - [anon_sym_DASH_EQ] = ACTIONS(4782), - [anon_sym_STAR_EQ] = ACTIONS(4782), - [anon_sym_SLASH_EQ] = ACTIONS(4782), - [anon_sym_PERCENT_EQ] = ACTIONS(4782), - [anon_sym_BANG_EQ] = ACTIONS(4780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4782), - [anon_sym_EQ_EQ] = ACTIONS(4780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4782), - [anon_sym_LT_EQ] = ACTIONS(4782), - [anon_sym_GT_EQ] = ACTIONS(4782), - [anon_sym_BANGin] = ACTIONS(4782), - [anon_sym_is] = ACTIONS(4780), - [anon_sym_BANGis] = ACTIONS(4782), - [anon_sym_PLUS] = ACTIONS(4780), - [anon_sym_DASH] = ACTIONS(4780), - [anon_sym_SLASH] = ACTIONS(4780), - [anon_sym_PERCENT] = ACTIONS(4780), - [anon_sym_as_QMARK] = ACTIONS(4782), - [anon_sym_PLUS_PLUS] = ACTIONS(4782), - [anon_sym_DASH_DASH] = ACTIONS(4782), - [anon_sym_BANG] = ACTIONS(4780), - [anon_sym_BANG_BANG] = ACTIONS(4782), - [anon_sym_suspend] = ACTIONS(4780), - [anon_sym_sealed] = ACTIONS(4780), - [anon_sym_annotation] = ACTIONS(4780), - [anon_sym_data] = ACTIONS(4780), - [anon_sym_inner] = ACTIONS(4780), - [anon_sym_value] = ACTIONS(4780), - [anon_sym_override] = ACTIONS(4780), - [anon_sym_lateinit] = ACTIONS(4780), - [anon_sym_public] = ACTIONS(4780), - [anon_sym_private] = ACTIONS(4780), - [anon_sym_internal] = ACTIONS(4780), - [anon_sym_protected] = ACTIONS(4780), - [anon_sym_tailrec] = ACTIONS(4780), - [anon_sym_operator] = ACTIONS(4780), - [anon_sym_infix] = ACTIONS(4780), - [anon_sym_inline] = ACTIONS(4780), - [anon_sym_external] = ACTIONS(4780), - [sym_property_modifier] = ACTIONS(4780), - [anon_sym_abstract] = ACTIONS(4780), - [anon_sym_final] = ACTIONS(4780), - [anon_sym_open] = ACTIONS(4780), - [anon_sym_vararg] = ACTIONS(4780), - [anon_sym_noinline] = ACTIONS(4780), - [anon_sym_crossinline] = ACTIONS(4780), - [anon_sym_expect] = ACTIONS(4780), - [anon_sym_actual] = ACTIONS(4780), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4782), - [anon_sym_continue_AT] = ACTIONS(4782), - [anon_sym_break_AT] = ACTIONS(4782), - [anon_sym_this_AT] = ACTIONS(4782), - [anon_sym_super_AT] = ACTIONS(4782), - [sym_real_literal] = ACTIONS(4782), - [sym_integer_literal] = ACTIONS(4780), - [sym_hex_literal] = ACTIONS(4782), - [sym_bin_literal] = ACTIONS(4782), - [anon_sym_true] = ACTIONS(4780), - [anon_sym_false] = ACTIONS(4780), - [anon_sym_SQUOTE] = ACTIONS(4782), - [sym__backtick_identifier] = ACTIONS(4782), - [sym__automatic_semicolon] = ACTIONS(4782), - [sym_safe_nav] = ACTIONS(4782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4782), + [970] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4664), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, - [1030] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2203), - [sym__in_operator] = STATE(2191), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2187), - [sym__multiplicative_operator] = STATE(2184), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2180), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), + [971] = { + [sym_enum_class_body] = STATE(1140), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), + }, + [972] = { + [sym__alpha_identifier] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4672), + [anon_sym_RBRACE] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4672), + [anon_sym_COMMA] = ACTIONS(4672), + [anon_sym_by] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4670), + [anon_sym_where] = ACTIONS(4670), + [anon_sym_object] = ACTIONS(4670), + [anon_sym_fun] = ACTIONS(4670), + [anon_sym_DOT] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4672), + [anon_sym_get] = ACTIONS(4670), + [anon_sym_set] = ACTIONS(4670), + [anon_sym_this] = ACTIONS(4670), + [anon_sym_super] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4670), + [sym_label] = ACTIONS(4670), + [anon_sym_in] = ACTIONS(4670), + [anon_sym_DOT_DOT] = ACTIONS(4672), + [anon_sym_QMARK_COLON] = ACTIONS(4672), + [anon_sym_AMP_AMP] = ACTIONS(4672), + [anon_sym_PIPE_PIPE] = ACTIONS(4672), + [anon_sym_null] = ACTIONS(4670), + [anon_sym_if] = ACTIONS(4670), + [anon_sym_else] = ACTIONS(4670), + [anon_sym_when] = ACTIONS(4670), + [anon_sym_try] = ACTIONS(4670), + [anon_sym_throw] = ACTIONS(4670), + [anon_sym_return] = ACTIONS(4670), + [anon_sym_continue] = ACTIONS(4670), + [anon_sym_break] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_PLUS_EQ] = ACTIONS(4672), + [anon_sym_DASH_EQ] = ACTIONS(4672), + [anon_sym_STAR_EQ] = ACTIONS(4672), + [anon_sym_SLASH_EQ] = ACTIONS(4672), + [anon_sym_PERCENT_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4672), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4672), + [anon_sym_BANGin] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(4670), + [anon_sym_BANGis] = ACTIONS(4672), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_SLASH] = ACTIONS(4670), + [anon_sym_PERCENT] = ACTIONS(4670), + [anon_sym_as_QMARK] = ACTIONS(4672), + [anon_sym_PLUS_PLUS] = ACTIONS(4672), + [anon_sym_DASH_DASH] = ACTIONS(4672), + [anon_sym_BANG] = ACTIONS(4670), + [anon_sym_BANG_BANG] = ACTIONS(4672), + [anon_sym_suspend] = ACTIONS(4670), + [anon_sym_sealed] = ACTIONS(4670), + [anon_sym_annotation] = ACTIONS(4670), + [anon_sym_data] = ACTIONS(4670), + [anon_sym_inner] = ACTIONS(4670), + [anon_sym_value] = ACTIONS(4670), + [anon_sym_override] = ACTIONS(4670), + [anon_sym_lateinit] = ACTIONS(4670), + [anon_sym_public] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4670), + [anon_sym_internal] = ACTIONS(4670), + [anon_sym_protected] = ACTIONS(4670), + [anon_sym_tailrec] = ACTIONS(4670), + [anon_sym_operator] = ACTIONS(4670), + [anon_sym_infix] = ACTIONS(4670), + [anon_sym_inline] = ACTIONS(4670), + [anon_sym_external] = ACTIONS(4670), + [sym_property_modifier] = ACTIONS(4670), + [anon_sym_abstract] = ACTIONS(4670), + [anon_sym_final] = ACTIONS(4670), + [anon_sym_open] = ACTIONS(4670), + [anon_sym_vararg] = ACTIONS(4670), + [anon_sym_noinline] = ACTIONS(4670), + [anon_sym_crossinline] = ACTIONS(4670), + [anon_sym_expect] = ACTIONS(4670), + [anon_sym_actual] = ACTIONS(4670), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4672), + [anon_sym_continue_AT] = ACTIONS(4672), + [anon_sym_break_AT] = ACTIONS(4672), + [anon_sym_this_AT] = ACTIONS(4672), + [anon_sym_super_AT] = ACTIONS(4672), + [sym_real_literal] = ACTIONS(4672), + [sym_integer_literal] = ACTIONS(4670), + [sym_hex_literal] = ACTIONS(4672), + [sym_bin_literal] = ACTIONS(4672), + [anon_sym_true] = ACTIONS(4670), + [anon_sym_false] = ACTIONS(4670), + [anon_sym_SQUOTE] = ACTIONS(4672), + [sym__backtick_identifier] = ACTIONS(4672), + [sym__automatic_semicolon] = ACTIONS(4672), + [sym_safe_nav] = ACTIONS(4672), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4672), + }, + [973] = { + [sym__alpha_identifier] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(4674), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(4676), + [anon_sym_by] = ACTIONS(4674), + [anon_sym_LT] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4674), + [anon_sym_where] = ACTIONS(4674), + [anon_sym_object] = ACTIONS(4674), + [anon_sym_fun] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_get] = ACTIONS(4674), + [anon_sym_set] = ACTIONS(4674), + [anon_sym_this] = ACTIONS(4674), + [anon_sym_super] = ACTIONS(4674), + [anon_sym_STAR] = ACTIONS(4674), + [sym_label] = ACTIONS(4674), + [anon_sym_in] = ACTIONS(4674), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_QMARK_COLON] = ACTIONS(4676), + [anon_sym_AMP_AMP] = ACTIONS(4676), + [anon_sym_PIPE_PIPE] = ACTIONS(4676), + [anon_sym_null] = ACTIONS(4674), + [anon_sym_if] = ACTIONS(4674), + [anon_sym_else] = ACTIONS(4674), + [anon_sym_when] = ACTIONS(4674), + [anon_sym_try] = ACTIONS(4674), + [anon_sym_throw] = ACTIONS(4674), + [anon_sym_return] = ACTIONS(4674), + [anon_sym_continue] = ACTIONS(4674), + [anon_sym_break] = ACTIONS(4674), + [anon_sym_COLON_COLON] = ACTIONS(4676), + [anon_sym_PLUS_EQ] = ACTIONS(4676), + [anon_sym_DASH_EQ] = ACTIONS(4676), + [anon_sym_STAR_EQ] = ACTIONS(4676), + [anon_sym_SLASH_EQ] = ACTIONS(4676), + [anon_sym_PERCENT_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_BANGin] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_BANGis] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4674), + [anon_sym_SLASH] = ACTIONS(4674), + [anon_sym_PERCENT] = ACTIONS(4674), + [anon_sym_as_QMARK] = ACTIONS(4676), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_BANG] = ACTIONS(4674), + [anon_sym_BANG_BANG] = ACTIONS(4676), + [anon_sym_suspend] = ACTIONS(4674), + [anon_sym_sealed] = ACTIONS(4674), + [anon_sym_annotation] = ACTIONS(4674), + [anon_sym_data] = ACTIONS(4674), + [anon_sym_inner] = ACTIONS(4674), + [anon_sym_value] = ACTIONS(4674), + [anon_sym_override] = ACTIONS(4674), + [anon_sym_lateinit] = ACTIONS(4674), + [anon_sym_public] = ACTIONS(4674), + [anon_sym_private] = ACTIONS(4674), + [anon_sym_internal] = ACTIONS(4674), + [anon_sym_protected] = ACTIONS(4674), + [anon_sym_tailrec] = ACTIONS(4674), + [anon_sym_operator] = ACTIONS(4674), + [anon_sym_infix] = ACTIONS(4674), + [anon_sym_inline] = ACTIONS(4674), + [anon_sym_external] = ACTIONS(4674), + [sym_property_modifier] = ACTIONS(4674), + [anon_sym_abstract] = ACTIONS(4674), + [anon_sym_final] = ACTIONS(4674), + [anon_sym_open] = ACTIONS(4674), + [anon_sym_vararg] = ACTIONS(4674), + [anon_sym_noinline] = ACTIONS(4674), + [anon_sym_crossinline] = ACTIONS(4674), + [anon_sym_expect] = ACTIONS(4674), + [anon_sym_actual] = ACTIONS(4674), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4676), + [anon_sym_continue_AT] = ACTIONS(4676), + [anon_sym_break_AT] = ACTIONS(4676), + [anon_sym_this_AT] = ACTIONS(4676), + [anon_sym_super_AT] = ACTIONS(4676), + [sym_real_literal] = ACTIONS(4676), + [sym_integer_literal] = ACTIONS(4674), + [sym_hex_literal] = ACTIONS(4676), + [sym_bin_literal] = ACTIONS(4676), + [anon_sym_true] = ACTIONS(4674), + [anon_sym_false] = ACTIONS(4674), + [anon_sym_SQUOTE] = ACTIONS(4676), + [sym__backtick_identifier] = ACTIONS(4676), + [sym__automatic_semicolon] = ACTIONS(4676), + [sym_safe_nav] = ACTIONS(4676), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4676), + }, + [974] = { + [sym__alpha_identifier] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4681), + [anon_sym_LBRACK] = ACTIONS(4681), + [anon_sym_as] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_LBRACE] = ACTIONS(4681), + [anon_sym_RBRACE] = ACTIONS(4681), + [anon_sym_LPAREN] = ACTIONS(4681), + [anon_sym_COMMA] = ACTIONS(4681), + [anon_sym_by] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_where] = ACTIONS(4678), + [anon_sym_object] = ACTIONS(4678), + [anon_sym_fun] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4681), + [anon_sym_get] = ACTIONS(4678), + [anon_sym_set] = ACTIONS(4678), + [anon_sym_this] = ACTIONS(4678), + [anon_sym_super] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4678), + [sym_label] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4681), + [anon_sym_QMARK_COLON] = ACTIONS(4681), + [anon_sym_AMP_AMP] = ACTIONS(4681), + [anon_sym_PIPE_PIPE] = ACTIONS(4681), + [anon_sym_null] = ACTIONS(4678), + [anon_sym_if] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_when] = ACTIONS(4678), + [anon_sym_try] = ACTIONS(4678), + [anon_sym_throw] = ACTIONS(4678), + [anon_sym_return] = ACTIONS(4678), + [anon_sym_continue] = ACTIONS(4678), + [anon_sym_break] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4681), + [anon_sym_PLUS_EQ] = ACTIONS(4681), + [anon_sym_DASH_EQ] = ACTIONS(4681), + [anon_sym_STAR_EQ] = ACTIONS(4681), + [anon_sym_SLASH_EQ] = ACTIONS(4681), + [anon_sym_PERCENT_EQ] = ACTIONS(4681), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4681), + [anon_sym_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4681), + [anon_sym_LT_EQ] = ACTIONS(4681), + [anon_sym_GT_EQ] = ACTIONS(4681), + [anon_sym_BANGin] = ACTIONS(4681), + [anon_sym_is] = ACTIONS(4678), + [anon_sym_BANGis] = ACTIONS(4681), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_as_QMARK] = ACTIONS(4681), + [anon_sym_PLUS_PLUS] = ACTIONS(4681), + [anon_sym_DASH_DASH] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(4678), + [anon_sym_BANG_BANG] = ACTIONS(4681), + [anon_sym_suspend] = ACTIONS(4678), + [anon_sym_sealed] = ACTIONS(4678), + [anon_sym_annotation] = ACTIONS(4678), + [anon_sym_data] = ACTIONS(4678), + [anon_sym_inner] = ACTIONS(4678), + [anon_sym_value] = ACTIONS(4678), + [anon_sym_override] = ACTIONS(4678), + [anon_sym_lateinit] = ACTIONS(4678), + [anon_sym_public] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4678), + [anon_sym_internal] = ACTIONS(4678), + [anon_sym_protected] = ACTIONS(4678), + [anon_sym_tailrec] = ACTIONS(4678), + [anon_sym_operator] = ACTIONS(4678), + [anon_sym_infix] = ACTIONS(4678), + [anon_sym_inline] = ACTIONS(4678), + [anon_sym_external] = ACTIONS(4678), + [sym_property_modifier] = ACTIONS(4678), + [anon_sym_abstract] = ACTIONS(4678), + [anon_sym_final] = ACTIONS(4678), + [anon_sym_open] = ACTIONS(4678), + [anon_sym_vararg] = ACTIONS(4678), + [anon_sym_noinline] = ACTIONS(4678), + [anon_sym_crossinline] = ACTIONS(4678), + [anon_sym_expect] = ACTIONS(4678), + [anon_sym_actual] = ACTIONS(4678), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4681), + [anon_sym_continue_AT] = ACTIONS(4681), + [anon_sym_break_AT] = ACTIONS(4681), + [anon_sym_this_AT] = ACTIONS(4681), + [anon_sym_super_AT] = ACTIONS(4681), + [sym_real_literal] = ACTIONS(4681), + [sym_integer_literal] = ACTIONS(4678), + [sym_hex_literal] = ACTIONS(4681), + [sym_bin_literal] = ACTIONS(4681), + [anon_sym_true] = ACTIONS(4678), + [anon_sym_false] = ACTIONS(4678), + [anon_sym_SQUOTE] = ACTIONS(4681), + [sym__backtick_identifier] = ACTIONS(4681), + [sym__automatic_semicolon] = ACTIONS(4681), + [sym_safe_nav] = ACTIONS(4681), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4681), + }, + [975] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(994), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_EQ] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_object] = ACTIONS(4684), + [anon_sym_fun] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_this] = ACTIONS(4684), + [anon_sym_super] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4684), + [sym_label] = ACTIONS(4684), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(4684), + [anon_sym_if] = ACTIONS(4684), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_when] = ACTIONS(4684), + [anon_sym_try] = ACTIONS(4684), + [anon_sym_throw] = ACTIONS(4684), + [anon_sym_return] = ACTIONS(4684), + [anon_sym_continue] = ACTIONS(4684), + [anon_sym_break] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_PLUS_EQ] = ACTIONS(4686), + [anon_sym_DASH_EQ] = ACTIONS(4686), + [anon_sym_STAR_EQ] = ACTIONS(4686), + [anon_sym_SLASH_EQ] = ACTIONS(4686), + [anon_sym_PERCENT_EQ] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4684), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG] = ACTIONS(4684), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_suspend] = ACTIONS(4684), + [anon_sym_sealed] = ACTIONS(4684), + [anon_sym_annotation] = ACTIONS(4684), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_override] = ACTIONS(4684), + [anon_sym_lateinit] = ACTIONS(4684), + [anon_sym_public] = ACTIONS(4684), + [anon_sym_private] = ACTIONS(4684), + [anon_sym_internal] = ACTIONS(4684), + [anon_sym_protected] = ACTIONS(4684), + [anon_sym_tailrec] = ACTIONS(4684), + [anon_sym_operator] = ACTIONS(4684), + [anon_sym_infix] = ACTIONS(4684), + [anon_sym_inline] = ACTIONS(4684), + [anon_sym_external] = ACTIONS(4684), + [sym_property_modifier] = ACTIONS(4684), + [anon_sym_abstract] = ACTIONS(4684), + [anon_sym_final] = ACTIONS(4684), + [anon_sym_open] = ACTIONS(4684), + [anon_sym_vararg] = ACTIONS(4684), + [anon_sym_noinline] = ACTIONS(4684), + [anon_sym_crossinline] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4686), + [anon_sym_continue_AT] = ACTIONS(4686), + [anon_sym_break_AT] = ACTIONS(4686), + [anon_sym_this_AT] = ACTIONS(4686), + [anon_sym_super_AT] = ACTIONS(4686), + [sym_real_literal] = ACTIONS(4686), + [sym_integer_literal] = ACTIONS(4684), + [sym_hex_literal] = ACTIONS(4686), + [sym_bin_literal] = ACTIONS(4686), + [anon_sym_true] = ACTIONS(4684), + [anon_sym_false] = ACTIONS(4684), + [anon_sym_SQUOTE] = ACTIONS(4686), + [sym__backtick_identifier] = ACTIONS(4686), + [sym__automatic_semicolon] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4686), + }, + [976] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(3101), - [anon_sym_object] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3101), - [anon_sym_super] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(4557), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(4561), - [anon_sym_DOT_DOT] = ACTIONS(4563), - [anon_sym_QMARK_COLON] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(4631), - [anon_sym_PIPE_PIPE] = ACTIONS(4633), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_when] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(4569), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4571), - [anon_sym_EQ_EQ] = ACTIONS(4569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4571), - [anon_sym_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_EQ] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4575), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4557), - [anon_sym_PERCENT] = ACTIONS(4557), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3103), - [anon_sym_continue_AT] = ACTIONS(3103), - [anon_sym_break_AT] = ACTIONS(3103), - [anon_sym_this_AT] = ACTIONS(3103), - [anon_sym_super_AT] = ACTIONS(3103), - [sym_real_literal] = ACTIONS(3103), - [sym_integer_literal] = ACTIONS(3101), - [sym_hex_literal] = ACTIONS(3103), - [sym_bin_literal] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3101), - [anon_sym_false] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3103), - [sym_safe_nav] = ACTIONS(4567), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3103), }, - [1031] = { - [sym_function_body] = STATE(1083), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(4784), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_object] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_this] = ACTIONS(4269), - [anon_sym_super] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4269), - [sym_label] = ACTIONS(4269), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_null] = ACTIONS(4269), - [anon_sym_if] = ACTIONS(4269), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_when] = ACTIONS(4269), - [anon_sym_try] = ACTIONS(4269), - [anon_sym_throw] = ACTIONS(4269), - [anon_sym_return] = ACTIONS(4269), - [anon_sym_continue] = ACTIONS(4269), - [anon_sym_break] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_PLUS_EQ] = ACTIONS(4271), - [anon_sym_DASH_EQ] = ACTIONS(4271), - [anon_sym_STAR_EQ] = ACTIONS(4271), - [anon_sym_SLASH_EQ] = ACTIONS(4271), - [anon_sym_PERCENT_EQ] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4269), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4269), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_suspend] = ACTIONS(4269), - [anon_sym_sealed] = ACTIONS(4269), - [anon_sym_annotation] = ACTIONS(4269), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_override] = ACTIONS(4269), - [anon_sym_lateinit] = ACTIONS(4269), - [anon_sym_public] = ACTIONS(4269), - [anon_sym_private] = ACTIONS(4269), - [anon_sym_internal] = ACTIONS(4269), - [anon_sym_protected] = ACTIONS(4269), - [anon_sym_tailrec] = ACTIONS(4269), - [anon_sym_operator] = ACTIONS(4269), - [anon_sym_infix] = ACTIONS(4269), - [anon_sym_inline] = ACTIONS(4269), - [anon_sym_external] = ACTIONS(4269), - [sym_property_modifier] = ACTIONS(4269), - [anon_sym_abstract] = ACTIONS(4269), - [anon_sym_final] = ACTIONS(4269), - [anon_sym_open] = ACTIONS(4269), - [anon_sym_vararg] = ACTIONS(4269), - [anon_sym_noinline] = ACTIONS(4269), - [anon_sym_crossinline] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4271), - [anon_sym_continue_AT] = ACTIONS(4271), - [anon_sym_break_AT] = ACTIONS(4271), - [anon_sym_this_AT] = ACTIONS(4271), - [anon_sym_super_AT] = ACTIONS(4271), - [sym_real_literal] = ACTIONS(4271), - [sym_integer_literal] = ACTIONS(4269), - [sym_hex_literal] = ACTIONS(4271), - [sym_bin_literal] = ACTIONS(4271), - [anon_sym_true] = ACTIONS(4269), - [anon_sym_false] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4271), - [sym__backtick_identifier] = ACTIONS(4271), - [sym__automatic_semicolon] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4271), + [977] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, - [1032] = { + [978] = { + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4694), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), + }, + [979] = { + [sym__alpha_identifier] = ACTIONS(4696), + [anon_sym_AT] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_as] = ACTIONS(4696), + [anon_sym_EQ] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_by] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4696), + [anon_sym_where] = ACTIONS(4696), + [anon_sym_object] = ACTIONS(4696), + [anon_sym_fun] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4696), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_get] = ACTIONS(4696), + [anon_sym_set] = ACTIONS(4696), + [anon_sym_this] = ACTIONS(4696), + [anon_sym_super] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4696), + [sym_label] = ACTIONS(4696), + [anon_sym_in] = ACTIONS(4696), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_QMARK_COLON] = ACTIONS(4698), + [anon_sym_AMP_AMP] = ACTIONS(4698), + [anon_sym_PIPE_PIPE] = ACTIONS(4698), + [anon_sym_null] = ACTIONS(4696), + [anon_sym_if] = ACTIONS(4696), + [anon_sym_else] = ACTIONS(4696), + [anon_sym_when] = ACTIONS(4696), + [anon_sym_try] = ACTIONS(4696), + [anon_sym_throw] = ACTIONS(4696), + [anon_sym_return] = ACTIONS(4696), + [anon_sym_continue] = ACTIONS(4696), + [anon_sym_break] = ACTIONS(4696), + [anon_sym_COLON_COLON] = ACTIONS(4698), + [anon_sym_PLUS_EQ] = ACTIONS(4698), + [anon_sym_DASH_EQ] = ACTIONS(4698), + [anon_sym_STAR_EQ] = ACTIONS(4698), + [anon_sym_SLASH_EQ] = ACTIONS(4698), + [anon_sym_PERCENT_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4698), + [anon_sym_BANGin] = ACTIONS(4698), + [anon_sym_is] = ACTIONS(4696), + [anon_sym_BANGis] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4696), + [anon_sym_SLASH] = ACTIONS(4696), + [anon_sym_PERCENT] = ACTIONS(4696), + [anon_sym_as_QMARK] = ACTIONS(4698), + [anon_sym_PLUS_PLUS] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4696), + [anon_sym_BANG_BANG] = ACTIONS(4698), + [anon_sym_suspend] = ACTIONS(4696), + [anon_sym_sealed] = ACTIONS(4696), + [anon_sym_annotation] = ACTIONS(4696), + [anon_sym_data] = ACTIONS(4696), + [anon_sym_inner] = ACTIONS(4696), + [anon_sym_value] = ACTIONS(4696), + [anon_sym_override] = ACTIONS(4696), + [anon_sym_lateinit] = ACTIONS(4696), + [anon_sym_public] = ACTIONS(4696), + [anon_sym_private] = ACTIONS(4696), + [anon_sym_internal] = ACTIONS(4696), + [anon_sym_protected] = ACTIONS(4696), + [anon_sym_tailrec] = ACTIONS(4696), + [anon_sym_operator] = ACTIONS(4696), + [anon_sym_infix] = ACTIONS(4696), + [anon_sym_inline] = ACTIONS(4696), + [anon_sym_external] = ACTIONS(4696), + [sym_property_modifier] = ACTIONS(4696), + [anon_sym_abstract] = ACTIONS(4696), + [anon_sym_final] = ACTIONS(4696), + [anon_sym_open] = ACTIONS(4696), + [anon_sym_vararg] = ACTIONS(4696), + [anon_sym_noinline] = ACTIONS(4696), + [anon_sym_crossinline] = ACTIONS(4696), + [anon_sym_expect] = ACTIONS(4696), + [anon_sym_actual] = ACTIONS(4696), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4698), + [anon_sym_continue_AT] = ACTIONS(4698), + [anon_sym_break_AT] = ACTIONS(4698), + [anon_sym_this_AT] = ACTIONS(4698), + [anon_sym_super_AT] = ACTIONS(4698), + [sym_real_literal] = ACTIONS(4698), + [sym_integer_literal] = ACTIONS(4696), + [sym_hex_literal] = ACTIONS(4698), + [sym_bin_literal] = ACTIONS(4698), + [anon_sym_true] = ACTIONS(4696), + [anon_sym_false] = ACTIONS(4696), + [anon_sym_SQUOTE] = ACTIONS(4698), + [sym__backtick_identifier] = ACTIONS(4698), + [sym__automatic_semicolon] = ACTIONS(4698), + [sym_safe_nav] = ACTIONS(4698), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4698), + }, + [980] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [981] = { + [sym__alpha_identifier] = ACTIONS(4702), + [anon_sym_AT] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_as] = ACTIONS(4702), + [anon_sym_EQ] = ACTIONS(4702), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_by] = ACTIONS(4702), + [anon_sym_LT] = ACTIONS(4702), + [anon_sym_GT] = ACTIONS(4702), + [anon_sym_where] = ACTIONS(4702), + [anon_sym_object] = ACTIONS(4702), + [anon_sym_fun] = ACTIONS(4702), + [anon_sym_DOT] = ACTIONS(4702), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_get] = ACTIONS(4702), + [anon_sym_set] = ACTIONS(4702), + [anon_sym_this] = ACTIONS(4702), + [anon_sym_super] = ACTIONS(4702), + [anon_sym_STAR] = ACTIONS(4702), + [sym_label] = ACTIONS(4702), + [anon_sym_in] = ACTIONS(4702), + [anon_sym_DOT_DOT] = ACTIONS(4704), + [anon_sym_QMARK_COLON] = ACTIONS(4704), + [anon_sym_AMP_AMP] = ACTIONS(4704), + [anon_sym_PIPE_PIPE] = ACTIONS(4704), + [anon_sym_null] = ACTIONS(4702), + [anon_sym_if] = ACTIONS(4702), + [anon_sym_else] = ACTIONS(4702), + [anon_sym_when] = ACTIONS(4702), + [anon_sym_try] = ACTIONS(4702), + [anon_sym_throw] = ACTIONS(4702), + [anon_sym_return] = ACTIONS(4702), + [anon_sym_continue] = ACTIONS(4702), + [anon_sym_break] = ACTIONS(4702), + [anon_sym_COLON_COLON] = ACTIONS(4704), + [anon_sym_PLUS_EQ] = ACTIONS(4704), + [anon_sym_DASH_EQ] = ACTIONS(4704), + [anon_sym_STAR_EQ] = ACTIONS(4704), + [anon_sym_SLASH_EQ] = ACTIONS(4704), + [anon_sym_PERCENT_EQ] = ACTIONS(4704), + [anon_sym_BANG_EQ] = ACTIONS(4702), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4704), + [anon_sym_EQ_EQ] = ACTIONS(4702), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4704), + [anon_sym_LT_EQ] = ACTIONS(4704), + [anon_sym_GT_EQ] = ACTIONS(4704), + [anon_sym_BANGin] = ACTIONS(4704), + [anon_sym_is] = ACTIONS(4702), + [anon_sym_BANGis] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4702), + [anon_sym_DASH] = ACTIONS(4702), + [anon_sym_SLASH] = ACTIONS(4702), + [anon_sym_PERCENT] = ACTIONS(4702), + [anon_sym_as_QMARK] = ACTIONS(4704), + [anon_sym_PLUS_PLUS] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4704), + [anon_sym_BANG] = ACTIONS(4702), + [anon_sym_BANG_BANG] = ACTIONS(4704), + [anon_sym_suspend] = ACTIONS(4702), + [anon_sym_sealed] = ACTIONS(4702), + [anon_sym_annotation] = ACTIONS(4702), + [anon_sym_data] = ACTIONS(4702), + [anon_sym_inner] = ACTIONS(4702), + [anon_sym_value] = ACTIONS(4702), + [anon_sym_override] = ACTIONS(4702), + [anon_sym_lateinit] = ACTIONS(4702), + [anon_sym_public] = ACTIONS(4702), + [anon_sym_private] = ACTIONS(4702), + [anon_sym_internal] = ACTIONS(4702), + [anon_sym_protected] = ACTIONS(4702), + [anon_sym_tailrec] = ACTIONS(4702), + [anon_sym_operator] = ACTIONS(4702), + [anon_sym_infix] = ACTIONS(4702), + [anon_sym_inline] = ACTIONS(4702), + [anon_sym_external] = ACTIONS(4702), + [sym_property_modifier] = ACTIONS(4702), + [anon_sym_abstract] = ACTIONS(4702), + [anon_sym_final] = ACTIONS(4702), + [anon_sym_open] = ACTIONS(4702), + [anon_sym_vararg] = ACTIONS(4702), + [anon_sym_noinline] = ACTIONS(4702), + [anon_sym_crossinline] = ACTIONS(4702), + [anon_sym_expect] = ACTIONS(4702), + [anon_sym_actual] = ACTIONS(4702), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4704), + [anon_sym_continue_AT] = ACTIONS(4704), + [anon_sym_break_AT] = ACTIONS(4704), + [anon_sym_this_AT] = ACTIONS(4704), + [anon_sym_super_AT] = ACTIONS(4704), + [sym_real_literal] = ACTIONS(4704), + [sym_integer_literal] = ACTIONS(4702), + [sym_hex_literal] = ACTIONS(4704), + [sym_bin_literal] = ACTIONS(4704), + [anon_sym_true] = ACTIONS(4702), + [anon_sym_false] = ACTIONS(4702), + [anon_sym_SQUOTE] = ACTIONS(4704), + [sym__backtick_identifier] = ACTIONS(4704), + [sym__automatic_semicolon] = ACTIONS(4704), + [sym_safe_nav] = ACTIONS(4704), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4704), + }, + [982] = { + [sym__alpha_identifier] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_as] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(4706), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_by] = ACTIONS(4706), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_where] = ACTIONS(4706), + [anon_sym_object] = ACTIONS(4706), + [anon_sym_fun] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(4706), + [anon_sym_set] = ACTIONS(4706), + [anon_sym_this] = ACTIONS(4706), + [anon_sym_super] = ACTIONS(4706), + [anon_sym_STAR] = ACTIONS(4706), + [sym_label] = ACTIONS(4706), + [anon_sym_in] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4708), + [anon_sym_QMARK_COLON] = ACTIONS(4708), + [anon_sym_AMP_AMP] = ACTIONS(4708), + [anon_sym_PIPE_PIPE] = ACTIONS(4708), + [anon_sym_null] = ACTIONS(4706), + [anon_sym_if] = ACTIONS(4706), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_when] = ACTIONS(4706), + [anon_sym_try] = ACTIONS(4706), + [anon_sym_throw] = ACTIONS(4706), + [anon_sym_return] = ACTIONS(4706), + [anon_sym_continue] = ACTIONS(4706), + [anon_sym_break] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4708), + [anon_sym_PLUS_EQ] = ACTIONS(4708), + [anon_sym_DASH_EQ] = ACTIONS(4708), + [anon_sym_STAR_EQ] = ACTIONS(4708), + [anon_sym_SLASH_EQ] = ACTIONS(4708), + [anon_sym_PERCENT_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4708), + [anon_sym_EQ_EQ] = ACTIONS(4706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4708), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_BANGin] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4706), + [anon_sym_BANGis] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4706), + [anon_sym_PERCENT] = ACTIONS(4706), + [anon_sym_as_QMARK] = ACTIONS(4708), + [anon_sym_PLUS_PLUS] = ACTIONS(4708), + [anon_sym_DASH_DASH] = ACTIONS(4708), + [anon_sym_BANG] = ACTIONS(4706), + [anon_sym_BANG_BANG] = ACTIONS(4708), + [anon_sym_suspend] = ACTIONS(4706), + [anon_sym_sealed] = ACTIONS(4706), + [anon_sym_annotation] = ACTIONS(4706), + [anon_sym_data] = ACTIONS(4706), + [anon_sym_inner] = ACTIONS(4706), + [anon_sym_value] = ACTIONS(4706), + [anon_sym_override] = ACTIONS(4706), + [anon_sym_lateinit] = ACTIONS(4706), + [anon_sym_public] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4706), + [anon_sym_internal] = ACTIONS(4706), + [anon_sym_protected] = ACTIONS(4706), + [anon_sym_tailrec] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(4706), + [anon_sym_infix] = ACTIONS(4706), + [anon_sym_inline] = ACTIONS(4706), + [anon_sym_external] = ACTIONS(4706), + [sym_property_modifier] = ACTIONS(4706), + [anon_sym_abstract] = ACTIONS(4706), + [anon_sym_final] = ACTIONS(4706), + [anon_sym_open] = ACTIONS(4706), + [anon_sym_vararg] = ACTIONS(4706), + [anon_sym_noinline] = ACTIONS(4706), + [anon_sym_crossinline] = ACTIONS(4706), + [anon_sym_expect] = ACTIONS(4706), + [anon_sym_actual] = ACTIONS(4706), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4708), + [anon_sym_continue_AT] = ACTIONS(4708), + [anon_sym_break_AT] = ACTIONS(4708), + [anon_sym_this_AT] = ACTIONS(4708), + [anon_sym_super_AT] = ACTIONS(4708), + [sym_real_literal] = ACTIONS(4708), + [sym_integer_literal] = ACTIONS(4706), + [sym_hex_literal] = ACTIONS(4708), + [sym_bin_literal] = ACTIONS(4708), + [anon_sym_true] = ACTIONS(4706), + [anon_sym_false] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4708), + [sym__backtick_identifier] = ACTIONS(4708), + [sym__automatic_semicolon] = ACTIONS(4708), + [sym_safe_nav] = ACTIONS(4708), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4708), + }, + [983] = { + [sym_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [984] = { + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_object] = ACTIONS(4710), + [anon_sym_fun] = ACTIONS(4710), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_this] = ACTIONS(4710), + [anon_sym_super] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [sym_label] = ACTIONS(4710), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_null] = ACTIONS(4710), + [anon_sym_if] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_when] = ACTIONS(4710), + [anon_sym_try] = ACTIONS(4710), + [anon_sym_throw] = ACTIONS(4710), + [anon_sym_return] = ACTIONS(4710), + [anon_sym_continue] = ACTIONS(4710), + [anon_sym_break] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_suspend] = ACTIONS(4710), + [anon_sym_sealed] = ACTIONS(4710), + [anon_sym_annotation] = ACTIONS(4710), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_lateinit] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4710), + [anon_sym_internal] = ACTIONS(4710), + [anon_sym_protected] = ACTIONS(4710), + [anon_sym_tailrec] = ACTIONS(4710), + [anon_sym_operator] = ACTIONS(4710), + [anon_sym_infix] = ACTIONS(4710), + [anon_sym_inline] = ACTIONS(4710), + [anon_sym_external] = ACTIONS(4710), + [sym_property_modifier] = ACTIONS(4710), + [anon_sym_abstract] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_open] = ACTIONS(4710), + [anon_sym_vararg] = ACTIONS(4710), + [anon_sym_noinline] = ACTIONS(4710), + [anon_sym_crossinline] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4712), + [anon_sym_continue_AT] = ACTIONS(4712), + [anon_sym_break_AT] = ACTIONS(4712), + [anon_sym_this_AT] = ACTIONS(4712), + [anon_sym_super_AT] = ACTIONS(4712), + [anon_sym_AT2] = ACTIONS(4714), + [sym_real_literal] = ACTIONS(4712), + [sym_integer_literal] = ACTIONS(4710), + [sym_hex_literal] = ACTIONS(4712), + [sym_bin_literal] = ACTIONS(4712), + [anon_sym_true] = ACTIONS(4710), + [anon_sym_false] = ACTIONS(4710), + [anon_sym_SQUOTE] = ACTIONS(4712), + [sym__backtick_identifier] = ACTIONS(4712), + [sym__automatic_semicolon] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4712), + }, + [985] = { + [sym__alpha_identifier] = ACTIONS(4716), + [anon_sym_AT] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4718), + [anon_sym_as] = ACTIONS(4716), + [anon_sym_EQ] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_by] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_where] = ACTIONS(4716), + [anon_sym_object] = ACTIONS(4716), + [anon_sym_fun] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4716), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_get] = ACTIONS(4716), + [anon_sym_set] = ACTIONS(4716), + [anon_sym_this] = ACTIONS(4716), + [anon_sym_super] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4716), + [sym_label] = ACTIONS(4716), + [anon_sym_in] = ACTIONS(4716), + [anon_sym_DOT_DOT] = ACTIONS(4718), + [anon_sym_QMARK_COLON] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_null] = ACTIONS(4716), + [anon_sym_if] = ACTIONS(4716), + [anon_sym_else] = ACTIONS(4716), + [anon_sym_when] = ACTIONS(4716), + [anon_sym_try] = ACTIONS(4716), + [anon_sym_throw] = ACTIONS(4716), + [anon_sym_return] = ACTIONS(4716), + [anon_sym_continue] = ACTIONS(4716), + [anon_sym_break] = ACTIONS(4716), + [anon_sym_COLON_COLON] = ACTIONS(4718), + [anon_sym_PLUS_EQ] = ACTIONS(4718), + [anon_sym_DASH_EQ] = ACTIONS(4718), + [anon_sym_STAR_EQ] = ACTIONS(4718), + [anon_sym_SLASH_EQ] = ACTIONS(4718), + [anon_sym_PERCENT_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ] = ACTIONS(4716), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ] = ACTIONS(4716), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4718), + [anon_sym_LT_EQ] = ACTIONS(4718), + [anon_sym_GT_EQ] = ACTIONS(4718), + [anon_sym_BANGin] = ACTIONS(4718), + [anon_sym_is] = ACTIONS(4716), + [anon_sym_BANGis] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_SLASH] = ACTIONS(4716), + [anon_sym_PERCENT] = ACTIONS(4716), + [anon_sym_as_QMARK] = ACTIONS(4718), + [anon_sym_PLUS_PLUS] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4716), + [anon_sym_BANG_BANG] = ACTIONS(4718), + [anon_sym_suspend] = ACTIONS(4716), + [anon_sym_sealed] = ACTIONS(4716), + [anon_sym_annotation] = ACTIONS(4716), + [anon_sym_data] = ACTIONS(4716), + [anon_sym_inner] = ACTIONS(4716), + [anon_sym_value] = ACTIONS(4716), + [anon_sym_override] = ACTIONS(4716), + [anon_sym_lateinit] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(4716), + [anon_sym_private] = ACTIONS(4716), + [anon_sym_internal] = ACTIONS(4716), + [anon_sym_protected] = ACTIONS(4716), + [anon_sym_tailrec] = ACTIONS(4716), + [anon_sym_operator] = ACTIONS(4716), + [anon_sym_infix] = ACTIONS(4716), + [anon_sym_inline] = ACTIONS(4716), + [anon_sym_external] = ACTIONS(4716), + [sym_property_modifier] = ACTIONS(4716), + [anon_sym_abstract] = ACTIONS(4716), + [anon_sym_final] = ACTIONS(4716), + [anon_sym_open] = ACTIONS(4716), + [anon_sym_vararg] = ACTIONS(4716), + [anon_sym_noinline] = ACTIONS(4716), + [anon_sym_crossinline] = ACTIONS(4716), + [anon_sym_expect] = ACTIONS(4716), + [anon_sym_actual] = ACTIONS(4716), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4718), + [anon_sym_continue_AT] = ACTIONS(4718), + [anon_sym_break_AT] = ACTIONS(4718), + [anon_sym_this_AT] = ACTIONS(4718), + [anon_sym_super_AT] = ACTIONS(4718), + [sym_real_literal] = ACTIONS(4718), + [sym_integer_literal] = ACTIONS(4716), + [sym_hex_literal] = ACTIONS(4718), + [sym_bin_literal] = ACTIONS(4718), + [anon_sym_true] = ACTIONS(4716), + [anon_sym_false] = ACTIONS(4716), + [anon_sym_SQUOTE] = ACTIONS(4718), + [sym__backtick_identifier] = ACTIONS(4718), + [sym__automatic_semicolon] = ACTIONS(4718), + [sym_safe_nav] = ACTIONS(4718), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4718), + }, + [986] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [987] = { + [sym_enum_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [988] = { + [sym__alpha_identifier] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_as] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_LBRACE] = ACTIONS(4724), + [anon_sym_RBRACE] = ACTIONS(4724), + [anon_sym_LPAREN] = ACTIONS(4724), + [anon_sym_COMMA] = ACTIONS(4724), + [anon_sym_by] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_where] = ACTIONS(4722), + [anon_sym_object] = ACTIONS(4722), + [anon_sym_fun] = ACTIONS(4722), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym_get] = ACTIONS(4722), + [anon_sym_set] = ACTIONS(4722), + [anon_sym_this] = ACTIONS(4722), + [anon_sym_super] = ACTIONS(4722), + [anon_sym_STAR] = ACTIONS(4722), + [sym_label] = ACTIONS(4722), + [anon_sym_in] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4724), + [anon_sym_QMARK_COLON] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_null] = ACTIONS(4722), + [anon_sym_if] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_when] = ACTIONS(4722), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_throw] = ACTIONS(4722), + [anon_sym_return] = ACTIONS(4722), + [anon_sym_continue] = ACTIONS(4722), + [anon_sym_break] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_PLUS_EQ] = ACTIONS(4724), + [anon_sym_DASH_EQ] = ACTIONS(4724), + [anon_sym_STAR_EQ] = ACTIONS(4724), + [anon_sym_SLASH_EQ] = ACTIONS(4724), + [anon_sym_PERCENT_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), + [anon_sym_LT_EQ] = ACTIONS(4724), + [anon_sym_GT_EQ] = ACTIONS(4724), + [anon_sym_BANGin] = ACTIONS(4724), + [anon_sym_is] = ACTIONS(4722), + [anon_sym_BANGis] = ACTIONS(4724), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_SLASH] = ACTIONS(4722), + [anon_sym_PERCENT] = ACTIONS(4722), + [anon_sym_as_QMARK] = ACTIONS(4724), + [anon_sym_PLUS_PLUS] = ACTIONS(4724), + [anon_sym_DASH_DASH] = ACTIONS(4724), + [anon_sym_BANG] = ACTIONS(4722), + [anon_sym_BANG_BANG] = ACTIONS(4724), + [anon_sym_suspend] = ACTIONS(4722), + [anon_sym_sealed] = ACTIONS(4722), + [anon_sym_annotation] = ACTIONS(4722), + [anon_sym_data] = ACTIONS(4722), + [anon_sym_inner] = ACTIONS(4722), + [anon_sym_value] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_lateinit] = ACTIONS(4722), + [anon_sym_public] = ACTIONS(4722), + [anon_sym_private] = ACTIONS(4722), + [anon_sym_internal] = ACTIONS(4722), + [anon_sym_protected] = ACTIONS(4722), + [anon_sym_tailrec] = ACTIONS(4722), + [anon_sym_operator] = ACTIONS(4722), + [anon_sym_infix] = ACTIONS(4722), + [anon_sym_inline] = ACTIONS(4722), + [anon_sym_external] = ACTIONS(4722), + [sym_property_modifier] = ACTIONS(4722), + [anon_sym_abstract] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_open] = ACTIONS(4722), + [anon_sym_vararg] = ACTIONS(4722), + [anon_sym_noinline] = ACTIONS(4722), + [anon_sym_crossinline] = ACTIONS(4722), + [anon_sym_expect] = ACTIONS(4722), + [anon_sym_actual] = ACTIONS(4722), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4724), + [anon_sym_continue_AT] = ACTIONS(4724), + [anon_sym_break_AT] = ACTIONS(4724), + [anon_sym_this_AT] = ACTIONS(4724), + [anon_sym_super_AT] = ACTIONS(4724), + [sym_real_literal] = ACTIONS(4724), + [sym_integer_literal] = ACTIONS(4722), + [sym_hex_literal] = ACTIONS(4724), + [sym_bin_literal] = ACTIONS(4724), + [anon_sym_true] = ACTIONS(4722), + [anon_sym_false] = ACTIONS(4722), + [anon_sym_SQUOTE] = ACTIONS(4724), + [sym__backtick_identifier] = ACTIONS(4724), + [sym__automatic_semicolon] = ACTIONS(4724), + [sym_safe_nav] = ACTIONS(4724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4724), + }, + [989] = { + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4726), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [990] = { + [sym_enum_class_body] = STATE(1174), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_object] = ACTIONS(4467), + [anon_sym_fun] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_this] = ACTIONS(4467), + [anon_sym_super] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4467), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_null] = ACTIONS(4467), + [anon_sym_if] = ACTIONS(4467), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_when] = ACTIONS(4467), + [anon_sym_try] = ACTIONS(4467), + [anon_sym_throw] = ACTIONS(4467), + [anon_sym_return] = ACTIONS(4467), + [anon_sym_continue] = ACTIONS(4467), + [anon_sym_break] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG] = ACTIONS(4467), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4469), + [anon_sym_continue_AT] = ACTIONS(4469), + [anon_sym_break_AT] = ACTIONS(4469), + [anon_sym_this_AT] = ACTIONS(4469), + [anon_sym_super_AT] = ACTIONS(4469), + [sym_real_literal] = ACTIONS(4469), + [sym_integer_literal] = ACTIONS(4467), + [sym_hex_literal] = ACTIONS(4469), + [sym_bin_literal] = ACTIONS(4469), + [anon_sym_true] = ACTIONS(4467), + [anon_sym_false] = ACTIONS(4467), + [anon_sym_SQUOTE] = ACTIONS(4469), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4469), + }, + [991] = { + [sym__alpha_identifier] = ACTIONS(4728), + [anon_sym_AT] = ACTIONS(4730), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_as] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4730), + [anon_sym_RBRACE] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4730), + [anon_sym_COMMA] = ACTIONS(4730), + [anon_sym_by] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_where] = ACTIONS(4728), + [anon_sym_object] = ACTIONS(4728), + [anon_sym_fun] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_get] = ACTIONS(4728), + [anon_sym_set] = ACTIONS(4728), + [anon_sym_this] = ACTIONS(4728), + [anon_sym_super] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4728), + [anon_sym_DOT_DOT] = ACTIONS(4730), + [anon_sym_QMARK_COLON] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4728), + [anon_sym_if] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4728), + [anon_sym_when] = ACTIONS(4728), + [anon_sym_try] = ACTIONS(4728), + [anon_sym_throw] = ACTIONS(4728), + [anon_sym_return] = ACTIONS(4728), + [anon_sym_continue] = ACTIONS(4728), + [anon_sym_break] = ACTIONS(4728), + [anon_sym_COLON_COLON] = ACTIONS(4730), + [anon_sym_PLUS_EQ] = ACTIONS(4730), + [anon_sym_DASH_EQ] = ACTIONS(4730), + [anon_sym_STAR_EQ] = ACTIONS(4730), + [anon_sym_SLASH_EQ] = ACTIONS(4730), + [anon_sym_PERCENT_EQ] = ACTIONS(4730), + [anon_sym_BANG_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4730), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4730), + [anon_sym_LT_EQ] = ACTIONS(4730), + [anon_sym_GT_EQ] = ACTIONS(4730), + [anon_sym_BANGin] = ACTIONS(4730), + [anon_sym_is] = ACTIONS(4728), + [anon_sym_BANGis] = ACTIONS(4730), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4728), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4730), + [anon_sym_PLUS_PLUS] = ACTIONS(4730), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_BANG_BANG] = ACTIONS(4730), + [anon_sym_suspend] = ACTIONS(4728), + [anon_sym_sealed] = ACTIONS(4728), + [anon_sym_annotation] = ACTIONS(4728), + [anon_sym_data] = ACTIONS(4728), + [anon_sym_inner] = ACTIONS(4728), + [anon_sym_value] = ACTIONS(4728), + [anon_sym_override] = ACTIONS(4728), + [anon_sym_lateinit] = ACTIONS(4728), + [anon_sym_public] = ACTIONS(4728), + [anon_sym_private] = ACTIONS(4728), + [anon_sym_internal] = ACTIONS(4728), + [anon_sym_protected] = ACTIONS(4728), + [anon_sym_tailrec] = ACTIONS(4728), + [anon_sym_operator] = ACTIONS(4728), + [anon_sym_infix] = ACTIONS(4728), + [anon_sym_inline] = ACTIONS(4728), + [anon_sym_external] = ACTIONS(4728), + [sym_property_modifier] = ACTIONS(4728), + [anon_sym_abstract] = ACTIONS(4728), + [anon_sym_final] = ACTIONS(4728), + [anon_sym_open] = ACTIONS(4728), + [anon_sym_vararg] = ACTIONS(4728), + [anon_sym_noinline] = ACTIONS(4728), + [anon_sym_crossinline] = ACTIONS(4728), + [anon_sym_expect] = ACTIONS(4728), + [anon_sym_actual] = ACTIONS(4728), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4730), + [anon_sym_continue_AT] = ACTIONS(4730), + [anon_sym_break_AT] = ACTIONS(4730), + [anon_sym_this_AT] = ACTIONS(4730), + [anon_sym_super_AT] = ACTIONS(4730), + [sym_real_literal] = ACTIONS(4730), + [sym_integer_literal] = ACTIONS(4728), + [sym_hex_literal] = ACTIONS(4730), + [sym_bin_literal] = ACTIONS(4730), + [anon_sym_true] = ACTIONS(4728), + [anon_sym_false] = ACTIONS(4728), + [anon_sym_SQUOTE] = ACTIONS(4730), + [sym__backtick_identifier] = ACTIONS(4730), + [sym__automatic_semicolon] = ACTIONS(4730), + [sym_safe_nav] = ACTIONS(4730), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4730), + }, + [992] = { + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_as] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_COMMA] = ACTIONS(4734), + [anon_sym_by] = ACTIONS(4732), + [anon_sym_LT] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_object] = ACTIONS(4732), + [anon_sym_fun] = ACTIONS(4732), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), + [anon_sym_set] = ACTIONS(4732), + [anon_sym_this] = ACTIONS(4732), + [anon_sym_super] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [sym_label] = ACTIONS(4732), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_QMARK_COLON] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4732), + [anon_sym_if] = ACTIONS(4732), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_when] = ACTIONS(4732), + [anon_sym_try] = ACTIONS(4732), + [anon_sym_throw] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4732), + [anon_sym_continue] = ACTIONS(4732), + [anon_sym_break] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4734), + [anon_sym_DASH_EQ] = ACTIONS(4734), + [anon_sym_STAR_EQ] = ACTIONS(4734), + [anon_sym_SLASH_EQ] = ACTIONS(4734), + [anon_sym_PERCENT_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_as_QMARK] = ACTIONS(4734), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG] = ACTIONS(4732), + [anon_sym_BANG_BANG] = ACTIONS(4734), + [anon_sym_suspend] = ACTIONS(4732), + [anon_sym_sealed] = ACTIONS(4732), + [anon_sym_annotation] = ACTIONS(4732), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_override] = ACTIONS(4732), + [anon_sym_lateinit] = ACTIONS(4732), + [anon_sym_public] = ACTIONS(4732), + [anon_sym_private] = ACTIONS(4732), + [anon_sym_internal] = ACTIONS(4732), + [anon_sym_protected] = ACTIONS(4732), + [anon_sym_tailrec] = ACTIONS(4732), + [anon_sym_operator] = ACTIONS(4732), + [anon_sym_infix] = ACTIONS(4732), + [anon_sym_inline] = ACTIONS(4732), + [anon_sym_external] = ACTIONS(4732), + [sym_property_modifier] = ACTIONS(4732), + [anon_sym_abstract] = ACTIONS(4732), + [anon_sym_final] = ACTIONS(4732), + [anon_sym_open] = ACTIONS(4732), + [anon_sym_vararg] = ACTIONS(4732), + [anon_sym_noinline] = ACTIONS(4732), + [anon_sym_crossinline] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4734), + [anon_sym_continue_AT] = ACTIONS(4734), + [anon_sym_break_AT] = ACTIONS(4734), + [anon_sym_this_AT] = ACTIONS(4734), + [anon_sym_super_AT] = ACTIONS(4734), + [sym_real_literal] = ACTIONS(4734), + [sym_integer_literal] = ACTIONS(4732), + [sym_hex_literal] = ACTIONS(4734), + [sym_bin_literal] = ACTIONS(4734), + [anon_sym_true] = ACTIONS(4732), + [anon_sym_false] = ACTIONS(4732), + [anon_sym_SQUOTE] = ACTIONS(4734), + [sym__backtick_identifier] = ACTIONS(4734), + [sym__automatic_semicolon] = ACTIONS(4734), + [sym_safe_nav] = ACTIONS(4734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4734), + }, + [993] = { + [sym_class_body] = STATE(1140), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), + }, + [994] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(952), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), + }, + [995] = { + [sym__alpha_identifier] = ACTIONS(4740), + [anon_sym_AT] = ACTIONS(4742), + [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_as] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(4740), + [anon_sym_LBRACE] = ACTIONS(4742), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_COMMA] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4740), + [anon_sym_GT] = ACTIONS(4740), + [anon_sym_where] = ACTIONS(4740), + [anon_sym_object] = ACTIONS(4740), + [anon_sym_fun] = ACTIONS(4740), + [anon_sym_DOT] = ACTIONS(4740), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_get] = ACTIONS(4740), + [anon_sym_set] = ACTIONS(4740), + [anon_sym_this] = ACTIONS(4740), + [anon_sym_super] = ACTIONS(4740), + [anon_sym_STAR] = ACTIONS(4740), + [sym_label] = ACTIONS(4740), + [anon_sym_in] = ACTIONS(4740), + [anon_sym_DOT_DOT] = ACTIONS(4742), + [anon_sym_QMARK_COLON] = ACTIONS(4742), + [anon_sym_AMP_AMP] = ACTIONS(4742), + [anon_sym_PIPE_PIPE] = ACTIONS(4742), + [anon_sym_null] = ACTIONS(4740), + [anon_sym_if] = ACTIONS(4740), + [anon_sym_else] = ACTIONS(4740), + [anon_sym_when] = ACTIONS(4740), + [anon_sym_try] = ACTIONS(4740), + [anon_sym_throw] = ACTIONS(4740), + [anon_sym_return] = ACTIONS(4740), + [anon_sym_continue] = ACTIONS(4740), + [anon_sym_break] = ACTIONS(4740), + [anon_sym_COLON_COLON] = ACTIONS(4742), + [anon_sym_PLUS_EQ] = ACTIONS(4742), + [anon_sym_DASH_EQ] = ACTIONS(4742), + [anon_sym_STAR_EQ] = ACTIONS(4742), + [anon_sym_SLASH_EQ] = ACTIONS(4742), + [anon_sym_PERCENT_EQ] = ACTIONS(4742), + [anon_sym_BANG_EQ] = ACTIONS(4740), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), + [anon_sym_EQ_EQ] = ACTIONS(4740), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), + [anon_sym_LT_EQ] = ACTIONS(4742), + [anon_sym_GT_EQ] = ACTIONS(4742), + [anon_sym_BANGin] = ACTIONS(4742), + [anon_sym_is] = ACTIONS(4740), + [anon_sym_BANGis] = ACTIONS(4742), + [anon_sym_PLUS] = ACTIONS(4740), + [anon_sym_DASH] = ACTIONS(4740), + [anon_sym_SLASH] = ACTIONS(4740), + [anon_sym_PERCENT] = ACTIONS(4740), + [anon_sym_as_QMARK] = ACTIONS(4742), + [anon_sym_PLUS_PLUS] = ACTIONS(4742), + [anon_sym_DASH_DASH] = ACTIONS(4742), + [anon_sym_BANG] = ACTIONS(4740), + [anon_sym_BANG_BANG] = ACTIONS(4742), + [anon_sym_suspend] = ACTIONS(4740), + [anon_sym_sealed] = ACTIONS(4740), + [anon_sym_annotation] = ACTIONS(4740), + [anon_sym_data] = ACTIONS(4740), + [anon_sym_inner] = ACTIONS(4740), + [anon_sym_value] = ACTIONS(4740), + [anon_sym_override] = ACTIONS(4740), + [anon_sym_lateinit] = ACTIONS(4740), + [anon_sym_public] = ACTIONS(4740), + [anon_sym_private] = ACTIONS(4740), + [anon_sym_internal] = ACTIONS(4740), + [anon_sym_protected] = ACTIONS(4740), + [anon_sym_tailrec] = ACTIONS(4740), + [anon_sym_operator] = ACTIONS(4740), + [anon_sym_infix] = ACTIONS(4740), + [anon_sym_inline] = ACTIONS(4740), + [anon_sym_external] = ACTIONS(4740), + [sym_property_modifier] = ACTIONS(4740), + [anon_sym_abstract] = ACTIONS(4740), + [anon_sym_final] = ACTIONS(4740), + [anon_sym_open] = ACTIONS(4740), + [anon_sym_vararg] = ACTIONS(4740), + [anon_sym_noinline] = ACTIONS(4740), + [anon_sym_crossinline] = ACTIONS(4740), + [anon_sym_expect] = ACTIONS(4740), + [anon_sym_actual] = ACTIONS(4740), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4742), + [anon_sym_continue_AT] = ACTIONS(4742), + [anon_sym_break_AT] = ACTIONS(4742), + [anon_sym_this_AT] = ACTIONS(4742), + [anon_sym_super_AT] = ACTIONS(4742), + [sym_real_literal] = ACTIONS(4742), + [sym_integer_literal] = ACTIONS(4740), + [sym_hex_literal] = ACTIONS(4742), + [sym_bin_literal] = ACTIONS(4742), + [anon_sym_L] = ACTIONS(4744), + [anon_sym_true] = ACTIONS(4740), + [anon_sym_false] = ACTIONS(4740), + [anon_sym_SQUOTE] = ACTIONS(4742), + [sym__backtick_identifier] = ACTIONS(4742), + [sym__automatic_semicolon] = ACTIONS(4742), + [sym_safe_nav] = ACTIONS(4742), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4742), + }, + [996] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_object] = ACTIONS(3121), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3121), + [anon_sym_super] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_when] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3123), + [anon_sym_STAR_EQ] = ACTIONS(3123), + [anon_sym_SLASH_EQ] = ACTIONS(3123), + [anon_sym_PERCENT_EQ] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3123), + [anon_sym_continue_AT] = ACTIONS(3123), + [anon_sym_break_AT] = ACTIONS(3123), + [anon_sym_this_AT] = ACTIONS(3123), + [anon_sym_super_AT] = ACTIONS(3123), + [sym_real_literal] = ACTIONS(3123), + [sym_integer_literal] = ACTIONS(3121), + [sym_hex_literal] = ACTIONS(3123), + [sym_bin_literal] = ACTIONS(3123), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3123), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3123), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3123), + }, + [997] = { + [sym__alpha_identifier] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4748), + [anon_sym_COLON] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4748), + [anon_sym_as] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4748), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4748), + [anon_sym_COMMA] = ACTIONS(4748), + [anon_sym_LT] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4746), + [anon_sym_where] = ACTIONS(4746), + [anon_sym_object] = ACTIONS(4746), + [anon_sym_fun] = ACTIONS(4746), + [anon_sym_DOT] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4748), + [anon_sym_get] = ACTIONS(4746), + [anon_sym_set] = ACTIONS(4746), + [anon_sym_this] = ACTIONS(4746), + [anon_sym_super] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(4746), + [anon_sym_in] = ACTIONS(4746), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_QMARK_COLON] = ACTIONS(4748), + [anon_sym_AMP_AMP] = ACTIONS(4748), + [anon_sym_PIPE_PIPE] = ACTIONS(4748), + [anon_sym_null] = ACTIONS(4746), + [anon_sym_if] = ACTIONS(4746), + [anon_sym_else] = ACTIONS(4746), + [anon_sym_when] = ACTIONS(4746), + [anon_sym_try] = ACTIONS(4746), + [anon_sym_throw] = ACTIONS(4746), + [anon_sym_return] = ACTIONS(4746), + [anon_sym_continue] = ACTIONS(4746), + [anon_sym_break] = ACTIONS(4746), + [anon_sym_COLON_COLON] = ACTIONS(4748), + [anon_sym_PLUS_EQ] = ACTIONS(4748), + [anon_sym_DASH_EQ] = ACTIONS(4748), + [anon_sym_STAR_EQ] = ACTIONS(4748), + [anon_sym_SLASH_EQ] = ACTIONS(4748), + [anon_sym_PERCENT_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4748), + [anon_sym_BANGin] = ACTIONS(4748), + [anon_sym_is] = ACTIONS(4746), + [anon_sym_BANGis] = ACTIONS(4748), + [anon_sym_PLUS] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_SLASH] = ACTIONS(4746), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(4748), + [anon_sym_PLUS_PLUS] = ACTIONS(4748), + [anon_sym_DASH_DASH] = ACTIONS(4748), + [anon_sym_BANG] = ACTIONS(4746), + [anon_sym_BANG_BANG] = ACTIONS(4748), + [anon_sym_suspend] = ACTIONS(4746), + [anon_sym_sealed] = ACTIONS(4746), + [anon_sym_annotation] = ACTIONS(4746), + [anon_sym_data] = ACTIONS(4746), + [anon_sym_inner] = ACTIONS(4746), + [anon_sym_value] = ACTIONS(4746), + [anon_sym_override] = ACTIONS(4746), + [anon_sym_lateinit] = ACTIONS(4746), + [anon_sym_public] = ACTIONS(4746), + [anon_sym_private] = ACTIONS(4746), + [anon_sym_internal] = ACTIONS(4746), + [anon_sym_protected] = ACTIONS(4746), + [anon_sym_tailrec] = ACTIONS(4746), + [anon_sym_operator] = ACTIONS(4746), + [anon_sym_infix] = ACTIONS(4746), + [anon_sym_inline] = ACTIONS(4746), + [anon_sym_external] = ACTIONS(4746), + [sym_property_modifier] = ACTIONS(4746), + [anon_sym_abstract] = ACTIONS(4746), + [anon_sym_final] = ACTIONS(4746), + [anon_sym_open] = ACTIONS(4746), + [anon_sym_vararg] = ACTIONS(4746), + [anon_sym_noinline] = ACTIONS(4746), + [anon_sym_crossinline] = ACTIONS(4746), + [anon_sym_expect] = ACTIONS(4746), + [anon_sym_actual] = ACTIONS(4746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4748), + [anon_sym_continue_AT] = ACTIONS(4748), + [anon_sym_break_AT] = ACTIONS(4748), + [anon_sym_this_AT] = ACTIONS(4748), + [anon_sym_super_AT] = ACTIONS(4748), + [sym_real_literal] = ACTIONS(4748), + [sym_integer_literal] = ACTIONS(4746), + [sym_hex_literal] = ACTIONS(4748), + [sym_bin_literal] = ACTIONS(4748), + [anon_sym_true] = ACTIONS(4746), + [anon_sym_false] = ACTIONS(4746), + [anon_sym_SQUOTE] = ACTIONS(4748), + [sym__backtick_identifier] = ACTIONS(4748), + [sym__automatic_semicolon] = ACTIONS(4748), + [sym_safe_nav] = ACTIONS(4748), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4748), + }, + [998] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(952), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), + }, + [999] = { + [sym__alpha_identifier] = ACTIONS(4750), + [anon_sym_AT] = ACTIONS(4752), + [anon_sym_COLON] = ACTIONS(4750), + [anon_sym_LBRACK] = ACTIONS(4752), + [anon_sym_as] = ACTIONS(4750), + [anon_sym_EQ] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4752), + [anon_sym_RBRACE] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4752), + [anon_sym_COMMA] = ACTIONS(4752), + [anon_sym_LT] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4750), + [anon_sym_where] = ACTIONS(4750), + [anon_sym_object] = ACTIONS(4750), + [anon_sym_fun] = ACTIONS(4750), + [anon_sym_DOT] = ACTIONS(4750), + [anon_sym_SEMI] = ACTIONS(4752), + [anon_sym_get] = ACTIONS(4750), + [anon_sym_set] = ACTIONS(4750), + [anon_sym_this] = ACTIONS(4750), + [anon_sym_super] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4750), + [sym_label] = ACTIONS(4750), + [anon_sym_in] = ACTIONS(4750), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4752), + [anon_sym_PIPE_PIPE] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(4750), + [anon_sym_if] = ACTIONS(4750), + [anon_sym_else] = ACTIONS(4750), + [anon_sym_when] = ACTIONS(4750), + [anon_sym_try] = ACTIONS(4750), + [anon_sym_throw] = ACTIONS(4750), + [anon_sym_return] = ACTIONS(4750), + [anon_sym_continue] = ACTIONS(4750), + [anon_sym_break] = ACTIONS(4750), + [anon_sym_COLON_COLON] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4752), + [anon_sym_DASH_EQ] = ACTIONS(4752), + [anon_sym_STAR_EQ] = ACTIONS(4752), + [anon_sym_SLASH_EQ] = ACTIONS(4752), + [anon_sym_PERCENT_EQ] = ACTIONS(4752), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4752), + [anon_sym_BANGin] = ACTIONS(4752), + [anon_sym_is] = ACTIONS(4750), + [anon_sym_BANGis] = ACTIONS(4752), + [anon_sym_PLUS] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_SLASH] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4750), + [anon_sym_as_QMARK] = ACTIONS(4752), + [anon_sym_PLUS_PLUS] = ACTIONS(4752), + [anon_sym_DASH_DASH] = ACTIONS(4752), + [anon_sym_BANG] = ACTIONS(4750), + [anon_sym_BANG_BANG] = ACTIONS(4752), + [anon_sym_suspend] = ACTIONS(4750), + [anon_sym_sealed] = ACTIONS(4750), + [anon_sym_annotation] = ACTIONS(4750), + [anon_sym_data] = ACTIONS(4750), + [anon_sym_inner] = ACTIONS(4750), + [anon_sym_value] = ACTIONS(4750), + [anon_sym_override] = ACTIONS(4750), + [anon_sym_lateinit] = ACTIONS(4750), + [anon_sym_public] = ACTIONS(4750), + [anon_sym_private] = ACTIONS(4750), + [anon_sym_internal] = ACTIONS(4750), + [anon_sym_protected] = ACTIONS(4750), + [anon_sym_tailrec] = ACTIONS(4750), + [anon_sym_operator] = ACTIONS(4750), + [anon_sym_infix] = ACTIONS(4750), + [anon_sym_inline] = ACTIONS(4750), + [anon_sym_external] = ACTIONS(4750), + [sym_property_modifier] = ACTIONS(4750), + [anon_sym_abstract] = ACTIONS(4750), + [anon_sym_final] = ACTIONS(4750), + [anon_sym_open] = ACTIONS(4750), + [anon_sym_vararg] = ACTIONS(4750), + [anon_sym_noinline] = ACTIONS(4750), + [anon_sym_crossinline] = ACTIONS(4750), + [anon_sym_expect] = ACTIONS(4750), + [anon_sym_actual] = ACTIONS(4750), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4752), + [anon_sym_continue_AT] = ACTIONS(4752), + [anon_sym_break_AT] = ACTIONS(4752), + [anon_sym_this_AT] = ACTIONS(4752), + [anon_sym_super_AT] = ACTIONS(4752), + [sym_real_literal] = ACTIONS(4752), + [sym_integer_literal] = ACTIONS(4750), + [sym_hex_literal] = ACTIONS(4752), + [sym_bin_literal] = ACTIONS(4752), + [anon_sym_true] = ACTIONS(4750), + [anon_sym_false] = ACTIONS(4750), + [anon_sym_SQUOTE] = ACTIONS(4752), + [sym__backtick_identifier] = ACTIONS(4752), + [sym__automatic_semicolon] = ACTIONS(4752), + [sym_safe_nav] = ACTIONS(4752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4752), + }, + [1000] = { + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_COLON] = ACTIONS(4754), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_as] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_where] = ACTIONS(4754), + [anon_sym_object] = ACTIONS(4754), + [anon_sym_fun] = ACTIONS(4754), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_get] = ACTIONS(4754), + [anon_sym_set] = ACTIONS(4754), + [anon_sym_this] = ACTIONS(4754), + [anon_sym_super] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [sym_label] = ACTIONS(4754), + [anon_sym_in] = ACTIONS(4754), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_QMARK_COLON] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_null] = ACTIONS(4754), + [anon_sym_if] = ACTIONS(4754), + [anon_sym_else] = ACTIONS(4754), + [anon_sym_when] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(4754), + [anon_sym_throw] = ACTIONS(4754), + [anon_sym_return] = ACTIONS(4754), + [anon_sym_continue] = ACTIONS(4754), + [anon_sym_break] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4756), + [anon_sym_SLASH_EQ] = ACTIONS(4756), + [anon_sym_PERCENT_EQ] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4756), + [anon_sym_BANGin] = ACTIONS(4756), + [anon_sym_is] = ACTIONS(4754), + [anon_sym_BANGis] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4754), + [anon_sym_as_QMARK] = ACTIONS(4756), + [anon_sym_PLUS_PLUS] = ACTIONS(4756), + [anon_sym_DASH_DASH] = ACTIONS(4756), + [anon_sym_BANG] = ACTIONS(4754), + [anon_sym_BANG_BANG] = ACTIONS(4756), + [anon_sym_suspend] = ACTIONS(4754), + [anon_sym_sealed] = ACTIONS(4754), + [anon_sym_annotation] = ACTIONS(4754), + [anon_sym_data] = ACTIONS(4754), + [anon_sym_inner] = ACTIONS(4754), + [anon_sym_value] = ACTIONS(4754), + [anon_sym_override] = ACTIONS(4754), + [anon_sym_lateinit] = ACTIONS(4754), + [anon_sym_public] = ACTIONS(4754), + [anon_sym_private] = ACTIONS(4754), + [anon_sym_internal] = ACTIONS(4754), + [anon_sym_protected] = ACTIONS(4754), + [anon_sym_tailrec] = ACTIONS(4754), + [anon_sym_operator] = ACTIONS(4754), + [anon_sym_infix] = ACTIONS(4754), + [anon_sym_inline] = ACTIONS(4754), + [anon_sym_external] = ACTIONS(4754), + [sym_property_modifier] = ACTIONS(4754), + [anon_sym_abstract] = ACTIONS(4754), + [anon_sym_final] = ACTIONS(4754), + [anon_sym_open] = ACTIONS(4754), + [anon_sym_vararg] = ACTIONS(4754), + [anon_sym_noinline] = ACTIONS(4754), + [anon_sym_crossinline] = ACTIONS(4754), + [anon_sym_expect] = ACTIONS(4754), + [anon_sym_actual] = ACTIONS(4754), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4756), + [anon_sym_continue_AT] = ACTIONS(4756), + [anon_sym_break_AT] = ACTIONS(4756), + [anon_sym_this_AT] = ACTIONS(4756), + [anon_sym_super_AT] = ACTIONS(4756), + [sym_real_literal] = ACTIONS(4756), + [sym_integer_literal] = ACTIONS(4754), + [sym_hex_literal] = ACTIONS(4756), + [sym_bin_literal] = ACTIONS(4756), + [anon_sym_true] = ACTIONS(4754), + [anon_sym_false] = ACTIONS(4754), + [anon_sym_SQUOTE] = ACTIONS(4756), + [sym__backtick_identifier] = ACTIONS(4756), + [sym__automatic_semicolon] = ACTIONS(4756), + [sym_safe_nav] = ACTIONS(4756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4756), + }, + [1001] = { + [sym__alpha_identifier] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4760), + [anon_sym_COLON] = ACTIONS(4758), + [anon_sym_LBRACK] = ACTIONS(4760), + [anon_sym_as] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4760), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4760), + [anon_sym_COMMA] = ACTIONS(4760), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_where] = ACTIONS(4758), + [anon_sym_object] = ACTIONS(4758), + [anon_sym_fun] = ACTIONS(4758), + [anon_sym_DOT] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4760), + [anon_sym_get] = ACTIONS(4758), + [anon_sym_set] = ACTIONS(4758), + [anon_sym_this] = ACTIONS(4758), + [anon_sym_super] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4758), + [sym_label] = ACTIONS(4758), + [anon_sym_in] = ACTIONS(4758), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_QMARK_COLON] = ACTIONS(4760), + [anon_sym_AMP_AMP] = ACTIONS(4760), + [anon_sym_PIPE_PIPE] = ACTIONS(4760), + [anon_sym_null] = ACTIONS(4758), + [anon_sym_if] = ACTIONS(4758), + [anon_sym_else] = ACTIONS(4758), + [anon_sym_when] = ACTIONS(4758), + [anon_sym_try] = ACTIONS(4758), + [anon_sym_throw] = ACTIONS(4758), + [anon_sym_return] = ACTIONS(4758), + [anon_sym_continue] = ACTIONS(4758), + [anon_sym_break] = ACTIONS(4758), + [anon_sym_COLON_COLON] = ACTIONS(4760), + [anon_sym_PLUS_EQ] = ACTIONS(4760), + [anon_sym_DASH_EQ] = ACTIONS(4760), + [anon_sym_STAR_EQ] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(4760), + [anon_sym_PERCENT_EQ] = ACTIONS(4760), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4760), + [anon_sym_BANGin] = ACTIONS(4760), + [anon_sym_is] = ACTIONS(4758), + [anon_sym_BANGis] = ACTIONS(4760), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_SLASH] = ACTIONS(4758), + [anon_sym_PERCENT] = ACTIONS(4758), + [anon_sym_as_QMARK] = ACTIONS(4760), + [anon_sym_PLUS_PLUS] = ACTIONS(4760), + [anon_sym_DASH_DASH] = ACTIONS(4760), + [anon_sym_BANG] = ACTIONS(4758), + [anon_sym_BANG_BANG] = ACTIONS(4760), + [anon_sym_suspend] = ACTIONS(4758), + [anon_sym_sealed] = ACTIONS(4758), + [anon_sym_annotation] = ACTIONS(4758), + [anon_sym_data] = ACTIONS(4758), + [anon_sym_inner] = ACTIONS(4758), + [anon_sym_value] = ACTIONS(4758), + [anon_sym_override] = ACTIONS(4758), + [anon_sym_lateinit] = ACTIONS(4758), + [anon_sym_public] = ACTIONS(4758), + [anon_sym_private] = ACTIONS(4758), + [anon_sym_internal] = ACTIONS(4758), + [anon_sym_protected] = ACTIONS(4758), + [anon_sym_tailrec] = ACTIONS(4758), + [anon_sym_operator] = ACTIONS(4758), + [anon_sym_infix] = ACTIONS(4758), + [anon_sym_inline] = ACTIONS(4758), + [anon_sym_external] = ACTIONS(4758), + [sym_property_modifier] = ACTIONS(4758), + [anon_sym_abstract] = ACTIONS(4758), + [anon_sym_final] = ACTIONS(4758), + [anon_sym_open] = ACTIONS(4758), + [anon_sym_vararg] = ACTIONS(4758), + [anon_sym_noinline] = ACTIONS(4758), + [anon_sym_crossinline] = ACTIONS(4758), + [anon_sym_expect] = ACTIONS(4758), + [anon_sym_actual] = ACTIONS(4758), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4760), + [anon_sym_continue_AT] = ACTIONS(4760), + [anon_sym_break_AT] = ACTIONS(4760), + [anon_sym_this_AT] = ACTIONS(4760), + [anon_sym_super_AT] = ACTIONS(4760), + [sym_real_literal] = ACTIONS(4760), + [sym_integer_literal] = ACTIONS(4758), + [sym_hex_literal] = ACTIONS(4760), + [sym_bin_literal] = ACTIONS(4760), + [anon_sym_true] = ACTIONS(4758), + [anon_sym_false] = ACTIONS(4758), + [anon_sym_SQUOTE] = ACTIONS(4760), + [sym__backtick_identifier] = ACTIONS(4760), + [sym__automatic_semicolon] = ACTIONS(4760), + [sym_safe_nav] = ACTIONS(4760), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4760), + }, + [1002] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), + }, + [1003] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3146), + }, + [1004] = { + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_as] = ACTIONS(4762), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4765), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_by] = ACTIONS(4762), + [anon_sym_LT] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_object] = ACTIONS(4762), + [anon_sym_fun] = ACTIONS(4762), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_this] = ACTIONS(4762), + [anon_sym_super] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [sym_label] = ACTIONS(4762), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_DOT_DOT] = ACTIONS(4765), + [anon_sym_QMARK_COLON] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_null] = ACTIONS(4762), + [anon_sym_if] = ACTIONS(4762), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_when] = ACTIONS(4762), + [anon_sym_try] = ACTIONS(4762), + [anon_sym_throw] = ACTIONS(4762), + [anon_sym_return] = ACTIONS(4762), + [anon_sym_continue] = ACTIONS(4762), + [anon_sym_break] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4765), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_BANGin] = ACTIONS(4765), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4765), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_SLASH] = ACTIONS(4762), + [anon_sym_PERCENT] = ACTIONS(4762), + [anon_sym_as_QMARK] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_BANG] = ACTIONS(4762), + [anon_sym_BANG_BANG] = ACTIONS(4765), + [anon_sym_suspend] = ACTIONS(4762), + [anon_sym_sealed] = ACTIONS(4762), + [anon_sym_annotation] = ACTIONS(4762), + [anon_sym_data] = ACTIONS(4762), + [anon_sym_inner] = ACTIONS(4762), + [anon_sym_value] = ACTIONS(4762), + [anon_sym_override] = ACTIONS(4762), + [anon_sym_lateinit] = ACTIONS(4762), + [anon_sym_public] = ACTIONS(4762), + [anon_sym_private] = ACTIONS(4762), + [anon_sym_internal] = ACTIONS(4762), + [anon_sym_protected] = ACTIONS(4762), + [anon_sym_tailrec] = ACTIONS(4762), + [anon_sym_operator] = ACTIONS(4762), + [anon_sym_infix] = ACTIONS(4762), + [anon_sym_inline] = ACTIONS(4762), + [anon_sym_external] = ACTIONS(4762), + [sym_property_modifier] = ACTIONS(4762), + [anon_sym_abstract] = ACTIONS(4762), + [anon_sym_final] = ACTIONS(4762), + [anon_sym_open] = ACTIONS(4762), + [anon_sym_vararg] = ACTIONS(4762), + [anon_sym_noinline] = ACTIONS(4762), + [anon_sym_crossinline] = ACTIONS(4762), + [anon_sym_expect] = ACTIONS(4762), + [anon_sym_actual] = ACTIONS(4762), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4765), + [anon_sym_continue_AT] = ACTIONS(4765), + [anon_sym_break_AT] = ACTIONS(4765), + [anon_sym_this_AT] = ACTIONS(4765), + [anon_sym_super_AT] = ACTIONS(4765), + [sym_real_literal] = ACTIONS(4765), + [sym_integer_literal] = ACTIONS(4762), + [sym_hex_literal] = ACTIONS(4765), + [sym_bin_literal] = ACTIONS(4765), + [anon_sym_true] = ACTIONS(4762), + [anon_sym_false] = ACTIONS(4762), + [anon_sym_SQUOTE] = ACTIONS(4765), + [sym__backtick_identifier] = ACTIONS(4765), + [sym__automatic_semicolon] = ACTIONS(4765), + [sym_safe_nav] = ACTIONS(4765), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4765), + }, + [1005] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), + }, + [1006] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3138), + }, + [1007] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3119), + }, + [1008] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3127), + [anon_sym_continue_AT] = ACTIONS(3127), + [anon_sym_break_AT] = ACTIONS(3127), + [anon_sym_this_AT] = ACTIONS(3127), + [anon_sym_super_AT] = ACTIONS(3127), + [sym_real_literal] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(3125), + [sym_hex_literal] = ACTIONS(3127), + [sym_bin_literal] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3127), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3127), + }, + [1009] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_when] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), + }, + [1010] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3177), + }, + [1011] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3188), + }, + [1012] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_null] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4206), + [anon_sym_continue_AT] = ACTIONS(4206), + [anon_sym_break_AT] = ACTIONS(4206), + [anon_sym_this_AT] = ACTIONS(4206), + [anon_sym_super_AT] = ACTIONS(4206), + [sym_real_literal] = ACTIONS(4206), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4206), + [sym_bin_literal] = ACTIONS(4206), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4206), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4206), + }, + [1013] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3195), + [anon_sym_continue_AT] = ACTIONS(3195), + [anon_sym_break_AT] = ACTIONS(3195), + [anon_sym_this_AT] = ACTIONS(3195), + [anon_sym_super_AT] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_hex_literal] = ACTIONS(3195), + [sym_bin_literal] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3195), + }, + [1014] = { + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4137), + [anon_sym_LBRACE] = ACTIONS(4139), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), + }, + [1015] = { + [sym_class_body] = STATE(1137), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), + }, + [1016] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(4770), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), + }, + [1017] = { + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_as] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4776), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_COMMA] = ACTIONS(4776), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_where] = ACTIONS(4774), + [anon_sym_object] = ACTIONS(4774), + [anon_sym_fun] = ACTIONS(4774), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4776), + [anon_sym_get] = ACTIONS(4774), + [anon_sym_set] = ACTIONS(4774), + [anon_sym_this] = ACTIONS(4774), + [anon_sym_super] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [sym_label] = ACTIONS(4774), + [anon_sym_in] = ACTIONS(4774), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_QMARK_COLON] = ACTIONS(4776), + [anon_sym_AMP_AMP] = ACTIONS(4776), + [anon_sym_PIPE_PIPE] = ACTIONS(4776), + [anon_sym_null] = ACTIONS(4774), + [anon_sym_if] = ACTIONS(4774), + [anon_sym_else] = ACTIONS(4774), + [anon_sym_when] = ACTIONS(4774), + [anon_sym_try] = ACTIONS(4774), + [anon_sym_throw] = ACTIONS(4774), + [anon_sym_return] = ACTIONS(4774), + [anon_sym_continue] = ACTIONS(4774), + [anon_sym_break] = ACTIONS(4774), + [anon_sym_COLON_COLON] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4776), + [anon_sym_DASH_EQ] = ACTIONS(4776), + [anon_sym_STAR_EQ] = ACTIONS(4776), + [anon_sym_SLASH_EQ] = ACTIONS(4776), + [anon_sym_PERCENT_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4776), + [anon_sym_BANGin] = ACTIONS(4776), + [anon_sym_is] = ACTIONS(4774), + [anon_sym_BANGis] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_as_QMARK] = ACTIONS(4776), + [anon_sym_PLUS_PLUS] = ACTIONS(4776), + [anon_sym_DASH_DASH] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4774), + [anon_sym_BANG_BANG] = ACTIONS(4776), + [anon_sym_suspend] = ACTIONS(4774), + [anon_sym_sealed] = ACTIONS(4774), + [anon_sym_annotation] = ACTIONS(4774), + [anon_sym_data] = ACTIONS(4774), + [anon_sym_inner] = ACTIONS(4774), + [anon_sym_value] = ACTIONS(4774), + [anon_sym_override] = ACTIONS(4774), + [anon_sym_lateinit] = ACTIONS(4774), + [anon_sym_public] = ACTIONS(4774), + [anon_sym_private] = ACTIONS(4774), + [anon_sym_internal] = ACTIONS(4774), + [anon_sym_protected] = ACTIONS(4774), + [anon_sym_tailrec] = ACTIONS(4774), + [anon_sym_operator] = ACTIONS(4774), + [anon_sym_infix] = ACTIONS(4774), + [anon_sym_inline] = ACTIONS(4774), + [anon_sym_external] = ACTIONS(4774), + [sym_property_modifier] = ACTIONS(4774), + [anon_sym_abstract] = ACTIONS(4774), + [anon_sym_final] = ACTIONS(4774), + [anon_sym_open] = ACTIONS(4774), + [anon_sym_vararg] = ACTIONS(4774), + [anon_sym_noinline] = ACTIONS(4774), + [anon_sym_crossinline] = ACTIONS(4774), + [anon_sym_expect] = ACTIONS(4774), + [anon_sym_actual] = ACTIONS(4774), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4776), + [anon_sym_continue_AT] = ACTIONS(4776), + [anon_sym_break_AT] = ACTIONS(4776), + [anon_sym_this_AT] = ACTIONS(4776), + [anon_sym_super_AT] = ACTIONS(4776), + [sym_real_literal] = ACTIONS(4776), + [sym_integer_literal] = ACTIONS(4774), + [sym_hex_literal] = ACTIONS(4776), + [sym_bin_literal] = ACTIONS(4776), + [anon_sym_true] = ACTIONS(4774), + [anon_sym_false] = ACTIONS(4774), + [anon_sym_SQUOTE] = ACTIONS(4776), + [sym__backtick_identifier] = ACTIONS(4776), + [sym__automatic_semicolon] = ACTIONS(4776), + [sym_safe_nav] = ACTIONS(4776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4776), + }, + [1018] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_object] = ACTIONS(4778), + [anon_sym_fun] = ACTIONS(4778), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_this] = ACTIONS(4778), + [anon_sym_super] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [sym_label] = ACTIONS(4778), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_null] = ACTIONS(4778), + [anon_sym_if] = ACTIONS(4778), + [anon_sym_else] = ACTIONS(4778), + [anon_sym_when] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4778), + [anon_sym_throw] = ACTIONS(4778), + [anon_sym_return] = ACTIONS(4778), + [anon_sym_continue] = ACTIONS(4778), + [anon_sym_break] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4778), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4780), + [anon_sym_continue_AT] = ACTIONS(4780), + [anon_sym_break_AT] = ACTIONS(4780), + [anon_sym_this_AT] = ACTIONS(4780), + [anon_sym_super_AT] = ACTIONS(4780), + [sym_real_literal] = ACTIONS(4780), + [sym_integer_literal] = ACTIONS(4778), + [sym_hex_literal] = ACTIONS(4780), + [sym_bin_literal] = ACTIONS(4780), + [anon_sym_true] = ACTIONS(4778), + [anon_sym_false] = ACTIONS(4778), + [anon_sym_SQUOTE] = ACTIONS(4780), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4780), + }, + [1019] = { + [sym__alpha_identifier] = ACTIONS(4782), + [anon_sym_AT] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4784), + [anon_sym_as] = ACTIONS(4782), + [anon_sym_EQ] = ACTIONS(4782), + [anon_sym_LBRACE] = ACTIONS(4784), + [anon_sym_RBRACE] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4784), + [anon_sym_COMMA] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4782), + [anon_sym_where] = ACTIONS(4782), + [anon_sym_object] = ACTIONS(4782), + [anon_sym_fun] = ACTIONS(4782), + [anon_sym_DOT] = ACTIONS(4782), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_get] = ACTIONS(4782), + [anon_sym_set] = ACTIONS(4782), + [anon_sym_this] = ACTIONS(4782), + [anon_sym_super] = ACTIONS(4782), + [anon_sym_STAR] = ACTIONS(4782), + [sym_label] = ACTIONS(4782), + [anon_sym_in] = ACTIONS(4782), + [anon_sym_DOT_DOT] = ACTIONS(4784), + [anon_sym_QMARK_COLON] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_null] = ACTIONS(4782), + [anon_sym_if] = ACTIONS(4782), + [anon_sym_else] = ACTIONS(4782), + [anon_sym_when] = ACTIONS(4782), + [anon_sym_try] = ACTIONS(4782), + [anon_sym_throw] = ACTIONS(4782), + [anon_sym_return] = ACTIONS(4782), + [anon_sym_continue] = ACTIONS(4782), + [anon_sym_break] = ACTIONS(4782), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_PLUS_EQ] = ACTIONS(4784), + [anon_sym_DASH_EQ] = ACTIONS(4784), + [anon_sym_STAR_EQ] = ACTIONS(4784), + [anon_sym_SLASH_EQ] = ACTIONS(4784), + [anon_sym_PERCENT_EQ] = ACTIONS(4784), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4784), + [anon_sym_LT_EQ] = ACTIONS(4784), + [anon_sym_GT_EQ] = ACTIONS(4784), + [anon_sym_BANGin] = ACTIONS(4784), + [anon_sym_is] = ACTIONS(4782), + [anon_sym_BANGis] = ACTIONS(4784), + [anon_sym_PLUS] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4782), + [anon_sym_SLASH] = ACTIONS(4782), + [anon_sym_PERCENT] = ACTIONS(4782), + [anon_sym_as_QMARK] = ACTIONS(4784), + [anon_sym_PLUS_PLUS] = ACTIONS(4784), + [anon_sym_DASH_DASH] = ACTIONS(4784), + [anon_sym_BANG] = ACTIONS(4782), + [anon_sym_BANG_BANG] = ACTIONS(4784), + [anon_sym_suspend] = ACTIONS(4782), + [anon_sym_sealed] = ACTIONS(4782), + [anon_sym_annotation] = ACTIONS(4782), + [anon_sym_data] = ACTIONS(4782), + [anon_sym_inner] = ACTIONS(4782), + [anon_sym_value] = ACTIONS(4782), + [anon_sym_override] = ACTIONS(4782), + [anon_sym_lateinit] = ACTIONS(4782), + [anon_sym_public] = ACTIONS(4782), + [anon_sym_private] = ACTIONS(4782), + [anon_sym_internal] = ACTIONS(4782), + [anon_sym_protected] = ACTIONS(4782), + [anon_sym_tailrec] = ACTIONS(4782), + [anon_sym_operator] = ACTIONS(4782), + [anon_sym_infix] = ACTIONS(4782), + [anon_sym_inline] = ACTIONS(4782), + [anon_sym_external] = ACTIONS(4782), + [sym_property_modifier] = ACTIONS(4782), + [anon_sym_abstract] = ACTIONS(4782), + [anon_sym_final] = ACTIONS(4782), + [anon_sym_open] = ACTIONS(4782), + [anon_sym_vararg] = ACTIONS(4782), + [anon_sym_noinline] = ACTIONS(4782), + [anon_sym_crossinline] = ACTIONS(4782), + [anon_sym_expect] = ACTIONS(4782), + [anon_sym_actual] = ACTIONS(4782), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4784), + [anon_sym_continue_AT] = ACTIONS(4784), + [anon_sym_break_AT] = ACTIONS(4784), + [anon_sym_this_AT] = ACTIONS(4784), + [anon_sym_super_AT] = ACTIONS(4784), + [sym_real_literal] = ACTIONS(4784), + [sym_integer_literal] = ACTIONS(4782), + [sym_hex_literal] = ACTIONS(4784), + [sym_bin_literal] = ACTIONS(4784), + [anon_sym_true] = ACTIONS(4782), + [anon_sym_false] = ACTIONS(4782), + [anon_sym_SQUOTE] = ACTIONS(4784), + [sym__backtick_identifier] = ACTIONS(4784), + [sym__automatic_semicolon] = ACTIONS(4784), + [sym_safe_nav] = ACTIONS(4784), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4784), + }, + [1020] = { [sym__alpha_identifier] = ACTIONS(4786), [anon_sym_AT] = ACTIONS(4788), - [anon_sym_COLON] = ACTIONS(4786), [anon_sym_LBRACK] = ACTIONS(4788), [anon_sym_as] = ACTIONS(4786), [anon_sym_EQ] = ACTIONS(4786), - [anon_sym_fun] = ACTIONS(4786), [anon_sym_LBRACE] = ACTIONS(4788), [anon_sym_RBRACE] = ACTIONS(4788), [anon_sym_LPAREN] = ACTIONS(4788), @@ -168986,6 +166731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4786), [anon_sym_where] = ACTIONS(4786), [anon_sym_object] = ACTIONS(4786), + [anon_sym_fun] = ACTIONS(4786), [anon_sym_DOT] = ACTIONS(4786), [anon_sym_SEMI] = ACTIONS(4788), [anon_sym_get] = ACTIONS(4786), @@ -169077,14 +166823,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4788), }, - [1033] = { + [1021] = { + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_object] = ACTIONS(4094), + [anon_sym_fun] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_this] = ACTIONS(4094), + [anon_sym_super] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_null] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_when] = ACTIONS(4094), + [anon_sym_try] = ACTIONS(4094), + [anon_sym_throw] = ACTIONS(4094), + [anon_sym_return] = ACTIONS(4094), + [anon_sym_continue] = ACTIONS(4094), + [anon_sym_break] = ACTIONS(4094), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_suspend] = ACTIONS(4094), + [anon_sym_sealed] = ACTIONS(4094), + [anon_sym_annotation] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_override] = ACTIONS(4094), + [anon_sym_lateinit] = ACTIONS(4094), + [anon_sym_public] = ACTIONS(4094), + [anon_sym_private] = ACTIONS(4094), + [anon_sym_internal] = ACTIONS(4094), + [anon_sym_protected] = ACTIONS(4094), + [anon_sym_tailrec] = ACTIONS(4094), + [anon_sym_operator] = ACTIONS(4094), + [anon_sym_infix] = ACTIONS(4094), + [anon_sym_inline] = ACTIONS(4094), + [anon_sym_external] = ACTIONS(4094), + [sym_property_modifier] = ACTIONS(4094), + [anon_sym_abstract] = ACTIONS(4094), + [anon_sym_final] = ACTIONS(4094), + [anon_sym_open] = ACTIONS(4094), + [anon_sym_vararg] = ACTIONS(4094), + [anon_sym_noinline] = ACTIONS(4094), + [anon_sym_crossinline] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4096), + [anon_sym_continue_AT] = ACTIONS(4096), + [anon_sym_break_AT] = ACTIONS(4096), + [anon_sym_this_AT] = ACTIONS(4096), + [anon_sym_super_AT] = ACTIONS(4096), + [sym_real_literal] = ACTIONS(4096), + [sym_integer_literal] = ACTIONS(4094), + [sym_hex_literal] = ACTIONS(4096), + [sym_bin_literal] = ACTIONS(4096), + [anon_sym_true] = ACTIONS(4094), + [anon_sym_false] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4096), + [sym__backtick_identifier] = ACTIONS(4096), + [sym__automatic_semicolon] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4096), + }, + [1022] = { + [sym__alpha_identifier] = ACTIONS(4253), + [anon_sym_AT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4253), + [anon_sym_EQ] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_RBRACE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4253), + [anon_sym_where] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_fun] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_get] = ACTIONS(4253), + [anon_sym_set] = ACTIONS(4253), + [anon_sym_this] = ACTIONS(4253), + [anon_sym_super] = ACTIONS(4253), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4253), + [anon_sym_DOT_DOT] = ACTIONS(4255), + [anon_sym_QMARK_COLON] = ACTIONS(4255), + [anon_sym_AMP_AMP] = ACTIONS(4255), + [anon_sym_PIPE_PIPE] = ACTIONS(4255), + [anon_sym_null] = ACTIONS(4253), + [anon_sym_if] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4253), + [anon_sym_when] = ACTIONS(4253), + [anon_sym_try] = ACTIONS(4253), + [anon_sym_throw] = ACTIONS(4253), + [anon_sym_return] = ACTIONS(4253), + [anon_sym_continue] = ACTIONS(4253), + [anon_sym_break] = ACTIONS(4253), + [anon_sym_COLON_COLON] = ACTIONS(4255), + [anon_sym_PLUS_EQ] = ACTIONS(4255), + [anon_sym_DASH_EQ] = ACTIONS(4255), + [anon_sym_STAR_EQ] = ACTIONS(4255), + [anon_sym_SLASH_EQ] = ACTIONS(4255), + [anon_sym_PERCENT_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4255), + [anon_sym_LT_EQ] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4255), + [anon_sym_BANGin] = ACTIONS(4255), + [anon_sym_is] = ACTIONS(4253), + [anon_sym_BANGis] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4253), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4255), + [anon_sym_PLUS_PLUS] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4255), + [anon_sym_suspend] = ACTIONS(4253), + [anon_sym_sealed] = ACTIONS(4253), + [anon_sym_annotation] = ACTIONS(4253), + [anon_sym_data] = ACTIONS(4253), + [anon_sym_inner] = ACTIONS(4253), + [anon_sym_value] = ACTIONS(4253), + [anon_sym_override] = ACTIONS(4253), + [anon_sym_lateinit] = ACTIONS(4253), + [anon_sym_public] = ACTIONS(4253), + [anon_sym_private] = ACTIONS(4253), + [anon_sym_internal] = ACTIONS(4253), + [anon_sym_protected] = ACTIONS(4253), + [anon_sym_tailrec] = ACTIONS(4253), + [anon_sym_operator] = ACTIONS(4253), + [anon_sym_infix] = ACTIONS(4253), + [anon_sym_inline] = ACTIONS(4253), + [anon_sym_external] = ACTIONS(4253), + [sym_property_modifier] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4253), + [anon_sym_final] = ACTIONS(4253), + [anon_sym_open] = ACTIONS(4253), + [anon_sym_vararg] = ACTIONS(4253), + [anon_sym_noinline] = ACTIONS(4253), + [anon_sym_crossinline] = ACTIONS(4253), + [anon_sym_expect] = ACTIONS(4253), + [anon_sym_actual] = ACTIONS(4253), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4255), + [anon_sym_continue_AT] = ACTIONS(4255), + [anon_sym_break_AT] = ACTIONS(4255), + [anon_sym_this_AT] = ACTIONS(4255), + [anon_sym_super_AT] = ACTIONS(4255), + [sym_real_literal] = ACTIONS(4255), + [sym_integer_literal] = ACTIONS(4253), + [sym_hex_literal] = ACTIONS(4255), + [sym_bin_literal] = ACTIONS(4255), + [anon_sym_true] = ACTIONS(4253), + [anon_sym_false] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4255), + [sym__backtick_identifier] = ACTIONS(4255), + [sym__automatic_semicolon] = ACTIONS(4255), + [sym_safe_nav] = ACTIONS(4255), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4255), + }, + [1023] = { + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [1024] = { [sym__alpha_identifier] = ACTIONS(4790), [anon_sym_AT] = ACTIONS(4792), - [anon_sym_COLON] = ACTIONS(4790), [anon_sym_LBRACK] = ACTIONS(4792), [anon_sym_as] = ACTIONS(4790), [anon_sym_EQ] = ACTIONS(4790), - [anon_sym_fun] = ACTIONS(4790), [anon_sym_LBRACE] = ACTIONS(4792), [anon_sym_RBRACE] = ACTIONS(4792), [anon_sym_LPAREN] = ACTIONS(4792), @@ -169093,6 +167155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4790), [anon_sym_where] = ACTIONS(4790), [anon_sym_object] = ACTIONS(4790), + [anon_sym_fun] = ACTIONS(4790), [anon_sym_DOT] = ACTIONS(4790), [anon_sym_SEMI] = ACTIONS(4792), [anon_sym_get] = ACTIONS(4790), @@ -169184,2785 +167247,2459 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4792), }, - [1034] = { - [sym_class_body] = STATE(1136), - [sym__alpha_identifier] = ACTIONS(4461), - [anon_sym_AT] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_as] = ACTIONS(4461), - [anon_sym_EQ] = ACTIONS(4461), - [anon_sym_fun] = ACTIONS(4461), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_where] = ACTIONS(4461), - [anon_sym_object] = ACTIONS(4461), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [anon_sym_get] = ACTIONS(4461), - [anon_sym_set] = ACTIONS(4461), - [anon_sym_this] = ACTIONS(4461), - [anon_sym_super] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [sym_label] = ACTIONS(4461), - [anon_sym_in] = ACTIONS(4461), - [anon_sym_DOT_DOT] = ACTIONS(4463), - [anon_sym_QMARK_COLON] = ACTIONS(4463), - [anon_sym_AMP_AMP] = ACTIONS(4463), - [anon_sym_PIPE_PIPE] = ACTIONS(4463), - [anon_sym_null] = ACTIONS(4461), - [anon_sym_if] = ACTIONS(4461), - [anon_sym_else] = ACTIONS(4461), - [anon_sym_when] = ACTIONS(4461), - [anon_sym_try] = ACTIONS(4461), - [anon_sym_throw] = ACTIONS(4461), - [anon_sym_return] = ACTIONS(4461), - [anon_sym_continue] = ACTIONS(4461), - [anon_sym_break] = ACTIONS(4461), - [anon_sym_COLON_COLON] = ACTIONS(4463), - [anon_sym_PLUS_EQ] = ACTIONS(4463), - [anon_sym_DASH_EQ] = ACTIONS(4463), - [anon_sym_STAR_EQ] = ACTIONS(4463), - [anon_sym_SLASH_EQ] = ACTIONS(4463), - [anon_sym_PERCENT_EQ] = ACTIONS(4463), - [anon_sym_BANG_EQ] = ACTIONS(4461), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4463), - [anon_sym_EQ_EQ] = ACTIONS(4461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4463), - [anon_sym_LT_EQ] = ACTIONS(4463), - [anon_sym_GT_EQ] = ACTIONS(4463), - [anon_sym_BANGin] = ACTIONS(4463), - [anon_sym_is] = ACTIONS(4461), - [anon_sym_BANGis] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(4461), - [anon_sym_as_QMARK] = ACTIONS(4463), - [anon_sym_PLUS_PLUS] = ACTIONS(4463), - [anon_sym_DASH_DASH] = ACTIONS(4463), - [anon_sym_BANG] = ACTIONS(4461), - [anon_sym_BANG_BANG] = ACTIONS(4463), - [anon_sym_suspend] = ACTIONS(4461), - [anon_sym_sealed] = ACTIONS(4461), - [anon_sym_annotation] = ACTIONS(4461), - [anon_sym_data] = ACTIONS(4461), - [anon_sym_inner] = ACTIONS(4461), - [anon_sym_value] = ACTIONS(4461), - [anon_sym_override] = ACTIONS(4461), - [anon_sym_lateinit] = ACTIONS(4461), - [anon_sym_public] = ACTIONS(4461), - [anon_sym_private] = ACTIONS(4461), - [anon_sym_internal] = ACTIONS(4461), - [anon_sym_protected] = ACTIONS(4461), - [anon_sym_tailrec] = ACTIONS(4461), - [anon_sym_operator] = ACTIONS(4461), - [anon_sym_infix] = ACTIONS(4461), - [anon_sym_inline] = ACTIONS(4461), - [anon_sym_external] = ACTIONS(4461), - [sym_property_modifier] = ACTIONS(4461), - [anon_sym_abstract] = ACTIONS(4461), - [anon_sym_final] = ACTIONS(4461), - [anon_sym_open] = ACTIONS(4461), - [anon_sym_vararg] = ACTIONS(4461), - [anon_sym_noinline] = ACTIONS(4461), - [anon_sym_crossinline] = ACTIONS(4461), - [anon_sym_expect] = ACTIONS(4461), - [anon_sym_actual] = ACTIONS(4461), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4463), - [anon_sym_continue_AT] = ACTIONS(4463), - [anon_sym_break_AT] = ACTIONS(4463), - [anon_sym_this_AT] = ACTIONS(4463), - [anon_sym_super_AT] = ACTIONS(4463), - [sym_real_literal] = ACTIONS(4463), - [sym_integer_literal] = ACTIONS(4461), - [sym_hex_literal] = ACTIONS(4463), - [sym_bin_literal] = ACTIONS(4463), - [anon_sym_true] = ACTIONS(4461), - [anon_sym_false] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym__backtick_identifier] = ACTIONS(4463), - [sym__automatic_semicolon] = ACTIONS(4463), - [sym_safe_nav] = ACTIONS(4463), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4463), + [1025] = { + [sym__alpha_identifier] = ACTIONS(4794), + [anon_sym_AT] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_RBRACE] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4796), + [anon_sym_COMMA] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4794), + [anon_sym_where] = ACTIONS(4794), + [anon_sym_object] = ACTIONS(4794), + [anon_sym_fun] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_get] = ACTIONS(4794), + [anon_sym_set] = ACTIONS(4794), + [anon_sym_this] = ACTIONS(4794), + [anon_sym_super] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4794), + [sym_label] = ACTIONS(4794), + [anon_sym_in] = ACTIONS(4794), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_QMARK_COLON] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_null] = ACTIONS(4794), + [anon_sym_if] = ACTIONS(4794), + [anon_sym_else] = ACTIONS(4794), + [anon_sym_when] = ACTIONS(4794), + [anon_sym_try] = ACTIONS(4794), + [anon_sym_throw] = ACTIONS(4794), + [anon_sym_return] = ACTIONS(4794), + [anon_sym_continue] = ACTIONS(4794), + [anon_sym_break] = ACTIONS(4794), + [anon_sym_COLON_COLON] = ACTIONS(4796), + [anon_sym_PLUS_EQ] = ACTIONS(4796), + [anon_sym_DASH_EQ] = ACTIONS(4796), + [anon_sym_STAR_EQ] = ACTIONS(4796), + [anon_sym_SLASH_EQ] = ACTIONS(4796), + [anon_sym_PERCENT_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4796), + [anon_sym_BANGin] = ACTIONS(4796), + [anon_sym_is] = ACTIONS(4794), + [anon_sym_BANGis] = ACTIONS(4796), + [anon_sym_PLUS] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_SLASH] = ACTIONS(4794), + [anon_sym_PERCENT] = ACTIONS(4794), + [anon_sym_as_QMARK] = ACTIONS(4796), + [anon_sym_PLUS_PLUS] = ACTIONS(4796), + [anon_sym_DASH_DASH] = ACTIONS(4796), + [anon_sym_BANG] = ACTIONS(4794), + [anon_sym_BANG_BANG] = ACTIONS(4796), + [anon_sym_suspend] = ACTIONS(4794), + [anon_sym_sealed] = ACTIONS(4794), + [anon_sym_annotation] = ACTIONS(4794), + [anon_sym_data] = ACTIONS(4794), + [anon_sym_inner] = ACTIONS(4794), + [anon_sym_value] = ACTIONS(4794), + [anon_sym_override] = ACTIONS(4794), + [anon_sym_lateinit] = ACTIONS(4794), + [anon_sym_public] = ACTIONS(4794), + [anon_sym_private] = ACTIONS(4794), + [anon_sym_internal] = ACTIONS(4794), + [anon_sym_protected] = ACTIONS(4794), + [anon_sym_tailrec] = ACTIONS(4794), + [anon_sym_operator] = ACTIONS(4794), + [anon_sym_infix] = ACTIONS(4794), + [anon_sym_inline] = ACTIONS(4794), + [anon_sym_external] = ACTIONS(4794), + [sym_property_modifier] = ACTIONS(4794), + [anon_sym_abstract] = ACTIONS(4794), + [anon_sym_final] = ACTIONS(4794), + [anon_sym_open] = ACTIONS(4794), + [anon_sym_vararg] = ACTIONS(4794), + [anon_sym_noinline] = ACTIONS(4794), + [anon_sym_crossinline] = ACTIONS(4794), + [anon_sym_expect] = ACTIONS(4794), + [anon_sym_actual] = ACTIONS(4794), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4796), + [anon_sym_continue_AT] = ACTIONS(4796), + [anon_sym_break_AT] = ACTIONS(4796), + [anon_sym_this_AT] = ACTIONS(4796), + [anon_sym_super_AT] = ACTIONS(4796), + [sym_real_literal] = ACTIONS(4796), + [sym_integer_literal] = ACTIONS(4794), + [sym_hex_literal] = ACTIONS(4796), + [sym_bin_literal] = ACTIONS(4796), + [anon_sym_true] = ACTIONS(4794), + [anon_sym_false] = ACTIONS(4794), + [anon_sym_SQUOTE] = ACTIONS(4796), + [sym__backtick_identifier] = ACTIONS(4796), + [sym__automatic_semicolon] = ACTIONS(4796), + [sym_safe_nav] = ACTIONS(4796), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4796), }, - [1035] = { - [sym_enum_class_body] = STATE(1084), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), + [1026] = { + [sym__alpha_identifier] = ACTIONS(3113), + [anon_sym_AT] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3113), + [anon_sym_GT] = ACTIONS(3113), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3113), + [anon_sym_set] = ACTIONS(3113), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [sym_label] = ACTIONS(3113), + [anon_sym_in] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_QMARK_COLON] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3115), + [anon_sym_LT_EQ] = ACTIONS(3115), + [anon_sym_GT_EQ] = ACTIONS(3115), + [anon_sym_BANGin] = ACTIONS(3115), + [anon_sym_is] = ACTIONS(3113), + [anon_sym_BANGis] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_SLASH] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_as_QMARK] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(3115), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3113), + [anon_sym_inner] = ACTIONS(3113), + [anon_sym_value] = ACTIONS(3113), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3113), + [anon_sym_actual] = ACTIONS(3113), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(3115), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3115), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), }, - [1036] = { - [sym_class_body] = STATE(1187), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), + [1027] = { + [sym__alpha_identifier] = ACTIONS(4798), + [anon_sym_AT] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_as] = ACTIONS(4798), + [anon_sym_EQ] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4800), + [anon_sym_RBRACE] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4800), + [anon_sym_COMMA] = ACTIONS(4800), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_where] = ACTIONS(4798), + [anon_sym_object] = ACTIONS(4798), + [anon_sym_fun] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_get] = ACTIONS(4798), + [anon_sym_set] = ACTIONS(4798), + [anon_sym_this] = ACTIONS(4798), + [anon_sym_super] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4798), + [sym_label] = ACTIONS(4798), + [anon_sym_in] = ACTIONS(4798), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_QMARK_COLON] = ACTIONS(4800), + [anon_sym_AMP_AMP] = ACTIONS(4800), + [anon_sym_PIPE_PIPE] = ACTIONS(4800), + [anon_sym_null] = ACTIONS(4798), + [anon_sym_if] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(4798), + [anon_sym_when] = ACTIONS(4798), + [anon_sym_try] = ACTIONS(4798), + [anon_sym_throw] = ACTIONS(4798), + [anon_sym_return] = ACTIONS(4798), + [anon_sym_continue] = ACTIONS(4798), + [anon_sym_break] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_PLUS_EQ] = ACTIONS(4800), + [anon_sym_DASH_EQ] = ACTIONS(4800), + [anon_sym_STAR_EQ] = ACTIONS(4800), + [anon_sym_SLASH_EQ] = ACTIONS(4800), + [anon_sym_PERCENT_EQ] = ACTIONS(4800), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4800), + [anon_sym_BANGin] = ACTIONS(4800), + [anon_sym_is] = ACTIONS(4798), + [anon_sym_BANGis] = ACTIONS(4800), + [anon_sym_PLUS] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_SLASH] = ACTIONS(4798), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4800), + [anon_sym_PLUS_PLUS] = ACTIONS(4800), + [anon_sym_DASH_DASH] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(4798), + [anon_sym_BANG_BANG] = ACTIONS(4800), + [anon_sym_suspend] = ACTIONS(4798), + [anon_sym_sealed] = ACTIONS(4798), + [anon_sym_annotation] = ACTIONS(4798), + [anon_sym_data] = ACTIONS(4798), + [anon_sym_inner] = ACTIONS(4798), + [anon_sym_value] = ACTIONS(4798), + [anon_sym_override] = ACTIONS(4798), + [anon_sym_lateinit] = ACTIONS(4798), + [anon_sym_public] = ACTIONS(4798), + [anon_sym_private] = ACTIONS(4798), + [anon_sym_internal] = ACTIONS(4798), + [anon_sym_protected] = ACTIONS(4798), + [anon_sym_tailrec] = ACTIONS(4798), + [anon_sym_operator] = ACTIONS(4798), + [anon_sym_infix] = ACTIONS(4798), + [anon_sym_inline] = ACTIONS(4798), + [anon_sym_external] = ACTIONS(4798), + [sym_property_modifier] = ACTIONS(4798), + [anon_sym_abstract] = ACTIONS(4798), + [anon_sym_final] = ACTIONS(4798), + [anon_sym_open] = ACTIONS(4798), + [anon_sym_vararg] = ACTIONS(4798), + [anon_sym_noinline] = ACTIONS(4798), + [anon_sym_crossinline] = ACTIONS(4798), + [anon_sym_expect] = ACTIONS(4798), + [anon_sym_actual] = ACTIONS(4798), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4800), + [anon_sym_continue_AT] = ACTIONS(4800), + [anon_sym_break_AT] = ACTIONS(4800), + [anon_sym_this_AT] = ACTIONS(4800), + [anon_sym_super_AT] = ACTIONS(4800), + [sym_real_literal] = ACTIONS(4800), + [sym_integer_literal] = ACTIONS(4798), + [sym_hex_literal] = ACTIONS(4800), + [sym_bin_literal] = ACTIONS(4800), + [anon_sym_true] = ACTIONS(4798), + [anon_sym_false] = ACTIONS(4798), + [anon_sym_SQUOTE] = ACTIONS(4800), + [sym__backtick_identifier] = ACTIONS(4800), + [sym__automatic_semicolon] = ACTIONS(4800), + [sym_safe_nav] = ACTIONS(4800), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4800), }, - [1037] = { - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4794), - [anon_sym_get] = ACTIONS(4603), - [anon_sym_set] = ACTIONS(4605), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1038] = { - [sym_enum_class_body] = STATE(1187), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), - }, - [1039] = { - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4796), - [anon_sym_get] = ACTIONS(4661), - [anon_sym_set] = ACTIONS(4663), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), + [1028] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4802), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), }, - [1040] = { - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_get] = ACTIONS(4661), - [anon_sym_set] = ACTIONS(4663), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [1029] = { + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3344), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(3344), + [anon_sym_sealed] = ACTIONS(3344), + [anon_sym_annotation] = ACTIONS(3344), + [anon_sym_data] = ACTIONS(3344), + [anon_sym_inner] = ACTIONS(3344), + [anon_sym_value] = ACTIONS(3344), + [anon_sym_override] = ACTIONS(3344), + [anon_sym_lateinit] = ACTIONS(3344), + [anon_sym_public] = ACTIONS(3344), + [anon_sym_private] = ACTIONS(3344), + [anon_sym_internal] = ACTIONS(3344), + [anon_sym_protected] = ACTIONS(3344), + [anon_sym_tailrec] = ACTIONS(3344), + [anon_sym_operator] = ACTIONS(3344), + [anon_sym_infix] = ACTIONS(3344), + [anon_sym_inline] = ACTIONS(3344), + [anon_sym_external] = ACTIONS(3344), + [sym_property_modifier] = ACTIONS(3344), + [anon_sym_abstract] = ACTIONS(3344), + [anon_sym_final] = ACTIONS(3344), + [anon_sym_open] = ACTIONS(3344), + [anon_sym_vararg] = ACTIONS(3344), + [anon_sym_noinline] = ACTIONS(3344), + [anon_sym_crossinline] = ACTIONS(3344), + [anon_sym_expect] = ACTIONS(3344), + [anon_sym_actual] = ACTIONS(3344), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [1041] = { - [sym__alpha_identifier] = ACTIONS(4800), - [anon_sym_AT] = ACTIONS(4802), - [anon_sym_LBRACK] = ACTIONS(4802), - [anon_sym_as] = ACTIONS(4800), - [anon_sym_EQ] = ACTIONS(4800), - [anon_sym_fun] = ACTIONS(4800), - [anon_sym_LBRACE] = ACTIONS(4802), - [anon_sym_RBRACE] = ACTIONS(4802), - [anon_sym_LPAREN] = ACTIONS(4802), - [anon_sym_COMMA] = ACTIONS(4802), - [anon_sym_by] = ACTIONS(4800), - [anon_sym_LT] = ACTIONS(4800), - [anon_sym_GT] = ACTIONS(4800), - [anon_sym_where] = ACTIONS(4800), - [anon_sym_object] = ACTIONS(4800), - [anon_sym_DOT] = ACTIONS(4800), - [anon_sym_SEMI] = ACTIONS(4802), - [anon_sym_get] = ACTIONS(4800), - [anon_sym_set] = ACTIONS(4800), - [anon_sym_this] = ACTIONS(4800), - [anon_sym_super] = ACTIONS(4800), - [anon_sym_STAR] = ACTIONS(4800), - [sym_label] = ACTIONS(4800), - [anon_sym_in] = ACTIONS(4800), - [anon_sym_DOT_DOT] = ACTIONS(4802), - [anon_sym_QMARK_COLON] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_null] = ACTIONS(4800), - [anon_sym_if] = ACTIONS(4800), - [anon_sym_else] = ACTIONS(4800), - [anon_sym_when] = ACTIONS(4800), - [anon_sym_try] = ACTIONS(4800), - [anon_sym_throw] = ACTIONS(4800), - [anon_sym_return] = ACTIONS(4800), - [anon_sym_continue] = ACTIONS(4800), - [anon_sym_break] = ACTIONS(4800), - [anon_sym_COLON_COLON] = ACTIONS(4802), - [anon_sym_PLUS_EQ] = ACTIONS(4802), - [anon_sym_DASH_EQ] = ACTIONS(4802), - [anon_sym_STAR_EQ] = ACTIONS(4802), - [anon_sym_SLASH_EQ] = ACTIONS(4802), - [anon_sym_PERCENT_EQ] = ACTIONS(4802), - [anon_sym_BANG_EQ] = ACTIONS(4800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4802), - [anon_sym_EQ_EQ] = ACTIONS(4800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4802), - [anon_sym_LT_EQ] = ACTIONS(4802), - [anon_sym_GT_EQ] = ACTIONS(4802), - [anon_sym_BANGin] = ACTIONS(4802), - [anon_sym_is] = ACTIONS(4800), - [anon_sym_BANGis] = ACTIONS(4802), - [anon_sym_PLUS] = ACTIONS(4800), - [anon_sym_DASH] = ACTIONS(4800), - [anon_sym_SLASH] = ACTIONS(4800), - [anon_sym_PERCENT] = ACTIONS(4800), - [anon_sym_as_QMARK] = ACTIONS(4802), - [anon_sym_PLUS_PLUS] = ACTIONS(4802), - [anon_sym_DASH_DASH] = ACTIONS(4802), - [anon_sym_BANG] = ACTIONS(4800), - [anon_sym_BANG_BANG] = ACTIONS(4802), - [anon_sym_suspend] = ACTIONS(4800), - [anon_sym_sealed] = ACTIONS(4800), - [anon_sym_annotation] = ACTIONS(4800), - [anon_sym_data] = ACTIONS(4800), - [anon_sym_inner] = ACTIONS(4800), - [anon_sym_value] = ACTIONS(4800), - [anon_sym_override] = ACTIONS(4800), - [anon_sym_lateinit] = ACTIONS(4800), - [anon_sym_public] = ACTIONS(4800), - [anon_sym_private] = ACTIONS(4800), - [anon_sym_internal] = ACTIONS(4800), - [anon_sym_protected] = ACTIONS(4800), - [anon_sym_tailrec] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(4800), - [anon_sym_infix] = ACTIONS(4800), - [anon_sym_inline] = ACTIONS(4800), - [anon_sym_external] = ACTIONS(4800), - [sym_property_modifier] = ACTIONS(4800), - [anon_sym_abstract] = ACTIONS(4800), - [anon_sym_final] = ACTIONS(4800), - [anon_sym_open] = ACTIONS(4800), - [anon_sym_vararg] = ACTIONS(4800), - [anon_sym_noinline] = ACTIONS(4800), - [anon_sym_crossinline] = ACTIONS(4800), - [anon_sym_expect] = ACTIONS(4800), - [anon_sym_actual] = ACTIONS(4800), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4802), - [anon_sym_continue_AT] = ACTIONS(4802), - [anon_sym_break_AT] = ACTIONS(4802), - [anon_sym_this_AT] = ACTIONS(4802), - [anon_sym_super_AT] = ACTIONS(4802), - [sym_real_literal] = ACTIONS(4802), - [sym_integer_literal] = ACTIONS(4800), - [sym_hex_literal] = ACTIONS(4802), - [sym_bin_literal] = ACTIONS(4802), - [anon_sym_true] = ACTIONS(4800), - [anon_sym_false] = ACTIONS(4800), - [anon_sym_SQUOTE] = ACTIONS(4802), - [sym__backtick_identifier] = ACTIONS(4802), - [sym__automatic_semicolon] = ACTIONS(4802), - [sym_safe_nav] = ACTIONS(4802), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4802), + [1030] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), }, - [1042] = { - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), + [1031] = { + [sym__alpha_identifier] = ACTIONS(4804), + [anon_sym_AT] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_as] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4804), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4804), [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), + [anon_sym_where] = ACTIONS(4804), + [anon_sym_object] = ACTIONS(4804), + [anon_sym_fun] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4804), [anon_sym_SEMI] = ACTIONS(4806), - [anon_sym_get] = ACTIONS(4808), - [anon_sym_set] = ACTIONS(4810), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_get] = ACTIONS(4804), + [anon_sym_set] = ACTIONS(4804), + [anon_sym_this] = ACTIONS(4804), + [anon_sym_super] = ACTIONS(4804), + [anon_sym_STAR] = ACTIONS(4804), + [sym_label] = ACTIONS(4804), + [anon_sym_in] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4806), + [anon_sym_QMARK_COLON] = ACTIONS(4806), + [anon_sym_AMP_AMP] = ACTIONS(4806), + [anon_sym_PIPE_PIPE] = ACTIONS(4806), + [anon_sym_null] = ACTIONS(4804), + [anon_sym_if] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_when] = ACTIONS(4804), + [anon_sym_try] = ACTIONS(4804), + [anon_sym_throw] = ACTIONS(4804), + [anon_sym_return] = ACTIONS(4804), + [anon_sym_continue] = ACTIONS(4804), + [anon_sym_break] = ACTIONS(4804), + [anon_sym_COLON_COLON] = ACTIONS(4806), + [anon_sym_PLUS_EQ] = ACTIONS(4806), + [anon_sym_DASH_EQ] = ACTIONS(4806), + [anon_sym_STAR_EQ] = ACTIONS(4806), + [anon_sym_SLASH_EQ] = ACTIONS(4806), + [anon_sym_PERCENT_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4806), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_BANGin] = ACTIONS(4806), + [anon_sym_is] = ACTIONS(4804), + [anon_sym_BANGis] = ACTIONS(4806), + [anon_sym_PLUS] = ACTIONS(4804), + [anon_sym_DASH] = ACTIONS(4804), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_PERCENT] = ACTIONS(4804), + [anon_sym_as_QMARK] = ACTIONS(4806), + [anon_sym_PLUS_PLUS] = ACTIONS(4806), + [anon_sym_DASH_DASH] = ACTIONS(4806), + [anon_sym_BANG] = ACTIONS(4804), + [anon_sym_BANG_BANG] = ACTIONS(4806), + [anon_sym_suspend] = ACTIONS(4804), + [anon_sym_sealed] = ACTIONS(4804), + [anon_sym_annotation] = ACTIONS(4804), + [anon_sym_data] = ACTIONS(4804), + [anon_sym_inner] = ACTIONS(4804), + [anon_sym_value] = ACTIONS(4804), + [anon_sym_override] = ACTIONS(4804), + [anon_sym_lateinit] = ACTIONS(4804), + [anon_sym_public] = ACTIONS(4804), + [anon_sym_private] = ACTIONS(4804), + [anon_sym_internal] = ACTIONS(4804), + [anon_sym_protected] = ACTIONS(4804), + [anon_sym_tailrec] = ACTIONS(4804), + [anon_sym_operator] = ACTIONS(4804), + [anon_sym_infix] = ACTIONS(4804), + [anon_sym_inline] = ACTIONS(4804), + [anon_sym_external] = ACTIONS(4804), + [sym_property_modifier] = ACTIONS(4804), + [anon_sym_abstract] = ACTIONS(4804), + [anon_sym_final] = ACTIONS(4804), + [anon_sym_open] = ACTIONS(4804), + [anon_sym_vararg] = ACTIONS(4804), + [anon_sym_noinline] = ACTIONS(4804), + [anon_sym_crossinline] = ACTIONS(4804), + [anon_sym_expect] = ACTIONS(4804), + [anon_sym_actual] = ACTIONS(4804), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4806), + [anon_sym_continue_AT] = ACTIONS(4806), + [anon_sym_break_AT] = ACTIONS(4806), + [anon_sym_this_AT] = ACTIONS(4806), + [anon_sym_super_AT] = ACTIONS(4806), + [sym_real_literal] = ACTIONS(4806), + [sym_integer_literal] = ACTIONS(4804), + [sym_hex_literal] = ACTIONS(4806), + [sym_bin_literal] = ACTIONS(4806), + [anon_sym_true] = ACTIONS(4804), + [anon_sym_false] = ACTIONS(4804), + [anon_sym_SQUOTE] = ACTIONS(4806), + [sym__backtick_identifier] = ACTIONS(4806), + [sym__automatic_semicolon] = ACTIONS(4806), + [sym_safe_nav] = ACTIONS(4806), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4806), }, - [1043] = { - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(4518), - [anon_sym_fun] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(4520), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_COMMA] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_where] = ACTIONS(4518), - [anon_sym_object] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_this] = ACTIONS(4518), - [anon_sym_super] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4518), - [sym_label] = ACTIONS(4518), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_null] = ACTIONS(4518), - [anon_sym_if] = ACTIONS(4518), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_when] = ACTIONS(4518), - [anon_sym_try] = ACTIONS(4518), - [anon_sym_throw] = ACTIONS(4518), - [anon_sym_return] = ACTIONS(4518), - [anon_sym_continue] = ACTIONS(4518), - [anon_sym_break] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_PLUS_EQ] = ACTIONS(4520), - [anon_sym_DASH_EQ] = ACTIONS(4520), - [anon_sym_STAR_EQ] = ACTIONS(4520), - [anon_sym_SLASH_EQ] = ACTIONS(4520), - [anon_sym_PERCENT_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4518), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4518), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_suspend] = ACTIONS(4518), - [anon_sym_sealed] = ACTIONS(4518), - [anon_sym_annotation] = ACTIONS(4518), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_override] = ACTIONS(4518), - [anon_sym_lateinit] = ACTIONS(4518), - [anon_sym_public] = ACTIONS(4518), - [anon_sym_private] = ACTIONS(4518), - [anon_sym_internal] = ACTIONS(4518), - [anon_sym_protected] = ACTIONS(4518), - [anon_sym_tailrec] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_infix] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym_external] = ACTIONS(4518), - [sym_property_modifier] = ACTIONS(4518), - [anon_sym_abstract] = ACTIONS(4518), - [anon_sym_final] = ACTIONS(4518), - [anon_sym_open] = ACTIONS(4518), - [anon_sym_vararg] = ACTIONS(4518), - [anon_sym_noinline] = ACTIONS(4518), - [anon_sym_crossinline] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4520), - [anon_sym_continue_AT] = ACTIONS(4520), - [anon_sym_break_AT] = ACTIONS(4520), - [anon_sym_this_AT] = ACTIONS(4520), - [anon_sym_super_AT] = ACTIONS(4520), - [sym_real_literal] = ACTIONS(4520), - [sym_integer_literal] = ACTIONS(4518), - [sym_hex_literal] = ACTIONS(4520), - [sym_bin_literal] = ACTIONS(4520), - [anon_sym_true] = ACTIONS(4518), - [anon_sym_false] = ACTIONS(4518), - [anon_sym_SQUOTE] = ACTIONS(4520), - [sym__backtick_identifier] = ACTIONS(4520), - [sym__automatic_semicolon] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4520), - }, - [1044] = { - [sym__alpha_identifier] = ACTIONS(4836), - [anon_sym_AT] = ACTIONS(4838), - [anon_sym_LBRACK] = ACTIONS(4838), - [anon_sym_as] = ACTIONS(4836), - [anon_sym_EQ] = ACTIONS(4836), - [anon_sym_fun] = ACTIONS(4836), - [anon_sym_LBRACE] = ACTIONS(4838), - [anon_sym_RBRACE] = ACTIONS(4838), - [anon_sym_LPAREN] = ACTIONS(4838), - [anon_sym_COMMA] = ACTIONS(4838), - [anon_sym_LT] = ACTIONS(4836), - [anon_sym_GT] = ACTIONS(4836), - [anon_sym_where] = ACTIONS(4836), - [anon_sym_object] = ACTIONS(4836), - [anon_sym_DOT] = ACTIONS(4836), - [anon_sym_SEMI] = ACTIONS(4838), - [anon_sym_get] = ACTIONS(4836), - [anon_sym_set] = ACTIONS(4836), - [anon_sym_this] = ACTIONS(4836), - [anon_sym_super] = ACTIONS(4836), - [anon_sym_STAR] = ACTIONS(4836), - [sym_label] = ACTIONS(4836), - [anon_sym_in] = ACTIONS(4836), - [anon_sym_DOT_DOT] = ACTIONS(4838), - [anon_sym_QMARK_COLON] = ACTIONS(4838), - [anon_sym_AMP_AMP] = ACTIONS(4838), - [anon_sym_PIPE_PIPE] = ACTIONS(4838), - [anon_sym_null] = ACTIONS(4836), - [anon_sym_if] = ACTIONS(4836), - [anon_sym_else] = ACTIONS(4836), - [anon_sym_when] = ACTIONS(4836), - [anon_sym_try] = ACTIONS(4836), - [anon_sym_throw] = ACTIONS(4836), - [anon_sym_return] = ACTIONS(4836), - [anon_sym_continue] = ACTIONS(4836), - [anon_sym_break] = ACTIONS(4836), - [anon_sym_COLON_COLON] = ACTIONS(4838), - [anon_sym_PLUS_EQ] = ACTIONS(4838), - [anon_sym_DASH_EQ] = ACTIONS(4838), - [anon_sym_STAR_EQ] = ACTIONS(4838), - [anon_sym_SLASH_EQ] = ACTIONS(4838), - [anon_sym_PERCENT_EQ] = ACTIONS(4838), - [anon_sym_BANG_EQ] = ACTIONS(4836), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4838), - [anon_sym_EQ_EQ] = ACTIONS(4836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4838), - [anon_sym_LT_EQ] = ACTIONS(4838), - [anon_sym_GT_EQ] = ACTIONS(4838), - [anon_sym_BANGin] = ACTIONS(4838), - [anon_sym_is] = ACTIONS(4836), - [anon_sym_BANGis] = ACTIONS(4838), - [anon_sym_PLUS] = ACTIONS(4836), - [anon_sym_DASH] = ACTIONS(4836), - [anon_sym_SLASH] = ACTIONS(4836), - [anon_sym_PERCENT] = ACTIONS(4836), - [anon_sym_as_QMARK] = ACTIONS(4838), - [anon_sym_PLUS_PLUS] = ACTIONS(4838), - [anon_sym_DASH_DASH] = ACTIONS(4838), - [anon_sym_BANG] = ACTIONS(4836), - [anon_sym_BANG_BANG] = ACTIONS(4838), - [anon_sym_suspend] = ACTIONS(4836), - [anon_sym_sealed] = ACTIONS(4836), - [anon_sym_annotation] = ACTIONS(4836), - [anon_sym_data] = ACTIONS(4836), - [anon_sym_inner] = ACTIONS(4836), - [anon_sym_value] = ACTIONS(4836), - [anon_sym_override] = ACTIONS(4836), - [anon_sym_lateinit] = ACTIONS(4836), - [anon_sym_public] = ACTIONS(4836), - [anon_sym_private] = ACTIONS(4836), - [anon_sym_internal] = ACTIONS(4836), - [anon_sym_protected] = ACTIONS(4836), - [anon_sym_tailrec] = ACTIONS(4836), - [anon_sym_operator] = ACTIONS(4836), - [anon_sym_infix] = ACTIONS(4836), - [anon_sym_inline] = ACTIONS(4836), - [anon_sym_external] = ACTIONS(4836), - [sym_property_modifier] = ACTIONS(4836), - [anon_sym_abstract] = ACTIONS(4836), - [anon_sym_final] = ACTIONS(4836), - [anon_sym_open] = ACTIONS(4836), - [anon_sym_vararg] = ACTIONS(4836), - [anon_sym_noinline] = ACTIONS(4836), - [anon_sym_crossinline] = ACTIONS(4836), - [anon_sym_expect] = ACTIONS(4836), - [anon_sym_actual] = ACTIONS(4836), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4838), - [anon_sym_continue_AT] = ACTIONS(4838), - [anon_sym_break_AT] = ACTIONS(4838), - [anon_sym_this_AT] = ACTIONS(4838), - [anon_sym_super_AT] = ACTIONS(4838), - [sym_real_literal] = ACTIONS(4838), - [sym_integer_literal] = ACTIONS(4836), - [sym_hex_literal] = ACTIONS(4838), - [sym_bin_literal] = ACTIONS(4838), - [anon_sym_true] = ACTIONS(4836), - [anon_sym_false] = ACTIONS(4836), - [anon_sym_SQUOTE] = ACTIONS(4838), - [sym__backtick_identifier] = ACTIONS(4838), - [sym__automatic_semicolon] = ACTIONS(4838), - [sym_safe_nav] = ACTIONS(4838), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4838), - }, - [1045] = { - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(4164), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4166), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(4164), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), - }, - [1046] = { - [sym__alpha_identifier] = ACTIONS(4840), - [anon_sym_AT] = ACTIONS(4842), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_as] = ACTIONS(4840), - [anon_sym_EQ] = ACTIONS(4840), - [anon_sym_fun] = ACTIONS(4840), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_LPAREN] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym_GT] = ACTIONS(4840), - [anon_sym_where] = ACTIONS(4840), - [anon_sym_object] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4840), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_get] = ACTIONS(4840), - [anon_sym_set] = ACTIONS(4840), - [anon_sym_this] = ACTIONS(4840), - [anon_sym_super] = ACTIONS(4840), - [anon_sym_STAR] = ACTIONS(4840), - [sym_label] = ACTIONS(4840), - [anon_sym_in] = ACTIONS(4840), - [anon_sym_DOT_DOT] = ACTIONS(4842), - [anon_sym_QMARK_COLON] = ACTIONS(4842), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_null] = ACTIONS(4840), - [anon_sym_if] = ACTIONS(4840), - [anon_sym_else] = ACTIONS(4840), - [anon_sym_when] = ACTIONS(4840), - [anon_sym_try] = ACTIONS(4840), - [anon_sym_throw] = ACTIONS(4840), - [anon_sym_return] = ACTIONS(4840), - [anon_sym_continue] = ACTIONS(4840), - [anon_sym_break] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(4842), - [anon_sym_PLUS_EQ] = ACTIONS(4842), - [anon_sym_DASH_EQ] = ACTIONS(4842), - [anon_sym_STAR_EQ] = ACTIONS(4842), - [anon_sym_SLASH_EQ] = ACTIONS(4842), - [anon_sym_PERCENT_EQ] = ACTIONS(4842), - [anon_sym_BANG_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), - [anon_sym_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), - [anon_sym_LT_EQ] = ACTIONS(4842), - [anon_sym_GT_EQ] = ACTIONS(4842), - [anon_sym_BANGin] = ACTIONS(4842), - [anon_sym_is] = ACTIONS(4840), - [anon_sym_BANGis] = ACTIONS(4842), - [anon_sym_PLUS] = ACTIONS(4840), - [anon_sym_DASH] = ACTIONS(4840), - [anon_sym_SLASH] = ACTIONS(4840), - [anon_sym_PERCENT] = ACTIONS(4840), - [anon_sym_as_QMARK] = ACTIONS(4842), - [anon_sym_PLUS_PLUS] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_BANG] = ACTIONS(4840), - [anon_sym_BANG_BANG] = ACTIONS(4842), - [anon_sym_suspend] = ACTIONS(4840), - [anon_sym_sealed] = ACTIONS(4840), - [anon_sym_annotation] = ACTIONS(4840), - [anon_sym_data] = ACTIONS(4840), - [anon_sym_inner] = ACTIONS(4840), - [anon_sym_value] = ACTIONS(4840), - [anon_sym_override] = ACTIONS(4840), - [anon_sym_lateinit] = ACTIONS(4840), - [anon_sym_public] = ACTIONS(4840), - [anon_sym_private] = ACTIONS(4840), - [anon_sym_internal] = ACTIONS(4840), - [anon_sym_protected] = ACTIONS(4840), - [anon_sym_tailrec] = ACTIONS(4840), - [anon_sym_operator] = ACTIONS(4840), - [anon_sym_infix] = ACTIONS(4840), - [anon_sym_inline] = ACTIONS(4840), - [anon_sym_external] = ACTIONS(4840), - [sym_property_modifier] = ACTIONS(4840), - [anon_sym_abstract] = ACTIONS(4840), - [anon_sym_final] = ACTIONS(4840), - [anon_sym_open] = ACTIONS(4840), - [anon_sym_vararg] = ACTIONS(4840), - [anon_sym_noinline] = ACTIONS(4840), - [anon_sym_crossinline] = ACTIONS(4840), - [anon_sym_expect] = ACTIONS(4840), - [anon_sym_actual] = ACTIONS(4840), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4842), - [anon_sym_continue_AT] = ACTIONS(4842), - [anon_sym_break_AT] = ACTIONS(4842), - [anon_sym_this_AT] = ACTIONS(4842), - [anon_sym_super_AT] = ACTIONS(4842), - [sym_real_literal] = ACTIONS(4842), - [sym_integer_literal] = ACTIONS(4840), - [sym_hex_literal] = ACTIONS(4842), - [sym_bin_literal] = ACTIONS(4842), - [anon_sym_true] = ACTIONS(4840), - [anon_sym_false] = ACTIONS(4840), - [anon_sym_SQUOTE] = ACTIONS(4842), - [sym__backtick_identifier] = ACTIONS(4842), - [sym__automatic_semicolon] = ACTIONS(4842), - [sym_safe_nav] = ACTIONS(4842), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4842), - }, - [1047] = { - [sym__alpha_identifier] = ACTIONS(4331), - [anon_sym_AT] = ACTIONS(4333), - [anon_sym_LBRACK] = ACTIONS(4333), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_EQ] = ACTIONS(4331), - [anon_sym_fun] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4333), - [anon_sym_RBRACE] = ACTIONS(4333), - [anon_sym_LPAREN] = ACTIONS(4333), - [anon_sym_COMMA] = ACTIONS(4333), - [anon_sym_LT] = ACTIONS(4331), - [anon_sym_GT] = ACTIONS(4331), - [anon_sym_where] = ACTIONS(4331), - [anon_sym_object] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_SEMI] = ACTIONS(4333), - [anon_sym_get] = ACTIONS(4331), - [anon_sym_set] = ACTIONS(4331), - [anon_sym_this] = ACTIONS(4331), - [anon_sym_super] = ACTIONS(4331), - [anon_sym_STAR] = ACTIONS(4331), - [sym_label] = ACTIONS(4331), - [anon_sym_in] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4333), - [anon_sym_QMARK_COLON] = ACTIONS(4333), - [anon_sym_AMP_AMP] = ACTIONS(4333), - [anon_sym_PIPE_PIPE] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(4331), - [anon_sym_if] = ACTIONS(4331), - [anon_sym_else] = ACTIONS(4331), - [anon_sym_when] = ACTIONS(4331), - [anon_sym_try] = ACTIONS(4331), - [anon_sym_throw] = ACTIONS(4331), - [anon_sym_return] = ACTIONS(4331), - [anon_sym_continue] = ACTIONS(4331), - [anon_sym_break] = ACTIONS(4331), - [anon_sym_COLON_COLON] = ACTIONS(4333), - [anon_sym_PLUS_EQ] = ACTIONS(4333), - [anon_sym_DASH_EQ] = ACTIONS(4333), - [anon_sym_STAR_EQ] = ACTIONS(4333), - [anon_sym_SLASH_EQ] = ACTIONS(4333), - [anon_sym_PERCENT_EQ] = ACTIONS(4333), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), - [anon_sym_LT_EQ] = ACTIONS(4333), - [anon_sym_GT_EQ] = ACTIONS(4333), - [anon_sym_BANGin] = ACTIONS(4333), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_BANGis] = ACTIONS(4333), - [anon_sym_PLUS] = ACTIONS(4331), - [anon_sym_DASH] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4331), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_as_QMARK] = ACTIONS(4333), - [anon_sym_PLUS_PLUS] = ACTIONS(4333), - [anon_sym_DASH_DASH] = ACTIONS(4333), - [anon_sym_BANG] = ACTIONS(4331), - [anon_sym_BANG_BANG] = ACTIONS(4333), - [anon_sym_suspend] = ACTIONS(4331), - [anon_sym_sealed] = ACTIONS(4331), - [anon_sym_annotation] = ACTIONS(4331), - [anon_sym_data] = ACTIONS(4331), - [anon_sym_inner] = ACTIONS(4331), - [anon_sym_value] = ACTIONS(4331), - [anon_sym_override] = ACTIONS(4331), - [anon_sym_lateinit] = ACTIONS(4331), - [anon_sym_public] = ACTIONS(4331), - [anon_sym_private] = ACTIONS(4331), - [anon_sym_internal] = ACTIONS(4331), - [anon_sym_protected] = ACTIONS(4331), - [anon_sym_tailrec] = ACTIONS(4331), - [anon_sym_operator] = ACTIONS(4331), - [anon_sym_infix] = ACTIONS(4331), - [anon_sym_inline] = ACTIONS(4331), - [anon_sym_external] = ACTIONS(4331), - [sym_property_modifier] = ACTIONS(4331), - [anon_sym_abstract] = ACTIONS(4331), - [anon_sym_final] = ACTIONS(4331), - [anon_sym_open] = ACTIONS(4331), - [anon_sym_vararg] = ACTIONS(4331), - [anon_sym_noinline] = ACTIONS(4331), - [anon_sym_crossinline] = ACTIONS(4331), - [anon_sym_expect] = ACTIONS(4331), - [anon_sym_actual] = ACTIONS(4331), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4333), - [anon_sym_continue_AT] = ACTIONS(4333), - [anon_sym_break_AT] = ACTIONS(4333), - [anon_sym_this_AT] = ACTIONS(4333), - [anon_sym_super_AT] = ACTIONS(4333), - [sym_real_literal] = ACTIONS(4333), - [sym_integer_literal] = ACTIONS(4331), - [sym_hex_literal] = ACTIONS(4333), - [sym_bin_literal] = ACTIONS(4333), - [anon_sym_true] = ACTIONS(4331), - [anon_sym_false] = ACTIONS(4331), - [anon_sym_SQUOTE] = ACTIONS(4333), - [sym__backtick_identifier] = ACTIONS(4333), - [sym__automatic_semicolon] = ACTIONS(4333), - [sym_safe_nav] = ACTIONS(4333), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4333), + [1032] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4808), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [1048] = { - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4844), - [anon_sym_get] = ACTIONS(4846), - [anon_sym_set] = ACTIONS(4848), + [1033] = { + [sym__alpha_identifier] = ACTIONS(4812), + [anon_sym_AT] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_where] = ACTIONS(4812), + [anon_sym_object] = ACTIONS(4812), + [anon_sym_fun] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4814), + [anon_sym_get] = ACTIONS(4812), + [anon_sym_set] = ACTIONS(4812), + [anon_sym_this] = ACTIONS(4812), + [anon_sym_super] = ACTIONS(4812), [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), + [sym_label] = ACTIONS(4812), + [anon_sym_in] = ACTIONS(4812), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_QMARK_COLON] = ACTIONS(4814), + [anon_sym_AMP_AMP] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4814), + [anon_sym_null] = ACTIONS(4812), + [anon_sym_if] = ACTIONS(4812), + [anon_sym_else] = ACTIONS(4812), + [anon_sym_when] = ACTIONS(4812), + [anon_sym_try] = ACTIONS(4812), + [anon_sym_throw] = ACTIONS(4812), + [anon_sym_return] = ACTIONS(4812), + [anon_sym_continue] = ACTIONS(4812), + [anon_sym_break] = ACTIONS(4812), + [anon_sym_COLON_COLON] = ACTIONS(4814), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4814), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_BANGin] = ACTIONS(4814), + [anon_sym_is] = ACTIONS(4812), + [anon_sym_BANGis] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4812), + [anon_sym_SLASH] = ACTIONS(4812), [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_as_QMARK] = ACTIONS(4814), + [anon_sym_PLUS_PLUS] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_BANG_BANG] = ACTIONS(4814), + [anon_sym_suspend] = ACTIONS(4812), + [anon_sym_sealed] = ACTIONS(4812), + [anon_sym_annotation] = ACTIONS(4812), + [anon_sym_data] = ACTIONS(4812), + [anon_sym_inner] = ACTIONS(4812), + [anon_sym_value] = ACTIONS(4812), + [anon_sym_override] = ACTIONS(4812), + [anon_sym_lateinit] = ACTIONS(4812), + [anon_sym_public] = ACTIONS(4812), + [anon_sym_private] = ACTIONS(4812), + [anon_sym_internal] = ACTIONS(4812), + [anon_sym_protected] = ACTIONS(4812), + [anon_sym_tailrec] = ACTIONS(4812), + [anon_sym_operator] = ACTIONS(4812), + [anon_sym_infix] = ACTIONS(4812), + [anon_sym_inline] = ACTIONS(4812), + [anon_sym_external] = ACTIONS(4812), + [sym_property_modifier] = ACTIONS(4812), + [anon_sym_abstract] = ACTIONS(4812), + [anon_sym_final] = ACTIONS(4812), + [anon_sym_open] = ACTIONS(4812), + [anon_sym_vararg] = ACTIONS(4812), + [anon_sym_noinline] = ACTIONS(4812), + [anon_sym_crossinline] = ACTIONS(4812), + [anon_sym_expect] = ACTIONS(4812), + [anon_sym_actual] = ACTIONS(4812), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4814), + [anon_sym_continue_AT] = ACTIONS(4814), + [anon_sym_break_AT] = ACTIONS(4814), + [anon_sym_this_AT] = ACTIONS(4814), + [anon_sym_super_AT] = ACTIONS(4814), + [sym_real_literal] = ACTIONS(4814), + [sym_integer_literal] = ACTIONS(4812), + [sym_hex_literal] = ACTIONS(4814), + [sym_bin_literal] = ACTIONS(4814), + [anon_sym_true] = ACTIONS(4812), + [anon_sym_false] = ACTIONS(4812), + [anon_sym_SQUOTE] = ACTIONS(4814), + [sym__backtick_identifier] = ACTIONS(4814), + [sym__automatic_semicolon] = ACTIONS(4814), + [sym_safe_nav] = ACTIONS(4814), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4814), }, - [1049] = { - [sym_getter] = STATE(4022), - [sym_setter] = STATE(4022), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4850), - [anon_sym_get] = ACTIONS(4846), - [anon_sym_set] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), + [1034] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), + }, + [1035] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4822), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(4824), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), + }, + [1036] = { + [sym__alpha_identifier] = ACTIONS(4826), + [anon_sym_AT] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_as] = ACTIONS(4826), + [anon_sym_EQ] = ACTIONS(4826), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_where] = ACTIONS(4826), + [anon_sym_object] = ACTIONS(4826), + [anon_sym_fun] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_get] = ACTIONS(4826), + [anon_sym_set] = ACTIONS(4826), + [anon_sym_this] = ACTIONS(4826), + [anon_sym_super] = ACTIONS(4826), + [anon_sym_STAR] = ACTIONS(4826), + [sym_label] = ACTIONS(4826), + [anon_sym_in] = ACTIONS(4826), + [anon_sym_DOT_DOT] = ACTIONS(4828), + [anon_sym_QMARK_COLON] = ACTIONS(4828), + [anon_sym_AMP_AMP] = ACTIONS(4828), + [anon_sym_PIPE_PIPE] = ACTIONS(4828), + [anon_sym_null] = ACTIONS(4826), + [anon_sym_if] = ACTIONS(4826), + [anon_sym_else] = ACTIONS(4826), + [anon_sym_when] = ACTIONS(4826), + [anon_sym_try] = ACTIONS(4826), + [anon_sym_throw] = ACTIONS(4826), + [anon_sym_return] = ACTIONS(4826), + [anon_sym_continue] = ACTIONS(4826), + [anon_sym_break] = ACTIONS(4826), + [anon_sym_COLON_COLON] = ACTIONS(4828), + [anon_sym_PLUS_EQ] = ACTIONS(4828), + [anon_sym_DASH_EQ] = ACTIONS(4828), + [anon_sym_STAR_EQ] = ACTIONS(4828), + [anon_sym_SLASH_EQ] = ACTIONS(4828), + [anon_sym_PERCENT_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ] = ACTIONS(4826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4828), + [anon_sym_EQ_EQ] = ACTIONS(4826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4828), [anon_sym_LT_EQ] = ACTIONS(4828), [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_BANGin] = ACTIONS(4828), + [anon_sym_is] = ACTIONS(4826), + [anon_sym_BANGis] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4826), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4826), + [anon_sym_PERCENT] = ACTIONS(4826), + [anon_sym_as_QMARK] = ACTIONS(4828), + [anon_sym_PLUS_PLUS] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4828), + [anon_sym_BANG] = ACTIONS(4826), + [anon_sym_BANG_BANG] = ACTIONS(4828), + [anon_sym_suspend] = ACTIONS(4826), + [anon_sym_sealed] = ACTIONS(4826), + [anon_sym_annotation] = ACTIONS(4826), + [anon_sym_data] = ACTIONS(4826), + [anon_sym_inner] = ACTIONS(4826), + [anon_sym_value] = ACTIONS(4826), + [anon_sym_override] = ACTIONS(4826), + [anon_sym_lateinit] = ACTIONS(4826), + [anon_sym_public] = ACTIONS(4826), + [anon_sym_private] = ACTIONS(4826), + [anon_sym_internal] = ACTIONS(4826), + [anon_sym_protected] = ACTIONS(4826), + [anon_sym_tailrec] = ACTIONS(4826), + [anon_sym_operator] = ACTIONS(4826), + [anon_sym_infix] = ACTIONS(4826), + [anon_sym_inline] = ACTIONS(4826), + [anon_sym_external] = ACTIONS(4826), + [sym_property_modifier] = ACTIONS(4826), + [anon_sym_abstract] = ACTIONS(4826), + [anon_sym_final] = ACTIONS(4826), + [anon_sym_open] = ACTIONS(4826), + [anon_sym_vararg] = ACTIONS(4826), + [anon_sym_noinline] = ACTIONS(4826), + [anon_sym_crossinline] = ACTIONS(4826), + [anon_sym_expect] = ACTIONS(4826), + [anon_sym_actual] = ACTIONS(4826), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4828), + [anon_sym_continue_AT] = ACTIONS(4828), + [anon_sym_break_AT] = ACTIONS(4828), + [anon_sym_this_AT] = ACTIONS(4828), + [anon_sym_super_AT] = ACTIONS(4828), + [sym_real_literal] = ACTIONS(4828), + [sym_integer_literal] = ACTIONS(4826), + [sym_hex_literal] = ACTIONS(4828), + [sym_bin_literal] = ACTIONS(4828), + [anon_sym_true] = ACTIONS(4826), + [anon_sym_false] = ACTIONS(4826), + [anon_sym_SQUOTE] = ACTIONS(4828), + [sym__backtick_identifier] = ACTIONS(4828), + [sym__automatic_semicolon] = ACTIONS(4828), + [sym_safe_nav] = ACTIONS(4828), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4828), + }, + [1037] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [1038] = { + [sym__alpha_identifier] = ACTIONS(4834), + [anon_sym_AT] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_as] = ACTIONS(4834), + [anon_sym_EQ] = ACTIONS(4834), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_RBRACE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4834), + [anon_sym_where] = ACTIONS(4834), + [anon_sym_object] = ACTIONS(4834), + [anon_sym_fun] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_get] = ACTIONS(4834), + [anon_sym_set] = ACTIONS(4834), + [anon_sym_this] = ACTIONS(4834), + [anon_sym_super] = ACTIONS(4834), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(4834), + [anon_sym_in] = ACTIONS(4834), + [anon_sym_DOT_DOT] = ACTIONS(4836), + [anon_sym_QMARK_COLON] = ACTIONS(4836), + [anon_sym_AMP_AMP] = ACTIONS(4836), + [anon_sym_PIPE_PIPE] = ACTIONS(4836), + [anon_sym_null] = ACTIONS(4834), + [anon_sym_if] = ACTIONS(4834), + [anon_sym_else] = ACTIONS(4834), + [anon_sym_when] = ACTIONS(4834), + [anon_sym_try] = ACTIONS(4834), + [anon_sym_throw] = ACTIONS(4834), + [anon_sym_return] = ACTIONS(4834), + [anon_sym_continue] = ACTIONS(4834), + [anon_sym_break] = ACTIONS(4834), + [anon_sym_COLON_COLON] = ACTIONS(4836), + [anon_sym_PLUS_EQ] = ACTIONS(4836), + [anon_sym_DASH_EQ] = ACTIONS(4836), + [anon_sym_STAR_EQ] = ACTIONS(4836), + [anon_sym_SLASH_EQ] = ACTIONS(4836), + [anon_sym_PERCENT_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4836), + [anon_sym_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4836), + [anon_sym_LT_EQ] = ACTIONS(4836), + [anon_sym_GT_EQ] = ACTIONS(4836), + [anon_sym_BANGin] = ACTIONS(4836), + [anon_sym_is] = ACTIONS(4834), + [anon_sym_BANGis] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4834), + [anon_sym_DASH] = ACTIONS(4834), [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(4836), + [anon_sym_PLUS_PLUS] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4836), + [anon_sym_BANG] = ACTIONS(4834), + [anon_sym_BANG_BANG] = ACTIONS(4836), + [anon_sym_suspend] = ACTIONS(4834), + [anon_sym_sealed] = ACTIONS(4834), + [anon_sym_annotation] = ACTIONS(4834), + [anon_sym_data] = ACTIONS(4834), + [anon_sym_inner] = ACTIONS(4834), + [anon_sym_value] = ACTIONS(4834), + [anon_sym_override] = ACTIONS(4834), + [anon_sym_lateinit] = ACTIONS(4834), + [anon_sym_public] = ACTIONS(4834), + [anon_sym_private] = ACTIONS(4834), + [anon_sym_internal] = ACTIONS(4834), + [anon_sym_protected] = ACTIONS(4834), + [anon_sym_tailrec] = ACTIONS(4834), + [anon_sym_operator] = ACTIONS(4834), + [anon_sym_infix] = ACTIONS(4834), + [anon_sym_inline] = ACTIONS(4834), + [anon_sym_external] = ACTIONS(4834), + [sym_property_modifier] = ACTIONS(4834), + [anon_sym_abstract] = ACTIONS(4834), + [anon_sym_final] = ACTIONS(4834), + [anon_sym_open] = ACTIONS(4834), + [anon_sym_vararg] = ACTIONS(4834), + [anon_sym_noinline] = ACTIONS(4834), + [anon_sym_crossinline] = ACTIONS(4834), + [anon_sym_expect] = ACTIONS(4834), + [anon_sym_actual] = ACTIONS(4834), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4836), + [anon_sym_continue_AT] = ACTIONS(4836), + [anon_sym_break_AT] = ACTIONS(4836), + [anon_sym_this_AT] = ACTIONS(4836), + [anon_sym_super_AT] = ACTIONS(4836), + [sym_real_literal] = ACTIONS(4836), + [sym_integer_literal] = ACTIONS(4834), + [sym_hex_literal] = ACTIONS(4836), + [sym_bin_literal] = ACTIONS(4836), + [anon_sym_true] = ACTIONS(4834), + [anon_sym_false] = ACTIONS(4834), + [anon_sym_SQUOTE] = ACTIONS(4836), + [sym__backtick_identifier] = ACTIONS(4836), + [sym__automatic_semicolon] = ACTIONS(4836), + [sym_safe_nav] = ACTIONS(4836), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4836), }, - [1050] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_fun] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4852), - [anon_sym_object] = ACTIONS(4852), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_this] = ACTIONS(4852), - [anon_sym_super] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [sym_label] = ACTIONS(4852), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_null] = ACTIONS(4852), - [anon_sym_if] = ACTIONS(4852), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_when] = ACTIONS(4852), - [anon_sym_try] = ACTIONS(4852), - [anon_sym_throw] = ACTIONS(4852), - [anon_sym_return] = ACTIONS(4852), - [anon_sym_continue] = ACTIONS(4852), - [anon_sym_break] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG] = ACTIONS(4852), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_suspend] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_annotation] = ACTIONS(4852), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_lateinit] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_tailrec] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_infix] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_external] = ACTIONS(4852), - [sym_property_modifier] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_open] = ACTIONS(4852), - [anon_sym_vararg] = ACTIONS(4852), - [anon_sym_noinline] = ACTIONS(4852), - [anon_sym_crossinline] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4854), - [anon_sym_continue_AT] = ACTIONS(4854), - [anon_sym_break_AT] = ACTIONS(4854), - [anon_sym_this_AT] = ACTIONS(4854), - [anon_sym_super_AT] = ACTIONS(4854), - [sym_real_literal] = ACTIONS(4854), - [sym_integer_literal] = ACTIONS(4852), - [sym_hex_literal] = ACTIONS(4854), - [sym_bin_literal] = ACTIONS(4854), - [anon_sym_true] = ACTIONS(4852), - [anon_sym_false] = ACTIONS(4852), - [anon_sym_SQUOTE] = ACTIONS(4854), - [sym__backtick_identifier] = ACTIONS(4854), - [sym__automatic_semicolon] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4854), + [1039] = { + [sym__alpha_identifier] = ACTIONS(4838), + [anon_sym_AT] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4838), + [anon_sym_EQ] = ACTIONS(4838), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4838), + [anon_sym_where] = ACTIONS(4838), + [anon_sym_object] = ACTIONS(4838), + [anon_sym_fun] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_get] = ACTIONS(4838), + [anon_sym_set] = ACTIONS(4838), + [anon_sym_this] = ACTIONS(4838), + [anon_sym_super] = ACTIONS(4838), + [anon_sym_STAR] = ACTIONS(4838), + [sym_label] = ACTIONS(4838), + [anon_sym_in] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4840), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4840), + [anon_sym_PIPE_PIPE] = ACTIONS(4840), + [anon_sym_null] = ACTIONS(4838), + [anon_sym_if] = ACTIONS(4838), + [anon_sym_else] = ACTIONS(4838), + [anon_sym_when] = ACTIONS(4838), + [anon_sym_try] = ACTIONS(4838), + [anon_sym_throw] = ACTIONS(4838), + [anon_sym_return] = ACTIONS(4838), + [anon_sym_continue] = ACTIONS(4838), + [anon_sym_break] = ACTIONS(4838), + [anon_sym_COLON_COLON] = ACTIONS(4840), + [anon_sym_PLUS_EQ] = ACTIONS(4840), + [anon_sym_DASH_EQ] = ACTIONS(4840), + [anon_sym_STAR_EQ] = ACTIONS(4840), + [anon_sym_SLASH_EQ] = ACTIONS(4840), + [anon_sym_PERCENT_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ] = ACTIONS(4838), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4840), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_BANGin] = ACTIONS(4840), + [anon_sym_is] = ACTIONS(4838), + [anon_sym_BANGis] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4838), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4838), + [anon_sym_PERCENT] = ACTIONS(4838), + [anon_sym_as_QMARK] = ACTIONS(4840), + [anon_sym_PLUS_PLUS] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4838), + [anon_sym_BANG_BANG] = ACTIONS(4840), + [anon_sym_suspend] = ACTIONS(4838), + [anon_sym_sealed] = ACTIONS(4838), + [anon_sym_annotation] = ACTIONS(4838), + [anon_sym_data] = ACTIONS(4838), + [anon_sym_inner] = ACTIONS(4838), + [anon_sym_value] = ACTIONS(4838), + [anon_sym_override] = ACTIONS(4838), + [anon_sym_lateinit] = ACTIONS(4838), + [anon_sym_public] = ACTIONS(4838), + [anon_sym_private] = ACTIONS(4838), + [anon_sym_internal] = ACTIONS(4838), + [anon_sym_protected] = ACTIONS(4838), + [anon_sym_tailrec] = ACTIONS(4838), + [anon_sym_operator] = ACTIONS(4838), + [anon_sym_infix] = ACTIONS(4838), + [anon_sym_inline] = ACTIONS(4838), + [anon_sym_external] = ACTIONS(4838), + [sym_property_modifier] = ACTIONS(4838), + [anon_sym_abstract] = ACTIONS(4838), + [anon_sym_final] = ACTIONS(4838), + [anon_sym_open] = ACTIONS(4838), + [anon_sym_vararg] = ACTIONS(4838), + [anon_sym_noinline] = ACTIONS(4838), + [anon_sym_crossinline] = ACTIONS(4838), + [anon_sym_expect] = ACTIONS(4838), + [anon_sym_actual] = ACTIONS(4838), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4840), + [anon_sym_continue_AT] = ACTIONS(4840), + [anon_sym_break_AT] = ACTIONS(4840), + [anon_sym_this_AT] = ACTIONS(4840), + [anon_sym_super_AT] = ACTIONS(4840), + [sym_real_literal] = ACTIONS(4840), + [sym_integer_literal] = ACTIONS(4838), + [sym_hex_literal] = ACTIONS(4840), + [sym_bin_literal] = ACTIONS(4840), + [anon_sym_true] = ACTIONS(4838), + [anon_sym_false] = ACTIONS(4838), + [anon_sym_SQUOTE] = ACTIONS(4840), + [sym__backtick_identifier] = ACTIONS(4840), + [sym__automatic_semicolon] = ACTIONS(4840), + [sym_safe_nav] = ACTIONS(4840), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4840), }, - [1051] = { - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(1732), - [anon_sym_set] = ACTIONS(1732), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(1732), - [anon_sym_sealed] = ACTIONS(1732), - [anon_sym_annotation] = ACTIONS(1732), - [anon_sym_data] = ACTIONS(1732), - [anon_sym_inner] = ACTIONS(1732), - [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(1732), - [anon_sym_lateinit] = ACTIONS(1732), - [anon_sym_public] = ACTIONS(1732), - [anon_sym_private] = ACTIONS(1732), - [anon_sym_internal] = ACTIONS(1732), - [anon_sym_protected] = ACTIONS(1732), - [anon_sym_tailrec] = ACTIONS(1732), - [anon_sym_operator] = ACTIONS(1732), - [anon_sym_infix] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym_external] = ACTIONS(1732), - [sym_property_modifier] = ACTIONS(1732), - [anon_sym_abstract] = ACTIONS(1732), - [anon_sym_final] = ACTIONS(1732), - [anon_sym_open] = ACTIONS(1732), - [anon_sym_vararg] = ACTIONS(1732), - [anon_sym_noinline] = ACTIONS(1732), - [anon_sym_crossinline] = ACTIONS(1732), - [anon_sym_expect] = ACTIONS(1732), - [anon_sym_actual] = ACTIONS(1732), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [1040] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(4824), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, - [1052] = { - [sym__alpha_identifier] = ACTIONS(4856), - [anon_sym_AT] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_as] = ACTIONS(4856), - [anon_sym_EQ] = ACTIONS(4856), - [anon_sym_fun] = ACTIONS(4856), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_RBRACE] = ACTIONS(4858), - [anon_sym_LPAREN] = ACTIONS(4858), - [anon_sym_COMMA] = ACTIONS(4858), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_where] = ACTIONS(4856), - [anon_sym_object] = ACTIONS(4856), - [anon_sym_DOT] = ACTIONS(4856), - [anon_sym_SEMI] = ACTIONS(4858), - [anon_sym_get] = ACTIONS(4856), - [anon_sym_set] = ACTIONS(4856), - [anon_sym_this] = ACTIONS(4856), - [anon_sym_super] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4856), - [sym_label] = ACTIONS(4856), - [anon_sym_in] = ACTIONS(4856), - [anon_sym_DOT_DOT] = ACTIONS(4858), - [anon_sym_QMARK_COLON] = ACTIONS(4858), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), - [anon_sym_if] = ACTIONS(4856), - [anon_sym_else] = ACTIONS(4856), - [anon_sym_when] = ACTIONS(4856), - [anon_sym_try] = ACTIONS(4856), - [anon_sym_throw] = ACTIONS(4856), - [anon_sym_return] = ACTIONS(4856), - [anon_sym_continue] = ACTIONS(4856), - [anon_sym_break] = ACTIONS(4856), - [anon_sym_COLON_COLON] = ACTIONS(4858), - [anon_sym_PLUS_EQ] = ACTIONS(4858), - [anon_sym_DASH_EQ] = ACTIONS(4858), - [anon_sym_STAR_EQ] = ACTIONS(4858), - [anon_sym_SLASH_EQ] = ACTIONS(4858), - [anon_sym_PERCENT_EQ] = ACTIONS(4858), - [anon_sym_BANG_EQ] = ACTIONS(4856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), - [anon_sym_EQ_EQ] = ACTIONS(4856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), - [anon_sym_LT_EQ] = ACTIONS(4858), - [anon_sym_GT_EQ] = ACTIONS(4858), - [anon_sym_BANGin] = ACTIONS(4858), - [anon_sym_is] = ACTIONS(4856), - [anon_sym_BANGis] = ACTIONS(4858), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4856), - [anon_sym_as_QMARK] = ACTIONS(4858), - [anon_sym_PLUS_PLUS] = ACTIONS(4858), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_BANG] = ACTIONS(4856), - [anon_sym_BANG_BANG] = ACTIONS(4858), - [anon_sym_suspend] = ACTIONS(4856), - [anon_sym_sealed] = ACTIONS(4856), - [anon_sym_annotation] = ACTIONS(4856), - [anon_sym_data] = ACTIONS(4856), - [anon_sym_inner] = ACTIONS(4856), - [anon_sym_value] = ACTIONS(4856), - [anon_sym_override] = ACTIONS(4856), - [anon_sym_lateinit] = ACTIONS(4856), - [anon_sym_public] = ACTIONS(4856), - [anon_sym_private] = ACTIONS(4856), - [anon_sym_internal] = ACTIONS(4856), - [anon_sym_protected] = ACTIONS(4856), - [anon_sym_tailrec] = ACTIONS(4856), - [anon_sym_operator] = ACTIONS(4856), - [anon_sym_infix] = ACTIONS(4856), - [anon_sym_inline] = ACTIONS(4856), - [anon_sym_external] = ACTIONS(4856), - [sym_property_modifier] = ACTIONS(4856), - [anon_sym_abstract] = ACTIONS(4856), - [anon_sym_final] = ACTIONS(4856), - [anon_sym_open] = ACTIONS(4856), - [anon_sym_vararg] = ACTIONS(4856), - [anon_sym_noinline] = ACTIONS(4856), - [anon_sym_crossinline] = ACTIONS(4856), - [anon_sym_expect] = ACTIONS(4856), - [anon_sym_actual] = ACTIONS(4856), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4858), - [anon_sym_continue_AT] = ACTIONS(4858), - [anon_sym_break_AT] = ACTIONS(4858), - [anon_sym_this_AT] = ACTIONS(4858), - [anon_sym_super_AT] = ACTIONS(4858), - [sym_real_literal] = ACTIONS(4858), - [sym_integer_literal] = ACTIONS(4856), - [sym_hex_literal] = ACTIONS(4858), - [sym_bin_literal] = ACTIONS(4858), - [anon_sym_true] = ACTIONS(4856), - [anon_sym_false] = ACTIONS(4856), - [anon_sym_SQUOTE] = ACTIONS(4858), - [sym__backtick_identifier] = ACTIONS(4858), - [sym__automatic_semicolon] = ACTIONS(4858), - [sym_safe_nav] = ACTIONS(4858), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4858), + [1041] = { + [sym__alpha_identifier] = ACTIONS(4842), + [anon_sym_AT] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_as] = ACTIONS(4842), + [anon_sym_EQ] = ACTIONS(4842), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_where] = ACTIONS(4842), + [anon_sym_object] = ACTIONS(4842), + [anon_sym_fun] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_get] = ACTIONS(4842), + [anon_sym_set] = ACTIONS(4842), + [anon_sym_this] = ACTIONS(4842), + [anon_sym_super] = ACTIONS(4842), + [anon_sym_STAR] = ACTIONS(4842), + [sym_label] = ACTIONS(4842), + [anon_sym_in] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4844), + [anon_sym_QMARK_COLON] = ACTIONS(4844), + [anon_sym_AMP_AMP] = ACTIONS(4844), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_null] = ACTIONS(4842), + [anon_sym_if] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4842), + [anon_sym_when] = ACTIONS(4842), + [anon_sym_try] = ACTIONS(4842), + [anon_sym_throw] = ACTIONS(4842), + [anon_sym_return] = ACTIONS(4842), + [anon_sym_continue] = ACTIONS(4842), + [anon_sym_break] = ACTIONS(4842), + [anon_sym_COLON_COLON] = ACTIONS(4844), + [anon_sym_PLUS_EQ] = ACTIONS(4844), + [anon_sym_DASH_EQ] = ACTIONS(4844), + [anon_sym_STAR_EQ] = ACTIONS(4844), + [anon_sym_SLASH_EQ] = ACTIONS(4844), + [anon_sym_PERCENT_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4844), + [anon_sym_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4844), + [anon_sym_LT_EQ] = ACTIONS(4844), + [anon_sym_GT_EQ] = ACTIONS(4844), + [anon_sym_BANGin] = ACTIONS(4844), + [anon_sym_is] = ACTIONS(4842), + [anon_sym_BANGis] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4842), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_as_QMARK] = ACTIONS(4844), + [anon_sym_PLUS_PLUS] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(4842), + [anon_sym_BANG_BANG] = ACTIONS(4844), + [anon_sym_suspend] = ACTIONS(4842), + [anon_sym_sealed] = ACTIONS(4842), + [anon_sym_annotation] = ACTIONS(4842), + [anon_sym_data] = ACTIONS(4842), + [anon_sym_inner] = ACTIONS(4842), + [anon_sym_value] = ACTIONS(4842), + [anon_sym_override] = ACTIONS(4842), + [anon_sym_lateinit] = ACTIONS(4842), + [anon_sym_public] = ACTIONS(4842), + [anon_sym_private] = ACTIONS(4842), + [anon_sym_internal] = ACTIONS(4842), + [anon_sym_protected] = ACTIONS(4842), + [anon_sym_tailrec] = ACTIONS(4842), + [anon_sym_operator] = ACTIONS(4842), + [anon_sym_infix] = ACTIONS(4842), + [anon_sym_inline] = ACTIONS(4842), + [anon_sym_external] = ACTIONS(4842), + [sym_property_modifier] = ACTIONS(4842), + [anon_sym_abstract] = ACTIONS(4842), + [anon_sym_final] = ACTIONS(4842), + [anon_sym_open] = ACTIONS(4842), + [anon_sym_vararg] = ACTIONS(4842), + [anon_sym_noinline] = ACTIONS(4842), + [anon_sym_crossinline] = ACTIONS(4842), + [anon_sym_expect] = ACTIONS(4842), + [anon_sym_actual] = ACTIONS(4842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4844), + [anon_sym_continue_AT] = ACTIONS(4844), + [anon_sym_break_AT] = ACTIONS(4844), + [anon_sym_this_AT] = ACTIONS(4844), + [anon_sym_super_AT] = ACTIONS(4844), + [sym_real_literal] = ACTIONS(4844), + [sym_integer_literal] = ACTIONS(4842), + [sym_hex_literal] = ACTIONS(4844), + [sym_bin_literal] = ACTIONS(4844), + [anon_sym_true] = ACTIONS(4842), + [anon_sym_false] = ACTIONS(4842), + [anon_sym_SQUOTE] = ACTIONS(4844), + [sym__backtick_identifier] = ACTIONS(4844), + [sym__automatic_semicolon] = ACTIONS(4844), + [sym_safe_nav] = ACTIONS(4844), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4844), }, - [1053] = { - [sym__alpha_identifier] = ACTIONS(4860), - [anon_sym_AT] = ACTIONS(4862), - [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_EQ] = ACTIONS(4860), - [anon_sym_fun] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4862), - [anon_sym_RBRACE] = ACTIONS(4862), - [anon_sym_LPAREN] = ACTIONS(4862), - [anon_sym_COMMA] = ACTIONS(4862), - [anon_sym_LT] = ACTIONS(4860), - [anon_sym_GT] = ACTIONS(4860), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_object] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4860), - [anon_sym_SEMI] = ACTIONS(4862), - [anon_sym_get] = ACTIONS(4860), - [anon_sym_set] = ACTIONS(4860), - [anon_sym_this] = ACTIONS(4860), - [anon_sym_super] = ACTIONS(4860), - [anon_sym_STAR] = ACTIONS(4860), - [sym_label] = ACTIONS(4860), - [anon_sym_in] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4862), - [anon_sym_QMARK_COLON] = ACTIONS(4862), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE_PIPE] = ACTIONS(4862), - [anon_sym_null] = ACTIONS(4860), - [anon_sym_if] = ACTIONS(4860), - [anon_sym_else] = ACTIONS(4860), - [anon_sym_when] = ACTIONS(4860), - [anon_sym_try] = ACTIONS(4860), - [anon_sym_throw] = ACTIONS(4860), - [anon_sym_return] = ACTIONS(4860), - [anon_sym_continue] = ACTIONS(4860), - [anon_sym_break] = ACTIONS(4860), - [anon_sym_COLON_COLON] = ACTIONS(4862), - [anon_sym_PLUS_EQ] = ACTIONS(4862), - [anon_sym_DASH_EQ] = ACTIONS(4862), - [anon_sym_STAR_EQ] = ACTIONS(4862), - [anon_sym_SLASH_EQ] = ACTIONS(4862), - [anon_sym_PERCENT_EQ] = ACTIONS(4862), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4862), - [anon_sym_LT_EQ] = ACTIONS(4862), - [anon_sym_GT_EQ] = ACTIONS(4862), - [anon_sym_BANGin] = ACTIONS(4862), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_BANGis] = ACTIONS(4862), - [anon_sym_PLUS] = ACTIONS(4860), - [anon_sym_DASH] = ACTIONS(4860), - [anon_sym_SLASH] = ACTIONS(4860), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_as_QMARK] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4862), - [anon_sym_DASH_DASH] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4860), - [anon_sym_BANG_BANG] = ACTIONS(4862), - [anon_sym_suspend] = ACTIONS(4860), - [anon_sym_sealed] = ACTIONS(4860), - [anon_sym_annotation] = ACTIONS(4860), - [anon_sym_data] = ACTIONS(4860), - [anon_sym_inner] = ACTIONS(4860), - [anon_sym_value] = ACTIONS(4860), - [anon_sym_override] = ACTIONS(4860), - [anon_sym_lateinit] = ACTIONS(4860), - [anon_sym_public] = ACTIONS(4860), - [anon_sym_private] = ACTIONS(4860), - [anon_sym_internal] = ACTIONS(4860), - [anon_sym_protected] = ACTIONS(4860), - [anon_sym_tailrec] = ACTIONS(4860), - [anon_sym_operator] = ACTIONS(4860), - [anon_sym_infix] = ACTIONS(4860), - [anon_sym_inline] = ACTIONS(4860), - [anon_sym_external] = ACTIONS(4860), - [sym_property_modifier] = ACTIONS(4860), - [anon_sym_abstract] = ACTIONS(4860), - [anon_sym_final] = ACTIONS(4860), - [anon_sym_open] = ACTIONS(4860), - [anon_sym_vararg] = ACTIONS(4860), - [anon_sym_noinline] = ACTIONS(4860), - [anon_sym_crossinline] = ACTIONS(4860), - [anon_sym_expect] = ACTIONS(4860), - [anon_sym_actual] = ACTIONS(4860), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4862), - [anon_sym_continue_AT] = ACTIONS(4862), - [anon_sym_break_AT] = ACTIONS(4862), - [anon_sym_this_AT] = ACTIONS(4862), - [anon_sym_super_AT] = ACTIONS(4862), - [sym_real_literal] = ACTIONS(4862), - [sym_integer_literal] = ACTIONS(4860), - [sym_hex_literal] = ACTIONS(4862), - [sym_bin_literal] = ACTIONS(4862), - [anon_sym_true] = ACTIONS(4860), - [anon_sym_false] = ACTIONS(4860), - [anon_sym_SQUOTE] = ACTIONS(4862), - [sym__backtick_identifier] = ACTIONS(4862), - [sym__automatic_semicolon] = ACTIONS(4862), - [sym_safe_nav] = ACTIONS(4862), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4862), + [1042] = { + [sym__alpha_identifier] = ACTIONS(4846), + [anon_sym_AT] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_as] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_where] = ACTIONS(4846), + [anon_sym_object] = ACTIONS(4846), + [anon_sym_fun] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_get] = ACTIONS(4846), + [anon_sym_set] = ACTIONS(4846), + [anon_sym_this] = ACTIONS(4846), + [anon_sym_super] = ACTIONS(4846), + [anon_sym_STAR] = ACTIONS(4846), + [sym_label] = ACTIONS(4846), + [anon_sym_in] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4848), + [anon_sym_QMARK_COLON] = ACTIONS(4848), + [anon_sym_AMP_AMP] = ACTIONS(4848), + [anon_sym_PIPE_PIPE] = ACTIONS(4848), + [anon_sym_null] = ACTIONS(4846), + [anon_sym_if] = ACTIONS(4846), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_when] = ACTIONS(4846), + [anon_sym_try] = ACTIONS(4846), + [anon_sym_throw] = ACTIONS(4846), + [anon_sym_return] = ACTIONS(4846), + [anon_sym_continue] = ACTIONS(4846), + [anon_sym_break] = ACTIONS(4846), + [anon_sym_COLON_COLON] = ACTIONS(4848), + [anon_sym_PLUS_EQ] = ACTIONS(4848), + [anon_sym_DASH_EQ] = ACTIONS(4848), + [anon_sym_STAR_EQ] = ACTIONS(4848), + [anon_sym_SLASH_EQ] = ACTIONS(4848), + [anon_sym_PERCENT_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4848), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_BANGin] = ACTIONS(4848), + [anon_sym_is] = ACTIONS(4846), + [anon_sym_BANGis] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4846), + [anon_sym_PERCENT] = ACTIONS(4846), + [anon_sym_as_QMARK] = ACTIONS(4848), + [anon_sym_PLUS_PLUS] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4846), + [anon_sym_BANG_BANG] = ACTIONS(4848), + [anon_sym_suspend] = ACTIONS(4846), + [anon_sym_sealed] = ACTIONS(4846), + [anon_sym_annotation] = ACTIONS(4846), + [anon_sym_data] = ACTIONS(4846), + [anon_sym_inner] = ACTIONS(4846), + [anon_sym_value] = ACTIONS(4846), + [anon_sym_override] = ACTIONS(4846), + [anon_sym_lateinit] = ACTIONS(4846), + [anon_sym_public] = ACTIONS(4846), + [anon_sym_private] = ACTIONS(4846), + [anon_sym_internal] = ACTIONS(4846), + [anon_sym_protected] = ACTIONS(4846), + [anon_sym_tailrec] = ACTIONS(4846), + [anon_sym_operator] = ACTIONS(4846), + [anon_sym_infix] = ACTIONS(4846), + [anon_sym_inline] = ACTIONS(4846), + [anon_sym_external] = ACTIONS(4846), + [sym_property_modifier] = ACTIONS(4846), + [anon_sym_abstract] = ACTIONS(4846), + [anon_sym_final] = ACTIONS(4846), + [anon_sym_open] = ACTIONS(4846), + [anon_sym_vararg] = ACTIONS(4846), + [anon_sym_noinline] = ACTIONS(4846), + [anon_sym_crossinline] = ACTIONS(4846), + [anon_sym_expect] = ACTIONS(4846), + [anon_sym_actual] = ACTIONS(4846), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4848), + [anon_sym_continue_AT] = ACTIONS(4848), + [anon_sym_break_AT] = ACTIONS(4848), + [anon_sym_this_AT] = ACTIONS(4848), + [anon_sym_super_AT] = ACTIONS(4848), + [sym_real_literal] = ACTIONS(4848), + [sym_integer_literal] = ACTIONS(4846), + [sym_hex_literal] = ACTIONS(4848), + [sym_bin_literal] = ACTIONS(4848), + [anon_sym_true] = ACTIONS(4846), + [anon_sym_false] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4848), + [sym__backtick_identifier] = ACTIONS(4848), + [sym__automatic_semicolon] = ACTIONS(4848), + [sym_safe_nav] = ACTIONS(4848), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4848), }, - [1054] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(4864), - [anon_sym_COMMA] = ACTIONS(4239), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_where] = ACTIONS(4236), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_suspend] = ACTIONS(4236), - [anon_sym_sealed] = ACTIONS(4236), - [anon_sym_annotation] = ACTIONS(4236), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4236), - [anon_sym_lateinit] = ACTIONS(4236), - [anon_sym_public] = ACTIONS(4236), - [anon_sym_private] = ACTIONS(4236), - [anon_sym_internal] = ACTIONS(4236), - [anon_sym_protected] = ACTIONS(4236), - [anon_sym_tailrec] = ACTIONS(4236), - [anon_sym_operator] = ACTIONS(4236), - [anon_sym_infix] = ACTIONS(4236), - [anon_sym_inline] = ACTIONS(4236), - [anon_sym_external] = ACTIONS(4236), - [sym_property_modifier] = ACTIONS(4236), - [anon_sym_abstract] = ACTIONS(4236), - [anon_sym_final] = ACTIONS(4236), - [anon_sym_open] = ACTIONS(4236), - [anon_sym_vararg] = ACTIONS(4236), - [anon_sym_noinline] = ACTIONS(4236), - [anon_sym_crossinline] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), + [1043] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_object] = ACTIONS(4850), + [anon_sym_fun] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_this] = ACTIONS(4850), + [anon_sym_super] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [sym_label] = ACTIONS(4850), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_when] = ACTIONS(4850), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_throw] = ACTIONS(4850), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4852), + [anon_sym_continue_AT] = ACTIONS(4852), + [anon_sym_break_AT] = ACTIONS(4852), + [anon_sym_this_AT] = ACTIONS(4852), + [anon_sym_super_AT] = ACTIONS(4852), + [sym_real_literal] = ACTIONS(4852), + [sym_integer_literal] = ACTIONS(4850), + [sym_hex_literal] = ACTIONS(4852), + [sym_bin_literal] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4852), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4852), }, - [1055] = { - [sym__alpha_identifier] = ACTIONS(4868), - [anon_sym_AT] = ACTIONS(4870), - [anon_sym_LBRACK] = ACTIONS(4870), - [anon_sym_as] = ACTIONS(4868), - [anon_sym_EQ] = ACTIONS(4868), - [anon_sym_fun] = ACTIONS(4868), - [anon_sym_LBRACE] = ACTIONS(4870), - [anon_sym_RBRACE] = ACTIONS(4870), - [anon_sym_LPAREN] = ACTIONS(4870), - [anon_sym_COMMA] = ACTIONS(4870), - [anon_sym_LT] = ACTIONS(4868), - [anon_sym_GT] = ACTIONS(4868), - [anon_sym_where] = ACTIONS(4868), - [anon_sym_object] = ACTIONS(4868), - [anon_sym_DOT] = ACTIONS(4868), - [anon_sym_SEMI] = ACTIONS(4870), - [anon_sym_get] = ACTIONS(4868), - [anon_sym_set] = ACTIONS(4868), - [anon_sym_this] = ACTIONS(4868), - [anon_sym_super] = ACTIONS(4868), - [anon_sym_STAR] = ACTIONS(4868), - [sym_label] = ACTIONS(4868), - [anon_sym_in] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4870), - [anon_sym_QMARK_COLON] = ACTIONS(4870), - [anon_sym_AMP_AMP] = ACTIONS(4870), - [anon_sym_PIPE_PIPE] = ACTIONS(4870), - [anon_sym_null] = ACTIONS(4868), - [anon_sym_if] = ACTIONS(4868), - [anon_sym_else] = ACTIONS(4868), - [anon_sym_when] = ACTIONS(4868), - [anon_sym_try] = ACTIONS(4868), - [anon_sym_throw] = ACTIONS(4868), - [anon_sym_return] = ACTIONS(4868), - [anon_sym_continue] = ACTIONS(4868), - [anon_sym_break] = ACTIONS(4868), - [anon_sym_COLON_COLON] = ACTIONS(4870), - [anon_sym_PLUS_EQ] = ACTIONS(4870), - [anon_sym_DASH_EQ] = ACTIONS(4870), - [anon_sym_STAR_EQ] = ACTIONS(4870), - [anon_sym_SLASH_EQ] = ACTIONS(4870), - [anon_sym_PERCENT_EQ] = ACTIONS(4870), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4870), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4870), - [anon_sym_LT_EQ] = ACTIONS(4870), - [anon_sym_GT_EQ] = ACTIONS(4870), - [anon_sym_BANGin] = ACTIONS(4870), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_BANGis] = ACTIONS(4870), - [anon_sym_PLUS] = ACTIONS(4868), - [anon_sym_DASH] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4868), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_as_QMARK] = ACTIONS(4870), - [anon_sym_PLUS_PLUS] = ACTIONS(4870), - [anon_sym_DASH_DASH] = ACTIONS(4870), - [anon_sym_BANG] = ACTIONS(4868), - [anon_sym_BANG_BANG] = ACTIONS(4870), - [anon_sym_suspend] = ACTIONS(4868), - [anon_sym_sealed] = ACTIONS(4868), - [anon_sym_annotation] = ACTIONS(4868), - [anon_sym_data] = ACTIONS(4868), - [anon_sym_inner] = ACTIONS(4868), - [anon_sym_value] = ACTIONS(4868), - [anon_sym_override] = ACTIONS(4868), - [anon_sym_lateinit] = ACTIONS(4868), - [anon_sym_public] = ACTIONS(4868), - [anon_sym_private] = ACTIONS(4868), - [anon_sym_internal] = ACTIONS(4868), - [anon_sym_protected] = ACTIONS(4868), - [anon_sym_tailrec] = ACTIONS(4868), - [anon_sym_operator] = ACTIONS(4868), - [anon_sym_infix] = ACTIONS(4868), - [anon_sym_inline] = ACTIONS(4868), - [anon_sym_external] = ACTIONS(4868), - [sym_property_modifier] = ACTIONS(4868), - [anon_sym_abstract] = ACTIONS(4868), - [anon_sym_final] = ACTIONS(4868), - [anon_sym_open] = ACTIONS(4868), - [anon_sym_vararg] = ACTIONS(4868), - [anon_sym_noinline] = ACTIONS(4868), - [anon_sym_crossinline] = ACTIONS(4868), - [anon_sym_expect] = ACTIONS(4868), - [anon_sym_actual] = ACTIONS(4868), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4870), - [anon_sym_continue_AT] = ACTIONS(4870), - [anon_sym_break_AT] = ACTIONS(4870), - [anon_sym_this_AT] = ACTIONS(4870), - [anon_sym_super_AT] = ACTIONS(4870), - [sym_real_literal] = ACTIONS(4870), - [sym_integer_literal] = ACTIONS(4868), - [sym_hex_literal] = ACTIONS(4870), - [sym_bin_literal] = ACTIONS(4870), - [anon_sym_true] = ACTIONS(4868), - [anon_sym_false] = ACTIONS(4868), - [anon_sym_SQUOTE] = ACTIONS(4870), - [sym__backtick_identifier] = ACTIONS(4870), - [sym__automatic_semicolon] = ACTIONS(4870), - [sym_safe_nav] = ACTIONS(4870), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4870), + [1044] = { + [sym__alpha_identifier] = ACTIONS(4854), + [anon_sym_AT] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4854), + [anon_sym_EQ] = ACTIONS(4854), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4854), + [anon_sym_where] = ACTIONS(4854), + [anon_sym_object] = ACTIONS(4854), + [anon_sym_fun] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_get] = ACTIONS(4854), + [anon_sym_set] = ACTIONS(4854), + [anon_sym_this] = ACTIONS(4854), + [anon_sym_super] = ACTIONS(4854), + [anon_sym_STAR] = ACTIONS(4854), + [sym_label] = ACTIONS(4854), + [anon_sym_in] = ACTIONS(4854), + [anon_sym_DOT_DOT] = ACTIONS(4856), + [anon_sym_QMARK_COLON] = ACTIONS(4856), + [anon_sym_AMP_AMP] = ACTIONS(4856), + [anon_sym_PIPE_PIPE] = ACTIONS(4856), + [anon_sym_null] = ACTIONS(4854), + [anon_sym_if] = ACTIONS(4854), + [anon_sym_else] = ACTIONS(4854), + [anon_sym_when] = ACTIONS(4854), + [anon_sym_try] = ACTIONS(4854), + [anon_sym_throw] = ACTIONS(4854), + [anon_sym_return] = ACTIONS(4854), + [anon_sym_continue] = ACTIONS(4854), + [anon_sym_break] = ACTIONS(4854), + [anon_sym_COLON_COLON] = ACTIONS(4856), + [anon_sym_PLUS_EQ] = ACTIONS(4856), + [anon_sym_DASH_EQ] = ACTIONS(4856), + [anon_sym_STAR_EQ] = ACTIONS(4856), + [anon_sym_SLASH_EQ] = ACTIONS(4856), + [anon_sym_PERCENT_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ] = ACTIONS(4854), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ] = ACTIONS(4854), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4856), + [anon_sym_LT_EQ] = ACTIONS(4856), + [anon_sym_GT_EQ] = ACTIONS(4856), + [anon_sym_BANGin] = ACTIONS(4856), + [anon_sym_is] = ACTIONS(4854), + [anon_sym_BANGis] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4854), + [anon_sym_PERCENT] = ACTIONS(4854), + [anon_sym_as_QMARK] = ACTIONS(4856), + [anon_sym_PLUS_PLUS] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4856), + [anon_sym_BANG] = ACTIONS(4854), + [anon_sym_BANG_BANG] = ACTIONS(4856), + [anon_sym_suspend] = ACTIONS(4854), + [anon_sym_sealed] = ACTIONS(4854), + [anon_sym_annotation] = ACTIONS(4854), + [anon_sym_data] = ACTIONS(4854), + [anon_sym_inner] = ACTIONS(4854), + [anon_sym_value] = ACTIONS(4854), + [anon_sym_override] = ACTIONS(4854), + [anon_sym_lateinit] = ACTIONS(4854), + [anon_sym_public] = ACTIONS(4854), + [anon_sym_private] = ACTIONS(4854), + [anon_sym_internal] = ACTIONS(4854), + [anon_sym_protected] = ACTIONS(4854), + [anon_sym_tailrec] = ACTIONS(4854), + [anon_sym_operator] = ACTIONS(4854), + [anon_sym_infix] = ACTIONS(4854), + [anon_sym_inline] = ACTIONS(4854), + [anon_sym_external] = ACTIONS(4854), + [sym_property_modifier] = ACTIONS(4854), + [anon_sym_abstract] = ACTIONS(4854), + [anon_sym_final] = ACTIONS(4854), + [anon_sym_open] = ACTIONS(4854), + [anon_sym_vararg] = ACTIONS(4854), + [anon_sym_noinline] = ACTIONS(4854), + [anon_sym_crossinline] = ACTIONS(4854), + [anon_sym_expect] = ACTIONS(4854), + [anon_sym_actual] = ACTIONS(4854), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4856), + [anon_sym_continue_AT] = ACTIONS(4856), + [anon_sym_break_AT] = ACTIONS(4856), + [anon_sym_this_AT] = ACTIONS(4856), + [anon_sym_super_AT] = ACTIONS(4856), + [sym_real_literal] = ACTIONS(4856), + [sym_integer_literal] = ACTIONS(4854), + [sym_hex_literal] = ACTIONS(4856), + [sym_bin_literal] = ACTIONS(4856), + [anon_sym_true] = ACTIONS(4854), + [anon_sym_false] = ACTIONS(4854), + [anon_sym_SQUOTE] = ACTIONS(4856), + [sym__backtick_identifier] = ACTIONS(4856), + [sym__automatic_semicolon] = ACTIONS(4856), + [sym_safe_nav] = ACTIONS(4856), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4856), }, - [1056] = { - [sym__alpha_identifier] = ACTIONS(4872), - [anon_sym_AT] = ACTIONS(4874), - [anon_sym_LBRACK] = ACTIONS(4874), - [anon_sym_as] = ACTIONS(4872), - [anon_sym_EQ] = ACTIONS(4872), - [anon_sym_fun] = ACTIONS(4872), - [anon_sym_LBRACE] = ACTIONS(4874), - [anon_sym_RBRACE] = ACTIONS(4874), - [anon_sym_LPAREN] = ACTIONS(4874), - [anon_sym_COMMA] = ACTIONS(4874), - [anon_sym_LT] = ACTIONS(4872), - [anon_sym_GT] = ACTIONS(4872), - [anon_sym_where] = ACTIONS(4872), - [anon_sym_object] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4872), - [anon_sym_SEMI] = ACTIONS(4874), - [anon_sym_get] = ACTIONS(4872), - [anon_sym_set] = ACTIONS(4872), - [anon_sym_this] = ACTIONS(4872), - [anon_sym_super] = ACTIONS(4872), - [anon_sym_STAR] = ACTIONS(4872), - [sym_label] = ACTIONS(4872), - [anon_sym_in] = ACTIONS(4872), - [anon_sym_DOT_DOT] = ACTIONS(4874), - [anon_sym_QMARK_COLON] = ACTIONS(4874), - [anon_sym_AMP_AMP] = ACTIONS(4874), - [anon_sym_PIPE_PIPE] = ACTIONS(4874), - [anon_sym_null] = ACTIONS(4872), - [anon_sym_if] = ACTIONS(4872), - [anon_sym_else] = ACTIONS(4872), - [anon_sym_when] = ACTIONS(4872), - [anon_sym_try] = ACTIONS(4872), - [anon_sym_throw] = ACTIONS(4872), - [anon_sym_return] = ACTIONS(4872), - [anon_sym_continue] = ACTIONS(4872), - [anon_sym_break] = ACTIONS(4872), - [anon_sym_COLON_COLON] = ACTIONS(4874), - [anon_sym_PLUS_EQ] = ACTIONS(4874), - [anon_sym_DASH_EQ] = ACTIONS(4874), - [anon_sym_STAR_EQ] = ACTIONS(4874), - [anon_sym_SLASH_EQ] = ACTIONS(4874), - [anon_sym_PERCENT_EQ] = ACTIONS(4874), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4874), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4874), - [anon_sym_LT_EQ] = ACTIONS(4874), - [anon_sym_GT_EQ] = ACTIONS(4874), - [anon_sym_BANGin] = ACTIONS(4874), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_BANGis] = ACTIONS(4874), - [anon_sym_PLUS] = ACTIONS(4872), - [anon_sym_DASH] = ACTIONS(4872), - [anon_sym_SLASH] = ACTIONS(4872), - [anon_sym_PERCENT] = ACTIONS(4872), - [anon_sym_as_QMARK] = ACTIONS(4874), - [anon_sym_PLUS_PLUS] = ACTIONS(4874), - [anon_sym_DASH_DASH] = ACTIONS(4874), - [anon_sym_BANG] = ACTIONS(4872), - [anon_sym_BANG_BANG] = ACTIONS(4874), - [anon_sym_suspend] = ACTIONS(4872), - [anon_sym_sealed] = ACTIONS(4872), - [anon_sym_annotation] = ACTIONS(4872), - [anon_sym_data] = ACTIONS(4872), - [anon_sym_inner] = ACTIONS(4872), - [anon_sym_value] = ACTIONS(4872), - [anon_sym_override] = ACTIONS(4872), - [anon_sym_lateinit] = ACTIONS(4872), - [anon_sym_public] = ACTIONS(4872), - [anon_sym_private] = ACTIONS(4872), - [anon_sym_internal] = ACTIONS(4872), - [anon_sym_protected] = ACTIONS(4872), - [anon_sym_tailrec] = ACTIONS(4872), - [anon_sym_operator] = ACTIONS(4872), - [anon_sym_infix] = ACTIONS(4872), - [anon_sym_inline] = ACTIONS(4872), - [anon_sym_external] = ACTIONS(4872), - [sym_property_modifier] = ACTIONS(4872), - [anon_sym_abstract] = ACTIONS(4872), - [anon_sym_final] = ACTIONS(4872), - [anon_sym_open] = ACTIONS(4872), - [anon_sym_vararg] = ACTIONS(4872), - [anon_sym_noinline] = ACTIONS(4872), - [anon_sym_crossinline] = ACTIONS(4872), - [anon_sym_expect] = ACTIONS(4872), - [anon_sym_actual] = ACTIONS(4872), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4874), - [anon_sym_continue_AT] = ACTIONS(4874), - [anon_sym_break_AT] = ACTIONS(4874), - [anon_sym_this_AT] = ACTIONS(4874), - [anon_sym_super_AT] = ACTIONS(4874), - [sym_real_literal] = ACTIONS(4874), - [sym_integer_literal] = ACTIONS(4872), - [sym_hex_literal] = ACTIONS(4874), - [sym_bin_literal] = ACTIONS(4874), - [anon_sym_true] = ACTIONS(4872), - [anon_sym_false] = ACTIONS(4872), - [anon_sym_SQUOTE] = ACTIONS(4874), - [sym__backtick_identifier] = ACTIONS(4874), - [sym__automatic_semicolon] = ACTIONS(4874), - [sym_safe_nav] = ACTIONS(4874), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4874), + [1045] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, - [1057] = { + [1046] = { [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(4283), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(4281), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(4862), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), [anon_sym_get] = ACTIONS(4281), [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), [anon_sym_STAR] = ACTIONS(4281), [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), [anon_sym_PLUS] = ACTIONS(4281), [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), [anon_sym_data] = ACTIONS(4281), [anon_sym_inner] = ACTIONS(4281), [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), [anon_sym_expect] = ACTIONS(4281), [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), - }, - [1058] = { - [sym__alpha_identifier] = ACTIONS(4876), - [anon_sym_AT] = ACTIONS(4878), - [anon_sym_LBRACK] = ACTIONS(4878), - [anon_sym_as] = ACTIONS(4876), - [anon_sym_EQ] = ACTIONS(4876), - [anon_sym_fun] = ACTIONS(4876), - [anon_sym_LBRACE] = ACTIONS(4878), - [anon_sym_RBRACE] = ACTIONS(4878), - [anon_sym_LPAREN] = ACTIONS(4878), - [anon_sym_COMMA] = ACTIONS(4878), - [anon_sym_LT] = ACTIONS(4876), - [anon_sym_GT] = ACTIONS(4876), - [anon_sym_where] = ACTIONS(4876), - [anon_sym_object] = ACTIONS(4876), - [anon_sym_DOT] = ACTIONS(4876), - [anon_sym_SEMI] = ACTIONS(4878), - [anon_sym_get] = ACTIONS(4876), - [anon_sym_set] = ACTIONS(4876), - [anon_sym_this] = ACTIONS(4876), - [anon_sym_super] = ACTIONS(4876), - [anon_sym_STAR] = ACTIONS(4876), - [sym_label] = ACTIONS(4876), - [anon_sym_in] = ACTIONS(4876), - [anon_sym_DOT_DOT] = ACTIONS(4878), - [anon_sym_QMARK_COLON] = ACTIONS(4878), - [anon_sym_AMP_AMP] = ACTIONS(4878), - [anon_sym_PIPE_PIPE] = ACTIONS(4878), - [anon_sym_null] = ACTIONS(4876), - [anon_sym_if] = ACTIONS(4876), - [anon_sym_else] = ACTIONS(4876), - [anon_sym_when] = ACTIONS(4876), - [anon_sym_try] = ACTIONS(4876), - [anon_sym_throw] = ACTIONS(4876), - [anon_sym_return] = ACTIONS(4876), - [anon_sym_continue] = ACTIONS(4876), - [anon_sym_break] = ACTIONS(4876), - [anon_sym_COLON_COLON] = ACTIONS(4878), - [anon_sym_PLUS_EQ] = ACTIONS(4878), - [anon_sym_DASH_EQ] = ACTIONS(4878), - [anon_sym_STAR_EQ] = ACTIONS(4878), - [anon_sym_SLASH_EQ] = ACTIONS(4878), - [anon_sym_PERCENT_EQ] = ACTIONS(4878), - [anon_sym_BANG_EQ] = ACTIONS(4876), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4878), - [anon_sym_EQ_EQ] = ACTIONS(4876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4878), - [anon_sym_LT_EQ] = ACTIONS(4878), - [anon_sym_GT_EQ] = ACTIONS(4878), - [anon_sym_BANGin] = ACTIONS(4878), - [anon_sym_is] = ACTIONS(4876), - [anon_sym_BANGis] = ACTIONS(4878), - [anon_sym_PLUS] = ACTIONS(4876), - [anon_sym_DASH] = ACTIONS(4876), - [anon_sym_SLASH] = ACTIONS(4876), - [anon_sym_PERCENT] = ACTIONS(4876), - [anon_sym_as_QMARK] = ACTIONS(4878), - [anon_sym_PLUS_PLUS] = ACTIONS(4878), - [anon_sym_DASH_DASH] = ACTIONS(4878), - [anon_sym_BANG] = ACTIONS(4876), - [anon_sym_BANG_BANG] = ACTIONS(4878), - [anon_sym_suspend] = ACTIONS(4876), - [anon_sym_sealed] = ACTIONS(4876), - [anon_sym_annotation] = ACTIONS(4876), - [anon_sym_data] = ACTIONS(4876), - [anon_sym_inner] = ACTIONS(4876), - [anon_sym_value] = ACTIONS(4876), - [anon_sym_override] = ACTIONS(4876), - [anon_sym_lateinit] = ACTIONS(4876), - [anon_sym_public] = ACTIONS(4876), - [anon_sym_private] = ACTIONS(4876), - [anon_sym_internal] = ACTIONS(4876), - [anon_sym_protected] = ACTIONS(4876), - [anon_sym_tailrec] = ACTIONS(4876), - [anon_sym_operator] = ACTIONS(4876), - [anon_sym_infix] = ACTIONS(4876), - [anon_sym_inline] = ACTIONS(4876), - [anon_sym_external] = ACTIONS(4876), - [sym_property_modifier] = ACTIONS(4876), - [anon_sym_abstract] = ACTIONS(4876), - [anon_sym_final] = ACTIONS(4876), - [anon_sym_open] = ACTIONS(4876), - [anon_sym_vararg] = ACTIONS(4876), - [anon_sym_noinline] = ACTIONS(4876), - [anon_sym_crossinline] = ACTIONS(4876), - [anon_sym_expect] = ACTIONS(4876), - [anon_sym_actual] = ACTIONS(4876), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4878), - [anon_sym_continue_AT] = ACTIONS(4878), - [anon_sym_break_AT] = ACTIONS(4878), - [anon_sym_this_AT] = ACTIONS(4878), - [anon_sym_super_AT] = ACTIONS(4878), - [sym_real_literal] = ACTIONS(4878), - [sym_integer_literal] = ACTIONS(4876), - [sym_hex_literal] = ACTIONS(4878), - [sym_bin_literal] = ACTIONS(4878), - [anon_sym_true] = ACTIONS(4876), - [anon_sym_false] = ACTIONS(4876), - [anon_sym_SQUOTE] = ACTIONS(4878), - [sym__backtick_identifier] = ACTIONS(4878), - [sym__automatic_semicolon] = ACTIONS(4878), - [sym_safe_nav] = ACTIONS(4878), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4878), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [1059] = { - [sym_class_body] = STATE(1207), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(4880), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), + [1047] = { + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_object] = ACTIONS(3992), + [anon_sym_fun] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_this] = ACTIONS(3992), + [anon_sym_super] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3992), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_null] = ACTIONS(3992), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_when] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3994), + [anon_sym_continue_AT] = ACTIONS(3994), + [anon_sym_break_AT] = ACTIONS(3994), + [anon_sym_this_AT] = ACTIONS(3994), + [anon_sym_super_AT] = ACTIONS(3994), + [sym_real_literal] = ACTIONS(3994), + [sym_integer_literal] = ACTIONS(3992), + [sym_hex_literal] = ACTIONS(3994), + [sym_bin_literal] = ACTIONS(3994), + [anon_sym_true] = ACTIONS(3992), + [anon_sym_false] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3994), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3994), }, - [1060] = { - [sym_class_body] = STATE(1132), + [1048] = { [sym__alpha_identifier] = ACTIONS(4443), [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(4882), [anon_sym_LBRACK] = ACTIONS(4445), [anon_sym_as] = ACTIONS(4443), [anon_sym_EQ] = ACTIONS(4443), - [anon_sym_fun] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(4445), [anon_sym_RBRACE] = ACTIONS(4445), [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), [anon_sym_LT] = ACTIONS(4443), [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), [anon_sym_DOT] = ACTIONS(4443), [anon_sym_SEMI] = ACTIONS(4445), [anon_sym_get] = ACTIONS(4443), @@ -172054,119 +169791,754 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4445), }, - [1061] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(4884), - [anon_sym_COMMA] = ACTIONS(4350), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_where] = ACTIONS(4347), - [anon_sym_object] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_suspend] = ACTIONS(4347), - [anon_sym_sealed] = ACTIONS(4347), - [anon_sym_annotation] = ACTIONS(4347), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4347), - [anon_sym_lateinit] = ACTIONS(4347), - [anon_sym_public] = ACTIONS(4347), - [anon_sym_private] = ACTIONS(4347), - [anon_sym_internal] = ACTIONS(4347), - [anon_sym_protected] = ACTIONS(4347), - [anon_sym_tailrec] = ACTIONS(4347), - [anon_sym_operator] = ACTIONS(4347), - [anon_sym_infix] = ACTIONS(4347), - [anon_sym_inline] = ACTIONS(4347), - [anon_sym_external] = ACTIONS(4347), - [sym_property_modifier] = ACTIONS(4347), - [anon_sym_abstract] = ACTIONS(4347), - [anon_sym_final] = ACTIONS(4347), - [anon_sym_open] = ACTIONS(4347), - [anon_sym_vararg] = ACTIONS(4347), - [anon_sym_noinline] = ACTIONS(4347), - [anon_sym_crossinline] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), + [1049] = { + [sym__alpha_identifier] = ACTIONS(4866), + [anon_sym_AT] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_as] = ACTIONS(4866), + [anon_sym_EQ] = ACTIONS(4866), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4866), + [anon_sym_where] = ACTIONS(4866), + [anon_sym_object] = ACTIONS(4866), + [anon_sym_fun] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_get] = ACTIONS(4866), + [anon_sym_set] = ACTIONS(4866), + [anon_sym_this] = ACTIONS(4866), + [anon_sym_super] = ACTIONS(4866), + [anon_sym_STAR] = ACTIONS(4866), + [sym_label] = ACTIONS(4866), + [anon_sym_in] = ACTIONS(4866), + [anon_sym_DOT_DOT] = ACTIONS(4868), + [anon_sym_QMARK_COLON] = ACTIONS(4868), + [anon_sym_AMP_AMP] = ACTIONS(4868), + [anon_sym_PIPE_PIPE] = ACTIONS(4868), + [anon_sym_null] = ACTIONS(4866), + [anon_sym_if] = ACTIONS(4866), + [anon_sym_else] = ACTIONS(4866), + [anon_sym_when] = ACTIONS(4866), + [anon_sym_try] = ACTIONS(4866), + [anon_sym_throw] = ACTIONS(4866), + [anon_sym_return] = ACTIONS(4866), + [anon_sym_continue] = ACTIONS(4866), + [anon_sym_break] = ACTIONS(4866), + [anon_sym_COLON_COLON] = ACTIONS(4868), + [anon_sym_PLUS_EQ] = ACTIONS(4868), + [anon_sym_DASH_EQ] = ACTIONS(4868), + [anon_sym_STAR_EQ] = ACTIONS(4868), + [anon_sym_SLASH_EQ] = ACTIONS(4868), + [anon_sym_PERCENT_EQ] = ACTIONS(4868), + [anon_sym_BANG_EQ] = ACTIONS(4866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4868), + [anon_sym_EQ_EQ] = ACTIONS(4866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4868), + [anon_sym_LT_EQ] = ACTIONS(4868), + [anon_sym_GT_EQ] = ACTIONS(4868), + [anon_sym_BANGin] = ACTIONS(4868), + [anon_sym_is] = ACTIONS(4866), + [anon_sym_BANGis] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4866), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4866), + [anon_sym_PERCENT] = ACTIONS(4866), + [anon_sym_as_QMARK] = ACTIONS(4868), + [anon_sym_PLUS_PLUS] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4868), + [anon_sym_BANG] = ACTIONS(4866), + [anon_sym_BANG_BANG] = ACTIONS(4868), + [anon_sym_suspend] = ACTIONS(4866), + [anon_sym_sealed] = ACTIONS(4866), + [anon_sym_annotation] = ACTIONS(4866), + [anon_sym_data] = ACTIONS(4866), + [anon_sym_inner] = ACTIONS(4866), + [anon_sym_value] = ACTIONS(4866), + [anon_sym_override] = ACTIONS(4866), + [anon_sym_lateinit] = ACTIONS(4866), + [anon_sym_public] = ACTIONS(4866), + [anon_sym_private] = ACTIONS(4866), + [anon_sym_internal] = ACTIONS(4866), + [anon_sym_protected] = ACTIONS(4866), + [anon_sym_tailrec] = ACTIONS(4866), + [anon_sym_operator] = ACTIONS(4866), + [anon_sym_infix] = ACTIONS(4866), + [anon_sym_inline] = ACTIONS(4866), + [anon_sym_external] = ACTIONS(4866), + [sym_property_modifier] = ACTIONS(4866), + [anon_sym_abstract] = ACTIONS(4866), + [anon_sym_final] = ACTIONS(4866), + [anon_sym_open] = ACTIONS(4866), + [anon_sym_vararg] = ACTIONS(4866), + [anon_sym_noinline] = ACTIONS(4866), + [anon_sym_crossinline] = ACTIONS(4866), + [anon_sym_expect] = ACTIONS(4866), + [anon_sym_actual] = ACTIONS(4866), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4868), + [anon_sym_continue_AT] = ACTIONS(4868), + [anon_sym_break_AT] = ACTIONS(4868), + [anon_sym_this_AT] = ACTIONS(4868), + [anon_sym_super_AT] = ACTIONS(4868), + [sym_real_literal] = ACTIONS(4868), + [sym_integer_literal] = ACTIONS(4866), + [sym_hex_literal] = ACTIONS(4868), + [sym_bin_literal] = ACTIONS(4868), + [anon_sym_true] = ACTIONS(4866), + [anon_sym_false] = ACTIONS(4866), + [anon_sym_SQUOTE] = ACTIONS(4868), + [sym__backtick_identifier] = ACTIONS(4868), + [sym__automatic_semicolon] = ACTIONS(4868), + [sym_safe_nav] = ACTIONS(4868), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4868), }, - [1062] = { + [1050] = { + [sym__alpha_identifier] = ACTIONS(4870), + [anon_sym_AT] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_as] = ACTIONS(4870), + [anon_sym_EQ] = ACTIONS(4870), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_RBRACE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4870), + [anon_sym_where] = ACTIONS(4870), + [anon_sym_object] = ACTIONS(4870), + [anon_sym_fun] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_get] = ACTIONS(4870), + [anon_sym_set] = ACTIONS(4870), + [anon_sym_this] = ACTIONS(4870), + [anon_sym_super] = ACTIONS(4870), + [anon_sym_STAR] = ACTIONS(4870), + [sym_label] = ACTIONS(4870), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4872), + [anon_sym_AMP_AMP] = ACTIONS(4872), + [anon_sym_PIPE_PIPE] = ACTIONS(4872), + [anon_sym_null] = ACTIONS(4870), + [anon_sym_if] = ACTIONS(4870), + [anon_sym_else] = ACTIONS(4870), + [anon_sym_when] = ACTIONS(4870), + [anon_sym_try] = ACTIONS(4870), + [anon_sym_throw] = ACTIONS(4870), + [anon_sym_return] = ACTIONS(4870), + [anon_sym_continue] = ACTIONS(4870), + [anon_sym_break] = ACTIONS(4870), + [anon_sym_COLON_COLON] = ACTIONS(4872), + [anon_sym_PLUS_EQ] = ACTIONS(4872), + [anon_sym_DASH_EQ] = ACTIONS(4872), + [anon_sym_STAR_EQ] = ACTIONS(4872), + [anon_sym_SLASH_EQ] = ACTIONS(4872), + [anon_sym_PERCENT_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ] = ACTIONS(4870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4872), + [anon_sym_EQ_EQ] = ACTIONS(4870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4872), + [anon_sym_LT_EQ] = ACTIONS(4872), + [anon_sym_GT_EQ] = ACTIONS(4872), + [anon_sym_BANGin] = ACTIONS(4872), + [anon_sym_is] = ACTIONS(4870), + [anon_sym_BANGis] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4870), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4870), + [anon_sym_PERCENT] = ACTIONS(4870), + [anon_sym_as_QMARK] = ACTIONS(4872), + [anon_sym_PLUS_PLUS] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4872), + [anon_sym_BANG] = ACTIONS(4870), + [anon_sym_BANG_BANG] = ACTIONS(4872), + [anon_sym_suspend] = ACTIONS(4870), + [anon_sym_sealed] = ACTIONS(4870), + [anon_sym_annotation] = ACTIONS(4870), + [anon_sym_data] = ACTIONS(4870), + [anon_sym_inner] = ACTIONS(4870), + [anon_sym_value] = ACTIONS(4870), + [anon_sym_override] = ACTIONS(4870), + [anon_sym_lateinit] = ACTIONS(4870), + [anon_sym_public] = ACTIONS(4870), + [anon_sym_private] = ACTIONS(4870), + [anon_sym_internal] = ACTIONS(4870), + [anon_sym_protected] = ACTIONS(4870), + [anon_sym_tailrec] = ACTIONS(4870), + [anon_sym_operator] = ACTIONS(4870), + [anon_sym_infix] = ACTIONS(4870), + [anon_sym_inline] = ACTIONS(4870), + [anon_sym_external] = ACTIONS(4870), + [sym_property_modifier] = ACTIONS(4870), + [anon_sym_abstract] = ACTIONS(4870), + [anon_sym_final] = ACTIONS(4870), + [anon_sym_open] = ACTIONS(4870), + [anon_sym_vararg] = ACTIONS(4870), + [anon_sym_noinline] = ACTIONS(4870), + [anon_sym_crossinline] = ACTIONS(4870), + [anon_sym_expect] = ACTIONS(4870), + [anon_sym_actual] = ACTIONS(4870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4872), + [anon_sym_continue_AT] = ACTIONS(4872), + [anon_sym_break_AT] = ACTIONS(4872), + [anon_sym_this_AT] = ACTIONS(4872), + [anon_sym_super_AT] = ACTIONS(4872), + [sym_real_literal] = ACTIONS(4872), + [sym_integer_literal] = ACTIONS(4870), + [sym_hex_literal] = ACTIONS(4872), + [sym_bin_literal] = ACTIONS(4872), + [anon_sym_true] = ACTIONS(4870), + [anon_sym_false] = ACTIONS(4870), + [anon_sym_SQUOTE] = ACTIONS(4872), + [sym__backtick_identifier] = ACTIONS(4872), + [sym__automatic_semicolon] = ACTIONS(4872), + [sym_safe_nav] = ACTIONS(4872), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4872), + }, + [1051] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(4878), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), + }, + [1052] = { + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_as] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), + [anon_sym_this] = ACTIONS(123), + [anon_sym_super] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(123), + [sym_label] = ACTIONS(123), + [anon_sym_in] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_break] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(121), + [anon_sym_DASH_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(123), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(123), + [anon_sym_sealed] = ACTIONS(123), + [anon_sym_annotation] = ACTIONS(123), + [anon_sym_data] = ACTIONS(123), + [anon_sym_inner] = ACTIONS(123), + [anon_sym_value] = ACTIONS(123), + [anon_sym_override] = ACTIONS(123), + [anon_sym_lateinit] = ACTIONS(123), + [anon_sym_public] = ACTIONS(123), + [anon_sym_private] = ACTIONS(123), + [anon_sym_internal] = ACTIONS(123), + [anon_sym_protected] = ACTIONS(123), + [anon_sym_tailrec] = ACTIONS(123), + [anon_sym_operator] = ACTIONS(123), + [anon_sym_infix] = ACTIONS(123), + [anon_sym_inline] = ACTIONS(123), + [anon_sym_external] = ACTIONS(123), + [sym_property_modifier] = ACTIONS(123), + [anon_sym_abstract] = ACTIONS(123), + [anon_sym_final] = ACTIONS(123), + [anon_sym_open] = ACTIONS(123), + [anon_sym_vararg] = ACTIONS(123), + [anon_sym_noinline] = ACTIONS(123), + [anon_sym_crossinline] = ACTIONS(123), + [anon_sym_expect] = ACTIONS(123), + [anon_sym_actual] = ACTIONS(123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(121), + [anon_sym_continue_AT] = ACTIONS(121), + [anon_sym_break_AT] = ACTIONS(121), + [anon_sym_this_AT] = ACTIONS(121), + [anon_sym_super_AT] = ACTIONS(121), + [sym_real_literal] = ACTIONS(121), + [sym_integer_literal] = ACTIONS(123), + [sym_hex_literal] = ACTIONS(121), + [sym_bin_literal] = ACTIONS(121), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), + [anon_sym_SQUOTE] = ACTIONS(121), + [sym__backtick_identifier] = ACTIONS(121), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(121), + }, + [1053] = { + [sym__alpha_identifier] = ACTIONS(4880), + [anon_sym_AT] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_as] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_COMMA] = ACTIONS(4882), + [anon_sym_LT] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_object] = ACTIONS(4880), + [anon_sym_fun] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4882), + [anon_sym_get] = ACTIONS(4880), + [anon_sym_set] = ACTIONS(4880), + [anon_sym_this] = ACTIONS(4880), + [anon_sym_super] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [sym_label] = ACTIONS(4880), + [anon_sym_in] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_QMARK_COLON] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_PIPE_PIPE] = ACTIONS(4882), + [anon_sym_null] = ACTIONS(4880), + [anon_sym_if] = ACTIONS(4880), + [anon_sym_else] = ACTIONS(4880), + [anon_sym_when] = ACTIONS(4880), + [anon_sym_try] = ACTIONS(4880), + [anon_sym_throw] = ACTIONS(4880), + [anon_sym_return] = ACTIONS(4880), + [anon_sym_continue] = ACTIONS(4880), + [anon_sym_break] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_PLUS_EQ] = ACTIONS(4882), + [anon_sym_DASH_EQ] = ACTIONS(4882), + [anon_sym_STAR_EQ] = ACTIONS(4882), + [anon_sym_SLASH_EQ] = ACTIONS(4882), + [anon_sym_PERCENT_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4882), + [anon_sym_BANGin] = ACTIONS(4882), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_BANGis] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_as_QMARK] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4882), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_BANG_BANG] = ACTIONS(4882), + [anon_sym_suspend] = ACTIONS(4880), + [anon_sym_sealed] = ACTIONS(4880), + [anon_sym_annotation] = ACTIONS(4880), + [anon_sym_data] = ACTIONS(4880), + [anon_sym_inner] = ACTIONS(4880), + [anon_sym_value] = ACTIONS(4880), + [anon_sym_override] = ACTIONS(4880), + [anon_sym_lateinit] = ACTIONS(4880), + [anon_sym_public] = ACTIONS(4880), + [anon_sym_private] = ACTIONS(4880), + [anon_sym_internal] = ACTIONS(4880), + [anon_sym_protected] = ACTIONS(4880), + [anon_sym_tailrec] = ACTIONS(4880), + [anon_sym_operator] = ACTIONS(4880), + [anon_sym_infix] = ACTIONS(4880), + [anon_sym_inline] = ACTIONS(4880), + [anon_sym_external] = ACTIONS(4880), + [sym_property_modifier] = ACTIONS(4880), + [anon_sym_abstract] = ACTIONS(4880), + [anon_sym_final] = ACTIONS(4880), + [anon_sym_open] = ACTIONS(4880), + [anon_sym_vararg] = ACTIONS(4880), + [anon_sym_noinline] = ACTIONS(4880), + [anon_sym_crossinline] = ACTIONS(4880), + [anon_sym_expect] = ACTIONS(4880), + [anon_sym_actual] = ACTIONS(4880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4882), + [anon_sym_continue_AT] = ACTIONS(4882), + [anon_sym_break_AT] = ACTIONS(4882), + [anon_sym_this_AT] = ACTIONS(4882), + [anon_sym_super_AT] = ACTIONS(4882), + [sym_real_literal] = ACTIONS(4882), + [sym_integer_literal] = ACTIONS(4880), + [sym_hex_literal] = ACTIONS(4882), + [sym_bin_literal] = ACTIONS(4882), + [anon_sym_true] = ACTIONS(4880), + [anon_sym_false] = ACTIONS(4880), + [anon_sym_SQUOTE] = ACTIONS(4882), + [sym__backtick_identifier] = ACTIONS(4882), + [sym__automatic_semicolon] = ACTIONS(4882), + [sym_safe_nav] = ACTIONS(4882), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4882), + }, + [1054] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), + }, + [1055] = { + [sym__alpha_identifier] = ACTIONS(4884), + [anon_sym_AT] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_as] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4886), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4886), + [anon_sym_COMMA] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_where] = ACTIONS(4884), + [anon_sym_object] = ACTIONS(4884), + [anon_sym_fun] = ACTIONS(4884), + [anon_sym_DOT] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4886), + [anon_sym_get] = ACTIONS(4884), + [anon_sym_set] = ACTIONS(4884), + [anon_sym_this] = ACTIONS(4884), + [anon_sym_super] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [sym_label] = ACTIONS(4884), + [anon_sym_in] = ACTIONS(4884), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_QMARK_COLON] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_PIPE_PIPE] = ACTIONS(4886), + [anon_sym_null] = ACTIONS(4884), + [anon_sym_if] = ACTIONS(4884), + [anon_sym_else] = ACTIONS(4884), + [anon_sym_when] = ACTIONS(4884), + [anon_sym_try] = ACTIONS(4884), + [anon_sym_throw] = ACTIONS(4884), + [anon_sym_return] = ACTIONS(4884), + [anon_sym_continue] = ACTIONS(4884), + [anon_sym_break] = ACTIONS(4884), + [anon_sym_COLON_COLON] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4886), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(4884), + [anon_sym_BANGis] = ACTIONS(4886), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_as_QMARK] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4886), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_BANG_BANG] = ACTIONS(4886), + [anon_sym_suspend] = ACTIONS(4884), + [anon_sym_sealed] = ACTIONS(4884), + [anon_sym_annotation] = ACTIONS(4884), + [anon_sym_data] = ACTIONS(4884), + [anon_sym_inner] = ACTIONS(4884), + [anon_sym_value] = ACTIONS(4884), + [anon_sym_override] = ACTIONS(4884), + [anon_sym_lateinit] = ACTIONS(4884), + [anon_sym_public] = ACTIONS(4884), + [anon_sym_private] = ACTIONS(4884), + [anon_sym_internal] = ACTIONS(4884), + [anon_sym_protected] = ACTIONS(4884), + [anon_sym_tailrec] = ACTIONS(4884), + [anon_sym_operator] = ACTIONS(4884), + [anon_sym_infix] = ACTIONS(4884), + [anon_sym_inline] = ACTIONS(4884), + [anon_sym_external] = ACTIONS(4884), + [sym_property_modifier] = ACTIONS(4884), + [anon_sym_abstract] = ACTIONS(4884), + [anon_sym_final] = ACTIONS(4884), + [anon_sym_open] = ACTIONS(4884), + [anon_sym_vararg] = ACTIONS(4884), + [anon_sym_noinline] = ACTIONS(4884), + [anon_sym_crossinline] = ACTIONS(4884), + [anon_sym_expect] = ACTIONS(4884), + [anon_sym_actual] = ACTIONS(4884), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4886), + [anon_sym_continue_AT] = ACTIONS(4886), + [anon_sym_break_AT] = ACTIONS(4886), + [anon_sym_this_AT] = ACTIONS(4886), + [anon_sym_super_AT] = ACTIONS(4886), + [sym_real_literal] = ACTIONS(4886), + [sym_integer_literal] = ACTIONS(4884), + [sym_hex_literal] = ACTIONS(4886), + [sym_bin_literal] = ACTIONS(4886), + [anon_sym_true] = ACTIONS(4884), + [anon_sym_false] = ACTIONS(4884), + [anon_sym_SQUOTE] = ACTIONS(4886), + [sym__backtick_identifier] = ACTIONS(4886), + [sym__automatic_semicolon] = ACTIONS(4886), + [sym_safe_nav] = ACTIONS(4886), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4886), + }, + [1056] = { [sym__alpha_identifier] = ACTIONS(4888), [anon_sym_AT] = ACTIONS(4890), [anon_sym_LBRACK] = ACTIONS(4890), [anon_sym_as] = ACTIONS(4888), [anon_sym_EQ] = ACTIONS(4888), - [anon_sym_fun] = ACTIONS(4888), [anon_sym_LBRACE] = ACTIONS(4890), [anon_sym_RBRACE] = ACTIONS(4890), [anon_sym_LPAREN] = ACTIONS(4890), @@ -172175,6 +170547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4888), [anon_sym_where] = ACTIONS(4888), [anon_sym_object] = ACTIONS(4888), + [anon_sym_fun] = ACTIONS(4888), [anon_sym_DOT] = ACTIONS(4888), [anon_sym_SEMI] = ACTIONS(4890), [anon_sym_get] = ACTIONS(4888), @@ -172266,437 +170639,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4890), }, - [1063] = { - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4892), - [anon_sym_get] = ACTIONS(4846), - [anon_sym_set] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1064] = { - [sym__alpha_identifier] = ACTIONS(3130), - [anon_sym_AT] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_as] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3130), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3130), - [anon_sym_set] = ACTIONS(3130), - [anon_sym_this] = ACTIONS(3130), - [anon_sym_super] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3130), - [sym_label] = ACTIONS(3130), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(3132), - [anon_sym_QMARK_COLON] = ACTIONS(3132), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_when] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_SLASH] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_as_QMARK] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_BANG_BANG] = ACTIONS(3132), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_annotation] = ACTIONS(3130), - [anon_sym_data] = ACTIONS(3130), - [anon_sym_inner] = ACTIONS(3130), - [anon_sym_value] = ACTIONS(3130), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_lateinit] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_tailrec] = ACTIONS(3130), - [anon_sym_operator] = ACTIONS(3130), - [anon_sym_infix] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_external] = ACTIONS(3130), - [sym_property_modifier] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3130), - [anon_sym_noinline] = ACTIONS(3130), - [anon_sym_crossinline] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3130), - [anon_sym_actual] = ACTIONS(3130), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3132), - [anon_sym_continue_AT] = ACTIONS(3132), - [anon_sym_break_AT] = ACTIONS(3132), - [anon_sym_this_AT] = ACTIONS(3132), - [anon_sym_super_AT] = ACTIONS(3132), - [sym_real_literal] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(3130), - [sym_hex_literal] = ACTIONS(3132), - [sym_bin_literal] = ACTIONS(3132), - [anon_sym_true] = ACTIONS(3130), - [anon_sym_false] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3132), - [sym__backtick_identifier] = ACTIONS(3132), - [sym__automatic_semicolon] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(3132), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3132), - }, - [1065] = { - [sym__alpha_identifier] = ACTIONS(4082), - [anon_sym_AT] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(4082), - [anon_sym_EQ] = ACTIONS(4082), - [anon_sym_fun] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_where] = ACTIONS(4082), - [anon_sym_object] = ACTIONS(4082), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_get] = ACTIONS(4082), - [anon_sym_set] = ACTIONS(4082), - [anon_sym_this] = ACTIONS(4082), - [anon_sym_super] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [sym_label] = ACTIONS(4082), - [anon_sym_in] = ACTIONS(4082), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_QMARK_COLON] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_null] = ACTIONS(4082), - [anon_sym_if] = ACTIONS(4082), - [anon_sym_else] = ACTIONS(4082), - [anon_sym_when] = ACTIONS(4082), - [anon_sym_try] = ACTIONS(4082), - [anon_sym_throw] = ACTIONS(4082), - [anon_sym_return] = ACTIONS(4082), - [anon_sym_continue] = ACTIONS(4082), - [anon_sym_break] = ACTIONS(4082), - [anon_sym_COLON_COLON] = ACTIONS(4084), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_STAR_EQ] = ACTIONS(4084), - [anon_sym_SLASH_EQ] = ACTIONS(4084), - [anon_sym_PERCENT_EQ] = ACTIONS(4084), - [anon_sym_BANG_EQ] = ACTIONS(4082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_BANGin] = ACTIONS(4084), - [anon_sym_is] = ACTIONS(4082), - [anon_sym_BANGis] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_SLASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4082), - [anon_sym_as_QMARK] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_BANG_BANG] = ACTIONS(4084), - [anon_sym_suspend] = ACTIONS(4082), - [anon_sym_sealed] = ACTIONS(4082), - [anon_sym_annotation] = ACTIONS(4082), - [anon_sym_data] = ACTIONS(4082), - [anon_sym_inner] = ACTIONS(4082), - [anon_sym_value] = ACTIONS(4082), - [anon_sym_override] = ACTIONS(4082), - [anon_sym_lateinit] = ACTIONS(4082), - [anon_sym_public] = ACTIONS(4082), - [anon_sym_private] = ACTIONS(4082), - [anon_sym_internal] = ACTIONS(4082), - [anon_sym_protected] = ACTIONS(4082), - [anon_sym_tailrec] = ACTIONS(4082), - [anon_sym_operator] = ACTIONS(4082), - [anon_sym_infix] = ACTIONS(4082), - [anon_sym_inline] = ACTIONS(4082), - [anon_sym_external] = ACTIONS(4082), - [sym_property_modifier] = ACTIONS(4082), - [anon_sym_abstract] = ACTIONS(4082), - [anon_sym_final] = ACTIONS(4082), - [anon_sym_open] = ACTIONS(4082), - [anon_sym_vararg] = ACTIONS(4082), - [anon_sym_noinline] = ACTIONS(4082), - [anon_sym_crossinline] = ACTIONS(4082), - [anon_sym_expect] = ACTIONS(4082), - [anon_sym_actual] = ACTIONS(4082), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4084), - [anon_sym_continue_AT] = ACTIONS(4084), - [anon_sym_break_AT] = ACTIONS(4084), - [anon_sym_this_AT] = ACTIONS(4084), - [anon_sym_super_AT] = ACTIONS(4084), - [sym_real_literal] = ACTIONS(4084), - [sym_integer_literal] = ACTIONS(4082), - [sym_hex_literal] = ACTIONS(4084), - [sym_bin_literal] = ACTIONS(4084), - [anon_sym_true] = ACTIONS(4082), - [anon_sym_false] = ACTIONS(4082), - [anon_sym_SQUOTE] = ACTIONS(4084), - [sym__backtick_identifier] = ACTIONS(4084), - [sym__automatic_semicolon] = ACTIONS(4084), - [sym_safe_nav] = ACTIONS(4084), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4084), + [1057] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), }, - [1066] = { - [sym__alpha_identifier] = ACTIONS(4894), - [anon_sym_AT] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(4896), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4894), - [anon_sym_fun] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), + [1058] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), [anon_sym_LPAREN] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_object] = ACTIONS(4894), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_get] = ACTIONS(4894), - [anon_sym_set] = ACTIONS(4894), - [anon_sym_this] = ACTIONS(4894), - [anon_sym_super] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4894), - [sym_label] = ACTIONS(4894), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_QMARK_COLON] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_null] = ACTIONS(4894), - [anon_sym_if] = ACTIONS(4894), - [anon_sym_else] = ACTIONS(4894), - [anon_sym_when] = ACTIONS(4894), - [anon_sym_try] = ACTIONS(4894), - [anon_sym_throw] = ACTIONS(4894), - [anon_sym_return] = ACTIONS(4894), - [anon_sym_continue] = ACTIONS(4894), - [anon_sym_break] = ACTIONS(4894), - [anon_sym_COLON_COLON] = ACTIONS(4896), - [anon_sym_PLUS_EQ] = ACTIONS(4896), - [anon_sym_DASH_EQ] = ACTIONS(4896), - [anon_sym_STAR_EQ] = ACTIONS(4896), - [anon_sym_SLASH_EQ] = ACTIONS(4896), - [anon_sym_PERCENT_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_BANGin] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_BANGis] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_as_QMARK] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4896), - [anon_sym_DASH_DASH] = ACTIONS(4896), - [anon_sym_BANG] = ACTIONS(4894), - [anon_sym_BANG_BANG] = ACTIONS(4896), - [anon_sym_suspend] = ACTIONS(4894), - [anon_sym_sealed] = ACTIONS(4894), - [anon_sym_annotation] = ACTIONS(4894), - [anon_sym_data] = ACTIONS(4894), - [anon_sym_inner] = ACTIONS(4894), - [anon_sym_value] = ACTIONS(4894), - [anon_sym_override] = ACTIONS(4894), - [anon_sym_lateinit] = ACTIONS(4894), - [anon_sym_public] = ACTIONS(4894), - [anon_sym_private] = ACTIONS(4894), - [anon_sym_internal] = ACTIONS(4894), - [anon_sym_protected] = ACTIONS(4894), - [anon_sym_tailrec] = ACTIONS(4894), - [anon_sym_operator] = ACTIONS(4894), - [anon_sym_infix] = ACTIONS(4894), - [anon_sym_inline] = ACTIONS(4894), - [anon_sym_external] = ACTIONS(4894), - [sym_property_modifier] = ACTIONS(4894), - [anon_sym_abstract] = ACTIONS(4894), - [anon_sym_final] = ACTIONS(4894), - [anon_sym_open] = ACTIONS(4894), - [anon_sym_vararg] = ACTIONS(4894), - [anon_sym_noinline] = ACTIONS(4894), - [anon_sym_crossinline] = ACTIONS(4894), - [anon_sym_expect] = ACTIONS(4894), - [anon_sym_actual] = ACTIONS(4894), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4896), - [anon_sym_continue_AT] = ACTIONS(4896), - [anon_sym_break_AT] = ACTIONS(4896), - [anon_sym_this_AT] = ACTIONS(4896), - [anon_sym_super_AT] = ACTIONS(4896), - [sym_real_literal] = ACTIONS(4896), - [sym_integer_literal] = ACTIONS(4894), - [sym_hex_literal] = ACTIONS(4896), - [sym_bin_literal] = ACTIONS(4896), - [anon_sym_true] = ACTIONS(4894), - [anon_sym_false] = ACTIONS(4894), - [anon_sym_SQUOTE] = ACTIONS(4896), - [sym__backtick_identifier] = ACTIONS(4896), - [sym__automatic_semicolon] = ACTIONS(4896), - [sym_safe_nav] = ACTIONS(4896), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), }, - [1067] = { + [1059] = { [sym__alpha_identifier] = ACTIONS(4898), [anon_sym_AT] = ACTIONS(4900), [anon_sym_LBRACK] = ACTIONS(4900), [anon_sym_as] = ACTIONS(4898), [anon_sym_EQ] = ACTIONS(4898), - [anon_sym_fun] = ACTIONS(4898), [anon_sym_LBRACE] = ACTIONS(4900), [anon_sym_RBRACE] = ACTIONS(4900), [anon_sym_LPAREN] = ACTIONS(4900), @@ -172705,6 +170865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4898), [anon_sym_where] = ACTIONS(4898), [anon_sym_object] = ACTIONS(4898), + [anon_sym_fun] = ACTIONS(4898), [anon_sym_DOT] = ACTIONS(4898), [anon_sym_SEMI] = ACTIONS(4900), [anon_sym_get] = ACTIONS(4898), @@ -172796,13 +170957,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4900), }, - [1068] = { + [1060] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), + }, + [1061] = { + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4295), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [1062] = { [sym__alpha_identifier] = ACTIONS(4902), [anon_sym_AT] = ACTIONS(4904), [anon_sym_LBRACK] = ACTIONS(4904), [anon_sym_as] = ACTIONS(4902), [anon_sym_EQ] = ACTIONS(4902), - [anon_sym_fun] = ACTIONS(4902), [anon_sym_LBRACE] = ACTIONS(4904), [anon_sym_RBRACE] = ACTIONS(4904), [anon_sym_LPAREN] = ACTIONS(4904), @@ -172811,6 +171183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4902), [anon_sym_where] = ACTIONS(4902), [anon_sym_object] = ACTIONS(4902), + [anon_sym_fun] = ACTIONS(4902), [anon_sym_DOT] = ACTIONS(4902), [anon_sym_SEMI] = ACTIONS(4904), [anon_sym_get] = ACTIONS(4902), @@ -172902,119 +171275,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4904), }, - [1069] = { - [sym__alpha_identifier] = ACTIONS(4130), - [anon_sym_AT] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_as] = ACTIONS(4130), - [anon_sym_EQ] = ACTIONS(4130), - [anon_sym_fun] = ACTIONS(4130), - [anon_sym_LBRACE] = ACTIONS(4132), - [anon_sym_RBRACE] = ACTIONS(4132), - [anon_sym_LPAREN] = ACTIONS(4132), - [anon_sym_COMMA] = ACTIONS(4132), - [anon_sym_LT] = ACTIONS(4130), - [anon_sym_GT] = ACTIONS(4130), - [anon_sym_where] = ACTIONS(4130), - [anon_sym_object] = ACTIONS(4130), - [anon_sym_DOT] = ACTIONS(4130), - [anon_sym_SEMI] = ACTIONS(4132), - [anon_sym_get] = ACTIONS(4130), - [anon_sym_set] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_super] = ACTIONS(4130), - [anon_sym_STAR] = ACTIONS(4130), - [sym_label] = ACTIONS(4130), - [anon_sym_in] = ACTIONS(4130), - [anon_sym_DOT_DOT] = ACTIONS(4132), - [anon_sym_QMARK_COLON] = ACTIONS(4132), - [anon_sym_AMP_AMP] = ACTIONS(4132), - [anon_sym_PIPE_PIPE] = ACTIONS(4132), - [anon_sym_null] = ACTIONS(4130), - [anon_sym_if] = ACTIONS(4130), - [anon_sym_else] = ACTIONS(4130), - [anon_sym_when] = ACTIONS(4130), - [anon_sym_try] = ACTIONS(4130), - [anon_sym_throw] = ACTIONS(4130), - [anon_sym_return] = ACTIONS(4130), - [anon_sym_continue] = ACTIONS(4130), - [anon_sym_break] = ACTIONS(4130), - [anon_sym_COLON_COLON] = ACTIONS(4132), - [anon_sym_PLUS_EQ] = ACTIONS(4132), - [anon_sym_DASH_EQ] = ACTIONS(4132), - [anon_sym_STAR_EQ] = ACTIONS(4132), - [anon_sym_SLASH_EQ] = ACTIONS(4132), - [anon_sym_PERCENT_EQ] = ACTIONS(4132), - [anon_sym_BANG_EQ] = ACTIONS(4130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4132), - [anon_sym_EQ_EQ] = ACTIONS(4130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4132), - [anon_sym_LT_EQ] = ACTIONS(4132), - [anon_sym_GT_EQ] = ACTIONS(4132), - [anon_sym_BANGin] = ACTIONS(4132), - [anon_sym_is] = ACTIONS(4130), - [anon_sym_BANGis] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4130), - [anon_sym_DASH] = ACTIONS(4130), - [anon_sym_SLASH] = ACTIONS(4130), - [anon_sym_PERCENT] = ACTIONS(4130), - [anon_sym_as_QMARK] = ACTIONS(4132), - [anon_sym_PLUS_PLUS] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4132), - [anon_sym_BANG] = ACTIONS(4130), - [anon_sym_BANG_BANG] = ACTIONS(4132), - [anon_sym_suspend] = ACTIONS(4130), - [anon_sym_sealed] = ACTIONS(4130), - [anon_sym_annotation] = ACTIONS(4130), - [anon_sym_data] = ACTIONS(4130), - [anon_sym_inner] = ACTIONS(4130), - [anon_sym_value] = ACTIONS(4130), - [anon_sym_override] = ACTIONS(4130), - [anon_sym_lateinit] = ACTIONS(4130), - [anon_sym_public] = ACTIONS(4130), - [anon_sym_private] = ACTIONS(4130), - [anon_sym_internal] = ACTIONS(4130), - [anon_sym_protected] = ACTIONS(4130), - [anon_sym_tailrec] = ACTIONS(4130), - [anon_sym_operator] = ACTIONS(4130), - [anon_sym_infix] = ACTIONS(4130), - [anon_sym_inline] = ACTIONS(4130), - [anon_sym_external] = ACTIONS(4130), - [sym_property_modifier] = ACTIONS(4130), - [anon_sym_abstract] = ACTIONS(4130), - [anon_sym_final] = ACTIONS(4130), - [anon_sym_open] = ACTIONS(4130), - [anon_sym_vararg] = ACTIONS(4130), - [anon_sym_noinline] = ACTIONS(4130), - [anon_sym_crossinline] = ACTIONS(4130), - [anon_sym_expect] = ACTIONS(4130), - [anon_sym_actual] = ACTIONS(4130), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4132), - [anon_sym_continue_AT] = ACTIONS(4132), - [anon_sym_break_AT] = ACTIONS(4132), - [anon_sym_this_AT] = ACTIONS(4132), - [anon_sym_super_AT] = ACTIONS(4132), - [sym_real_literal] = ACTIONS(4132), - [sym_integer_literal] = ACTIONS(4130), - [sym_hex_literal] = ACTIONS(4132), - [sym_bin_literal] = ACTIONS(4132), - [anon_sym_true] = ACTIONS(4130), - [anon_sym_false] = ACTIONS(4130), - [anon_sym_SQUOTE] = ACTIONS(4132), - [sym__backtick_identifier] = ACTIONS(4132), - [sym__automatic_semicolon] = ACTIONS(4132), - [sym_safe_nav] = ACTIONS(4132), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4132), - }, - [1070] = { + [1063] = { [sym__alpha_identifier] = ACTIONS(4906), [anon_sym_AT] = ACTIONS(4908), [anon_sym_LBRACK] = ACTIONS(4908), [anon_sym_as] = ACTIONS(4906), [anon_sym_EQ] = ACTIONS(4906), - [anon_sym_fun] = ACTIONS(4906), [anon_sym_LBRACE] = ACTIONS(4908), [anon_sym_RBRACE] = ACTIONS(4908), [anon_sym_LPAREN] = ACTIONS(4908), @@ -173023,6 +171289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4906), [anon_sym_where] = ACTIONS(4906), [anon_sym_object] = ACTIONS(4906), + [anon_sym_fun] = ACTIONS(4906), [anon_sym_DOT] = ACTIONS(4906), [anon_sym_SEMI] = ACTIONS(4908), [anon_sym_get] = ACTIONS(4906), @@ -173114,225 +171381,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4908), }, - [1071] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4236), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(4910), - [anon_sym_COMMA] = ACTIONS(4239), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_where] = ACTIONS(4236), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4239), - [anon_sym_DASH_EQ] = ACTIONS(4239), - [anon_sym_STAR_EQ] = ACTIONS(4239), - [anon_sym_SLASH_EQ] = ACTIONS(4239), - [anon_sym_PERCENT_EQ] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_suspend] = ACTIONS(4236), - [anon_sym_sealed] = ACTIONS(4236), - [anon_sym_annotation] = ACTIONS(4236), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4236), - [anon_sym_lateinit] = ACTIONS(4236), - [anon_sym_public] = ACTIONS(4236), - [anon_sym_private] = ACTIONS(4236), - [anon_sym_internal] = ACTIONS(4236), - [anon_sym_protected] = ACTIONS(4236), - [anon_sym_tailrec] = ACTIONS(4236), - [anon_sym_operator] = ACTIONS(4236), - [anon_sym_infix] = ACTIONS(4236), - [anon_sym_inline] = ACTIONS(4236), - [anon_sym_external] = ACTIONS(4236), - [sym_property_modifier] = ACTIONS(4236), - [anon_sym_abstract] = ACTIONS(4236), - [anon_sym_final] = ACTIONS(4236), - [anon_sym_open] = ACTIONS(4236), - [anon_sym_vararg] = ACTIONS(4236), - [anon_sym_noinline] = ACTIONS(4236), - [anon_sym_crossinline] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), + [1064] = { + [sym__alpha_identifier] = ACTIONS(4910), + [anon_sym_AT] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_as] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_RBRACE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_where] = ACTIONS(4910), + [anon_sym_object] = ACTIONS(4910), + [anon_sym_fun] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_get] = ACTIONS(4910), + [anon_sym_set] = ACTIONS(4910), + [anon_sym_this] = ACTIONS(4910), + [anon_sym_super] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4910), + [sym_label] = ACTIONS(4910), + [anon_sym_in] = ACTIONS(4910), + [anon_sym_DOT_DOT] = ACTIONS(4912), + [anon_sym_QMARK_COLON] = ACTIONS(4912), + [anon_sym_AMP_AMP] = ACTIONS(4912), + [anon_sym_PIPE_PIPE] = ACTIONS(4912), + [anon_sym_null] = ACTIONS(4910), + [anon_sym_if] = ACTIONS(4910), + [anon_sym_else] = ACTIONS(4910), + [anon_sym_when] = ACTIONS(4910), + [anon_sym_try] = ACTIONS(4910), + [anon_sym_throw] = ACTIONS(4910), + [anon_sym_return] = ACTIONS(4910), + [anon_sym_continue] = ACTIONS(4910), + [anon_sym_break] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_PLUS_EQ] = ACTIONS(4912), + [anon_sym_DASH_EQ] = ACTIONS(4912), + [anon_sym_STAR_EQ] = ACTIONS(4912), + [anon_sym_SLASH_EQ] = ACTIONS(4912), + [anon_sym_PERCENT_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ] = ACTIONS(4910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4912), + [anon_sym_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4912), + [anon_sym_LT_EQ] = ACTIONS(4912), + [anon_sym_GT_EQ] = ACTIONS(4912), + [anon_sym_BANGin] = ACTIONS(4912), + [anon_sym_is] = ACTIONS(4910), + [anon_sym_BANGis] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_PERCENT] = ACTIONS(4910), + [anon_sym_as_QMARK] = ACTIONS(4912), + [anon_sym_PLUS_PLUS] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4910), + [anon_sym_BANG_BANG] = ACTIONS(4912), + [anon_sym_suspend] = ACTIONS(4910), + [anon_sym_sealed] = ACTIONS(4910), + [anon_sym_annotation] = ACTIONS(4910), + [anon_sym_data] = ACTIONS(4910), + [anon_sym_inner] = ACTIONS(4910), + [anon_sym_value] = ACTIONS(4910), + [anon_sym_override] = ACTIONS(4910), + [anon_sym_lateinit] = ACTIONS(4910), + [anon_sym_public] = ACTIONS(4910), + [anon_sym_private] = ACTIONS(4910), + [anon_sym_internal] = ACTIONS(4910), + [anon_sym_protected] = ACTIONS(4910), + [anon_sym_tailrec] = ACTIONS(4910), + [anon_sym_operator] = ACTIONS(4910), + [anon_sym_infix] = ACTIONS(4910), + [anon_sym_inline] = ACTIONS(4910), + [anon_sym_external] = ACTIONS(4910), + [sym_property_modifier] = ACTIONS(4910), + [anon_sym_abstract] = ACTIONS(4910), + [anon_sym_final] = ACTIONS(4910), + [anon_sym_open] = ACTIONS(4910), + [anon_sym_vararg] = ACTIONS(4910), + [anon_sym_noinline] = ACTIONS(4910), + [anon_sym_crossinline] = ACTIONS(4910), + [anon_sym_expect] = ACTIONS(4910), + [anon_sym_actual] = ACTIONS(4910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4912), + [anon_sym_continue_AT] = ACTIONS(4912), + [anon_sym_break_AT] = ACTIONS(4912), + [anon_sym_this_AT] = ACTIONS(4912), + [anon_sym_super_AT] = ACTIONS(4912), + [sym_real_literal] = ACTIONS(4912), + [sym_integer_literal] = ACTIONS(4910), + [sym_hex_literal] = ACTIONS(4912), + [sym_bin_literal] = ACTIONS(4912), + [anon_sym_true] = ACTIONS(4910), + [anon_sym_false] = ACTIONS(4910), + [anon_sym_SQUOTE] = ACTIONS(4912), + [sym__backtick_identifier] = ACTIONS(4912), + [sym__automatic_semicolon] = ACTIONS(4912), + [sym_safe_nav] = ACTIONS(4912), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4912), }, - [1072] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4347), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(4914), - [anon_sym_COMMA] = ACTIONS(4350), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_where] = ACTIONS(4347), - [anon_sym_object] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4350), - [anon_sym_DASH_EQ] = ACTIONS(4350), - [anon_sym_STAR_EQ] = ACTIONS(4350), - [anon_sym_SLASH_EQ] = ACTIONS(4350), - [anon_sym_PERCENT_EQ] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_suspend] = ACTIONS(4347), - [anon_sym_sealed] = ACTIONS(4347), - [anon_sym_annotation] = ACTIONS(4347), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4347), - [anon_sym_lateinit] = ACTIONS(4347), - [anon_sym_public] = ACTIONS(4347), - [anon_sym_private] = ACTIONS(4347), - [anon_sym_internal] = ACTIONS(4347), - [anon_sym_protected] = ACTIONS(4347), - [anon_sym_tailrec] = ACTIONS(4347), - [anon_sym_operator] = ACTIONS(4347), - [anon_sym_infix] = ACTIONS(4347), - [anon_sym_inline] = ACTIONS(4347), - [anon_sym_external] = ACTIONS(4347), - [sym_property_modifier] = ACTIONS(4347), - [anon_sym_abstract] = ACTIONS(4347), - [anon_sym_final] = ACTIONS(4347), - [anon_sym_open] = ACTIONS(4347), - [anon_sym_vararg] = ACTIONS(4347), - [anon_sym_noinline] = ACTIONS(4347), - [anon_sym_crossinline] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), + [1065] = { + [sym__alpha_identifier] = ACTIONS(4914), + [anon_sym_AT] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_as] = ACTIONS(4914), + [anon_sym_EQ] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_RBRACE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4914), + [anon_sym_where] = ACTIONS(4914), + [anon_sym_object] = ACTIONS(4914), + [anon_sym_fun] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_get] = ACTIONS(4914), + [anon_sym_set] = ACTIONS(4914), + [anon_sym_this] = ACTIONS(4914), + [anon_sym_super] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4914), + [sym_label] = ACTIONS(4914), + [anon_sym_in] = ACTIONS(4914), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_QMARK_COLON] = ACTIONS(4916), + [anon_sym_AMP_AMP] = ACTIONS(4916), + [anon_sym_PIPE_PIPE] = ACTIONS(4916), + [anon_sym_null] = ACTIONS(4914), + [anon_sym_if] = ACTIONS(4914), + [anon_sym_else] = ACTIONS(4914), + [anon_sym_when] = ACTIONS(4914), + [anon_sym_try] = ACTIONS(4914), + [anon_sym_throw] = ACTIONS(4914), + [anon_sym_return] = ACTIONS(4914), + [anon_sym_continue] = ACTIONS(4914), + [anon_sym_break] = ACTIONS(4914), + [anon_sym_COLON_COLON] = ACTIONS(4916), + [anon_sym_PLUS_EQ] = ACTIONS(4916), + [anon_sym_DASH_EQ] = ACTIONS(4916), + [anon_sym_STAR_EQ] = ACTIONS(4916), + [anon_sym_SLASH_EQ] = ACTIONS(4916), + [anon_sym_PERCENT_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4916), + [anon_sym_EQ_EQ] = ACTIONS(4914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4916), + [anon_sym_LT_EQ] = ACTIONS(4916), + [anon_sym_GT_EQ] = ACTIONS(4916), + [anon_sym_BANGin] = ACTIONS(4916), + [anon_sym_is] = ACTIONS(4914), + [anon_sym_BANGis] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4914), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4914), + [anon_sym_PERCENT] = ACTIONS(4914), + [anon_sym_as_QMARK] = ACTIONS(4916), + [anon_sym_PLUS_PLUS] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4914), + [anon_sym_BANG_BANG] = ACTIONS(4916), + [anon_sym_suspend] = ACTIONS(4914), + [anon_sym_sealed] = ACTIONS(4914), + [anon_sym_annotation] = ACTIONS(4914), + [anon_sym_data] = ACTIONS(4914), + [anon_sym_inner] = ACTIONS(4914), + [anon_sym_value] = ACTIONS(4914), + [anon_sym_override] = ACTIONS(4914), + [anon_sym_lateinit] = ACTIONS(4914), + [anon_sym_public] = ACTIONS(4914), + [anon_sym_private] = ACTIONS(4914), + [anon_sym_internal] = ACTIONS(4914), + [anon_sym_protected] = ACTIONS(4914), + [anon_sym_tailrec] = ACTIONS(4914), + [anon_sym_operator] = ACTIONS(4914), + [anon_sym_infix] = ACTIONS(4914), + [anon_sym_inline] = ACTIONS(4914), + [anon_sym_external] = ACTIONS(4914), + [sym_property_modifier] = ACTIONS(4914), + [anon_sym_abstract] = ACTIONS(4914), + [anon_sym_final] = ACTIONS(4914), + [anon_sym_open] = ACTIONS(4914), + [anon_sym_vararg] = ACTIONS(4914), + [anon_sym_noinline] = ACTIONS(4914), + [anon_sym_crossinline] = ACTIONS(4914), + [anon_sym_expect] = ACTIONS(4914), + [anon_sym_actual] = ACTIONS(4914), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4916), + [anon_sym_continue_AT] = ACTIONS(4916), + [anon_sym_break_AT] = ACTIONS(4916), + [anon_sym_this_AT] = ACTIONS(4916), + [anon_sym_super_AT] = ACTIONS(4916), + [sym_real_literal] = ACTIONS(4916), + [sym_integer_literal] = ACTIONS(4914), + [sym_hex_literal] = ACTIONS(4916), + [sym_bin_literal] = ACTIONS(4916), + [anon_sym_true] = ACTIONS(4914), + [anon_sym_false] = ACTIONS(4914), + [anon_sym_SQUOTE] = ACTIONS(4916), + [sym__backtick_identifier] = ACTIONS(4916), + [sym__automatic_semicolon] = ACTIONS(4916), + [sym_safe_nav] = ACTIONS(4916), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4916), }, - [1073] = { + [1066] = { [sym__alpha_identifier] = ACTIONS(4918), [anon_sym_AT] = ACTIONS(4920), [anon_sym_LBRACK] = ACTIONS(4920), [anon_sym_as] = ACTIONS(4918), [anon_sym_EQ] = ACTIONS(4918), - [anon_sym_fun] = ACTIONS(4918), [anon_sym_LBRACE] = ACTIONS(4920), [anon_sym_RBRACE] = ACTIONS(4920), [anon_sym_LPAREN] = ACTIONS(4920), @@ -173341,6 +171607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4918), [anon_sym_where] = ACTIONS(4918), [anon_sym_object] = ACTIONS(4918), + [anon_sym_fun] = ACTIONS(4918), [anon_sym_DOT] = ACTIONS(4918), [anon_sym_SEMI] = ACTIONS(4920), [anon_sym_get] = ACTIONS(4918), @@ -173432,13 +171699,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4920), }, - [1074] = { + [1067] = { [sym__alpha_identifier] = ACTIONS(4922), [anon_sym_AT] = ACTIONS(4924), [anon_sym_LBRACK] = ACTIONS(4924), [anon_sym_as] = ACTIONS(4922), [anon_sym_EQ] = ACTIONS(4922), - [anon_sym_fun] = ACTIONS(4922), [anon_sym_LBRACE] = ACTIONS(4924), [anon_sym_RBRACE] = ACTIONS(4924), [anon_sym_LPAREN] = ACTIONS(4924), @@ -173447,6 +171713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4922), [anon_sym_where] = ACTIONS(4922), [anon_sym_object] = ACTIONS(4922), + [anon_sym_fun] = ACTIONS(4922), [anon_sym_DOT] = ACTIONS(4922), [anon_sym_SEMI] = ACTIONS(4924), [anon_sym_get] = ACTIONS(4922), @@ -173538,13 +171805,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4924), }, - [1075] = { + [1068] = { + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(4218), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [1069] = { [sym__alpha_identifier] = ACTIONS(4926), [anon_sym_AT] = ACTIONS(4928), [anon_sym_LBRACK] = ACTIONS(4928), [anon_sym_as] = ACTIONS(4926), [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), [anon_sym_LBRACE] = ACTIONS(4928), [anon_sym_RBRACE] = ACTIONS(4928), [anon_sym_LPAREN] = ACTIONS(4928), @@ -173553,6 +171925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4926), [anon_sym_where] = ACTIONS(4926), [anon_sym_object] = ACTIONS(4926), + [anon_sym_fun] = ACTIONS(4926), [anon_sym_DOT] = ACTIONS(4926), [anon_sym_SEMI] = ACTIONS(4928), [anon_sym_get] = ACTIONS(4926), @@ -173568,7 +171941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(4928), [anon_sym_null] = ACTIONS(4926), [anon_sym_if] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4926), [anon_sym_when] = ACTIONS(4926), [anon_sym_try] = ACTIONS(4926), [anon_sym_throw] = ACTIONS(4926), @@ -173644,119 +172017,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4928), }, - [1076] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_COMMA] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_object] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), + [1070] = { + [sym__alpha_identifier] = ACTIONS(4930), + [anon_sym_AT] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_as] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_where] = ACTIONS(4930), + [anon_sym_object] = ACTIONS(4930), + [anon_sym_fun] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), [anon_sym_SEMI] = ACTIONS(4932), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_this] = ACTIONS(4926), - [anon_sym_super] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_if] = ACTIONS(4926), + [anon_sym_get] = ACTIONS(4930), + [anon_sym_set] = ACTIONS(4930), + [anon_sym_this] = ACTIONS(4930), + [anon_sym_super] = ACTIONS(4930), + [anon_sym_STAR] = ACTIONS(4930), + [sym_label] = ACTIONS(4930), + [anon_sym_in] = ACTIONS(4930), + [anon_sym_DOT_DOT] = ACTIONS(4932), + [anon_sym_QMARK_COLON] = ACTIONS(4932), + [anon_sym_AMP_AMP] = ACTIONS(4932), + [anon_sym_PIPE_PIPE] = ACTIONS(4932), + [anon_sym_null] = ACTIONS(4930), + [anon_sym_if] = ACTIONS(4930), [anon_sym_else] = ACTIONS(4930), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4926), - [anon_sym_throw] = ACTIONS(4926), - [anon_sym_return] = ACTIONS(4926), - [anon_sym_continue] = ACTIONS(4926), - [anon_sym_break] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_PLUS_EQ] = ACTIONS(4928), - [anon_sym_DASH_EQ] = ACTIONS(4928), - [anon_sym_STAR_EQ] = ACTIONS(4928), - [anon_sym_SLASH_EQ] = ACTIONS(4928), - [anon_sym_PERCENT_EQ] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4928), - [anon_sym_continue_AT] = ACTIONS(4928), - [anon_sym_break_AT] = ACTIONS(4928), - [anon_sym_this_AT] = ACTIONS(4928), - [anon_sym_super_AT] = ACTIONS(4928), - [sym_real_literal] = ACTIONS(4928), - [sym_integer_literal] = ACTIONS(4926), - [sym_hex_literal] = ACTIONS(4928), - [sym_bin_literal] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [anon_sym_SQUOTE] = ACTIONS(4928), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), + [anon_sym_when] = ACTIONS(4930), + [anon_sym_try] = ACTIONS(4930), + [anon_sym_throw] = ACTIONS(4930), + [anon_sym_return] = ACTIONS(4930), + [anon_sym_continue] = ACTIONS(4930), + [anon_sym_break] = ACTIONS(4930), + [anon_sym_COLON_COLON] = ACTIONS(4932), + [anon_sym_PLUS_EQ] = ACTIONS(4932), + [anon_sym_DASH_EQ] = ACTIONS(4932), + [anon_sym_STAR_EQ] = ACTIONS(4932), + [anon_sym_SLASH_EQ] = ACTIONS(4932), + [anon_sym_PERCENT_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4932), + [anon_sym_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4932), + [anon_sym_LT_EQ] = ACTIONS(4932), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_BANGin] = ACTIONS(4932), + [anon_sym_is] = ACTIONS(4930), + [anon_sym_BANGis] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4930), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4930), + [anon_sym_PERCENT] = ACTIONS(4930), + [anon_sym_as_QMARK] = ACTIONS(4932), + [anon_sym_PLUS_PLUS] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4930), + [anon_sym_BANG_BANG] = ACTIONS(4932), + [anon_sym_suspend] = ACTIONS(4930), + [anon_sym_sealed] = ACTIONS(4930), + [anon_sym_annotation] = ACTIONS(4930), + [anon_sym_data] = ACTIONS(4930), + [anon_sym_inner] = ACTIONS(4930), + [anon_sym_value] = ACTIONS(4930), + [anon_sym_override] = ACTIONS(4930), + [anon_sym_lateinit] = ACTIONS(4930), + [anon_sym_public] = ACTIONS(4930), + [anon_sym_private] = ACTIONS(4930), + [anon_sym_internal] = ACTIONS(4930), + [anon_sym_protected] = ACTIONS(4930), + [anon_sym_tailrec] = ACTIONS(4930), + [anon_sym_operator] = ACTIONS(4930), + [anon_sym_infix] = ACTIONS(4930), + [anon_sym_inline] = ACTIONS(4930), + [anon_sym_external] = ACTIONS(4930), + [sym_property_modifier] = ACTIONS(4930), + [anon_sym_abstract] = ACTIONS(4930), + [anon_sym_final] = ACTIONS(4930), + [anon_sym_open] = ACTIONS(4930), + [anon_sym_vararg] = ACTIONS(4930), + [anon_sym_noinline] = ACTIONS(4930), + [anon_sym_crossinline] = ACTIONS(4930), + [anon_sym_expect] = ACTIONS(4930), + [anon_sym_actual] = ACTIONS(4930), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4932), + [anon_sym_continue_AT] = ACTIONS(4932), + [anon_sym_break_AT] = ACTIONS(4932), + [anon_sym_this_AT] = ACTIONS(4932), + [anon_sym_super_AT] = ACTIONS(4932), + [sym_real_literal] = ACTIONS(4932), + [sym_integer_literal] = ACTIONS(4930), + [sym_hex_literal] = ACTIONS(4932), + [sym_bin_literal] = ACTIONS(4932), + [anon_sym_true] = ACTIONS(4930), + [anon_sym_false] = ACTIONS(4930), + [anon_sym_SQUOTE] = ACTIONS(4932), + [sym__backtick_identifier] = ACTIONS(4932), + [sym__automatic_semicolon] = ACTIONS(4932), + [sym_safe_nav] = ACTIONS(4932), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4932), }, - [1077] = { + [1071] = { [sym__alpha_identifier] = ACTIONS(4934), [anon_sym_AT] = ACTIONS(4936), [anon_sym_LBRACK] = ACTIONS(4936), [anon_sym_as] = ACTIONS(4934), [anon_sym_EQ] = ACTIONS(4934), - [anon_sym_fun] = ACTIONS(4934), [anon_sym_LBRACE] = ACTIONS(4936), [anon_sym_RBRACE] = ACTIONS(4936), [anon_sym_LPAREN] = ACTIONS(4936), @@ -173765,6 +172137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4934), [anon_sym_where] = ACTIONS(4934), [anon_sym_object] = ACTIONS(4934), + [anon_sym_fun] = ACTIONS(4934), [anon_sym_DOT] = ACTIONS(4934), [anon_sym_SEMI] = ACTIONS(4936), [anon_sym_get] = ACTIONS(4934), @@ -173856,967 +172229,966 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4936), }, + [1072] = { + [sym__alpha_identifier] = ACTIONS(4938), + [anon_sym_AT] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4940), + [anon_sym_as] = ACTIONS(4938), + [anon_sym_EQ] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_RBRACE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4938), + [anon_sym_where] = ACTIONS(4938), + [anon_sym_object] = ACTIONS(4938), + [anon_sym_fun] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_get] = ACTIONS(4938), + [anon_sym_set] = ACTIONS(4938), + [anon_sym_this] = ACTIONS(4938), + [anon_sym_super] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4938), + [sym_label] = ACTIONS(4938), + [anon_sym_in] = ACTIONS(4938), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_QMARK_COLON] = ACTIONS(4940), + [anon_sym_AMP_AMP] = ACTIONS(4940), + [anon_sym_PIPE_PIPE] = ACTIONS(4940), + [anon_sym_null] = ACTIONS(4938), + [anon_sym_if] = ACTIONS(4938), + [anon_sym_else] = ACTIONS(4938), + [anon_sym_when] = ACTIONS(4938), + [anon_sym_try] = ACTIONS(4938), + [anon_sym_throw] = ACTIONS(4938), + [anon_sym_return] = ACTIONS(4938), + [anon_sym_continue] = ACTIONS(4938), + [anon_sym_break] = ACTIONS(4938), + [anon_sym_COLON_COLON] = ACTIONS(4940), + [anon_sym_PLUS_EQ] = ACTIONS(4940), + [anon_sym_DASH_EQ] = ACTIONS(4940), + [anon_sym_STAR_EQ] = ACTIONS(4940), + [anon_sym_SLASH_EQ] = ACTIONS(4940), + [anon_sym_PERCENT_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4940), + [anon_sym_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4940), + [anon_sym_GT_EQ] = ACTIONS(4940), + [anon_sym_BANGin] = ACTIONS(4940), + [anon_sym_is] = ACTIONS(4938), + [anon_sym_BANGis] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4938), + [anon_sym_PERCENT] = ACTIONS(4938), + [anon_sym_as_QMARK] = ACTIONS(4940), + [anon_sym_PLUS_PLUS] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4938), + [anon_sym_BANG_BANG] = ACTIONS(4940), + [anon_sym_suspend] = ACTIONS(4938), + [anon_sym_sealed] = ACTIONS(4938), + [anon_sym_annotation] = ACTIONS(4938), + [anon_sym_data] = ACTIONS(4938), + [anon_sym_inner] = ACTIONS(4938), + [anon_sym_value] = ACTIONS(4938), + [anon_sym_override] = ACTIONS(4938), + [anon_sym_lateinit] = ACTIONS(4938), + [anon_sym_public] = ACTIONS(4938), + [anon_sym_private] = ACTIONS(4938), + [anon_sym_internal] = ACTIONS(4938), + [anon_sym_protected] = ACTIONS(4938), + [anon_sym_tailrec] = ACTIONS(4938), + [anon_sym_operator] = ACTIONS(4938), + [anon_sym_infix] = ACTIONS(4938), + [anon_sym_inline] = ACTIONS(4938), + [anon_sym_external] = ACTIONS(4938), + [sym_property_modifier] = ACTIONS(4938), + [anon_sym_abstract] = ACTIONS(4938), + [anon_sym_final] = ACTIONS(4938), + [anon_sym_open] = ACTIONS(4938), + [anon_sym_vararg] = ACTIONS(4938), + [anon_sym_noinline] = ACTIONS(4938), + [anon_sym_crossinline] = ACTIONS(4938), + [anon_sym_expect] = ACTIONS(4938), + [anon_sym_actual] = ACTIONS(4938), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4940), + [anon_sym_continue_AT] = ACTIONS(4940), + [anon_sym_break_AT] = ACTIONS(4940), + [anon_sym_this_AT] = ACTIONS(4940), + [anon_sym_super_AT] = ACTIONS(4940), + [sym_real_literal] = ACTIONS(4940), + [sym_integer_literal] = ACTIONS(4938), + [sym_hex_literal] = ACTIONS(4940), + [sym_bin_literal] = ACTIONS(4940), + [anon_sym_true] = ACTIONS(4938), + [anon_sym_false] = ACTIONS(4938), + [anon_sym_SQUOTE] = ACTIONS(4940), + [sym__backtick_identifier] = ACTIONS(4940), + [sym__automatic_semicolon] = ACTIONS(4940), + [sym_safe_nav] = ACTIONS(4940), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4940), + }, + [1073] = { + [sym__alpha_identifier] = ACTIONS(4942), + [anon_sym_AT] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4944), + [anon_sym_as] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_RBRACE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4942), + [anon_sym_where] = ACTIONS(4942), + [anon_sym_object] = ACTIONS(4942), + [anon_sym_fun] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_get] = ACTIONS(4942), + [anon_sym_set] = ACTIONS(4942), + [anon_sym_this] = ACTIONS(4942), + [anon_sym_super] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4942), + [sym_label] = ACTIONS(4942), + [anon_sym_in] = ACTIONS(4942), + [anon_sym_DOT_DOT] = ACTIONS(4944), + [anon_sym_QMARK_COLON] = ACTIONS(4944), + [anon_sym_AMP_AMP] = ACTIONS(4944), + [anon_sym_PIPE_PIPE] = ACTIONS(4944), + [anon_sym_null] = ACTIONS(4942), + [anon_sym_if] = ACTIONS(4942), + [anon_sym_else] = ACTIONS(4942), + [anon_sym_when] = ACTIONS(4942), + [anon_sym_try] = ACTIONS(4942), + [anon_sym_throw] = ACTIONS(4942), + [anon_sym_return] = ACTIONS(4942), + [anon_sym_continue] = ACTIONS(4942), + [anon_sym_break] = ACTIONS(4942), + [anon_sym_COLON_COLON] = ACTIONS(4944), + [anon_sym_PLUS_EQ] = ACTIONS(4944), + [anon_sym_DASH_EQ] = ACTIONS(4944), + [anon_sym_STAR_EQ] = ACTIONS(4944), + [anon_sym_SLASH_EQ] = ACTIONS(4944), + [anon_sym_PERCENT_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4944), + [anon_sym_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4944), + [anon_sym_LT_EQ] = ACTIONS(4944), + [anon_sym_GT_EQ] = ACTIONS(4944), + [anon_sym_BANGin] = ACTIONS(4944), + [anon_sym_is] = ACTIONS(4942), + [anon_sym_BANGis] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4942), + [anon_sym_PERCENT] = ACTIONS(4942), + [anon_sym_as_QMARK] = ACTIONS(4944), + [anon_sym_PLUS_PLUS] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4942), + [anon_sym_BANG_BANG] = ACTIONS(4944), + [anon_sym_suspend] = ACTIONS(4942), + [anon_sym_sealed] = ACTIONS(4942), + [anon_sym_annotation] = ACTIONS(4942), + [anon_sym_data] = ACTIONS(4942), + [anon_sym_inner] = ACTIONS(4942), + [anon_sym_value] = ACTIONS(4942), + [anon_sym_override] = ACTIONS(4942), + [anon_sym_lateinit] = ACTIONS(4942), + [anon_sym_public] = ACTIONS(4942), + [anon_sym_private] = ACTIONS(4942), + [anon_sym_internal] = ACTIONS(4942), + [anon_sym_protected] = ACTIONS(4942), + [anon_sym_tailrec] = ACTIONS(4942), + [anon_sym_operator] = ACTIONS(4942), + [anon_sym_infix] = ACTIONS(4942), + [anon_sym_inline] = ACTIONS(4942), + [anon_sym_external] = ACTIONS(4942), + [sym_property_modifier] = ACTIONS(4942), + [anon_sym_abstract] = ACTIONS(4942), + [anon_sym_final] = ACTIONS(4942), + [anon_sym_open] = ACTIONS(4942), + [anon_sym_vararg] = ACTIONS(4942), + [anon_sym_noinline] = ACTIONS(4942), + [anon_sym_crossinline] = ACTIONS(4942), + [anon_sym_expect] = ACTIONS(4942), + [anon_sym_actual] = ACTIONS(4942), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4944), + [anon_sym_continue_AT] = ACTIONS(4944), + [anon_sym_break_AT] = ACTIONS(4944), + [anon_sym_this_AT] = ACTIONS(4944), + [anon_sym_super_AT] = ACTIONS(4944), + [sym_real_literal] = ACTIONS(4944), + [sym_integer_literal] = ACTIONS(4942), + [sym_hex_literal] = ACTIONS(4944), + [sym_bin_literal] = ACTIONS(4944), + [anon_sym_true] = ACTIONS(4942), + [anon_sym_false] = ACTIONS(4942), + [anon_sym_SQUOTE] = ACTIONS(4944), + [sym__backtick_identifier] = ACTIONS(4944), + [sym__automatic_semicolon] = ACTIONS(4944), + [sym_safe_nav] = ACTIONS(4944), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4944), + }, + [1074] = { + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3160), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3162), + [anon_sym_QMARK_COLON] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(3162), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3160), + [anon_sym_inner] = ACTIONS(3160), + [anon_sym_value] = ACTIONS(3160), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3160), + [anon_sym_actual] = ACTIONS(3160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(3162), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), + }, + [1075] = { + [sym__alpha_identifier] = ACTIONS(4946), + [anon_sym_AT] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4946), + [anon_sym_EQ] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_RBRACE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4946), + [anon_sym_where] = ACTIONS(4946), + [anon_sym_object] = ACTIONS(4946), + [anon_sym_fun] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_get] = ACTIONS(4946), + [anon_sym_set] = ACTIONS(4946), + [anon_sym_this] = ACTIONS(4946), + [anon_sym_super] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4946), + [sym_label] = ACTIONS(4946), + [anon_sym_in] = ACTIONS(4946), + [anon_sym_DOT_DOT] = ACTIONS(4948), + [anon_sym_QMARK_COLON] = ACTIONS(4948), + [anon_sym_AMP_AMP] = ACTIONS(4948), + [anon_sym_PIPE_PIPE] = ACTIONS(4948), + [anon_sym_null] = ACTIONS(4946), + [anon_sym_if] = ACTIONS(4946), + [anon_sym_else] = ACTIONS(4946), + [anon_sym_when] = ACTIONS(4946), + [anon_sym_try] = ACTIONS(4946), + [anon_sym_throw] = ACTIONS(4946), + [anon_sym_return] = ACTIONS(4946), + [anon_sym_continue] = ACTIONS(4946), + [anon_sym_break] = ACTIONS(4946), + [anon_sym_COLON_COLON] = ACTIONS(4948), + [anon_sym_PLUS_EQ] = ACTIONS(4948), + [anon_sym_DASH_EQ] = ACTIONS(4948), + [anon_sym_STAR_EQ] = ACTIONS(4948), + [anon_sym_SLASH_EQ] = ACTIONS(4948), + [anon_sym_PERCENT_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ] = ACTIONS(4946), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4948), + [anon_sym_LT_EQ] = ACTIONS(4948), + [anon_sym_GT_EQ] = ACTIONS(4948), + [anon_sym_BANGin] = ACTIONS(4948), + [anon_sym_is] = ACTIONS(4946), + [anon_sym_BANGis] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4946), + [anon_sym_PERCENT] = ACTIONS(4946), + [anon_sym_as_QMARK] = ACTIONS(4948), + [anon_sym_PLUS_PLUS] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4946), + [anon_sym_BANG_BANG] = ACTIONS(4948), + [anon_sym_suspend] = ACTIONS(4946), + [anon_sym_sealed] = ACTIONS(4946), + [anon_sym_annotation] = ACTIONS(4946), + [anon_sym_data] = ACTIONS(4946), + [anon_sym_inner] = ACTIONS(4946), + [anon_sym_value] = ACTIONS(4946), + [anon_sym_override] = ACTIONS(4946), + [anon_sym_lateinit] = ACTIONS(4946), + [anon_sym_public] = ACTIONS(4946), + [anon_sym_private] = ACTIONS(4946), + [anon_sym_internal] = ACTIONS(4946), + [anon_sym_protected] = ACTIONS(4946), + [anon_sym_tailrec] = ACTIONS(4946), + [anon_sym_operator] = ACTIONS(4946), + [anon_sym_infix] = ACTIONS(4946), + [anon_sym_inline] = ACTIONS(4946), + [anon_sym_external] = ACTIONS(4946), + [sym_property_modifier] = ACTIONS(4946), + [anon_sym_abstract] = ACTIONS(4946), + [anon_sym_final] = ACTIONS(4946), + [anon_sym_open] = ACTIONS(4946), + [anon_sym_vararg] = ACTIONS(4946), + [anon_sym_noinline] = ACTIONS(4946), + [anon_sym_crossinline] = ACTIONS(4946), + [anon_sym_expect] = ACTIONS(4946), + [anon_sym_actual] = ACTIONS(4946), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4948), + [anon_sym_continue_AT] = ACTIONS(4948), + [anon_sym_break_AT] = ACTIONS(4948), + [anon_sym_this_AT] = ACTIONS(4948), + [anon_sym_super_AT] = ACTIONS(4948), + [sym_real_literal] = ACTIONS(4948), + [sym_integer_literal] = ACTIONS(4946), + [sym_hex_literal] = ACTIONS(4948), + [sym_bin_literal] = ACTIONS(4948), + [anon_sym_true] = ACTIONS(4946), + [anon_sym_false] = ACTIONS(4946), + [anon_sym_SQUOTE] = ACTIONS(4948), + [sym__backtick_identifier] = ACTIONS(4948), + [sym__automatic_semicolon] = ACTIONS(4948), + [sym_safe_nav] = ACTIONS(4948), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4948), + }, + [1076] = { + [sym__alpha_identifier] = ACTIONS(4950), + [anon_sym_AT] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4950), + [anon_sym_EQ] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4950), + [anon_sym_where] = ACTIONS(4950), + [anon_sym_object] = ACTIONS(4950), + [anon_sym_fun] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_get] = ACTIONS(4950), + [anon_sym_set] = ACTIONS(4950), + [anon_sym_this] = ACTIONS(4950), + [anon_sym_super] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4950), + [sym_label] = ACTIONS(4950), + [anon_sym_in] = ACTIONS(4950), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_QMARK_COLON] = ACTIONS(4952), + [anon_sym_AMP_AMP] = ACTIONS(4952), + [anon_sym_PIPE_PIPE] = ACTIONS(4952), + [anon_sym_null] = ACTIONS(4950), + [anon_sym_if] = ACTIONS(4950), + [anon_sym_else] = ACTIONS(4950), + [anon_sym_when] = ACTIONS(4950), + [anon_sym_try] = ACTIONS(4950), + [anon_sym_throw] = ACTIONS(4950), + [anon_sym_return] = ACTIONS(4950), + [anon_sym_continue] = ACTIONS(4950), + [anon_sym_break] = ACTIONS(4950), + [anon_sym_COLON_COLON] = ACTIONS(4952), + [anon_sym_PLUS_EQ] = ACTIONS(4952), + [anon_sym_DASH_EQ] = ACTIONS(4952), + [anon_sym_STAR_EQ] = ACTIONS(4952), + [anon_sym_SLASH_EQ] = ACTIONS(4952), + [anon_sym_PERCENT_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4952), + [anon_sym_BANGin] = ACTIONS(4952), + [anon_sym_is] = ACTIONS(4950), + [anon_sym_BANGis] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4950), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4950), + [anon_sym_PERCENT] = ACTIONS(4950), + [anon_sym_as_QMARK] = ACTIONS(4952), + [anon_sym_PLUS_PLUS] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4950), + [anon_sym_BANG_BANG] = ACTIONS(4952), + [anon_sym_suspend] = ACTIONS(4950), + [anon_sym_sealed] = ACTIONS(4950), + [anon_sym_annotation] = ACTIONS(4950), + [anon_sym_data] = ACTIONS(4950), + [anon_sym_inner] = ACTIONS(4950), + [anon_sym_value] = ACTIONS(4950), + [anon_sym_override] = ACTIONS(4950), + [anon_sym_lateinit] = ACTIONS(4950), + [anon_sym_public] = ACTIONS(4950), + [anon_sym_private] = ACTIONS(4950), + [anon_sym_internal] = ACTIONS(4950), + [anon_sym_protected] = ACTIONS(4950), + [anon_sym_tailrec] = ACTIONS(4950), + [anon_sym_operator] = ACTIONS(4950), + [anon_sym_infix] = ACTIONS(4950), + [anon_sym_inline] = ACTIONS(4950), + [anon_sym_external] = ACTIONS(4950), + [sym_property_modifier] = ACTIONS(4950), + [anon_sym_abstract] = ACTIONS(4950), + [anon_sym_final] = ACTIONS(4950), + [anon_sym_open] = ACTIONS(4950), + [anon_sym_vararg] = ACTIONS(4950), + [anon_sym_noinline] = ACTIONS(4950), + [anon_sym_crossinline] = ACTIONS(4950), + [anon_sym_expect] = ACTIONS(4950), + [anon_sym_actual] = ACTIONS(4950), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4952), + [anon_sym_continue_AT] = ACTIONS(4952), + [anon_sym_break_AT] = ACTIONS(4952), + [anon_sym_this_AT] = ACTIONS(4952), + [anon_sym_super_AT] = ACTIONS(4952), + [sym_real_literal] = ACTIONS(4952), + [sym_integer_literal] = ACTIONS(4950), + [sym_hex_literal] = ACTIONS(4952), + [sym_bin_literal] = ACTIONS(4952), + [anon_sym_true] = ACTIONS(4950), + [anon_sym_false] = ACTIONS(4950), + [anon_sym_SQUOTE] = ACTIONS(4952), + [sym__backtick_identifier] = ACTIONS(4952), + [sym__automatic_semicolon] = ACTIONS(4952), + [sym_safe_nav] = ACTIONS(4952), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4952), + }, + [1077] = { + [sym__alpha_identifier] = ACTIONS(4954), + [anon_sym_AT] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4954), + [anon_sym_EQ] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4954), + [anon_sym_where] = ACTIONS(4954), + [anon_sym_object] = ACTIONS(4954), + [anon_sym_fun] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_get] = ACTIONS(4954), + [anon_sym_set] = ACTIONS(4954), + [anon_sym_this] = ACTIONS(4954), + [anon_sym_super] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4954), + [sym_label] = ACTIONS(4954), + [anon_sym_in] = ACTIONS(4954), + [anon_sym_DOT_DOT] = ACTIONS(4956), + [anon_sym_QMARK_COLON] = ACTIONS(4956), + [anon_sym_AMP_AMP] = ACTIONS(4956), + [anon_sym_PIPE_PIPE] = ACTIONS(4956), + [anon_sym_null] = ACTIONS(4954), + [anon_sym_if] = ACTIONS(4954), + [anon_sym_else] = ACTIONS(4954), + [anon_sym_when] = ACTIONS(4954), + [anon_sym_try] = ACTIONS(4954), + [anon_sym_throw] = ACTIONS(4954), + [anon_sym_return] = ACTIONS(4954), + [anon_sym_continue] = ACTIONS(4954), + [anon_sym_break] = ACTIONS(4954), + [anon_sym_COLON_COLON] = ACTIONS(4956), + [anon_sym_PLUS_EQ] = ACTIONS(4956), + [anon_sym_DASH_EQ] = ACTIONS(4956), + [anon_sym_STAR_EQ] = ACTIONS(4956), + [anon_sym_SLASH_EQ] = ACTIONS(4956), + [anon_sym_PERCENT_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4956), + [anon_sym_LT_EQ] = ACTIONS(4956), + [anon_sym_GT_EQ] = ACTIONS(4956), + [anon_sym_BANGin] = ACTIONS(4956), + [anon_sym_is] = ACTIONS(4954), + [anon_sym_BANGis] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4954), + [anon_sym_as_QMARK] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4954), + [anon_sym_BANG_BANG] = ACTIONS(4956), + [anon_sym_suspend] = ACTIONS(4954), + [anon_sym_sealed] = ACTIONS(4954), + [anon_sym_annotation] = ACTIONS(4954), + [anon_sym_data] = ACTIONS(4954), + [anon_sym_inner] = ACTIONS(4954), + [anon_sym_value] = ACTIONS(4954), + [anon_sym_override] = ACTIONS(4954), + [anon_sym_lateinit] = ACTIONS(4954), + [anon_sym_public] = ACTIONS(4954), + [anon_sym_private] = ACTIONS(4954), + [anon_sym_internal] = ACTIONS(4954), + [anon_sym_protected] = ACTIONS(4954), + [anon_sym_tailrec] = ACTIONS(4954), + [anon_sym_operator] = ACTIONS(4954), + [anon_sym_infix] = ACTIONS(4954), + [anon_sym_inline] = ACTIONS(4954), + [anon_sym_external] = ACTIONS(4954), + [sym_property_modifier] = ACTIONS(4954), + [anon_sym_abstract] = ACTIONS(4954), + [anon_sym_final] = ACTIONS(4954), + [anon_sym_open] = ACTIONS(4954), + [anon_sym_vararg] = ACTIONS(4954), + [anon_sym_noinline] = ACTIONS(4954), + [anon_sym_crossinline] = ACTIONS(4954), + [anon_sym_expect] = ACTIONS(4954), + [anon_sym_actual] = ACTIONS(4954), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4956), + [anon_sym_continue_AT] = ACTIONS(4956), + [anon_sym_break_AT] = ACTIONS(4956), + [anon_sym_this_AT] = ACTIONS(4956), + [anon_sym_super_AT] = ACTIONS(4956), + [sym_real_literal] = ACTIONS(4956), + [sym_integer_literal] = ACTIONS(4954), + [sym_hex_literal] = ACTIONS(4956), + [sym_bin_literal] = ACTIONS(4956), + [anon_sym_true] = ACTIONS(4954), + [anon_sym_false] = ACTIONS(4954), + [anon_sym_SQUOTE] = ACTIONS(4956), + [sym__backtick_identifier] = ACTIONS(4956), + [sym__automatic_semicolon] = ACTIONS(4956), + [sym_safe_nav] = ACTIONS(4956), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4956), + }, [1078] = { - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(4938), - [anon_sym_get] = ACTIONS(4846), - [anon_sym_set] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4958), + [anon_sym_AT] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4958), + [anon_sym_EQ] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_where] = ACTIONS(4958), + [anon_sym_object] = ACTIONS(4958), + [anon_sym_fun] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_get] = ACTIONS(4958), + [anon_sym_set] = ACTIONS(4958), + [anon_sym_this] = ACTIONS(4958), + [anon_sym_super] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [sym_label] = ACTIONS(4958), + [anon_sym_in] = ACTIONS(4958), + [anon_sym_DOT_DOT] = ACTIONS(4960), + [anon_sym_QMARK_COLON] = ACTIONS(4960), + [anon_sym_AMP_AMP] = ACTIONS(4960), + [anon_sym_PIPE_PIPE] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(4958), + [anon_sym_if] = ACTIONS(4958), + [anon_sym_else] = ACTIONS(4958), + [anon_sym_when] = ACTIONS(4958), + [anon_sym_try] = ACTIONS(4958), + [anon_sym_throw] = ACTIONS(4958), + [anon_sym_return] = ACTIONS(4958), + [anon_sym_continue] = ACTIONS(4958), + [anon_sym_break] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(4960), + [anon_sym_PLUS_EQ] = ACTIONS(4960), + [anon_sym_DASH_EQ] = ACTIONS(4960), + [anon_sym_STAR_EQ] = ACTIONS(4960), + [anon_sym_SLASH_EQ] = ACTIONS(4960), + [anon_sym_PERCENT_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4960), + [anon_sym_LT_EQ] = ACTIONS(4960), + [anon_sym_GT_EQ] = ACTIONS(4960), + [anon_sym_BANGin] = ACTIONS(4960), + [anon_sym_is] = ACTIONS(4958), + [anon_sym_BANGis] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_as_QMARK] = ACTIONS(4960), + [anon_sym_PLUS_PLUS] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4958), + [anon_sym_BANG_BANG] = ACTIONS(4960), + [anon_sym_suspend] = ACTIONS(4958), + [anon_sym_sealed] = ACTIONS(4958), + [anon_sym_annotation] = ACTIONS(4958), + [anon_sym_data] = ACTIONS(4958), + [anon_sym_inner] = ACTIONS(4958), + [anon_sym_value] = ACTIONS(4958), + [anon_sym_override] = ACTIONS(4958), + [anon_sym_lateinit] = ACTIONS(4958), + [anon_sym_public] = ACTIONS(4958), + [anon_sym_private] = ACTIONS(4958), + [anon_sym_internal] = ACTIONS(4958), + [anon_sym_protected] = ACTIONS(4958), + [anon_sym_tailrec] = ACTIONS(4958), + [anon_sym_operator] = ACTIONS(4958), + [anon_sym_infix] = ACTIONS(4958), + [anon_sym_inline] = ACTIONS(4958), + [anon_sym_external] = ACTIONS(4958), + [sym_property_modifier] = ACTIONS(4958), + [anon_sym_abstract] = ACTIONS(4958), + [anon_sym_final] = ACTIONS(4958), + [anon_sym_open] = ACTIONS(4958), + [anon_sym_vararg] = ACTIONS(4958), + [anon_sym_noinline] = ACTIONS(4958), + [anon_sym_crossinline] = ACTIONS(4958), + [anon_sym_expect] = ACTIONS(4958), + [anon_sym_actual] = ACTIONS(4958), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4960), + [anon_sym_continue_AT] = ACTIONS(4960), + [anon_sym_break_AT] = ACTIONS(4960), + [anon_sym_this_AT] = ACTIONS(4960), + [anon_sym_super_AT] = ACTIONS(4960), + [sym_real_literal] = ACTIONS(4960), + [sym_integer_literal] = ACTIONS(4958), + [sym_hex_literal] = ACTIONS(4960), + [sym_bin_literal] = ACTIONS(4960), + [anon_sym_true] = ACTIONS(4958), + [anon_sym_false] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4960), + [sym__backtick_identifier] = ACTIONS(4960), + [sym__automatic_semicolon] = ACTIONS(4960), + [sym_safe_nav] = ACTIONS(4960), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4960), }, [1079] = { - [sym__alpha_identifier] = ACTIONS(4940), - [anon_sym_AT] = ACTIONS(4942), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_as] = ACTIONS(4940), - [anon_sym_EQ] = ACTIONS(4940), - [anon_sym_fun] = ACTIONS(4940), - [anon_sym_LBRACE] = ACTIONS(4942), - [anon_sym_RBRACE] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4942), - [anon_sym_LT] = ACTIONS(4940), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_where] = ACTIONS(4940), - [anon_sym_object] = ACTIONS(4940), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_SEMI] = ACTIONS(4942), - [anon_sym_get] = ACTIONS(4940), - [anon_sym_set] = ACTIONS(4940), - [anon_sym_this] = ACTIONS(4940), - [anon_sym_super] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4940), - [sym_label] = ACTIONS(4940), - [anon_sym_in] = ACTIONS(4940), - [anon_sym_DOT_DOT] = ACTIONS(4942), - [anon_sym_QMARK_COLON] = ACTIONS(4942), - [anon_sym_AMP_AMP] = ACTIONS(4942), - [anon_sym_PIPE_PIPE] = ACTIONS(4942), - [anon_sym_null] = ACTIONS(4940), - [anon_sym_if] = ACTIONS(4940), - [anon_sym_else] = ACTIONS(4940), - [anon_sym_when] = ACTIONS(4940), - [anon_sym_try] = ACTIONS(4940), - [anon_sym_throw] = ACTIONS(4940), - [anon_sym_return] = ACTIONS(4940), - [anon_sym_continue] = ACTIONS(4940), - [anon_sym_break] = ACTIONS(4940), - [anon_sym_COLON_COLON] = ACTIONS(4942), - [anon_sym_PLUS_EQ] = ACTIONS(4942), - [anon_sym_DASH_EQ] = ACTIONS(4942), - [anon_sym_STAR_EQ] = ACTIONS(4942), - [anon_sym_SLASH_EQ] = ACTIONS(4942), - [anon_sym_PERCENT_EQ] = ACTIONS(4942), - [anon_sym_BANG_EQ] = ACTIONS(4940), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4940), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), - [anon_sym_LT_EQ] = ACTIONS(4942), - [anon_sym_GT_EQ] = ACTIONS(4942), - [anon_sym_BANGin] = ACTIONS(4942), - [anon_sym_is] = ACTIONS(4940), - [anon_sym_BANGis] = ACTIONS(4942), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_as_QMARK] = ACTIONS(4942), - [anon_sym_PLUS_PLUS] = ACTIONS(4942), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_BANG] = ACTIONS(4940), - [anon_sym_BANG_BANG] = ACTIONS(4942), - [anon_sym_suspend] = ACTIONS(4940), - [anon_sym_sealed] = ACTIONS(4940), - [anon_sym_annotation] = ACTIONS(4940), - [anon_sym_data] = ACTIONS(4940), - [anon_sym_inner] = ACTIONS(4940), - [anon_sym_value] = ACTIONS(4940), - [anon_sym_override] = ACTIONS(4940), - [anon_sym_lateinit] = ACTIONS(4940), - [anon_sym_public] = ACTIONS(4940), - [anon_sym_private] = ACTIONS(4940), - [anon_sym_internal] = ACTIONS(4940), - [anon_sym_protected] = ACTIONS(4940), - [anon_sym_tailrec] = ACTIONS(4940), - [anon_sym_operator] = ACTIONS(4940), - [anon_sym_infix] = ACTIONS(4940), - [anon_sym_inline] = ACTIONS(4940), - [anon_sym_external] = ACTIONS(4940), - [sym_property_modifier] = ACTIONS(4940), - [anon_sym_abstract] = ACTIONS(4940), - [anon_sym_final] = ACTIONS(4940), - [anon_sym_open] = ACTIONS(4940), - [anon_sym_vararg] = ACTIONS(4940), - [anon_sym_noinline] = ACTIONS(4940), - [anon_sym_crossinline] = ACTIONS(4940), - [anon_sym_expect] = ACTIONS(4940), - [anon_sym_actual] = ACTIONS(4940), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4942), - [anon_sym_continue_AT] = ACTIONS(4942), - [anon_sym_break_AT] = ACTIONS(4942), - [anon_sym_this_AT] = ACTIONS(4942), - [anon_sym_super_AT] = ACTIONS(4942), - [sym_real_literal] = ACTIONS(4942), - [sym_integer_literal] = ACTIONS(4940), - [sym_hex_literal] = ACTIONS(4942), - [sym_bin_literal] = ACTIONS(4942), - [anon_sym_true] = ACTIONS(4940), - [anon_sym_false] = ACTIONS(4940), - [anon_sym_SQUOTE] = ACTIONS(4942), - [sym__backtick_identifier] = ACTIONS(4942), - [sym__automatic_semicolon] = ACTIONS(4942), - [sym_safe_nav] = ACTIONS(4942), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4942), + [sym__alpha_identifier] = ACTIONS(4962), + [anon_sym_AT] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4962), + [anon_sym_EQ] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_RBRACE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4962), + [anon_sym_where] = ACTIONS(4962), + [anon_sym_object] = ACTIONS(4962), + [anon_sym_fun] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_get] = ACTIONS(4962), + [anon_sym_set] = ACTIONS(4962), + [anon_sym_this] = ACTIONS(4962), + [anon_sym_super] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [sym_label] = ACTIONS(4962), + [anon_sym_in] = ACTIONS(4962), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_QMARK_COLON] = ACTIONS(4964), + [anon_sym_AMP_AMP] = ACTIONS(4964), + [anon_sym_PIPE_PIPE] = ACTIONS(4964), + [anon_sym_null] = ACTIONS(4962), + [anon_sym_if] = ACTIONS(4962), + [anon_sym_else] = ACTIONS(4962), + [anon_sym_when] = ACTIONS(4962), + [anon_sym_try] = ACTIONS(4962), + [anon_sym_throw] = ACTIONS(4962), + [anon_sym_return] = ACTIONS(4962), + [anon_sym_continue] = ACTIONS(4962), + [anon_sym_break] = ACTIONS(4962), + [anon_sym_COLON_COLON] = ACTIONS(4964), + [anon_sym_PLUS_EQ] = ACTIONS(4964), + [anon_sym_DASH_EQ] = ACTIONS(4964), + [anon_sym_STAR_EQ] = ACTIONS(4964), + [anon_sym_SLASH_EQ] = ACTIONS(4964), + [anon_sym_PERCENT_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4964), + [anon_sym_LT_EQ] = ACTIONS(4964), + [anon_sym_GT_EQ] = ACTIONS(4964), + [anon_sym_BANGin] = ACTIONS(4964), + [anon_sym_is] = ACTIONS(4962), + [anon_sym_BANGis] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_PERCENT] = ACTIONS(4962), + [anon_sym_as_QMARK] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4962), + [anon_sym_BANG_BANG] = ACTIONS(4964), + [anon_sym_suspend] = ACTIONS(4962), + [anon_sym_sealed] = ACTIONS(4962), + [anon_sym_annotation] = ACTIONS(4962), + [anon_sym_data] = ACTIONS(4962), + [anon_sym_inner] = ACTIONS(4962), + [anon_sym_value] = ACTIONS(4962), + [anon_sym_override] = ACTIONS(4962), + [anon_sym_lateinit] = ACTIONS(4962), + [anon_sym_public] = ACTIONS(4962), + [anon_sym_private] = ACTIONS(4962), + [anon_sym_internal] = ACTIONS(4962), + [anon_sym_protected] = ACTIONS(4962), + [anon_sym_tailrec] = ACTIONS(4962), + [anon_sym_operator] = ACTIONS(4962), + [anon_sym_infix] = ACTIONS(4962), + [anon_sym_inline] = ACTIONS(4962), + [anon_sym_external] = ACTIONS(4962), + [sym_property_modifier] = ACTIONS(4962), + [anon_sym_abstract] = ACTIONS(4962), + [anon_sym_final] = ACTIONS(4962), + [anon_sym_open] = ACTIONS(4962), + [anon_sym_vararg] = ACTIONS(4962), + [anon_sym_noinline] = ACTIONS(4962), + [anon_sym_crossinline] = ACTIONS(4962), + [anon_sym_expect] = ACTIONS(4962), + [anon_sym_actual] = ACTIONS(4962), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4964), + [anon_sym_continue_AT] = ACTIONS(4964), + [anon_sym_break_AT] = ACTIONS(4964), + [anon_sym_this_AT] = ACTIONS(4964), + [anon_sym_super_AT] = ACTIONS(4964), + [sym_real_literal] = ACTIONS(4964), + [sym_integer_literal] = ACTIONS(4962), + [sym_hex_literal] = ACTIONS(4964), + [sym_bin_literal] = ACTIONS(4964), + [anon_sym_true] = ACTIONS(4962), + [anon_sym_false] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4964), + [sym__backtick_identifier] = ACTIONS(4964), + [sym__automatic_semicolon] = ACTIONS(4964), + [sym_safe_nav] = ACTIONS(4964), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4964), }, [1080] = { - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_fun] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_object] = ACTIONS(4637), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_this] = ACTIONS(4637), - [anon_sym_super] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [sym_label] = ACTIONS(4637), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_null] = ACTIONS(4637), - [anon_sym_if] = ACTIONS(4637), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_when] = ACTIONS(4637), - [anon_sym_try] = ACTIONS(4637), - [anon_sym_throw] = ACTIONS(4637), - [anon_sym_return] = ACTIONS(4637), - [anon_sym_continue] = ACTIONS(4637), - [anon_sym_break] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_suspend] = ACTIONS(4637), - [anon_sym_sealed] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4637), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_override] = ACTIONS(4637), - [anon_sym_lateinit] = ACTIONS(4637), - [anon_sym_public] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4637), - [anon_sym_internal] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4637), - [anon_sym_tailrec] = ACTIONS(4637), - [anon_sym_operator] = ACTIONS(4637), - [anon_sym_infix] = ACTIONS(4637), - [anon_sym_inline] = ACTIONS(4637), - [anon_sym_external] = ACTIONS(4637), - [sym_property_modifier] = ACTIONS(4637), - [anon_sym_abstract] = ACTIONS(4637), - [anon_sym_final] = ACTIONS(4637), - [anon_sym_open] = ACTIONS(4637), - [anon_sym_vararg] = ACTIONS(4637), - [anon_sym_noinline] = ACTIONS(4637), - [anon_sym_crossinline] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4639), - [anon_sym_continue_AT] = ACTIONS(4639), - [anon_sym_break_AT] = ACTIONS(4639), - [anon_sym_this_AT] = ACTIONS(4639), - [anon_sym_super_AT] = ACTIONS(4639), - [sym_real_literal] = ACTIONS(4639), - [sym_integer_literal] = ACTIONS(4637), - [sym_hex_literal] = ACTIONS(4639), - [sym_bin_literal] = ACTIONS(4639), - [anon_sym_true] = ACTIONS(4637), - [anon_sym_false] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4639), - [sym__backtick_identifier] = ACTIONS(4639), - [sym__automatic_semicolon] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4639), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, [1081] = { - [sym__alpha_identifier] = ACTIONS(4944), - [anon_sym_AT] = ACTIONS(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_as] = ACTIONS(4944), - [anon_sym_EQ] = ACTIONS(4944), - [anon_sym_fun] = ACTIONS(4944), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_where] = ACTIONS(4944), - [anon_sym_object] = ACTIONS(4944), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_get] = ACTIONS(4944), - [anon_sym_set] = ACTIONS(4944), - [anon_sym_this] = ACTIONS(4944), - [anon_sym_super] = ACTIONS(4944), - [anon_sym_STAR] = ACTIONS(4944), - [sym_label] = ACTIONS(4944), - [anon_sym_in] = ACTIONS(4944), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_QMARK_COLON] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_null] = ACTIONS(4944), - [anon_sym_if] = ACTIONS(4944), - [anon_sym_else] = ACTIONS(4944), - [anon_sym_when] = ACTIONS(4944), - [anon_sym_try] = ACTIONS(4944), - [anon_sym_throw] = ACTIONS(4944), - [anon_sym_return] = ACTIONS(4944), - [anon_sym_continue] = ACTIONS(4944), - [anon_sym_break] = ACTIONS(4944), - [anon_sym_COLON_COLON] = ACTIONS(4946), - [anon_sym_PLUS_EQ] = ACTIONS(4946), - [anon_sym_DASH_EQ] = ACTIONS(4946), - [anon_sym_STAR_EQ] = ACTIONS(4946), - [anon_sym_SLASH_EQ] = ACTIONS(4946), - [anon_sym_PERCENT_EQ] = ACTIONS(4946), - [anon_sym_BANG_EQ] = ACTIONS(4944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_BANGin] = ACTIONS(4946), - [anon_sym_is] = ACTIONS(4944), - [anon_sym_BANGis] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4944), - [anon_sym_as_QMARK] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_BANG] = ACTIONS(4944), - [anon_sym_BANG_BANG] = ACTIONS(4946), - [anon_sym_suspend] = ACTIONS(4944), - [anon_sym_sealed] = ACTIONS(4944), - [anon_sym_annotation] = ACTIONS(4944), - [anon_sym_data] = ACTIONS(4944), - [anon_sym_inner] = ACTIONS(4944), - [anon_sym_value] = ACTIONS(4944), - [anon_sym_override] = ACTIONS(4944), - [anon_sym_lateinit] = ACTIONS(4944), - [anon_sym_public] = ACTIONS(4944), - [anon_sym_private] = ACTIONS(4944), - [anon_sym_internal] = ACTIONS(4944), - [anon_sym_protected] = ACTIONS(4944), - [anon_sym_tailrec] = ACTIONS(4944), - [anon_sym_operator] = ACTIONS(4944), - [anon_sym_infix] = ACTIONS(4944), - [anon_sym_inline] = ACTIONS(4944), - [anon_sym_external] = ACTIONS(4944), - [sym_property_modifier] = ACTIONS(4944), - [anon_sym_abstract] = ACTIONS(4944), - [anon_sym_final] = ACTIONS(4944), - [anon_sym_open] = ACTIONS(4944), - [anon_sym_vararg] = ACTIONS(4944), - [anon_sym_noinline] = ACTIONS(4944), - [anon_sym_crossinline] = ACTIONS(4944), - [anon_sym_expect] = ACTIONS(4944), - [anon_sym_actual] = ACTIONS(4944), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4946), - [anon_sym_continue_AT] = ACTIONS(4946), - [anon_sym_break_AT] = ACTIONS(4946), - [anon_sym_this_AT] = ACTIONS(4946), - [anon_sym_super_AT] = ACTIONS(4946), - [sym_real_literal] = ACTIONS(4946), - [sym_integer_literal] = ACTIONS(4944), - [sym_hex_literal] = ACTIONS(4946), - [sym_bin_literal] = ACTIONS(4946), - [anon_sym_true] = ACTIONS(4944), - [anon_sym_false] = ACTIONS(4944), - [anon_sym_SQUOTE] = ACTIONS(4946), - [sym__backtick_identifier] = ACTIONS(4946), - [sym__automatic_semicolon] = ACTIONS(4946), - [sym_safe_nav] = ACTIONS(4946), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4946), - }, - [1082] = { - [sym__alpha_identifier] = ACTIONS(4948), - [anon_sym_AT] = ACTIONS(4950), - [anon_sym_LBRACK] = ACTIONS(4950), - [anon_sym_as] = ACTIONS(4948), - [anon_sym_EQ] = ACTIONS(4948), - [anon_sym_fun] = ACTIONS(4948), - [anon_sym_LBRACE] = ACTIONS(4950), - [anon_sym_RBRACE] = ACTIONS(4950), - [anon_sym_LPAREN] = ACTIONS(4950), - [anon_sym_COMMA] = ACTIONS(4950), - [anon_sym_LT] = ACTIONS(4948), - [anon_sym_GT] = ACTIONS(4948), - [anon_sym_where] = ACTIONS(4948), - [anon_sym_object] = ACTIONS(4948), - [anon_sym_DOT] = ACTIONS(4948), - [anon_sym_SEMI] = ACTIONS(4950), - [anon_sym_get] = ACTIONS(4948), - [anon_sym_set] = ACTIONS(4948), - [anon_sym_this] = ACTIONS(4948), - [anon_sym_super] = ACTIONS(4948), - [anon_sym_STAR] = ACTIONS(4948), - [sym_label] = ACTIONS(4948), - [anon_sym_in] = ACTIONS(4948), - [anon_sym_DOT_DOT] = ACTIONS(4950), - [anon_sym_QMARK_COLON] = ACTIONS(4950), - [anon_sym_AMP_AMP] = ACTIONS(4950), - [anon_sym_PIPE_PIPE] = ACTIONS(4950), - [anon_sym_null] = ACTIONS(4948), - [anon_sym_if] = ACTIONS(4948), - [anon_sym_else] = ACTIONS(4948), - [anon_sym_when] = ACTIONS(4948), - [anon_sym_try] = ACTIONS(4948), - [anon_sym_throw] = ACTIONS(4948), - [anon_sym_return] = ACTIONS(4948), - [anon_sym_continue] = ACTIONS(4948), - [anon_sym_break] = ACTIONS(4948), - [anon_sym_COLON_COLON] = ACTIONS(4950), - [anon_sym_PLUS_EQ] = ACTIONS(4950), - [anon_sym_DASH_EQ] = ACTIONS(4950), - [anon_sym_STAR_EQ] = ACTIONS(4950), - [anon_sym_SLASH_EQ] = ACTIONS(4950), - [anon_sym_PERCENT_EQ] = ACTIONS(4950), - [anon_sym_BANG_EQ] = ACTIONS(4948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4950), - [anon_sym_EQ_EQ] = ACTIONS(4948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4950), - [anon_sym_LT_EQ] = ACTIONS(4950), - [anon_sym_GT_EQ] = ACTIONS(4950), - [anon_sym_BANGin] = ACTIONS(4950), - [anon_sym_is] = ACTIONS(4948), - [anon_sym_BANGis] = ACTIONS(4950), - [anon_sym_PLUS] = ACTIONS(4948), - [anon_sym_DASH] = ACTIONS(4948), - [anon_sym_SLASH] = ACTIONS(4948), - [anon_sym_PERCENT] = ACTIONS(4948), - [anon_sym_as_QMARK] = ACTIONS(4950), - [anon_sym_PLUS_PLUS] = ACTIONS(4950), - [anon_sym_DASH_DASH] = ACTIONS(4950), - [anon_sym_BANG] = ACTIONS(4948), - [anon_sym_BANG_BANG] = ACTIONS(4950), - [anon_sym_suspend] = ACTIONS(4948), - [anon_sym_sealed] = ACTIONS(4948), - [anon_sym_annotation] = ACTIONS(4948), - [anon_sym_data] = ACTIONS(4948), - [anon_sym_inner] = ACTIONS(4948), - [anon_sym_value] = ACTIONS(4948), - [anon_sym_override] = ACTIONS(4948), - [anon_sym_lateinit] = ACTIONS(4948), - [anon_sym_public] = ACTIONS(4948), - [anon_sym_private] = ACTIONS(4948), - [anon_sym_internal] = ACTIONS(4948), - [anon_sym_protected] = ACTIONS(4948), - [anon_sym_tailrec] = ACTIONS(4948), - [anon_sym_operator] = ACTIONS(4948), - [anon_sym_infix] = ACTIONS(4948), - [anon_sym_inline] = ACTIONS(4948), - [anon_sym_external] = ACTIONS(4948), - [sym_property_modifier] = ACTIONS(4948), - [anon_sym_abstract] = ACTIONS(4948), - [anon_sym_final] = ACTIONS(4948), - [anon_sym_open] = ACTIONS(4948), - [anon_sym_vararg] = ACTIONS(4948), - [anon_sym_noinline] = ACTIONS(4948), - [anon_sym_crossinline] = ACTIONS(4948), - [anon_sym_expect] = ACTIONS(4948), - [anon_sym_actual] = ACTIONS(4948), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4950), - [anon_sym_continue_AT] = ACTIONS(4950), - [anon_sym_break_AT] = ACTIONS(4950), - [anon_sym_this_AT] = ACTIONS(4950), - [anon_sym_super_AT] = ACTIONS(4950), - [sym_real_literal] = ACTIONS(4950), - [sym_integer_literal] = ACTIONS(4948), - [sym_hex_literal] = ACTIONS(4950), - [sym_bin_literal] = ACTIONS(4950), - [anon_sym_true] = ACTIONS(4948), - [anon_sym_false] = ACTIONS(4948), - [anon_sym_SQUOTE] = ACTIONS(4950), - [sym__backtick_identifier] = ACTIONS(4950), - [sym__automatic_semicolon] = ACTIONS(4950), - [sym_safe_nav] = ACTIONS(4950), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4950), - }, - [1083] = { - [sym__alpha_identifier] = ACTIONS(4952), - [anon_sym_AT] = ACTIONS(4954), - [anon_sym_LBRACK] = ACTIONS(4954), - [anon_sym_as] = ACTIONS(4952), - [anon_sym_EQ] = ACTIONS(4952), - [anon_sym_fun] = ACTIONS(4952), - [anon_sym_LBRACE] = ACTIONS(4954), - [anon_sym_RBRACE] = ACTIONS(4954), - [anon_sym_LPAREN] = ACTIONS(4954), - [anon_sym_COMMA] = ACTIONS(4954), - [anon_sym_LT] = ACTIONS(4952), - [anon_sym_GT] = ACTIONS(4952), - [anon_sym_where] = ACTIONS(4952), - [anon_sym_object] = ACTIONS(4952), - [anon_sym_DOT] = ACTIONS(4952), - [anon_sym_SEMI] = ACTIONS(4954), - [anon_sym_get] = ACTIONS(4952), - [anon_sym_set] = ACTIONS(4952), - [anon_sym_this] = ACTIONS(4952), - [anon_sym_super] = ACTIONS(4952), - [anon_sym_STAR] = ACTIONS(4952), - [sym_label] = ACTIONS(4952), - [anon_sym_in] = ACTIONS(4952), - [anon_sym_DOT_DOT] = ACTIONS(4954), - [anon_sym_QMARK_COLON] = ACTIONS(4954), - [anon_sym_AMP_AMP] = ACTIONS(4954), - [anon_sym_PIPE_PIPE] = ACTIONS(4954), - [anon_sym_null] = ACTIONS(4952), - [anon_sym_if] = ACTIONS(4952), - [anon_sym_else] = ACTIONS(4952), - [anon_sym_when] = ACTIONS(4952), - [anon_sym_try] = ACTIONS(4952), - [anon_sym_throw] = ACTIONS(4952), - [anon_sym_return] = ACTIONS(4952), - [anon_sym_continue] = ACTIONS(4952), - [anon_sym_break] = ACTIONS(4952), - [anon_sym_COLON_COLON] = ACTIONS(4954), - [anon_sym_PLUS_EQ] = ACTIONS(4954), - [anon_sym_DASH_EQ] = ACTIONS(4954), - [anon_sym_STAR_EQ] = ACTIONS(4954), - [anon_sym_SLASH_EQ] = ACTIONS(4954), - [anon_sym_PERCENT_EQ] = ACTIONS(4954), - [anon_sym_BANG_EQ] = ACTIONS(4952), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4954), - [anon_sym_EQ_EQ] = ACTIONS(4952), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4954), - [anon_sym_LT_EQ] = ACTIONS(4954), - [anon_sym_GT_EQ] = ACTIONS(4954), - [anon_sym_BANGin] = ACTIONS(4954), - [anon_sym_is] = ACTIONS(4952), - [anon_sym_BANGis] = ACTIONS(4954), - [anon_sym_PLUS] = ACTIONS(4952), - [anon_sym_DASH] = ACTIONS(4952), - [anon_sym_SLASH] = ACTIONS(4952), - [anon_sym_PERCENT] = ACTIONS(4952), - [anon_sym_as_QMARK] = ACTIONS(4954), - [anon_sym_PLUS_PLUS] = ACTIONS(4954), - [anon_sym_DASH_DASH] = ACTIONS(4954), - [anon_sym_BANG] = ACTIONS(4952), - [anon_sym_BANG_BANG] = ACTIONS(4954), - [anon_sym_suspend] = ACTIONS(4952), - [anon_sym_sealed] = ACTIONS(4952), - [anon_sym_annotation] = ACTIONS(4952), - [anon_sym_data] = ACTIONS(4952), - [anon_sym_inner] = ACTIONS(4952), - [anon_sym_value] = ACTIONS(4952), - [anon_sym_override] = ACTIONS(4952), - [anon_sym_lateinit] = ACTIONS(4952), - [anon_sym_public] = ACTIONS(4952), - [anon_sym_private] = ACTIONS(4952), - [anon_sym_internal] = ACTIONS(4952), - [anon_sym_protected] = ACTIONS(4952), - [anon_sym_tailrec] = ACTIONS(4952), - [anon_sym_operator] = ACTIONS(4952), - [anon_sym_infix] = ACTIONS(4952), - [anon_sym_inline] = ACTIONS(4952), - [anon_sym_external] = ACTIONS(4952), - [sym_property_modifier] = ACTIONS(4952), - [anon_sym_abstract] = ACTIONS(4952), - [anon_sym_final] = ACTIONS(4952), - [anon_sym_open] = ACTIONS(4952), - [anon_sym_vararg] = ACTIONS(4952), - [anon_sym_noinline] = ACTIONS(4952), - [anon_sym_crossinline] = ACTIONS(4952), - [anon_sym_expect] = ACTIONS(4952), - [anon_sym_actual] = ACTIONS(4952), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4954), - [anon_sym_continue_AT] = ACTIONS(4954), - [anon_sym_break_AT] = ACTIONS(4954), - [anon_sym_this_AT] = ACTIONS(4954), - [anon_sym_super_AT] = ACTIONS(4954), - [sym_real_literal] = ACTIONS(4954), - [sym_integer_literal] = ACTIONS(4952), - [sym_hex_literal] = ACTIONS(4954), - [sym_bin_literal] = ACTIONS(4954), - [anon_sym_true] = ACTIONS(4952), - [anon_sym_false] = ACTIONS(4952), - [anon_sym_SQUOTE] = ACTIONS(4954), - [sym__backtick_identifier] = ACTIONS(4954), - [sym__automatic_semicolon] = ACTIONS(4954), - [sym_safe_nav] = ACTIONS(4954), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4954), - }, - [1084] = { - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_fun] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(4467), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(4465), - [anon_sym_object] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_this] = ACTIONS(4465), - [anon_sym_super] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [sym_label] = ACTIONS(4465), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_null] = ACTIONS(4465), - [anon_sym_if] = ACTIONS(4465), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_when] = ACTIONS(4465), - [anon_sym_try] = ACTIONS(4465), - [anon_sym_throw] = ACTIONS(4465), - [anon_sym_return] = ACTIONS(4465), - [anon_sym_continue] = ACTIONS(4465), - [anon_sym_break] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_suspend] = ACTIONS(4465), - [anon_sym_sealed] = ACTIONS(4465), - [anon_sym_annotation] = ACTIONS(4465), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_override] = ACTIONS(4465), - [anon_sym_lateinit] = ACTIONS(4465), - [anon_sym_public] = ACTIONS(4465), - [anon_sym_private] = ACTIONS(4465), - [anon_sym_internal] = ACTIONS(4465), - [anon_sym_protected] = ACTIONS(4465), - [anon_sym_tailrec] = ACTIONS(4465), - [anon_sym_operator] = ACTIONS(4465), - [anon_sym_infix] = ACTIONS(4465), - [anon_sym_inline] = ACTIONS(4465), - [anon_sym_external] = ACTIONS(4465), - [sym_property_modifier] = ACTIONS(4465), - [anon_sym_abstract] = ACTIONS(4465), - [anon_sym_final] = ACTIONS(4465), - [anon_sym_open] = ACTIONS(4465), - [anon_sym_vararg] = ACTIONS(4465), - [anon_sym_noinline] = ACTIONS(4465), - [anon_sym_crossinline] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4467), - [anon_sym_continue_AT] = ACTIONS(4467), - [anon_sym_break_AT] = ACTIONS(4467), - [anon_sym_this_AT] = ACTIONS(4467), - [anon_sym_super_AT] = ACTIONS(4467), - [sym_real_literal] = ACTIONS(4467), - [sym_integer_literal] = ACTIONS(4465), - [sym_hex_literal] = ACTIONS(4467), - [sym_bin_literal] = ACTIONS(4467), - [anon_sym_true] = ACTIONS(4465), - [anon_sym_false] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4467), - [sym__backtick_identifier] = ACTIONS(4467), - [sym__automatic_semicolon] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4467), - }, - [1085] = { - [sym__alpha_identifier] = ACTIONS(4956), - [anon_sym_AT] = ACTIONS(4958), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_as] = ACTIONS(4956), - [anon_sym_EQ] = ACTIONS(4956), - [anon_sym_fun] = ACTIONS(4956), - [anon_sym_LBRACE] = ACTIONS(4958), - [anon_sym_RBRACE] = ACTIONS(4958), - [anon_sym_LPAREN] = ACTIONS(4958), - [anon_sym_COMMA] = ACTIONS(4958), - [anon_sym_LT] = ACTIONS(4956), - [anon_sym_GT] = ACTIONS(4956), - [anon_sym_where] = ACTIONS(4956), - [anon_sym_object] = ACTIONS(4956), - [anon_sym_DOT] = ACTIONS(4956), - [anon_sym_SEMI] = ACTIONS(4958), - [anon_sym_get] = ACTIONS(4956), - [anon_sym_set] = ACTIONS(4956), - [anon_sym_this] = ACTIONS(4956), - [anon_sym_super] = ACTIONS(4956), - [anon_sym_STAR] = ACTIONS(4956), - [sym_label] = ACTIONS(4956), - [anon_sym_in] = ACTIONS(4956), - [anon_sym_DOT_DOT] = ACTIONS(4958), - [anon_sym_QMARK_COLON] = ACTIONS(4958), - [anon_sym_AMP_AMP] = ACTIONS(4958), - [anon_sym_PIPE_PIPE] = ACTIONS(4958), - [anon_sym_null] = ACTIONS(4956), - [anon_sym_if] = ACTIONS(4956), - [anon_sym_else] = ACTIONS(4956), - [anon_sym_when] = ACTIONS(4956), - [anon_sym_try] = ACTIONS(4956), - [anon_sym_throw] = ACTIONS(4956), - [anon_sym_return] = ACTIONS(4956), - [anon_sym_continue] = ACTIONS(4956), - [anon_sym_break] = ACTIONS(4956), - [anon_sym_COLON_COLON] = ACTIONS(4958), - [anon_sym_PLUS_EQ] = ACTIONS(4958), - [anon_sym_DASH_EQ] = ACTIONS(4958), - [anon_sym_STAR_EQ] = ACTIONS(4958), - [anon_sym_SLASH_EQ] = ACTIONS(4958), - [anon_sym_PERCENT_EQ] = ACTIONS(4958), - [anon_sym_BANG_EQ] = ACTIONS(4956), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4958), - [anon_sym_EQ_EQ] = ACTIONS(4956), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4958), - [anon_sym_LT_EQ] = ACTIONS(4958), - [anon_sym_GT_EQ] = ACTIONS(4958), - [anon_sym_BANGin] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4956), - [anon_sym_BANGis] = ACTIONS(4958), - [anon_sym_PLUS] = ACTIONS(4956), - [anon_sym_DASH] = ACTIONS(4956), - [anon_sym_SLASH] = ACTIONS(4956), - [anon_sym_PERCENT] = ACTIONS(4956), - [anon_sym_as_QMARK] = ACTIONS(4958), - [anon_sym_PLUS_PLUS] = ACTIONS(4958), - [anon_sym_DASH_DASH] = ACTIONS(4958), - [anon_sym_BANG] = ACTIONS(4956), - [anon_sym_BANG_BANG] = ACTIONS(4958), - [anon_sym_suspend] = ACTIONS(4956), - [anon_sym_sealed] = ACTIONS(4956), - [anon_sym_annotation] = ACTIONS(4956), - [anon_sym_data] = ACTIONS(4956), - [anon_sym_inner] = ACTIONS(4956), - [anon_sym_value] = ACTIONS(4956), - [anon_sym_override] = ACTIONS(4956), - [anon_sym_lateinit] = ACTIONS(4956), - [anon_sym_public] = ACTIONS(4956), - [anon_sym_private] = ACTIONS(4956), - [anon_sym_internal] = ACTIONS(4956), - [anon_sym_protected] = ACTIONS(4956), - [anon_sym_tailrec] = ACTIONS(4956), - [anon_sym_operator] = ACTIONS(4956), - [anon_sym_infix] = ACTIONS(4956), - [anon_sym_inline] = ACTIONS(4956), - [anon_sym_external] = ACTIONS(4956), - [sym_property_modifier] = ACTIONS(4956), - [anon_sym_abstract] = ACTIONS(4956), - [anon_sym_final] = ACTIONS(4956), - [anon_sym_open] = ACTIONS(4956), - [anon_sym_vararg] = ACTIONS(4956), - [anon_sym_noinline] = ACTIONS(4956), - [anon_sym_crossinline] = ACTIONS(4956), - [anon_sym_expect] = ACTIONS(4956), - [anon_sym_actual] = ACTIONS(4956), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4958), - [anon_sym_continue_AT] = ACTIONS(4958), - [anon_sym_break_AT] = ACTIONS(4958), - [anon_sym_this_AT] = ACTIONS(4958), - [anon_sym_super_AT] = ACTIONS(4958), - [sym_real_literal] = ACTIONS(4958), - [sym_integer_literal] = ACTIONS(4956), - [sym_hex_literal] = ACTIONS(4958), - [sym_bin_literal] = ACTIONS(4958), - [anon_sym_true] = ACTIONS(4956), - [anon_sym_false] = ACTIONS(4956), - [anon_sym_SQUOTE] = ACTIONS(4958), - [sym__backtick_identifier] = ACTIONS(4958), - [sym__automatic_semicolon] = ACTIONS(4958), - [sym_safe_nav] = ACTIONS(4958), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4958), - }, - [1086] = { - [sym__alpha_identifier] = ACTIONS(4960), - [anon_sym_AT] = ACTIONS(4962), - [anon_sym_LBRACK] = ACTIONS(4962), - [anon_sym_as] = ACTIONS(4960), - [anon_sym_EQ] = ACTIONS(4960), - [anon_sym_fun] = ACTIONS(4960), - [anon_sym_LBRACE] = ACTIONS(4962), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_COMMA] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4960), - [anon_sym_GT] = ACTIONS(4960), - [anon_sym_where] = ACTIONS(4960), - [anon_sym_object] = ACTIONS(4960), - [anon_sym_DOT] = ACTIONS(4960), - [anon_sym_SEMI] = ACTIONS(4962), - [anon_sym_get] = ACTIONS(4960), - [anon_sym_set] = ACTIONS(4960), - [anon_sym_this] = ACTIONS(4960), - [anon_sym_super] = ACTIONS(4960), - [anon_sym_STAR] = ACTIONS(4960), - [sym_label] = ACTIONS(4960), - [anon_sym_in] = ACTIONS(4960), - [anon_sym_DOT_DOT] = ACTIONS(4962), - [anon_sym_QMARK_COLON] = ACTIONS(4962), - [anon_sym_AMP_AMP] = ACTIONS(4962), - [anon_sym_PIPE_PIPE] = ACTIONS(4962), - [anon_sym_null] = ACTIONS(4960), - [anon_sym_if] = ACTIONS(4960), - [anon_sym_else] = ACTIONS(4960), - [anon_sym_when] = ACTIONS(4960), - [anon_sym_try] = ACTIONS(4960), - [anon_sym_throw] = ACTIONS(4960), - [anon_sym_return] = ACTIONS(4960), - [anon_sym_continue] = ACTIONS(4960), - [anon_sym_break] = ACTIONS(4960), - [anon_sym_COLON_COLON] = ACTIONS(4962), - [anon_sym_PLUS_EQ] = ACTIONS(4962), - [anon_sym_DASH_EQ] = ACTIONS(4962), - [anon_sym_STAR_EQ] = ACTIONS(4962), - [anon_sym_SLASH_EQ] = ACTIONS(4962), - [anon_sym_PERCENT_EQ] = ACTIONS(4962), - [anon_sym_BANG_EQ] = ACTIONS(4960), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4962), - [anon_sym_EQ_EQ] = ACTIONS(4960), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4962), - [anon_sym_LT_EQ] = ACTIONS(4962), - [anon_sym_GT_EQ] = ACTIONS(4962), - [anon_sym_BANGin] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_BANGis] = ACTIONS(4962), - [anon_sym_PLUS] = ACTIONS(4960), - [anon_sym_DASH] = ACTIONS(4960), - [anon_sym_SLASH] = ACTIONS(4960), - [anon_sym_PERCENT] = ACTIONS(4960), - [anon_sym_as_QMARK] = ACTIONS(4962), - [anon_sym_PLUS_PLUS] = ACTIONS(4962), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_BANG] = ACTIONS(4960), - [anon_sym_BANG_BANG] = ACTIONS(4962), - [anon_sym_suspend] = ACTIONS(4960), - [anon_sym_sealed] = ACTIONS(4960), - [anon_sym_annotation] = ACTIONS(4960), - [anon_sym_data] = ACTIONS(4960), - [anon_sym_inner] = ACTIONS(4960), - [anon_sym_value] = ACTIONS(4960), - [anon_sym_override] = ACTIONS(4960), - [anon_sym_lateinit] = ACTIONS(4960), - [anon_sym_public] = ACTIONS(4960), - [anon_sym_private] = ACTIONS(4960), - [anon_sym_internal] = ACTIONS(4960), - [anon_sym_protected] = ACTIONS(4960), - [anon_sym_tailrec] = ACTIONS(4960), - [anon_sym_operator] = ACTIONS(4960), - [anon_sym_infix] = ACTIONS(4960), - [anon_sym_inline] = ACTIONS(4960), - [anon_sym_external] = ACTIONS(4960), - [sym_property_modifier] = ACTIONS(4960), - [anon_sym_abstract] = ACTIONS(4960), - [anon_sym_final] = ACTIONS(4960), - [anon_sym_open] = ACTIONS(4960), - [anon_sym_vararg] = ACTIONS(4960), - [anon_sym_noinline] = ACTIONS(4960), - [anon_sym_crossinline] = ACTIONS(4960), - [anon_sym_expect] = ACTIONS(4960), - [anon_sym_actual] = ACTIONS(4960), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4962), - [anon_sym_continue_AT] = ACTIONS(4962), - [anon_sym_break_AT] = ACTIONS(4962), - [anon_sym_this_AT] = ACTIONS(4962), - [anon_sym_super_AT] = ACTIONS(4962), - [sym_real_literal] = ACTIONS(4962), - [sym_integer_literal] = ACTIONS(4960), - [sym_hex_literal] = ACTIONS(4962), - [sym_bin_literal] = ACTIONS(4962), - [anon_sym_true] = ACTIONS(4960), - [anon_sym_false] = ACTIONS(4960), - [anon_sym_SQUOTE] = ACTIONS(4962), - [sym__backtick_identifier] = ACTIONS(4962), - [sym__automatic_semicolon] = ACTIONS(4962), - [sym_safe_nav] = ACTIONS(4962), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4962), - }, - [1087] = { [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), [anon_sym_EQ] = ACTIONS(4183), - [anon_sym_fun] = ACTIONS(4183), [anon_sym_LBRACE] = ACTIONS(4185), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), @@ -174825,6 +173197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4183), [anon_sym_where] = ACTIONS(4183), [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), @@ -174916,1603 +173289,1072 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4185), }, - [1088] = { - [sym__alpha_identifier] = ACTIONS(4964), - [anon_sym_AT] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_as] = ACTIONS(4964), - [anon_sym_EQ] = ACTIONS(4964), - [anon_sym_fun] = ACTIONS(4964), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_RBRACE] = ACTIONS(4966), - [anon_sym_LPAREN] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_where] = ACTIONS(4964), - [anon_sym_object] = ACTIONS(4964), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_SEMI] = ACTIONS(4966), - [anon_sym_get] = ACTIONS(4964), - [anon_sym_set] = ACTIONS(4964), - [anon_sym_this] = ACTIONS(4964), - [anon_sym_super] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4964), - [sym_label] = ACTIONS(4964), - [anon_sym_in] = ACTIONS(4964), - [anon_sym_DOT_DOT] = ACTIONS(4966), - [anon_sym_QMARK_COLON] = ACTIONS(4966), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_null] = ACTIONS(4964), - [anon_sym_if] = ACTIONS(4964), - [anon_sym_else] = ACTIONS(4964), - [anon_sym_when] = ACTIONS(4964), - [anon_sym_try] = ACTIONS(4964), - [anon_sym_throw] = ACTIONS(4964), - [anon_sym_return] = ACTIONS(4964), - [anon_sym_continue] = ACTIONS(4964), - [anon_sym_break] = ACTIONS(4964), - [anon_sym_COLON_COLON] = ACTIONS(4966), - [anon_sym_PLUS_EQ] = ACTIONS(4966), - [anon_sym_DASH_EQ] = ACTIONS(4966), - [anon_sym_STAR_EQ] = ACTIONS(4966), - [anon_sym_SLASH_EQ] = ACTIONS(4966), - [anon_sym_PERCENT_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4966), - [anon_sym_EQ_EQ] = ACTIONS(4964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4966), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_BANGin] = ACTIONS(4966), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_BANGis] = ACTIONS(4966), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4964), - [anon_sym_as_QMARK] = ACTIONS(4966), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_BANG] = ACTIONS(4964), - [anon_sym_BANG_BANG] = ACTIONS(4966), - [anon_sym_suspend] = ACTIONS(4964), - [anon_sym_sealed] = ACTIONS(4964), - [anon_sym_annotation] = ACTIONS(4964), - [anon_sym_data] = ACTIONS(4964), - [anon_sym_inner] = ACTIONS(4964), - [anon_sym_value] = ACTIONS(4964), - [anon_sym_override] = ACTIONS(4964), - [anon_sym_lateinit] = ACTIONS(4964), - [anon_sym_public] = ACTIONS(4964), - [anon_sym_private] = ACTIONS(4964), - [anon_sym_internal] = ACTIONS(4964), - [anon_sym_protected] = ACTIONS(4964), - [anon_sym_tailrec] = ACTIONS(4964), - [anon_sym_operator] = ACTIONS(4964), - [anon_sym_infix] = ACTIONS(4964), - [anon_sym_inline] = ACTIONS(4964), - [anon_sym_external] = ACTIONS(4964), - [sym_property_modifier] = ACTIONS(4964), - [anon_sym_abstract] = ACTIONS(4964), - [anon_sym_final] = ACTIONS(4964), - [anon_sym_open] = ACTIONS(4964), - [anon_sym_vararg] = ACTIONS(4964), - [anon_sym_noinline] = ACTIONS(4964), - [anon_sym_crossinline] = ACTIONS(4964), - [anon_sym_expect] = ACTIONS(4964), - [anon_sym_actual] = ACTIONS(4964), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4966), - [anon_sym_continue_AT] = ACTIONS(4966), - [anon_sym_break_AT] = ACTIONS(4966), - [anon_sym_this_AT] = ACTIONS(4966), - [anon_sym_super_AT] = ACTIONS(4966), - [sym_real_literal] = ACTIONS(4966), - [sym_integer_literal] = ACTIONS(4964), - [sym_hex_literal] = ACTIONS(4966), - [sym_bin_literal] = ACTIONS(4966), - [anon_sym_true] = ACTIONS(4964), - [anon_sym_false] = ACTIONS(4964), - [anon_sym_SQUOTE] = ACTIONS(4966), - [sym__backtick_identifier] = ACTIONS(4966), - [sym__automatic_semicolon] = ACTIONS(4966), - [sym_safe_nav] = ACTIONS(4966), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4966), - }, - [1089] = { - [sym__alpha_identifier] = ACTIONS(4968), - [anon_sym_AT] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(4968), - [anon_sym_EQ] = ACTIONS(4968), - [anon_sym_fun] = ACTIONS(4968), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(4968), - [anon_sym_GT] = ACTIONS(4968), - [anon_sym_where] = ACTIONS(4968), - [anon_sym_object] = ACTIONS(4968), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym_get] = ACTIONS(4968), - [anon_sym_set] = ACTIONS(4968), - [anon_sym_this] = ACTIONS(4968), - [anon_sym_super] = ACTIONS(4968), - [anon_sym_STAR] = ACTIONS(4968), - [sym_label] = ACTIONS(4968), - [anon_sym_in] = ACTIONS(4968), - [anon_sym_DOT_DOT] = ACTIONS(4970), - [anon_sym_QMARK_COLON] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4970), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_null] = ACTIONS(4968), - [anon_sym_if] = ACTIONS(4968), - [anon_sym_else] = ACTIONS(4968), - [anon_sym_when] = ACTIONS(4968), - [anon_sym_try] = ACTIONS(4968), - [anon_sym_throw] = ACTIONS(4968), - [anon_sym_return] = ACTIONS(4968), - [anon_sym_continue] = ACTIONS(4968), - [anon_sym_break] = ACTIONS(4968), - [anon_sym_COLON_COLON] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4970), - [anon_sym_DASH_EQ] = ACTIONS(4970), - [anon_sym_STAR_EQ] = ACTIONS(4970), - [anon_sym_SLASH_EQ] = ACTIONS(4970), - [anon_sym_PERCENT_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4968), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4970), - [anon_sym_EQ_EQ] = ACTIONS(4968), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4970), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_BANGin] = ACTIONS(4970), - [anon_sym_is] = ACTIONS(4968), - [anon_sym_BANGis] = ACTIONS(4970), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4968), - [anon_sym_as_QMARK] = ACTIONS(4970), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_BANG] = ACTIONS(4968), - [anon_sym_BANG_BANG] = ACTIONS(4970), - [anon_sym_suspend] = ACTIONS(4968), - [anon_sym_sealed] = ACTIONS(4968), - [anon_sym_annotation] = ACTIONS(4968), - [anon_sym_data] = ACTIONS(4968), - [anon_sym_inner] = ACTIONS(4968), - [anon_sym_value] = ACTIONS(4968), - [anon_sym_override] = ACTIONS(4968), - [anon_sym_lateinit] = ACTIONS(4968), - [anon_sym_public] = ACTIONS(4968), - [anon_sym_private] = ACTIONS(4968), - [anon_sym_internal] = ACTIONS(4968), - [anon_sym_protected] = ACTIONS(4968), - [anon_sym_tailrec] = ACTIONS(4968), - [anon_sym_operator] = ACTIONS(4968), - [anon_sym_infix] = ACTIONS(4968), - [anon_sym_inline] = ACTIONS(4968), - [anon_sym_external] = ACTIONS(4968), - [sym_property_modifier] = ACTIONS(4968), - [anon_sym_abstract] = ACTIONS(4968), - [anon_sym_final] = ACTIONS(4968), - [anon_sym_open] = ACTIONS(4968), - [anon_sym_vararg] = ACTIONS(4968), - [anon_sym_noinline] = ACTIONS(4968), - [anon_sym_crossinline] = ACTIONS(4968), - [anon_sym_expect] = ACTIONS(4968), - [anon_sym_actual] = ACTIONS(4968), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4970), - [anon_sym_continue_AT] = ACTIONS(4970), - [anon_sym_break_AT] = ACTIONS(4970), - [anon_sym_this_AT] = ACTIONS(4970), - [anon_sym_super_AT] = ACTIONS(4970), - [sym_real_literal] = ACTIONS(4970), - [sym_integer_literal] = ACTIONS(4968), - [sym_hex_literal] = ACTIONS(4970), - [sym_bin_literal] = ACTIONS(4970), - [anon_sym_true] = ACTIONS(4968), - [anon_sym_false] = ACTIONS(4968), - [anon_sym_SQUOTE] = ACTIONS(4970), - [sym__backtick_identifier] = ACTIONS(4970), - [sym__automatic_semicolon] = ACTIONS(4970), - [sym_safe_nav] = ACTIONS(4970), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4970), - }, - [1090] = { - [sym__alpha_identifier] = ACTIONS(4972), - [anon_sym_AT] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_as] = ACTIONS(4972), - [anon_sym_EQ] = ACTIONS(4972), - [anon_sym_fun] = ACTIONS(4972), - [anon_sym_LBRACE] = ACTIONS(4974), - [anon_sym_RBRACE] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4974), - [anon_sym_COMMA] = ACTIONS(4974), - [anon_sym_LT] = ACTIONS(4972), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_where] = ACTIONS(4972), - [anon_sym_object] = ACTIONS(4972), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_SEMI] = ACTIONS(4974), - [anon_sym_get] = ACTIONS(4972), - [anon_sym_set] = ACTIONS(4972), - [anon_sym_this] = ACTIONS(4972), - [anon_sym_super] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4972), - [sym_label] = ACTIONS(4972), - [anon_sym_in] = ACTIONS(4972), - [anon_sym_DOT_DOT] = ACTIONS(4974), - [anon_sym_QMARK_COLON] = ACTIONS(4974), - [anon_sym_AMP_AMP] = ACTIONS(4974), - [anon_sym_PIPE_PIPE] = ACTIONS(4974), - [anon_sym_null] = ACTIONS(4972), - [anon_sym_if] = ACTIONS(4972), - [anon_sym_else] = ACTIONS(4972), - [anon_sym_when] = ACTIONS(4972), - [anon_sym_try] = ACTIONS(4972), - [anon_sym_throw] = ACTIONS(4972), - [anon_sym_return] = ACTIONS(4972), - [anon_sym_continue] = ACTIONS(4972), - [anon_sym_break] = ACTIONS(4972), - [anon_sym_COLON_COLON] = ACTIONS(4974), - [anon_sym_PLUS_EQ] = ACTIONS(4974), - [anon_sym_DASH_EQ] = ACTIONS(4974), - [anon_sym_STAR_EQ] = ACTIONS(4974), - [anon_sym_SLASH_EQ] = ACTIONS(4974), - [anon_sym_PERCENT_EQ] = ACTIONS(4974), - [anon_sym_BANG_EQ] = ACTIONS(4972), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4972), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4974), - [anon_sym_LT_EQ] = ACTIONS(4974), - [anon_sym_GT_EQ] = ACTIONS(4974), - [anon_sym_BANGin] = ACTIONS(4974), - [anon_sym_is] = ACTIONS(4972), - [anon_sym_BANGis] = ACTIONS(4974), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4972), - [anon_sym_as_QMARK] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_BANG] = ACTIONS(4972), - [anon_sym_BANG_BANG] = ACTIONS(4974), - [anon_sym_suspend] = ACTIONS(4972), - [anon_sym_sealed] = ACTIONS(4972), - [anon_sym_annotation] = ACTIONS(4972), - [anon_sym_data] = ACTIONS(4972), - [anon_sym_inner] = ACTIONS(4972), - [anon_sym_value] = ACTIONS(4972), - [anon_sym_override] = ACTIONS(4972), - [anon_sym_lateinit] = ACTIONS(4972), - [anon_sym_public] = ACTIONS(4972), - [anon_sym_private] = ACTIONS(4972), - [anon_sym_internal] = ACTIONS(4972), - [anon_sym_protected] = ACTIONS(4972), - [anon_sym_tailrec] = ACTIONS(4972), - [anon_sym_operator] = ACTIONS(4972), - [anon_sym_infix] = ACTIONS(4972), - [anon_sym_inline] = ACTIONS(4972), - [anon_sym_external] = ACTIONS(4972), - [sym_property_modifier] = ACTIONS(4972), - [anon_sym_abstract] = ACTIONS(4972), - [anon_sym_final] = ACTIONS(4972), - [anon_sym_open] = ACTIONS(4972), - [anon_sym_vararg] = ACTIONS(4972), - [anon_sym_noinline] = ACTIONS(4972), - [anon_sym_crossinline] = ACTIONS(4972), - [anon_sym_expect] = ACTIONS(4972), - [anon_sym_actual] = ACTIONS(4972), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4974), - [anon_sym_continue_AT] = ACTIONS(4974), - [anon_sym_break_AT] = ACTIONS(4974), - [anon_sym_this_AT] = ACTIONS(4974), - [anon_sym_super_AT] = ACTIONS(4974), - [sym_real_literal] = ACTIONS(4974), - [sym_integer_literal] = ACTIONS(4972), - [sym_hex_literal] = ACTIONS(4974), - [sym_bin_literal] = ACTIONS(4974), - [anon_sym_true] = ACTIONS(4972), - [anon_sym_false] = ACTIONS(4972), - [anon_sym_SQUOTE] = ACTIONS(4974), - [sym__backtick_identifier] = ACTIONS(4974), - [sym__automatic_semicolon] = ACTIONS(4974), - [sym_safe_nav] = ACTIONS(4974), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4974), + [1082] = { + [sym__alpha_identifier] = ACTIONS(4966), + [anon_sym_AT] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4966), + [anon_sym_EQ] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_RBRACE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_where] = ACTIONS(4966), + [anon_sym_object] = ACTIONS(4966), + [anon_sym_fun] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_get] = ACTIONS(4966), + [anon_sym_set] = ACTIONS(4966), + [anon_sym_this] = ACTIONS(4966), + [anon_sym_super] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [sym_label] = ACTIONS(4966), + [anon_sym_in] = ACTIONS(4966), + [anon_sym_DOT_DOT] = ACTIONS(4968), + [anon_sym_QMARK_COLON] = ACTIONS(4968), + [anon_sym_AMP_AMP] = ACTIONS(4968), + [anon_sym_PIPE_PIPE] = ACTIONS(4968), + [anon_sym_null] = ACTIONS(4966), + [anon_sym_if] = ACTIONS(4966), + [anon_sym_else] = ACTIONS(4966), + [anon_sym_when] = ACTIONS(4966), + [anon_sym_try] = ACTIONS(4966), + [anon_sym_throw] = ACTIONS(4966), + [anon_sym_return] = ACTIONS(4966), + [anon_sym_continue] = ACTIONS(4966), + [anon_sym_break] = ACTIONS(4966), + [anon_sym_COLON_COLON] = ACTIONS(4968), + [anon_sym_PLUS_EQ] = ACTIONS(4968), + [anon_sym_DASH_EQ] = ACTIONS(4968), + [anon_sym_STAR_EQ] = ACTIONS(4968), + [anon_sym_SLASH_EQ] = ACTIONS(4968), + [anon_sym_PERCENT_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4968), + [anon_sym_LT_EQ] = ACTIONS(4968), + [anon_sym_GT_EQ] = ACTIONS(4968), + [anon_sym_BANGin] = ACTIONS(4968), + [anon_sym_is] = ACTIONS(4966), + [anon_sym_BANGis] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_PERCENT] = ACTIONS(4966), + [anon_sym_as_QMARK] = ACTIONS(4968), + [anon_sym_PLUS_PLUS] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4966), + [anon_sym_BANG_BANG] = ACTIONS(4968), + [anon_sym_suspend] = ACTIONS(4966), + [anon_sym_sealed] = ACTIONS(4966), + [anon_sym_annotation] = ACTIONS(4966), + [anon_sym_data] = ACTIONS(4966), + [anon_sym_inner] = ACTIONS(4966), + [anon_sym_value] = ACTIONS(4966), + [anon_sym_override] = ACTIONS(4966), + [anon_sym_lateinit] = ACTIONS(4966), + [anon_sym_public] = ACTIONS(4966), + [anon_sym_private] = ACTIONS(4966), + [anon_sym_internal] = ACTIONS(4966), + [anon_sym_protected] = ACTIONS(4966), + [anon_sym_tailrec] = ACTIONS(4966), + [anon_sym_operator] = ACTIONS(4966), + [anon_sym_infix] = ACTIONS(4966), + [anon_sym_inline] = ACTIONS(4966), + [anon_sym_external] = ACTIONS(4966), + [sym_property_modifier] = ACTIONS(4966), + [anon_sym_abstract] = ACTIONS(4966), + [anon_sym_final] = ACTIONS(4966), + [anon_sym_open] = ACTIONS(4966), + [anon_sym_vararg] = ACTIONS(4966), + [anon_sym_noinline] = ACTIONS(4966), + [anon_sym_crossinline] = ACTIONS(4966), + [anon_sym_expect] = ACTIONS(4966), + [anon_sym_actual] = ACTIONS(4966), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4968), + [anon_sym_continue_AT] = ACTIONS(4968), + [anon_sym_break_AT] = ACTIONS(4968), + [anon_sym_this_AT] = ACTIONS(4968), + [anon_sym_super_AT] = ACTIONS(4968), + [sym_real_literal] = ACTIONS(4968), + [sym_integer_literal] = ACTIONS(4966), + [sym_hex_literal] = ACTIONS(4968), + [sym_bin_literal] = ACTIONS(4968), + [anon_sym_true] = ACTIONS(4966), + [anon_sym_false] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4968), + [sym__backtick_identifier] = ACTIONS(4968), + [sym__automatic_semicolon] = ACTIONS(4968), + [sym_safe_nav] = ACTIONS(4968), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4968), }, - [1091] = { - [sym__alpha_identifier] = ACTIONS(4030), - [anon_sym_AT] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_as] = ACTIONS(4030), - [anon_sym_EQ] = ACTIONS(4030), - [anon_sym_fun] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_RBRACE] = ACTIONS(4032), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_COMMA] = ACTIONS(4032), - [anon_sym_LT] = ACTIONS(4030), - [anon_sym_GT] = ACTIONS(4030), - [anon_sym_where] = ACTIONS(4030), - [anon_sym_object] = ACTIONS(4030), - [anon_sym_DOT] = ACTIONS(4030), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym_get] = ACTIONS(4030), - [anon_sym_set] = ACTIONS(4030), - [anon_sym_this] = ACTIONS(4030), - [anon_sym_super] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4030), - [sym_label] = ACTIONS(4030), - [anon_sym_in] = ACTIONS(4030), - [anon_sym_DOT_DOT] = ACTIONS(4032), - [anon_sym_QMARK_COLON] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4032), - [anon_sym_null] = ACTIONS(4030), - [anon_sym_if] = ACTIONS(4030), - [anon_sym_else] = ACTIONS(4030), - [anon_sym_when] = ACTIONS(4030), - [anon_sym_try] = ACTIONS(4030), - [anon_sym_throw] = ACTIONS(4030), - [anon_sym_return] = ACTIONS(4030), - [anon_sym_continue] = ACTIONS(4030), - [anon_sym_break] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(4032), - [anon_sym_PLUS_EQ] = ACTIONS(4032), - [anon_sym_DASH_EQ] = ACTIONS(4032), - [anon_sym_STAR_EQ] = ACTIONS(4032), - [anon_sym_SLASH_EQ] = ACTIONS(4032), - [anon_sym_PERCENT_EQ] = ACTIONS(4032), - [anon_sym_BANG_EQ] = ACTIONS(4030), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4032), - [anon_sym_EQ_EQ] = ACTIONS(4030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4032), - [anon_sym_LT_EQ] = ACTIONS(4032), - [anon_sym_GT_EQ] = ACTIONS(4032), - [anon_sym_BANGin] = ACTIONS(4032), - [anon_sym_is] = ACTIONS(4030), - [anon_sym_BANGis] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_SLASH] = ACTIONS(4030), - [anon_sym_PERCENT] = ACTIONS(4030), - [anon_sym_as_QMARK] = ACTIONS(4032), - [anon_sym_PLUS_PLUS] = ACTIONS(4032), - [anon_sym_DASH_DASH] = ACTIONS(4032), - [anon_sym_BANG] = ACTIONS(4030), - [anon_sym_BANG_BANG] = ACTIONS(4032), - [anon_sym_suspend] = ACTIONS(4030), - [anon_sym_sealed] = ACTIONS(4030), - [anon_sym_annotation] = ACTIONS(4030), - [anon_sym_data] = ACTIONS(4030), - [anon_sym_inner] = ACTIONS(4030), - [anon_sym_value] = ACTIONS(4030), - [anon_sym_override] = ACTIONS(4030), - [anon_sym_lateinit] = ACTIONS(4030), - [anon_sym_public] = ACTIONS(4030), - [anon_sym_private] = ACTIONS(4030), - [anon_sym_internal] = ACTIONS(4030), - [anon_sym_protected] = ACTIONS(4030), - [anon_sym_tailrec] = ACTIONS(4030), - [anon_sym_operator] = ACTIONS(4030), - [anon_sym_infix] = ACTIONS(4030), - [anon_sym_inline] = ACTIONS(4030), - [anon_sym_external] = ACTIONS(4030), - [sym_property_modifier] = ACTIONS(4030), - [anon_sym_abstract] = ACTIONS(4030), - [anon_sym_final] = ACTIONS(4030), - [anon_sym_open] = ACTIONS(4030), - [anon_sym_vararg] = ACTIONS(4030), - [anon_sym_noinline] = ACTIONS(4030), - [anon_sym_crossinline] = ACTIONS(4030), - [anon_sym_expect] = ACTIONS(4030), - [anon_sym_actual] = ACTIONS(4030), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4032), - [anon_sym_continue_AT] = ACTIONS(4032), - [anon_sym_break_AT] = ACTIONS(4032), - [anon_sym_this_AT] = ACTIONS(4032), - [anon_sym_super_AT] = ACTIONS(4032), - [sym_real_literal] = ACTIONS(4032), - [sym_integer_literal] = ACTIONS(4030), - [sym_hex_literal] = ACTIONS(4032), - [sym_bin_literal] = ACTIONS(4032), - [anon_sym_true] = ACTIONS(4030), - [anon_sym_false] = ACTIONS(4030), - [anon_sym_SQUOTE] = ACTIONS(4032), - [sym__backtick_identifier] = ACTIONS(4032), - [sym__automatic_semicolon] = ACTIONS(4032), - [sym_safe_nav] = ACTIONS(4032), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4032), + [1083] = { + [sym__alpha_identifier] = ACTIONS(4970), + [anon_sym_AT] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4970), + [anon_sym_EQ] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_RBRACE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_where] = ACTIONS(4970), + [anon_sym_object] = ACTIONS(4970), + [anon_sym_fun] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_get] = ACTIONS(4970), + [anon_sym_set] = ACTIONS(4970), + [anon_sym_this] = ACTIONS(4970), + [anon_sym_super] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [sym_label] = ACTIONS(4970), + [anon_sym_in] = ACTIONS(4970), + [anon_sym_DOT_DOT] = ACTIONS(4972), + [anon_sym_QMARK_COLON] = ACTIONS(4972), + [anon_sym_AMP_AMP] = ACTIONS(4972), + [anon_sym_PIPE_PIPE] = ACTIONS(4972), + [anon_sym_null] = ACTIONS(4970), + [anon_sym_if] = ACTIONS(4970), + [anon_sym_else] = ACTIONS(4970), + [anon_sym_when] = ACTIONS(4970), + [anon_sym_try] = ACTIONS(4970), + [anon_sym_throw] = ACTIONS(4970), + [anon_sym_return] = ACTIONS(4970), + [anon_sym_continue] = ACTIONS(4970), + [anon_sym_break] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_PLUS_EQ] = ACTIONS(4972), + [anon_sym_DASH_EQ] = ACTIONS(4972), + [anon_sym_STAR_EQ] = ACTIONS(4972), + [anon_sym_SLASH_EQ] = ACTIONS(4972), + [anon_sym_PERCENT_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4972), + [anon_sym_GT_EQ] = ACTIONS(4972), + [anon_sym_BANGin] = ACTIONS(4972), + [anon_sym_is] = ACTIONS(4970), + [anon_sym_BANGis] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4970), + [anon_sym_as_QMARK] = ACTIONS(4972), + [anon_sym_PLUS_PLUS] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4970), + [anon_sym_BANG_BANG] = ACTIONS(4972), + [anon_sym_suspend] = ACTIONS(4970), + [anon_sym_sealed] = ACTIONS(4970), + [anon_sym_annotation] = ACTIONS(4970), + [anon_sym_data] = ACTIONS(4970), + [anon_sym_inner] = ACTIONS(4970), + [anon_sym_value] = ACTIONS(4970), + [anon_sym_override] = ACTIONS(4970), + [anon_sym_lateinit] = ACTIONS(4970), + [anon_sym_public] = ACTIONS(4970), + [anon_sym_private] = ACTIONS(4970), + [anon_sym_internal] = ACTIONS(4970), + [anon_sym_protected] = ACTIONS(4970), + [anon_sym_tailrec] = ACTIONS(4970), + [anon_sym_operator] = ACTIONS(4970), + [anon_sym_infix] = ACTIONS(4970), + [anon_sym_inline] = ACTIONS(4970), + [anon_sym_external] = ACTIONS(4970), + [sym_property_modifier] = ACTIONS(4970), + [anon_sym_abstract] = ACTIONS(4970), + [anon_sym_final] = ACTIONS(4970), + [anon_sym_open] = ACTIONS(4970), + [anon_sym_vararg] = ACTIONS(4970), + [anon_sym_noinline] = ACTIONS(4970), + [anon_sym_crossinline] = ACTIONS(4970), + [anon_sym_expect] = ACTIONS(4970), + [anon_sym_actual] = ACTIONS(4970), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4972), + [anon_sym_continue_AT] = ACTIONS(4972), + [anon_sym_break_AT] = ACTIONS(4972), + [anon_sym_this_AT] = ACTIONS(4972), + [anon_sym_super_AT] = ACTIONS(4972), + [sym_real_literal] = ACTIONS(4972), + [sym_integer_literal] = ACTIONS(4970), + [sym_hex_literal] = ACTIONS(4972), + [sym_bin_literal] = ACTIONS(4972), + [anon_sym_true] = ACTIONS(4970), + [anon_sym_false] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4972), + [sym__backtick_identifier] = ACTIONS(4972), + [sym__automatic_semicolon] = ACTIONS(4972), + [sym_safe_nav] = ACTIONS(4972), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4972), }, - [1092] = { - [sym__alpha_identifier] = ACTIONS(4976), - [anon_sym_AT] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [anon_sym_as] = ACTIONS(4976), - [anon_sym_EQ] = ACTIONS(4976), - [anon_sym_fun] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(4978), - [anon_sym_LPAREN] = ACTIONS(4978), - [anon_sym_COMMA] = ACTIONS(4978), - [anon_sym_LT] = ACTIONS(4976), - [anon_sym_GT] = ACTIONS(4976), - [anon_sym_where] = ACTIONS(4976), - [anon_sym_object] = ACTIONS(4976), - [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_SEMI] = ACTIONS(4978), - [anon_sym_get] = ACTIONS(4976), - [anon_sym_set] = ACTIONS(4976), - [anon_sym_this] = ACTIONS(4976), - [anon_sym_super] = ACTIONS(4976), - [anon_sym_STAR] = ACTIONS(4976), - [sym_label] = ACTIONS(4976), - [anon_sym_in] = ACTIONS(4976), - [anon_sym_DOT_DOT] = ACTIONS(4978), - [anon_sym_QMARK_COLON] = ACTIONS(4978), - [anon_sym_AMP_AMP] = ACTIONS(4978), - [anon_sym_PIPE_PIPE] = ACTIONS(4978), - [anon_sym_null] = ACTIONS(4976), - [anon_sym_if] = ACTIONS(4976), - [anon_sym_else] = ACTIONS(4976), - [anon_sym_when] = ACTIONS(4976), - [anon_sym_try] = ACTIONS(4976), - [anon_sym_throw] = ACTIONS(4976), - [anon_sym_return] = ACTIONS(4976), - [anon_sym_continue] = ACTIONS(4976), - [anon_sym_break] = ACTIONS(4976), - [anon_sym_COLON_COLON] = ACTIONS(4978), - [anon_sym_PLUS_EQ] = ACTIONS(4978), - [anon_sym_DASH_EQ] = ACTIONS(4978), - [anon_sym_STAR_EQ] = ACTIONS(4978), - [anon_sym_SLASH_EQ] = ACTIONS(4978), - [anon_sym_PERCENT_EQ] = ACTIONS(4978), - [anon_sym_BANG_EQ] = ACTIONS(4976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4978), - [anon_sym_EQ_EQ] = ACTIONS(4976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4978), - [anon_sym_LT_EQ] = ACTIONS(4978), - [anon_sym_GT_EQ] = ACTIONS(4978), - [anon_sym_BANGin] = ACTIONS(4978), - [anon_sym_is] = ACTIONS(4976), - [anon_sym_BANGis] = ACTIONS(4978), - [anon_sym_PLUS] = ACTIONS(4976), - [anon_sym_DASH] = ACTIONS(4976), - [anon_sym_SLASH] = ACTIONS(4976), - [anon_sym_PERCENT] = ACTIONS(4976), - [anon_sym_as_QMARK] = ACTIONS(4978), - [anon_sym_PLUS_PLUS] = ACTIONS(4978), - [anon_sym_DASH_DASH] = ACTIONS(4978), - [anon_sym_BANG] = ACTIONS(4976), - [anon_sym_BANG_BANG] = ACTIONS(4978), - [anon_sym_suspend] = ACTIONS(4976), - [anon_sym_sealed] = ACTIONS(4976), - [anon_sym_annotation] = ACTIONS(4976), - [anon_sym_data] = ACTIONS(4976), - [anon_sym_inner] = ACTIONS(4976), - [anon_sym_value] = ACTIONS(4976), - [anon_sym_override] = ACTIONS(4976), - [anon_sym_lateinit] = ACTIONS(4976), - [anon_sym_public] = ACTIONS(4976), - [anon_sym_private] = ACTIONS(4976), - [anon_sym_internal] = ACTIONS(4976), - [anon_sym_protected] = ACTIONS(4976), - [anon_sym_tailrec] = ACTIONS(4976), - [anon_sym_operator] = ACTIONS(4976), - [anon_sym_infix] = ACTIONS(4976), - [anon_sym_inline] = ACTIONS(4976), - [anon_sym_external] = ACTIONS(4976), - [sym_property_modifier] = ACTIONS(4976), - [anon_sym_abstract] = ACTIONS(4976), - [anon_sym_final] = ACTIONS(4976), - [anon_sym_open] = ACTIONS(4976), - [anon_sym_vararg] = ACTIONS(4976), - [anon_sym_noinline] = ACTIONS(4976), - [anon_sym_crossinline] = ACTIONS(4976), - [anon_sym_expect] = ACTIONS(4976), - [anon_sym_actual] = ACTIONS(4976), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4978), - [anon_sym_continue_AT] = ACTIONS(4978), - [anon_sym_break_AT] = ACTIONS(4978), - [anon_sym_this_AT] = ACTIONS(4978), - [anon_sym_super_AT] = ACTIONS(4978), - [sym_real_literal] = ACTIONS(4978), - [sym_integer_literal] = ACTIONS(4976), - [sym_hex_literal] = ACTIONS(4978), - [sym_bin_literal] = ACTIONS(4978), - [anon_sym_true] = ACTIONS(4976), - [anon_sym_false] = ACTIONS(4976), - [anon_sym_SQUOTE] = ACTIONS(4978), - [sym__backtick_identifier] = ACTIONS(4978), - [sym__automatic_semicolon] = ACTIONS(4978), - [sym_safe_nav] = ACTIONS(4978), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4978), + [1084] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(4770), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, - [1093] = { - [sym__alpha_identifier] = ACTIONS(4980), - [anon_sym_AT] = ACTIONS(4982), - [anon_sym_LBRACK] = ACTIONS(4982), - [anon_sym_as] = ACTIONS(4980), - [anon_sym_EQ] = ACTIONS(4980), - [anon_sym_fun] = ACTIONS(4980), - [anon_sym_LBRACE] = ACTIONS(4982), - [anon_sym_RBRACE] = ACTIONS(4982), - [anon_sym_LPAREN] = ACTIONS(4982), - [anon_sym_COMMA] = ACTIONS(4982), - [anon_sym_LT] = ACTIONS(4980), - [anon_sym_GT] = ACTIONS(4980), - [anon_sym_where] = ACTIONS(4980), - [anon_sym_object] = ACTIONS(4980), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_SEMI] = ACTIONS(4982), - [anon_sym_get] = ACTIONS(4980), - [anon_sym_set] = ACTIONS(4980), - [anon_sym_this] = ACTIONS(4980), - [anon_sym_super] = ACTIONS(4980), - [anon_sym_STAR] = ACTIONS(4980), - [sym_label] = ACTIONS(4980), - [anon_sym_in] = ACTIONS(4980), - [anon_sym_DOT_DOT] = ACTIONS(4982), - [anon_sym_QMARK_COLON] = ACTIONS(4982), - [anon_sym_AMP_AMP] = ACTIONS(4982), - [anon_sym_PIPE_PIPE] = ACTIONS(4982), - [anon_sym_null] = ACTIONS(4980), - [anon_sym_if] = ACTIONS(4980), - [anon_sym_else] = ACTIONS(4980), - [anon_sym_when] = ACTIONS(4980), - [anon_sym_try] = ACTIONS(4980), - [anon_sym_throw] = ACTIONS(4980), - [anon_sym_return] = ACTIONS(4980), - [anon_sym_continue] = ACTIONS(4980), - [anon_sym_break] = ACTIONS(4980), - [anon_sym_COLON_COLON] = ACTIONS(4982), - [anon_sym_PLUS_EQ] = ACTIONS(4982), - [anon_sym_DASH_EQ] = ACTIONS(4982), - [anon_sym_STAR_EQ] = ACTIONS(4982), - [anon_sym_SLASH_EQ] = ACTIONS(4982), - [anon_sym_PERCENT_EQ] = ACTIONS(4982), - [anon_sym_BANG_EQ] = ACTIONS(4980), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4982), - [anon_sym_EQ_EQ] = ACTIONS(4980), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4982), - [anon_sym_LT_EQ] = ACTIONS(4982), - [anon_sym_GT_EQ] = ACTIONS(4982), - [anon_sym_BANGin] = ACTIONS(4982), - [anon_sym_is] = ACTIONS(4980), - [anon_sym_BANGis] = ACTIONS(4982), - [anon_sym_PLUS] = ACTIONS(4980), - [anon_sym_DASH] = ACTIONS(4980), - [anon_sym_SLASH] = ACTIONS(4980), - [anon_sym_PERCENT] = ACTIONS(4980), - [anon_sym_as_QMARK] = ACTIONS(4982), - [anon_sym_PLUS_PLUS] = ACTIONS(4982), - [anon_sym_DASH_DASH] = ACTIONS(4982), - [anon_sym_BANG] = ACTIONS(4980), - [anon_sym_BANG_BANG] = ACTIONS(4982), - [anon_sym_suspend] = ACTIONS(4980), - [anon_sym_sealed] = ACTIONS(4980), - [anon_sym_annotation] = ACTIONS(4980), - [anon_sym_data] = ACTIONS(4980), - [anon_sym_inner] = ACTIONS(4980), - [anon_sym_value] = ACTIONS(4980), - [anon_sym_override] = ACTIONS(4980), - [anon_sym_lateinit] = ACTIONS(4980), - [anon_sym_public] = ACTIONS(4980), - [anon_sym_private] = ACTIONS(4980), - [anon_sym_internal] = ACTIONS(4980), - [anon_sym_protected] = ACTIONS(4980), - [anon_sym_tailrec] = ACTIONS(4980), - [anon_sym_operator] = ACTIONS(4980), - [anon_sym_infix] = ACTIONS(4980), - [anon_sym_inline] = ACTIONS(4980), - [anon_sym_external] = ACTIONS(4980), - [sym_property_modifier] = ACTIONS(4980), - [anon_sym_abstract] = ACTIONS(4980), - [anon_sym_final] = ACTIONS(4980), - [anon_sym_open] = ACTIONS(4980), - [anon_sym_vararg] = ACTIONS(4980), - [anon_sym_noinline] = ACTIONS(4980), - [anon_sym_crossinline] = ACTIONS(4980), - [anon_sym_expect] = ACTIONS(4980), - [anon_sym_actual] = ACTIONS(4980), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4982), - [anon_sym_continue_AT] = ACTIONS(4982), - [anon_sym_break_AT] = ACTIONS(4982), - [anon_sym_this_AT] = ACTIONS(4982), - [anon_sym_super_AT] = ACTIONS(4982), - [sym_real_literal] = ACTIONS(4982), - [sym_integer_literal] = ACTIONS(4980), - [sym_hex_literal] = ACTIONS(4982), - [sym_bin_literal] = ACTIONS(4982), - [anon_sym_true] = ACTIONS(4980), - [anon_sym_false] = ACTIONS(4980), - [anon_sym_SQUOTE] = ACTIONS(4982), - [sym__backtick_identifier] = ACTIONS(4982), - [sym__automatic_semicolon] = ACTIONS(4982), - [sym_safe_nav] = ACTIONS(4982), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4982), + [1085] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_where] = ACTIONS(4974), + [anon_sym_object] = ACTIONS(4974), + [anon_sym_fun] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_this] = ACTIONS(4974), + [anon_sym_super] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4974), + [sym_label] = ACTIONS(4974), + [anon_sym_in] = ACTIONS(4974), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_QMARK_COLON] = ACTIONS(4976), + [anon_sym_AMP_AMP] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4976), + [anon_sym_null] = ACTIONS(4974), + [anon_sym_if] = ACTIONS(4974), + [anon_sym_else] = ACTIONS(4974), + [anon_sym_when] = ACTIONS(4974), + [anon_sym_try] = ACTIONS(4974), + [anon_sym_throw] = ACTIONS(4974), + [anon_sym_return] = ACTIONS(4974), + [anon_sym_continue] = ACTIONS(4974), + [anon_sym_break] = ACTIONS(4974), + [anon_sym_COLON_COLON] = ACTIONS(4976), + [anon_sym_PLUS_EQ] = ACTIONS(4976), + [anon_sym_DASH_EQ] = ACTIONS(4976), + [anon_sym_STAR_EQ] = ACTIONS(4976), + [anon_sym_SLASH_EQ] = ACTIONS(4976), + [anon_sym_PERCENT_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4976), + [anon_sym_BANGin] = ACTIONS(4976), + [anon_sym_is] = ACTIONS(4974), + [anon_sym_BANGis] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4974), + [anon_sym_PERCENT] = ACTIONS(4974), + [anon_sym_as_QMARK] = ACTIONS(4976), + [anon_sym_PLUS_PLUS] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4974), + [anon_sym_BANG_BANG] = ACTIONS(4976), + [anon_sym_suspend] = ACTIONS(4974), + [anon_sym_sealed] = ACTIONS(4974), + [anon_sym_annotation] = ACTIONS(4974), + [anon_sym_data] = ACTIONS(4974), + [anon_sym_inner] = ACTIONS(4974), + [anon_sym_value] = ACTIONS(4974), + [anon_sym_override] = ACTIONS(4974), + [anon_sym_lateinit] = ACTIONS(4974), + [anon_sym_public] = ACTIONS(4974), + [anon_sym_private] = ACTIONS(4974), + [anon_sym_internal] = ACTIONS(4974), + [anon_sym_protected] = ACTIONS(4974), + [anon_sym_tailrec] = ACTIONS(4974), + [anon_sym_operator] = ACTIONS(4974), + [anon_sym_infix] = ACTIONS(4974), + [anon_sym_inline] = ACTIONS(4974), + [anon_sym_external] = ACTIONS(4974), + [sym_property_modifier] = ACTIONS(4974), + [anon_sym_abstract] = ACTIONS(4974), + [anon_sym_final] = ACTIONS(4974), + [anon_sym_open] = ACTIONS(4974), + [anon_sym_vararg] = ACTIONS(4974), + [anon_sym_noinline] = ACTIONS(4974), + [anon_sym_crossinline] = ACTIONS(4974), + [anon_sym_expect] = ACTIONS(4974), + [anon_sym_actual] = ACTIONS(4974), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4976), + [anon_sym_continue_AT] = ACTIONS(4976), + [anon_sym_break_AT] = ACTIONS(4976), + [anon_sym_this_AT] = ACTIONS(4976), + [anon_sym_super_AT] = ACTIONS(4976), + [sym_real_literal] = ACTIONS(4976), + [sym_integer_literal] = ACTIONS(4974), + [sym_hex_literal] = ACTIONS(4976), + [sym_bin_literal] = ACTIONS(4976), + [anon_sym_true] = ACTIONS(4974), + [anon_sym_false] = ACTIONS(4974), + [anon_sym_SQUOTE] = ACTIONS(4976), + [sym__backtick_identifier] = ACTIONS(4976), + [sym__automatic_semicolon] = ACTIONS(4976), + [sym_safe_nav] = ACTIONS(4976), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4976), }, - [1094] = { - [sym__alpha_identifier] = ACTIONS(4984), - [anon_sym_AT] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4986), - [anon_sym_as] = ACTIONS(4984), - [anon_sym_EQ] = ACTIONS(4984), - [anon_sym_fun] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4986), - [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_LPAREN] = ACTIONS(4986), - [anon_sym_COMMA] = ACTIONS(4986), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_GT] = ACTIONS(4984), - [anon_sym_where] = ACTIONS(4984), - [anon_sym_object] = ACTIONS(4984), - [anon_sym_DOT] = ACTIONS(4984), - [anon_sym_SEMI] = ACTIONS(4986), - [anon_sym_get] = ACTIONS(4984), + [1086] = { + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_get] = ACTIONS(4982), [anon_sym_set] = ACTIONS(4984), - [anon_sym_this] = ACTIONS(4984), - [anon_sym_super] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4984), - [sym_label] = ACTIONS(4984), - [anon_sym_in] = ACTIONS(4984), - [anon_sym_DOT_DOT] = ACTIONS(4986), - [anon_sym_QMARK_COLON] = ACTIONS(4986), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_null] = ACTIONS(4984), - [anon_sym_if] = ACTIONS(4984), - [anon_sym_else] = ACTIONS(4984), - [anon_sym_when] = ACTIONS(4984), - [anon_sym_try] = ACTIONS(4984), - [anon_sym_throw] = ACTIONS(4984), - [anon_sym_return] = ACTIONS(4984), - [anon_sym_continue] = ACTIONS(4984), - [anon_sym_break] = ACTIONS(4984), - [anon_sym_COLON_COLON] = ACTIONS(4986), - [anon_sym_PLUS_EQ] = ACTIONS(4986), - [anon_sym_DASH_EQ] = ACTIONS(4986), - [anon_sym_STAR_EQ] = ACTIONS(4986), - [anon_sym_SLASH_EQ] = ACTIONS(4986), - [anon_sym_PERCENT_EQ] = ACTIONS(4986), - [anon_sym_BANG_EQ] = ACTIONS(4984), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4986), - [anon_sym_EQ_EQ] = ACTIONS(4984), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4986), - [anon_sym_LT_EQ] = ACTIONS(4986), - [anon_sym_GT_EQ] = ACTIONS(4986), - [anon_sym_BANGin] = ACTIONS(4986), - [anon_sym_is] = ACTIONS(4984), - [anon_sym_BANGis] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4984), - [anon_sym_as_QMARK] = ACTIONS(4986), - [anon_sym_PLUS_PLUS] = ACTIONS(4986), - [anon_sym_DASH_DASH] = ACTIONS(4986), - [anon_sym_BANG] = ACTIONS(4984), - [anon_sym_BANG_BANG] = ACTIONS(4986), - [anon_sym_suspend] = ACTIONS(4984), - [anon_sym_sealed] = ACTIONS(4984), - [anon_sym_annotation] = ACTIONS(4984), - [anon_sym_data] = ACTIONS(4984), - [anon_sym_inner] = ACTIONS(4984), - [anon_sym_value] = ACTIONS(4984), - [anon_sym_override] = ACTIONS(4984), - [anon_sym_lateinit] = ACTIONS(4984), - [anon_sym_public] = ACTIONS(4984), - [anon_sym_private] = ACTIONS(4984), - [anon_sym_internal] = ACTIONS(4984), - [anon_sym_protected] = ACTIONS(4984), - [anon_sym_tailrec] = ACTIONS(4984), - [anon_sym_operator] = ACTIONS(4984), - [anon_sym_infix] = ACTIONS(4984), - [anon_sym_inline] = ACTIONS(4984), - [anon_sym_external] = ACTIONS(4984), - [sym_property_modifier] = ACTIONS(4984), - [anon_sym_abstract] = ACTIONS(4984), - [anon_sym_final] = ACTIONS(4984), - [anon_sym_open] = ACTIONS(4984), - [anon_sym_vararg] = ACTIONS(4984), - [anon_sym_noinline] = ACTIONS(4984), - [anon_sym_crossinline] = ACTIONS(4984), - [anon_sym_expect] = ACTIONS(4984), - [anon_sym_actual] = ACTIONS(4984), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4986), - [anon_sym_continue_AT] = ACTIONS(4986), - [anon_sym_break_AT] = ACTIONS(4986), - [anon_sym_this_AT] = ACTIONS(4986), - [anon_sym_super_AT] = ACTIONS(4986), - [sym_real_literal] = ACTIONS(4986), - [sym_integer_literal] = ACTIONS(4984), - [sym_hex_literal] = ACTIONS(4986), - [sym_bin_literal] = ACTIONS(4986), - [anon_sym_true] = ACTIONS(4984), - [anon_sym_false] = ACTIONS(4984), - [anon_sym_SQUOTE] = ACTIONS(4986), - [sym__backtick_identifier] = ACTIONS(4986), - [sym__automatic_semicolon] = ACTIONS(4986), - [sym_safe_nav] = ACTIONS(4986), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4986), - }, - [1095] = { - [sym__alpha_identifier] = ACTIONS(4988), - [anon_sym_AT] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_as] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_fun] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_LPAREN] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_where] = ACTIONS(4988), - [anon_sym_object] = ACTIONS(4988), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_SEMI] = ACTIONS(4990), - [anon_sym_get] = ACTIONS(4988), - [anon_sym_set] = ACTIONS(4988), - [anon_sym_this] = ACTIONS(4988), - [anon_sym_super] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [sym_label] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), [anon_sym_in] = ACTIONS(4988), [anon_sym_DOT_DOT] = ACTIONS(4990), - [anon_sym_QMARK_COLON] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_null] = ACTIONS(4988), - [anon_sym_if] = ACTIONS(4988), - [anon_sym_else] = ACTIONS(4988), - [anon_sym_when] = ACTIONS(4988), - [anon_sym_try] = ACTIONS(4988), - [anon_sym_throw] = ACTIONS(4988), - [anon_sym_return] = ACTIONS(4988), - [anon_sym_continue] = ACTIONS(4988), - [anon_sym_break] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4988), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4990), - [anon_sym_EQ_EQ] = ACTIONS(4988), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_BANGin] = ACTIONS(4990), - [anon_sym_is] = ACTIONS(4988), - [anon_sym_BANGis] = ACTIONS(4990), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_as_QMARK] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4988), - [anon_sym_BANG_BANG] = ACTIONS(4990), - [anon_sym_suspend] = ACTIONS(4988), - [anon_sym_sealed] = ACTIONS(4988), - [anon_sym_annotation] = ACTIONS(4988), - [anon_sym_data] = ACTIONS(4988), - [anon_sym_inner] = ACTIONS(4988), - [anon_sym_value] = ACTIONS(4988), - [anon_sym_override] = ACTIONS(4988), - [anon_sym_lateinit] = ACTIONS(4988), - [anon_sym_public] = ACTIONS(4988), - [anon_sym_private] = ACTIONS(4988), - [anon_sym_internal] = ACTIONS(4988), - [anon_sym_protected] = ACTIONS(4988), - [anon_sym_tailrec] = ACTIONS(4988), - [anon_sym_operator] = ACTIONS(4988), - [anon_sym_infix] = ACTIONS(4988), - [anon_sym_inline] = ACTIONS(4988), - [anon_sym_external] = ACTIONS(4988), - [sym_property_modifier] = ACTIONS(4988), - [anon_sym_abstract] = ACTIONS(4988), - [anon_sym_final] = ACTIONS(4988), - [anon_sym_open] = ACTIONS(4988), - [anon_sym_vararg] = ACTIONS(4988), - [anon_sym_noinline] = ACTIONS(4988), - [anon_sym_crossinline] = ACTIONS(4988), - [anon_sym_expect] = ACTIONS(4988), - [anon_sym_actual] = ACTIONS(4988), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4990), - [anon_sym_continue_AT] = ACTIONS(4990), - [anon_sym_break_AT] = ACTIONS(4990), - [anon_sym_this_AT] = ACTIONS(4990), - [anon_sym_super_AT] = ACTIONS(4990), - [sym_real_literal] = ACTIONS(4990), - [sym_integer_literal] = ACTIONS(4988), - [sym_hex_literal] = ACTIONS(4990), - [sym_bin_literal] = ACTIONS(4990), - [anon_sym_true] = ACTIONS(4988), - [anon_sym_false] = ACTIONS(4988), - [anon_sym_SQUOTE] = ACTIONS(4990), - [sym__backtick_identifier] = ACTIONS(4990), - [sym__automatic_semicolon] = ACTIONS(4990), - [sym_safe_nav] = ACTIONS(4990), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4990), - }, - [1096] = { - [sym__alpha_identifier] = ACTIONS(4992), - [anon_sym_AT] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_as] = ACTIONS(4992), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_fun] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_where] = ACTIONS(4992), - [anon_sym_object] = ACTIONS(4992), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym_get] = ACTIONS(4992), - [anon_sym_set] = ACTIONS(4992), - [anon_sym_this] = ACTIONS(4992), - [anon_sym_super] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [sym_label] = ACTIONS(4992), - [anon_sym_in] = ACTIONS(4992), - [anon_sym_DOT_DOT] = ACTIONS(4994), - [anon_sym_QMARK_COLON] = ACTIONS(4994), + [anon_sym_QMARK_COLON] = ACTIONS(4992), [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_null] = ACTIONS(4992), - [anon_sym_if] = ACTIONS(4992), - [anon_sym_else] = ACTIONS(4992), - [anon_sym_when] = ACTIONS(4992), - [anon_sym_try] = ACTIONS(4992), - [anon_sym_throw] = ACTIONS(4992), - [anon_sym_return] = ACTIONS(4992), - [anon_sym_continue] = ACTIONS(4992), - [anon_sym_break] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), - [anon_sym_EQ_EQ] = ACTIONS(4992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_BANGin] = ACTIONS(4994), - [anon_sym_is] = ACTIONS(4992), - [anon_sym_BANGis] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_as_QMARK] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_BANG] = ACTIONS(4992), - [anon_sym_BANG_BANG] = ACTIONS(4994), - [anon_sym_suspend] = ACTIONS(4992), - [anon_sym_sealed] = ACTIONS(4992), - [anon_sym_annotation] = ACTIONS(4992), - [anon_sym_data] = ACTIONS(4992), - [anon_sym_inner] = ACTIONS(4992), - [anon_sym_value] = ACTIONS(4992), - [anon_sym_override] = ACTIONS(4992), - [anon_sym_lateinit] = ACTIONS(4992), - [anon_sym_public] = ACTIONS(4992), - [anon_sym_private] = ACTIONS(4992), - [anon_sym_internal] = ACTIONS(4992), - [anon_sym_protected] = ACTIONS(4992), - [anon_sym_tailrec] = ACTIONS(4992), - [anon_sym_operator] = ACTIONS(4992), - [anon_sym_infix] = ACTIONS(4992), - [anon_sym_inline] = ACTIONS(4992), - [anon_sym_external] = ACTIONS(4992), - [sym_property_modifier] = ACTIONS(4992), - [anon_sym_abstract] = ACTIONS(4992), - [anon_sym_final] = ACTIONS(4992), - [anon_sym_open] = ACTIONS(4992), - [anon_sym_vararg] = ACTIONS(4992), - [anon_sym_noinline] = ACTIONS(4992), - [anon_sym_crossinline] = ACTIONS(4992), - [anon_sym_expect] = ACTIONS(4992), - [anon_sym_actual] = ACTIONS(4992), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4994), - [anon_sym_continue_AT] = ACTIONS(4994), - [anon_sym_break_AT] = ACTIONS(4994), - [anon_sym_this_AT] = ACTIONS(4994), - [anon_sym_super_AT] = ACTIONS(4994), - [sym_real_literal] = ACTIONS(4994), - [sym_integer_literal] = ACTIONS(4992), - [sym_hex_literal] = ACTIONS(4994), - [sym_bin_literal] = ACTIONS(4994), - [anon_sym_true] = ACTIONS(4992), - [anon_sym_false] = ACTIONS(4992), - [anon_sym_SQUOTE] = ACTIONS(4994), - [sym__backtick_identifier] = ACTIONS(4994), - [sym__automatic_semicolon] = ACTIONS(4994), - [sym_safe_nav] = ACTIONS(4994), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4994), - }, - [1097] = { - [sym__alpha_identifier] = ACTIONS(4996), - [anon_sym_AT] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_as] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_fun] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LPAREN] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_where] = ACTIONS(4996), - [anon_sym_object] = ACTIONS(4996), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_get] = ACTIONS(4996), - [anon_sym_set] = ACTIONS(4996), - [anon_sym_this] = ACTIONS(4996), - [anon_sym_super] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [sym_label] = ACTIONS(4996), - [anon_sym_in] = ACTIONS(4996), - [anon_sym_DOT_DOT] = ACTIONS(4998), - [anon_sym_QMARK_COLON] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_null] = ACTIONS(4996), - [anon_sym_if] = ACTIONS(4996), - [anon_sym_else] = ACTIONS(4996), - [anon_sym_when] = ACTIONS(4996), - [anon_sym_try] = ACTIONS(4996), - [anon_sym_throw] = ACTIONS(4996), - [anon_sym_return] = ACTIONS(4996), - [anon_sym_continue] = ACTIONS(4996), - [anon_sym_break] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4996), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4998), - [anon_sym_EQ_EQ] = ACTIONS(4996), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_BANGin] = ACTIONS(4998), - [anon_sym_is] = ACTIONS(4996), - [anon_sym_BANGis] = ACTIONS(4998), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_as_QMARK] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_BANG] = ACTIONS(4996), - [anon_sym_BANG_BANG] = ACTIONS(4998), - [anon_sym_suspend] = ACTIONS(4996), - [anon_sym_sealed] = ACTIONS(4996), - [anon_sym_annotation] = ACTIONS(4996), - [anon_sym_data] = ACTIONS(4996), - [anon_sym_inner] = ACTIONS(4996), - [anon_sym_value] = ACTIONS(4996), - [anon_sym_override] = ACTIONS(4996), - [anon_sym_lateinit] = ACTIONS(4996), - [anon_sym_public] = ACTIONS(4996), - [anon_sym_private] = ACTIONS(4996), - [anon_sym_internal] = ACTIONS(4996), - [anon_sym_protected] = ACTIONS(4996), - [anon_sym_tailrec] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), - [anon_sym_infix] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym_external] = ACTIONS(4996), - [sym_property_modifier] = ACTIONS(4996), - [anon_sym_abstract] = ACTIONS(4996), - [anon_sym_final] = ACTIONS(4996), - [anon_sym_open] = ACTIONS(4996), - [anon_sym_vararg] = ACTIONS(4996), - [anon_sym_noinline] = ACTIONS(4996), - [anon_sym_crossinline] = ACTIONS(4996), - [anon_sym_expect] = ACTIONS(4996), - [anon_sym_actual] = ACTIONS(4996), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4998), - [anon_sym_continue_AT] = ACTIONS(4998), - [anon_sym_break_AT] = ACTIONS(4998), - [anon_sym_this_AT] = ACTIONS(4998), - [anon_sym_super_AT] = ACTIONS(4998), - [sym_real_literal] = ACTIONS(4998), - [sym_integer_literal] = ACTIONS(4996), - [sym_hex_literal] = ACTIONS(4998), - [sym_bin_literal] = ACTIONS(4998), - [anon_sym_true] = ACTIONS(4996), - [anon_sym_false] = ACTIONS(4996), - [anon_sym_SQUOTE] = ACTIONS(4998), - [sym__backtick_identifier] = ACTIONS(4998), - [sym__automatic_semicolon] = ACTIONS(4998), - [sym_safe_nav] = ACTIONS(4998), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4998), - }, - [1098] = { - [sym__alpha_identifier] = ACTIONS(5000), - [anon_sym_AT] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5002), - [anon_sym_as] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_fun] = ACTIONS(5000), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_LPAREN] = ACTIONS(5002), - [anon_sym_COMMA] = ACTIONS(5002), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_where] = ACTIONS(5000), - [anon_sym_object] = ACTIONS(5000), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5002), - [anon_sym_get] = ACTIONS(5000), - [anon_sym_set] = ACTIONS(5000), - [anon_sym_this] = ACTIONS(5000), - [anon_sym_super] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(5000), - [sym_label] = ACTIONS(5000), - [anon_sym_in] = ACTIONS(5000), - [anon_sym_DOT_DOT] = ACTIONS(5002), - [anon_sym_QMARK_COLON] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_PIPE_PIPE] = ACTIONS(5002), - [anon_sym_null] = ACTIONS(5000), - [anon_sym_if] = ACTIONS(5000), - [anon_sym_else] = ACTIONS(5000), - [anon_sym_when] = ACTIONS(5000), - [anon_sym_try] = ACTIONS(5000), - [anon_sym_throw] = ACTIONS(5000), - [anon_sym_return] = ACTIONS(5000), - [anon_sym_continue] = ACTIONS(5000), - [anon_sym_break] = ACTIONS(5000), - [anon_sym_COLON_COLON] = ACTIONS(5002), - [anon_sym_PLUS_EQ] = ACTIONS(5002), - [anon_sym_DASH_EQ] = ACTIONS(5002), - [anon_sym_STAR_EQ] = ACTIONS(5002), - [anon_sym_SLASH_EQ] = ACTIONS(5002), - [anon_sym_PERCENT_EQ] = ACTIONS(5002), - [anon_sym_BANG_EQ] = ACTIONS(5000), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5002), - [anon_sym_EQ_EQ] = ACTIONS(5000), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5002), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), [anon_sym_LT_EQ] = ACTIONS(5002), [anon_sym_GT_EQ] = ACTIONS(5002), - [anon_sym_BANGin] = ACTIONS(5002), - [anon_sym_is] = ACTIONS(5000), - [anon_sym_BANGis] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(5000), - [anon_sym_as_QMARK] = ACTIONS(5002), - [anon_sym_PLUS_PLUS] = ACTIONS(5002), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_BANG] = ACTIONS(5000), - [anon_sym_BANG_BANG] = ACTIONS(5002), - [anon_sym_suspend] = ACTIONS(5000), - [anon_sym_sealed] = ACTIONS(5000), - [anon_sym_annotation] = ACTIONS(5000), - [anon_sym_data] = ACTIONS(5000), - [anon_sym_inner] = ACTIONS(5000), - [anon_sym_value] = ACTIONS(5000), - [anon_sym_override] = ACTIONS(5000), - [anon_sym_lateinit] = ACTIONS(5000), - [anon_sym_public] = ACTIONS(5000), - [anon_sym_private] = ACTIONS(5000), - [anon_sym_internal] = ACTIONS(5000), - [anon_sym_protected] = ACTIONS(5000), - [anon_sym_tailrec] = ACTIONS(5000), - [anon_sym_operator] = ACTIONS(5000), - [anon_sym_infix] = ACTIONS(5000), - [anon_sym_inline] = ACTIONS(5000), - [anon_sym_external] = ACTIONS(5000), - [sym_property_modifier] = ACTIONS(5000), - [anon_sym_abstract] = ACTIONS(5000), - [anon_sym_final] = ACTIONS(5000), - [anon_sym_open] = ACTIONS(5000), - [anon_sym_vararg] = ACTIONS(5000), - [anon_sym_noinline] = ACTIONS(5000), - [anon_sym_crossinline] = ACTIONS(5000), - [anon_sym_expect] = ACTIONS(5000), - [anon_sym_actual] = ACTIONS(5000), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5002), - [anon_sym_continue_AT] = ACTIONS(5002), - [anon_sym_break_AT] = ACTIONS(5002), - [anon_sym_this_AT] = ACTIONS(5002), - [anon_sym_super_AT] = ACTIONS(5002), - [sym_real_literal] = ACTIONS(5002), - [sym_integer_literal] = ACTIONS(5000), - [sym_hex_literal] = ACTIONS(5002), - [sym_bin_literal] = ACTIONS(5002), - [anon_sym_true] = ACTIONS(5000), - [anon_sym_false] = ACTIONS(5000), - [anon_sym_SQUOTE] = ACTIONS(5002), - [sym__backtick_identifier] = ACTIONS(5002), - [sym__automatic_semicolon] = ACTIONS(5002), - [sym_safe_nav] = ACTIONS(5002), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5002), - }, - [1099] = { - [sym__alpha_identifier] = ACTIONS(5004), - [anon_sym_AT] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_as] = ACTIONS(5004), - [anon_sym_EQ] = ACTIONS(5004), - [anon_sym_fun] = ACTIONS(5004), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_LT] = ACTIONS(5004), - [anon_sym_GT] = ACTIONS(5004), - [anon_sym_where] = ACTIONS(5004), - [anon_sym_object] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5004), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym_get] = ACTIONS(5004), - [anon_sym_set] = ACTIONS(5004), - [anon_sym_this] = ACTIONS(5004), - [anon_sym_super] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5004), - [sym_label] = ACTIONS(5004), - [anon_sym_in] = ACTIONS(5004), - [anon_sym_DOT_DOT] = ACTIONS(5006), - [anon_sym_QMARK_COLON] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_null] = ACTIONS(5004), - [anon_sym_if] = ACTIONS(5004), - [anon_sym_else] = ACTIONS(5004), - [anon_sym_when] = ACTIONS(5004), - [anon_sym_try] = ACTIONS(5004), - [anon_sym_throw] = ACTIONS(5004), - [anon_sym_return] = ACTIONS(5004), - [anon_sym_continue] = ACTIONS(5004), - [anon_sym_break] = ACTIONS(5004), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym_PLUS_EQ] = ACTIONS(5006), - [anon_sym_DASH_EQ] = ACTIONS(5006), - [anon_sym_STAR_EQ] = ACTIONS(5006), - [anon_sym_SLASH_EQ] = ACTIONS(5006), - [anon_sym_PERCENT_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5004), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5006), - [anon_sym_EQ_EQ] = ACTIONS(5004), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5006), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_BANGin] = ACTIONS(5006), - [anon_sym_is] = ACTIONS(5004), - [anon_sym_BANGis] = ACTIONS(5006), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_SLASH] = ACTIONS(5004), - [anon_sym_PERCENT] = ACTIONS(5004), - [anon_sym_as_QMARK] = ACTIONS(5006), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_BANG] = ACTIONS(5004), - [anon_sym_BANG_BANG] = ACTIONS(5006), - [anon_sym_suspend] = ACTIONS(5004), - [anon_sym_sealed] = ACTIONS(5004), - [anon_sym_annotation] = ACTIONS(5004), - [anon_sym_data] = ACTIONS(5004), - [anon_sym_inner] = ACTIONS(5004), - [anon_sym_value] = ACTIONS(5004), - [anon_sym_override] = ACTIONS(5004), - [anon_sym_lateinit] = ACTIONS(5004), - [anon_sym_public] = ACTIONS(5004), - [anon_sym_private] = ACTIONS(5004), - [anon_sym_internal] = ACTIONS(5004), - [anon_sym_protected] = ACTIONS(5004), - [anon_sym_tailrec] = ACTIONS(5004), - [anon_sym_operator] = ACTIONS(5004), - [anon_sym_infix] = ACTIONS(5004), - [anon_sym_inline] = ACTIONS(5004), - [anon_sym_external] = ACTIONS(5004), - [sym_property_modifier] = ACTIONS(5004), - [anon_sym_abstract] = ACTIONS(5004), - [anon_sym_final] = ACTIONS(5004), - [anon_sym_open] = ACTIONS(5004), - [anon_sym_vararg] = ACTIONS(5004), - [anon_sym_noinline] = ACTIONS(5004), - [anon_sym_crossinline] = ACTIONS(5004), - [anon_sym_expect] = ACTIONS(5004), - [anon_sym_actual] = ACTIONS(5004), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5006), - [anon_sym_continue_AT] = ACTIONS(5006), - [anon_sym_break_AT] = ACTIONS(5006), - [anon_sym_this_AT] = ACTIONS(5006), - [anon_sym_super_AT] = ACTIONS(5006), - [sym_real_literal] = ACTIONS(5006), - [sym_integer_literal] = ACTIONS(5004), - [sym_hex_literal] = ACTIONS(5006), - [sym_bin_literal] = ACTIONS(5006), - [anon_sym_true] = ACTIONS(5004), - [anon_sym_false] = ACTIONS(5004), - [anon_sym_SQUOTE] = ACTIONS(5006), - [sym__backtick_identifier] = ACTIONS(5006), - [sym__automatic_semicolon] = ACTIONS(5006), - [sym_safe_nav] = ACTIONS(5006), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5006), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [1100] = { - [sym__alpha_identifier] = ACTIONS(5008), - [anon_sym_AT] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5010), - [anon_sym_as] = ACTIONS(5008), - [anon_sym_EQ] = ACTIONS(5008), - [anon_sym_fun] = ACTIONS(5008), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_RBRACE] = ACTIONS(5010), - [anon_sym_LPAREN] = ACTIONS(5010), - [anon_sym_COMMA] = ACTIONS(5010), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_where] = ACTIONS(5008), - [anon_sym_object] = ACTIONS(5008), - [anon_sym_DOT] = ACTIONS(5008), + [1087] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), [anon_sym_SEMI] = ACTIONS(5010), - [anon_sym_get] = ACTIONS(5008), - [anon_sym_set] = ACTIONS(5008), - [anon_sym_this] = ACTIONS(5008), - [anon_sym_super] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [sym_label] = ACTIONS(5008), - [anon_sym_in] = ACTIONS(5008), - [anon_sym_DOT_DOT] = ACTIONS(5010), - [anon_sym_QMARK_COLON] = ACTIONS(5010), - [anon_sym_AMP_AMP] = ACTIONS(5010), - [anon_sym_PIPE_PIPE] = ACTIONS(5010), - [anon_sym_null] = ACTIONS(5008), - [anon_sym_if] = ACTIONS(5008), - [anon_sym_else] = ACTIONS(5008), - [anon_sym_when] = ACTIONS(5008), - [anon_sym_try] = ACTIONS(5008), - [anon_sym_throw] = ACTIONS(5008), - [anon_sym_return] = ACTIONS(5008), - [anon_sym_continue] = ACTIONS(5008), - [anon_sym_break] = ACTIONS(5008), - [anon_sym_COLON_COLON] = ACTIONS(5010), - [anon_sym_PLUS_EQ] = ACTIONS(5010), - [anon_sym_DASH_EQ] = ACTIONS(5010), - [anon_sym_STAR_EQ] = ACTIONS(5010), - [anon_sym_SLASH_EQ] = ACTIONS(5010), - [anon_sym_PERCENT_EQ] = ACTIONS(5010), - [anon_sym_BANG_EQ] = ACTIONS(5008), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5010), - [anon_sym_EQ_EQ] = ACTIONS(5008), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5010), - [anon_sym_LT_EQ] = ACTIONS(5010), - [anon_sym_GT_EQ] = ACTIONS(5010), - [anon_sym_BANGin] = ACTIONS(5010), - [anon_sym_is] = ACTIONS(5008), - [anon_sym_BANGis] = ACTIONS(5010), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_get] = ACTIONS(4982), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_as_QMARK] = ACTIONS(5010), - [anon_sym_PLUS_PLUS] = ACTIONS(5010), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_BANG] = ACTIONS(5008), - [anon_sym_BANG_BANG] = ACTIONS(5010), - [anon_sym_suspend] = ACTIONS(5008), - [anon_sym_sealed] = ACTIONS(5008), - [anon_sym_annotation] = ACTIONS(5008), - [anon_sym_data] = ACTIONS(5008), - [anon_sym_inner] = ACTIONS(5008), - [anon_sym_value] = ACTIONS(5008), - [anon_sym_override] = ACTIONS(5008), - [anon_sym_lateinit] = ACTIONS(5008), - [anon_sym_public] = ACTIONS(5008), - [anon_sym_private] = ACTIONS(5008), - [anon_sym_internal] = ACTIONS(5008), - [anon_sym_protected] = ACTIONS(5008), - [anon_sym_tailrec] = ACTIONS(5008), - [anon_sym_operator] = ACTIONS(5008), - [anon_sym_infix] = ACTIONS(5008), - [anon_sym_inline] = ACTIONS(5008), - [anon_sym_external] = ACTIONS(5008), - [sym_property_modifier] = ACTIONS(5008), - [anon_sym_abstract] = ACTIONS(5008), - [anon_sym_final] = ACTIONS(5008), - [anon_sym_open] = ACTIONS(5008), - [anon_sym_vararg] = ACTIONS(5008), - [anon_sym_noinline] = ACTIONS(5008), - [anon_sym_crossinline] = ACTIONS(5008), - [anon_sym_expect] = ACTIONS(5008), - [anon_sym_actual] = ACTIONS(5008), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5010), - [anon_sym_continue_AT] = ACTIONS(5010), - [anon_sym_break_AT] = ACTIONS(5010), - [anon_sym_this_AT] = ACTIONS(5010), - [anon_sym_super_AT] = ACTIONS(5010), - [sym_real_literal] = ACTIONS(5010), - [sym_integer_literal] = ACTIONS(5008), - [sym_hex_literal] = ACTIONS(5010), - [sym_bin_literal] = ACTIONS(5010), - [anon_sym_true] = ACTIONS(5008), - [anon_sym_false] = ACTIONS(5008), - [anon_sym_SQUOTE] = ACTIONS(5010), - [sym__backtick_identifier] = ACTIONS(5010), - [sym__automatic_semicolon] = ACTIONS(5010), - [sym_safe_nav] = ACTIONS(5010), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [1101] = { - [sym__alpha_identifier] = ACTIONS(5012), - [anon_sym_AT] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5014), - [anon_sym_as] = ACTIONS(5012), - [anon_sym_EQ] = ACTIONS(5012), - [anon_sym_fun] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5014), - [anon_sym_RBRACE] = ACTIONS(5014), - [anon_sym_LPAREN] = ACTIONS(5014), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_LT] = ACTIONS(5012), - [anon_sym_GT] = ACTIONS(5012), - [anon_sym_where] = ACTIONS(5012), - [anon_sym_object] = ACTIONS(5012), - [anon_sym_DOT] = ACTIONS(5012), + [1088] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_get] = ACTIONS(4982), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1089] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), [anon_sym_SEMI] = ACTIONS(5014), - [anon_sym_get] = ACTIONS(5012), - [anon_sym_set] = ACTIONS(5012), - [anon_sym_this] = ACTIONS(5012), - [anon_sym_super] = ACTIONS(5012), - [anon_sym_STAR] = ACTIONS(5012), - [sym_label] = ACTIONS(5012), - [anon_sym_in] = ACTIONS(5012), - [anon_sym_DOT_DOT] = ACTIONS(5014), - [anon_sym_QMARK_COLON] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5014), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_null] = ACTIONS(5012), - [anon_sym_if] = ACTIONS(5012), - [anon_sym_else] = ACTIONS(5012), - [anon_sym_when] = ACTIONS(5012), - [anon_sym_try] = ACTIONS(5012), - [anon_sym_throw] = ACTIONS(5012), - [anon_sym_return] = ACTIONS(5012), - [anon_sym_continue] = ACTIONS(5012), - [anon_sym_break] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5014), - [anon_sym_PLUS_EQ] = ACTIONS(5014), - [anon_sym_DASH_EQ] = ACTIONS(5014), - [anon_sym_STAR_EQ] = ACTIONS(5014), - [anon_sym_SLASH_EQ] = ACTIONS(5014), - [anon_sym_PERCENT_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5012), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5014), - [anon_sym_EQ_EQ] = ACTIONS(5012), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5014), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_BANGin] = ACTIONS(5014), - [anon_sym_is] = ACTIONS(5012), - [anon_sym_BANGis] = ACTIONS(5014), - [anon_sym_PLUS] = ACTIONS(5012), - [anon_sym_DASH] = ACTIONS(5012), - [anon_sym_SLASH] = ACTIONS(5012), - [anon_sym_PERCENT] = ACTIONS(5012), - [anon_sym_as_QMARK] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_BANG] = ACTIONS(5012), - [anon_sym_BANG_BANG] = ACTIONS(5014), - [anon_sym_suspend] = ACTIONS(5012), - [anon_sym_sealed] = ACTIONS(5012), - [anon_sym_annotation] = ACTIONS(5012), - [anon_sym_data] = ACTIONS(5012), - [anon_sym_inner] = ACTIONS(5012), - [anon_sym_value] = ACTIONS(5012), - [anon_sym_override] = ACTIONS(5012), - [anon_sym_lateinit] = ACTIONS(5012), - [anon_sym_public] = ACTIONS(5012), - [anon_sym_private] = ACTIONS(5012), - [anon_sym_internal] = ACTIONS(5012), - [anon_sym_protected] = ACTIONS(5012), - [anon_sym_tailrec] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), - [anon_sym_infix] = ACTIONS(5012), - [anon_sym_inline] = ACTIONS(5012), - [anon_sym_external] = ACTIONS(5012), - [sym_property_modifier] = ACTIONS(5012), - [anon_sym_abstract] = ACTIONS(5012), - [anon_sym_final] = ACTIONS(5012), - [anon_sym_open] = ACTIONS(5012), - [anon_sym_vararg] = ACTIONS(5012), - [anon_sym_noinline] = ACTIONS(5012), - [anon_sym_crossinline] = ACTIONS(5012), - [anon_sym_expect] = ACTIONS(5012), - [anon_sym_actual] = ACTIONS(5012), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5014), - [anon_sym_continue_AT] = ACTIONS(5014), - [anon_sym_break_AT] = ACTIONS(5014), - [anon_sym_this_AT] = ACTIONS(5014), - [anon_sym_super_AT] = ACTIONS(5014), - [sym_real_literal] = ACTIONS(5014), - [sym_integer_literal] = ACTIONS(5012), - [sym_hex_literal] = ACTIONS(5014), - [sym_bin_literal] = ACTIONS(5014), - [anon_sym_true] = ACTIONS(5012), - [anon_sym_false] = ACTIONS(5012), - [anon_sym_SQUOTE] = ACTIONS(5014), - [sym__backtick_identifier] = ACTIONS(5014), - [sym__automatic_semicolon] = ACTIONS(5014), - [sym_safe_nav] = ACTIONS(5014), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5014), + [anon_sym_get] = ACTIONS(4982), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [1102] = { - [sym__alpha_identifier] = ACTIONS(5016), - [anon_sym_AT] = ACTIONS(5018), - [anon_sym_LBRACK] = ACTIONS(5018), - [anon_sym_as] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(5016), - [anon_sym_fun] = ACTIONS(5016), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_RBRACE] = ACTIONS(5018), - [anon_sym_LPAREN] = ACTIONS(5018), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_LT] = ACTIONS(5016), - [anon_sym_GT] = ACTIONS(5016), - [anon_sym_where] = ACTIONS(5016), - [anon_sym_object] = ACTIONS(5016), - [anon_sym_DOT] = ACTIONS(5016), + [1090] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_get] = ACTIONS(4982), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1091] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), [anon_sym_SEMI] = ACTIONS(5018), - [anon_sym_get] = ACTIONS(5016), - [anon_sym_set] = ACTIONS(5016), - [anon_sym_this] = ACTIONS(5016), - [anon_sym_super] = ACTIONS(5016), - [anon_sym_STAR] = ACTIONS(5016), - [sym_label] = ACTIONS(5016), - [anon_sym_in] = ACTIONS(5016), - [anon_sym_DOT_DOT] = ACTIONS(5018), - [anon_sym_QMARK_COLON] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_null] = ACTIONS(5016), - [anon_sym_if] = ACTIONS(5016), - [anon_sym_else] = ACTIONS(5016), - [anon_sym_when] = ACTIONS(5016), - [anon_sym_try] = ACTIONS(5016), - [anon_sym_throw] = ACTIONS(5016), - [anon_sym_return] = ACTIONS(5016), - [anon_sym_continue] = ACTIONS(5016), - [anon_sym_break] = ACTIONS(5016), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym_PLUS_EQ] = ACTIONS(5018), - [anon_sym_DASH_EQ] = ACTIONS(5018), - [anon_sym_STAR_EQ] = ACTIONS(5018), - [anon_sym_SLASH_EQ] = ACTIONS(5018), - [anon_sym_PERCENT_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5018), - [anon_sym_EQ_EQ] = ACTIONS(5016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5018), - [anon_sym_GT_EQ] = ACTIONS(5018), - [anon_sym_BANGin] = ACTIONS(5018), - [anon_sym_is] = ACTIONS(5016), - [anon_sym_BANGis] = ACTIONS(5018), - [anon_sym_PLUS] = ACTIONS(5016), - [anon_sym_DASH] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5016), - [anon_sym_PERCENT] = ACTIONS(5016), - [anon_sym_as_QMARK] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_BANG] = ACTIONS(5016), - [anon_sym_BANG_BANG] = ACTIONS(5018), - [anon_sym_suspend] = ACTIONS(5016), - [anon_sym_sealed] = ACTIONS(5016), - [anon_sym_annotation] = ACTIONS(5016), - [anon_sym_data] = ACTIONS(5016), - [anon_sym_inner] = ACTIONS(5016), - [anon_sym_value] = ACTIONS(5016), - [anon_sym_override] = ACTIONS(5016), - [anon_sym_lateinit] = ACTIONS(5016), - [anon_sym_public] = ACTIONS(5016), - [anon_sym_private] = ACTIONS(5016), - [anon_sym_internal] = ACTIONS(5016), - [anon_sym_protected] = ACTIONS(5016), - [anon_sym_tailrec] = ACTIONS(5016), - [anon_sym_operator] = ACTIONS(5016), - [anon_sym_infix] = ACTIONS(5016), - [anon_sym_inline] = ACTIONS(5016), - [anon_sym_external] = ACTIONS(5016), - [sym_property_modifier] = ACTIONS(5016), - [anon_sym_abstract] = ACTIONS(5016), - [anon_sym_final] = ACTIONS(5016), - [anon_sym_open] = ACTIONS(5016), - [anon_sym_vararg] = ACTIONS(5016), - [anon_sym_noinline] = ACTIONS(5016), - [anon_sym_crossinline] = ACTIONS(5016), - [anon_sym_expect] = ACTIONS(5016), - [anon_sym_actual] = ACTIONS(5016), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5018), - [anon_sym_continue_AT] = ACTIONS(5018), - [anon_sym_break_AT] = ACTIONS(5018), - [anon_sym_this_AT] = ACTIONS(5018), - [anon_sym_super_AT] = ACTIONS(5018), - [sym_real_literal] = ACTIONS(5018), - [sym_integer_literal] = ACTIONS(5016), - [sym_hex_literal] = ACTIONS(5018), - [sym_bin_literal] = ACTIONS(5018), - [anon_sym_true] = ACTIONS(5016), - [anon_sym_false] = ACTIONS(5016), - [anon_sym_SQUOTE] = ACTIONS(5018), - [sym__backtick_identifier] = ACTIONS(5018), - [sym__automatic_semicolon] = ACTIONS(5018), - [sym_safe_nav] = ACTIONS(5018), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5018), + [anon_sym_get] = ACTIONS(4982), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [1103] = { + [1092] = { [sym__alpha_identifier] = ACTIONS(5020), [anon_sym_AT] = ACTIONS(5022), [anon_sym_LBRACK] = ACTIONS(5022), [anon_sym_as] = ACTIONS(5020), [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_fun] = ACTIONS(5020), [anon_sym_LBRACE] = ACTIONS(5022), [anon_sym_RBRACE] = ACTIONS(5022), [anon_sym_LPAREN] = ACTIONS(5022), @@ -176521,6 +174363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(5020), [anon_sym_where] = ACTIONS(5020), [anon_sym_object] = ACTIONS(5020), + [anon_sym_fun] = ACTIONS(5020), [anon_sym_DOT] = ACTIONS(5020), [anon_sym_SEMI] = ACTIONS(5022), [anon_sym_get] = ACTIONS(5020), @@ -176612,13 +174455,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5022), }, - [1104] = { + [1093] = { + [sym_function_body] = STATE(1085), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), + }, + [1094] = { [sym__alpha_identifier] = ACTIONS(5024), [anon_sym_AT] = ACTIONS(5026), [anon_sym_LBRACK] = ACTIONS(5026), [anon_sym_as] = ACTIONS(5024), [anon_sym_EQ] = ACTIONS(5024), - [anon_sym_fun] = ACTIONS(5024), [anon_sym_LBRACE] = ACTIONS(5026), [anon_sym_RBRACE] = ACTIONS(5026), [anon_sym_LPAREN] = ACTIONS(5026), @@ -176627,6 +174575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(5024), [anon_sym_where] = ACTIONS(5024), [anon_sym_object] = ACTIONS(5024), + [anon_sym_fun] = ACTIONS(5024), [anon_sym_DOT] = ACTIONS(5024), [anon_sym_SEMI] = ACTIONS(5026), [anon_sym_get] = ACTIONS(5024), @@ -176649,7 +174598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(5024), [anon_sym_continue] = ACTIONS(5024), [anon_sym_break] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5026), + [anon_sym_COLON_COLON] = ACTIONS(5028), [anon_sym_PLUS_EQ] = ACTIONS(5026), [anon_sym_DASH_EQ] = ACTIONS(5026), [anon_sym_STAR_EQ] = ACTIONS(5026), @@ -176718,2769 +174667,3616 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5026), }, + [1095] = { + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [1096] = { + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [1097] = { + [sym__alpha_identifier] = ACTIONS(5031), + [anon_sym_AT] = ACTIONS(5033), + [anon_sym_LBRACK] = ACTIONS(5033), + [anon_sym_as] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5033), + [anon_sym_RBRACE] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(5033), + [anon_sym_COMMA] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5031), + [anon_sym_GT] = ACTIONS(5031), + [anon_sym_where] = ACTIONS(5031), + [anon_sym_object] = ACTIONS(5031), + [anon_sym_fun] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_get] = ACTIONS(5031), + [anon_sym_set] = ACTIONS(5031), + [anon_sym_this] = ACTIONS(5031), + [anon_sym_super] = ACTIONS(5031), + [anon_sym_STAR] = ACTIONS(5031), + [sym_label] = ACTIONS(5031), + [anon_sym_in] = ACTIONS(5031), + [anon_sym_DOT_DOT] = ACTIONS(5033), + [anon_sym_QMARK_COLON] = ACTIONS(5033), + [anon_sym_AMP_AMP] = ACTIONS(5033), + [anon_sym_PIPE_PIPE] = ACTIONS(5033), + [anon_sym_null] = ACTIONS(5031), + [anon_sym_if] = ACTIONS(5031), + [anon_sym_else] = ACTIONS(5031), + [anon_sym_when] = ACTIONS(5031), + [anon_sym_try] = ACTIONS(5031), + [anon_sym_throw] = ACTIONS(5031), + [anon_sym_return] = ACTIONS(5031), + [anon_sym_continue] = ACTIONS(5031), + [anon_sym_break] = ACTIONS(5031), + [anon_sym_COLON_COLON] = ACTIONS(5033), + [anon_sym_PLUS_EQ] = ACTIONS(5033), + [anon_sym_DASH_EQ] = ACTIONS(5033), + [anon_sym_STAR_EQ] = ACTIONS(5033), + [anon_sym_SLASH_EQ] = ACTIONS(5033), + [anon_sym_PERCENT_EQ] = ACTIONS(5033), + [anon_sym_BANG_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5033), + [anon_sym_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5033), + [anon_sym_LT_EQ] = ACTIONS(5033), + [anon_sym_GT_EQ] = ACTIONS(5033), + [anon_sym_BANGin] = ACTIONS(5033), + [anon_sym_is] = ACTIONS(5031), + [anon_sym_BANGis] = ACTIONS(5033), + [anon_sym_PLUS] = ACTIONS(5031), + [anon_sym_DASH] = ACTIONS(5031), + [anon_sym_SLASH] = ACTIONS(5031), + [anon_sym_PERCENT] = ACTIONS(5031), + [anon_sym_as_QMARK] = ACTIONS(5033), + [anon_sym_PLUS_PLUS] = ACTIONS(5033), + [anon_sym_DASH_DASH] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5031), + [anon_sym_BANG_BANG] = ACTIONS(5033), + [anon_sym_suspend] = ACTIONS(5031), + [anon_sym_sealed] = ACTIONS(5031), + [anon_sym_annotation] = ACTIONS(5031), + [anon_sym_data] = ACTIONS(5031), + [anon_sym_inner] = ACTIONS(5031), + [anon_sym_value] = ACTIONS(5031), + [anon_sym_override] = ACTIONS(5031), + [anon_sym_lateinit] = ACTIONS(5031), + [anon_sym_public] = ACTIONS(5031), + [anon_sym_private] = ACTIONS(5031), + [anon_sym_internal] = ACTIONS(5031), + [anon_sym_protected] = ACTIONS(5031), + [anon_sym_tailrec] = ACTIONS(5031), + [anon_sym_operator] = ACTIONS(5031), + [anon_sym_infix] = ACTIONS(5031), + [anon_sym_inline] = ACTIONS(5031), + [anon_sym_external] = ACTIONS(5031), + [sym_property_modifier] = ACTIONS(5031), + [anon_sym_abstract] = ACTIONS(5031), + [anon_sym_final] = ACTIONS(5031), + [anon_sym_open] = ACTIONS(5031), + [anon_sym_vararg] = ACTIONS(5031), + [anon_sym_noinline] = ACTIONS(5031), + [anon_sym_crossinline] = ACTIONS(5031), + [anon_sym_expect] = ACTIONS(5031), + [anon_sym_actual] = ACTIONS(5031), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5033), + [anon_sym_continue_AT] = ACTIONS(5033), + [anon_sym_break_AT] = ACTIONS(5033), + [anon_sym_this_AT] = ACTIONS(5033), + [anon_sym_super_AT] = ACTIONS(5033), + [sym_real_literal] = ACTIONS(5033), + [sym_integer_literal] = ACTIONS(5031), + [sym_hex_literal] = ACTIONS(5033), + [sym_bin_literal] = ACTIONS(5033), + [anon_sym_true] = ACTIONS(5031), + [anon_sym_false] = ACTIONS(5031), + [anon_sym_SQUOTE] = ACTIONS(5033), + [sym__backtick_identifier] = ACTIONS(5033), + [sym__automatic_semicolon] = ACTIONS(5033), + [sym_safe_nav] = ACTIONS(5033), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5033), + }, + [1098] = { + [sym__alpha_identifier] = ACTIONS(5035), + [anon_sym_AT] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_as] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_where] = ACTIONS(5035), + [anon_sym_object] = ACTIONS(5035), + [anon_sym_fun] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_SEMI] = ACTIONS(5037), + [anon_sym_get] = ACTIONS(5035), + [anon_sym_set] = ACTIONS(5035), + [anon_sym_this] = ACTIONS(5035), + [anon_sym_super] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [sym_label] = ACTIONS(5035), + [anon_sym_in] = ACTIONS(5035), + [anon_sym_DOT_DOT] = ACTIONS(5037), + [anon_sym_QMARK_COLON] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_null] = ACTIONS(5035), + [anon_sym_if] = ACTIONS(5035), + [anon_sym_else] = ACTIONS(5035), + [anon_sym_when] = ACTIONS(5035), + [anon_sym_try] = ACTIONS(5035), + [anon_sym_throw] = ACTIONS(5035), + [anon_sym_return] = ACTIONS(5035), + [anon_sym_continue] = ACTIONS(5035), + [anon_sym_break] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5037), + [anon_sym_EQ_EQ] = ACTIONS(5035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_BANGin] = ACTIONS(5037), + [anon_sym_is] = ACTIONS(5035), + [anon_sym_BANGis] = ACTIONS(5037), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_as_QMARK] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5035), + [anon_sym_BANG_BANG] = ACTIONS(5037), + [anon_sym_suspend] = ACTIONS(5035), + [anon_sym_sealed] = ACTIONS(5035), + [anon_sym_annotation] = ACTIONS(5035), + [anon_sym_data] = ACTIONS(5035), + [anon_sym_inner] = ACTIONS(5035), + [anon_sym_value] = ACTIONS(5035), + [anon_sym_override] = ACTIONS(5035), + [anon_sym_lateinit] = ACTIONS(5035), + [anon_sym_public] = ACTIONS(5035), + [anon_sym_private] = ACTIONS(5035), + [anon_sym_internal] = ACTIONS(5035), + [anon_sym_protected] = ACTIONS(5035), + [anon_sym_tailrec] = ACTIONS(5035), + [anon_sym_operator] = ACTIONS(5035), + [anon_sym_infix] = ACTIONS(5035), + [anon_sym_inline] = ACTIONS(5035), + [anon_sym_external] = ACTIONS(5035), + [sym_property_modifier] = ACTIONS(5035), + [anon_sym_abstract] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_open] = ACTIONS(5035), + [anon_sym_vararg] = ACTIONS(5035), + [anon_sym_noinline] = ACTIONS(5035), + [anon_sym_crossinline] = ACTIONS(5035), + [anon_sym_expect] = ACTIONS(5035), + [anon_sym_actual] = ACTIONS(5035), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5037), + [anon_sym_continue_AT] = ACTIONS(5037), + [anon_sym_break_AT] = ACTIONS(5037), + [anon_sym_this_AT] = ACTIONS(5037), + [anon_sym_super_AT] = ACTIONS(5037), + [sym_real_literal] = ACTIONS(5037), + [sym_integer_literal] = ACTIONS(5035), + [sym_hex_literal] = ACTIONS(5037), + [sym_bin_literal] = ACTIONS(5037), + [anon_sym_true] = ACTIONS(5035), + [anon_sym_false] = ACTIONS(5035), + [anon_sym_SQUOTE] = ACTIONS(5037), + [sym__backtick_identifier] = ACTIONS(5037), + [sym__automatic_semicolon] = ACTIONS(5037), + [sym_safe_nav] = ACTIONS(5037), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5037), + }, + [1099] = { + [sym__alpha_identifier] = ACTIONS(5039), + [anon_sym_AT] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_as] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5041), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5039), + [anon_sym_GT] = ACTIONS(5039), + [anon_sym_where] = ACTIONS(5039), + [anon_sym_object] = ACTIONS(5039), + [anon_sym_fun] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5039), + [anon_sym_SEMI] = ACTIONS(5041), + [anon_sym_get] = ACTIONS(5039), + [anon_sym_set] = ACTIONS(5039), + [anon_sym_this] = ACTIONS(5039), + [anon_sym_super] = ACTIONS(5039), + [anon_sym_STAR] = ACTIONS(5039), + [sym_label] = ACTIONS(5039), + [anon_sym_in] = ACTIONS(5039), + [anon_sym_DOT_DOT] = ACTIONS(5041), + [anon_sym_QMARK_COLON] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5041), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_null] = ACTIONS(5039), + [anon_sym_if] = ACTIONS(5039), + [anon_sym_else] = ACTIONS(5039), + [anon_sym_when] = ACTIONS(5039), + [anon_sym_try] = ACTIONS(5039), + [anon_sym_throw] = ACTIONS(5039), + [anon_sym_return] = ACTIONS(5039), + [anon_sym_continue] = ACTIONS(5039), + [anon_sym_break] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5039), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5041), + [anon_sym_EQ_EQ] = ACTIONS(5039), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_BANGin] = ACTIONS(5041), + [anon_sym_is] = ACTIONS(5039), + [anon_sym_BANGis] = ACTIONS(5041), + [anon_sym_PLUS] = ACTIONS(5039), + [anon_sym_DASH] = ACTIONS(5039), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), + [anon_sym_as_QMARK] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5039), + [anon_sym_BANG_BANG] = ACTIONS(5041), + [anon_sym_suspend] = ACTIONS(5039), + [anon_sym_sealed] = ACTIONS(5039), + [anon_sym_annotation] = ACTIONS(5039), + [anon_sym_data] = ACTIONS(5039), + [anon_sym_inner] = ACTIONS(5039), + [anon_sym_value] = ACTIONS(5039), + [anon_sym_override] = ACTIONS(5039), + [anon_sym_lateinit] = ACTIONS(5039), + [anon_sym_public] = ACTIONS(5039), + [anon_sym_private] = ACTIONS(5039), + [anon_sym_internal] = ACTIONS(5039), + [anon_sym_protected] = ACTIONS(5039), + [anon_sym_tailrec] = ACTIONS(5039), + [anon_sym_operator] = ACTIONS(5039), + [anon_sym_infix] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym_external] = ACTIONS(5039), + [sym_property_modifier] = ACTIONS(5039), + [anon_sym_abstract] = ACTIONS(5039), + [anon_sym_final] = ACTIONS(5039), + [anon_sym_open] = ACTIONS(5039), + [anon_sym_vararg] = ACTIONS(5039), + [anon_sym_noinline] = ACTIONS(5039), + [anon_sym_crossinline] = ACTIONS(5039), + [anon_sym_expect] = ACTIONS(5039), + [anon_sym_actual] = ACTIONS(5039), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5041), + [anon_sym_continue_AT] = ACTIONS(5041), + [anon_sym_break_AT] = ACTIONS(5041), + [anon_sym_this_AT] = ACTIONS(5041), + [anon_sym_super_AT] = ACTIONS(5041), + [sym_real_literal] = ACTIONS(5041), + [sym_integer_literal] = ACTIONS(5039), + [sym_hex_literal] = ACTIONS(5041), + [sym_bin_literal] = ACTIONS(5041), + [anon_sym_true] = ACTIONS(5039), + [anon_sym_false] = ACTIONS(5039), + [anon_sym_SQUOTE] = ACTIONS(5041), + [sym__backtick_identifier] = ACTIONS(5041), + [sym__automatic_semicolon] = ACTIONS(5041), + [sym_safe_nav] = ACTIONS(5041), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5041), + }, + [1100] = { + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [1101] = { + [sym__alpha_identifier] = ACTIONS(5043), + [anon_sym_AT] = ACTIONS(5045), + [anon_sym_LBRACK] = ACTIONS(5045), + [anon_sym_as] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5045), + [anon_sym_RBRACE] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5045), + [anon_sym_COMMA] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5043), + [anon_sym_GT] = ACTIONS(5043), + [anon_sym_where] = ACTIONS(5043), + [anon_sym_object] = ACTIONS(5043), + [anon_sym_fun] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5043), + [anon_sym_SEMI] = ACTIONS(5045), + [anon_sym_get] = ACTIONS(5043), + [anon_sym_set] = ACTIONS(5043), + [anon_sym_this] = ACTIONS(5043), + [anon_sym_super] = ACTIONS(5043), + [anon_sym_STAR] = ACTIONS(5043), + [sym_label] = ACTIONS(5043), + [anon_sym_in] = ACTIONS(5043), + [anon_sym_DOT_DOT] = ACTIONS(5045), + [anon_sym_QMARK_COLON] = ACTIONS(5045), + [anon_sym_AMP_AMP] = ACTIONS(5045), + [anon_sym_PIPE_PIPE] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5043), + [anon_sym_if] = ACTIONS(5043), + [anon_sym_else] = ACTIONS(5043), + [anon_sym_when] = ACTIONS(5043), + [anon_sym_try] = ACTIONS(5043), + [anon_sym_throw] = ACTIONS(5043), + [anon_sym_return] = ACTIONS(5043), + [anon_sym_continue] = ACTIONS(5043), + [anon_sym_break] = ACTIONS(5043), + [anon_sym_COLON_COLON] = ACTIONS(5045), + [anon_sym_PLUS_EQ] = ACTIONS(5045), + [anon_sym_DASH_EQ] = ACTIONS(5045), + [anon_sym_STAR_EQ] = ACTIONS(5045), + [anon_sym_SLASH_EQ] = ACTIONS(5045), + [anon_sym_PERCENT_EQ] = ACTIONS(5045), + [anon_sym_BANG_EQ] = ACTIONS(5043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5045), + [anon_sym_EQ_EQ] = ACTIONS(5043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5045), + [anon_sym_LT_EQ] = ACTIONS(5045), + [anon_sym_GT_EQ] = ACTIONS(5045), + [anon_sym_BANGin] = ACTIONS(5045), + [anon_sym_is] = ACTIONS(5043), + [anon_sym_BANGis] = ACTIONS(5045), + [anon_sym_PLUS] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5043), + [anon_sym_PERCENT] = ACTIONS(5043), + [anon_sym_as_QMARK] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5045), + [anon_sym_DASH_DASH] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5043), + [anon_sym_BANG_BANG] = ACTIONS(5045), + [anon_sym_suspend] = ACTIONS(5043), + [anon_sym_sealed] = ACTIONS(5043), + [anon_sym_annotation] = ACTIONS(5043), + [anon_sym_data] = ACTIONS(5043), + [anon_sym_inner] = ACTIONS(5043), + [anon_sym_value] = ACTIONS(5043), + [anon_sym_override] = ACTIONS(5043), + [anon_sym_lateinit] = ACTIONS(5043), + [anon_sym_public] = ACTIONS(5043), + [anon_sym_private] = ACTIONS(5043), + [anon_sym_internal] = ACTIONS(5043), + [anon_sym_protected] = ACTIONS(5043), + [anon_sym_tailrec] = ACTIONS(5043), + [anon_sym_operator] = ACTIONS(5043), + [anon_sym_infix] = ACTIONS(5043), + [anon_sym_inline] = ACTIONS(5043), + [anon_sym_external] = ACTIONS(5043), + [sym_property_modifier] = ACTIONS(5043), + [anon_sym_abstract] = ACTIONS(5043), + [anon_sym_final] = ACTIONS(5043), + [anon_sym_open] = ACTIONS(5043), + [anon_sym_vararg] = ACTIONS(5043), + [anon_sym_noinline] = ACTIONS(5043), + [anon_sym_crossinline] = ACTIONS(5043), + [anon_sym_expect] = ACTIONS(5043), + [anon_sym_actual] = ACTIONS(5043), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5045), + [anon_sym_continue_AT] = ACTIONS(5045), + [anon_sym_break_AT] = ACTIONS(5045), + [anon_sym_this_AT] = ACTIONS(5045), + [anon_sym_super_AT] = ACTIONS(5045), + [sym_real_literal] = ACTIONS(5045), + [sym_integer_literal] = ACTIONS(5043), + [sym_hex_literal] = ACTIONS(5045), + [sym_bin_literal] = ACTIONS(5045), + [anon_sym_true] = ACTIONS(5043), + [anon_sym_false] = ACTIONS(5043), + [anon_sym_SQUOTE] = ACTIONS(5045), + [sym__backtick_identifier] = ACTIONS(5045), + [sym__automatic_semicolon] = ACTIONS(5045), + [sym_safe_nav] = ACTIONS(5045), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5045), + }, + [1102] = { + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [1103] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5049), + [anon_sym_COMMA] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_where] = ACTIONS(5047), + [anon_sym_object] = ACTIONS(5047), + [anon_sym_fun] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_SEMI] = ACTIONS(5049), + [anon_sym_get] = ACTIONS(5047), + [anon_sym_set] = ACTIONS(5047), + [anon_sym_this] = ACTIONS(5047), + [anon_sym_super] = ACTIONS(5047), + [anon_sym_STAR] = ACTIONS(5047), + [sym_label] = ACTIONS(5047), + [anon_sym_in] = ACTIONS(5047), + [anon_sym_DOT_DOT] = ACTIONS(5049), + [anon_sym_QMARK_COLON] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5049), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_if] = ACTIONS(5047), + [anon_sym_else] = ACTIONS(5047), + [anon_sym_when] = ACTIONS(5047), + [anon_sym_try] = ACTIONS(5047), + [anon_sym_throw] = ACTIONS(5047), + [anon_sym_return] = ACTIONS(5047), + [anon_sym_continue] = ACTIONS(5047), + [anon_sym_break] = ACTIONS(5047), + [anon_sym_COLON_COLON] = ACTIONS(5049), + [anon_sym_PLUS_EQ] = ACTIONS(5049), + [anon_sym_DASH_EQ] = ACTIONS(5049), + [anon_sym_STAR_EQ] = ACTIONS(5049), + [anon_sym_SLASH_EQ] = ACTIONS(5049), + [anon_sym_PERCENT_EQ] = ACTIONS(5049), + [anon_sym_BANG_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5049), + [anon_sym_EQ_EQ] = ACTIONS(5047), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5049), + [anon_sym_LT_EQ] = ACTIONS(5049), + [anon_sym_GT_EQ] = ACTIONS(5049), + [anon_sym_BANGin] = ACTIONS(5049), + [anon_sym_is] = ACTIONS(5047), + [anon_sym_BANGis] = ACTIONS(5049), + [anon_sym_PLUS] = ACTIONS(5047), + [anon_sym_DASH] = ACTIONS(5047), + [anon_sym_SLASH] = ACTIONS(5047), + [anon_sym_PERCENT] = ACTIONS(5047), + [anon_sym_as_QMARK] = ACTIONS(5049), + [anon_sym_PLUS_PLUS] = ACTIONS(5049), + [anon_sym_DASH_DASH] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5047), + [anon_sym_BANG_BANG] = ACTIONS(5049), + [anon_sym_suspend] = ACTIONS(5047), + [anon_sym_sealed] = ACTIONS(5047), + [anon_sym_annotation] = ACTIONS(5047), + [anon_sym_data] = ACTIONS(5047), + [anon_sym_inner] = ACTIONS(5047), + [anon_sym_value] = ACTIONS(5047), + [anon_sym_override] = ACTIONS(5047), + [anon_sym_lateinit] = ACTIONS(5047), + [anon_sym_public] = ACTIONS(5047), + [anon_sym_private] = ACTIONS(5047), + [anon_sym_internal] = ACTIONS(5047), + [anon_sym_protected] = ACTIONS(5047), + [anon_sym_tailrec] = ACTIONS(5047), + [anon_sym_operator] = ACTIONS(5047), + [anon_sym_infix] = ACTIONS(5047), + [anon_sym_inline] = ACTIONS(5047), + [anon_sym_external] = ACTIONS(5047), + [sym_property_modifier] = ACTIONS(5047), + [anon_sym_abstract] = ACTIONS(5047), + [anon_sym_final] = ACTIONS(5047), + [anon_sym_open] = ACTIONS(5047), + [anon_sym_vararg] = ACTIONS(5047), + [anon_sym_noinline] = ACTIONS(5047), + [anon_sym_crossinline] = ACTIONS(5047), + [anon_sym_expect] = ACTIONS(5047), + [anon_sym_actual] = ACTIONS(5047), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5049), + [anon_sym_continue_AT] = ACTIONS(5049), + [anon_sym_break_AT] = ACTIONS(5049), + [anon_sym_this_AT] = ACTIONS(5049), + [anon_sym_super_AT] = ACTIONS(5049), + [sym_real_literal] = ACTIONS(5049), + [sym_integer_literal] = ACTIONS(5047), + [sym_hex_literal] = ACTIONS(5049), + [sym_bin_literal] = ACTIONS(5049), + [anon_sym_true] = ACTIONS(5047), + [anon_sym_false] = ACTIONS(5047), + [anon_sym_SQUOTE] = ACTIONS(5049), + [sym__backtick_identifier] = ACTIONS(5049), + [sym__automatic_semicolon] = ACTIONS(5049), + [sym_safe_nav] = ACTIONS(5049), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5049), + }, + [1104] = { + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5051), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_object] = ACTIONS(5051), + [anon_sym_fun] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_this] = ACTIONS(5051), + [anon_sym_super] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [sym_label] = ACTIONS(5051), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_null] = ACTIONS(5051), + [anon_sym_if] = ACTIONS(5051), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_when] = ACTIONS(5051), + [anon_sym_try] = ACTIONS(5051), + [anon_sym_throw] = ACTIONS(5051), + [anon_sym_return] = ACTIONS(5051), + [anon_sym_continue] = ACTIONS(5051), + [anon_sym_break] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5051), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_suspend] = ACTIONS(5051), + [anon_sym_sealed] = ACTIONS(5051), + [anon_sym_annotation] = ACTIONS(5051), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_override] = ACTIONS(5051), + [anon_sym_lateinit] = ACTIONS(5051), + [anon_sym_public] = ACTIONS(5051), + [anon_sym_private] = ACTIONS(5051), + [anon_sym_internal] = ACTIONS(5051), + [anon_sym_protected] = ACTIONS(5051), + [anon_sym_tailrec] = ACTIONS(5051), + [anon_sym_operator] = ACTIONS(5051), + [anon_sym_infix] = ACTIONS(5051), + [anon_sym_inline] = ACTIONS(5051), + [anon_sym_external] = ACTIONS(5051), + [sym_property_modifier] = ACTIONS(5051), + [anon_sym_abstract] = ACTIONS(5051), + [anon_sym_final] = ACTIONS(5051), + [anon_sym_open] = ACTIONS(5051), + [anon_sym_vararg] = ACTIONS(5051), + [anon_sym_noinline] = ACTIONS(5051), + [anon_sym_crossinline] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5053), + [anon_sym_continue_AT] = ACTIONS(5053), + [anon_sym_break_AT] = ACTIONS(5053), + [anon_sym_this_AT] = ACTIONS(5053), + [anon_sym_super_AT] = ACTIONS(5053), + [sym_real_literal] = ACTIONS(5053), + [sym_integer_literal] = ACTIONS(5051), + [sym_hex_literal] = ACTIONS(5053), + [sym_bin_literal] = ACTIONS(5053), + [anon_sym_true] = ACTIONS(5051), + [anon_sym_false] = ACTIONS(5051), + [anon_sym_SQUOTE] = ACTIONS(5053), + [sym__backtick_identifier] = ACTIONS(5053), + [sym__automatic_semicolon] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5053), + }, [1105] = { - [sym__alpha_identifier] = ACTIONS(5028), - [anon_sym_AT] = ACTIONS(5030), - [anon_sym_LBRACK] = ACTIONS(5030), - [anon_sym_as] = ACTIONS(5028), - [anon_sym_EQ] = ACTIONS(5028), - [anon_sym_fun] = ACTIONS(5028), - [anon_sym_LBRACE] = ACTIONS(5030), - [anon_sym_RBRACE] = ACTIONS(5030), - [anon_sym_LPAREN] = ACTIONS(5030), - [anon_sym_COMMA] = ACTIONS(5030), - [anon_sym_LT] = ACTIONS(5028), - [anon_sym_GT] = ACTIONS(5028), - [anon_sym_where] = ACTIONS(5028), - [anon_sym_object] = ACTIONS(5028), - [anon_sym_DOT] = ACTIONS(5028), - [anon_sym_SEMI] = ACTIONS(5030), - [anon_sym_get] = ACTIONS(5028), - [anon_sym_set] = ACTIONS(5028), - [anon_sym_this] = ACTIONS(5028), - [anon_sym_super] = ACTIONS(5028), - [anon_sym_STAR] = ACTIONS(5028), - [sym_label] = ACTIONS(5028), - [anon_sym_in] = ACTIONS(5028), - [anon_sym_DOT_DOT] = ACTIONS(5030), - [anon_sym_QMARK_COLON] = ACTIONS(5030), - [anon_sym_AMP_AMP] = ACTIONS(5030), - [anon_sym_PIPE_PIPE] = ACTIONS(5030), - [anon_sym_null] = ACTIONS(5028), - [anon_sym_if] = ACTIONS(5028), - [anon_sym_else] = ACTIONS(5028), - [anon_sym_when] = ACTIONS(5028), - [anon_sym_try] = ACTIONS(5028), - [anon_sym_throw] = ACTIONS(5028), - [anon_sym_return] = ACTIONS(5028), - [anon_sym_continue] = ACTIONS(5028), - [anon_sym_break] = ACTIONS(5028), - [anon_sym_COLON_COLON] = ACTIONS(5030), - [anon_sym_PLUS_EQ] = ACTIONS(5030), - [anon_sym_DASH_EQ] = ACTIONS(5030), - [anon_sym_STAR_EQ] = ACTIONS(5030), - [anon_sym_SLASH_EQ] = ACTIONS(5030), - [anon_sym_PERCENT_EQ] = ACTIONS(5030), - [anon_sym_BANG_EQ] = ACTIONS(5028), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5030), - [anon_sym_EQ_EQ] = ACTIONS(5028), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5030), - [anon_sym_LT_EQ] = ACTIONS(5030), - [anon_sym_GT_EQ] = ACTIONS(5030), - [anon_sym_BANGin] = ACTIONS(5030), - [anon_sym_is] = ACTIONS(5028), - [anon_sym_BANGis] = ACTIONS(5030), - [anon_sym_PLUS] = ACTIONS(5028), - [anon_sym_DASH] = ACTIONS(5028), - [anon_sym_SLASH] = ACTIONS(5028), - [anon_sym_PERCENT] = ACTIONS(5028), - [anon_sym_as_QMARK] = ACTIONS(5030), - [anon_sym_PLUS_PLUS] = ACTIONS(5030), - [anon_sym_DASH_DASH] = ACTIONS(5030), - [anon_sym_BANG] = ACTIONS(5028), - [anon_sym_BANG_BANG] = ACTIONS(5030), - [anon_sym_suspend] = ACTIONS(5028), - [anon_sym_sealed] = ACTIONS(5028), - [anon_sym_annotation] = ACTIONS(5028), - [anon_sym_data] = ACTIONS(5028), - [anon_sym_inner] = ACTIONS(5028), - [anon_sym_value] = ACTIONS(5028), - [anon_sym_override] = ACTIONS(5028), - [anon_sym_lateinit] = ACTIONS(5028), - [anon_sym_public] = ACTIONS(5028), - [anon_sym_private] = ACTIONS(5028), - [anon_sym_internal] = ACTIONS(5028), - [anon_sym_protected] = ACTIONS(5028), - [anon_sym_tailrec] = ACTIONS(5028), - [anon_sym_operator] = ACTIONS(5028), - [anon_sym_infix] = ACTIONS(5028), - [anon_sym_inline] = ACTIONS(5028), - [anon_sym_external] = ACTIONS(5028), - [sym_property_modifier] = ACTIONS(5028), - [anon_sym_abstract] = ACTIONS(5028), - [anon_sym_final] = ACTIONS(5028), - [anon_sym_open] = ACTIONS(5028), - [anon_sym_vararg] = ACTIONS(5028), - [anon_sym_noinline] = ACTIONS(5028), - [anon_sym_crossinline] = ACTIONS(5028), - [anon_sym_expect] = ACTIONS(5028), - [anon_sym_actual] = ACTIONS(5028), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5030), - [anon_sym_continue_AT] = ACTIONS(5030), - [anon_sym_break_AT] = ACTIONS(5030), - [anon_sym_this_AT] = ACTIONS(5030), - [anon_sym_super_AT] = ACTIONS(5030), - [sym_real_literal] = ACTIONS(5030), - [sym_integer_literal] = ACTIONS(5028), - [sym_hex_literal] = ACTIONS(5030), - [sym_bin_literal] = ACTIONS(5030), - [anon_sym_true] = ACTIONS(5028), - [anon_sym_false] = ACTIONS(5028), - [anon_sym_SQUOTE] = ACTIONS(5030), - [sym__backtick_identifier] = ACTIONS(5030), - [sym__automatic_semicolon] = ACTIONS(5030), - [sym_safe_nav] = ACTIONS(5030), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5030), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [1106] = { - [sym__alpha_identifier] = ACTIONS(5032), - [anon_sym_AT] = ACTIONS(5034), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_as] = ACTIONS(5032), - [anon_sym_EQ] = ACTIONS(5032), - [anon_sym_fun] = ACTIONS(5032), - [anon_sym_LBRACE] = ACTIONS(5034), - [anon_sym_RBRACE] = ACTIONS(5034), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_COMMA] = ACTIONS(5034), - [anon_sym_LT] = ACTIONS(5032), - [anon_sym_GT] = ACTIONS(5032), - [anon_sym_where] = ACTIONS(5032), - [anon_sym_object] = ACTIONS(5032), - [anon_sym_DOT] = ACTIONS(5032), - [anon_sym_SEMI] = ACTIONS(5034), - [anon_sym_get] = ACTIONS(5032), - [anon_sym_set] = ACTIONS(5032), - [anon_sym_this] = ACTIONS(5032), - [anon_sym_super] = ACTIONS(5032), - [anon_sym_STAR] = ACTIONS(5032), - [sym_label] = ACTIONS(5032), - [anon_sym_in] = ACTIONS(5032), - [anon_sym_DOT_DOT] = ACTIONS(5034), - [anon_sym_QMARK_COLON] = ACTIONS(5034), - [anon_sym_AMP_AMP] = ACTIONS(5034), - [anon_sym_PIPE_PIPE] = ACTIONS(5034), - [anon_sym_null] = ACTIONS(5032), - [anon_sym_if] = ACTIONS(5032), - [anon_sym_else] = ACTIONS(5032), - [anon_sym_when] = ACTIONS(5032), - [anon_sym_try] = ACTIONS(5032), - [anon_sym_throw] = ACTIONS(5032), - [anon_sym_return] = ACTIONS(5032), - [anon_sym_continue] = ACTIONS(5032), - [anon_sym_break] = ACTIONS(5032), - [anon_sym_COLON_COLON] = ACTIONS(5034), - [anon_sym_PLUS_EQ] = ACTIONS(5034), - [anon_sym_DASH_EQ] = ACTIONS(5034), - [anon_sym_STAR_EQ] = ACTIONS(5034), - [anon_sym_SLASH_EQ] = ACTIONS(5034), - [anon_sym_PERCENT_EQ] = ACTIONS(5034), - [anon_sym_BANG_EQ] = ACTIONS(5032), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5034), - [anon_sym_EQ_EQ] = ACTIONS(5032), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5034), - [anon_sym_LT_EQ] = ACTIONS(5034), - [anon_sym_GT_EQ] = ACTIONS(5034), - [anon_sym_BANGin] = ACTIONS(5034), - [anon_sym_is] = ACTIONS(5032), - [anon_sym_BANGis] = ACTIONS(5034), - [anon_sym_PLUS] = ACTIONS(5032), - [anon_sym_DASH] = ACTIONS(5032), - [anon_sym_SLASH] = ACTIONS(5032), - [anon_sym_PERCENT] = ACTIONS(5032), - [anon_sym_as_QMARK] = ACTIONS(5034), - [anon_sym_PLUS_PLUS] = ACTIONS(5034), - [anon_sym_DASH_DASH] = ACTIONS(5034), - [anon_sym_BANG] = ACTIONS(5032), - [anon_sym_BANG_BANG] = ACTIONS(5034), - [anon_sym_suspend] = ACTIONS(5032), - [anon_sym_sealed] = ACTIONS(5032), - [anon_sym_annotation] = ACTIONS(5032), - [anon_sym_data] = ACTIONS(5032), - [anon_sym_inner] = ACTIONS(5032), - [anon_sym_value] = ACTIONS(5032), - [anon_sym_override] = ACTIONS(5032), - [anon_sym_lateinit] = ACTIONS(5032), - [anon_sym_public] = ACTIONS(5032), - [anon_sym_private] = ACTIONS(5032), - [anon_sym_internal] = ACTIONS(5032), - [anon_sym_protected] = ACTIONS(5032), - [anon_sym_tailrec] = ACTIONS(5032), - [anon_sym_operator] = ACTIONS(5032), - [anon_sym_infix] = ACTIONS(5032), - [anon_sym_inline] = ACTIONS(5032), - [anon_sym_external] = ACTIONS(5032), - [sym_property_modifier] = ACTIONS(5032), - [anon_sym_abstract] = ACTIONS(5032), - [anon_sym_final] = ACTIONS(5032), - [anon_sym_open] = ACTIONS(5032), - [anon_sym_vararg] = ACTIONS(5032), - [anon_sym_noinline] = ACTIONS(5032), - [anon_sym_crossinline] = ACTIONS(5032), - [anon_sym_expect] = ACTIONS(5032), - [anon_sym_actual] = ACTIONS(5032), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5034), - [anon_sym_continue_AT] = ACTIONS(5034), - [anon_sym_break_AT] = ACTIONS(5034), - [anon_sym_this_AT] = ACTIONS(5034), - [anon_sym_super_AT] = ACTIONS(5034), - [sym_real_literal] = ACTIONS(5034), - [sym_integer_literal] = ACTIONS(5032), - [sym_hex_literal] = ACTIONS(5034), - [sym_bin_literal] = ACTIONS(5034), - [anon_sym_true] = ACTIONS(5032), - [anon_sym_false] = ACTIONS(5032), - [anon_sym_SQUOTE] = ACTIONS(5034), - [sym__backtick_identifier] = ACTIONS(5034), - [sym__automatic_semicolon] = ACTIONS(5034), - [sym_safe_nav] = ACTIONS(5034), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5034), - }, - [1107] = { - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(5036), - [anon_sym_get] = ACTIONS(4846), - [anon_sym_set] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [sym__alpha_identifier] = ACTIONS(5024), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_object] = ACTIONS(5024), + [anon_sym_fun] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_get] = ACTIONS(5024), + [anon_sym_set] = ACTIONS(5024), + [anon_sym_this] = ACTIONS(5024), + [anon_sym_super] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [sym_label] = ACTIONS(5024), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_QMARK_COLON] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_null] = ACTIONS(5024), + [anon_sym_if] = ACTIONS(5024), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_when] = ACTIONS(5024), + [anon_sym_try] = ACTIONS(5024), + [anon_sym_throw] = ACTIONS(5024), + [anon_sym_return] = ACTIONS(5024), + [anon_sym_continue] = ACTIONS(5024), + [anon_sym_break] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_PLUS_EQ] = ACTIONS(5057), + [anon_sym_DASH_EQ] = ACTIONS(5057), + [anon_sym_STAR_EQ] = ACTIONS(5057), + [anon_sym_SLASH_EQ] = ACTIONS(5057), + [anon_sym_PERCENT_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_BANGin] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_BANGis] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_as_QMARK] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_BANG_BANG] = ACTIONS(5026), + [anon_sym_suspend] = ACTIONS(5024), + [anon_sym_sealed] = ACTIONS(5024), + [anon_sym_annotation] = ACTIONS(5024), + [anon_sym_data] = ACTIONS(5024), + [anon_sym_inner] = ACTIONS(5024), + [anon_sym_value] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_lateinit] = ACTIONS(5024), + [anon_sym_public] = ACTIONS(5024), + [anon_sym_private] = ACTIONS(5024), + [anon_sym_internal] = ACTIONS(5024), + [anon_sym_protected] = ACTIONS(5024), + [anon_sym_tailrec] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5024), + [anon_sym_infix] = ACTIONS(5024), + [anon_sym_inline] = ACTIONS(5024), + [anon_sym_external] = ACTIONS(5024), + [sym_property_modifier] = ACTIONS(5024), + [anon_sym_abstract] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_open] = ACTIONS(5024), + [anon_sym_vararg] = ACTIONS(5024), + [anon_sym_noinline] = ACTIONS(5024), + [anon_sym_crossinline] = ACTIONS(5024), + [anon_sym_expect] = ACTIONS(5024), + [anon_sym_actual] = ACTIONS(5024), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(5026), + [anon_sym_continue_AT] = ACTIONS(5026), + [anon_sym_break_AT] = ACTIONS(5026), + [anon_sym_this_AT] = ACTIONS(5026), + [anon_sym_super_AT] = ACTIONS(5026), + [sym_real_literal] = ACTIONS(5026), + [sym_integer_literal] = ACTIONS(5024), + [sym_hex_literal] = ACTIONS(5026), + [sym_bin_literal] = ACTIONS(5026), + [anon_sym_true] = ACTIONS(5024), + [anon_sym_false] = ACTIONS(5024), + [anon_sym_SQUOTE] = ACTIONS(5026), + [sym__backtick_identifier] = ACTIONS(5026), + [sym__automatic_semicolon] = ACTIONS(5026), + [sym_safe_nav] = ACTIONS(5026), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5026), + }, + [1107] = { + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, [1108] = { - [sym__alpha_identifier] = ACTIONS(5038), - [anon_sym_AT] = ACTIONS(5040), - [anon_sym_LBRACK] = ACTIONS(5040), - [anon_sym_as] = ACTIONS(5038), - [anon_sym_EQ] = ACTIONS(5038), - [anon_sym_fun] = ACTIONS(5038), - [anon_sym_LBRACE] = ACTIONS(5040), - [anon_sym_RBRACE] = ACTIONS(5040), - [anon_sym_LPAREN] = ACTIONS(5040), - [anon_sym_COMMA] = ACTIONS(5040), - [anon_sym_LT] = ACTIONS(5038), - [anon_sym_GT] = ACTIONS(5038), - [anon_sym_where] = ACTIONS(5038), - [anon_sym_object] = ACTIONS(5038), - [anon_sym_DOT] = ACTIONS(5038), - [anon_sym_SEMI] = ACTIONS(5040), - [anon_sym_get] = ACTIONS(5038), - [anon_sym_set] = ACTIONS(5038), - [anon_sym_this] = ACTIONS(5038), - [anon_sym_super] = ACTIONS(5038), - [anon_sym_STAR] = ACTIONS(5038), - [sym_label] = ACTIONS(5038), - [anon_sym_in] = ACTIONS(5038), - [anon_sym_DOT_DOT] = ACTIONS(5040), - [anon_sym_QMARK_COLON] = ACTIONS(5040), - [anon_sym_AMP_AMP] = ACTIONS(5040), - [anon_sym_PIPE_PIPE] = ACTIONS(5040), - [anon_sym_null] = ACTIONS(5038), - [anon_sym_if] = ACTIONS(5038), - [anon_sym_else] = ACTIONS(5038), - [anon_sym_when] = ACTIONS(5038), - [anon_sym_try] = ACTIONS(5038), - [anon_sym_throw] = ACTIONS(5038), - [anon_sym_return] = ACTIONS(5038), - [anon_sym_continue] = ACTIONS(5038), - [anon_sym_break] = ACTIONS(5038), - [anon_sym_COLON_COLON] = ACTIONS(5042), - [anon_sym_PLUS_EQ] = ACTIONS(5040), - [anon_sym_DASH_EQ] = ACTIONS(5040), - [anon_sym_STAR_EQ] = ACTIONS(5040), - [anon_sym_SLASH_EQ] = ACTIONS(5040), - [anon_sym_PERCENT_EQ] = ACTIONS(5040), - [anon_sym_BANG_EQ] = ACTIONS(5038), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5040), - [anon_sym_EQ_EQ] = ACTIONS(5038), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5040), - [anon_sym_LT_EQ] = ACTIONS(5040), - [anon_sym_GT_EQ] = ACTIONS(5040), - [anon_sym_BANGin] = ACTIONS(5040), - [anon_sym_is] = ACTIONS(5038), - [anon_sym_BANGis] = ACTIONS(5040), - [anon_sym_PLUS] = ACTIONS(5038), - [anon_sym_DASH] = ACTIONS(5038), - [anon_sym_SLASH] = ACTIONS(5038), - [anon_sym_PERCENT] = ACTIONS(5038), - [anon_sym_as_QMARK] = ACTIONS(5040), - [anon_sym_PLUS_PLUS] = ACTIONS(5040), - [anon_sym_DASH_DASH] = ACTIONS(5040), - [anon_sym_BANG] = ACTIONS(5038), - [anon_sym_BANG_BANG] = ACTIONS(5040), - [anon_sym_suspend] = ACTIONS(5038), - [anon_sym_sealed] = ACTIONS(5038), - [anon_sym_annotation] = ACTIONS(5038), - [anon_sym_data] = ACTIONS(5038), - [anon_sym_inner] = ACTIONS(5038), - [anon_sym_value] = ACTIONS(5038), - [anon_sym_override] = ACTIONS(5038), - [anon_sym_lateinit] = ACTIONS(5038), - [anon_sym_public] = ACTIONS(5038), - [anon_sym_private] = ACTIONS(5038), - [anon_sym_internal] = ACTIONS(5038), - [anon_sym_protected] = ACTIONS(5038), - [anon_sym_tailrec] = ACTIONS(5038), - [anon_sym_operator] = ACTIONS(5038), - [anon_sym_infix] = ACTIONS(5038), - [anon_sym_inline] = ACTIONS(5038), - [anon_sym_external] = ACTIONS(5038), - [sym_property_modifier] = ACTIONS(5038), - [anon_sym_abstract] = ACTIONS(5038), - [anon_sym_final] = ACTIONS(5038), - [anon_sym_open] = ACTIONS(5038), - [anon_sym_vararg] = ACTIONS(5038), - [anon_sym_noinline] = ACTIONS(5038), - [anon_sym_crossinline] = ACTIONS(5038), - [anon_sym_expect] = ACTIONS(5038), - [anon_sym_actual] = ACTIONS(5038), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5040), - [anon_sym_continue_AT] = ACTIONS(5040), - [anon_sym_break_AT] = ACTIONS(5040), - [anon_sym_this_AT] = ACTIONS(5040), - [anon_sym_super_AT] = ACTIONS(5040), - [sym_real_literal] = ACTIONS(5040), - [sym_integer_literal] = ACTIONS(5038), - [sym_hex_literal] = ACTIONS(5040), - [sym_bin_literal] = ACTIONS(5040), - [anon_sym_true] = ACTIONS(5038), - [anon_sym_false] = ACTIONS(5038), - [anon_sym_SQUOTE] = ACTIONS(5040), - [sym__backtick_identifier] = ACTIONS(5040), - [sym__automatic_semicolon] = ACTIONS(5040), - [sym_safe_nav] = ACTIONS(5040), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5040), + [sym__alpha_identifier] = ACTIONS(5059), + [anon_sym_AT] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [anon_sym_as] = ACTIONS(5059), + [anon_sym_EQ] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5061), + [anon_sym_RBRACE] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5061), + [anon_sym_COMMA] = ACTIONS(5061), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_where] = ACTIONS(5059), + [anon_sym_object] = ACTIONS(5059), + [anon_sym_fun] = ACTIONS(5059), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [anon_sym_get] = ACTIONS(5059), + [anon_sym_set] = ACTIONS(5059), + [anon_sym_this] = ACTIONS(5059), + [anon_sym_super] = ACTIONS(5059), + [anon_sym_STAR] = ACTIONS(5059), + [sym_label] = ACTIONS(5059), + [anon_sym_in] = ACTIONS(5059), + [anon_sym_DOT_DOT] = ACTIONS(5061), + [anon_sym_QMARK_COLON] = ACTIONS(5061), + [anon_sym_AMP_AMP] = ACTIONS(5061), + [anon_sym_PIPE_PIPE] = ACTIONS(5061), + [anon_sym_null] = ACTIONS(5059), + [anon_sym_if] = ACTIONS(5059), + [anon_sym_else] = ACTIONS(5059), + [anon_sym_when] = ACTIONS(5059), + [anon_sym_try] = ACTIONS(5059), + [anon_sym_throw] = ACTIONS(5059), + [anon_sym_return] = ACTIONS(5059), + [anon_sym_continue] = ACTIONS(5059), + [anon_sym_break] = ACTIONS(5059), + [anon_sym_COLON_COLON] = ACTIONS(5061), + [anon_sym_PLUS_EQ] = ACTIONS(5061), + [anon_sym_DASH_EQ] = ACTIONS(5061), + [anon_sym_STAR_EQ] = ACTIONS(5061), + [anon_sym_SLASH_EQ] = ACTIONS(5061), + [anon_sym_PERCENT_EQ] = ACTIONS(5061), + [anon_sym_BANG_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5061), + [anon_sym_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5061), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_BANGin] = ACTIONS(5061), + [anon_sym_is] = ACTIONS(5059), + [anon_sym_BANGis] = ACTIONS(5061), + [anon_sym_PLUS] = ACTIONS(5059), + [anon_sym_DASH] = ACTIONS(5059), + [anon_sym_SLASH] = ACTIONS(5059), + [anon_sym_PERCENT] = ACTIONS(5059), + [anon_sym_as_QMARK] = ACTIONS(5061), + [anon_sym_PLUS_PLUS] = ACTIONS(5061), + [anon_sym_DASH_DASH] = ACTIONS(5061), + [anon_sym_BANG] = ACTIONS(5059), + [anon_sym_BANG_BANG] = ACTIONS(5061), + [anon_sym_suspend] = ACTIONS(5059), + [anon_sym_sealed] = ACTIONS(5059), + [anon_sym_annotation] = ACTIONS(5059), + [anon_sym_data] = ACTIONS(5059), + [anon_sym_inner] = ACTIONS(5059), + [anon_sym_value] = ACTIONS(5059), + [anon_sym_override] = ACTIONS(5059), + [anon_sym_lateinit] = ACTIONS(5059), + [anon_sym_public] = ACTIONS(5059), + [anon_sym_private] = ACTIONS(5059), + [anon_sym_internal] = ACTIONS(5059), + [anon_sym_protected] = ACTIONS(5059), + [anon_sym_tailrec] = ACTIONS(5059), + [anon_sym_operator] = ACTIONS(5059), + [anon_sym_infix] = ACTIONS(5059), + [anon_sym_inline] = ACTIONS(5059), + [anon_sym_external] = ACTIONS(5059), + [sym_property_modifier] = ACTIONS(5059), + [anon_sym_abstract] = ACTIONS(5059), + [anon_sym_final] = ACTIONS(5059), + [anon_sym_open] = ACTIONS(5059), + [anon_sym_vararg] = ACTIONS(5059), + [anon_sym_noinline] = ACTIONS(5059), + [anon_sym_crossinline] = ACTIONS(5059), + [anon_sym_expect] = ACTIONS(5059), + [anon_sym_actual] = ACTIONS(5059), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5061), + [anon_sym_continue_AT] = ACTIONS(5061), + [anon_sym_break_AT] = ACTIONS(5061), + [anon_sym_this_AT] = ACTIONS(5061), + [anon_sym_super_AT] = ACTIONS(5061), + [sym_real_literal] = ACTIONS(5061), + [sym_integer_literal] = ACTIONS(5059), + [sym_hex_literal] = ACTIONS(5061), + [sym_bin_literal] = ACTIONS(5061), + [anon_sym_true] = ACTIONS(5059), + [anon_sym_false] = ACTIONS(5059), + [anon_sym_SQUOTE] = ACTIONS(5061), + [sym__backtick_identifier] = ACTIONS(5061), + [sym__automatic_semicolon] = ACTIONS(5061), + [sym_safe_nav] = ACTIONS(5061), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5061), }, [1109] = { - [sym__alpha_identifier] = ACTIONS(5045), - [anon_sym_AT] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(5045), - [anon_sym_fun] = ACTIONS(5045), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_where] = ACTIONS(5045), - [anon_sym_object] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_get] = ACTIONS(5045), - [anon_sym_set] = ACTIONS(5045), - [anon_sym_this] = ACTIONS(5045), - [anon_sym_super] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [sym_label] = ACTIONS(5045), - [anon_sym_in] = ACTIONS(5045), - [anon_sym_DOT_DOT] = ACTIONS(5047), - [anon_sym_QMARK_COLON] = ACTIONS(5047), - [anon_sym_AMP_AMP] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_null] = ACTIONS(5045), - [anon_sym_if] = ACTIONS(5045), - [anon_sym_else] = ACTIONS(5045), - [anon_sym_when] = ACTIONS(5045), - [anon_sym_try] = ACTIONS(5045), - [anon_sym_throw] = ACTIONS(5045), - [anon_sym_return] = ACTIONS(5045), - [anon_sym_continue] = ACTIONS(5045), - [anon_sym_break] = ACTIONS(5045), - [anon_sym_COLON_COLON] = ACTIONS(5047), - [anon_sym_PLUS_EQ] = ACTIONS(5047), - [anon_sym_DASH_EQ] = ACTIONS(5047), - [anon_sym_STAR_EQ] = ACTIONS(5047), - [anon_sym_SLASH_EQ] = ACTIONS(5047), - [anon_sym_PERCENT_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_BANGin] = ACTIONS(5047), - [anon_sym_is] = ACTIONS(5045), - [anon_sym_BANGis] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_PERCENT] = ACTIONS(5045), - [anon_sym_as_QMARK] = ACTIONS(5047), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5045), - [anon_sym_BANG_BANG] = ACTIONS(5047), - [anon_sym_suspend] = ACTIONS(5045), - [anon_sym_sealed] = ACTIONS(5045), - [anon_sym_annotation] = ACTIONS(5045), - [anon_sym_data] = ACTIONS(5045), - [anon_sym_inner] = ACTIONS(5045), - [anon_sym_value] = ACTIONS(5045), - [anon_sym_override] = ACTIONS(5045), - [anon_sym_lateinit] = ACTIONS(5045), - [anon_sym_public] = ACTIONS(5045), - [anon_sym_private] = ACTIONS(5045), - [anon_sym_internal] = ACTIONS(5045), - [anon_sym_protected] = ACTIONS(5045), - [anon_sym_tailrec] = ACTIONS(5045), - [anon_sym_operator] = ACTIONS(5045), - [anon_sym_infix] = ACTIONS(5045), - [anon_sym_inline] = ACTIONS(5045), - [anon_sym_external] = ACTIONS(5045), - [sym_property_modifier] = ACTIONS(5045), - [anon_sym_abstract] = ACTIONS(5045), - [anon_sym_final] = ACTIONS(5045), - [anon_sym_open] = ACTIONS(5045), - [anon_sym_vararg] = ACTIONS(5045), - [anon_sym_noinline] = ACTIONS(5045), - [anon_sym_crossinline] = ACTIONS(5045), - [anon_sym_expect] = ACTIONS(5045), - [anon_sym_actual] = ACTIONS(5045), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5047), - [anon_sym_continue_AT] = ACTIONS(5047), - [anon_sym_break_AT] = ACTIONS(5047), - [anon_sym_this_AT] = ACTIONS(5047), - [anon_sym_super_AT] = ACTIONS(5047), - [sym_real_literal] = ACTIONS(5047), - [sym_integer_literal] = ACTIONS(5045), - [sym_hex_literal] = ACTIONS(5047), - [sym_bin_literal] = ACTIONS(5047), - [anon_sym_true] = ACTIONS(5045), - [anon_sym_false] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5047), - [sym__backtick_identifier] = ACTIONS(5047), - [sym__automatic_semicolon] = ACTIONS(5047), - [sym_safe_nav] = ACTIONS(5047), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5047), + [sym__alpha_identifier] = ACTIONS(5063), + [anon_sym_AT] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [anon_sym_as] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5065), + [anon_sym_RBRACE] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5065), + [anon_sym_COMMA] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5063), + [anon_sym_GT] = ACTIONS(5063), + [anon_sym_where] = ACTIONS(5063), + [anon_sym_object] = ACTIONS(5063), + [anon_sym_fun] = ACTIONS(5063), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5063), + [anon_sym_this] = ACTIONS(5063), + [anon_sym_super] = ACTIONS(5063), + [anon_sym_STAR] = ACTIONS(5063), + [sym_label] = ACTIONS(5063), + [anon_sym_in] = ACTIONS(5063), + [anon_sym_DOT_DOT] = ACTIONS(5065), + [anon_sym_QMARK_COLON] = ACTIONS(5065), + [anon_sym_AMP_AMP] = ACTIONS(5065), + [anon_sym_PIPE_PIPE] = ACTIONS(5065), + [anon_sym_null] = ACTIONS(5063), + [anon_sym_if] = ACTIONS(5063), + [anon_sym_else] = ACTIONS(5063), + [anon_sym_when] = ACTIONS(5063), + [anon_sym_try] = ACTIONS(5063), + [anon_sym_throw] = ACTIONS(5063), + [anon_sym_return] = ACTIONS(5063), + [anon_sym_continue] = ACTIONS(5063), + [anon_sym_break] = ACTIONS(5063), + [anon_sym_COLON_COLON] = ACTIONS(5065), + [anon_sym_PLUS_EQ] = ACTIONS(5065), + [anon_sym_DASH_EQ] = ACTIONS(5065), + [anon_sym_STAR_EQ] = ACTIONS(5065), + [anon_sym_SLASH_EQ] = ACTIONS(5065), + [anon_sym_PERCENT_EQ] = ACTIONS(5065), + [anon_sym_BANG_EQ] = ACTIONS(5063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5065), + [anon_sym_EQ_EQ] = ACTIONS(5063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5065), + [anon_sym_LT_EQ] = ACTIONS(5065), + [anon_sym_GT_EQ] = ACTIONS(5065), + [anon_sym_BANGin] = ACTIONS(5065), + [anon_sym_is] = ACTIONS(5063), + [anon_sym_BANGis] = ACTIONS(5065), + [anon_sym_PLUS] = ACTIONS(5063), + [anon_sym_DASH] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5063), + [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_as_QMARK] = ACTIONS(5065), + [anon_sym_PLUS_PLUS] = ACTIONS(5065), + [anon_sym_DASH_DASH] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5063), + [anon_sym_BANG_BANG] = ACTIONS(5065), + [anon_sym_suspend] = ACTIONS(5063), + [anon_sym_sealed] = ACTIONS(5063), + [anon_sym_annotation] = ACTIONS(5063), + [anon_sym_data] = ACTIONS(5063), + [anon_sym_inner] = ACTIONS(5063), + [anon_sym_value] = ACTIONS(5063), + [anon_sym_override] = ACTIONS(5063), + [anon_sym_lateinit] = ACTIONS(5063), + [anon_sym_public] = ACTIONS(5063), + [anon_sym_private] = ACTIONS(5063), + [anon_sym_internal] = ACTIONS(5063), + [anon_sym_protected] = ACTIONS(5063), + [anon_sym_tailrec] = ACTIONS(5063), + [anon_sym_operator] = ACTIONS(5063), + [anon_sym_infix] = ACTIONS(5063), + [anon_sym_inline] = ACTIONS(5063), + [anon_sym_external] = ACTIONS(5063), + [sym_property_modifier] = ACTIONS(5063), + [anon_sym_abstract] = ACTIONS(5063), + [anon_sym_final] = ACTIONS(5063), + [anon_sym_open] = ACTIONS(5063), + [anon_sym_vararg] = ACTIONS(5063), + [anon_sym_noinline] = ACTIONS(5063), + [anon_sym_crossinline] = ACTIONS(5063), + [anon_sym_expect] = ACTIONS(5063), + [anon_sym_actual] = ACTIONS(5063), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5065), + [anon_sym_continue_AT] = ACTIONS(5065), + [anon_sym_break_AT] = ACTIONS(5065), + [anon_sym_this_AT] = ACTIONS(5065), + [anon_sym_super_AT] = ACTIONS(5065), + [sym_real_literal] = ACTIONS(5065), + [sym_integer_literal] = ACTIONS(5063), + [sym_hex_literal] = ACTIONS(5065), + [sym_bin_literal] = ACTIONS(5065), + [anon_sym_true] = ACTIONS(5063), + [anon_sym_false] = ACTIONS(5063), + [anon_sym_SQUOTE] = ACTIONS(5065), + [sym__backtick_identifier] = ACTIONS(5065), + [sym__automatic_semicolon] = ACTIONS(5065), + [sym_safe_nav] = ACTIONS(5065), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5065), }, [1110] = { - [sym__alpha_identifier] = ACTIONS(5049), - [anon_sym_AT] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_as] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5049), - [anon_sym_fun] = ACTIONS(5049), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_where] = ACTIONS(5049), - [anon_sym_object] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_get] = ACTIONS(5049), - [anon_sym_set] = ACTIONS(5049), - [anon_sym_this] = ACTIONS(5049), - [anon_sym_super] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [sym_label] = ACTIONS(5049), - [anon_sym_in] = ACTIONS(5049), - [anon_sym_DOT_DOT] = ACTIONS(5051), - [anon_sym_QMARK_COLON] = ACTIONS(5051), - [anon_sym_AMP_AMP] = ACTIONS(5051), - [anon_sym_PIPE_PIPE] = ACTIONS(5051), - [anon_sym_null] = ACTIONS(5049), - [anon_sym_if] = ACTIONS(5049), - [anon_sym_else] = ACTIONS(5049), - [anon_sym_when] = ACTIONS(5049), - [anon_sym_try] = ACTIONS(5049), - [anon_sym_throw] = ACTIONS(5049), - [anon_sym_return] = ACTIONS(5049), - [anon_sym_continue] = ACTIONS(5049), - [anon_sym_break] = ACTIONS(5049), - [anon_sym_COLON_COLON] = ACTIONS(5051), - [anon_sym_PLUS_EQ] = ACTIONS(5051), - [anon_sym_DASH_EQ] = ACTIONS(5051), - [anon_sym_STAR_EQ] = ACTIONS(5051), - [anon_sym_SLASH_EQ] = ACTIONS(5051), - [anon_sym_PERCENT_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), - [anon_sym_LT_EQ] = ACTIONS(5051), - [anon_sym_GT_EQ] = ACTIONS(5051), - [anon_sym_BANGin] = ACTIONS(5051), - [anon_sym_is] = ACTIONS(5049), - [anon_sym_BANGis] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5049), - [anon_sym_as_QMARK] = ACTIONS(5051), - [anon_sym_PLUS_PLUS] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_BANG_BANG] = ACTIONS(5051), - [anon_sym_suspend] = ACTIONS(5049), - [anon_sym_sealed] = ACTIONS(5049), - [anon_sym_annotation] = ACTIONS(5049), - [anon_sym_data] = ACTIONS(5049), - [anon_sym_inner] = ACTIONS(5049), - [anon_sym_value] = ACTIONS(5049), - [anon_sym_override] = ACTIONS(5049), - [anon_sym_lateinit] = ACTIONS(5049), - [anon_sym_public] = ACTIONS(5049), - [anon_sym_private] = ACTIONS(5049), - [anon_sym_internal] = ACTIONS(5049), - [anon_sym_protected] = ACTIONS(5049), - [anon_sym_tailrec] = ACTIONS(5049), - [anon_sym_operator] = ACTIONS(5049), - [anon_sym_infix] = ACTIONS(5049), - [anon_sym_inline] = ACTIONS(5049), - [anon_sym_external] = ACTIONS(5049), - [sym_property_modifier] = ACTIONS(5049), - [anon_sym_abstract] = ACTIONS(5049), - [anon_sym_final] = ACTIONS(5049), - [anon_sym_open] = ACTIONS(5049), - [anon_sym_vararg] = ACTIONS(5049), - [anon_sym_noinline] = ACTIONS(5049), - [anon_sym_crossinline] = ACTIONS(5049), - [anon_sym_expect] = ACTIONS(5049), - [anon_sym_actual] = ACTIONS(5049), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5051), - [anon_sym_continue_AT] = ACTIONS(5051), - [anon_sym_break_AT] = ACTIONS(5051), - [anon_sym_this_AT] = ACTIONS(5051), - [anon_sym_super_AT] = ACTIONS(5051), - [sym_real_literal] = ACTIONS(5051), - [sym_integer_literal] = ACTIONS(5049), - [sym_hex_literal] = ACTIONS(5051), - [sym_bin_literal] = ACTIONS(5051), - [anon_sym_true] = ACTIONS(5049), - [anon_sym_false] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5051), - [sym__backtick_identifier] = ACTIONS(5051), - [sym__automatic_semicolon] = ACTIONS(5051), - [sym_safe_nav] = ACTIONS(5051), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5051), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_object] = ACTIONS(4028), + [anon_sym_fun] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_this] = ACTIONS(4028), + [anon_sym_super] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4028), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4030), + [anon_sym_PLUS_EQ] = ACTIONS(4030), + [anon_sym_DASH_EQ] = ACTIONS(4030), + [anon_sym_STAR_EQ] = ACTIONS(4030), + [anon_sym_SLASH_EQ] = ACTIONS(4030), + [anon_sym_PERCENT_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_BANG_BANG] = ACTIONS(4030), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4030), + [anon_sym_continue_AT] = ACTIONS(4030), + [anon_sym_break_AT] = ACTIONS(4030), + [anon_sym_this_AT] = ACTIONS(4030), + [anon_sym_super_AT] = ACTIONS(4030), + [sym_real_literal] = ACTIONS(4030), + [sym_integer_literal] = ACTIONS(4028), + [sym_hex_literal] = ACTIONS(4030), + [sym_bin_literal] = ACTIONS(4030), + [anon_sym_true] = ACTIONS(4028), + [anon_sym_false] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4030), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4030), }, [1111] = { - [sym__alpha_identifier] = ACTIONS(5038), - [anon_sym_AT] = ACTIONS(5040), - [anon_sym_LBRACK] = ACTIONS(5040), - [anon_sym_as] = ACTIONS(5038), - [anon_sym_EQ] = ACTIONS(5053), - [anon_sym_fun] = ACTIONS(5038), - [anon_sym_LBRACE] = ACTIONS(5040), - [anon_sym_RBRACE] = ACTIONS(5040), - [anon_sym_LPAREN] = ACTIONS(5040), - [anon_sym_COMMA] = ACTIONS(5040), - [anon_sym_LT] = ACTIONS(5038), - [anon_sym_GT] = ACTIONS(5038), - [anon_sym_where] = ACTIONS(5038), - [anon_sym_object] = ACTIONS(5038), - [anon_sym_DOT] = ACTIONS(5038), - [anon_sym_SEMI] = ACTIONS(5040), - [anon_sym_get] = ACTIONS(5038), - [anon_sym_set] = ACTIONS(5038), - [anon_sym_this] = ACTIONS(5038), - [anon_sym_super] = ACTIONS(5038), - [anon_sym_STAR] = ACTIONS(5038), - [sym_label] = ACTIONS(5038), - [anon_sym_in] = ACTIONS(5038), - [anon_sym_DOT_DOT] = ACTIONS(5040), - [anon_sym_QMARK_COLON] = ACTIONS(5040), - [anon_sym_AMP_AMP] = ACTIONS(5040), - [anon_sym_PIPE_PIPE] = ACTIONS(5040), - [anon_sym_null] = ACTIONS(5038), - [anon_sym_if] = ACTIONS(5038), - [anon_sym_else] = ACTIONS(5038), - [anon_sym_when] = ACTIONS(5038), - [anon_sym_try] = ACTIONS(5038), - [anon_sym_throw] = ACTIONS(5038), - [anon_sym_return] = ACTIONS(5038), - [anon_sym_continue] = ACTIONS(5038), - [anon_sym_break] = ACTIONS(5038), - [anon_sym_COLON_COLON] = ACTIONS(5042), - [anon_sym_PLUS_EQ] = ACTIONS(5055), - [anon_sym_DASH_EQ] = ACTIONS(5055), - [anon_sym_STAR_EQ] = ACTIONS(5055), - [anon_sym_SLASH_EQ] = ACTIONS(5055), - [anon_sym_PERCENT_EQ] = ACTIONS(5055), - [anon_sym_BANG_EQ] = ACTIONS(5038), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5040), - [anon_sym_EQ_EQ] = ACTIONS(5038), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5040), - [anon_sym_LT_EQ] = ACTIONS(5040), - [anon_sym_GT_EQ] = ACTIONS(5040), - [anon_sym_BANGin] = ACTIONS(5040), - [anon_sym_is] = ACTIONS(5038), - [anon_sym_BANGis] = ACTIONS(5040), - [anon_sym_PLUS] = ACTIONS(5038), - [anon_sym_DASH] = ACTIONS(5038), - [anon_sym_SLASH] = ACTIONS(5038), - [anon_sym_PERCENT] = ACTIONS(5038), - [anon_sym_as_QMARK] = ACTIONS(5040), - [anon_sym_PLUS_PLUS] = ACTIONS(5040), - [anon_sym_DASH_DASH] = ACTIONS(5040), - [anon_sym_BANG] = ACTIONS(5038), - [anon_sym_BANG_BANG] = ACTIONS(5040), - [anon_sym_suspend] = ACTIONS(5038), - [anon_sym_sealed] = ACTIONS(5038), - [anon_sym_annotation] = ACTIONS(5038), - [anon_sym_data] = ACTIONS(5038), - [anon_sym_inner] = ACTIONS(5038), - [anon_sym_value] = ACTIONS(5038), - [anon_sym_override] = ACTIONS(5038), - [anon_sym_lateinit] = ACTIONS(5038), - [anon_sym_public] = ACTIONS(5038), - [anon_sym_private] = ACTIONS(5038), - [anon_sym_internal] = ACTIONS(5038), - [anon_sym_protected] = ACTIONS(5038), - [anon_sym_tailrec] = ACTIONS(5038), - [anon_sym_operator] = ACTIONS(5038), - [anon_sym_infix] = ACTIONS(5038), - [anon_sym_inline] = ACTIONS(5038), - [anon_sym_external] = ACTIONS(5038), - [sym_property_modifier] = ACTIONS(5038), - [anon_sym_abstract] = ACTIONS(5038), - [anon_sym_final] = ACTIONS(5038), - [anon_sym_open] = ACTIONS(5038), - [anon_sym_vararg] = ACTIONS(5038), - [anon_sym_noinline] = ACTIONS(5038), - [anon_sym_crossinline] = ACTIONS(5038), - [anon_sym_expect] = ACTIONS(5038), - [anon_sym_actual] = ACTIONS(5038), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5040), - [anon_sym_continue_AT] = ACTIONS(5040), - [anon_sym_break_AT] = ACTIONS(5040), - [anon_sym_this_AT] = ACTIONS(5040), - [anon_sym_super_AT] = ACTIONS(5040), - [sym_real_literal] = ACTIONS(5040), - [sym_integer_literal] = ACTIONS(5038), - [sym_hex_literal] = ACTIONS(5040), - [sym_bin_literal] = ACTIONS(5040), - [anon_sym_true] = ACTIONS(5038), - [anon_sym_false] = ACTIONS(5038), - [anon_sym_SQUOTE] = ACTIONS(5040), - [sym__backtick_identifier] = ACTIONS(5040), - [sym__automatic_semicolon] = ACTIONS(5040), - [sym_safe_nav] = ACTIONS(5040), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5040), + [sym_function_body] = STATE(1097), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), }, [1112] = { - [sym__alpha_identifier] = ACTIONS(4034), - [anon_sym_AT] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_as] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4034), - [anon_sym_fun] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_COMMA] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_where] = ACTIONS(4034), - [anon_sym_object] = ACTIONS(4034), - [anon_sym_DOT] = ACTIONS(4034), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_get] = ACTIONS(4034), - [anon_sym_set] = ACTIONS(4034), - [anon_sym_this] = ACTIONS(4034), - [anon_sym_super] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4034), - [sym_label] = ACTIONS(4034), - [anon_sym_in] = ACTIONS(4034), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_QMARK_COLON] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_null] = ACTIONS(4034), - [anon_sym_if] = ACTIONS(4034), - [anon_sym_else] = ACTIONS(4034), - [anon_sym_when] = ACTIONS(4034), - [anon_sym_try] = ACTIONS(4034), - [anon_sym_throw] = ACTIONS(4034), - [anon_sym_return] = ACTIONS(4034), - [anon_sym_continue] = ACTIONS(4034), - [anon_sym_break] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4036), - [anon_sym_PLUS_EQ] = ACTIONS(4036), - [anon_sym_DASH_EQ] = ACTIONS(4036), - [anon_sym_STAR_EQ] = ACTIONS(4036), - [anon_sym_SLASH_EQ] = ACTIONS(4036), - [anon_sym_PERCENT_EQ] = ACTIONS(4036), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT_EQ] = ACTIONS(4036), - [anon_sym_GT_EQ] = ACTIONS(4036), - [anon_sym_BANGin] = ACTIONS(4036), - [anon_sym_is] = ACTIONS(4034), - [anon_sym_BANGis] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_SLASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_as_QMARK] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4036), - [anon_sym_DASH_DASH] = ACTIONS(4036), - [anon_sym_BANG] = ACTIONS(4034), - [anon_sym_BANG_BANG] = ACTIONS(4036), - [anon_sym_suspend] = ACTIONS(4034), - [anon_sym_sealed] = ACTIONS(4034), - [anon_sym_annotation] = ACTIONS(4034), - [anon_sym_data] = ACTIONS(4034), - [anon_sym_inner] = ACTIONS(4034), - [anon_sym_value] = ACTIONS(4034), - [anon_sym_override] = ACTIONS(4034), - [anon_sym_lateinit] = ACTIONS(4034), - [anon_sym_public] = ACTIONS(4034), - [anon_sym_private] = ACTIONS(4034), - [anon_sym_internal] = ACTIONS(4034), - [anon_sym_protected] = ACTIONS(4034), - [anon_sym_tailrec] = ACTIONS(4034), - [anon_sym_operator] = ACTIONS(4034), - [anon_sym_infix] = ACTIONS(4034), - [anon_sym_inline] = ACTIONS(4034), - [anon_sym_external] = ACTIONS(4034), - [sym_property_modifier] = ACTIONS(4034), - [anon_sym_abstract] = ACTIONS(4034), - [anon_sym_final] = ACTIONS(4034), - [anon_sym_open] = ACTIONS(4034), - [anon_sym_vararg] = ACTIONS(4034), - [anon_sym_noinline] = ACTIONS(4034), - [anon_sym_crossinline] = ACTIONS(4034), - [anon_sym_expect] = ACTIONS(4034), - [anon_sym_actual] = ACTIONS(4034), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4036), - [anon_sym_continue_AT] = ACTIONS(4036), - [anon_sym_break_AT] = ACTIONS(4036), - [anon_sym_this_AT] = ACTIONS(4036), - [anon_sym_super_AT] = ACTIONS(4036), - [sym_real_literal] = ACTIONS(4036), - [sym_integer_literal] = ACTIONS(4034), - [sym_hex_literal] = ACTIONS(4036), - [sym_bin_literal] = ACTIONS(4036), - [anon_sym_true] = ACTIONS(4034), - [anon_sym_false] = ACTIONS(4034), - [anon_sym_SQUOTE] = ACTIONS(4036), - [sym__backtick_identifier] = ACTIONS(4036), - [sym__automatic_semicolon] = ACTIONS(4036), - [sym_safe_nav] = ACTIONS(4036), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4036), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(1732), + [anon_sym_sealed] = ACTIONS(1732), + [anon_sym_annotation] = ACTIONS(1732), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(1732), + [anon_sym_lateinit] = ACTIONS(1732), + [anon_sym_public] = ACTIONS(1732), + [anon_sym_private] = ACTIONS(1732), + [anon_sym_internal] = ACTIONS(1732), + [anon_sym_protected] = ACTIONS(1732), + [anon_sym_tailrec] = ACTIONS(1732), + [anon_sym_operator] = ACTIONS(1732), + [anon_sym_infix] = ACTIONS(1732), + [anon_sym_inline] = ACTIONS(1732), + [anon_sym_external] = ACTIONS(1732), + [sym_property_modifier] = ACTIONS(1732), + [anon_sym_abstract] = ACTIONS(1732), + [anon_sym_final] = ACTIONS(1732), + [anon_sym_open] = ACTIONS(1732), + [anon_sym_vararg] = ACTIONS(1732), + [anon_sym_noinline] = ACTIONS(1732), + [anon_sym_crossinline] = ACTIONS(1732), + [anon_sym_expect] = ACTIONS(1732), + [anon_sym_actual] = ACTIONS(1732), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, [1113] = { - [sym__alpha_identifier] = ACTIONS(5057), - [anon_sym_AT] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(5057), - [anon_sym_fun] = ACTIONS(5057), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_where] = ACTIONS(5057), - [anon_sym_object] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_get] = ACTIONS(5057), - [anon_sym_set] = ACTIONS(5057), - [anon_sym_this] = ACTIONS(5057), - [anon_sym_super] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [sym_label] = ACTIONS(5057), - [anon_sym_in] = ACTIONS(5057), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_QMARK_COLON] = ACTIONS(5059), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_null] = ACTIONS(5057), - [anon_sym_if] = ACTIONS(5057), - [anon_sym_else] = ACTIONS(5057), - [anon_sym_when] = ACTIONS(5057), - [anon_sym_try] = ACTIONS(5057), - [anon_sym_throw] = ACTIONS(5057), - [anon_sym_return] = ACTIONS(5057), - [anon_sym_continue] = ACTIONS(5057), - [anon_sym_break] = ACTIONS(5057), - [anon_sym_COLON_COLON] = ACTIONS(5059), - [anon_sym_PLUS_EQ] = ACTIONS(5059), - [anon_sym_DASH_EQ] = ACTIONS(5059), - [anon_sym_STAR_EQ] = ACTIONS(5059), - [anon_sym_SLASH_EQ] = ACTIONS(5059), - [anon_sym_PERCENT_EQ] = ACTIONS(5059), - [anon_sym_BANG_EQ] = ACTIONS(5057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5059), - [anon_sym_EQ_EQ] = ACTIONS(5057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5059), - [anon_sym_LT_EQ] = ACTIONS(5059), - [anon_sym_GT_EQ] = ACTIONS(5059), - [anon_sym_BANGin] = ACTIONS(5059), - [anon_sym_is] = ACTIONS(5057), - [anon_sym_BANGis] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_PERCENT] = ACTIONS(5057), - [anon_sym_as_QMARK] = ACTIONS(5059), - [anon_sym_PLUS_PLUS] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5059), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_BANG_BANG] = ACTIONS(5059), - [anon_sym_suspend] = ACTIONS(5057), - [anon_sym_sealed] = ACTIONS(5057), - [anon_sym_annotation] = ACTIONS(5057), - [anon_sym_data] = ACTIONS(5057), - [anon_sym_inner] = ACTIONS(5057), - [anon_sym_value] = ACTIONS(5057), - [anon_sym_override] = ACTIONS(5057), - [anon_sym_lateinit] = ACTIONS(5057), - [anon_sym_public] = ACTIONS(5057), - [anon_sym_private] = ACTIONS(5057), - [anon_sym_internal] = ACTIONS(5057), - [anon_sym_protected] = ACTIONS(5057), - [anon_sym_tailrec] = ACTIONS(5057), - [anon_sym_operator] = ACTIONS(5057), - [anon_sym_infix] = ACTIONS(5057), - [anon_sym_inline] = ACTIONS(5057), - [anon_sym_external] = ACTIONS(5057), - [sym_property_modifier] = ACTIONS(5057), - [anon_sym_abstract] = ACTIONS(5057), - [anon_sym_final] = ACTIONS(5057), - [anon_sym_open] = ACTIONS(5057), - [anon_sym_vararg] = ACTIONS(5057), - [anon_sym_noinline] = ACTIONS(5057), - [anon_sym_crossinline] = ACTIONS(5057), - [anon_sym_expect] = ACTIONS(5057), - [anon_sym_actual] = ACTIONS(5057), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5059), - [anon_sym_continue_AT] = ACTIONS(5059), - [anon_sym_break_AT] = ACTIONS(5059), - [anon_sym_this_AT] = ACTIONS(5059), - [anon_sym_super_AT] = ACTIONS(5059), - [sym_real_literal] = ACTIONS(5059), - [sym_integer_literal] = ACTIONS(5057), - [sym_hex_literal] = ACTIONS(5059), - [sym_bin_literal] = ACTIONS(5059), - [anon_sym_true] = ACTIONS(5057), - [anon_sym_false] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5059), - [sym__backtick_identifier] = ACTIONS(5059), - [sym__automatic_semicolon] = ACTIONS(5059), - [sym_safe_nav] = ACTIONS(5059), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5059), + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, [1114] = { - [sym__alpha_identifier] = ACTIONS(5061), - [anon_sym_AT] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_as] = ACTIONS(5061), - [anon_sym_EQ] = ACTIONS(5061), - [anon_sym_fun] = ACTIONS(5061), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_RBRACE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_where] = ACTIONS(5061), - [anon_sym_object] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_get] = ACTIONS(5061), - [anon_sym_set] = ACTIONS(5061), - [anon_sym_this] = ACTIONS(5061), - [anon_sym_super] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [sym_label] = ACTIONS(5061), - [anon_sym_in] = ACTIONS(5061), - [anon_sym_DOT_DOT] = ACTIONS(5063), - [anon_sym_QMARK_COLON] = ACTIONS(5063), - [anon_sym_AMP_AMP] = ACTIONS(5063), - [anon_sym_PIPE_PIPE] = ACTIONS(5063), - [anon_sym_null] = ACTIONS(5061), - [anon_sym_if] = ACTIONS(5061), - [anon_sym_else] = ACTIONS(5061), - [anon_sym_when] = ACTIONS(5061), - [anon_sym_try] = ACTIONS(5061), - [anon_sym_throw] = ACTIONS(5061), - [anon_sym_return] = ACTIONS(5061), - [anon_sym_continue] = ACTIONS(5061), - [anon_sym_break] = ACTIONS(5061), - [anon_sym_COLON_COLON] = ACTIONS(5063), - [anon_sym_PLUS_EQ] = ACTIONS(5063), - [anon_sym_DASH_EQ] = ACTIONS(5063), - [anon_sym_STAR_EQ] = ACTIONS(5063), - [anon_sym_SLASH_EQ] = ACTIONS(5063), - [anon_sym_PERCENT_EQ] = ACTIONS(5063), - [anon_sym_BANG_EQ] = ACTIONS(5061), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5063), - [anon_sym_EQ_EQ] = ACTIONS(5061), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5063), - [anon_sym_LT_EQ] = ACTIONS(5063), - [anon_sym_GT_EQ] = ACTIONS(5063), - [anon_sym_BANGin] = ACTIONS(5063), - [anon_sym_is] = ACTIONS(5061), - [anon_sym_BANGis] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_PERCENT] = ACTIONS(5061), - [anon_sym_as_QMARK] = ACTIONS(5063), - [anon_sym_PLUS_PLUS] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5063), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_BANG_BANG] = ACTIONS(5063), - [anon_sym_suspend] = ACTIONS(5061), - [anon_sym_sealed] = ACTIONS(5061), - [anon_sym_annotation] = ACTIONS(5061), - [anon_sym_data] = ACTIONS(5061), - [anon_sym_inner] = ACTIONS(5061), - [anon_sym_value] = ACTIONS(5061), - [anon_sym_override] = ACTIONS(5061), - [anon_sym_lateinit] = ACTIONS(5061), - [anon_sym_public] = ACTIONS(5061), - [anon_sym_private] = ACTIONS(5061), - [anon_sym_internal] = ACTIONS(5061), - [anon_sym_protected] = ACTIONS(5061), - [anon_sym_tailrec] = ACTIONS(5061), - [anon_sym_operator] = ACTIONS(5061), - [anon_sym_infix] = ACTIONS(5061), - [anon_sym_inline] = ACTIONS(5061), - [anon_sym_external] = ACTIONS(5061), - [sym_property_modifier] = ACTIONS(5061), - [anon_sym_abstract] = ACTIONS(5061), - [anon_sym_final] = ACTIONS(5061), - [anon_sym_open] = ACTIONS(5061), - [anon_sym_vararg] = ACTIONS(5061), - [anon_sym_noinline] = ACTIONS(5061), - [anon_sym_crossinline] = ACTIONS(5061), - [anon_sym_expect] = ACTIONS(5061), - [anon_sym_actual] = ACTIONS(5061), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5063), - [anon_sym_continue_AT] = ACTIONS(5063), - [anon_sym_break_AT] = ACTIONS(5063), - [anon_sym_this_AT] = ACTIONS(5063), - [anon_sym_super_AT] = ACTIONS(5063), - [sym_real_literal] = ACTIONS(5063), - [sym_integer_literal] = ACTIONS(5061), - [sym_hex_literal] = ACTIONS(5063), - [sym_bin_literal] = ACTIONS(5063), - [anon_sym_true] = ACTIONS(5061), - [anon_sym_false] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5063), - [sym__backtick_identifier] = ACTIONS(5063), - [sym__automatic_semicolon] = ACTIONS(5063), - [sym_safe_nav] = ACTIONS(5063), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5063), + [sym__alpha_identifier] = ACTIONS(5067), + [anon_sym_AT] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_as] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(5067), + [anon_sym_LBRACE] = ACTIONS(5069), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5069), + [anon_sym_COMMA] = ACTIONS(5069), + [anon_sym_LT] = ACTIONS(5067), + [anon_sym_GT] = ACTIONS(5067), + [anon_sym_where] = ACTIONS(5067), + [anon_sym_object] = ACTIONS(5067), + [anon_sym_fun] = ACTIONS(5067), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [anon_sym_get] = ACTIONS(5067), + [anon_sym_set] = ACTIONS(5067), + [anon_sym_this] = ACTIONS(5067), + [anon_sym_super] = ACTIONS(5067), + [anon_sym_STAR] = ACTIONS(5067), + [sym_label] = ACTIONS(5067), + [anon_sym_in] = ACTIONS(5067), + [anon_sym_DOT_DOT] = ACTIONS(5069), + [anon_sym_QMARK_COLON] = ACTIONS(5069), + [anon_sym_AMP_AMP] = ACTIONS(5069), + [anon_sym_PIPE_PIPE] = ACTIONS(5069), + [anon_sym_null] = ACTIONS(5067), + [anon_sym_if] = ACTIONS(5067), + [anon_sym_else] = ACTIONS(5067), + [anon_sym_when] = ACTIONS(5067), + [anon_sym_try] = ACTIONS(5067), + [anon_sym_throw] = ACTIONS(5067), + [anon_sym_return] = ACTIONS(5067), + [anon_sym_continue] = ACTIONS(5067), + [anon_sym_break] = ACTIONS(5067), + [anon_sym_COLON_COLON] = ACTIONS(5069), + [anon_sym_PLUS_EQ] = ACTIONS(5069), + [anon_sym_DASH_EQ] = ACTIONS(5069), + [anon_sym_STAR_EQ] = ACTIONS(5069), + [anon_sym_SLASH_EQ] = ACTIONS(5069), + [anon_sym_PERCENT_EQ] = ACTIONS(5069), + [anon_sym_BANG_EQ] = ACTIONS(5067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5069), + [anon_sym_EQ_EQ] = ACTIONS(5067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5069), + [anon_sym_LT_EQ] = ACTIONS(5069), + [anon_sym_GT_EQ] = ACTIONS(5069), + [anon_sym_BANGin] = ACTIONS(5069), + [anon_sym_is] = ACTIONS(5067), + [anon_sym_BANGis] = ACTIONS(5069), + [anon_sym_PLUS] = ACTIONS(5067), + [anon_sym_DASH] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5067), + [anon_sym_PERCENT] = ACTIONS(5067), + [anon_sym_as_QMARK] = ACTIONS(5069), + [anon_sym_PLUS_PLUS] = ACTIONS(5069), + [anon_sym_DASH_DASH] = ACTIONS(5069), + [anon_sym_BANG] = ACTIONS(5067), + [anon_sym_BANG_BANG] = ACTIONS(5069), + [anon_sym_suspend] = ACTIONS(5067), + [anon_sym_sealed] = ACTIONS(5067), + [anon_sym_annotation] = ACTIONS(5067), + [anon_sym_data] = ACTIONS(5067), + [anon_sym_inner] = ACTIONS(5067), + [anon_sym_value] = ACTIONS(5067), + [anon_sym_override] = ACTIONS(5067), + [anon_sym_lateinit] = ACTIONS(5067), + [anon_sym_public] = ACTIONS(5067), + [anon_sym_private] = ACTIONS(5067), + [anon_sym_internal] = ACTIONS(5067), + [anon_sym_protected] = ACTIONS(5067), + [anon_sym_tailrec] = ACTIONS(5067), + [anon_sym_operator] = ACTIONS(5067), + [anon_sym_infix] = ACTIONS(5067), + [anon_sym_inline] = ACTIONS(5067), + [anon_sym_external] = ACTIONS(5067), + [sym_property_modifier] = ACTIONS(5067), + [anon_sym_abstract] = ACTIONS(5067), + [anon_sym_final] = ACTIONS(5067), + [anon_sym_open] = ACTIONS(5067), + [anon_sym_vararg] = ACTIONS(5067), + [anon_sym_noinline] = ACTIONS(5067), + [anon_sym_crossinline] = ACTIONS(5067), + [anon_sym_expect] = ACTIONS(5067), + [anon_sym_actual] = ACTIONS(5067), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5069), + [anon_sym_continue_AT] = ACTIONS(5069), + [anon_sym_break_AT] = ACTIONS(5069), + [anon_sym_this_AT] = ACTIONS(5069), + [anon_sym_super_AT] = ACTIONS(5069), + [sym_real_literal] = ACTIONS(5069), + [sym_integer_literal] = ACTIONS(5067), + [sym_hex_literal] = ACTIONS(5069), + [sym_bin_literal] = ACTIONS(5069), + [anon_sym_true] = ACTIONS(5067), + [anon_sym_false] = ACTIONS(5067), + [anon_sym_SQUOTE] = ACTIONS(5069), + [sym__backtick_identifier] = ACTIONS(5069), + [sym__automatic_semicolon] = ACTIONS(5069), + [sym_safe_nav] = ACTIONS(5069), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5069), }, [1115] = { - [sym__alpha_identifier] = ACTIONS(5065), - [anon_sym_AT] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_as] = ACTIONS(5065), - [anon_sym_EQ] = ACTIONS(5065), - [anon_sym_fun] = ACTIONS(5065), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_RBRACE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_where] = ACTIONS(5065), - [anon_sym_object] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_get] = ACTIONS(5065), - [anon_sym_set] = ACTIONS(5065), - [anon_sym_this] = ACTIONS(5065), - [anon_sym_super] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [sym_label] = ACTIONS(5065), - [anon_sym_in] = ACTIONS(5065), - [anon_sym_DOT_DOT] = ACTIONS(5067), - [anon_sym_QMARK_COLON] = ACTIONS(5067), - [anon_sym_AMP_AMP] = ACTIONS(5067), - [anon_sym_PIPE_PIPE] = ACTIONS(5067), - [anon_sym_null] = ACTIONS(5065), - [anon_sym_if] = ACTIONS(5065), - [anon_sym_else] = ACTIONS(5065), - [anon_sym_when] = ACTIONS(5065), - [anon_sym_try] = ACTIONS(5065), - [anon_sym_throw] = ACTIONS(5065), - [anon_sym_return] = ACTIONS(5065), - [anon_sym_continue] = ACTIONS(5065), - [anon_sym_break] = ACTIONS(5065), - [anon_sym_COLON_COLON] = ACTIONS(5067), - [anon_sym_PLUS_EQ] = ACTIONS(5067), - [anon_sym_DASH_EQ] = ACTIONS(5067), - [anon_sym_STAR_EQ] = ACTIONS(5067), - [anon_sym_SLASH_EQ] = ACTIONS(5067), - [anon_sym_PERCENT_EQ] = ACTIONS(5067), - [anon_sym_BANG_EQ] = ACTIONS(5065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5067), - [anon_sym_EQ_EQ] = ACTIONS(5065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5067), - [anon_sym_LT_EQ] = ACTIONS(5067), - [anon_sym_GT_EQ] = ACTIONS(5067), - [anon_sym_BANGin] = ACTIONS(5067), - [anon_sym_is] = ACTIONS(5065), - [anon_sym_BANGis] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_PERCENT] = ACTIONS(5065), - [anon_sym_as_QMARK] = ACTIONS(5067), - [anon_sym_PLUS_PLUS] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_BANG_BANG] = ACTIONS(5067), - [anon_sym_suspend] = ACTIONS(5065), - [anon_sym_sealed] = ACTIONS(5065), - [anon_sym_annotation] = ACTIONS(5065), - [anon_sym_data] = ACTIONS(5065), - [anon_sym_inner] = ACTIONS(5065), - [anon_sym_value] = ACTIONS(5065), - [anon_sym_override] = ACTIONS(5065), - [anon_sym_lateinit] = ACTIONS(5065), - [anon_sym_public] = ACTIONS(5065), - [anon_sym_private] = ACTIONS(5065), - [anon_sym_internal] = ACTIONS(5065), - [anon_sym_protected] = ACTIONS(5065), - [anon_sym_tailrec] = ACTIONS(5065), - [anon_sym_operator] = ACTIONS(5065), - [anon_sym_infix] = ACTIONS(5065), - [anon_sym_inline] = ACTIONS(5065), - [anon_sym_external] = ACTIONS(5065), - [sym_property_modifier] = ACTIONS(5065), - [anon_sym_abstract] = ACTIONS(5065), - [anon_sym_final] = ACTIONS(5065), - [anon_sym_open] = ACTIONS(5065), - [anon_sym_vararg] = ACTIONS(5065), - [anon_sym_noinline] = ACTIONS(5065), - [anon_sym_crossinline] = ACTIONS(5065), - [anon_sym_expect] = ACTIONS(5065), - [anon_sym_actual] = ACTIONS(5065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5067), - [anon_sym_continue_AT] = ACTIONS(5067), - [anon_sym_break_AT] = ACTIONS(5067), - [anon_sym_this_AT] = ACTIONS(5067), - [anon_sym_super_AT] = ACTIONS(5067), - [sym_real_literal] = ACTIONS(5067), - [sym_integer_literal] = ACTIONS(5065), - [sym_hex_literal] = ACTIONS(5067), - [sym_bin_literal] = ACTIONS(5067), - [anon_sym_true] = ACTIONS(5065), - [anon_sym_false] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5067), - [sym__backtick_identifier] = ACTIONS(5067), - [sym__automatic_semicolon] = ACTIONS(5067), - [sym_safe_nav] = ACTIONS(5067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5067), + [sym__alpha_identifier] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1584), + [anon_sym_set] = ACTIONS(1584), + [anon_sym_this] = ACTIONS(1584), + [anon_sym_super] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [sym_label] = ACTIONS(1584), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(1584), + [anon_sym_try] = ACTIONS(1584), + [anon_sym_throw] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_COLON_COLON] = ACTIONS(1582), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1584), + [anon_sym_inner] = ACTIONS(1584), + [anon_sym_value] = ACTIONS(1584), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1584), + [anon_sym_actual] = ACTIONS(1584), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1582), + [anon_sym_continue_AT] = ACTIONS(1582), + [anon_sym_break_AT] = ACTIONS(1582), + [anon_sym_this_AT] = ACTIONS(1582), + [anon_sym_super_AT] = ACTIONS(1582), + [sym_real_literal] = ACTIONS(1582), + [sym_integer_literal] = ACTIONS(1584), + [sym_hex_literal] = ACTIONS(1582), + [sym_bin_literal] = ACTIONS(1582), + [anon_sym_true] = ACTIONS(1584), + [anon_sym_false] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1582), + [sym__backtick_identifier] = ACTIONS(1582), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1582), }, [1116] = { - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(3344), - [anon_sym_sealed] = ACTIONS(3344), - [anon_sym_annotation] = ACTIONS(3344), - [anon_sym_data] = ACTIONS(3344), - [anon_sym_inner] = ACTIONS(3344), - [anon_sym_value] = ACTIONS(3344), - [anon_sym_override] = ACTIONS(3344), - [anon_sym_lateinit] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_internal] = ACTIONS(3344), - [anon_sym_protected] = ACTIONS(3344), - [anon_sym_tailrec] = ACTIONS(3344), - [anon_sym_operator] = ACTIONS(3344), - [anon_sym_infix] = ACTIONS(3344), - [anon_sym_inline] = ACTIONS(3344), - [anon_sym_external] = ACTIONS(3344), - [sym_property_modifier] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_final] = ACTIONS(3344), - [anon_sym_open] = ACTIONS(3344), - [anon_sym_vararg] = ACTIONS(3344), - [anon_sym_noinline] = ACTIONS(3344), - [anon_sym_crossinline] = ACTIONS(3344), - [anon_sym_expect] = ACTIONS(3344), - [anon_sym_actual] = ACTIONS(3344), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_object] = ACTIONS(5051), + [anon_sym_fun] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_this] = ACTIONS(5051), + [anon_sym_super] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [sym_label] = ACTIONS(5051), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_null] = ACTIONS(5051), + [anon_sym_if] = ACTIONS(5051), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_when] = ACTIONS(5051), + [anon_sym_try] = ACTIONS(5051), + [anon_sym_throw] = ACTIONS(5051), + [anon_sym_return] = ACTIONS(5051), + [anon_sym_continue] = ACTIONS(5051), + [anon_sym_break] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5051), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_suspend] = ACTIONS(5051), + [anon_sym_sealed] = ACTIONS(5051), + [anon_sym_annotation] = ACTIONS(5051), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_override] = ACTIONS(5051), + [anon_sym_lateinit] = ACTIONS(5051), + [anon_sym_public] = ACTIONS(5051), + [anon_sym_private] = ACTIONS(5051), + [anon_sym_internal] = ACTIONS(5051), + [anon_sym_protected] = ACTIONS(5051), + [anon_sym_tailrec] = ACTIONS(5051), + [anon_sym_operator] = ACTIONS(5051), + [anon_sym_infix] = ACTIONS(5051), + [anon_sym_inline] = ACTIONS(5051), + [anon_sym_external] = ACTIONS(5051), + [sym_property_modifier] = ACTIONS(5051), + [anon_sym_abstract] = ACTIONS(5051), + [anon_sym_final] = ACTIONS(5051), + [anon_sym_open] = ACTIONS(5051), + [anon_sym_vararg] = ACTIONS(5051), + [anon_sym_noinline] = ACTIONS(5051), + [anon_sym_crossinline] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5053), + [anon_sym_continue_AT] = ACTIONS(5053), + [anon_sym_break_AT] = ACTIONS(5053), + [anon_sym_this_AT] = ACTIONS(5053), + [anon_sym_super_AT] = ACTIONS(5053), + [sym_real_literal] = ACTIONS(5053), + [sym_integer_literal] = ACTIONS(5051), + [sym_hex_literal] = ACTIONS(5053), + [sym_bin_literal] = ACTIONS(5053), + [anon_sym_true] = ACTIONS(5051), + [anon_sym_false] = ACTIONS(5051), + [anon_sym_SQUOTE] = ACTIONS(5053), + [sym__backtick_identifier] = ACTIONS(5053), + [sym__automatic_semicolon] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5053), }, [1117] = { - [sym__alpha_identifier] = ACTIONS(5069), - [anon_sym_AT] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_as] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5069), - [anon_sym_fun] = ACTIONS(5069), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_RBRACE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_where] = ACTIONS(5069), - [anon_sym_object] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_get] = ACTIONS(5069), - [anon_sym_set] = ACTIONS(5069), - [anon_sym_this] = ACTIONS(5069), - [anon_sym_super] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [sym_label] = ACTIONS(5069), - [anon_sym_in] = ACTIONS(5069), - [anon_sym_DOT_DOT] = ACTIONS(5071), - [anon_sym_QMARK_COLON] = ACTIONS(5071), - [anon_sym_AMP_AMP] = ACTIONS(5071), - [anon_sym_PIPE_PIPE] = ACTIONS(5071), - [anon_sym_null] = ACTIONS(5069), - [anon_sym_if] = ACTIONS(5069), - [anon_sym_else] = ACTIONS(5069), - [anon_sym_when] = ACTIONS(5069), - [anon_sym_try] = ACTIONS(5069), - [anon_sym_throw] = ACTIONS(5069), - [anon_sym_return] = ACTIONS(5069), - [anon_sym_continue] = ACTIONS(5069), - [anon_sym_break] = ACTIONS(5069), - [anon_sym_COLON_COLON] = ACTIONS(5071), - [anon_sym_PLUS_EQ] = ACTIONS(5071), - [anon_sym_DASH_EQ] = ACTIONS(5071), - [anon_sym_STAR_EQ] = ACTIONS(5071), - [anon_sym_SLASH_EQ] = ACTIONS(5071), - [anon_sym_PERCENT_EQ] = ACTIONS(5071), - [anon_sym_BANG_EQ] = ACTIONS(5069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5071), - [anon_sym_EQ_EQ] = ACTIONS(5069), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5071), - [anon_sym_LT_EQ] = ACTIONS(5071), - [anon_sym_GT_EQ] = ACTIONS(5071), - [anon_sym_BANGin] = ACTIONS(5071), - [anon_sym_is] = ACTIONS(5069), - [anon_sym_BANGis] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_PERCENT] = ACTIONS(5069), - [anon_sym_as_QMARK] = ACTIONS(5071), - [anon_sym_PLUS_PLUS] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5069), - [anon_sym_BANG_BANG] = ACTIONS(5071), - [anon_sym_suspend] = ACTIONS(5069), - [anon_sym_sealed] = ACTIONS(5069), - [anon_sym_annotation] = ACTIONS(5069), - [anon_sym_data] = ACTIONS(5069), - [anon_sym_inner] = ACTIONS(5069), - [anon_sym_value] = ACTIONS(5069), - [anon_sym_override] = ACTIONS(5069), - [anon_sym_lateinit] = ACTIONS(5069), - [anon_sym_public] = ACTIONS(5069), - [anon_sym_private] = ACTIONS(5069), - [anon_sym_internal] = ACTIONS(5069), - [anon_sym_protected] = ACTIONS(5069), - [anon_sym_tailrec] = ACTIONS(5069), - [anon_sym_operator] = ACTIONS(5069), - [anon_sym_infix] = ACTIONS(5069), - [anon_sym_inline] = ACTIONS(5069), - [anon_sym_external] = ACTIONS(5069), - [sym_property_modifier] = ACTIONS(5069), - [anon_sym_abstract] = ACTIONS(5069), - [anon_sym_final] = ACTIONS(5069), - [anon_sym_open] = ACTIONS(5069), - [anon_sym_vararg] = ACTIONS(5069), - [anon_sym_noinline] = ACTIONS(5069), - [anon_sym_crossinline] = ACTIONS(5069), - [anon_sym_expect] = ACTIONS(5069), - [anon_sym_actual] = ACTIONS(5069), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5071), - [anon_sym_continue_AT] = ACTIONS(5071), - [anon_sym_break_AT] = ACTIONS(5071), - [anon_sym_this_AT] = ACTIONS(5071), - [anon_sym_super_AT] = ACTIONS(5071), - [sym_real_literal] = ACTIONS(5071), - [sym_integer_literal] = ACTIONS(5069), - [sym_hex_literal] = ACTIONS(5071), - [sym_bin_literal] = ACTIONS(5071), - [anon_sym_true] = ACTIONS(5069), - [anon_sym_false] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5071), - [sym__backtick_identifier] = ACTIONS(5071), - [sym__automatic_semicolon] = ACTIONS(5071), - [sym_safe_nav] = ACTIONS(5071), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5071), + [sym__alpha_identifier] = ACTIONS(5073), + [anon_sym_AT] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_as] = ACTIONS(5073), + [anon_sym_EQ] = ACTIONS(5073), + [anon_sym_LBRACE] = ACTIONS(5075), + [anon_sym_RBRACE] = ACTIONS(5075), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_where] = ACTIONS(5073), + [anon_sym_object] = ACTIONS(5073), + [anon_sym_fun] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_SEMI] = ACTIONS(5075), + [anon_sym_get] = ACTIONS(5073), + [anon_sym_set] = ACTIONS(5073), + [anon_sym_this] = ACTIONS(5073), + [anon_sym_super] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [sym_label] = ACTIONS(5073), + [anon_sym_in] = ACTIONS(5073), + [anon_sym_DOT_DOT] = ACTIONS(5075), + [anon_sym_QMARK_COLON] = ACTIONS(5075), + [anon_sym_AMP_AMP] = ACTIONS(5075), + [anon_sym_PIPE_PIPE] = ACTIONS(5075), + [anon_sym_null] = ACTIONS(5073), + [anon_sym_if] = ACTIONS(5073), + [anon_sym_else] = ACTIONS(5073), + [anon_sym_when] = ACTIONS(5073), + [anon_sym_try] = ACTIONS(5073), + [anon_sym_throw] = ACTIONS(5073), + [anon_sym_return] = ACTIONS(5073), + [anon_sym_continue] = ACTIONS(5073), + [anon_sym_break] = ACTIONS(5073), + [anon_sym_COLON_COLON] = ACTIONS(5075), + [anon_sym_PLUS_EQ] = ACTIONS(5075), + [anon_sym_DASH_EQ] = ACTIONS(5075), + [anon_sym_STAR_EQ] = ACTIONS(5075), + [anon_sym_SLASH_EQ] = ACTIONS(5075), + [anon_sym_PERCENT_EQ] = ACTIONS(5075), + [anon_sym_BANG_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5075), + [anon_sym_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5075), + [anon_sym_LT_EQ] = ACTIONS(5075), + [anon_sym_GT_EQ] = ACTIONS(5075), + [anon_sym_BANGin] = ACTIONS(5075), + [anon_sym_is] = ACTIONS(5073), + [anon_sym_BANGis] = ACTIONS(5075), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5075), + [anon_sym_PLUS_PLUS] = ACTIONS(5075), + [anon_sym_DASH_DASH] = ACTIONS(5075), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_BANG_BANG] = ACTIONS(5075), + [anon_sym_suspend] = ACTIONS(5073), + [anon_sym_sealed] = ACTIONS(5073), + [anon_sym_annotation] = ACTIONS(5073), + [anon_sym_data] = ACTIONS(5073), + [anon_sym_inner] = ACTIONS(5073), + [anon_sym_value] = ACTIONS(5073), + [anon_sym_override] = ACTIONS(5073), + [anon_sym_lateinit] = ACTIONS(5073), + [anon_sym_public] = ACTIONS(5073), + [anon_sym_private] = ACTIONS(5073), + [anon_sym_internal] = ACTIONS(5073), + [anon_sym_protected] = ACTIONS(5073), + [anon_sym_tailrec] = ACTIONS(5073), + [anon_sym_operator] = ACTIONS(5073), + [anon_sym_infix] = ACTIONS(5073), + [anon_sym_inline] = ACTIONS(5073), + [anon_sym_external] = ACTIONS(5073), + [sym_property_modifier] = ACTIONS(5073), + [anon_sym_abstract] = ACTIONS(5073), + [anon_sym_final] = ACTIONS(5073), + [anon_sym_open] = ACTIONS(5073), + [anon_sym_vararg] = ACTIONS(5073), + [anon_sym_noinline] = ACTIONS(5073), + [anon_sym_crossinline] = ACTIONS(5073), + [anon_sym_expect] = ACTIONS(5073), + [anon_sym_actual] = ACTIONS(5073), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5075), + [anon_sym_continue_AT] = ACTIONS(5075), + [anon_sym_break_AT] = ACTIONS(5075), + [anon_sym_this_AT] = ACTIONS(5075), + [anon_sym_super_AT] = ACTIONS(5075), + [sym_real_literal] = ACTIONS(5075), + [sym_integer_literal] = ACTIONS(5073), + [sym_hex_literal] = ACTIONS(5075), + [sym_bin_literal] = ACTIONS(5075), + [anon_sym_true] = ACTIONS(5073), + [anon_sym_false] = ACTIONS(5073), + [anon_sym_SQUOTE] = ACTIONS(5075), + [sym__backtick_identifier] = ACTIONS(5075), + [sym__automatic_semicolon] = ACTIONS(5075), + [sym_safe_nav] = ACTIONS(5075), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5075), }, [1118] = { - [sym__alpha_identifier] = ACTIONS(1622), - [anon_sym_AT] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1622), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1622), - [anon_sym_set] = ACTIONS(1622), - [anon_sym_this] = ACTIONS(1622), - [anon_sym_super] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1622), - [sym_label] = ACTIONS(1622), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1622), - [anon_sym_if] = ACTIONS(1622), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(1622), - [anon_sym_try] = ACTIONS(1622), - [anon_sym_throw] = ACTIONS(1622), - [anon_sym_return] = ACTIONS(1622), - [anon_sym_continue] = ACTIONS(1622), - [anon_sym_break] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1620), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1622), - [anon_sym_DASH] = ACTIONS(1622), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_suspend] = ACTIONS(1622), - [anon_sym_sealed] = ACTIONS(1622), - [anon_sym_annotation] = ACTIONS(1622), - [anon_sym_data] = ACTIONS(1622), - [anon_sym_inner] = ACTIONS(1622), - [anon_sym_value] = ACTIONS(1622), - [anon_sym_override] = ACTIONS(1622), - [anon_sym_lateinit] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_internal] = ACTIONS(1622), - [anon_sym_protected] = ACTIONS(1622), - [anon_sym_tailrec] = ACTIONS(1622), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_infix] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_external] = ACTIONS(1622), - [sym_property_modifier] = ACTIONS(1622), - [anon_sym_abstract] = ACTIONS(1622), - [anon_sym_final] = ACTIONS(1622), - [anon_sym_open] = ACTIONS(1622), - [anon_sym_vararg] = ACTIONS(1622), - [anon_sym_noinline] = ACTIONS(1622), - [anon_sym_crossinline] = ACTIONS(1622), - [anon_sym_expect] = ACTIONS(1622), - [anon_sym_actual] = ACTIONS(1622), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1620), - [anon_sym_continue_AT] = ACTIONS(1620), - [anon_sym_break_AT] = ACTIONS(1620), - [anon_sym_this_AT] = ACTIONS(1620), - [anon_sym_super_AT] = ACTIONS(1620), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(1622), - [sym_hex_literal] = ACTIONS(1620), - [sym_bin_literal] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_SQUOTE] = ACTIONS(1620), - [sym__backtick_identifier] = ACTIONS(1620), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1620), + [sym__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_as] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_where] = ACTIONS(5077), + [anon_sym_object] = ACTIONS(5077), + [anon_sym_fun] = ACTIONS(5077), + [anon_sym_DOT] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5079), + [anon_sym_get] = ACTIONS(5077), + [anon_sym_set] = ACTIONS(5077), + [anon_sym_this] = ACTIONS(5077), + [anon_sym_super] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [sym_label] = ACTIONS(5077), + [anon_sym_in] = ACTIONS(5077), + [anon_sym_DOT_DOT] = ACTIONS(5079), + [anon_sym_QMARK_COLON] = ACTIONS(5079), + [anon_sym_AMP_AMP] = ACTIONS(5079), + [anon_sym_PIPE_PIPE] = ACTIONS(5079), + [anon_sym_null] = ACTIONS(5077), + [anon_sym_if] = ACTIONS(5077), + [anon_sym_else] = ACTIONS(5077), + [anon_sym_when] = ACTIONS(5077), + [anon_sym_try] = ACTIONS(5077), + [anon_sym_throw] = ACTIONS(5077), + [anon_sym_return] = ACTIONS(5077), + [anon_sym_continue] = ACTIONS(5077), + [anon_sym_break] = ACTIONS(5077), + [anon_sym_COLON_COLON] = ACTIONS(5079), + [anon_sym_PLUS_EQ] = ACTIONS(5079), + [anon_sym_DASH_EQ] = ACTIONS(5079), + [anon_sym_STAR_EQ] = ACTIONS(5079), + [anon_sym_SLASH_EQ] = ACTIONS(5079), + [anon_sym_PERCENT_EQ] = ACTIONS(5079), + [anon_sym_BANG_EQ] = ACTIONS(5077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5079), + [anon_sym_EQ_EQ] = ACTIONS(5077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5079), + [anon_sym_LT_EQ] = ACTIONS(5079), + [anon_sym_GT_EQ] = ACTIONS(5079), + [anon_sym_BANGin] = ACTIONS(5079), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_BANGis] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_as_QMARK] = ACTIONS(5079), + [anon_sym_PLUS_PLUS] = ACTIONS(5079), + [anon_sym_DASH_DASH] = ACTIONS(5079), + [anon_sym_BANG] = ACTIONS(5077), + [anon_sym_BANG_BANG] = ACTIONS(5079), + [anon_sym_suspend] = ACTIONS(5077), + [anon_sym_sealed] = ACTIONS(5077), + [anon_sym_annotation] = ACTIONS(5077), + [anon_sym_data] = ACTIONS(5077), + [anon_sym_inner] = ACTIONS(5077), + [anon_sym_value] = ACTIONS(5077), + [anon_sym_override] = ACTIONS(5077), + [anon_sym_lateinit] = ACTIONS(5077), + [anon_sym_public] = ACTIONS(5077), + [anon_sym_private] = ACTIONS(5077), + [anon_sym_internal] = ACTIONS(5077), + [anon_sym_protected] = ACTIONS(5077), + [anon_sym_tailrec] = ACTIONS(5077), + [anon_sym_operator] = ACTIONS(5077), + [anon_sym_infix] = ACTIONS(5077), + [anon_sym_inline] = ACTIONS(5077), + [anon_sym_external] = ACTIONS(5077), + [sym_property_modifier] = ACTIONS(5077), + [anon_sym_abstract] = ACTIONS(5077), + [anon_sym_final] = ACTIONS(5077), + [anon_sym_open] = ACTIONS(5077), + [anon_sym_vararg] = ACTIONS(5077), + [anon_sym_noinline] = ACTIONS(5077), + [anon_sym_crossinline] = ACTIONS(5077), + [anon_sym_expect] = ACTIONS(5077), + [anon_sym_actual] = ACTIONS(5077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5079), + [anon_sym_continue_AT] = ACTIONS(5079), + [anon_sym_break_AT] = ACTIONS(5079), + [anon_sym_this_AT] = ACTIONS(5079), + [anon_sym_super_AT] = ACTIONS(5079), + [sym_real_literal] = ACTIONS(5079), + [sym_integer_literal] = ACTIONS(5077), + [sym_hex_literal] = ACTIONS(5079), + [sym_bin_literal] = ACTIONS(5079), + [anon_sym_true] = ACTIONS(5077), + [anon_sym_false] = ACTIONS(5077), + [anon_sym_SQUOTE] = ACTIONS(5079), + [sym__backtick_identifier] = ACTIONS(5079), + [sym__automatic_semicolon] = ACTIONS(5079), + [sym_safe_nav] = ACTIONS(5079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5079), }, [1119] = { - [sym__alpha_identifier] = ACTIONS(3156), - [anon_sym_AT] = ACTIONS(3158), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_as] = ACTIONS(3156), - [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3156), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3156), - [anon_sym_set] = ACTIONS(3156), - [anon_sym_this] = ACTIONS(3156), - [anon_sym_super] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3156), - [sym_label] = ACTIONS(3156), - [anon_sym_in] = ACTIONS(3156), - [anon_sym_DOT_DOT] = ACTIONS(3158), - [anon_sym_QMARK_COLON] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [anon_sym_null] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_when] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3158), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_STAR_EQ] = ACTIONS(3158), - [anon_sym_SLASH_EQ] = ACTIONS(3158), - [anon_sym_PERCENT_EQ] = ACTIONS(3158), - [anon_sym_BANG_EQ] = ACTIONS(3156), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3158), - [anon_sym_EQ_EQ] = ACTIONS(3156), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3158), - [anon_sym_LT_EQ] = ACTIONS(3158), - [anon_sym_GT_EQ] = ACTIONS(3158), - [anon_sym_BANGin] = ACTIONS(3158), - [anon_sym_is] = ACTIONS(3156), - [anon_sym_BANGis] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3156), - [anon_sym_PERCENT] = ACTIONS(3156), - [anon_sym_as_QMARK] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_BANG_BANG] = ACTIONS(3158), - [anon_sym_suspend] = ACTIONS(3156), - [anon_sym_sealed] = ACTIONS(3156), - [anon_sym_annotation] = ACTIONS(3156), - [anon_sym_data] = ACTIONS(3156), - [anon_sym_inner] = ACTIONS(3156), - [anon_sym_value] = ACTIONS(3156), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_lateinit] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_internal] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_tailrec] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_infix] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym_external] = ACTIONS(3156), - [sym_property_modifier] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_final] = ACTIONS(3156), - [anon_sym_open] = ACTIONS(3156), - [anon_sym_vararg] = ACTIONS(3156), - [anon_sym_noinline] = ACTIONS(3156), - [anon_sym_crossinline] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3156), - [anon_sym_actual] = ACTIONS(3156), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3158), - [anon_sym_continue_AT] = ACTIONS(3158), - [anon_sym_break_AT] = ACTIONS(3158), - [anon_sym_this_AT] = ACTIONS(3158), - [anon_sym_super_AT] = ACTIONS(3158), - [sym_real_literal] = ACTIONS(3158), - [sym_integer_literal] = ACTIONS(3156), - [sym_hex_literal] = ACTIONS(3158), - [sym_bin_literal] = ACTIONS(3158), - [anon_sym_true] = ACTIONS(3156), - [anon_sym_false] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3158), - [sym__backtick_identifier] = ACTIONS(3158), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(3158), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3158), + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, [1120] = { - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_fun] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_object] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_this] = ACTIONS(4435), - [anon_sym_super] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4435), - [sym_label] = ACTIONS(4435), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_null] = ACTIONS(4435), - [anon_sym_if] = ACTIONS(4435), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_when] = ACTIONS(4435), - [anon_sym_try] = ACTIONS(4435), - [anon_sym_throw] = ACTIONS(4435), - [anon_sym_return] = ACTIONS(4435), - [anon_sym_continue] = ACTIONS(4435), - [anon_sym_break] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_PLUS_EQ] = ACTIONS(4437), - [anon_sym_DASH_EQ] = ACTIONS(4437), - [anon_sym_STAR_EQ] = ACTIONS(4437), - [anon_sym_SLASH_EQ] = ACTIONS(4437), - [anon_sym_PERCENT_EQ] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4435), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4435), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_suspend] = ACTIONS(4435), - [anon_sym_sealed] = ACTIONS(4435), - [anon_sym_annotation] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_override] = ACTIONS(4435), - [anon_sym_lateinit] = ACTIONS(4435), - [anon_sym_public] = ACTIONS(4435), - [anon_sym_private] = ACTIONS(4435), - [anon_sym_internal] = ACTIONS(4435), - [anon_sym_protected] = ACTIONS(4435), - [anon_sym_tailrec] = ACTIONS(4435), - [anon_sym_operator] = ACTIONS(4435), - [anon_sym_infix] = ACTIONS(4435), - [anon_sym_inline] = ACTIONS(4435), - [anon_sym_external] = ACTIONS(4435), - [sym_property_modifier] = ACTIONS(4435), - [anon_sym_abstract] = ACTIONS(4435), - [anon_sym_final] = ACTIONS(4435), - [anon_sym_open] = ACTIONS(4435), - [anon_sym_vararg] = ACTIONS(4435), - [anon_sym_noinline] = ACTIONS(4435), - [anon_sym_crossinline] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4437), - [anon_sym_continue_AT] = ACTIONS(4437), - [anon_sym_break_AT] = ACTIONS(4437), - [anon_sym_this_AT] = ACTIONS(4437), - [anon_sym_super_AT] = ACTIONS(4437), - [sym_real_literal] = ACTIONS(4437), - [sym_integer_literal] = ACTIONS(4435), - [sym_hex_literal] = ACTIONS(4437), - [sym_bin_literal] = ACTIONS(4437), - [anon_sym_true] = ACTIONS(4435), - [anon_sym_false] = ACTIONS(4435), - [anon_sym_SQUOTE] = ACTIONS(4437), - [sym__backtick_identifier] = ACTIONS(4437), - [sym__automatic_semicolon] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4437), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, [1121] = { - [sym__alpha_identifier] = ACTIONS(5049), - [anon_sym_AT] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_as] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5049), - [anon_sym_fun] = ACTIONS(5049), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_where] = ACTIONS(5049), - [anon_sym_object] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_get] = ACTIONS(5049), - [anon_sym_set] = ACTIONS(5049), - [anon_sym_this] = ACTIONS(5049), - [anon_sym_super] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [sym_label] = ACTIONS(5049), - [anon_sym_in] = ACTIONS(5049), - [anon_sym_DOT_DOT] = ACTIONS(5051), - [anon_sym_QMARK_COLON] = ACTIONS(5051), - [anon_sym_AMP_AMP] = ACTIONS(5051), - [anon_sym_PIPE_PIPE] = ACTIONS(5051), - [anon_sym_null] = ACTIONS(5049), - [anon_sym_if] = ACTIONS(5049), - [anon_sym_else] = ACTIONS(5049), - [anon_sym_when] = ACTIONS(5049), - [anon_sym_try] = ACTIONS(5049), - [anon_sym_throw] = ACTIONS(5049), - [anon_sym_return] = ACTIONS(5049), - [anon_sym_continue] = ACTIONS(5049), - [anon_sym_break] = ACTIONS(5049), - [anon_sym_COLON_COLON] = ACTIONS(5051), - [anon_sym_PLUS_EQ] = ACTIONS(5051), - [anon_sym_DASH_EQ] = ACTIONS(5051), - [anon_sym_STAR_EQ] = ACTIONS(5051), - [anon_sym_SLASH_EQ] = ACTIONS(5051), - [anon_sym_PERCENT_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), - [anon_sym_LT_EQ] = ACTIONS(5051), - [anon_sym_GT_EQ] = ACTIONS(5051), - [anon_sym_BANGin] = ACTIONS(5051), - [anon_sym_is] = ACTIONS(5049), - [anon_sym_BANGis] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5049), - [anon_sym_as_QMARK] = ACTIONS(5051), - [anon_sym_PLUS_PLUS] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_BANG_BANG] = ACTIONS(5051), - [anon_sym_suspend] = ACTIONS(5049), - [anon_sym_sealed] = ACTIONS(5049), - [anon_sym_annotation] = ACTIONS(5049), - [anon_sym_data] = ACTIONS(5049), - [anon_sym_inner] = ACTIONS(5049), - [anon_sym_value] = ACTIONS(5049), - [anon_sym_override] = ACTIONS(5049), - [anon_sym_lateinit] = ACTIONS(5049), - [anon_sym_public] = ACTIONS(5049), - [anon_sym_private] = ACTIONS(5049), - [anon_sym_internal] = ACTIONS(5049), - [anon_sym_protected] = ACTIONS(5049), - [anon_sym_tailrec] = ACTIONS(5049), - [anon_sym_operator] = ACTIONS(5049), - [anon_sym_infix] = ACTIONS(5049), - [anon_sym_inline] = ACTIONS(5049), - [anon_sym_external] = ACTIONS(5049), - [sym_property_modifier] = ACTIONS(5049), - [anon_sym_abstract] = ACTIONS(5049), - [anon_sym_final] = ACTIONS(5049), - [anon_sym_open] = ACTIONS(5049), - [anon_sym_vararg] = ACTIONS(5049), - [anon_sym_noinline] = ACTIONS(5049), - [anon_sym_crossinline] = ACTIONS(5049), - [anon_sym_expect] = ACTIONS(5049), - [anon_sym_actual] = ACTIONS(5049), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5051), - [anon_sym_continue_AT] = ACTIONS(5051), - [anon_sym_break_AT] = ACTIONS(5051), - [anon_sym_this_AT] = ACTIONS(5051), - [anon_sym_super_AT] = ACTIONS(5051), - [sym_real_literal] = ACTIONS(5051), - [sym_integer_literal] = ACTIONS(5049), - [sym_hex_literal] = ACTIONS(5051), - [sym_bin_literal] = ACTIONS(5051), - [anon_sym_true] = ACTIONS(5049), - [anon_sym_false] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5051), - [sym__backtick_identifier] = ACTIONS(5051), - [sym__automatic_semicolon] = ACTIONS(5051), - [sym_safe_nav] = ACTIONS(5051), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5051), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5081), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, [1122] = { - [sym__alpha_identifier] = ACTIONS(5075), - [anon_sym_AT] = ACTIONS(5077), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_as] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_fun] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5077), - [anon_sym_RBRACE] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5077), - [anon_sym_COMMA] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_where] = ACTIONS(5075), - [anon_sym_object] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_get] = ACTIONS(5075), - [anon_sym_set] = ACTIONS(5075), - [anon_sym_this] = ACTIONS(5075), - [anon_sym_super] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [sym_label] = ACTIONS(5075), - [anon_sym_in] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5077), - [anon_sym_QMARK_COLON] = ACTIONS(5077), - [anon_sym_AMP_AMP] = ACTIONS(5077), - [anon_sym_PIPE_PIPE] = ACTIONS(5077), - [anon_sym_null] = ACTIONS(5075), - [anon_sym_if] = ACTIONS(5075), - [anon_sym_else] = ACTIONS(5075), - [anon_sym_when] = ACTIONS(5075), - [anon_sym_try] = ACTIONS(5075), - [anon_sym_throw] = ACTIONS(5075), - [anon_sym_return] = ACTIONS(5075), - [anon_sym_continue] = ACTIONS(5075), - [anon_sym_break] = ACTIONS(5075), - [anon_sym_COLON_COLON] = ACTIONS(5077), - [anon_sym_PLUS_EQ] = ACTIONS(5077), - [anon_sym_DASH_EQ] = ACTIONS(5077), - [anon_sym_STAR_EQ] = ACTIONS(5077), - [anon_sym_SLASH_EQ] = ACTIONS(5077), - [anon_sym_PERCENT_EQ] = ACTIONS(5077), - [anon_sym_BANG_EQ] = ACTIONS(5075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5077), - [anon_sym_EQ_EQ] = ACTIONS(5075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5077), - [anon_sym_LT_EQ] = ACTIONS(5077), - [anon_sym_GT_EQ] = ACTIONS(5077), - [anon_sym_BANGin] = ACTIONS(5077), - [anon_sym_is] = ACTIONS(5075), - [anon_sym_BANGis] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_as_QMARK] = ACTIONS(5077), - [anon_sym_PLUS_PLUS] = ACTIONS(5077), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_BANG_BANG] = ACTIONS(5077), - [anon_sym_suspend] = ACTIONS(5075), - [anon_sym_sealed] = ACTIONS(5075), - [anon_sym_annotation] = ACTIONS(5075), - [anon_sym_data] = ACTIONS(5075), - [anon_sym_inner] = ACTIONS(5075), - [anon_sym_value] = ACTIONS(5075), - [anon_sym_override] = ACTIONS(5075), - [anon_sym_lateinit] = ACTIONS(5075), - [anon_sym_public] = ACTIONS(5075), - [anon_sym_private] = ACTIONS(5075), - [anon_sym_internal] = ACTIONS(5075), - [anon_sym_protected] = ACTIONS(5075), - [anon_sym_tailrec] = ACTIONS(5075), - [anon_sym_operator] = ACTIONS(5075), - [anon_sym_infix] = ACTIONS(5075), - [anon_sym_inline] = ACTIONS(5075), - [anon_sym_external] = ACTIONS(5075), - [sym_property_modifier] = ACTIONS(5075), - [anon_sym_abstract] = ACTIONS(5075), - [anon_sym_final] = ACTIONS(5075), - [anon_sym_open] = ACTIONS(5075), - [anon_sym_vararg] = ACTIONS(5075), - [anon_sym_noinline] = ACTIONS(5075), - [anon_sym_crossinline] = ACTIONS(5075), - [anon_sym_expect] = ACTIONS(5075), - [anon_sym_actual] = ACTIONS(5075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5077), - [anon_sym_continue_AT] = ACTIONS(5077), - [anon_sym_break_AT] = ACTIONS(5077), - [anon_sym_this_AT] = ACTIONS(5077), - [anon_sym_super_AT] = ACTIONS(5077), - [sym_real_literal] = ACTIONS(5077), - [sym_integer_literal] = ACTIONS(5075), - [sym_hex_literal] = ACTIONS(5077), - [sym_bin_literal] = ACTIONS(5077), - [anon_sym_true] = ACTIONS(5075), - [anon_sym_false] = ACTIONS(5075), - [anon_sym_SQUOTE] = ACTIONS(5077), - [sym__backtick_identifier] = ACTIONS(5077), - [sym__automatic_semicolon] = ACTIONS(5077), - [sym_safe_nav] = ACTIONS(5077), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5077), + [sym__alpha_identifier] = ACTIONS(5085), + [anon_sym_AT] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_as] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_LBRACE] = ACTIONS(5087), + [anon_sym_RBRACE] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_where] = ACTIONS(5085), + [anon_sym_object] = ACTIONS(5085), + [anon_sym_fun] = ACTIONS(5085), + [anon_sym_DOT] = ACTIONS(5085), + [anon_sym_SEMI] = ACTIONS(5087), + [anon_sym_get] = ACTIONS(5085), + [anon_sym_set] = ACTIONS(5085), + [anon_sym_this] = ACTIONS(5085), + [anon_sym_super] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [sym_label] = ACTIONS(5085), + [anon_sym_in] = ACTIONS(5085), + [anon_sym_DOT_DOT] = ACTIONS(5087), + [anon_sym_QMARK_COLON] = ACTIONS(5087), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_null] = ACTIONS(5085), + [anon_sym_if] = ACTIONS(5085), + [anon_sym_else] = ACTIONS(5085), + [anon_sym_when] = ACTIONS(5085), + [anon_sym_try] = ACTIONS(5085), + [anon_sym_throw] = ACTIONS(5085), + [anon_sym_return] = ACTIONS(5085), + [anon_sym_continue] = ACTIONS(5085), + [anon_sym_break] = ACTIONS(5085), + [anon_sym_COLON_COLON] = ACTIONS(5087), + [anon_sym_PLUS_EQ] = ACTIONS(5087), + [anon_sym_DASH_EQ] = ACTIONS(5087), + [anon_sym_STAR_EQ] = ACTIONS(5087), + [anon_sym_SLASH_EQ] = ACTIONS(5087), + [anon_sym_PERCENT_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5087), + [anon_sym_LT_EQ] = ACTIONS(5087), + [anon_sym_GT_EQ] = ACTIONS(5087), + [anon_sym_BANGin] = ACTIONS(5087), + [anon_sym_is] = ACTIONS(5085), + [anon_sym_BANGis] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_PERCENT] = ACTIONS(5085), + [anon_sym_as_QMARK] = ACTIONS(5087), + [anon_sym_PLUS_PLUS] = ACTIONS(5087), + [anon_sym_DASH_DASH] = ACTIONS(5087), + [anon_sym_BANG] = ACTIONS(5085), + [anon_sym_BANG_BANG] = ACTIONS(5087), + [anon_sym_suspend] = ACTIONS(5085), + [anon_sym_sealed] = ACTIONS(5085), + [anon_sym_annotation] = ACTIONS(5085), + [anon_sym_data] = ACTIONS(5085), + [anon_sym_inner] = ACTIONS(5085), + [anon_sym_value] = ACTIONS(5085), + [anon_sym_override] = ACTIONS(5085), + [anon_sym_lateinit] = ACTIONS(5085), + [anon_sym_public] = ACTIONS(5085), + [anon_sym_private] = ACTIONS(5085), + [anon_sym_internal] = ACTIONS(5085), + [anon_sym_protected] = ACTIONS(5085), + [anon_sym_tailrec] = ACTIONS(5085), + [anon_sym_operator] = ACTIONS(5085), + [anon_sym_infix] = ACTIONS(5085), + [anon_sym_inline] = ACTIONS(5085), + [anon_sym_external] = ACTIONS(5085), + [sym_property_modifier] = ACTIONS(5085), + [anon_sym_abstract] = ACTIONS(5085), + [anon_sym_final] = ACTIONS(5085), + [anon_sym_open] = ACTIONS(5085), + [anon_sym_vararg] = ACTIONS(5085), + [anon_sym_noinline] = ACTIONS(5085), + [anon_sym_crossinline] = ACTIONS(5085), + [anon_sym_expect] = ACTIONS(5085), + [anon_sym_actual] = ACTIONS(5085), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5087), + [anon_sym_continue_AT] = ACTIONS(5087), + [anon_sym_break_AT] = ACTIONS(5087), + [anon_sym_this_AT] = ACTIONS(5087), + [anon_sym_super_AT] = ACTIONS(5087), + [sym_real_literal] = ACTIONS(5087), + [sym_integer_literal] = ACTIONS(5085), + [sym_hex_literal] = ACTIONS(5087), + [sym_bin_literal] = ACTIONS(5087), + [anon_sym_true] = ACTIONS(5085), + [anon_sym_false] = ACTIONS(5085), + [anon_sym_SQUOTE] = ACTIONS(5087), + [sym__backtick_identifier] = ACTIONS(5087), + [sym__automatic_semicolon] = ACTIONS(5087), + [sym_safe_nav] = ACTIONS(5087), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5087), }, [1123] = { - [sym__alpha_identifier] = ACTIONS(5079), - [anon_sym_AT] = ACTIONS(5081), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_as] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_fun] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5081), - [anon_sym_RBRACE] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5081), - [anon_sym_COMMA] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5079), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_where] = ACTIONS(5079), - [anon_sym_object] = ACTIONS(5079), - [anon_sym_DOT] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5081), - [anon_sym_get] = ACTIONS(5079), - [anon_sym_set] = ACTIONS(5079), - [anon_sym_this] = ACTIONS(5079), - [anon_sym_super] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [sym_label] = ACTIONS(5079), - [anon_sym_in] = ACTIONS(5079), - [anon_sym_DOT_DOT] = ACTIONS(5081), - [anon_sym_QMARK_COLON] = ACTIONS(5081), - [anon_sym_AMP_AMP] = ACTIONS(5081), - [anon_sym_PIPE_PIPE] = ACTIONS(5081), - [anon_sym_null] = ACTIONS(5079), - [anon_sym_if] = ACTIONS(5079), - [anon_sym_else] = ACTIONS(5079), - [anon_sym_when] = ACTIONS(5079), - [anon_sym_try] = ACTIONS(5079), - [anon_sym_throw] = ACTIONS(5079), - [anon_sym_return] = ACTIONS(5079), - [anon_sym_continue] = ACTIONS(5079), - [anon_sym_break] = ACTIONS(5079), - [anon_sym_COLON_COLON] = ACTIONS(5081), - [anon_sym_PLUS_EQ] = ACTIONS(5081), - [anon_sym_DASH_EQ] = ACTIONS(5081), - [anon_sym_STAR_EQ] = ACTIONS(5081), - [anon_sym_SLASH_EQ] = ACTIONS(5081), - [anon_sym_PERCENT_EQ] = ACTIONS(5081), - [anon_sym_BANG_EQ] = ACTIONS(5079), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5081), - [anon_sym_EQ_EQ] = ACTIONS(5079), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5081), - [anon_sym_LT_EQ] = ACTIONS(5081), - [anon_sym_GT_EQ] = ACTIONS(5081), - [anon_sym_BANGin] = ACTIONS(5081), - [anon_sym_is] = ACTIONS(5079), - [anon_sym_BANGis] = ACTIONS(5081), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5079), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_as_QMARK] = ACTIONS(5081), - [anon_sym_PLUS_PLUS] = ACTIONS(5081), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5079), - [anon_sym_BANG_BANG] = ACTIONS(5081), - [anon_sym_suspend] = ACTIONS(5079), - [anon_sym_sealed] = ACTIONS(5079), - [anon_sym_annotation] = ACTIONS(5079), - [anon_sym_data] = ACTIONS(5079), - [anon_sym_inner] = ACTIONS(5079), - [anon_sym_value] = ACTIONS(5079), - [anon_sym_override] = ACTIONS(5079), - [anon_sym_lateinit] = ACTIONS(5079), - [anon_sym_public] = ACTIONS(5079), - [anon_sym_private] = ACTIONS(5079), - [anon_sym_internal] = ACTIONS(5079), - [anon_sym_protected] = ACTIONS(5079), - [anon_sym_tailrec] = ACTIONS(5079), - [anon_sym_operator] = ACTIONS(5079), - [anon_sym_infix] = ACTIONS(5079), - [anon_sym_inline] = ACTIONS(5079), - [anon_sym_external] = ACTIONS(5079), - [sym_property_modifier] = ACTIONS(5079), - [anon_sym_abstract] = ACTIONS(5079), - [anon_sym_final] = ACTIONS(5079), - [anon_sym_open] = ACTIONS(5079), - [anon_sym_vararg] = ACTIONS(5079), - [anon_sym_noinline] = ACTIONS(5079), - [anon_sym_crossinline] = ACTIONS(5079), - [anon_sym_expect] = ACTIONS(5079), - [anon_sym_actual] = ACTIONS(5079), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5081), - [anon_sym_continue_AT] = ACTIONS(5081), - [anon_sym_break_AT] = ACTIONS(5081), - [anon_sym_this_AT] = ACTIONS(5081), - [anon_sym_super_AT] = ACTIONS(5081), - [sym_real_literal] = ACTIONS(5081), - [sym_integer_literal] = ACTIONS(5079), - [sym_hex_literal] = ACTIONS(5081), - [sym_bin_literal] = ACTIONS(5081), - [anon_sym_true] = ACTIONS(5079), - [anon_sym_false] = ACTIONS(5079), - [anon_sym_SQUOTE] = ACTIONS(5081), - [sym__backtick_identifier] = ACTIONS(5081), - [sym__automatic_semicolon] = ACTIONS(5081), - [sym_safe_nav] = ACTIONS(5081), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5081), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_LBRACE] = ACTIONS(4441), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), }, [1124] = { - [sym__alpha_identifier] = ACTIONS(5083), - [anon_sym_AT] = ACTIONS(5085), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_as] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_fun] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5085), - [anon_sym_RBRACE] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5085), - [anon_sym_COMMA] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5083), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_where] = ACTIONS(5083), - [anon_sym_object] = ACTIONS(5083), - [anon_sym_DOT] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5085), - [anon_sym_get] = ACTIONS(5083), - [anon_sym_set] = ACTIONS(5083), - [anon_sym_this] = ACTIONS(5083), - [anon_sym_super] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [sym_label] = ACTIONS(5083), - [anon_sym_in] = ACTIONS(5083), - [anon_sym_DOT_DOT] = ACTIONS(5085), - [anon_sym_QMARK_COLON] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5085), - [anon_sym_PIPE_PIPE] = ACTIONS(5085), - [anon_sym_null] = ACTIONS(5083), - [anon_sym_if] = ACTIONS(5083), - [anon_sym_else] = ACTIONS(5083), - [anon_sym_when] = ACTIONS(5083), - [anon_sym_try] = ACTIONS(5083), - [anon_sym_throw] = ACTIONS(5083), - [anon_sym_return] = ACTIONS(5083), - [anon_sym_continue] = ACTIONS(5083), - [anon_sym_break] = ACTIONS(5083), - [anon_sym_COLON_COLON] = ACTIONS(5085), - [anon_sym_PLUS_EQ] = ACTIONS(5085), - [anon_sym_DASH_EQ] = ACTIONS(5085), - [anon_sym_STAR_EQ] = ACTIONS(5085), - [anon_sym_SLASH_EQ] = ACTIONS(5085), - [anon_sym_PERCENT_EQ] = ACTIONS(5085), - [anon_sym_BANG_EQ] = ACTIONS(5083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5085), - [anon_sym_EQ_EQ] = ACTIONS(5083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5085), - [anon_sym_LT_EQ] = ACTIONS(5085), - [anon_sym_GT_EQ] = ACTIONS(5085), - [anon_sym_BANGin] = ACTIONS(5085), - [anon_sym_is] = ACTIONS(5083), - [anon_sym_BANGis] = ACTIONS(5085), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_as_QMARK] = ACTIONS(5085), - [anon_sym_PLUS_PLUS] = ACTIONS(5085), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5083), - [anon_sym_BANG_BANG] = ACTIONS(5085), - [anon_sym_suspend] = ACTIONS(5083), - [anon_sym_sealed] = ACTIONS(5083), - [anon_sym_annotation] = ACTIONS(5083), - [anon_sym_data] = ACTIONS(5083), - [anon_sym_inner] = ACTIONS(5083), - [anon_sym_value] = ACTIONS(5083), - [anon_sym_override] = ACTIONS(5083), - [anon_sym_lateinit] = ACTIONS(5083), - [anon_sym_public] = ACTIONS(5083), - [anon_sym_private] = ACTIONS(5083), - [anon_sym_internal] = ACTIONS(5083), - [anon_sym_protected] = ACTIONS(5083), - [anon_sym_tailrec] = ACTIONS(5083), - [anon_sym_operator] = ACTIONS(5083), - [anon_sym_infix] = ACTIONS(5083), - [anon_sym_inline] = ACTIONS(5083), - [anon_sym_external] = ACTIONS(5083), - [sym_property_modifier] = ACTIONS(5083), - [anon_sym_abstract] = ACTIONS(5083), - [anon_sym_final] = ACTIONS(5083), - [anon_sym_open] = ACTIONS(5083), - [anon_sym_vararg] = ACTIONS(5083), - [anon_sym_noinline] = ACTIONS(5083), - [anon_sym_crossinline] = ACTIONS(5083), - [anon_sym_expect] = ACTIONS(5083), - [anon_sym_actual] = ACTIONS(5083), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5085), - [anon_sym_continue_AT] = ACTIONS(5085), - [anon_sym_break_AT] = ACTIONS(5085), - [anon_sym_this_AT] = ACTIONS(5085), - [anon_sym_super_AT] = ACTIONS(5085), - [sym_real_literal] = ACTIONS(5085), - [sym_integer_literal] = ACTIONS(5083), - [sym_hex_literal] = ACTIONS(5085), - [sym_bin_literal] = ACTIONS(5085), - [anon_sym_true] = ACTIONS(5083), - [anon_sym_false] = ACTIONS(5083), - [anon_sym_SQUOTE] = ACTIONS(5085), - [sym__backtick_identifier] = ACTIONS(5085), - [sym__automatic_semicolon] = ACTIONS(5085), - [sym_safe_nav] = ACTIONS(5085), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5085), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3420), + [anon_sym_set] = ACTIONS(3420), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(3420), + [anon_sym_sealed] = ACTIONS(3420), + [anon_sym_annotation] = ACTIONS(3420), + [anon_sym_data] = ACTIONS(3420), + [anon_sym_inner] = ACTIONS(3420), + [anon_sym_value] = ACTIONS(3420), + [anon_sym_override] = ACTIONS(3420), + [anon_sym_lateinit] = ACTIONS(3420), + [anon_sym_public] = ACTIONS(3420), + [anon_sym_private] = ACTIONS(3420), + [anon_sym_internal] = ACTIONS(3420), + [anon_sym_protected] = ACTIONS(3420), + [anon_sym_tailrec] = ACTIONS(3420), + [anon_sym_operator] = ACTIONS(3420), + [anon_sym_infix] = ACTIONS(3420), + [anon_sym_inline] = ACTIONS(3420), + [anon_sym_external] = ACTIONS(3420), + [sym_property_modifier] = ACTIONS(3420), + [anon_sym_abstract] = ACTIONS(3420), + [anon_sym_final] = ACTIONS(3420), + [anon_sym_open] = ACTIONS(3420), + [anon_sym_vararg] = ACTIONS(3420), + [anon_sym_noinline] = ACTIONS(3420), + [anon_sym_crossinline] = ACTIONS(3420), + [anon_sym_expect] = ACTIONS(3420), + [anon_sym_actual] = ACTIONS(3420), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), }, [1125] = { - [sym__alpha_identifier] = ACTIONS(5087), - [anon_sym_AT] = ACTIONS(5089), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_as] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_fun] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5089), - [anon_sym_RBRACE] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5089), - [anon_sym_COMMA] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5087), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_where] = ACTIONS(5087), - [anon_sym_object] = ACTIONS(5087), - [anon_sym_DOT] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5089), - [anon_sym_get] = ACTIONS(5087), - [anon_sym_set] = ACTIONS(5087), - [anon_sym_this] = ACTIONS(5087), - [anon_sym_super] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [sym_label] = ACTIONS(5087), - [anon_sym_in] = ACTIONS(5087), - [anon_sym_DOT_DOT] = ACTIONS(5089), - [anon_sym_QMARK_COLON] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5089), - [anon_sym_PIPE_PIPE] = ACTIONS(5089), - [anon_sym_null] = ACTIONS(5087), - [anon_sym_if] = ACTIONS(5087), - [anon_sym_else] = ACTIONS(5087), - [anon_sym_when] = ACTIONS(5087), - [anon_sym_try] = ACTIONS(5087), - [anon_sym_throw] = ACTIONS(5087), - [anon_sym_return] = ACTIONS(5087), - [anon_sym_continue] = ACTIONS(5087), - [anon_sym_break] = ACTIONS(5087), - [anon_sym_COLON_COLON] = ACTIONS(5089), - [anon_sym_PLUS_EQ] = ACTIONS(5089), - [anon_sym_DASH_EQ] = ACTIONS(5089), - [anon_sym_STAR_EQ] = ACTIONS(5089), - [anon_sym_SLASH_EQ] = ACTIONS(5089), - [anon_sym_PERCENT_EQ] = ACTIONS(5089), - [anon_sym_BANG_EQ] = ACTIONS(5087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5089), - [anon_sym_EQ_EQ] = ACTIONS(5087), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5089), - [anon_sym_LT_EQ] = ACTIONS(5089), - [anon_sym_GT_EQ] = ACTIONS(5089), - [anon_sym_BANGin] = ACTIONS(5089), - [anon_sym_is] = ACTIONS(5087), - [anon_sym_BANGis] = ACTIONS(5089), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5087), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_as_QMARK] = ACTIONS(5089), - [anon_sym_PLUS_PLUS] = ACTIONS(5089), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5087), - [anon_sym_BANG_BANG] = ACTIONS(5089), - [anon_sym_suspend] = ACTIONS(5087), - [anon_sym_sealed] = ACTIONS(5087), - [anon_sym_annotation] = ACTIONS(5087), - [anon_sym_data] = ACTIONS(5087), - [anon_sym_inner] = ACTIONS(5087), - [anon_sym_value] = ACTIONS(5087), - [anon_sym_override] = ACTIONS(5087), - [anon_sym_lateinit] = ACTIONS(5087), - [anon_sym_public] = ACTIONS(5087), - [anon_sym_private] = ACTIONS(5087), - [anon_sym_internal] = ACTIONS(5087), - [anon_sym_protected] = ACTIONS(5087), - [anon_sym_tailrec] = ACTIONS(5087), - [anon_sym_operator] = ACTIONS(5087), - [anon_sym_infix] = ACTIONS(5087), - [anon_sym_inline] = ACTIONS(5087), - [anon_sym_external] = ACTIONS(5087), - [sym_property_modifier] = ACTIONS(5087), - [anon_sym_abstract] = ACTIONS(5087), - [anon_sym_final] = ACTIONS(5087), - [anon_sym_open] = ACTIONS(5087), - [anon_sym_vararg] = ACTIONS(5087), - [anon_sym_noinline] = ACTIONS(5087), - [anon_sym_crossinline] = ACTIONS(5087), - [anon_sym_expect] = ACTIONS(5087), - [anon_sym_actual] = ACTIONS(5087), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5089), - [anon_sym_continue_AT] = ACTIONS(5089), - [anon_sym_break_AT] = ACTIONS(5089), - [anon_sym_this_AT] = ACTIONS(5089), - [anon_sym_super_AT] = ACTIONS(5089), - [sym_real_literal] = ACTIONS(5089), - [sym_integer_literal] = ACTIONS(5087), - [sym_hex_literal] = ACTIONS(5089), - [sym_bin_literal] = ACTIONS(5089), - [anon_sym_true] = ACTIONS(5087), - [anon_sym_false] = ACTIONS(5087), - [anon_sym_SQUOTE] = ACTIONS(5089), - [sym__backtick_identifier] = ACTIONS(5089), - [sym__automatic_semicolon] = ACTIONS(5089), - [sym_safe_nav] = ACTIONS(5089), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5089), + [sym__alpha_identifier] = ACTIONS(5089), + [anon_sym_AT] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_as] = ACTIONS(5089), + [anon_sym_EQ] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_RBRACE] = ACTIONS(5091), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_where] = ACTIONS(5089), + [anon_sym_object] = ACTIONS(5089), + [anon_sym_fun] = ACTIONS(5089), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_SEMI] = ACTIONS(5091), + [anon_sym_get] = ACTIONS(5089), + [anon_sym_set] = ACTIONS(5089), + [anon_sym_this] = ACTIONS(5089), + [anon_sym_super] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [sym_label] = ACTIONS(5089), + [anon_sym_in] = ACTIONS(5089), + [anon_sym_DOT_DOT] = ACTIONS(5091), + [anon_sym_QMARK_COLON] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_null] = ACTIONS(5089), + [anon_sym_if] = ACTIONS(5089), + [anon_sym_else] = ACTIONS(5089), + [anon_sym_when] = ACTIONS(5089), + [anon_sym_try] = ACTIONS(5089), + [anon_sym_throw] = ACTIONS(5089), + [anon_sym_return] = ACTIONS(5089), + [anon_sym_continue] = ACTIONS(5089), + [anon_sym_break] = ACTIONS(5089), + [anon_sym_COLON_COLON] = ACTIONS(5091), + [anon_sym_PLUS_EQ] = ACTIONS(5091), + [anon_sym_DASH_EQ] = ACTIONS(5091), + [anon_sym_STAR_EQ] = ACTIONS(5091), + [anon_sym_SLASH_EQ] = ACTIONS(5091), + [anon_sym_PERCENT_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5091), + [anon_sym_EQ_EQ] = ACTIONS(5089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5091), + [anon_sym_LT_EQ] = ACTIONS(5091), + [anon_sym_GT_EQ] = ACTIONS(5091), + [anon_sym_BANGin] = ACTIONS(5091), + [anon_sym_is] = ACTIONS(5089), + [anon_sym_BANGis] = ACTIONS(5091), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_as_QMARK] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_BANG] = ACTIONS(5089), + [anon_sym_BANG_BANG] = ACTIONS(5091), + [anon_sym_suspend] = ACTIONS(5089), + [anon_sym_sealed] = ACTIONS(5089), + [anon_sym_annotation] = ACTIONS(5089), + [anon_sym_data] = ACTIONS(5089), + [anon_sym_inner] = ACTIONS(5089), + [anon_sym_value] = ACTIONS(5089), + [anon_sym_override] = ACTIONS(5089), + [anon_sym_lateinit] = ACTIONS(5089), + [anon_sym_public] = ACTIONS(5089), + [anon_sym_private] = ACTIONS(5089), + [anon_sym_internal] = ACTIONS(5089), + [anon_sym_protected] = ACTIONS(5089), + [anon_sym_tailrec] = ACTIONS(5089), + [anon_sym_operator] = ACTIONS(5089), + [anon_sym_infix] = ACTIONS(5089), + [anon_sym_inline] = ACTIONS(5089), + [anon_sym_external] = ACTIONS(5089), + [sym_property_modifier] = ACTIONS(5089), + [anon_sym_abstract] = ACTIONS(5089), + [anon_sym_final] = ACTIONS(5089), + [anon_sym_open] = ACTIONS(5089), + [anon_sym_vararg] = ACTIONS(5089), + [anon_sym_noinline] = ACTIONS(5089), + [anon_sym_crossinline] = ACTIONS(5089), + [anon_sym_expect] = ACTIONS(5089), + [anon_sym_actual] = ACTIONS(5089), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5091), + [anon_sym_continue_AT] = ACTIONS(5091), + [anon_sym_break_AT] = ACTIONS(5091), + [anon_sym_this_AT] = ACTIONS(5091), + [anon_sym_super_AT] = ACTIONS(5091), + [sym_real_literal] = ACTIONS(5091), + [sym_integer_literal] = ACTIONS(5089), + [sym_hex_literal] = ACTIONS(5091), + [sym_bin_literal] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5089), + [anon_sym_false] = ACTIONS(5089), + [anon_sym_SQUOTE] = ACTIONS(5091), + [sym__backtick_identifier] = ACTIONS(5091), + [sym__automatic_semicolon] = ACTIONS(5091), + [sym_safe_nav] = ACTIONS(5091), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5091), }, [1126] = { - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(1808), - [anon_sym_set] = ACTIONS(1808), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(1808), - [anon_sym_sealed] = ACTIONS(1808), - [anon_sym_annotation] = ACTIONS(1808), - [anon_sym_data] = ACTIONS(1808), - [anon_sym_inner] = ACTIONS(1808), - [anon_sym_value] = ACTIONS(1808), - [anon_sym_override] = ACTIONS(1808), - [anon_sym_lateinit] = ACTIONS(1808), - [anon_sym_public] = ACTIONS(1808), - [anon_sym_private] = ACTIONS(1808), - [anon_sym_internal] = ACTIONS(1808), - [anon_sym_protected] = ACTIONS(1808), - [anon_sym_tailrec] = ACTIONS(1808), - [anon_sym_operator] = ACTIONS(1808), - [anon_sym_infix] = ACTIONS(1808), - [anon_sym_inline] = ACTIONS(1808), - [anon_sym_external] = ACTIONS(1808), - [sym_property_modifier] = ACTIONS(1808), - [anon_sym_abstract] = ACTIONS(1808), - [anon_sym_final] = ACTIONS(1808), - [anon_sym_open] = ACTIONS(1808), - [anon_sym_vararg] = ACTIONS(1808), - [anon_sym_noinline] = ACTIONS(1808), - [anon_sym_crossinline] = ACTIONS(1808), - [anon_sym_expect] = ACTIONS(1808), - [anon_sym_actual] = ACTIONS(1808), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), }, [1127] = { - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4425), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), + [sym_class_body] = STATE(1043), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), }, [1128] = { - [sym__alpha_identifier] = ACTIONS(5091), - [anon_sym_AT] = ACTIONS(5093), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_as] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_fun] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5093), - [anon_sym_RBRACE] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5093), - [anon_sym_COMMA] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5091), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_where] = ACTIONS(5091), - [anon_sym_object] = ACTIONS(5091), - [anon_sym_DOT] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5093), - [anon_sym_get] = ACTIONS(5091), - [anon_sym_set] = ACTIONS(5091), - [anon_sym_this] = ACTIONS(5091), - [anon_sym_super] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [sym_label] = ACTIONS(5091), - [anon_sym_in] = ACTIONS(5091), - [anon_sym_DOT_DOT] = ACTIONS(5093), - [anon_sym_QMARK_COLON] = ACTIONS(5093), - [anon_sym_AMP_AMP] = ACTIONS(5093), - [anon_sym_PIPE_PIPE] = ACTIONS(5093), - [anon_sym_null] = ACTIONS(5091), - [anon_sym_if] = ACTIONS(5091), - [anon_sym_else] = ACTIONS(5091), - [anon_sym_when] = ACTIONS(5091), - [anon_sym_try] = ACTIONS(5091), - [anon_sym_throw] = ACTIONS(5091), - [anon_sym_return] = ACTIONS(5091), - [anon_sym_continue] = ACTIONS(5091), - [anon_sym_break] = ACTIONS(5091), - [anon_sym_COLON_COLON] = ACTIONS(5093), - [anon_sym_PLUS_EQ] = ACTIONS(5093), - [anon_sym_DASH_EQ] = ACTIONS(5093), - [anon_sym_STAR_EQ] = ACTIONS(5093), - [anon_sym_SLASH_EQ] = ACTIONS(5093), - [anon_sym_PERCENT_EQ] = ACTIONS(5093), - [anon_sym_BANG_EQ] = ACTIONS(5091), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5093), - [anon_sym_EQ_EQ] = ACTIONS(5091), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5093), - [anon_sym_LT_EQ] = ACTIONS(5093), - [anon_sym_GT_EQ] = ACTIONS(5093), - [anon_sym_BANGin] = ACTIONS(5093), - [anon_sym_is] = ACTIONS(5091), - [anon_sym_BANGis] = ACTIONS(5093), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5091), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_as_QMARK] = ACTIONS(5093), - [anon_sym_PLUS_PLUS] = ACTIONS(5093), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5091), - [anon_sym_BANG_BANG] = ACTIONS(5093), - [anon_sym_suspend] = ACTIONS(5091), - [anon_sym_sealed] = ACTIONS(5091), - [anon_sym_annotation] = ACTIONS(5091), - [anon_sym_data] = ACTIONS(5091), - [anon_sym_inner] = ACTIONS(5091), - [anon_sym_value] = ACTIONS(5091), - [anon_sym_override] = ACTIONS(5091), - [anon_sym_lateinit] = ACTIONS(5091), - [anon_sym_public] = ACTIONS(5091), - [anon_sym_private] = ACTIONS(5091), - [anon_sym_internal] = ACTIONS(5091), - [anon_sym_protected] = ACTIONS(5091), - [anon_sym_tailrec] = ACTIONS(5091), - [anon_sym_operator] = ACTIONS(5091), - [anon_sym_infix] = ACTIONS(5091), - [anon_sym_inline] = ACTIONS(5091), - [anon_sym_external] = ACTIONS(5091), - [sym_property_modifier] = ACTIONS(5091), - [anon_sym_abstract] = ACTIONS(5091), - [anon_sym_final] = ACTIONS(5091), - [anon_sym_open] = ACTIONS(5091), - [anon_sym_vararg] = ACTIONS(5091), - [anon_sym_noinline] = ACTIONS(5091), - [anon_sym_crossinline] = ACTIONS(5091), - [anon_sym_expect] = ACTIONS(5091), - [anon_sym_actual] = ACTIONS(5091), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5093), - [anon_sym_continue_AT] = ACTIONS(5093), - [anon_sym_break_AT] = ACTIONS(5093), - [anon_sym_this_AT] = ACTIONS(5093), - [anon_sym_super_AT] = ACTIONS(5093), - [sym_real_literal] = ACTIONS(5093), - [sym_integer_literal] = ACTIONS(5091), - [sym_hex_literal] = ACTIONS(5093), - [sym_bin_literal] = ACTIONS(5093), - [anon_sym_true] = ACTIONS(5091), - [anon_sym_false] = ACTIONS(5091), - [anon_sym_SQUOTE] = ACTIONS(5093), - [sym__backtick_identifier] = ACTIONS(5093), - [sym__automatic_semicolon] = ACTIONS(5093), - [sym_safe_nav] = ACTIONS(5093), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5093), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4569), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_object] = ACTIONS(4567), + [anon_sym_fun] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_this] = ACTIONS(4567), + [anon_sym_super] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [sym_label] = ACTIONS(4567), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_null] = ACTIONS(4567), + [anon_sym_if] = ACTIONS(4567), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_when] = ACTIONS(4567), + [anon_sym_try] = ACTIONS(4567), + [anon_sym_throw] = ACTIONS(4567), + [anon_sym_return] = ACTIONS(4567), + [anon_sym_continue] = ACTIONS(4567), + [anon_sym_break] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_suspend] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_annotation] = ACTIONS(4567), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_lateinit] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_tailrec] = ACTIONS(4567), + [anon_sym_operator] = ACTIONS(4567), + [anon_sym_infix] = ACTIONS(4567), + [anon_sym_inline] = ACTIONS(4567), + [anon_sym_external] = ACTIONS(4567), + [sym_property_modifier] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_final] = ACTIONS(4567), + [anon_sym_open] = ACTIONS(4567), + [anon_sym_vararg] = ACTIONS(4567), + [anon_sym_noinline] = ACTIONS(4567), + [anon_sym_crossinline] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4569), + [anon_sym_continue_AT] = ACTIONS(4569), + [anon_sym_break_AT] = ACTIONS(4569), + [anon_sym_this_AT] = ACTIONS(4569), + [anon_sym_super_AT] = ACTIONS(4569), + [sym_real_literal] = ACTIONS(4569), + [sym_integer_literal] = ACTIONS(4567), + [sym_hex_literal] = ACTIONS(4569), + [sym_bin_literal] = ACTIONS(4569), + [anon_sym_true] = ACTIONS(4567), + [anon_sym_false] = ACTIONS(4567), + [anon_sym_SQUOTE] = ACTIONS(4569), + [sym__backtick_identifier] = ACTIONS(4569), + [sym__automatic_semicolon] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4569), }, [1129] = { - [sym__alpha_identifier] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_as] = ACTIONS(209), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_fun] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_where] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(209), - [anon_sym_set] = ACTIONS(209), - [anon_sym_this] = ACTIONS(209), - [anon_sym_super] = ACTIONS(209), - [anon_sym_STAR] = ACTIONS(209), - [sym_label] = ACTIONS(209), - [anon_sym_in] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(207), - [anon_sym_QMARK_COLON] = ACTIONS(207), - [anon_sym_AMP_AMP] = ACTIONS(207), - [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(209), - [anon_sym_if] = ACTIONS(209), - [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(209), - [anon_sym_try] = ACTIONS(209), - [anon_sym_throw] = ACTIONS(209), - [anon_sym_return] = ACTIONS(209), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_break] = ACTIONS(209), - [anon_sym_COLON_COLON] = ACTIONS(207), - [anon_sym_PLUS_EQ] = ACTIONS(207), - [anon_sym_DASH_EQ] = ACTIONS(207), - [anon_sym_STAR_EQ] = ACTIONS(207), - [anon_sym_SLASH_EQ] = ACTIONS(207), - [anon_sym_PERCENT_EQ] = ACTIONS(207), - [anon_sym_BANG_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(207), - [anon_sym_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(207), - [anon_sym_LT_EQ] = ACTIONS(207), - [anon_sym_GT_EQ] = ACTIONS(207), - [anon_sym_BANGin] = ACTIONS(207), - [anon_sym_is] = ACTIONS(209), - [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(209), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(207), - [anon_sym_DASH_DASH] = ACTIONS(207), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_BANG_BANG] = ACTIONS(207), - [anon_sym_suspend] = ACTIONS(209), - [anon_sym_sealed] = ACTIONS(209), - [anon_sym_annotation] = ACTIONS(209), - [anon_sym_data] = ACTIONS(209), - [anon_sym_inner] = ACTIONS(209), - [anon_sym_value] = ACTIONS(209), - [anon_sym_override] = ACTIONS(209), - [anon_sym_lateinit] = ACTIONS(209), - [anon_sym_public] = ACTIONS(209), - [anon_sym_private] = ACTIONS(209), - [anon_sym_internal] = ACTIONS(209), - [anon_sym_protected] = ACTIONS(209), - [anon_sym_tailrec] = ACTIONS(209), - [anon_sym_operator] = ACTIONS(209), - [anon_sym_infix] = ACTIONS(209), - [anon_sym_inline] = ACTIONS(209), - [anon_sym_external] = ACTIONS(209), - [sym_property_modifier] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_final] = ACTIONS(209), - [anon_sym_open] = ACTIONS(209), - [anon_sym_vararg] = ACTIONS(209), - [anon_sym_noinline] = ACTIONS(209), - [anon_sym_crossinline] = ACTIONS(209), - [anon_sym_expect] = ACTIONS(209), - [anon_sym_actual] = ACTIONS(209), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(207), - [anon_sym_continue_AT] = ACTIONS(207), - [anon_sym_break_AT] = ACTIONS(207), - [anon_sym_this_AT] = ACTIONS(207), - [anon_sym_super_AT] = ACTIONS(207), - [sym_real_literal] = ACTIONS(207), - [sym_integer_literal] = ACTIONS(209), - [sym_hex_literal] = ACTIONS(207), - [sym_bin_literal] = ACTIONS(207), - [anon_sym_true] = ACTIONS(209), - [anon_sym_false] = ACTIONS(209), - [anon_sym_SQUOTE] = ACTIONS(207), - [sym__backtick_identifier] = ACTIONS(207), - [sym__automatic_semicolon] = ACTIONS(207), - [sym_safe_nav] = ACTIONS(207), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1130] = { - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_fun] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(4459), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(4457), - [anon_sym_object] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_this] = ACTIONS(4457), - [anon_sym_super] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [sym_label] = ACTIONS(4457), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_null] = ACTIONS(4457), - [anon_sym_if] = ACTIONS(4457), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_when] = ACTIONS(4457), - [anon_sym_try] = ACTIONS(4457), - [anon_sym_throw] = ACTIONS(4457), - [anon_sym_return] = ACTIONS(4457), - [anon_sym_continue] = ACTIONS(4457), - [anon_sym_break] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_suspend] = ACTIONS(4457), - [anon_sym_sealed] = ACTIONS(4457), - [anon_sym_annotation] = ACTIONS(4457), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_override] = ACTIONS(4457), - [anon_sym_lateinit] = ACTIONS(4457), - [anon_sym_public] = ACTIONS(4457), - [anon_sym_private] = ACTIONS(4457), - [anon_sym_internal] = ACTIONS(4457), - [anon_sym_protected] = ACTIONS(4457), - [anon_sym_tailrec] = ACTIONS(4457), - [anon_sym_operator] = ACTIONS(4457), - [anon_sym_infix] = ACTIONS(4457), - [anon_sym_inline] = ACTIONS(4457), - [anon_sym_external] = ACTIONS(4457), - [sym_property_modifier] = ACTIONS(4457), - [anon_sym_abstract] = ACTIONS(4457), - [anon_sym_final] = ACTIONS(4457), - [anon_sym_open] = ACTIONS(4457), - [anon_sym_vararg] = ACTIONS(4457), - [anon_sym_noinline] = ACTIONS(4457), - [anon_sym_crossinline] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4459), - [anon_sym_continue_AT] = ACTIONS(4459), - [anon_sym_break_AT] = ACTIONS(4459), - [anon_sym_this_AT] = ACTIONS(4459), - [anon_sym_super_AT] = ACTIONS(4459), - [sym_real_literal] = ACTIONS(4459), - [sym_integer_literal] = ACTIONS(4457), - [sym_hex_literal] = ACTIONS(4459), - [sym_bin_literal] = ACTIONS(4459), - [anon_sym_true] = ACTIONS(4457), - [anon_sym_false] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4459), - [sym__backtick_identifier] = ACTIONS(4459), - [sym__automatic_semicolon] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4459), - }, - [1131] = { [sym__alpha_identifier] = ACTIONS(5095), [anon_sym_AT] = ACTIONS(5097), [anon_sym_LBRACK] = ACTIONS(5097), [anon_sym_as] = ACTIONS(5095), [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_fun] = ACTIONS(5095), [anon_sym_LBRACE] = ACTIONS(5097), [anon_sym_RBRACE] = ACTIONS(5097), [anon_sym_LPAREN] = ACTIONS(5097), @@ -179489,6 +178285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(5095), [anon_sym_where] = ACTIONS(5095), [anon_sym_object] = ACTIONS(5095), + [anon_sym_fun] = ACTIONS(5095), [anon_sym_DOT] = ACTIONS(5095), [anon_sym_SEMI] = ACTIONS(5097), [anon_sym_get] = ACTIONS(5095), @@ -179580,13 +178377,542 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5097), }, + [1130] = { + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(4449), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), + }, + [1131] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), + }, [1132] = { + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4299), + [anon_sym_LBRACE] = ACTIONS(4301), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [1133] = { + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_object] = ACTIONS(4467), + [anon_sym_fun] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_this] = ACTIONS(4467), + [anon_sym_super] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4467), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_null] = ACTIONS(4467), + [anon_sym_if] = ACTIONS(4467), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_when] = ACTIONS(4467), + [anon_sym_try] = ACTIONS(4467), + [anon_sym_throw] = ACTIONS(4467), + [anon_sym_return] = ACTIONS(4467), + [anon_sym_continue] = ACTIONS(4467), + [anon_sym_break] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG] = ACTIONS(4467), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4469), + [anon_sym_continue_AT] = ACTIONS(4469), + [anon_sym_break_AT] = ACTIONS(4469), + [anon_sym_this_AT] = ACTIONS(4469), + [anon_sym_super_AT] = ACTIONS(4469), + [sym_real_literal] = ACTIONS(4469), + [sym_integer_literal] = ACTIONS(4467), + [sym_hex_literal] = ACTIONS(4469), + [sym_bin_literal] = ACTIONS(4469), + [anon_sym_true] = ACTIONS(4467), + [anon_sym_false] = ACTIONS(4467), + [anon_sym_SQUOTE] = ACTIONS(4469), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4469), + }, + [1134] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [1135] = { [sym__alpha_identifier] = ACTIONS(5099), [anon_sym_AT] = ACTIONS(5101), [anon_sym_LBRACK] = ACTIONS(5101), [anon_sym_as] = ACTIONS(5099), [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_fun] = ACTIONS(5099), [anon_sym_LBRACE] = ACTIONS(5101), [anon_sym_RBRACE] = ACTIONS(5101), [anon_sym_LPAREN] = ACTIONS(5101), @@ -179595,6 +178921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(5099), [anon_sym_where] = ACTIONS(5099), [anon_sym_object] = ACTIONS(5099), + [anon_sym_fun] = ACTIONS(5099), [anon_sym_DOT] = ACTIONS(5099), [anon_sym_SEMI] = ACTIONS(5101), [anon_sym_get] = ACTIONS(5099), @@ -179686,119 +179013,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5101), }, - [1133] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), + [1136] = { + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(1808), + [anon_sym_set] = ACTIONS(1808), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(1808), + [anon_sym_sealed] = ACTIONS(1808), + [anon_sym_annotation] = ACTIONS(1808), + [anon_sym_data] = ACTIONS(1808), + [anon_sym_inner] = ACTIONS(1808), + [anon_sym_value] = ACTIONS(1808), + [anon_sym_override] = ACTIONS(1808), + [anon_sym_lateinit] = ACTIONS(1808), + [anon_sym_public] = ACTIONS(1808), + [anon_sym_private] = ACTIONS(1808), + [anon_sym_internal] = ACTIONS(1808), + [anon_sym_protected] = ACTIONS(1808), + [anon_sym_tailrec] = ACTIONS(1808), + [anon_sym_operator] = ACTIONS(1808), + [anon_sym_infix] = ACTIONS(1808), + [anon_sym_inline] = ACTIONS(1808), + [anon_sym_external] = ACTIONS(1808), + [sym_property_modifier] = ACTIONS(1808), + [anon_sym_abstract] = ACTIONS(1808), + [anon_sym_final] = ACTIONS(1808), + [anon_sym_open] = ACTIONS(1808), + [anon_sym_vararg] = ACTIONS(1808), + [anon_sym_noinline] = ACTIONS(1808), + [anon_sym_crossinline] = ACTIONS(1808), + [anon_sym_expect] = ACTIONS(1808), + [anon_sym_actual] = ACTIONS(1808), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [1134] = { + [1137] = { [sym__alpha_identifier] = ACTIONS(5103), [anon_sym_AT] = ACTIONS(5105), [anon_sym_LBRACK] = ACTIONS(5105), [anon_sym_as] = ACTIONS(5103), [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_fun] = ACTIONS(5103), [anon_sym_LBRACE] = ACTIONS(5105), [anon_sym_RBRACE] = ACTIONS(5105), [anon_sym_LPAREN] = ACTIONS(5105), @@ -179807,6 +179133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(5103), [anon_sym_where] = ACTIONS(5103), [anon_sym_object] = ACTIONS(5103), + [anon_sym_fun] = ACTIONS(5103), [anon_sym_DOT] = ACTIONS(5103), [anon_sym_SEMI] = ACTIONS(5105), [anon_sym_get] = ACTIONS(5103), @@ -179898,13 +179225,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5105), }, - [1135] = { + [1138] = { + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_object] = ACTIONS(4644), + [anon_sym_fun] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_this] = ACTIONS(4644), + [anon_sym_super] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [sym_label] = ACTIONS(4644), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_null] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_when] = ACTIONS(4644), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_throw] = ACTIONS(4644), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_suspend] = ACTIONS(4644), + [anon_sym_sealed] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4644), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_override] = ACTIONS(4644), + [anon_sym_lateinit] = ACTIONS(4644), + [anon_sym_public] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4644), + [anon_sym_internal] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4644), + [anon_sym_tailrec] = ACTIONS(4644), + [anon_sym_operator] = ACTIONS(4644), + [anon_sym_infix] = ACTIONS(4644), + [anon_sym_inline] = ACTIONS(4644), + [anon_sym_external] = ACTIONS(4644), + [sym_property_modifier] = ACTIONS(4644), + [anon_sym_abstract] = ACTIONS(4644), + [anon_sym_final] = ACTIONS(4644), + [anon_sym_open] = ACTIONS(4644), + [anon_sym_vararg] = ACTIONS(4644), + [anon_sym_noinline] = ACTIONS(4644), + [anon_sym_crossinline] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4646), + [anon_sym_continue_AT] = ACTIONS(4646), + [anon_sym_break_AT] = ACTIONS(4646), + [anon_sym_this_AT] = ACTIONS(4646), + [anon_sym_super_AT] = ACTIONS(4646), + [sym_real_literal] = ACTIONS(4646), + [sym_integer_literal] = ACTIONS(4644), + [sym_hex_literal] = ACTIONS(4646), + [sym_bin_literal] = ACTIONS(4646), + [anon_sym_true] = ACTIONS(4644), + [anon_sym_false] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4646), + [sym__backtick_identifier] = ACTIONS(4646), + [sym__automatic_semicolon] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4646), + }, + [1139] = { [sym__alpha_identifier] = ACTIONS(5107), [anon_sym_AT] = ACTIONS(5109), [anon_sym_LBRACK] = ACTIONS(5109), [anon_sym_as] = ACTIONS(5107), [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_fun] = ACTIONS(5107), [anon_sym_LBRACE] = ACTIONS(5109), [anon_sym_RBRACE] = ACTIONS(5109), [anon_sym_LPAREN] = ACTIONS(5109), @@ -179913,6 +179345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(5107), [anon_sym_where] = ACTIONS(5107), [anon_sym_object] = ACTIONS(5107), + [anon_sym_fun] = ACTIONS(5107), [anon_sym_DOT] = ACTIONS(5107), [anon_sym_SEMI] = ACTIONS(5109), [anon_sym_get] = ACTIONS(5107), @@ -180004,391 +179437,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5109), }, - [1136] = { - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_fun] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4471), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(4469), - [anon_sym_object] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_super] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [sym_label] = ACTIONS(4469), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_null] = ACTIONS(4469), - [anon_sym_if] = ACTIONS(4469), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_when] = ACTIONS(4469), - [anon_sym_try] = ACTIONS(4469), - [anon_sym_throw] = ACTIONS(4469), - [anon_sym_return] = ACTIONS(4469), - [anon_sym_continue] = ACTIONS(4469), - [anon_sym_break] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_suspend] = ACTIONS(4469), - [anon_sym_sealed] = ACTIONS(4469), - [anon_sym_annotation] = ACTIONS(4469), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_value] = ACTIONS(4469), - [anon_sym_override] = ACTIONS(4469), - [anon_sym_lateinit] = ACTIONS(4469), - [anon_sym_public] = ACTIONS(4469), - [anon_sym_private] = ACTIONS(4469), - [anon_sym_internal] = ACTIONS(4469), - [anon_sym_protected] = ACTIONS(4469), - [anon_sym_tailrec] = ACTIONS(4469), - [anon_sym_operator] = ACTIONS(4469), - [anon_sym_infix] = ACTIONS(4469), - [anon_sym_inline] = ACTIONS(4469), - [anon_sym_external] = ACTIONS(4469), - [sym_property_modifier] = ACTIONS(4469), - [anon_sym_abstract] = ACTIONS(4469), - [anon_sym_final] = ACTIONS(4469), - [anon_sym_open] = ACTIONS(4469), - [anon_sym_vararg] = ACTIONS(4469), - [anon_sym_noinline] = ACTIONS(4469), - [anon_sym_crossinline] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4471), - [anon_sym_continue_AT] = ACTIONS(4471), - [anon_sym_break_AT] = ACTIONS(4471), - [anon_sym_this_AT] = ACTIONS(4471), - [anon_sym_super_AT] = ACTIONS(4471), - [sym_real_literal] = ACTIONS(4471), - [sym_integer_literal] = ACTIONS(4469), - [sym_hex_literal] = ACTIONS(4471), - [sym_bin_literal] = ACTIONS(4471), - [anon_sym_true] = ACTIONS(4469), - [anon_sym_false] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4471), - [sym__backtick_identifier] = ACTIONS(4471), - [sym__automatic_semicolon] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4471), - }, - [1137] = { - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [1138] = { - [sym__alpha_identifier] = ACTIONS(5111), - [anon_sym_AT] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_as] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_fun] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5113), - [anon_sym_COMMA] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5111), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_where] = ACTIONS(5111), - [anon_sym_object] = ACTIONS(5111), - [anon_sym_DOT] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5113), - [anon_sym_get] = ACTIONS(5111), - [anon_sym_set] = ACTIONS(5111), - [anon_sym_this] = ACTIONS(5111), - [anon_sym_super] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [sym_label] = ACTIONS(5111), - [anon_sym_in] = ACTIONS(5111), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_QMARK_COLON] = ACTIONS(5113), - [anon_sym_AMP_AMP] = ACTIONS(5113), - [anon_sym_PIPE_PIPE] = ACTIONS(5113), - [anon_sym_null] = ACTIONS(5111), - [anon_sym_if] = ACTIONS(5111), - [anon_sym_else] = ACTIONS(5111), - [anon_sym_when] = ACTIONS(5111), - [anon_sym_try] = ACTIONS(5111), - [anon_sym_throw] = ACTIONS(5111), - [anon_sym_return] = ACTIONS(5111), - [anon_sym_continue] = ACTIONS(5111), - [anon_sym_break] = ACTIONS(5111), - [anon_sym_COLON_COLON] = ACTIONS(5113), - [anon_sym_PLUS_EQ] = ACTIONS(5113), - [anon_sym_DASH_EQ] = ACTIONS(5113), - [anon_sym_STAR_EQ] = ACTIONS(5113), - [anon_sym_SLASH_EQ] = ACTIONS(5113), - [anon_sym_PERCENT_EQ] = ACTIONS(5113), - [anon_sym_BANG_EQ] = ACTIONS(5111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5113), - [anon_sym_EQ_EQ] = ACTIONS(5111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5113), - [anon_sym_LT_EQ] = ACTIONS(5113), - [anon_sym_GT_EQ] = ACTIONS(5113), - [anon_sym_BANGin] = ACTIONS(5113), - [anon_sym_is] = ACTIONS(5111), - [anon_sym_BANGis] = ACTIONS(5113), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5111), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_as_QMARK] = ACTIONS(5113), - [anon_sym_PLUS_PLUS] = ACTIONS(5113), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_BANG] = ACTIONS(5111), - [anon_sym_BANG_BANG] = ACTIONS(5113), - [anon_sym_suspend] = ACTIONS(5111), - [anon_sym_sealed] = ACTIONS(5111), - [anon_sym_annotation] = ACTIONS(5111), - [anon_sym_data] = ACTIONS(5111), - [anon_sym_inner] = ACTIONS(5111), - [anon_sym_value] = ACTIONS(5111), - [anon_sym_override] = ACTIONS(5111), - [anon_sym_lateinit] = ACTIONS(5111), - [anon_sym_public] = ACTIONS(5111), - [anon_sym_private] = ACTIONS(5111), - [anon_sym_internal] = ACTIONS(5111), - [anon_sym_protected] = ACTIONS(5111), - [anon_sym_tailrec] = ACTIONS(5111), - [anon_sym_operator] = ACTIONS(5111), - [anon_sym_infix] = ACTIONS(5111), - [anon_sym_inline] = ACTIONS(5111), - [anon_sym_external] = ACTIONS(5111), - [sym_property_modifier] = ACTIONS(5111), - [anon_sym_abstract] = ACTIONS(5111), - [anon_sym_final] = ACTIONS(5111), - [anon_sym_open] = ACTIONS(5111), - [anon_sym_vararg] = ACTIONS(5111), - [anon_sym_noinline] = ACTIONS(5111), - [anon_sym_crossinline] = ACTIONS(5111), - [anon_sym_expect] = ACTIONS(5111), - [anon_sym_actual] = ACTIONS(5111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5113), - [anon_sym_continue_AT] = ACTIONS(5113), - [anon_sym_break_AT] = ACTIONS(5113), - [anon_sym_this_AT] = ACTIONS(5113), - [anon_sym_super_AT] = ACTIONS(5113), - [sym_real_literal] = ACTIONS(5113), - [sym_integer_literal] = ACTIONS(5111), - [sym_hex_literal] = ACTIONS(5113), - [sym_bin_literal] = ACTIONS(5113), - [anon_sym_true] = ACTIONS(5111), - [anon_sym_false] = ACTIONS(5111), - [anon_sym_SQUOTE] = ACTIONS(5113), - [sym__backtick_identifier] = ACTIONS(5113), - [sym__automatic_semicolon] = ACTIONS(5113), - [sym_safe_nav] = ACTIONS(5113), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5113), + [1140] = { + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_object] = ACTIONS(4652), + [anon_sym_fun] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_this] = ACTIONS(4652), + [anon_sym_super] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4652), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_when] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4654), + [anon_sym_continue_AT] = ACTIONS(4654), + [anon_sym_break_AT] = ACTIONS(4654), + [anon_sym_this_AT] = ACTIONS(4654), + [anon_sym_super_AT] = ACTIONS(4654), + [sym_real_literal] = ACTIONS(4654), + [sym_integer_literal] = ACTIONS(4652), + [sym_hex_literal] = ACTIONS(4654), + [sym_bin_literal] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4654), }, - [1139] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), + [1141] = { + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), [anon_sym_as] = ACTIONS(4355), [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(4914), - [anon_sym_COMMA] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4357), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), [anon_sym_LT] = ACTIONS(4355), [anon_sym_GT] = ACTIONS(4355), [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4347), + [anon_sym_object] = ACTIONS(4355), + [anon_sym_fun] = ACTIONS(4355), [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_this] = ACTIONS(4355), + [anon_sym_super] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_null] = ACTIONS(4355), + [anon_sym_if] = ACTIONS(4355), [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), + [anon_sym_when] = ACTIONS(4355), + [anon_sym_try] = ACTIONS(4355), + [anon_sym_throw] = ACTIONS(4355), + [anon_sym_return] = ACTIONS(4355), + [anon_sym_continue] = ACTIONS(4355), + [anon_sym_break] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), [anon_sym_SLASH] = ACTIONS(4355), [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4353), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4357), [anon_sym_suspend] = ACTIONS(4355), [anon_sym_sealed] = ACTIONS(4355), [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), [anon_sym_override] = ACTIONS(4355), [anon_sym_lateinit] = ACTIONS(4355), [anon_sym_public] = ACTIONS(4355), @@ -180407,1094 +179628,775 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(4355), [anon_sym_noinline] = ACTIONS(4355), [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), - }, - [1140] = { - [sym__alpha_identifier] = ACTIONS(5115), - [anon_sym_AT] = ACTIONS(5117), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_as] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_fun] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5117), - [anon_sym_RBRACE] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5117), - [anon_sym_COMMA] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5115), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_where] = ACTIONS(5115), - [anon_sym_object] = ACTIONS(5115), - [anon_sym_DOT] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5117), - [anon_sym_get] = ACTIONS(5115), - [anon_sym_set] = ACTIONS(5115), - [anon_sym_this] = ACTIONS(5115), - [anon_sym_super] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [sym_label] = ACTIONS(5115), - [anon_sym_in] = ACTIONS(5115), - [anon_sym_DOT_DOT] = ACTIONS(5117), - [anon_sym_QMARK_COLON] = ACTIONS(5117), - [anon_sym_AMP_AMP] = ACTIONS(5117), - [anon_sym_PIPE_PIPE] = ACTIONS(5117), - [anon_sym_null] = ACTIONS(5115), - [anon_sym_if] = ACTIONS(5115), - [anon_sym_else] = ACTIONS(5115), - [anon_sym_when] = ACTIONS(5115), - [anon_sym_try] = ACTIONS(5115), - [anon_sym_throw] = ACTIONS(5115), - [anon_sym_return] = ACTIONS(5115), - [anon_sym_continue] = ACTIONS(5115), - [anon_sym_break] = ACTIONS(5115), - [anon_sym_COLON_COLON] = ACTIONS(5117), - [anon_sym_PLUS_EQ] = ACTIONS(5117), - [anon_sym_DASH_EQ] = ACTIONS(5117), - [anon_sym_STAR_EQ] = ACTIONS(5117), - [anon_sym_SLASH_EQ] = ACTIONS(5117), - [anon_sym_PERCENT_EQ] = ACTIONS(5117), - [anon_sym_BANG_EQ] = ACTIONS(5115), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5117), - [anon_sym_EQ_EQ] = ACTIONS(5115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5117), - [anon_sym_LT_EQ] = ACTIONS(5117), - [anon_sym_GT_EQ] = ACTIONS(5117), - [anon_sym_BANGin] = ACTIONS(5117), - [anon_sym_is] = ACTIONS(5115), - [anon_sym_BANGis] = ACTIONS(5117), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5115), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_as_QMARK] = ACTIONS(5117), - [anon_sym_PLUS_PLUS] = ACTIONS(5117), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_BANG_BANG] = ACTIONS(5117), - [anon_sym_suspend] = ACTIONS(5115), - [anon_sym_sealed] = ACTIONS(5115), - [anon_sym_annotation] = ACTIONS(5115), - [anon_sym_data] = ACTIONS(5115), - [anon_sym_inner] = ACTIONS(5115), - [anon_sym_value] = ACTIONS(5115), - [anon_sym_override] = ACTIONS(5115), - [anon_sym_lateinit] = ACTIONS(5115), - [anon_sym_public] = ACTIONS(5115), - [anon_sym_private] = ACTIONS(5115), - [anon_sym_internal] = ACTIONS(5115), - [anon_sym_protected] = ACTIONS(5115), - [anon_sym_tailrec] = ACTIONS(5115), - [anon_sym_operator] = ACTIONS(5115), - [anon_sym_infix] = ACTIONS(5115), - [anon_sym_inline] = ACTIONS(5115), - [anon_sym_external] = ACTIONS(5115), - [sym_property_modifier] = ACTIONS(5115), - [anon_sym_abstract] = ACTIONS(5115), - [anon_sym_final] = ACTIONS(5115), - [anon_sym_open] = ACTIONS(5115), - [anon_sym_vararg] = ACTIONS(5115), - [anon_sym_noinline] = ACTIONS(5115), - [anon_sym_crossinline] = ACTIONS(5115), - [anon_sym_expect] = ACTIONS(5115), - [anon_sym_actual] = ACTIONS(5115), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5117), - [anon_sym_continue_AT] = ACTIONS(5117), - [anon_sym_break_AT] = ACTIONS(5117), - [anon_sym_this_AT] = ACTIONS(5117), - [anon_sym_super_AT] = ACTIONS(5117), - [sym_real_literal] = ACTIONS(5117), - [sym_integer_literal] = ACTIONS(5115), - [sym_hex_literal] = ACTIONS(5117), - [sym_bin_literal] = ACTIONS(5117), - [anon_sym_true] = ACTIONS(5115), - [anon_sym_false] = ACTIONS(5115), - [anon_sym_SQUOTE] = ACTIONS(5117), - [sym__backtick_identifier] = ACTIONS(5117), - [sym__automatic_semicolon] = ACTIONS(5117), - [sym_safe_nav] = ACTIONS(5117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5117), - }, - [1141] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4910), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [anon_sym_return_AT] = ACTIONS(4357), + [anon_sym_continue_AT] = ACTIONS(4357), + [anon_sym_break_AT] = ACTIONS(4357), + [anon_sym_this_AT] = ACTIONS(4357), + [anon_sym_super_AT] = ACTIONS(4357), + [sym_real_literal] = ACTIONS(4357), + [sym_integer_literal] = ACTIONS(4355), + [sym_hex_literal] = ACTIONS(4357), + [sym_bin_literal] = ACTIONS(4357), + [anon_sym_true] = ACTIONS(4355), + [anon_sym_false] = ACTIONS(4355), + [anon_sym_SQUOTE] = ACTIONS(4357), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), + [sym__string_start] = ACTIONS(4357), }, [1142] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4381), - [anon_sym_fun] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_GT] = ACTIONS(4381), - [anon_sym_where] = ACTIONS(4381), - [anon_sym_object] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_this] = ACTIONS(4381), - [anon_sym_super] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [sym_label] = ACTIONS(4381), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_QMARK_COLON] = ACTIONS(4383), - [anon_sym_AMP_AMP] = ACTIONS(4383), - [anon_sym_PIPE_PIPE] = ACTIONS(4383), - [anon_sym_null] = ACTIONS(4381), - [anon_sym_if] = ACTIONS(4381), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_when] = ACTIONS(4381), - [anon_sym_try] = ACTIONS(4381), - [anon_sym_throw] = ACTIONS(4381), - [anon_sym_return] = ACTIONS(4381), - [anon_sym_continue] = ACTIONS(4381), - [anon_sym_break] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4383), - [anon_sym_DASH_EQ] = ACTIONS(4383), - [anon_sym_STAR_EQ] = ACTIONS(4383), - [anon_sym_SLASH_EQ] = ACTIONS(4383), - [anon_sym_PERCENT_EQ] = ACTIONS(4383), - [anon_sym_BANG_EQ] = ACTIONS(4381), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), - [anon_sym_EQ_EQ] = ACTIONS(4381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), - [anon_sym_LT_EQ] = ACTIONS(4383), - [anon_sym_GT_EQ] = ACTIONS(4383), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_as_QMARK] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG] = ACTIONS(4381), - [anon_sym_BANG_BANG] = ACTIONS(4383), - [anon_sym_suspend] = ACTIONS(4381), - [anon_sym_sealed] = ACTIONS(4381), - [anon_sym_annotation] = ACTIONS(4381), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_override] = ACTIONS(4381), - [anon_sym_lateinit] = ACTIONS(4381), - [anon_sym_public] = ACTIONS(4381), - [anon_sym_private] = ACTIONS(4381), - [anon_sym_internal] = ACTIONS(4381), - [anon_sym_protected] = ACTIONS(4381), - [anon_sym_tailrec] = ACTIONS(4381), - [anon_sym_operator] = ACTIONS(4381), - [anon_sym_infix] = ACTIONS(4381), - [anon_sym_inline] = ACTIONS(4381), - [anon_sym_external] = ACTIONS(4381), - [sym_property_modifier] = ACTIONS(4381), - [anon_sym_abstract] = ACTIONS(4381), - [anon_sym_final] = ACTIONS(4381), - [anon_sym_open] = ACTIONS(4381), - [anon_sym_vararg] = ACTIONS(4381), - [anon_sym_noinline] = ACTIONS(4381), - [anon_sym_crossinline] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4383), - [anon_sym_continue_AT] = ACTIONS(4383), - [anon_sym_break_AT] = ACTIONS(4383), - [anon_sym_this_AT] = ACTIONS(4383), - [anon_sym_super_AT] = ACTIONS(4383), - [sym_real_literal] = ACTIONS(4383), - [sym_integer_literal] = ACTIONS(4381), - [sym_hex_literal] = ACTIONS(4383), - [sym_bin_literal] = ACTIONS(4383), - [anon_sym_true] = ACTIONS(4381), - [anon_sym_false] = ACTIONS(4381), - [anon_sym_SQUOTE] = ACTIONS(4383), - [sym__backtick_identifier] = ACTIONS(4383), - [sym__automatic_semicolon] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4383), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4383), + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5111), + [anon_sym_get] = ACTIONS(5113), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [1143] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), + [sym__alpha_identifier] = ACTIONS(5117), + [anon_sym_AT] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [anon_sym_as] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5119), + [anon_sym_RBRACE] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5119), + [anon_sym_COMMA] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5117), + [anon_sym_GT] = ACTIONS(5117), + [anon_sym_where] = ACTIONS(5117), + [anon_sym_object] = ACTIONS(5117), + [anon_sym_fun] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5117), + [anon_sym_SEMI] = ACTIONS(5119), + [anon_sym_get] = ACTIONS(5117), + [anon_sym_set] = ACTIONS(5117), + [anon_sym_this] = ACTIONS(5117), + [anon_sym_super] = ACTIONS(5117), + [anon_sym_STAR] = ACTIONS(5117), + [sym_label] = ACTIONS(5117), + [anon_sym_in] = ACTIONS(5117), + [anon_sym_DOT_DOT] = ACTIONS(5119), + [anon_sym_QMARK_COLON] = ACTIONS(5119), + [anon_sym_AMP_AMP] = ACTIONS(5119), + [anon_sym_PIPE_PIPE] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5117), + [anon_sym_if] = ACTIONS(5117), + [anon_sym_else] = ACTIONS(5117), + [anon_sym_when] = ACTIONS(5117), + [anon_sym_try] = ACTIONS(5117), + [anon_sym_throw] = ACTIONS(5117), + [anon_sym_return] = ACTIONS(5117), + [anon_sym_continue] = ACTIONS(5117), + [anon_sym_break] = ACTIONS(5117), + [anon_sym_COLON_COLON] = ACTIONS(5119), + [anon_sym_PLUS_EQ] = ACTIONS(5119), + [anon_sym_DASH_EQ] = ACTIONS(5119), + [anon_sym_STAR_EQ] = ACTIONS(5119), + [anon_sym_SLASH_EQ] = ACTIONS(5119), + [anon_sym_PERCENT_EQ] = ACTIONS(5119), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5119), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5119), + [anon_sym_LT_EQ] = ACTIONS(5119), + [anon_sym_GT_EQ] = ACTIONS(5119), + [anon_sym_BANGin] = ACTIONS(5119), + [anon_sym_is] = ACTIONS(5117), + [anon_sym_BANGis] = ACTIONS(5119), + [anon_sym_PLUS] = ACTIONS(5117), + [anon_sym_DASH] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5117), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_as_QMARK] = ACTIONS(5119), + [anon_sym_PLUS_PLUS] = ACTIONS(5119), + [anon_sym_DASH_DASH] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5117), + [anon_sym_BANG_BANG] = ACTIONS(5119), + [anon_sym_suspend] = ACTIONS(5117), + [anon_sym_sealed] = ACTIONS(5117), + [anon_sym_annotation] = ACTIONS(5117), + [anon_sym_data] = ACTIONS(5117), + [anon_sym_inner] = ACTIONS(5117), + [anon_sym_value] = ACTIONS(5117), + [anon_sym_override] = ACTIONS(5117), + [anon_sym_lateinit] = ACTIONS(5117), + [anon_sym_public] = ACTIONS(5117), + [anon_sym_private] = ACTIONS(5117), + [anon_sym_internal] = ACTIONS(5117), + [anon_sym_protected] = ACTIONS(5117), + [anon_sym_tailrec] = ACTIONS(5117), + [anon_sym_operator] = ACTIONS(5117), + [anon_sym_infix] = ACTIONS(5117), + [anon_sym_inline] = ACTIONS(5117), + [anon_sym_external] = ACTIONS(5117), + [sym_property_modifier] = ACTIONS(5117), + [anon_sym_abstract] = ACTIONS(5117), + [anon_sym_final] = ACTIONS(5117), + [anon_sym_open] = ACTIONS(5117), + [anon_sym_vararg] = ACTIONS(5117), + [anon_sym_noinline] = ACTIONS(5117), + [anon_sym_crossinline] = ACTIONS(5117), + [anon_sym_expect] = ACTIONS(5117), + [anon_sym_actual] = ACTIONS(5117), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5119), + [anon_sym_continue_AT] = ACTIONS(5119), + [anon_sym_break_AT] = ACTIONS(5119), + [anon_sym_this_AT] = ACTIONS(5119), + [anon_sym_super_AT] = ACTIONS(5119), + [sym_real_literal] = ACTIONS(5119), + [sym_integer_literal] = ACTIONS(5117), + [sym_hex_literal] = ACTIONS(5119), + [sym_bin_literal] = ACTIONS(5119), + [anon_sym_true] = ACTIONS(5117), + [anon_sym_false] = ACTIONS(5117), + [anon_sym_SQUOTE] = ACTIONS(5119), + [sym__backtick_identifier] = ACTIONS(5119), + [sym__automatic_semicolon] = ACTIONS(5119), + [sym_safe_nav] = ACTIONS(5119), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5119), }, [1144] = { - [sym__alpha_identifier] = ACTIONS(5119), - [anon_sym_AT] = ACTIONS(5121), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_as] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_fun] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5121), - [anon_sym_RBRACE] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5121), - [anon_sym_COMMA] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5119), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_object] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5121), - [anon_sym_get] = ACTIONS(5119), - [anon_sym_set] = ACTIONS(5119), - [anon_sym_this] = ACTIONS(5119), - [anon_sym_super] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [sym_label] = ACTIONS(5119), - [anon_sym_in] = ACTIONS(5119), - [anon_sym_DOT_DOT] = ACTIONS(5121), - [anon_sym_QMARK_COLON] = ACTIONS(5121), - [anon_sym_AMP_AMP] = ACTIONS(5121), - [anon_sym_PIPE_PIPE] = ACTIONS(5121), - [anon_sym_null] = ACTIONS(5119), - [anon_sym_if] = ACTIONS(5119), - [anon_sym_else] = ACTIONS(5119), - [anon_sym_when] = ACTIONS(5119), - [anon_sym_try] = ACTIONS(5119), - [anon_sym_throw] = ACTIONS(5119), - [anon_sym_return] = ACTIONS(5119), - [anon_sym_continue] = ACTIONS(5119), - [anon_sym_break] = ACTIONS(5119), - [anon_sym_COLON_COLON] = ACTIONS(5121), - [anon_sym_PLUS_EQ] = ACTIONS(5121), - [anon_sym_DASH_EQ] = ACTIONS(5121), - [anon_sym_STAR_EQ] = ACTIONS(5121), - [anon_sym_SLASH_EQ] = ACTIONS(5121), - [anon_sym_PERCENT_EQ] = ACTIONS(5121), - [anon_sym_BANG_EQ] = ACTIONS(5119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5121), - [anon_sym_EQ_EQ] = ACTIONS(5119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5121), - [anon_sym_LT_EQ] = ACTIONS(5121), - [anon_sym_GT_EQ] = ACTIONS(5121), - [anon_sym_BANGin] = ACTIONS(5121), - [anon_sym_is] = ACTIONS(5119), - [anon_sym_BANGis] = ACTIONS(5121), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_as_QMARK] = ACTIONS(5121), - [anon_sym_PLUS_PLUS] = ACTIONS(5121), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_BANG_BANG] = ACTIONS(5121), - [anon_sym_suspend] = ACTIONS(5119), - [anon_sym_sealed] = ACTIONS(5119), - [anon_sym_annotation] = ACTIONS(5119), - [anon_sym_data] = ACTIONS(5119), - [anon_sym_inner] = ACTIONS(5119), - [anon_sym_value] = ACTIONS(5119), - [anon_sym_override] = ACTIONS(5119), - [anon_sym_lateinit] = ACTIONS(5119), - [anon_sym_public] = ACTIONS(5119), - [anon_sym_private] = ACTIONS(5119), - [anon_sym_internal] = ACTIONS(5119), - [anon_sym_protected] = ACTIONS(5119), - [anon_sym_tailrec] = ACTIONS(5119), - [anon_sym_operator] = ACTIONS(5119), - [anon_sym_infix] = ACTIONS(5119), - [anon_sym_inline] = ACTIONS(5119), - [anon_sym_external] = ACTIONS(5119), - [sym_property_modifier] = ACTIONS(5119), - [anon_sym_abstract] = ACTIONS(5119), - [anon_sym_final] = ACTIONS(5119), - [anon_sym_open] = ACTIONS(5119), - [anon_sym_vararg] = ACTIONS(5119), - [anon_sym_noinline] = ACTIONS(5119), - [anon_sym_crossinline] = ACTIONS(5119), - [anon_sym_expect] = ACTIONS(5119), - [anon_sym_actual] = ACTIONS(5119), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5121), - [anon_sym_continue_AT] = ACTIONS(5121), - [anon_sym_break_AT] = ACTIONS(5121), - [anon_sym_this_AT] = ACTIONS(5121), - [anon_sym_super_AT] = ACTIONS(5121), - [sym_real_literal] = ACTIONS(5121), - [sym_integer_literal] = ACTIONS(5119), - [sym_hex_literal] = ACTIONS(5121), - [sym_bin_literal] = ACTIONS(5121), - [anon_sym_true] = ACTIONS(5119), - [anon_sym_false] = ACTIONS(5119), - [anon_sym_SQUOTE] = ACTIONS(5121), - [sym__backtick_identifier] = ACTIONS(5121), - [sym__automatic_semicolon] = ACTIONS(5121), - [sym_safe_nav] = ACTIONS(5121), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5121), + [sym__alpha_identifier] = ACTIONS(5121), + [anon_sym_AT] = ACTIONS(5123), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_as] = ACTIONS(5121), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_RBRACE] = ACTIONS(5123), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5121), + [anon_sym_GT] = ACTIONS(5121), + [anon_sym_where] = ACTIONS(5121), + [anon_sym_object] = ACTIONS(5121), + [anon_sym_fun] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5121), + [anon_sym_SEMI] = ACTIONS(5123), + [anon_sym_get] = ACTIONS(5121), + [anon_sym_set] = ACTIONS(5121), + [anon_sym_this] = ACTIONS(5121), + [anon_sym_super] = ACTIONS(5121), + [anon_sym_STAR] = ACTIONS(5121), + [sym_label] = ACTIONS(5121), + [anon_sym_in] = ACTIONS(5121), + [anon_sym_DOT_DOT] = ACTIONS(5123), + [anon_sym_QMARK_COLON] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_if] = ACTIONS(5121), + [anon_sym_else] = ACTIONS(5121), + [anon_sym_when] = ACTIONS(5121), + [anon_sym_try] = ACTIONS(5121), + [anon_sym_throw] = ACTIONS(5121), + [anon_sym_return] = ACTIONS(5121), + [anon_sym_continue] = ACTIONS(5121), + [anon_sym_break] = ACTIONS(5121), + [anon_sym_COLON_COLON] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5123), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_BANGin] = ACTIONS(5123), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_BANGis] = ACTIONS(5123), + [anon_sym_PLUS] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5121), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_as_QMARK] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_BANG] = ACTIONS(5121), + [anon_sym_BANG_BANG] = ACTIONS(5123), + [anon_sym_suspend] = ACTIONS(5121), + [anon_sym_sealed] = ACTIONS(5121), + [anon_sym_annotation] = ACTIONS(5121), + [anon_sym_data] = ACTIONS(5121), + [anon_sym_inner] = ACTIONS(5121), + [anon_sym_value] = ACTIONS(5121), + [anon_sym_override] = ACTIONS(5121), + [anon_sym_lateinit] = ACTIONS(5121), + [anon_sym_public] = ACTIONS(5121), + [anon_sym_private] = ACTIONS(5121), + [anon_sym_internal] = ACTIONS(5121), + [anon_sym_protected] = ACTIONS(5121), + [anon_sym_tailrec] = ACTIONS(5121), + [anon_sym_operator] = ACTIONS(5121), + [anon_sym_infix] = ACTIONS(5121), + [anon_sym_inline] = ACTIONS(5121), + [anon_sym_external] = ACTIONS(5121), + [sym_property_modifier] = ACTIONS(5121), + [anon_sym_abstract] = ACTIONS(5121), + [anon_sym_final] = ACTIONS(5121), + [anon_sym_open] = ACTIONS(5121), + [anon_sym_vararg] = ACTIONS(5121), + [anon_sym_noinline] = ACTIONS(5121), + [anon_sym_crossinline] = ACTIONS(5121), + [anon_sym_expect] = ACTIONS(5121), + [anon_sym_actual] = ACTIONS(5121), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5123), + [anon_sym_continue_AT] = ACTIONS(5123), + [anon_sym_break_AT] = ACTIONS(5123), + [anon_sym_this_AT] = ACTIONS(5123), + [anon_sym_super_AT] = ACTIONS(5123), + [sym_real_literal] = ACTIONS(5123), + [sym_integer_literal] = ACTIONS(5121), + [sym_hex_literal] = ACTIONS(5123), + [sym_bin_literal] = ACTIONS(5123), + [anon_sym_true] = ACTIONS(5121), + [anon_sym_false] = ACTIONS(5121), + [anon_sym_SQUOTE] = ACTIONS(5123), + [sym__backtick_identifier] = ACTIONS(5123), + [sym__automatic_semicolon] = ACTIONS(5123), + [sym_safe_nav] = ACTIONS(5123), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5123), }, [1145] = { - [sym__alpha_identifier] = ACTIONS(5123), - [anon_sym_AT] = ACTIONS(5125), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_as] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_fun] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5125), - [anon_sym_RBRACE] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5125), - [anon_sym_COMMA] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5123), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_where] = ACTIONS(5123), - [anon_sym_object] = ACTIONS(5123), - [anon_sym_DOT] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5125), - [anon_sym_get] = ACTIONS(5123), - [anon_sym_set] = ACTIONS(5123), - [anon_sym_this] = ACTIONS(5123), - [anon_sym_super] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(5123), - [anon_sym_in] = ACTIONS(5123), - [anon_sym_DOT_DOT] = ACTIONS(5125), - [anon_sym_QMARK_COLON] = ACTIONS(5125), - [anon_sym_AMP_AMP] = ACTIONS(5125), - [anon_sym_PIPE_PIPE] = ACTIONS(5125), - [anon_sym_null] = ACTIONS(5123), - [anon_sym_if] = ACTIONS(5123), - [anon_sym_else] = ACTIONS(5123), - [anon_sym_when] = ACTIONS(5123), - [anon_sym_try] = ACTIONS(5123), - [anon_sym_throw] = ACTIONS(5123), - [anon_sym_return] = ACTIONS(5123), - [anon_sym_continue] = ACTIONS(5123), - [anon_sym_break] = ACTIONS(5123), - [anon_sym_COLON_COLON] = ACTIONS(5125), - [anon_sym_PLUS_EQ] = ACTIONS(5125), - [anon_sym_DASH_EQ] = ACTIONS(5125), - [anon_sym_STAR_EQ] = ACTIONS(5125), - [anon_sym_SLASH_EQ] = ACTIONS(5125), - [anon_sym_PERCENT_EQ] = ACTIONS(5125), - [anon_sym_BANG_EQ] = ACTIONS(5123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5125), - [anon_sym_EQ_EQ] = ACTIONS(5123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5125), - [anon_sym_LT_EQ] = ACTIONS(5125), - [anon_sym_GT_EQ] = ACTIONS(5125), - [anon_sym_BANGin] = ACTIONS(5125), - [anon_sym_is] = ACTIONS(5123), - [anon_sym_BANGis] = ACTIONS(5125), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5123), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(5125), - [anon_sym_PLUS_PLUS] = ACTIONS(5125), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_BANG_BANG] = ACTIONS(5125), - [anon_sym_suspend] = ACTIONS(5123), - [anon_sym_sealed] = ACTIONS(5123), - [anon_sym_annotation] = ACTIONS(5123), - [anon_sym_data] = ACTIONS(5123), - [anon_sym_inner] = ACTIONS(5123), - [anon_sym_value] = ACTIONS(5123), - [anon_sym_override] = ACTIONS(5123), - [anon_sym_lateinit] = ACTIONS(5123), - [anon_sym_public] = ACTIONS(5123), - [anon_sym_private] = ACTIONS(5123), - [anon_sym_internal] = ACTIONS(5123), - [anon_sym_protected] = ACTIONS(5123), - [anon_sym_tailrec] = ACTIONS(5123), - [anon_sym_operator] = ACTIONS(5123), - [anon_sym_infix] = ACTIONS(5123), - [anon_sym_inline] = ACTIONS(5123), - [anon_sym_external] = ACTIONS(5123), - [sym_property_modifier] = ACTIONS(5123), - [anon_sym_abstract] = ACTIONS(5123), - [anon_sym_final] = ACTIONS(5123), - [anon_sym_open] = ACTIONS(5123), - [anon_sym_vararg] = ACTIONS(5123), - [anon_sym_noinline] = ACTIONS(5123), - [anon_sym_crossinline] = ACTIONS(5123), - [anon_sym_expect] = ACTIONS(5123), - [anon_sym_actual] = ACTIONS(5123), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5125), - [anon_sym_continue_AT] = ACTIONS(5125), - [anon_sym_break_AT] = ACTIONS(5125), - [anon_sym_this_AT] = ACTIONS(5125), - [anon_sym_super_AT] = ACTIONS(5125), - [sym_real_literal] = ACTIONS(5125), - [sym_integer_literal] = ACTIONS(5123), - [sym_hex_literal] = ACTIONS(5125), - [sym_bin_literal] = ACTIONS(5125), - [anon_sym_true] = ACTIONS(5123), - [anon_sym_false] = ACTIONS(5123), - [anon_sym_SQUOTE] = ACTIONS(5125), - [sym__backtick_identifier] = ACTIONS(5125), - [sym__automatic_semicolon] = ACTIONS(5125), - [sym_safe_nav] = ACTIONS(5125), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5125), + [sym__alpha_identifier] = ACTIONS(5125), + [anon_sym_AT] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5127), + [anon_sym_as] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5127), + [anon_sym_RBRACE] = ACTIONS(5127), + [anon_sym_LPAREN] = ACTIONS(5127), + [anon_sym_COMMA] = ACTIONS(5127), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_where] = ACTIONS(5125), + [anon_sym_object] = ACTIONS(5125), + [anon_sym_fun] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_SEMI] = ACTIONS(5127), + [anon_sym_get] = ACTIONS(5125), + [anon_sym_set] = ACTIONS(5125), + [anon_sym_this] = ACTIONS(5125), + [anon_sym_super] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5125), + [sym_label] = ACTIONS(5125), + [anon_sym_in] = ACTIONS(5125), + [anon_sym_DOT_DOT] = ACTIONS(5127), + [anon_sym_QMARK_COLON] = ACTIONS(5127), + [anon_sym_AMP_AMP] = ACTIONS(5127), + [anon_sym_PIPE_PIPE] = ACTIONS(5127), + [anon_sym_null] = ACTIONS(5125), + [anon_sym_if] = ACTIONS(5125), + [anon_sym_else] = ACTIONS(5125), + [anon_sym_when] = ACTIONS(5125), + [anon_sym_try] = ACTIONS(5125), + [anon_sym_throw] = ACTIONS(5125), + [anon_sym_return] = ACTIONS(5125), + [anon_sym_continue] = ACTIONS(5125), + [anon_sym_break] = ACTIONS(5125), + [anon_sym_COLON_COLON] = ACTIONS(5127), + [anon_sym_PLUS_EQ] = ACTIONS(5127), + [anon_sym_DASH_EQ] = ACTIONS(5127), + [anon_sym_STAR_EQ] = ACTIONS(5127), + [anon_sym_SLASH_EQ] = ACTIONS(5127), + [anon_sym_PERCENT_EQ] = ACTIONS(5127), + [anon_sym_BANG_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5127), + [anon_sym_EQ_EQ] = ACTIONS(5125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5127), + [anon_sym_LT_EQ] = ACTIONS(5127), + [anon_sym_GT_EQ] = ACTIONS(5127), + [anon_sym_BANGin] = ACTIONS(5127), + [anon_sym_is] = ACTIONS(5125), + [anon_sym_BANGis] = ACTIONS(5127), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_as_QMARK] = ACTIONS(5127), + [anon_sym_PLUS_PLUS] = ACTIONS(5127), + [anon_sym_DASH_DASH] = ACTIONS(5127), + [anon_sym_BANG] = ACTIONS(5125), + [anon_sym_BANG_BANG] = ACTIONS(5127), + [anon_sym_suspend] = ACTIONS(5125), + [anon_sym_sealed] = ACTIONS(5125), + [anon_sym_annotation] = ACTIONS(5125), + [anon_sym_data] = ACTIONS(5125), + [anon_sym_inner] = ACTIONS(5125), + [anon_sym_value] = ACTIONS(5125), + [anon_sym_override] = ACTIONS(5125), + [anon_sym_lateinit] = ACTIONS(5125), + [anon_sym_public] = ACTIONS(5125), + [anon_sym_private] = ACTIONS(5125), + [anon_sym_internal] = ACTIONS(5125), + [anon_sym_protected] = ACTIONS(5125), + [anon_sym_tailrec] = ACTIONS(5125), + [anon_sym_operator] = ACTIONS(5125), + [anon_sym_infix] = ACTIONS(5125), + [anon_sym_inline] = ACTIONS(5125), + [anon_sym_external] = ACTIONS(5125), + [sym_property_modifier] = ACTIONS(5125), + [anon_sym_abstract] = ACTIONS(5125), + [anon_sym_final] = ACTIONS(5125), + [anon_sym_open] = ACTIONS(5125), + [anon_sym_vararg] = ACTIONS(5125), + [anon_sym_noinline] = ACTIONS(5125), + [anon_sym_crossinline] = ACTIONS(5125), + [anon_sym_expect] = ACTIONS(5125), + [anon_sym_actual] = ACTIONS(5125), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5127), + [anon_sym_continue_AT] = ACTIONS(5127), + [anon_sym_break_AT] = ACTIONS(5127), + [anon_sym_this_AT] = ACTIONS(5127), + [anon_sym_super_AT] = ACTIONS(5127), + [sym_real_literal] = ACTIONS(5127), + [sym_integer_literal] = ACTIONS(5125), + [sym_hex_literal] = ACTIONS(5127), + [sym_bin_literal] = ACTIONS(5127), + [anon_sym_true] = ACTIONS(5125), + [anon_sym_false] = ACTIONS(5125), + [anon_sym_SQUOTE] = ACTIONS(5127), + [sym__backtick_identifier] = ACTIONS(5127), + [sym__automatic_semicolon] = ACTIONS(5127), + [sym_safe_nav] = ACTIONS(5127), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5127), }, [1146] = { - [sym__alpha_identifier] = ACTIONS(4772), - [anon_sym_AT] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4772), - [anon_sym_fun] = ACTIONS(4772), - [anon_sym_LBRACE] = ACTIONS(4774), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4772), - [anon_sym_GT] = ACTIONS(4772), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_object] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4772), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_get] = ACTIONS(4772), - [anon_sym_set] = ACTIONS(4772), - [anon_sym_this] = ACTIONS(4772), - [anon_sym_super] = ACTIONS(4772), - [anon_sym_STAR] = ACTIONS(4772), - [sym_label] = ACTIONS(4772), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_QMARK_COLON] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_null] = ACTIONS(4772), - [anon_sym_if] = ACTIONS(4772), - [anon_sym_else] = ACTIONS(4772), - [anon_sym_when] = ACTIONS(4772), - [anon_sym_try] = ACTIONS(4772), - [anon_sym_throw] = ACTIONS(4772), - [anon_sym_return] = ACTIONS(4772), - [anon_sym_continue] = ACTIONS(4772), - [anon_sym_break] = ACTIONS(4772), - [anon_sym_COLON_COLON] = ACTIONS(4774), - [anon_sym_PLUS_EQ] = ACTIONS(4774), - [anon_sym_DASH_EQ] = ACTIONS(4774), - [anon_sym_STAR_EQ] = ACTIONS(4774), - [anon_sym_SLASH_EQ] = ACTIONS(4774), - [anon_sym_PERCENT_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4772), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_BANGin] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4772), - [anon_sym_BANGis] = ACTIONS(4774), - [anon_sym_PLUS] = ACTIONS(4772), - [anon_sym_DASH] = ACTIONS(4772), - [anon_sym_SLASH] = ACTIONS(4772), - [anon_sym_PERCENT] = ACTIONS(4772), - [anon_sym_as_QMARK] = ACTIONS(4774), - [anon_sym_PLUS_PLUS] = ACTIONS(4774), - [anon_sym_DASH_DASH] = ACTIONS(4774), - [anon_sym_BANG] = ACTIONS(4772), - [anon_sym_BANG_BANG] = ACTIONS(4774), - [anon_sym_suspend] = ACTIONS(4772), - [anon_sym_sealed] = ACTIONS(4772), - [anon_sym_annotation] = ACTIONS(4772), - [anon_sym_data] = ACTIONS(4772), - [anon_sym_inner] = ACTIONS(4772), - [anon_sym_value] = ACTIONS(4772), - [anon_sym_override] = ACTIONS(4772), - [anon_sym_lateinit] = ACTIONS(4772), - [anon_sym_public] = ACTIONS(4772), - [anon_sym_private] = ACTIONS(4772), - [anon_sym_internal] = ACTIONS(4772), - [anon_sym_protected] = ACTIONS(4772), - [anon_sym_tailrec] = ACTIONS(4772), - [anon_sym_operator] = ACTIONS(4772), - [anon_sym_infix] = ACTIONS(4772), - [anon_sym_inline] = ACTIONS(4772), - [anon_sym_external] = ACTIONS(4772), - [sym_property_modifier] = ACTIONS(4772), - [anon_sym_abstract] = ACTIONS(4772), - [anon_sym_final] = ACTIONS(4772), - [anon_sym_open] = ACTIONS(4772), - [anon_sym_vararg] = ACTIONS(4772), - [anon_sym_noinline] = ACTIONS(4772), - [anon_sym_crossinline] = ACTIONS(4772), - [anon_sym_expect] = ACTIONS(4772), - [anon_sym_actual] = ACTIONS(4772), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4774), - [anon_sym_continue_AT] = ACTIONS(4774), - [anon_sym_break_AT] = ACTIONS(4774), - [anon_sym_this_AT] = ACTIONS(4774), - [anon_sym_super_AT] = ACTIONS(4774), - [sym_real_literal] = ACTIONS(4774), - [sym_integer_literal] = ACTIONS(4772), - [sym_hex_literal] = ACTIONS(4774), - [sym_bin_literal] = ACTIONS(4774), - [anon_sym_true] = ACTIONS(4772), - [anon_sym_false] = ACTIONS(4772), - [anon_sym_SQUOTE] = ACTIONS(4774), - [sym__backtick_identifier] = ACTIONS(4774), - [sym__automatic_semicolon] = ACTIONS(4774), - [sym_safe_nav] = ACTIONS(4774), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4774), + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5129), + [anon_sym_get] = ACTIONS(5113), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [1147] = { - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(1796), + [anon_sym_set] = ACTIONS(1796), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(1796), + [anon_sym_sealed] = ACTIONS(1796), + [anon_sym_annotation] = ACTIONS(1796), + [anon_sym_data] = ACTIONS(1796), + [anon_sym_inner] = ACTIONS(1796), + [anon_sym_value] = ACTIONS(1796), + [anon_sym_override] = ACTIONS(1796), + [anon_sym_lateinit] = ACTIONS(1796), + [anon_sym_public] = ACTIONS(1796), + [anon_sym_private] = ACTIONS(1796), + [anon_sym_internal] = ACTIONS(1796), + [anon_sym_protected] = ACTIONS(1796), + [anon_sym_tailrec] = ACTIONS(1796), + [anon_sym_operator] = ACTIONS(1796), + [anon_sym_infix] = ACTIONS(1796), + [anon_sym_inline] = ACTIONS(1796), + [anon_sym_external] = ACTIONS(1796), + [sym_property_modifier] = ACTIONS(1796), + [anon_sym_abstract] = ACTIONS(1796), + [anon_sym_final] = ACTIONS(1796), + [anon_sym_open] = ACTIONS(1796), + [anon_sym_vararg] = ACTIONS(1796), + [anon_sym_noinline] = ACTIONS(1796), + [anon_sym_crossinline] = ACTIONS(1796), + [anon_sym_expect] = ACTIONS(1796), + [anon_sym_actual] = ACTIONS(1796), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, [1148] = { - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_fun] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4277), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(4275), - [anon_sym_object] = ACTIONS(4275), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_this] = ACTIONS(4275), - [anon_sym_super] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), - [sym_label] = ACTIONS(4275), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4275), - [anon_sym_if] = ACTIONS(4275), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_when] = ACTIONS(4275), - [anon_sym_try] = ACTIONS(4275), - [anon_sym_throw] = ACTIONS(4275), - [anon_sym_return] = ACTIONS(4275), - [anon_sym_continue] = ACTIONS(4275), - [anon_sym_break] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_PLUS_EQ] = ACTIONS(4277), - [anon_sym_DASH_EQ] = ACTIONS(4277), - [anon_sym_STAR_EQ] = ACTIONS(4277), - [anon_sym_SLASH_EQ] = ACTIONS(4277), - [anon_sym_PERCENT_EQ] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_suspend] = ACTIONS(4275), - [anon_sym_sealed] = ACTIONS(4275), - [anon_sym_annotation] = ACTIONS(4275), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_override] = ACTIONS(4275), - [anon_sym_lateinit] = ACTIONS(4275), - [anon_sym_public] = ACTIONS(4275), - [anon_sym_private] = ACTIONS(4275), - [anon_sym_internal] = ACTIONS(4275), - [anon_sym_protected] = ACTIONS(4275), - [anon_sym_tailrec] = ACTIONS(4275), - [anon_sym_operator] = ACTIONS(4275), - [anon_sym_infix] = ACTIONS(4275), - [anon_sym_inline] = ACTIONS(4275), - [anon_sym_external] = ACTIONS(4275), - [sym_property_modifier] = ACTIONS(4275), - [anon_sym_abstract] = ACTIONS(4275), - [anon_sym_final] = ACTIONS(4275), - [anon_sym_open] = ACTIONS(4275), - [anon_sym_vararg] = ACTIONS(4275), - [anon_sym_noinline] = ACTIONS(4275), - [anon_sym_crossinline] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4277), - [anon_sym_continue_AT] = ACTIONS(4277), - [anon_sym_break_AT] = ACTIONS(4277), - [anon_sym_this_AT] = ACTIONS(4277), - [anon_sym_super_AT] = ACTIONS(4277), - [sym_real_literal] = ACTIONS(4277), - [sym_integer_literal] = ACTIONS(4275), - [sym_hex_literal] = ACTIONS(4277), - [sym_bin_literal] = ACTIONS(4277), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [anon_sym_SQUOTE] = ACTIONS(4277), - [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), + [sym__string_start] = ACTIONS(4323), }, [1149] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [1150] = { [sym__alpha_identifier] = ACTIONS(5131), [anon_sym_AT] = ACTIONS(5133), [anon_sym_LBRACK] = ACTIONS(5133), [anon_sym_as] = ACTIONS(5131), [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_fun] = ACTIONS(5131), [anon_sym_LBRACE] = ACTIONS(5133), [anon_sym_RBRACE] = ACTIONS(5133), [anon_sym_LPAREN] = ACTIONS(5133), @@ -181503,6 +180405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(5131), [anon_sym_where] = ACTIONS(5131), [anon_sym_object] = ACTIONS(5131), + [anon_sym_fun] = ACTIONS(5131), [anon_sym_DOT] = ACTIONS(5131), [anon_sym_SEMI] = ACTIONS(5133), [anon_sym_get] = ACTIONS(5131), @@ -181594,186 +180497,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5133), }, + [1150] = { + [sym__alpha_identifier] = ACTIONS(5135), + [anon_sym_AT] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_EQ] = ACTIONS(5135), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_where] = ACTIONS(5135), + [anon_sym_object] = ACTIONS(5135), + [anon_sym_fun] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(5137), + [anon_sym_get] = ACTIONS(5135), + [anon_sym_set] = ACTIONS(5135), + [anon_sym_this] = ACTIONS(5135), + [anon_sym_super] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [sym_label] = ACTIONS(5135), + [anon_sym_in] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5137), + [anon_sym_QMARK_COLON] = ACTIONS(5137), + [anon_sym_AMP_AMP] = ACTIONS(5137), + [anon_sym_PIPE_PIPE] = ACTIONS(5137), + [anon_sym_null] = ACTIONS(5135), + [anon_sym_if] = ACTIONS(5135), + [anon_sym_else] = ACTIONS(5135), + [anon_sym_when] = ACTIONS(5135), + [anon_sym_try] = ACTIONS(5135), + [anon_sym_throw] = ACTIONS(5135), + [anon_sym_return] = ACTIONS(5135), + [anon_sym_continue] = ACTIONS(5135), + [anon_sym_break] = ACTIONS(5135), + [anon_sym_COLON_COLON] = ACTIONS(5137), + [anon_sym_PLUS_EQ] = ACTIONS(5137), + [anon_sym_DASH_EQ] = ACTIONS(5137), + [anon_sym_STAR_EQ] = ACTIONS(5137), + [anon_sym_SLASH_EQ] = ACTIONS(5137), + [anon_sym_PERCENT_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5137), + [anon_sym_LT_EQ] = ACTIONS(5137), + [anon_sym_GT_EQ] = ACTIONS(5137), + [anon_sym_BANGin] = ACTIONS(5137), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_BANGis] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_as_QMARK] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5137), + [anon_sym_DASH_DASH] = ACTIONS(5137), + [anon_sym_BANG] = ACTIONS(5135), + [anon_sym_BANG_BANG] = ACTIONS(5137), + [anon_sym_suspend] = ACTIONS(5135), + [anon_sym_sealed] = ACTIONS(5135), + [anon_sym_annotation] = ACTIONS(5135), + [anon_sym_data] = ACTIONS(5135), + [anon_sym_inner] = ACTIONS(5135), + [anon_sym_value] = ACTIONS(5135), + [anon_sym_override] = ACTIONS(5135), + [anon_sym_lateinit] = ACTIONS(5135), + [anon_sym_public] = ACTIONS(5135), + [anon_sym_private] = ACTIONS(5135), + [anon_sym_internal] = ACTIONS(5135), + [anon_sym_protected] = ACTIONS(5135), + [anon_sym_tailrec] = ACTIONS(5135), + [anon_sym_operator] = ACTIONS(5135), + [anon_sym_infix] = ACTIONS(5135), + [anon_sym_inline] = ACTIONS(5135), + [anon_sym_external] = ACTIONS(5135), + [sym_property_modifier] = ACTIONS(5135), + [anon_sym_abstract] = ACTIONS(5135), + [anon_sym_final] = ACTIONS(5135), + [anon_sym_open] = ACTIONS(5135), + [anon_sym_vararg] = ACTIONS(5135), + [anon_sym_noinline] = ACTIONS(5135), + [anon_sym_crossinline] = ACTIONS(5135), + [anon_sym_expect] = ACTIONS(5135), + [anon_sym_actual] = ACTIONS(5135), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5137), + [anon_sym_continue_AT] = ACTIONS(5137), + [anon_sym_break_AT] = ACTIONS(5137), + [anon_sym_this_AT] = ACTIONS(5137), + [anon_sym_super_AT] = ACTIONS(5137), + [sym_real_literal] = ACTIONS(5137), + [sym_integer_literal] = ACTIONS(5135), + [sym_hex_literal] = ACTIONS(5137), + [sym_bin_literal] = ACTIONS(5137), + [anon_sym_true] = ACTIONS(5135), + [anon_sym_false] = ACTIONS(5135), + [anon_sym_SQUOTE] = ACTIONS(5137), + [sym__backtick_identifier] = ACTIONS(5137), + [sym__automatic_semicolon] = ACTIONS(5137), + [sym_safe_nav] = ACTIONS(5137), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5137), + }, [1151] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), + [sym__alpha_identifier] = ACTIONS(5139), + [anon_sym_AT] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(5139), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_where] = ACTIONS(5139), + [anon_sym_object] = ACTIONS(5139), + [anon_sym_fun] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5139), + [anon_sym_SEMI] = ACTIONS(5141), + [anon_sym_get] = ACTIONS(5139), + [anon_sym_set] = ACTIONS(5139), + [anon_sym_this] = ACTIONS(5139), + [anon_sym_super] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [sym_label] = ACTIONS(5139), + [anon_sym_in] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5141), + [anon_sym_QMARK_COLON] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_null] = ACTIONS(5139), + [anon_sym_if] = ACTIONS(5139), + [anon_sym_else] = ACTIONS(5139), + [anon_sym_when] = ACTIONS(5139), + [anon_sym_try] = ACTIONS(5139), + [anon_sym_throw] = ACTIONS(5139), + [anon_sym_return] = ACTIONS(5139), + [anon_sym_continue] = ACTIONS(5139), + [anon_sym_break] = ACTIONS(5139), + [anon_sym_COLON_COLON] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5141), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_BANGin] = ACTIONS(5141), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_BANGis] = ACTIONS(5141), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_as_QMARK] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_BANG] = ACTIONS(5139), + [anon_sym_BANG_BANG] = ACTIONS(5141), + [anon_sym_suspend] = ACTIONS(5139), + [anon_sym_sealed] = ACTIONS(5139), + [anon_sym_annotation] = ACTIONS(5139), + [anon_sym_data] = ACTIONS(5139), + [anon_sym_inner] = ACTIONS(5139), + [anon_sym_value] = ACTIONS(5139), + [anon_sym_override] = ACTIONS(5139), + [anon_sym_lateinit] = ACTIONS(5139), + [anon_sym_public] = ACTIONS(5139), + [anon_sym_private] = ACTIONS(5139), + [anon_sym_internal] = ACTIONS(5139), + [anon_sym_protected] = ACTIONS(5139), + [anon_sym_tailrec] = ACTIONS(5139), + [anon_sym_operator] = ACTIONS(5139), + [anon_sym_infix] = ACTIONS(5139), + [anon_sym_inline] = ACTIONS(5139), + [anon_sym_external] = ACTIONS(5139), + [sym_property_modifier] = ACTIONS(5139), + [anon_sym_abstract] = ACTIONS(5139), + [anon_sym_final] = ACTIONS(5139), + [anon_sym_open] = ACTIONS(5139), + [anon_sym_vararg] = ACTIONS(5139), + [anon_sym_noinline] = ACTIONS(5139), + [anon_sym_crossinline] = ACTIONS(5139), + [anon_sym_expect] = ACTIONS(5139), + [anon_sym_actual] = ACTIONS(5139), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5141), + [anon_sym_continue_AT] = ACTIONS(5141), + [anon_sym_break_AT] = ACTIONS(5141), + [anon_sym_this_AT] = ACTIONS(5141), + [anon_sym_super_AT] = ACTIONS(5141), + [sym_real_literal] = ACTIONS(5141), + [sym_integer_literal] = ACTIONS(5139), + [sym_hex_literal] = ACTIONS(5141), + [sym_bin_literal] = ACTIONS(5141), + [anon_sym_true] = ACTIONS(5139), + [anon_sym_false] = ACTIONS(5139), + [anon_sym_SQUOTE] = ACTIONS(5141), + [sym__backtick_identifier] = ACTIONS(5141), + [sym__automatic_semicolon] = ACTIONS(5141), + [sym_safe_nav] = ACTIONS(5141), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5141), }, [1152] = { - [sym_getter] = STATE(4045), - [sym_setter] = STATE(4045), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(5139), - [anon_sym_get] = ACTIONS(4846), - [anon_sym_set] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5143), + [anon_sym_get] = ACTIONS(5113), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -181802,759 +180811,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, [1153] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4293), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), + [sym__alpha_identifier] = ACTIONS(5145), + [anon_sym_AT] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_as] = ACTIONS(5145), + [anon_sym_EQ] = ACTIONS(5145), + [anon_sym_LBRACE] = ACTIONS(5147), + [anon_sym_RBRACE] = ACTIONS(5147), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_where] = ACTIONS(5145), + [anon_sym_object] = ACTIONS(5145), + [anon_sym_fun] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5145), + [anon_sym_SEMI] = ACTIONS(5147), + [anon_sym_get] = ACTIONS(5145), + [anon_sym_set] = ACTIONS(5145), + [anon_sym_this] = ACTIONS(5145), + [anon_sym_super] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [sym_label] = ACTIONS(5145), + [anon_sym_in] = ACTIONS(5145), + [anon_sym_DOT_DOT] = ACTIONS(5147), + [anon_sym_QMARK_COLON] = ACTIONS(5147), + [anon_sym_AMP_AMP] = ACTIONS(5147), + [anon_sym_PIPE_PIPE] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(5145), + [anon_sym_if] = ACTIONS(5145), + [anon_sym_else] = ACTIONS(5145), + [anon_sym_when] = ACTIONS(5145), + [anon_sym_try] = ACTIONS(5145), + [anon_sym_throw] = ACTIONS(5145), + [anon_sym_return] = ACTIONS(5145), + [anon_sym_continue] = ACTIONS(5145), + [anon_sym_break] = ACTIONS(5145), + [anon_sym_COLON_COLON] = ACTIONS(5147), + [anon_sym_PLUS_EQ] = ACTIONS(5147), + [anon_sym_DASH_EQ] = ACTIONS(5147), + [anon_sym_STAR_EQ] = ACTIONS(5147), + [anon_sym_SLASH_EQ] = ACTIONS(5147), + [anon_sym_PERCENT_EQ] = ACTIONS(5147), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5147), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5147), + [anon_sym_LT_EQ] = ACTIONS(5147), + [anon_sym_GT_EQ] = ACTIONS(5147), + [anon_sym_BANGin] = ACTIONS(5147), + [anon_sym_is] = ACTIONS(5145), + [anon_sym_BANGis] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_as_QMARK] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5147), + [anon_sym_DASH_DASH] = ACTIONS(5147), + [anon_sym_BANG] = ACTIONS(5145), + [anon_sym_BANG_BANG] = ACTIONS(5147), + [anon_sym_suspend] = ACTIONS(5145), + [anon_sym_sealed] = ACTIONS(5145), + [anon_sym_annotation] = ACTIONS(5145), + [anon_sym_data] = ACTIONS(5145), + [anon_sym_inner] = ACTIONS(5145), + [anon_sym_value] = ACTIONS(5145), + [anon_sym_override] = ACTIONS(5145), + [anon_sym_lateinit] = ACTIONS(5145), + [anon_sym_public] = ACTIONS(5145), + [anon_sym_private] = ACTIONS(5145), + [anon_sym_internal] = ACTIONS(5145), + [anon_sym_protected] = ACTIONS(5145), + [anon_sym_tailrec] = ACTIONS(5145), + [anon_sym_operator] = ACTIONS(5145), + [anon_sym_infix] = ACTIONS(5145), + [anon_sym_inline] = ACTIONS(5145), + [anon_sym_external] = ACTIONS(5145), + [sym_property_modifier] = ACTIONS(5145), + [anon_sym_abstract] = ACTIONS(5145), + [anon_sym_final] = ACTIONS(5145), + [anon_sym_open] = ACTIONS(5145), + [anon_sym_vararg] = ACTIONS(5145), + [anon_sym_noinline] = ACTIONS(5145), + [anon_sym_crossinline] = ACTIONS(5145), + [anon_sym_expect] = ACTIONS(5145), + [anon_sym_actual] = ACTIONS(5145), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5147), + [anon_sym_continue_AT] = ACTIONS(5147), + [anon_sym_break_AT] = ACTIONS(5147), + [anon_sym_this_AT] = ACTIONS(5147), + [anon_sym_super_AT] = ACTIONS(5147), + [sym_real_literal] = ACTIONS(5147), + [sym_integer_literal] = ACTIONS(5145), + [sym_hex_literal] = ACTIONS(5147), + [sym_bin_literal] = ACTIONS(5147), + [anon_sym_true] = ACTIONS(5145), + [anon_sym_false] = ACTIONS(5145), + [anon_sym_SQUOTE] = ACTIONS(5147), + [sym__backtick_identifier] = ACTIONS(5147), + [sym__automatic_semicolon] = ACTIONS(5147), + [sym_safe_nav] = ACTIONS(5147), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5147), }, [1154] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4948), - [anon_sym_fun] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_GT] = ACTIONS(4381), - [anon_sym_where] = ACTIONS(4381), - [anon_sym_object] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_this] = ACTIONS(4381), - [anon_sym_super] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [sym_label] = ACTIONS(4381), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_QMARK_COLON] = ACTIONS(4383), - [anon_sym_AMP_AMP] = ACTIONS(4383), - [anon_sym_PIPE_PIPE] = ACTIONS(4383), - [anon_sym_null] = ACTIONS(4381), - [anon_sym_if] = ACTIONS(4381), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_when] = ACTIONS(4381), - [anon_sym_try] = ACTIONS(4381), - [anon_sym_throw] = ACTIONS(4381), - [anon_sym_return] = ACTIONS(4381), - [anon_sym_continue] = ACTIONS(4381), - [anon_sym_break] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4950), - [anon_sym_DASH_EQ] = ACTIONS(4950), - [anon_sym_STAR_EQ] = ACTIONS(4950), - [anon_sym_SLASH_EQ] = ACTIONS(4950), - [anon_sym_PERCENT_EQ] = ACTIONS(4950), - [anon_sym_BANG_EQ] = ACTIONS(4381), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), - [anon_sym_EQ_EQ] = ACTIONS(4381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), - [anon_sym_LT_EQ] = ACTIONS(4383), - [anon_sym_GT_EQ] = ACTIONS(4383), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_as_QMARK] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG] = ACTIONS(4381), - [anon_sym_BANG_BANG] = ACTIONS(4383), - [anon_sym_suspend] = ACTIONS(4381), - [anon_sym_sealed] = ACTIONS(4381), - [anon_sym_annotation] = ACTIONS(4381), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_override] = ACTIONS(4381), - [anon_sym_lateinit] = ACTIONS(4381), - [anon_sym_public] = ACTIONS(4381), - [anon_sym_private] = ACTIONS(4381), - [anon_sym_internal] = ACTIONS(4381), - [anon_sym_protected] = ACTIONS(4381), - [anon_sym_tailrec] = ACTIONS(4381), - [anon_sym_operator] = ACTIONS(4381), - [anon_sym_infix] = ACTIONS(4381), - [anon_sym_inline] = ACTIONS(4381), - [anon_sym_external] = ACTIONS(4381), - [sym_property_modifier] = ACTIONS(4381), - [anon_sym_abstract] = ACTIONS(4381), - [anon_sym_final] = ACTIONS(4381), - [anon_sym_open] = ACTIONS(4381), - [anon_sym_vararg] = ACTIONS(4381), - [anon_sym_noinline] = ACTIONS(4381), - [anon_sym_crossinline] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4383), - [anon_sym_continue_AT] = ACTIONS(4383), - [anon_sym_break_AT] = ACTIONS(4383), - [anon_sym_this_AT] = ACTIONS(4383), - [anon_sym_super_AT] = ACTIONS(4383), - [sym_real_literal] = ACTIONS(4383), - [sym_integer_literal] = ACTIONS(4381), - [sym_hex_literal] = ACTIONS(4383), - [sym_bin_literal] = ACTIONS(4383), - [anon_sym_true] = ACTIONS(4381), - [anon_sym_false] = ACTIONS(4381), - [anon_sym_SQUOTE] = ACTIONS(4383), - [sym__backtick_identifier] = ACTIONS(4383), - [sym__automatic_semicolon] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4383), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4383), - }, - [1155] = { - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(4321), - [anon_sym_fun] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(4323), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_COMMA] = ACTIONS(4323), - [anon_sym_LT] = ACTIONS(4321), - [anon_sym_GT] = ACTIONS(4321), - [anon_sym_where] = ACTIONS(4321), - [anon_sym_object] = ACTIONS(4321), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_get] = ACTIONS(4321), - [anon_sym_set] = ACTIONS(4321), - [anon_sym_this] = ACTIONS(4321), - [anon_sym_super] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4321), - [anon_sym_in] = ACTIONS(4321), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_QMARK_COLON] = ACTIONS(4323), - [anon_sym_AMP_AMP] = ACTIONS(4323), - [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_null] = ACTIONS(4321), - [anon_sym_if] = ACTIONS(4321), - [anon_sym_else] = ACTIONS(4321), - [anon_sym_when] = ACTIONS(4321), - [anon_sym_try] = ACTIONS(4321), - [anon_sym_throw] = ACTIONS(4321), - [anon_sym_return] = ACTIONS(4321), - [anon_sym_continue] = ACTIONS(4321), - [anon_sym_break] = ACTIONS(4321), - [anon_sym_COLON_COLON] = ACTIONS(4323), - [anon_sym_PLUS_EQ] = ACTIONS(4323), - [anon_sym_DASH_EQ] = ACTIONS(4323), - [anon_sym_STAR_EQ] = ACTIONS(4323), - [anon_sym_SLASH_EQ] = ACTIONS(4323), - [anon_sym_PERCENT_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), - [anon_sym_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4323), - [anon_sym_BANGin] = ACTIONS(4323), - [anon_sym_is] = ACTIONS(4321), - [anon_sym_BANGis] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4321), - [anon_sym_as_QMARK] = ACTIONS(4323), - [anon_sym_PLUS_PLUS] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG] = ACTIONS(4321), - [anon_sym_BANG_BANG] = ACTIONS(4323), - [anon_sym_suspend] = ACTIONS(4321), - [anon_sym_sealed] = ACTIONS(4321), - [anon_sym_annotation] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4321), - [anon_sym_inner] = ACTIONS(4321), - [anon_sym_value] = ACTIONS(4321), - [anon_sym_override] = ACTIONS(4321), - [anon_sym_lateinit] = ACTIONS(4321), - [anon_sym_public] = ACTIONS(4321), - [anon_sym_private] = ACTIONS(4321), - [anon_sym_internal] = ACTIONS(4321), - [anon_sym_protected] = ACTIONS(4321), - [anon_sym_tailrec] = ACTIONS(4321), - [anon_sym_operator] = ACTIONS(4321), - [anon_sym_infix] = ACTIONS(4321), - [anon_sym_inline] = ACTIONS(4321), - [anon_sym_external] = ACTIONS(4321), - [sym_property_modifier] = ACTIONS(4321), - [anon_sym_abstract] = ACTIONS(4321), - [anon_sym_final] = ACTIONS(4321), - [anon_sym_open] = ACTIONS(4321), - [anon_sym_vararg] = ACTIONS(4321), - [anon_sym_noinline] = ACTIONS(4321), - [anon_sym_crossinline] = ACTIONS(4321), - [anon_sym_expect] = ACTIONS(4321), - [anon_sym_actual] = ACTIONS(4321), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4323), - [anon_sym_continue_AT] = ACTIONS(4323), - [anon_sym_break_AT] = ACTIONS(4323), - [anon_sym_this_AT] = ACTIONS(4323), - [anon_sym_super_AT] = ACTIONS(4323), - [sym_real_literal] = ACTIONS(4323), - [sym_integer_literal] = ACTIONS(4321), - [sym_hex_literal] = ACTIONS(4323), - [sym_bin_literal] = ACTIONS(4323), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [anon_sym_SQUOTE] = ACTIONS(4323), - [sym__backtick_identifier] = ACTIONS(4323), - [sym__automatic_semicolon] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4323), - }, - [1156] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(5032), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(5034), - [anon_sym_DASH_EQ] = ACTIONS(5034), - [anon_sym_STAR_EQ] = ACTIONS(5034), - [anon_sym_SLASH_EQ] = ACTIONS(5034), - [anon_sym_PERCENT_EQ] = ACTIONS(5034), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), - }, - [1157] = { - [sym__alpha_identifier] = ACTIONS(5141), - [anon_sym_AT] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_as] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_fun] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_RBRACE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5141), - [anon_sym_where] = ACTIONS(5141), - [anon_sym_object] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_get] = ACTIONS(5141), - [anon_sym_set] = ACTIONS(5141), - [anon_sym_this] = ACTIONS(5141), - [anon_sym_super] = ACTIONS(5141), - [anon_sym_STAR] = ACTIONS(5141), - [sym_label] = ACTIONS(5141), - [anon_sym_in] = ACTIONS(5141), - [anon_sym_DOT_DOT] = ACTIONS(5143), - [anon_sym_QMARK_COLON] = ACTIONS(5143), - [anon_sym_AMP_AMP] = ACTIONS(5143), - [anon_sym_PIPE_PIPE] = ACTIONS(5143), - [anon_sym_null] = ACTIONS(5141), - [anon_sym_if] = ACTIONS(5141), - [anon_sym_else] = ACTIONS(5141), - [anon_sym_when] = ACTIONS(5141), - [anon_sym_try] = ACTIONS(5141), - [anon_sym_throw] = ACTIONS(5141), - [anon_sym_return] = ACTIONS(5141), - [anon_sym_continue] = ACTIONS(5141), - [anon_sym_break] = ACTIONS(5141), - [anon_sym_COLON_COLON] = ACTIONS(5143), - [anon_sym_PLUS_EQ] = ACTIONS(5143), - [anon_sym_DASH_EQ] = ACTIONS(5143), - [anon_sym_STAR_EQ] = ACTIONS(5143), - [anon_sym_SLASH_EQ] = ACTIONS(5143), - [anon_sym_PERCENT_EQ] = ACTIONS(5143), - [anon_sym_BANG_EQ] = ACTIONS(5141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5143), - [anon_sym_EQ_EQ] = ACTIONS(5141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5143), - [anon_sym_LT_EQ] = ACTIONS(5143), - [anon_sym_GT_EQ] = ACTIONS(5143), - [anon_sym_BANGin] = ACTIONS(5143), - [anon_sym_is] = ACTIONS(5141), - [anon_sym_BANGis] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5141), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5141), - [anon_sym_PERCENT] = ACTIONS(5141), - [anon_sym_as_QMARK] = ACTIONS(5143), - [anon_sym_PLUS_PLUS] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5141), - [anon_sym_BANG_BANG] = ACTIONS(5143), - [anon_sym_suspend] = ACTIONS(5141), - [anon_sym_sealed] = ACTIONS(5141), - [anon_sym_annotation] = ACTIONS(5141), - [anon_sym_data] = ACTIONS(5141), - [anon_sym_inner] = ACTIONS(5141), - [anon_sym_value] = ACTIONS(5141), - [anon_sym_override] = ACTIONS(5141), - [anon_sym_lateinit] = ACTIONS(5141), - [anon_sym_public] = ACTIONS(5141), - [anon_sym_private] = ACTIONS(5141), - [anon_sym_internal] = ACTIONS(5141), - [anon_sym_protected] = ACTIONS(5141), - [anon_sym_tailrec] = ACTIONS(5141), - [anon_sym_operator] = ACTIONS(5141), - [anon_sym_infix] = ACTIONS(5141), - [anon_sym_inline] = ACTIONS(5141), - [anon_sym_external] = ACTIONS(5141), - [sym_property_modifier] = ACTIONS(5141), - [anon_sym_abstract] = ACTIONS(5141), - [anon_sym_final] = ACTIONS(5141), - [anon_sym_open] = ACTIONS(5141), - [anon_sym_vararg] = ACTIONS(5141), - [anon_sym_noinline] = ACTIONS(5141), - [anon_sym_crossinline] = ACTIONS(5141), - [anon_sym_expect] = ACTIONS(5141), - [anon_sym_actual] = ACTIONS(5141), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5143), - [anon_sym_continue_AT] = ACTIONS(5143), - [anon_sym_break_AT] = ACTIONS(5143), - [anon_sym_this_AT] = ACTIONS(5143), - [anon_sym_super_AT] = ACTIONS(5143), - [sym_real_literal] = ACTIONS(5143), - [sym_integer_literal] = ACTIONS(5141), - [sym_hex_literal] = ACTIONS(5143), - [sym_bin_literal] = ACTIONS(5143), - [anon_sym_true] = ACTIONS(5141), - [anon_sym_false] = ACTIONS(5141), - [anon_sym_SQUOTE] = ACTIONS(5143), - [sym__backtick_identifier] = ACTIONS(5143), - [sym__automatic_semicolon] = ACTIONS(5143), - [sym_safe_nav] = ACTIONS(5143), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5143), - }, - [1158] = { - [sym__alpha_identifier] = ACTIONS(5145), - [anon_sym_AT] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5147), - [anon_sym_as] = ACTIONS(5145), - [anon_sym_EQ] = ACTIONS(5145), - [anon_sym_fun] = ACTIONS(5145), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_RBRACE] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5145), - [anon_sym_where] = ACTIONS(5145), - [anon_sym_object] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_SEMI] = ACTIONS(5147), - [anon_sym_get] = ACTIONS(5145), - [anon_sym_set] = ACTIONS(5145), - [anon_sym_this] = ACTIONS(5145), - [anon_sym_super] = ACTIONS(5145), - [anon_sym_STAR] = ACTIONS(5145), - [sym_label] = ACTIONS(5145), - [anon_sym_in] = ACTIONS(5145), - [anon_sym_DOT_DOT] = ACTIONS(5147), - [anon_sym_QMARK_COLON] = ACTIONS(5147), - [anon_sym_AMP_AMP] = ACTIONS(5147), - [anon_sym_PIPE_PIPE] = ACTIONS(5147), - [anon_sym_null] = ACTIONS(5145), - [anon_sym_if] = ACTIONS(5145), - [anon_sym_else] = ACTIONS(5145), - [anon_sym_when] = ACTIONS(5145), - [anon_sym_try] = ACTIONS(5145), - [anon_sym_throw] = ACTIONS(5145), - [anon_sym_return] = ACTIONS(5145), - [anon_sym_continue] = ACTIONS(5145), - [anon_sym_break] = ACTIONS(5145), - [anon_sym_COLON_COLON] = ACTIONS(5147), - [anon_sym_PLUS_EQ] = ACTIONS(5147), - [anon_sym_DASH_EQ] = ACTIONS(5147), - [anon_sym_STAR_EQ] = ACTIONS(5147), - [anon_sym_SLASH_EQ] = ACTIONS(5147), - [anon_sym_PERCENT_EQ] = ACTIONS(5147), - [anon_sym_BANG_EQ] = ACTIONS(5145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5147), - [anon_sym_EQ_EQ] = ACTIONS(5145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5147), - [anon_sym_LT_EQ] = ACTIONS(5147), - [anon_sym_GT_EQ] = ACTIONS(5147), - [anon_sym_BANGin] = ACTIONS(5147), - [anon_sym_is] = ACTIONS(5145), - [anon_sym_BANGis] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5145), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5145), - [anon_sym_PERCENT] = ACTIONS(5145), - [anon_sym_as_QMARK] = ACTIONS(5147), - [anon_sym_PLUS_PLUS] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5145), - [anon_sym_BANG_BANG] = ACTIONS(5147), - [anon_sym_suspend] = ACTIONS(5145), - [anon_sym_sealed] = ACTIONS(5145), - [anon_sym_annotation] = ACTIONS(5145), - [anon_sym_data] = ACTIONS(5145), - [anon_sym_inner] = ACTIONS(5145), - [anon_sym_value] = ACTIONS(5145), - [anon_sym_override] = ACTIONS(5145), - [anon_sym_lateinit] = ACTIONS(5145), - [anon_sym_public] = ACTIONS(5145), - [anon_sym_private] = ACTIONS(5145), - [anon_sym_internal] = ACTIONS(5145), - [anon_sym_protected] = ACTIONS(5145), - [anon_sym_tailrec] = ACTIONS(5145), - [anon_sym_operator] = ACTIONS(5145), - [anon_sym_infix] = ACTIONS(5145), - [anon_sym_inline] = ACTIONS(5145), - [anon_sym_external] = ACTIONS(5145), - [sym_property_modifier] = ACTIONS(5145), - [anon_sym_abstract] = ACTIONS(5145), - [anon_sym_final] = ACTIONS(5145), - [anon_sym_open] = ACTIONS(5145), - [anon_sym_vararg] = ACTIONS(5145), - [anon_sym_noinline] = ACTIONS(5145), - [anon_sym_crossinline] = ACTIONS(5145), - [anon_sym_expect] = ACTIONS(5145), - [anon_sym_actual] = ACTIONS(5145), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5147), - [anon_sym_continue_AT] = ACTIONS(5147), - [anon_sym_break_AT] = ACTIONS(5147), - [anon_sym_this_AT] = ACTIONS(5147), - [anon_sym_super_AT] = ACTIONS(5147), - [sym_real_literal] = ACTIONS(5147), - [sym_integer_literal] = ACTIONS(5145), - [sym_hex_literal] = ACTIONS(5147), - [sym_bin_literal] = ACTIONS(5147), - [anon_sym_true] = ACTIONS(5145), - [anon_sym_false] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5147), - [sym__backtick_identifier] = ACTIONS(5147), - [sym__automatic_semicolon] = ACTIONS(5147), - [sym_safe_nav] = ACTIONS(5147), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5147), - }, - [1159] = { - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [1160] = { [sym__alpha_identifier] = ACTIONS(5149), [anon_sym_AT] = ACTIONS(5151), [anon_sym_LBRACK] = ACTIONS(5151), [anon_sym_as] = ACTIONS(5149), [anon_sym_EQ] = ACTIONS(5149), - [anon_sym_fun] = ACTIONS(5149), [anon_sym_LBRACE] = ACTIONS(5151), [anon_sym_RBRACE] = ACTIONS(5151), [anon_sym_LPAREN] = ACTIONS(5151), @@ -182563,6 +180935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(5149), [anon_sym_where] = ACTIONS(5149), [anon_sym_object] = ACTIONS(5149), + [anon_sym_fun] = ACTIONS(5149), [anon_sym_DOT] = ACTIONS(5149), [anon_sym_SEMI] = ACTIONS(5151), [anon_sym_get] = ACTIONS(5149), @@ -182654,292 +181027,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5151), }, - [1161] = { - [sym_getter] = STATE(5259), - [sym_setter] = STATE(5259), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(5153), - [anon_sym_get] = ACTIONS(4808), - [anon_sym_set] = ACTIONS(4810), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1162] = { - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), + [1155] = { + [sym__alpha_identifier] = ACTIONS(5153), + [anon_sym_AT] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_object] = ACTIONS(5153), + [anon_sym_fun] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5153), [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_get] = ACTIONS(4808), - [anon_sym_set] = ACTIONS(4810), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_this] = ACTIONS(5153), + [anon_sym_super] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [sym_label] = ACTIONS(5153), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5155), + [anon_sym_QMARK_COLON] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5155), + [anon_sym_null] = ACTIONS(5153), + [anon_sym_if] = ACTIONS(5153), + [anon_sym_else] = ACTIONS(5153), + [anon_sym_when] = ACTIONS(5153), + [anon_sym_try] = ACTIONS(5153), + [anon_sym_throw] = ACTIONS(5153), + [anon_sym_return] = ACTIONS(5153), + [anon_sym_continue] = ACTIONS(5153), + [anon_sym_break] = ACTIONS(5153), + [anon_sym_COLON_COLON] = ACTIONS(5155), + [anon_sym_PLUS_EQ] = ACTIONS(5155), + [anon_sym_DASH_EQ] = ACTIONS(5155), + [anon_sym_STAR_EQ] = ACTIONS(5155), + [anon_sym_SLASH_EQ] = ACTIONS(5155), + [anon_sym_PERCENT_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), + [anon_sym_LT_EQ] = ACTIONS(5155), + [anon_sym_GT_EQ] = ACTIONS(5155), + [anon_sym_BANGin] = ACTIONS(5155), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_BANGis] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_as_QMARK] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_BANG] = ACTIONS(5153), + [anon_sym_BANG_BANG] = ACTIONS(5155), + [anon_sym_suspend] = ACTIONS(5153), + [anon_sym_sealed] = ACTIONS(5153), + [anon_sym_annotation] = ACTIONS(5153), + [anon_sym_data] = ACTIONS(5153), + [anon_sym_inner] = ACTIONS(5153), + [anon_sym_value] = ACTIONS(5153), + [anon_sym_override] = ACTIONS(5153), + [anon_sym_lateinit] = ACTIONS(5153), + [anon_sym_public] = ACTIONS(5153), + [anon_sym_private] = ACTIONS(5153), + [anon_sym_internal] = ACTIONS(5153), + [anon_sym_protected] = ACTIONS(5153), + [anon_sym_tailrec] = ACTIONS(5153), + [anon_sym_operator] = ACTIONS(5153), + [anon_sym_infix] = ACTIONS(5153), + [anon_sym_inline] = ACTIONS(5153), + [anon_sym_external] = ACTIONS(5153), + [sym_property_modifier] = ACTIONS(5153), + [anon_sym_abstract] = ACTIONS(5153), + [anon_sym_final] = ACTIONS(5153), + [anon_sym_open] = ACTIONS(5153), + [anon_sym_vararg] = ACTIONS(5153), + [anon_sym_noinline] = ACTIONS(5153), + [anon_sym_crossinline] = ACTIONS(5153), + [anon_sym_expect] = ACTIONS(5153), + [anon_sym_actual] = ACTIONS(5153), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5155), + [anon_sym_continue_AT] = ACTIONS(5155), + [anon_sym_break_AT] = ACTIONS(5155), + [anon_sym_this_AT] = ACTIONS(5155), + [anon_sym_super_AT] = ACTIONS(5155), + [sym_real_literal] = ACTIONS(5155), + [sym_integer_literal] = ACTIONS(5153), + [sym_hex_literal] = ACTIONS(5155), + [sym_bin_literal] = ACTIONS(5155), + [anon_sym_true] = ACTIONS(5153), + [anon_sym_false] = ACTIONS(5153), + [anon_sym_SQUOTE] = ACTIONS(5155), + [sym__backtick_identifier] = ACTIONS(5155), + [sym__automatic_semicolon] = ACTIONS(5155), + [sym_safe_nav] = ACTIONS(5155), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5155), }, - [1163] = { - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [1156] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), [anon_sym_SEMI] = ACTIONS(5157), - [anon_sym_get] = ACTIONS(4808), - [anon_sym_set] = ACTIONS(4810), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_get] = ACTIONS(5113), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -182968,229 +181235,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1164] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_this] = ACTIONS(4355), - [anon_sym_super] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4355), - [sym_label] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [anon_sym_if] = ACTIONS(4355), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4355), - [anon_sym_try] = ACTIONS(4355), - [anon_sym_throw] = ACTIONS(4355), - [anon_sym_return] = ACTIONS(4355), - [anon_sym_continue] = ACTIONS(4355), - [anon_sym_break] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4353), - [anon_sym_continue_AT] = ACTIONS(4353), - [anon_sym_break_AT] = ACTIONS(4353), - [anon_sym_this_AT] = ACTIONS(4353), - [anon_sym_super_AT] = ACTIONS(4353), - [sym_real_literal] = ACTIONS(4353), - [sym_integer_literal] = ACTIONS(4355), - [sym_hex_literal] = ACTIONS(4353), - [sym_bin_literal] = ACTIONS(4353), - [anon_sym_true] = ACTIONS(4355), - [anon_sym_false] = ACTIONS(4355), - [anon_sym_SQUOTE] = ACTIONS(4353), - [sym__backtick_identifier] = ACTIONS(4353), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4353), }, - [1165] = { - [sym__alpha_identifier] = ACTIONS(5161), - [anon_sym_AT] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5163), - [anon_sym_as] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_fun] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_RBRACE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5161), - [anon_sym_where] = ACTIONS(5161), - [anon_sym_object] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_get] = ACTIONS(5161), - [anon_sym_set] = ACTIONS(5161), - [anon_sym_this] = ACTIONS(5161), - [anon_sym_super] = ACTIONS(5161), - [anon_sym_STAR] = ACTIONS(5161), - [sym_label] = ACTIONS(5161), - [anon_sym_in] = ACTIONS(5161), - [anon_sym_DOT_DOT] = ACTIONS(5163), - [anon_sym_QMARK_COLON] = ACTIONS(5163), - [anon_sym_AMP_AMP] = ACTIONS(5163), - [anon_sym_PIPE_PIPE] = ACTIONS(5163), - [anon_sym_null] = ACTIONS(5161), - [anon_sym_if] = ACTIONS(5161), - [anon_sym_else] = ACTIONS(5161), - [anon_sym_when] = ACTIONS(5161), - [anon_sym_try] = ACTIONS(5161), - [anon_sym_throw] = ACTIONS(5161), - [anon_sym_return] = ACTIONS(5161), - [anon_sym_continue] = ACTIONS(5161), - [anon_sym_break] = ACTIONS(5161), - [anon_sym_COLON_COLON] = ACTIONS(5163), - [anon_sym_PLUS_EQ] = ACTIONS(5163), - [anon_sym_DASH_EQ] = ACTIONS(5163), - [anon_sym_STAR_EQ] = ACTIONS(5163), - [anon_sym_SLASH_EQ] = ACTIONS(5163), - [anon_sym_PERCENT_EQ] = ACTIONS(5163), - [anon_sym_BANG_EQ] = ACTIONS(5161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5163), - [anon_sym_EQ_EQ] = ACTIONS(5161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5163), - [anon_sym_LT_EQ] = ACTIONS(5163), - [anon_sym_GT_EQ] = ACTIONS(5163), - [anon_sym_BANGin] = ACTIONS(5163), - [anon_sym_is] = ACTIONS(5161), - [anon_sym_BANGis] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5161), - [anon_sym_PERCENT] = ACTIONS(5161), - [anon_sym_as_QMARK] = ACTIONS(5163), - [anon_sym_PLUS_PLUS] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5161), - [anon_sym_BANG_BANG] = ACTIONS(5163), - [anon_sym_suspend] = ACTIONS(5161), - [anon_sym_sealed] = ACTIONS(5161), - [anon_sym_annotation] = ACTIONS(5161), - [anon_sym_data] = ACTIONS(5161), - [anon_sym_inner] = ACTIONS(5161), - [anon_sym_value] = ACTIONS(5161), - [anon_sym_override] = ACTIONS(5161), - [anon_sym_lateinit] = ACTIONS(5161), - [anon_sym_public] = ACTIONS(5161), - [anon_sym_private] = ACTIONS(5161), - [anon_sym_internal] = ACTIONS(5161), - [anon_sym_protected] = ACTIONS(5161), - [anon_sym_tailrec] = ACTIONS(5161), - [anon_sym_operator] = ACTIONS(5161), - [anon_sym_infix] = ACTIONS(5161), - [anon_sym_inline] = ACTIONS(5161), - [anon_sym_external] = ACTIONS(5161), - [sym_property_modifier] = ACTIONS(5161), - [anon_sym_abstract] = ACTIONS(5161), - [anon_sym_final] = ACTIONS(5161), - [anon_sym_open] = ACTIONS(5161), - [anon_sym_vararg] = ACTIONS(5161), - [anon_sym_noinline] = ACTIONS(5161), - [anon_sym_crossinline] = ACTIONS(5161), - [anon_sym_expect] = ACTIONS(5161), - [anon_sym_actual] = ACTIONS(5161), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5163), - [anon_sym_continue_AT] = ACTIONS(5163), - [anon_sym_break_AT] = ACTIONS(5163), - [anon_sym_this_AT] = ACTIONS(5163), - [anon_sym_super_AT] = ACTIONS(5163), - [sym_real_literal] = ACTIONS(5163), - [sym_integer_literal] = ACTIONS(5161), - [sym_hex_literal] = ACTIONS(5163), - [sym_bin_literal] = ACTIONS(5163), - [anon_sym_true] = ACTIONS(5161), - [anon_sym_false] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5163), - [sym__backtick_identifier] = ACTIONS(5163), - [sym__automatic_semicolon] = ACTIONS(5163), - [sym_safe_nav] = ACTIONS(5163), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5163), + [1157] = { + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, - [1166] = { + [1158] = { [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(1792), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), @@ -183199,6 +181359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1790), [anon_sym_where] = ACTIONS(1790), [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(1792), [anon_sym_get] = ACTIONS(1790), @@ -183290,339 +181451,657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [1167] = { - [sym__alpha_identifier] = ACTIONS(5165), - [anon_sym_AT] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [anon_sym_as] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_fun] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_RBRACE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_where] = ACTIONS(5165), - [anon_sym_object] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_get] = ACTIONS(5165), - [anon_sym_set] = ACTIONS(5165), - [anon_sym_this] = ACTIONS(5165), - [anon_sym_super] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [sym_label] = ACTIONS(5165), - [anon_sym_in] = ACTIONS(5165), - [anon_sym_DOT_DOT] = ACTIONS(5167), - [anon_sym_QMARK_COLON] = ACTIONS(5167), - [anon_sym_AMP_AMP] = ACTIONS(5167), - [anon_sym_PIPE_PIPE] = ACTIONS(5167), - [anon_sym_null] = ACTIONS(5165), - [anon_sym_if] = ACTIONS(5165), - [anon_sym_else] = ACTIONS(5165), - [anon_sym_when] = ACTIONS(5165), - [anon_sym_try] = ACTIONS(5165), - [anon_sym_throw] = ACTIONS(5165), - [anon_sym_return] = ACTIONS(5165), - [anon_sym_continue] = ACTIONS(5165), - [anon_sym_break] = ACTIONS(5165), - [anon_sym_COLON_COLON] = ACTIONS(5167), - [anon_sym_PLUS_EQ] = ACTIONS(5167), - [anon_sym_DASH_EQ] = ACTIONS(5167), - [anon_sym_STAR_EQ] = ACTIONS(5167), - [anon_sym_SLASH_EQ] = ACTIONS(5167), - [anon_sym_PERCENT_EQ] = ACTIONS(5167), - [anon_sym_BANG_EQ] = ACTIONS(5165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5167), - [anon_sym_EQ_EQ] = ACTIONS(5165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5167), - [anon_sym_LT_EQ] = ACTIONS(5167), - [anon_sym_GT_EQ] = ACTIONS(5167), - [anon_sym_BANGin] = ACTIONS(5167), - [anon_sym_is] = ACTIONS(5165), - [anon_sym_BANGis] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_PERCENT] = ACTIONS(5165), - [anon_sym_as_QMARK] = ACTIONS(5167), - [anon_sym_PLUS_PLUS] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5165), - [anon_sym_BANG_BANG] = ACTIONS(5167), - [anon_sym_suspend] = ACTIONS(5165), - [anon_sym_sealed] = ACTIONS(5165), - [anon_sym_annotation] = ACTIONS(5165), - [anon_sym_data] = ACTIONS(5165), - [anon_sym_inner] = ACTIONS(5165), - [anon_sym_value] = ACTIONS(5165), - [anon_sym_override] = ACTIONS(5165), - [anon_sym_lateinit] = ACTIONS(5165), - [anon_sym_public] = ACTIONS(5165), - [anon_sym_private] = ACTIONS(5165), - [anon_sym_internal] = ACTIONS(5165), - [anon_sym_protected] = ACTIONS(5165), - [anon_sym_tailrec] = ACTIONS(5165), - [anon_sym_operator] = ACTIONS(5165), - [anon_sym_infix] = ACTIONS(5165), - [anon_sym_inline] = ACTIONS(5165), - [anon_sym_external] = ACTIONS(5165), - [sym_property_modifier] = ACTIONS(5165), - [anon_sym_abstract] = ACTIONS(5165), - [anon_sym_final] = ACTIONS(5165), - [anon_sym_open] = ACTIONS(5165), - [anon_sym_vararg] = ACTIONS(5165), - [anon_sym_noinline] = ACTIONS(5165), - [anon_sym_crossinline] = ACTIONS(5165), - [anon_sym_expect] = ACTIONS(5165), - [anon_sym_actual] = ACTIONS(5165), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5167), - [anon_sym_continue_AT] = ACTIONS(5167), - [anon_sym_break_AT] = ACTIONS(5167), - [anon_sym_this_AT] = ACTIONS(5167), - [anon_sym_super_AT] = ACTIONS(5167), - [sym_real_literal] = ACTIONS(5167), - [sym_integer_literal] = ACTIONS(5165), - [sym_hex_literal] = ACTIONS(5167), - [sym_bin_literal] = ACTIONS(5167), - [anon_sym_true] = ACTIONS(5165), - [anon_sym_false] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5167), - [sym__backtick_identifier] = ACTIONS(5167), - [sym__automatic_semicolon] = ACTIONS(5167), - [sym_safe_nav] = ACTIONS(5167), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5167), + [1159] = { + [sym__alpha_identifier] = ACTIONS(5159), + [anon_sym_AT] = ACTIONS(5161), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym_as] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5161), + [anon_sym_RBRACE] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5161), + [anon_sym_COMMA] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5159), + [anon_sym_GT] = ACTIONS(5159), + [anon_sym_where] = ACTIONS(5159), + [anon_sym_object] = ACTIONS(5159), + [anon_sym_fun] = ACTIONS(5159), + [anon_sym_DOT] = ACTIONS(5159), + [anon_sym_SEMI] = ACTIONS(5161), + [anon_sym_get] = ACTIONS(5159), + [anon_sym_set] = ACTIONS(5159), + [anon_sym_this] = ACTIONS(5159), + [anon_sym_super] = ACTIONS(5159), + [anon_sym_STAR] = ACTIONS(5159), + [sym_label] = ACTIONS(5159), + [anon_sym_in] = ACTIONS(5159), + [anon_sym_DOT_DOT] = ACTIONS(5161), + [anon_sym_QMARK_COLON] = ACTIONS(5161), + [anon_sym_AMP_AMP] = ACTIONS(5161), + [anon_sym_PIPE_PIPE] = ACTIONS(5161), + [anon_sym_null] = ACTIONS(5159), + [anon_sym_if] = ACTIONS(5159), + [anon_sym_else] = ACTIONS(5159), + [anon_sym_when] = ACTIONS(5159), + [anon_sym_try] = ACTIONS(5159), + [anon_sym_throw] = ACTIONS(5159), + [anon_sym_return] = ACTIONS(5159), + [anon_sym_continue] = ACTIONS(5159), + [anon_sym_break] = ACTIONS(5159), + [anon_sym_COLON_COLON] = ACTIONS(5161), + [anon_sym_PLUS_EQ] = ACTIONS(5161), + [anon_sym_DASH_EQ] = ACTIONS(5161), + [anon_sym_STAR_EQ] = ACTIONS(5161), + [anon_sym_SLASH_EQ] = ACTIONS(5161), + [anon_sym_PERCENT_EQ] = ACTIONS(5161), + [anon_sym_BANG_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5161), + [anon_sym_EQ_EQ] = ACTIONS(5159), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5161), + [anon_sym_LT_EQ] = ACTIONS(5161), + [anon_sym_GT_EQ] = ACTIONS(5161), + [anon_sym_BANGin] = ACTIONS(5161), + [anon_sym_is] = ACTIONS(5159), + [anon_sym_BANGis] = ACTIONS(5161), + [anon_sym_PLUS] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5159), + [anon_sym_SLASH] = ACTIONS(5159), + [anon_sym_PERCENT] = ACTIONS(5159), + [anon_sym_as_QMARK] = ACTIONS(5161), + [anon_sym_PLUS_PLUS] = ACTIONS(5161), + [anon_sym_DASH_DASH] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5159), + [anon_sym_BANG_BANG] = ACTIONS(5161), + [anon_sym_suspend] = ACTIONS(5159), + [anon_sym_sealed] = ACTIONS(5159), + [anon_sym_annotation] = ACTIONS(5159), + [anon_sym_data] = ACTIONS(5159), + [anon_sym_inner] = ACTIONS(5159), + [anon_sym_value] = ACTIONS(5159), + [anon_sym_override] = ACTIONS(5159), + [anon_sym_lateinit] = ACTIONS(5159), + [anon_sym_public] = ACTIONS(5159), + [anon_sym_private] = ACTIONS(5159), + [anon_sym_internal] = ACTIONS(5159), + [anon_sym_protected] = ACTIONS(5159), + [anon_sym_tailrec] = ACTIONS(5159), + [anon_sym_operator] = ACTIONS(5159), + [anon_sym_infix] = ACTIONS(5159), + [anon_sym_inline] = ACTIONS(5159), + [anon_sym_external] = ACTIONS(5159), + [sym_property_modifier] = ACTIONS(5159), + [anon_sym_abstract] = ACTIONS(5159), + [anon_sym_final] = ACTIONS(5159), + [anon_sym_open] = ACTIONS(5159), + [anon_sym_vararg] = ACTIONS(5159), + [anon_sym_noinline] = ACTIONS(5159), + [anon_sym_crossinline] = ACTIONS(5159), + [anon_sym_expect] = ACTIONS(5159), + [anon_sym_actual] = ACTIONS(5159), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5161), + [anon_sym_continue_AT] = ACTIONS(5161), + [anon_sym_break_AT] = ACTIONS(5161), + [anon_sym_this_AT] = ACTIONS(5161), + [anon_sym_super_AT] = ACTIONS(5161), + [sym_real_literal] = ACTIONS(5161), + [sym_integer_literal] = ACTIONS(5159), + [sym_hex_literal] = ACTIONS(5161), + [sym_bin_literal] = ACTIONS(5161), + [anon_sym_true] = ACTIONS(5159), + [anon_sym_false] = ACTIONS(5159), + [anon_sym_SQUOTE] = ACTIONS(5161), + [sym__backtick_identifier] = ACTIONS(5161), + [sym__automatic_semicolon] = ACTIONS(5161), + [sym_safe_nav] = ACTIONS(5161), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5161), }, - [1168] = { - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), + [1160] = { + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(1802), + [anon_sym_sealed] = ACTIONS(1802), + [anon_sym_annotation] = ACTIONS(1802), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_override] = ACTIONS(1802), + [anon_sym_lateinit] = ACTIONS(1802), + [anon_sym_public] = ACTIONS(1802), + [anon_sym_private] = ACTIONS(1802), + [anon_sym_internal] = ACTIONS(1802), + [anon_sym_protected] = ACTIONS(1802), + [anon_sym_tailrec] = ACTIONS(1802), + [anon_sym_operator] = ACTIONS(1802), + [anon_sym_infix] = ACTIONS(1802), + [anon_sym_inline] = ACTIONS(1802), + [anon_sym_external] = ACTIONS(1802), + [sym_property_modifier] = ACTIONS(1802), + [anon_sym_abstract] = ACTIONS(1802), + [anon_sym_final] = ACTIONS(1802), + [anon_sym_open] = ACTIONS(1802), + [anon_sym_vararg] = ACTIONS(1802), + [anon_sym_noinline] = ACTIONS(1802), + [anon_sym_crossinline] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [1169] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), + [1161] = { + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_object] = ACTIONS(4633), + [anon_sym_fun] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_this] = ACTIONS(4633), + [anon_sym_super] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [sym_label] = ACTIONS(4633), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_null] = ACTIONS(4633), + [anon_sym_if] = ACTIONS(4633), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_when] = ACTIONS(4633), + [anon_sym_try] = ACTIONS(4633), + [anon_sym_throw] = ACTIONS(4633), + [anon_sym_return] = ACTIONS(4633), + [anon_sym_continue] = ACTIONS(4633), + [anon_sym_break] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4633), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4635), + [anon_sym_continue_AT] = ACTIONS(4635), + [anon_sym_break_AT] = ACTIONS(4635), + [anon_sym_this_AT] = ACTIONS(4635), + [anon_sym_super_AT] = ACTIONS(4635), + [sym_real_literal] = ACTIONS(4635), + [sym_integer_literal] = ACTIONS(4633), + [sym_hex_literal] = ACTIONS(4635), + [sym_bin_literal] = ACTIONS(4635), + [anon_sym_true] = ACTIONS(4633), + [anon_sym_false] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4635), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4635), + }, + [1162] = { + [sym__alpha_identifier] = ACTIONS(5163), + [anon_sym_AT] = ACTIONS(5165), + [anon_sym_LBRACK] = ACTIONS(5165), + [anon_sym_as] = ACTIONS(5163), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5165), + [anon_sym_RBRACE] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5165), + [anon_sym_COMMA] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5163), + [anon_sym_GT] = ACTIONS(5163), + [anon_sym_where] = ACTIONS(5163), + [anon_sym_object] = ACTIONS(5163), + [anon_sym_fun] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5163), + [anon_sym_SEMI] = ACTIONS(5165), + [anon_sym_get] = ACTIONS(5163), + [anon_sym_set] = ACTIONS(5163), + [anon_sym_this] = ACTIONS(5163), + [anon_sym_super] = ACTIONS(5163), + [anon_sym_STAR] = ACTIONS(5163), + [sym_label] = ACTIONS(5163), + [anon_sym_in] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_QMARK_COLON] = ACTIONS(5165), + [anon_sym_AMP_AMP] = ACTIONS(5165), + [anon_sym_PIPE_PIPE] = ACTIONS(5165), + [anon_sym_null] = ACTIONS(5163), + [anon_sym_if] = ACTIONS(5163), + [anon_sym_else] = ACTIONS(5163), + [anon_sym_when] = ACTIONS(5163), + [anon_sym_try] = ACTIONS(5163), + [anon_sym_throw] = ACTIONS(5163), + [anon_sym_return] = ACTIONS(5163), + [anon_sym_continue] = ACTIONS(5163), + [anon_sym_break] = ACTIONS(5163), + [anon_sym_COLON_COLON] = ACTIONS(5165), + [anon_sym_PLUS_EQ] = ACTIONS(5165), + [anon_sym_DASH_EQ] = ACTIONS(5165), + [anon_sym_STAR_EQ] = ACTIONS(5165), + [anon_sym_SLASH_EQ] = ACTIONS(5165), + [anon_sym_PERCENT_EQ] = ACTIONS(5165), + [anon_sym_BANG_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5165), + [anon_sym_EQ_EQ] = ACTIONS(5163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5165), + [anon_sym_LT_EQ] = ACTIONS(5165), + [anon_sym_GT_EQ] = ACTIONS(5165), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(5163), + [anon_sym_BANGis] = ACTIONS(5165), + [anon_sym_PLUS] = ACTIONS(5163), + [anon_sym_DASH] = ACTIONS(5163), + [anon_sym_SLASH] = ACTIONS(5163), + [anon_sym_PERCENT] = ACTIONS(5163), + [anon_sym_as_QMARK] = ACTIONS(5165), + [anon_sym_PLUS_PLUS] = ACTIONS(5165), + [anon_sym_DASH_DASH] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5163), + [anon_sym_BANG_BANG] = ACTIONS(5165), + [anon_sym_suspend] = ACTIONS(5163), + [anon_sym_sealed] = ACTIONS(5163), + [anon_sym_annotation] = ACTIONS(5163), + [anon_sym_data] = ACTIONS(5163), + [anon_sym_inner] = ACTIONS(5163), + [anon_sym_value] = ACTIONS(5163), + [anon_sym_override] = ACTIONS(5163), + [anon_sym_lateinit] = ACTIONS(5163), + [anon_sym_public] = ACTIONS(5163), + [anon_sym_private] = ACTIONS(5163), + [anon_sym_internal] = ACTIONS(5163), + [anon_sym_protected] = ACTIONS(5163), + [anon_sym_tailrec] = ACTIONS(5163), + [anon_sym_operator] = ACTIONS(5163), + [anon_sym_infix] = ACTIONS(5163), + [anon_sym_inline] = ACTIONS(5163), + [anon_sym_external] = ACTIONS(5163), + [sym_property_modifier] = ACTIONS(5163), + [anon_sym_abstract] = ACTIONS(5163), + [anon_sym_final] = ACTIONS(5163), + [anon_sym_open] = ACTIONS(5163), + [anon_sym_vararg] = ACTIONS(5163), + [anon_sym_noinline] = ACTIONS(5163), + [anon_sym_crossinline] = ACTIONS(5163), + [anon_sym_expect] = ACTIONS(5163), + [anon_sym_actual] = ACTIONS(5163), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5165), + [anon_sym_continue_AT] = ACTIONS(5165), + [anon_sym_break_AT] = ACTIONS(5165), + [anon_sym_this_AT] = ACTIONS(5165), + [anon_sym_super_AT] = ACTIONS(5165), + [sym_real_literal] = ACTIONS(5165), + [sym_integer_literal] = ACTIONS(5163), + [sym_hex_literal] = ACTIONS(5165), + [sym_bin_literal] = ACTIONS(5165), + [anon_sym_true] = ACTIONS(5163), + [anon_sym_false] = ACTIONS(5163), + [anon_sym_SQUOTE] = ACTIONS(5165), + [sym__backtick_identifier] = ACTIONS(5165), + [sym__automatic_semicolon] = ACTIONS(5165), + [sym_safe_nav] = ACTIONS(5165), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5165), + }, + [1163] = { + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(1814), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(1814), + [anon_sym_sealed] = ACTIONS(1814), + [anon_sym_annotation] = ACTIONS(1814), + [anon_sym_data] = ACTIONS(1814), + [anon_sym_inner] = ACTIONS(1814), + [anon_sym_value] = ACTIONS(1814), + [anon_sym_override] = ACTIONS(1814), + [anon_sym_lateinit] = ACTIONS(1814), + [anon_sym_public] = ACTIONS(1814), + [anon_sym_private] = ACTIONS(1814), + [anon_sym_internal] = ACTIONS(1814), + [anon_sym_protected] = ACTIONS(1814), + [anon_sym_tailrec] = ACTIONS(1814), + [anon_sym_operator] = ACTIONS(1814), + [anon_sym_infix] = ACTIONS(1814), + [anon_sym_inline] = ACTIONS(1814), + [anon_sym_external] = ACTIONS(1814), + [sym_property_modifier] = ACTIONS(1814), + [anon_sym_abstract] = ACTIONS(1814), + [anon_sym_final] = ACTIONS(1814), + [anon_sym_open] = ACTIONS(1814), + [anon_sym_vararg] = ACTIONS(1814), + [anon_sym_noinline] = ACTIONS(1814), + [anon_sym_crossinline] = ACTIONS(1814), + [anon_sym_expect] = ACTIONS(1814), + [anon_sym_actual] = ACTIONS(1814), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), + }, + [1164] = { + [sym__alpha_identifier] = ACTIONS(5167), + [anon_sym_AT] = ACTIONS(5169), + [anon_sym_LBRACK] = ACTIONS(5169), + [anon_sym_as] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5169), + [anon_sym_RBRACE] = ACTIONS(5169), [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_this] = ACTIONS(4244), - [anon_sym_super] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4244), - [anon_sym_if] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4244), - [anon_sym_try] = ACTIONS(4244), - [anon_sym_throw] = ACTIONS(4244), - [anon_sym_return] = ACTIONS(4244), - [anon_sym_continue] = ACTIONS(4244), - [anon_sym_break] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4242), - [anon_sym_continue_AT] = ACTIONS(4242), - [anon_sym_break_AT] = ACTIONS(4242), - [anon_sym_this_AT] = ACTIONS(4242), - [anon_sym_super_AT] = ACTIONS(4242), - [sym_real_literal] = ACTIONS(4242), - [sym_integer_literal] = ACTIONS(4244), - [sym_hex_literal] = ACTIONS(4242), - [sym_bin_literal] = ACTIONS(4242), - [anon_sym_true] = ACTIONS(4244), - [anon_sym_false] = ACTIONS(4244), - [anon_sym_SQUOTE] = ACTIONS(4242), - [sym__backtick_identifier] = ACTIONS(4242), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5167), + [anon_sym_GT] = ACTIONS(5167), + [anon_sym_where] = ACTIONS(5167), + [anon_sym_object] = ACTIONS(5167), + [anon_sym_fun] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5167), + [anon_sym_SEMI] = ACTIONS(5169), + [anon_sym_get] = ACTIONS(5167), + [anon_sym_set] = ACTIONS(5167), + [anon_sym_this] = ACTIONS(5167), + [anon_sym_super] = ACTIONS(5167), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(5167), + [anon_sym_in] = ACTIONS(5167), + [anon_sym_DOT_DOT] = ACTIONS(5169), + [anon_sym_QMARK_COLON] = ACTIONS(5169), + [anon_sym_AMP_AMP] = ACTIONS(5169), + [anon_sym_PIPE_PIPE] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5167), + [anon_sym_if] = ACTIONS(5167), + [anon_sym_else] = ACTIONS(5167), + [anon_sym_when] = ACTIONS(5167), + [anon_sym_try] = ACTIONS(5167), + [anon_sym_throw] = ACTIONS(5167), + [anon_sym_return] = ACTIONS(5167), + [anon_sym_continue] = ACTIONS(5167), + [anon_sym_break] = ACTIONS(5167), + [anon_sym_COLON_COLON] = ACTIONS(5169), + [anon_sym_PLUS_EQ] = ACTIONS(5169), + [anon_sym_DASH_EQ] = ACTIONS(5169), + [anon_sym_STAR_EQ] = ACTIONS(5169), + [anon_sym_SLASH_EQ] = ACTIONS(5169), + [anon_sym_PERCENT_EQ] = ACTIONS(5169), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5169), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5169), + [anon_sym_LT_EQ] = ACTIONS(5169), + [anon_sym_GT_EQ] = ACTIONS(5169), + [anon_sym_BANGin] = ACTIONS(5169), + [anon_sym_is] = ACTIONS(5167), + [anon_sym_BANGis] = ACTIONS(5169), + [anon_sym_PLUS] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5167), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(5169), + [anon_sym_PLUS_PLUS] = ACTIONS(5169), + [anon_sym_DASH_DASH] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5167), + [anon_sym_BANG_BANG] = ACTIONS(5169), + [anon_sym_suspend] = ACTIONS(5167), + [anon_sym_sealed] = ACTIONS(5167), + [anon_sym_annotation] = ACTIONS(5167), + [anon_sym_data] = ACTIONS(5167), + [anon_sym_inner] = ACTIONS(5167), + [anon_sym_value] = ACTIONS(5167), + [anon_sym_override] = ACTIONS(5167), + [anon_sym_lateinit] = ACTIONS(5167), + [anon_sym_public] = ACTIONS(5167), + [anon_sym_private] = ACTIONS(5167), + [anon_sym_internal] = ACTIONS(5167), + [anon_sym_protected] = ACTIONS(5167), + [anon_sym_tailrec] = ACTIONS(5167), + [anon_sym_operator] = ACTIONS(5167), + [anon_sym_infix] = ACTIONS(5167), + [anon_sym_inline] = ACTIONS(5167), + [anon_sym_external] = ACTIONS(5167), + [sym_property_modifier] = ACTIONS(5167), + [anon_sym_abstract] = ACTIONS(5167), + [anon_sym_final] = ACTIONS(5167), + [anon_sym_open] = ACTIONS(5167), + [anon_sym_vararg] = ACTIONS(5167), + [anon_sym_noinline] = ACTIONS(5167), + [anon_sym_crossinline] = ACTIONS(5167), + [anon_sym_expect] = ACTIONS(5167), + [anon_sym_actual] = ACTIONS(5167), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5169), + [anon_sym_continue_AT] = ACTIONS(5169), + [anon_sym_break_AT] = ACTIONS(5169), + [anon_sym_this_AT] = ACTIONS(5169), + [anon_sym_super_AT] = ACTIONS(5169), + [sym_real_literal] = ACTIONS(5169), + [sym_integer_literal] = ACTIONS(5167), + [sym_hex_literal] = ACTIONS(5169), + [sym_bin_literal] = ACTIONS(5169), + [anon_sym_true] = ACTIONS(5167), + [anon_sym_false] = ACTIONS(5167), + [anon_sym_SQUOTE] = ACTIONS(5169), + [sym__backtick_identifier] = ACTIONS(5169), + [sym__automatic_semicolon] = ACTIONS(5169), + [sym_safe_nav] = ACTIONS(5169), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5169), }, - [1170] = { + [1165] = { [sym__alpha_identifier] = ACTIONS(5171), [anon_sym_AT] = ACTIONS(5173), [anon_sym_LBRACK] = ACTIONS(5173), [anon_sym_as] = ACTIONS(5171), [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_fun] = ACTIONS(5171), [anon_sym_LBRACE] = ACTIONS(5173), [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(5175), + [anon_sym_LPAREN] = ACTIONS(5173), [anon_sym_COMMA] = ACTIONS(5173), [anon_sym_LT] = ACTIONS(5171), [anon_sym_GT] = ACTIONS(5171), [anon_sym_where] = ACTIONS(5171), [anon_sym_object] = ACTIONS(5171), + [anon_sym_fun] = ACTIONS(5171), [anon_sym_DOT] = ACTIONS(5171), [anon_sym_SEMI] = ACTIONS(5173), [anon_sym_get] = ACTIONS(5171), @@ -183714,119 +182193,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5173), }, - [1171] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_fun] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), + [1166] = { + [sym__alpha_identifier] = ACTIONS(5175), + [anon_sym_AT] = ACTIONS(5177), + [anon_sym_LBRACK] = ACTIONS(5177), + [anon_sym_as] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5177), + [anon_sym_COMMA] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5175), + [anon_sym_GT] = ACTIONS(5175), + [anon_sym_where] = ACTIONS(5175), + [anon_sym_object] = ACTIONS(5175), + [anon_sym_fun] = ACTIONS(5175), + [anon_sym_DOT] = ACTIONS(5175), + [anon_sym_SEMI] = ACTIONS(5177), + [anon_sym_get] = ACTIONS(5175), + [anon_sym_set] = ACTIONS(5175), + [anon_sym_this] = ACTIONS(5175), + [anon_sym_super] = ACTIONS(5175), + [anon_sym_STAR] = ACTIONS(5175), + [sym_label] = ACTIONS(5175), + [anon_sym_in] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5177), + [anon_sym_QMARK_COLON] = ACTIONS(5177), + [anon_sym_AMP_AMP] = ACTIONS(5177), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_null] = ACTIONS(5175), + [anon_sym_if] = ACTIONS(5175), + [anon_sym_else] = ACTIONS(5175), + [anon_sym_when] = ACTIONS(5175), + [anon_sym_try] = ACTIONS(5175), + [anon_sym_throw] = ACTIONS(5175), + [anon_sym_return] = ACTIONS(5175), + [anon_sym_continue] = ACTIONS(5175), + [anon_sym_break] = ACTIONS(5175), + [anon_sym_COLON_COLON] = ACTIONS(5177), + [anon_sym_PLUS_EQ] = ACTIONS(5177), + [anon_sym_DASH_EQ] = ACTIONS(5177), + [anon_sym_STAR_EQ] = ACTIONS(5177), + [anon_sym_SLASH_EQ] = ACTIONS(5177), + [anon_sym_PERCENT_EQ] = ACTIONS(5177), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5177), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5177), + [anon_sym_LT_EQ] = ACTIONS(5177), + [anon_sym_GT_EQ] = ACTIONS(5177), + [anon_sym_BANGin] = ACTIONS(5177), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_BANGis] = ACTIONS(5177), + [anon_sym_PLUS] = ACTIONS(5175), + [anon_sym_DASH] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5175), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_as_QMARK] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5177), + [anon_sym_DASH_DASH] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5175), + [anon_sym_BANG_BANG] = ACTIONS(5177), + [anon_sym_suspend] = ACTIONS(5175), + [anon_sym_sealed] = ACTIONS(5175), + [anon_sym_annotation] = ACTIONS(5175), + [anon_sym_data] = ACTIONS(5175), + [anon_sym_inner] = ACTIONS(5175), + [anon_sym_value] = ACTIONS(5175), + [anon_sym_override] = ACTIONS(5175), + [anon_sym_lateinit] = ACTIONS(5175), + [anon_sym_public] = ACTIONS(5175), + [anon_sym_private] = ACTIONS(5175), + [anon_sym_internal] = ACTIONS(5175), + [anon_sym_protected] = ACTIONS(5175), + [anon_sym_tailrec] = ACTIONS(5175), + [anon_sym_operator] = ACTIONS(5175), + [anon_sym_infix] = ACTIONS(5175), + [anon_sym_inline] = ACTIONS(5175), + [anon_sym_external] = ACTIONS(5175), + [sym_property_modifier] = ACTIONS(5175), + [anon_sym_abstract] = ACTIONS(5175), + [anon_sym_final] = ACTIONS(5175), + [anon_sym_open] = ACTIONS(5175), + [anon_sym_vararg] = ACTIONS(5175), + [anon_sym_noinline] = ACTIONS(5175), + [anon_sym_crossinline] = ACTIONS(5175), + [anon_sym_expect] = ACTIONS(5175), + [anon_sym_actual] = ACTIONS(5175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5177), + [anon_sym_continue_AT] = ACTIONS(5177), + [anon_sym_break_AT] = ACTIONS(5177), + [anon_sym_this_AT] = ACTIONS(5177), + [anon_sym_super_AT] = ACTIONS(5177), + [sym_real_literal] = ACTIONS(5177), + [sym_integer_literal] = ACTIONS(5175), + [sym_hex_literal] = ACTIONS(5177), + [sym_bin_literal] = ACTIONS(5177), + [anon_sym_true] = ACTIONS(5175), + [anon_sym_false] = ACTIONS(5175), + [anon_sym_SQUOTE] = ACTIONS(5177), + [sym__backtick_identifier] = ACTIONS(5177), + [sym__automatic_semicolon] = ACTIONS(5177), + [sym_safe_nav] = ACTIONS(5177), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5177), + }, + [1167] = { + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(4465), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), + }, + [1168] = { + [sym__alpha_identifier] = ACTIONS(5179), + [anon_sym_AT] = ACTIONS(5181), + [anon_sym_LBRACK] = ACTIONS(5181), + [anon_sym_as] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5181), + [anon_sym_RBRACE] = ACTIONS(5181), [anon_sym_LPAREN] = ACTIONS(5181), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_where] = ACTIONS(5177), - [anon_sym_object] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_this] = ACTIONS(5177), - [anon_sym_super] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [sym_label] = ACTIONS(5177), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_null] = ACTIONS(5177), - [anon_sym_if] = ACTIONS(5177), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_when] = ACTIONS(5177), - [anon_sym_try] = ACTIONS(5177), - [anon_sym_throw] = ACTIONS(5177), - [anon_sym_return] = ACTIONS(5177), - [anon_sym_continue] = ACTIONS(5177), - [anon_sym_break] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_PLUS_EQ] = ACTIONS(5179), - [anon_sym_DASH_EQ] = ACTIONS(5179), - [anon_sym_STAR_EQ] = ACTIONS(5179), - [anon_sym_SLASH_EQ] = ACTIONS(5179), - [anon_sym_PERCENT_EQ] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5177), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_suspend] = ACTIONS(5177), - [anon_sym_sealed] = ACTIONS(5177), - [anon_sym_annotation] = ACTIONS(5177), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_override] = ACTIONS(5177), - [anon_sym_lateinit] = ACTIONS(5177), - [anon_sym_public] = ACTIONS(5177), - [anon_sym_private] = ACTIONS(5177), - [anon_sym_internal] = ACTIONS(5177), - [anon_sym_protected] = ACTIONS(5177), - [anon_sym_tailrec] = ACTIONS(5177), - [anon_sym_operator] = ACTIONS(5177), - [anon_sym_infix] = ACTIONS(5177), - [anon_sym_inline] = ACTIONS(5177), - [anon_sym_external] = ACTIONS(5177), - [sym_property_modifier] = ACTIONS(5177), - [anon_sym_abstract] = ACTIONS(5177), - [anon_sym_final] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(5177), - [anon_sym_vararg] = ACTIONS(5177), - [anon_sym_noinline] = ACTIONS(5177), - [anon_sym_crossinline] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5179), - [anon_sym_continue_AT] = ACTIONS(5179), - [anon_sym_break_AT] = ACTIONS(5179), - [anon_sym_this_AT] = ACTIONS(5179), - [anon_sym_super_AT] = ACTIONS(5179), - [sym_real_literal] = ACTIONS(5179), - [sym_integer_literal] = ACTIONS(5177), - [sym_hex_literal] = ACTIONS(5179), - [sym_bin_literal] = ACTIONS(5179), - [anon_sym_true] = ACTIONS(5177), - [anon_sym_false] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5179), - [sym__backtick_identifier] = ACTIONS(5179), - [sym__automatic_semicolon] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5179), + [anon_sym_COMMA] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5179), + [anon_sym_GT] = ACTIONS(5179), + [anon_sym_where] = ACTIONS(5179), + [anon_sym_object] = ACTIONS(5179), + [anon_sym_fun] = ACTIONS(5179), + [anon_sym_DOT] = ACTIONS(5179), + [anon_sym_SEMI] = ACTIONS(5181), + [anon_sym_get] = ACTIONS(5179), + [anon_sym_set] = ACTIONS(5179), + [anon_sym_this] = ACTIONS(5179), + [anon_sym_super] = ACTIONS(5179), + [anon_sym_STAR] = ACTIONS(5179), + [sym_label] = ACTIONS(5179), + [anon_sym_in] = ACTIONS(5179), + [anon_sym_DOT_DOT] = ACTIONS(5181), + [anon_sym_QMARK_COLON] = ACTIONS(5181), + [anon_sym_AMP_AMP] = ACTIONS(5181), + [anon_sym_PIPE_PIPE] = ACTIONS(5181), + [anon_sym_null] = ACTIONS(5179), + [anon_sym_if] = ACTIONS(5179), + [anon_sym_else] = ACTIONS(5179), + [anon_sym_when] = ACTIONS(5179), + [anon_sym_try] = ACTIONS(5179), + [anon_sym_throw] = ACTIONS(5179), + [anon_sym_return] = ACTIONS(5179), + [anon_sym_continue] = ACTIONS(5179), + [anon_sym_break] = ACTIONS(5179), + [anon_sym_COLON_COLON] = ACTIONS(5181), + [anon_sym_PLUS_EQ] = ACTIONS(5181), + [anon_sym_DASH_EQ] = ACTIONS(5181), + [anon_sym_STAR_EQ] = ACTIONS(5181), + [anon_sym_SLASH_EQ] = ACTIONS(5181), + [anon_sym_PERCENT_EQ] = ACTIONS(5181), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5181), + [anon_sym_GT_EQ] = ACTIONS(5181), + [anon_sym_BANGin] = ACTIONS(5181), + [anon_sym_is] = ACTIONS(5179), + [anon_sym_BANGis] = ACTIONS(5181), + [anon_sym_PLUS] = ACTIONS(5179), + [anon_sym_DASH] = ACTIONS(5179), + [anon_sym_SLASH] = ACTIONS(5179), + [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_as_QMARK] = ACTIONS(5181), + [anon_sym_PLUS_PLUS] = ACTIONS(5181), + [anon_sym_DASH_DASH] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5179), + [anon_sym_BANG_BANG] = ACTIONS(5181), + [anon_sym_suspend] = ACTIONS(5179), + [anon_sym_sealed] = ACTIONS(5179), + [anon_sym_annotation] = ACTIONS(5179), + [anon_sym_data] = ACTIONS(5179), + [anon_sym_inner] = ACTIONS(5179), + [anon_sym_value] = ACTIONS(5179), + [anon_sym_override] = ACTIONS(5179), + [anon_sym_lateinit] = ACTIONS(5179), + [anon_sym_public] = ACTIONS(5179), + [anon_sym_private] = ACTIONS(5179), + [anon_sym_internal] = ACTIONS(5179), + [anon_sym_protected] = ACTIONS(5179), + [anon_sym_tailrec] = ACTIONS(5179), + [anon_sym_operator] = ACTIONS(5179), + [anon_sym_infix] = ACTIONS(5179), + [anon_sym_inline] = ACTIONS(5179), + [anon_sym_external] = ACTIONS(5179), + [sym_property_modifier] = ACTIONS(5179), + [anon_sym_abstract] = ACTIONS(5179), + [anon_sym_final] = ACTIONS(5179), + [anon_sym_open] = ACTIONS(5179), + [anon_sym_vararg] = ACTIONS(5179), + [anon_sym_noinline] = ACTIONS(5179), + [anon_sym_crossinline] = ACTIONS(5179), + [anon_sym_expect] = ACTIONS(5179), + [anon_sym_actual] = ACTIONS(5179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5181), + [anon_sym_continue_AT] = ACTIONS(5181), + [anon_sym_break_AT] = ACTIONS(5181), + [anon_sym_this_AT] = ACTIONS(5181), + [anon_sym_super_AT] = ACTIONS(5181), + [sym_real_literal] = ACTIONS(5181), + [sym_integer_literal] = ACTIONS(5179), + [sym_hex_literal] = ACTIONS(5181), + [sym_bin_literal] = ACTIONS(5181), + [anon_sym_true] = ACTIONS(5179), + [anon_sym_false] = ACTIONS(5179), + [anon_sym_SQUOTE] = ACTIONS(5181), + [sym__backtick_identifier] = ACTIONS(5181), + [sym__automatic_semicolon] = ACTIONS(5181), + [sym_safe_nav] = ACTIONS(5181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5181), }, - [1172] = { + [1169] = { [sym__alpha_identifier] = ACTIONS(5183), [anon_sym_AT] = ACTIONS(5185), [anon_sym_LBRACK] = ACTIONS(5185), [anon_sym_as] = ACTIONS(5183), [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_fun] = ACTIONS(5183), [anon_sym_LBRACE] = ACTIONS(5185), [anon_sym_RBRACE] = ACTIONS(5185), [anon_sym_LPAREN] = ACTIONS(5185), @@ -183835,6 +182525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(5183), [anon_sym_where] = ACTIONS(5183), [anon_sym_object] = ACTIONS(5183), + [anon_sym_fun] = ACTIONS(5183), [anon_sym_DOT] = ACTIONS(5183), [anon_sym_SEMI] = ACTIONS(5185), [anon_sym_get] = ACTIONS(5183), @@ -183926,13 +182617,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5185), }, - [1173] = { + [1170] = { [sym__alpha_identifier] = ACTIONS(5187), [anon_sym_AT] = ACTIONS(5189), [anon_sym_LBRACK] = ACTIONS(5189), [anon_sym_as] = ACTIONS(5187), [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_fun] = ACTIONS(5187), [anon_sym_LBRACE] = ACTIONS(5189), [anon_sym_RBRACE] = ACTIONS(5189), [anon_sym_LPAREN] = ACTIONS(5189), @@ -183941,6 +182631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(5187), [anon_sym_where] = ACTIONS(5187), [anon_sym_object] = ACTIONS(5187), + [anon_sym_fun] = ACTIONS(5187), [anon_sym_DOT] = ACTIONS(5187), [anon_sym_SEMI] = ACTIONS(5189), [anon_sym_get] = ACTIONS(5187), @@ -184032,80 +182723,822 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5189), }, + [1171] = { + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_object] = ACTIONS(4000), + [anon_sym_fun] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_this] = ACTIONS(4000), + [anon_sym_super] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_null] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_when] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4002), + [anon_sym_continue_AT] = ACTIONS(4002), + [anon_sym_break_AT] = ACTIONS(4002), + [anon_sym_this_AT] = ACTIONS(4002), + [anon_sym_super_AT] = ACTIONS(4002), + [sym_real_literal] = ACTIONS(4002), + [sym_integer_literal] = ACTIONS(4000), + [sym_hex_literal] = ACTIONS(4002), + [sym_bin_literal] = ACTIONS(4002), + [anon_sym_true] = ACTIONS(4000), + [anon_sym_false] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4002), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4002), + }, + [1172] = { + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_object] = ACTIONS(4493), + [anon_sym_fun] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_this] = ACTIONS(4493), + [anon_sym_super] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_null] = ACTIONS(4493), + [anon_sym_if] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_when] = ACTIONS(4493), + [anon_sym_try] = ACTIONS(4493), + [anon_sym_throw] = ACTIONS(4493), + [anon_sym_return] = ACTIONS(4493), + [anon_sym_continue] = ACTIONS(4493), + [anon_sym_break] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4495), + [anon_sym_continue_AT] = ACTIONS(4495), + [anon_sym_break_AT] = ACTIONS(4495), + [anon_sym_this_AT] = ACTIONS(4495), + [anon_sym_super_AT] = ACTIONS(4495), + [sym_real_literal] = ACTIONS(4495), + [sym_integer_literal] = ACTIONS(4493), + [sym_hex_literal] = ACTIONS(4495), + [sym_bin_literal] = ACTIONS(4495), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [anon_sym_SQUOTE] = ACTIONS(4495), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4495), + }, + [1173] = { + [sym__alpha_identifier] = ACTIONS(5191), + [anon_sym_AT] = ACTIONS(5193), + [anon_sym_LBRACK] = ACTIONS(5193), + [anon_sym_as] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(5193), + [anon_sym_RBRACE] = ACTIONS(5193), + [anon_sym_LPAREN] = ACTIONS(5193), + [anon_sym_COMMA] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5191), + [anon_sym_GT] = ACTIONS(5191), + [anon_sym_where] = ACTIONS(5191), + [anon_sym_object] = ACTIONS(5191), + [anon_sym_fun] = ACTIONS(5191), + [anon_sym_DOT] = ACTIONS(5191), + [anon_sym_SEMI] = ACTIONS(5193), + [anon_sym_get] = ACTIONS(5191), + [anon_sym_set] = ACTIONS(5191), + [anon_sym_this] = ACTIONS(5191), + [anon_sym_super] = ACTIONS(5191), + [anon_sym_STAR] = ACTIONS(5191), + [sym_label] = ACTIONS(5191), + [anon_sym_in] = ACTIONS(5191), + [anon_sym_DOT_DOT] = ACTIONS(5193), + [anon_sym_QMARK_COLON] = ACTIONS(5193), + [anon_sym_AMP_AMP] = ACTIONS(5193), + [anon_sym_PIPE_PIPE] = ACTIONS(5193), + [anon_sym_null] = ACTIONS(5191), + [anon_sym_if] = ACTIONS(5191), + [anon_sym_else] = ACTIONS(5191), + [anon_sym_when] = ACTIONS(5191), + [anon_sym_try] = ACTIONS(5191), + [anon_sym_throw] = ACTIONS(5191), + [anon_sym_return] = ACTIONS(5191), + [anon_sym_continue] = ACTIONS(5191), + [anon_sym_break] = ACTIONS(5191), + [anon_sym_COLON_COLON] = ACTIONS(5193), + [anon_sym_PLUS_EQ] = ACTIONS(5193), + [anon_sym_DASH_EQ] = ACTIONS(5193), + [anon_sym_STAR_EQ] = ACTIONS(5193), + [anon_sym_SLASH_EQ] = ACTIONS(5193), + [anon_sym_PERCENT_EQ] = ACTIONS(5193), + [anon_sym_BANG_EQ] = ACTIONS(5191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5193), + [anon_sym_EQ_EQ] = ACTIONS(5191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5193), + [anon_sym_LT_EQ] = ACTIONS(5193), + [anon_sym_GT_EQ] = ACTIONS(5193), + [anon_sym_BANGin] = ACTIONS(5193), + [anon_sym_is] = ACTIONS(5191), + [anon_sym_BANGis] = ACTIONS(5193), + [anon_sym_PLUS] = ACTIONS(5191), + [anon_sym_DASH] = ACTIONS(5191), + [anon_sym_SLASH] = ACTIONS(5191), + [anon_sym_PERCENT] = ACTIONS(5191), + [anon_sym_as_QMARK] = ACTIONS(5193), + [anon_sym_PLUS_PLUS] = ACTIONS(5193), + [anon_sym_DASH_DASH] = ACTIONS(5193), + [anon_sym_BANG] = ACTIONS(5191), + [anon_sym_BANG_BANG] = ACTIONS(5193), + [anon_sym_suspend] = ACTIONS(5191), + [anon_sym_sealed] = ACTIONS(5191), + [anon_sym_annotation] = ACTIONS(5191), + [anon_sym_data] = ACTIONS(5191), + [anon_sym_inner] = ACTIONS(5191), + [anon_sym_value] = ACTIONS(5191), + [anon_sym_override] = ACTIONS(5191), + [anon_sym_lateinit] = ACTIONS(5191), + [anon_sym_public] = ACTIONS(5191), + [anon_sym_private] = ACTIONS(5191), + [anon_sym_internal] = ACTIONS(5191), + [anon_sym_protected] = ACTIONS(5191), + [anon_sym_tailrec] = ACTIONS(5191), + [anon_sym_operator] = ACTIONS(5191), + [anon_sym_infix] = ACTIONS(5191), + [anon_sym_inline] = ACTIONS(5191), + [anon_sym_external] = ACTIONS(5191), + [sym_property_modifier] = ACTIONS(5191), + [anon_sym_abstract] = ACTIONS(5191), + [anon_sym_final] = ACTIONS(5191), + [anon_sym_open] = ACTIONS(5191), + [anon_sym_vararg] = ACTIONS(5191), + [anon_sym_noinline] = ACTIONS(5191), + [anon_sym_crossinline] = ACTIONS(5191), + [anon_sym_expect] = ACTIONS(5191), + [anon_sym_actual] = ACTIONS(5191), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5193), + [anon_sym_continue_AT] = ACTIONS(5193), + [anon_sym_break_AT] = ACTIONS(5193), + [anon_sym_this_AT] = ACTIONS(5193), + [anon_sym_super_AT] = ACTIONS(5193), + [sym_real_literal] = ACTIONS(5193), + [sym_integer_literal] = ACTIONS(5191), + [sym_hex_literal] = ACTIONS(5193), + [sym_bin_literal] = ACTIONS(5193), + [anon_sym_true] = ACTIONS(5191), + [anon_sym_false] = ACTIONS(5191), + [anon_sym_SQUOTE] = ACTIONS(5193), + [sym__backtick_identifier] = ACTIONS(5193), + [sym__automatic_semicolon] = ACTIONS(5193), + [sym_safe_nav] = ACTIONS(5193), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5193), + }, [1174] = { - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4483), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_object] = ACTIONS(4481), + [anon_sym_fun] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_this] = ACTIONS(4481), + [anon_sym_super] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_null] = ACTIONS(4481), + [anon_sym_if] = ACTIONS(4481), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_when] = ACTIONS(4481), + [anon_sym_try] = ACTIONS(4481), + [anon_sym_throw] = ACTIONS(4481), + [anon_sym_return] = ACTIONS(4481), + [anon_sym_continue] = ACTIONS(4481), + [anon_sym_break] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4481), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4483), + [anon_sym_continue_AT] = ACTIONS(4483), + [anon_sym_break_AT] = ACTIONS(4483), + [anon_sym_this_AT] = ACTIONS(4483), + [anon_sym_super_AT] = ACTIONS(4483), + [sym_real_literal] = ACTIONS(4483), + [sym_integer_literal] = ACTIONS(4481), + [sym_hex_literal] = ACTIONS(4483), + [sym_bin_literal] = ACTIONS(4483), + [anon_sym_true] = ACTIONS(4481), + [anon_sym_false] = ACTIONS(4481), + [anon_sym_SQUOTE] = ACTIONS(4483), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4483), + }, + [1175] = { + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), + }, + [1176] = { + [sym__alpha_identifier] = ACTIONS(5195), + [anon_sym_AT] = ACTIONS(5197), + [anon_sym_LBRACK] = ACTIONS(5197), + [anon_sym_as] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5197), + [anon_sym_RBRACE] = ACTIONS(5197), + [anon_sym_LPAREN] = ACTIONS(5197), + [anon_sym_COMMA] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5195), + [anon_sym_GT] = ACTIONS(5195), + [anon_sym_where] = ACTIONS(5195), + [anon_sym_object] = ACTIONS(5195), + [anon_sym_fun] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5195), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym_get] = ACTIONS(5195), + [anon_sym_set] = ACTIONS(5195), + [anon_sym_this] = ACTIONS(5195), + [anon_sym_super] = ACTIONS(5195), + [anon_sym_STAR] = ACTIONS(5195), + [sym_label] = ACTIONS(5195), + [anon_sym_in] = ACTIONS(5195), + [anon_sym_DOT_DOT] = ACTIONS(5197), + [anon_sym_QMARK_COLON] = ACTIONS(5197), + [anon_sym_AMP_AMP] = ACTIONS(5197), + [anon_sym_PIPE_PIPE] = ACTIONS(5197), + [anon_sym_null] = ACTIONS(5195), + [anon_sym_if] = ACTIONS(5195), + [anon_sym_else] = ACTIONS(5195), + [anon_sym_when] = ACTIONS(5195), + [anon_sym_try] = ACTIONS(5195), + [anon_sym_throw] = ACTIONS(5195), + [anon_sym_return] = ACTIONS(5195), + [anon_sym_continue] = ACTIONS(5195), + [anon_sym_break] = ACTIONS(5195), + [anon_sym_COLON_COLON] = ACTIONS(5197), + [anon_sym_PLUS_EQ] = ACTIONS(5197), + [anon_sym_DASH_EQ] = ACTIONS(5197), + [anon_sym_STAR_EQ] = ACTIONS(5197), + [anon_sym_SLASH_EQ] = ACTIONS(5197), + [anon_sym_PERCENT_EQ] = ACTIONS(5197), + [anon_sym_BANG_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5197), + [anon_sym_EQ_EQ] = ACTIONS(5195), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5197), + [anon_sym_LT_EQ] = ACTIONS(5197), + [anon_sym_GT_EQ] = ACTIONS(5197), + [anon_sym_BANGin] = ACTIONS(5197), + [anon_sym_is] = ACTIONS(5195), + [anon_sym_BANGis] = ACTIONS(5197), + [anon_sym_PLUS] = ACTIONS(5195), + [anon_sym_DASH] = ACTIONS(5195), + [anon_sym_SLASH] = ACTIONS(5195), + [anon_sym_PERCENT] = ACTIONS(5195), + [anon_sym_as_QMARK] = ACTIONS(5197), + [anon_sym_PLUS_PLUS] = ACTIONS(5197), + [anon_sym_DASH_DASH] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5195), + [anon_sym_BANG_BANG] = ACTIONS(5197), + [anon_sym_suspend] = ACTIONS(5195), + [anon_sym_sealed] = ACTIONS(5195), + [anon_sym_annotation] = ACTIONS(5195), + [anon_sym_data] = ACTIONS(5195), + [anon_sym_inner] = ACTIONS(5195), + [anon_sym_value] = ACTIONS(5195), + [anon_sym_override] = ACTIONS(5195), + [anon_sym_lateinit] = ACTIONS(5195), + [anon_sym_public] = ACTIONS(5195), + [anon_sym_private] = ACTIONS(5195), + [anon_sym_internal] = ACTIONS(5195), + [anon_sym_protected] = ACTIONS(5195), + [anon_sym_tailrec] = ACTIONS(5195), + [anon_sym_operator] = ACTIONS(5195), + [anon_sym_infix] = ACTIONS(5195), + [anon_sym_inline] = ACTIONS(5195), + [anon_sym_external] = ACTIONS(5195), + [sym_property_modifier] = ACTIONS(5195), + [anon_sym_abstract] = ACTIONS(5195), + [anon_sym_final] = ACTIONS(5195), + [anon_sym_open] = ACTIONS(5195), + [anon_sym_vararg] = ACTIONS(5195), + [anon_sym_noinline] = ACTIONS(5195), + [anon_sym_crossinline] = ACTIONS(5195), + [anon_sym_expect] = ACTIONS(5195), + [anon_sym_actual] = ACTIONS(5195), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5197), + [anon_sym_continue_AT] = ACTIONS(5197), + [anon_sym_break_AT] = ACTIONS(5197), + [anon_sym_this_AT] = ACTIONS(5197), + [anon_sym_super_AT] = ACTIONS(5197), + [sym_real_literal] = ACTIONS(5197), + [sym_integer_literal] = ACTIONS(5195), + [sym_hex_literal] = ACTIONS(5197), + [sym_bin_literal] = ACTIONS(5197), + [anon_sym_true] = ACTIONS(5195), + [anon_sym_false] = ACTIONS(5195), + [anon_sym_SQUOTE] = ACTIONS(5197), + [sym__backtick_identifier] = ACTIONS(5197), + [sym__automatic_semicolon] = ACTIONS(5197), + [sym_safe_nav] = ACTIONS(5197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5197), + }, + [1177] = { + [sym__alpha_identifier] = ACTIONS(5199), + [anon_sym_AT] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(5201), + [anon_sym_as] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_LBRACE] = ACTIONS(5201), + [anon_sym_RBRACE] = ACTIONS(5201), + [anon_sym_LPAREN] = ACTIONS(5201), + [anon_sym_COMMA] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5199), + [anon_sym_GT] = ACTIONS(5199), + [anon_sym_where] = ACTIONS(5199), + [anon_sym_object] = ACTIONS(5199), + [anon_sym_fun] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5199), + [anon_sym_SEMI] = ACTIONS(5201), + [anon_sym_get] = ACTIONS(5199), + [anon_sym_set] = ACTIONS(5199), + [anon_sym_this] = ACTIONS(5199), + [anon_sym_super] = ACTIONS(5199), + [anon_sym_STAR] = ACTIONS(5199), + [sym_label] = ACTIONS(5199), + [anon_sym_in] = ACTIONS(5199), + [anon_sym_DOT_DOT] = ACTIONS(5201), + [anon_sym_QMARK_COLON] = ACTIONS(5201), + [anon_sym_AMP_AMP] = ACTIONS(5201), + [anon_sym_PIPE_PIPE] = ACTIONS(5201), + [anon_sym_null] = ACTIONS(5199), + [anon_sym_if] = ACTIONS(5199), + [anon_sym_else] = ACTIONS(5199), + [anon_sym_when] = ACTIONS(5199), + [anon_sym_try] = ACTIONS(5199), + [anon_sym_throw] = ACTIONS(5199), + [anon_sym_return] = ACTIONS(5199), + [anon_sym_continue] = ACTIONS(5199), + [anon_sym_break] = ACTIONS(5199), + [anon_sym_COLON_COLON] = ACTIONS(5201), + [anon_sym_PLUS_EQ] = ACTIONS(5201), + [anon_sym_DASH_EQ] = ACTIONS(5201), + [anon_sym_STAR_EQ] = ACTIONS(5201), + [anon_sym_SLASH_EQ] = ACTIONS(5201), + [anon_sym_PERCENT_EQ] = ACTIONS(5201), + [anon_sym_BANG_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5201), + [anon_sym_EQ_EQ] = ACTIONS(5199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5201), + [anon_sym_LT_EQ] = ACTIONS(5201), + [anon_sym_GT_EQ] = ACTIONS(5201), + [anon_sym_BANGin] = ACTIONS(5201), + [anon_sym_is] = ACTIONS(5199), + [anon_sym_BANGis] = ACTIONS(5201), + [anon_sym_PLUS] = ACTIONS(5199), + [anon_sym_DASH] = ACTIONS(5199), + [anon_sym_SLASH] = ACTIONS(5199), + [anon_sym_PERCENT] = ACTIONS(5199), + [anon_sym_as_QMARK] = ACTIONS(5201), + [anon_sym_PLUS_PLUS] = ACTIONS(5201), + [anon_sym_DASH_DASH] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5199), + [anon_sym_BANG_BANG] = ACTIONS(5201), + [anon_sym_suspend] = ACTIONS(5199), + [anon_sym_sealed] = ACTIONS(5199), + [anon_sym_annotation] = ACTIONS(5199), + [anon_sym_data] = ACTIONS(5199), + [anon_sym_inner] = ACTIONS(5199), + [anon_sym_value] = ACTIONS(5199), + [anon_sym_override] = ACTIONS(5199), + [anon_sym_lateinit] = ACTIONS(5199), + [anon_sym_public] = ACTIONS(5199), + [anon_sym_private] = ACTIONS(5199), + [anon_sym_internal] = ACTIONS(5199), + [anon_sym_protected] = ACTIONS(5199), + [anon_sym_tailrec] = ACTIONS(5199), + [anon_sym_operator] = ACTIONS(5199), + [anon_sym_infix] = ACTIONS(5199), + [anon_sym_inline] = ACTIONS(5199), + [anon_sym_external] = ACTIONS(5199), + [sym_property_modifier] = ACTIONS(5199), + [anon_sym_abstract] = ACTIONS(5199), + [anon_sym_final] = ACTIONS(5199), + [anon_sym_open] = ACTIONS(5199), + [anon_sym_vararg] = ACTIONS(5199), + [anon_sym_noinline] = ACTIONS(5199), + [anon_sym_crossinline] = ACTIONS(5199), + [anon_sym_expect] = ACTIONS(5199), + [anon_sym_actual] = ACTIONS(5199), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5201), + [anon_sym_continue_AT] = ACTIONS(5201), + [anon_sym_break_AT] = ACTIONS(5201), + [anon_sym_this_AT] = ACTIONS(5201), + [anon_sym_super_AT] = ACTIONS(5201), + [sym_real_literal] = ACTIONS(5201), + [sym_integer_literal] = ACTIONS(5199), + [sym_hex_literal] = ACTIONS(5201), + [sym_bin_literal] = ACTIONS(5201), + [anon_sym_true] = ACTIONS(5199), + [anon_sym_false] = ACTIONS(5199), + [anon_sym_SQUOTE] = ACTIONS(5201), + [sym__backtick_identifier] = ACTIONS(5201), + [sym__automatic_semicolon] = ACTIONS(5201), + [sym_safe_nav] = ACTIONS(5201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5201), + }, + [1178] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(5191), - [anon_sym_get] = ACTIONS(4808), - [anon_sym_set] = ACTIONS(4810), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5203), + [anon_sym_get] = ACTIONS(5113), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -184134,441 +183567,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1175] = { - [sym__alpha_identifier] = ACTIONS(5193), - [anon_sym_AT] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_as] = ACTIONS(5193), - [anon_sym_EQ] = ACTIONS(5193), - [anon_sym_fun] = ACTIONS(5193), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_RBRACE] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_where] = ACTIONS(5193), - [anon_sym_object] = ACTIONS(5193), - [anon_sym_DOT] = ACTIONS(5193), - [anon_sym_SEMI] = ACTIONS(5195), - [anon_sym_get] = ACTIONS(5193), - [anon_sym_set] = ACTIONS(5193), - [anon_sym_this] = ACTIONS(5193), - [anon_sym_super] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [sym_label] = ACTIONS(5193), - [anon_sym_in] = ACTIONS(5193), - [anon_sym_DOT_DOT] = ACTIONS(5195), - [anon_sym_QMARK_COLON] = ACTIONS(5195), - [anon_sym_AMP_AMP] = ACTIONS(5195), - [anon_sym_PIPE_PIPE] = ACTIONS(5195), - [anon_sym_null] = ACTIONS(5193), - [anon_sym_if] = ACTIONS(5193), - [anon_sym_else] = ACTIONS(5193), - [anon_sym_when] = ACTIONS(5193), - [anon_sym_try] = ACTIONS(5193), - [anon_sym_throw] = ACTIONS(5193), - [anon_sym_return] = ACTIONS(5193), - [anon_sym_continue] = ACTIONS(5193), - [anon_sym_break] = ACTIONS(5193), - [anon_sym_COLON_COLON] = ACTIONS(5195), - [anon_sym_PLUS_EQ] = ACTIONS(5195), - [anon_sym_DASH_EQ] = ACTIONS(5195), - [anon_sym_STAR_EQ] = ACTIONS(5195), - [anon_sym_SLASH_EQ] = ACTIONS(5195), - [anon_sym_PERCENT_EQ] = ACTIONS(5195), - [anon_sym_BANG_EQ] = ACTIONS(5193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5195), - [anon_sym_EQ_EQ] = ACTIONS(5193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5195), - [anon_sym_LT_EQ] = ACTIONS(5195), - [anon_sym_GT_EQ] = ACTIONS(5195), - [anon_sym_BANGin] = ACTIONS(5195), - [anon_sym_is] = ACTIONS(5193), - [anon_sym_BANGis] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_PERCENT] = ACTIONS(5193), - [anon_sym_as_QMARK] = ACTIONS(5195), - [anon_sym_PLUS_PLUS] = ACTIONS(5195), - [anon_sym_DASH_DASH] = ACTIONS(5195), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_BANG_BANG] = ACTIONS(5195), - [anon_sym_suspend] = ACTIONS(5193), - [anon_sym_sealed] = ACTIONS(5193), - [anon_sym_annotation] = ACTIONS(5193), - [anon_sym_data] = ACTIONS(5193), - [anon_sym_inner] = ACTIONS(5193), - [anon_sym_value] = ACTIONS(5193), - [anon_sym_override] = ACTIONS(5193), - [anon_sym_lateinit] = ACTIONS(5193), - [anon_sym_public] = ACTIONS(5193), - [anon_sym_private] = ACTIONS(5193), - [anon_sym_internal] = ACTIONS(5193), - [anon_sym_protected] = ACTIONS(5193), - [anon_sym_tailrec] = ACTIONS(5193), - [anon_sym_operator] = ACTIONS(5193), - [anon_sym_infix] = ACTIONS(5193), - [anon_sym_inline] = ACTIONS(5193), - [anon_sym_external] = ACTIONS(5193), - [sym_property_modifier] = ACTIONS(5193), - [anon_sym_abstract] = ACTIONS(5193), - [anon_sym_final] = ACTIONS(5193), - [anon_sym_open] = ACTIONS(5193), - [anon_sym_vararg] = ACTIONS(5193), - [anon_sym_noinline] = ACTIONS(5193), - [anon_sym_crossinline] = ACTIONS(5193), - [anon_sym_expect] = ACTIONS(5193), - [anon_sym_actual] = ACTIONS(5193), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5195), - [anon_sym_continue_AT] = ACTIONS(5195), - [anon_sym_break_AT] = ACTIONS(5195), - [anon_sym_this_AT] = ACTIONS(5195), - [anon_sym_super_AT] = ACTIONS(5195), - [sym_real_literal] = ACTIONS(5195), - [sym_integer_literal] = ACTIONS(5193), - [sym_hex_literal] = ACTIONS(5195), - [sym_bin_literal] = ACTIONS(5195), - [anon_sym_true] = ACTIONS(5193), - [anon_sym_false] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5195), - [sym__backtick_identifier] = ACTIONS(5195), - [sym__automatic_semicolon] = ACTIONS(5195), - [sym_safe_nav] = ACTIONS(5195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5195), - }, - [1176] = { - [sym__alpha_identifier] = ACTIONS(5197), - [anon_sym_AT] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_as] = ACTIONS(5197), - [anon_sym_EQ] = ACTIONS(5197), - [anon_sym_fun] = ACTIONS(5197), - [anon_sym_LBRACE] = ACTIONS(5199), - [anon_sym_RBRACE] = ACTIONS(5199), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_where] = ACTIONS(5197), - [anon_sym_object] = ACTIONS(5197), - [anon_sym_DOT] = ACTIONS(5197), - [anon_sym_SEMI] = ACTIONS(5199), - [anon_sym_get] = ACTIONS(5197), - [anon_sym_set] = ACTIONS(5197), - [anon_sym_this] = ACTIONS(5197), - [anon_sym_super] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [sym_label] = ACTIONS(5197), - [anon_sym_in] = ACTIONS(5197), - [anon_sym_DOT_DOT] = ACTIONS(5199), - [anon_sym_QMARK_COLON] = ACTIONS(5199), - [anon_sym_AMP_AMP] = ACTIONS(5199), - [anon_sym_PIPE_PIPE] = ACTIONS(5199), - [anon_sym_null] = ACTIONS(5197), - [anon_sym_if] = ACTIONS(5197), - [anon_sym_else] = ACTIONS(5197), - [anon_sym_when] = ACTIONS(5197), - [anon_sym_try] = ACTIONS(5197), - [anon_sym_throw] = ACTIONS(5197), - [anon_sym_return] = ACTIONS(5197), - [anon_sym_continue] = ACTIONS(5197), - [anon_sym_break] = ACTIONS(5197), - [anon_sym_COLON_COLON] = ACTIONS(5199), - [anon_sym_PLUS_EQ] = ACTIONS(5199), - [anon_sym_DASH_EQ] = ACTIONS(5199), - [anon_sym_STAR_EQ] = ACTIONS(5199), - [anon_sym_SLASH_EQ] = ACTIONS(5199), - [anon_sym_PERCENT_EQ] = ACTIONS(5199), - [anon_sym_BANG_EQ] = ACTIONS(5197), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5199), - [anon_sym_EQ_EQ] = ACTIONS(5197), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5199), - [anon_sym_LT_EQ] = ACTIONS(5199), - [anon_sym_GT_EQ] = ACTIONS(5199), - [anon_sym_BANGin] = ACTIONS(5199), - [anon_sym_is] = ACTIONS(5197), - [anon_sym_BANGis] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_PERCENT] = ACTIONS(5197), - [anon_sym_as_QMARK] = ACTIONS(5199), - [anon_sym_PLUS_PLUS] = ACTIONS(5199), - [anon_sym_DASH_DASH] = ACTIONS(5199), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_BANG_BANG] = ACTIONS(5199), - [anon_sym_suspend] = ACTIONS(5197), - [anon_sym_sealed] = ACTIONS(5197), - [anon_sym_annotation] = ACTIONS(5197), - [anon_sym_data] = ACTIONS(5197), - [anon_sym_inner] = ACTIONS(5197), - [anon_sym_value] = ACTIONS(5197), - [anon_sym_override] = ACTIONS(5197), - [anon_sym_lateinit] = ACTIONS(5197), - [anon_sym_public] = ACTIONS(5197), - [anon_sym_private] = ACTIONS(5197), - [anon_sym_internal] = ACTIONS(5197), - [anon_sym_protected] = ACTIONS(5197), - [anon_sym_tailrec] = ACTIONS(5197), - [anon_sym_operator] = ACTIONS(5197), - [anon_sym_infix] = ACTIONS(5197), - [anon_sym_inline] = ACTIONS(5197), - [anon_sym_external] = ACTIONS(5197), - [sym_property_modifier] = ACTIONS(5197), - [anon_sym_abstract] = ACTIONS(5197), - [anon_sym_final] = ACTIONS(5197), - [anon_sym_open] = ACTIONS(5197), - [anon_sym_vararg] = ACTIONS(5197), - [anon_sym_noinline] = ACTIONS(5197), - [anon_sym_crossinline] = ACTIONS(5197), - [anon_sym_expect] = ACTIONS(5197), - [anon_sym_actual] = ACTIONS(5197), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5199), - [anon_sym_continue_AT] = ACTIONS(5199), - [anon_sym_break_AT] = ACTIONS(5199), - [anon_sym_this_AT] = ACTIONS(5199), - [anon_sym_super_AT] = ACTIONS(5199), - [sym_real_literal] = ACTIONS(5199), - [sym_integer_literal] = ACTIONS(5197), - [sym_hex_literal] = ACTIONS(5199), - [sym_bin_literal] = ACTIONS(5199), - [anon_sym_true] = ACTIONS(5197), - [anon_sym_false] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5199), - [sym__backtick_identifier] = ACTIONS(5199), - [sym__automatic_semicolon] = ACTIONS(5199), - [sym_safe_nav] = ACTIONS(5199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5199), - }, - [1177] = { - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_fun] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_object] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_this] = ACTIONS(4705), - [anon_sym_super] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4705), - [sym_label] = ACTIONS(4705), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_null] = ACTIONS(4705), - [anon_sym_if] = ACTIONS(4705), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_when] = ACTIONS(4705), - [anon_sym_try] = ACTIONS(4705), - [anon_sym_throw] = ACTIONS(4705), - [anon_sym_return] = ACTIONS(4705), - [anon_sym_continue] = ACTIONS(4705), - [anon_sym_break] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_PLUS_EQ] = ACTIONS(4707), - [anon_sym_DASH_EQ] = ACTIONS(4707), - [anon_sym_STAR_EQ] = ACTIONS(4707), - [anon_sym_SLASH_EQ] = ACTIONS(4707), - [anon_sym_PERCENT_EQ] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4705), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4705), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_suspend] = ACTIONS(4705), - [anon_sym_sealed] = ACTIONS(4705), - [anon_sym_annotation] = ACTIONS(4705), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_override] = ACTIONS(4705), - [anon_sym_lateinit] = ACTIONS(4705), - [anon_sym_public] = ACTIONS(4705), - [anon_sym_private] = ACTIONS(4705), - [anon_sym_internal] = ACTIONS(4705), - [anon_sym_protected] = ACTIONS(4705), - [anon_sym_tailrec] = ACTIONS(4705), - [anon_sym_operator] = ACTIONS(4705), - [anon_sym_infix] = ACTIONS(4705), - [anon_sym_inline] = ACTIONS(4705), - [anon_sym_external] = ACTIONS(4705), - [sym_property_modifier] = ACTIONS(4705), - [anon_sym_abstract] = ACTIONS(4705), - [anon_sym_final] = ACTIONS(4705), - [anon_sym_open] = ACTIONS(4705), - [anon_sym_vararg] = ACTIONS(4705), - [anon_sym_noinline] = ACTIONS(4705), - [anon_sym_crossinline] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4707), - [anon_sym_continue_AT] = ACTIONS(4707), - [anon_sym_break_AT] = ACTIONS(4707), - [anon_sym_this_AT] = ACTIONS(4707), - [anon_sym_super_AT] = ACTIONS(4707), - [sym_real_literal] = ACTIONS(4707), - [sym_integer_literal] = ACTIONS(4705), - [sym_hex_literal] = ACTIONS(4707), - [sym_bin_literal] = ACTIONS(4707), - [anon_sym_true] = ACTIONS(4705), - [anon_sym_false] = ACTIONS(4705), - [anon_sym_SQUOTE] = ACTIONS(4707), - [sym__backtick_identifier] = ACTIONS(4707), - [sym__automatic_semicolon] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4707), + [1179] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), }, - [1178] = { - [sym__alpha_identifier] = ACTIONS(5201), - [anon_sym_AT] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_as] = ACTIONS(5201), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_fun] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(5203), - [anon_sym_RBRACE] = ACTIONS(5203), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_where] = ACTIONS(5201), - [anon_sym_object] = ACTIONS(5201), - [anon_sym_DOT] = ACTIONS(5201), - [anon_sym_SEMI] = ACTIONS(5203), - [anon_sym_get] = ACTIONS(5201), - [anon_sym_set] = ACTIONS(5201), - [anon_sym_this] = ACTIONS(5201), - [anon_sym_super] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [sym_label] = ACTIONS(5201), - [anon_sym_in] = ACTIONS(5201), - [anon_sym_DOT_DOT] = ACTIONS(5203), - [anon_sym_QMARK_COLON] = ACTIONS(5203), - [anon_sym_AMP_AMP] = ACTIONS(5203), - [anon_sym_PIPE_PIPE] = ACTIONS(5203), - [anon_sym_null] = ACTIONS(5201), - [anon_sym_if] = ACTIONS(5201), - [anon_sym_else] = ACTIONS(5201), - [anon_sym_when] = ACTIONS(5201), - [anon_sym_try] = ACTIONS(5201), - [anon_sym_throw] = ACTIONS(5201), - [anon_sym_return] = ACTIONS(5201), - [anon_sym_continue] = ACTIONS(5201), - [anon_sym_break] = ACTIONS(5201), - [anon_sym_COLON_COLON] = ACTIONS(5203), - [anon_sym_PLUS_EQ] = ACTIONS(5203), - [anon_sym_DASH_EQ] = ACTIONS(5203), - [anon_sym_STAR_EQ] = ACTIONS(5203), - [anon_sym_SLASH_EQ] = ACTIONS(5203), - [anon_sym_PERCENT_EQ] = ACTIONS(5203), - [anon_sym_BANG_EQ] = ACTIONS(5201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5203), - [anon_sym_EQ_EQ] = ACTIONS(5201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5203), - [anon_sym_LT_EQ] = ACTIONS(5203), - [anon_sym_GT_EQ] = ACTIONS(5203), - [anon_sym_BANGin] = ACTIONS(5203), - [anon_sym_is] = ACTIONS(5201), - [anon_sym_BANGis] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_PERCENT] = ACTIONS(5201), - [anon_sym_as_QMARK] = ACTIONS(5203), - [anon_sym_PLUS_PLUS] = ACTIONS(5203), - [anon_sym_DASH_DASH] = ACTIONS(5203), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_BANG_BANG] = ACTIONS(5203), - [anon_sym_suspend] = ACTIONS(5201), - [anon_sym_sealed] = ACTIONS(5201), - [anon_sym_annotation] = ACTIONS(5201), - [anon_sym_data] = ACTIONS(5201), - [anon_sym_inner] = ACTIONS(5201), - [anon_sym_value] = ACTIONS(5201), - [anon_sym_override] = ACTIONS(5201), - [anon_sym_lateinit] = ACTIONS(5201), - [anon_sym_public] = ACTIONS(5201), - [anon_sym_private] = ACTIONS(5201), - [anon_sym_internal] = ACTIONS(5201), - [anon_sym_protected] = ACTIONS(5201), - [anon_sym_tailrec] = ACTIONS(5201), - [anon_sym_operator] = ACTIONS(5201), - [anon_sym_infix] = ACTIONS(5201), - [anon_sym_inline] = ACTIONS(5201), - [anon_sym_external] = ACTIONS(5201), - [sym_property_modifier] = ACTIONS(5201), - [anon_sym_abstract] = ACTIONS(5201), - [anon_sym_final] = ACTIONS(5201), - [anon_sym_open] = ACTIONS(5201), - [anon_sym_vararg] = ACTIONS(5201), - [anon_sym_noinline] = ACTIONS(5201), - [anon_sym_crossinline] = ACTIONS(5201), - [anon_sym_expect] = ACTIONS(5201), - [anon_sym_actual] = ACTIONS(5201), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5203), - [anon_sym_continue_AT] = ACTIONS(5203), - [anon_sym_break_AT] = ACTIONS(5203), - [anon_sym_this_AT] = ACTIONS(5203), - [anon_sym_super_AT] = ACTIONS(5203), - [sym_real_literal] = ACTIONS(5203), - [sym_integer_literal] = ACTIONS(5201), - [sym_hex_literal] = ACTIONS(5203), - [sym_bin_literal] = ACTIONS(5203), - [anon_sym_true] = ACTIONS(5201), - [anon_sym_false] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5203), - [sym__backtick_identifier] = ACTIONS(5203), - [sym__automatic_semicolon] = ACTIONS(5203), - [sym_safe_nav] = ACTIONS(5203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5203), + [1180] = { + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, - [1179] = { + [1181] = { [sym__alpha_identifier] = ACTIONS(5205), [anon_sym_AT] = ACTIONS(5207), [anon_sym_LBRACK] = ACTIONS(5207), [anon_sym_as] = ACTIONS(5205), [anon_sym_EQ] = ACTIONS(5205), - [anon_sym_fun] = ACTIONS(5205), [anon_sym_LBRACE] = ACTIONS(5207), [anon_sym_RBRACE] = ACTIONS(5207), [anon_sym_LPAREN] = ACTIONS(5207), @@ -184577,6 +183797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(5205), [anon_sym_where] = ACTIONS(5205), [anon_sym_object] = ACTIONS(5205), + [anon_sym_fun] = ACTIONS(5205), [anon_sym_DOT] = ACTIONS(5205), [anon_sym_SEMI] = ACTIONS(5207), [anon_sym_get] = ACTIONS(5205), @@ -184668,119 +183889,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5207), }, - [1180] = { - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(1816), - [anon_sym_set] = ACTIONS(1816), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(1816), - [anon_sym_sealed] = ACTIONS(1816), - [anon_sym_annotation] = ACTIONS(1816), - [anon_sym_data] = ACTIONS(1816), - [anon_sym_inner] = ACTIONS(1816), - [anon_sym_value] = ACTIONS(1816), - [anon_sym_override] = ACTIONS(1816), - [anon_sym_lateinit] = ACTIONS(1816), - [anon_sym_public] = ACTIONS(1816), - [anon_sym_private] = ACTIONS(1816), - [anon_sym_internal] = ACTIONS(1816), - [anon_sym_protected] = ACTIONS(1816), - [anon_sym_tailrec] = ACTIONS(1816), - [anon_sym_operator] = ACTIONS(1816), - [anon_sym_infix] = ACTIONS(1816), - [anon_sym_inline] = ACTIONS(1816), - [anon_sym_external] = ACTIONS(1816), - [sym_property_modifier] = ACTIONS(1816), - [anon_sym_abstract] = ACTIONS(1816), - [anon_sym_final] = ACTIONS(1816), - [anon_sym_open] = ACTIONS(1816), - [anon_sym_vararg] = ACTIONS(1816), - [anon_sym_noinline] = ACTIONS(1816), - [anon_sym_crossinline] = ACTIONS(1816), - [anon_sym_expect] = ACTIONS(1816), - [anon_sym_actual] = ACTIONS(1816), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), - }, - [1181] = { + [1182] = { [sym__alpha_identifier] = ACTIONS(5209), [anon_sym_AT] = ACTIONS(5211), [anon_sym_LBRACK] = ACTIONS(5211), [anon_sym_as] = ACTIONS(5209), [anon_sym_EQ] = ACTIONS(5209), - [anon_sym_fun] = ACTIONS(5209), [anon_sym_LBRACE] = ACTIONS(5211), [anon_sym_RBRACE] = ACTIONS(5211), [anon_sym_LPAREN] = ACTIONS(5211), @@ -184789,6 +183903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(5209), [anon_sym_where] = ACTIONS(5209), [anon_sym_object] = ACTIONS(5209), + [anon_sym_fun] = ACTIONS(5209), [anon_sym_DOT] = ACTIONS(5209), [anon_sym_SEMI] = ACTIONS(5211), [anon_sym_get] = ACTIONS(5209), @@ -184880,80 +183995,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5211), }, - [1182] = { - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [1183] = { + [sym__alpha_identifier] = ACTIONS(5213), + [anon_sym_AT] = ACTIONS(5215), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_as] = ACTIONS(5213), + [anon_sym_EQ] = ACTIONS(5213), + [anon_sym_LBRACE] = ACTIONS(5215), + [anon_sym_RBRACE] = ACTIONS(5215), + [anon_sym_LPAREN] = ACTIONS(5215), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_where] = ACTIONS(5213), + [anon_sym_object] = ACTIONS(5213), + [anon_sym_fun] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(5213), + [anon_sym_SEMI] = ACTIONS(5215), + [anon_sym_get] = ACTIONS(5213), + [anon_sym_set] = ACTIONS(5213), + [anon_sym_this] = ACTIONS(5213), + [anon_sym_super] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5213), + [sym_label] = ACTIONS(5213), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5215), + [anon_sym_QMARK_COLON] = ACTIONS(5215), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(5215), + [anon_sym_null] = ACTIONS(5213), + [anon_sym_if] = ACTIONS(5213), + [anon_sym_else] = ACTIONS(5213), + [anon_sym_when] = ACTIONS(5213), + [anon_sym_try] = ACTIONS(5213), + [anon_sym_throw] = ACTIONS(5213), + [anon_sym_return] = ACTIONS(5213), + [anon_sym_continue] = ACTIONS(5213), + [anon_sym_break] = ACTIONS(5213), + [anon_sym_COLON_COLON] = ACTIONS(5215), + [anon_sym_PLUS_EQ] = ACTIONS(5215), + [anon_sym_DASH_EQ] = ACTIONS(5215), + [anon_sym_STAR_EQ] = ACTIONS(5215), + [anon_sym_SLASH_EQ] = ACTIONS(5215), + [anon_sym_PERCENT_EQ] = ACTIONS(5215), + [anon_sym_BANG_EQ] = ACTIONS(5213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5215), + [anon_sym_EQ_EQ] = ACTIONS(5213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5215), + [anon_sym_LT_EQ] = ACTIONS(5215), + [anon_sym_GT_EQ] = ACTIONS(5215), + [anon_sym_BANGin] = ACTIONS(5215), + [anon_sym_is] = ACTIONS(5213), + [anon_sym_BANGis] = ACTIONS(5215), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_PERCENT] = ACTIONS(5213), + [anon_sym_as_QMARK] = ACTIONS(5215), + [anon_sym_PLUS_PLUS] = ACTIONS(5215), + [anon_sym_DASH_DASH] = ACTIONS(5215), + [anon_sym_BANG] = ACTIONS(5213), + [anon_sym_BANG_BANG] = ACTIONS(5215), + [anon_sym_suspend] = ACTIONS(5213), + [anon_sym_sealed] = ACTIONS(5213), + [anon_sym_annotation] = ACTIONS(5213), + [anon_sym_data] = ACTIONS(5213), + [anon_sym_inner] = ACTIONS(5213), + [anon_sym_value] = ACTIONS(5213), + [anon_sym_override] = ACTIONS(5213), + [anon_sym_lateinit] = ACTIONS(5213), + [anon_sym_public] = ACTIONS(5213), + [anon_sym_private] = ACTIONS(5213), + [anon_sym_internal] = ACTIONS(5213), + [anon_sym_protected] = ACTIONS(5213), + [anon_sym_tailrec] = ACTIONS(5213), + [anon_sym_operator] = ACTIONS(5213), + [anon_sym_infix] = ACTIONS(5213), + [anon_sym_inline] = ACTIONS(5213), + [anon_sym_external] = ACTIONS(5213), + [sym_property_modifier] = ACTIONS(5213), + [anon_sym_abstract] = ACTIONS(5213), + [anon_sym_final] = ACTIONS(5213), + [anon_sym_open] = ACTIONS(5213), + [anon_sym_vararg] = ACTIONS(5213), + [anon_sym_noinline] = ACTIONS(5213), + [anon_sym_crossinline] = ACTIONS(5213), + [anon_sym_expect] = ACTIONS(5213), + [anon_sym_actual] = ACTIONS(5213), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5215), + [anon_sym_continue_AT] = ACTIONS(5215), + [anon_sym_break_AT] = ACTIONS(5215), + [anon_sym_this_AT] = ACTIONS(5215), + [anon_sym_super_AT] = ACTIONS(5215), + [sym_real_literal] = ACTIONS(5215), + [sym_integer_literal] = ACTIONS(5213), + [sym_hex_literal] = ACTIONS(5215), + [sym_bin_literal] = ACTIONS(5215), + [anon_sym_true] = ACTIONS(5213), + [anon_sym_false] = ACTIONS(5213), + [anon_sym_SQUOTE] = ACTIONS(5215), + [sym__backtick_identifier] = ACTIONS(5215), + [sym__automatic_semicolon] = ACTIONS(5215), + [sym_safe_nav] = ACTIONS(5215), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5215), + }, + [1184] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(5213), - [anon_sym_get] = ACTIONS(4808), - [anon_sym_set] = ACTIONS(4810), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5217), + [anon_sym_get] = ACTIONS(5113), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -184982,1183 +184203,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1183] = { - [sym_function_body] = STATE(1199), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4453), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_object] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_this] = ACTIONS(4453), - [anon_sym_super] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4453), - [sym_label] = ACTIONS(4453), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_null] = ACTIONS(4453), - [anon_sym_if] = ACTIONS(4453), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_when] = ACTIONS(4453), - [anon_sym_try] = ACTIONS(4453), - [anon_sym_throw] = ACTIONS(4453), - [anon_sym_return] = ACTIONS(4453), - [anon_sym_continue] = ACTIONS(4453), - [anon_sym_break] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_PLUS_EQ] = ACTIONS(4455), - [anon_sym_DASH_EQ] = ACTIONS(4455), - [anon_sym_STAR_EQ] = ACTIONS(4455), - [anon_sym_SLASH_EQ] = ACTIONS(4455), - [anon_sym_PERCENT_EQ] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4453), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4453), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_suspend] = ACTIONS(4453), - [anon_sym_sealed] = ACTIONS(4453), - [anon_sym_annotation] = ACTIONS(4453), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4453), - [anon_sym_lateinit] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_internal] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_tailrec] = ACTIONS(4453), - [anon_sym_operator] = ACTIONS(4453), - [anon_sym_infix] = ACTIONS(4453), - [anon_sym_inline] = ACTIONS(4453), - [anon_sym_external] = ACTIONS(4453), - [sym_property_modifier] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_open] = ACTIONS(4453), - [anon_sym_vararg] = ACTIONS(4453), - [anon_sym_noinline] = ACTIONS(4453), - [anon_sym_crossinline] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4455), - [anon_sym_continue_AT] = ACTIONS(4455), - [anon_sym_break_AT] = ACTIONS(4455), - [anon_sym_this_AT] = ACTIONS(4455), - [anon_sym_super_AT] = ACTIONS(4455), - [sym_real_literal] = ACTIONS(4455), - [sym_integer_literal] = ACTIONS(4453), - [sym_hex_literal] = ACTIONS(4455), - [sym_bin_literal] = ACTIONS(4455), - [anon_sym_true] = ACTIONS(4453), - [anon_sym_false] = ACTIONS(4453), - [anon_sym_SQUOTE] = ACTIONS(4455), - [sym__backtick_identifier] = ACTIONS(4455), - [sym__automatic_semicolon] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4455), - }, - [1184] = { - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(4287), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(4287), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), - }, [1185] = { - [sym_function_body] = STATE(1189), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4147), + [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [1186] = { - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(1800), - [anon_sym_set] = ACTIONS(1800), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [sym_label] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_suspend] = ACTIONS(1800), - [anon_sym_sealed] = ACTIONS(1800), - [anon_sym_annotation] = ACTIONS(1800), - [anon_sym_data] = ACTIONS(1800), - [anon_sym_inner] = ACTIONS(1800), - [anon_sym_value] = ACTIONS(1800), - [anon_sym_override] = ACTIONS(1800), - [anon_sym_lateinit] = ACTIONS(1800), - [anon_sym_public] = ACTIONS(1800), - [anon_sym_private] = ACTIONS(1800), - [anon_sym_internal] = ACTIONS(1800), - [anon_sym_protected] = ACTIONS(1800), - [anon_sym_tailrec] = ACTIONS(1800), - [anon_sym_operator] = ACTIONS(1800), - [anon_sym_infix] = ACTIONS(1800), - [anon_sym_inline] = ACTIONS(1800), - [anon_sym_external] = ACTIONS(1800), - [sym_property_modifier] = ACTIONS(1800), - [anon_sym_abstract] = ACTIONS(1800), - [anon_sym_final] = ACTIONS(1800), - [anon_sym_open] = ACTIONS(1800), - [anon_sym_vararg] = ACTIONS(1800), - [anon_sym_noinline] = ACTIONS(1800), - [anon_sym_crossinline] = ACTIONS(1800), - [anon_sym_expect] = ACTIONS(1800), - [anon_sym_actual] = ACTIONS(1800), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [1187] = { - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_fun] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(4597), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_LT] = ACTIONS(4595), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_where] = ACTIONS(4595), - [anon_sym_object] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_this] = ACTIONS(4595), - [anon_sym_super] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [sym_label] = ACTIONS(4595), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_if] = ACTIONS(4595), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_when] = ACTIONS(4595), - [anon_sym_try] = ACTIONS(4595), - [anon_sym_throw] = ACTIONS(4595), - [anon_sym_return] = ACTIONS(4595), - [anon_sym_continue] = ACTIONS(4595), - [anon_sym_break] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_suspend] = ACTIONS(4595), - [anon_sym_sealed] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4595), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_override] = ACTIONS(4595), - [anon_sym_lateinit] = ACTIONS(4595), - [anon_sym_public] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4595), - [anon_sym_internal] = ACTIONS(4595), - [anon_sym_protected] = ACTIONS(4595), - [anon_sym_tailrec] = ACTIONS(4595), - [anon_sym_operator] = ACTIONS(4595), - [anon_sym_infix] = ACTIONS(4595), - [anon_sym_inline] = ACTIONS(4595), - [anon_sym_external] = ACTIONS(4595), - [sym_property_modifier] = ACTIONS(4595), - [anon_sym_abstract] = ACTIONS(4595), - [anon_sym_final] = ACTIONS(4595), - [anon_sym_open] = ACTIONS(4595), - [anon_sym_vararg] = ACTIONS(4595), - [anon_sym_noinline] = ACTIONS(4595), - [anon_sym_crossinline] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4597), - [anon_sym_continue_AT] = ACTIONS(4597), - [anon_sym_break_AT] = ACTIONS(4597), - [anon_sym_this_AT] = ACTIONS(4597), - [anon_sym_super_AT] = ACTIONS(4597), - [sym_real_literal] = ACTIONS(4597), - [sym_integer_literal] = ACTIONS(4595), - [sym_hex_literal] = ACTIONS(4597), - [sym_bin_literal] = ACTIONS(4597), - [anon_sym_true] = ACTIONS(4595), - [anon_sym_false] = ACTIONS(4595), - [anon_sym_SQUOTE] = ACTIONS(4597), - [sym__backtick_identifier] = ACTIONS(4597), - [sym__automatic_semicolon] = ACTIONS(4597), - [sym_safe_nav] = ACTIONS(4597), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4597), - }, - [1188] = { - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), - }, - [1189] = { - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(4453), - [anon_sym_fun] = ACTIONS(4453), - [anon_sym_LBRACE] = ACTIONS(4455), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_where] = ACTIONS(4453), - [anon_sym_object] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_this] = ACTIONS(4453), - [anon_sym_super] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4453), - [sym_label] = ACTIONS(4453), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_null] = ACTIONS(4453), - [anon_sym_if] = ACTIONS(4453), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_when] = ACTIONS(4453), - [anon_sym_try] = ACTIONS(4453), - [anon_sym_throw] = ACTIONS(4453), - [anon_sym_return] = ACTIONS(4453), - [anon_sym_continue] = ACTIONS(4453), - [anon_sym_break] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_PLUS_EQ] = ACTIONS(4455), - [anon_sym_DASH_EQ] = ACTIONS(4455), - [anon_sym_STAR_EQ] = ACTIONS(4455), - [anon_sym_SLASH_EQ] = ACTIONS(4455), - [anon_sym_PERCENT_EQ] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4453), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4453), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_suspend] = ACTIONS(4453), - [anon_sym_sealed] = ACTIONS(4453), - [anon_sym_annotation] = ACTIONS(4453), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4453), - [anon_sym_lateinit] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_internal] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_tailrec] = ACTIONS(4453), - [anon_sym_operator] = ACTIONS(4453), - [anon_sym_infix] = ACTIONS(4453), - [anon_sym_inline] = ACTIONS(4453), - [anon_sym_external] = ACTIONS(4453), - [sym_property_modifier] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_open] = ACTIONS(4453), - [anon_sym_vararg] = ACTIONS(4453), - [anon_sym_noinline] = ACTIONS(4453), - [anon_sym_crossinline] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4455), - [anon_sym_continue_AT] = ACTIONS(4455), - [anon_sym_break_AT] = ACTIONS(4455), - [anon_sym_this_AT] = ACTIONS(4455), - [anon_sym_super_AT] = ACTIONS(4455), - [sym_real_literal] = ACTIONS(4455), - [sym_integer_literal] = ACTIONS(4453), - [sym_hex_literal] = ACTIONS(4455), - [sym_bin_literal] = ACTIONS(4455), - [anon_sym_true] = ACTIONS(4453), - [anon_sym_false] = ACTIONS(4453), - [anon_sym_SQUOTE] = ACTIONS(4455), - [sym__backtick_identifier] = ACTIONS(4455), - [sym__automatic_semicolon] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4455), - }, - [1190] = { - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3438), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_fun] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_object] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(3436), - [anon_sym_set] = ACTIONS(3436), - [anon_sym_this] = ACTIONS(3436), - [anon_sym_super] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3436), - [sym_label] = ACTIONS(3436), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_null] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_when] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3436), - [anon_sym_sealed] = ACTIONS(3436), - [anon_sym_annotation] = ACTIONS(3436), - [anon_sym_data] = ACTIONS(3436), - [anon_sym_inner] = ACTIONS(3436), - [anon_sym_value] = ACTIONS(3436), - [anon_sym_override] = ACTIONS(3436), - [anon_sym_lateinit] = ACTIONS(3436), - [anon_sym_public] = ACTIONS(3436), - [anon_sym_private] = ACTIONS(3436), - [anon_sym_internal] = ACTIONS(3436), - [anon_sym_protected] = ACTIONS(3436), - [anon_sym_tailrec] = ACTIONS(3436), - [anon_sym_operator] = ACTIONS(3436), - [anon_sym_infix] = ACTIONS(3436), - [anon_sym_inline] = ACTIONS(3436), - [anon_sym_external] = ACTIONS(3436), - [sym_property_modifier] = ACTIONS(3436), - [anon_sym_abstract] = ACTIONS(3436), - [anon_sym_final] = ACTIONS(3436), - [anon_sym_open] = ACTIONS(3436), - [anon_sym_vararg] = ACTIONS(3436), - [anon_sym_noinline] = ACTIONS(3436), - [anon_sym_crossinline] = ACTIONS(3436), - [anon_sym_expect] = ACTIONS(3436), - [anon_sym_actual] = ACTIONS(3436), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3438), - [anon_sym_continue_AT] = ACTIONS(3438), - [anon_sym_break_AT] = ACTIONS(3438), - [anon_sym_this_AT] = ACTIONS(3438), - [anon_sym_super_AT] = ACTIONS(3438), - [sym_real_literal] = ACTIONS(3438), - [sym_integer_literal] = ACTIONS(3436), - [sym_hex_literal] = ACTIONS(3438), - [sym_bin_literal] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [anon_sym_SQUOTE] = ACTIONS(3438), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3438), - }, - [1191] = { - [sym__alpha_identifier] = ACTIONS(5215), - [anon_sym_AT] = ACTIONS(5217), - [anon_sym_LBRACK] = ACTIONS(5217), - [anon_sym_as] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_fun] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5217), - [anon_sym_RBRACE] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5217), - [anon_sym_COMMA] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5215), - [anon_sym_GT] = ACTIONS(5215), - [anon_sym_where] = ACTIONS(5215), - [anon_sym_object] = ACTIONS(5215), - [anon_sym_DOT] = ACTIONS(5215), - [anon_sym_SEMI] = ACTIONS(5217), - [anon_sym_get] = ACTIONS(5215), - [anon_sym_set] = ACTIONS(5215), - [anon_sym_this] = ACTIONS(5215), - [anon_sym_super] = ACTIONS(5215), - [anon_sym_STAR] = ACTIONS(5215), - [sym_label] = ACTIONS(5215), - [anon_sym_in] = ACTIONS(5215), - [anon_sym_DOT_DOT] = ACTIONS(5217), - [anon_sym_QMARK_COLON] = ACTIONS(5217), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [anon_sym_null] = ACTIONS(5215), - [anon_sym_if] = ACTIONS(5215), - [anon_sym_else] = ACTIONS(5215), - [anon_sym_when] = ACTIONS(5215), - [anon_sym_try] = ACTIONS(5215), - [anon_sym_throw] = ACTIONS(5215), - [anon_sym_return] = ACTIONS(5215), - [anon_sym_continue] = ACTIONS(5215), - [anon_sym_break] = ACTIONS(5215), - [anon_sym_COLON_COLON] = ACTIONS(5217), - [anon_sym_PLUS_EQ] = ACTIONS(5217), - [anon_sym_DASH_EQ] = ACTIONS(5217), - [anon_sym_STAR_EQ] = ACTIONS(5217), - [anon_sym_SLASH_EQ] = ACTIONS(5217), - [anon_sym_PERCENT_EQ] = ACTIONS(5217), - [anon_sym_BANG_EQ] = ACTIONS(5215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5217), - [anon_sym_EQ_EQ] = ACTIONS(5215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5217), - [anon_sym_LT_EQ] = ACTIONS(5217), - [anon_sym_GT_EQ] = ACTIONS(5217), - [anon_sym_BANGin] = ACTIONS(5217), - [anon_sym_is] = ACTIONS(5215), - [anon_sym_BANGis] = ACTIONS(5217), - [anon_sym_PLUS] = ACTIONS(5215), - [anon_sym_DASH] = ACTIONS(5215), - [anon_sym_SLASH] = ACTIONS(5215), - [anon_sym_PERCENT] = ACTIONS(5215), - [anon_sym_as_QMARK] = ACTIONS(5217), - [anon_sym_PLUS_PLUS] = ACTIONS(5217), - [anon_sym_DASH_DASH] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5215), - [anon_sym_BANG_BANG] = ACTIONS(5217), - [anon_sym_suspend] = ACTIONS(5215), - [anon_sym_sealed] = ACTIONS(5215), - [anon_sym_annotation] = ACTIONS(5215), - [anon_sym_data] = ACTIONS(5215), - [anon_sym_inner] = ACTIONS(5215), - [anon_sym_value] = ACTIONS(5215), - [anon_sym_override] = ACTIONS(5215), - [anon_sym_lateinit] = ACTIONS(5215), - [anon_sym_public] = ACTIONS(5215), - [anon_sym_private] = ACTIONS(5215), - [anon_sym_internal] = ACTIONS(5215), - [anon_sym_protected] = ACTIONS(5215), - [anon_sym_tailrec] = ACTIONS(5215), - [anon_sym_operator] = ACTIONS(5215), - [anon_sym_infix] = ACTIONS(5215), - [anon_sym_inline] = ACTIONS(5215), - [anon_sym_external] = ACTIONS(5215), - [sym_property_modifier] = ACTIONS(5215), - [anon_sym_abstract] = ACTIONS(5215), - [anon_sym_final] = ACTIONS(5215), - [anon_sym_open] = ACTIONS(5215), - [anon_sym_vararg] = ACTIONS(5215), - [anon_sym_noinline] = ACTIONS(5215), - [anon_sym_crossinline] = ACTIONS(5215), - [anon_sym_expect] = ACTIONS(5215), - [anon_sym_actual] = ACTIONS(5215), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5217), - [anon_sym_continue_AT] = ACTIONS(5217), - [anon_sym_break_AT] = ACTIONS(5217), - [anon_sym_this_AT] = ACTIONS(5217), - [anon_sym_super_AT] = ACTIONS(5217), - [sym_real_literal] = ACTIONS(5217), - [sym_integer_literal] = ACTIONS(5215), - [sym_hex_literal] = ACTIONS(5217), - [sym_bin_literal] = ACTIONS(5217), - [anon_sym_true] = ACTIONS(5215), - [anon_sym_false] = ACTIONS(5215), - [anon_sym_SQUOTE] = ACTIONS(5217), - [sym__backtick_identifier] = ACTIONS(5217), - [sym__automatic_semicolon] = ACTIONS(5217), - [sym_safe_nav] = ACTIONS(5217), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5217), - }, - [1192] = { - [sym_function_body] = STATE(1153), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_object] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4183), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_PLUS_EQ] = ACTIONS(4185), - [anon_sym_DASH_EQ] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4185), - [anon_sym_SLASH_EQ] = ACTIONS(4185), - [anon_sym_PERCENT_EQ] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4183), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), - }, - [1193] = { - [sym_function_body] = STATE(1087), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), - }, - [1194] = { [sym__alpha_identifier] = ACTIONS(5219), [anon_sym_AT] = ACTIONS(5221), [anon_sym_LBRACK] = ACTIONS(5221), [anon_sym_as] = ACTIONS(5219), [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_fun] = ACTIONS(5219), [anon_sym_LBRACE] = ACTIONS(5221), [anon_sym_RBRACE] = ACTIONS(5221), [anon_sym_LPAREN] = ACTIONS(5221), @@ -186167,6 +184433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(5219), [anon_sym_where] = ACTIONS(5219), [anon_sym_object] = ACTIONS(5219), + [anon_sym_fun] = ACTIONS(5219), [anon_sym_DOT] = ACTIONS(5219), [anon_sym_SEMI] = ACTIONS(5221), [anon_sym_get] = ACTIONS(5219), @@ -186258,2312 +184525,1556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5221), }, - [1195] = { - [sym_function_body] = STATE(1045), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), - }, - [1196] = { - [sym_function_body] = STATE(1197), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), - }, - [1197] = { - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4156), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(4154), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), - }, - [1198] = { - [sym__alpha_identifier] = ACTIONS(5223), - [anon_sym_AT] = ACTIONS(5225), - [anon_sym_LBRACK] = ACTIONS(5225), - [anon_sym_as] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_fun] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5225), - [anon_sym_RBRACE] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5225), - [anon_sym_COMMA] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5223), + [1188] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(5223), - [anon_sym_where] = ACTIONS(5223), - [anon_sym_object] = ACTIONS(5223), - [anon_sym_DOT] = ACTIONS(5223), - [anon_sym_SEMI] = ACTIONS(5225), - [anon_sym_get] = ACTIONS(5223), - [anon_sym_set] = ACTIONS(5223), - [anon_sym_this] = ACTIONS(5223), - [anon_sym_super] = ACTIONS(5223), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(5223), - [anon_sym_in] = ACTIONS(5223), - [anon_sym_DOT_DOT] = ACTIONS(5225), - [anon_sym_QMARK_COLON] = ACTIONS(5225), - [anon_sym_AMP_AMP] = ACTIONS(5225), - [anon_sym_PIPE_PIPE] = ACTIONS(5225), - [anon_sym_null] = ACTIONS(5223), - [anon_sym_if] = ACTIONS(5223), - [anon_sym_else] = ACTIONS(5223), - [anon_sym_when] = ACTIONS(5223), - [anon_sym_try] = ACTIONS(5223), - [anon_sym_throw] = ACTIONS(5223), - [anon_sym_return] = ACTIONS(5223), - [anon_sym_continue] = ACTIONS(5223), - [anon_sym_break] = ACTIONS(5223), - [anon_sym_COLON_COLON] = ACTIONS(5225), - [anon_sym_PLUS_EQ] = ACTIONS(5225), - [anon_sym_DASH_EQ] = ACTIONS(5225), - [anon_sym_STAR_EQ] = ACTIONS(5225), - [anon_sym_SLASH_EQ] = ACTIONS(5225), - [anon_sym_PERCENT_EQ] = ACTIONS(5225), - [anon_sym_BANG_EQ] = ACTIONS(5223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5225), - [anon_sym_EQ_EQ] = ACTIONS(5223), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5225), - [anon_sym_LT_EQ] = ACTIONS(5225), - [anon_sym_GT_EQ] = ACTIONS(5225), - [anon_sym_BANGin] = ACTIONS(5225), - [anon_sym_is] = ACTIONS(5223), - [anon_sym_BANGis] = ACTIONS(5225), - [anon_sym_PLUS] = ACTIONS(5223), - [anon_sym_DASH] = ACTIONS(5223), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(5225), - [anon_sym_PLUS_PLUS] = ACTIONS(5225), - [anon_sym_DASH_DASH] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5223), - [anon_sym_BANG_BANG] = ACTIONS(5225), - [anon_sym_suspend] = ACTIONS(5223), - [anon_sym_sealed] = ACTIONS(5223), - [anon_sym_annotation] = ACTIONS(5223), - [anon_sym_data] = ACTIONS(5223), - [anon_sym_inner] = ACTIONS(5223), - [anon_sym_value] = ACTIONS(5223), - [anon_sym_override] = ACTIONS(5223), - [anon_sym_lateinit] = ACTIONS(5223), - [anon_sym_public] = ACTIONS(5223), - [anon_sym_private] = ACTIONS(5223), - [anon_sym_internal] = ACTIONS(5223), - [anon_sym_protected] = ACTIONS(5223), - [anon_sym_tailrec] = ACTIONS(5223), - [anon_sym_operator] = ACTIONS(5223), - [anon_sym_infix] = ACTIONS(5223), - [anon_sym_inline] = ACTIONS(5223), - [anon_sym_external] = ACTIONS(5223), - [sym_property_modifier] = ACTIONS(5223), - [anon_sym_abstract] = ACTIONS(5223), - [anon_sym_final] = ACTIONS(5223), - [anon_sym_open] = ACTIONS(5223), - [anon_sym_vararg] = ACTIONS(5223), - [anon_sym_noinline] = ACTIONS(5223), - [anon_sym_crossinline] = ACTIONS(5223), - [anon_sym_expect] = ACTIONS(5223), - [anon_sym_actual] = ACTIONS(5223), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5225), - [anon_sym_continue_AT] = ACTIONS(5225), - [anon_sym_break_AT] = ACTIONS(5225), - [anon_sym_this_AT] = ACTIONS(5225), - [anon_sym_super_AT] = ACTIONS(5225), - [sym_real_literal] = ACTIONS(5225), - [sym_integer_literal] = ACTIONS(5223), - [sym_hex_literal] = ACTIONS(5225), - [sym_bin_literal] = ACTIONS(5225), - [anon_sym_true] = ACTIONS(5223), - [anon_sym_false] = ACTIONS(5223), - [anon_sym_SQUOTE] = ACTIONS(5225), - [sym__backtick_identifier] = ACTIONS(5225), - [sym__automatic_semicolon] = ACTIONS(5225), - [sym_safe_nav] = ACTIONS(5225), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5225), - }, - [1199] = { - [sym__alpha_identifier] = ACTIONS(5227), - [anon_sym_AT] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [anon_sym_as] = ACTIONS(5227), - [anon_sym_EQ] = ACTIONS(5227), - [anon_sym_fun] = ACTIONS(5227), - [anon_sym_LBRACE] = ACTIONS(5229), - [anon_sym_RBRACE] = ACTIONS(5229), - [anon_sym_LPAREN] = ACTIONS(5229), - [anon_sym_COMMA] = ACTIONS(5229), - [anon_sym_LT] = ACTIONS(5227), - [anon_sym_GT] = ACTIONS(5227), - [anon_sym_where] = ACTIONS(5227), - [anon_sym_object] = ACTIONS(5227), - [anon_sym_DOT] = ACTIONS(5227), - [anon_sym_SEMI] = ACTIONS(5229), - [anon_sym_get] = ACTIONS(5227), - [anon_sym_set] = ACTIONS(5227), - [anon_sym_this] = ACTIONS(5227), - [anon_sym_super] = ACTIONS(5227), - [anon_sym_STAR] = ACTIONS(5227), - [sym_label] = ACTIONS(5227), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), [anon_sym_in] = ACTIONS(5227), [anon_sym_DOT_DOT] = ACTIONS(5229), - [anon_sym_QMARK_COLON] = ACTIONS(5229), - [anon_sym_AMP_AMP] = ACTIONS(5229), - [anon_sym_PIPE_PIPE] = ACTIONS(5229), - [anon_sym_null] = ACTIONS(5227), - [anon_sym_if] = ACTIONS(5227), - [anon_sym_else] = ACTIONS(5227), - [anon_sym_when] = ACTIONS(5227), - [anon_sym_try] = ACTIONS(5227), - [anon_sym_throw] = ACTIONS(5227), - [anon_sym_return] = ACTIONS(5227), - [anon_sym_continue] = ACTIONS(5227), - [anon_sym_break] = ACTIONS(5227), - [anon_sym_COLON_COLON] = ACTIONS(5229), - [anon_sym_PLUS_EQ] = ACTIONS(5229), - [anon_sym_DASH_EQ] = ACTIONS(5229), - [anon_sym_STAR_EQ] = ACTIONS(5229), - [anon_sym_SLASH_EQ] = ACTIONS(5229), - [anon_sym_PERCENT_EQ] = ACTIONS(5229), - [anon_sym_BANG_EQ] = ACTIONS(5227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5229), - [anon_sym_EQ_EQ] = ACTIONS(5227), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5229), - [anon_sym_LT_EQ] = ACTIONS(5229), - [anon_sym_GT_EQ] = ACTIONS(5229), - [anon_sym_BANGin] = ACTIONS(5229), - [anon_sym_is] = ACTIONS(5227), - [anon_sym_BANGis] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5227), - [anon_sym_DASH] = ACTIONS(5227), - [anon_sym_SLASH] = ACTIONS(5227), - [anon_sym_PERCENT] = ACTIONS(5227), - [anon_sym_as_QMARK] = ACTIONS(5229), - [anon_sym_PLUS_PLUS] = ACTIONS(5229), - [anon_sym_DASH_DASH] = ACTIONS(5229), - [anon_sym_BANG] = ACTIONS(5227), - [anon_sym_BANG_BANG] = ACTIONS(5229), - [anon_sym_suspend] = ACTIONS(5227), - [anon_sym_sealed] = ACTIONS(5227), - [anon_sym_annotation] = ACTIONS(5227), - [anon_sym_data] = ACTIONS(5227), - [anon_sym_inner] = ACTIONS(5227), - [anon_sym_value] = ACTIONS(5227), - [anon_sym_override] = ACTIONS(5227), - [anon_sym_lateinit] = ACTIONS(5227), - [anon_sym_public] = ACTIONS(5227), - [anon_sym_private] = ACTIONS(5227), - [anon_sym_internal] = ACTIONS(5227), - [anon_sym_protected] = ACTIONS(5227), - [anon_sym_tailrec] = ACTIONS(5227), - [anon_sym_operator] = ACTIONS(5227), - [anon_sym_infix] = ACTIONS(5227), - [anon_sym_inline] = ACTIONS(5227), - [anon_sym_external] = ACTIONS(5227), - [sym_property_modifier] = ACTIONS(5227), - [anon_sym_abstract] = ACTIONS(5227), - [anon_sym_final] = ACTIONS(5227), - [anon_sym_open] = ACTIONS(5227), - [anon_sym_vararg] = ACTIONS(5227), - [anon_sym_noinline] = ACTIONS(5227), - [anon_sym_crossinline] = ACTIONS(5227), - [anon_sym_expect] = ACTIONS(5227), - [anon_sym_actual] = ACTIONS(5227), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5229), - [anon_sym_continue_AT] = ACTIONS(5229), - [anon_sym_break_AT] = ACTIONS(5229), - [anon_sym_this_AT] = ACTIONS(5229), - [anon_sym_super_AT] = ACTIONS(5229), - [sym_real_literal] = ACTIONS(5229), - [sym_integer_literal] = ACTIONS(5227), - [sym_hex_literal] = ACTIONS(5229), - [sym_bin_literal] = ACTIONS(5229), - [anon_sym_true] = ACTIONS(5227), - [anon_sym_false] = ACTIONS(5227), - [anon_sym_SQUOTE] = ACTIONS(5229), - [sym__backtick_identifier] = ACTIONS(5229), - [sym__automatic_semicolon] = ACTIONS(5229), - [sym_safe_nav] = ACTIONS(5229), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5229), - }, - [1200] = { - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(5235), + [anon_sym_null] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), }, - [1201] = { - [sym__alpha_identifier] = ACTIONS(5231), - [anon_sym_AT] = ACTIONS(5233), - [anon_sym_LBRACK] = ACTIONS(5233), - [anon_sym_as] = ACTIONS(5231), - [anon_sym_EQ] = ACTIONS(5231), - [anon_sym_fun] = ACTIONS(5231), - [anon_sym_LBRACE] = ACTIONS(5233), - [anon_sym_RBRACE] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5233), - [anon_sym_COMMA] = ACTIONS(5233), - [anon_sym_LT] = ACTIONS(5231), - [anon_sym_GT] = ACTIONS(5231), - [anon_sym_where] = ACTIONS(5231), - [anon_sym_object] = ACTIONS(5231), - [anon_sym_DOT] = ACTIONS(5231), - [anon_sym_SEMI] = ACTIONS(5233), - [anon_sym_get] = ACTIONS(5231), - [anon_sym_set] = ACTIONS(5231), - [anon_sym_this] = ACTIONS(5231), - [anon_sym_super] = ACTIONS(5231), - [anon_sym_STAR] = ACTIONS(5231), - [sym_label] = ACTIONS(5231), - [anon_sym_in] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5233), + [1189] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), [anon_sym_AMP_AMP] = ACTIONS(5233), - [anon_sym_PIPE_PIPE] = ACTIONS(5233), - [anon_sym_null] = ACTIONS(5231), - [anon_sym_if] = ACTIONS(5231), - [anon_sym_else] = ACTIONS(5231), - [anon_sym_when] = ACTIONS(5231), - [anon_sym_try] = ACTIONS(5231), - [anon_sym_throw] = ACTIONS(5231), - [anon_sym_return] = ACTIONS(5231), - [anon_sym_continue] = ACTIONS(5231), - [anon_sym_break] = ACTIONS(5231), - [anon_sym_COLON_COLON] = ACTIONS(5233), - [anon_sym_PLUS_EQ] = ACTIONS(5233), - [anon_sym_DASH_EQ] = ACTIONS(5233), - [anon_sym_STAR_EQ] = ACTIONS(5233), - [anon_sym_SLASH_EQ] = ACTIONS(5233), - [anon_sym_PERCENT_EQ] = ACTIONS(5233), - [anon_sym_BANG_EQ] = ACTIONS(5231), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5233), - [anon_sym_EQ_EQ] = ACTIONS(5231), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5233), - [anon_sym_LT_EQ] = ACTIONS(5233), - [anon_sym_GT_EQ] = ACTIONS(5233), - [anon_sym_BANGin] = ACTIONS(5233), - [anon_sym_is] = ACTIONS(5231), - [anon_sym_BANGis] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_SLASH] = ACTIONS(5231), - [anon_sym_PERCENT] = ACTIONS(5231), - [anon_sym_as_QMARK] = ACTIONS(5233), - [anon_sym_PLUS_PLUS] = ACTIONS(5233), - [anon_sym_DASH_DASH] = ACTIONS(5233), - [anon_sym_BANG] = ACTIONS(5231), - [anon_sym_BANG_BANG] = ACTIONS(5233), - [anon_sym_suspend] = ACTIONS(5231), - [anon_sym_sealed] = ACTIONS(5231), - [anon_sym_annotation] = ACTIONS(5231), - [anon_sym_data] = ACTIONS(5231), - [anon_sym_inner] = ACTIONS(5231), - [anon_sym_value] = ACTIONS(5231), - [anon_sym_override] = ACTIONS(5231), - [anon_sym_lateinit] = ACTIONS(5231), - [anon_sym_public] = ACTIONS(5231), - [anon_sym_private] = ACTIONS(5231), - [anon_sym_internal] = ACTIONS(5231), - [anon_sym_protected] = ACTIONS(5231), - [anon_sym_tailrec] = ACTIONS(5231), - [anon_sym_operator] = ACTIONS(5231), - [anon_sym_infix] = ACTIONS(5231), - [anon_sym_inline] = ACTIONS(5231), - [anon_sym_external] = ACTIONS(5231), - [sym_property_modifier] = ACTIONS(5231), - [anon_sym_abstract] = ACTIONS(5231), - [anon_sym_final] = ACTIONS(5231), - [anon_sym_open] = ACTIONS(5231), - [anon_sym_vararg] = ACTIONS(5231), - [anon_sym_noinline] = ACTIONS(5231), - [anon_sym_crossinline] = ACTIONS(5231), - [anon_sym_expect] = ACTIONS(5231), - [anon_sym_actual] = ACTIONS(5231), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5233), - [anon_sym_continue_AT] = ACTIONS(5233), - [anon_sym_break_AT] = ACTIONS(5233), - [anon_sym_this_AT] = ACTIONS(5233), - [anon_sym_super_AT] = ACTIONS(5233), - [sym_real_literal] = ACTIONS(5233), - [sym_integer_literal] = ACTIONS(5231), - [sym_hex_literal] = ACTIONS(5233), - [sym_bin_literal] = ACTIONS(5233), - [anon_sym_true] = ACTIONS(5231), - [anon_sym_false] = ACTIONS(5231), - [anon_sym_SQUOTE] = ACTIONS(5233), - [sym__backtick_identifier] = ACTIONS(5233), - [sym__automatic_semicolon] = ACTIONS(5233), - [sym_safe_nav] = ACTIONS(5233), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(5235), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), }, - [1202] = { - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(4530), - [anon_sym_fun] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4532), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_where] = ACTIONS(4530), - [anon_sym_object] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_this] = ACTIONS(4530), - [anon_sym_super] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_null] = ACTIONS(4530), - [anon_sym_if] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_when] = ACTIONS(4530), - [anon_sym_try] = ACTIONS(4530), - [anon_sym_throw] = ACTIONS(4530), - [anon_sym_return] = ACTIONS(4530), - [anon_sym_continue] = ACTIONS(4530), - [anon_sym_break] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4530), - [anon_sym_sealed] = ACTIONS(4530), - [anon_sym_annotation] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_override] = ACTIONS(4530), - [anon_sym_lateinit] = ACTIONS(4530), - [anon_sym_public] = ACTIONS(4530), - [anon_sym_private] = ACTIONS(4530), - [anon_sym_internal] = ACTIONS(4530), - [anon_sym_protected] = ACTIONS(4530), - [anon_sym_tailrec] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_infix] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym_external] = ACTIONS(4530), - [sym_property_modifier] = ACTIONS(4530), - [anon_sym_abstract] = ACTIONS(4530), - [anon_sym_final] = ACTIONS(4530), - [anon_sym_open] = ACTIONS(4530), - [anon_sym_vararg] = ACTIONS(4530), - [anon_sym_noinline] = ACTIONS(4530), - [anon_sym_crossinline] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4532), - [anon_sym_continue_AT] = ACTIONS(4532), - [anon_sym_break_AT] = ACTIONS(4532), - [anon_sym_this_AT] = ACTIONS(4532), - [anon_sym_super_AT] = ACTIONS(4532), - [sym_real_literal] = ACTIONS(4532), - [sym_integer_literal] = ACTIONS(4530), - [sym_hex_literal] = ACTIONS(4532), - [sym_bin_literal] = ACTIONS(4532), - [anon_sym_true] = ACTIONS(4530), - [anon_sym_false] = ACTIONS(4530), - [anon_sym_SQUOTE] = ACTIONS(4532), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4532), + [1190] = { + [sym_getter] = STATE(9131), + [sym_setter] = STATE(9131), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9322), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5247), + [anon_sym_get] = ACTIONS(5249), + [anon_sym_set] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [1203] = { - [sym__alpha_identifier] = ACTIONS(4461), - [anon_sym_AT] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_as] = ACTIONS(4461), - [anon_sym_EQ] = ACTIONS(4461), - [anon_sym_fun] = ACTIONS(4461), - [anon_sym_LBRACE] = ACTIONS(4463), - [anon_sym_RBRACE] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_where] = ACTIONS(4461), - [anon_sym_object] = ACTIONS(4461), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [anon_sym_get] = ACTIONS(4461), - [anon_sym_set] = ACTIONS(4461), - [anon_sym_this] = ACTIONS(4461), - [anon_sym_super] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [sym_label] = ACTIONS(4461), - [anon_sym_in] = ACTIONS(4461), - [anon_sym_DOT_DOT] = ACTIONS(4463), - [anon_sym_QMARK_COLON] = ACTIONS(4463), - [anon_sym_AMP_AMP] = ACTIONS(4463), - [anon_sym_PIPE_PIPE] = ACTIONS(4463), - [anon_sym_null] = ACTIONS(4461), - [anon_sym_if] = ACTIONS(4461), - [anon_sym_else] = ACTIONS(4461), - [anon_sym_when] = ACTIONS(4461), - [anon_sym_try] = ACTIONS(4461), - [anon_sym_throw] = ACTIONS(4461), - [anon_sym_return] = ACTIONS(4461), - [anon_sym_continue] = ACTIONS(4461), - [anon_sym_break] = ACTIONS(4461), - [anon_sym_COLON_COLON] = ACTIONS(4463), - [anon_sym_PLUS_EQ] = ACTIONS(4463), - [anon_sym_DASH_EQ] = ACTIONS(4463), - [anon_sym_STAR_EQ] = ACTIONS(4463), - [anon_sym_SLASH_EQ] = ACTIONS(4463), - [anon_sym_PERCENT_EQ] = ACTIONS(4463), - [anon_sym_BANG_EQ] = ACTIONS(4461), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4463), - [anon_sym_EQ_EQ] = ACTIONS(4461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4463), - [anon_sym_LT_EQ] = ACTIONS(4463), - [anon_sym_GT_EQ] = ACTIONS(4463), - [anon_sym_BANGin] = ACTIONS(4463), - [anon_sym_is] = ACTIONS(4461), - [anon_sym_BANGis] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(4461), - [anon_sym_as_QMARK] = ACTIONS(4463), - [anon_sym_PLUS_PLUS] = ACTIONS(4463), - [anon_sym_DASH_DASH] = ACTIONS(4463), - [anon_sym_BANG] = ACTIONS(4461), - [anon_sym_BANG_BANG] = ACTIONS(4463), - [anon_sym_suspend] = ACTIONS(4461), - [anon_sym_sealed] = ACTIONS(4461), - [anon_sym_annotation] = ACTIONS(4461), - [anon_sym_data] = ACTIONS(4461), - [anon_sym_inner] = ACTIONS(4461), - [anon_sym_value] = ACTIONS(4461), - [anon_sym_override] = ACTIONS(4461), - [anon_sym_lateinit] = ACTIONS(4461), - [anon_sym_public] = ACTIONS(4461), - [anon_sym_private] = ACTIONS(4461), - [anon_sym_internal] = ACTIONS(4461), - [anon_sym_protected] = ACTIONS(4461), - [anon_sym_tailrec] = ACTIONS(4461), - [anon_sym_operator] = ACTIONS(4461), - [anon_sym_infix] = ACTIONS(4461), - [anon_sym_inline] = ACTIONS(4461), - [anon_sym_external] = ACTIONS(4461), - [sym_property_modifier] = ACTIONS(4461), - [anon_sym_abstract] = ACTIONS(4461), - [anon_sym_final] = ACTIONS(4461), - [anon_sym_open] = ACTIONS(4461), - [anon_sym_vararg] = ACTIONS(4461), - [anon_sym_noinline] = ACTIONS(4461), - [anon_sym_crossinline] = ACTIONS(4461), - [anon_sym_expect] = ACTIONS(4461), - [anon_sym_actual] = ACTIONS(4461), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4463), - [anon_sym_continue_AT] = ACTIONS(4463), - [anon_sym_break_AT] = ACTIONS(4463), - [anon_sym_this_AT] = ACTIONS(4463), - [anon_sym_super_AT] = ACTIONS(4463), - [sym_real_literal] = ACTIONS(4463), - [sym_integer_literal] = ACTIONS(4461), - [sym_hex_literal] = ACTIONS(4463), - [sym_bin_literal] = ACTIONS(4463), - [anon_sym_true] = ACTIONS(4461), - [anon_sym_false] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym__backtick_identifier] = ACTIONS(4463), - [sym__automatic_semicolon] = ACTIONS(4463), - [sym_safe_nav] = ACTIONS(4463), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4463), + [1191] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_when] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), }, - [1204] = { - [sym__alpha_identifier] = ACTIONS(5235), - [anon_sym_AT] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_as] = ACTIONS(5235), - [anon_sym_EQ] = ACTIONS(5235), - [anon_sym_fun] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5237), - [anon_sym_RBRACE] = ACTIONS(5237), - [anon_sym_LPAREN] = ACTIONS(5237), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_LT] = ACTIONS(5235), - [anon_sym_GT] = ACTIONS(5235), - [anon_sym_where] = ACTIONS(5235), - [anon_sym_object] = ACTIONS(5235), - [anon_sym_DOT] = ACTIONS(5235), - [anon_sym_SEMI] = ACTIONS(5237), - [anon_sym_get] = ACTIONS(5235), - [anon_sym_set] = ACTIONS(5235), - [anon_sym_this] = ACTIONS(5235), - [anon_sym_super] = ACTIONS(5235), - [anon_sym_STAR] = ACTIONS(5235), - [sym_label] = ACTIONS(5235), - [anon_sym_in] = ACTIONS(5235), - [anon_sym_DOT_DOT] = ACTIONS(5237), - [anon_sym_QMARK_COLON] = ACTIONS(5237), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5237), - [anon_sym_null] = ACTIONS(5235), - [anon_sym_if] = ACTIONS(5235), - [anon_sym_else] = ACTIONS(5235), - [anon_sym_when] = ACTIONS(5235), - [anon_sym_try] = ACTIONS(5235), - [anon_sym_throw] = ACTIONS(5235), - [anon_sym_return] = ACTIONS(5235), - [anon_sym_continue] = ACTIONS(5235), - [anon_sym_break] = ACTIONS(5235), - [anon_sym_COLON_COLON] = ACTIONS(5237), - [anon_sym_PLUS_EQ] = ACTIONS(5237), - [anon_sym_DASH_EQ] = ACTIONS(5237), - [anon_sym_STAR_EQ] = ACTIONS(5237), - [anon_sym_SLASH_EQ] = ACTIONS(5237), - [anon_sym_PERCENT_EQ] = ACTIONS(5237), - [anon_sym_BANG_EQ] = ACTIONS(5235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5237), - [anon_sym_EQ_EQ] = ACTIONS(5235), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5237), - [anon_sym_LT_EQ] = ACTIONS(5237), - [anon_sym_GT_EQ] = ACTIONS(5237), - [anon_sym_BANGin] = ACTIONS(5237), - [anon_sym_is] = ACTIONS(5235), - [anon_sym_BANGis] = ACTIONS(5237), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_SLASH] = ACTIONS(5235), - [anon_sym_PERCENT] = ACTIONS(5235), - [anon_sym_as_QMARK] = ACTIONS(5237), - [anon_sym_PLUS_PLUS] = ACTIONS(5237), - [anon_sym_DASH_DASH] = ACTIONS(5237), - [anon_sym_BANG] = ACTIONS(5235), - [anon_sym_BANG_BANG] = ACTIONS(5237), - [anon_sym_suspend] = ACTIONS(5235), - [anon_sym_sealed] = ACTIONS(5235), - [anon_sym_annotation] = ACTIONS(5235), - [anon_sym_data] = ACTIONS(5235), - [anon_sym_inner] = ACTIONS(5235), - [anon_sym_value] = ACTIONS(5235), - [anon_sym_override] = ACTIONS(5235), - [anon_sym_lateinit] = ACTIONS(5235), - [anon_sym_public] = ACTIONS(5235), - [anon_sym_private] = ACTIONS(5235), - [anon_sym_internal] = ACTIONS(5235), - [anon_sym_protected] = ACTIONS(5235), - [anon_sym_tailrec] = ACTIONS(5235), - [anon_sym_operator] = ACTIONS(5235), - [anon_sym_infix] = ACTIONS(5235), - [anon_sym_inline] = ACTIONS(5235), - [anon_sym_external] = ACTIONS(5235), - [sym_property_modifier] = ACTIONS(5235), - [anon_sym_abstract] = ACTIONS(5235), - [anon_sym_final] = ACTIONS(5235), - [anon_sym_open] = ACTIONS(5235), - [anon_sym_vararg] = ACTIONS(5235), - [anon_sym_noinline] = ACTIONS(5235), - [anon_sym_crossinline] = ACTIONS(5235), - [anon_sym_expect] = ACTIONS(5235), - [anon_sym_actual] = ACTIONS(5235), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5237), - [anon_sym_continue_AT] = ACTIONS(5237), - [anon_sym_break_AT] = ACTIONS(5237), - [anon_sym_this_AT] = ACTIONS(5237), - [anon_sym_super_AT] = ACTIONS(5237), - [sym_real_literal] = ACTIONS(5237), - [sym_integer_literal] = ACTIONS(5235), - [sym_hex_literal] = ACTIONS(5237), - [sym_bin_literal] = ACTIONS(5237), - [anon_sym_true] = ACTIONS(5235), - [anon_sym_false] = ACTIONS(5235), - [anon_sym_SQUOTE] = ACTIONS(5237), - [sym__backtick_identifier] = ACTIONS(5237), - [sym__automatic_semicolon] = ACTIONS(5237), - [sym_safe_nav] = ACTIONS(5237), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5237), + [1192] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3127), + [anon_sym_continue_AT] = ACTIONS(3127), + [anon_sym_break_AT] = ACTIONS(3127), + [anon_sym_this_AT] = ACTIONS(3127), + [anon_sym_super_AT] = ACTIONS(3127), + [sym_real_literal] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(3125), + [sym_hex_literal] = ACTIONS(3127), + [sym_bin_literal] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3127), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3127), }, - [1205] = { - [sym__alpha_identifier] = ACTIONS(5239), - [anon_sym_AT] = ACTIONS(5241), - [anon_sym_LBRACK] = ACTIONS(5241), - [anon_sym_as] = ACTIONS(5239), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_fun] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5241), - [anon_sym_RBRACE] = ACTIONS(5241), - [anon_sym_LPAREN] = ACTIONS(5241), - [anon_sym_COMMA] = ACTIONS(5241), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_where] = ACTIONS(5239), - [anon_sym_object] = ACTIONS(5239), - [anon_sym_DOT] = ACTIONS(5239), - [anon_sym_SEMI] = ACTIONS(5241), - [anon_sym_get] = ACTIONS(5239), - [anon_sym_set] = ACTIONS(5239), - [anon_sym_this] = ACTIONS(5239), - [anon_sym_super] = ACTIONS(5239), - [anon_sym_STAR] = ACTIONS(5239), - [sym_label] = ACTIONS(5239), - [anon_sym_in] = ACTIONS(5239), - [anon_sym_DOT_DOT] = ACTIONS(5241), - [anon_sym_QMARK_COLON] = ACTIONS(5241), - [anon_sym_AMP_AMP] = ACTIONS(5241), - [anon_sym_PIPE_PIPE] = ACTIONS(5241), - [anon_sym_null] = ACTIONS(5239), - [anon_sym_if] = ACTIONS(5239), - [anon_sym_else] = ACTIONS(5239), - [anon_sym_when] = ACTIONS(5239), - [anon_sym_try] = ACTIONS(5239), - [anon_sym_throw] = ACTIONS(5239), - [anon_sym_return] = ACTIONS(5239), - [anon_sym_continue] = ACTIONS(5239), - [anon_sym_break] = ACTIONS(5239), - [anon_sym_COLON_COLON] = ACTIONS(5241), - [anon_sym_PLUS_EQ] = ACTIONS(5241), - [anon_sym_DASH_EQ] = ACTIONS(5241), - [anon_sym_STAR_EQ] = ACTIONS(5241), - [anon_sym_SLASH_EQ] = ACTIONS(5241), - [anon_sym_PERCENT_EQ] = ACTIONS(5241), - [anon_sym_BANG_EQ] = ACTIONS(5239), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5241), - [anon_sym_EQ_EQ] = ACTIONS(5239), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5241), + [1193] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), [anon_sym_LT_EQ] = ACTIONS(5241), [anon_sym_GT_EQ] = ACTIONS(5241), - [anon_sym_BANGin] = ACTIONS(5241), - [anon_sym_is] = ACTIONS(5239), - [anon_sym_BANGis] = ACTIONS(5241), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_PERCENT] = ACTIONS(5239), - [anon_sym_as_QMARK] = ACTIONS(5241), - [anon_sym_PLUS_PLUS] = ACTIONS(5241), - [anon_sym_DASH_DASH] = ACTIONS(5241), - [anon_sym_BANG] = ACTIONS(5239), - [anon_sym_BANG_BANG] = ACTIONS(5241), - [anon_sym_suspend] = ACTIONS(5239), - [anon_sym_sealed] = ACTIONS(5239), - [anon_sym_annotation] = ACTIONS(5239), - [anon_sym_data] = ACTIONS(5239), - [anon_sym_inner] = ACTIONS(5239), - [anon_sym_value] = ACTIONS(5239), - [anon_sym_override] = ACTIONS(5239), - [anon_sym_lateinit] = ACTIONS(5239), - [anon_sym_public] = ACTIONS(5239), - [anon_sym_private] = ACTIONS(5239), - [anon_sym_internal] = ACTIONS(5239), - [anon_sym_protected] = ACTIONS(5239), - [anon_sym_tailrec] = ACTIONS(5239), - [anon_sym_operator] = ACTIONS(5239), - [anon_sym_infix] = ACTIONS(5239), - [anon_sym_inline] = ACTIONS(5239), - [anon_sym_external] = ACTIONS(5239), - [sym_property_modifier] = ACTIONS(5239), - [anon_sym_abstract] = ACTIONS(5239), - [anon_sym_final] = ACTIONS(5239), - [anon_sym_open] = ACTIONS(5239), - [anon_sym_vararg] = ACTIONS(5239), - [anon_sym_noinline] = ACTIONS(5239), - [anon_sym_crossinline] = ACTIONS(5239), - [anon_sym_expect] = ACTIONS(5239), - [anon_sym_actual] = ACTIONS(5239), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5241), - [anon_sym_continue_AT] = ACTIONS(5241), - [anon_sym_break_AT] = ACTIONS(5241), - [anon_sym_this_AT] = ACTIONS(5241), - [anon_sym_super_AT] = ACTIONS(5241), - [sym_real_literal] = ACTIONS(5241), - [sym_integer_literal] = ACTIONS(5239), - [sym_hex_literal] = ACTIONS(5241), - [sym_bin_literal] = ACTIONS(5241), - [anon_sym_true] = ACTIONS(5239), - [anon_sym_false] = ACTIONS(5239), - [anon_sym_SQUOTE] = ACTIONS(5241), - [sym__backtick_identifier] = ACTIONS(5241), - [sym__automatic_semicolon] = ACTIONS(5241), - [sym_safe_nav] = ACTIONS(5241), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3119), }, - [1206] = { - [sym__alpha_identifier] = ACTIONS(5243), - [anon_sym_AT] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_as] = ACTIONS(5243), - [anon_sym_EQ] = ACTIONS(5243), - [anon_sym_fun] = ACTIONS(5243), - [anon_sym_LBRACE] = ACTIONS(5245), - [anon_sym_RBRACE] = ACTIONS(5245), - [anon_sym_LPAREN] = ACTIONS(5245), - [anon_sym_COMMA] = ACTIONS(5245), - [anon_sym_LT] = ACTIONS(5243), - [anon_sym_GT] = ACTIONS(5243), - [anon_sym_where] = ACTIONS(5243), - [anon_sym_object] = ACTIONS(5243), - [anon_sym_DOT] = ACTIONS(5243), - [anon_sym_SEMI] = ACTIONS(5245), - [anon_sym_get] = ACTIONS(5243), - [anon_sym_set] = ACTIONS(5243), - [anon_sym_this] = ACTIONS(5243), - [anon_sym_super] = ACTIONS(5243), - [anon_sym_STAR] = ACTIONS(5243), - [sym_label] = ACTIONS(5243), - [anon_sym_in] = ACTIONS(5243), - [anon_sym_DOT_DOT] = ACTIONS(5245), - [anon_sym_QMARK_COLON] = ACTIONS(5245), - [anon_sym_AMP_AMP] = ACTIONS(5245), - [anon_sym_PIPE_PIPE] = ACTIONS(5245), - [anon_sym_null] = ACTIONS(5243), - [anon_sym_if] = ACTIONS(5243), - [anon_sym_else] = ACTIONS(5243), - [anon_sym_when] = ACTIONS(5243), - [anon_sym_try] = ACTIONS(5243), - [anon_sym_throw] = ACTIONS(5243), - [anon_sym_return] = ACTIONS(5243), - [anon_sym_continue] = ACTIONS(5243), - [anon_sym_break] = ACTIONS(5243), - [anon_sym_COLON_COLON] = ACTIONS(5245), - [anon_sym_PLUS_EQ] = ACTIONS(5245), - [anon_sym_DASH_EQ] = ACTIONS(5245), - [anon_sym_STAR_EQ] = ACTIONS(5245), - [anon_sym_SLASH_EQ] = ACTIONS(5245), - [anon_sym_PERCENT_EQ] = ACTIONS(5245), - [anon_sym_BANG_EQ] = ACTIONS(5243), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5245), - [anon_sym_EQ_EQ] = ACTIONS(5243), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5245), - [anon_sym_LT_EQ] = ACTIONS(5245), - [anon_sym_GT_EQ] = ACTIONS(5245), - [anon_sym_BANGin] = ACTIONS(5245), - [anon_sym_is] = ACTIONS(5243), - [anon_sym_BANGis] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5243), - [anon_sym_DASH] = ACTIONS(5243), - [anon_sym_SLASH] = ACTIONS(5243), - [anon_sym_PERCENT] = ACTIONS(5243), - [anon_sym_as_QMARK] = ACTIONS(5245), - [anon_sym_PLUS_PLUS] = ACTIONS(5245), - [anon_sym_DASH_DASH] = ACTIONS(5245), - [anon_sym_BANG] = ACTIONS(5243), - [anon_sym_BANG_BANG] = ACTIONS(5245), - [anon_sym_suspend] = ACTIONS(5243), - [anon_sym_sealed] = ACTIONS(5243), - [anon_sym_annotation] = ACTIONS(5243), - [anon_sym_data] = ACTIONS(5243), - [anon_sym_inner] = ACTIONS(5243), - [anon_sym_value] = ACTIONS(5243), - [anon_sym_override] = ACTIONS(5243), - [anon_sym_lateinit] = ACTIONS(5243), - [anon_sym_public] = ACTIONS(5243), - [anon_sym_private] = ACTIONS(5243), - [anon_sym_internal] = ACTIONS(5243), - [anon_sym_protected] = ACTIONS(5243), - [anon_sym_tailrec] = ACTIONS(5243), - [anon_sym_operator] = ACTIONS(5243), - [anon_sym_infix] = ACTIONS(5243), - [anon_sym_inline] = ACTIONS(5243), - [anon_sym_external] = ACTIONS(5243), - [sym_property_modifier] = ACTIONS(5243), - [anon_sym_abstract] = ACTIONS(5243), - [anon_sym_final] = ACTIONS(5243), - [anon_sym_open] = ACTIONS(5243), - [anon_sym_vararg] = ACTIONS(5243), - [anon_sym_noinline] = ACTIONS(5243), - [anon_sym_crossinline] = ACTIONS(5243), - [anon_sym_expect] = ACTIONS(5243), - [anon_sym_actual] = ACTIONS(5243), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5245), - [anon_sym_continue_AT] = ACTIONS(5245), - [anon_sym_break_AT] = ACTIONS(5245), - [anon_sym_this_AT] = ACTIONS(5245), - [anon_sym_super_AT] = ACTIONS(5245), - [sym_real_literal] = ACTIONS(5245), - [sym_integer_literal] = ACTIONS(5243), - [sym_hex_literal] = ACTIONS(5245), - [sym_bin_literal] = ACTIONS(5245), - [anon_sym_true] = ACTIONS(5243), - [anon_sym_false] = ACTIONS(5243), - [anon_sym_SQUOTE] = ACTIONS(5245), - [sym__backtick_identifier] = ACTIONS(5245), - [sym__automatic_semicolon] = ACTIONS(5245), - [sym_safe_nav] = ACTIONS(5245), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5245), + [1194] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3138), }, - [1207] = { - [sym__alpha_identifier] = ACTIONS(5247), - [anon_sym_AT] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(5249), - [anon_sym_as] = ACTIONS(5247), - [anon_sym_EQ] = ACTIONS(5247), - [anon_sym_fun] = ACTIONS(5247), - [anon_sym_LBRACE] = ACTIONS(5249), - [anon_sym_RBRACE] = ACTIONS(5249), - [anon_sym_LPAREN] = ACTIONS(5249), - [anon_sym_COMMA] = ACTIONS(5249), - [anon_sym_LT] = ACTIONS(5247), - [anon_sym_GT] = ACTIONS(5247), - [anon_sym_where] = ACTIONS(5247), - [anon_sym_object] = ACTIONS(5247), - [anon_sym_DOT] = ACTIONS(5247), - [anon_sym_SEMI] = ACTIONS(5249), - [anon_sym_get] = ACTIONS(5247), - [anon_sym_set] = ACTIONS(5247), - [anon_sym_this] = ACTIONS(5247), - [anon_sym_super] = ACTIONS(5247), - [anon_sym_STAR] = ACTIONS(5247), - [sym_label] = ACTIONS(5247), - [anon_sym_in] = ACTIONS(5247), - [anon_sym_DOT_DOT] = ACTIONS(5249), - [anon_sym_QMARK_COLON] = ACTIONS(5249), - [anon_sym_AMP_AMP] = ACTIONS(5249), - [anon_sym_PIPE_PIPE] = ACTIONS(5249), - [anon_sym_null] = ACTIONS(5247), - [anon_sym_if] = ACTIONS(5247), - [anon_sym_else] = ACTIONS(5247), - [anon_sym_when] = ACTIONS(5247), - [anon_sym_try] = ACTIONS(5247), - [anon_sym_throw] = ACTIONS(5247), - [anon_sym_return] = ACTIONS(5247), - [anon_sym_continue] = ACTIONS(5247), - [anon_sym_break] = ACTIONS(5247), - [anon_sym_COLON_COLON] = ACTIONS(5249), - [anon_sym_PLUS_EQ] = ACTIONS(5249), - [anon_sym_DASH_EQ] = ACTIONS(5249), - [anon_sym_STAR_EQ] = ACTIONS(5249), - [anon_sym_SLASH_EQ] = ACTIONS(5249), - [anon_sym_PERCENT_EQ] = ACTIONS(5249), - [anon_sym_BANG_EQ] = ACTIONS(5247), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5249), - [anon_sym_EQ_EQ] = ACTIONS(5247), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5249), - [anon_sym_LT_EQ] = ACTIONS(5249), - [anon_sym_GT_EQ] = ACTIONS(5249), - [anon_sym_BANGin] = ACTIONS(5249), - [anon_sym_is] = ACTIONS(5247), - [anon_sym_BANGis] = ACTIONS(5249), - [anon_sym_PLUS] = ACTIONS(5247), - [anon_sym_DASH] = ACTIONS(5247), - [anon_sym_SLASH] = ACTIONS(5247), - [anon_sym_PERCENT] = ACTIONS(5247), - [anon_sym_as_QMARK] = ACTIONS(5249), - [anon_sym_PLUS_PLUS] = ACTIONS(5249), - [anon_sym_DASH_DASH] = ACTIONS(5249), - [anon_sym_BANG] = ACTIONS(5247), - [anon_sym_BANG_BANG] = ACTIONS(5249), - [anon_sym_suspend] = ACTIONS(5247), - [anon_sym_sealed] = ACTIONS(5247), - [anon_sym_annotation] = ACTIONS(5247), - [anon_sym_data] = ACTIONS(5247), - [anon_sym_inner] = ACTIONS(5247), - [anon_sym_value] = ACTIONS(5247), - [anon_sym_override] = ACTIONS(5247), - [anon_sym_lateinit] = ACTIONS(5247), - [anon_sym_public] = ACTIONS(5247), - [anon_sym_private] = ACTIONS(5247), - [anon_sym_internal] = ACTIONS(5247), - [anon_sym_protected] = ACTIONS(5247), - [anon_sym_tailrec] = ACTIONS(5247), - [anon_sym_operator] = ACTIONS(5247), - [anon_sym_infix] = ACTIONS(5247), - [anon_sym_inline] = ACTIONS(5247), - [anon_sym_external] = ACTIONS(5247), - [sym_property_modifier] = ACTIONS(5247), - [anon_sym_abstract] = ACTIONS(5247), - [anon_sym_final] = ACTIONS(5247), - [anon_sym_open] = ACTIONS(5247), - [anon_sym_vararg] = ACTIONS(5247), - [anon_sym_noinline] = ACTIONS(5247), - [anon_sym_crossinline] = ACTIONS(5247), - [anon_sym_expect] = ACTIONS(5247), - [anon_sym_actual] = ACTIONS(5247), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5249), - [anon_sym_continue_AT] = ACTIONS(5249), - [anon_sym_break_AT] = ACTIONS(5249), - [anon_sym_this_AT] = ACTIONS(5249), - [anon_sym_super_AT] = ACTIONS(5249), - [sym_real_literal] = ACTIONS(5249), - [sym_integer_literal] = ACTIONS(5247), - [sym_hex_literal] = ACTIONS(5249), - [sym_bin_literal] = ACTIONS(5249), - [anon_sym_true] = ACTIONS(5247), - [anon_sym_false] = ACTIONS(5247), - [anon_sym_SQUOTE] = ACTIONS(5249), - [sym__backtick_identifier] = ACTIONS(5249), - [sym__automatic_semicolon] = ACTIONS(5249), - [sym_safe_nav] = ACTIONS(5249), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5249), + [1195] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), }, - [1208] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4381), - [anon_sym_fun] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_GT] = ACTIONS(4381), - [anon_sym_where] = ACTIONS(4381), - [anon_sym_object] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_this] = ACTIONS(4381), - [anon_sym_super] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [sym_label] = ACTIONS(4381), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_QMARK_COLON] = ACTIONS(4383), - [anon_sym_AMP_AMP] = ACTIONS(4383), - [anon_sym_PIPE_PIPE] = ACTIONS(4383), - [anon_sym_null] = ACTIONS(4381), - [anon_sym_if] = ACTIONS(4381), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_when] = ACTIONS(4381), - [anon_sym_try] = ACTIONS(4381), - [anon_sym_throw] = ACTIONS(4381), - [anon_sym_return] = ACTIONS(4381), - [anon_sym_continue] = ACTIONS(4381), - [anon_sym_break] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4383), - [anon_sym_DASH_EQ] = ACTIONS(4383), - [anon_sym_STAR_EQ] = ACTIONS(4383), - [anon_sym_SLASH_EQ] = ACTIONS(4383), - [anon_sym_PERCENT_EQ] = ACTIONS(4383), - [anon_sym_BANG_EQ] = ACTIONS(4381), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), - [anon_sym_EQ_EQ] = ACTIONS(4381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), - [anon_sym_LT_EQ] = ACTIONS(4383), - [anon_sym_GT_EQ] = ACTIONS(4383), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_as_QMARK] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG] = ACTIONS(4381), - [anon_sym_BANG_BANG] = ACTIONS(4383), - [anon_sym_suspend] = ACTIONS(4381), - [anon_sym_sealed] = ACTIONS(4381), - [anon_sym_annotation] = ACTIONS(4381), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_override] = ACTIONS(4381), - [anon_sym_lateinit] = ACTIONS(4381), - [anon_sym_public] = ACTIONS(4381), - [anon_sym_private] = ACTIONS(4381), - [anon_sym_internal] = ACTIONS(4381), - [anon_sym_protected] = ACTIONS(4381), - [anon_sym_tailrec] = ACTIONS(4381), - [anon_sym_operator] = ACTIONS(4381), - [anon_sym_infix] = ACTIONS(4381), - [anon_sym_inline] = ACTIONS(4381), - [anon_sym_external] = ACTIONS(4381), - [sym_property_modifier] = ACTIONS(4381), - [anon_sym_abstract] = ACTIONS(4381), - [anon_sym_final] = ACTIONS(4381), - [anon_sym_open] = ACTIONS(4381), - [anon_sym_vararg] = ACTIONS(4381), - [anon_sym_noinline] = ACTIONS(4381), - [anon_sym_crossinline] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4383), - [anon_sym_continue_AT] = ACTIONS(4383), - [anon_sym_break_AT] = ACTIONS(4383), - [anon_sym_this_AT] = ACTIONS(4383), - [anon_sym_super_AT] = ACTIONS(4383), - [sym_real_literal] = ACTIONS(4383), - [sym_integer_literal] = ACTIONS(4381), - [sym_hex_literal] = ACTIONS(4383), - [sym_bin_literal] = ACTIONS(4383), - [anon_sym_true] = ACTIONS(4381), - [anon_sym_false] = ACTIONS(4381), - [anon_sym_SQUOTE] = ACTIONS(4383), - [sym__backtick_identifier] = ACTIONS(4383), - [sym__automatic_semicolon] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4383), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4383), + [1196] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3146), }, - [1209] = { - [sym__alpha_identifier] = ACTIONS(5251), - [anon_sym_AT] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_as] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5251), - [anon_sym_fun] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5253), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_LPAREN] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LT] = ACTIONS(5251), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_where] = ACTIONS(5251), - [anon_sym_object] = ACTIONS(5251), - [anon_sym_DOT] = ACTIONS(5251), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_get] = ACTIONS(5251), - [anon_sym_set] = ACTIONS(5251), - [anon_sym_this] = ACTIONS(5251), - [anon_sym_super] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [sym_label] = ACTIONS(5251), - [anon_sym_in] = ACTIONS(5251), - [anon_sym_DOT_DOT] = ACTIONS(5253), - [anon_sym_QMARK_COLON] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_null] = ACTIONS(5251), - [anon_sym_if] = ACTIONS(5251), - [anon_sym_else] = ACTIONS(5251), - [anon_sym_when] = ACTIONS(5251), - [anon_sym_try] = ACTIONS(5251), - [anon_sym_throw] = ACTIONS(5251), - [anon_sym_return] = ACTIONS(5251), - [anon_sym_continue] = ACTIONS(5251), - [anon_sym_break] = ACTIONS(5251), - [anon_sym_COLON_COLON] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5251), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5253), - [anon_sym_EQ_EQ] = ACTIONS(5251), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_BANGin] = ACTIONS(5253), - [anon_sym_is] = ACTIONS(5251), - [anon_sym_BANGis] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_PERCENT] = ACTIONS(5251), - [anon_sym_as_QMARK] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_BANG] = ACTIONS(5251), - [anon_sym_BANG_BANG] = ACTIONS(5253), - [anon_sym_suspend] = ACTIONS(5251), - [anon_sym_sealed] = ACTIONS(5251), - [anon_sym_annotation] = ACTIONS(5251), - [anon_sym_data] = ACTIONS(5251), - [anon_sym_inner] = ACTIONS(5251), - [anon_sym_value] = ACTIONS(5251), - [anon_sym_override] = ACTIONS(5251), - [anon_sym_lateinit] = ACTIONS(5251), - [anon_sym_public] = ACTIONS(5251), - [anon_sym_private] = ACTIONS(5251), - [anon_sym_internal] = ACTIONS(5251), - [anon_sym_protected] = ACTIONS(5251), - [anon_sym_tailrec] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_infix] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym_external] = ACTIONS(5251), - [sym_property_modifier] = ACTIONS(5251), - [anon_sym_abstract] = ACTIONS(5251), - [anon_sym_final] = ACTIONS(5251), - [anon_sym_open] = ACTIONS(5251), - [anon_sym_vararg] = ACTIONS(5251), - [anon_sym_noinline] = ACTIONS(5251), - [anon_sym_crossinline] = ACTIONS(5251), - [anon_sym_expect] = ACTIONS(5251), - [anon_sym_actual] = ACTIONS(5251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5253), - [anon_sym_continue_AT] = ACTIONS(5253), - [anon_sym_break_AT] = ACTIONS(5253), - [anon_sym_this_AT] = ACTIONS(5253), - [anon_sym_super_AT] = ACTIONS(5253), - [sym_real_literal] = ACTIONS(5253), - [sym_integer_literal] = ACTIONS(5251), - [sym_hex_literal] = ACTIONS(5253), - [sym_bin_literal] = ACTIONS(5253), - [anon_sym_true] = ACTIONS(5251), - [anon_sym_false] = ACTIONS(5251), - [anon_sym_SQUOTE] = ACTIONS(5253), - [sym__backtick_identifier] = ACTIONS(5253), - [sym__automatic_semicolon] = ACTIONS(5253), - [sym_safe_nav] = ACTIONS(5253), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5253), + [1197] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), }, - [1210] = { - [sym__alpha_identifier] = ACTIONS(5255), - [anon_sym_AT] = ACTIONS(5257), - [anon_sym_LBRACK] = ACTIONS(5257), - [anon_sym_as] = ACTIONS(5255), + [1198] = { + [sym_type_constraints] = STATE(1362), + [sym_function_body] = STATE(1014), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(5253), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), [anon_sym_EQ] = ACTIONS(5255), - [anon_sym_fun] = ACTIONS(5255), - [anon_sym_LBRACE] = ACTIONS(5257), - [anon_sym_RBRACE] = ACTIONS(5257), - [anon_sym_LPAREN] = ACTIONS(5257), - [anon_sym_COMMA] = ACTIONS(5257), - [anon_sym_LT] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5255), - [anon_sym_where] = ACTIONS(5255), - [anon_sym_object] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5255), - [anon_sym_SEMI] = ACTIONS(5257), - [anon_sym_get] = ACTIONS(5255), - [anon_sym_set] = ACTIONS(5255), - [anon_sym_this] = ACTIONS(5255), - [anon_sym_super] = ACTIONS(5255), - [anon_sym_STAR] = ACTIONS(5255), - [sym_label] = ACTIONS(5255), - [anon_sym_in] = ACTIONS(5255), - [anon_sym_DOT_DOT] = ACTIONS(5257), - [anon_sym_QMARK_COLON] = ACTIONS(5257), - [anon_sym_AMP_AMP] = ACTIONS(5257), - [anon_sym_PIPE_PIPE] = ACTIONS(5257), - [anon_sym_null] = ACTIONS(5255), - [anon_sym_if] = ACTIONS(5255), - [anon_sym_else] = ACTIONS(5255), - [anon_sym_when] = ACTIONS(5255), - [anon_sym_try] = ACTIONS(5255), - [anon_sym_throw] = ACTIONS(5255), - [anon_sym_return] = ACTIONS(5255), - [anon_sym_continue] = ACTIONS(5255), - [anon_sym_break] = ACTIONS(5255), - [anon_sym_COLON_COLON] = ACTIONS(5257), - [anon_sym_PLUS_EQ] = ACTIONS(5257), - [anon_sym_DASH_EQ] = ACTIONS(5257), - [anon_sym_STAR_EQ] = ACTIONS(5257), - [anon_sym_SLASH_EQ] = ACTIONS(5257), - [anon_sym_PERCENT_EQ] = ACTIONS(5257), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5257), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5257), - [anon_sym_LT_EQ] = ACTIONS(5257), - [anon_sym_GT_EQ] = ACTIONS(5257), - [anon_sym_BANGin] = ACTIONS(5257), - [anon_sym_is] = ACTIONS(5255), - [anon_sym_BANGis] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_SLASH] = ACTIONS(5255), - [anon_sym_PERCENT] = ACTIONS(5255), - [anon_sym_as_QMARK] = ACTIONS(5257), - [anon_sym_PLUS_PLUS] = ACTIONS(5257), - [anon_sym_DASH_DASH] = ACTIONS(5257), - [anon_sym_BANG] = ACTIONS(5255), - [anon_sym_BANG_BANG] = ACTIONS(5257), - [anon_sym_suspend] = ACTIONS(5255), - [anon_sym_sealed] = ACTIONS(5255), - [anon_sym_annotation] = ACTIONS(5255), - [anon_sym_data] = ACTIONS(5255), - [anon_sym_inner] = ACTIONS(5255), - [anon_sym_value] = ACTIONS(5255), - [anon_sym_override] = ACTIONS(5255), - [anon_sym_lateinit] = ACTIONS(5255), - [anon_sym_public] = ACTIONS(5255), - [anon_sym_private] = ACTIONS(5255), - [anon_sym_internal] = ACTIONS(5255), - [anon_sym_protected] = ACTIONS(5255), - [anon_sym_tailrec] = ACTIONS(5255), - [anon_sym_operator] = ACTIONS(5255), - [anon_sym_infix] = ACTIONS(5255), - [anon_sym_inline] = ACTIONS(5255), - [anon_sym_external] = ACTIONS(5255), - [sym_property_modifier] = ACTIONS(5255), - [anon_sym_abstract] = ACTIONS(5255), - [anon_sym_final] = ACTIONS(5255), - [anon_sym_open] = ACTIONS(5255), - [anon_sym_vararg] = ACTIONS(5255), - [anon_sym_noinline] = ACTIONS(5255), - [anon_sym_crossinline] = ACTIONS(5255), - [anon_sym_expect] = ACTIONS(5255), - [anon_sym_actual] = ACTIONS(5255), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5257), - [anon_sym_continue_AT] = ACTIONS(5257), - [anon_sym_break_AT] = ACTIONS(5257), - [anon_sym_this_AT] = ACTIONS(5257), - [anon_sym_super_AT] = ACTIONS(5257), - [sym_real_literal] = ACTIONS(5257), - [sym_integer_literal] = ACTIONS(5255), - [sym_hex_literal] = ACTIONS(5257), - [sym_bin_literal] = ACTIONS(5257), - [anon_sym_true] = ACTIONS(5255), - [anon_sym_false] = ACTIONS(5255), - [anon_sym_SQUOTE] = ACTIONS(5257), - [sym__backtick_identifier] = ACTIONS(5257), - [sym__automatic_semicolon] = ACTIONS(5257), - [sym_safe_nav] = ACTIONS(5257), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5257), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), }, - [1211] = { - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(1826), - [anon_sym_set] = ACTIONS(1826), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(1826), - [anon_sym_sealed] = ACTIONS(1826), - [anon_sym_annotation] = ACTIONS(1826), - [anon_sym_data] = ACTIONS(1826), - [anon_sym_inner] = ACTIONS(1826), - [anon_sym_value] = ACTIONS(1826), - [anon_sym_override] = ACTIONS(1826), - [anon_sym_lateinit] = ACTIONS(1826), - [anon_sym_public] = ACTIONS(1826), - [anon_sym_private] = ACTIONS(1826), - [anon_sym_internal] = ACTIONS(1826), - [anon_sym_protected] = ACTIONS(1826), - [anon_sym_tailrec] = ACTIONS(1826), - [anon_sym_operator] = ACTIONS(1826), - [anon_sym_infix] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [anon_sym_external] = ACTIONS(1826), - [sym_property_modifier] = ACTIONS(1826), - [anon_sym_abstract] = ACTIONS(1826), - [anon_sym_final] = ACTIONS(1826), - [anon_sym_open] = ACTIONS(1826), - [anon_sym_vararg] = ACTIONS(1826), - [anon_sym_noinline] = ACTIONS(1826), - [anon_sym_crossinline] = ACTIONS(1826), - [anon_sym_expect] = ACTIONS(1826), - [anon_sym_actual] = ACTIONS(1826), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [1199] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3195), + [anon_sym_continue_AT] = ACTIONS(3195), + [anon_sym_break_AT] = ACTIONS(3195), + [anon_sym_this_AT] = ACTIONS(3195), + [anon_sym_super_AT] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_hex_literal] = ACTIONS(3195), + [sym_bin_literal] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3195), }, - [1212] = { - [sym_function_body] = STATE(1155), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_object] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_this] = ACTIONS(4339), - [anon_sym_super] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [sym_label] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [anon_sym_try] = ACTIONS(4339), - [anon_sym_throw] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_PLUS_EQ] = ACTIONS(4341), - [anon_sym_DASH_EQ] = ACTIONS(4341), - [anon_sym_STAR_EQ] = ACTIONS(4341), - [anon_sym_SLASH_EQ] = ACTIONS(4341), - [anon_sym_PERCENT_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4339), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4341), - [anon_sym_continue_AT] = ACTIONS(4341), - [anon_sym_break_AT] = ACTIONS(4341), - [anon_sym_this_AT] = ACTIONS(4341), - [anon_sym_super_AT] = ACTIONS(4341), - [sym_real_literal] = ACTIONS(4341), - [sym_integer_literal] = ACTIONS(4339), - [sym_hex_literal] = ACTIONS(4341), - [sym_bin_literal] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4339), - [anon_sym_false] = ACTIONS(4339), - [anon_sym_SQUOTE] = ACTIONS(4341), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4341), - }, - [1213] = { - [sym_function_body] = STATE(1043), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_object] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_this] = ACTIONS(4530), - [anon_sym_super] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_null] = ACTIONS(4530), - [anon_sym_if] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_when] = ACTIONS(4530), - [anon_sym_try] = ACTIONS(4530), - [anon_sym_throw] = ACTIONS(4530), - [anon_sym_return] = ACTIONS(4530), - [anon_sym_continue] = ACTIONS(4530), - [anon_sym_break] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4530), - [anon_sym_sealed] = ACTIONS(4530), - [anon_sym_annotation] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_override] = ACTIONS(4530), - [anon_sym_lateinit] = ACTIONS(4530), - [anon_sym_public] = ACTIONS(4530), - [anon_sym_private] = ACTIONS(4530), - [anon_sym_internal] = ACTIONS(4530), - [anon_sym_protected] = ACTIONS(4530), - [anon_sym_tailrec] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_infix] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym_external] = ACTIONS(4530), - [sym_property_modifier] = ACTIONS(4530), - [anon_sym_abstract] = ACTIONS(4530), - [anon_sym_final] = ACTIONS(4530), - [anon_sym_open] = ACTIONS(4530), - [anon_sym_vararg] = ACTIONS(4530), - [anon_sym_noinline] = ACTIONS(4530), - [anon_sym_crossinline] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4532), - [anon_sym_continue_AT] = ACTIONS(4532), - [anon_sym_break_AT] = ACTIONS(4532), - [anon_sym_this_AT] = ACTIONS(4532), - [anon_sym_super_AT] = ACTIONS(4532), - [sym_real_literal] = ACTIONS(4532), - [sym_integer_literal] = ACTIONS(4530), - [sym_hex_literal] = ACTIONS(4532), - [sym_bin_literal] = ACTIONS(4532), - [anon_sym_true] = ACTIONS(4530), - [anon_sym_false] = ACTIONS(4530), - [anon_sym_SQUOTE] = ACTIONS(4532), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4532), - }, - [1214] = { - [sym_function_body] = STATE(1135), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_object] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_this] = ACTIONS(4518), - [anon_sym_super] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4518), - [sym_label] = ACTIONS(4518), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_null] = ACTIONS(4518), - [anon_sym_if] = ACTIONS(4518), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_when] = ACTIONS(4518), - [anon_sym_try] = ACTIONS(4518), - [anon_sym_throw] = ACTIONS(4518), - [anon_sym_return] = ACTIONS(4518), - [anon_sym_continue] = ACTIONS(4518), - [anon_sym_break] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_PLUS_EQ] = ACTIONS(4520), - [anon_sym_DASH_EQ] = ACTIONS(4520), - [anon_sym_STAR_EQ] = ACTIONS(4520), - [anon_sym_SLASH_EQ] = ACTIONS(4520), - [anon_sym_PERCENT_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4518), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4518), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_suspend] = ACTIONS(4518), - [anon_sym_sealed] = ACTIONS(4518), - [anon_sym_annotation] = ACTIONS(4518), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_override] = ACTIONS(4518), - [anon_sym_lateinit] = ACTIONS(4518), - [anon_sym_public] = ACTIONS(4518), - [anon_sym_private] = ACTIONS(4518), - [anon_sym_internal] = ACTIONS(4518), - [anon_sym_protected] = ACTIONS(4518), - [anon_sym_tailrec] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_infix] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym_external] = ACTIONS(4518), - [sym_property_modifier] = ACTIONS(4518), - [anon_sym_abstract] = ACTIONS(4518), - [anon_sym_final] = ACTIONS(4518), - [anon_sym_open] = ACTIONS(4518), - [anon_sym_vararg] = ACTIONS(4518), - [anon_sym_noinline] = ACTIONS(4518), - [anon_sym_crossinline] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4520), - [anon_sym_continue_AT] = ACTIONS(4520), - [anon_sym_break_AT] = ACTIONS(4520), - [anon_sym_this_AT] = ACTIONS(4520), - [anon_sym_super_AT] = ACTIONS(4520), - [sym_real_literal] = ACTIONS(4520), - [sym_integer_literal] = ACTIONS(4518), - [sym_hex_literal] = ACTIONS(4520), - [sym_bin_literal] = ACTIONS(4520), - [anon_sym_true] = ACTIONS(4518), - [anon_sym_false] = ACTIONS(4518), - [anon_sym_SQUOTE] = ACTIONS(4520), - [sym__backtick_identifier] = ACTIONS(4520), - [sym__automatic_semicolon] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4520), + [1200] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3188), }, - [1215] = { - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(4196), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [1201] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3177), }, - [1216] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), + [1202] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3572), [anon_sym_RBRACK] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3574), [anon_sym_EQ] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1586), [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3576), [anon_sym_COMMA] = ACTIONS(3103), [anon_sym_RPAREN] = ACTIONS(3103), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), + [anon_sym_GT] = ACTIONS(3578), [anon_sym_where] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3580), [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), [anon_sym_DASH_GT] = ACTIONS(3103), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), [anon_sym_while] = ACTIONS(3101), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3634), + [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_PLUS_EQ] = ACTIONS(3103), [anon_sym_DASH_EQ] = ACTIONS(3103), [anon_sym_STAR_EQ] = ACTIONS(3103), [anon_sym_SLASH_EQ] = ACTIONS(3103), [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(3101), [anon_sym_sealed] = ACTIONS(3101), [anon_sym_annotation] = ACTIONS(3101), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), [anon_sym_override] = ACTIONS(3101), [anon_sym_lateinit] = ACTIONS(3101), [anon_sym_public] = ACTIONS(3101), @@ -188582,296 +186093,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3101), [anon_sym_noinline] = ACTIONS(3101), [anon_sym_crossinline] = ACTIONS(3101), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1217] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3168), - [anon_sym_fun] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3168), - [anon_sym_super] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5263), - [anon_sym_DOT_DOT] = ACTIONS(5265), - [anon_sym_QMARK_COLON] = ACTIONS(5267), - [anon_sym_AMP_AMP] = ACTIONS(5269), - [anon_sym_PIPE_PIPE] = ACTIONS(5271), - [anon_sym_null] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_when] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3170), - [anon_sym_DASH_EQ] = ACTIONS(3170), - [anon_sym_STAR_EQ] = ACTIONS(3170), - [anon_sym_SLASH_EQ] = ACTIONS(3170), - [anon_sym_PERCENT_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(5273), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5275), - [anon_sym_EQ_EQ] = ACTIONS(5273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5275), - [anon_sym_LT_EQ] = ACTIONS(5277), - [anon_sym_GT_EQ] = ACTIONS(5277), - [anon_sym_BANGin] = ACTIONS(5279), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3170), - [anon_sym_continue_AT] = ACTIONS(3170), - [anon_sym_break_AT] = ACTIONS(3170), - [anon_sym_this_AT] = ACTIONS(3170), - [anon_sym_super_AT] = ACTIONS(3170), - [sym_real_literal] = ACTIONS(3170), - [sym_integer_literal] = ACTIONS(3168), - [sym_hex_literal] = ACTIONS(3170), - [sym_bin_literal] = ACTIONS(3170), - [anon_sym_true] = ACTIONS(3168), - [anon_sym_false] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3170), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), - [sym_safe_nav] = ACTIONS(4567), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3170), - }, - [1218] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym_fun] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_object] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_this] = ACTIONS(3123), - [anon_sym_super] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_when] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_throw] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_STAR_EQ] = ACTIONS(3125), - [anon_sym_SLASH_EQ] = ACTIONS(3125), - [anon_sym_PERCENT_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3125), - [anon_sym_continue_AT] = ACTIONS(3125), - [anon_sym_break_AT] = ACTIONS(3125), - [anon_sym_this_AT] = ACTIONS(3125), - [anon_sym_super_AT] = ACTIONS(3125), - [sym_real_literal] = ACTIONS(3125), - [sym_integer_literal] = ACTIONS(3123), - [sym_hex_literal] = ACTIONS(3125), - [sym_bin_literal] = ACTIONS(3125), - [anon_sym_true] = ACTIONS(3123), - [anon_sym_false] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3125), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3125), }, - [1219] = { - [sym_getter] = STATE(9431), - [sym_setter] = STATE(9431), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9565), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [1203] = { + [sym_getter] = STATE(9150), + [sym_setter] = STATE(9150), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9322), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(5283), - [anon_sym_get] = ACTIONS(5285), - [anon_sym_set] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5257), + [anon_sym_get] = ACTIONS(5249), + [anon_sym_set] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -188900,293 +186201,818 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1220] = { - [sym_type_constraints] = STATE(1342), - [sym_function_body] = STATE(1153), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(5289), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), + [1204] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3134), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), }, - [1221] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3116), + [1205] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3116), - [anon_sym_fun] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_object] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_this] = ACTIONS(3116), - [anon_sym_super] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3116), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_when] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3116), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [anon_sym_this_AT] = ACTIONS(3118), - [anon_sym_super_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3116), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3116), - [anon_sym_false] = ACTIONS(3116), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3169), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, - [1222] = { - [sym_getter] = STATE(9553), - [sym_setter] = STATE(9553), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9565), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [1206] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3173), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_RPAREN] = ACTIONS(3173), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(5293), - [anon_sym_get] = ACTIONS(5285), - [anon_sym_set] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3171), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3173), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3173), + [anon_sym_DASH_EQ] = ACTIONS(3173), + [anon_sym_STAR_EQ] = ACTIONS(3173), + [anon_sym_SLASH_EQ] = ACTIONS(3173), + [anon_sym_PERCENT_EQ] = ACTIONS(3173), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1207] = { + [sym_type_constraints] = STATE(1367), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(5259), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), + }, + [1208] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(5235), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3184), + }, + [1209] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(5235), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), + }, + [1210] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(5235), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_when] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_throw] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3090), + [anon_sym_continue_AT] = ACTIONS(3090), + [anon_sym_break_AT] = ACTIONS(3090), + [anon_sym_this_AT] = ACTIONS(3090), + [anon_sym_super_AT] = ACTIONS(3090), + [sym_real_literal] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [sym_hex_literal] = ACTIONS(3090), + [sym_bin_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), + }, + [1211] = { + [sym_getter] = STATE(9460), + [sym_setter] = STATE(9460), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9322), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5261), + [anon_sym_get] = ACTIONS(5249), + [anon_sym_set] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -189215,188 +187041,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1223] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_object] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3101), - [anon_sym_super] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5263), - [anon_sym_DOT_DOT] = ACTIONS(5265), - [anon_sym_QMARK_COLON] = ACTIONS(5267), - [anon_sym_AMP_AMP] = ACTIONS(5269), - [anon_sym_PIPE_PIPE] = ACTIONS(5271), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_when] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(5273), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5275), - [anon_sym_EQ_EQ] = ACTIONS(5273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5275), - [anon_sym_LT_EQ] = ACTIONS(5277), - [anon_sym_GT_EQ] = ACTIONS(5277), - [anon_sym_BANGin] = ACTIONS(5279), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3103), - [anon_sym_continue_AT] = ACTIONS(3103), - [anon_sym_break_AT] = ACTIONS(3103), - [anon_sym_this_AT] = ACTIONS(3103), - [anon_sym_super_AT] = ACTIONS(3103), - [sym_real_literal] = ACTIONS(3103), - [sym_integer_literal] = ACTIONS(3101), - [sym_hex_literal] = ACTIONS(3103), - [sym_bin_literal] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3101), - [anon_sym_false] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3103), - [sym_safe_nav] = ACTIONS(4567), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3103), }, - [1224] = { - [sym_getter] = STATE(9500), - [sym_setter] = STATE(9500), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9565), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [1212] = { + [sym_getter] = STATE(9156), + [sym_setter] = STATE(9156), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9322), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(5295), - [anon_sym_get] = ACTIONS(5285), - [anon_sym_set] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5263), + [anon_sym_get] = ACTIONS(5249), + [anon_sym_set] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -189425,293 +187146,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1225] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym_fun] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_object] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3105), - [anon_sym_super] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5263), - [anon_sym_DOT_DOT] = ACTIONS(5265), - [anon_sym_QMARK_COLON] = ACTIONS(5267), - [anon_sym_AMP_AMP] = ACTIONS(5269), - [anon_sym_PIPE_PIPE] = ACTIONS(5271), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_when] = ACTIONS(3105), - [anon_sym_try] = ACTIONS(3105), - [anon_sym_throw] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(5273), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5275), - [anon_sym_EQ_EQ] = ACTIONS(5273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5275), - [anon_sym_LT_EQ] = ACTIONS(5277), - [anon_sym_GT_EQ] = ACTIONS(5277), - [anon_sym_BANGin] = ACTIONS(5279), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3107), - [anon_sym_continue_AT] = ACTIONS(3107), - [anon_sym_break_AT] = ACTIONS(3107), - [anon_sym_this_AT] = ACTIONS(3107), - [anon_sym_super_AT] = ACTIONS(3107), - [sym_real_literal] = ACTIONS(3107), - [sym_integer_literal] = ACTIONS(3105), - [sym_hex_literal] = ACTIONS(3107), - [sym_bin_literal] = ACTIONS(3107), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3107), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), - [sym_safe_nav] = ACTIONS(4567), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3107), }, - [1226] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), + [1213] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3156), - [anon_sym_super] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5263), - [anon_sym_DOT_DOT] = ACTIONS(5265), - [anon_sym_QMARK_COLON] = ACTIONS(5267), - [anon_sym_AMP_AMP] = ACTIONS(5269), - [anon_sym_PIPE_PIPE] = ACTIONS(5271), - [anon_sym_null] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_when] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_STAR_EQ] = ACTIONS(3158), - [anon_sym_SLASH_EQ] = ACTIONS(3158), - [anon_sym_PERCENT_EQ] = ACTIONS(3158), - [anon_sym_BANG_EQ] = ACTIONS(5273), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5275), - [anon_sym_EQ_EQ] = ACTIONS(5273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5275), - [anon_sym_LT_EQ] = ACTIONS(5277), - [anon_sym_GT_EQ] = ACTIONS(5277), - [anon_sym_BANGin] = ACTIONS(5279), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3127), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3127), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3158), - [anon_sym_continue_AT] = ACTIONS(3158), - [anon_sym_break_AT] = ACTIONS(3158), - [anon_sym_this_AT] = ACTIONS(3158), - [anon_sym_super_AT] = ACTIONS(3158), - [sym_real_literal] = ACTIONS(3158), - [sym_integer_literal] = ACTIONS(3156), - [sym_hex_literal] = ACTIONS(3158), - [sym_bin_literal] = ACTIONS(3158), - [anon_sym_true] = ACTIONS(3156), - [anon_sym_false] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3158), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(4567), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3158), }, - [1227] = { - [sym_getter] = STATE(9408), - [sym_setter] = STATE(9408), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9565), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [1214] = { + [sym_getter] = STATE(9110), + [sym_setter] = STATE(9110), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9322), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(5297), - [anon_sym_get] = ACTIONS(5285), - [anon_sym_set] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5265), + [anon_sym_get] = ACTIONS(5249), + [anon_sym_set] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -189740,90 +187356,1035 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1228] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), + [1215] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3119), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3119), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1216] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3138), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3138), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1217] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3142), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1218] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3146), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1219] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3162), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1220] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3195), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3195), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1221] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_DASH_GT] = ACTIONS(3188), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1222] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3177), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3177), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1223] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_super] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(5235), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_when] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3103), + [anon_sym_continue_AT] = ACTIONS(3103), + [anon_sym_break_AT] = ACTIONS(3103), + [anon_sym_this_AT] = ACTIONS(3103), + [anon_sym_super_AT] = ACTIONS(3103), + [sym_real_literal] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(3101), + [sym_hex_literal] = ACTIONS(3103), + [sym_bin_literal] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3103), + }, + [1224] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3572), [anon_sym_RBRACK] = ACTIONS(3158), - [anon_sym_as] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3574), [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1586), [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3576), [anon_sym_COMMA] = ACTIONS(3158), [anon_sym_RPAREN] = ACTIONS(3158), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), + [anon_sym_GT] = ACTIONS(3578), [anon_sym_where] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3580), [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), [anon_sym_DASH_GT] = ACTIONS(3158), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), [anon_sym_while] = ACTIONS(3156), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3634), + [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_PLUS_EQ] = ACTIONS(3158), [anon_sym_DASH_EQ] = ACTIONS(3158), [anon_sym_STAR_EQ] = ACTIONS(3158), [anon_sym_SLASH_EQ] = ACTIONS(3158), [anon_sym_PERCENT_EQ] = ACTIONS(3158), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(3156), [anon_sym_sealed] = ACTIONS(3156), [anon_sym_annotation] = ACTIONS(3156), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), [anon_sym_override] = ACTIONS(3156), [anon_sym_lateinit] = ACTIONS(3156), [anon_sym_public] = ACTIONS(3156), @@ -189842,716 +188403,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3156), [anon_sym_noinline] = ACTIONS(3156), [anon_sym_crossinline] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1229] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3188), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3188), - [anon_sym_super] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5263), - [anon_sym_DOT_DOT] = ACTIONS(5265), - [anon_sym_QMARK_COLON] = ACTIONS(5267), - [anon_sym_AMP_AMP] = ACTIONS(5269), - [anon_sym_PIPE_PIPE] = ACTIONS(5271), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_when] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(5273), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5275), - [anon_sym_EQ_EQ] = ACTIONS(5273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5275), - [anon_sym_LT_EQ] = ACTIONS(5277), - [anon_sym_GT_EQ] = ACTIONS(5277), - [anon_sym_BANGin] = ACTIONS(5279), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [anon_sym_this_AT] = ACTIONS(3190), - [anon_sym_super_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3188), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3188), - [anon_sym_false] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(4567), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [1230] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_fun] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_this] = ACTIONS(3109), - [anon_sym_super] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(5265), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_null] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_when] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3111), - [anon_sym_continue_AT] = ACTIONS(3111), - [anon_sym_break_AT] = ACTIONS(3111), - [anon_sym_this_AT] = ACTIONS(3111), - [anon_sym_super_AT] = ACTIONS(3111), - [sym_real_literal] = ACTIONS(3111), - [sym_integer_literal] = ACTIONS(3109), - [sym_hex_literal] = ACTIONS(3111), - [sym_bin_literal] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3111), - }, - [1231] = { - [sym_type_constraints] = STATE(1363), - [sym_function_body] = STATE(1087), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), }, - [1232] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_fun] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_object] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_this] = ACTIONS(3149), - [anon_sym_super] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_null] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_when] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3149), - [anon_sym_throw] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3151), - [anon_sym_continue_AT] = ACTIONS(3151), - [anon_sym_break_AT] = ACTIONS(3151), - [anon_sym_this_AT] = ACTIONS(3151), - [anon_sym_super_AT] = ACTIONS(3151), - [sym_real_literal] = ACTIONS(3151), - [sym_integer_literal] = ACTIONS(3149), - [sym_hex_literal] = ACTIONS(3151), - [sym_bin_literal] = ACTIONS(3151), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3151), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3151), + [1225] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5267), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [1233] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), + [1226] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(5265), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3184), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3090), - [anon_sym_continue_AT] = ACTIONS(3090), - [anon_sym_break_AT] = ACTIONS(3090), - [anon_sym_this_AT] = ACTIONS(3090), - [anon_sym_super_AT] = ACTIONS(3090), - [sym_real_literal] = ACTIONS(3090), - [sym_integer_literal] = ACTIONS(3088), - [sym_hex_literal] = ACTIONS(3090), - [sym_bin_literal] = ACTIONS(3090), - [anon_sym_true] = ACTIONS(3088), - [anon_sym_false] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3090), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(4567), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), }, - [1234] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3186), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3186), - [anon_sym_RPAREN] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3186), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3186), - [anon_sym_DASH_EQ] = ACTIONS(3186), - [anon_sym_STAR_EQ] = ACTIONS(3186), - [anon_sym_SLASH_EQ] = ACTIONS(3186), - [anon_sym_PERCENT_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3184), - [anon_sym_sealed] = ACTIONS(3184), - [anon_sym_annotation] = ACTIONS(3184), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_lateinit] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_internal] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_tailrec] = ACTIONS(3184), - [anon_sym_operator] = ACTIONS(3184), - [anon_sym_infix] = ACTIONS(3184), - [anon_sym_inline] = ACTIONS(3184), - [anon_sym_external] = ACTIONS(3184), - [sym_property_modifier] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_final] = ACTIONS(3184), - [anon_sym_open] = ACTIONS(3184), - [anon_sym_vararg] = ACTIONS(3184), - [anon_sym_noinline] = ACTIONS(3184), - [anon_sym_crossinline] = ACTIONS(3184), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1227] = { + [sym_type_constraints] = STATE(1371), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(5271), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [1235] = { - [sym_getter] = STATE(9457), - [sym_setter] = STATE(9457), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9565), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), + [1228] = { + [sym_getter] = STATE(9265), + [sym_setter] = STATE(9265), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9322), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(5301), - [anon_sym_get] = ACTIONS(5285), - [anon_sym_set] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5273), + [anon_sym_get] = ACTIONS(5249), + [anon_sym_set] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -190580,3558 +188826,3329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1236] = { - [sym_type_constraints] = STATE(1366), - [sym_function_body] = STATE(1045), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(5303), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), - }, - [1237] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3107), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(3105), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3105), - [anon_sym_sealed] = ACTIONS(3105), - [anon_sym_annotation] = ACTIONS(3105), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3105), - [anon_sym_lateinit] = ACTIONS(3105), - [anon_sym_public] = ACTIONS(3105), - [anon_sym_private] = ACTIONS(3105), - [anon_sym_internal] = ACTIONS(3105), - [anon_sym_protected] = ACTIONS(3105), - [anon_sym_tailrec] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_infix] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym_external] = ACTIONS(3105), - [sym_property_modifier] = ACTIONS(3105), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_final] = ACTIONS(3105), - [anon_sym_open] = ACTIONS(3105), - [anon_sym_vararg] = ACTIONS(3105), - [anon_sym_noinline] = ACTIONS(3105), - [anon_sym_crossinline] = ACTIONS(3105), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1238] = { - [sym_type_constraints] = STATE(1372), - [sym_function_body] = STATE(1197), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), - }, - [1239] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), + [1229] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3094), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5263), - [anon_sym_DOT_DOT] = ACTIONS(5265), - [anon_sym_QMARK_COLON] = ACTIONS(5267), - [anon_sym_AMP_AMP] = ACTIONS(5269), - [anon_sym_PIPE_PIPE] = ACTIONS(5271), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(5273), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5275), - [anon_sym_EQ_EQ] = ACTIONS(5273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5275), - [anon_sym_LT_EQ] = ACTIONS(5277), - [anon_sym_GT_EQ] = ACTIONS(5277), - [anon_sym_BANGin] = ACTIONS(5279), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [anon_sym_this_AT] = ACTIONS(3198), - [anon_sym_super_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3096), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), }, - [1240] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), + [1230] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3145), - [anon_sym_fun] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(4593), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_object] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3145), - [anon_sym_super] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5263), - [anon_sym_DOT_DOT] = ACTIONS(5265), - [anon_sym_QMARK_COLON] = ACTIONS(5267), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_null] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_when] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(5273), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5275), - [anon_sym_EQ_EQ] = ACTIONS(5273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5275), - [anon_sym_LT_EQ] = ACTIONS(5277), - [anon_sym_GT_EQ] = ACTIONS(5277), - [anon_sym_BANGin] = ACTIONS(5279), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3147), - [anon_sym_continue_AT] = ACTIONS(3147), - [anon_sym_break_AT] = ACTIONS(3147), - [anon_sym_this_AT] = ACTIONS(3147), - [anon_sym_super_AT] = ACTIONS(3147), - [sym_real_literal] = ACTIONS(3147), - [sym_integer_literal] = ACTIONS(3145), - [sym_hex_literal] = ACTIONS(3147), - [sym_bin_literal] = ACTIONS(3147), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3147), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(5235), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), - [sym_safe_nav] = ACTIONS(4567), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(4613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3147), + [sym__string_start] = ACTIONS(3134), }, - [1241] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), + [1231] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3170), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3170), - [anon_sym_RPAREN] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_RPAREN] = ACTIONS(3115), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3170), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3170), - [anon_sym_DASH_EQ] = ACTIONS(3170), - [anon_sym_STAR_EQ] = ACTIONS(3170), - [anon_sym_SLASH_EQ] = ACTIONS(3170), - [anon_sym_PERCENT_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3168), - [anon_sym_sealed] = ACTIONS(3168), - [anon_sym_annotation] = ACTIONS(3168), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_lateinit] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_internal] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_tailrec] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_infix] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym_external] = ACTIONS(3168), - [sym_property_modifier] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_final] = ACTIONS(3168), - [anon_sym_open] = ACTIONS(3168), - [anon_sym_vararg] = ACTIONS(3168), - [anon_sym_noinline] = ACTIONS(3168), - [anon_sym_crossinline] = ACTIONS(3168), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3115), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1242] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_fun] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3141), - [anon_sym_super] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5263), - [anon_sym_DOT_DOT] = ACTIONS(5265), - [anon_sym_QMARK_COLON] = ACTIONS(5267), - [anon_sym_AMP_AMP] = ACTIONS(5269), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_when] = ACTIONS(3141), - [anon_sym_try] = ACTIONS(3141), - [anon_sym_throw] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(5273), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5275), - [anon_sym_EQ_EQ] = ACTIONS(5273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5275), - [anon_sym_LT_EQ] = ACTIONS(5277), - [anon_sym_GT_EQ] = ACTIONS(5277), - [anon_sym_BANGin] = ACTIONS(5279), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3143), - [anon_sym_continue_AT] = ACTIONS(3143), - [anon_sym_break_AT] = ACTIONS(3143), - [anon_sym_this_AT] = ACTIONS(3143), - [anon_sym_super_AT] = ACTIONS(3143), - [sym_real_literal] = ACTIONS(3143), - [sym_integer_literal] = ACTIONS(3141), - [sym_hex_literal] = ACTIONS(3143), - [sym_bin_literal] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3143), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3143), - }, - [1243] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_fun] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_object] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3097), - [anon_sym_super] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5263), - [anon_sym_DOT_DOT] = ACTIONS(5265), - [anon_sym_QMARK_COLON] = ACTIONS(5267), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_null] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_when] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3097), - [anon_sym_throw] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(5277), - [anon_sym_GT_EQ] = ACTIONS(5277), - [anon_sym_BANGin] = ACTIONS(5279), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3099), - [anon_sym_continue_AT] = ACTIONS(3099), - [anon_sym_break_AT] = ACTIONS(3099), - [anon_sym_this_AT] = ACTIONS(3099), - [anon_sym_super_AT] = ACTIONS(3099), - [sym_real_literal] = ACTIONS(3099), - [sym_integer_literal] = ACTIONS(3097), - [sym_hex_literal] = ACTIONS(3099), - [sym_bin_literal] = ACTIONS(3099), - [anon_sym_true] = ACTIONS(3097), - [anon_sym_false] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3099), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), - [sym_safe_nav] = ACTIONS(4567), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3099), }, - [1244] = { - [sym_type_constraints] = STATE(1373), - [sym_function_body] = STATE(1215), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(5307), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_COMMA] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), + [1232] = { + [sym_type_constraints] = STATE(1369), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(5275), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4209), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_this] = ACTIONS(4209), - [anon_sym_super] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4211), - [sym_label] = ACTIONS(4209), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_if] = ACTIONS(4209), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_when] = ACTIONS(4209), - [anon_sym_try] = ACTIONS(4209), - [anon_sym_throw] = ACTIONS(4209), - [anon_sym_return] = ACTIONS(4209), - [anon_sym_continue] = ACTIONS(4209), - [anon_sym_break] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4211), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG] = ACTIONS(4209), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_suspend] = ACTIONS(4209), - [anon_sym_sealed] = ACTIONS(4209), - [anon_sym_annotation] = ACTIONS(4209), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_override] = ACTIONS(4209), - [anon_sym_lateinit] = ACTIONS(4209), - [anon_sym_public] = ACTIONS(4209), - [anon_sym_private] = ACTIONS(4209), - [anon_sym_internal] = ACTIONS(4209), - [anon_sym_protected] = ACTIONS(4209), - [anon_sym_tailrec] = ACTIONS(4209), - [anon_sym_operator] = ACTIONS(4209), - [anon_sym_infix] = ACTIONS(4209), - [anon_sym_inline] = ACTIONS(4209), - [anon_sym_external] = ACTIONS(4209), - [sym_property_modifier] = ACTIONS(4209), - [anon_sym_abstract] = ACTIONS(4209), - [anon_sym_final] = ACTIONS(4209), - [anon_sym_open] = ACTIONS(4209), - [anon_sym_vararg] = ACTIONS(4209), - [anon_sym_noinline] = ACTIONS(4209), - [anon_sym_crossinline] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4211), - [anon_sym_continue_AT] = ACTIONS(4211), - [anon_sym_break_AT] = ACTIONS(4211), - [anon_sym_this_AT] = ACTIONS(4211), - [anon_sym_super_AT] = ACTIONS(4211), - [sym_real_literal] = ACTIONS(4211), - [sym_integer_literal] = ACTIONS(4209), - [sym_hex_literal] = ACTIONS(4211), - [sym_bin_literal] = ACTIONS(4211), - [anon_sym_true] = ACTIONS(4209), - [anon_sym_false] = ACTIONS(4209), - [anon_sym_SQUOTE] = ACTIONS(4211), - [sym__backtick_identifier] = ACTIONS(4211), - [sym__automatic_semicolon] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4211), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, - [1245] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), + [1233] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RPAREN] = ACTIONS(3090), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3188), - [anon_sym_sealed] = ACTIONS(3188), - [anon_sym_annotation] = ACTIONS(3188), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_lateinit] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_internal] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_tailrec] = ACTIONS(3188), - [anon_sym_operator] = ACTIONS(3188), - [anon_sym_infix] = ACTIONS(3188), - [anon_sym_inline] = ACTIONS(3188), - [anon_sym_external] = ACTIONS(3188), - [sym_property_modifier] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_final] = ACTIONS(3188), - [anon_sym_open] = ACTIONS(3188), - [anon_sym_vararg] = ACTIONS(3188), - [anon_sym_noinline] = ACTIONS(3188), - [anon_sym_crossinline] = ACTIONS(3188), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3090), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [1246] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), + [1234] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3123), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_RPAREN] = ACTIONS(3123), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3123), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3123), + [anon_sym_STAR_EQ] = ACTIONS(3123), + [anon_sym_SLASH_EQ] = ACTIONS(3123), + [anon_sym_PERCENT_EQ] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3121), + [anon_sym_sealed] = ACTIONS(3121), + [anon_sym_annotation] = ACTIONS(3121), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_lateinit] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_internal] = ACTIONS(3121), + [anon_sym_protected] = ACTIONS(3121), + [anon_sym_tailrec] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_infix] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_external] = ACTIONS(3121), + [sym_property_modifier] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_final] = ACTIONS(3121), + [anon_sym_open] = ACTIONS(3121), + [anon_sym_vararg] = ACTIONS(3121), + [anon_sym_noinline] = ACTIONS(3121), + [anon_sym_crossinline] = ACTIONS(3121), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [1247] = { - [sym_getter] = STATE(9484), - [sym_setter] = STATE(9484), - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_modifiers] = STATE(9565), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(5309), - [anon_sym_get] = ACTIONS(5285), - [anon_sym_set] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), + [1235] = { + [sym_type_constraints] = STATE(1368), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(5277), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [1248] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(5311), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_while] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), + [1236] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5279), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [1249] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5315), - [anon_sym_RPAREN] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_while] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [1250] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_fun] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_object] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3137), - [anon_sym_super] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5263), - [anon_sym_DOT_DOT] = ACTIONS(5265), - [anon_sym_QMARK_COLON] = ACTIONS(5267), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_when] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(5279), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3139), - [anon_sym_continue_AT] = ACTIONS(3139), - [anon_sym_break_AT] = ACTIONS(3139), - [anon_sym_this_AT] = ACTIONS(3139), - [anon_sym_super_AT] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3139), - [sym_integer_literal] = ACTIONS(3137), - [sym_hex_literal] = ACTIONS(3139), - [sym_bin_literal] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3139), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3139), - }, - [1251] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3130), - [anon_sym_super] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(5265), - [anon_sym_QMARK_COLON] = ACTIONS(5267), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_when] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3132), - [anon_sym_continue_AT] = ACTIONS(3132), - [anon_sym_break_AT] = ACTIONS(3132), - [anon_sym_this_AT] = ACTIONS(3132), - [anon_sym_super_AT] = ACTIONS(3132), - [sym_real_literal] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(3130), - [sym_hex_literal] = ACTIONS(3132), - [sym_bin_literal] = ACTIONS(3132), - [anon_sym_true] = ACTIONS(3130), - [anon_sym_false] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3132), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3132), - }, - [1252] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3194), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3194), - [anon_sym_RPAREN] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3192), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3194), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3194), - [anon_sym_DASH_EQ] = ACTIONS(3194), - [anon_sym_STAR_EQ] = ACTIONS(3194), - [anon_sym_SLASH_EQ] = ACTIONS(3194), - [anon_sym_PERCENT_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3192), - [anon_sym_sealed] = ACTIONS(3192), - [anon_sym_annotation] = ACTIONS(3192), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_lateinit] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_internal] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_tailrec] = ACTIONS(3192), - [anon_sym_operator] = ACTIONS(3192), - [anon_sym_infix] = ACTIONS(3192), - [anon_sym_inline] = ACTIONS(3192), - [anon_sym_external] = ACTIONS(3192), - [sym_property_modifier] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_final] = ACTIONS(3192), - [anon_sym_open] = ACTIONS(3192), - [anon_sym_vararg] = ACTIONS(3192), - [anon_sym_noinline] = ACTIONS(3192), - [anon_sym_crossinline] = ACTIONS(3192), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1253] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1913), - [sym__comparison_operator] = STATE(1954), - [sym__in_operator] = STATE(1971), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1985), - [sym__multiplicative_operator] = STATE(1988), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2004), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_fun] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3192), - [anon_sym_super] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(5261), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5263), - [anon_sym_DOT_DOT] = ACTIONS(5265), - [anon_sym_QMARK_COLON] = ACTIONS(5267), - [anon_sym_AMP_AMP] = ACTIONS(5269), - [anon_sym_PIPE_PIPE] = ACTIONS(5271), - [anon_sym_null] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_when] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(3194), - [anon_sym_DASH_EQ] = ACTIONS(3194), - [anon_sym_STAR_EQ] = ACTIONS(3194), - [anon_sym_SLASH_EQ] = ACTIONS(3194), - [anon_sym_PERCENT_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ] = ACTIONS(5273), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5275), - [anon_sym_EQ_EQ] = ACTIONS(5273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5275), - [anon_sym_LT_EQ] = ACTIONS(5277), - [anon_sym_GT_EQ] = ACTIONS(5277), - [anon_sym_BANGin] = ACTIONS(5279), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3194), - [anon_sym_continue_AT] = ACTIONS(3194), - [anon_sym_break_AT] = ACTIONS(3194), - [anon_sym_this_AT] = ACTIONS(3194), - [anon_sym_super_AT] = ACTIONS(3194), - [sym_real_literal] = ACTIONS(3194), - [sym_integer_literal] = ACTIONS(3192), - [sym_hex_literal] = ACTIONS(3194), - [sym_bin_literal] = ACTIONS(3194), - [anon_sym_true] = ACTIONS(3192), - [anon_sym_false] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3194), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3194), + [1237] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(5283), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, - [1254] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3174), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_RPAREN] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3172), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3174), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3174), - [anon_sym_DASH_EQ] = ACTIONS(3174), - [anon_sym_STAR_EQ] = ACTIONS(3174), - [anon_sym_SLASH_EQ] = ACTIONS(3174), - [anon_sym_PERCENT_EQ] = ACTIONS(3174), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3172), - [anon_sym_sealed] = ACTIONS(3172), - [anon_sym_annotation] = ACTIONS(3172), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_lateinit] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_internal] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_tailrec] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_infix] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym_external] = ACTIONS(3172), - [sym_property_modifier] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_final] = ACTIONS(3172), - [anon_sym_open] = ACTIONS(3172), - [anon_sym_vararg] = ACTIONS(3172), - [anon_sym_noinline] = ACTIONS(3172), - [anon_sym_crossinline] = ACTIONS(3172), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1238] = { + [sym__expression] = STATE(2479), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(5290), + [anon_sym_fun] = ACTIONS(5293), + [anon_sym_get] = ACTIONS(5296), + [anon_sym_set] = ACTIONS(5296), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2804), + [sym_label] = ACTIONS(2807), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2810), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_data] = ACTIONS(5296), + [anon_sym_inner] = ACTIONS(5296), + [anon_sym_value] = ACTIONS(5296), + [anon_sym_expect] = ACTIONS(5296), + [anon_sym_actual] = ACTIONS(5296), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1255] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_where] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3151), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_while] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3149), - [anon_sym_sealed] = ACTIONS(3149), - [anon_sym_annotation] = ACTIONS(3149), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3149), - [anon_sym_lateinit] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_internal] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_tailrec] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_infix] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym_external] = ACTIONS(3149), - [sym_property_modifier] = ACTIONS(3149), - [anon_sym_abstract] = ACTIONS(3149), - [anon_sym_final] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_vararg] = ACTIONS(3149), - [anon_sym_noinline] = ACTIONS(3149), - [anon_sym_crossinline] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1256] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3111), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3109), - [anon_sym_sealed] = ACTIONS(3109), - [anon_sym_annotation] = ACTIONS(3109), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_lateinit] = ACTIONS(3109), - [anon_sym_public] = ACTIONS(3109), - [anon_sym_private] = ACTIONS(3109), - [anon_sym_internal] = ACTIONS(3109), - [anon_sym_protected] = ACTIONS(3109), - [anon_sym_tailrec] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_infix] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym_external] = ACTIONS(3109), - [sym_property_modifier] = ACTIONS(3109), - [anon_sym_abstract] = ACTIONS(3109), - [anon_sym_final] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_vararg] = ACTIONS(3109), - [anon_sym_noinline] = ACTIONS(3109), - [anon_sym_crossinline] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(2242), + [anon_sym_continue_AT] = ACTIONS(2245), + [anon_sym_break_AT] = ACTIONS(2248), + [anon_sym_this_AT] = ACTIONS(2251), + [anon_sym_super_AT] = ACTIONS(2254), + [sym_real_literal] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2260), + [sym_hex_literal] = ACTIONS(2263), + [sym_bin_literal] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2266), + [anon_sym_false] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2269), + [sym__backtick_identifier] = ACTIONS(2272), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2275), }, - [1257] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_where] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3116), - [anon_sym_sealed] = ACTIONS(3116), - [anon_sym_annotation] = ACTIONS(3116), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_lateinit] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_internal] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_tailrec] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_infix] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym_external] = ACTIONS(3116), - [sym_property_modifier] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_final] = ACTIONS(3116), - [anon_sym_open] = ACTIONS(3116), - [anon_sym_vararg] = ACTIONS(3116), - [anon_sym_noinline] = ACTIONS(3116), - [anon_sym_crossinline] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), + [1239] = { + [sym__expression] = STATE(3921), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_object] = ACTIONS(5299), + [anon_sym_fun] = ACTIONS(5302), + [anon_sym_get] = ACTIONS(5305), + [anon_sym_set] = ACTIONS(5305), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2521), + [sym_label] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2530), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_PLUS_PLUS] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2536), + [anon_sym_data] = ACTIONS(5305), + [anon_sym_inner] = ACTIONS(5305), + [anon_sym_value] = ACTIONS(5305), + [anon_sym_expect] = ACTIONS(5305), + [anon_sym_actual] = ACTIONS(5305), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), }, - [1258] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3125), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_RPAREN] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3125), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_STAR_EQ] = ACTIONS(3125), - [anon_sym_SLASH_EQ] = ACTIONS(3125), - [anon_sym_PERCENT_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3123), - [anon_sym_sealed] = ACTIONS(3123), - [anon_sym_annotation] = ACTIONS(3123), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_lateinit] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_tailrec] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3123), - [sym_property_modifier] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_vararg] = ACTIONS(3123), - [anon_sym_noinline] = ACTIONS(3123), - [anon_sym_crossinline] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), + [1240] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), }, - [1259] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3132), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_RPAREN] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3132), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_annotation] = ACTIONS(3130), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_lateinit] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_tailrec] = ACTIONS(3130), - [anon_sym_operator] = ACTIONS(3130), - [anon_sym_infix] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_external] = ACTIONS(3130), - [sym_property_modifier] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3130), - [anon_sym_noinline] = ACTIONS(3130), - [anon_sym_crossinline] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1241] = { + [sym__expression] = STATE(1204), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(5290), + [anon_sym_fun] = ACTIONS(5310), + [anon_sym_get] = ACTIONS(5296), + [anon_sym_set] = ACTIONS(5296), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2209), + [sym_label] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_data] = ACTIONS(5296), + [anon_sym_inner] = ACTIONS(5296), + [anon_sym_value] = ACTIONS(5296), + [anon_sym_expect] = ACTIONS(5296), + [anon_sym_actual] = ACTIONS(5296), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(2242), + [anon_sym_continue_AT] = ACTIONS(2245), + [anon_sym_break_AT] = ACTIONS(2248), + [anon_sym_this_AT] = ACTIONS(2251), + [anon_sym_super_AT] = ACTIONS(2254), + [sym_real_literal] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2260), + [sym_hex_literal] = ACTIONS(2263), + [sym_bin_literal] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2266), + [anon_sym_false] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2269), + [sym__backtick_identifier] = ACTIONS(2272), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2275), }, - [1260] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_where] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3139), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), + [1242] = { + [sym__expression] = STATE(4292), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_object] = ACTIONS(5313), + [anon_sym_fun] = ACTIONS(5316), + [anon_sym_get] = ACTIONS(5319), + [anon_sym_set] = ACTIONS(5319), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(3046), + [sym_label] = ACTIONS(3049), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_data] = ACTIONS(5319), + [anon_sym_inner] = ACTIONS(5319), + [anon_sym_value] = ACTIONS(5319), + [anon_sym_expect] = ACTIONS(5319), + [anon_sym_actual] = ACTIONS(5319), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), }, - [1261] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), + [1243] = { + [sym_getter] = STATE(9565), + [sym_setter] = STATE(9565), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9271), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3099), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(3576), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3099), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3097), - [anon_sym_sealed] = ACTIONS(3097), - [anon_sym_annotation] = ACTIONS(3097), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3097), - [anon_sym_lateinit] = ACTIONS(3097), - [anon_sym_public] = ACTIONS(3097), - [anon_sym_private] = ACTIONS(3097), - [anon_sym_internal] = ACTIONS(3097), - [anon_sym_protected] = ACTIONS(3097), - [anon_sym_tailrec] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_infix] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym_external] = ACTIONS(3097), - [sym_property_modifier] = ACTIONS(3097), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_final] = ACTIONS(3097), - [anon_sym_open] = ACTIONS(3097), - [anon_sym_vararg] = ACTIONS(3097), - [anon_sym_noinline] = ACTIONS(3097), - [anon_sym_crossinline] = ACTIONS(3097), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_get] = ACTIONS(5324), + [anon_sym_set] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [1262] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3143), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1244] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, - [1263] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_RPAREN] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3147), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3640), - [anon_sym_GT_EQ] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3145), - [anon_sym_sealed] = ACTIONS(3145), - [anon_sym_annotation] = ACTIONS(3145), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_lateinit] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_tailrec] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym_external] = ACTIONS(3145), - [sym_property_modifier] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_vararg] = ACTIONS(3145), - [anon_sym_noinline] = ACTIONS(3145), - [anon_sym_crossinline] = ACTIONS(3145), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1245] = { + [sym__expression] = STATE(397), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_object] = ACTIONS(5332), + [anon_sym_fun] = ACTIONS(5335), + [anon_sym_get] = ACTIONS(5338), + [anon_sym_set] = ACTIONS(5338), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2429), + [sym_label] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_data] = ACTIONS(5338), + [anon_sym_inner] = ACTIONS(5338), + [anon_sym_value] = ACTIONS(5338), + [anon_sym_expect] = ACTIONS(5338), + [anon_sym_actual] = ACTIONS(5338), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(2462), + [anon_sym_break_AT] = ACTIONS(2465), + [anon_sym_this_AT] = ACTIONS(2468), + [anon_sym_super_AT] = ACTIONS(2471), + [sym_real_literal] = ACTIONS(2474), + [sym_integer_literal] = ACTIONS(2477), + [sym_hex_literal] = ACTIONS(2480), + [sym_bin_literal] = ACTIONS(2480), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(2486), + [sym__backtick_identifier] = ACTIONS(2489), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2492), }, - [1264] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(2143), - [sym__comparison_operator] = STATE(2146), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(2157), - [sym__multiplicative_operator] = STATE(2159), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2160), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3090), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_DASH_GT] = ACTIONS(3090), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_PERCENT] = ACTIONS(3620), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1246] = { + [sym__expression] = STATE(367), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_object] = ACTIONS(5332), + [anon_sym_fun] = ACTIONS(5341), + [anon_sym_get] = ACTIONS(5338), + [anon_sym_set] = ACTIONS(5338), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2958), + [sym_label] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_data] = ACTIONS(5338), + [anon_sym_inner] = ACTIONS(5338), + [anon_sym_value] = ACTIONS(5338), + [anon_sym_expect] = ACTIONS(5338), + [anon_sym_actual] = ACTIONS(5338), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(2462), + [anon_sym_break_AT] = ACTIONS(2465), + [anon_sym_this_AT] = ACTIONS(2468), + [anon_sym_super_AT] = ACTIONS(2471), + [sym_real_literal] = ACTIONS(2474), + [sym_integer_literal] = ACTIONS(2477), + [sym_hex_literal] = ACTIONS(2480), + [sym_bin_literal] = ACTIONS(2480), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(2486), + [sym__backtick_identifier] = ACTIONS(2489), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2492), }, - [1265] = { - [sym__expression] = STATE(4420), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_fun] = ACTIONS(5322), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(5325), - [anon_sym_get] = ACTIONS(5328), - [anon_sym_set] = ACTIONS(5328), - [anon_sym_this] = ACTIONS(2706), - [anon_sym_super] = ACTIONS(2709), + [1247] = { + [sym__expression] = STATE(1872), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_object] = ACTIONS(5344), + [anon_sym_fun] = ACTIONS(5347), + [anon_sym_get] = ACTIONS(5350), + [anon_sym_set] = ACTIONS(5350), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), [anon_sym_STAR] = ACTIONS(2848), [sym_label] = ACTIONS(2851), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2718), + [anon_sym_null] = ACTIONS(2674), [anon_sym_if] = ACTIONS(2854), - [anon_sym_when] = ACTIONS(2724), - [anon_sym_try] = ACTIONS(2727), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), [anon_sym_throw] = ACTIONS(2857), [anon_sym_return] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), [anon_sym_PLUS] = ACTIONS(2851), [anon_sym_DASH] = ACTIONS(2851), [anon_sym_PLUS_PLUS] = ACTIONS(2863), [anon_sym_DASH_DASH] = ACTIONS(2863), [anon_sym_BANG] = ACTIONS(2863), - [anon_sym_data] = ACTIONS(5328), - [anon_sym_inner] = ACTIONS(5328), - [anon_sym_value] = ACTIONS(5328), - [anon_sym_expect] = ACTIONS(5328), - [anon_sym_actual] = ACTIONS(5328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2745), - [anon_sym_break_AT] = ACTIONS(2748), - [anon_sym_this_AT] = ACTIONS(2751), - [anon_sym_super_AT] = ACTIONS(2754), - [sym_real_literal] = ACTIONS(2757), - [sym_integer_literal] = ACTIONS(2760), - [sym_hex_literal] = ACTIONS(2763), - [sym_bin_literal] = ACTIONS(2763), - [anon_sym_true] = ACTIONS(2766), - [anon_sym_false] = ACTIONS(2766), - [anon_sym_SQUOTE] = ACTIONS(2769), - [sym__backtick_identifier] = ACTIONS(2772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2775), + [anon_sym_data] = ACTIONS(5350), + [anon_sym_inner] = ACTIONS(5350), + [anon_sym_value] = ACTIONS(5350), + [anon_sym_expect] = ACTIONS(5350), + [anon_sym_actual] = ACTIONS(5350), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), }, - [1266] = { - [sym__expression] = STATE(2559), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(2561), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_fun] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(5334), - [anon_sym_get] = ACTIONS(5337), - [anon_sym_set] = ACTIONS(5337), - [anon_sym_this] = ACTIONS(2585), - [anon_sym_super] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2804), - [sym_label] = ACTIONS(2807), + [1248] = { + [sym__expression] = STATE(1847), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(5290), + [anon_sym_fun] = ACTIONS(5353), + [anon_sym_get] = ACTIONS(5296), + [anon_sym_set] = ACTIONS(5296), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2282), + [sym_label] = ACTIONS(2285), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_when] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2618), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_PLUS_PLUS] = ACTIONS(2819), - [anon_sym_DASH_DASH] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_data] = ACTIONS(5337), - [anon_sym_inner] = ACTIONS(5337), - [anon_sym_value] = ACTIONS(5337), - [anon_sym_expect] = ACTIONS(5337), - [anon_sym_actual] = ACTIONS(5337), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2624), - [anon_sym_continue_AT] = ACTIONS(2627), - [anon_sym_break_AT] = ACTIONS(2630), - [anon_sym_this_AT] = ACTIONS(2633), - [anon_sym_super_AT] = ACTIONS(2636), - [sym_real_literal] = ACTIONS(2639), - [sym_integer_literal] = ACTIONS(2642), - [sym_hex_literal] = ACTIONS(2645), - [sym_bin_literal] = ACTIONS(2645), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2651), - [sym__backtick_identifier] = ACTIONS(2654), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2657), + [anon_sym_null] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_data] = ACTIONS(5296), + [anon_sym_inner] = ACTIONS(5296), + [anon_sym_value] = ACTIONS(5296), + [anon_sym_expect] = ACTIONS(5296), + [anon_sym_actual] = ACTIONS(5296), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2242), + [anon_sym_continue_AT] = ACTIONS(2245), + [anon_sym_break_AT] = ACTIONS(2248), + [anon_sym_this_AT] = ACTIONS(2251), + [anon_sym_super_AT] = ACTIONS(2254), + [sym_real_literal] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2260), + [sym_hex_literal] = ACTIONS(2263), + [sym_bin_literal] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2266), + [anon_sym_false] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2269), + [sym__backtick_identifier] = ACTIONS(2272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2275), }, - [1267] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(5340), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), + [1249] = { + [sym__expression] = STATE(4242), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_object] = ACTIONS(5313), + [anon_sym_fun] = ACTIONS(5356), + [anon_sym_get] = ACTIONS(5319), + [anon_sym_set] = ACTIONS(5319), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2914), + [sym_label] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2926), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_data] = ACTIONS(5319), + [anon_sym_inner] = ACTIONS(5319), + [anon_sym_value] = ACTIONS(5319), + [anon_sym_expect] = ACTIONS(5319), + [anon_sym_actual] = ACTIONS(5319), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), + }, + [1250] = { + [sym_type_constraints] = STATE(1373), + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [1251] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(5359), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), + }, + [1252] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(5361), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(5359), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), + }, + [1253] = { + [sym_type_constraints] = STATE(1372), + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [1254] = { + [sym_type_constraints] = STATE(1371), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), + [sym__string_start] = ACTIONS(4185), }, - [1268] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5344), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), + [1255] = { + [sym__expression] = STATE(2285), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_object] = ACTIONS(5344), + [anon_sym_fun] = ACTIONS(5363), + [anon_sym_get] = ACTIONS(5350), + [anon_sym_set] = ACTIONS(5350), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2668), + [sym_label] = ACTIONS(2671), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2686), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_data] = ACTIONS(5350), + [anon_sym_inner] = ACTIONS(5350), + [anon_sym_value] = ACTIONS(5350), + [anon_sym_expect] = ACTIONS(5350), + [anon_sym_actual] = ACTIONS(5350), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), }, - [1269] = { - [sym__expression] = STATE(379), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), + [1256] = { + [sym_type_constraints] = STATE(1369), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [1257] = { + [sym__expression] = STATE(2277), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(5290), + [anon_sym_fun] = ACTIONS(5366), + [anon_sym_get] = ACTIONS(5296), + [anon_sym_set] = ACTIONS(5296), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(3024), + [sym_label] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(3033), + [anon_sym_return] = ACTIONS(3036), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3039), + [anon_sym_BANG] = ACTIONS(3039), + [anon_sym_data] = ACTIONS(5296), + [anon_sym_inner] = ACTIONS(5296), + [anon_sym_value] = ACTIONS(5296), + [anon_sym_expect] = ACTIONS(5296), + [anon_sym_actual] = ACTIONS(5296), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2242), + [anon_sym_continue_AT] = ACTIONS(2245), + [anon_sym_break_AT] = ACTIONS(2248), + [anon_sym_this_AT] = ACTIONS(2251), + [anon_sym_super_AT] = ACTIONS(2254), + [sym_real_literal] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2260), + [sym_hex_literal] = ACTIONS(2263), + [sym_bin_literal] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2266), + [anon_sym_false] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2269), + [sym__backtick_identifier] = ACTIONS(2272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2275), + }, + [1258] = { + [sym_type_constraints] = STATE(1368), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [1259] = { + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(5369), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), + }, + [1260] = { + [sym__expression] = STATE(1415), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), [sym__alpha_identifier] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(5319), + [anon_sym_AT] = ACTIONS(5287), [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_fun] = ACTIONS(5348), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_object] = ACTIONS(5351), - [anon_sym_get] = ACTIONS(5354), - [anon_sym_set] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_object] = ACTIONS(5371), + [anon_sym_fun] = ACTIONS(5374), + [anon_sym_get] = ACTIONS(5377), + [anon_sym_set] = ACTIONS(5377), [anon_sym_this] = ACTIONS(2102), [anon_sym_super] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(3046), - [sym_label] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(2936), + [sym_label] = ACTIONS(2939), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), [anon_sym_null] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(2942), [anon_sym_when] = ACTIONS(2122), [anon_sym_try] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3058), + [anon_sym_throw] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2948), [anon_sym_continue] = ACTIONS(2134), [anon_sym_break] = ACTIONS(2134), [anon_sym_COLON_COLON] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_data] = ACTIONS(5354), - [anon_sym_inner] = ACTIONS(5354), - [anon_sym_value] = ACTIONS(5354), - [anon_sym_expect] = ACTIONS(5354), - [anon_sym_actual] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2939), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_data] = ACTIONS(5377), + [anon_sym_inner] = ACTIONS(5377), + [anon_sym_value] = ACTIONS(5377), + [anon_sym_expect] = ACTIONS(5377), + [anon_sym_actual] = ACTIONS(5377), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(2143), [anon_sym_continue_AT] = ACTIONS(2146), @@ -194149,1655 +192166,1239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2176), }, - [1270] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4236), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(5340), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4239), - [anon_sym_DASH_EQ] = ACTIONS(4239), - [anon_sym_STAR_EQ] = ACTIONS(4239), - [anon_sym_SLASH_EQ] = ACTIONS(4239), - [anon_sym_PERCENT_EQ] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_suspend] = ACTIONS(4236), - [anon_sym_sealed] = ACTIONS(4236), - [anon_sym_annotation] = ACTIONS(4236), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4236), - [anon_sym_lateinit] = ACTIONS(4236), - [anon_sym_public] = ACTIONS(4236), - [anon_sym_private] = ACTIONS(4236), - [anon_sym_internal] = ACTIONS(4236), - [anon_sym_protected] = ACTIONS(4236), - [anon_sym_tailrec] = ACTIONS(4236), - [anon_sym_operator] = ACTIONS(4236), - [anon_sym_infix] = ACTIONS(4236), - [anon_sym_inline] = ACTIONS(4236), - [anon_sym_external] = ACTIONS(4236), - [sym_property_modifier] = ACTIONS(4236), - [anon_sym_abstract] = ACTIONS(4236), - [anon_sym_final] = ACTIONS(4236), - [anon_sym_open] = ACTIONS(4236), - [anon_sym_vararg] = ACTIONS(4236), - [anon_sym_noinline] = ACTIONS(4236), - [anon_sym_crossinline] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), + [1261] = { + [sym_getter] = STATE(9655), + [sym_setter] = STATE(9655), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9271), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(5380), + [anon_sym_get] = ACTIONS(5324), + [anon_sym_set] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), - }, - [1271] = { - [sym_type_constraints] = STATE(1834), - [sym_function_body] = STATE(1087), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), }, - [1272] = { - [sym__expression] = STATE(3866), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_fun] = ACTIONS(5361), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(5325), - [anon_sym_get] = ACTIONS(5328), - [anon_sym_set] = ACTIONS(5328), - [anon_sym_this] = ACTIONS(2706), - [anon_sym_super] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2980), - [sym_label] = ACTIONS(2983), + [1262] = { + [sym__expression] = STATE(2425), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_object] = ACTIONS(5371), + [anon_sym_fun] = ACTIONS(5382), + [anon_sym_get] = ACTIONS(5377), + [anon_sym_set] = ACTIONS(5377), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2826), + [sym_label] = ACTIONS(2829), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(2724), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_throw] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_BANG] = ACTIONS(2995), - [anon_sym_data] = ACTIONS(5328), - [anon_sym_inner] = ACTIONS(5328), - [anon_sym_value] = ACTIONS(5328), - [anon_sym_expect] = ACTIONS(5328), - [anon_sym_actual] = ACTIONS(5328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2745), - [anon_sym_break_AT] = ACTIONS(2748), - [anon_sym_this_AT] = ACTIONS(2751), - [anon_sym_super_AT] = ACTIONS(2754), - [sym_real_literal] = ACTIONS(2757), - [sym_integer_literal] = ACTIONS(2760), - [sym_hex_literal] = ACTIONS(2763), - [sym_bin_literal] = ACTIONS(2763), - [anon_sym_true] = ACTIONS(2766), - [anon_sym_false] = ACTIONS(2766), - [anon_sym_SQUOTE] = ACTIONS(2769), - [sym__backtick_identifier] = ACTIONS(2772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2775), + [anon_sym_null] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2835), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2841), + [anon_sym_data] = ACTIONS(5377), + [anon_sym_inner] = ACTIONS(5377), + [anon_sym_value] = ACTIONS(5377), + [anon_sym_expect] = ACTIONS(5377), + [anon_sym_actual] = ACTIONS(5377), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(2146), + [anon_sym_break_AT] = ACTIONS(2149), + [anon_sym_this_AT] = ACTIONS(2152), + [anon_sym_super_AT] = ACTIONS(2155), + [sym_real_literal] = ACTIONS(2158), + [sym_integer_literal] = ACTIONS(2161), + [sym_hex_literal] = ACTIONS(2164), + [sym_bin_literal] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2167), + [anon_sym_false] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym__backtick_identifier] = ACTIONS(2173), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2176), }, - [1273] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_fun] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5364), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_object] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_this] = ACTIONS(5177), - [anon_sym_super] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [sym_label] = ACTIONS(5177), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_null] = ACTIONS(5177), - [anon_sym_if] = ACTIONS(5177), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_when] = ACTIONS(5177), - [anon_sym_try] = ACTIONS(5177), - [anon_sym_throw] = ACTIONS(5177), - [anon_sym_return] = ACTIONS(5177), - [anon_sym_continue] = ACTIONS(5177), - [anon_sym_break] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_PLUS_EQ] = ACTIONS(5179), - [anon_sym_DASH_EQ] = ACTIONS(5179), - [anon_sym_STAR_EQ] = ACTIONS(5179), - [anon_sym_SLASH_EQ] = ACTIONS(5179), - [anon_sym_PERCENT_EQ] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5177), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_suspend] = ACTIONS(5177), - [anon_sym_sealed] = ACTIONS(5177), - [anon_sym_annotation] = ACTIONS(5177), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_override] = ACTIONS(5177), - [anon_sym_lateinit] = ACTIONS(5177), - [anon_sym_public] = ACTIONS(5177), - [anon_sym_private] = ACTIONS(5177), - [anon_sym_internal] = ACTIONS(5177), - [anon_sym_protected] = ACTIONS(5177), - [anon_sym_tailrec] = ACTIONS(5177), - [anon_sym_operator] = ACTIONS(5177), - [anon_sym_infix] = ACTIONS(5177), - [anon_sym_inline] = ACTIONS(5177), - [anon_sym_external] = ACTIONS(5177), - [sym_property_modifier] = ACTIONS(5177), - [anon_sym_abstract] = ACTIONS(5177), - [anon_sym_final] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(5177), - [anon_sym_vararg] = ACTIONS(5177), - [anon_sym_noinline] = ACTIONS(5177), - [anon_sym_crossinline] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5179), - [anon_sym_continue_AT] = ACTIONS(5179), - [anon_sym_break_AT] = ACTIONS(5179), - [anon_sym_this_AT] = ACTIONS(5179), - [anon_sym_super_AT] = ACTIONS(5179), - [sym_real_literal] = ACTIONS(5179), - [sym_integer_literal] = ACTIONS(5177), - [sym_hex_literal] = ACTIONS(5179), - [sym_bin_literal] = ACTIONS(5179), - [anon_sym_true] = ACTIONS(5177), - [anon_sym_false] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5179), - [sym__backtick_identifier] = ACTIONS(5179), - [sym__automatic_semicolon] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5179), + [1263] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5283), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, - [1274] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4347), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(5344), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_object] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4350), - [anon_sym_DASH_EQ] = ACTIONS(4350), - [anon_sym_STAR_EQ] = ACTIONS(4350), - [anon_sym_SLASH_EQ] = ACTIONS(4350), - [anon_sym_PERCENT_EQ] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_suspend] = ACTIONS(4347), - [anon_sym_sealed] = ACTIONS(4347), - [anon_sym_annotation] = ACTIONS(4347), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4347), - [anon_sym_lateinit] = ACTIONS(4347), - [anon_sym_public] = ACTIONS(4347), - [anon_sym_private] = ACTIONS(4347), - [anon_sym_internal] = ACTIONS(4347), - [anon_sym_protected] = ACTIONS(4347), - [anon_sym_tailrec] = ACTIONS(4347), - [anon_sym_operator] = ACTIONS(4347), - [anon_sym_infix] = ACTIONS(4347), - [anon_sym_inline] = ACTIONS(4347), - [anon_sym_external] = ACTIONS(4347), - [sym_property_modifier] = ACTIONS(4347), - [anon_sym_abstract] = ACTIONS(4347), - [anon_sym_final] = ACTIONS(4347), - [anon_sym_open] = ACTIONS(4347), - [anon_sym_vararg] = ACTIONS(4347), - [anon_sym_noinline] = ACTIONS(4347), - [anon_sym_crossinline] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), + [1264] = { + [sym_type_constraints] = STATE(2103), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(5385), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, - [1275] = { - [sym__alpha_identifier] = ACTIONS(5171), - [anon_sym_AT] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_fun] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(5366), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_object] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5173), - [anon_sym_get] = ACTIONS(5171), - [anon_sym_set] = ACTIONS(5171), - [anon_sym_this] = ACTIONS(5171), - [anon_sym_super] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [sym_label] = ACTIONS(5171), - [anon_sym_in] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5173), - [anon_sym_QMARK_COLON] = ACTIONS(5173), - [anon_sym_AMP_AMP] = ACTIONS(5173), - [anon_sym_PIPE_PIPE] = ACTIONS(5173), - [anon_sym_null] = ACTIONS(5171), - [anon_sym_if] = ACTIONS(5171), - [anon_sym_else] = ACTIONS(5171), - [anon_sym_when] = ACTIONS(5171), - [anon_sym_try] = ACTIONS(5171), - [anon_sym_throw] = ACTIONS(5171), - [anon_sym_return] = ACTIONS(5171), - [anon_sym_continue] = ACTIONS(5171), - [anon_sym_break] = ACTIONS(5171), - [anon_sym_COLON_COLON] = ACTIONS(5173), - [anon_sym_PLUS_EQ] = ACTIONS(5173), - [anon_sym_DASH_EQ] = ACTIONS(5173), - [anon_sym_STAR_EQ] = ACTIONS(5173), - [anon_sym_SLASH_EQ] = ACTIONS(5173), - [anon_sym_PERCENT_EQ] = ACTIONS(5173), - [anon_sym_BANG_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), - [anon_sym_LT_EQ] = ACTIONS(5173), - [anon_sym_GT_EQ] = ACTIONS(5173), - [anon_sym_BANGin] = ACTIONS(5173), - [anon_sym_is] = ACTIONS(5171), - [anon_sym_BANGis] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_as_QMARK] = ACTIONS(5173), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_BANG_BANG] = ACTIONS(5173), - [anon_sym_suspend] = ACTIONS(5171), - [anon_sym_sealed] = ACTIONS(5171), - [anon_sym_annotation] = ACTIONS(5171), - [anon_sym_data] = ACTIONS(5171), - [anon_sym_inner] = ACTIONS(5171), - [anon_sym_value] = ACTIONS(5171), - [anon_sym_override] = ACTIONS(5171), - [anon_sym_lateinit] = ACTIONS(5171), - [anon_sym_public] = ACTIONS(5171), - [anon_sym_private] = ACTIONS(5171), - [anon_sym_internal] = ACTIONS(5171), - [anon_sym_protected] = ACTIONS(5171), - [anon_sym_tailrec] = ACTIONS(5171), - [anon_sym_operator] = ACTIONS(5171), - [anon_sym_infix] = ACTIONS(5171), - [anon_sym_inline] = ACTIONS(5171), - [anon_sym_external] = ACTIONS(5171), - [sym_property_modifier] = ACTIONS(5171), - [anon_sym_abstract] = ACTIONS(5171), - [anon_sym_final] = ACTIONS(5171), - [anon_sym_open] = ACTIONS(5171), - [anon_sym_vararg] = ACTIONS(5171), - [anon_sym_noinline] = ACTIONS(5171), - [anon_sym_crossinline] = ACTIONS(5171), - [anon_sym_expect] = ACTIONS(5171), - [anon_sym_actual] = ACTIONS(5171), + [1265] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5389), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5173), - [anon_sym_continue_AT] = ACTIONS(5173), - [anon_sym_break_AT] = ACTIONS(5173), - [anon_sym_this_AT] = ACTIONS(5173), - [anon_sym_super_AT] = ACTIONS(5173), - [sym_real_literal] = ACTIONS(5173), - [sym_integer_literal] = ACTIONS(5171), - [sym_hex_literal] = ACTIONS(5173), - [sym_bin_literal] = ACTIONS(5173), - [anon_sym_true] = ACTIONS(5171), - [anon_sym_false] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5173), - [sym__backtick_identifier] = ACTIONS(5173), - [sym__automatic_semicolon] = ACTIONS(5173), - [sym_safe_nav] = ACTIONS(5173), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5173), - }, - [1276] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5368), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [1277] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(5372), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_this] = ACTIONS(4244), - [anon_sym_super] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4244), - [anon_sym_if] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4244), - [anon_sym_try] = ACTIONS(4244), - [anon_sym_throw] = ACTIONS(4244), - [anon_sym_return] = ACTIONS(4244), - [anon_sym_continue] = ACTIONS(4244), - [anon_sym_break] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4242), - [anon_sym_continue_AT] = ACTIONS(4242), - [anon_sym_break_AT] = ACTIONS(4242), - [anon_sym_this_AT] = ACTIONS(4242), - [anon_sym_super_AT] = ACTIONS(4242), - [sym_real_literal] = ACTIONS(4242), - [sym_integer_literal] = ACTIONS(4244), - [sym_hex_literal] = ACTIONS(4242), - [sym_bin_literal] = ACTIONS(4242), - [anon_sym_true] = ACTIONS(4244), - [anon_sym_false] = ACTIONS(4244), - [anon_sym_SQUOTE] = ACTIONS(4242), - [sym__backtick_identifier] = ACTIONS(4242), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4242), + [sym__string_start] = ACTIONS(4284), }, - [1278] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_object] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(5374), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_this] = ACTIONS(4926), - [anon_sym_super] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_if] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(5376), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4926), - [anon_sym_throw] = ACTIONS(4926), - [anon_sym_return] = ACTIONS(4926), - [anon_sym_continue] = ACTIONS(4926), - [anon_sym_break] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_PLUS_EQ] = ACTIONS(4928), - [anon_sym_DASH_EQ] = ACTIONS(4928), - [anon_sym_STAR_EQ] = ACTIONS(4928), - [anon_sym_SLASH_EQ] = ACTIONS(4928), - [anon_sym_PERCENT_EQ] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [1266] = { + [sym_getter] = STATE(9634), + [sym_setter] = STATE(9634), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9271), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(5393), + [anon_sym_get] = ACTIONS(5324), + [anon_sym_set] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4928), - [anon_sym_continue_AT] = ACTIONS(4928), - [anon_sym_break_AT] = ACTIONS(4928), - [anon_sym_this_AT] = ACTIONS(4928), - [anon_sym_super_AT] = ACTIONS(4928), - [sym_real_literal] = ACTIONS(4928), - [sym_integer_literal] = ACTIONS(4926), - [sym_hex_literal] = ACTIONS(4928), - [sym_bin_literal] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [anon_sym_SQUOTE] = ACTIONS(4928), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), }, - [1279] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_object] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_this] = ACTIONS(4926), - [anon_sym_super] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_if] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(5376), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4926), - [anon_sym_throw] = ACTIONS(4926), - [anon_sym_return] = ACTIONS(4926), - [anon_sym_continue] = ACTIONS(4926), - [anon_sym_break] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_PLUS_EQ] = ACTIONS(4928), - [anon_sym_DASH_EQ] = ACTIONS(4928), - [anon_sym_STAR_EQ] = ACTIONS(4928), - [anon_sym_SLASH_EQ] = ACTIONS(4928), - [anon_sym_PERCENT_EQ] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [1267] = { + [sym_function_body] = STATE(1048), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(5395), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4277), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4277), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4928), - [anon_sym_continue_AT] = ACTIONS(4928), - [anon_sym_break_AT] = ACTIONS(4928), - [anon_sym_this_AT] = ACTIONS(4928), - [anon_sym_super_AT] = ACTIONS(4928), - [sym_real_literal] = ACTIONS(4928), - [sym_integer_literal] = ACTIONS(4926), - [sym_hex_literal] = ACTIONS(4928), - [sym_bin_literal] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [anon_sym_SQUOTE] = ACTIONS(4928), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), + [sym__string_start] = ACTIONS(4277), }, - [1280] = { - [sym__expression] = STATE(1966), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(2561), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_fun] = ACTIONS(5378), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(5334), - [anon_sym_get] = ACTIONS(5337), - [anon_sym_set] = ACTIONS(5337), - [anon_sym_this] = ACTIONS(2585), - [anon_sym_super] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2591), - [sym_label] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2600), - [anon_sym_when] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2612), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2618), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_data] = ACTIONS(5337), - [anon_sym_inner] = ACTIONS(5337), - [anon_sym_value] = ACTIONS(5337), - [anon_sym_expect] = ACTIONS(5337), - [anon_sym_actual] = ACTIONS(5337), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2624), - [anon_sym_continue_AT] = ACTIONS(2627), - [anon_sym_break_AT] = ACTIONS(2630), - [anon_sym_this_AT] = ACTIONS(2633), - [anon_sym_super_AT] = ACTIONS(2636), - [sym_real_literal] = ACTIONS(2639), - [sym_integer_literal] = ACTIONS(2642), - [sym_hex_literal] = ACTIONS(2645), - [sym_bin_literal] = ACTIONS(2645), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2651), - [sym__backtick_identifier] = ACTIONS(2654), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2657), + [1268] = { + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(5397), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, - [1281] = { - [sym__expression] = STATE(1246), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(2561), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_fun] = ACTIONS(5381), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(5334), - [anon_sym_get] = ACTIONS(5337), - [anon_sym_set] = ACTIONS(5337), - [anon_sym_this] = ACTIONS(2585), - [anon_sym_super] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2870), - [sym_label] = ACTIONS(2873), + [1269] = { + [sym__expression] = STATE(3768), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_object] = ACTIONS(5313), + [anon_sym_fun] = ACTIONS(5399), + [anon_sym_get] = ACTIONS(5319), + [anon_sym_set] = ACTIONS(5319), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2738), + [sym_label] = ACTIONS(2741), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_when] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2879), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2618), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_data] = ACTIONS(5337), - [anon_sym_inner] = ACTIONS(5337), - [anon_sym_value] = ACTIONS(5337), - [anon_sym_expect] = ACTIONS(5337), - [anon_sym_actual] = ACTIONS(5337), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2624), - [anon_sym_continue_AT] = ACTIONS(2627), - [anon_sym_break_AT] = ACTIONS(2630), - [anon_sym_this_AT] = ACTIONS(2633), - [anon_sym_super_AT] = ACTIONS(2636), - [sym_real_literal] = ACTIONS(2639), - [sym_integer_literal] = ACTIONS(2642), - [sym_hex_literal] = ACTIONS(2645), - [sym_bin_literal] = ACTIONS(2645), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2651), - [sym__backtick_identifier] = ACTIONS(2654), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2657), - }, - [1282] = { - [sym_type_constraints] = STATE(1847), - [sym_function_body] = STATE(1197), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(5384), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2750), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2753), + [anon_sym_DASH_DASH] = ACTIONS(2753), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_data] = ACTIONS(5319), + [anon_sym_inner] = ACTIONS(5319), + [anon_sym_value] = ACTIONS(5319), + [anon_sym_expect] = ACTIONS(5319), + [anon_sym_actual] = ACTIONS(5319), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), }, - [1283] = { - [sym__expression] = STATE(4182), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_fun] = ACTIONS(5386), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(5325), - [anon_sym_get] = ACTIONS(5328), - [anon_sym_set] = ACTIONS(5328), - [anon_sym_this] = ACTIONS(2706), - [anon_sym_super] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2782), - [sym_label] = ACTIONS(2785), + [1270] = { + [sym__expression] = STATE(950), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_object] = ACTIONS(5344), + [anon_sym_fun] = ACTIONS(5402), + [anon_sym_get] = ACTIONS(5350), + [anon_sym_set] = ACTIONS(5350), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2760), + [sym_label] = ACTIONS(2763), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_when] = ACTIONS(2724), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_throw] = ACTIONS(2791), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_PLUS_PLUS] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2797), - [anon_sym_BANG] = ACTIONS(2797), - [anon_sym_data] = ACTIONS(5328), - [anon_sym_inner] = ACTIONS(5328), - [anon_sym_value] = ACTIONS(5328), - [anon_sym_expect] = ACTIONS(5328), - [anon_sym_actual] = ACTIONS(5328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2745), - [anon_sym_break_AT] = ACTIONS(2748), - [anon_sym_this_AT] = ACTIONS(2751), - [anon_sym_super_AT] = ACTIONS(2754), - [sym_real_literal] = ACTIONS(2757), - [sym_integer_literal] = ACTIONS(2760), - [sym_hex_literal] = ACTIONS(2763), - [sym_bin_literal] = ACTIONS(2763), - [anon_sym_true] = ACTIONS(2766), - [anon_sym_false] = ACTIONS(2766), - [anon_sym_SQUOTE] = ACTIONS(2769), - [sym__backtick_identifier] = ACTIONS(2772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2775), + [anon_sym_null] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2766), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_data] = ACTIONS(5350), + [anon_sym_inner] = ACTIONS(5350), + [anon_sym_value] = ACTIONS(5350), + [anon_sym_expect] = ACTIONS(5350), + [anon_sym_actual] = ACTIONS(5350), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), }, - [1284] = { - [sym__expression] = STATE(1422), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(2278), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_fun] = ACTIONS(5389), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_object] = ACTIONS(5392), - [anon_sym_get] = ACTIONS(5395), - [anon_sym_set] = ACTIONS(5395), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2378), - [sym_label] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2393), - [anon_sym_DASH_DASH] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_data] = ACTIONS(5395), - [anon_sym_inner] = ACTIONS(5395), - [anon_sym_value] = ACTIONS(5395), - [anon_sym_expect] = ACTIONS(5395), - [anon_sym_actual] = ACTIONS(5395), + [1271] = { + [sym_getter] = STATE(9599), + [sym_setter] = STATE(9599), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9271), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(5405), + [anon_sym_get] = ACTIONS(5324), + [anon_sym_set] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, - [1285] = { - [sym__expression] = STATE(2311), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_fun] = ACTIONS(5398), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_object] = ACTIONS(5401), - [anon_sym_get] = ACTIONS(5404), - [anon_sym_set] = ACTIONS(5404), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2426), - [sym_label] = ACTIONS(2429), + [1272] = { + [sym__expression] = STATE(530), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_object] = ACTIONS(5332), + [anon_sym_fun] = ACTIONS(5407), + [anon_sym_get] = ACTIONS(5338), + [anon_sym_set] = ACTIONS(5338), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2499), + [sym_label] = ACTIONS(2502), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2435), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_PLUS_PLUS] = ACTIONS(2456), - [anon_sym_DASH_DASH] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(2456), - [anon_sym_data] = ACTIONS(5404), - [anon_sym_inner] = ACTIONS(5404), - [anon_sym_value] = ACTIONS(5404), - [anon_sym_expect] = ACTIONS(5404), - [anon_sym_actual] = ACTIONS(5404), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), + [anon_sym_null] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_data] = ACTIONS(5338), + [anon_sym_inner] = ACTIONS(5338), + [anon_sym_value] = ACTIONS(5338), + [anon_sym_expect] = ACTIONS(5338), + [anon_sym_actual] = ACTIONS(5338), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2143), [anon_sym_continue_AT] = ACTIONS(2462), [anon_sym_break_AT] = ACTIONS(2465), [anon_sym_this_AT] = ACTIONS(2468), @@ -195813,391 +193414,807 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2492), }, - [1286] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(5407), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_object] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_suspend] = ACTIONS(4347), - [anon_sym_sealed] = ACTIONS(4347), - [anon_sym_annotation] = ACTIONS(4347), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4347), - [anon_sym_lateinit] = ACTIONS(4347), - [anon_sym_public] = ACTIONS(4347), - [anon_sym_private] = ACTIONS(4347), - [anon_sym_internal] = ACTIONS(4347), - [anon_sym_protected] = ACTIONS(4347), - [anon_sym_tailrec] = ACTIONS(4347), - [anon_sym_operator] = ACTIONS(4347), - [anon_sym_infix] = ACTIONS(4347), - [anon_sym_inline] = ACTIONS(4347), - [anon_sym_external] = ACTIONS(4347), - [sym_property_modifier] = ACTIONS(4347), - [anon_sym_abstract] = ACTIONS(4347), - [anon_sym_final] = ACTIONS(4347), - [anon_sym_open] = ACTIONS(4347), - [anon_sym_vararg] = ACTIONS(4347), - [anon_sym_noinline] = ACTIONS(4347), - [anon_sym_crossinline] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), + [1273] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5389), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, - [1287] = { - [sym_type_constraints] = STATE(1366), - [sym_function_body] = STATE(1045), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [1274] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5410), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [1288] = { - [sym__expression] = STATE(484), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), + [1275] = { + [sym__expression] = STATE(471), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_fun] = ACTIONS(5411), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_object] = ACTIONS(5351), - [anon_sym_get] = ACTIONS(5354), - [anon_sym_set] = ACTIONS(5354), - [anon_sym_this] = ACTIONS(2102), - [anon_sym_super] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2826), - [sym_label] = ACTIONS(2829), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_object] = ACTIONS(5332), + [anon_sym_fun] = ACTIONS(5414), + [anon_sym_get] = ACTIONS(5338), + [anon_sym_set] = ACTIONS(5338), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2892), + [sym_label] = ACTIONS(2895), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2835), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2829), - [anon_sym_DASH] = ACTIONS(2829), - [anon_sym_PLUS_PLUS] = ACTIONS(2841), - [anon_sym_DASH_DASH] = ACTIONS(2841), - [anon_sym_BANG] = ACTIONS(2841), - [anon_sym_data] = ACTIONS(5354), - [anon_sym_inner] = ACTIONS(5354), - [anon_sym_value] = ACTIONS(5354), - [anon_sym_expect] = ACTIONS(5354), - [anon_sym_actual] = ACTIONS(5354), + [anon_sym_null] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_data] = ACTIONS(5338), + [anon_sym_inner] = ACTIONS(5338), + [anon_sym_value] = ACTIONS(5338), + [anon_sym_expect] = ACTIONS(5338), + [anon_sym_actual] = ACTIONS(5338), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2146), - [anon_sym_break_AT] = ACTIONS(2149), - [anon_sym_this_AT] = ACTIONS(2152), - [anon_sym_super_AT] = ACTIONS(2155), - [sym_real_literal] = ACTIONS(2158), - [sym_integer_literal] = ACTIONS(2161), - [sym_hex_literal] = ACTIONS(2164), - [sym_bin_literal] = ACTIONS(2164), - [anon_sym_true] = ACTIONS(2167), - [anon_sym_false] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2170), - [sym__backtick_identifier] = ACTIONS(2173), + [anon_sym_continue_AT] = ACTIONS(2462), + [anon_sym_break_AT] = ACTIONS(2465), + [anon_sym_this_AT] = ACTIONS(2468), + [anon_sym_super_AT] = ACTIONS(2471), + [sym_real_literal] = ACTIONS(2474), + [sym_integer_literal] = ACTIONS(2477), + [sym_hex_literal] = ACTIONS(2480), + [sym_bin_literal] = ACTIONS(2480), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(2486), + [sym__backtick_identifier] = ACTIONS(2489), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2176), + [sym__string_start] = ACTIONS(2492), }, - [1289] = { - [sym_getter] = STATE(9768), - [sym_setter] = STATE(9768), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9692), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [1276] = { + [sym__expression] = STATE(4114), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_object] = ACTIONS(5299), + [anon_sym_fun] = ACTIONS(5417), + [anon_sym_get] = ACTIONS(5305), + [anon_sym_set] = ACTIONS(5305), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2980), + [sym_label] = ACTIONS(2983), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2986), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_data] = ACTIONS(5305), + [anon_sym_inner] = ACTIONS(5305), + [anon_sym_value] = ACTIONS(5305), + [anon_sym_expect] = ACTIONS(5305), + [anon_sym_actual] = ACTIONS(5305), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), + }, + [1277] = { + [sym_type_constraints] = STATE(1918), + [sym_function_body] = STATE(1014), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), + }, + [1278] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5422), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [1279] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(5426), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), + }, + [1280] = { + [sym_getter] = STATE(9522), + [sym_setter] = STATE(9522), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9271), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(3576), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(5414), - [anon_sym_get] = ACTIONS(5416), - [anon_sym_set] = ACTIONS(5418), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(5428), + [anon_sym_get] = ACTIONS(5324), + [anon_sym_set] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -196226,498 +194243,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1290] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(5420), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_suspend] = ACTIONS(4236), - [anon_sym_sealed] = ACTIONS(4236), - [anon_sym_annotation] = ACTIONS(4236), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4236), - [anon_sym_lateinit] = ACTIONS(4236), - [anon_sym_public] = ACTIONS(4236), - [anon_sym_private] = ACTIONS(4236), - [anon_sym_internal] = ACTIONS(4236), - [anon_sym_protected] = ACTIONS(4236), - [anon_sym_tailrec] = ACTIONS(4236), - [anon_sym_operator] = ACTIONS(4236), - [anon_sym_infix] = ACTIONS(4236), - [anon_sym_inline] = ACTIONS(4236), - [anon_sym_external] = ACTIONS(4236), - [sym_property_modifier] = ACTIONS(4236), - [anon_sym_abstract] = ACTIONS(4236), - [anon_sym_final] = ACTIONS(4236), - [anon_sym_open] = ACTIONS(4236), - [anon_sym_vararg] = ACTIONS(4236), - [anon_sym_noinline] = ACTIONS(4236), - [anon_sym_crossinline] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), - }, - [1291] = { - [sym_type_constraints] = STATE(2114), - [sym_function_body] = STATE(1215), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(5424), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4209), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_this] = ACTIONS(4209), - [anon_sym_super] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4211), - [sym_label] = ACTIONS(4209), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_if] = ACTIONS(4209), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_when] = ACTIONS(4209), - [anon_sym_try] = ACTIONS(4209), - [anon_sym_throw] = ACTIONS(4209), - [anon_sym_return] = ACTIONS(4209), - [anon_sym_continue] = ACTIONS(4209), - [anon_sym_break] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4211), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG] = ACTIONS(4209), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_suspend] = ACTIONS(4209), - [anon_sym_sealed] = ACTIONS(4209), - [anon_sym_annotation] = ACTIONS(4209), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_override] = ACTIONS(4209), - [anon_sym_lateinit] = ACTIONS(4209), - [anon_sym_public] = ACTIONS(4209), - [anon_sym_private] = ACTIONS(4209), - [anon_sym_internal] = ACTIONS(4209), - [anon_sym_protected] = ACTIONS(4209), - [anon_sym_tailrec] = ACTIONS(4209), - [anon_sym_operator] = ACTIONS(4209), - [anon_sym_infix] = ACTIONS(4209), - [anon_sym_inline] = ACTIONS(4209), - [anon_sym_external] = ACTIONS(4209), - [sym_property_modifier] = ACTIONS(4209), - [anon_sym_abstract] = ACTIONS(4209), - [anon_sym_final] = ACTIONS(4209), - [anon_sym_open] = ACTIONS(4209), - [anon_sym_vararg] = ACTIONS(4209), - [anon_sym_noinline] = ACTIONS(4209), - [anon_sym_crossinline] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4211), - [anon_sym_continue_AT] = ACTIONS(4211), - [anon_sym_break_AT] = ACTIONS(4211), - [anon_sym_this_AT] = ACTIONS(4211), - [anon_sym_super_AT] = ACTIONS(4211), - [sym_real_literal] = ACTIONS(4211), - [sym_integer_literal] = ACTIONS(4209), - [sym_hex_literal] = ACTIONS(4211), - [sym_bin_literal] = ACTIONS(4211), - [anon_sym_true] = ACTIONS(4209), - [anon_sym_false] = ACTIONS(4209), - [anon_sym_SQUOTE] = ACTIONS(4211), - [sym__backtick_identifier] = ACTIONS(4211), - [sym__automatic_semicolon] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4211), }, - [1292] = { - [sym_function_body] = STATE(1202), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_COLON] = ACTIONS(5426), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_COMMA] = ACTIONS(4323), - [anon_sym_LT] = ACTIONS(4321), - [anon_sym_GT] = ACTIONS(4321), - [anon_sym_where] = ACTIONS(4321), - [anon_sym_object] = ACTIONS(4321), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_get] = ACTIONS(4321), - [anon_sym_set] = ACTIONS(4321), - [anon_sym_this] = ACTIONS(4321), - [anon_sym_super] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4323), - [sym_label] = ACTIONS(4321), - [anon_sym_in] = ACTIONS(4321), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_QMARK_COLON] = ACTIONS(4323), - [anon_sym_AMP_AMP] = ACTIONS(4323), - [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_null] = ACTIONS(4321), - [anon_sym_if] = ACTIONS(4321), - [anon_sym_else] = ACTIONS(4321), - [anon_sym_when] = ACTIONS(4321), - [anon_sym_try] = ACTIONS(4321), - [anon_sym_throw] = ACTIONS(4321), - [anon_sym_return] = ACTIONS(4321), - [anon_sym_continue] = ACTIONS(4321), - [anon_sym_break] = ACTIONS(4321), - [anon_sym_COLON_COLON] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), - [anon_sym_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4323), - [anon_sym_BANGin] = ACTIONS(4323), - [anon_sym_is] = ACTIONS(4321), - [anon_sym_BANGis] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4323), - [anon_sym_as_QMARK] = ACTIONS(4323), - [anon_sym_PLUS_PLUS] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG] = ACTIONS(4321), - [anon_sym_BANG_BANG] = ACTIONS(4323), - [anon_sym_suspend] = ACTIONS(4321), - [anon_sym_sealed] = ACTIONS(4321), - [anon_sym_annotation] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4321), - [anon_sym_inner] = ACTIONS(4321), - [anon_sym_value] = ACTIONS(4321), - [anon_sym_override] = ACTIONS(4321), - [anon_sym_lateinit] = ACTIONS(4321), - [anon_sym_public] = ACTIONS(4321), - [anon_sym_private] = ACTIONS(4321), - [anon_sym_internal] = ACTIONS(4321), - [anon_sym_protected] = ACTIONS(4321), - [anon_sym_tailrec] = ACTIONS(4321), - [anon_sym_operator] = ACTIONS(4321), - [anon_sym_infix] = ACTIONS(4321), - [anon_sym_inline] = ACTIONS(4321), - [anon_sym_external] = ACTIONS(4321), - [sym_property_modifier] = ACTIONS(4321), - [anon_sym_abstract] = ACTIONS(4321), - [anon_sym_final] = ACTIONS(4321), - [anon_sym_open] = ACTIONS(4321), - [anon_sym_vararg] = ACTIONS(4321), - [anon_sym_noinline] = ACTIONS(4321), - [anon_sym_crossinline] = ACTIONS(4321), - [anon_sym_expect] = ACTIONS(4321), - [anon_sym_actual] = ACTIONS(4321), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4323), - [anon_sym_continue_AT] = ACTIONS(4323), - [anon_sym_break_AT] = ACTIONS(4323), - [anon_sym_this_AT] = ACTIONS(4323), - [anon_sym_super_AT] = ACTIONS(4323), - [sym_real_literal] = ACTIONS(4323), - [sym_integer_literal] = ACTIONS(4321), - [sym_hex_literal] = ACTIONS(4323), - [sym_bin_literal] = ACTIONS(4323), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [anon_sym_SQUOTE] = ACTIONS(4323), - [sym__backtick_identifier] = ACTIONS(4323), - [sym__automatic_semicolon] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4323), + [1281] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5430), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), }, - [1293] = { - [sym_function_body] = STATE(1155), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(5428), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4339), - [anon_sym_object] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_this] = ACTIONS(4339), - [anon_sym_super] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [sym_label] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [anon_sym_try] = ACTIONS(4339), - [anon_sym_throw] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4341), - [anon_sym_continue_AT] = ACTIONS(4341), - [anon_sym_break_AT] = ACTIONS(4341), - [anon_sym_this_AT] = ACTIONS(4341), - [anon_sym_super_AT] = ACTIONS(4341), - [sym_real_literal] = ACTIONS(4341), - [sym_integer_literal] = ACTIONS(4339), - [sym_hex_literal] = ACTIONS(4341), - [sym_bin_literal] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4339), - [anon_sym_false] = ACTIONS(4339), - [anon_sym_SQUOTE] = ACTIONS(4341), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4341), + [1282] = { + [sym__expression] = STATE(4053), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_object] = ACTIONS(5313), + [anon_sym_fun] = ACTIONS(5432), + [anon_sym_get] = ACTIONS(5319), + [anon_sym_set] = ACTIONS(5319), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2569), + [sym_label] = ACTIONS(2572), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2578), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS_PLUS] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2599), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_data] = ACTIONS(5319), + [anon_sym_inner] = ACTIONS(5319), + [anon_sym_value] = ACTIONS(5319), + [anon_sym_expect] = ACTIONS(5319), + [anon_sym_actual] = ACTIONS(5319), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), }, - [1294] = { - [sym_getter] = STATE(9920), - [sym_setter] = STATE(9920), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9692), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), + [1283] = { + [sym_getter] = STATE(9620), + [sym_setter] = STATE(9620), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9271), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(3576), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(5430), - [anon_sym_get] = ACTIONS(5416), - [anon_sym_set] = ACTIONS(5418), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(5435), + [anon_sym_get] = ACTIONS(5324), + [anon_sym_set] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -196746,235 +194555,755 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [1295] = { - [sym_type_constraints] = STATE(1370), - [sym_function_body] = STATE(1189), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), + [1284] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5437), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), }, - [1296] = { - [sym__expression] = STATE(965), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_fun] = ACTIONS(5432), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_object] = ACTIONS(5401), - [anon_sym_get] = ACTIONS(5404), - [anon_sym_set] = ACTIONS(5404), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2499), - [sym_label] = ACTIONS(2502), + [1285] = { + [sym__expression] = STATE(2559), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_object] = ACTIONS(5371), + [anon_sym_fun] = ACTIONS(5439), + [anon_sym_get] = ACTIONS(5377), + [anon_sym_set] = ACTIONS(5377), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(3002), + [sym_label] = ACTIONS(3005), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2514), - [anon_sym_BANG] = ACTIONS(2514), - [anon_sym_data] = ACTIONS(5404), - [anon_sym_inner] = ACTIONS(5404), - [anon_sym_value] = ACTIONS(5404), - [anon_sym_expect] = ACTIONS(5404), - [anon_sym_actual] = ACTIONS(5404), + [anon_sym_null] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(3011), + [anon_sym_return] = ACTIONS(3014), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS_PLUS] = ACTIONS(3017), + [anon_sym_DASH_DASH] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_data] = ACTIONS(5377), + [anon_sym_inner] = ACTIONS(5377), + [anon_sym_value] = ACTIONS(5377), + [anon_sym_expect] = ACTIONS(5377), + [anon_sym_actual] = ACTIONS(5377), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2462), - [anon_sym_break_AT] = ACTIONS(2465), - [anon_sym_this_AT] = ACTIONS(2468), - [anon_sym_super_AT] = ACTIONS(2471), - [sym_real_literal] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2477), - [sym_hex_literal] = ACTIONS(2480), - [sym_bin_literal] = ACTIONS(2480), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2486), - [sym__backtick_identifier] = ACTIONS(2489), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(2146), + [anon_sym_break_AT] = ACTIONS(2149), + [anon_sym_this_AT] = ACTIONS(2152), + [anon_sym_super_AT] = ACTIONS(2155), + [sym_real_literal] = ACTIONS(2158), + [sym_integer_literal] = ACTIONS(2161), + [sym_hex_literal] = ACTIONS(2164), + [sym_bin_literal] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2167), + [anon_sym_false] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym__backtick_identifier] = ACTIONS(2173), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2492), + [sym__string_start] = ACTIONS(2176), }, - [1297] = { - [sym_type_constraints] = STATE(1507), - [sym_function_body] = STATE(1153), - [sym__block] = STATE(1092), + [1286] = { + [sym__expression] = STATE(1230), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_object] = ACTIONS(5344), + [anon_sym_fun] = ACTIONS(5442), + [anon_sym_get] = ACTIONS(5350), + [anon_sym_set] = ACTIONS(5350), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2782), + [sym_label] = ACTIONS(2785), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2794), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_PLUS_PLUS] = ACTIONS(2797), + [anon_sym_DASH_DASH] = ACTIONS(2797), + [anon_sym_BANG] = ACTIONS(2797), + [anon_sym_data] = ACTIONS(5350), + [anon_sym_inner] = ACTIONS(5350), + [anon_sym_value] = ACTIONS(5350), + [anon_sym_expect] = ACTIONS(5350), + [anon_sym_actual] = ACTIONS(5350), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), + }, + [1287] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(5445), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [1288] = { + [sym__expression] = STATE(3296), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_object] = ACTIONS(5299), + [anon_sym_fun] = ACTIONS(5449), + [anon_sym_get] = ACTIONS(5305), + [anon_sym_set] = ACTIONS(5305), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2870), + [sym_label] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_data] = ACTIONS(5305), + [anon_sym_inner] = ACTIONS(5305), + [anon_sym_value] = ACTIONS(5305), + [anon_sym_expect] = ACTIONS(5305), + [anon_sym_actual] = ACTIONS(5305), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), + }, + [1289] = { + [sym_type_constraints] = STATE(2157), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(5452), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [1290] = { + [sym_type_constraints] = STATE(2187), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(5454), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [1291] = { + [sym_type_constraints] = STATE(2002), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(5435), + [anon_sym_COLON] = ACTIONS(5456), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), @@ -197061,171 +195390,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4185), }, - [1298] = { - [sym_getter] = STATE(9904), - [sym_setter] = STATE(9904), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9692), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(5437), - [anon_sym_get] = ACTIONS(5416), - [anon_sym_set] = ACTIONS(5418), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1299] = { - [sym__expression] = STATE(526), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), + [1292] = { + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), [sym__alpha_identifier] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(5319), + [anon_sym_AT] = ACTIONS(5287), [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_fun] = ACTIONS(5439), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_object] = ACTIONS(5351), - [anon_sym_get] = ACTIONS(5354), - [anon_sym_set] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_object] = ACTIONS(5371), + [anon_sym_fun] = ACTIONS(5458), + [anon_sym_get] = ACTIONS(5377), + [anon_sym_set] = ACTIONS(5377), [anon_sym_this] = ACTIONS(2102), [anon_sym_super] = ACTIONS(2105), [anon_sym_STAR] = ACTIONS(2108), @@ -197247,11 +195472,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(2140), [anon_sym_DASH_DASH] = ACTIONS(2140), [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_data] = ACTIONS(5354), - [anon_sym_inner] = ACTIONS(5354), - [anon_sym_value] = ACTIONS(5354), - [anon_sym_expect] = ACTIONS(5354), - [anon_sym_actual] = ACTIONS(5354), + [anon_sym_data] = ACTIONS(5377), + [anon_sym_inner] = ACTIONS(5377), + [anon_sym_value] = ACTIONS(5377), + [anon_sym_expect] = ACTIONS(5377), + [anon_sym_actual] = ACTIONS(5377), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(2143), [anon_sym_continue_AT] = ACTIONS(2146), @@ -197269,1376 +195494,745 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2176), }, - [1300] = { - [sym_getter] = STATE(9790), - [sym_setter] = STATE(9790), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9692), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(5442), - [anon_sym_get] = ACTIONS(5416), - [anon_sym_set] = ACTIONS(5418), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1301] = { - [sym__expression] = STATE(4226), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1293] = { + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_fun] = ACTIONS(5444), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_object] = ACTIONS(5447), - [anon_sym_get] = ACTIONS(5450), - [anon_sym_set] = ACTIONS(5450), - [anon_sym_this] = ACTIONS(2203), - [anon_sym_super] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2543), - [sym_label] = ACTIONS(2546), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_object] = ACTIONS(5299), + [anon_sym_fun] = ACTIONS(5461), + [anon_sym_get] = ACTIONS(5305), + [anon_sym_set] = ACTIONS(5305), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2330), + [sym_label] = ACTIONS(2333), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2549), - [anon_sym_when] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2552), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_COLON_COLON] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_PLUS_PLUS] = ACTIONS(2558), - [anon_sym_DASH_DASH] = ACTIONS(2558), - [anon_sym_BANG] = ACTIONS(2558), - [anon_sym_data] = ACTIONS(5450), - [anon_sym_inner] = ACTIONS(5450), - [anon_sym_value] = ACTIONS(5450), - [anon_sym_expect] = ACTIONS(5450), - [anon_sym_actual] = ACTIONS(5450), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2245), - [anon_sym_break_AT] = ACTIONS(2248), - [anon_sym_this_AT] = ACTIONS(2251), - [anon_sym_super_AT] = ACTIONS(2254), - [sym_real_literal] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2260), - [sym_hex_literal] = ACTIONS(2263), - [sym_bin_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2269), - [sym__backtick_identifier] = ACTIONS(2272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2275), + [anon_sym_null] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2339), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_data] = ACTIONS(5305), + [anon_sym_inner] = ACTIONS(5305), + [anon_sym_value] = ACTIONS(5305), + [anon_sym_expect] = ACTIONS(5305), + [anon_sym_actual] = ACTIONS(5305), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), }, - [1302] = { - [sym__expression] = STATE(2486), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(2278), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_fun] = ACTIONS(5453), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_object] = ACTIONS(5392), - [anon_sym_get] = ACTIONS(5395), - [anon_sym_set] = ACTIONS(5395), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2892), - [sym_label] = ACTIONS(2895), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_data] = ACTIONS(5395), - [anon_sym_inner] = ACTIONS(5395), - [anon_sym_value] = ACTIONS(5395), - [anon_sym_expect] = ACTIONS(5395), - [anon_sym_actual] = ACTIONS(5395), + [1294] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9062), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5464), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [1303] = { - [sym_type_constraints] = STATE(1363), - [sym_function_body] = STATE(1087), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), + [1295] = { + [sym_type_constraints] = STATE(935), + [sym_enum_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(5468), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), - }, - [1304] = { - [sym__expression] = STATE(1854), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_fun] = ACTIONS(5456), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_object] = ACTIONS(5401), - [anon_sym_get] = ACTIONS(5404), - [anon_sym_set] = ACTIONS(5404), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(3002), - [sym_label] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(3008), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_data] = ACTIONS(5404), - [anon_sym_inner] = ACTIONS(5404), - [anon_sym_value] = ACTIONS(5404), - [anon_sym_expect] = ACTIONS(5404), - [anon_sym_actual] = ACTIONS(5404), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2462), - [anon_sym_break_AT] = ACTIONS(2465), - [anon_sym_this_AT] = ACTIONS(2468), - [anon_sym_super_AT] = ACTIONS(2471), - [sym_real_literal] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2477), - [sym_hex_literal] = ACTIONS(2480), - [sym_bin_literal] = ACTIONS(2480), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2486), - [sym__backtick_identifier] = ACTIONS(2489), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2492), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, - [1305] = { - [sym__expression] = STATE(1239), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_fun] = ACTIONS(5459), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_object] = ACTIONS(5401), - [anon_sym_get] = ACTIONS(5404), - [anon_sym_set] = ACTIONS(5404), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2914), - [sym_label] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2929), - [anon_sym_BANG] = ACTIONS(2929), - [anon_sym_data] = ACTIONS(5404), - [anon_sym_inner] = ACTIONS(5404), - [anon_sym_value] = ACTIONS(5404), - [anon_sym_expect] = ACTIONS(5404), - [anon_sym_actual] = ACTIONS(5404), + [1296] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5470), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2462), - [anon_sym_break_AT] = ACTIONS(2465), - [anon_sym_this_AT] = ACTIONS(2468), - [anon_sym_super_AT] = ACTIONS(2471), - [sym_real_literal] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2477), - [sym_hex_literal] = ACTIONS(2480), - [sym_bin_literal] = ACTIONS(2480), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2486), - [sym__backtick_identifier] = ACTIONS(2489), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2492), + [sym__string_start] = ACTIONS(295), }, - [1306] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5462), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_this] = ACTIONS(4355), - [anon_sym_super] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4355), - [sym_label] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [anon_sym_if] = ACTIONS(4355), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4355), - [anon_sym_try] = ACTIONS(4355), - [anon_sym_throw] = ACTIONS(4355), - [anon_sym_return] = ACTIONS(4355), - [anon_sym_continue] = ACTIONS(4355), - [anon_sym_break] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), + [1297] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8826), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5472), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4353), - [anon_sym_continue_AT] = ACTIONS(4353), - [anon_sym_break_AT] = ACTIONS(4353), - [anon_sym_this_AT] = ACTIONS(4353), - [anon_sym_super_AT] = ACTIONS(4353), - [sym_real_literal] = ACTIONS(4353), - [sym_integer_literal] = ACTIONS(4355), - [sym_hex_literal] = ACTIONS(4353), - [sym_bin_literal] = ACTIONS(4353), - [anon_sym_true] = ACTIONS(4355), - [anon_sym_false] = ACTIONS(4355), - [anon_sym_SQUOTE] = ACTIONS(4353), - [sym__backtick_identifier] = ACTIONS(4353), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4353), - }, - [1307] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(5464), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [1308] = { - [sym_type_constraints] = STATE(1738), - [sym_function_body] = STATE(1045), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(5468), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), - }, - [1309] = { - [sym__expression] = STATE(4365), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_fun] = ACTIONS(5470), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(5325), - [anon_sym_get] = ACTIONS(5328), - [anon_sym_set] = ACTIONS(5328), - [anon_sym_this] = ACTIONS(2706), - [anon_sym_super] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2712), - [sym_label] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2721), - [anon_sym_when] = ACTIONS(2724), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_throw] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(2742), - [anon_sym_data] = ACTIONS(5328), - [anon_sym_inner] = ACTIONS(5328), - [anon_sym_value] = ACTIONS(5328), - [anon_sym_expect] = ACTIONS(5328), - [anon_sym_actual] = ACTIONS(5328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2745), - [anon_sym_break_AT] = ACTIONS(2748), - [anon_sym_this_AT] = ACTIONS(2751), - [anon_sym_super_AT] = ACTIONS(2754), - [sym_real_literal] = ACTIONS(2757), - [sym_integer_literal] = ACTIONS(2760), - [sym_hex_literal] = ACTIONS(2763), - [sym_bin_literal] = ACTIONS(2763), - [anon_sym_true] = ACTIONS(2766), - [anon_sym_false] = ACTIONS(2766), - [anon_sym_SQUOTE] = ACTIONS(2769), - [sym__backtick_identifier] = ACTIONS(2772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2775), - }, - [1310] = { - [sym__expression] = STATE(2257), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(2278), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_fun] = ACTIONS(5473), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_object] = ACTIONS(5392), - [anon_sym_get] = ACTIONS(5395), - [anon_sym_set] = ACTIONS(5395), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2308), - [sym_label] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2326), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_data] = ACTIONS(5395), - [anon_sym_inner] = ACTIONS(5395), - [anon_sym_value] = ACTIONS(5395), - [anon_sym_expect] = ACTIONS(5395), - [anon_sym_actual] = ACTIONS(5395), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), + [sym__string_start] = ACTIONS(295), }, - [1311] = { - [sym__expression] = STATE(4377), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_fun] = ACTIONS(5476), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_object] = ACTIONS(5447), - [anon_sym_get] = ACTIONS(5450), - [anon_sym_set] = ACTIONS(5450), - [anon_sym_this] = ACTIONS(2203), - [anon_sym_super] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2521), - [sym_label] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2527), - [anon_sym_when] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2530), - [anon_sym_return] = ACTIONS(2533), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_COLON_COLON] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2536), - [anon_sym_BANG] = ACTIONS(2536), - [anon_sym_data] = ACTIONS(5450), - [anon_sym_inner] = ACTIONS(5450), - [anon_sym_value] = ACTIONS(5450), - [anon_sym_expect] = ACTIONS(5450), - [anon_sym_actual] = ACTIONS(5450), + [1298] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8968), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5474), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2245), - [anon_sym_break_AT] = ACTIONS(2248), - [anon_sym_this_AT] = ACTIONS(2251), - [anon_sym_super_AT] = ACTIONS(2254), - [sym_real_literal] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2260), - [sym_hex_literal] = ACTIONS(2263), - [sym_bin_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2269), - [sym__backtick_identifier] = ACTIONS(2272), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2275), + [sym__string_start] = ACTIONS(295), }, - [1312] = { - [sym__expression] = STATE(4103), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_fun] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_object] = ACTIONS(5447), - [anon_sym_get] = ACTIONS(5450), - [anon_sym_set] = ACTIONS(5450), - [anon_sym_this] = ACTIONS(2203), - [anon_sym_super] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2209), - [sym_label] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_when] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_COLON_COLON] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_data] = ACTIONS(5450), - [anon_sym_inner] = ACTIONS(5450), - [anon_sym_value] = ACTIONS(5450), - [anon_sym_expect] = ACTIONS(5450), - [anon_sym_actual] = ACTIONS(5450), + [1299] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5476), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2245), - [anon_sym_break_AT] = ACTIONS(2248), - [anon_sym_this_AT] = ACTIONS(2251), - [anon_sym_super_AT] = ACTIONS(2254), - [sym_real_literal] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2260), - [sym_hex_literal] = ACTIONS(2263), - [sym_bin_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2269), - [sym__backtick_identifier] = ACTIONS(2272), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2275), + [sym__string_start] = ACTIONS(295), }, - [1313] = { - [sym_type_constraints] = STATE(1342), - [sym_function_body] = STATE(1153), - [sym__block] = STATE(1092), + [1300] = { + [sym_type_constraints] = STATE(2002), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), @@ -198725,914 +196319,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4185), }, - [1314] = { - [sym__expression] = STATE(2340), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(2561), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_fun] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(5334), - [anon_sym_get] = ACTIONS(5337), - [anon_sym_set] = ACTIONS(5337), - [anon_sym_this] = ACTIONS(2585), - [anon_sym_super] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2664), - [sym_label] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2670), - [anon_sym_when] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2676), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2618), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_data] = ACTIONS(5337), - [anon_sym_inner] = ACTIONS(5337), - [anon_sym_value] = ACTIONS(5337), - [anon_sym_expect] = ACTIONS(5337), - [anon_sym_actual] = ACTIONS(5337), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2624), - [anon_sym_continue_AT] = ACTIONS(2627), - [anon_sym_break_AT] = ACTIONS(2630), - [anon_sym_this_AT] = ACTIONS(2633), - [anon_sym_super_AT] = ACTIONS(2636), - [sym_real_literal] = ACTIONS(2639), - [sym_integer_literal] = ACTIONS(2642), - [sym_hex_literal] = ACTIONS(2645), - [sym_bin_literal] = ACTIONS(2645), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2651), - [sym__backtick_identifier] = ACTIONS(2654), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2657), - }, - [1315] = { - [sym_function_body] = STATE(1083), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(5485), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_where] = ACTIONS(4269), - [anon_sym_object] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_this] = ACTIONS(4269), - [anon_sym_super] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4271), - [sym_label] = ACTIONS(4269), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_null] = ACTIONS(4269), - [anon_sym_if] = ACTIONS(4269), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_when] = ACTIONS(4269), - [anon_sym_try] = ACTIONS(4269), - [anon_sym_throw] = ACTIONS(4269), - [anon_sym_return] = ACTIONS(4269), - [anon_sym_continue] = ACTIONS(4269), - [anon_sym_break] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4269), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_suspend] = ACTIONS(4269), - [anon_sym_sealed] = ACTIONS(4269), - [anon_sym_annotation] = ACTIONS(4269), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_override] = ACTIONS(4269), - [anon_sym_lateinit] = ACTIONS(4269), - [anon_sym_public] = ACTIONS(4269), - [anon_sym_private] = ACTIONS(4269), - [anon_sym_internal] = ACTIONS(4269), - [anon_sym_protected] = ACTIONS(4269), - [anon_sym_tailrec] = ACTIONS(4269), - [anon_sym_operator] = ACTIONS(4269), - [anon_sym_infix] = ACTIONS(4269), - [anon_sym_inline] = ACTIONS(4269), - [anon_sym_external] = ACTIONS(4269), - [sym_property_modifier] = ACTIONS(4269), - [anon_sym_abstract] = ACTIONS(4269), - [anon_sym_final] = ACTIONS(4269), - [anon_sym_open] = ACTIONS(4269), - [anon_sym_vararg] = ACTIONS(4269), - [anon_sym_noinline] = ACTIONS(4269), - [anon_sym_crossinline] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4271), - [anon_sym_continue_AT] = ACTIONS(4271), - [anon_sym_break_AT] = ACTIONS(4271), - [anon_sym_this_AT] = ACTIONS(4271), - [anon_sym_super_AT] = ACTIONS(4271), - [sym_real_literal] = ACTIONS(4271), - [sym_integer_literal] = ACTIONS(4269), - [sym_hex_literal] = ACTIONS(4271), - [sym_bin_literal] = ACTIONS(4271), - [anon_sym_true] = ACTIONS(4269), - [anon_sym_false] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4271), - [sym__backtick_identifier] = ACTIONS(4271), - [sym__automatic_semicolon] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4271), - }, - [1316] = { - [sym_getter] = STATE(9784), - [sym_setter] = STATE(9784), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9692), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(5487), - [anon_sym_get] = ACTIONS(5416), - [anon_sym_set] = ACTIONS(5418), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1317] = { - [sym__expression] = STATE(3414), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_fun] = ACTIONS(5489), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_object] = ACTIONS(5447), - [anon_sym_get] = ACTIONS(5450), - [anon_sym_set] = ACTIONS(5450), - [anon_sym_this] = ACTIONS(2203), - [anon_sym_super] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(3024), - [sym_label] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_COLON_COLON] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(5450), - [anon_sym_inner] = ACTIONS(5450), - [anon_sym_value] = ACTIONS(5450), - [anon_sym_expect] = ACTIONS(5450), - [anon_sym_actual] = ACTIONS(5450), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2245), - [anon_sym_break_AT] = ACTIONS(2248), - [anon_sym_this_AT] = ACTIONS(2251), - [anon_sym_super_AT] = ACTIONS(2254), - [sym_real_literal] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2260), - [sym_hex_literal] = ACTIONS(2263), - [sym_bin_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2269), - [sym__backtick_identifier] = ACTIONS(2272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2275), - }, - [1318] = { - [sym__expression] = STATE(386), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_fun] = ACTIONS(5492), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_object] = ACTIONS(5351), - [anon_sym_get] = ACTIONS(5354), - [anon_sym_set] = ACTIONS(5354), - [anon_sym_this] = ACTIONS(2102), - [anon_sym_super] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2958), - [sym_label] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2964), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2967), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_data] = ACTIONS(5354), - [anon_sym_inner] = ACTIONS(5354), - [anon_sym_value] = ACTIONS(5354), - [anon_sym_expect] = ACTIONS(5354), - [anon_sym_actual] = ACTIONS(5354), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2146), - [anon_sym_break_AT] = ACTIONS(2149), - [anon_sym_this_AT] = ACTIONS(2152), - [anon_sym_super_AT] = ACTIONS(2155), - [sym_real_literal] = ACTIONS(2158), - [sym_integer_literal] = ACTIONS(2161), - [sym_hex_literal] = ACTIONS(2164), - [sym_bin_literal] = ACTIONS(2164), - [anon_sym_true] = ACTIONS(2167), - [anon_sym_false] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2170), - [sym__backtick_identifier] = ACTIONS(2173), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2176), - }, - [1319] = { - [sym__expression] = STATE(2627), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(2278), - [anon_sym_AT] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_fun] = ACTIONS(5495), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_object] = ACTIONS(5392), - [anon_sym_get] = ACTIONS(5395), - [anon_sym_set] = ACTIONS(5395), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2936), - [sym_label] = ACTIONS(2939), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2948), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_data] = ACTIONS(5395), - [anon_sym_inner] = ACTIONS(5395), - [anon_sym_value] = ACTIONS(5395), - [anon_sym_expect] = ACTIONS(5395), - [anon_sym_actual] = ACTIONS(5395), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), - }, - [1320] = { - [sym_getter] = STATE(9856), - [sym_setter] = STATE(9856), - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_modifiers] = STATE(9692), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(6359), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(5498), - [anon_sym_get] = ACTIONS(5416), - [anon_sym_set] = ACTIONS(5418), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1321] = { - [sym_type_constraints] = STATE(1335), - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), - }, - [1322] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9318), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1301] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5478), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5500), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -199644,98 +196406,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1323] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1302] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9005), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5480), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5504), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -199747,98 +196509,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1324] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1303] = { + [sym_primary_constructor] = STATE(2986), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(1422), + [sym_type_constraints] = STATE(3311), + [sym_enum_class_body] = STATE(3562), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5482), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [1304] = { + [sym_primary_constructor] = STATE(2988), + [sym_class_body] = STATE(3562), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(1421), + [sym_type_constraints] = STATE(3352), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5494), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [1305] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5498), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5506), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -199850,98 +196818,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1325] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1306] = { + [sym_type_constraints] = STATE(2157), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [1307] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8998), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5500), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5508), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -199953,98 +197024,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1326] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9357), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1308] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5502), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5510), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -200056,98 +197127,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1327] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1309] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8994), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5504), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5512), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -200159,98 +197230,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1328] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1310] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9014), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5506), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5514), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -200262,201 +197333,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1329] = { - [sym_type_constraints] = STATE(1834), - [sym_function_body] = STATE(1087), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), + [sym__string_start] = ACTIONS(295), }, - [1330] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1311] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5516), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -200468,98 +197436,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1331] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1312] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5510), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5518), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -200571,98 +197539,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1332] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9327), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1313] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9091), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5512), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5520), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -200674,98 +197642,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1333] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9150), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1314] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5514), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5522), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -200777,98 +197745,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1334] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1315] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5516), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5524), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -200880,201 +197848,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1335] = { - [sym_function_body] = STATE(1189), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(4287), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), + [sym__string_start] = ACTIONS(295), }, - [1336] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1316] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5518), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5526), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -201086,98 +197951,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1337] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9322), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1317] = { + [sym_primary_constructor] = STATE(2983), + [sym_class_body] = STATE(3602), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(1425), + [sym_type_constraints] = STATE(3342), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_DASH_GT] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), + [sym_multiline_comment] = ACTIONS(3), + }, + [1318] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5522), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5528), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -201189,98 +198157,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1338] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1319] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5524), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5530), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -201292,98 +198260,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1339] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1320] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5526), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5532), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -201395,98 +198363,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1340] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1321] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5528), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5534), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -201498,98 +198466,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1341] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1322] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8923), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5530), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5536), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -201601,201 +198569,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1342] = { - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), + [1323] = { + [sym_primary_constructor] = STATE(2998), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(1389), + [sym_type_constraints] = STATE(3284), + [sym_enum_class_body] = STATE(3521), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_DASH_GT] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), }, - [1343] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9307), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1324] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5534), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5538), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -201807,98 +198775,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1344] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1325] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5536), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5540), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -201910,98 +198878,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1345] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1326] = { + [sym_type_constraints] = STATE(2187), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [1327] = { + [sym_type_constraints] = STATE(1912), + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [1328] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9018), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5538), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5542), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -202013,98 +199187,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1346] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9302), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1329] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9075), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5540), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5544), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -202116,98 +199290,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1347] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1330] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5542), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5546), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -202219,201 +199393,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1348] = { - [sym_primary_constructor] = STATE(4681), - [sym_class_body] = STATE(4888), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(1458), - [sym_type_constraints] = STATE(4753), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5548), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_RBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [anon_sym_DASH_GT] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [1349] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1331] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5544), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5560), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -202425,98 +199496,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1350] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9291), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1332] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8830), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5546), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5562), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -202528,304 +199599,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1351] = { - [sym_type_constraints] = STATE(1621), - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), - }, - [1352] = { - [sym_primary_constructor] = STATE(4679), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(1455), - [sym_type_constraints] = STATE(4754), - [sym_enum_class_body] = STATE(4888), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5564), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_RBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [anon_sym_DASH_GT] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [1353] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1333] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5548), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5568), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -202837,98 +199702,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1354] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9259), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1334] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5550), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5570), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -202940,98 +199805,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1355] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1335] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5552), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5572), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -203043,98 +199908,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1356] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1336] = { + [sym__expression] = STATE(4521), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1400), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8402), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(5554), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1337] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5556), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [anon_sym_DASH_GT] = ACTIONS(4287), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [1338] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5560), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5574), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -203146,98 +200217,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1357] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9227), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1339] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5562), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5576), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -203249,407 +200320,922 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1358] = { - [sym_type_constraints] = STATE(1035), - [sym_enum_class_body] = STATE(1127), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(5578), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), + [1340] = { + [sym_type_constraints] = STATE(1913), + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, - [1359] = { - [sym_class_body] = STATE(1127), - [sym_type_constraints] = STATE(984), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(5580), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), + [1341] = { + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), + }, + [1342] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5564), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [anon_sym_DASH_GT] = ACTIONS(4265), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [1343] = { + [sym_function_body] = STATE(1097), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), + }, + [1344] = { + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [1345] = { + [sym_type_constraints] = STATE(990), + [sym_enum_class_body] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(5568), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), + }, + [1346] = { + [sym_type_constraints] = STATE(947), + [sym_enum_class_body] = STATE(1148), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [1360] = { - [sym_type_constraints] = STATE(1853), - [sym_function_body] = STATE(1189), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), + [1347] = { + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(943), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, - [1361] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9265), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1348] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5572), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5582), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -203661,712 +201247,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1362] = { - [sym_class_body] = STATE(1203), - [sym_type_constraints] = STATE(1034), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(5584), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_fun] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4275), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_this] = ACTIONS(4275), - [anon_sym_super] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4277), - [sym_label] = ACTIONS(4275), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4275), - [anon_sym_if] = ACTIONS(4275), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_when] = ACTIONS(4275), - [anon_sym_try] = ACTIONS(4275), - [anon_sym_throw] = ACTIONS(4275), - [anon_sym_return] = ACTIONS(4275), - [anon_sym_continue] = ACTIONS(4275), - [anon_sym_break] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4277), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_suspend] = ACTIONS(4275), - [anon_sym_sealed] = ACTIONS(4275), - [anon_sym_annotation] = ACTIONS(4275), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_override] = ACTIONS(4275), - [anon_sym_lateinit] = ACTIONS(4275), - [anon_sym_public] = ACTIONS(4275), - [anon_sym_private] = ACTIONS(4275), - [anon_sym_internal] = ACTIONS(4275), - [anon_sym_protected] = ACTIONS(4275), - [anon_sym_tailrec] = ACTIONS(4275), - [anon_sym_operator] = ACTIONS(4275), - [anon_sym_infix] = ACTIONS(4275), - [anon_sym_inline] = ACTIONS(4275), - [anon_sym_external] = ACTIONS(4275), - [sym_property_modifier] = ACTIONS(4275), - [anon_sym_abstract] = ACTIONS(4275), - [anon_sym_final] = ACTIONS(4275), - [anon_sym_open] = ACTIONS(4275), - [anon_sym_vararg] = ACTIONS(4275), - [anon_sym_noinline] = ACTIONS(4275), - [anon_sym_crossinline] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4277), - [anon_sym_continue_AT] = ACTIONS(4277), - [anon_sym_break_AT] = ACTIONS(4277), - [anon_sym_this_AT] = ACTIONS(4277), - [anon_sym_super_AT] = ACTIONS(4277), - [sym_real_literal] = ACTIONS(4277), - [sym_integer_literal] = ACTIONS(4275), - [sym_hex_literal] = ACTIONS(4277), - [sym_bin_literal] = ACTIONS(4277), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [anon_sym_SQUOTE] = ACTIONS(4277), - [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), - }, - [1363] = { - [sym_function_body] = STATE(1153), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(4183), - [anon_sym_object] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), - }, - [1364] = { - [sym_class_body] = STATE(1057), - [sym_type_constraints] = STATE(998), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3490), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [sym__string_start] = ACTIONS(295), }, - [1365] = { - [sym_type_constraints] = STATE(1738), - [sym_function_body] = STATE(1045), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), + [1349] = { + [sym_class_body] = STATE(1068), + [sym_type_constraints] = STATE(969), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), - }, - [1366] = { - [sym_function_body] = STATE(1087), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(4164), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [1367] = { - [sym_class_body] = STATE(1148), - [sym_type_constraints] = STATE(958), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), + [1350] = { + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [1368] = { - [sym_primary_constructor] = STATE(3119), - [sym_class_body] = STATE(3571), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(1450), - [sym_type_constraints] = STATE(3427), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), + [1351] = { + [sym_primary_constructor] = STATE(4560), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(1418), + [sym_type_constraints] = STATE(4650), + [sym_enum_class_body] = STATE(4770), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_COLON] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_DASH_GT] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -204394,86 +201568,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), [sym_multiline_comment] = ACTIONS(3), }, - [1369] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1352] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5584), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5596), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -204485,613 +201659,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1370] = { - [sym_function_body] = STATE(1199), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4453), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_where] = ACTIONS(4453), - [anon_sym_object] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_this] = ACTIONS(4453), - [anon_sym_super] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4455), - [sym_label] = ACTIONS(4453), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_null] = ACTIONS(4453), - [anon_sym_if] = ACTIONS(4453), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_when] = ACTIONS(4453), - [anon_sym_try] = ACTIONS(4453), - [anon_sym_throw] = ACTIONS(4453), - [anon_sym_return] = ACTIONS(4453), - [anon_sym_continue] = ACTIONS(4453), - [anon_sym_break] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4455), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4453), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_suspend] = ACTIONS(4453), - [anon_sym_sealed] = ACTIONS(4453), - [anon_sym_annotation] = ACTIONS(4453), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4453), - [anon_sym_lateinit] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_internal] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_tailrec] = ACTIONS(4453), - [anon_sym_operator] = ACTIONS(4453), - [anon_sym_infix] = ACTIONS(4453), - [anon_sym_inline] = ACTIONS(4453), - [anon_sym_external] = ACTIONS(4453), - [sym_property_modifier] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_open] = ACTIONS(4453), - [anon_sym_vararg] = ACTIONS(4453), - [anon_sym_noinline] = ACTIONS(4453), - [anon_sym_crossinline] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4455), - [anon_sym_continue_AT] = ACTIONS(4455), - [anon_sym_break_AT] = ACTIONS(4455), - [anon_sym_this_AT] = ACTIONS(4455), - [anon_sym_super_AT] = ACTIONS(4455), - [sym_real_literal] = ACTIONS(4455), - [sym_integer_literal] = ACTIONS(4453), - [sym_hex_literal] = ACTIONS(4455), - [sym_bin_literal] = ACTIONS(4455), - [anon_sym_true] = ACTIONS(4453), - [anon_sym_false] = ACTIONS(4453), - [anon_sym_SQUOTE] = ACTIONS(4455), - [sym__backtick_identifier] = ACTIONS(4455), - [sym__automatic_semicolon] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4455), - }, - [1371] = { - [sym_type_constraints] = STATE(959), - [sym_enum_class_body] = STATE(1057), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [sym__string_start] = ACTIONS(295), }, - [1372] = { - [sym_function_body] = STATE(1045), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(4154), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [1353] = { + [sym_class_body] = STATE(1141), + [sym_type_constraints] = STATE(933), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, - [1373] = { - [sym_function_body] = STATE(1197), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [1354] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8974), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5588), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [1374] = { - [sym_class_body] = STATE(1130), - [sym_type_constraints] = STATE(1011), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(5598), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [1355] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5590), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), + [sym__string_start] = ACTIONS(295), }, - [1375] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1356] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8906), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5592), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5600), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -205103,197 +202071,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1376] = { - [sym_primary_constructor] = STATE(3130), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(1448), - [sym_type_constraints] = STATE(3450), - [sym_enum_class_body] = STATE(3465), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_RBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [anon_sym_DASH_GT] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [1357] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5594), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [1377] = { - [sym_primary_constructor] = STATE(3102), - [sym_class_body] = STATE(3465), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(1446), - [sym_type_constraints] = STATE(3455), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [1358] = { + [sym_primary_constructor] = STATE(4556), + [sym_class_body] = STATE(4745), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(1408), + [sym_type_constraints] = STATE(4677), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5606), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_RBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [anon_sym_DASH_GT] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(5596), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -205321,82 +202289,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [1378] = { - [sym_primary_constructor] = STATE(4676), - [sym_class_body] = STATE(4944), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(1424), - [sym_type_constraints] = STATE(4792), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), + [1359] = { + [sym_primary_constructor] = STATE(4553), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(1405), + [sym_type_constraints] = STATE(4626), + [sym_enum_class_body] = STATE(4745), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_COLON] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -205424,86 +202392,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [1379] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1360] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8963), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5602), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5610), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -205515,98 +202483,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1380] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1361] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5604), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5612), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -205618,98 +202586,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1381] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9097), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1362] = { + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), + }, + [1363] = { + [sym_class_body] = STATE(1180), + [sym_type_constraints] = STATE(945), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [1364] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5606), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5614), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -205721,98 +202895,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1382] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1365] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5608), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5616), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -205824,98 +202998,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1383] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1366] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9045), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5610), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5618), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -205927,304 +203101,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1384] = { - [sym_primary_constructor] = STATE(3137), - [sym_class_body] = STATE(3457), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(1436), - [sym_type_constraints] = STATE(3452), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5620), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_RBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3250), - [anon_sym_RPAREN] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3246), - [anon_sym_DASH_GT] = ACTIONS(3250), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_PLUS_EQ] = ACTIONS(3250), - [anon_sym_DASH_EQ] = ACTIONS(3250), - [anon_sym_STAR_EQ] = ACTIONS(3250), - [anon_sym_SLASH_EQ] = ACTIONS(3250), - [anon_sym_PERCENT_EQ] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), - [sym_multiline_comment] = ACTIONS(3), + [1367] = { + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [1385] = { - [sym_primary_constructor] = STATE(4674), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(1442), - [sym_type_constraints] = STATE(4794), - [sym_enum_class_body] = STATE(4944), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5622), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [1368] = { + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [1369] = { + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [1386] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1370] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5612), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5624), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -206236,98 +203513,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1387] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1371] = { + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [1372] = { + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [1373] = { + [sym_function_body] = STATE(1085), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), + }, + [1374] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5614), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5626), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -206339,98 +203925,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1388] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9300), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1375] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5616), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5628), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -206442,98 +204028,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1389] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9350), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1376] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9028), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5618), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5630), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -206545,98 +204131,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1390] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1377] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5620), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5632), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -206648,201 +204234,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1391] = { - [sym_primary_constructor] = STATE(3120), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(1449), - [sym_type_constraints] = STATE(3426), - [sym_enum_class_body] = STATE(3571), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [1392] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1378] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5622), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5636), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -206854,98 +204337,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1393] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9284), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1379] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5624), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5638), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -206957,98 +204440,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1394] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9113), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1380] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9006), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5626), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5640), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -207060,304 +204543,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1395] = { - [sym_class_body] = STATE(1200), - [sym_type_constraints] = STATE(1002), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [1396] = { - [sym_function_body] = STATE(1155), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4339), - [anon_sym_object] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_this] = ACTIONS(4339), - [anon_sym_super] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [sym_label] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [anon_sym_try] = ACTIONS(4339), - [anon_sym_throw] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4341), - [anon_sym_continue_AT] = ACTIONS(4341), - [anon_sym_break_AT] = ACTIONS(4341), - [anon_sym_this_AT] = ACTIONS(4341), - [anon_sym_super_AT] = ACTIONS(4341), - [sym_real_literal] = ACTIONS(4341), - [sym_integer_literal] = ACTIONS(4339), - [sym_hex_literal] = ACTIONS(4341), - [sym_bin_literal] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4339), - [anon_sym_false] = ACTIONS(4339), - [anon_sym_SQUOTE] = ACTIONS(4341), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4341), + [sym__string_start] = ACTIONS(295), }, - [1397] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1381] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5628), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5642), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -207369,510 +204646,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1398] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_RBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(5644), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4239), - [anon_sym_DASH_GT] = ACTIONS(4242), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_while] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [1399] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RPAREN] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4350), - [anon_sym_DASH_GT] = ACTIONS(4353), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_while] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [1400] = { - [sym_function_body] = STATE(1043), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_where] = ACTIONS(4530), - [anon_sym_object] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_this] = ACTIONS(4530), - [anon_sym_super] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4532), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_null] = ACTIONS(4530), - [anon_sym_if] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_when] = ACTIONS(4530), - [anon_sym_try] = ACTIONS(4530), - [anon_sym_throw] = ACTIONS(4530), - [anon_sym_return] = ACTIONS(4530), - [anon_sym_continue] = ACTIONS(4530), - [anon_sym_break] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4532), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4530), - [anon_sym_sealed] = ACTIONS(4530), - [anon_sym_annotation] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_override] = ACTIONS(4530), - [anon_sym_lateinit] = ACTIONS(4530), - [anon_sym_public] = ACTIONS(4530), - [anon_sym_private] = ACTIONS(4530), - [anon_sym_internal] = ACTIONS(4530), - [anon_sym_protected] = ACTIONS(4530), - [anon_sym_tailrec] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_infix] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym_external] = ACTIONS(4530), - [sym_property_modifier] = ACTIONS(4530), - [anon_sym_abstract] = ACTIONS(4530), - [anon_sym_final] = ACTIONS(4530), - [anon_sym_open] = ACTIONS(4530), - [anon_sym_vararg] = ACTIONS(4530), - [anon_sym_noinline] = ACTIONS(4530), - [anon_sym_crossinline] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4532), - [anon_sym_continue_AT] = ACTIONS(4532), - [anon_sym_break_AT] = ACTIONS(4532), - [anon_sym_this_AT] = ACTIONS(4532), - [anon_sym_super_AT] = ACTIONS(4532), - [sym_real_literal] = ACTIONS(4532), - [sym_integer_literal] = ACTIONS(4530), - [sym_hex_literal] = ACTIONS(4532), - [sym_bin_literal] = ACTIONS(4532), - [anon_sym_true] = ACTIONS(4530), - [anon_sym_false] = ACTIONS(4530), - [anon_sym_SQUOTE] = ACTIONS(4532), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4532), - }, - [1401] = { - [sym_function_body] = STATE(1135), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_fun] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_COMMA] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_where] = ACTIONS(4518), - [anon_sym_object] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_this] = ACTIONS(4518), - [anon_sym_super] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [sym_label] = ACTIONS(4518), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_null] = ACTIONS(4518), - [anon_sym_if] = ACTIONS(4518), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_when] = ACTIONS(4518), - [anon_sym_try] = ACTIONS(4518), - [anon_sym_throw] = ACTIONS(4518), - [anon_sym_return] = ACTIONS(4518), - [anon_sym_continue] = ACTIONS(4518), - [anon_sym_break] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4518), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_suspend] = ACTIONS(4518), - [anon_sym_sealed] = ACTIONS(4518), - [anon_sym_annotation] = ACTIONS(4518), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_override] = ACTIONS(4518), - [anon_sym_lateinit] = ACTIONS(4518), - [anon_sym_public] = ACTIONS(4518), - [anon_sym_private] = ACTIONS(4518), - [anon_sym_internal] = ACTIONS(4518), - [anon_sym_protected] = ACTIONS(4518), - [anon_sym_tailrec] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_infix] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym_external] = ACTIONS(4518), - [sym_property_modifier] = ACTIONS(4518), - [anon_sym_abstract] = ACTIONS(4518), - [anon_sym_final] = ACTIONS(4518), - [anon_sym_open] = ACTIONS(4518), - [anon_sym_vararg] = ACTIONS(4518), - [anon_sym_noinline] = ACTIONS(4518), - [anon_sym_crossinline] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4520), - [anon_sym_continue_AT] = ACTIONS(4520), - [anon_sym_break_AT] = ACTIONS(4520), - [anon_sym_this_AT] = ACTIONS(4520), - [anon_sym_super_AT] = ACTIONS(4520), - [sym_real_literal] = ACTIONS(4520), - [sym_integer_literal] = ACTIONS(4518), - [sym_hex_literal] = ACTIONS(4520), - [sym_bin_literal] = ACTIONS(4520), - [anon_sym_true] = ACTIONS(4518), - [anon_sym_false] = ACTIONS(4518), - [anon_sym_SQUOTE] = ACTIONS(4520), - [sym__backtick_identifier] = ACTIONS(4520), - [sym__automatic_semicolon] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4520), + [sym__string_start] = ACTIONS(295), }, - [1402] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [1382] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5630), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5652), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -207884,300 +204749,706 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1403] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9237), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5654), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1383] = { + [sym_primary_constructor] = STATE(4565), + [sym_class_body] = STATE(4812), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(1402), + [sym_type_constraints] = STATE(4660), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5632), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_DASH_GT] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [1404] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5656), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1384] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [1405] = { - [sym_primary_constructor] = STATE(4690), - [sym_class_body] = STATE(4993), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(1462), - [sym_type_constraints] = STATE(4813), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), + [1385] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1386] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1387] = { + [sym_class_body] = STATE(1137), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), + }, + [1388] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1389] = { + [sym_primary_constructor] = STATE(3000), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5658), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_RBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3250), - [anon_sym_RPAREN] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3246), - [anon_sym_DASH_GT] = ACTIONS(3250), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_PLUS_EQ] = ACTIONS(3250), - [anon_sym_DASH_EQ] = ACTIONS(3250), - [anon_sym_STAR_EQ] = ACTIONS(3250), - [anon_sym_SLASH_EQ] = ACTIONS(3250), - [anon_sym_PERCENT_EQ] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(5636), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -208205,704 +205476,2329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, - [1406] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5660), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1390] = { + [sym_type_constraints] = STATE(935), + [sym_enum_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [1391] = { + [sym_class_body] = STATE(1068), + [sym_type_constraints] = STATE(969), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [1392] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [1407] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5662), - [anon_sym_object] = ACTIONS(1840), + [1393] = { + [sym_class_body] = STATE(1043), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(5640), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), + }, + [1394] = { + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), + }, + [1395] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1396] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3123), + [anon_sym_STAR_EQ] = ACTIONS(3123), + [anon_sym_SLASH_EQ] = ACTIONS(3123), + [anon_sym_PERCENT_EQ] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3121), + [anon_sym_sealed] = ACTIONS(3121), + [anon_sym_annotation] = ACTIONS(3121), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_lateinit] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_internal] = ACTIONS(3121), + [anon_sym_protected] = ACTIONS(3121), + [anon_sym_tailrec] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_infix] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_external] = ACTIONS(3121), + [sym_property_modifier] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_final] = ACTIONS(3121), + [anon_sym_open] = ACTIONS(3121), + [anon_sym_vararg] = ACTIONS(3121), + [anon_sym_noinline] = ACTIONS(3121), + [anon_sym_crossinline] = ACTIONS(3121), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3123), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1397] = { + [sym_value_arguments] = STATE(1170), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(5644), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), + }, + [1398] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1399] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1400] = { + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(5646), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(5649), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1408] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5664), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1401] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [1409] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9130), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5666), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1402] = { + [sym_primary_constructor] = STATE(4552), + [sym_class_body] = STATE(4759), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4624), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5651), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [1410] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5668), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1403] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [1411] = { - [sym_type_constraints] = STATE(1507), - [sym_function_body] = STATE(1153), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), + [1404] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), + }, + [1405] = { + [sym_primary_constructor] = STATE(4557), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4659), + [sym_enum_class_body] = STATE(4748), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5653), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [1406] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1407] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1408] = { + [sym_primary_constructor] = STATE(4558), + [sym_class_body] = STATE(4748), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4621), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5655), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [1409] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1410] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1411] = { + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, [1412] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(5670), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -208914,611 +207810,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, [1413] = { - [sym_type_constraints] = STATE(1014), - [sym_enum_class_body] = STATE(1130), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(5672), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3171), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3173), + [anon_sym_DASH_EQ] = ACTIONS(3173), + [anon_sym_STAR_EQ] = ACTIONS(3173), + [anon_sym_SLASH_EQ] = ACTIONS(3173), + [anon_sym_PERCENT_EQ] = ACTIONS(3173), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3173), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), }, [1414] = { - [sym__expression] = STATE(4550), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(1416), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8688), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(5674), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1415] = { - [sym_type_constraints] = STATE(975), - [sym_enum_class_body] = STATE(1200), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), + [sym_type_constraints] = STATE(947), + [sym_enum_class_body] = STATE(1148), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [1416] = { - [sym__expression] = STATE(4377), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_val] = ACTIONS(5679), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [1417] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3116), + [1415] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_where] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3116), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3116), - [anon_sym_sealed] = ACTIONS(3116), - [anon_sym_annotation] = ACTIONS(3116), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_lateinit] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_internal] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_tailrec] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_infix] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym_external] = ACTIONS(3116), - [sym_property_modifier] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_final] = ACTIONS(3116), - [anon_sym_open] = ACTIONS(3116), - [anon_sym_vararg] = ACTIONS(3116), - [anon_sym_noinline] = ACTIONS(3116), - [anon_sym_crossinline] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1418] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), + [1416] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), [anon_sym_EQ] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_COMMA] = ACTIONS(3103), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), + [anon_sym_GT] = ACTIONS(3658), [anon_sym_where] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3692), + [anon_sym_DOT] = ACTIONS(3660), [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_COLON_COLON] = ACTIONS(3682), [anon_sym_PLUS_EQ] = ACTIONS(3103), [anon_sym_DASH_EQ] = ACTIONS(3103), [anon_sym_STAR_EQ] = ACTIONS(3103), [anon_sym_SLASH_EQ] = ACTIONS(3103), [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(3101), [anon_sym_sealed] = ACTIONS(3101), [anon_sym_annotation] = ACTIONS(3101), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), [anon_sym_override] = ACTIONS(3101), [anon_sym_lateinit] = ACTIONS(3101), [anon_sym_public] = ACTIONS(3101), @@ -209537,191 +208226,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3101), [anon_sym_noinline] = ACTIONS(3101), [anon_sym_crossinline] = ACTIONS(3101), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(3103), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1419] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(3172), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3174), - [anon_sym_DASH_EQ] = ACTIONS(3174), - [anon_sym_STAR_EQ] = ACTIONS(3174), - [anon_sym_SLASH_EQ] = ACTIONS(3174), - [anon_sym_PERCENT_EQ] = ACTIONS(3174), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3172), - [anon_sym_sealed] = ACTIONS(3172), - [anon_sym_annotation] = ACTIONS(3172), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_lateinit] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_internal] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_tailrec] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_infix] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym_external] = ACTIONS(3172), - [sym_property_modifier] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_final] = ACTIONS(3172), - [anon_sym_open] = ACTIONS(3172), - [anon_sym_vararg] = ACTIONS(3172), - [anon_sym_noinline] = ACTIONS(3172), - [anon_sym_crossinline] = ACTIONS(3172), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3174), - [sym_safe_nav] = ACTIONS(3714), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1420] = { - [sym_variable_declaration] = STATE(9192), - [sym__expression] = STATE(4579), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5818), + [1417] = { + [sym_variable_declaration] = STATE(8857), + [sym__expression] = STATE(4468), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5667), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -209733,399 +208320,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1421] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(3192), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3194), - [anon_sym_DASH_EQ] = ACTIONS(3194), - [anon_sym_STAR_EQ] = ACTIONS(3194), - [anon_sym_SLASH_EQ] = ACTIONS(3194), - [anon_sym_PERCENT_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3192), - [anon_sym_sealed] = ACTIONS(3192), - [anon_sym_annotation] = ACTIONS(3192), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_lateinit] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_internal] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_tailrec] = ACTIONS(3192), - [anon_sym_operator] = ACTIONS(3192), - [anon_sym_infix] = ACTIONS(3192), - [anon_sym_inline] = ACTIONS(3192), - [anon_sym_external] = ACTIONS(3192), - [sym_property_modifier] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_final] = ACTIONS(3192), - [anon_sym_open] = ACTIONS(3192), - [anon_sym_vararg] = ACTIONS(3192), - [anon_sym_noinline] = ACTIONS(3192), - [anon_sym_crossinline] = ACTIONS(3192), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1422] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1423] = { - [sym_type_constraints] = STATE(1014), - [sym_enum_class_body] = STATE(1130), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(5681), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), + [sym__string_start] = ACTIONS(295), }, - [1424] = { - [sym_primary_constructor] = STATE(4672), - [sym_class_body] = STATE(4840), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4809), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [1418] = { + [sym_primary_constructor] = STATE(4562), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4694), + [sym_enum_class_body] = STATE(4786), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5683), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_DASH_GT] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -210153,944 +208434,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [1425] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3170), - [anon_sym_DASH_EQ] = ACTIONS(3170), - [anon_sym_STAR_EQ] = ACTIONS(3170), - [anon_sym_SLASH_EQ] = ACTIONS(3170), - [anon_sym_PERCENT_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3168), - [anon_sym_sealed] = ACTIONS(3168), - [anon_sym_annotation] = ACTIONS(3168), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_lateinit] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_internal] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_tailrec] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_infix] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym_external] = ACTIONS(3168), - [sym_property_modifier] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_final] = ACTIONS(3168), - [anon_sym_open] = ACTIONS(3168), - [anon_sym_vararg] = ACTIONS(3168), - [anon_sym_noinline] = ACTIONS(3168), - [anon_sym_crossinline] = ACTIONS(3168), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1426] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1427] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_STAR_EQ] = ACTIONS(3125), - [anon_sym_SLASH_EQ] = ACTIONS(3125), - [anon_sym_PERCENT_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3123), - [anon_sym_sealed] = ACTIONS(3123), - [anon_sym_annotation] = ACTIONS(3123), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_lateinit] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_tailrec] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3123), - [sym_property_modifier] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_vararg] = ACTIONS(3123), - [anon_sym_noinline] = ACTIONS(3123), - [anon_sym_crossinline] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1428] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_STAR_EQ] = ACTIONS(3158), - [anon_sym_SLASH_EQ] = ACTIONS(3158), - [anon_sym_PERCENT_EQ] = ACTIONS(3158), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3156), - [anon_sym_sealed] = ACTIONS(3156), - [anon_sym_annotation] = ACTIONS(3156), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_lateinit] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_internal] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_tailrec] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_infix] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym_external] = ACTIONS(3156), - [sym_property_modifier] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_final] = ACTIONS(3156), - [anon_sym_open] = ACTIONS(3156), - [anon_sym_vararg] = ACTIONS(3156), - [anon_sym_noinline] = ACTIONS(3156), - [anon_sym_crossinline] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1429] = { - [sym_class_body] = STATE(1130), - [sym_type_constraints] = STATE(1011), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(5685), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), - }, - [1430] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_annotation] = ACTIONS(3130), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_lateinit] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_tailrec] = ACTIONS(3130), - [anon_sym_operator] = ACTIONS(3130), - [anon_sym_infix] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_external] = ACTIONS(3130), - [sym_property_modifier] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3130), - [anon_sym_noinline] = ACTIONS(3130), - [anon_sym_crossinline] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1431] = { - [sym_type_constraints] = STATE(975), - [sym_enum_class_body] = STATE(1200), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3592), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [1432] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3105), - [anon_sym_sealed] = ACTIONS(3105), - [anon_sym_annotation] = ACTIONS(3105), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3105), - [anon_sym_lateinit] = ACTIONS(3105), - [anon_sym_public] = ACTIONS(3105), - [anon_sym_private] = ACTIONS(3105), - [anon_sym_internal] = ACTIONS(3105), - [anon_sym_protected] = ACTIONS(3105), - [anon_sym_tailrec] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_infix] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym_external] = ACTIONS(3105), - [sym_property_modifier] = ACTIONS(3105), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_final] = ACTIONS(3105), - [anon_sym_open] = ACTIONS(3105), - [anon_sym_vararg] = ACTIONS(3105), - [anon_sym_noinline] = ACTIONS(3105), - [anon_sym_crossinline] = ACTIONS(3105), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1433] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3188), - [anon_sym_sealed] = ACTIONS(3188), - [anon_sym_annotation] = ACTIONS(3188), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_lateinit] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_internal] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_tailrec] = ACTIONS(3188), - [anon_sym_operator] = ACTIONS(3188), - [anon_sym_infix] = ACTIONS(3188), - [anon_sym_inline] = ACTIONS(3188), - [anon_sym_external] = ACTIONS(3188), - [sym_property_modifier] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_final] = ACTIONS(3188), - [anon_sym_open] = ACTIONS(3188), - [anon_sym_vararg] = ACTIONS(3188), - [anon_sym_noinline] = ACTIONS(3188), - [anon_sym_crossinline] = ACTIONS(3188), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3714), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, - [1434] = { - [sym_class_body] = STATE(1203), - [sym_type_constraints] = STATE(1034), + [1419] = { + [sym_function_body] = STATE(1048), + [sym__block] = STATE(1129), [sym__alpha_identifier] = ACTIONS(4275), [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(5687), + [anon_sym_COLON] = ACTIONS(5661), [anon_sym_LBRACK] = ACTIONS(4277), [anon_sym_as] = ACTIONS(4275), - [anon_sym_fun] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), [anon_sym_RBRACE] = ACTIONS(4277), [anon_sym_LPAREN] = ACTIONS(4277), [anon_sym_LT] = ACTIONS(4275), [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), [anon_sym_DOT] = ACTIONS(4275), [anon_sym_SEMI] = ACTIONS(4277), [anon_sym_get] = ACTIONS(4275), @@ -211177,179 +208540,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4277), }, - [1435] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_where] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), + [1420] = { + [sym_class_body] = STATE(1180), + [sym_type_constraints] = STATE(945), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, - [1436] = { - [sym_primary_constructor] = STATE(3094), - [sym_class_body] = STATE(3466), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3357), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), + [1421] = { + [sym_primary_constructor] = STATE(2980), + [sym_class_body] = STATE(3539), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3280), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5689), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -211377,591 +208740,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [1437] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3097), - [anon_sym_sealed] = ACTIONS(3097), - [anon_sym_annotation] = ACTIONS(3097), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3097), - [anon_sym_lateinit] = ACTIONS(3097), - [anon_sym_public] = ACTIONS(3097), - [anon_sym_private] = ACTIONS(3097), - [anon_sym_internal] = ACTIONS(3097), - [anon_sym_protected] = ACTIONS(3097), - [anon_sym_tailrec] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_infix] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym_external] = ACTIONS(3097), - [sym_property_modifier] = ACTIONS(3097), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_final] = ACTIONS(3097), - [anon_sym_open] = ACTIONS(3097), - [anon_sym_vararg] = ACTIONS(3097), - [anon_sym_noinline] = ACTIONS(3097), - [anon_sym_crossinline] = ACTIONS(3097), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1422] = { + [sym_primary_constructor] = STATE(2991), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5665), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), - [sym_safe_nav] = ACTIONS(3714), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [1438] = { - [sym_function_body] = STATE(1083), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(5691), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_object] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_this] = ACTIONS(4269), - [anon_sym_super] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4271), - [sym_label] = ACTIONS(4269), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_null] = ACTIONS(4269), - [anon_sym_if] = ACTIONS(4269), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_when] = ACTIONS(4269), - [anon_sym_try] = ACTIONS(4269), - [anon_sym_throw] = ACTIONS(4269), - [anon_sym_return] = ACTIONS(4269), - [anon_sym_continue] = ACTIONS(4269), - [anon_sym_break] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4269), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_suspend] = ACTIONS(4269), - [anon_sym_sealed] = ACTIONS(4269), - [anon_sym_annotation] = ACTIONS(4269), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_override] = ACTIONS(4269), - [anon_sym_lateinit] = ACTIONS(4269), - [anon_sym_public] = ACTIONS(4269), - [anon_sym_private] = ACTIONS(4269), - [anon_sym_internal] = ACTIONS(4269), - [anon_sym_protected] = ACTIONS(4269), - [anon_sym_tailrec] = ACTIONS(4269), - [anon_sym_operator] = ACTIONS(4269), - [anon_sym_infix] = ACTIONS(4269), - [anon_sym_inline] = ACTIONS(4269), - [anon_sym_external] = ACTIONS(4269), - [sym_property_modifier] = ACTIONS(4269), - [anon_sym_abstract] = ACTIONS(4269), - [anon_sym_final] = ACTIONS(4269), - [anon_sym_open] = ACTIONS(4269), - [anon_sym_vararg] = ACTIONS(4269), - [anon_sym_noinline] = ACTIONS(4269), - [anon_sym_crossinline] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4271), - [anon_sym_continue_AT] = ACTIONS(4271), - [anon_sym_break_AT] = ACTIONS(4271), - [anon_sym_this_AT] = ACTIONS(4271), - [anon_sym_super_AT] = ACTIONS(4271), - [sym_real_literal] = ACTIONS(4271), - [sym_integer_literal] = ACTIONS(4269), - [sym_hex_literal] = ACTIONS(4271), - [sym_bin_literal] = ACTIONS(4271), - [anon_sym_true] = ACTIONS(4269), - [anon_sym_false] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4271), - [sym__backtick_identifier] = ACTIONS(4271), - [sym__automatic_semicolon] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4271), - }, - [1439] = { - [sym_value_arguments] = STATE(1103), - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_fun] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(5693), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_object] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_this] = ACTIONS(4435), - [anon_sym_super] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4437), - [sym_label] = ACTIONS(4435), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_null] = ACTIONS(4435), - [anon_sym_if] = ACTIONS(4435), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_when] = ACTIONS(4435), - [anon_sym_try] = ACTIONS(4435), - [anon_sym_throw] = ACTIONS(4435), - [anon_sym_return] = ACTIONS(4435), - [anon_sym_continue] = ACTIONS(4435), - [anon_sym_break] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4437), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4435), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_suspend] = ACTIONS(4435), - [anon_sym_sealed] = ACTIONS(4435), - [anon_sym_annotation] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_override] = ACTIONS(4435), - [anon_sym_lateinit] = ACTIONS(4435), - [anon_sym_public] = ACTIONS(4435), - [anon_sym_private] = ACTIONS(4435), - [anon_sym_internal] = ACTIONS(4435), - [anon_sym_protected] = ACTIONS(4435), - [anon_sym_tailrec] = ACTIONS(4435), - [anon_sym_operator] = ACTIONS(4435), - [anon_sym_infix] = ACTIONS(4435), - [anon_sym_inline] = ACTIONS(4435), - [anon_sym_external] = ACTIONS(4435), - [sym_property_modifier] = ACTIONS(4435), - [anon_sym_abstract] = ACTIONS(4435), - [anon_sym_final] = ACTIONS(4435), - [anon_sym_open] = ACTIONS(4435), - [anon_sym_vararg] = ACTIONS(4435), - [anon_sym_noinline] = ACTIONS(4435), - [anon_sym_crossinline] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4437), - [anon_sym_continue_AT] = ACTIONS(4437), - [anon_sym_break_AT] = ACTIONS(4437), - [anon_sym_this_AT] = ACTIONS(4437), - [anon_sym_super_AT] = ACTIONS(4437), - [sym_real_literal] = ACTIONS(4437), - [sym_integer_literal] = ACTIONS(4435), - [sym_hex_literal] = ACTIONS(4437), - [sym_bin_literal] = ACTIONS(4437), - [anon_sym_true] = ACTIONS(4435), - [anon_sym_false] = ACTIONS(4435), - [anon_sym_SQUOTE] = ACTIONS(4437), - [sym__backtick_identifier] = ACTIONS(4437), - [sym__automatic_semicolon] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4437), - }, - [1440] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3109), - [anon_sym_sealed] = ACTIONS(3109), - [anon_sym_annotation] = ACTIONS(3109), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_lateinit] = ACTIONS(3109), - [anon_sym_public] = ACTIONS(3109), - [anon_sym_private] = ACTIONS(3109), - [anon_sym_internal] = ACTIONS(3109), - [anon_sym_protected] = ACTIONS(3109), - [anon_sym_tailrec] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_infix] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym_external] = ACTIONS(3109), - [sym_property_modifier] = ACTIONS(3109), - [anon_sym_abstract] = ACTIONS(3109), - [anon_sym_final] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_vararg] = ACTIONS(3109), - [anon_sym_noinline] = ACTIONS(3109), - [anon_sym_crossinline] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), + [1423] = { + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [1441] = { - [sym_class_body] = STATE(1148), - [sym_type_constraints] = STATE(958), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3568), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), + [1424] = { + [sym_class_body] = STATE(1141), + [sym_type_constraints] = STATE(933), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(5667), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, - [1442] = { - [sym_primary_constructor] = STATE(4669), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4740), - [sym_enum_class_body] = STATE(4840), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [1425] = { + [sym_primary_constructor] = STATE(2984), + [sym_class_body] = STATE(3565), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3329), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5695), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_DASH_GT] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(5669), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -211989,2066 +209148,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [1443] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3145), - [anon_sym_sealed] = ACTIONS(3145), - [anon_sym_annotation] = ACTIONS(3145), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_lateinit] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_tailrec] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym_external] = ACTIONS(3145), - [sym_property_modifier] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_vararg] = ACTIONS(3145), - [anon_sym_noinline] = ACTIONS(3145), - [anon_sym_crossinline] = ACTIONS(3145), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), - [sym_safe_nav] = ACTIONS(3714), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [1444] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1445] = { - [sym_class_body] = STATE(1132), - [sym__alpha_identifier] = ACTIONS(4443), - [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(5697), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_as] = ACTIONS(4443), - [anon_sym_fun] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4443), - [anon_sym_GT] = ACTIONS(4443), - [anon_sym_where] = ACTIONS(4443), - [anon_sym_object] = ACTIONS(4443), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4445), - [anon_sym_get] = ACTIONS(4443), - [anon_sym_set] = ACTIONS(4443), - [anon_sym_this] = ACTIONS(4443), - [anon_sym_super] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4445), - [sym_label] = ACTIONS(4443), - [anon_sym_in] = ACTIONS(4443), - [anon_sym_DOT_DOT] = ACTIONS(4445), - [anon_sym_QMARK_COLON] = ACTIONS(4445), - [anon_sym_AMP_AMP] = ACTIONS(4445), - [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), - [anon_sym_if] = ACTIONS(4443), - [anon_sym_else] = ACTIONS(4443), - [anon_sym_when] = ACTIONS(4443), - [anon_sym_try] = ACTIONS(4443), - [anon_sym_throw] = ACTIONS(4443), - [anon_sym_return] = ACTIONS(4443), - [anon_sym_continue] = ACTIONS(4443), - [anon_sym_break] = ACTIONS(4443), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_BANG_EQ] = ACTIONS(4443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), - [anon_sym_EQ_EQ] = ACTIONS(4443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), - [anon_sym_LT_EQ] = ACTIONS(4445), - [anon_sym_GT_EQ] = ACTIONS(4445), - [anon_sym_BANGin] = ACTIONS(4445), - [anon_sym_is] = ACTIONS(4443), - [anon_sym_BANGis] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_SLASH] = ACTIONS(4443), - [anon_sym_PERCENT] = ACTIONS(4445), - [anon_sym_as_QMARK] = ACTIONS(4445), - [anon_sym_PLUS_PLUS] = ACTIONS(4445), - [anon_sym_DASH_DASH] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4443), - [anon_sym_BANG_BANG] = ACTIONS(4445), - [anon_sym_suspend] = ACTIONS(4443), - [anon_sym_sealed] = ACTIONS(4443), - [anon_sym_annotation] = ACTIONS(4443), - [anon_sym_data] = ACTIONS(4443), - [anon_sym_inner] = ACTIONS(4443), - [anon_sym_value] = ACTIONS(4443), - [anon_sym_override] = ACTIONS(4443), - [anon_sym_lateinit] = ACTIONS(4443), - [anon_sym_public] = ACTIONS(4443), - [anon_sym_private] = ACTIONS(4443), - [anon_sym_internal] = ACTIONS(4443), - [anon_sym_protected] = ACTIONS(4443), - [anon_sym_tailrec] = ACTIONS(4443), - [anon_sym_operator] = ACTIONS(4443), - [anon_sym_infix] = ACTIONS(4443), - [anon_sym_inline] = ACTIONS(4443), - [anon_sym_external] = ACTIONS(4443), - [sym_property_modifier] = ACTIONS(4443), - [anon_sym_abstract] = ACTIONS(4443), - [anon_sym_final] = ACTIONS(4443), - [anon_sym_open] = ACTIONS(4443), - [anon_sym_vararg] = ACTIONS(4443), - [anon_sym_noinline] = ACTIONS(4443), - [anon_sym_crossinline] = ACTIONS(4443), - [anon_sym_expect] = ACTIONS(4443), - [anon_sym_actual] = ACTIONS(4443), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4445), - [anon_sym_continue_AT] = ACTIONS(4445), - [anon_sym_break_AT] = ACTIONS(4445), - [anon_sym_this_AT] = ACTIONS(4445), - [anon_sym_super_AT] = ACTIONS(4445), - [sym_real_literal] = ACTIONS(4445), - [sym_integer_literal] = ACTIONS(4443), - [sym_hex_literal] = ACTIONS(4445), - [sym_bin_literal] = ACTIONS(4445), - [anon_sym_true] = ACTIONS(4443), - [anon_sym_false] = ACTIONS(4443), - [anon_sym_SQUOTE] = ACTIONS(4445), - [sym__backtick_identifier] = ACTIONS(4445), - [sym__automatic_semicolon] = ACTIONS(4445), - [sym_safe_nav] = ACTIONS(4445), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4445), - }, - [1446] = { - [sym_primary_constructor] = STATE(3133), - [sym_class_body] = STATE(3500), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3439), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5699), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_DASH_GT] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - }, - [1447] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_where] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3149), - [anon_sym_sealed] = ACTIONS(3149), - [anon_sym_annotation] = ACTIONS(3149), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3149), - [anon_sym_lateinit] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_internal] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_tailrec] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_infix] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym_external] = ACTIONS(3149), - [sym_property_modifier] = ACTIONS(3149), - [anon_sym_abstract] = ACTIONS(3149), - [anon_sym_final] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_vararg] = ACTIONS(3149), - [anon_sym_noinline] = ACTIONS(3149), - [anon_sym_crossinline] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1448] = { - [sym_primary_constructor] = STATE(3109), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3435), - [sym_enum_class_body] = STATE(3500), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5701), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_DASH_GT] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - }, - [1449] = { - [sym_primary_constructor] = STATE(3118), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3408), - [sym_enum_class_body] = STATE(3597), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5703), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_DASH_GT] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [1450] = { - [sym_primary_constructor] = STATE(3113), - [sym_class_body] = STATE(3597), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3409), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5705), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_DASH_GT] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [1451] = { - [sym_type_constraints] = STATE(1035), - [sym_enum_class_body] = STATE(1127), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(5707), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), - }, - [1452] = { - [sym_class_body] = STATE(1207), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(5709), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), - }, - [1453] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(2045), - [sym__comparison_operator] = STATE(2046), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(2048), - [sym__multiplicative_operator] = STATE(2049), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2063), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_where] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3700), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_QMARK_COLON] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3186), - [anon_sym_DASH_EQ] = ACTIONS(3186), - [anon_sym_STAR_EQ] = ACTIONS(3186), - [anon_sym_SLASH_EQ] = ACTIONS(3186), - [anon_sym_PERCENT_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3718), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3718), - [anon_sym_LT_EQ] = ACTIONS(3720), - [anon_sym_GT_EQ] = ACTIONS(3720), - [anon_sym_BANGin] = ACTIONS(3722), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3184), - [anon_sym_sealed] = ACTIONS(3184), - [anon_sym_annotation] = ACTIONS(3184), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_lateinit] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_internal] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_tailrec] = ACTIONS(3184), - [anon_sym_operator] = ACTIONS(3184), - [anon_sym_infix] = ACTIONS(3184), - [anon_sym_inline] = ACTIONS(3184), - [anon_sym_external] = ACTIONS(3184), - [sym_property_modifier] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_final] = ACTIONS(3184), - [anon_sym_open] = ACTIONS(3184), - [anon_sym_vararg] = ACTIONS(3184), - [anon_sym_noinline] = ACTIONS(3184), - [anon_sym_crossinline] = ACTIONS(3184), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3186), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [1454] = { - [sym_function_body] = STATE(1155), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(5711), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_object] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_this] = ACTIONS(4339), - [anon_sym_super] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [sym_label] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [anon_sym_try] = ACTIONS(4339), - [anon_sym_throw] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4341), - [anon_sym_continue_AT] = ACTIONS(4341), - [anon_sym_break_AT] = ACTIONS(4341), - [anon_sym_this_AT] = ACTIONS(4341), - [anon_sym_super_AT] = ACTIONS(4341), - [sym_real_literal] = ACTIONS(4341), - [sym_integer_literal] = ACTIONS(4339), - [sym_hex_literal] = ACTIONS(4341), - [sym_bin_literal] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4339), - [anon_sym_false] = ACTIONS(4339), - [anon_sym_SQUOTE] = ACTIONS(4341), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4341), - }, - [1455] = { - [sym_primary_constructor] = STATE(4677), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4781), - [sym_enum_class_body] = STATE(4975), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5713), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_DASH_GT] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - }, - [1456] = { - [sym_type_constraints] = STATE(959), - [sym_enum_class_body] = STATE(1057), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), - }, - [1457] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym_value_argument] = STATE(9520), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2155), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5824), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5502), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1458] = { - [sym_primary_constructor] = STATE(4678), - [sym_class_body] = STATE(4975), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4769), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5715), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_DASH_GT] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - }, - [1459] = { - [sym_class_body] = STATE(1127), - [sym_type_constraints] = STATE(984), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(5717), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), - }, - [1460] = { - [sym_class_body] = STATE(1200), - [sym_type_constraints] = STATE(1002), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3562), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [1461] = { - [sym_class_body] = STATE(1057), - [sym_type_constraints] = STATE(998), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), - }, - [1462] = { - [sym_primary_constructor] = STATE(4687), - [sym_class_body] = STATE(4873), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4750), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5719), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [1463] = { - [sym_function_body] = STATE(1202), - [sym__block] = STATE(1092), + [1426] = { + [sym_type_constraints] = STATE(990), + [sym_enum_class_body] = STATE(1133), [sym__alpha_identifier] = ACTIONS(4321), [anon_sym_AT] = ACTIONS(4323), - [anon_sym_COLON] = ACTIONS(5721), + [anon_sym_COLON] = ACTIONS(5671), [anon_sym_LBRACK] = ACTIONS(4323), [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(3240), [anon_sym_RBRACE] = ACTIONS(4323), [anon_sym_LPAREN] = ACTIONS(4323), [anon_sym_LT] = ACTIONS(4321), [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), [anon_sym_DOT] = ACTIONS(4321), [anon_sym_SEMI] = ACTIONS(4323), [anon_sym_get] = ACTIONS(4321), @@ -214135,1499 +209254,2106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4323), }, - [1464] = { - [sym__expression] = STATE(286), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1427] = { + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(943), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(5673), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [1428] = { + [sym__expression] = STATE(1193), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(639), }, - [1465] = { - [sym__expression] = STATE(4217), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1429] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1466] = { - [sym__expression] = STATE(325), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1430] = { + [sym__expression] = STATE(2557), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(555), }, - [1467] = { - [sym__expression] = STATE(2650), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [1431] = { + [sym__expression] = STATE(2556), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), [anon_sym_throw] = ACTIONS(1712), [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1468] = { - [sym__expression] = STATE(1235), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [1432] = { + [sym__expression] = STATE(2551), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), [anon_sym_throw] = ACTIONS(1712), [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1469] = { - [sym__expression] = STATE(4568), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1433] = { + [sym__expression] = STATE(2550), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1434] = { + [sym__expression] = STATE(760), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1435] = { + [sym__expression] = STATE(761), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1436] = { + [sym__expression] = STATE(4361), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1470] = { - [sym__expression] = STATE(291), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [1437] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), + }, + [1438] = { + [sym__expression] = STATE(535), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1471] = { - [sym__expression] = STATE(2649), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [1439] = { + [sym__expression] = STATE(4385), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1440] = { + [sym__expression] = STATE(2548), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), [anon_sym_throw] = ACTIONS(1712), [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1472] = { - [sym__expression] = STATE(2648), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [1441] = { + [sym__expression] = STATE(2547), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), [anon_sym_throw] = ACTIONS(1712), [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1473] = { - [sym__expression] = STATE(2647), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [1442] = { + [sym__expression] = STATE(2546), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), [anon_sym_throw] = ACTIONS(1712), [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1474] = { - [sym__expression] = STATE(2646), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [1443] = { + [sym__expression] = STATE(2545), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), [anon_sym_throw] = ACTIONS(1712), [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1475] = { - [sym__expression] = STATE(2641), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [1444] = { + [sym__expression] = STATE(2542), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), [anon_sym_throw] = ACTIONS(1712), [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1476] = { - [sym__expression] = STATE(533), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(555), }, - [1477] = { - [sym__expression] = STATE(2639), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [1445] = { + [sym__expression] = STATE(4381), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5701), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1446] = { + [sym__expression] = STATE(2539), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), [anon_sym_throw] = ACTIONS(1712), [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1478] = { - [sym__expression] = STATE(2337), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), + [1447] = { + [sym__expression] = STATE(2297), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), [anon_sym_get] = ACTIONS(1910), [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), [anon_sym_data] = ACTIONS(1910), [anon_sym_inner] = ACTIONS(1910), [anon_sym_value] = ACTIONS(1910), @@ -215635,95 +211361,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(639), }, - [1479] = { - [sym__expression] = STATE(4571), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1448] = { + [sym__expression] = STATE(4408), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -215735,601 +211461,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1480] = { - [sym__expression] = STATE(2651), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1481] = { - [sym__expression] = STATE(2652), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1482] = { - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [1483] = { - [sym__expression] = STATE(2653), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [1449] = { + [sym__expression] = STATE(1190), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), [anon_sym_throw] = ACTIONS(1712), [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1484] = { - [sym__expression] = STATE(328), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(555), }, - [1485] = { - [sym__expression] = STATE(4536), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1450] = { + [sym__expression] = STATE(4406), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -216341,214 +211663,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1486] = { - [sym__expression] = STATE(4502), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1487] = { - [sym__expression] = STATE(978), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -216559,1309 +211679,905 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1488] = { - [sym__expression] = STATE(691), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1451] = { + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [1452] = { + [sym__expression] = STATE(531), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1453] = { + [sym__expression] = STATE(1086), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1489] = { - [sym__expression] = STATE(714), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1454] = { + [sym__expression] = STATE(1087), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1490] = { - [sym__expression] = STATE(285), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(555), }, - [1491] = { - [sym__expression] = STATE(2239), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1455] = { + [sym__expression] = STATE(1088), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1492] = { - [sym__expression] = STATE(969), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(555), }, - [1493] = { - [sym__expression] = STATE(1798), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [1456] = { + [sym__expression] = STATE(1089), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(555), }, - [1494] = { - [sym__expression] = STATE(712), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1457] = { + [sym__expression] = STATE(1090), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1495] = { - [sym__expression] = STATE(1078), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [1458] = { + [sym__expression] = STATE(1091), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), [anon_sym_throw] = ACTIONS(1712), [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1496] = { - [sym__expression] = STATE(1039), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1459] = { + [sym__expression] = STATE(3921), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1497] = { - [sym__expression] = STATE(4553), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1498] = { - [sym__expression] = STATE(4599), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1499] = { - [sym__expression] = STATE(4425), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1500] = { - [sym__expression] = STATE(1643), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -217872,804 +212588,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1501] = { - [sym__expression] = STATE(284), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), + [1460] = { + [sym__expression] = STATE(294), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1502] = { - [sym__expression] = STATE(711), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1503] = { - [sym__expression] = STATE(2637), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(471), }, - [1504] = { - [sym__expression] = STATE(294), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), + [1461] = { + [sym__expression] = STATE(293), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1505] = { - [sym__expression] = STATE(289), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), + [1462] = { + [sym__expression] = STATE(295), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1506] = { - [sym__expression] = STATE(4545), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1463] = { + [sym__expression] = STATE(291), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1507] = { - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), + [sym__string_start] = ACTIONS(471), }, - [1508] = { - [sym__expression] = STATE(4224), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1464] = { + [sym__expression] = STATE(2529), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -218680,989 +213093,1090 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1509] = { - [sym__expression] = STATE(292), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), + [1465] = { + [sym__expression] = STATE(289), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1510] = { - [sym__expression] = STATE(473), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [1466] = { + [sym__expression] = STATE(529), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1511] = { - [sym__expression] = STATE(4579), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1467] = { + [sym__expression] = STATE(292), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(471), }, - [1512] = { - [sym__expression] = STATE(1300), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), + [1468] = { + [sym__expression] = STATE(758), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1469] = { + [sym__expression] = STATE(331), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), [anon_sym_STAR] = ACTIONS(1019), [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), [anon_sym_PLUS] = ACTIONS(1027), [anon_sym_DASH] = ACTIONS(1027), [anon_sym_PLUS_PLUS] = ACTIONS(1029), [anon_sym_DASH_DASH] = ACTIONS(1029), [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(471), }, - [1513] = { - [sym__expression] = STATE(4418), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [1470] = { + [sym__expression] = STATE(321), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(471), }, - [1514] = { - [sym__expression] = STATE(4520), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1471] = { + [sym__expression] = STATE(318), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(471), }, - [1515] = { - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), + [1472] = { + [sym__expression] = STATE(328), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), [anon_sym_STAR] = ACTIONS(1019), [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), [anon_sym_PLUS] = ACTIONS(1027), [anon_sym_DASH] = ACTIONS(1027), [anon_sym_PLUS_PLUS] = ACTIONS(1029), [anon_sym_DASH_DASH] = ACTIONS(1029), [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(471), }, - [1516] = { - [sym__expression] = STATE(710), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [1473] = { + [sym__expression] = STATE(528), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(471), }, - [1517] = { - [sym__expression] = STATE(709), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [1474] = { + [sym__expression] = STATE(317), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(471), }, - [1518] = { - [sym__expression] = STATE(4511), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1475] = { + [sym__expression] = STATE(4324), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -219674,113 +214188,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1519] = { - [sym__expression] = STATE(746), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -219791,602 +214204,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1520] = { - [sym__expression] = STATE(2627), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1476] = { + [sym__expression] = STATE(316), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1477] = { + [sym__expression] = STATE(757), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1521] = { - [sym__expression] = STATE(4485), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(555), }, - [1522] = { - [sym__expression] = STATE(319), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), + [1478] = { + [sym__expression] = STATE(525), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [anon_sym_null] = ACTIONS(1666), [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), [anon_sym_throw] = ACTIONS(1720), [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1523] = { - [sym__expression] = STATE(4356), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(471), }, - [1524] = { - [sym__expression] = STATE(316), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), + [1479] = { + [sym__expression] = STATE(524), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [anon_sym_null] = ACTIONS(1666), [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), [anon_sym_throw] = ACTIONS(1720), [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1525] = { - [sym__expression] = STATE(4557), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1480] = { + [sym__expression] = STATE(808), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -220397,299 +214709,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1526] = { - [sym_function_body] = STATE(1155), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_object] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_this] = ACTIONS(4339), - [anon_sym_super] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [sym_label] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [anon_sym_try] = ACTIONS(4339), - [anon_sym_throw] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4341), - [anon_sym_continue_AT] = ACTIONS(4341), - [anon_sym_break_AT] = ACTIONS(4341), - [anon_sym_this_AT] = ACTIONS(4341), - [anon_sym_super_AT] = ACTIONS(4341), - [sym_real_literal] = ACTIONS(4341), - [sym_integer_literal] = ACTIONS(4339), - [sym_hex_literal] = ACTIONS(4341), - [sym_bin_literal] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4339), - [anon_sym_false] = ACTIONS(4339), - [anon_sym_SQUOTE] = ACTIONS(4341), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4341), - }, - [1527] = { - [sym__expression] = STATE(474), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1528] = { - [sym__expression] = STATE(4517), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1481] = { + [sym__expression] = STATE(807), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -220700,198 +214810,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1529] = { - [sym__expression] = STATE(825), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1482] = { + [sym__expression] = STATE(805), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(837), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), + [anon_sym_null] = ACTIONS(1594), [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), [anon_sym_throw] = ACTIONS(1680), [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), [anon_sym_DASH_DASH] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1530] = { - [sym__expression] = STATE(4229), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -220902,97 +214911,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1531] = { - [sym__expression] = STATE(4634), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1483] = { + [sym__expression] = STATE(799), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -221003,299 +215012,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1532] = { - [sym__expression] = STATE(331), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1533] = { - [sym__expression] = STATE(273), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), + [1484] = { + [sym__expression] = STATE(365), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1534] = { - [sym__expression] = STATE(4597), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1485] = { + [sym__expression] = STATE(804), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -221306,703 +215214,602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1535] = { - [sym__expression] = STATE(2343), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1486] = { + [sym__expression] = STATE(803), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(837), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), + [anon_sym_null] = ACTIONS(1594), [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), [anon_sym_throw] = ACTIONS(1680), [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), [anon_sym_DASH_DASH] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1536] = { - [sym__expression] = STATE(815), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [1487] = { + [sym__expression] = STATE(756), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(555), }, - [1537] = { - [sym__expression] = STATE(2339), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [1488] = { + [sym__expression] = STATE(989), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1538] = { - [sym__expression] = STATE(4153), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [1489] = { + [sym__expression] = STATE(986), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(205), }, - [1539] = { - [sym__expression] = STATE(1063), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [1490] = { + [sym__expression] = STATE(2578), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), [anon_sym_throw] = ACTIONS(1712), [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1540] = { - [sym__expression] = STATE(2340), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(555), }, - [1541] = { - [sym__expression] = STATE(4628), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1491] = { + [sym__expression] = STATE(980), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -222013,97 +215820,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1542] = { - [sym__expression] = STATE(4519), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1492] = { + [sym__expression] = STATE(977), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -222114,905 +215921,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1543] = { - [sym__expression] = STATE(2362), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1544] = { - [sym__expression] = STATE(2360), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1545] = { - [sym__expression] = STATE(2356), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1546] = { - [sym__expression] = STATE(279), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1547] = { - [sym__expression] = STATE(282), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1548] = { - [sym__expression] = STATE(2355), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1549] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1549), - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_fun] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(5723), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_object] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_this] = ACTIONS(4705), - [anon_sym_super] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4707), - [sym_label] = ACTIONS(4705), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_null] = ACTIONS(4705), - [anon_sym_if] = ACTIONS(4705), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_when] = ACTIONS(4705), - [anon_sym_try] = ACTIONS(4705), - [anon_sym_throw] = ACTIONS(4705), - [anon_sym_return] = ACTIONS(4705), - [anon_sym_continue] = ACTIONS(4705), - [anon_sym_break] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4707), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4705), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_suspend] = ACTIONS(4705), - [anon_sym_sealed] = ACTIONS(4705), - [anon_sym_annotation] = ACTIONS(4705), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_override] = ACTIONS(4705), - [anon_sym_lateinit] = ACTIONS(4705), - [anon_sym_public] = ACTIONS(4705), - [anon_sym_private] = ACTIONS(4705), - [anon_sym_internal] = ACTIONS(4705), - [anon_sym_protected] = ACTIONS(4705), - [anon_sym_tailrec] = ACTIONS(4705), - [anon_sym_operator] = ACTIONS(4705), - [anon_sym_infix] = ACTIONS(4705), - [anon_sym_inline] = ACTIONS(4705), - [anon_sym_external] = ACTIONS(4705), - [sym_property_modifier] = ACTIONS(4705), - [anon_sym_abstract] = ACTIONS(4705), - [anon_sym_final] = ACTIONS(4705), - [anon_sym_open] = ACTIONS(4705), - [anon_sym_vararg] = ACTIONS(4705), - [anon_sym_noinline] = ACTIONS(4705), - [anon_sym_crossinline] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4707), - [anon_sym_continue_AT] = ACTIONS(4707), - [anon_sym_break_AT] = ACTIONS(4707), - [anon_sym_this_AT] = ACTIONS(4707), - [anon_sym_super_AT] = ACTIONS(4707), - [sym_real_literal] = ACTIONS(4707), - [sym_integer_literal] = ACTIONS(4705), - [sym_hex_literal] = ACTIONS(4707), - [sym_bin_literal] = ACTIONS(4707), - [anon_sym_true] = ACTIONS(4705), - [anon_sym_false] = ACTIONS(4705), - [anon_sym_SQUOTE] = ACTIONS(4707), - [sym__backtick_identifier] = ACTIONS(4707), - [sym__automatic_semicolon] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4707), - }, - [1550] = { - [sym__expression] = STATE(271), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1551] = { - [sym__expression] = STATE(4610), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1493] = { + [sym__expression] = STATE(1234), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -223023,97 +216022,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1552] = { - [sym__expression] = STATE(4552), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1494] = { + [sym__expression] = STATE(976), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -223124,994 +216123,792 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1553] = { - [sym__expression] = STATE(2353), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1554] = { - [sym__expression] = STATE(277), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1555] = { - [sym__expression] = STATE(1016), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1495] = { + [sym__expression] = STATE(970), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), [anon_sym_throw] = ACTIONS(1704), [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1556] = { - [sym__expression] = STATE(320), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1496] = { + [sym__expression] = STATE(4239), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1557] = { - [sym__expression] = STATE(317), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), + [1497] = { + [sym__expression] = STATE(523), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [anon_sym_null] = ACTIONS(1666), [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), [anon_sym_throw] = ACTIONS(1720), [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1558] = { - [sym__expression] = STATE(4575), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(471), }, - [1559] = { - [sym__expression] = STATE(2628), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1498] = { + [sym__expression] = STATE(2459), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1560] = { - [sym__expression] = STATE(2657), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [1499] = { + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), [anon_sym_throw] = ACTIONS(1712), [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1561] = { - [sym__expression] = STATE(323), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), + [1500] = { + [sym__expression] = STATE(522), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [anon_sym_null] = ACTIONS(1666), [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), [anon_sym_throw] = ACTIONS(1720), [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1562] = { - [sym__expression] = STATE(4161), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), + [1501] = { + [sym__expression] = STATE(521), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1502] = { + [sym__expression] = STATE(4249), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(3074), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -224134,905 +216931,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1563] = { - [sym__expression] = STATE(281), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1564] = { - [sym__expression] = STATE(274), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [1503] = { + [sym__expression] = STATE(381), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1565] = { - [sym__expression] = STATE(329), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), + [1504] = { + [sym__expression] = STATE(517), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [anon_sym_null] = ACTIONS(1666), [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), [anon_sym_throw] = ACTIONS(1720), [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1566] = { - [sym__expression] = STATE(2497), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1567] = { - [sym__expression] = STATE(1247), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(471), }, - [1568] = { - [sym__expression] = STATE(314), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), + [1505] = { + [sym__expression] = STATE(520), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [anon_sym_null] = ACTIONS(1666), [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), [anon_sym_throw] = ACTIONS(1720), [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1569] = { - [sym__expression] = STATE(468), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1570] = { - [sym__expression] = STATE(2351), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(471), }, - [1571] = { - [sym__expression] = STATE(4630), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1506] = { + [sym__expression] = STATE(1261), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -225043,97 +217335,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1572] = { - [sym__expression] = STATE(2350), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1507] = { + [sym__expression] = STATE(4337), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(5703), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -225144,97 +217436,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1573] = { - [sym__expression] = STATE(4574), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1508] = { + [sym__expression] = STATE(3920), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1509] = { + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -225245,97 +217638,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1574] = { - [sym__expression] = STATE(2302), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1510] = { + [sym__expression] = STATE(4333), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -225346,97 +217739,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1575] = { - [sym__expression] = STATE(2349), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1511] = { + [sym__expression] = STATE(4473), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -225447,97 +217840,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1576] = { - [sym__expression] = STATE(4438), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1512] = { + [sym__expression] = STATE(1283), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -225548,97 +217941,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1577] = { - [sym__expression] = STATE(4603), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1513] = { + [sym__expression] = STATE(3922), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1514] = { + [sym__expression] = STATE(1271), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -225649,97 +218143,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1578] = { - [sym__expression] = STATE(2348), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1515] = { + [sym__expression] = STATE(4472), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -225750,97 +218244,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1579] = { - [sym__expression] = STATE(4617), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1516] = { + [sym__expression] = STATE(1621), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1517] = { + [sym__expression] = STATE(1243), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -225851,287 +218446,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1580] = { - [sym__expression] = STATE(272), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1581] = { - [sym__expression] = STATE(275), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1518] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(295), }, - [1582] = { - [sym__expression] = STATE(4420), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), + [1519] = { + [sym__expression] = STATE(3768), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(375), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -226154,484 +218648,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1583] = { - [sym__expression] = STATE(276), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1584] = { - [sym__expression] = STATE(278), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1585] = { - [sym__expression] = STATE(330), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1586] = { - [sym__expression] = STATE(2236), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1587] = { - [sym__expression] = STATE(4608), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1520] = { + [sym__expression] = STATE(4482), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -226643,315 +218733,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1588] = { - [sym__expression] = STATE(2234), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1589] = { - [sym__expression] = STATE(280), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(295), }, - [1590] = { - [sym__expression] = STATE(748), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1521] = { + [sym__expression] = STATE(4364), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -226962,97 +218850,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1591] = { - [sym__expression] = STATE(729), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1522] = { + [sym__expression] = STATE(3941), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -227063,97 +218951,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1592] = { - [sym__expression] = STATE(651), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1523] = { + [sym__expression] = STATE(3940), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -227164,198 +219052,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1593] = { - [sym__expression] = STATE(4580), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1524] = { + [sym__expression] = STATE(3936), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1594] = { - [sym__expression] = STATE(650), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1525] = { + [sym__expression] = STATE(3934), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -227366,97 +219254,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1595] = { - [sym__expression] = STATE(646), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1526] = { + [sym__expression] = STATE(3931), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -227467,585 +219355,383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1596] = { - [sym__expression] = STATE(939), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1597] = { - [sym__expression] = STATE(318), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1598] = { - [sym__expression] = STATE(4559), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1527] = { + [sym__expression] = STATE(3930), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1599] = { - [sym__expression] = STATE(4483), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1528] = { + [sym__expression] = STATE(3929), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1600] = { - [sym__expression] = STATE(4482), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1529] = { + [sym__expression] = STATE(3928), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5726), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1601] = { - [sym__expression] = STATE(4558), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1530] = { + [sym__expression] = STATE(4468), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -228057,113 +219743,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1602] = { - [sym__expression] = STATE(745), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -228174,1107 +219759,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1603] = { - [sym__expression] = STATE(4516), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1604] = { - [sym__expression] = STATE(4627), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1605] = { - [sym__expression] = STATE(4572), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1606] = { - [sym__expression] = STATE(4629), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1607] = { - [sym__expression] = STATE(4613), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1608] = { - [sym__expression] = STATE(4598), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1609] = { - [sym__expression] = STATE(4578), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1610] = { - [sym__expression] = STATE(4640), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1611] = { - [sym__expression] = STATE(4601), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1612] = { - [sym__expression] = STATE(4596), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1531] = { + [sym__expression] = STATE(3927), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1613] = { - [sym__expression] = STATE(744), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -229285,97 +219860,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1614] = { - [sym__expression] = STATE(743), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1532] = { + [sym__expression] = STATE(1396), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1533] = { + [sym__expression] = STATE(2559), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1534] = { + [sym__expression] = STATE(404), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1535] = { + [sym__expression] = STATE(3926), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -229386,97 +220264,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1615] = { - [sym__expression] = STATE(4439), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1536] = { + [sym__expression] = STATE(2530), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -229487,97 +220365,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1616] = { - [sym__expression] = STATE(4566), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1537] = { + [sym__expression] = STATE(1280), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -229588,97 +220466,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1617] = { - [sym__expression] = STATE(754), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1538] = { + [sym__expression] = STATE(3789), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1539] = { + [sym__expression] = STATE(3872), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -229689,97 +220668,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1618] = { - [sym__expression] = STATE(755), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1540] = { + [sym__expression] = STATE(3811), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1541] = { + [sym__expression] = STATE(3925), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -229790,5236 +220870,3216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1619] = { - [sym__expression] = STATE(4570), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1542] = { + [sym__expression] = STATE(2419), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(555), }, - [1620] = { - [sym__expression] = STATE(2233), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1543] = { + [sym__expression] = STATE(2423), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1621] = { - [sym_function_body] = STATE(1189), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), + [sym__string_start] = ACTIONS(555), }, - [1622] = { - [sym__expression] = STATE(470), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [1544] = { + [sym__expression] = STATE(530), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1623] = { - [sym__expression] = STATE(4582), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1545] = { + [sym__expression] = STATE(2425), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(555), }, - [1624] = { - [sym__expression] = STATE(471), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1546] = { + [sym__expression] = STATE(3788), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1625] = { - [sym__expression] = STATE(472), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1626] = { - [sym__expression] = STATE(475), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1627] = { - [sym__expression] = STATE(476), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1547] = { + [sym__expression] = STATE(4250), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1628] = { - [sym__expression] = STATE(477), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1548] = { + [sym__expression] = STATE(2455), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(555), }, - [1629] = { - [sym__expression] = STATE(478), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1549] = { + [sym__expression] = STATE(4254), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1630] = { - [sym__expression] = STATE(479), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1550] = { + [sym__expression] = STATE(3787), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1631] = { - [sym__expression] = STATE(480), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1551] = { + [sym__expression] = STATE(4253), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1632] = { - [sym__expression] = STATE(482), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1552] = { + [sym__expression] = STATE(4293), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1633] = { - [sym__expression] = STATE(469), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1553] = { + [sym__expression] = STATE(4244), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1634] = { - [sym__expression] = STATE(484), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1554] = { + [sym__expression] = STATE(2434), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(555), }, - [1635] = { - [sym__expression] = STATE(757), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [1555] = { + [sym__expression] = STATE(2433), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(555), }, - [1636] = { - [sym__expression] = STATE(486), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1556] = { + [sym__expression] = STATE(3785), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1637] = { - [sym__expression] = STATE(483), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1557] = { + [sym__expression] = STATE(3784), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1638] = { - [sym__expression] = STATE(758), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [1558] = { + [sym__expression] = STATE(4255), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(113), }, - [1639] = { - [sym__expression] = STATE(759), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [1559] = { + [sym__expression] = STATE(4240), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(113), }, - [1640] = { - [sym__expression] = STATE(762), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [1560] = { + [sym__expression] = STATE(2280), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1641] = { - [sym__expression] = STATE(309), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [1561] = { + [sym__expression] = STATE(527), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1642] = { - [sym__expression] = STATE(308), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [1562] = { + [sym__expression] = STATE(533), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1643] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(3105), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3105), - [anon_sym_sealed] = ACTIONS(3105), - [anon_sym_annotation] = ACTIONS(3105), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3105), - [anon_sym_lateinit] = ACTIONS(3105), - [anon_sym_public] = ACTIONS(3105), - [anon_sym_private] = ACTIONS(3105), - [anon_sym_internal] = ACTIONS(3105), - [anon_sym_protected] = ACTIONS(3105), - [anon_sym_tailrec] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_infix] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym_external] = ACTIONS(3105), - [sym_property_modifier] = ACTIONS(3105), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_final] = ACTIONS(3105), - [anon_sym_open] = ACTIONS(3105), - [anon_sym_vararg] = ACTIONS(3105), - [anon_sym_noinline] = ACTIONS(3105), - [anon_sym_crossinline] = ACTIONS(3105), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1563] = { + [sym__expression] = STATE(2430), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [1644] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_this] = ACTIONS(3109), - [anon_sym_super] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(5730), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_null] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_when] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3111), - [anon_sym_continue_AT] = ACTIONS(3111), - [anon_sym_break_AT] = ACTIONS(3111), - [anon_sym_this_AT] = ACTIONS(3111), - [anon_sym_super_AT] = ACTIONS(3111), - [sym_real_literal] = ACTIONS(3111), - [sym_integer_literal] = ACTIONS(3109), - [sym_hex_literal] = ACTIONS(3111), - [sym_bin_literal] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3111), - }, - [1645] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_where] = ACTIONS(3116), - [anon_sym_object] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_this] = ACTIONS(3116), - [anon_sym_super] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_when] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3116), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [anon_sym_this_AT] = ACTIONS(3118), - [anon_sym_super_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3116), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3116), - [anon_sym_false] = ACTIONS(3116), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [1564] = { + [sym__expression] = STATE(4238), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1646] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_object] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_this] = ACTIONS(3123), - [anon_sym_super] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_when] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_throw] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3125), - [anon_sym_continue_AT] = ACTIONS(3125), - [anon_sym_break_AT] = ACTIONS(3125), - [anon_sym_this_AT] = ACTIONS(3125), - [anon_sym_super_AT] = ACTIONS(3125), - [sym_real_literal] = ACTIONS(3125), - [sym_integer_literal] = ACTIONS(3123), - [sym_hex_literal] = ACTIONS(3125), - [sym_bin_literal] = ACTIONS(3125), - [anon_sym_true] = ACTIONS(3123), - [anon_sym_false] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3125), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3125), - }, - [1647] = { - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_fun] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(5693), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_object] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_this] = ACTIONS(4435), - [anon_sym_super] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4437), - [sym_label] = ACTIONS(4435), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_null] = ACTIONS(4435), - [anon_sym_if] = ACTIONS(4435), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_when] = ACTIONS(4435), - [anon_sym_try] = ACTIONS(4435), - [anon_sym_throw] = ACTIONS(4435), - [anon_sym_return] = ACTIONS(4435), - [anon_sym_continue] = ACTIONS(4435), - [anon_sym_break] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4437), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4435), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_suspend] = ACTIONS(4435), - [anon_sym_sealed] = ACTIONS(4435), - [anon_sym_annotation] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_override] = ACTIONS(4435), - [anon_sym_lateinit] = ACTIONS(4435), - [anon_sym_public] = ACTIONS(4435), - [anon_sym_private] = ACTIONS(4435), - [anon_sym_internal] = ACTIONS(4435), - [anon_sym_protected] = ACTIONS(4435), - [anon_sym_tailrec] = ACTIONS(4435), - [anon_sym_operator] = ACTIONS(4435), - [anon_sym_infix] = ACTIONS(4435), - [anon_sym_inline] = ACTIONS(4435), - [anon_sym_external] = ACTIONS(4435), - [sym_property_modifier] = ACTIONS(4435), - [anon_sym_abstract] = ACTIONS(4435), - [anon_sym_final] = ACTIONS(4435), - [anon_sym_open] = ACTIONS(4435), - [anon_sym_vararg] = ACTIONS(4435), - [anon_sym_noinline] = ACTIONS(4435), - [anon_sym_crossinline] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4437), - [anon_sym_continue_AT] = ACTIONS(4437), - [anon_sym_break_AT] = ACTIONS(4437), - [anon_sym_this_AT] = ACTIONS(4437), - [anon_sym_super_AT] = ACTIONS(4437), - [sym_real_literal] = ACTIONS(4437), - [sym_integer_literal] = ACTIONS(4435), - [sym_hex_literal] = ACTIONS(4437), - [sym_bin_literal] = ACTIONS(4437), - [anon_sym_true] = ACTIONS(4435), - [anon_sym_false] = ACTIONS(4435), - [anon_sym_SQUOTE] = ACTIONS(4437), - [sym__backtick_identifier] = ACTIONS(4437), - [sym__automatic_semicolon] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4437), - }, - [1648] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3130), - [anon_sym_super] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(5730), - [anon_sym_QMARK_COLON] = ACTIONS(5736), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_when] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3132), - [anon_sym_continue_AT] = ACTIONS(3132), - [anon_sym_break_AT] = ACTIONS(3132), - [anon_sym_this_AT] = ACTIONS(3132), - [anon_sym_super_AT] = ACTIONS(3132), - [sym_real_literal] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(3130), - [sym_hex_literal] = ACTIONS(3132), - [sym_bin_literal] = ACTIONS(3132), - [anon_sym_true] = ACTIONS(3130), - [anon_sym_false] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3132), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3132), - }, - [1649] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_where] = ACTIONS(3137), - [anon_sym_object] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3137), - [anon_sym_super] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5738), - [anon_sym_DOT_DOT] = ACTIONS(5730), - [anon_sym_QMARK_COLON] = ACTIONS(5736), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_when] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(5740), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3139), - [anon_sym_continue_AT] = ACTIONS(3139), - [anon_sym_break_AT] = ACTIONS(3139), - [anon_sym_this_AT] = ACTIONS(3139), - [anon_sym_super_AT] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3139), - [sym_integer_literal] = ACTIONS(3137), - [sym_hex_literal] = ACTIONS(3139), - [sym_bin_literal] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3139), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3139), - }, - [1650] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5742), - [anon_sym_where] = ACTIONS(3097), - [anon_sym_object] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3097), - [anon_sym_super] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5738), - [anon_sym_DOT_DOT] = ACTIONS(5730), - [anon_sym_QMARK_COLON] = ACTIONS(5736), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_null] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_when] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3097), - [anon_sym_throw] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(5744), - [anon_sym_GT_EQ] = ACTIONS(5744), - [anon_sym_BANGin] = ACTIONS(5740), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3099), - [anon_sym_continue_AT] = ACTIONS(3099), - [anon_sym_break_AT] = ACTIONS(3099), - [anon_sym_this_AT] = ACTIONS(3099), - [anon_sym_super_AT] = ACTIONS(3099), - [sym_real_literal] = ACTIONS(3099), - [sym_integer_literal] = ACTIONS(3097), - [sym_hex_literal] = ACTIONS(3099), - [sym_bin_literal] = ACTIONS(3099), - [anon_sym_true] = ACTIONS(3097), - [anon_sym_false] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3099), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3099), - }, - [1651] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5742), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3141), - [anon_sym_super] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5738), - [anon_sym_DOT_DOT] = ACTIONS(5730), - [anon_sym_QMARK_COLON] = ACTIONS(5736), - [anon_sym_AMP_AMP] = ACTIONS(5746), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_when] = ACTIONS(3141), - [anon_sym_try] = ACTIONS(3141), - [anon_sym_throw] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5748), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5750), - [anon_sym_LT_EQ] = ACTIONS(5744), - [anon_sym_GT_EQ] = ACTIONS(5744), - [anon_sym_BANGin] = ACTIONS(5740), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3143), - [anon_sym_continue_AT] = ACTIONS(3143), - [anon_sym_break_AT] = ACTIONS(3143), - [anon_sym_this_AT] = ACTIONS(3143), - [anon_sym_super_AT] = ACTIONS(3143), - [sym_real_literal] = ACTIONS(3143), - [sym_integer_literal] = ACTIONS(3141), - [sym_hex_literal] = ACTIONS(3143), - [sym_bin_literal] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3143), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3143), - }, - [1652] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5742), - [anon_sym_where] = ACTIONS(3145), - [anon_sym_object] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3145), - [anon_sym_super] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5738), - [anon_sym_DOT_DOT] = ACTIONS(5730), - [anon_sym_QMARK_COLON] = ACTIONS(5736), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_null] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_when] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5748), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5750), - [anon_sym_LT_EQ] = ACTIONS(5744), - [anon_sym_GT_EQ] = ACTIONS(5744), - [anon_sym_BANGin] = ACTIONS(5740), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3147), - [anon_sym_continue_AT] = ACTIONS(3147), - [anon_sym_break_AT] = ACTIONS(3147), - [anon_sym_this_AT] = ACTIONS(3147), - [anon_sym_super_AT] = ACTIONS(3147), - [sym_real_literal] = ACTIONS(3147), - [sym_integer_literal] = ACTIONS(3145), - [sym_hex_literal] = ACTIONS(3147), - [sym_bin_literal] = ACTIONS(3147), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3147), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3147), - }, - [1653] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(5730), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3090), - [anon_sym_continue_AT] = ACTIONS(3090), - [anon_sym_break_AT] = ACTIONS(3090), - [anon_sym_this_AT] = ACTIONS(3090), - [anon_sym_super_AT] = ACTIONS(3090), - [sym_real_literal] = ACTIONS(3090), - [sym_integer_literal] = ACTIONS(3088), - [sym_hex_literal] = ACTIONS(3090), - [sym_bin_literal] = ACTIONS(3090), - [anon_sym_true] = ACTIONS(3088), - [anon_sym_false] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3090), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), - }, - [1654] = { - [sym__expression] = STATE(304), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1655] = { - [sym__expression] = STATE(303), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1656] = { - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1657] = { - [sym__expression] = STATE(2531), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1658] = { - [sym__expression] = STATE(648), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1659] = { - [sym__expression] = STATE(1298), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1660] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_where] = ACTIONS(3149), - [anon_sym_object] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_this] = ACTIONS(3149), - [anon_sym_super] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_null] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_when] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3149), - [anon_sym_throw] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3151), - [anon_sym_continue_AT] = ACTIONS(3151), - [anon_sym_break_AT] = ACTIONS(3151), - [anon_sym_this_AT] = ACTIONS(3151), - [anon_sym_super_AT] = ACTIONS(3151), - [sym_real_literal] = ACTIONS(3151), - [sym_integer_literal] = ACTIONS(3149), - [sym_hex_literal] = ACTIONS(3151), - [sym_bin_literal] = ACTIONS(3151), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3151), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3151), - }, - [1661] = { - [sym__expression] = STATE(302), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1662] = { - [sym__expression] = STATE(2175), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), + [1565] = { + [sym__expression] = STATE(2429), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), [anon_sym_STAR] = ACTIONS(897), [sym_label] = ACTIONS(907), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), [anon_sym_PLUS] = ACTIONS(907), [anon_sym_DASH] = ACTIONS(907), [anon_sym_PLUS_PLUS] = ACTIONS(909), [anon_sym_DASH_DASH] = ACTIONS(909), [anon_sym_BANG] = ACTIONS(909), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(555), }, - [1663] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_STAR_EQ] = ACTIONS(3158), - [anon_sym_SLASH_EQ] = ACTIONS(3158), - [anon_sym_PERCENT_EQ] = ACTIONS(3158), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3156), - [anon_sym_sealed] = ACTIONS(3156), - [anon_sym_annotation] = ACTIONS(3156), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_lateinit] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_internal] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_tailrec] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_infix] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym_external] = ACTIONS(3156), - [sym_property_modifier] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_final] = ACTIONS(3156), - [anon_sym_open] = ACTIONS(3156), - [anon_sym_vararg] = ACTIONS(3156), - [anon_sym_noinline] = ACTIONS(3156), - [anon_sym_crossinline] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1566] = { + [sym__expression] = STATE(2566), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [1664] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5742), - [anon_sym_where] = ACTIONS(3184), - [anon_sym_object] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3184), - [anon_sym_super] = ACTIONS(3184), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5738), - [anon_sym_DOT_DOT] = ACTIONS(5730), - [anon_sym_QMARK_COLON] = ACTIONS(5736), - [anon_sym_AMP_AMP] = ACTIONS(5746), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [anon_sym_null] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_when] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5748), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5750), - [anon_sym_LT_EQ] = ACTIONS(5744), - [anon_sym_GT_EQ] = ACTIONS(5744), - [anon_sym_BANGin] = ACTIONS(5740), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3186), - [anon_sym_continue_AT] = ACTIONS(3186), - [anon_sym_break_AT] = ACTIONS(3186), - [anon_sym_this_AT] = ACTIONS(3186), - [anon_sym_super_AT] = ACTIONS(3186), - [sym_real_literal] = ACTIONS(3186), - [sym_integer_literal] = ACTIONS(3184), - [sym_hex_literal] = ACTIONS(3186), - [sym_bin_literal] = ACTIONS(3186), - [anon_sym_true] = ACTIONS(3184), - [anon_sym_false] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3186), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3186), - [sym_safe_nav] = ACTIONS(4567), + [1567] = { + [sym__expression] = STATE(2558), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3186), + [sym__string_start] = ACTIONS(555), }, - [1665] = { - [sym__expression] = STATE(1644), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), + [1568] = { + [sym__expression] = STATE(2426), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), [anon_sym_STAR] = ACTIONS(897), [sym_label] = ACTIONS(907), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), [anon_sym_PLUS] = ACTIONS(907), [anon_sym_DASH] = ACTIONS(907), [anon_sym_PLUS_PLUS] = ACTIONS(909), [anon_sym_DASH_DASH] = ACTIONS(909), [anon_sym_BANG] = ACTIONS(909), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(555), }, - [1666] = { - [sym__expression] = STATE(1645), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), + [1569] = { + [sym__expression] = STATE(2442), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), [anon_sym_STAR] = ACTIONS(897), [sym_label] = ACTIONS(907), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), [anon_sym_PLUS] = ACTIONS(907), [anon_sym_DASH] = ACTIONS(907), [anon_sym_PLUS_PLUS] = ACTIONS(909), [anon_sym_DASH_DASH] = ACTIONS(909), [anon_sym_BANG] = ACTIONS(909), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(555), }, - [1667] = { - [sym__expression] = STATE(1646), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), + [1570] = { + [sym__expression] = STATE(2432), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), [anon_sym_STAR] = ACTIONS(897), [sym_label] = ACTIONS(907), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), [anon_sym_PLUS] = ACTIONS(907), [anon_sym_DASH] = ACTIONS(907), [anon_sym_PLUS_PLUS] = ACTIONS(909), [anon_sym_DASH_DASH] = ACTIONS(909), [anon_sym_BANG] = ACTIONS(909), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(555), }, - [1668] = { - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), + [1571] = { + [sym__expression] = STATE(2436), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), [anon_sym_STAR] = ACTIONS(897), [sym_label] = ACTIONS(907), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), [anon_sym_PLUS] = ACTIONS(907), [anon_sym_DASH] = ACTIONS(907), [anon_sym_PLUS_PLUS] = ACTIONS(909), [anon_sym_DASH_DASH] = ACTIONS(909), [anon_sym_BANG] = ACTIONS(909), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(555), }, - [1669] = { - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1572] = { + [sym__expression] = STATE(2439), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1670] = { - [sym__expression] = STATE(1649), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), + [1573] = { + [sym__expression] = STATE(1792), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), [anon_sym_get] = ACTIONS(1910), [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(907), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_data] = ACTIONS(1910), [anon_sym_inner] = ACTIONS(1910), [anon_sym_value] = ACTIONS(1910), @@ -235027,1514 +224087,908 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [1671] = { - [sym__expression] = STATE(301), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(639), }, - [1672] = { - [sym__expression] = STATE(1650), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), + [1574] = { + [sym__expression] = STATE(2445), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), [anon_sym_STAR] = ACTIONS(897), [sym_label] = ACTIONS(907), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), [anon_sym_PLUS] = ACTIONS(907), [anon_sym_DASH] = ACTIONS(907), [anon_sym_PLUS_PLUS] = ACTIONS(909), [anon_sym_DASH_DASH] = ACTIONS(909), [anon_sym_BANG] = ACTIONS(909), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [1673] = { - [sym__expression] = STATE(306), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(555), }, - [1674] = { - [sym__expression] = STATE(305), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [1575] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(4613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(3146), }, - [1675] = { - [sym__expression] = STATE(1651), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), + [1576] = { + [sym__expression] = STATE(4227), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(907), - [anon_sym_null] = ACTIONS(1912), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(3076), [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(113), }, - [1676] = { - [sym__expression] = STATE(1652), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), + [1577] = { + [sym__expression] = STATE(4247), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(907), - [anon_sym_null] = ACTIONS(1912), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(3076), [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(113), }, - [1677] = { - [sym__expression] = STATE(1653), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), + [1578] = { + [sym__expression] = STATE(4246), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(907), - [anon_sym_null] = ACTIONS(1912), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(3076), [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(113), }, - [1678] = { - [sym__expression] = STATE(1660), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), + [1579] = { + [sym__expression] = STATE(4235), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(907), - [anon_sym_null] = ACTIONS(1912), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(3076), [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(113), }, - [1679] = { - [sym__expression] = STATE(1854), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), + [1580] = { + [sym__expression] = STATE(4242), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(907), - [anon_sym_null] = ACTIONS(1912), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(3076), [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [1680] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3170), - [anon_sym_DASH_EQ] = ACTIONS(3170), - [anon_sym_STAR_EQ] = ACTIONS(3170), - [anon_sym_SLASH_EQ] = ACTIONS(3170), - [anon_sym_PERCENT_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3168), - [anon_sym_sealed] = ACTIONS(3168), - [anon_sym_annotation] = ACTIONS(3168), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_lateinit] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_internal] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_tailrec] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_infix] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym_external] = ACTIONS(3168), - [sym_property_modifier] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_final] = ACTIONS(3168), - [anon_sym_open] = ACTIONS(3168), - [anon_sym_vararg] = ACTIONS(3168), - [anon_sym_noinline] = ACTIONS(3168), - [anon_sym_crossinline] = ACTIONS(3168), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1681] = { - [sym__expression] = STATE(2347), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1682] = { - [sym__expression] = STATE(307), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1683] = { - [sym__expression] = STATE(1975), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(907), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [1581] = { + [sym__expression] = STATE(3809), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [1684] = { - [sym__expression] = STATE(2232), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(113), }, - [1685] = { - [sym__expression] = STATE(1972), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), + [1582] = { + [sym__expression] = STATE(996), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), [anon_sym_get] = ACTIONS(1910), [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(907), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), [anon_sym_data] = ACTIONS(1910), [anon_sym_inner] = ACTIONS(1910), [anon_sym_value] = ACTIONS(1910), @@ -236542,718 +224996,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [1686] = { - [sym__expression] = STATE(312), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1687] = { - [sym__expression] = STATE(300), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1688] = { - [sym__expression] = STATE(311), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(1634), - [sym_annotation] = STATE(1634), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(929), - [sym_label] = ACTIONS(939), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1689] = { - [sym__expression] = STATE(2271), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(639), }, - [1690] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3101), - [anon_sym_sealed] = ACTIONS(3101), - [anon_sym_annotation] = ACTIONS(3101), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3101), - [anon_sym_lateinit] = ACTIONS(3101), - [anon_sym_public] = ACTIONS(3101), - [anon_sym_private] = ACTIONS(3101), - [anon_sym_internal] = ACTIONS(3101), - [anon_sym_protected] = ACTIONS(3101), - [anon_sym_tailrec] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_infix] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym_external] = ACTIONS(3101), - [sym_property_modifier] = ACTIONS(3101), - [anon_sym_abstract] = ACTIONS(3101), - [anon_sym_final] = ACTIONS(3101), - [anon_sym_open] = ACTIONS(3101), - [anon_sym_vararg] = ACTIONS(3101), - [anon_sym_noinline] = ACTIONS(3101), - [anon_sym_crossinline] = ACTIONS(3101), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1583] = { + [sym__expression] = STATE(3780), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1691] = { - [sym__expression] = STATE(2344), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1584] = { + [sym__expression] = STATE(2251), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(837), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), + [anon_sym_null] = ACTIONS(1594), [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), [anon_sym_throw] = ACTIONS(1680), [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), [anon_sym_DASH_DASH] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1692] = { - [sym__expression] = STATE(642), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1585] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -237264,2925 +225314,1713 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1693] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3109), - [anon_sym_sealed] = ACTIONS(3109), - [anon_sym_annotation] = ACTIONS(3109), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_lateinit] = ACTIONS(3109), - [anon_sym_public] = ACTIONS(3109), - [anon_sym_private] = ACTIONS(3109), - [anon_sym_internal] = ACTIONS(3109), - [anon_sym_protected] = ACTIONS(3109), - [anon_sym_tailrec] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_infix] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym_external] = ACTIONS(3109), - [sym_property_modifier] = ACTIONS(3109), - [anon_sym_abstract] = ACTIONS(3109), - [anon_sym_final] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_vararg] = ACTIONS(3109), - [anon_sym_noinline] = ACTIONS(3109), - [anon_sym_crossinline] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1694] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3116), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3116), - [anon_sym_sealed] = ACTIONS(3116), - [anon_sym_annotation] = ACTIONS(3116), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_lateinit] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_internal] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_tailrec] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_infix] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym_external] = ACTIONS(3116), - [sym_property_modifier] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_final] = ACTIONS(3116), - [anon_sym_open] = ACTIONS(3116), - [anon_sym_vararg] = ACTIONS(3116), - [anon_sym_noinline] = ACTIONS(3116), - [anon_sym_crossinline] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1695] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_STAR_EQ] = ACTIONS(3125), - [anon_sym_SLASH_EQ] = ACTIONS(3125), - [anon_sym_PERCENT_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3123), - [anon_sym_sealed] = ACTIONS(3123), - [anon_sym_annotation] = ACTIONS(3123), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_lateinit] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_tailrec] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3123), - [sym_property_modifier] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_vararg] = ACTIONS(3123), - [anon_sym_noinline] = ACTIONS(3123), - [anon_sym_crossinline] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1696] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_annotation] = ACTIONS(3130), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_lateinit] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_tailrec] = ACTIONS(3130), - [anon_sym_operator] = ACTIONS(3130), - [anon_sym_infix] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_external] = ACTIONS(3130), - [sym_property_modifier] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3130), - [anon_sym_noinline] = ACTIONS(3130), - [anon_sym_crossinline] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1697] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1586] = { + [sym__expression] = STATE(3779), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1698] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3097), - [anon_sym_sealed] = ACTIONS(3097), - [anon_sym_annotation] = ACTIONS(3097), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3097), - [anon_sym_lateinit] = ACTIONS(3097), - [anon_sym_public] = ACTIONS(3097), - [anon_sym_private] = ACTIONS(3097), - [anon_sym_internal] = ACTIONS(3097), - [anon_sym_protected] = ACTIONS(3097), - [anon_sym_tailrec] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_infix] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym_external] = ACTIONS(3097), - [sym_property_modifier] = ACTIONS(3097), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_final] = ACTIONS(3097), - [anon_sym_open] = ACTIONS(3097), - [anon_sym_vararg] = ACTIONS(3097), - [anon_sym_noinline] = ACTIONS(3097), - [anon_sym_crossinline] = ACTIONS(3097), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1587] = { + [sym__expression] = STATE(4070), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1699] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1588] = { + [sym__expression] = STATE(688), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [1700] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3145), - [anon_sym_sealed] = ACTIONS(3145), - [anon_sym_annotation] = ACTIONS(3145), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_lateinit] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_tailrec] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym_external] = ACTIONS(3145), - [sym_property_modifier] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_vararg] = ACTIONS(3145), - [anon_sym_noinline] = ACTIONS(3145), - [anon_sym_crossinline] = ACTIONS(3145), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1589] = { + [sym__expression] = STATE(686), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [1701] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1590] = { + [sym__expression] = STATE(684), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [1702] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_while] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3149), - [anon_sym_sealed] = ACTIONS(3149), - [anon_sym_annotation] = ACTIONS(3149), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3149), - [anon_sym_lateinit] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_internal] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_tailrec] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_infix] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym_external] = ACTIONS(3149), - [sym_property_modifier] = ACTIONS(3149), - [anon_sym_abstract] = ACTIONS(3149), - [anon_sym_final] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_vararg] = ACTIONS(3149), - [anon_sym_noinline] = ACTIONS(3149), - [anon_sym_crossinline] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [1703] = { - [sym__expression] = STATE(1690), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1591] = { + [sym__expression] = STATE(1845), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1704] = { - [sym__expression] = STATE(647), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [1592] = { + [sym__expression] = STATE(1848), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1705] = { - [sym__expression] = STATE(2509), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1593] = { + [sym__expression] = STATE(682), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1706] = { - [sym__expression] = STATE(1693), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1594] = { + [sym__expression] = STATE(1847), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1707] = { - [sym__expression] = STATE(1694), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1595] = { + [sym__expression] = STATE(1618), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1708] = { - [sym__expression] = STATE(1695), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1596] = { + [sym__expression] = STATE(1620), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1709] = { - [sym__expression] = STATE(1696), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1597] = { + [sym__expression] = STATE(1622), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1710] = { - [sym__expression] = STATE(1697), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1598] = { + [sym__expression] = STATE(1623), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1711] = { - [sym__expression] = STATE(943), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1712] = { - [sym__expression] = STATE(1698), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1713] = { - [sym__expression] = STATE(1699), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1599] = { + [sym__expression] = STATE(1626), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1714] = { - [sym__expression] = STATE(1700), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1600] = { + [sym__expression] = STATE(1627), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1715] = { - [sym__expression] = STATE(641), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1716] = { - [sym__expression] = STATE(645), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1717] = { - [sym__expression] = STATE(652), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1718] = { - [sym__expression] = STATE(1701), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1601] = { + [sym__expression] = STATE(1628), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1719] = { - [sym__expression] = STATE(941), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(205), }, - [1720] = { - [sym__expression] = STATE(1702), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1602] = { + [sym__expression] = STATE(1629), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1721] = { - [sym__expression] = STATE(3386), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(161), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -240193,198 +227031,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1722] = { - [sym_type_constraints] = STATE(2262), - [sym_property_delegate] = STATE(2384), - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(5754), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3670), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_DASH_GT] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - }, - [1723] = { - [sym__expression] = STATE(4606), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1603] = { + [sym__expression] = STATE(1630), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -240395,400 +227132,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1724] = { - [sym__expression] = STATE(1966), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1604] = { + [sym__expression] = STATE(1631), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1725] = { - [sym__expression] = STATE(3866), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [1726] = { - [sym__expression] = STATE(3849), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [1727] = { - [sym__expression] = STATE(4244), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -240799,85 +227233,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1728] = { - [sym__expression] = STATE(3850), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), + [1605] = { + [sym__expression] = STATE(3777), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), + [anon_sym_if] = ACTIONS(375), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -240900,602 +227334,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1729] = { - [sym__expression] = STATE(1969), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1730] = { - [sym__expression] = STATE(938), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [1606] = { + [sym__expression] = STATE(2464), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), [anon_sym_throw] = ACTIONS(1696), [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1731] = { - [sym__expression] = STATE(1963), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1724), - [sym_annotation] = STATE(1724), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1307), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(555), }, - [1732] = { - [sym__expression] = STATE(649), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [1607] = { + [sym__expression] = STATE(676), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(555), }, - [1733] = { - [sym__expression] = STATE(643), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [1608] = { + [sym__expression] = STATE(691), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(555), }, - [1734] = { - [sym__expression] = STATE(644), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1609] = { + [sym__expression] = STATE(4139), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -241506,299 +227738,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1735] = { - [sym__expression] = STATE(362), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1610] = { + [sym__expression] = STATE(708), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(555), }, - [1736] = { - [sym__expression] = STATE(724), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [1611] = { + [sym__expression] = STATE(707), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1737] = { - [sym__expression] = STATE(4590), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1612] = { + [sym__expression] = STATE(1633), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -241809,1600 +228041,4529 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1738] = { - [sym_function_body] = STATE(1087), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), + [1613] = { + [sym__expression] = STATE(320), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [1739] = { - [sym__expression] = STATE(718), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), + [1614] = { + [sym__expression] = STATE(3776), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1615] = { + [sym__expression] = STATE(526), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1616] = { + [sym__expression] = STATE(677), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1740] = { - [sym__expression] = STATE(4374), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1617] = { + [sym__expression] = STATE(706), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1741] = { - [sym__expression] = STATE(4616), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(555), }, - [1742] = { - [sym__expression] = STATE(4635), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [1618] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [1743] = { - [sym__expression] = STATE(1320), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), + [1619] = { + [sym__expression] = STATE(330), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), [anon_sym_STAR] = ACTIONS(1019), [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), [anon_sym_PLUS] = ACTIONS(1027), [anon_sym_DASH] = ACTIONS(1027), [anon_sym_PLUS_PLUS] = ACTIONS(1029), [anon_sym_DASH_DASH] = ACTIONS(1029), [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(471), }, - [1744] = { - [sym__expression] = STATE(2506), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1620] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1621] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_object] = ACTIONS(3121), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3121), + [anon_sym_super] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_when] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3123), + [anon_sym_continue_AT] = ACTIONS(3123), + [anon_sym_break_AT] = ACTIONS(3123), + [anon_sym_this_AT] = ACTIONS(3123), + [anon_sym_super_AT] = ACTIONS(3123), + [sym_real_literal] = ACTIONS(3123), + [sym_integer_literal] = ACTIONS(3121), + [sym_hex_literal] = ACTIONS(3123), + [sym_bin_literal] = ACTIONS(3123), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3123), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3123), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3123), + }, + [1622] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1623] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1624] = { + [sym__expression] = STATE(675), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1745] = { - [sym__expression] = STATE(1837), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), + [1625] = { + [sym__expression] = STATE(2448), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), [anon_sym_STAR] = ACTIONS(897), [sym_label] = ACTIONS(907), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), [anon_sym_PLUS] = ACTIONS(907), [anon_sym_DASH] = ACTIONS(907), [anon_sym_PLUS_PLUS] = ACTIONS(909), [anon_sym_DASH_DASH] = ACTIONS(909), [anon_sym_BANG] = ACTIONS(909), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(555), }, - [1746] = { - [sym__expression] = STATE(2502), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1626] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1627] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1628] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1629] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1630] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1631] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1632] = { + [sym__expression] = STATE(704), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1747] = { - [sym__expression] = STATE(2495), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), + [1633] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1634] = { + [sym__expression] = STATE(1871), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(989), [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(999), [anon_sym_DASH] = ACTIONS(999), [anon_sym_PLUS_PLUS] = ACTIONS(1001), [anon_sym_DASH_DASH] = ACTIONS(1001), [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(639), }, - [1748] = { - [sym__expression] = STATE(2492), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), + [1635] = { + [sym__expression] = STATE(1892), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(989), [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(999), [anon_sym_DASH] = ACTIONS(999), [anon_sym_PLUS_PLUS] = ACTIONS(1001), [anon_sym_DASH_DASH] = ACTIONS(1001), [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(639), }, - [1749] = { - [sym__expression] = STATE(2512), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), + [1636] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1637] = { + [sym__expression] = STATE(1872), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(989), [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(999), [anon_sym_DASH] = ACTIONS(999), [anon_sym_PLUS_PLUS] = ACTIONS(1001), [anon_sym_DASH_DASH] = ACTIONS(1001), [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(639), }, - [1750] = { - [sym__expression] = STATE(2475), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), + [1638] = { + [sym__expression] = STATE(1673), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(989), [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(999), [anon_sym_DASH] = ACTIONS(999), [anon_sym_PLUS_PLUS] = ACTIONS(1001), [anon_sym_DASH_DASH] = ACTIONS(1001), [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(639), }, - [1751] = { - [sym__expression] = STATE(2488), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), + [1639] = { + [sym__expression] = STATE(400), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1640] = { + [sym__expression] = STATE(276), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1641] = { + [sym__expression] = STATE(1674), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(989), [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(999), [anon_sym_DASH] = ACTIONS(999), [anon_sym_PLUS_PLUS] = ACTIONS(1001), [anon_sym_DASH_DASH] = ACTIONS(1001), [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(639), }, - [1752] = { - [sym__expression] = STATE(2489), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), + [1642] = { + [sym__expression] = STATE(394), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1643] = { + [sym__expression] = STATE(392), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1644] = { + [sym__expression] = STATE(380), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1645] = { + [sym__expression] = STATE(388), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1646] = { + [sym__expression] = STATE(401), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1647] = { + [sym__expression] = STATE(390), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1648] = { + [sym__expression] = STATE(322), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1649] = { + [sym__expression] = STATE(389), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1650] = { + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1651] = { + [sym__expression] = STATE(391), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1652] = { + [sym__expression] = STATE(396), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1653] = { + [sym__expression] = STATE(397), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1654] = { + [sym__expression] = STATE(1686), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(989), [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(999), [anon_sym_DASH] = ACTIONS(999), [anon_sym_PLUS_PLUS] = ACTIONS(1001), [anon_sym_DASH_DASH] = ACTIONS(1001), [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(639), }, - [1753] = { - [sym__expression] = STATE(3851), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), + [1655] = { + [sym__expression] = STATE(405), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1656] = { + [sym__expression] = STATE(383), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1657] = { + [sym__expression] = STATE(3774), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), + [anon_sym_if] = ACTIONS(375), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -243425,1701 +232586,1903 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1754] = { - [sym__expression] = STATE(2494), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1658] = { + [sym__expression] = STATE(275), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1659] = { + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1755] = { - [sym__expression] = STATE(2519), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), + [1660] = { + [sym__expression] = STATE(319), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1661] = { + [sym__expression] = STATE(1688), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(989), [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(999), [anon_sym_DASH] = ACTIONS(999), [anon_sym_PLUS_PLUS] = ACTIONS(1001), [anon_sym_DASH_DASH] = ACTIONS(1001), [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(639), }, - [1756] = { - [sym__expression] = STATE(2478), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), + [1662] = { + [sym__expression] = STATE(1691), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(989), [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(999), [anon_sym_DASH] = ACTIONS(999), [anon_sym_PLUS_PLUS] = ACTIONS(1001), [anon_sym_DASH_DASH] = ACTIONS(1001), [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1757] = { - [sym__expression] = STATE(3852), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(639), }, - [1758] = { - [sym__expression] = STATE(3853), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [1663] = { + [sym__expression] = STATE(1575), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(639), }, - [1759] = { - [sym__expression] = STATE(2486), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), + [1664] = { + [sym__expression] = STATE(1723), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(989), [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(999), [anon_sym_DASH] = ACTIONS(999), [anon_sym_PLUS_PLUS] = ACTIONS(1001), [anon_sym_DASH_DASH] = ACTIONS(1001), [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1760] = { - [sym__expression] = STATE(4221), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1761] = { - [sym__expression] = STATE(722), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1762] = { - [sym__expression] = STATE(3854), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(639), }, - [1763] = { - [sym__expression] = STATE(2487), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), + [1665] = { + [sym__expression] = STATE(1724), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(989), [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(999), [anon_sym_DASH] = ACTIONS(999), [anon_sym_PLUS_PLUS] = ACTIONS(1001), [anon_sym_DASH_DASH] = ACTIONS(1001), [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1764] = { - [sym__expression] = STATE(3855), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(639), }, - [1765] = { - [sym__expression] = STATE(937), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), + [1666] = { + [sym__expression] = STATE(1725), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(989), [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(999), [anon_sym_DASH] = ACTIONS(999), [anon_sym_PLUS_PLUS] = ACTIONS(1001), [anon_sym_DASH_DASH] = ACTIONS(1001), [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1766] = { - [sym__expression] = STATE(3856), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(639), }, - [1767] = { - [sym__expression] = STATE(935), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), + [1667] = { + [sym__expression] = STATE(1726), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(989), [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(999), [anon_sym_DASH] = ACTIONS(999), [anon_sym_PLUS_PLUS] = ACTIONS(1001), [anon_sym_DASH_DASH] = ACTIONS(1001), [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(639), }, - [1768] = { - [sym__expression] = STATE(2483), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), + [1668] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1669] = { + [sym__expression] = STATE(1437), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(989), [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(999), [anon_sym_DASH] = ACTIONS(999), [anon_sym_PLUS_PLUS] = ACTIONS(1001), [anon_sym_DASH_DASH] = ACTIONS(1001), [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(639), }, - [1769] = { - [sym__expression] = STATE(3859), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [1670] = { + [sym__expression] = STATE(271), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1671] = { + [sym__expression] = STATE(274), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1672] = { + [sym__expression] = STATE(326), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1673] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_when] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), + }, + [1674] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3127), + [anon_sym_continue_AT] = ACTIONS(3127), + [anon_sym_break_AT] = ACTIONS(3127), + [anon_sym_this_AT] = ACTIONS(3127), + [anon_sym_super_AT] = ACTIONS(3127), + [sym_real_literal] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(3125), + [sym_hex_literal] = ACTIONS(3127), + [sym_bin_literal] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3127), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3127), + }, + [1675] = { + [sym__expression] = STATE(2281), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(639), }, - [1770] = { - [sym__expression] = STATE(3860), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), + [1676] = { + [sym__expression] = STATE(3773), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), + [anon_sym_if] = ACTIONS(375), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -245142,85 +234505,2610 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1771] = { - [sym__expression] = STATE(3863), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), + [1677] = { + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1678] = { + [sym__expression] = STATE(1200), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1679] = { + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1680] = { + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1681] = { + [sym__expression] = STATE(1196), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1682] = { + [sym__expression] = STATE(1195), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1683] = { + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1684] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(5644), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), + }, + [1685] = { + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1686] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3119), + }, + [1687] = { + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1688] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3138), + }, + [1689] = { + [sym__expression] = STATE(1230), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1690] = { + [sym__expression] = STATE(315), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1691] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), + }, + [1692] = { + [sym__expression] = STATE(2286), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1693] = { + [sym__expression] = STATE(1189), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1694] = { + [sym__expression] = STATE(273), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1695] = { + [sym__expression] = STATE(282), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1696] = { + [sym__expression] = STATE(281), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1697] = { + [sym__expression] = STATE(280), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1698] = { + [sym__expression] = STATE(279), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1699] = { + [sym__expression] = STATE(278), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1700] = { + [sym__expression] = STATE(277), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1701] = { + [sym__expression] = STATE(626), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1702] = { + [sym__expression] = STATE(4225), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), + [anon_sym_if] = ACTIONS(3074), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -245243,198 +237131,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1772] = { - [sym__expression] = STATE(886), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1773] = { - [sym__expression] = STATE(4499), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1703] = { + [sym__expression] = STATE(636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -245445,198 +237232,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1774] = { - [sym__expression] = STATE(946), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1775] = { - [sym__expression] = STATE(4465), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1704] = { + [sym__expression] = STATE(630), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -245647,602 +237333,602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1776] = { - [sym__expression] = STATE(4364), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [1705] = { + [sym__expression] = STATE(629), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(205), }, - [1777] = { - [sym__expression] = STATE(948), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1706] = { + [sym__expression] = STATE(1214), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1778] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1549), - [sym__alpha_identifier] = ACTIONS(4740), - [anon_sym_AT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4740), - [anon_sym_fun] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_where] = ACTIONS(4740), - [anon_sym_object] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4740), - [anon_sym_set] = ACTIONS(4740), - [anon_sym_this] = ACTIONS(4740), - [anon_sym_super] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4742), - [sym_label] = ACTIONS(4740), - [anon_sym_in] = ACTIONS(4740), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [anon_sym_QMARK_COLON] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_null] = ACTIONS(4740), - [anon_sym_if] = ACTIONS(4740), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_when] = ACTIONS(4740), - [anon_sym_try] = ACTIONS(4740), - [anon_sym_throw] = ACTIONS(4740), - [anon_sym_return] = ACTIONS(4740), - [anon_sym_continue] = ACTIONS(4740), - [anon_sym_break] = ACTIONS(4740), - [anon_sym_COLON_COLON] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT_EQ] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_BANGin] = ACTIONS(4742), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_BANGis] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4742), - [anon_sym_as_QMARK] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4742), - [anon_sym_BANG] = ACTIONS(4740), - [anon_sym_BANG_BANG] = ACTIONS(4742), - [anon_sym_suspend] = ACTIONS(4740), - [anon_sym_sealed] = ACTIONS(4740), - [anon_sym_annotation] = ACTIONS(4740), - [anon_sym_data] = ACTIONS(4740), - [anon_sym_inner] = ACTIONS(4740), - [anon_sym_value] = ACTIONS(4740), - [anon_sym_override] = ACTIONS(4740), - [anon_sym_lateinit] = ACTIONS(4740), - [anon_sym_public] = ACTIONS(4740), - [anon_sym_private] = ACTIONS(4740), - [anon_sym_internal] = ACTIONS(4740), - [anon_sym_protected] = ACTIONS(4740), - [anon_sym_tailrec] = ACTIONS(4740), - [anon_sym_operator] = ACTIONS(4740), - [anon_sym_infix] = ACTIONS(4740), - [anon_sym_inline] = ACTIONS(4740), - [anon_sym_external] = ACTIONS(4740), - [sym_property_modifier] = ACTIONS(4740), - [anon_sym_abstract] = ACTIONS(4740), - [anon_sym_final] = ACTIONS(4740), - [anon_sym_open] = ACTIONS(4740), - [anon_sym_vararg] = ACTIONS(4740), - [anon_sym_noinline] = ACTIONS(4740), - [anon_sym_crossinline] = ACTIONS(4740), - [anon_sym_expect] = ACTIONS(4740), - [anon_sym_actual] = ACTIONS(4740), + [1707] = { + [sym__expression] = STATE(2253), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4742), - [anon_sym_continue_AT] = ACTIONS(4742), - [anon_sym_break_AT] = ACTIONS(4742), - [anon_sym_this_AT] = ACTIONS(4742), - [anon_sym_super_AT] = ACTIONS(4742), - [sym_real_literal] = ACTIONS(4742), - [sym_integer_literal] = ACTIONS(4740), - [sym_hex_literal] = ACTIONS(4742), - [sym_bin_literal] = ACTIONS(4742), - [anon_sym_true] = ACTIONS(4740), - [anon_sym_false] = ACTIONS(4740), - [anon_sym_SQUOTE] = ACTIONS(4742), - [sym__backtick_identifier] = ACTIONS(4742), - [sym__automatic_semicolon] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4742), + [sym__string_start] = ACTIONS(205), }, - [1779] = { - [sym__expression] = STATE(885), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [1708] = { + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(4445), }, - [1780] = { - [sym__expression] = STATE(891), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1709] = { + [sym__expression] = STATE(2208), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1781] = { - [sym__expression] = STATE(3971), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1710] = { + [sym__expression] = STATE(2312), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -246253,97 +237939,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1782] = { - [sym__expression] = STATE(4054), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1711] = { + [sym__expression] = STATE(2256), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -246354,97 +238040,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1783] = { - [sym__expression] = STATE(4589), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1712] = { + [sym__expression] = STATE(473), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1713] = { + [sym__expression] = STATE(2315), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -246455,97 +238242,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1784] = { - [sym__expression] = STATE(3972), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1714] = { + [sym__expression] = STATE(628), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -246556,97 +238343,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1785] = { - [sym__expression] = STATE(3973), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1715] = { + [sym__expression] = STATE(4080), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1716] = { + [sym__expression] = STATE(2311), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -246657,97 +238545,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1786] = { - [sym__expression] = STATE(4585), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1717] = { + [sym__expression] = STATE(2309), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -246758,97 +238646,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1787] = { - [sym__expression] = STATE(3976), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1718] = { + [sym__expression] = STATE(2305), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -246859,198 +238747,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1788] = { - [sym__expression] = STATE(1289), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1789] = { - [sym__expression] = STATE(3977), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1719] = { + [sym__expression] = STATE(2301), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -247061,198 +238848,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1790] = { - [sym__expression] = STATE(893), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1791] = { - [sym__expression] = STATE(3980), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1720] = { + [sym__expression] = STATE(2299), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -247263,97 +238949,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1792] = { - [sym__expression] = STATE(3981), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1721] = { + [sym__expression] = STATE(2298), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -247364,97 +239050,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1793] = { - [sym__expression] = STATE(3982), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1722] = { + [sym__expression] = STATE(2296), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -247465,97 +239151,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1794] = { - [sym__expression] = STATE(3983), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1723] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), + }, + [1724] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3195), + [anon_sym_continue_AT] = ACTIONS(3195), + [anon_sym_break_AT] = ACTIONS(3195), + [anon_sym_this_AT] = ACTIONS(3195), + [anon_sym_super_AT] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_hex_literal] = ACTIONS(3195), + [sym_bin_literal] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3195), + }, + [1725] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3188), + }, + [1726] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3177), + }, + [1727] = { + [sym__expression] = STATE(2277), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -247566,299 +239656,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1795] = { - [sym__expression] = STATE(3951), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1728] = { + [sym__expression] = STATE(627), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1796] = { - [sym__expression] = STATE(3993), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1797] = { - [sym__expression] = STATE(4547), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -247869,198 +239757,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1798] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), + [1729] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3090), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3174), - [anon_sym_DASH_EQ] = ACTIONS(3174), - [anon_sym_STAR_EQ] = ACTIONS(3174), - [anon_sym_SLASH_EQ] = ACTIONS(3174), - [anon_sym_PERCENT_EQ] = ACTIONS(3174), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3172), - [anon_sym_sealed] = ACTIONS(3172), - [anon_sym_annotation] = ACTIONS(3172), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_lateinit] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_internal] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_tailrec] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_infix] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym_external] = ACTIONS(3172), - [sym_property_modifier] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_final] = ACTIONS(3172), - [anon_sym_open] = ACTIONS(3172), - [anon_sym_vararg] = ACTIONS(3172), - [anon_sym_noinline] = ACTIONS(3172), - [anon_sym_crossinline] = ACTIONS(3172), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [1799] = { - [sym__expression] = STATE(4103), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1730] = { + [sym__expression] = STATE(2284), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -248071,198 +239959,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1800] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5742), - [anon_sym_where] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3168), - [anon_sym_super] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5738), - [anon_sym_DOT_DOT] = ACTIONS(5730), - [anon_sym_QMARK_COLON] = ACTIONS(5736), - [anon_sym_AMP_AMP] = ACTIONS(5746), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [anon_sym_null] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_when] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5748), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5750), - [anon_sym_LT_EQ] = ACTIONS(5744), - [anon_sym_GT_EQ] = ACTIONS(5744), - [anon_sym_BANGin] = ACTIONS(5740), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3170), - [anon_sym_continue_AT] = ACTIONS(3170), - [anon_sym_break_AT] = ACTIONS(3170), - [anon_sym_this_AT] = ACTIONS(3170), - [anon_sym_super_AT] = ACTIONS(3170), - [sym_real_literal] = ACTIONS(3170), - [sym_integer_literal] = ACTIONS(3168), - [sym_hex_literal] = ACTIONS(3170), - [sym_bin_literal] = ACTIONS(3170), - [anon_sym_true] = ACTIONS(3168), - [anon_sym_false] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3170), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), - [sym_safe_nav] = ACTIONS(4567), + [1731] = { + [sym__expression] = STATE(472), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3170), + [sym__string_start] = ACTIONS(471), }, - [1801] = { - [sym__expression] = STATE(4104), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1732] = { + [sym__expression] = STATE(532), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1733] = { + [sym__expression] = STATE(2273), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -248273,299 +240262,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1802] = { - [sym__expression] = STATE(726), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1803] = { - [sym__expression] = STATE(542), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1804] = { - [sym__expression] = STATE(4513), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1734] = { + [sym__expression] = STATE(625), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -248576,97 +240363,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1805] = { - [sym__expression] = STATE(4102), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1799), - [sym_annotation] = STATE(1799), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1735] = { + [sym__expression] = STATE(631), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1287), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -248677,186 +240464,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1806] = { - [sym__expression] = STATE(2481), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1759), - [sym_annotation] = STATE(1759), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1807] = { - [sym__expression] = STATE(4341), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), + [1736] = { + [sym__expression] = STATE(4292), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3107), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -248879,97 +240565,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1808] = { - [sym__expression] = STATE(4542), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1737] = { + [sym__expression] = STATE(632), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -248980,299 +240666,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1809] = { - [sym__expression] = STATE(2231), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1810] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [1811] = { - [sym__expression] = STATE(4581), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1738] = { + [sym__expression] = STATE(633), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -249283,880 +240767,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1812] = { - [sym__expression] = STATE(1419), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1813] = { - [sym__expression] = STATE(781), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1814] = { - [sym__expression] = STATE(772), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1815] = { - [sym__expression] = STATE(1316), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1816] = { - [sym__expression] = STATE(787), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1817] = { - [sym__expression] = STATE(770), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1818] = { - [sym__expression] = STATE(791), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1819] = { - [sym__expression] = STATE(805), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1820] = { - [sym__expression] = STATE(3413), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1739] = { + [sym__expression] = STATE(634), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1283), [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1844), + [anon_sym_null] = ACTIONS(1594), [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -250170,18 +240846,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(177), [anon_sym_DASH_DASH] = ACTIONS(177), [anon_sym_BANG] = ACTIONS(177), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -250192,274 +240868,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1821] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5742), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3156), - [anon_sym_super] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5738), - [anon_sym_DOT_DOT] = ACTIONS(5730), - [anon_sym_QMARK_COLON] = ACTIONS(5736), - [anon_sym_AMP_AMP] = ACTIONS(5746), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [anon_sym_null] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_when] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5748), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5750), - [anon_sym_LT_EQ] = ACTIONS(5744), - [anon_sym_GT_EQ] = ACTIONS(5744), - [anon_sym_BANGin] = ACTIONS(5740), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3158), - [anon_sym_continue_AT] = ACTIONS(3158), - [anon_sym_break_AT] = ACTIONS(3158), - [anon_sym_this_AT] = ACTIONS(3158), - [anon_sym_super_AT] = ACTIONS(3158), - [sym_real_literal] = ACTIONS(3158), - [sym_integer_literal] = ACTIONS(3156), - [sym_hex_literal] = ACTIONS(3158), - [sym_bin_literal] = ACTIONS(3158), - [anon_sym_true] = ACTIONS(3156), - [anon_sym_false] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3158), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3158), - }, - [1822] = { - [sym__expression] = STATE(2560), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [1823] = { - [sym__expression] = STATE(3415), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1740] = { + [sym__expression] = STATE(635), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1283), [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1844), + [anon_sym_null] = ACTIONS(1594), [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -250473,18 +240947,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(177), [anon_sym_DASH_DASH] = ACTIONS(177), [anon_sym_BANG] = ACTIONS(177), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -250495,97 +240969,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1824] = { - [sym__expression] = STATE(2555), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1741] = { + [sym__expression] = STATE(4524), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -250596,884 +241070,581 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1825] = { - [sym__expression] = STATE(2230), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1826] = { - [sym__expression] = STATE(374), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), + [1742] = { + [sym__expression] = STATE(359), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1827] = { - [sym__expression] = STATE(1253), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [1828] = { - [sym__expression] = STATE(2291), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(471), }, - [1829] = { - [sym__expression] = STATE(2228), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [1743] = { + [sym__expression] = STATE(466), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(471), }, - [1830] = { - [sym__expression] = STATE(4620), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1744] = { + [sym__expression] = STATE(4398), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1831] = { - [sym__expression] = STATE(3414), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(161), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1745] = { + [sym__expression] = STATE(375), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(471), }, - [1832] = { - [sym__expression] = STATE(2227), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [1746] = { + [sym_type_constraints] = STATE(2248), + [sym_property_delegate] = STATE(2360), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5705), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5709), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), }, - [1833] = { - [sym_type_constraints] = STATE(2270), - [sym_property_delegate] = STATE(2424), - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [1747] = { + [sym_type_constraints] = STATE(2242), + [sym_property_delegate] = STATE(2351), + [sym_getter] = STATE(3600), + [sym_setter] = STATE(3600), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_RBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(5717), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_DASH_GT] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -251498,205 +241669,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [1834] = { - [sym_function_body] = STATE(1153), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_object] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), + [1748] = { + [sym__expression] = STATE(1233), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), + [sym__string_start] = ACTIONS(205), }, - [1835] = { - [sym__expression] = STATE(4433), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1749] = { + [sym__expression] = STATE(811), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -251707,299 +241878,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1836] = { - [sym__expression] = STATE(2559), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [1750] = { + [sym__expression] = STATE(1206), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1837] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), + [1751] = { + [sym__expression] = STATE(272), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1752] = { + [sym__expression] = STATE(802), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1753] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3173), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5742), - [anon_sym_where] = ACTIONS(3105), - [anon_sym_object] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3105), - [anon_sym_super] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5738), - [anon_sym_DOT_DOT] = ACTIONS(5730), - [anon_sym_QMARK_COLON] = ACTIONS(5736), - [anon_sym_AMP_AMP] = ACTIONS(5746), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_when] = ACTIONS(3105), - [anon_sym_try] = ACTIONS(3105), - [anon_sym_throw] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5748), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5750), - [anon_sym_LT_EQ] = ACTIONS(5744), - [anon_sym_GT_EQ] = ACTIONS(5744), - [anon_sym_BANGin] = ACTIONS(5740), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3107), - [anon_sym_continue_AT] = ACTIONS(3107), - [anon_sym_break_AT] = ACTIONS(3107), - [anon_sym_this_AT] = ACTIONS(3107), - [anon_sym_super_AT] = ACTIONS(3107), - [sym_real_literal] = ACTIONS(3107), - [sym_integer_literal] = ACTIONS(3105), - [sym_hex_literal] = ACTIONS(3107), - [sym_bin_literal] = ACTIONS(3107), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3173), + [anon_sym_DASH_EQ] = ACTIONS(3173), + [anon_sym_STAR_EQ] = ACTIONS(3173), + [anon_sym_SLASH_EQ] = ACTIONS(3173), + [anon_sym_PERCENT_EQ] = ACTIONS(3173), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), - [sym_safe_nav] = ACTIONS(4567), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3107), }, - [1838] = { - [sym__expression] = STATE(816), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1754] = { + [sym__expression] = STATE(4355), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -252010,97 +242383,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1839] = { - [sym__expression] = STATE(4586), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1755] = { + [sym__expression] = STATE(2216), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1756] = { + [sym__expression] = STATE(2292), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -252111,287 +242585,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1840] = { - [sym_type_constraints] = STATE(2272), - [sym_property_delegate] = STATE(2383), - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(5764), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - }, - [1841] = { - [sym__expression] = STATE(361), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [1757] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(4613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(3184), }, - [1842] = { - [sym__expression] = STATE(1664), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1679), - [sym_annotation] = STATE(1679), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), + [1758] = { + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), [anon_sym_get] = ACTIONS(1910), [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(907), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), [anon_sym_data] = ACTIONS(1910), [anon_sym_inner] = ACTIONS(1910), [anon_sym_value] = ACTIONS(1910), @@ -252399,112 +242772,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(639), }, - [1843] = { - [sym__expression] = STATE(3396), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1759] = { + [sym__expression] = STATE(806), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(161), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -252515,905 +242888,1208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1844] = { - [sym__expression] = STATE(363), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1760] = { + [sym__expression] = STATE(2224), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(555), }, - [1845] = { - [sym__expression] = STATE(364), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1761] = { + [sym__expression] = STATE(2226), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(555), }, - [1846] = { - [sym__expression] = STATE(365), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [1762] = { + [sym__expression] = STATE(2228), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1763] = { + [sym__expression] = STATE(2230), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1764] = { + [sym__expression] = STATE(2232), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1765] = { + [sym__expression] = STATE(471), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1847] = { - [sym_function_body] = STATE(1045), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [1766] = { + [sym__expression] = STATE(2234), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [1848] = { - [sym__expression] = STATE(1161), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1767] = { + [sym__expression] = STATE(2235), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1849] = { - [sym__expression] = STATE(1447), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1768] = { + [sym__expression] = STATE(2243), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1850] = { - [sym__expression] = STATE(1239), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [1769] = { + [sym__expression] = STATE(2245), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(555), }, - [1851] = { - [sym__expression] = STATE(1162), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1770] = { + [sym__expression] = STATE(2246), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1852] = { - [sym__expression] = STATE(3375), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1771] = { + [sym__expression] = STATE(800), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(161), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -253424,299 +244100,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1853] = { - [sym_function_body] = STATE(1199), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4453), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_object] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_this] = ACTIONS(4453), - [anon_sym_super] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4455), - [sym_label] = ACTIONS(4453), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_null] = ACTIONS(4453), - [anon_sym_if] = ACTIONS(4453), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_when] = ACTIONS(4453), - [anon_sym_try] = ACTIONS(4453), - [anon_sym_throw] = ACTIONS(4453), - [anon_sym_return] = ACTIONS(4453), - [anon_sym_continue] = ACTIONS(4453), - [anon_sym_break] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4455), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4453), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_suspend] = ACTIONS(4453), - [anon_sym_sealed] = ACTIONS(4453), - [anon_sym_annotation] = ACTIONS(4453), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4453), - [anon_sym_lateinit] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_internal] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_tailrec] = ACTIONS(4453), - [anon_sym_operator] = ACTIONS(4453), - [anon_sym_infix] = ACTIONS(4453), - [anon_sym_inline] = ACTIONS(4453), - [anon_sym_external] = ACTIONS(4453), - [sym_property_modifier] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_open] = ACTIONS(4453), - [anon_sym_vararg] = ACTIONS(4453), - [anon_sym_noinline] = ACTIONS(4453), - [anon_sym_crossinline] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4455), - [anon_sym_continue_AT] = ACTIONS(4455), - [anon_sym_break_AT] = ACTIONS(4455), - [anon_sym_this_AT] = ACTIONS(4455), - [anon_sym_super_AT] = ACTIONS(4455), - [sym_real_literal] = ACTIONS(4455), - [sym_integer_literal] = ACTIONS(4453), - [sym_hex_literal] = ACTIONS(4455), - [sym_bin_literal] = ACTIONS(4455), - [anon_sym_true] = ACTIONS(4453), - [anon_sym_false] = ACTIONS(4453), - [anon_sym_SQUOTE] = ACTIONS(4455), - [sym__backtick_identifier] = ACTIONS(4455), - [sym__automatic_semicolon] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4455), - }, - [1854] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5742), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5738), - [anon_sym_DOT_DOT] = ACTIONS(5730), - [anon_sym_QMARK_COLON] = ACTIONS(5736), - [anon_sym_AMP_AMP] = ACTIONS(5746), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5748), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5750), - [anon_sym_LT_EQ] = ACTIONS(5744), - [anon_sym_GT_EQ] = ACTIONS(5744), - [anon_sym_BANGin] = ACTIONS(5740), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [anon_sym_this_AT] = ACTIONS(3198), - [anon_sym_super_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [1855] = { - [sym__expression] = STATE(3370), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1772] = { + [sym__expression] = STATE(810), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(161), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -253727,501 +244201,703 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1856] = { - [sym__expression] = STATE(1163), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1773] = { + [sym__expression] = STATE(468), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1774] = { + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1857] = { - [sym_type_constraints] = STATE(2282), - [sym_property_delegate] = STATE(2395), - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(5766), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(5768), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_DASH_GT] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [1775] = { + [sym__expression] = STATE(465), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [1858] = { - [sym__expression] = STATE(4604), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1776] = { + [sym__expression] = STATE(2199), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(555), }, - [1859] = { - [sym__expression] = STATE(1174), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1777] = { + [sym__expression] = STATE(469), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1778] = { + [sym__expression] = STATE(2196), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1860] = { - [sym__expression] = STATE(4612), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1779] = { + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -254232,97 +244908,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1861] = { - [sym__expression] = STATE(3369), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1780] = { + [sym__expression] = STATE(476), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1781] = { + [sym__expression] = STATE(2480), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(161), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -254333,80 +245110,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1862] = { - [sym__expression] = STATE(4639), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1782] = { + [sym__expression] = STATE(467), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1783] = { + [sym__expression] = STATE(3755), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1784] = { + [sym__expression] = STATE(4282), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -254418,197 +245397,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1863] = { - [sym__expression] = STATE(3454), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1785] = { + [sym__expression] = STATE(4144), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(175), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(161), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1864] = { - [sym__expression] = STATE(4563), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1786] = { + [sym__expression] = STATE(4261), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -254620,113 +245599,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1865] = { - [sym__expression] = STATE(3362), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1787] = { + [sym__expression] = STATE(809), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(161), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -254737,299 +245716,602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1866] = { - [sym__expression] = STATE(3364), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1788] = { + [sym__expression] = STATE(4260), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(175), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(161), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1867] = { - [sym__expression] = STATE(3365), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1789] = { + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(175), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(161), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1868] = { - [sym__expression] = STATE(3367), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1790] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), + }, + [1791] = { + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1792] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_when] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_throw] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3090), + [anon_sym_continue_AT] = ACTIONS(3090), + [anon_sym_break_AT] = ACTIONS(3090), + [anon_sym_this_AT] = ACTIONS(3090), + [anon_sym_super_AT] = ACTIONS(3090), + [sym_real_literal] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [sym_hex_literal] = ACTIONS(3090), + [sym_bin_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), + }, + [1793] = { + [sym__expression] = STATE(2479), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(161), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -255040,97 +246322,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1869] = { - [sym__expression] = STATE(2534), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1794] = { + [sym__expression] = STATE(470), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1795] = { + [sym__expression] = STATE(4276), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -255141,97 +246524,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1870] = { - [sym__expression] = STATE(2539), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1796] = { + [sym__expression] = STATE(4279), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -255242,97 +246625,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1871] = { - [sym__expression] = STATE(2540), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1797] = { + [sym__expression] = STATE(4283), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -255343,97 +246726,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1872] = { - [sym__expression] = STATE(2541), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1798] = { + [sym__expression] = STATE(4284), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -255444,299 +246827,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1873] = { - [sym__expression] = STATE(3399), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1799] = { + [sym__expression] = STATE(461), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1800] = { + [sym__expression] = STATE(4265), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(161), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1874] = { - [sym__expression] = STATE(3402), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(161), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1875] = { - [sym__expression] = STATE(983), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -255747,80 +247029,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1876] = { - [sym__expression] = STATE(4641), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1801] = { + [sym__expression] = STATE(4269), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -255832,315 +247114,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1877] = { - [sym__expression] = STATE(1232), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [1878] = { - [sym_type_constraints] = STATE(2279), - [sym_property_delegate] = STATE(2372), - [sym_getter] = STATE(3471), - [sym_setter] = STATE(3471), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_RBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(5770), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_COMMA] = ACTIONS(3330), - [anon_sym_RPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(5772), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(3326), - [anon_sym_DASH_GT] = ACTIONS(3330), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_PLUS_EQ] = ACTIONS(3330), - [anon_sym_DASH_EQ] = ACTIONS(3330), - [anon_sym_STAR_EQ] = ACTIONS(3330), - [anon_sym_SLASH_EQ] = ACTIONS(3330), - [anon_sym_PERCENT_EQ] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), - [sym_multiline_comment] = ACTIONS(3), - }, - [1879] = { - [sym__expression] = STATE(2542), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -256151,198 +247130,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1880] = { - [sym__expression] = STATE(2546), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [1802] = { + [sym__expression] = STATE(463), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(471), }, - [1881] = { - [sym__expression] = STATE(2548), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1803] = { + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -256353,97 +247332,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1882] = { - [sym__expression] = STATE(2549), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1804] = { + [sym__expression] = STATE(475), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1805] = { + [sym__expression] = STATE(4271), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -256454,97 +247534,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1883] = { - [sym__expression] = STATE(2585), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1806] = { + [sym__expression] = STATE(474), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1807] = { + [sym_function_body] = STATE(1097), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), + }, + [1808] = { + [sym__expression] = STATE(4266), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -256555,97 +247837,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1884] = { - [sym__expression] = STATE(4621), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1809] = { + [sym__expression] = STATE(953), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -256656,97 +247938,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1885] = { - [sym__expression] = STATE(2584), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1810] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(2097), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), + }, + [1811] = { + [sym__expression] = STATE(3288), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -256757,400 +248140,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1886] = { - [sym__expression] = STATE(2623), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1887] = { - [sym__expression] = STATE(1182), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [1812] = { + [sym__expression] = STATE(4299), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(113), }, - [1888] = { - [sym__expression] = STATE(1042), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1813] = { + [sym__expression] = STATE(2190), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(555), }, - [1889] = { - [sym__expression] = STATE(4600), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1814] = { + [sym__expression] = STATE(959), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -257161,198 +248443,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1890] = { - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [1815] = { + [sym__expression] = STATE(478), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1816] = { + [sym__expression] = STATE(4048), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(113), }, - [1891] = { - [sym__expression] = STATE(4632), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1817] = { + [sym__expression] = STATE(962), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -257363,501 +248746,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1892] = { - [sym__expression] = STATE(288), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1893] = { - [sym__expression] = STATE(708), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1894] = { - [sym__expression] = STATE(295), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1895] = { - [sym__expression] = STATE(290), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1818] = { + [sym__expression] = STATE(4047), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1896] = { - [sym__expression] = STATE(4625), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1819] = { + [sym__expression] = STATE(926), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -257868,1309 +248948,905 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1897] = { - [sym__expression] = STATE(287), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1898] = { - [sym__expression] = STATE(293), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1899] = { - [sym__expression] = STATE(535), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1900] = { - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [1820] = { + [sym__expression] = STATE(4069), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [1901] = { - [sym__expression] = STATE(327), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1902] = { - [sym__expression] = STATE(1242), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [1821] = { + [sym__expression] = STATE(4072), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(113), }, - [1903] = { - [sym__expression] = STATE(324), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1822] = { + [sym__expression] = STATE(4067), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1904] = { - [sym__expression] = STATE(321), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1823] = { + [sym__expression] = STATE(4065), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1905] = { - [sym__expression] = STATE(315), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1824] = { + [sym__expression] = STATE(964), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(205), }, - [1906] = { - [sym__expression] = STATE(322), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1825] = { + [sym__expression] = STATE(4051), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [1907] = { - [sym__expression] = STATE(326), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1826] = { + [sym__expression] = STATE(2493), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(205), }, - [1908] = { - [sym__expression] = STATE(2575), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), + [1827] = { + [sym__expression] = STATE(2497), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), [anon_sym_throw] = ACTIONS(1704), [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(205), }, - [1909] = { - [sym__expression] = STATE(4548), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1828] = { + [sym__expression] = STATE(2500), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -259181,97 +249857,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1910] = { - [sym__expression] = STATE(4618), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1829] = { + [sym__expression] = STATE(2502), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -259282,198 +249958,602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1911] = { - [sym__expression] = STATE(822), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [1830] = { + [sym__expression] = STATE(4060), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(113), }, - [1912] = { - [sym__expression] = STATE(827), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1831] = { + [sym__expression] = STATE(4046), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1832] = { + [sym__expression] = STATE(4092), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1833] = { + [sym__expression] = STATE(4057), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1834] = { + [sym__expression] = STATE(965), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1835] = { + [sym__expression] = STATE(4471), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -259484,198 +250564,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1913] = { - [sym__expression] = STATE(1243), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [1836] = { + [sym__expression] = STATE(2511), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(205), }, - [1914] = { - [sym__expression] = STATE(4588), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1837] = { + [sym__expression] = STATE(2512), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -259686,97 +250766,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1915] = { - [sym__expression] = STATE(4503), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1838] = { + [sym__expression] = STATE(2514), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -259787,198 +250867,1107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1916] = { - [sym__expression] = STATE(366), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1839] = { + [sym__expression] = STATE(2516), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(205), }, - [1917] = { - [sym__expression] = STATE(817), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), + [1840] = { + [sym__expression] = STATE(2517), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1841] = { + [sym__expression] = STATE(304), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1842] = { + [sym__expression] = STATE(2519), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1843] = { + [sym__expression] = STATE(2570), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1844] = { + [sym__expression] = STATE(4053), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1845] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1846] = { + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1847] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1848] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1849] = { + [sym__expression] = STATE(4520), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -259989,97 +251978,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1918] = { - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1850] = { + [sym__expression] = STATE(4495), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -260090,97 +252079,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1919] = { - [sym__expression] = STATE(826), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1851] = { + [sym__expression] = STATE(4418), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -260191,400 +252180,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1920] = { - [sym__expression] = STATE(376), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1921] = { - [sym__expression] = STATE(534), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1922] = { - [sym__expression] = STATE(532), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1923] = { - [sym__expression] = STATE(824), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1852] = { + [sym__expression] = STATE(4420), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -260595,97 +252281,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1924] = { - [sym__expression] = STATE(823), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1853] = { + [sym__expression] = STATE(4422), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -260696,198 +252382,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1925] = { - [sym__expression] = STATE(4428), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1854] = { + [sym__expression] = STATE(4423), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1926] = { - [sym__expression] = STATE(991), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -260898,97 +252483,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1927] = { - [sym__expression] = STATE(970), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1855] = { + [sym__expression] = STATE(4427), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -260999,97 +252584,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1928] = { - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1856] = { + [sym__expression] = STATE(4429), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -261100,97 +252685,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1929] = { - [sym__expression] = STATE(1037), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1857] = { + [sym__expression] = STATE(4107), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -261201,97 +252786,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1930] = { - [sym__expression] = STATE(1234), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1858] = { + [sym__expression] = STATE(4438), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -261302,97 +252887,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1931] = { - [sym__expression] = STATE(1023), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1859] = { + [sym__expression] = STATE(4136), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -261403,80 +252988,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1932] = { - [sym__expression] = STATE(4539), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1860] = { + [sym__expression] = STATE(4439), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -261488,214 +253073,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1933] = { - [sym__expression] = STATE(4431), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1861] = { + [sym__expression] = STATE(4440), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1934] = { - [sym__expression] = STATE(954), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1862] = { + [sym__expression] = STATE(4444), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -261706,80 +253291,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1935] = { - [sym__expression] = STATE(4537), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1863] = { + [sym__expression] = STATE(4452), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -261791,399 +253376,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1936] = { - [sym__expression] = STATE(1421), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1937] = { - [sym__expression] = STATE(1433), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1938] = { - [sym__expression] = STATE(539), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(295), }, - [1939] = { - [sym__expression] = STATE(4521), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1864] = { + [sym__expression] = STATE(4456), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -262195,96 +253477,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1940] = { - [sym__expression] = STATE(4531), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1865] = { + [sym__expression] = STATE(4458), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -262296,500 +253578,500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1941] = { - [sym__expression] = STATE(528), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1866] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(2097), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(5719), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(4738), }, - [1942] = { - [sym__expression] = STATE(527), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1867] = { + [sym__expression] = STATE(4465), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(295), }, - [1943] = { - [sym__expression] = STATE(2226), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1868] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(1866), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(5719), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_object] = ACTIONS(4684), + [anon_sym_fun] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_this] = ACTIONS(4684), + [anon_sym_super] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4686), + [sym_label] = ACTIONS(4684), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(4684), + [anon_sym_if] = ACTIONS(4684), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_when] = ACTIONS(4684), + [anon_sym_try] = ACTIONS(4684), + [anon_sym_throw] = ACTIONS(4684), + [anon_sym_return] = ACTIONS(4684), + [anon_sym_continue] = ACTIONS(4684), + [anon_sym_break] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4686), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG] = ACTIONS(4684), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_suspend] = ACTIONS(4684), + [anon_sym_sealed] = ACTIONS(4684), + [anon_sym_annotation] = ACTIONS(4684), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_override] = ACTIONS(4684), + [anon_sym_lateinit] = ACTIONS(4684), + [anon_sym_public] = ACTIONS(4684), + [anon_sym_private] = ACTIONS(4684), + [anon_sym_internal] = ACTIONS(4684), + [anon_sym_protected] = ACTIONS(4684), + [anon_sym_tailrec] = ACTIONS(4684), + [anon_sym_operator] = ACTIONS(4684), + [anon_sym_infix] = ACTIONS(4684), + [anon_sym_inline] = ACTIONS(4684), + [anon_sym_external] = ACTIONS(4684), + [sym_property_modifier] = ACTIONS(4684), + [anon_sym_abstract] = ACTIONS(4684), + [anon_sym_final] = ACTIONS(4684), + [anon_sym_open] = ACTIONS(4684), + [anon_sym_vararg] = ACTIONS(4684), + [anon_sym_noinline] = ACTIONS(4684), + [anon_sym_crossinline] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4686), + [anon_sym_continue_AT] = ACTIONS(4686), + [anon_sym_break_AT] = ACTIONS(4686), + [anon_sym_this_AT] = ACTIONS(4686), + [anon_sym_super_AT] = ACTIONS(4686), + [sym_real_literal] = ACTIONS(4686), + [sym_integer_literal] = ACTIONS(4684), + [sym_hex_literal] = ACTIONS(4686), + [sym_bin_literal] = ACTIONS(4686), + [anon_sym_true] = ACTIONS(4684), + [anon_sym_false] = ACTIONS(4684), + [anon_sym_SQUOTE] = ACTIONS(4686), + [sym__backtick_identifier] = ACTIONS(4686), + [sym__automatic_semicolon] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4686), }, - [1944] = { - [sym__expression] = STATE(4220), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1869] = { + [sym__expression] = STATE(4463), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1945] = { - [sym__expression] = STATE(4528), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1870] = { + [sym__expression] = STATE(4400), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -262801,96 +254083,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1946] = { - [sym__expression] = STATE(4560), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1871] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), + }, + [1872] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3134), + }, + [1873] = { + [sym__expression] = STATE(4469), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -262902,214 +254386,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1947] = { - [sym__expression] = STATE(4219), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1874] = { + [sym__expression] = STATE(4470), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1948] = { - [sym__expression] = STATE(1254), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1875] = { + [sym__expression] = STATE(4480), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -263120,888 +254604,484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1949] = { - [sym__expression] = STATE(2237), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1950] = { - [sym__expression] = STATE(4436), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1876] = { + [sym__expression] = STATE(4481), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1951] = { - [sym__expression] = STATE(4243), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1877] = { + [sym__expression] = STATE(4483), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1952] = { - [sym__expression] = STATE(537), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1953] = { - [sym__expression] = STATE(784), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1954] = { - [sym__expression] = STATE(1250), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [1955] = { - [sym__expression] = STATE(529), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1878] = { + [sym__expression] = STATE(4484), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(295), }, - [1956] = { - [sym__expression] = STATE(530), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1879] = { + [sym__expression] = STATE(4485), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(295), }, - [1957] = { - [sym__expression] = STATE(4522), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1880] = { + [sym__expression] = STATE(4486), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -264013,96 +255093,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1958] = { - [sym__expression] = STATE(4561), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1881] = { + [sym__expression] = STATE(4487), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -264114,96 +255194,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1959] = { - [sym__expression] = STATE(4544), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1882] = { + [sym__expression] = STATE(4490), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -264215,12 +255295,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1883] = { + [sym__expression] = STATE(2531), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -264231,1393 +255412,1191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [1960] = { - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1961] = { - [sym__expression] = STATE(4427), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1884] = { + [sym__expression] = STATE(4491), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1962] = { - [sym__expression] = STATE(4447), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1885] = { + [sym__expression] = STATE(4493), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5774), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1963] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3194), - [anon_sym_DASH_EQ] = ACTIONS(3194), - [anon_sym_STAR_EQ] = ACTIONS(3194), - [anon_sym_SLASH_EQ] = ACTIONS(3194), - [anon_sym_PERCENT_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3192), - [anon_sym_sealed] = ACTIONS(3192), - [anon_sym_annotation] = ACTIONS(3192), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_lateinit] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_internal] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_tailrec] = ACTIONS(3192), - [anon_sym_operator] = ACTIONS(3192), - [anon_sym_infix] = ACTIONS(3192), - [anon_sym_inline] = ACTIONS(3192), - [anon_sym_external] = ACTIONS(3192), - [sym_property_modifier] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_final] = ACTIONS(3192), - [anon_sym_open] = ACTIONS(3192), - [anon_sym_vararg] = ACTIONS(3192), - [anon_sym_noinline] = ACTIONS(3192), - [anon_sym_crossinline] = ACTIONS(3192), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1886] = { + [sym__expression] = STATE(4494), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [1964] = { - [sym__expression] = STATE(385), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1887] = { + [sym__expression] = STATE(4466), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(295), }, - [1965] = { - [sym__expression] = STATE(4448), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1888] = { + [sym__expression] = STATE(4498), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1966] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [1889] = { + [sym__expression] = STATE(4502), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [1967] = { - [sym__expression] = STATE(793), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [1890] = { + [sym__expression] = STATE(4504), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(295), }, - [1968] = { - [sym__expression] = STATE(1422), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [1891] = { + [sym__expression] = STATE(4505), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(295), }, - [1969] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1712), - [sym__comparison_operator] = STATE(1710), - [sym__in_operator] = STATE(1709), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1708), - [sym__multiplicative_operator] = STATE(1707), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1706), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), + [1892] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3103), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3930), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_QMARK_COLON] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3940), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3188), - [anon_sym_sealed] = ACTIONS(3188), - [anon_sym_annotation] = ACTIONS(3188), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_lateinit] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_internal] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_tailrec] = ACTIONS(3188), - [anon_sym_operator] = ACTIONS(3188), - [anon_sym_infix] = ACTIONS(3188), - [anon_sym_inline] = ACTIONS(3188), - [anon_sym_external] = ACTIONS(3188), - [sym_property_modifier] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_final] = ACTIONS(3188), - [anon_sym_open] = ACTIONS(3188), - [anon_sym_vararg] = ACTIONS(3188), - [anon_sym_noinline] = ACTIONS(3188), - [anon_sym_crossinline] = ACTIONS(3188), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_super] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_when] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3103), + [anon_sym_continue_AT] = ACTIONS(3103), + [anon_sym_break_AT] = ACTIONS(3103), + [anon_sym_this_AT] = ACTIONS(3103), + [anon_sym_super_AT] = ACTIONS(3103), + [sym_real_literal] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(3101), + [sym_hex_literal] = ACTIONS(3103), + [sym_bin_literal] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3103), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(4613), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3103), }, - [1970] = { - [sym__expression] = STATE(4241), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1893] = { + [sym__expression] = STATE(4508), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1971] = { - [sym__expression] = STATE(1251), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [1894] = { + [sym__expression] = STATE(4509), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [1972] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5742), - [anon_sym_where] = ACTIONS(3192), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3192), - [anon_sym_super] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5738), - [anon_sym_DOT_DOT] = ACTIONS(5730), - [anon_sym_QMARK_COLON] = ACTIONS(5736), - [anon_sym_AMP_AMP] = ACTIONS(5746), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [anon_sym_null] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_when] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5748), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5750), - [anon_sym_LT_EQ] = ACTIONS(5744), - [anon_sym_GT_EQ] = ACTIONS(5744), - [anon_sym_BANGin] = ACTIONS(5740), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3194), - [anon_sym_continue_AT] = ACTIONS(3194), - [anon_sym_break_AT] = ACTIONS(3194), - [anon_sym_this_AT] = ACTIONS(3194), - [anon_sym_super_AT] = ACTIONS(3194), - [sym_real_literal] = ACTIONS(3194), - [sym_integer_literal] = ACTIONS(3192), - [sym_hex_literal] = ACTIONS(3194), - [sym_bin_literal] = ACTIONS(3194), - [anon_sym_true] = ACTIONS(3192), - [anon_sym_false] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3194), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), - [sym_safe_nav] = ACTIONS(4567), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3194), + [sym__string_start] = ACTIONS(295), }, - [1973] = { - [sym__expression] = STATE(4615), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1895] = { + [sym__expression] = STATE(4517), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -265629,96 +256608,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1974] = { - [sym__expression] = STATE(4595), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1896] = { + [sym__expression] = STATE(4518), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -265730,1308 +256709,904 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1975] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5742), - [anon_sym_where] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3188), - [anon_sym_super] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5738), - [anon_sym_DOT_DOT] = ACTIONS(5730), - [anon_sym_QMARK_COLON] = ACTIONS(5736), - [anon_sym_AMP_AMP] = ACTIONS(5746), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_when] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5748), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5750), - [anon_sym_LT_EQ] = ACTIONS(5744), - [anon_sym_GT_EQ] = ACTIONS(5744), - [anon_sym_BANGin] = ACTIONS(5740), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [anon_sym_this_AT] = ACTIONS(3190), - [anon_sym_super_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3188), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3188), - [anon_sym_false] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(4567), + [1897] = { + [sym__expression] = STATE(284), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [sym__string_start] = ACTIONS(471), }, - [1976] = { - [sym__expression] = STATE(367), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [1898] = { + [sym__expression] = STATE(290), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1977] = { - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [1899] = { + [sym__expression] = STATE(288), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(471), }, - [1978] = { - [sym__expression] = STATE(3885), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [1900] = { + [sym__expression] = STATE(287), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(471), }, - [1979] = { - [sym__expression] = STATE(2257), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [1901] = { + [sym__expression] = STATE(286), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(471), }, - [1980] = { - [sym__expression] = STATE(4365), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [1981] = { - [sym__expression] = STATE(4235), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1982] = { - [sym__expression] = STATE(704), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1983] = { - [sym__expression] = STATE(1107), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1984] = { - [sym__expression] = STATE(1453), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1985] = { - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), + [1902] = { + [sym__expression] = STATE(285), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1912), + [anon_sym_null] = ACTIONS(1666), [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), [anon_sym_throw] = ACTIONS(813), [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), [anon_sym_PLUS] = ACTIONS(817), [anon_sym_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(819), [anon_sym_DASH_DASH] = ACTIONS(819), [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(471), }, - [1986] = { - [sym__expression] = STATE(407), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [1903] = { + [sym__expression] = STATE(323), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1987] = { - [sym__expression] = STATE(4254), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1904] = { + [sym__expression] = STATE(324), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1905] = { + [sym__expression] = STATE(4114), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -267043,399 +257618,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1988] = { - [sym__expression] = STATE(1221), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [1906] = { + [sym__expression] = STATE(325), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(471), }, - [1989] = { - [sym__expression] = STATE(360), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [1907] = { + [sym__expression] = STATE(329), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1990] = { - [sym__expression] = STATE(368), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [1908] = { + [sym__expression] = STATE(327), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [1991] = { - [sym__expression] = STATE(4637), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1909] = { + [sym__expression] = STATE(4526), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -267447,399 +258022,702 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1992] = { - [sym__expression] = STATE(4530), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1910] = { + [sym__expression] = STATE(314), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(471), }, - [1993] = { - [sym__expression] = STATE(4532), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [1911] = { + [sym__expression] = STATE(1212), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(555), }, - [1994] = { - [sym__expression] = STATE(1223), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [1912] = { + [sym_function_body] = STATE(1085), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), + }, + [1913] = { + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [1914] = { + [sym__expression] = STATE(372), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(471), }, - [1995] = { - [sym__expression] = STATE(4624), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1915] = { + [sym__expression] = STATE(759), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1916] = { + [sym__expression] = STATE(4523), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -267851,96 +258729,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [1996] = { - [sym__expression] = STATE(4207), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1917] = { + [sym__expression] = STATE(4310), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -267952,303 +258830,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [1997] = { - [sym__expression] = STATE(536), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(295), }, - [1998] = { - [sym__expression] = STATE(4584), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [1918] = { + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, - [1999] = { - [sym__expression] = STATE(4346), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), + [1919] = { + [sym__expression] = STATE(4288), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3107), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -268271,85 +259048,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [2000] = { - [sym__expression] = STATE(4347), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), + [1920] = { + [sym__expression] = STATE(4290), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3107), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -268372,186 +259149,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [2001] = { - [sym__expression] = STATE(4636), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1921] = { + [sym__expression] = STATE(4297), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(113), }, - [2002] = { - [sym__expression] = STATE(4348), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), + [1922] = { + [sym__expression] = STATE(4285), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3107), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -268574,1006 +259351,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [2003] = { - [sym__expression] = STATE(4623), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1923] = { + [sym__expression] = STATE(4307), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(113), }, - [2004] = { - [sym__expression] = STATE(1230), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [1924] = { + [sym__expression] = STATE(4303), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(113), }, - [2005] = { - [sym__expression] = STATE(369), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2006] = { - [sym__expression] = STATE(4619), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2007] = { - [sym__expression] = STATE(4611), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2008] = { - [sym__expression] = STATE(4605), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2009] = { - [sym__expression] = STATE(783), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2010] = { - [sym__expression] = STATE(359), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [1925] = { + [sym__expression] = STATE(4298), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(113), }, - [2011] = { - [sym__expression] = STATE(4565), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1926] = { + [sym__expression] = STATE(4305), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(113), }, - [2012] = { - [sym__expression] = STATE(4602), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1927] = { + [sym__expression] = STATE(1753), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -269584,186 +259856,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [2013] = { - [sym__expression] = STATE(1418), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2014] = { - [sym__expression] = STATE(4350), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), + [1928] = { + [sym__expression] = STATE(4304), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3107), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -269786,97 +259957,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [2015] = { - [sym__expression] = STATE(4593), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1929] = { + [sym__expression] = STATE(376), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1930] = { + [sym__expression] = STATE(1729), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -269887,287 +260159,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [2016] = { - [sym__expression] = STATE(370), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2017] = { - [sym__expression] = STATE(806), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2018] = { - [sym__expression] = STATE(4352), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), + [1931] = { + [sym__expression] = STATE(4306), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3107), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -270190,181 +260260,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [2019] = { - [sym__expression] = STATE(2241), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2020] = { - [sym__expression] = STATE(4226), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1932] = { + [sym__expression] = STATE(4131), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -270376,96 +260345,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2021] = { - [sym__expression] = STATE(4429), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1933] = { + [sym__expression] = STATE(4110), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -270477,1022 +260446,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2022] = { - [sym__expression] = STATE(1444), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2023] = { - [sym__expression] = STATE(2299), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [2024] = { - [sym__expression] = STATE(379), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(295), }, - [2025] = { - [sym__expression] = STATE(377), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [1934] = { + [sym__expression] = STATE(462), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2026] = { - [sym__expression] = STATE(2238), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(471), }, - [2027] = { - [sym__expression] = STATE(378), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2024), - [sym_annotation] = STATE(2024), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [1935] = { + [sym__expression] = STATE(477), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(485), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2028] = { - [sym__expression] = STATE(807), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2029] = { - [sym__expression] = STATE(2550), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1836), - [sym_annotation] = STATE(1836), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [2030] = { - [sym__expression] = STATE(2303), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(471), }, - [2031] = { - [sym__expression] = STATE(4587), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1936] = { + [sym__expression] = STATE(717), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -271503,97 +260765,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [2032] = { - [sym__expression] = STATE(4546), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1937] = { + [sym__expression] = STATE(716), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -271604,97 +260866,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [2033] = { - [sym__expression] = STATE(4225), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1938] = { + [sym__expression] = STATE(714), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -271705,400 +260967,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [2034] = { - [sym__expression] = STATE(526), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2035] = { - [sym__expression] = STATE(1443), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2036] = { - [sym__expression] = STATE(1426), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2037] = { - [sym__expression] = STATE(4594), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1939] = { + [sym__expression] = STATE(721), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -272109,400 +261068,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [2038] = { - [sym__expression] = STATE(4614), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1940] = { + [sym__expression] = STATE(4108), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2039] = { - [sym__expression] = STATE(4607), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1941] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1942] = { + [sym__expression] = STATE(4124), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2040] = { - [sym__expression] = STATE(1227), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [1943] = { + [sym__expression] = STATE(378), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(471), }, - [2041] = { - [sym__expression] = STATE(4609), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1944] = { + [sym__expression] = STATE(715), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -272513,97 +261573,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [2042] = { - [sym__expression] = STATE(4424), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1945] = { + [sym__expression] = STATE(726), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -272614,97 +261674,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [2043] = { - [sym__expression] = STATE(4633), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1946] = { + [sym__expression] = STATE(738), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -272715,97 +261775,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [2044] = { - [sym__expression] = STATE(4631), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1947] = { + [sym__expression] = STATE(735), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -272816,703 +261876,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [2045] = { - [sym__expression] = STATE(1437), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2046] = { - [sym__expression] = STATE(1435), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2047] = { - [sym__expression] = STATE(1430), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2048] = { - [sym__expression] = STATE(1427), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2049] = { - [sym__expression] = STATE(1417), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2050] = { - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [2051] = { - [sym__expression] = STATE(4514), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1948] = { + [sym__expression] = STATE(734), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -273523,299 +261977,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [2052] = { - [sym__expression] = STATE(810), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2053] = { - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2054] = { - [sym__expression] = STATE(4591), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1949] = { + [sym__expression] = STATE(729), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -273826,97 +262078,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [2055] = { - [sym__expression] = STATE(4551), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1950] = { + [sym__expression] = STATE(712), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -273927,198 +262179,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [2056] = { - [sym__expression] = STATE(3845), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2057] = { - [sym__expression] = STATE(4426), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), + [1951] = { + [sym__expression] = STATE(725), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), [anon_sym_break_AT] = ACTIONS(187), [anon_sym_this_AT] = ACTIONS(189), [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), + [sym_real_literal] = ACTIONS(1596), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -274129,2117 +262280,2521 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [2058] = { - [sym__expression] = STATE(2320), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [1952] = { + [sym__expression] = STATE(299), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = ACTIONS(275), - [anon_sym_break_AT] = ACTIONS(277), - [anon_sym_this_AT] = ACTIONS(279), - [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(285), - [sym_hex_literal] = ACTIONS(287), - [sym_bin_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [sym__backtick_identifier] = ACTIONS(293), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(471), }, - [2059] = { - [sym__expression] = STATE(1049), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [1953] = { + [sym__expression] = STATE(379), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(471), }, - [2060] = { - [sym__expression] = STATE(4353), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [1954] = { + [sym__expression] = STATE(305), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(471), }, - [2061] = { - [sym__expression] = STATE(4562), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1955] = { + [sym__expression] = STATE(308), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(471), }, - [2062] = { - [sym__expression] = STATE(1152), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [1956] = { + [sym__expression] = STATE(310), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(471), }, - [2063] = { - [sym__expression] = STATE(1440), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), + [1957] = { + [sym__expression] = STATE(312), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1958] = { + [sym__expression] = STATE(300), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1959] = { + [sym__expression] = STATE(373), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1960] = { + [sym__expression] = STATE(878), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_data] = ACTIONS(1652), [anon_sym_inner] = ACTIONS(1652), [anon_sym_value] = ACTIONS(1652), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2064] = { - [sym__expression] = STATE(4540), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(555), }, - [2065] = { - [sym__expression] = STATE(4393), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1961] = { + [sym__expression] = STATE(306), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(471), }, - [2066] = { - [sym__expression] = STATE(4432), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1962] = { + [sym__expression] = STATE(307), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(471), }, - [2067] = { - [sym__expression] = STATE(4231), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1963] = { + [sym__expression] = STATE(311), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(471), }, - [2068] = { - [sym__expression] = STATE(4354), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [1964] = { + [sym__expression] = STATE(309), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(471), }, - [2069] = { - [sym__expression] = STATE(547), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [1965] = { + [sym__expression] = STATE(301), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [2070] = { - [sym__expression] = STATE(549), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2034), - [sym_annotation] = STATE(2034), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [1966] = { + [sym__expression] = STATE(883), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1967] = { + [sym__expression] = STATE(370), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1091), - [sym_label] = ACTIONS(1099), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [2071] = { - [sym__expression] = STATE(4622), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1968] = { + [sym__expression] = STATE(369), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(471), }, - [2072] = { - [sym__expression] = STATE(956), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [1969] = { + [sym__expression] = STATE(882), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(555), }, - [2073] = { - [sym__expression] = STATE(4355), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [1970] = { + [sym__expression] = STATE(881), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(555), }, - [2074] = { - [sym__expression] = STATE(4357), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [1971] = { + [sym__expression] = STATE(875), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(555), }, - [2075] = { - [sym__expression] = STATE(4583), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1972] = { + [sym__expression] = STATE(872), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(555), }, - [2076] = { - [sym__expression] = STATE(2334), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [1973] = { + [sym__expression] = STATE(870), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(555), }, - [2077] = { - [sym__expression] = STATE(4577), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), + [1974] = { + [sym__expression] = STATE(368), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(471), }, - [2078] = { - [sym__expression] = STATE(1246), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1975] = { + [sym__expression] = STATE(873), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1976] = { + [sym__expression] = STATE(4125), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -276250,80 +264805,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2079] = { - [sym__expression] = STATE(4230), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1977] = { + [sym__expression] = STATE(874), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1978] = { + [sym__expression] = STATE(876), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1979] = { + [sym__expression] = STATE(4126), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -276335,214 +265092,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2080] = { - [sym__expression] = STATE(4569), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2081] = { - [sym__expression] = STATE(818), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(253), - [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(261), - [anon_sym_break] = ACTIONS(261), - [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -276553,97 +265108,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2082] = { - [sym__expression] = STATE(820), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1980] = { + [sym__expression] = STATE(879), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1981] = { + [sym__expression] = STATE(880), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1982] = { + [sym__expression] = STATE(1413), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1983] = { + [sym__expression] = STATE(3289), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -276654,1176 +265512,671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2083] = { - [sym__expression] = STATE(4576), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1984] = { + [sym__expression] = STATE(3299), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2084] = { - [sym__expression] = STATE(4567), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2085] = { - [sym__expression] = STATE(2331), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [2086] = { - [sym__expression] = STATE(4564), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2087] = { - [sym__expression] = STATE(4555), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2088] = { - [sym__expression] = STATE(4554), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1985] = { + [sym__expression] = STATE(3296), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2089] = { - [sym__expression] = STATE(4549), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1986] = { + [sym__expression] = STATE(3330), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2090] = { - [sym__expression] = STATE(4543), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1987] = { + [sym__expression] = STATE(3328), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2091] = { - [sym__expression] = STATE(4573), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1988] = { + [sym__expression] = STATE(3333), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2092] = { - [sym__expression] = STATE(4535), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1989] = { + [sym__expression] = STATE(3335), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2093] = { - [sym__expression] = STATE(4414), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(295), }, - [2094] = { - [sym__expression] = STATE(4358), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), + [1990] = { + [sym__expression] = STATE(4230), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), [anon_sym_get] = ACTIONS(1920), [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), @@ -277831,11 +266184,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(961), [sym_label] = ACTIONS(969), [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3074), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), @@ -277866,173 +266219,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [2095] = { - [sym__expression] = STATE(4534), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1991] = { + [sym__expression] = STATE(3336), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2096] = { - [sym__expression] = STATE(1252), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1992] = { + [sym__expression] = STATE(3337), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1271), [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), + [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), @@ -278046,18 +266399,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(267), [anon_sym_DASH_DASH] = ACTIONS(267), [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -278068,72 +266421,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2097] = { - [sym__expression] = STATE(1245), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [1993] = { + [sym__expression] = STATE(3338), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1271), [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), + [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), @@ -278147,18 +266500,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(267), [anon_sym_DASH_DASH] = ACTIONS(267), [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -278169,484 +266522,383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2098] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1549), - [sym__alpha_identifier] = ACTIONS(4740), - [anon_sym_AT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4740), - [anon_sym_fun] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(5776), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_where] = ACTIONS(4740), - [anon_sym_object] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4740), - [anon_sym_set] = ACTIONS(4740), - [anon_sym_this] = ACTIONS(4740), - [anon_sym_super] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4742), - [sym_label] = ACTIONS(4740), - [anon_sym_in] = ACTIONS(4740), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [anon_sym_QMARK_COLON] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_null] = ACTIONS(4740), - [anon_sym_if] = ACTIONS(4740), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_when] = ACTIONS(4740), - [anon_sym_try] = ACTIONS(4740), - [anon_sym_throw] = ACTIONS(4740), - [anon_sym_return] = ACTIONS(4740), - [anon_sym_continue] = ACTIONS(4740), - [anon_sym_break] = ACTIONS(4740), - [anon_sym_COLON_COLON] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT_EQ] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_BANGin] = ACTIONS(4742), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_BANGis] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4742), - [anon_sym_as_QMARK] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4742), - [anon_sym_BANG] = ACTIONS(4740), - [anon_sym_BANG_BANG] = ACTIONS(4742), - [anon_sym_suspend] = ACTIONS(4740), - [anon_sym_sealed] = ACTIONS(4740), - [anon_sym_annotation] = ACTIONS(4740), - [anon_sym_data] = ACTIONS(4740), - [anon_sym_inner] = ACTIONS(4740), - [anon_sym_value] = ACTIONS(4740), - [anon_sym_override] = ACTIONS(4740), - [anon_sym_lateinit] = ACTIONS(4740), - [anon_sym_public] = ACTIONS(4740), - [anon_sym_private] = ACTIONS(4740), - [anon_sym_internal] = ACTIONS(4740), - [anon_sym_protected] = ACTIONS(4740), - [anon_sym_tailrec] = ACTIONS(4740), - [anon_sym_operator] = ACTIONS(4740), - [anon_sym_infix] = ACTIONS(4740), - [anon_sym_inline] = ACTIONS(4740), - [anon_sym_external] = ACTIONS(4740), - [sym_property_modifier] = ACTIONS(4740), - [anon_sym_abstract] = ACTIONS(4740), - [anon_sym_final] = ACTIONS(4740), - [anon_sym_open] = ACTIONS(4740), - [anon_sym_vararg] = ACTIONS(4740), - [anon_sym_noinline] = ACTIONS(4740), - [anon_sym_crossinline] = ACTIONS(4740), - [anon_sym_expect] = ACTIONS(4740), - [anon_sym_actual] = ACTIONS(4740), + [1994] = { + [sym__expression] = STATE(3339), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4742), - [anon_sym_continue_AT] = ACTIONS(4742), - [anon_sym_break_AT] = ACTIONS(4742), - [anon_sym_this_AT] = ACTIONS(4742), - [anon_sym_super_AT] = ACTIONS(4742), - [sym_real_literal] = ACTIONS(4742), - [sym_integer_literal] = ACTIONS(4740), - [sym_hex_literal] = ACTIONS(4742), - [sym_bin_literal] = ACTIONS(4742), - [anon_sym_true] = ACTIONS(4740), - [anon_sym_false] = ACTIONS(4740), - [anon_sym_SQUOTE] = ACTIONS(4742), - [sym__backtick_identifier] = ACTIONS(4742), - [sym__automatic_semicolon] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4742), - }, - [2099] = { - [sym_function_body] = STATE(1135), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_object] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_this] = ACTIONS(4518), - [anon_sym_super] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [sym_label] = ACTIONS(4518), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_null] = ACTIONS(4518), - [anon_sym_if] = ACTIONS(4518), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_when] = ACTIONS(4518), - [anon_sym_try] = ACTIONS(4518), - [anon_sym_throw] = ACTIONS(4518), - [anon_sym_return] = ACTIONS(4518), - [anon_sym_continue] = ACTIONS(4518), - [anon_sym_break] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4518), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_suspend] = ACTIONS(4518), - [anon_sym_sealed] = ACTIONS(4518), - [anon_sym_annotation] = ACTIONS(4518), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_override] = ACTIONS(4518), - [anon_sym_lateinit] = ACTIONS(4518), - [anon_sym_public] = ACTIONS(4518), - [anon_sym_private] = ACTIONS(4518), - [anon_sym_internal] = ACTIONS(4518), - [anon_sym_protected] = ACTIONS(4518), - [anon_sym_tailrec] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_infix] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym_external] = ACTIONS(4518), - [sym_property_modifier] = ACTIONS(4518), - [anon_sym_abstract] = ACTIONS(4518), - [anon_sym_final] = ACTIONS(4518), - [anon_sym_open] = ACTIONS(4518), - [anon_sym_vararg] = ACTIONS(4518), - [anon_sym_noinline] = ACTIONS(4518), - [anon_sym_crossinline] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4520), - [anon_sym_continue_AT] = ACTIONS(4520), - [anon_sym_break_AT] = ACTIONS(4520), - [anon_sym_this_AT] = ACTIONS(4520), - [anon_sym_super_AT] = ACTIONS(4520), - [sym_real_literal] = ACTIONS(4520), - [sym_integer_literal] = ACTIONS(4518), - [sym_hex_literal] = ACTIONS(4520), - [sym_bin_literal] = ACTIONS(4520), - [anon_sym_true] = ACTIONS(4518), - [anon_sym_false] = ACTIONS(4518), - [anon_sym_SQUOTE] = ACTIONS(4520), - [sym__backtick_identifier] = ACTIONS(4520), - [sym__automatic_semicolon] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4520), + [sym__string_start] = ACTIONS(295), }, - [2100] = { - [sym__expression] = STATE(4533), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1995] = { + [sym__expression] = STATE(4128), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2101] = { - [sym__expression] = STATE(4529), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1996] = { + [sym__expression] = STATE(3340), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(339), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2102] = { - [sym__expression] = STATE(4527), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1997] = { + [sym__expression] = STATE(4457), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -278658,96 +266910,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2103] = { - [sym__expression] = STATE(4524), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [1998] = { + [sym__expression] = STATE(4451), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -278759,197 +267011,500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2104] = { - [sym__expression] = STATE(4359), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1980), - [sym_annotation] = STATE(1980), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [1999] = { + [sym__expression] = STATE(364), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(471), }, - [2105] = { - [sym__expression] = STATE(4518), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2000] = { + [sym__expression] = STATE(4130), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [2001] = { + [sym__expression] = STATE(4141), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [2002] = { + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [2003] = { + [sym__expression] = STATE(4450), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -278961,96 +267516,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2106] = { - [sym__expression] = STATE(4525), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2004] = { + [sym__expression] = STATE(4445), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -279062,904 +267617,601 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2107] = { - [sym__expression] = STATE(4415), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(295), }, - [2108] = { - [sym__expression] = STATE(4400), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [2005] = { + [sym__expression] = STATE(4500), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(295), }, - [2109] = { - [sym__expression] = STATE(4399), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [2006] = { + [sym__expression] = STATE(366), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(471), }, - [2110] = { - [sym__expression] = STATE(4182), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [2007] = { + [sym__expression] = STATE(4499), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(295), }, - [2111] = { - [sym__expression] = STATE(2290), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [2008] = { + [sym__expression] = STATE(4492), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [2112] = { - [sym__expression] = STATE(4406), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [2009] = { + [sym__expression] = STATE(4442), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2113] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(2098), - [sym__alpha_identifier] = ACTIONS(4671), - [anon_sym_AT] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4673), - [anon_sym_as] = ACTIONS(4671), - [anon_sym_fun] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_RBRACE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(5776), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4671), - [anon_sym_where] = ACTIONS(4671), - [anon_sym_object] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_get] = ACTIONS(4671), - [anon_sym_set] = ACTIONS(4671), - [anon_sym_this] = ACTIONS(4671), - [anon_sym_super] = ACTIONS(4671), - [anon_sym_STAR] = ACTIONS(4673), - [sym_label] = ACTIONS(4671), - [anon_sym_in] = ACTIONS(4671), - [anon_sym_DOT_DOT] = ACTIONS(4673), - [anon_sym_QMARK_COLON] = ACTIONS(4673), - [anon_sym_AMP_AMP] = ACTIONS(4673), - [anon_sym_PIPE_PIPE] = ACTIONS(4673), - [anon_sym_null] = ACTIONS(4671), - [anon_sym_if] = ACTIONS(4671), - [anon_sym_else] = ACTIONS(4671), - [anon_sym_when] = ACTIONS(4671), - [anon_sym_try] = ACTIONS(4671), - [anon_sym_throw] = ACTIONS(4671), - [anon_sym_return] = ACTIONS(4671), - [anon_sym_continue] = ACTIONS(4671), - [anon_sym_break] = ACTIONS(4671), - [anon_sym_COLON_COLON] = ACTIONS(4673), - [anon_sym_BANG_EQ] = ACTIONS(4671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4673), - [anon_sym_EQ_EQ] = ACTIONS(4671), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4673), - [anon_sym_LT_EQ] = ACTIONS(4673), - [anon_sym_GT_EQ] = ACTIONS(4673), - [anon_sym_BANGin] = ACTIONS(4673), - [anon_sym_is] = ACTIONS(4671), - [anon_sym_BANGis] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4671), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4671), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_as_QMARK] = ACTIONS(4673), - [anon_sym_PLUS_PLUS] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4671), - [anon_sym_BANG_BANG] = ACTIONS(4673), - [anon_sym_suspend] = ACTIONS(4671), - [anon_sym_sealed] = ACTIONS(4671), - [anon_sym_annotation] = ACTIONS(4671), - [anon_sym_data] = ACTIONS(4671), - [anon_sym_inner] = ACTIONS(4671), - [anon_sym_value] = ACTIONS(4671), - [anon_sym_override] = ACTIONS(4671), - [anon_sym_lateinit] = ACTIONS(4671), - [anon_sym_public] = ACTIONS(4671), - [anon_sym_private] = ACTIONS(4671), - [anon_sym_internal] = ACTIONS(4671), - [anon_sym_protected] = ACTIONS(4671), - [anon_sym_tailrec] = ACTIONS(4671), - [anon_sym_operator] = ACTIONS(4671), - [anon_sym_infix] = ACTIONS(4671), - [anon_sym_inline] = ACTIONS(4671), - [anon_sym_external] = ACTIONS(4671), - [sym_property_modifier] = ACTIONS(4671), - [anon_sym_abstract] = ACTIONS(4671), - [anon_sym_final] = ACTIONS(4671), - [anon_sym_open] = ACTIONS(4671), - [anon_sym_vararg] = ACTIONS(4671), - [anon_sym_noinline] = ACTIONS(4671), - [anon_sym_crossinline] = ACTIONS(4671), - [anon_sym_expect] = ACTIONS(4671), - [anon_sym_actual] = ACTIONS(4671), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4673), - [anon_sym_continue_AT] = ACTIONS(4673), - [anon_sym_break_AT] = ACTIONS(4673), - [anon_sym_this_AT] = ACTIONS(4673), - [anon_sym_super_AT] = ACTIONS(4673), - [sym_real_literal] = ACTIONS(4673), - [sym_integer_literal] = ACTIONS(4671), - [sym_hex_literal] = ACTIONS(4673), - [sym_bin_literal] = ACTIONS(4673), - [anon_sym_true] = ACTIONS(4671), - [anon_sym_false] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4673), - [sym__backtick_identifier] = ACTIONS(4673), - [sym__automatic_semicolon] = ACTIONS(4673), - [sym_safe_nav] = ACTIONS(4673), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4673), - }, - [2114] = { - [sym_function_body] = STATE(1197), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [sym__string_start] = ACTIONS(295), }, - [2115] = { - [sym__expression] = STATE(4538), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2010] = { + [sym__expression] = STATE(4441), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -279971,399 +268223,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2116] = { - [sym__expression] = STATE(4169), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [2011] = { + [sym__expression] = STATE(4410), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(295), }, - [2117] = { - [sym__expression] = STATE(4170), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [2012] = { + [sym__expression] = STATE(4437), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(295), }, - [2118] = { - [sym__expression] = STATE(993), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [2013] = { + [sym__expression] = STATE(360), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(471), }, - [2119] = { - [sym__expression] = STATE(4526), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2014] = { + [sym__expression] = STATE(4433), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -280375,719 +268627,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2120] = { - [sym__expression] = STATE(4171), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2121] = { - [sym__expression] = STATE(4172), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2122] = { - [sym__expression] = STATE(3877), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2123] = { - [sym__expression] = STATE(4173), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2124] = { - [sym__expression] = STATE(4174), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(295), }, - [2125] = { - [sym__expression] = STATE(4470), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2015] = { + [sym__expression] = STATE(4432), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2126] = { - [sym__expression] = STATE(1255), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -281098,383 +268744,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2127] = { - [sym__expression] = STATE(2328), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [2128] = { - [sym__expression] = STATE(2327), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [2129] = { - [sym__expression] = STATE(2326), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [2130] = { - [sym__expression] = STATE(4397), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2016] = { + [sym__expression] = STATE(4431), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -281486,416 +268829,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2131] = { - [sym__expression] = STATE(1222), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2132] = { - [sym_function_body] = STATE(1043), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_fun] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_object] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_this] = ACTIONS(4530), - [anon_sym_super] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4532), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_null] = ACTIONS(4530), - [anon_sym_if] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_when] = ACTIONS(4530), - [anon_sym_try] = ACTIONS(4530), - [anon_sym_throw] = ACTIONS(4530), - [anon_sym_return] = ACTIONS(4530), - [anon_sym_continue] = ACTIONS(4530), - [anon_sym_break] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4532), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4530), - [anon_sym_sealed] = ACTIONS(4530), - [anon_sym_annotation] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_override] = ACTIONS(4530), - [anon_sym_lateinit] = ACTIONS(4530), - [anon_sym_public] = ACTIONS(4530), - [anon_sym_private] = ACTIONS(4530), - [anon_sym_internal] = ACTIONS(4530), - [anon_sym_protected] = ACTIONS(4530), - [anon_sym_tailrec] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_infix] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym_external] = ACTIONS(4530), - [sym_property_modifier] = ACTIONS(4530), - [anon_sym_abstract] = ACTIONS(4530), - [anon_sym_final] = ACTIONS(4530), - [anon_sym_open] = ACTIONS(4530), - [anon_sym_vararg] = ACTIONS(4530), - [anon_sym_noinline] = ACTIONS(4530), - [anon_sym_crossinline] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4532), - [anon_sym_continue_AT] = ACTIONS(4532), - [anon_sym_break_AT] = ACTIONS(4532), - [anon_sym_this_AT] = ACTIONS(4532), - [anon_sym_super_AT] = ACTIONS(4532), - [sym_real_literal] = ACTIONS(4532), - [sym_integer_literal] = ACTIONS(4530), - [sym_hex_literal] = ACTIONS(4532), - [sym_bin_literal] = ACTIONS(4532), - [anon_sym_true] = ACTIONS(4530), - [anon_sym_false] = ACTIONS(4530), - [anon_sym_SQUOTE] = ACTIONS(4532), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4532), - }, - [2133] = { - [sym__expression] = STATE(2324), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [2134] = { - [sym__expression] = STATE(1264), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [2017] = { + [sym__expression] = STATE(4430), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -281906,72 +268946,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2135] = { - [sym__expression] = STATE(1263), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [2018] = { + [sym__expression] = STATE(3310), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1271), [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), + [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), @@ -281985,18 +269025,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(267), [anon_sym_DASH_DASH] = ACTIONS(267), [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -282007,299 +269047,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2136] = { - [sym__expression] = STATE(4175), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2137] = { - [sym__expression] = STATE(2323), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [2138] = { - [sym__expression] = STATE(1262), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [2019] = { + [sym__expression] = STATE(4424), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -282310,476 +269148,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2139] = { - [sym__expression] = STATE(4176), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2140] = { - [sym__expression] = STATE(1048), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [2141] = { - [sym__expression] = STATE(4177), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2142] = { - [sym__expression] = STATE(4178), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2143] = { - [sym__expression] = STATE(1261), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [2020] = { + [sym__expression] = STATE(3278), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1271), [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), + [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), @@ -282793,18 +269227,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(267), [anon_sym_DASH_DASH] = ACTIONS(267), [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -282815,299 +269249,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2144] = { - [sym__expression] = STATE(4179), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(299), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1247), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2145] = { - [sym__expression] = STATE(3865), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(635), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(629), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_return] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2146] = { - [sym__expression] = STATE(1260), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [2021] = { + [sym__expression] = STATE(4421), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -283118,97 +269350,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2147] = { - [sym__expression] = STATE(1259), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [2022] = { + [sym__expression] = STATE(4415), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -283219,484 +269451,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2148] = { - [sym__expression] = STATE(2322), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [2149] = { - [sym__expression] = STATE(2321), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [2150] = { - [sym__expression] = STATE(4409), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2151] = { - [sym__expression] = STATE(2250), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1979), - [sym_annotation] = STATE(1979), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1297), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [2023] = { + [sym__expression] = STATE(367), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(471), }, - [2152] = { - [sym__expression] = STATE(4626), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2024] = { + [sym__expression] = STATE(4514), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -283708,517 +269637,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2153] = { - [sym__expression] = STATE(4411), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2154] = { - [sym__expression] = STATE(4413), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(295), }, - [2155] = { - [sym__expression] = STATE(4493), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5830), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [2025] = { + [sym__expression] = STATE(4512), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(5778), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2156] = { - [sym__expression] = STATE(2594), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1135), - [sym_label] = ACTIONS(1143), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(295), }, - [2157] = { - [sym__expression] = STATE(1258), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [2026] = { + [sym__expression] = STATE(4417), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -284229,198 +269855,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2158] = { - [sym__expression] = STATE(4462), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2027] = { + [sym__expression] = STATE(4511), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2159] = { - [sym__expression] = STATE(1257), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [2028] = { + [sym__expression] = STATE(4475), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -284431,97 +270057,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2160] = { - [sym__expression] = STATE(1256), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [2029] = { + [sym__expression] = STATE(4401), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -284532,501 +270158,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2161] = { - [sym__expression] = STATE(4421), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2162] = { - [sym__expression] = STATE(4403), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2163] = { - [sym__expression] = STATE(4401), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2164] = { - [sym__expression] = STATE(1432), - [sym__unary_expression] = STATE(4004), - [sym_postfix_expression] = STATE(4004), - [sym_call_expression] = STATE(4004), - [sym_indexing_expression] = STATE(4004), - [sym_navigation_expression] = STATE(4004), - [sym_prefix_expression] = STATE(4004), - [sym_as_expression] = STATE(4004), - [sym_spread_expression] = STATE(4004), - [sym__binary_expression] = STATE(4004), - [sym_multiplicative_expression] = STATE(4004), - [sym_additive_expression] = STATE(4004), - [sym_range_expression] = STATE(4004), - [sym_infix_expression] = STATE(4004), - [sym_elvis_expression] = STATE(4004), - [sym_check_expression] = STATE(4004), - [sym_comparison_expression] = STATE(4004), - [sym_equality_expression] = STATE(4004), - [sym_conjunction_expression] = STATE(4004), - [sym_disjunction_expression] = STATE(4004), - [sym__primary_expression] = STATE(4004), - [sym_parenthesized_expression] = STATE(4004), - [sym_collection_literal] = STATE(4004), - [sym__literal_constant] = STATE(4004), - [sym_string_literal] = STATE(4004), - [sym_lambda_literal] = STATE(4004), - [sym_anonymous_function] = STATE(4004), - [sym__function_literal] = STATE(4004), - [sym_object_literal] = STATE(4004), - [sym_this_expression] = STATE(4004), - [sym_super_expression] = STATE(4004), - [sym_if_expression] = STATE(4004), - [sym_when_expression] = STATE(4004), - [sym_try_expression] = STATE(4004), - [sym_jump_expression] = STATE(4004), - [sym_callable_reference] = STATE(4004), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(4001), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(4007), - [sym__break_at] = STATE(4007), - [sym__this_at] = STATE(4009), - [sym__super_at] = STATE(4003), - [sym_unsigned_literal] = STATE(4004), - [sym_long_literal] = STATE(4004), - [sym_boolean_literal] = STATE(4004), - [sym_character_literal] = STATE(4004), - [sym__lexical_identifier] = STATE(3366), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_object] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1281), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), + [2030] = { + [sym__expression] = STATE(4402), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__string_start] = ACTIONS(295), }, - [2165] = { - [sym__expression] = STATE(1216), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(2078), - [sym_annotation] = STATE(2078), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(252), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [2031] = { + [sym__expression] = STATE(4143), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1345), - [sym_label] = ACTIONS(265), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_return] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -285037,80 +270360,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2166] = { - [sym__expression] = STATE(4523), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2032] = { + [sym__expression] = STATE(4405), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -285122,96 +270445,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2167] = { - [sym__expression] = STATE(4638), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2033] = { + [sym__expression] = STATE(4411), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -285223,113 +270546,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2168] = { - [sym__expression] = STATE(821), - [sym__unary_expression] = STATE(3629), - [sym_postfix_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_indexing_expression] = STATE(3629), - [sym_navigation_expression] = STATE(3629), - [sym_prefix_expression] = STATE(3629), - [sym_as_expression] = STATE(3629), - [sym_spread_expression] = STATE(3629), - [sym__binary_expression] = STATE(3629), - [sym_multiplicative_expression] = STATE(3629), - [sym_additive_expression] = STATE(3629), - [sym_range_expression] = STATE(3629), - [sym_infix_expression] = STATE(3629), - [sym_elvis_expression] = STATE(3629), - [sym_check_expression] = STATE(3629), - [sym_comparison_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_conjunction_expression] = STATE(3629), - [sym_disjunction_expression] = STATE(3629), - [sym__primary_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_collection_literal] = STATE(3629), - [sym__literal_constant] = STATE(3629), - [sym_string_literal] = STATE(3629), - [sym_lambda_literal] = STATE(3629), - [sym_anonymous_function] = STATE(3629), - [sym__function_literal] = STATE(3629), - [sym_object_literal] = STATE(3629), - [sym_this_expression] = STATE(3629), - [sym_super_expression] = STATE(3629), - [sym_if_expression] = STATE(3629), - [sym_when_expression] = STATE(3629), - [sym_try_expression] = STATE(3629), - [sym_jump_expression] = STATE(3629), - [sym_callable_reference] = STATE(3629), - [sym__prefix_unary_operator] = STATE(1540), - [sym_annotation] = STATE(1540), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3634), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3627), - [sym__break_at] = STATE(3627), - [sym__this_at] = STATE(3625), - [sym__super_at] = STATE(3458), - [sym_unsigned_literal] = STATE(3629), - [sym_long_literal] = STATE(3629), - [sym_boolean_literal] = STATE(3629), - [sym_character_literal] = STATE(3629), - [sym__lexical_identifier] = STATE(3032), + [2034] = { + [sym__expression] = STATE(4425), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(225), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1630), - [anon_sym_set] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_data] = ACTIONS(1630), - [anon_sym_inner] = ACTIONS(1630), - [anon_sym_value] = ACTIONS(1630), - [anon_sym_expect] = ACTIONS(1630), - [anon_sym_actual] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(273), [anon_sym_continue_AT] = ACTIONS(275), [anon_sym_break_AT] = ACTIONS(277), [anon_sym_this_AT] = ACTIONS(279), [anon_sym_super_AT] = ACTIONS(281), - [sym_real_literal] = ACTIONS(1634), + [sym_real_literal] = ACTIONS(1846), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -285340,181 +270663,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [2169] = { - [sym__expression] = STATE(963), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [2170] = { - [sym__expression] = STATE(4515), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2035] = { + [sym__expression] = STATE(4426), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -285526,399 +270748,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2171] = { - [sym_type_constraints] = STATE(2248), - [sym_property_delegate] = STATE(2364), - [sym_getter] = STATE(4834), - [sym_setter] = STATE(4834), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_RBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(5780), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_COMMA] = ACTIONS(3330), - [anon_sym_RPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(5782), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(3326), - [anon_sym_DASH_GT] = ACTIONS(3330), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_PLUS_EQ] = ACTIONS(3330), - [anon_sym_DASH_EQ] = ACTIONS(3330), - [anon_sym_STAR_EQ] = ACTIONS(3330), - [anon_sym_SLASH_EQ] = ACTIONS(3330), - [anon_sym_PERCENT_EQ] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2172] = { - [sym__expression] = STATE(4498), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2020), - [sym_annotation] = STATE(2020), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2036] = { + [sym__expression] = STATE(4462), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(869), - [sym_label] = ACTIONS(877), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2173] = { - [sym_type_constraints] = STATE(2245), - [sym_property_delegate] = STATE(2403), - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(5788), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(5790), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_DASH_GT] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2037] = { + [sym__expression] = STATE(4464), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2174] = { - [sym__expression] = STATE(4394), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2038] = { + [sym__expression] = STATE(4474), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -285930,500 +271051,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2175] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1670), - [sym__in_operator] = STATE(1668), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1666), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1665), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5742), - [anon_sym_where] = ACTIONS(3101), - [anon_sym_object] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3101), - [anon_sym_super] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(5728), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5738), - [anon_sym_DOT_DOT] = ACTIONS(5730), - [anon_sym_QMARK_COLON] = ACTIONS(5736), - [anon_sym_AMP_AMP] = ACTIONS(5746), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_when] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5748), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5750), - [anon_sym_LT_EQ] = ACTIONS(5744), - [anon_sym_GT_EQ] = ACTIONS(5744), - [anon_sym_BANGin] = ACTIONS(5740), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3103), - [anon_sym_continue_AT] = ACTIONS(3103), - [anon_sym_break_AT] = ACTIONS(3103), - [anon_sym_this_AT] = ACTIONS(3103), - [anon_sym_super_AT] = ACTIONS(3103), - [sym_real_literal] = ACTIONS(3103), - [sym_integer_literal] = ACTIONS(3101), - [sym_hex_literal] = ACTIONS(3103), - [sym_bin_literal] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3101), - [anon_sym_false] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3103), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3103), - }, - [2176] = { - [sym__expression] = STATE(4412), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2177] = { - [sym_type_constraints] = STATE(2242), - [sym_property_delegate] = STATE(2422), - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(5792), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - }, - [2178] = { - [sym__expression] = STATE(1030), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [2179] = { - [sym__expression] = STATE(4541), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2039] = { + [sym__expression] = STATE(4478), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -286435,197 +271152,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2180] = { - [sym__expression] = STATE(986), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [2181] = { - [sym__expression] = STATE(4392), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2040] = { + [sym__expression] = STATE(4479), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -286637,399 +271253,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2182] = { - [sym_type_constraints] = STATE(2235), - [sym_property_delegate] = STATE(2428), - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(5794), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2183] = { - [sym__expression] = STATE(3378), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(1831), - [sym_annotation] = STATE(1831), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2041] = { + [sym__expression] = STATE(4513), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_fun] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1237), - [sym_label] = ACTIONS(175), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(161), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2184] = { - [sym__expression] = STATE(987), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [2185] = { - [sym__expression] = STATE(4385), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2042] = { + [sym__expression] = STATE(4516), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -287041,702 +271455,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2186] = { - [sym__expression] = STATE(388), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2187] = { - [sym__expression] = STATE(988), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [2188] = { - [sym__expression] = STATE(384), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2189] = { - [sym__expression] = STATE(382), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2190] = { - [sym__expression] = STATE(395), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2191] = { - [sym__expression] = STATE(989), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [2192] = { - [sym__expression] = STATE(4390), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2043] = { + [sym__expression] = STATE(4507), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -287748,702 +271556,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2193] = { - [sym__expression] = STATE(396), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2194] = { - [sym__expression] = STATE(397), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2195] = { - [sym__expression] = STATE(381), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2196] = { - [sym__expression] = STATE(405), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2197] = { - [sym__expression] = STATE(399), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2198] = { - [sym__expression] = STATE(394), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(295), }, - [2199] = { - [sym__expression] = STATE(4388), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2044] = { + [sym__expression] = STATE(4515), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -288455,298 +271657,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2200] = { - [sym__expression] = STATE(387), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2201] = { - [sym__expression] = STATE(386), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(295), }, - [2202] = { - [sym__expression] = STATE(4378), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2045] = { + [sym__expression] = STATE(4510), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -288758,298 +271758,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2203] = { - [sym__expression] = STATE(992), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [2204] = { - [sym__expression] = STATE(393), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), + [2046] = { + [sym__expression] = STATE(4489), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(295), }, - [2205] = { - [sym__expression] = STATE(4386), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2047] = { + [sym__expression] = STATE(4488), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -289061,197 +271960,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2206] = { - [sym_type_constraints] = STATE(2229), - [sym_property_delegate] = STATE(2430), - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(5796), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_DASH_GT] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - }, - [2207] = { - [sym__expression] = STATE(4556), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2048] = { + [sym__expression] = STATE(4459), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -289263,803 +272061,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), - }, - [2208] = { - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [2209] = { - [sym__expression] = STATE(2304), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [2210] = { - [sym__expression] = STATE(1229), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(1850), - [sym_annotation] = STATE(1850), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1327), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), - }, - [2211] = { - [sym__expression] = STATE(949), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [2212] = { - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [2049] = { + [sym__expression] = STATE(4447), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [2213] = { - [sym__expression] = STATE(999), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [2050] = { + [sym__expression] = STATE(4446), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [2214] = { - [sym__expression] = STATE(1000), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [2051] = { + [sym__expression] = STATE(4309), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [2215] = { - [sym__expression] = STATE(4592), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2052] = { + [sym__expression] = STATE(4275), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -290071,298 +272465,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2216] = { - [sym__expression] = STATE(965), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2216), - [sym_annotation] = STATE(2216), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(569), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(555), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [2053] = { + [sym__expression] = STATE(361), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(471), }, - [2217] = { - [sym__expression] = STATE(406), - [sym__unary_expression] = STATE(1112), - [sym_postfix_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_indexing_expression] = STATE(1112), - [sym_navigation_expression] = STATE(1112), - [sym_prefix_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_spread_expression] = STATE(1112), - [sym__binary_expression] = STATE(1112), - [sym_multiplicative_expression] = STATE(1112), - [sym_additive_expression] = STATE(1112), - [sym_range_expression] = STATE(1112), - [sym_infix_expression] = STATE(1112), - [sym_elvis_expression] = STATE(1112), - [sym_check_expression] = STATE(1112), - [sym_comparison_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_conjunction_expression] = STATE(1112), - [sym_disjunction_expression] = STATE(1112), - [sym__primary_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_collection_literal] = STATE(1112), - [sym__literal_constant] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_lambda_literal] = STATE(1112), - [sym_anonymous_function] = STATE(1112), - [sym__function_literal] = STATE(1112), - [sym_object_literal] = STATE(1112), - [sym_this_expression] = STATE(1112), - [sym_super_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_when_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_jump_expression] = STATE(1112), - [sym_callable_reference] = STATE(1112), - [sym__prefix_unary_operator] = STATE(2201), - [sym_annotation] = STATE(2201), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(1108), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1118), - [sym__break_at] = STATE(1118), - [sym__this_at] = STATE(1122), - [sym__super_at] = STATE(1110), - [sym_unsigned_literal] = STATE(1112), - [sym_long_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_character_literal] = STATE(1112), - [sym__lexical_identifier] = STATE(829), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_object] = ACTIONS(1662), + [2054] = { + [sym__expression] = STATE(374), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(785), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_data] = ACTIONS(1664), [anon_sym_inner] = ACTIONS(1664), [anon_sym_value] = ACTIONS(1664), [anon_sym_expect] = ACTIONS(1664), [anon_sym_actual] = ACTIONS(1664), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(471), }, - [2218] = { - [sym__expression] = STATE(4377), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2055] = { + [sym__expression] = STATE(4434), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -290374,96 +272768,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2219] = { - [sym__expression] = STATE(4382), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2056] = { + [sym__expression] = STATE(4428), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -290475,298 +272869,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2220] = { - [sym__expression] = STATE(4410), - [sym__unary_expression] = STATE(5229), - [sym_postfix_expression] = STATE(5229), - [sym_call_expression] = STATE(5229), - [sym_indexing_expression] = STATE(5229), - [sym_navigation_expression] = STATE(5229), - [sym_prefix_expression] = STATE(5229), - [sym_as_expression] = STATE(5229), - [sym_spread_expression] = STATE(5229), - [sym__binary_expression] = STATE(5229), - [sym_multiplicative_expression] = STATE(5229), - [sym_additive_expression] = STATE(5229), - [sym_range_expression] = STATE(5229), - [sym_infix_expression] = STATE(5229), - [sym_elvis_expression] = STATE(5229), - [sym_check_expression] = STATE(5229), - [sym_comparison_expression] = STATE(5229), - [sym_equality_expression] = STATE(5229), - [sym_conjunction_expression] = STATE(5229), - [sym_disjunction_expression] = STATE(5229), - [sym__primary_expression] = STATE(5229), - [sym_parenthesized_expression] = STATE(5229), - [sym_collection_literal] = STATE(5229), - [sym__literal_constant] = STATE(5229), - [sym_string_literal] = STATE(5229), - [sym_lambda_literal] = STATE(5229), - [sym_anonymous_function] = STATE(5229), - [sym__function_literal] = STATE(5229), - [sym_object_literal] = STATE(5229), - [sym_this_expression] = STATE(5229), - [sym_super_expression] = STATE(5229), - [sym_if_expression] = STATE(5229), - [sym_when_expression] = STATE(5229), - [sym_try_expression] = STATE(5229), - [sym_jump_expression] = STATE(5229), - [sym_callable_reference] = STATE(5229), - [sym__prefix_unary_operator] = STATE(1582), - [sym_annotation] = STATE(1582), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(5337), - [sym__return_at] = STATE(372), - [sym__continue_at] = STATE(5222), - [sym__break_at] = STATE(5222), - [sym__this_at] = STATE(5219), - [sym__super_at] = STATE(5233), - [sym_unsigned_literal] = STATE(5229), - [sym_long_literal] = STATE(5229), - [sym_boolean_literal] = STATE(5229), - [sym_character_literal] = STATE(5229), - [sym__lexical_identifier] = STATE(4726), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_object] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [2057] = { + [sym__expression] = STATE(4416), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(295), }, - [2221] = { - [sym__expression] = STATE(2311), - [sym__unary_expression] = STATE(3235), - [sym_postfix_expression] = STATE(3235), - [sym_call_expression] = STATE(3235), - [sym_indexing_expression] = STATE(3235), - [sym_navigation_expression] = STATE(3235), - [sym_prefix_expression] = STATE(3235), - [sym_as_expression] = STATE(3235), - [sym_spread_expression] = STATE(3235), - [sym__binary_expression] = STATE(3235), - [sym_multiplicative_expression] = STATE(3235), - [sym_additive_expression] = STATE(3235), - [sym_range_expression] = STATE(3235), - [sym_infix_expression] = STATE(3235), - [sym_elvis_expression] = STATE(3235), - [sym_check_expression] = STATE(3235), - [sym_comparison_expression] = STATE(3235), - [sym_equality_expression] = STATE(3235), - [sym_conjunction_expression] = STATE(3235), - [sym_disjunction_expression] = STATE(3235), - [sym__primary_expression] = STATE(3235), - [sym_parenthesized_expression] = STATE(3235), - [sym_collection_literal] = STATE(3235), - [sym__literal_constant] = STATE(3235), - [sym_string_literal] = STATE(3235), - [sym_lambda_literal] = STATE(3235), - [sym_anonymous_function] = STATE(3235), - [sym__function_literal] = STATE(3235), - [sym_object_literal] = STATE(3235), - [sym_this_expression] = STATE(3235), - [sym_super_expression] = STATE(3235), - [sym_if_expression] = STATE(3235), - [sym_when_expression] = STATE(3235), - [sym_try_expression] = STATE(3235), - [sym_jump_expression] = STATE(3235), - [sym_callable_reference] = STATE(3235), - [sym__prefix_unary_operator] = STATE(2221), - [sym_annotation] = STATE(2221), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), - [sym_simple_identifier] = STATE(3146), - [sym__return_at] = STATE(375), - [sym__continue_at] = STATE(3239), - [sym__break_at] = STATE(3239), - [sym__this_at] = STATE(3249), - [sym__super_at] = STATE(3225), - [sym_unsigned_literal] = STATE(3235), - [sym_long_literal] = STATE(3235), - [sym_boolean_literal] = STATE(3235), - [sym_character_literal] = STATE(3235), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_fun] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_object] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(539), - [anon_sym_super] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_when] = ACTIONS(557), - [anon_sym_try] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_data] = ACTIONS(1910), - [anon_sym_inner] = ACTIONS(1910), - [anon_sym_value] = ACTIONS(1910), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [2058] = { + [sym__expression] = STATE(4321), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(577), - [anon_sym_break_AT] = ACTIONS(579), - [anon_sym_this_AT] = ACTIONS(581), - [anon_sym_super_AT] = ACTIONS(583), - [sym_real_literal] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(587), - [sym_hex_literal] = ACTIONS(589), - [sym_bin_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(593), - [sym__backtick_identifier] = ACTIONS(595), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(597), + [sym__string_start] = ACTIONS(295), }, - [2222] = { - [sym__expression] = STATE(4376), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2059] = { + [sym__expression] = STATE(4413), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -290778,96 +273172,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2223] = { - [sym__expression] = STATE(4380), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2060] = { + [sym__expression] = STATE(4412), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -290879,96 +273273,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2224] = { - [sym__expression] = STATE(4381), - [sym__unary_expression] = STATE(4919), - [sym_postfix_expression] = STATE(4919), - [sym_call_expression] = STATE(4919), - [sym_indexing_expression] = STATE(4919), - [sym_navigation_expression] = STATE(4919), - [sym_prefix_expression] = STATE(4919), - [sym_as_expression] = STATE(4919), - [sym_spread_expression] = STATE(4919), - [sym__binary_expression] = STATE(4919), - [sym_multiplicative_expression] = STATE(4919), - [sym_additive_expression] = STATE(4919), - [sym_range_expression] = STATE(4919), - [sym_infix_expression] = STATE(4919), - [sym_elvis_expression] = STATE(4919), - [sym_check_expression] = STATE(4919), - [sym_comparison_expression] = STATE(4919), - [sym_equality_expression] = STATE(4919), - [sym_conjunction_expression] = STATE(4919), - [sym_disjunction_expression] = STATE(4919), - [sym__primary_expression] = STATE(4919), - [sym_parenthesized_expression] = STATE(4919), - [sym_collection_literal] = STATE(4919), - [sym__literal_constant] = STATE(4919), - [sym_string_literal] = STATE(4919), - [sym_lambda_literal] = STATE(4919), - [sym_anonymous_function] = STATE(4919), - [sym__function_literal] = STATE(4919), - [sym_object_literal] = STATE(4919), - [sym_this_expression] = STATE(4919), - [sym_super_expression] = STATE(4919), - [sym_if_expression] = STATE(4919), - [sym_when_expression] = STATE(4919), - [sym_try_expression] = STATE(4919), - [sym_jump_expression] = STATE(4919), - [sym_callable_reference] = STATE(4919), - [sym__prefix_unary_operator] = STATE(2218), - [sym_annotation] = STATE(2218), - [sym__single_annotation] = STATE(5754), - [sym__multi_annotation] = STATE(5754), + [2061] = { + [sym__expression] = STATE(4409), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(4865), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4882), - [sym__break_at] = STATE(4882), - [sym__this_at] = STATE(4871), - [sym__super_at] = STATE(4932), - [sym_unsigned_literal] = STATE(4919), - [sym_long_literal] = STATE(4919), - [sym_boolean_literal] = STATE(4919), - [sym_character_literal] = STATE(4919), - [sym__lexical_identifier] = STATE(4661), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(119), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_object] = ACTIONS(1840), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(163), - [anon_sym_try] = ACTIONS(165), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), [anon_sym_PLUS_PLUS] = ACTIONS(341), @@ -290980,491 +273374,698 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1842), [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [anon_sym_continue_AT] = ACTIONS(185), - [anon_sym_break_AT] = ACTIONS(187), - [anon_sym_this_AT] = ACTIONS(189), - [anon_sym_super_AT] = ACTIONS(191), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(195), - [sym_hex_literal] = ACTIONS(197), - [sym_bin_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(203), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(295), }, - [2225] = { - [sym_primary_constructor] = STATE(4886), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(2325), - [sym_type_constraints] = STATE(4754), - [sym_enum_class_body] = STATE(4888), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5798), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2062] = { + [sym__expression] = STATE(4403), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - }, - [2226] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3149), - [anon_sym_sealed] = ACTIONS(3149), - [anon_sym_annotation] = ACTIONS(3149), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3149), - [anon_sym_lateinit] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_internal] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_tailrec] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_infix] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym_external] = ACTIONS(3149), - [sym_property_modifier] = ACTIONS(3149), - [anon_sym_abstract] = ACTIONS(3149), - [anon_sym_final] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_vararg] = ACTIONS(3149), - [anon_sym_noinline] = ACTIONS(3149), - [anon_sym_crossinline] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2227] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2063] = { + [sym__expression] = STATE(4314), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2228] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3145), - [anon_sym_sealed] = ACTIONS(3145), - [anon_sym_annotation] = ACTIONS(3145), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_lateinit] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_tailrec] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym_external] = ACTIONS(3145), - [sym_property_modifier] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_vararg] = ACTIONS(3145), - [anon_sym_noinline] = ACTIONS(3145), - [anon_sym_crossinline] = ACTIONS(3145), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2064] = { + [sym__expression] = STATE(4404), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2229] = { - [sym_property_delegate] = STATE(2433), - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(5800), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2065] = { + [sym__expression] = STATE(4407), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [2066] = { + [sym__expression] = STATE(3344), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [2067] = { + [sym__expression] = STATE(4414), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [2068] = { + [sym_type_constraints] = STATE(2197), + [sym_property_delegate] = STATE(2352), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5721), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -291489,5282 +274090,6749 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2230] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2069] = { + [sym__expression] = STATE(4323), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2231] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3097), - [anon_sym_sealed] = ACTIONS(3097), - [anon_sym_annotation] = ACTIONS(3097), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3097), - [anon_sym_lateinit] = ACTIONS(3097), - [anon_sym_public] = ACTIONS(3097), - [anon_sym_private] = ACTIONS(3097), - [anon_sym_internal] = ACTIONS(3097), - [anon_sym_protected] = ACTIONS(3097), - [anon_sym_tailrec] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_infix] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym_external] = ACTIONS(3097), - [sym_property_modifier] = ACTIONS(3097), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_final] = ACTIONS(3097), - [anon_sym_open] = ACTIONS(3097), - [anon_sym_vararg] = ACTIONS(3097), - [anon_sym_noinline] = ACTIONS(3097), - [anon_sym_crossinline] = ACTIONS(3097), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2070] = { + [sym__expression] = STATE(4477), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2232] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2071] = { + [sym__expression] = STATE(4496), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2233] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_annotation] = ACTIONS(3130), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_lateinit] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_tailrec] = ACTIONS(3130), - [anon_sym_operator] = ACTIONS(3130), - [anon_sym_infix] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_external] = ACTIONS(3130), - [sym_property_modifier] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3130), - [anon_sym_noinline] = ACTIONS(3130), - [anon_sym_crossinline] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2072] = { + [sym__expression] = STATE(4497), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2234] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_STAR_EQ] = ACTIONS(3125), - [anon_sym_SLASH_EQ] = ACTIONS(3125), - [anon_sym_PERCENT_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3123), - [anon_sym_sealed] = ACTIONS(3123), - [anon_sym_annotation] = ACTIONS(3123), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_lateinit] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_tailrec] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3123), - [sym_property_modifier] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_vararg] = ACTIONS(3123), - [anon_sym_noinline] = ACTIONS(3123), - [anon_sym_crossinline] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(3714), + [2073] = { + [sym__expression] = STATE(4453), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2235] = { - [sym_property_delegate] = STATE(2430), - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(5796), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_DASH_GT] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2074] = { + [sym__expression] = STATE(4313), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2236] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3116), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3116), - [anon_sym_sealed] = ACTIONS(3116), - [anon_sym_annotation] = ACTIONS(3116), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_lateinit] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_internal] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_tailrec] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_infix] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym_external] = ACTIONS(3116), - [sym_property_modifier] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_final] = ACTIONS(3116), - [anon_sym_open] = ACTIONS(3116), - [anon_sym_vararg] = ACTIONS(3116), - [anon_sym_noinline] = ACTIONS(3116), - [anon_sym_crossinline] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3714), + [2075] = { + [sym__expression] = STATE(4503), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2237] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3109), - [anon_sym_sealed] = ACTIONS(3109), - [anon_sym_annotation] = ACTIONS(3109), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_lateinit] = ACTIONS(3109), - [anon_sym_public] = ACTIONS(3109), - [anon_sym_private] = ACTIONS(3109), - [anon_sym_internal] = ACTIONS(3109), - [anon_sym_protected] = ACTIONS(3109), - [anon_sym_tailrec] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_infix] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym_external] = ACTIONS(3109), - [sym_property_modifier] = ACTIONS(3109), - [anon_sym_abstract] = ACTIONS(3109), - [anon_sym_final] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_vararg] = ACTIONS(3109), - [anon_sym_noinline] = ACTIONS(3109), - [anon_sym_crossinline] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(3714), + [2076] = { + [sym__expression] = STATE(4501), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2238] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3194), - [anon_sym_DASH_EQ] = ACTIONS(3194), - [anon_sym_STAR_EQ] = ACTIONS(3194), - [anon_sym_SLASH_EQ] = ACTIONS(3194), - [anon_sym_PERCENT_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3192), - [anon_sym_sealed] = ACTIONS(3192), - [anon_sym_annotation] = ACTIONS(3192), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_lateinit] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_internal] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_tailrec] = ACTIONS(3192), - [anon_sym_operator] = ACTIONS(3192), - [anon_sym_infix] = ACTIONS(3192), - [anon_sym_inline] = ACTIONS(3192), - [anon_sym_external] = ACTIONS(3192), - [sym_property_modifier] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_final] = ACTIONS(3192), - [anon_sym_open] = ACTIONS(3192), - [anon_sym_vararg] = ACTIONS(3192), - [anon_sym_noinline] = ACTIONS(3192), - [anon_sym_crossinline] = ACTIONS(3192), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2077] = { + [sym__expression] = STATE(4455), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2239] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3101), - [anon_sym_sealed] = ACTIONS(3101), - [anon_sym_annotation] = ACTIONS(3101), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3101), - [anon_sym_lateinit] = ACTIONS(3101), - [anon_sym_public] = ACTIONS(3101), - [anon_sym_private] = ACTIONS(3101), - [anon_sym_internal] = ACTIONS(3101), - [anon_sym_protected] = ACTIONS(3101), - [anon_sym_tailrec] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_infix] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym_external] = ACTIONS(3101), - [sym_property_modifier] = ACTIONS(3101), - [anon_sym_abstract] = ACTIONS(3101), - [anon_sym_final] = ACTIONS(3101), - [anon_sym_open] = ACTIONS(3101), - [anon_sym_vararg] = ACTIONS(3101), - [anon_sym_noinline] = ACTIONS(3101), - [anon_sym_crossinline] = ACTIONS(3101), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2078] = { + [sym__expression] = STATE(1010), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3103), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2240] = { - [sym_primary_constructor] = STATE(3675), - [sym_class_body] = STATE(4097), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2330), - [sym_type_constraints] = STATE(3862), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5802), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3246), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_PLUS_EQ] = ACTIONS(3250), - [anon_sym_DASH_EQ] = ACTIONS(3250), - [anon_sym_STAR_EQ] = ACTIONS(3250), - [anon_sym_SLASH_EQ] = ACTIONS(3250), - [anon_sym_PERCENT_EQ] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2079] = { + [sym__expression] = STATE(4320), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2241] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3188), - [anon_sym_sealed] = ACTIONS(3188), - [anon_sym_annotation] = ACTIONS(3188), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_lateinit] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_internal] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_tailrec] = ACTIONS(3188), - [anon_sym_operator] = ACTIONS(3188), - [anon_sym_infix] = ACTIONS(3188), - [anon_sym_inline] = ACTIONS(3188), - [anon_sym_external] = ACTIONS(3188), - [sym_property_modifier] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_final] = ACTIONS(3188), - [anon_sym_open] = ACTIONS(3188), - [anon_sym_vararg] = ACTIONS(3188), - [anon_sym_noinline] = ACTIONS(3188), - [anon_sym_crossinline] = ACTIONS(3188), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2080] = { + [sym__expression] = STATE(1142), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [2242] = { - [sym_property_delegate] = STATE(2428), - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(5794), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2081] = { + [sym__expression] = STATE(1146), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [2243] = { - [sym_primary_constructor] = STATE(3492), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(2307), - [sym_type_constraints] = STATE(3426), - [sym_enum_class_body] = STATE(3571), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5814), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2082] = { + [sym__expression] = STATE(1152), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [2244] = { - [sym_primary_constructor] = STATE(3494), - [sym_class_body] = STATE(3571), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(2309), - [sym_type_constraints] = STATE(3427), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5816), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2083] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2245] = { - [sym_property_delegate] = STATE(2422), - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(5792), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2084] = { + [sym__expression] = STATE(1156), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [2246] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3170), - [anon_sym_DASH_EQ] = ACTIONS(3170), - [anon_sym_STAR_EQ] = ACTIONS(3170), - [anon_sym_SLASH_EQ] = ACTIONS(3170), - [anon_sym_PERCENT_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3168), - [anon_sym_sealed] = ACTIONS(3168), - [anon_sym_annotation] = ACTIONS(3168), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_lateinit] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_internal] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_tailrec] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_infix] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym_external] = ACTIONS(3168), - [sym_property_modifier] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_final] = ACTIONS(3168), - [anon_sym_open] = ACTIONS(3168), - [anon_sym_vararg] = ACTIONS(3168), - [anon_sym_noinline] = ACTIONS(3168), - [anon_sym_crossinline] = ACTIONS(3168), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2085] = { + [sym__expression] = STATE(4448), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2247] = { - [sym_primary_constructor] = STATE(3505), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(2317), - [sym_type_constraints] = STATE(3450), - [sym_enum_class_body] = STATE(3465), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5818), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2086] = { + [sym__expression] = STATE(4449), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2248] = { - [sym_property_delegate] = STATE(2403), - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(5788), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(5790), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_DASH_GT] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2087] = { + [sym__expression] = STATE(1184), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [2249] = { - [sym_primary_constructor] = STATE(3506), - [sym_class_body] = STATE(3465), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(2319), - [sym_type_constraints] = STATE(3455), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5820), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2088] = { + [sym__expression] = STATE(4454), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2250] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3174), - [anon_sym_DASH_EQ] = ACTIONS(3174), - [anon_sym_STAR_EQ] = ACTIONS(3174), - [anon_sym_SLASH_EQ] = ACTIONS(3174), - [anon_sym_PERCENT_EQ] = ACTIONS(3174), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3172), - [anon_sym_sealed] = ACTIONS(3172), - [anon_sym_annotation] = ACTIONS(3172), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_lateinit] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_internal] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_tailrec] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_infix] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym_external] = ACTIONS(3172), - [sym_property_modifier] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_final] = ACTIONS(3172), - [anon_sym_open] = ACTIONS(3172), - [anon_sym_vararg] = ACTIONS(3172), - [anon_sym_noinline] = ACTIONS(3172), - [anon_sym_crossinline] = ACTIONS(3172), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2089] = { + [sym__expression] = STATE(1178), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3174), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [2251] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_COMMA] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_object] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_this] = ACTIONS(4926), - [anon_sym_super] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_if] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(5822), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4926), - [anon_sym_throw] = ACTIONS(4926), - [anon_sym_return] = ACTIONS(4926), - [anon_sym_continue] = ACTIONS(4926), - [anon_sym_break] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [2090] = { + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4928), - [anon_sym_continue_AT] = ACTIONS(4928), - [anon_sym_break_AT] = ACTIONS(4928), - [anon_sym_this_AT] = ACTIONS(4928), - [anon_sym_super_AT] = ACTIONS(4928), - [sym_real_literal] = ACTIONS(4928), - [sym_integer_literal] = ACTIONS(4926), - [sym_hex_literal] = ACTIONS(4928), - [sym_bin_literal] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [anon_sym_SQUOTE] = ACTIONS(4928), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), + [sym__string_start] = ACTIONS(295), }, - [2252] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_COMMA] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_object] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(5824), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_this] = ACTIONS(4926), - [anon_sym_super] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_if] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(5822), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4926), - [anon_sym_throw] = ACTIONS(4926), - [anon_sym_return] = ACTIONS(4926), - [anon_sym_continue] = ACTIONS(4926), - [anon_sym_break] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [2091] = { + [sym__expression] = STATE(4460), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4928), - [anon_sym_continue_AT] = ACTIONS(4928), - [anon_sym_break_AT] = ACTIONS(4928), - [anon_sym_this_AT] = ACTIONS(4928), - [anon_sym_super_AT] = ACTIONS(4928), - [sym_real_literal] = ACTIONS(4928), - [sym_integer_literal] = ACTIONS(4926), - [sym_hex_literal] = ACTIONS(4928), - [sym_bin_literal] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [anon_sym_SQUOTE] = ACTIONS(4928), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), + [sym__string_start] = ACTIONS(295), }, - [2253] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4864), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4239), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), + [2092] = { + [sym__expression] = STATE(4461), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), - }, - [2254] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4350), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [2255] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(5830), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4239), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), + [sym__string_start] = ACTIONS(295), }, - [2256] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5834), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_this] = ACTIONS(4355), - [anon_sym_super] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4353), - [sym_label] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [anon_sym_if] = ACTIONS(4355), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4355), - [anon_sym_try] = ACTIONS(4355), - [anon_sym_throw] = ACTIONS(4355), - [anon_sym_return] = ACTIONS(4355), - [anon_sym_continue] = ACTIONS(4355), - [anon_sym_break] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), + [2093] = { + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4353), - [anon_sym_continue_AT] = ACTIONS(4353), - [anon_sym_break_AT] = ACTIONS(4353), - [anon_sym_this_AT] = ACTIONS(4353), - [anon_sym_super_AT] = ACTIONS(4353), - [sym_real_literal] = ACTIONS(4353), - [sym_integer_literal] = ACTIONS(4355), - [sym_hex_literal] = ACTIONS(4353), - [sym_bin_literal] = ACTIONS(4353), - [anon_sym_true] = ACTIONS(4355), - [anon_sym_false] = ACTIONS(4355), - [anon_sym_SQUOTE] = ACTIONS(4353), - [sym__backtick_identifier] = ACTIONS(4353), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4353), + [sym__string_start] = ACTIONS(639), }, - [2257] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2094] = { + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2258] = { - [sym_primary_constructor] = STATE(3513), - [sym_class_body] = STATE(3457), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(2329), - [sym_type_constraints] = STATE(3452), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5836), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3246), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_PLUS_EQ] = ACTIONS(3250), - [anon_sym_DASH_EQ] = ACTIONS(3250), - [anon_sym_STAR_EQ] = ACTIONS(3250), - [anon_sym_SLASH_EQ] = ACTIONS(3250), - [anon_sym_PERCENT_EQ] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2095] = { + [sym__expression] = STATE(4476), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2259] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(5838), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_this] = ACTIONS(4244), - [anon_sym_super] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4244), - [anon_sym_if] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4244), - [anon_sym_try] = ACTIONS(4244), - [anon_sym_throw] = ACTIONS(4244), - [anon_sym_return] = ACTIONS(4244), - [anon_sym_continue] = ACTIONS(4244), - [anon_sym_break] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4242), - [anon_sym_continue_AT] = ACTIONS(4242), - [anon_sym_break_AT] = ACTIONS(4242), - [anon_sym_this_AT] = ACTIONS(4242), - [anon_sym_super_AT] = ACTIONS(4242), - [sym_real_literal] = ACTIONS(4242), - [sym_integer_literal] = ACTIONS(4244), - [sym_hex_literal] = ACTIONS(4242), - [sym_bin_literal] = ACTIONS(4242), - [anon_sym_true] = ACTIONS(4244), - [anon_sym_false] = ACTIONS(4244), - [anon_sym_SQUOTE] = ACTIONS(4242), - [sym__backtick_identifier] = ACTIONS(4242), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4242), - }, - [2260] = { - [sym_primary_constructor] = STATE(3664), - [sym_class_body] = STATE(4124), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2342), - [sym_type_constraints] = STATE(3880), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5840), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2096] = { + [sym__expression] = STATE(4312), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2261] = { - [sym__alpha_identifier] = ACTIONS(5171), - [anon_sym_AT] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_fun] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(5842), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_where] = ACTIONS(5171), - [anon_sym_object] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5173), - [anon_sym_get] = ACTIONS(5171), - [anon_sym_set] = ACTIONS(5171), - [anon_sym_this] = ACTIONS(5171), - [anon_sym_super] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5173), - [sym_label] = ACTIONS(5171), - [anon_sym_in] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5173), - [anon_sym_QMARK_COLON] = ACTIONS(5173), - [anon_sym_AMP_AMP] = ACTIONS(5173), - [anon_sym_PIPE_PIPE] = ACTIONS(5173), - [anon_sym_null] = ACTIONS(5171), - [anon_sym_if] = ACTIONS(5171), - [anon_sym_else] = ACTIONS(5171), - [anon_sym_when] = ACTIONS(5171), - [anon_sym_try] = ACTIONS(5171), - [anon_sym_throw] = ACTIONS(5171), - [anon_sym_return] = ACTIONS(5171), - [anon_sym_continue] = ACTIONS(5171), - [anon_sym_break] = ACTIONS(5171), - [anon_sym_COLON_COLON] = ACTIONS(5173), - [anon_sym_BANG_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), - [anon_sym_LT_EQ] = ACTIONS(5173), - [anon_sym_GT_EQ] = ACTIONS(5173), - [anon_sym_BANGin] = ACTIONS(5173), - [anon_sym_is] = ACTIONS(5171), - [anon_sym_BANGis] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5173), - [anon_sym_as_QMARK] = ACTIONS(5173), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_BANG_BANG] = ACTIONS(5173), - [anon_sym_suspend] = ACTIONS(5171), - [anon_sym_sealed] = ACTIONS(5171), - [anon_sym_annotation] = ACTIONS(5171), - [anon_sym_data] = ACTIONS(5171), - [anon_sym_inner] = ACTIONS(5171), - [anon_sym_value] = ACTIONS(5171), - [anon_sym_override] = ACTIONS(5171), - [anon_sym_lateinit] = ACTIONS(5171), - [anon_sym_public] = ACTIONS(5171), - [anon_sym_private] = ACTIONS(5171), - [anon_sym_internal] = ACTIONS(5171), - [anon_sym_protected] = ACTIONS(5171), - [anon_sym_tailrec] = ACTIONS(5171), - [anon_sym_operator] = ACTIONS(5171), - [anon_sym_infix] = ACTIONS(5171), - [anon_sym_inline] = ACTIONS(5171), - [anon_sym_external] = ACTIONS(5171), - [sym_property_modifier] = ACTIONS(5171), - [anon_sym_abstract] = ACTIONS(5171), - [anon_sym_final] = ACTIONS(5171), - [anon_sym_open] = ACTIONS(5171), - [anon_sym_vararg] = ACTIONS(5171), - [anon_sym_noinline] = ACTIONS(5171), - [anon_sym_crossinline] = ACTIONS(5171), - [anon_sym_expect] = ACTIONS(5171), - [anon_sym_actual] = ACTIONS(5171), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5173), - [anon_sym_continue_AT] = ACTIONS(5173), - [anon_sym_break_AT] = ACTIONS(5173), - [anon_sym_this_AT] = ACTIONS(5173), - [anon_sym_super_AT] = ACTIONS(5173), - [sym_real_literal] = ACTIONS(5173), - [sym_integer_literal] = ACTIONS(5171), - [sym_hex_literal] = ACTIONS(5173), - [sym_bin_literal] = ACTIONS(5173), - [anon_sym_true] = ACTIONS(5171), - [anon_sym_false] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5173), - [sym__backtick_identifier] = ACTIONS(5173), - [sym__automatic_semicolon] = ACTIONS(5173), - [sym_safe_nav] = ACTIONS(5173), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5173), + [2097] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(2097), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(5723), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_object] = ACTIONS(4633), + [anon_sym_fun] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_this] = ACTIONS(4633), + [anon_sym_super] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4635), + [sym_label] = ACTIONS(4633), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_null] = ACTIONS(4633), + [anon_sym_if] = ACTIONS(4633), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_when] = ACTIONS(4633), + [anon_sym_try] = ACTIONS(4633), + [anon_sym_throw] = ACTIONS(4633), + [anon_sym_return] = ACTIONS(4633), + [anon_sym_continue] = ACTIONS(4633), + [anon_sym_break] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4633), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4635), + [anon_sym_continue_AT] = ACTIONS(4635), + [anon_sym_break_AT] = ACTIONS(4635), + [anon_sym_this_AT] = ACTIONS(4635), + [anon_sym_super_AT] = ACTIONS(4635), + [sym_real_literal] = ACTIONS(4635), + [sym_integer_literal] = ACTIONS(4633), + [sym_hex_literal] = ACTIONS(4635), + [sym_bin_literal] = ACTIONS(4635), + [anon_sym_true] = ACTIONS(4633), + [anon_sym_false] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4635), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4635), }, - [2262] = { - [sym_property_delegate] = STATE(2393), - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(5844), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3666), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2098] = { + [sym__expression] = STATE(4376), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5670), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5726), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2263] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_fun] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_where] = ACTIONS(5177), - [anon_sym_object] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_this] = ACTIONS(5177), - [anon_sym_super] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5179), - [sym_label] = ACTIONS(5177), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_null] = ACTIONS(5177), - [anon_sym_if] = ACTIONS(5177), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_when] = ACTIONS(5177), - [anon_sym_try] = ACTIONS(5177), - [anon_sym_throw] = ACTIONS(5177), - [anon_sym_return] = ACTIONS(5177), - [anon_sym_continue] = ACTIONS(5177), - [anon_sym_break] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_suspend] = ACTIONS(5177), - [anon_sym_sealed] = ACTIONS(5177), - [anon_sym_annotation] = ACTIONS(5177), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_override] = ACTIONS(5177), - [anon_sym_lateinit] = ACTIONS(5177), - [anon_sym_public] = ACTIONS(5177), - [anon_sym_private] = ACTIONS(5177), - [anon_sym_internal] = ACTIONS(5177), - [anon_sym_protected] = ACTIONS(5177), - [anon_sym_tailrec] = ACTIONS(5177), - [anon_sym_operator] = ACTIONS(5177), - [anon_sym_infix] = ACTIONS(5177), - [anon_sym_inline] = ACTIONS(5177), - [anon_sym_external] = ACTIONS(5177), - [sym_property_modifier] = ACTIONS(5177), - [anon_sym_abstract] = ACTIONS(5177), - [anon_sym_final] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(5177), - [anon_sym_vararg] = ACTIONS(5177), - [anon_sym_noinline] = ACTIONS(5177), - [anon_sym_crossinline] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5179), - [anon_sym_continue_AT] = ACTIONS(5179), - [anon_sym_break_AT] = ACTIONS(5179), - [anon_sym_this_AT] = ACTIONS(5179), - [anon_sym_super_AT] = ACTIONS(5179), - [sym_real_literal] = ACTIONS(5179), - [sym_integer_literal] = ACTIONS(5177), - [sym_hex_literal] = ACTIONS(5179), - [sym_bin_literal] = ACTIONS(5179), - [anon_sym_true] = ACTIONS(5177), - [anon_sym_false] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5179), - [sym__backtick_identifier] = ACTIONS(5179), - [sym__automatic_semicolon] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5179), - }, - [2264] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(4884), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4350), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), - }, - [2265] = { - [sym_primary_constructor] = STATE(3663), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2345), - [sym_type_constraints] = STATE(3872), - [sym_enum_class_body] = STATE(4124), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5848), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2099] = { + [sym__expression] = STATE(4380), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2266] = { - [sym_primary_constructor] = STATE(3651), - [sym_class_body] = STATE(4148), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2346), - [sym_type_constraints] = STATE(3882), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5852), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2100] = { + [sym__expression] = STATE(4387), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2267] = { - [sym_primary_constructor] = STATE(3643), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2352), - [sym_type_constraints] = STATE(3883), - [sym_enum_class_body] = STATE(4148), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5854), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2101] = { + [sym__expression] = STATE(1002), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2268] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_STAR_EQ] = ACTIONS(3158), - [anon_sym_SLASH_EQ] = ACTIONS(3158), - [anon_sym_PERCENT_EQ] = ACTIONS(3158), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3156), - [anon_sym_sealed] = ACTIONS(3156), - [anon_sym_annotation] = ACTIONS(3156), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_lateinit] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_internal] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_tailrec] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_infix] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym_external] = ACTIONS(3156), - [sym_property_modifier] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_final] = ACTIONS(3156), - [anon_sym_open] = ACTIONS(3156), - [anon_sym_vararg] = ACTIONS(3156), - [anon_sym_noinline] = ACTIONS(3156), - [anon_sym_crossinline] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2102] = { + [sym__expression] = STATE(4419), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2269] = { - [sym_class_body] = STATE(1207), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(5856), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), + [2103] = { + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [2270] = { - [sym_property_delegate] = STATE(2384), - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(5754), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3670), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_DASH_GT] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2104] = { + [sym__expression] = STATE(4525), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2271] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1809), - [sym__comparison_operator] = STATE(1684), - [sym__in_operator] = STATE(1620), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1586), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1949), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3988), - [anon_sym_DOT_DOT] = ACTIONS(3990), - [anon_sym_QMARK_COLON] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_BANGin] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3105), - [anon_sym_sealed] = ACTIONS(3105), - [anon_sym_annotation] = ACTIONS(3105), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3105), - [anon_sym_lateinit] = ACTIONS(3105), - [anon_sym_public] = ACTIONS(3105), - [anon_sym_private] = ACTIONS(3105), - [anon_sym_internal] = ACTIONS(3105), - [anon_sym_protected] = ACTIONS(3105), - [anon_sym_tailrec] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_infix] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym_external] = ACTIONS(3105), - [sym_property_modifier] = ACTIONS(3105), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_final] = ACTIONS(3105), - [anon_sym_open] = ACTIONS(3105), - [anon_sym_vararg] = ACTIONS(3105), - [anon_sym_noinline] = ACTIONS(3105), - [anon_sym_crossinline] = ACTIONS(3105), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2105] = { + [sym__expression] = STATE(1003), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), - [sym_safe_nav] = ACTIONS(3714), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2272] = { - [sym_property_delegate] = STATE(2424), - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2106] = { + [sym__expression] = STATE(4050), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [2273] = { - [sym_primary_constructor] = STATE(5018), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(2338), - [sym_type_constraints] = STATE(4794), - [sym_enum_class_body] = STATE(4944), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5858), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2107] = { + [sym__expression] = STATE(1005), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2274] = { - [sym_primary_constructor] = STATE(4950), - [sym_class_body] = STATE(5388), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2335), - [sym_type_constraints] = STATE(5159), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3246), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_PLUS_EQ] = ACTIONS(3250), - [anon_sym_DASH_EQ] = ACTIONS(3250), - [anon_sym_STAR_EQ] = ACTIONS(3250), - [anon_sym_SLASH_EQ] = ACTIONS(3250), - [anon_sym_PERCENT_EQ] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2108] = { + [sym__expression] = STATE(1006), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2275] = { - [sym_primary_constructor] = STATE(4984), - [sym_class_body] = STATE(4944), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(2336), - [sym_type_constraints] = STATE(4792), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5870), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2109] = { + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2276] = { - [sym_primary_constructor] = STATE(4911), - [sym_class_body] = STATE(5363), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2361), - [sym_type_constraints] = STATE(5147), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5872), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2110] = { + [sym__expression] = STATE(1188), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2277] = { - [sym_primary_constructor] = STATE(4907), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2292), - [sym_type_constraints] = STATE(5144), - [sym_enum_class_body] = STATE(5363), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5874), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2111] = { + [sym__expression] = STATE(1008), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2278] = { - [sym_class_body] = STATE(1132), - [sym__alpha_identifier] = ACTIONS(4443), - [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(5878), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_as] = ACTIONS(4443), - [anon_sym_fun] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4443), - [anon_sym_GT] = ACTIONS(4443), - [anon_sym_object] = ACTIONS(4443), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4445), - [anon_sym_get] = ACTIONS(4443), - [anon_sym_set] = ACTIONS(4443), - [anon_sym_this] = ACTIONS(4443), - [anon_sym_super] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4445), - [sym_label] = ACTIONS(4443), - [anon_sym_in] = ACTIONS(4443), - [anon_sym_DOT_DOT] = ACTIONS(4445), - [anon_sym_QMARK_COLON] = ACTIONS(4445), - [anon_sym_AMP_AMP] = ACTIONS(4445), - [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), - [anon_sym_if] = ACTIONS(4443), - [anon_sym_else] = ACTIONS(4443), - [anon_sym_when] = ACTIONS(4443), - [anon_sym_try] = ACTIONS(4443), - [anon_sym_throw] = ACTIONS(4443), - [anon_sym_return] = ACTIONS(4443), - [anon_sym_continue] = ACTIONS(4443), - [anon_sym_break] = ACTIONS(4443), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_BANG_EQ] = ACTIONS(4443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), - [anon_sym_EQ_EQ] = ACTIONS(4443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), - [anon_sym_LT_EQ] = ACTIONS(4445), - [anon_sym_GT_EQ] = ACTIONS(4445), - [anon_sym_BANGin] = ACTIONS(4445), - [anon_sym_is] = ACTIONS(4443), - [anon_sym_BANGis] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_SLASH] = ACTIONS(4443), - [anon_sym_PERCENT] = ACTIONS(4445), - [anon_sym_as_QMARK] = ACTIONS(4445), - [anon_sym_PLUS_PLUS] = ACTIONS(4445), - [anon_sym_DASH_DASH] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4443), - [anon_sym_BANG_BANG] = ACTIONS(4445), - [anon_sym_suspend] = ACTIONS(4443), - [anon_sym_sealed] = ACTIONS(4443), - [anon_sym_annotation] = ACTIONS(4443), - [anon_sym_data] = ACTIONS(4443), - [anon_sym_inner] = ACTIONS(4443), - [anon_sym_value] = ACTIONS(4443), - [anon_sym_override] = ACTIONS(4443), - [anon_sym_lateinit] = ACTIONS(4443), - [anon_sym_public] = ACTIONS(4443), - [anon_sym_private] = ACTIONS(4443), - [anon_sym_internal] = ACTIONS(4443), - [anon_sym_protected] = ACTIONS(4443), - [anon_sym_tailrec] = ACTIONS(4443), - [anon_sym_operator] = ACTIONS(4443), - [anon_sym_infix] = ACTIONS(4443), - [anon_sym_inline] = ACTIONS(4443), - [anon_sym_external] = ACTIONS(4443), - [sym_property_modifier] = ACTIONS(4443), - [anon_sym_abstract] = ACTIONS(4443), - [anon_sym_final] = ACTIONS(4443), - [anon_sym_open] = ACTIONS(4443), - [anon_sym_vararg] = ACTIONS(4443), - [anon_sym_noinline] = ACTIONS(4443), - [anon_sym_crossinline] = ACTIONS(4443), - [anon_sym_expect] = ACTIONS(4443), - [anon_sym_actual] = ACTIONS(4443), + [2112] = { + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4445), - [anon_sym_continue_AT] = ACTIONS(4445), - [anon_sym_break_AT] = ACTIONS(4445), - [anon_sym_this_AT] = ACTIONS(4445), - [anon_sym_super_AT] = ACTIONS(4445), - [sym_real_literal] = ACTIONS(4445), - [sym_integer_literal] = ACTIONS(4443), - [sym_hex_literal] = ACTIONS(4445), - [sym_bin_literal] = ACTIONS(4445), - [anon_sym_true] = ACTIONS(4443), - [anon_sym_false] = ACTIONS(4443), - [anon_sym_SQUOTE] = ACTIONS(4445), - [sym__backtick_identifier] = ACTIONS(4445), - [sym__automatic_semicolon] = ACTIONS(4445), - [sym_safe_nav] = ACTIONS(4445), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4445), + [sym__string_start] = ACTIONS(639), }, - [2279] = { - [sym_property_delegate] = STATE(2395), - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(5766), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(5768), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_DASH_GT] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2113] = { + [sym__expression] = STATE(950), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2280] = { - [sym_primary_constructor] = STATE(4849), - [sym_class_body] = STATE(4993), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(2316), - [sym_type_constraints] = STATE(4813), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5880), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3246), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_PLUS_EQ] = ACTIONS(3250), - [anon_sym_DASH_EQ] = ACTIONS(3250), - [anon_sym_STAR_EQ] = ACTIONS(3250), - [anon_sym_SLASH_EQ] = ACTIONS(3250), - [anon_sym_PERCENT_EQ] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2114] = { + [sym__expression] = STATE(4325), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2281] = { - [sym_primary_constructor] = STATE(4894), - [sym_class_body] = STATE(5280), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2294), - [sym_type_constraints] = STATE(5116), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5882), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2115] = { + [sym__expression] = STATE(4443), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2282] = { - [sym_property_delegate] = STATE(2383), - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(5764), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(5756), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2116] = { + [sym__expression] = STATE(1384), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2117] = { + [sym__expression] = STATE(1416), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2118] = { + [sym__expression] = STATE(1415), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2119] = { + [sym__expression] = STATE(4519), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [2120] = { + [sym__expression] = STATE(1410), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2121] = { + [sym__expression] = STATE(1409), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2122] = { + [sym__expression] = STATE(1407), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2123] = { + [sym__expression] = STATE(1406), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2124] = { + [sym__expression] = STATE(1404), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2125] = { + [sym__expression] = STATE(1403), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2126] = { + [sym__expression] = STATE(1401), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2127] = { + [sym__expression] = STATE(1388), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2128] = { + [sym__expression] = STATE(1395), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2129] = { + [sym__expression] = STATE(1399), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2130] = { + [sym__expression] = STATE(957), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [2131] = { + [sym__expression] = STATE(4522), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [2132] = { + [sym__expression] = STATE(1386), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2133] = { + [sym__expression] = STATE(1205), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [2134] = { + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [2135] = { + [sym_type_constraints] = STATE(2227), + [sym_property_delegate] = STATE(2363), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5728), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -296789,2748 +280857,3416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2283] = { - [sym_primary_constructor] = STATE(5057), - [sym__class_parameters] = STATE(5276), - [sym_type_parameters] = STATE(2385), - [sym_type_constraints] = STATE(5427), - [sym_enum_class_body] = STATE(5560), - [sym_modifiers] = STATE(10048), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5884), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5886), - [anon_sym_LBRACE] = ACTIONS(5888), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5890), - [anon_sym_LT] = ACTIONS(5892), - [anon_sym_where] = ACTIONS(5894), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2136] = { + [sym__expression] = STATE(1204), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), - }, - [2284] = { - [sym_primary_constructor] = STATE(5051), - [sym_class_body] = STATE(5560), - [sym__class_parameters] = STATE(5276), - [sym_type_parameters] = STATE(2377), - [sym_type_constraints] = STATE(5444), - [sym_modifiers] = STATE(10048), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5896), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5886), - [anon_sym_LBRACE] = ACTIONS(5898), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5890), - [anon_sym_LT] = ACTIONS(5892), - [anon_sym_where] = ACTIONS(5894), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [sym__string_start] = ACTIONS(205), }, - [2285] = { - [sym_primary_constructor] = STATE(4908), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2296), - [sym_type_constraints] = STATE(5115), - [sym_enum_class_body] = STATE(5280), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5900), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2137] = { + [sym__expression] = STATE(1229), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [2286] = { - [sym_primary_constructor] = STATE(4884), - [sym_class_body] = STATE(4888), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(2318), - [sym_type_constraints] = STATE(4753), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5902), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2138] = { + [sym__expression] = STATE(4316), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2287] = { - [sym_primary_constructor] = STATE(5097), - [sym_class_body] = STATE(5517), - [sym__class_parameters] = STATE(5276), - [sym_type_parameters] = STATE(2408), - [sym_type_constraints] = STATE(5445), - [sym_modifiers] = STATE(10048), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5904), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_fun] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5886), - [anon_sym_LBRACE] = ACTIONS(5898), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5890), - [anon_sym_LT] = ACTIONS(5892), - [anon_sym_where] = ACTIONS(5894), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_this] = ACTIONS(3246), - [anon_sym_super] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3250), - [sym_label] = ACTIONS(3246), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_when] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2139] = { + [sym__expression] = STATE(1213), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3250), - [anon_sym_continue_AT] = ACTIONS(3250), - [anon_sym_break_AT] = ACTIONS(3250), - [anon_sym_this_AT] = ACTIONS(3250), - [anon_sym_super_AT] = ACTIONS(3250), - [sym_real_literal] = ACTIONS(3250), - [sym_integer_literal] = ACTIONS(3246), - [sym_hex_literal] = ACTIONS(3250), - [sym_bin_literal] = ACTIONS(3250), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3250), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3250), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [2288] = { - [sym_primary_constructor] = STATE(5061), - [sym__class_parameters] = STATE(5276), - [sym_type_parameters] = STATE(2431), - [sym_type_constraints] = STATE(5450), - [sym_enum_class_body] = STATE(5530), - [sym_modifiers] = STATE(10048), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5906), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_fun] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5886), - [anon_sym_LBRACE] = ACTIONS(5888), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5890), - [anon_sym_LT] = ACTIONS(5892), - [anon_sym_where] = ACTIONS(5894), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2140] = { + [sym__expression] = STATE(1215), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [2289] = { - [sym_primary_constructor] = STATE(5078), - [sym_class_body] = STATE(5530), - [sym__class_parameters] = STATE(5276), - [sym_type_parameters] = STATE(2415), - [sym_type_constraints] = STATE(5420), - [sym_modifiers] = STATE(10048), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5908), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_fun] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5886), - [anon_sym_LBRACE] = ACTIONS(5898), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5890), - [anon_sym_LT] = ACTIONS(5892), - [anon_sym_where] = ACTIONS(5894), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_super] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2141] = { + [sym__expression] = STATE(1216), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3242), - [anon_sym_continue_AT] = ACTIONS(3242), - [anon_sym_break_AT] = ACTIONS(3242), - [anon_sym_this_AT] = ACTIONS(3242), - [anon_sym_super_AT] = ACTIONS(3242), - [sym_real_literal] = ACTIONS(3242), - [sym_integer_literal] = ACTIONS(3238), - [sym_hex_literal] = ACTIONS(3242), - [sym_bin_literal] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3242), - }, - [2290] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_object] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_this] = ACTIONS(3123), - [anon_sym_super] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_when] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_throw] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3125), - [anon_sym_continue_AT] = ACTIONS(3125), - [anon_sym_break_AT] = ACTIONS(3125), - [anon_sym_this_AT] = ACTIONS(3125), - [anon_sym_super_AT] = ACTIONS(3125), - [sym_real_literal] = ACTIONS(3125), - [sym_integer_literal] = ACTIONS(3123), - [sym_hex_literal] = ACTIONS(3125), - [sym_bin_literal] = ACTIONS(3125), - [anon_sym_true] = ACTIONS(3123), - [anon_sym_false] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3125), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3125), - }, - [2291] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5914), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3188), - [anon_sym_super] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5916), - [anon_sym_DOT_DOT] = ACTIONS(5918), - [anon_sym_QMARK_COLON] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(5922), - [anon_sym_PIPE_PIPE] = ACTIONS(5924), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_when] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5928), - [anon_sym_EQ_EQ] = ACTIONS(5926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5928), - [anon_sym_LT_EQ] = ACTIONS(5930), - [anon_sym_GT_EQ] = ACTIONS(5930), - [anon_sym_BANGin] = ACTIONS(5932), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [anon_sym_this_AT] = ACTIONS(3190), - [anon_sym_super_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3188), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3188), - [anon_sym_false] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(4567), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [sym__string_start] = ACTIONS(205), }, - [2292] = { - [sym_primary_constructor] = STATE(4867), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5120), - [sym_enum_class_body] = STATE(5326), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5936), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2142] = { + [sym__expression] = STATE(1217), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [2293] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3158), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_RPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3158), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3156), - [anon_sym_sealed] = ACTIONS(3156), - [anon_sym_annotation] = ACTIONS(3156), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_lateinit] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_internal] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_tailrec] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_infix] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym_external] = ACTIONS(3156), - [sym_property_modifier] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_final] = ACTIONS(3156), - [anon_sym_open] = ACTIONS(3156), - [anon_sym_vararg] = ACTIONS(3156), - [anon_sym_noinline] = ACTIONS(3156), - [anon_sym_crossinline] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2143] = { + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [2294] = { - [sym_primary_constructor] = STATE(4928), - [sym_class_body] = STATE(5241), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5106), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5938), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2144] = { + [sym__expression] = STATE(752), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [2295] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5914), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3156), - [anon_sym_super] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5916), - [anon_sym_DOT_DOT] = ACTIONS(5918), - [anon_sym_QMARK_COLON] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(5922), - [anon_sym_PIPE_PIPE] = ACTIONS(5924), - [anon_sym_null] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_when] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5928), - [anon_sym_EQ_EQ] = ACTIONS(5926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5928), - [anon_sym_LT_EQ] = ACTIONS(5930), - [anon_sym_GT_EQ] = ACTIONS(5930), - [anon_sym_BANGin] = ACTIONS(5932), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2145] = { + [sym__expression] = STATE(1219), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3158), - [anon_sym_continue_AT] = ACTIONS(3158), - [anon_sym_break_AT] = ACTIONS(3158), - [anon_sym_this_AT] = ACTIONS(3158), - [anon_sym_super_AT] = ACTIONS(3158), - [sym_real_literal] = ACTIONS(3158), - [sym_integer_literal] = ACTIONS(3156), - [sym_hex_literal] = ACTIONS(3158), - [sym_bin_literal] = ACTIONS(3158), - [anon_sym_true] = ACTIONS(3156), - [anon_sym_false] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3158), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(4567), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3158), + [sym__string_start] = ACTIONS(205), }, - [2296] = { - [sym_primary_constructor] = STATE(4963), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5124), - [sym_enum_class_body] = STATE(5241), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5940), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2146] = { + [sym__expression] = STATE(4527), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2297] = { - [sym_type_constraints] = STATE(2447), - [sym_property_delegate] = STATE(2589), - [sym_getter] = STATE(5490), - [sym_setter] = STATE(5490), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_EQ] = ACTIONS(5942), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_where] = ACTIONS(5944), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), - }, - [2298] = { - [sym_primary_constructor] = STATE(3758), - [sym_class_body] = STATE(4097), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2426), - [sym_type_constraints] = STATE(3862), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5950), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3246), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_PLUS_EQ] = ACTIONS(3250), - [anon_sym_DASH_EQ] = ACTIONS(3250), - [anon_sym_STAR_EQ] = ACTIONS(3250), - [anon_sym_SLASH_EQ] = ACTIONS(3250), - [anon_sym_PERCENT_EQ] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2147] = { + [sym__expression] = STATE(770), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [2299] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5914), - [anon_sym_object] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3101), - [anon_sym_super] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5916), - [anon_sym_DOT_DOT] = ACTIONS(5918), - [anon_sym_QMARK_COLON] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(5922), - [anon_sym_PIPE_PIPE] = ACTIONS(5924), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_when] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5928), - [anon_sym_EQ_EQ] = ACTIONS(5926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5928), - [anon_sym_LT_EQ] = ACTIONS(5930), - [anon_sym_GT_EQ] = ACTIONS(5930), - [anon_sym_BANGin] = ACTIONS(5932), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2148] = { + [sym__expression] = STATE(1220), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3103), - [anon_sym_continue_AT] = ACTIONS(3103), - [anon_sym_break_AT] = ACTIONS(3103), - [anon_sym_this_AT] = ACTIONS(3103), - [anon_sym_super_AT] = ACTIONS(3103), - [sym_real_literal] = ACTIONS(3103), - [sym_integer_literal] = ACTIONS(3101), - [sym_hex_literal] = ACTIONS(3103), - [sym_bin_literal] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3101), - [anon_sym_false] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3103), - [sym_safe_nav] = ACTIONS(4567), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3103), + [sym__string_start] = ACTIONS(205), }, - [2300] = { - [sym_primary_constructor] = STATE(5049), - [sym_class_body] = STATE(5363), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2382), - [sym_type_constraints] = STATE(5147), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5952), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2149] = { + [sym__expression] = STATE(1221), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [2301] = { - [sym_primary_constructor] = STATE(5081), - [sym_class_body] = STATE(5388), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2427), - [sym_type_constraints] = STATE(5159), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5954), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3246), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_PLUS_EQ] = ACTIONS(3250), - [anon_sym_DASH_EQ] = ACTIONS(3250), - [anon_sym_STAR_EQ] = ACTIONS(3250), - [anon_sym_SLASH_EQ] = ACTIONS(3250), - [anon_sym_PERCENT_EQ] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2150] = { + [sym__expression] = STATE(4399), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2302] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3186), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3186), - [anon_sym_RPAREN] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3186), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3184), - [anon_sym_sealed] = ACTIONS(3184), - [anon_sym_annotation] = ACTIONS(3184), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_lateinit] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_internal] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_tailrec] = ACTIONS(3184), - [anon_sym_operator] = ACTIONS(3184), - [anon_sym_infix] = ACTIONS(3184), - [anon_sym_inline] = ACTIONS(3184), - [anon_sym_external] = ACTIONS(3184), - [sym_property_modifier] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_final] = ACTIONS(3184), - [anon_sym_open] = ACTIONS(3184), - [anon_sym_vararg] = ACTIONS(3184), - [anon_sym_noinline] = ACTIONS(3184), - [anon_sym_crossinline] = ACTIONS(3184), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2151] = { + [sym__expression] = STATE(4467), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2303] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3107), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(3105), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3105), - [anon_sym_sealed] = ACTIONS(3105), - [anon_sym_annotation] = ACTIONS(3105), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3105), - [anon_sym_lateinit] = ACTIONS(3105), - [anon_sym_public] = ACTIONS(3105), - [anon_sym_private] = ACTIONS(3105), - [anon_sym_internal] = ACTIONS(3105), - [anon_sym_protected] = ACTIONS(3105), - [anon_sym_tailrec] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_infix] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym_external] = ACTIONS(3105), - [sym_property_modifier] = ACTIONS(3105), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_final] = ACTIONS(3105), - [anon_sym_open] = ACTIONS(3105), - [anon_sym_vararg] = ACTIONS(3105), - [anon_sym_noinline] = ACTIONS(3105), - [anon_sym_crossinline] = ACTIONS(3105), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2152] = { + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2304] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5914), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3192), - [anon_sym_super] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5916), - [anon_sym_DOT_DOT] = ACTIONS(5918), - [anon_sym_QMARK_COLON] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(5922), - [anon_sym_PIPE_PIPE] = ACTIONS(5924), - [anon_sym_null] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_when] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5928), - [anon_sym_EQ_EQ] = ACTIONS(5926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5928), - [anon_sym_LT_EQ] = ACTIONS(5930), - [anon_sym_GT_EQ] = ACTIONS(5930), - [anon_sym_BANGin] = ACTIONS(5932), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3194), - [anon_sym_continue_AT] = ACTIONS(3194), - [anon_sym_break_AT] = ACTIONS(3194), - [anon_sym_this_AT] = ACTIONS(3194), - [anon_sym_super_AT] = ACTIONS(3194), - [sym_real_literal] = ACTIONS(3194), - [sym_integer_literal] = ACTIONS(3192), - [sym_hex_literal] = ACTIONS(3194), - [sym_bin_literal] = ACTIONS(3194), - [anon_sym_true] = ACTIONS(3192), - [anon_sym_false] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3194), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), - [sym_safe_nav] = ACTIONS(4567), + [2153] = { + [sym__expression] = STATE(772), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3194), + [sym__string_start] = ACTIONS(555), }, - [2305] = { - [sym_primary_constructor] = STATE(3763), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2421), - [sym_type_constraints] = STATE(3872), - [sym_enum_class_body] = STATE(4124), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2154] = { + [sym__expression] = STATE(2306), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2306] = { - [sym_primary_constructor] = STATE(5043), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2374), - [sym_type_constraints] = STATE(5144), - [sym_enum_class_body] = STATE(5363), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5958), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2155] = { + [sym__expression] = STATE(1223), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2307] = { - [sym_primary_constructor] = STATE(3490), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3408), - [sym_enum_class_body] = STATE(3597), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2156] = { + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [2308] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5914), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3168), - [anon_sym_super] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5916), - [anon_sym_DOT_DOT] = ACTIONS(5918), - [anon_sym_QMARK_COLON] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(5922), - [anon_sym_PIPE_PIPE] = ACTIONS(5924), - [anon_sym_null] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_when] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5928), - [anon_sym_EQ_EQ] = ACTIONS(5926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5928), - [anon_sym_LT_EQ] = ACTIONS(5930), - [anon_sym_GT_EQ] = ACTIONS(5930), - [anon_sym_BANGin] = ACTIONS(5932), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3170), - [anon_sym_continue_AT] = ACTIONS(3170), - [anon_sym_break_AT] = ACTIONS(3170), - [anon_sym_this_AT] = ACTIONS(3170), - [anon_sym_super_AT] = ACTIONS(3170), - [sym_real_literal] = ACTIONS(3170), - [sym_integer_literal] = ACTIONS(3168), - [sym_hex_literal] = ACTIONS(3170), - [sym_bin_literal] = ACTIONS(3170), - [anon_sym_true] = ACTIONS(3168), - [anon_sym_false] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3170), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), - [sym_safe_nav] = ACTIONS(4567), + [2157] = { + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3170), + [sym__string_start] = ACTIONS(4185), }, - [2309] = { - [sym_primary_constructor] = STATE(3491), - [sym_class_body] = STATE(3597), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3409), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5962), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2158] = { + [sym__expression] = STATE(1385), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [2310] = { - [sym_type_constraints] = STATE(2441), - [sym_property_delegate] = STATE(2610), - [sym_getter] = STATE(5554), - [sym_setter] = STATE(5554), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(5964), - [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_where] = ACTIONS(5944), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(5966), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), + [2159] = { + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [2160] = { + [sym__expression] = STATE(4506), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [2161] = { + [sym__expression] = STATE(951), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [2162] = { + [sym__expression] = STATE(797), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2163] = { + [sym__expression] = STATE(3711), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2164] = { + [sym__expression] = STATE(2535), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2165] = { + [sym__expression] = STATE(783), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2166] = { + [sym__expression] = STATE(2285), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [2167] = { + [sym__expression] = STATE(1211), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2168] = { + [sym__expression] = STATE(775), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [2169] = { + [sym_type_constraints] = STATE(2211), + [sym_property_delegate] = STATE(2333), + [sym_getter] = STATE(4797), + [sym_setter] = STATE(4797), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_RBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(5730), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(5732), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_DASH_GT] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299555,378 +284291,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), - }, - [2311] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5914), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5916), - [anon_sym_DOT_DOT] = ACTIONS(5918), - [anon_sym_QMARK_COLON] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(5922), - [anon_sym_PIPE_PIPE] = ACTIONS(5924), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5928), - [anon_sym_EQ_EQ] = ACTIONS(5926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5928), - [anon_sym_LT_EQ] = ACTIONS(5930), - [anon_sym_GT_EQ] = ACTIONS(5930), - [anon_sym_BANGin] = ACTIONS(5932), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [anon_sym_this_AT] = ACTIONS(3198), - [anon_sym_super_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [2312] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5968), - [anon_sym_RPAREN] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4350), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_while] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [2313] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(5972), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4239), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_while] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4242), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), }, - [2314] = { - [sym_type_constraints] = STATE(2459), - [sym_property_delegate] = STATE(2635), - [sym_getter] = STATE(5556), - [sym_setter] = STATE(5556), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_EQ] = ACTIONS(5976), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_where] = ACTIONS(5944), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(5978), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(3326), - [anon_sym_super] = ACTIONS(3326), - [anon_sym_STAR] = ACTIONS(3330), - [sym_label] = ACTIONS(3326), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_when] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3326), + [2170] = { + [sym_type_constraints] = STATE(2222), + [sym_property_delegate] = STATE(2373), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5738), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299951,1480 +284392,2187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3330), - [anon_sym_continue_AT] = ACTIONS(3330), - [anon_sym_break_AT] = ACTIONS(3330), - [anon_sym_this_AT] = ACTIONS(3330), - [anon_sym_super_AT] = ACTIONS(3330), - [sym_real_literal] = ACTIONS(3330), - [sym_integer_literal] = ACTIONS(3326), - [sym_hex_literal] = ACTIONS(3330), - [sym_bin_literal] = ACTIONS(3330), - [anon_sym_true] = ACTIONS(3326), - [anon_sym_false] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3330), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3330), - }, - [2315] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3170), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3170), - [anon_sym_RPAREN] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3170), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3168), - [anon_sym_sealed] = ACTIONS(3168), - [anon_sym_annotation] = ACTIONS(3168), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_lateinit] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_internal] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_tailrec] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_infix] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym_external] = ACTIONS(3168), - [sym_property_modifier] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_final] = ACTIONS(3168), - [anon_sym_open] = ACTIONS(3168), - [anon_sym_vararg] = ACTIONS(3168), - [anon_sym_noinline] = ACTIONS(3168), - [anon_sym_crossinline] = ACTIONS(3168), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2316] = { - [sym_primary_constructor] = STATE(4863), - [sym_class_body] = STATE(4873), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4750), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5980), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2317] = { - [sym_primary_constructor] = STATE(3498), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3435), - [sym_enum_class_body] = STATE(3500), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5982), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2171] = { + [sym__expression] = STATE(4334), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [2318] = { - [sym_primary_constructor] = STATE(4891), - [sym_class_body] = STATE(4975), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4769), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5984), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2172] = { + [sym__expression] = STATE(948), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2319] = { - [sym_primary_constructor] = STATE(3499), - [sym_class_body] = STATE(3500), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3439), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5986), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2173] = { + [sym_type_constraints] = STATE(2202), + [sym_property_delegate] = STATE(2331), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5740), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5742), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2320] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3174), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_RPAREN] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3172), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3174), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3172), - [anon_sym_sealed] = ACTIONS(3172), - [anon_sym_annotation] = ACTIONS(3172), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_lateinit] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_internal] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_tailrec] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_infix] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym_external] = ACTIONS(3172), - [sym_property_modifier] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_final] = ACTIONS(3172), - [anon_sym_open] = ACTIONS(3172), - [anon_sym_vararg] = ACTIONS(3172), - [anon_sym_noinline] = ACTIONS(3172), - [anon_sym_crossinline] = ACTIONS(3172), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2174] = { + [sym__expression] = STATE(2278), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2321] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_object] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_this] = ACTIONS(3149), - [anon_sym_super] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_null] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_when] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3149), - [anon_sym_throw] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3151), - [anon_sym_continue_AT] = ACTIONS(3151), - [anon_sym_break_AT] = ACTIONS(3151), - [anon_sym_this_AT] = ACTIONS(3151), - [anon_sym_super_AT] = ACTIONS(3151), - [sym_real_literal] = ACTIONS(3151), - [sym_integer_literal] = ACTIONS(3149), - [sym_hex_literal] = ACTIONS(3151), - [sym_bin_literal] = ACTIONS(3151), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3151), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3151), + [2175] = { + [sym__expression] = STATE(2275), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2322] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(5918), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2176] = { + [sym__expression] = STATE(2274), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3090), - [anon_sym_continue_AT] = ACTIONS(3090), - [anon_sym_break_AT] = ACTIONS(3090), - [anon_sym_this_AT] = ACTIONS(3090), - [anon_sym_super_AT] = ACTIONS(3090), - [sym_real_literal] = ACTIONS(3090), - [sym_integer_literal] = ACTIONS(3088), - [sym_hex_literal] = ACTIONS(3090), - [sym_bin_literal] = ACTIONS(3090), - [anon_sym_true] = ACTIONS(3088), - [anon_sym_false] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3090), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(4567), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), + [sym__string_start] = ACTIONS(639), }, - [2323] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5914), - [anon_sym_object] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3145), - [anon_sym_super] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5916), - [anon_sym_DOT_DOT] = ACTIONS(5918), - [anon_sym_QMARK_COLON] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_null] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_when] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5928), - [anon_sym_EQ_EQ] = ACTIONS(5926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5928), - [anon_sym_LT_EQ] = ACTIONS(5930), - [anon_sym_GT_EQ] = ACTIONS(5930), - [anon_sym_BANGin] = ACTIONS(5932), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3147), - [anon_sym_continue_AT] = ACTIONS(3147), - [anon_sym_break_AT] = ACTIONS(3147), - [anon_sym_this_AT] = ACTIONS(3147), - [anon_sym_super_AT] = ACTIONS(3147), - [sym_real_literal] = ACTIONS(3147), - [sym_integer_literal] = ACTIONS(3145), - [sym_hex_literal] = ACTIONS(3147), - [sym_bin_literal] = ACTIONS(3147), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3147), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), - [sym_safe_nav] = ACTIONS(4567), + [2177] = { + [sym__expression] = STATE(2272), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3147), + [sym__string_start] = ACTIONS(639), }, - [2324] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5914), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3141), - [anon_sym_super] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5916), - [anon_sym_DOT_DOT] = ACTIONS(5918), - [anon_sym_QMARK_COLON] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(5922), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_when] = ACTIONS(3141), - [anon_sym_try] = ACTIONS(3141), - [anon_sym_throw] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5928), - [anon_sym_EQ_EQ] = ACTIONS(5926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5928), - [anon_sym_LT_EQ] = ACTIONS(5930), - [anon_sym_GT_EQ] = ACTIONS(5930), - [anon_sym_BANGin] = ACTIONS(5932), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3143), - [anon_sym_continue_AT] = ACTIONS(3143), - [anon_sym_break_AT] = ACTIONS(3143), - [anon_sym_this_AT] = ACTIONS(3143), - [anon_sym_super_AT] = ACTIONS(3143), - [sym_real_literal] = ACTIONS(3143), - [sym_integer_literal] = ACTIONS(3141), - [sym_hex_literal] = ACTIONS(3143), - [sym_bin_literal] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3143), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(4567), + [2178] = { + [sym__expression] = STATE(2271), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3143), + [sym__string_start] = ACTIONS(639), }, - [2325] = { - [sym_primary_constructor] = STATE(4953), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4781), - [sym_enum_class_body] = STATE(4975), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5988), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2179] = { + [sym__expression] = STATE(2270), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2326] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5914), - [anon_sym_object] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3097), - [anon_sym_super] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5916), - [anon_sym_DOT_DOT] = ACTIONS(5918), - [anon_sym_QMARK_COLON] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_null] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_when] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3097), - [anon_sym_throw] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(5930), - [anon_sym_GT_EQ] = ACTIONS(5930), - [anon_sym_BANGin] = ACTIONS(5932), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3099), - [anon_sym_continue_AT] = ACTIONS(3099), - [anon_sym_break_AT] = ACTIONS(3099), - [anon_sym_this_AT] = ACTIONS(3099), - [anon_sym_super_AT] = ACTIONS(3099), - [sym_real_literal] = ACTIONS(3099), - [sym_integer_literal] = ACTIONS(3097), - [sym_hex_literal] = ACTIONS(3099), - [sym_bin_literal] = ACTIONS(3099), - [anon_sym_true] = ACTIONS(3097), - [anon_sym_false] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3099), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), - [sym_safe_nav] = ACTIONS(4567), + [2180] = { + [sym_type_constraints] = STATE(2194), + [sym_property_delegate] = STATE(2321), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5744), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3099), }, - [2327] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), + [2181] = { + [sym_type_constraints] = STATE(2191), + [sym_property_delegate] = STATE(2338), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2182] = { + [sym__expression] = STATE(2267), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [2183] = { + [sym__expression] = STATE(2266), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [2184] = { + [sym__expression] = STATE(2265), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [2185] = { + [sym__expression] = STATE(2264), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [2186] = { + [sym_type_constraints] = STATE(2200), + [sym_property_delegate] = STATE(2329), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5748), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2187] = { + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [2188] = { + [sym__expression] = STATE(4146), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [2189] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [2190] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_object] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3137), - [anon_sym_super] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5916), - [anon_sym_DOT_DOT] = ACTIONS(5918), - [anon_sym_QMARK_COLON] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_when] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(5932), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3139), - [anon_sym_continue_AT] = ACTIONS(3139), - [anon_sym_break_AT] = ACTIONS(3139), - [anon_sym_this_AT] = ACTIONS(3139), - [anon_sym_super_AT] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3139), - [sym_integer_literal] = ACTIONS(3137), - [sym_hex_literal] = ACTIONS(3139), - [sym_bin_literal] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3139), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3173), + [anon_sym_DASH_EQ] = ACTIONS(3173), + [anon_sym_STAR_EQ] = ACTIONS(3173), + [anon_sym_SLASH_EQ] = ACTIONS(3173), + [anon_sym_PERCENT_EQ] = ACTIONS(3173), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(4567), + [sym__automatic_semicolon] = ACTIONS(3173), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3139), }, - [2328] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3130), - [anon_sym_super] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(5918), - [anon_sym_QMARK_COLON] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_when] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3132), - [anon_sym_continue_AT] = ACTIONS(3132), - [anon_sym_break_AT] = ACTIONS(3132), - [anon_sym_this_AT] = ACTIONS(3132), - [anon_sym_super_AT] = ACTIONS(3132), - [sym_real_literal] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(3130), - [sym_hex_literal] = ACTIONS(3132), - [sym_bin_literal] = ACTIONS(3132), - [anon_sym_true] = ACTIONS(3130), - [anon_sym_false] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3132), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(4567), + [2191] = { + [sym_property_delegate] = STATE(2329), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5748), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3132), }, - [2329] = { - [sym_primary_constructor] = STATE(3507), - [sym_class_body] = STATE(3466), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3357), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), + [2192] = { + [sym_primary_constructor] = STATE(4940), + [sym__class_parameters] = STATE(5111), + [sym_type_parameters] = STATE(2368), + [sym_type_constraints] = STATE(5296), + [sym_enum_class_body] = STATE(5403), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5990), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5758), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -301452,77 +286600,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3248), + [anon_sym_continue_AT] = ACTIONS(3248), + [anon_sym_break_AT] = ACTIONS(3248), + [anon_sym_this_AT] = ACTIONS(3248), + [anon_sym_super_AT] = ACTIONS(3248), + [sym_real_literal] = ACTIONS(3248), + [sym_integer_literal] = ACTIONS(3244), + [sym_hex_literal] = ACTIONS(3248), + [sym_bin_literal] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3248), }, - [2330] = { - [sym_primary_constructor] = STATE(3693), - [sym_class_body] = STATE(4123), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3870), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), + [2193] = { + [sym_primary_constructor] = STATE(4778), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2310), + [sym_type_constraints] = STATE(5024), + [sym_enum_class_body] = STATE(5155), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5992), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(5766), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -301550,177 +286712,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), [sym_multiline_comment] = ACTIONS(3), }, - [2331] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_object] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_this] = ACTIONS(3116), - [anon_sym_super] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_when] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3116), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [anon_sym_this_AT] = ACTIONS(3118), - [anon_sym_super_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3116), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3116), - [anon_sym_false] = ACTIONS(3116), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [2194] = { + [sym_property_delegate] = STATE(2338), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), }, - [2332] = { - [sym_primary_constructor] = STATE(3762), - [sym_class_body] = STATE(4124), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2391), - [sym_type_constraints] = STATE(3880), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [2195] = { + [sym_primary_constructor] = STATE(4964), + [sym_class_body] = STATE(5344), + [sym__class_parameters] = STATE(5111), + [sym_type_parameters] = STATE(2328), + [sym_type_constraints] = STATE(5268), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5994), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), + [anon_sym_COLON] = ACTIONS(5778), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5780), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -301748,66 +286900,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), + }, + [2196] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2333] = { - [sym_type_constraints] = STATE(2462), - [sym_property_delegate] = STATE(2636), - [sym_getter] = STATE(5548), - [sym_setter] = STATE(5548), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2197] = { + [sym_property_delegate] = STATE(2325), + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(5996), - [anon_sym_fun] = ACTIONS(1732), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(5782), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_where] = ACTIONS(5944), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1732), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), [anon_sym_BANGin] = ACTIONS(1734), [anon_sym_is] = ACTIONS(1732), [anon_sym_BANGis] = ACTIONS(1734), [anon_sym_PLUS] = ACTIONS(1732), [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), [anon_sym_PLUS_PLUS] = ACTIONS(1734), [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -301832,490 +287110,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), }, - [2334] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(3109), + [2198] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_this] = ACTIONS(3109), - [anon_sym_super] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(5918), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_null] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_when] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3111), - [anon_sym_continue_AT] = ACTIONS(3111), - [anon_sym_break_AT] = ACTIONS(3111), - [anon_sym_this_AT] = ACTIONS(3111), - [anon_sym_super_AT] = ACTIONS(3111), - [sym_real_literal] = ACTIONS(3111), - [sym_integer_literal] = ACTIONS(3109), - [sym_hex_literal] = ACTIONS(3111), - [sym_bin_literal] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(4567), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3111), - }, - [2335] = { - [sym_primary_constructor] = STATE(4912), - [sym_class_body] = STATE(5370), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5148), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5998), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2336] = { - [sym_primary_constructor] = STATE(5011), - [sym_class_body] = STATE(4840), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4809), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6000), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2337] = { - [sym_indexing_suffix] = STATE(3168), - [sym_navigation_suffix] = STATE(3170), - [sym_call_suffix] = STATE(3171), - [sym_annotated_lambda] = STATE(3172), - [sym_type_arguments] = STATE(8444), - [sym_value_arguments] = STATE(2802), - [sym_lambda_literal] = STATE(3173), - [sym__equality_operator] = STATE(2129), - [sym__comparison_operator] = STATE(2128), - [sym__in_operator] = STATE(2127), - [sym__is_operator] = STATE(6523), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2085), - [sym__as_operator] = STATE(6525), - [sym__postfix_unary_operator] = STATE(3175), - [sym__member_access_operator] = STATE(8004), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2076), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), + [2199] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(5914), - [anon_sym_object] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_this] = ACTIONS(3105), - [anon_sym_super] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(5910), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(5916), - [anon_sym_DOT_DOT] = ACTIONS(5918), - [anon_sym_QMARK_COLON] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(5922), - [anon_sym_PIPE_PIPE] = ACTIONS(5924), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_when] = ACTIONS(3105), - [anon_sym_try] = ACTIONS(3105), - [anon_sym_throw] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(4567), - [anon_sym_BANG_EQ] = ACTIONS(5926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5928), - [anon_sym_EQ_EQ] = ACTIONS(5926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5928), - [anon_sym_LT_EQ] = ACTIONS(5930), - [anon_sym_GT_EQ] = ACTIONS(5930), - [anon_sym_BANGin] = ACTIONS(5932), - [anon_sym_is] = ACTIONS(4577), - [anon_sym_BANGis] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_as_QMARK] = ACTIONS(4583), - [anon_sym_PLUS_PLUS] = ACTIONS(4585), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_BANG_BANG] = ACTIONS(4585), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3107), - [anon_sym_continue_AT] = ACTIONS(3107), - [anon_sym_break_AT] = ACTIONS(3107), - [anon_sym_this_AT] = ACTIONS(3107), - [anon_sym_super_AT] = ACTIONS(3107), - [sym_real_literal] = ACTIONS(3107), - [sym_integer_literal] = ACTIONS(3105), - [sym_hex_literal] = ACTIONS(3107), - [sym_bin_literal] = ACTIONS(3107), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), - [sym_safe_nav] = ACTIONS(4567), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3107), }, - [2338] = { - [sym_primary_constructor] = STATE(5004), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4740), - [sym_enum_class_body] = STATE(4840), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2200] = { + [sym_property_delegate] = STATE(2336), + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(5784), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + }, + [2201] = { + [sym_primary_constructor] = STATE(4791), + [sym_class_body] = STATE(5123), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2307), + [sym_type_constraints] = STATE(5069), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6002), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(5786), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -302343,263 +287512,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [2339] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3188), - [anon_sym_sealed] = ACTIONS(3188), - [anon_sym_annotation] = ACTIONS(3188), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_lateinit] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_internal] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_tailrec] = ACTIONS(3188), - [anon_sym_operator] = ACTIONS(3188), - [anon_sym_infix] = ACTIONS(3188), - [anon_sym_inline] = ACTIONS(3188), - [anon_sym_external] = ACTIONS(3188), - [sym_property_modifier] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_final] = ACTIONS(3188), - [anon_sym_open] = ACTIONS(3188), - [anon_sym_vararg] = ACTIONS(3188), - [anon_sym_noinline] = ACTIONS(3188), - [anon_sym_crossinline] = ACTIONS(3188), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2340] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2341] = { - [sym_type_constraints] = STATE(2451), - [sym_property_delegate] = STATE(2613), - [sym_getter] = STATE(5561), - [sym_setter] = STATE(5561), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_EQ] = ACTIONS(6004), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_where] = ACTIONS(5944), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), + [2202] = { + [sym_property_delegate] = STATE(2321), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5744), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302624,93 +287610,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), }, - [2342] = { - [sym_primary_constructor] = STATE(3662), - [sym_class_body] = STATE(4138), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3878), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [2203] = { + [sym_primary_constructor] = STATE(4798), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2300), + [sym_type_constraints] = STATE(5056), + [sym_enum_class_body] = STATE(5123), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6006), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(5790), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -302738,276 +287712,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2343] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3194), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3194), - [anon_sym_RPAREN] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3192), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3194), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3192), - [anon_sym_sealed] = ACTIONS(3192), - [anon_sym_annotation] = ACTIONS(3192), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_lateinit] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_internal] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_tailrec] = ACTIONS(3192), - [anon_sym_operator] = ACTIONS(3192), - [anon_sym_infix] = ACTIONS(3192), - [anon_sym_inline] = ACTIONS(3192), - [anon_sym_external] = ACTIONS(3192), - [sym_property_modifier] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_final] = ACTIONS(3192), - [anon_sym_open] = ACTIONS(3192), - [anon_sym_vararg] = ACTIONS(3192), - [anon_sym_noinline] = ACTIONS(3192), - [anon_sym_crossinline] = ACTIONS(3192), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2344] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3103), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3101), - [anon_sym_sealed] = ACTIONS(3101), - [anon_sym_annotation] = ACTIONS(3101), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3101), - [anon_sym_lateinit] = ACTIONS(3101), - [anon_sym_public] = ACTIONS(3101), - [anon_sym_private] = ACTIONS(3101), - [anon_sym_internal] = ACTIONS(3101), - [anon_sym_protected] = ACTIONS(3101), - [anon_sym_tailrec] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_infix] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym_external] = ACTIONS(3101), - [sym_property_modifier] = ACTIONS(3101), - [anon_sym_abstract] = ACTIONS(3101), - [anon_sym_final] = ACTIONS(3101), - [anon_sym_open] = ACTIONS(3101), - [anon_sym_vararg] = ACTIONS(3101), - [anon_sym_noinline] = ACTIONS(3101), - [anon_sym_crossinline] = ACTIONS(3101), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2345] = { - [sym_primary_constructor] = STATE(3655), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3879), - [sym_enum_class_body] = STATE(4138), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [2204] = { + [sym_primary_constructor] = STATE(4808), + [sym_class_body] = STATE(5131), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2295), + [sym_type_constraints] = STATE(5038), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6008), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(5792), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -303035,78 +287812,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2346] = { - [sym_primary_constructor] = STATE(3642), - [sym_class_body] = STATE(4114), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3893), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2205] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2206] = { + [sym_primary_constructor] = STATE(3576), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2258), + [sym_type_constraints] = STATE(3311), + [sym_enum_class_body] = STATE(3562), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6010), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -303134,573 +288013,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [2347] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3111), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3109), - [anon_sym_sealed] = ACTIONS(3109), - [anon_sym_annotation] = ACTIONS(3109), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_lateinit] = ACTIONS(3109), - [anon_sym_public] = ACTIONS(3109), - [anon_sym_private] = ACTIONS(3109), - [anon_sym_internal] = ACTIONS(3109), - [anon_sym_protected] = ACTIONS(3109), - [anon_sym_tailrec] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_infix] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym_external] = ACTIONS(3109), - [sym_property_modifier] = ACTIONS(3109), - [anon_sym_abstract] = ACTIONS(3109), - [anon_sym_final] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_vararg] = ACTIONS(3109), - [anon_sym_noinline] = ACTIONS(3109), - [anon_sym_crossinline] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2348] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_where] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3116), - [anon_sym_sealed] = ACTIONS(3116), - [anon_sym_annotation] = ACTIONS(3116), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_lateinit] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_internal] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_tailrec] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_infix] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym_external] = ACTIONS(3116), - [sym_property_modifier] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_final] = ACTIONS(3116), - [anon_sym_open] = ACTIONS(3116), - [anon_sym_vararg] = ACTIONS(3116), - [anon_sym_noinline] = ACTIONS(3116), - [anon_sym_crossinline] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3634), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2349] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3125), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_RPAREN] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3125), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3123), - [anon_sym_sealed] = ACTIONS(3123), - [anon_sym_annotation] = ACTIONS(3123), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_lateinit] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_tailrec] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3123), - [sym_property_modifier] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_vararg] = ACTIONS(3123), - [anon_sym_noinline] = ACTIONS(3123), - [anon_sym_crossinline] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2350] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), + [2207] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3132), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_RPAREN] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3132), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_annotation] = ACTIONS(3130), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_lateinit] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_tailrec] = ACTIONS(3130), - [anon_sym_operator] = ACTIONS(3130), - [anon_sym_infix] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_external] = ACTIONS(3130), - [sym_property_modifier] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3130), - [anon_sym_noinline] = ACTIONS(3130), - [anon_sym_crossinline] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2351] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), + [2208] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_where] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3139), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2352] = { - [sym_primary_constructor] = STATE(3671), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3894), - [sym_enum_class_body] = STATE(4114), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2209] = { + [sym_primary_constructor] = STATE(4826), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2303), + [sym_type_constraints] = STATE(4650), + [sym_enum_class_body] = STATE(4770), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6012), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(5796), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -303728,142 +288313,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), [sym_multiline_comment] = ACTIONS(3), }, - [2353] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3099), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3099), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3097), - [anon_sym_sealed] = ACTIONS(3097), - [anon_sym_annotation] = ACTIONS(3097), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3097), - [anon_sym_lateinit] = ACTIONS(3097), - [anon_sym_public] = ACTIONS(3097), - [anon_sym_private] = ACTIONS(3097), - [anon_sym_internal] = ACTIONS(3097), - [anon_sym_protected] = ACTIONS(3097), - [anon_sym_tailrec] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_infix] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym_external] = ACTIONS(3097), - [sym_property_modifier] = ACTIONS(3097), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_final] = ACTIONS(3097), - [anon_sym_open] = ACTIONS(3097), - [anon_sym_vararg] = ACTIONS(3097), - [anon_sym_noinline] = ACTIONS(3097), - [anon_sym_crossinline] = ACTIONS(3097), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2210] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(5798), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(5800), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), + }, + [2211] = { + [sym_property_delegate] = STATE(2331), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5740), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5742), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2354] = { - [sym_primary_constructor] = STATE(3767), - [sym_class_body] = STATE(4148), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2370), - [sym_type_constraints] = STATE(3882), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), + [2212] = { + [sym_primary_constructor] = STATE(3573), + [sym_class_body] = STATE(3602), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2294), + [sym_type_constraints] = STATE(3342), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6014), + [anon_sym_COLON] = ACTIONS(5802), [anon_sym_LBRACK] = ACTIONS(3206), [anon_sym_as] = ACTIONS(3200), [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(5810), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5490), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5812), + [anon_sym_where] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(3200), [anon_sym_SEMI] = ACTIONS(3206), [anon_sym_get] = ACTIONS(3200), @@ -303871,6 +288557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3200), [sym_label] = ACTIONS(3206), [anon_sym_in] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), [anon_sym_DOT_DOT] = ACTIONS(3206), [anon_sym_QMARK_COLON] = ACTIONS(3206), [anon_sym_AMP_AMP] = ACTIONS(3206), @@ -303927,275 +288614,1065 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2355] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3143), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2213] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(5800), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), + }, + [2214] = { + [sym_primary_constructor] = STATE(3582), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2302), + [sym_type_constraints] = STATE(3284), + [sym_enum_class_body] = STATE(3521), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5804), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), [sym_multiline_comment] = ACTIONS(3), }, - [2356] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), + [2215] = { + [sym_primary_constructor] = STATE(4961), + [sym__class_parameters] = STATE(5111), + [sym_type_parameters] = STATE(2316), + [sym_type_constraints] = STATE(5269), + [sym_enum_class_body] = STATE(5344), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5806), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5758), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), + }, + [2216] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_RPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3147), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_BANGin] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3145), - [anon_sym_sealed] = ACTIONS(3145), - [anon_sym_annotation] = ACTIONS(3145), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_lateinit] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_tailrec] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym_external] = ACTIONS(3145), - [sym_property_modifier] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_vararg] = ACTIONS(3145), - [anon_sym_noinline] = ACTIONS(3145), - [anon_sym_crossinline] = ACTIONS(3145), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2357] = { - [sym_primary_constructor] = STATE(5053), - [sym_class_body] = STATE(5280), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2369), - [sym_type_constraints] = STATE(5116), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), + [2217] = { + [sym_class_body] = STATE(1137), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(5808), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), + }, + [2218] = { + [sym_primary_constructor] = STATE(4796), + [sym_class_body] = STATE(4745), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2289), + [sym_type_constraints] = STATE(4677), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5810), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2219] = { + [sym_class_body] = STATE(1043), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(5812), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), + }, + [2220] = { + [sym_primary_constructor] = STATE(4794), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2288), + [sym_type_constraints] = STATE(4626), + [sym_enum_class_body] = STATE(4745), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5814), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2221] = { + [sym_primary_constructor] = STATE(3375), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2279), + [sym_type_constraints] = STATE(3795), + [sym_enum_class_body] = STATE(3932), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5816), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2222] = { + [sym_property_delegate] = STATE(2352), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5721), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2223] = { + [sym_primary_constructor] = STATE(4931), + [sym_class_body] = STATE(5323), + [sym__class_parameters] = STATE(5111), + [sym_type_parameters] = STATE(2380), + [sym_type_constraints] = STATE(5301), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6016), + [anon_sym_COLON] = ACTIONS(5826), [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5780), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3200), [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), + [anon_sym_this] = ACTIONS(3200), + [anon_sym_super] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3200), [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_null] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), [anon_sym_else] = ACTIONS(3200), + [anon_sym_when] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), [anon_sym_BANGin] = ACTIONS(3206), [anon_sym_is] = ACTIONS(3200), [anon_sym_BANGis] = ACTIONS(3206), [anon_sym_PLUS] = ACTIONS(3200), [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), [anon_sym_PLUS_PLUS] = ACTIONS(3206), [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3200), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -304223,43 +289700,556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3206), + [anon_sym_continue_AT] = ACTIONS(3206), + [anon_sym_break_AT] = ACTIONS(3206), + [anon_sym_this_AT] = ACTIONS(3206), + [anon_sym_super_AT] = ACTIONS(3206), + [sym_real_literal] = ACTIONS(3206), + [sym_integer_literal] = ACTIONS(3200), + [sym_hex_literal] = ACTIONS(3206), + [sym_bin_literal] = ACTIONS(3206), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3206), [sym__backtick_identifier] = ACTIONS(3206), [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3206), }, - [2358] = { - [sym_primary_constructor] = STATE(3775), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2400), - [sym_type_constraints] = STATE(3883), - [sym_enum_class_body] = STATE(4148), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), + [2224] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2225] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(5828), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), + }, + [2226] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2227] = { + [sym_property_delegate] = STATE(2373), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5738), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2228] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2229] = { + [sym_primary_constructor] = STATE(4755), + [sym_class_body] = STATE(4812), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2268), + [sym_type_constraints] = STATE(4660), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6018), + [anon_sym_COLON] = ACTIONS(5830), [anon_sym_LBRACK] = ACTIONS(3206), [anon_sym_as] = ACTIONS(3200), [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(5810), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5490), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5812), + [anon_sym_where] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(3200), [anon_sym_SEMI] = ACTIONS(3206), [anon_sym_get] = ACTIONS(3200), @@ -304267,6 +290257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3200), [sym_label] = ACTIONS(3206), [anon_sym_in] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), [anon_sym_DOT_DOT] = ACTIONS(3206), [anon_sym_QMARK_COLON] = ACTIONS(3206), [anon_sym_AMP_AMP] = ACTIONS(3206), @@ -304323,42 +290314,642 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2359] = { - [sym_primary_constructor] = STATE(5055), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2368), - [sym_type_constraints] = STATE(5115), - [sym_enum_class_body] = STATE(5280), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), + [2230] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2231] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(5832), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), + }, + [2232] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2233] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [2234] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2235] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2236] = { + [sym_primary_constructor] = STATE(3394), + [sym_class_body] = STATE(3968), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2261), + [sym_type_constraints] = STATE(3712), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6020), + [anon_sym_COLON] = ACTIONS(5834), [anon_sym_LBRACK] = ACTIONS(3206), [anon_sym_as] = ACTIONS(3200), [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5810), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5774), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5868), + [anon_sym_where] = ACTIONS(5824), [anon_sym_DOT] = ACTIONS(3200), [anon_sym_SEMI] = ACTIONS(3206), [anon_sym_get] = ACTIONS(3200), @@ -304426,172 +291017,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2360] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3090), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3090), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2237] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5081), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, - [2361] = { - [sym_primary_constructor] = STATE(4887), - [sym_class_body] = STATE(5326), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5132), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [2238] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5838), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), + }, + [2239] = { + [sym_primary_constructor] = STATE(3384), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2260), + [sym_type_constraints] = STATE(3723), + [sym_enum_class_body] = STATE(3847), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6022), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(5840), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -304619,242 +291312,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - }, - [2362] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1570), - [sym__in_operator] = STATE(1572), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1578), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1681), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_where] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(3151), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_while] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3149), - [anon_sym_sealed] = ACTIONS(3149), - [anon_sym_annotation] = ACTIONS(3149), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3149), - [anon_sym_lateinit] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_internal] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_tailrec] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_infix] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym_external] = ACTIONS(3149), - [sym_property_modifier] = ACTIONS(3149), - [anon_sym_abstract] = ACTIONS(3149), - [anon_sym_final] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_vararg] = ACTIONS(3149), - [anon_sym_noinline] = ACTIONS(3149), - [anon_sym_crossinline] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(3634), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2363] = { - [sym_type_constraints] = STATE(2463), - [sym_property_delegate] = STATE(2527), - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6024), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2240] = { + [sym_primary_constructor] = STATE(3381), + [sym_class_body] = STATE(3847), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2276), + [sym_type_constraints] = STATE(3737), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5842), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2364] = { - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2241] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5844), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [2242] = { + [sym_property_delegate] = STATE(2360), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_RBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5705), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_COMMA] = ACTIONS(3346), [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5707), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(5790), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), + [anon_sym_SEMI] = ACTIONS(5709), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), [anon_sym_STAR] = ACTIONS(3344), [anon_sym_DASH_GT] = ACTIONS(3346), [sym_label] = ACTIONS(3346), @@ -304912,373 +291610,482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2365] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4239), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [2243] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), }, - [2366] = { - [sym_type_constraints] = STATE(2504), - [sym_property_delegate] = STATE(2612), - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6036), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3962), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2244] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5848), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), + }, + [2245] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2367] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(6044), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4350), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), + [2246] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [2368] = { - [sym_primary_constructor] = STATE(5024), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5124), - [sym_enum_class_body] = STATE(5241), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2247] = { + [sym_primary_constructor] = STATE(3577), + [sym_class_body] = STATE(3562), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2250), + [sym_type_constraints] = STATE(3352), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6048), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(5850), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -305306,77 +292113,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2369] = { - [sym_primary_constructor] = STATE(5064), - [sym_class_body] = STATE(5241), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5106), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2248] = { + [sym_property_delegate] = STATE(2363), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5728), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2249] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5852), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [2250] = { + [sym_primary_constructor] = STATE(3580), + [sym_class_body] = STATE(3539), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3280), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6050), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(5856), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -305404,77 +292411,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2370] = { - [sym_primary_constructor] = STATE(3777), - [sym_class_body] = STATE(4114), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3893), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2251] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3173), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_RPAREN] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3171), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3173), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2252] = { + [sym_primary_constructor] = STATE(3709), + [sym_class_body] = STATE(3968), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2359), + [sym_type_constraints] = STATE(3712), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6052), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(5858), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -305502,371 +292608,574 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2371] = { - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2253] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3158), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2372] = { - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(5768), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_DASH_GT] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2254] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3184), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2373] = { - [sym_type_constraints] = STATE(2437), - [sym_property_delegate] = STATE(2525), - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6054), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6056), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2255] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3115), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2374] = { - [sym_primary_constructor] = STATE(5037), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5120), - [sym_enum_class_body] = STATE(5326), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [2256] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [anon_sym_DASH_GT] = ACTIONS(3188), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2257] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5860), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [2258] = { + [sym_primary_constructor] = STATE(3579), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6058), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -305894,261 +293203,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2375] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_fun] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(6060), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_object] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_this] = ACTIONS(5177), - [anon_sym_super] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5179), - [sym_label] = ACTIONS(5177), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_null] = ACTIONS(5177), - [anon_sym_if] = ACTIONS(5177), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_when] = ACTIONS(5177), - [anon_sym_try] = ACTIONS(5177), - [anon_sym_throw] = ACTIONS(5177), - [anon_sym_return] = ACTIONS(5177), - [anon_sym_continue] = ACTIONS(5177), - [anon_sym_break] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_suspend] = ACTIONS(5177), - [anon_sym_sealed] = ACTIONS(5177), - [anon_sym_annotation] = ACTIONS(5177), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_override] = ACTIONS(5177), - [anon_sym_lateinit] = ACTIONS(5177), - [anon_sym_public] = ACTIONS(5177), - [anon_sym_private] = ACTIONS(5177), - [anon_sym_internal] = ACTIONS(5177), - [anon_sym_protected] = ACTIONS(5177), - [anon_sym_tailrec] = ACTIONS(5177), - [anon_sym_operator] = ACTIONS(5177), - [anon_sym_infix] = ACTIONS(5177), - [anon_sym_inline] = ACTIONS(5177), - [anon_sym_external] = ACTIONS(5177), - [sym_property_modifier] = ACTIONS(5177), - [anon_sym_abstract] = ACTIONS(5177), - [anon_sym_final] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(5177), - [anon_sym_vararg] = ACTIONS(5177), - [anon_sym_noinline] = ACTIONS(5177), - [anon_sym_crossinline] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5179), - [anon_sym_continue_AT] = ACTIONS(5179), - [anon_sym_break_AT] = ACTIONS(5179), - [anon_sym_this_AT] = ACTIONS(5179), - [anon_sym_super_AT] = ACTIONS(5179), - [sym_real_literal] = ACTIONS(5179), - [sym_integer_literal] = ACTIONS(5177), - [sym_hex_literal] = ACTIONS(5179), - [sym_bin_literal] = ACTIONS(5179), - [anon_sym_true] = ACTIONS(5177), - [anon_sym_false] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5179), - [sym__backtick_identifier] = ACTIONS(5179), - [sym__automatic_semicolon] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5179), + [2259] = { + [sym_primary_constructor] = STATE(3700), + [sym_class_body] = STATE(3847), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2344), + [sym_type_constraints] = STATE(3737), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5866), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), }, - [2376] = { - [sym_type_constraints] = STATE(2505), - [sym_property_delegate] = STATE(2607), - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6062), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2260] = { + [sym_primary_constructor] = STATE(3377), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2377] = { - [sym_primary_constructor] = STATE(5091), - [sym_class_body] = STATE(5475), - [sym__class_parameters] = STATE(5276), - [sym_type_constraints] = STATE(5463), - [sym_modifiers] = STATE(10048), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2261] = { + [sym_primary_constructor] = STATE(3390), + [sym_class_body] = STATE(3956), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3721), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6064), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5886), - [anon_sym_LBRACE] = ACTIONS(5898), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5890), - [anon_sym_where] = ACTIONS(5894), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_COLON] = ACTIONS(5870), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -306176,286 +293499,759 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), }, - [2378] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_object] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(6066), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_this] = ACTIONS(4926), - [anon_sym_super] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_if] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(6068), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4926), - [anon_sym_throw] = ACTIONS(4926), - [anon_sym_return] = ACTIONS(4926), - [anon_sym_continue] = ACTIONS(4926), - [anon_sym_break] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [2262] = { + [sym_primary_constructor] = STATE(4941), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2318), + [sym_type_constraints] = STATE(5056), + [sym_enum_class_body] = STATE(5123), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5872), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4928), - [anon_sym_continue_AT] = ACTIONS(4928), - [anon_sym_break_AT] = ACTIONS(4928), - [anon_sym_this_AT] = ACTIONS(4928), - [anon_sym_super_AT] = ACTIONS(4928), - [sym_real_literal] = ACTIONS(4928), - [sym_integer_literal] = ACTIONS(4926), - [sym_hex_literal] = ACTIONS(4928), - [sym_bin_literal] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [anon_sym_SQUOTE] = ACTIONS(4928), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), }, - [2379] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(6070), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_this] = ACTIONS(4355), - [anon_sym_super] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4353), - [sym_label] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [anon_sym_if] = ACTIONS(4355), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4355), - [anon_sym_try] = ACTIONS(4355), - [anon_sym_throw] = ACTIONS(4355), - [anon_sym_return] = ACTIONS(4355), - [anon_sym_continue] = ACTIONS(4355), - [anon_sym_break] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), + [2263] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), + }, + [2264] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_when] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), + }, + [2265] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3127), + [anon_sym_continue_AT] = ACTIONS(3127), + [anon_sym_break_AT] = ACTIONS(3127), + [anon_sym_this_AT] = ACTIONS(3127), + [anon_sym_super_AT] = ACTIONS(3127), + [sym_real_literal] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(3125), + [sym_hex_literal] = ACTIONS(3127), + [sym_bin_literal] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3127), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3127), + }, + [2266] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3119), + }, + [2267] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3138), + }, + [2268] = { + [sym_primary_constructor] = STATE(4766), + [sym_class_body] = STATE(4759), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4624), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4353), - [anon_sym_continue_AT] = ACTIONS(4353), - [anon_sym_break_AT] = ACTIONS(4353), - [anon_sym_this_AT] = ACTIONS(4353), - [anon_sym_super_AT] = ACTIONS(4353), - [sym_real_literal] = ACTIONS(4353), - [sym_integer_literal] = ACTIONS(4355), - [sym_hex_literal] = ACTIONS(4353), - [sym_bin_literal] = ACTIONS(4353), - [anon_sym_true] = ACTIONS(4355), - [anon_sym_false] = ACTIONS(4355), - [anon_sym_SQUOTE] = ACTIONS(4353), - [sym__backtick_identifier] = ACTIONS(4353), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4353), }, - [2380] = { - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_DASH_GT] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2269] = { + [sym_type_constraints] = STATE(2389), + [sym_property_delegate] = STATE(2592), + [sym_getter] = STATE(5335), + [sym_setter] = STATE(5335), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_EQ] = ACTIONS(5902), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_where] = ACTIONS(5904), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(5906), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306480,177 +294276,687 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), + }, + [2270] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), + }, + [2271] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3146), + }, + [2272] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), + }, + [2273] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3169), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2381] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_this] = ACTIONS(4244), - [anon_sym_super] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4244), - [anon_sym_if] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4244), - [anon_sym_try] = ACTIONS(4244), - [anon_sym_throw] = ACTIONS(4244), - [anon_sym_return] = ACTIONS(4244), - [anon_sym_continue] = ACTIONS(4244), - [anon_sym_break] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4242), - [anon_sym_continue_AT] = ACTIONS(4242), - [anon_sym_break_AT] = ACTIONS(4242), - [anon_sym_this_AT] = ACTIONS(4242), - [anon_sym_super_AT] = ACTIONS(4242), - [sym_real_literal] = ACTIONS(4242), - [sym_integer_literal] = ACTIONS(4244), - [sym_hex_literal] = ACTIONS(4242), - [sym_bin_literal] = ACTIONS(4242), - [anon_sym_true] = ACTIONS(4244), - [anon_sym_false] = ACTIONS(4244), - [anon_sym_SQUOTE] = ACTIONS(4242), - [sym__backtick_identifier] = ACTIONS(4242), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4242), + [2274] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3195), + [anon_sym_continue_AT] = ACTIONS(3195), + [anon_sym_break_AT] = ACTIONS(3195), + [anon_sym_this_AT] = ACTIONS(3195), + [anon_sym_super_AT] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_hex_literal] = ACTIONS(3195), + [sym_bin_literal] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3195), }, - [2382] = { - [sym_primary_constructor] = STATE(5029), - [sym_class_body] = STATE(5326), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5132), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [2275] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3188), + }, + [2276] = { + [sym_primary_constructor] = STATE(3376), + [sym_class_body] = STATE(3953), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3786), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6074), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(5912), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -306678,261 +294984,573 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2383] = { - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2277] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3134), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2384] = { - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3666), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2278] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3177), + }, + [2279] = { + [sym_primary_constructor] = STATE(3374), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5914), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, - [2385] = { - [sym_primary_constructor] = STATE(5054), - [sym__class_parameters] = STATE(5276), - [sym_type_constraints] = STATE(5461), - [sym_enum_class_body] = STATE(5475), - [sym_modifiers] = STATE(10048), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2280] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3090), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2281] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_null] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), + }, + [2282] = { + [sym_primary_constructor] = STATE(3701), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2354), + [sym_type_constraints] = STATE(3723), + [sym_enum_class_body] = STATE(3847), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6076), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5886), - [anon_sym_LBRACE] = ACTIONS(5888), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5890), - [anon_sym_where] = ACTIONS(5894), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_COLON] = ACTIONS(5916), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -306960,90 +295578,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), }, - [2386] = { - [sym_type_constraints] = STATE(2511), - [sym_property_delegate] = STATE(2614), - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6078), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3970), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2283] = { + [sym_type_constraints] = STATE(2418), + [sym_property_delegate] = STATE(2554), + [sym_getter] = STATE(5394), + [sym_setter] = STATE(5394), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_EQ] = ACTIONS(5918), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_where] = ACTIONS(5904), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307068,276 +295662,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [2387] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_object] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_this] = ACTIONS(4926), - [anon_sym_super] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_if] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(6068), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4926), - [anon_sym_throw] = ACTIONS(4926), - [anon_sym_return] = ACTIONS(4926), - [anon_sym_continue] = ACTIONS(4926), - [anon_sym_break] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [2284] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3103), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3103), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4928), - [anon_sym_continue_AT] = ACTIONS(4928), - [anon_sym_break_AT] = ACTIONS(4928), - [anon_sym_this_AT] = ACTIONS(4928), - [anon_sym_super_AT] = ACTIONS(4928), - [sym_real_literal] = ACTIONS(4928), - [sym_integer_literal] = ACTIONS(4926), - [sym_hex_literal] = ACTIONS(4928), - [sym_bin_literal] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [anon_sym_SQUOTE] = ACTIONS(4928), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), }, - [2388] = { - [sym_getter] = STATE(3552), - [sym_setter] = STATE(3552), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2285] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3134), + }, + [2286] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_super] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_when] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [anon_sym_return_AT] = ACTIONS(3103), + [anon_sym_continue_AT] = ACTIONS(3103), + [anon_sym_break_AT] = ACTIONS(3103), + [anon_sym_this_AT] = ACTIONS(3103), + [anon_sym_super_AT] = ACTIONS(3103), + [sym_real_literal] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(3101), + [sym_hex_literal] = ACTIONS(3103), + [sym_bin_literal] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(4613), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3103), }, - [2389] = { - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2287] = { + [sym_type_constraints] = STATE(2396), + [sym_property_delegate] = STATE(2553), + [sym_getter] = STATE(5349), + [sym_setter] = STATE(5349), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(5920), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_where] = ACTIONS(5904), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5922), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307362,80 +296058,1665 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [2390] = { - [sym_getter] = STATE(4976), - [sym_setter] = STATE(4976), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_RBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_DASH_GT] = ACTIONS(1802), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), + [2288] = { + [sym_primary_constructor] = STATE(4801), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4659), + [sym_enum_class_body] = STATE(4748), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5924), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2289] = { + [sym_primary_constructor] = STATE(4803), + [sym_class_body] = STATE(4748), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4621), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5926), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2290] = { + [sym_primary_constructor] = STATE(4934), + [sym_class_body] = STATE(5131), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2345), + [sym_type_constraints] = STATE(5038), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5928), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), + [sym_multiline_comment] = ACTIONS(3), + }, + [2291] = { + [sym_primary_constructor] = STATE(3685), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2343), + [sym_type_constraints] = STATE(3795), + [sym_enum_class_body] = STATE(3932), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5930), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2292] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3123), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_RPAREN] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3123), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3121), + [anon_sym_sealed] = ACTIONS(3121), + [anon_sym_annotation] = ACTIONS(3121), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_lateinit] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_internal] = ACTIONS(3121), + [anon_sym_protected] = ACTIONS(3121), + [anon_sym_tailrec] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_infix] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_external] = ACTIONS(3121), + [sym_property_modifier] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_final] = ACTIONS(3121), + [anon_sym_open] = ACTIONS(3121), + [anon_sym_vararg] = ACTIONS(3121), + [anon_sym_noinline] = ACTIONS(3121), + [anon_sym_crossinline] = ACTIONS(3121), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2293] = { + [sym_primary_constructor] = STATE(4903), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2378), + [sym_type_constraints] = STATE(5024), + [sym_enum_class_body] = STATE(5155), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5932), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2294] = { + [sym_primary_constructor] = STATE(3575), + [sym_class_body] = STATE(3565), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3329), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5934), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [2295] = { + [sym_primary_constructor] = STATE(4799), + [sym_class_body] = STATE(5175), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5030), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5936), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [2296] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3096), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2297] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_when] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_throw] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3090), + [anon_sym_continue_AT] = ACTIONS(3090), + [anon_sym_break_AT] = ACTIONS(3090), + [anon_sym_this_AT] = ACTIONS(3090), + [anon_sym_super_AT] = ACTIONS(3090), + [sym_real_literal] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [sym_hex_literal] = ACTIONS(3090), + [sym_bin_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), + }, + [2298] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3127), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3127), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2299] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3119), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3119), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2300] = { + [sym_primary_constructor] = STATE(4783), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5049), + [sym_enum_class_body] = STATE(5118), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5938), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2301] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3138), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3138), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2302] = { + [sym_primary_constructor] = STATE(3586), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2303] = { + [sym_primary_constructor] = STATE(4828), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4694), + [sym_enum_class_body] = STATE(4786), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5942), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2304] = { + [sym_type_constraints] = STATE(2400), + [sym_property_delegate] = STATE(2540), + [sym_getter] = STATE(5347), + [sym_setter] = STATE(5347), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_EQ] = ACTIONS(5944), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_where] = ACTIONS(5904), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307460,79 +297741,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), + }, + [2305] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3142), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2391] = { - [sym_primary_constructor] = STATE(3764), - [sym_class_body] = STATE(4138), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3878), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [2306] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), + }, + [2307] = { + [sym_primary_constructor] = STATE(4781), + [sym_class_body] = STATE(5118), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5029), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6080), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(5946), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -307560,78 +298053,660 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2392] = { - [sym_getter] = STATE(5014), - [sym_setter] = STATE(5014), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_RBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_RPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(3436), - [anon_sym_DASH_GT] = ACTIONS(3438), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [2308] = { + [sym_primary_constructor] = STATE(4898), + [sym_class_body] = STATE(5123), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2365), + [sym_type_constraints] = STATE(5069), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5948), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2309] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3146), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2310] = { + [sym_primary_constructor] = STATE(4776), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(4981), + [sym_enum_class_body] = STATE(5246), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5950), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2311] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3162), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2312] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3177), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3177), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2313] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3184), + }, + [2314] = { + [sym_type_constraints] = STATE(2388), + [sym_property_delegate] = STATE(2537), + [sym_getter] = STATE(5416), + [sym_setter] = STATE(5416), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_EQ] = ACTIONS(5952), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_where] = ACTIONS(5904), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307656,49 +298731,455 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [2315] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3195), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3195), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2316] = { + [sym_primary_constructor] = STATE(4965), + [sym__class_parameters] = STATE(5111), + [sym_type_constraints] = STATE(5271), + [sym_enum_class_body] = STATE(5391), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5954), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5758), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [2317] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, - [2393] = { - [sym_getter] = STATE(3552), - [sym_setter] = STATE(3552), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2318] = { + [sym_primary_constructor] = STATE(4950), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5049), + [sym_enum_class_body] = STATE(5118), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5956), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2319] = { + [sym_type_constraints] = STATE(2452), + [sym_property_delegate] = STATE(2541), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5958), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5960), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3674), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3942), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_DASH_GT] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), [anon_sym_while] = ACTIONS(1790), @@ -307754,178 +299235,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2394] = { - [sym_getter] = STATE(3530), - [sym_setter] = STATE(3530), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_RBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_DASH_GT] = ACTIONS(1802), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), - }, - [2395] = { - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2320] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307950,49 +299333,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2396] = { - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), + [2321] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2322] = { + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + }, + [2323] = { + [sym_type_constraints] = STATE(2454), + [sym_property_delegate] = STATE(2561), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5966), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5960), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_DASH_GT] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), [anon_sym_while] = ACTIONS(3344), @@ -308048,80 +299627,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2397] = { - [sym_getter] = STATE(3516), - [sym_setter] = STATE(3516), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_RBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_RPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(3436), - [anon_sym_DASH_GT] = ACTIONS(3438), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [2324] = { + [sym_type_constraints] = STATE(2458), + [sym_property_delegate] = STATE(2569), + [sym_getter] = STATE(3600), + [sym_setter] = STATE(3600), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(5972), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308146,80 +299725,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2398] = { - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2325] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308244,79 +299823,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2399] = { - [sym_type_constraints] = STATE(2466), - [sym_property_delegate] = STATE(2547), - [sym_getter] = STATE(5385), - [sym_setter] = STATE(5385), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(6082), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_COMMA] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(6084), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(3326), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_PLUS_EQ] = ACTIONS(3330), - [anon_sym_DASH_EQ] = ACTIONS(3330), - [anon_sym_STAR_EQ] = ACTIONS(3330), - [anon_sym_SLASH_EQ] = ACTIONS(3330), - [anon_sym_PERCENT_EQ] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), + [2326] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308341,80 +299921,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2400] = { - [sym_primary_constructor] = STATE(3782), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3894), - [sym_enum_class_body] = STATE(4114), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2327] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + }, + [2328] = { + [sym_primary_constructor] = STATE(4943), + [sym_class_body] = STATE(5391), + [sym__class_parameters] = STATE(5111), + [sym_type_constraints] = STATE(5295), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6086), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(5974), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5780), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -308442,176 +300107,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [2401] = { - [sym__alpha_identifier] = ACTIONS(5171), - [anon_sym_AT] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_fun] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(6088), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_object] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5173), - [anon_sym_get] = ACTIONS(5171), - [anon_sym_set] = ACTIONS(5171), - [anon_sym_this] = ACTIONS(5171), - [anon_sym_super] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5173), - [sym_label] = ACTIONS(5171), - [anon_sym_in] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5173), - [anon_sym_QMARK_COLON] = ACTIONS(5173), - [anon_sym_AMP_AMP] = ACTIONS(5173), - [anon_sym_PIPE_PIPE] = ACTIONS(5173), - [anon_sym_null] = ACTIONS(5171), - [anon_sym_if] = ACTIONS(5171), - [anon_sym_else] = ACTIONS(5171), - [anon_sym_when] = ACTIONS(5171), - [anon_sym_try] = ACTIONS(5171), - [anon_sym_throw] = ACTIONS(5171), - [anon_sym_return] = ACTIONS(5171), - [anon_sym_continue] = ACTIONS(5171), - [anon_sym_break] = ACTIONS(5171), - [anon_sym_COLON_COLON] = ACTIONS(5173), - [anon_sym_BANG_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), - [anon_sym_LT_EQ] = ACTIONS(5173), - [anon_sym_GT_EQ] = ACTIONS(5173), - [anon_sym_BANGin] = ACTIONS(5173), - [anon_sym_is] = ACTIONS(5171), - [anon_sym_BANGis] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5173), - [anon_sym_as_QMARK] = ACTIONS(5173), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_BANG_BANG] = ACTIONS(5173), - [anon_sym_suspend] = ACTIONS(5171), - [anon_sym_sealed] = ACTIONS(5171), - [anon_sym_annotation] = ACTIONS(5171), - [anon_sym_data] = ACTIONS(5171), - [anon_sym_inner] = ACTIONS(5171), - [anon_sym_value] = ACTIONS(5171), - [anon_sym_override] = ACTIONS(5171), - [anon_sym_lateinit] = ACTIONS(5171), - [anon_sym_public] = ACTIONS(5171), - [anon_sym_private] = ACTIONS(5171), - [anon_sym_internal] = ACTIONS(5171), - [anon_sym_protected] = ACTIONS(5171), - [anon_sym_tailrec] = ACTIONS(5171), - [anon_sym_operator] = ACTIONS(5171), - [anon_sym_infix] = ACTIONS(5171), - [anon_sym_inline] = ACTIONS(5171), - [anon_sym_external] = ACTIONS(5171), - [sym_property_modifier] = ACTIONS(5171), - [anon_sym_abstract] = ACTIONS(5171), - [anon_sym_final] = ACTIONS(5171), - [anon_sym_open] = ACTIONS(5171), - [anon_sym_vararg] = ACTIONS(5171), - [anon_sym_noinline] = ACTIONS(5171), - [anon_sym_crossinline] = ACTIONS(5171), - [anon_sym_expect] = ACTIONS(5171), - [anon_sym_actual] = ACTIONS(5171), + [2329] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5173), - [anon_sym_continue_AT] = ACTIONS(5173), - [anon_sym_break_AT] = ACTIONS(5173), - [anon_sym_this_AT] = ACTIONS(5173), - [anon_sym_super_AT] = ACTIONS(5173), - [sym_real_literal] = ACTIONS(5173), - [sym_integer_literal] = ACTIONS(5171), - [sym_hex_literal] = ACTIONS(5173), - [sym_bin_literal] = ACTIONS(5173), - [anon_sym_true] = ACTIONS(5171), - [anon_sym_false] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5173), - [sym__backtick_identifier] = ACTIONS(5173), - [sym__automatic_semicolon] = ACTIONS(5173), - [sym_safe_nav] = ACTIONS(5173), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5173), }, - [2402] = { - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2330] = { + [sym_type_constraints] = STATE(2461), + [sym_property_delegate] = STATE(2534), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5976), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308636,80 +300313,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2403] = { - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2331] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308734,79 +300411,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2404] = { - [sym_type_constraints] = STATE(2455), - [sym_property_delegate] = STATE(2529), - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6090), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3890), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2332] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308831,52 +300509,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2405] = { - [sym_type_constraints] = STATE(2438), - [sym_property_delegate] = STATE(2538), - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2333] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6092), + [anon_sym_EQ] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6026), + [anon_sym_RPAREN] = ACTIONS(3346), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5812), + [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6094), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), + [anon_sym_SEMI] = ACTIONS(5742), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), @@ -308929,179 +300607,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2406] = { - [sym_type_constraints] = STATE(2436), - [sym_property_delegate] = STATE(2565), - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6100), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - }, - [2407] = { - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2334] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309126,177 +300705,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2408] = { - [sym_primary_constructor] = STATE(5077), - [sym_class_body] = STATE(5466), - [sym__class_parameters] = STATE(5276), - [sym_type_constraints] = STATE(5425), - [sym_modifiers] = STATE(10048), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6102), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5886), - [anon_sym_LBRACE] = ACTIONS(5898), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5890), - [anon_sym_where] = ACTIONS(5894), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [2409] = { - [sym_type_constraints] = STATE(2468), - [sym_property_delegate] = STATE(2562), - [sym_getter] = STATE(4098), - [sym_setter] = STATE(4098), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(6104), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_COMMA] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(6106), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(3326), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_PLUS_EQ] = ACTIONS(3330), - [anon_sym_DASH_EQ] = ACTIONS(3330), - [anon_sym_STAR_EQ] = ACTIONS(3330), - [anon_sym_SLASH_EQ] = ACTIONS(3330), - [anon_sym_PERCENT_EQ] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), + [2335] = { + [sym_type_constraints] = STATE(2401), + [sym_property_delegate] = STATE(2509), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5978), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309321,80 +300802,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2410] = { - [sym_type_constraints] = STATE(2439), - [sym_property_delegate] = STATE(2545), - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6108), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3892), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2336] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309419,80 +300901,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2411] = { - [sym_type_constraints] = STATE(2448), - [sym_property_delegate] = STATE(2576), - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6110), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2337] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309517,81 +300999,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2412] = { - [sym_type_constraints] = STATE(2477), - [sym_property_delegate] = STATE(2619), - [sym_getter] = STATE(4834), - [sym_setter] = STATE(4834), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(6112), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_RPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(6114), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(3326), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_PLUS_EQ] = ACTIONS(3330), - [anon_sym_DASH_EQ] = ACTIONS(3330), - [anon_sym_STAR_EQ] = ACTIONS(3330), - [anon_sym_SLASH_EQ] = ACTIONS(3330), - [anon_sym_PERCENT_EQ] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), + [2338] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309616,374 +301097,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), - [sym_multiline_comment] = ACTIONS(3), - }, - [2413] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(5420), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4239), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), - }, - [2414] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5407), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4350), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), - }, - [2415] = { - [sym_primary_constructor] = STATE(5074), - [sym_class_body] = STATE(5544), - [sym__class_parameters] = STATE(5276), - [sym_type_constraints] = STATE(5457), - [sym_modifiers] = STATE(10048), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6120), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5886), - [anon_sym_LBRACE] = ACTIONS(5898), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5890), - [anon_sym_where] = ACTIONS(5894), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), }, - [2416] = { - [sym_type_constraints] = STATE(2501), - [sym_property_delegate] = STATE(2620), - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6122), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6124), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2339] = { + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310008,79 +301195,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2417] = { - [sym_type_constraints] = STATE(2446), - [sym_property_delegate] = STATE(2572), - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6126), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3902), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2340] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_RBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(3420), + [anon_sym_DASH_GT] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310105,81 +301293,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2418] = { - [sym_type_constraints] = STATE(2498), - [sym_property_delegate] = STATE(2626), - [sym_getter] = STATE(3471), - [sym_setter] = STATE(3471), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(6128), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_RPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(6130), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(3326), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_PLUS_EQ] = ACTIONS(3330), - [anon_sym_DASH_EQ] = ACTIONS(3330), - [anon_sym_STAR_EQ] = ACTIONS(3330), - [anon_sym_SLASH_EQ] = ACTIONS(3330), - [anon_sym_PERCENT_EQ] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), + [2341] = { + [sym_type_constraints] = STATE(2407), + [sym_property_delegate] = STATE(2513), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310204,49 +301390,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2419] = { - [sym_type_constraints] = STATE(2479), - [sym_property_delegate] = STATE(2616), - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2342] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6132), + [anon_sym_EQ] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6038), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5594), + [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6134), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), [anon_sym_while] = ACTIONS(3344), @@ -310302,177 +301489,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2420] = { - [sym_type_constraints] = STATE(2490), - [sym_property_delegate] = STATE(2608), - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6136), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3960), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2343] = { + [sym_primary_constructor] = STATE(3683), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5988), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, - [2421] = { - [sym_primary_constructor] = STATE(3765), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3879), - [sym_enum_class_body] = STATE(4138), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [2344] = { + [sym_primary_constructor] = STATE(3686), + [sym_class_body] = STATE(3953), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3786), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6138), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(5990), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -310500,78 +301687,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2422] = { - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2345] = { + [sym_primary_constructor] = STATE(4942), + [sym_class_body] = STATE(5175), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5030), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5992), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [2346] = { + [sym_type_constraints] = STATE(2398), + [sym_property_delegate] = STATE(2499), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5994), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5996), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310596,80 +301880,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2423] = { - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_DASH_GT] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2347] = { + [sym_type_constraints] = STATE(2413), + [sym_property_delegate] = STATE(2522), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5998), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310694,31 +301978,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2424] = { - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9554), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2348] = { + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2349] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6000), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), + }, + [2350] = { + [sym_type_constraints] = STATE(2394), + [sym_property_delegate] = STATE(2473), + [sym_getter] = STATE(3907), + [sym_setter] = STATE(3907), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6002), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6004), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + }, + [2351] = { + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5709), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2352] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_RBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), @@ -310732,9 +302409,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1732), [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3670), - [anon_sym_get] = ACTIONS(5758), - [anon_sym_set] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), [anon_sym_STAR] = ACTIONS(1732), [anon_sym_DASH_GT] = ACTIONS(1734), [sym_label] = ACTIONS(1734), @@ -310792,80 +302469,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2425] = { - [sym_type_constraints] = STATE(2491), - [sym_property_delegate] = STATE(2604), - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6140), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2353] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310890,177 +302567,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2426] = { - [sym_primary_constructor] = STATE(3761), - [sym_class_body] = STATE(4123), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3870), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6142), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2427] = { - [sym_primary_constructor] = STATE(5023), - [sym_class_body] = STATE(5370), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5148), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), + [2354] = { + [sym_primary_constructor] = STATE(3692), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6144), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(6006), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -311088,78 +302667,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2428] = { - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_DASH_GT] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2355] = { + [sym_getter] = STATE(3458), + [sym_setter] = STATE(3458), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_RBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(3420), + [anon_sym_DASH_GT] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311184,80 +302763,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2429] = { - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2356] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(6008), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), + }, + [2357] = { + [sym_type_constraints] = STATE(2414), + [sym_property_delegate] = STATE(2515), + [sym_getter] = STATE(5144), + [sym_setter] = STATE(5144), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6010), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6012), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311282,80 +302958,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2430] = { - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2358] = { + [sym_type_constraints] = STATE(2441), + [sym_property_delegate] = STATE(2579), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6018), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3920), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311380,67 +303057,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2431] = { - [sym_primary_constructor] = STATE(5095), - [sym__class_parameters] = STATE(5276), - [sym_type_constraints] = STATE(5435), - [sym_enum_class_body] = STATE(5544), - [sym_modifiers] = STATE(10048), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [2359] = { + [sym_primary_constructor] = STATE(3702), + [sym_class_body] = STATE(3956), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3721), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6146), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5886), - [anon_sym_LBRACE] = ACTIONS(5888), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5890), - [anon_sym_where] = ACTIONS(5894), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_COLON] = ACTIONS(6024), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -311468,90 +303157,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), }, - [2432] = { - [sym_getter] = STATE(4978), - [sym_setter] = STATE(4978), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2360] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311576,31 +303253,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2433] = { - [sym_getter] = STATE(4978), - [sym_setter] = STATE(4978), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2361] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_RBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), @@ -311614,9 +303291,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1790), [anon_sym_where] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), [anon_sym_STAR] = ACTIONS(1790), [anon_sym_DASH_GT] = ACTIONS(1792), [sym_label] = ACTIONS(1792), @@ -311674,52 +303351,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2434] = { - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9578), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2362] = { + [sym_type_constraints] = STATE(2411), + [sym_property_delegate] = STATE(2505), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6026), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5980), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5824), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(5784), - [anon_sym_set] = ACTIONS(5786), + [anon_sym_SEMI] = ACTIONS(6028), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_DASH_GT] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), @@ -311772,80 +303448,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2435] = { - [sym_type_constraints] = STATE(2493), - [sym_property_delegate] = STATE(2602), - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6148), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3958), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2363] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311870,78 +303547,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2436] = { - [sym_property_delegate] = STATE(2576), - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6110), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2364] = { + [sym_type_constraints] = STATE(2408), + [sym_property_delegate] = STATE(2489), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6030), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311966,176 +303644,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2437] = { - [sym_property_delegate] = STATE(2527), - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6024), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2365] = { + [sym_primary_constructor] = STATE(4901), + [sym_class_body] = STATE(5118), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5029), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6032), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2438] = { - [sym_property_delegate] = STATE(2565), - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6100), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2366] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312160,79 +303841,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2439] = { - [sym_property_delegate] = STATE(2558), - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6150), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3894), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2367] = { + [sym_type_constraints] = STATE(2404), + [sym_property_delegate] = STATE(2484), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6034), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312257,51 +303938,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2440] = { - [sym_type_constraints] = STATE(2582), - [sym_property_delegate] = STATE(2670), - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2368] = { + [sym_primary_constructor] = STATE(4895), + [sym__class_parameters] = STATE(5111), + [sym_type_constraints] = STATE(5314), + [sym_enum_class_body] = STATE(5353), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6036), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5758), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), + }, + [2369] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6038), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [2370] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6042), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [2371] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6152), + [anon_sym_EQ] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6154), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5812), + [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4056), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_DASH_GT] = ACTIONS(1734), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), @@ -312354,67 +304331,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2441] = { - [sym_property_delegate] = STATE(2589), - [sym_getter] = STATE(5490), - [sym_setter] = STATE(5490), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_EQ] = ACTIONS(5942), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), + [2372] = { + [sym_type_constraints] = STATE(2424), + [sym_property_delegate] = STATE(2581), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6046), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312439,91 +304429,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), }, - [2442] = { - [sym_type_constraints] = STATE(2570), - [sym_property_delegate] = STATE(2734), - [sym_getter] = STATE(5385), - [sym_setter] = STATE(5385), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(6160), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(6162), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(3326), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_PLUS_EQ] = ACTIONS(3330), - [anon_sym_DASH_EQ] = ACTIONS(3330), - [anon_sym_STAR_EQ] = ACTIONS(3330), - [anon_sym_SLASH_EQ] = ACTIONS(3330), - [anon_sym_PERCENT_EQ] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), + [2373] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312548,370 +304527,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2443] = { - [sym_type_constraints] = STATE(2522), - [sym_property_delegate] = STATE(2674), - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6164), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6166), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - }, - [2444] = { - [sym_type_constraints] = STATE(2544), - [sym_property_delegate] = STATE(2703), - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6172), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6174), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - }, - [2445] = { - [sym_type_constraints] = STATE(2552), - [sym_property_delegate] = STATE(2667), - [sym_getter] = STATE(4098), - [sym_setter] = STATE(4098), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(6176), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(6178), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(3326), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_PLUS_EQ] = ACTIONS(3330), - [anon_sym_DASH_EQ] = ACTIONS(3330), - [anon_sym_STAR_EQ] = ACTIONS(3330), - [anon_sym_SLASH_EQ] = ACTIONS(3330), - [anon_sym_PERCENT_EQ] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), - [sym_multiline_comment] = ACTIONS(3), + [2374] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6048), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), }, - [2446] = { - [sym_property_delegate] = STATE(2574), - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6180), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3910), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2375] = { + [sym_type_constraints] = STATE(2397), + [sym_property_delegate] = STATE(2483), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6050), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312936,176 +304722,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2447] = { - [sym_property_delegate] = STATE(2613), - [sym_getter] = STATE(5561), - [sym_setter] = STATE(5561), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_EQ] = ACTIONS(6004), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [2376] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(6052), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, - [2448] = { - [sym_property_delegate] = STATE(2572), - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6126), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3902), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2377] = { + [sym_type_constraints] = STATE(2420), + [sym_property_delegate] = STATE(2586), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3930), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313130,80 +304919,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2449] = { - [sym_primary_constructor] = STATE(4043), - [sym_class_body] = STATE(3465), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(2476), - [sym_type_constraints] = STATE(3455), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [2378] = { + [sym_primary_constructor] = STATE(4930), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(4981), + [sym_enum_class_body] = STATE(5246), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6182), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_RBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_DASH_GT] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(6056), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -313231,76 +305019,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, - [2450] = { - [sym_primary_constructor] = STATE(5352), - [sym_class_body] = STATE(4944), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(2510), - [sym_type_constraints] = STATE(4792), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), + [2379] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(6058), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(6052), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), + }, + [2380] = { + [sym_primary_constructor] = STATE(4960), + [sym_class_body] = STATE(5316), + [sym__class_parameters] = STATE(5111), + [sym_type_constraints] = STATE(5270), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6184), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_COLON] = ACTIONS(6060), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5780), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -313328,63 +305203,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, - [2451] = { - [sym_property_delegate] = STATE(2636), - [sym_getter] = STATE(5548), - [sym_setter] = STATE(5548), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(5996), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), + [2381] = { + [sym_type_constraints] = STATE(2453), + [sym_property_delegate] = STATE(2588), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6064), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313409,91 +305311,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), }, - [2452] = { - [sym_type_constraints] = STATE(2551), - [sym_property_delegate] = STATE(2697), - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6186), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4062), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2382] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(6066), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), + }, + [2383] = { + [sym_type_constraints] = STATE(2465), + [sym_property_delegate] = STATE(2544), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6068), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313518,79 +305507,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2453] = { - [sym_type_constraints] = STATE(2569), - [sym_property_delegate] = STATE(2676), - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6188), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3980), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2384] = { + [sym_type_constraints] = STATE(2428), + [sym_property_delegate] = STATE(2591), + [sym_getter] = STATE(4797), + [sym_setter] = STATE(4797), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6070), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6072), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313615,80 +305605,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2454] = { - [sym_primary_constructor] = STATE(4061), - [sym_class_body] = STATE(3571), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(2471), - [sym_type_constraints] = STATE(3427), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), + [2385] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5445), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [2386] = { + [sym_primary_constructor] = STATE(4009), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2427), + [sym_type_constraints] = STATE(3311), + [sym_enum_class_body] = STATE(3562), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6190), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_COLON] = ACTIONS(6074), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -313716,270 +305803,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2455] = { - [sym_property_delegate] = STATE(2545), - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6108), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3892), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - }, - [2456] = { - [sym_type_constraints] = STATE(2535), - [sym_property_delegate] = STATE(2671), - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6192), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4066), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2457] = { - [sym_primary_constructor] = STATE(5356), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(2513), - [sym_type_constraints] = STATE(4794), - [sym_enum_class_body] = STATE(4944), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), + [2387] = { + [sym_primary_constructor] = STATE(4015), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2421), + [sym_type_constraints] = STATE(3284), + [sym_enum_class_body] = STATE(3521), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6194), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_COLON] = ACTIONS(6076), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_DASH_GT] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -314007,137 +305900,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), [sym_multiline_comment] = ACTIONS(3), }, - [2458] = { - [sym_primary_constructor] = STATE(4062), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(2473), - [sym_type_constraints] = STATE(3426), - [sym_enum_class_body] = STATE(3571), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6196), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2388] = { + [sym_property_delegate] = STATE(2540), + [sym_getter] = STATE(5347), + [sym_setter] = STATE(5347), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_EQ] = ACTIONS(5944), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [2459] = { - [sym_property_delegate] = STATE(2610), - [sym_getter] = STATE(5554), - [sym_setter] = STATE(5554), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2389] = { + [sym_property_delegate] = STATE(2553), + [sym_getter] = STATE(5349), + [sym_setter] = STATE(5349), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(5964), - [anon_sym_fun] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5920), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(3544), + [anon_sym_by] = ACTIONS(3516), [anon_sym_object] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(5966), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5922), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3346), @@ -314185,8 +306078,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -314205,168 +306098,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [2460] = { - [sym_primary_constructor] = STATE(4038), - [sym_class_body] = STATE(3457), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(2472), - [sym_type_constraints] = STATE(3452), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6198), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_RBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3250), - [anon_sym_RPAREN] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3250), - [anon_sym_DASH_GT] = ACTIONS(3250), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3250), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), - [sym_multiline_comment] = ACTIONS(3), - }, - [2461] = { - [sym_type_constraints] = STATE(2530), - [sym_property_delegate] = STATE(2673), - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6200), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4076), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2390] = { + [sym_type_constraints] = STATE(2495), + [sym_property_delegate] = STATE(2634), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6078), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314391,67 +306187,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2462] = { - [sym_property_delegate] = STATE(2640), - [sym_getter] = STATE(5476), - [sym_setter] = STATE(5476), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_EQ] = ACTIONS(6202), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), + [2391] = { + [sym_type_constraints] = STATE(2525), + [sym_property_delegate] = STATE(2644), + [sym_getter] = STATE(5144), + [sym_setter] = STATE(5144), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6086), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6088), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314476,91 +306284,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), }, - [2463] = { - [sym_property_delegate] = STATE(2529), - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6090), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3890), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2392] = { + [sym_type_constraints] = STATE(2488), + [sym_property_delegate] = STATE(2632), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6094), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314585,79 +306381,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2464] = { - [sym_type_constraints] = STATE(2554), - [sym_property_delegate] = STATE(2687), - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6204), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4068), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2393] = { + [sym_type_constraints] = STATE(2469), + [sym_property_delegate] = STATE(2669), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6096), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314682,145 +306478,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2465] = { - [sym_primary_constructor] = STATE(5240), - [sym_class_body] = STATE(4888), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(2474), - [sym_type_constraints] = STATE(4753), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6206), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_RBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_DASH_GT] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2466] = { - [sym_property_delegate] = STATE(2525), - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2394] = { + [sym_property_delegate] = STATE(2499), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6054), + [anon_sym_EQ] = ACTIONS(5994), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6026), + [anon_sym_by] = ACTIONS(5980), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6056), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), + [anon_sym_SEMI] = ACTIONS(5996), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), [anon_sym_STAR] = ACTIONS(3344), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), @@ -314876,176 +306575,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2467] = { - [sym_primary_constructor] = STATE(4052), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(2515), - [sym_type_constraints] = STATE(3450), - [sym_enum_class_body] = STATE(3465), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_RBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_DASH_GT] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - }, - [2468] = { - [sym_property_delegate] = STATE(2538), - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6092), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6094), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2395] = { + [sym_type_constraints] = STATE(2490), + [sym_property_delegate] = STATE(2666), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6098), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315070,465 +306672,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - }, - [2469] = { - [sym_primary_constructor] = STATE(5252), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(2499), - [sym_type_constraints] = STATE(4754), - [sym_enum_class_body] = STATE(4888), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6210), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_RBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_DASH_GT] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2470] = { - [sym_primary_constructor] = STATE(5339), - [sym_class_body] = STATE(4993), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(2484), - [sym_type_constraints] = STATE(4813), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6212), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_RBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3250), - [anon_sym_RPAREN] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3250), - [anon_sym_DASH_GT] = ACTIONS(3250), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3250), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), - [sym_multiline_comment] = ACTIONS(3), + [2396] = { + [sym_property_delegate] = STATE(2537), + [sym_getter] = STATE(5416), + [sym_setter] = STATE(5416), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_EQ] = ACTIONS(5952), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [2471] = { - [sym_primary_constructor] = STATE(4063), - [sym_class_body] = STATE(3597), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3409), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6214), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_DASH_GT] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2397] = { + [sym_property_delegate] = STATE(2477), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6100), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2472] = { - [sym_primary_constructor] = STATE(4042), - [sym_class_body] = STATE(3466), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3357), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6216), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2398] = { + [sym_property_delegate] = STATE(2509), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5978), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2473] = { - [sym_primary_constructor] = STATE(4065), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3408), - [sym_enum_class_body] = STATE(3597), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2399] = { + [sym_primary_constructor] = STATE(5207), + [sym_class_body] = STATE(4812), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2443), + [sym_type_constraints] = STATE(4660), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6218), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_DASH_GT] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(6102), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [anon_sym_DASH_GT] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -315556,267 +307064,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2474] = { - [sym_primary_constructor] = STATE(5311), - [sym_class_body] = STATE(4975), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4769), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6220), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_DASH_GT] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), + [2400] = { + [sym_property_delegate] = STATE(2554), + [sym_getter] = STATE(5394), + [sym_setter] = STATE(5394), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_EQ] = ACTIONS(5918), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [2475] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_where] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2401] = { + [sym_property_delegate] = STATE(2513), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(3714), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2476] = { - [sym_primary_constructor] = STATE(4059), - [sym_class_body] = STATE(3500), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3439), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [2402] = { + [sym_primary_constructor] = STATE(5234), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2462), + [sym_type_constraints] = STATE(4650), + [sym_enum_class_body] = STATE(4770), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6222), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_DASH_GT] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(6104), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_DASH_GT] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -315844,47 +307355,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), [sym_multiline_comment] = ACTIONS(3), }, - [2477] = { - [sym_property_delegate] = STATE(2616), - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2403] = { + [sym_type_constraints] = STATE(2485), + [sym_property_delegate] = STATE(2630), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6132), + [anon_sym_EQ] = ACTIONS(6106), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6038), + [anon_sym_by] = ACTIONS(6080), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5824), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6134), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), + [anon_sym_SEMI] = ACTIONS(6108), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), [anon_sym_STAR] = ACTIONS(3344), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), @@ -315937,174 +307448,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2478] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_where] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3149), - [anon_sym_sealed] = ACTIONS(3149), - [anon_sym_annotation] = ACTIONS(3149), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3149), - [anon_sym_lateinit] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_internal] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_tailrec] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_infix] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym_external] = ACTIONS(3149), - [sym_property_modifier] = ACTIONS(3149), - [anon_sym_abstract] = ACTIONS(3149), - [anon_sym_final] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_vararg] = ACTIONS(3149), - [anon_sym_noinline] = ACTIONS(3149), - [anon_sym_crossinline] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(3714), + [2404] = { + [sym_property_delegate] = STATE(2483), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6050), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2479] = { - [sym_property_delegate] = STATE(2608), - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6136), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3960), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2405] = { + [sym_primary_constructor] = STATE(5212), + [sym_class_body] = STATE(4745), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2451), + [sym_type_constraints] = STATE(4677), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6110), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2406] = { + [sym_type_constraints] = STATE(2498), + [sym_property_delegate] = STATE(2636), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6112), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316129,78 +307739,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2480] = { - [sym_type_constraints] = STATE(2523), - [sym_property_delegate] = STATE(2745), - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6224), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6228), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_DASH_GT] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2407] = { + [sym_property_delegate] = STATE(2522), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5998), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316225,157 +307836,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2481] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(3172), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3172), - [anon_sym_sealed] = ACTIONS(3172), - [anon_sym_annotation] = ACTIONS(3172), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_lateinit] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_internal] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_tailrec] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_infix] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym_external] = ACTIONS(3172), - [sym_property_modifier] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_final] = ACTIONS(3172), - [anon_sym_open] = ACTIONS(3172), - [anon_sym_vararg] = ACTIONS(3172), - [anon_sym_noinline] = ACTIONS(3172), - [anon_sym_crossinline] = ACTIONS(3172), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2408] = { + [sym_property_delegate] = STATE(2484), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6034), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3174), - [sym_safe_nav] = ACTIONS(3714), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2482] = { - [sym_type_constraints] = STATE(2537), - [sym_property_delegate] = STATE(2777), - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2409] = { + [sym_primary_constructor] = STATE(5229), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2438), + [sym_type_constraints] = STATE(4626), + [sym_enum_class_body] = STATE(4745), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6114), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2410] = { + [sym_type_constraints] = STATE(2521), + [sym_property_delegate] = STATE(2648), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6234), + [anon_sym_EQ] = ACTIONS(6116), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6226), + [anon_sym_by] = ACTIONS(6080), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5594), + [anon_sym_where] = ACTIONS(5824), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6236), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_DASH_GT] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(6118), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(3344), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), [anon_sym_PIPE_PIPE] = ACTIONS(3346), [anon_sym_else] = ACTIONS(3344), [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), [anon_sym_BANG_EQ] = ACTIONS(3344), [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), [anon_sym_EQ_EQ] = ACTIONS(3344), @@ -316388,7 +308098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3344), [anon_sym_DASH] = ACTIONS(3344), [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3344), [anon_sym_as_QMARK] = ACTIONS(3346), [anon_sym_PLUS_PLUS] = ACTIONS(3346), [anon_sym_DASH_DASH] = ACTIONS(3346), @@ -316417,270 +308127,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2483] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(3192), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3192), - [anon_sym_sealed] = ACTIONS(3192), - [anon_sym_annotation] = ACTIONS(3192), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_lateinit] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_internal] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_tailrec] = ACTIONS(3192), - [anon_sym_operator] = ACTIONS(3192), - [anon_sym_infix] = ACTIONS(3192), - [anon_sym_inline] = ACTIONS(3192), - [anon_sym_external] = ACTIONS(3192), - [sym_property_modifier] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_final] = ACTIONS(3192), - [anon_sym_open] = ACTIONS(3192), - [anon_sym_vararg] = ACTIONS(3192), - [anon_sym_noinline] = ACTIONS(3192), - [anon_sym_crossinline] = ACTIONS(3192), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2484] = { - [sym_primary_constructor] = STATE(5239), - [sym_class_body] = STATE(4873), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4750), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6242), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2485] = { - [sym_type_constraints] = STATE(2533), - [sym_property_delegate] = STATE(2773), - [sym_getter] = STATE(3471), - [sym_setter] = STATE(3471), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_RBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(6244), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_COMMA] = ACTIONS(3330), - [anon_sym_RPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(6246), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(3330), - [anon_sym_DASH_GT] = ACTIONS(3330), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), + [2411] = { + [sym_property_delegate] = STATE(2489), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6030), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316705,462 +308224,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), - [sym_multiline_comment] = ACTIONS(3), - }, - [2486] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2487] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3188), - [anon_sym_sealed] = ACTIONS(3188), - [anon_sym_annotation] = ACTIONS(3188), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_lateinit] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_internal] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_tailrec] = ACTIONS(3188), - [anon_sym_operator] = ACTIONS(3188), - [anon_sym_infix] = ACTIONS(3188), - [anon_sym_inline] = ACTIONS(3188), - [anon_sym_external] = ACTIONS(3188), - [sym_property_modifier] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_final] = ACTIONS(3188), - [anon_sym_open] = ACTIONS(3188), - [anon_sym_vararg] = ACTIONS(3188), - [anon_sym_noinline] = ACTIONS(3188), - [anon_sym_crossinline] = ACTIONS(3188), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2488] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3097), - [anon_sym_sealed] = ACTIONS(3097), - [anon_sym_annotation] = ACTIONS(3097), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3097), - [anon_sym_lateinit] = ACTIONS(3097), - [anon_sym_public] = ACTIONS(3097), - [anon_sym_private] = ACTIONS(3097), - [anon_sym_internal] = ACTIONS(3097), - [anon_sym_protected] = ACTIONS(3097), - [anon_sym_tailrec] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_infix] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym_external] = ACTIONS(3097), - [sym_property_modifier] = ACTIONS(3097), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_final] = ACTIONS(3097), - [anon_sym_open] = ACTIONS(3097), - [anon_sym_vararg] = ACTIONS(3097), - [anon_sym_noinline] = ACTIONS(3097), - [anon_sym_crossinline] = ACTIONS(3097), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2489] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(3714), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2490] = { - [sym_property_delegate] = STATE(2604), - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6140), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2412] = { + [sym_type_constraints] = STATE(2481), + [sym_property_delegate] = STATE(2628), + [sym_getter] = STATE(3907), + [sym_setter] = STATE(3907), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6120), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6122), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317185,50 +308321,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2491] = { - [sym_property_delegate] = STATE(2602), - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2413] = { + [sym_property_delegate] = STATE(2524), + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6148), + [anon_sym_EQ] = ACTIONS(6124), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6038), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(5980), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3958), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), [anon_sym_STAR] = ACTIONS(1732), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), @@ -317281,626 +308418,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2492] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3123), - [anon_sym_sealed] = ACTIONS(3123), - [anon_sym_annotation] = ACTIONS(3123), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_lateinit] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_tailrec] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3123), - [sym_property_modifier] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_vararg] = ACTIONS(3123), - [anon_sym_noinline] = ACTIONS(3123), - [anon_sym_crossinline] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2493] = { - [sym_property_delegate] = STATE(2599), - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6248), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3956), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - }, - [2494] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3145), - [anon_sym_sealed] = ACTIONS(3145), - [anon_sym_annotation] = ACTIONS(3145), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_lateinit] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_tailrec] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym_external] = ACTIONS(3145), - [sym_property_modifier] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_vararg] = ACTIONS(3145), - [anon_sym_noinline] = ACTIONS(3145), - [anon_sym_crossinline] = ACTIONS(3145), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2495] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_where] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3116), - [anon_sym_sealed] = ACTIONS(3116), - [anon_sym_annotation] = ACTIONS(3116), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_lateinit] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_internal] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_tailrec] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_infix] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym_external] = ACTIONS(3116), - [sym_property_modifier] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_final] = ACTIONS(3116), - [anon_sym_open] = ACTIONS(3116), - [anon_sym_vararg] = ACTIONS(3116), - [anon_sym_noinline] = ACTIONS(3116), - [anon_sym_crossinline] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2496] = { - [sym_type_constraints] = STATE(2579), - [sym_property_delegate] = STATE(2784), - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6250), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2497] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3184), - [anon_sym_sealed] = ACTIONS(3184), - [anon_sym_annotation] = ACTIONS(3184), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_lateinit] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_internal] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_tailrec] = ACTIONS(3184), - [anon_sym_operator] = ACTIONS(3184), - [anon_sym_infix] = ACTIONS(3184), - [anon_sym_inline] = ACTIONS(3184), - [anon_sym_external] = ACTIONS(3184), - [sym_property_modifier] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_final] = ACTIONS(3184), - [anon_sym_open] = ACTIONS(3184), - [anon_sym_vararg] = ACTIONS(3184), - [anon_sym_noinline] = ACTIONS(3184), - [anon_sym_crossinline] = ACTIONS(3184), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3186), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2498] = { - [sym_property_delegate] = STATE(2620), - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2414] = { + [sym_property_delegate] = STATE(2505), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6122), + [anon_sym_EQ] = ACTIONS(6026), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6038), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5980), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6124), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), + [anon_sym_SEMI] = ACTIONS(6028), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), [anon_sym_STAR] = ACTIONS(3344), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), @@ -317953,78 +308515,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2499] = { - [sym_primary_constructor] = STATE(5325), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4781), - [sym_enum_class_body] = STATE(4975), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [2415] = { + [sym_primary_constructor] = STATE(4004), + [sym_class_body] = STATE(3602), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2431), + [sym_type_constraints] = STATE(3342), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6252), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_DASH_GT] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(6126), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [anon_sym_DASH_GT] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -318052,171 +308616,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2500] = { - [sym_type_constraints] = STATE(2583), - [sym_property_delegate] = STATE(2800), - [sym_getter] = STATE(4834), - [sym_setter] = STATE(4834), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_RBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(6254), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_COMMA] = ACTIONS(3330), - [anon_sym_RPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(6256), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(3330), - [anon_sym_DASH_GT] = ACTIONS(3330), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2416] = { + [sym_primary_constructor] = STATE(4011), + [sym_class_body] = STATE(3562), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2422), + [sym_type_constraints] = STATE(3352), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6128), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2501] = { - [sym_property_delegate] = STATE(2612), - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6036), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3962), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2417] = { + [sym_type_constraints] = STATE(2474), + [sym_property_delegate] = STATE(2673), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6130), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318241,174 +308806,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - }, - [2502] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3109), - [anon_sym_sealed] = ACTIONS(3109), - [anon_sym_annotation] = ACTIONS(3109), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_lateinit] = ACTIONS(3109), - [anon_sym_public] = ACTIONS(3109), - [anon_sym_private] = ACTIONS(3109), - [anon_sym_internal] = ACTIONS(3109), - [anon_sym_protected] = ACTIONS(3109), - [anon_sym_tailrec] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_infix] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym_external] = ACTIONS(3109), - [sym_property_modifier] = ACTIONS(3109), - [anon_sym_abstract] = ACTIONS(3109), - [anon_sym_final] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_vararg] = ACTIONS(3109), - [anon_sym_noinline] = ACTIONS(3109), - [anon_sym_crossinline] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(3714), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2503] = { - [sym_type_constraints] = STATE(2536), - [sym_property_delegate] = STATE(2775), - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2418] = { + [sym_property_delegate] = STATE(2560), + [sym_getter] = STATE(5407), + [sym_setter] = STATE(5407), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6258), + [anon_sym_EQ] = ACTIONS(6132), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4120), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), [anon_sym_BANGin] = ACTIONS(1734), [anon_sym_is] = ACTIONS(1732), [anon_sym_BANGis] = ACTIONS(1734), [anon_sym_PLUS] = ACTIONS(1732), [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), [anon_sym_PLUS_PLUS] = ACTIONS(1734), [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318433,174 +308891,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [2504] = { - [sym_property_delegate] = STATE(2607), - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6062), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2419] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2505] = { - [sym_property_delegate] = STATE(2614), - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6078), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3970), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2420] = { + [sym_property_delegate] = STATE(2581), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6046), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318625,83 +309096,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2506] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), + [2421] = { + [sym_primary_constructor] = STATE(4016), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6134), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2422] = { + [sym_primary_constructor] = STATE(4013), + [sym_class_body] = STATE(3539), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3280), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6136), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2423] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_COMMA] = ACTIONS(3103), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4363), [anon_sym_where] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3692), + [anon_sym_DOT] = ACTIONS(3660), [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(3101), [anon_sym_sealed] = ACTIONS(3101), [anon_sym_annotation] = ACTIONS(3101), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), [anon_sym_override] = ACTIONS(3101), [anon_sym_lateinit] = ACTIONS(3101), [anon_sym_public] = ACTIONS(3101), @@ -318720,367 +309383,367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3101), [anon_sym_noinline] = ACTIONS(3101), [anon_sym_crossinline] = ACTIONS(3101), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(3103), - [sym_safe_nav] = ACTIONS(3714), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2507] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3168), - [anon_sym_sealed] = ACTIONS(3168), - [anon_sym_annotation] = ACTIONS(3168), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_lateinit] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_internal] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_tailrec] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_infix] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym_external] = ACTIONS(3168), - [sym_property_modifier] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_final] = ACTIONS(3168), - [anon_sym_open] = ACTIONS(3168), - [anon_sym_vararg] = ACTIONS(3168), - [anon_sym_noinline] = ACTIONS(3168), - [anon_sym_crossinline] = ACTIONS(3168), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2424] = { + [sym_property_delegate] = STATE(2579), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6018), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3920), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), - [sym_safe_nav] = ACTIONS(3714), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2508] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), + [2425] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3134), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3156), - [anon_sym_sealed] = ACTIONS(3156), - [anon_sym_annotation] = ACTIONS(3156), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_lateinit] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_internal] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_tailrec] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_infix] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym_external] = ACTIONS(3156), - [sym_property_modifier] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_final] = ACTIONS(3156), - [anon_sym_open] = ACTIONS(3156), - [anon_sym_vararg] = ACTIONS(3156), - [anon_sym_noinline] = ACTIONS(3156), - [anon_sym_crossinline] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2509] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), + [2426] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3146), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4405), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4415), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3105), - [anon_sym_sealed] = ACTIONS(3105), - [anon_sym_annotation] = ACTIONS(3105), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3105), - [anon_sym_lateinit] = ACTIONS(3105), - [anon_sym_public] = ACTIONS(3105), - [anon_sym_private] = ACTIONS(3105), - [anon_sym_internal] = ACTIONS(3105), - [anon_sym_protected] = ACTIONS(3105), - [anon_sym_tailrec] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_infix] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym_external] = ACTIONS(3105), - [sym_property_modifier] = ACTIONS(3105), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_final] = ACTIONS(3105), - [anon_sym_open] = ACTIONS(3105), - [anon_sym_vararg] = ACTIONS(3105), - [anon_sym_noinline] = ACTIONS(3105), - [anon_sym_crossinline] = ACTIONS(3105), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2510] = { - [sym_primary_constructor] = STATE(5398), - [sym_class_body] = STATE(4840), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4809), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2427] = { + [sym_primary_constructor] = STATE(4012), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6260), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_DASH_GT] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(6138), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -319108,75 +309771,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2511] = { - [sym_property_delegate] = STATE(2630), - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6262), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2428] = { + [sym_property_delegate] = STATE(2588), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6064), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319201,174 +309864,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2512] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), + [2429] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2430] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_annotation] = ACTIONS(3130), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_lateinit] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_tailrec] = ACTIONS(3130), - [anon_sym_operator] = ACTIONS(3130), - [anon_sym_infix] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_external] = ACTIONS(3130), - [sym_property_modifier] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3130), - [anon_sym_noinline] = ACTIONS(3130), - [anon_sym_crossinline] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2513] = { - [sym_primary_constructor] = STATE(5410), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4740), - [sym_enum_class_body] = STATE(4840), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2431] = { + [sym_primary_constructor] = STATE(4008), + [sym_class_body] = STATE(3565), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3329), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_DASH_GT] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(6140), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -319396,75 +310155,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [2514] = { - [sym_type_constraints] = STATE(2581), - [sym_property_delegate] = STATE(2781), - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6266), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2432] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2433] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2434] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2435] = { + [sym_type_constraints] = STATE(2467), + [sym_property_delegate] = STATE(2684), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6142), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6146), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319489,78 +310536,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2515] = { - [sym_primary_constructor] = STATE(4060), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3435), - [sym_enum_class_body] = STATE(3500), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [2436] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2437] = { + [sym_type_constraints] = STATE(2475), + [sym_property_delegate] = STATE(2720), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6152), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2438] = { + [sym_primary_constructor] = STATE(5239), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4659), + [sym_enum_class_body] = STATE(4748), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6268), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_DASH_GT] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(6154), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -319588,49 +310827,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2516] = { - [sym_type_constraints] = STATE(2524), - [sym_property_delegate] = STATE(2783), - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2439] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2440] = { + [sym_type_constraints] = STATE(2471), + [sym_property_delegate] = STATE(2730), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6156), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2441] = { + [sym_property_delegate] = STATE(2574), + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6270), + [anon_sym_EQ] = ACTIONS(6158), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6226), + [anon_sym_by] = ACTIONS(5960), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5594), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4150), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(3932), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1732), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), [anon_sym_while] = ACTIONS(1732), @@ -319640,6 +311066,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(1734), [anon_sym_else] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), [anon_sym_BANG_EQ] = ACTIONS(1732), [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), [anon_sym_EQ_EQ] = ACTIONS(1732), @@ -319652,7 +311083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1732), [anon_sym_DASH] = ACTIONS(1732), [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1732), [anon_sym_as_QMARK] = ACTIONS(1734), [anon_sym_PLUS_PLUS] = ACTIONS(1734), [anon_sym_DASH_DASH] = ACTIONS(1734), @@ -319681,78 +311112,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2517] = { - [sym_type_constraints] = STATE(2521), - [sym_property_delegate] = STATE(2779), - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6272), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2442] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2443] = { + [sym_primary_constructor] = STATE(5263), + [sym_class_body] = STATE(4759), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4624), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6160), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [2444] = { + [sym_type_constraints] = STATE(2518), + [sym_property_delegate] = STATE(2685), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6162), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319777,78 +311400,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2518] = { - [sym_type_constraints] = STATE(2563), - [sym_property_delegate] = STATE(2794), - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6274), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4148), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2445] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2446] = { + [sym_type_constraints] = STATE(2504), + [sym_property_delegate] = STATE(2700), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6168), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319873,172 +311592,558 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2519] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1751), - [sym__comparison_operator] = STATE(1750), - [sym__in_operator] = STATE(1749), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1748), - [sym__multiplicative_operator] = STATE(1747), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1746), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), + [2447] = { + [sym_type_constraints] = STATE(2501), + [sym_property_delegate] = STATE(2705), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6170), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2448] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4397), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4397), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3121), + [anon_sym_sealed] = ACTIONS(3121), + [anon_sym_annotation] = ACTIONS(3121), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_lateinit] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_internal] = ACTIONS(3121), + [anon_sym_protected] = ACTIONS(3121), + [anon_sym_tailrec] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_infix] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_external] = ACTIONS(3121), + [sym_property_modifier] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_final] = ACTIONS(3121), + [anon_sym_open] = ACTIONS(3121), + [anon_sym_vararg] = ACTIONS(3121), + [anon_sym_noinline] = ACTIONS(3121), + [anon_sym_crossinline] = ACTIONS(3121), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(3123), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2520] = { - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2449] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2450] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2451] = { + [sym_primary_constructor] = STATE(5223), + [sym_class_body] = STATE(4748), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4621), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6172), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2452] = { + [sym_property_delegate] = STATE(2544), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6068), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320063,78 +312168,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2521] = { - [sym_property_delegate] = STATE(2781), - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6266), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2453] = { + [sym_property_delegate] = STATE(2586), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3930), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320159,76 +312264,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2522] = { - [sym_property_delegate] = STATE(2673), - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6200), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4076), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2454] = { + [sym_property_delegate] = STATE(2534), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5976), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320253,78 +312360,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2523] = { - [sym_property_delegate] = STATE(2794), - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6274), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4148), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2455] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2456] = { + [sym_type_constraints] = STATE(2528), + [sym_property_delegate] = STATE(2693), + [sym_getter] = STATE(4797), + [sym_setter] = STATE(4797), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_RBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6174), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6176), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_DASH_GT] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320349,77 +312552,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2524] = { - [sym_property_delegate] = STATE(2744), - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6276), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4122), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2457] = { + [sym_type_constraints] = STATE(2503), + [sym_property_delegate] = STATE(2732), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6178), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4120), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320444,76 +312648,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2525] = { - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2458] = { + [sym_property_delegate] = STATE(2561), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5966), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320538,77 +312744,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2526] = { - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2459] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3171), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3173), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2460] = { + [sym_type_constraints] = STATE(2494), + [sym_property_delegate] = STATE(2711), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6180), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6182), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320633,77 +312936,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2527] = { - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3890), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2461] = { + [sym_property_delegate] = STATE(2541), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5958), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3942), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320728,49 +313032,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2528] = { - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2462] = { + [sym_primary_constructor] = STATE(5233), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4694), + [sym_enum_class_body] = STATE(4786), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6184), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2463] = { + [sym_type_constraints] = STATE(2491), + [sym_property_delegate] = STATE(2722), + [sym_getter] = STATE(3600), + [sym_setter] = STATE(3600), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_RBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6186), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6188), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_DASH_GT] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + }, + [2464] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2465] = { + [sym_property_delegate] = STATE(2552), + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6190), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(5960), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), [anon_sym_STAR] = ACTIONS(1732), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), @@ -320823,32 +313416,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2529] = { - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2466] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(1732), @@ -320860,9 +313452,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1732), [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3892), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), [anon_sym_STAR] = ACTIONS(1732), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), @@ -320918,77 +313510,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2530] = { - [sym_property_delegate] = STATE(2671), - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6192), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4066), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2467] = { + [sym_property_delegate] = STATE(2732), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6178), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4120), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321013,172 +313606,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2531] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(3105), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3105), - [anon_sym_sealed] = ACTIONS(3105), - [anon_sym_annotation] = ACTIONS(3105), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3105), - [anon_sym_lateinit] = ACTIONS(3105), - [anon_sym_public] = ACTIONS(3105), - [anon_sym_private] = ACTIONS(3105), - [anon_sym_internal] = ACTIONS(3105), - [anon_sym_protected] = ACTIONS(3105), - [anon_sym_tailrec] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_infix] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym_external] = ACTIONS(3105), - [sym_property_modifier] = ACTIONS(3105), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_final] = ACTIONS(3105), - [anon_sym_open] = ACTIONS(3105), - [anon_sym_vararg] = ACTIONS(3105), - [anon_sym_noinline] = ACTIONS(3105), - [anon_sym_crossinline] = ACTIONS(3105), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2468] = { + [sym_getter] = STATE(5177), + [sym_setter] = STATE(5177), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2532] = { - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2469] = { + [sym_property_delegate] = STATE(2642), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6192), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321203,61 +313795,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2533] = { - [sym_property_delegate] = STATE(2777), - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2470] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6234), + [anon_sym_EQ] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6226), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6236), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_DASH_GT] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3344), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), [anon_sym_PIPE_PIPE] = ACTIONS(3346), [anon_sym_else] = ACTIONS(3344), [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), [anon_sym_BANG_EQ] = ACTIONS(3344), [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), [anon_sym_EQ_EQ] = ACTIONS(3344), @@ -321270,7 +313861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3344), [anon_sym_DASH] = ACTIONS(3344), [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3344), [anon_sym_as_QMARK] = ACTIONS(3346), [anon_sym_PLUS_PLUS] = ACTIONS(3346), [anon_sym_DASH_DASH] = ACTIONS(3346), @@ -321299,154 +313890,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2534] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_while] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3149), - [anon_sym_sealed] = ACTIONS(3149), - [anon_sym_annotation] = ACTIONS(3149), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3149), - [anon_sym_lateinit] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_internal] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_tailrec] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_infix] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym_external] = ACTIONS(3149), - [sym_property_modifier] = ACTIONS(3149), - [anon_sym_abstract] = ACTIONS(3149), - [anon_sym_final] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_vararg] = ACTIONS(3149), - [anon_sym_noinline] = ACTIONS(3149), - [anon_sym_crossinline] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2535] = { - [sym_property_delegate] = STATE(2676), - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2471] = { + [sym_property_delegate] = STATE(2729), + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6188), + [anon_sym_EQ] = ACTIONS(6194), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6154), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6144), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3980), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1734), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), [anon_sym_PIPE_PIPE] = ACTIONS(1734), [anon_sym_else] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), [anon_sym_BANG_EQ] = ACTIONS(1732), [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), [anon_sym_EQ_EQ] = ACTIONS(1732), @@ -321459,7 +313957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1732), [anon_sym_DASH] = ACTIONS(1732), [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), [anon_sym_as_QMARK] = ACTIONS(1734), [anon_sym_PLUS_PLUS] = ACTIONS(1734), [anon_sym_DASH_DASH] = ACTIONS(1734), @@ -321488,78 +313986,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2536] = { - [sym_property_delegate] = STATE(2770), - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6278), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2472] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321584,77 +314080,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2537] = { - [sym_property_delegate] = STATE(2779), - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6272), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2473] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5996), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321679,76 +314175,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2538] = { - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2474] = { + [sym_property_delegate] = STATE(2669), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6096), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321773,457 +314270,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - }, - [2539] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2540] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3145), - [anon_sym_sealed] = ACTIONS(3145), - [anon_sym_annotation] = ACTIONS(3145), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_lateinit] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_tailrec] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym_external] = ACTIONS(3145), - [sym_property_modifier] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_vararg] = ACTIONS(3145), - [anon_sym_noinline] = ACTIONS(3145), - [anon_sym_crossinline] = ACTIONS(3145), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2541] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2542] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3097), - [anon_sym_sealed] = ACTIONS(3097), - [anon_sym_annotation] = ACTIONS(3097), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3097), - [anon_sym_lateinit] = ACTIONS(3097), - [anon_sym_public] = ACTIONS(3097), - [anon_sym_private] = ACTIONS(3097), - [anon_sym_internal] = ACTIONS(3097), - [anon_sym_protected] = ACTIONS(3097), - [anon_sym_tailrec] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_infix] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym_external] = ACTIONS(3097), - [sym_property_modifier] = ACTIONS(3097), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_final] = ACTIONS(3097), - [anon_sym_open] = ACTIONS(3097), - [anon_sym_vararg] = ACTIONS(3097), - [anon_sym_noinline] = ACTIONS(3097), - [anon_sym_crossinline] = ACTIONS(3097), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2543] = { - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2475] = { + [sym_property_delegate] = STATE(2730), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6156), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322248,77 +314366,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2544] = { - [sym_property_delegate] = STATE(2697), - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6186), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4062), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2476] = { + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322343,32 +314460,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2545] = { - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2477] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), [anon_sym_EQ] = ACTIONS(1808), @@ -322380,9 +314497,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1808), [anon_sym_where] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3894), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), [anon_sym_STAR] = ACTIONS(1808), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), @@ -322438,616 +314555,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1810), [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2546] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), + [2478] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3169), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2547] = { - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6056), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2548] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), + [2479] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_annotation] = ACTIONS(3130), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_lateinit] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_tailrec] = ACTIONS(3130), - [anon_sym_operator] = ACTIONS(3130), - [anon_sym_infix] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_external] = ACTIONS(3130), - [sym_property_modifier] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3130), - [anon_sym_noinline] = ACTIONS(3130), - [anon_sym_crossinline] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2549] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3123), - [anon_sym_sealed] = ACTIONS(3123), - [anon_sym_annotation] = ACTIONS(3123), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_lateinit] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_tailrec] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3123), - [sym_property_modifier] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_vararg] = ACTIONS(3123), - [anon_sym_noinline] = ACTIONS(3123), - [anon_sym_crossinline] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2550] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), + [2480] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3103), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3172), - [anon_sym_sealed] = ACTIONS(3172), - [anon_sym_annotation] = ACTIONS(3172), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_lateinit] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_internal] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_tailrec] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_infix] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym_external] = ACTIONS(3172), - [sym_property_modifier] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_final] = ACTIONS(3172), - [anon_sym_open] = ACTIONS(3172), - [anon_sym_vararg] = ACTIONS(3172), - [anon_sym_noinline] = ACTIONS(3172), - [anon_sym_crossinline] = ACTIONS(3172), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2551] = { - [sym_property_delegate] = STATE(2687), - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6204), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4068), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2552] = { - [sym_property_delegate] = STATE(2674), - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2481] = { + [sym_property_delegate] = STATE(2630), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6164), + [anon_sym_EQ] = ACTIONS(6106), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6154), + [anon_sym_by] = ACTIONS(6080), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6166), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), + [anon_sym_SEMI] = ACTIONS(6108), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), [anon_sym_STAR] = ACTIONS(3344), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), @@ -323103,77 +314935,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2553] = { - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2482] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323198,46 +315030,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2554] = { - [sym_property_delegate] = STATE(2670), - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2483] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6152), + [anon_sym_EQ] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6154), + [anon_sym_COMMA] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4056), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), [anon_sym_STAR] = ACTIONS(1732), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), @@ -323293,172 +315125,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2555] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3188), - [anon_sym_sealed] = ACTIONS(3188), - [anon_sym_annotation] = ACTIONS(3188), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_lateinit] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_internal] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_tailrec] = ACTIONS(3188), - [anon_sym_operator] = ACTIONS(3188), - [anon_sym_infix] = ACTIONS(3188), - [anon_sym_inline] = ACTIONS(3188), - [anon_sym_external] = ACTIONS(3188), - [sym_property_modifier] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_final] = ACTIONS(3188), - [anon_sym_open] = ACTIONS(3188), - [anon_sym_vararg] = ACTIONS(3188), - [anon_sym_noinline] = ACTIONS(3188), - [anon_sym_crossinline] = ACTIONS(3188), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2556] = { - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2484] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323483,141 +315220,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - }, - [2557] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3168), - [anon_sym_sealed] = ACTIONS(3168), - [anon_sym_annotation] = ACTIONS(3168), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_lateinit] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_internal] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_tailrec] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_infix] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym_external] = ACTIONS(3168), - [sym_property_modifier] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_final] = ACTIONS(3168), - [anon_sym_open] = ACTIONS(3168), - [anon_sym_vararg] = ACTIONS(3168), - [anon_sym_noinline] = ACTIONS(3168), - [anon_sym_crossinline] = ACTIONS(3168), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2558] = { - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), + [2485] = { + [sym_property_delegate] = STATE(2632), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6094), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2486] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2487] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2488] = { + [sym_property_delegate] = STATE(2634), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6078), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6080), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3898), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -323673,267 +315600,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2559] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2560] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3192), - [anon_sym_sealed] = ACTIONS(3192), - [anon_sym_annotation] = ACTIONS(3192), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_lateinit] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_internal] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_tailrec] = ACTIONS(3192), - [anon_sym_operator] = ACTIONS(3192), - [anon_sym_infix] = ACTIONS(3192), - [anon_sym_inline] = ACTIONS(3192), - [anon_sym_external] = ACTIONS(3192), - [sym_property_modifier] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_final] = ACTIONS(3192), - [anon_sym_open] = ACTIONS(3192), - [anon_sym_vararg] = ACTIONS(3192), - [anon_sym_noinline] = ACTIONS(3192), - [anon_sym_crossinline] = ACTIONS(3192), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2489] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2561] = { - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2490] = { + [sym_property_delegate] = STATE(2673), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6130), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323958,60 +315790,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2562] = { - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2491] = { + [sym_property_delegate] = STATE(2711), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6180), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6144), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6094), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6182), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), [anon_sym_PIPE_PIPE] = ACTIONS(3346), [anon_sym_else] = ACTIONS(3344), [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), [anon_sym_BANG_EQ] = ACTIONS(3344), [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), [anon_sym_EQ_EQ] = ACTIONS(3344), @@ -324024,7 +315857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3344), [anon_sym_DASH] = ACTIONS(3344), [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), [anon_sym_as_QMARK] = ACTIONS(3346), [anon_sym_PLUS_PLUS] = ACTIONS(3346), [anon_sym_DASH_DASH] = ACTIONS(3346), @@ -324053,78 +315886,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2563] = { - [sym_property_delegate] = STATE(2784), - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6250), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2492] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324149,76 +315980,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2564] = { - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2493] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2494] = { + [sym_property_delegate] = STATE(2705), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6170), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324243,77 +316171,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2565] = { - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2495] = { + [sym_property_delegate] = STATE(2636), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6112), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324338,77 +316265,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2566] = { - [sym_getter] = STATE(5259), - [sym_setter] = STATE(5259), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(1800), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), + [2496] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324433,46 +316360,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2567] = { - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2497] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2498] = { + [sym_property_delegate] = STATE(2638), + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6196), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6080), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), + [anon_sym_SEMI] = ACTIONS(3984), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), [anon_sym_STAR] = ACTIONS(1732), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), @@ -324528,77 +316550,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2568] = { - [sym_getter] = STATE(5227), - [sym_setter] = STATE(5227), - [sym_modifiers] = STATE(9456), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(6028), - [anon_sym_set] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(3436), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [2499] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324623,77 +316645,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2569] = { - [sym_property_delegate] = STATE(2707), - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6280), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4064), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2500] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2501] = { + [sym_property_delegate] = STATE(2700), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6168), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324718,77 +316836,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2570] = { - [sym_property_delegate] = STATE(2703), - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6172), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6174), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2502] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2503] = { + [sym_property_delegate] = STATE(2720), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6152), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324813,77 +317026,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2571] = { - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2504] = { + [sym_property_delegate] = STATE(2685), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6162), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324908,77 +317121,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2572] = { - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3910), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2505] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325003,32 +317215,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2573] = { - [sym_getter] = STATE(4045), - [sym_setter] = STATE(4045), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2506] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2507] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), @@ -325041,8 +317348,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -325098,32 +317405,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2574] = { - [sym_getter] = STATE(4045), - [sym_setter] = STATE(4045), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2508] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2509] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), @@ -325135,9 +317537,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1790), [anon_sym_where] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3914), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -325193,155 +317595,821 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2575] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), + [2510] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2511] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3142), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3101), - [anon_sym_sealed] = ACTIONS(3101), - [anon_sym_annotation] = ACTIONS(3101), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3101), - [anon_sym_lateinit] = ACTIONS(3101), - [anon_sym_public] = ACTIONS(3101), - [anon_sym_private] = ACTIONS(3101), - [anon_sym_internal] = ACTIONS(3101), - [anon_sym_protected] = ACTIONS(3101), - [anon_sym_tailrec] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_infix] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym_external] = ACTIONS(3101), - [sym_property_modifier] = ACTIONS(3101), - [anon_sym_abstract] = ACTIONS(3101), - [anon_sym_final] = ACTIONS(3101), - [anon_sym_open] = ACTIONS(3101), - [anon_sym_vararg] = ACTIONS(3101), - [anon_sym_noinline] = ACTIONS(3101), - [anon_sym_crossinline] = ACTIONS(3101), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2576] = { - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2512] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2513] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2514] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2515] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6028), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2516] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2517] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2518] = { + [sym_property_delegate] = STATE(2686), + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6198), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6144), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3902), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1734), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), [anon_sym_PIPE_PIPE] = ACTIONS(1734), [anon_sym_else] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), [anon_sym_BANG_EQ] = ACTIONS(1732), [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), [anon_sym_EQ_EQ] = ACTIONS(1732), @@ -325354,7 +318422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1732), [anon_sym_DASH] = ACTIONS(1732), [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), [anon_sym_as_QMARK] = ACTIONS(1734), [anon_sym_PLUS_PLUS] = ACTIONS(1734), [anon_sym_DASH_DASH] = ACTIONS(1734), @@ -325383,251 +318451,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2577] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(1724), + [2519] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3175), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_BANGis] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3156), - [anon_sym_sealed] = ACTIONS(3156), - [anon_sym_annotation] = ACTIONS(3156), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_lateinit] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_internal] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_tailrec] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_infix] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym_external] = ACTIONS(3156), - [sym_property_modifier] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_final] = ACTIONS(3156), - [anon_sym_open] = ACTIONS(3156), - [anon_sym_vararg] = ACTIONS(3156), - [anon_sym_noinline] = ACTIONS(3156), - [anon_sym_crossinline] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2578] = { - [sym_getter] = STATE(4022), - [sym_setter] = STATE(4022), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(1800), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2579] = { - [sym_property_delegate] = STATE(2775), - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2520] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6258), + [anon_sym_EQ] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6226), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4120), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1732), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), [anon_sym_PIPE_PIPE] = ACTIONS(1734), [anon_sym_else] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), [anon_sym_BANG_EQ] = ACTIONS(1732), [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), [anon_sym_EQ_EQ] = ACTIONS(1732), @@ -325640,7 +318611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1732), [anon_sym_DASH] = ACTIONS(1732), [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1732), [anon_sym_as_QMARK] = ACTIONS(1734), [anon_sym_PLUS_PLUS] = ACTIONS(1734), [anon_sym_DASH_DASH] = ACTIONS(1734), @@ -325669,76 +318640,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2580] = { - [sym_getter] = STATE(3962), - [sym_setter] = STATE(3962), - [sym_modifiers] = STATE(9564), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(6096), - [anon_sym_set] = ACTIONS(6098), - [anon_sym_STAR] = ACTIONS(3436), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [2521] = { + [sym_property_delegate] = STATE(2666), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6098), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325763,61 +318735,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2581] = { - [sym_property_delegate] = STATE(2783), - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2522] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6270), + [anon_sym_EQ] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6226), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4150), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1732), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), [anon_sym_PIPE_PIPE] = ACTIONS(1734), [anon_sym_else] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), [anon_sym_BANG_EQ] = ACTIONS(1732), [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), [anon_sym_EQ_EQ] = ACTIONS(1732), @@ -325830,7 +318801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1732), [anon_sym_DASH] = ACTIONS(1732), [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1732), [anon_sym_as_QMARK] = ACTIONS(1734), [anon_sym_PLUS_PLUS] = ACTIONS(1734), [anon_sym_DASH_DASH] = ACTIONS(1734), @@ -325859,45 +318830,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2582] = { - [sym_property_delegate] = STATE(2664), - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2523] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6282), + [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6154), + [anon_sym_COMMA] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4078), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), [anon_sym_STAR] = ACTIONS(1808), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), @@ -325953,61 +318925,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1810), [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2583] = { - [sym_property_delegate] = STATE(2745), - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6224), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(3344), + [2524] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3734), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + }, + [2525] = { + [sym_property_delegate] = STATE(2648), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6116), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6228), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_DASH_GT] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(6118), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(3344), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), [anon_sym_PIPE_PIPE] = ACTIONS(3346), [anon_sym_else] = ACTIONS(3344), [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), [anon_sym_BANG_EQ] = ACTIONS(3344), [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), [anon_sym_EQ_EQ] = ACTIONS(3344), @@ -326020,7 +319086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3344), [anon_sym_DASH] = ACTIONS(3344), [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3344), [anon_sym_as_QMARK] = ACTIONS(3346), [anon_sym_PLUS_PLUS] = ACTIONS(3346), [anon_sym_DASH_DASH] = ACTIONS(3346), @@ -326049,535 +319115,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2584] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(4607), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3109), - [anon_sym_sealed] = ACTIONS(3109), - [anon_sym_annotation] = ACTIONS(3109), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_lateinit] = ACTIONS(3109), - [anon_sym_public] = ACTIONS(3109), - [anon_sym_private] = ACTIONS(3109), - [anon_sym_internal] = ACTIONS(3109), - [anon_sym_protected] = ACTIONS(3109), - [anon_sym_tailrec] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_infix] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym_external] = ACTIONS(3109), - [sym_property_modifier] = ACTIONS(3109), - [anon_sym_abstract] = ACTIONS(3109), - [anon_sym_final] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_vararg] = ACTIONS(3109), - [anon_sym_noinline] = ACTIONS(3109), - [anon_sym_crossinline] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2585] = { - [sym_indexing_suffix] = STATE(3658), - [sym_navigation_suffix] = STATE(3659), - [sym_call_suffix] = STATE(3660), - [sym_annotated_lambda] = STATE(3669), - [sym_type_arguments] = STATE(8483), - [sym_value_arguments] = STATE(2857), - [sym_lambda_literal] = STATE(3670), - [sym__equality_operator] = STATE(1879), - [sym__comparison_operator] = STATE(1880), - [sym__in_operator] = STATE(1881), - [sym__is_operator] = STATE(6251), - [sym__additive_operator] = STATE(1882), - [sym__multiplicative_operator] = STATE(1883), - [sym__as_operator] = STATE(6253), - [sym__postfix_unary_operator] = STATE(3672), - [sym__member_access_operator] = STATE(7870), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1885), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(3622), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_BANG_BANG] = ACTIONS(3652), - [anon_sym_suspend] = ACTIONS(3116), - [anon_sym_sealed] = ACTIONS(3116), - [anon_sym_annotation] = ACTIONS(3116), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_lateinit] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_internal] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_tailrec] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_infix] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym_external] = ACTIONS(3116), - [sym_property_modifier] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_final] = ACTIONS(3116), - [anon_sym_open] = ACTIONS(3116), - [anon_sym_vararg] = ACTIONS(3116), - [anon_sym_noinline] = ACTIONS(3116), - [anon_sym_crossinline] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3634), - [sym_multiline_comment] = ACTIONS(3), - }, - [2586] = { - [sym_primary_constructor] = STATE(4281), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2710), - [sym_type_constraints] = STATE(3883), - [sym_enum_class_body] = STATE(4148), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6284), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2587] = { - [sym_primary_constructor] = STATE(5635), - [sym_class_body] = STATE(5280), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2679), - [sym_type_constraints] = STATE(5116), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2588] = { - [sym_primary_constructor] = STATE(5621), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(2692), - [sym_type_constraints] = STATE(4794), - [sym_enum_class_body] = STATE(4944), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6288), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2589] = { - [sym_getter] = STATE(5561), - [sym_setter] = STATE(5561), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), + [2526] = { + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1814), [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326602,747 +319210,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), - }, - [2590] = { - [sym_primary_constructor] = STATE(5629), - [sym_class_body] = STATE(4944), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(2689), - [sym_type_constraints] = STATE(4792), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6290), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2591] = { - [sym_primary_constructor] = STATE(5608), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2669), - [sym_type_constraints] = STATE(5115), - [sym_enum_class_body] = STATE(5280), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6292), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2592] = { - [sym_primary_constructor] = STATE(4274), - [sym_class_body] = STATE(4148), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2706), - [sym_type_constraints] = STATE(3882), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6294), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2593] = { - [sym_primary_constructor] = STATE(5628), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(2688), - [sym_type_constraints] = STATE(4754), - [sym_enum_class_body] = STATE(4888), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6296), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - }, - [2594] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3172), - [anon_sym_sealed] = ACTIONS(3172), - [anon_sym_annotation] = ACTIONS(3172), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_lateinit] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_internal] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_tailrec] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_infix] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym_external] = ACTIONS(3172), - [sym_property_modifier] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_final] = ACTIONS(3172), - [anon_sym_open] = ACTIONS(3172), - [anon_sym_vararg] = ACTIONS(3172), - [anon_sym_noinline] = ACTIONS(3172), - [anon_sym_crossinline] = ACTIONS(3172), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3174), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2595] = { - [sym_primary_constructor] = STATE(5627), - [sym_class_body] = STATE(4888), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(2680), - [sym_type_constraints] = STATE(4753), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - }, - [2596] = { - [sym_primary_constructor] = STATE(5588), - [sym_class_body] = STATE(5363), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2693), - [sym_type_constraints] = STATE(5147), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6300), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2597] = { - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2527] = { + [sym_getter] = STATE(4018), + [sym_setter] = STATE(4018), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327367,76 +319305,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2598] = { - [sym_getter] = STATE(4976), - [sym_setter] = STATE(4976), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(1800), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), + [2528] = { + [sym_property_delegate] = STATE(2684), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6142), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6146), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327461,31 +319401,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2599] = { - [sym_getter] = STATE(4978), - [sym_setter] = STATE(4978), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2529] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2530] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2531] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2532] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), @@ -327496,9 +319721,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3954), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -327555,31 +319780,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2600] = { - [sym_getter] = STATE(4978), - [sym_setter] = STATE(4978), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2533] = { + [sym_primary_constructor] = STATE(5462), + [sym_class_body] = STATE(5131), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2676), + [sym_type_constraints] = STATE(5038), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6200), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), + [sym_multiline_comment] = ACTIONS(3), + }, + [2534] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), @@ -327590,9 +319909,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), + [anon_sym_SEMI] = ACTIONS(3942), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -327649,170 +319968,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2601] = { - [sym_primary_constructor] = STATE(5591), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2691), - [sym_type_constraints] = STATE(5144), - [sym_enum_class_body] = STATE(5363), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6302), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2535] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3173), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2602] = { - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3956), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2536] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327837,76 +320156,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2603] = { - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2537] = { + [sym_getter] = STATE(5347), + [sym_setter] = STATE(5347), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327931,31 +320237,514 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [2604] = { - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2538] = { + [sym_primary_constructor] = STATE(4160), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2610), + [sym_type_constraints] = STATE(3284), + [sym_enum_class_body] = STATE(3521), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6202), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2539] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2540] = { + [sym_getter] = STATE(5394), + [sym_setter] = STATE(5394), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), + }, + [2541] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2542] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2543] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(1732), @@ -327966,9 +320755,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3958), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), [anon_sym_STAR] = ACTIONS(1732), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), @@ -328025,219 +320814,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2605] = { - [sym_primary_constructor] = STATE(5616), - [sym_class_body] = STATE(4993), - [sym__class_parameters] = STATE(4772), - [sym_type_parameters] = STATE(2685), - [sym_type_constraints] = STATE(4813), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6304), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3250), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3250), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), - [sym_multiline_comment] = ACTIONS(3), - }, - [2606] = { - [sym_primary_constructor] = STATE(4259), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2699), - [sym_type_constraints] = STATE(3872), - [sym_enum_class_body] = STATE(4124), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6306), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3), - }, - [2607] = { - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2544] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(1732), @@ -328248,9 +320849,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3970), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), [anon_sym_STAR] = ACTIONS(1732), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), @@ -328307,251 +320908,452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2608] = { - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2545] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2546] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2609] = { - [sym_primary_constructor] = STATE(4258), - [sym_class_body] = STATE(4124), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2696), - [sym_type_constraints] = STATE(3880), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6308), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2547] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2610] = { - [sym_getter] = STATE(5490), - [sym_setter] = STATE(5490), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), + [2548] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2549] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328576,89 +321378,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), }, - [2611] = { - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2550] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2551] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2552] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3892), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328683,76 +321660,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2612] = { - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2553] = { + [sym_getter] = STATE(5416), + [sym_setter] = STATE(5416), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328777,40 +321741,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [2613] = { - [sym_getter] = STATE(5548), - [sym_setter] = STATE(5548), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2554] = { + [sym_getter] = STATE(5407), + [sym_setter] = STATE(5407), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), [anon_sym_object] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), [anon_sym_this] = ACTIONS(1732), [anon_sym_super] = ACTIONS(1732), [anon_sym_STAR] = ACTIONS(1734), @@ -328858,8 +321835,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1734), [anon_sym_continue_AT] = ACTIONS(1734), @@ -328878,69 +321855,526 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1734), }, - [2614] = { - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2555] = { + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + }, + [2556] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2557] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2558] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2559] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2560] = { + [sym_getter] = STATE(5393), + [sym_setter] = STATE(5393), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), [anon_sym_BANGin] = ACTIONS(1810), [anon_sym_is] = ACTIONS(1808), [anon_sym_BANGis] = ACTIONS(1810), [anon_sym_PLUS] = ACTIONS(1808), [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), [anon_sym_PLUS_PLUS] = ACTIONS(1810), [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328965,76 +322399,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [2615] = { - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2561] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329059,76 +322506,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2616] = { - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3960), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2562] = { + [sym_getter] = STATE(3458), + [sym_setter] = STATE(3458), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329153,76 +322600,452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2617] = { - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2563] = { + [sym_primary_constructor] = STATE(5459), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2623), + [sym_type_constraints] = STATE(4626), + [sym_enum_class_body] = STATE(4745), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6204), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2564] = { + [sym_primary_constructor] = STATE(4181), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2657), + [sym_type_constraints] = STATE(3795), + [sym_enum_class_body] = STATE(3932), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6206), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2565] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2566] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2567] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329247,76 +323070,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2618] = { - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2568] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329341,31 +323164,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2619] = { - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2569] = { + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), [anon_sym_EQ] = ACTIONS(3344), @@ -329376,9 +323199,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6134), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), [anon_sym_STAR] = ACTIONS(3344), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), @@ -329435,76 +323258,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2620] = { - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(3962), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2570] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2571] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329529,76 +323446,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2621] = { - [sym_getter] = STATE(5014), - [sym_setter] = STATE(5014), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_RPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(3436), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [2572] = { + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329623,263 +323540,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), - [sym_multiline_comment] = ACTIONS(3), - }, - [2622] = { - [sym_primary_constructor] = STATE(4264), - [sym_class_body] = STATE(4097), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2694), - [sym_type_constraints] = STATE(3862), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6310), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3250), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3250), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), - [sym_multiline_comment] = ACTIONS(3), - }, - [2623] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3105), - [anon_sym_sealed] = ACTIONS(3105), - [anon_sym_annotation] = ACTIONS(3105), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3105), - [anon_sym_lateinit] = ACTIONS(3105), - [anon_sym_public] = ACTIONS(3105), - [anon_sym_private] = ACTIONS(3105), - [anon_sym_internal] = ACTIONS(3105), - [anon_sym_protected] = ACTIONS(3105), - [anon_sym_tailrec] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_infix] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym_external] = ACTIONS(3105), - [sym_property_modifier] = ACTIONS(3105), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_final] = ACTIONS(3105), - [anon_sym_open] = ACTIONS(3105), - [anon_sym_vararg] = ACTIONS(3105), - [anon_sym_noinline] = ACTIONS(3105), - [anon_sym_crossinline] = ACTIONS(3105), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), - [sym_safe_nav] = ACTIONS(3714), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2624] = { - [sym_primary_constructor] = STATE(5584), - [sym_class_body] = STATE(5388), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2698), - [sym_type_constraints] = STATE(5159), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), + [2573] = { + [sym_primary_constructor] = STATE(5446), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2675), + [sym_type_constraints] = STATE(5056), + [sym_enum_class_body] = STATE(5123), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6312), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3250), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3250), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -329907,74 +323636,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2625] = { - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2574] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3926), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329999,31 +323728,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2626] = { - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2575] = { + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), [anon_sym_EQ] = ACTIONS(3344), @@ -330034,9 +323763,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6124), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), [anon_sym_STAR] = ACTIONS(3344), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), @@ -330093,219 +323822,971 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2627] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2628] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3188), - [anon_sym_sealed] = ACTIONS(3188), - [anon_sym_annotation] = ACTIONS(3188), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_lateinit] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_internal] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_tailrec] = ACTIONS(3188), - [anon_sym_operator] = ACTIONS(3188), - [anon_sym_infix] = ACTIONS(3188), - [anon_sym_inline] = ACTIONS(3188), - [anon_sym_external] = ACTIONS(3188), - [sym_property_modifier] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_final] = ACTIONS(3188), - [anon_sym_open] = ACTIONS(3188), - [anon_sym_vararg] = ACTIONS(3188), - [anon_sym_noinline] = ACTIONS(3188), - [anon_sym_crossinline] = ACTIONS(3188), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2576] = { + [sym_primary_constructor] = STATE(5445), + [sym_class_body] = STATE(5123), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2663), + [sym_type_constraints] = STATE(5069), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6210), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3714), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2629] = { - [sym_getter] = STATE(3552), - [sym_setter] = STATE(3552), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2577] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + }, + [2578] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2579] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3932), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + }, + [2580] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + }, + [2581] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3920), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2582] = { + [sym_primary_constructor] = STATE(4157), + [sym_class_body] = STATE(3847), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2651), + [sym_type_constraints] = STATE(3737), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6212), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2583] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2584] = { + [sym_primary_constructor] = STATE(4156), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2650), + [sym_type_constraints] = STATE(3723), + [sym_enum_class_body] = STATE(3847), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6214), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2585] = { + [sym_primary_constructor] = STATE(5429), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2655), + [sym_type_constraints] = STATE(5024), + [sym_enum_class_body] = STATE(5155), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6216), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2586] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), @@ -330316,9 +324797,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -330375,31 +324856,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2630] = { - [sym_getter] = STATE(3552), - [sym_setter] = STATE(3552), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2587] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), @@ -330410,9 +324891,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3974), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -330469,76 +324950,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2631] = { - [sym_getter] = STATE(3530), - [sym_setter] = STATE(3530), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(1800), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), + [2588] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3930), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330563,76 +325044,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2632] = { - [sym_getter] = STATE(3516), - [sym_setter] = STATE(3516), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_RPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), - [anon_sym_STAR] = ACTIONS(3436), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [2589] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330657,125 +325138,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2633] = { - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2590] = { + [sym_primary_constructor] = STATE(4152), + [sym_class_body] = STATE(3968), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2649), + [sym_type_constraints] = STATE(3712), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6218), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2634] = { - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9717), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2591] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), [anon_sym_EQ] = ACTIONS(3344), @@ -330786,9 +325267,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(6040), - [anon_sym_set] = ACTIONS(6042), + [anon_sym_SEMI] = ACTIONS(6064), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), [anon_sym_STAR] = ACTIONS(3344), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), @@ -330845,40 +325326,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2635] = { - [sym_getter] = STATE(5554), - [sym_setter] = STATE(5554), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2592] = { + [sym_getter] = STATE(5349), + [sym_setter] = STATE(5349), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_fun] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_object] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(5966), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5922), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), [anon_sym_this] = ACTIONS(3344), [anon_sym_super] = ACTIONS(3344), [anon_sym_STAR] = ACTIONS(3346), @@ -330926,8 +325407,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3346), [anon_sym_continue_AT] = ACTIONS(3346), @@ -330946,790 +325427,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3346), }, - [2636] = { - [sym_getter] = STATE(5476), - [sym_setter] = STATE(5476), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), - }, - [2637] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3101), - [anon_sym_sealed] = ACTIONS(3101), - [anon_sym_annotation] = ACTIONS(3101), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3101), - [anon_sym_lateinit] = ACTIONS(3101), - [anon_sym_public] = ACTIONS(3101), - [anon_sym_private] = ACTIONS(3101), - [anon_sym_internal] = ACTIONS(3101), - [anon_sym_protected] = ACTIONS(3101), - [anon_sym_tailrec] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_infix] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym_external] = ACTIONS(3101), - [sym_property_modifier] = ACTIONS(3101), - [anon_sym_abstract] = ACTIONS(3101), - [anon_sym_final] = ACTIONS(3101), - [anon_sym_open] = ACTIONS(3101), - [anon_sym_vararg] = ACTIONS(3101), - [anon_sym_noinline] = ACTIONS(3101), - [anon_sym_crossinline] = ACTIONS(3101), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3103), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2638] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3156), - [anon_sym_sealed] = ACTIONS(3156), - [anon_sym_annotation] = ACTIONS(3156), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_lateinit] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_internal] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_tailrec] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_infix] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym_external] = ACTIONS(3156), - [sym_property_modifier] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_final] = ACTIONS(3156), - [anon_sym_open] = ACTIONS(3156), - [anon_sym_vararg] = ACTIONS(3156), - [anon_sym_noinline] = ACTIONS(3156), - [anon_sym_crossinline] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2639] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3109), - [anon_sym_sealed] = ACTIONS(3109), - [anon_sym_annotation] = ACTIONS(3109), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_lateinit] = ACTIONS(3109), - [anon_sym_public] = ACTIONS(3109), - [anon_sym_private] = ACTIONS(3109), - [anon_sym_internal] = ACTIONS(3109), - [anon_sym_protected] = ACTIONS(3109), - [anon_sym_tailrec] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_infix] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym_external] = ACTIONS(3109), - [sym_property_modifier] = ACTIONS(3109), - [anon_sym_abstract] = ACTIONS(3109), - [anon_sym_final] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_vararg] = ACTIONS(3109), - [anon_sym_noinline] = ACTIONS(3109), - [anon_sym_crossinline] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2640] = { - [sym_getter] = STATE(5491), - [sym_setter] = STATE(5491), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), - }, - [2641] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3116), - [anon_sym_sealed] = ACTIONS(3116), - [anon_sym_annotation] = ACTIONS(3116), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_lateinit] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_internal] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_tailrec] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_infix] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym_external] = ACTIONS(3116), - [sym_property_modifier] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_final] = ACTIONS(3116), - [anon_sym_open] = ACTIONS(3116), - [anon_sym_vararg] = ACTIONS(3116), - [anon_sym_noinline] = ACTIONS(3116), - [anon_sym_crossinline] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2642] = { - [sym_primary_constructor] = STATE(4310), - [sym_class_body] = STATE(3457), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(2743), - [sym_type_constraints] = STATE(3452), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6314), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3250), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3250), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), - [sym_multiline_comment] = ACTIONS(3), - }, - [2643] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), + [2593] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3656), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3168), - [anon_sym_sealed] = ACTIONS(3168), - [anon_sym_annotation] = ACTIONS(3168), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_lateinit] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_internal] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_tailrec] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_infix] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym_external] = ACTIONS(3168), - [sym_property_modifier] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_final] = ACTIONS(3168), - [anon_sym_open] = ACTIONS(3168), - [anon_sym_vararg] = ACTIONS(3168), - [anon_sym_noinline] = ACTIONS(3168), - [anon_sym_crossinline] = ACTIONS(3168), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), - [sym_safe_nav] = ACTIONS(3714), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2644] = { - [sym_primary_constructor] = STATE(4298), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(2715), - [sym_type_constraints] = STATE(3426), - [sym_enum_class_body] = STATE(3571), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), + [2594] = { + [sym_primary_constructor] = STATE(4179), + [sym_class_body] = STATE(3602), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2614), + [sym_type_constraints] = STATE(3342), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6316), + [anon_sym_COLON] = ACTIONS(6220), [anon_sym_LBRACK] = ACTIONS(3206), [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5592), + [anon_sym_LPAREN] = ACTIONS(5488), [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), + [anon_sym_LT] = ACTIONS(5490), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5594), + [anon_sym_where] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(3200), [anon_sym_SEMI] = ACTIONS(3206), [anon_sym_get] = ACTIONS(3200), @@ -331792,38 +325615,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2645] = { - [sym_primary_constructor] = STATE(4305), - [sym_class_body] = STATE(3571), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(2716), - [sym_type_constraints] = STATE(3427), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), + [2595] = { + [sym_primary_constructor] = STATE(5475), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2645), + [sym_type_constraints] = STATE(4650), + [sym_enum_class_body] = STATE(4770), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6222), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2596] = { + [sym_primary_constructor] = STATE(4161), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2606), + [sym_type_constraints] = STATE(3311), + [sym_enum_class_body] = STATE(3562), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6224), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2597] = { + [sym_primary_constructor] = STATE(5449), + [sym_class_body] = STATE(4812), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2605), + [sym_type_constraints] = STATE(4660), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6318), + [anon_sym_COLON] = ACTIONS(6226), [anon_sym_LBRACK] = ACTIONS(3206), [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5592), + [anon_sym_LPAREN] = ACTIONS(5580), [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5556), + [anon_sym_LT] = ACTIONS(5490), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5594), + [anon_sym_where] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(3200), [anon_sym_SEMI] = ACTIONS(3206), [anon_sym_get] = ACTIONS(3200), @@ -331886,898 +325897,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2646] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3123), - [anon_sym_sealed] = ACTIONS(3123), - [anon_sym_annotation] = ACTIONS(3123), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_lateinit] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_tailrec] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3123), - [sym_property_modifier] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_vararg] = ACTIONS(3123), - [anon_sym_noinline] = ACTIONS(3123), - [anon_sym_crossinline] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2647] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_annotation] = ACTIONS(3130), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_lateinit] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_tailrec] = ACTIONS(3130), - [anon_sym_operator] = ACTIONS(3130), - [anon_sym_infix] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_external] = ACTIONS(3130), - [sym_property_modifier] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3130), - [anon_sym_noinline] = ACTIONS(3130), - [anon_sym_crossinline] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2598] = { + [sym_primary_constructor] = STATE(4194), + [sym_class_body] = STATE(3562), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2603), + [sym_type_constraints] = STATE(3352), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6228), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(3714), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2648] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2599] = { + [sym_primary_constructor] = STATE(5460), + [sym_class_body] = STATE(4745), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2643), + [sym_type_constraints] = STATE(4677), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6230), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(3714), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2649] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3097), - [anon_sym_sealed] = ACTIONS(3097), - [anon_sym_annotation] = ACTIONS(3097), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3097), - [anon_sym_lateinit] = ACTIONS(3097), - [anon_sym_public] = ACTIONS(3097), - [anon_sym_private] = ACTIONS(3097), - [anon_sym_internal] = ACTIONS(3097), - [anon_sym_protected] = ACTIONS(3097), - [anon_sym_tailrec] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_infix] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym_external] = ACTIONS(3097), - [sym_property_modifier] = ACTIONS(3097), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_final] = ACTIONS(3097), - [anon_sym_open] = ACTIONS(3097), - [anon_sym_vararg] = ACTIONS(3097), - [anon_sym_noinline] = ACTIONS(3097), - [anon_sym_crossinline] = ACTIONS(3097), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2650] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2651] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3145), - [anon_sym_sealed] = ACTIONS(3145), - [anon_sym_annotation] = ACTIONS(3145), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_lateinit] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_tailrec] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym_external] = ACTIONS(3145), - [sym_property_modifier] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_vararg] = ACTIONS(3145), - [anon_sym_noinline] = ACTIONS(3145), - [anon_sym_crossinline] = ACTIONS(3145), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2652] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2600] = { + [sym_type_constraints] = STATE(2721), + [sym_property_delegate] = STATE(2784), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6232), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(3), - }, - [2653] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3149), - [anon_sym_sealed] = ACTIONS(3149), - [anon_sym_annotation] = ACTIONS(3149), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3149), - [anon_sym_lateinit] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_internal] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_tailrec] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_infix] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym_external] = ACTIONS(3149), - [sym_property_modifier] = ACTIONS(3149), - [anon_sym_abstract] = ACTIONS(3149), - [anon_sym_final] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_vararg] = ACTIONS(3149), - [anon_sym_noinline] = ACTIONS(3149), - [anon_sym_crossinline] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(3714), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2654] = { - [sym_primary_constructor] = STATE(4256), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(2726), - [sym_type_constraints] = STATE(3450), - [sym_enum_class_body] = STATE(3465), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6320), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2601] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2655] = { - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9747), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2602] = { + [sym_type_constraints] = STATE(2712), + [sym_property_delegate] = STATE(2808), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6240), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6234), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5824), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(6116), - [anon_sym_set] = ACTIONS(6118), - [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6242), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), [anon_sym_PIPE_PIPE] = ACTIONS(3346), [anon_sym_else] = ACTIONS(3344), [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), [anon_sym_BANG_EQ] = ACTIONS(3344), [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), [anon_sym_EQ_EQ] = ACTIONS(3344), @@ -332790,7 +326327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3344), [anon_sym_DASH] = ACTIONS(3344), [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), [anon_sym_as_QMARK] = ACTIONS(3346), [anon_sym_PLUS_PLUS] = ACTIONS(3346), [anon_sym_DASH_DASH] = ACTIONS(3346), @@ -332819,76 +326356,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2656] = { - [sym_primary_constructor] = STATE(4276), - [sym_class_body] = STATE(3465), - [sym__class_parameters] = STATE(3453), - [sym_type_parameters] = STATE(2727), - [sym_type_constraints] = STATE(3455), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [2603] = { + [sym_primary_constructor] = STATE(4155), + [sym_class_body] = STATE(3539), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3280), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6322), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(5556), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -332916,165 +326453,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2657] = { - [sym_indexing_suffix] = STATE(3991), - [sym_navigation_suffix] = STATE(3990), - [sym_call_suffix] = STATE(3989), - [sym_annotated_lambda] = STATE(3988), - [sym_type_arguments] = STATE(8532), - [sym_value_arguments] = STATE(3125), - [sym_lambda_literal] = STATE(3987), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1472), - [sym__in_operator] = STATE(1473), - [sym__is_operator] = STATE(6072), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1475), - [sym__as_operator] = STATE(6071), - [sym__postfix_unary_operator] = STATE(3986), - [sym__member_access_operator] = STATE(7910), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1477), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(4812), - [sym_label] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(4814), - [anon_sym_DOT_DOT] = ACTIONS(4816), - [anon_sym_QMARK_COLON] = ACTIONS(4818), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(4824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ] = ACTIONS(4824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4830), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(4832), - [anon_sym_DASH] = ACTIONS(4832), - [anon_sym_SLASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4812), - [anon_sym_as_QMARK] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_BANG_BANG] = ACTIONS(3732), - [anon_sym_suspend] = ACTIONS(3192), - [anon_sym_sealed] = ACTIONS(3192), - [anon_sym_annotation] = ACTIONS(3192), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_lateinit] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_internal] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_tailrec] = ACTIONS(3192), - [anon_sym_operator] = ACTIONS(3192), - [anon_sym_infix] = ACTIONS(3192), - [anon_sym_inline] = ACTIONS(3192), - [anon_sym_external] = ACTIONS(3192), - [sym_property_modifier] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_final] = ACTIONS(3192), - [anon_sym_open] = ACTIONS(3192), - [anon_sym_vararg] = ACTIONS(3192), - [anon_sym_noinline] = ACTIONS(3192), - [anon_sym_crossinline] = ACTIONS(3192), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [2604] = { + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), - [sym_safe_nav] = ACTIONS(3714), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2658] = { - [sym_type_constraints] = STATE(2756), - [sym_property_delegate] = STATE(2846), - [sym_getter] = STATE(5385), - [sym_setter] = STATE(5385), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(6324), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_COMMA] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(6328), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(3330), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), + [2605] = { + [sym_primary_constructor] = STATE(5455), + [sym_class_body] = STATE(4759), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4624), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6250), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [2606] = { + [sym_primary_constructor] = STATE(4188), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2607] = { + [sym_type_constraints] = STATE(2738), + [sym_property_delegate] = STATE(2877), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4664), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333099,75 +326822,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2659] = { - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2608] = { + [sym_getter] = STATE(5393), + [sym_setter] = STATE(5393), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), [anon_sym_BANGin] = ACTIONS(1810), [anon_sym_is] = ACTIONS(1808), [anon_sym_BANGis] = ACTIONS(1810), [anon_sym_PLUS] = ACTIONS(1808), [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), [anon_sym_PLUS_PLUS] = ACTIONS(1810), [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333192,63 +326902,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), [sym__backtick_identifier] = ACTIONS(1810), [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [2660] = { - [sym_getter] = STATE(5554), - [sym_setter] = STATE(5554), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2609] = { + [sym_type_constraints] = STATE(2742), + [sym_property_delegate] = STATE(2828), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_fun] = ACTIONS(3344), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6262), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6264), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), [anon_sym_BANGin] = ACTIONS(3346), [anon_sym_is] = ACTIONS(3344), [anon_sym_BANGis] = ACTIONS(3346), [anon_sym_PLUS] = ACTIONS(3344), [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), [anon_sym_PLUS_PLUS] = ACTIONS(3346), [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333273,552 +327008,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), - }, - [2661] = { - [sym_type_constraints] = STATE(2814), - [sym_property_delegate] = STATE(2900), - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6334), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6336), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4794), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - }, - [2662] = { - [sym_getter] = STATE(5259), - [sym_setter] = STATE(5259), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(1800), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), - }, - [2663] = { - [sym_getter] = STATE(4045), - [sym_setter] = STATE(4045), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - }, - [2664] = { - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4080), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - }, - [2665] = { - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2666] = { - [sym_primary_constructor] = STATE(4329), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2765), - [sym_type_constraints] = STATE(3872), - [sym_enum_class_body] = STATE(4124), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [2610] = { + [sym_primary_constructor] = STATE(4171), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6342), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -333846,29 +327104,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, - [2667] = { - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2611] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), [anon_sym_EQ] = ACTIONS(3344), @@ -333878,9 +327135,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6166), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), [anon_sym_STAR] = ACTIONS(3344), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), @@ -333936,75 +327193,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2668] = { - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2612] = { + [sym_getter] = STATE(5407), + [sym_setter] = STATE(5407), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), + }, + [2613] = { + [sym_getter] = STATE(5177), + [sym_setter] = STATE(5177), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334029,75 +327379,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2669] = { - [sym_primary_constructor] = STATE(5612), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5124), - [sym_enum_class_body] = STATE(5241), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2614] = { + [sym_primary_constructor] = STATE(4158), + [sym_class_body] = STATE(3565), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3329), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6344), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -334125,165 +327476,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [2670] = { - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4078), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [2671] = { - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(3980), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2615] = { + [sym_type_constraints] = STATE(2747), + [sym_property_delegate] = STATE(2822), + [sym_getter] = STATE(3600), + [sym_setter] = STATE(3600), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6274), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6276), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334308,32 +327566,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2672] = { - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2616] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), [anon_sym_EQ] = ACTIONS(1808), @@ -334344,8 +327601,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), [anon_sym_STAR] = ACTIONS(1808), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), @@ -334401,168 +327658,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1810), [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2673] = { - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4066), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2674] = { - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4076), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2617] = { + [sym_type_constraints] = STATE(2749), + [sym_property_delegate] = STATE(2863), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6278), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334587,75 +327752,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2675] = { - [sym_primary_constructor] = STATE(4319), - [sym_class_body] = STATE(4124), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2751), - [sym_type_constraints] = STATE(3880), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [2618] = { + [sym_primary_constructor] = STATE(5518), + [sym_class_body] = STATE(5123), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2710), + [sym_type_constraints] = STATE(5069), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6346), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(6280), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -334683,72 +327847,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2676] = { - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4064), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2619] = { + [sym_getter] = STATE(5394), + [sym_setter] = STATE(5394), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334773,75 +327925,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [2677] = { - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2620] = { + [sym_type_constraints] = STATE(2745), + [sym_property_delegate] = STATE(2873), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6282), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334866,342 +328031,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2678] = { - [sym_getter] = STATE(5227), - [sym_setter] = STATE(5227), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(3436), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), - [sym_multiline_comment] = ACTIONS(3), - }, - [2679] = { - [sym_primary_constructor] = STATE(5614), - [sym_class_body] = STATE(5241), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5106), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6348), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [2680] = { - [sym_primary_constructor] = STATE(5634), - [sym_class_body] = STATE(4975), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4769), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6350), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - }, - [2681] = { - [sym_getter] = STATE(5490), - [sym_setter] = STATE(5490), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), + [2621] = { + [sym_getter] = STATE(5347), + [sym_setter] = STATE(5347), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335226,230 +328111,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), - }, - [2682] = { - [sym_primary_constructor] = STATE(4320), - [sym_class_body] = STATE(4097), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2760), - [sym_type_constraints] = STATE(3862), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6352), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3250), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3250), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [2683] = { - [sym_getter] = STATE(5561), - [sym_setter] = STATE(5561), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), - }, - [2684] = { - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2622] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(1732), @@ -335460,287 +328159,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - }, - [2685] = { - [sym_primary_constructor] = STATE(5624), - [sym_class_body] = STATE(4873), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4750), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6354), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2686] = { - [sym_type_constraints] = STATE(2764), - [sym_property_delegate] = STATE(2869), - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6356), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4528), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2687] = { - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4056), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), [anon_sym_STAR] = ACTIONS(1732), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), @@ -335796,169 +328216,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2688] = { - [sym_primary_constructor] = STATE(5637), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4781), - [sym_enum_class_body] = STATE(4975), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6358), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - }, - [2689] = { - [sym_primary_constructor] = STATE(5577), - [sym_class_body] = STATE(4840), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4809), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2623] = { + [sym_primary_constructor] = STATE(5468), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4659), + [sym_enum_class_body] = STATE(4748), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6360), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5552), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(6284), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -335986,71 +328313,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2690] = { - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2624] = { + [sym_getter] = STATE(5416), + [sym_setter] = STATE(5416), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -336075,448 +328390,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - }, - [2691] = { - [sym_primary_constructor] = STATE(5595), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5120), - [sym_enum_class_body] = STATE(5326), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6362), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - }, - [2692] = { - [sym_primary_constructor] = STATE(5613), - [sym__class_parameters] = STATE(4772), - [sym_type_constraints] = STATE(4740), - [sym_enum_class_body] = STATE(4840), - [sym_modifiers] = STATE(10088), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6364), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5550), - [anon_sym_LBRACE] = ACTIONS(5566), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [2693] = { - [sym_primary_constructor] = STATE(5594), - [sym_class_body] = STATE(5326), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5132), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6366), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - }, - [2694] = { - [sym_primary_constructor] = STATE(4260), - [sym_class_body] = STATE(4123), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3870), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6368), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [2695] = { - [sym_type_constraints] = STATE(2819), - [sym_property_delegate] = STATE(2908), - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6370), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6336), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4752), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2625] = { + [sym_type_constraints] = STATE(2691), + [sym_property_delegate] = STATE(2781), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6286), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6288), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -336541,167 +328495,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2696] = { - [sym_primary_constructor] = STATE(4265), - [sym_class_body] = STATE(4138), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3878), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6376), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2697] = { - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4068), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2626] = { + [sym_type_constraints] = STATE(2713), + [sym_property_delegate] = STATE(2790), + [sym_getter] = STATE(3907), + [sym_setter] = STATE(3907), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6290), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6292), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -336726,168 +328588,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2698] = { - [sym_primary_constructor] = STATE(5587), - [sym_class_body] = STATE(5370), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5148), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6378), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2699] = { - [sym_primary_constructor] = STATE(4273), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3879), - [sym_enum_class_body] = STATE(4138), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [2627] = { + [sym_primary_constructor] = STATE(5529), + [sym_class_body] = STATE(5131), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2706), + [sym_type_constraints] = STATE(5038), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6380), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(6294), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -336915,72 +328684,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2700] = { - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2628] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6108), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337005,63 +328774,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2701] = { - [sym_getter] = STATE(5548), - [sym_setter] = STATE(5548), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1732), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_when] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), + [2629] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337086,180 +328867,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1734), - [anon_sym_continue_AT] = ACTIONS(1734), - [anon_sym_break_AT] = ACTIONS(1734), - [anon_sym_this_AT] = ACTIONS(1734), - [anon_sym_super_AT] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1734), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), - }, - [2702] = { - [sym_primary_constructor] = STATE(4332), - [sym_class_body] = STATE(4148), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2801), - [sym_type_constraints] = STATE(3882), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6382), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2703] = { - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4062), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2630] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337284,168 +328960,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - }, - [2704] = { - [sym_primary_constructor] = STATE(4323), - [sym__class_parameters] = STATE(3861), - [sym_type_parameters] = STATE(2796), - [sym_type_constraints] = STATE(3883), - [sym_enum_class_body] = STATE(4148), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6384), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2705] = { - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2631] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337470,125 +329053,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - }, - [2706] = { - [sym_primary_constructor] = STATE(4282), - [sym_class_body] = STATE(4114), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3893), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6386), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2707] = { - [sym_getter] = STATE(4045), - [sym_setter] = STATE(4045), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2632] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), @@ -337598,9 +329088,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4008), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -337656,75 +329146,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2708] = { - [sym_getter] = STATE(4022), - [sym_setter] = STATE(4022), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(1800), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), + [2633] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337749,75 +329239,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2709] = { - [sym_getter] = STATE(3962), - [sym_setter] = STATE(3962), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(3436), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [2634] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337842,168 +329332,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2710] = { - [sym_primary_constructor] = STATE(4284), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3894), - [sym_enum_class_body] = STATE(4114), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6388), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2635] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2711] = { - [sym_type_constraints] = STATE(2749), - [sym_property_delegate] = STATE(2852), - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6390), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2636] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3984), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338028,63 +329518,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2712] = { - [sym_getter] = STATE(5476), - [sym_setter] = STATE(5476), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2637] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_fun] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), [anon_sym_BANGin] = ACTIONS(1810), [anon_sym_is] = ACTIONS(1808), [anon_sym_BANGis] = ACTIONS(1810), [anon_sym_PLUS] = ACTIONS(1808), [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), [anon_sym_PLUS_PLUS] = ACTIONS(1810), [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338109,87 +329611,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), [sym__backtick_identifier] = ACTIONS(1810), [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), }, - [2713] = { - [sym_type_constraints] = STATE(2748), - [sym_property_delegate] = STATE(2858), - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6396), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4539), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2638] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338214,75 +329704,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2714] = { - [sym_type_constraints] = STATE(2747), - [sym_property_delegate] = STATE(2860), - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6398), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4545), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2639] = { + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338307,76 +329797,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2715] = { - [sym_primary_constructor] = STATE(4306), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3408), - [sym_enum_class_body] = STATE(3597), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2640] = { + [sym_getter] = STATE(4018), + [sym_setter] = STATE(4018), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + }, + [2641] = { + [sym_primary_constructor] = STATE(4221), + [sym_class_body] = STATE(3847), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2699), + [sym_type_constraints] = STATE(3737), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6400), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(6296), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -338404,72 +329986,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2716] = { - [sym_primary_constructor] = STATE(4308), - [sym_class_body] = STATE(3597), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3409), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2642] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4026), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + }, + [2643] = { + [sym_primary_constructor] = STATE(5471), + [sym_class_body] = STATE(4748), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4621), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6402), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(6298), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -338497,71 +330173,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2717] = { - [sym_primary_constructor] = STATE(5663), - [sym_class_body] = STATE(5388), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2755), - [sym_type_constraints] = STATE(5159), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3246), + [2644] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6118), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2645] = { + [sym_primary_constructor] = STATE(5476), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4694), + [sym_enum_class_body] = STATE(4786), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6404), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_as] = ACTIONS(3246), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3250), - [sym_label] = ACTIONS(3250), - [anon_sym_in] = ACTIONS(3246), - [anon_sym_DOT_DOT] = ACTIONS(3250), - [anon_sym_QMARK_COLON] = ACTIONS(3250), - [anon_sym_AMP_AMP] = ACTIONS(3250), - [anon_sym_PIPE_PIPE] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_COLON_COLON] = ACTIONS(3250), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3250), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3250), - [anon_sym_BANGin] = ACTIONS(3250), - [anon_sym_is] = ACTIONS(3246), - [anon_sym_BANGis] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3250), - [anon_sym_as_QMARK] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_BANG_BANG] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(6300), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -338589,73 +330359,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3250), - [sym__automatic_semicolon] = ACTIONS(3250), - [sym_safe_nav] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, - [2718] = { - [sym_type_constraints] = STATE(2810), - [sym_property_delegate] = STATE(2896), - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6406), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6336), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4764), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2646] = { + [sym_type_constraints] = STATE(2703), + [sym_property_delegate] = STATE(2794), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6302), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4419), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338680,62 +330448,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2719] = { - [sym_getter] = STATE(5491), - [sym_setter] = STATE(5491), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), + [2647] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338760,75 +330541,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), }, - [2720] = { - [sym_getter] = STATE(5514), - [sym_setter] = STATE(5514), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_object] = ACTIONS(1800), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1802), - [sym_label] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1800), + [2648] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338853,273 +330634,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), }, - [2721] = { - [sym_getter] = STATE(5524), - [sym_setter] = STATE(5524), - [sym_modifiers] = STATE(9460), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_fun] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_object] = ACTIONS(3436), - [anon_sym_get] = ACTIONS(5946), - [anon_sym_set] = ACTIONS(5948), - [anon_sym_this] = ACTIONS(3436), - [anon_sym_super] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3438), - [sym_label] = ACTIONS(3436), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_null] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_when] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3438), - [anon_sym_continue_AT] = ACTIONS(3438), - [anon_sym_break_AT] = ACTIONS(3438), - [anon_sym_this_AT] = ACTIONS(3438), - [anon_sym_super_AT] = ACTIONS(3438), - [sym_real_literal] = ACTIONS(3438), - [sym_integer_literal] = ACTIONS(3436), - [sym_hex_literal] = ACTIONS(3438), - [sym_bin_literal] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [anon_sym_SQUOTE] = ACTIONS(3438), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3438), + [2649] = { + [sym_primary_constructor] = STATE(4154), + [sym_class_body] = STATE(3956), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3721), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6304), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), }, - [2722] = { - [sym_type_constraints] = STATE(2808), - [sym_property_delegate] = STATE(2886), - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6408), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6336), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4601), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2650] = { + [sym_primary_constructor] = STATE(4164), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6306), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2723] = { - [sym_primary_constructor] = STATE(5667), - [sym_class_body] = STATE(5363), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2757), - [sym_type_constraints] = STATE(5147), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [2651] = { + [sym_primary_constructor] = STATE(4172), + [sym_class_body] = STATE(3953), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3786), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6410), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(6308), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -339147,73 +330916,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2724] = { - [sym_type_constraints] = STATE(2807), - [sym_property_delegate] = STATE(2883), - [sym_getter] = STATE(4834), - [sym_setter] = STATE(4834), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(6412), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_RPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(6336), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(6414), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(3330), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), + [2652] = { + [sym_type_constraints] = STATE(2750), + [sym_property_delegate] = STATE(2836), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6310), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4640), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -339238,74 +331007,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2725] = { - [sym_primary_constructor] = STATE(5657), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2758), - [sym_type_constraints] = STATE(5144), - [sym_enum_class_body] = STATE(5363), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3238), + [2653] = { + [sym_primary_constructor] = STATE(4205), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2725), + [sym_type_constraints] = STATE(3723), + [sym_enum_class_body] = STATE(3847), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6416), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_as] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3242), - [sym_label] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_QMARK_COLON] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3242), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_is] = ACTIONS(3238), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_as_QMARK] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_BANG_BANG] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -339333,73 +331102,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3242), - [sym__automatic_semicolon] = ACTIONS(3242), - [sym_safe_nav] = ACTIONS(3242), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2726] = { - [sym_primary_constructor] = STATE(4293), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3435), - [sym_enum_class_body] = STATE(3500), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [2654] = { + [sym_primary_constructor] = STATE(5530), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2701), + [sym_type_constraints] = STATE(5024), + [sym_enum_class_body] = STATE(5155), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6418), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(6314), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -339427,72 +331195,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), [sym_multiline_comment] = ACTIONS(3), }, - [2727] = { - [sym_primary_constructor] = STATE(4285), - [sym_class_body] = STATE(3500), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3439), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [2655] = { + [sym_primary_constructor] = STATE(5430), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(4981), + [sym_enum_class_body] = STATE(5246), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6420), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(6316), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -339520,71 +331288,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, - [2728] = { - [sym_type_constraints] = STATE(2759), - [sym_property_delegate] = STATE(2855), - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6422), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6424), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2656] = { + [sym_type_constraints] = STATE(2733), + [sym_property_delegate] = STATE(2802), + [sym_getter] = STATE(5144), + [sym_setter] = STATE(5144), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6318), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6320), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -339609,76 +331378,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2729] = { - [sym_type_constraints] = STATE(2811), - [sym_property_delegate] = STATE(2929), - [sym_getter] = STATE(3471), - [sym_setter] = STATE(3471), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(6426), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_RPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(6336), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(6428), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(3330), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), + [2657] = { + [sym_primary_constructor] = STATE(4182), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6322), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2658] = { + [sym_type_constraints] = STATE(2698), + [sym_property_delegate] = STATE(2792), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6324), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4417), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -339703,75 +331564,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2730] = { - [sym_type_constraints] = STATE(2812), - [sym_property_delegate] = STATE(2895), - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6430), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6336), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6432), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2659] = { + [sym_type_constraints] = STATE(2709), + [sym_property_delegate] = STATE(2770), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6326), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -339796,57 +331657,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2731] = { - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2660] = { + [sym_type_constraints] = STATE(2743), + [sym_property_delegate] = STATE(2875), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6328), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2661] = { + [sym_type_constraints] = STATE(2740), + [sym_property_delegate] = STATE(2879), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6330), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6256), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(6168), - [anon_sym_set] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6332), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), [anon_sym_PIPE_PIPE] = ACTIONS(3346), [anon_sym_else] = ACTIONS(3344), [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), [anon_sym_BANG_EQ] = ACTIONS(3344), [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), [anon_sym_EQ_EQ] = ACTIONS(3344), @@ -339859,7 +331815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3344), [anon_sym_DASH] = ACTIONS(3344), [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), [anon_sym_as_QMARK] = ACTIONS(3346), [anon_sym_PLUS_PLUS] = ACTIONS(3346), [anon_sym_DASH_DASH] = ACTIONS(3346), @@ -339888,75 +331844,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2732] = { - [sym_type_constraints] = STATE(2767), - [sym_property_delegate] = STATE(2872), - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6434), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4526), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2662] = { + [sym_primary_constructor] = STATE(4215), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2723), + [sym_type_constraints] = STATE(3795), + [sym_enum_class_body] = STATE(3932), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6334), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2663] = { + [sym_primary_constructor] = STATE(5428), + [sym_class_body] = STATE(5118), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5029), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2664] = { + [sym_type_constraints] = STATE(2752), + [sym_property_delegate] = STATE(2858), + [sym_getter] = STATE(4797), + [sym_setter] = STATE(4797), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6338), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6340), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -339981,76 +332123,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2733] = { - [sym_type_constraints] = STATE(2815), - [sym_property_delegate] = STATE(2925), - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6436), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6336), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2665] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340075,74 +332215,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2734] = { - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6174), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2666] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340167,59 +332308,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2735] = { - [sym_type_constraints] = STATE(2806), - [sym_property_delegate] = STATE(2915), - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2667] = { + [sym_primary_constructor] = STATE(5515), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2726), + [sym_type_constraints] = STATE(5056), + [sym_enum_class_body] = STATE(5123), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6342), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2668] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6438), + [anon_sym_EQ] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6336), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5594), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6440), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(3344), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), [anon_sym_PIPE_PIPE] = ACTIONS(3346), [anon_sym_else] = ACTIONS(3344), [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), [anon_sym_BANG_EQ] = ACTIONS(3344), [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), [anon_sym_EQ_EQ] = ACTIONS(3344), @@ -340232,7 +332465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3344), [anon_sym_DASH] = ACTIONS(3344), [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3344), [anon_sym_as_QMARK] = ACTIONS(3346), [anon_sym_PLUS_PLUS] = ACTIONS(3346), [anon_sym_DASH_DASH] = ACTIONS(3346), @@ -340261,74 +332494,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2736] = { - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9632), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(6156), - [anon_sym_set] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2669] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340353,76 +332587,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2737] = { - [sym_type_constraints] = STATE(2804), - [sym_property_delegate] = STATE(2885), - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6442), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6336), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4703), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2670] = { + [sym_primary_constructor] = STATE(4216), + [sym_class_body] = STATE(3968), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2704), + [sym_type_constraints] = STATE(3712), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6344), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), + [sym_multiline_comment] = ACTIONS(3), + }, + [2671] = { + [sym_type_constraints] = STATE(2746), + [sym_property_delegate] = STATE(2841), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6346), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340447,74 +332774,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2738] = { - [sym_type_constraints] = STATE(2761), - [sym_property_delegate] = STATE(2864), - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6444), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4534), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2672] = { + [sym_type_constraints] = STATE(2683), + [sym_property_delegate] = STATE(2788), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6348), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340539,75 +332866,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2739] = { - [sym_type_constraints] = STATE(2750), - [sym_property_delegate] = STATE(2850), - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6446), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6448), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2673] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340632,75 +332959,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2740] = { - [sym_type_constraints] = STATE(2754), - [sym_property_delegate] = STATE(2848), - [sym_getter] = STATE(4098), - [sym_setter] = STATE(4098), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(6450), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_COMMA] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(6452), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(3330), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), + [2674] = { + [sym_getter] = STATE(5349), + [sym_setter] = STATE(5349), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340725,168 +333040,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), - [sym_multiline_comment] = ACTIONS(3), - }, - [2741] = { - [sym_primary_constructor] = STATE(5693), - [sym_class_body] = STATE(5280), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2762), - [sym_type_constraints] = STATE(5116), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6454), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [2742] = { - [sym_primary_constructor] = STATE(5650), - [sym__class_parameters] = STATE(5160), - [sym_type_parameters] = STATE(2763), - [sym_type_constraints] = STATE(5115), - [sym_enum_class_body] = STATE(5280), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3200), + [2675] = { + [sym_primary_constructor] = STATE(5480), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5049), + [sym_enum_class_body] = STATE(5118), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6456), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_COLON] = ACTIONS(6350), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -340914,73 +333148,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2743] = { - [sym_primary_constructor] = STATE(4299), - [sym_class_body] = STATE(3466), - [sym__class_parameters] = STATE(3453), - [sym_type_constraints] = STATE(3357), - [sym_modifiers] = STATE(10161), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), + [2676] = { + [sym_primary_constructor] = STATE(5447), + [sym_class_body] = STATE(5175), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5030), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6458), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5588), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(6352), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -341008,48 +333241,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [2744] = { - [sym_getter] = STATE(3552), - [sym_setter] = STATE(3552), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2677] = { + [sym_type_constraints] = STATE(2714), + [sym_property_delegate] = STATE(2786), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6354), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6234), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4152), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_DASH_GT] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), [anon_sym_DOT_DOT] = ACTIONS(1792), [anon_sym_QMARK_COLON] = ACTIONS(1792), [anon_sym_AMP_AMP] = ACTIONS(1792), @@ -341097,74 +333331,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2745] = { - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4148), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2678] = { + [sym_getter] = STATE(5373), + [sym_setter] = STATE(5373), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), + }, + [2679] = { + [sym_getter] = STATE(5368), + [sym_setter] = STATE(5368), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), + }, + [2680] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341189,73 +333610,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2746] = { - [sym_type_constraints] = STATE(2825), - [sym_property_delegate] = STATE(2992), - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6460), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6462), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(5036), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2681] = { + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1816), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341280,51 +333702,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2747] = { - [sym_property_delegate] = STATE(2865), - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2682] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6468), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6326), + [anon_sym_RPAREN] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), [anon_sym_where] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4391), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_DASH_GT] = ACTIONS(1810), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), [anon_sym_DOT_DOT] = ACTIONS(1810), [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1810), @@ -341372,48 +333794,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2748] = { - [sym_property_delegate] = STATE(2860), - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2683] = { + [sym_property_delegate] = STATE(2783), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6398), + [anon_sym_EQ] = ACTIONS(6356), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6326), + [anon_sym_by] = ACTIONS(6234), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4545), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), [anon_sym_STAR] = ACTIONS(1734), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), @@ -341464,74 +333885,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2749] = { - [sym_property_delegate] = STATE(2858), - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6396), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4539), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2684] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4120), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341556,74 +333978,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2750] = { - [sym_property_delegate] = STATE(2852), - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6390), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2685] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341648,166 +334070,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - }, - [2751] = { - [sym_primary_constructor] = STATE(4322), - [sym_class_body] = STATE(4138), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3878), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6470), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2752] = { - [sym_type_constraints] = STATE(2823), - [sym_property_delegate] = STATE(2995), - [sym_getter] = STATE(4098), - [sym_setter] = STATE(4098), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(6472), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(6462), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(6474), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(3330), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), + [2686] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341832,74 +334162,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2753] = { - [sym_type_constraints] = STATE(2827), - [sym_property_delegate] = STATE(2957), - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6476), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6462), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6478), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2687] = { + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1816), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341924,74 +334254,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2754] = { - [sym_property_delegate] = STATE(2850), - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6446), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6448), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2688] = { + [sym_type_constraints] = STATE(2755), + [sym_property_delegate] = STATE(2894), + [sym_getter] = STATE(3907), + [sym_setter] = STATE(3907), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6358), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6362), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342016,143 +334345,420 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2755] = { - [sym_primary_constructor] = STATE(5671), - [sym_class_body] = STATE(5370), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5148), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6480), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2689] = { + [sym_getter] = STATE(3458), + [sym_setter] = STATE(3458), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_RBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_DASH_GT] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2756] = { - [sym_property_delegate] = STATE(2855), - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6422), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6424), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(3346), + [2690] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + }, + [2691] = { + [sym_property_delegate] = STATE(2770), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6326), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2692] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2693] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6146), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), @@ -342200,258 +334806,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2757] = { - [sym_primary_constructor] = STATE(5689), - [sym_class_body] = STATE(5326), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5132), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6482), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2694] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2758] = { - [sym_primary_constructor] = STATE(5644), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5120), - [sym_enum_class_body] = STATE(5326), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6484), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2695] = { + [sym_type_constraints] = STATE(2762), + [sym_property_delegate] = STATE(2943), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6368), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(5203), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2759] = { - [sym_property_delegate] = STATE(2864), - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6444), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4534), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2696] = { + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342476,166 +335082,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2760] = { - [sym_primary_constructor] = STATE(4337), - [sym_class_body] = STATE(4123), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3870), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6486), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2697] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2761] = { - [sym_property_delegate] = STATE(2869), - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6356), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4528), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2698] = { + [sym_property_delegate] = STATE(2788), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6348), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342660,74 +335265,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2762] = { - [sym_primary_constructor] = STATE(5687), - [sym_class_body] = STATE(5241), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5106), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2699] = { + [sym_primary_constructor] = STATE(4203), + [sym_class_body] = STATE(3953), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3786), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6488), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(6370), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -342755,71 +335360,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2763] = { - [sym_primary_constructor] = STATE(5692), - [sym__class_parameters] = STATE(5160), - [sym_type_constraints] = STATE(5124), - [sym_enum_class_body] = STATE(5241), - [sym_modifiers] = STATE(10005), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), + [2700] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2701] = { + [sym_primary_constructor] = STATE(5516), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(4981), + [sym_enum_class_body] = STATE(5246), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6490), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), + [anon_sym_COLON] = ACTIONS(6372), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -342847,71 +335544,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, - [2764] = { - [sym_property_delegate] = STATE(2872), - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6434), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4526), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2702] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342936,74 +335634,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2765] = { - [sym_primary_constructor] = STATE(4328), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3879), - [sym_enum_class_body] = STATE(4138), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3292), + [2703] = { + [sym_property_delegate] = STATE(2792), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6324), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4417), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2704] = { + [sym_primary_constructor] = STATE(4209), + [sym_class_body] = STATE(3956), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3721), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6492), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(6374), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -343031,72 +335820,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3232), [anon_sym_actual] = ACTIONS(3232), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [2766] = { - [sym_getter] = STATE(5014), - [sym_setter] = STATE(5014), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_RBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_RPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_DASH_GT] = ACTIONS(3438), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3438), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [2705] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -343121,73 +335910,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2767] = { - [sym_property_delegate] = STATE(2876), - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6494), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6326), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4524), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2706] = { + [sym_primary_constructor] = STATE(5506), + [sym_class_body] = STATE(5175), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5030), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6376), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [2707] = { + [sym_type_constraints] = STATE(2764), + [sym_property_delegate] = STATE(2959), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6378), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(5014), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -343212,51 +336093,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2768] = { - [sym_type_constraints] = STATE(2822), - [sym_property_delegate] = STATE(3038), - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2708] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6496), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6462), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5812), + [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4892), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1734), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), @@ -343304,144 +336186,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2769] = { - [sym_getter] = STATE(4976), - [sym_setter] = STATE(4976), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_RBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_DASH_GT] = ACTIONS(1802), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), - }, - [2770] = { - [sym_getter] = STATE(4978), - [sym_setter] = STATE(4978), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2709] = { + [sym_property_delegate] = STATE(2786), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6354), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6234), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), [anon_sym_where] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4138), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_DASH_GT] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), [anon_sym_DOT_DOT] = ACTIONS(1792), [anon_sym_QMARK_COLON] = ACTIONS(1792), [anon_sym_AMP_AMP] = ACTIONS(1792), @@ -343489,74 +336277,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2771] = { - [sym_getter] = STATE(3516), - [sym_setter] = STATE(3516), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_RBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_RPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_DASH_GT] = ACTIONS(3438), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3438), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [2710] = { + [sym_primary_constructor] = STATE(5528), + [sym_class_body] = STATE(5118), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5029), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6384), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2711] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -343581,74 +336462,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2772] = { - [sym_getter] = STATE(4978), - [sym_setter] = STATE(4978), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2712] = { + [sym_property_delegate] = STATE(2794), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6302), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4419), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -343673,51 +336553,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2773] = { - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2713] = { + [sym_property_delegate] = STATE(2781), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6286), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6234), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6236), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), + [anon_sym_SEMI] = ACTIONS(6288), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_DASH_GT] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), @@ -343765,166 +336645,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2774] = { - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - }, - [2775] = { - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2714] = { + [sym_property_delegate] = STATE(2784), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6232), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -343949,74 +336737,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2776] = { - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2715] = { + [sym_type_constraints] = STATE(2766), + [sym_property_delegate] = STATE(2929), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6386), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(5217), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -344041,74 +336829,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2777] = { - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2716] = { + [sym_type_constraints] = STATE(2758), + [sym_property_delegate] = STATE(2912), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(5157), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -344133,74 +336921,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2778] = { - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2717] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -344225,77 +337014,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2779] = { - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [2718] = { + [sym_type_constraints] = STATE(2760), + [sym_property_delegate] = STATE(2954), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6390), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), [anon_sym_data] = ACTIONS(75), [anon_sym_inner] = ACTIONS(75), [anon_sym_value] = ACTIONS(75), @@ -344317,74 +337105,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2780] = { - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2719] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -344409,51 +337198,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2781] = { - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2720] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2721] = { + [sym_property_delegate] = STATE(2799), + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6392), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6234), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4150), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), @@ -344501,74 +337381,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2782] = { - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2722] = { + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6182), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -344593,31 +337474,583 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2783] = { - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2723] = { + [sym_primary_constructor] = STATE(4212), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6394), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2724] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_RBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_DASH_GT] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + }, + [2725] = { + [sym_primary_constructor] = STATE(4218), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2726] = { + [sym_primary_constructor] = STATE(5522), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5049), + [sym_enum_class_body] = STATE(5118), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6398), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2727] = { + [sym_type_constraints] = STATE(2756), + [sym_property_delegate] = STATE(2939), + [sym_getter] = STATE(5144), + [sym_setter] = STATE(5144), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6400), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6402), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + }, + [2728] = { + [sym_type_constraints] = STATE(2754), + [sym_property_delegate] = STATE(2967), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6404), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6406), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2729] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_RBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), @@ -344630,9 +338063,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1808), [anon_sym_where] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4122), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), + [anon_sym_SEMI] = ACTIONS(4118), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), [anon_sym_STAR] = ACTIONS(1810), [anon_sym_DASH_GT] = ACTIONS(1810), [sym_label] = ACTIONS(1810), @@ -344685,31 +338118,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2784] = { - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2730] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_RBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), @@ -344722,9 +338155,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1732), [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4120), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), [anon_sym_STAR] = ACTIONS(1734), [anon_sym_DASH_GT] = ACTIONS(1734), [sym_label] = ACTIONS(1734), @@ -344777,31 +338210,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2785] = { - [sym_getter] = STATE(3552), - [sym_setter] = STATE(3552), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2731] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + }, + [2732] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_RBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), @@ -344814,9 +338339,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1790), [anon_sym_where] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), [anon_sym_STAR] = ACTIONS(1792), [anon_sym_DASH_GT] = ACTIONS(1792), [sym_label] = ACTIONS(1792), @@ -344869,507 +338394,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2786] = { - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - }, - [2787] = { - [sym_getter] = STATE(3530), - [sym_setter] = STATE(3530), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_RBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_DASH_GT] = ACTIONS(1802), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), - }, - [2788] = { - [sym_type_constraints] = STATE(2820), - [sym_property_delegate] = STATE(2962), - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6498), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6462), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4938), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2789] = { - [sym_type_constraints] = STATE(2832), - [sym_property_delegate] = STATE(3025), - [sym_getter] = STATE(5385), - [sym_setter] = STATE(5385), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(6500), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_by] = ACTIONS(6462), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(6502), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(3330), - [sym_label] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3326), - [anon_sym_DOT_DOT] = ACTIONS(3330), - [anon_sym_QMARK_COLON] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_is] = ACTIONS(3326), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_as_QMARK] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_BANG_BANG] = ACTIONS(3330), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3330), - [sym__automatic_semicolon] = ACTIONS(3330), - [sym_safe_nav] = ACTIONS(3330), - [sym_multiline_comment] = ACTIONS(3), - }, - [2790] = { - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - }, - [2791] = { - [sym_type_constraints] = STATE(2831), - [sym_property_delegate] = STATE(3033), - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2733] = { + [sym_property_delegate] = STATE(2808), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6508), + [anon_sym_EQ] = ACTIONS(6240), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6462), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6234), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(5812), + [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6510), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), + [anon_sym_SEMI] = ACTIONS(6242), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), [anon_sym_STAR] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), @@ -345420,75 +338485,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2792] = { - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9432), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(6238), - [anon_sym_set] = ACTIONS(6240), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_DASH_GT] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2734] = { + [sym_type_constraints] = STATE(2761), + [sym_property_delegate] = STATE(2932), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6408), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(5018), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -345513,51 +338577,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2793] = { - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2735] = { + [sym_type_constraints] = STATE(2757), + [sym_property_delegate] = STATE(2948), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6360), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5824), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), + [anon_sym_SEMI] = ACTIONS(6412), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_DASH_GT] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), @@ -345605,74 +338669,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2794] = { - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2736] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_RBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4021), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_interface] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4021), + [anon_sym_var] = ACTIONS(4021), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4021), + [anon_sym_fun] = ACTIONS(4021), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4023), + [anon_sym_set] = ACTIONS(4023), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4023), + [anon_sym_sealed] = ACTIONS(4023), + [anon_sym_annotation] = ACTIONS(4023), + [anon_sym_data] = ACTIONS(4023), + [anon_sym_inner] = ACTIONS(4023), + [anon_sym_value] = ACTIONS(4023), + [anon_sym_override] = ACTIONS(4023), + [anon_sym_lateinit] = ACTIONS(4023), + [anon_sym_public] = ACTIONS(4023), + [anon_sym_private] = ACTIONS(4023), + [anon_sym_internal] = ACTIONS(4023), + [anon_sym_protected] = ACTIONS(4023), + [anon_sym_tailrec] = ACTIONS(4023), + [anon_sym_operator] = ACTIONS(4023), + [anon_sym_infix] = ACTIONS(4023), + [anon_sym_inline] = ACTIONS(4023), + [anon_sym_external] = ACTIONS(4023), + [sym_property_modifier] = ACTIONS(4023), + [anon_sym_abstract] = ACTIONS(4023), + [anon_sym_final] = ACTIONS(4023), + [anon_sym_open] = ACTIONS(4023), + [anon_sym_vararg] = ACTIONS(4023), + [anon_sym_noinline] = ACTIONS(4023), + [anon_sym_crossinline] = ACTIONS(4023), + [anon_sym_expect] = ACTIONS(4023), + [anon_sym_actual] = ACTIONS(4023), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + }, + [2737] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_RBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4011), + [anon_sym_interface] = ACTIONS(4011), + [anon_sym_enum] = ACTIONS(4011), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4011), + [anon_sym_var] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4011), + [anon_sym_fun] = ACTIONS(4011), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4013), + [anon_sym_set] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4013), + [anon_sym_sealed] = ACTIONS(4013), + [anon_sym_annotation] = ACTIONS(4013), + [anon_sym_data] = ACTIONS(4013), + [anon_sym_inner] = ACTIONS(4013), + [anon_sym_value] = ACTIONS(4013), + [anon_sym_override] = ACTIONS(4013), + [anon_sym_lateinit] = ACTIONS(4013), + [anon_sym_public] = ACTIONS(4013), + [anon_sym_private] = ACTIONS(4013), + [anon_sym_internal] = ACTIONS(4013), + [anon_sym_protected] = ACTIONS(4013), + [anon_sym_tailrec] = ACTIONS(4013), + [anon_sym_operator] = ACTIONS(4013), + [anon_sym_infix] = ACTIONS(4013), + [anon_sym_inline] = ACTIONS(4013), + [anon_sym_external] = ACTIONS(4013), + [sym_property_modifier] = ACTIONS(4013), + [anon_sym_abstract] = ACTIONS(4013), + [anon_sym_final] = ACTIONS(4013), + [anon_sym_open] = ACTIONS(4013), + [anon_sym_vararg] = ACTIONS(4013), + [anon_sym_noinline] = ACTIONS(4013), + [anon_sym_crossinline] = ACTIONS(4013), + [anon_sym_expect] = ACTIONS(4013), + [anon_sym_actual] = ACTIONS(4013), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + }, + [2738] = { + [sym_property_delegate] = STATE(2875), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6328), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -345697,74 +338943,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2795] = { - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2739] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_RBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4011), + [anon_sym_interface] = ACTIONS(4011), + [anon_sym_enum] = ACTIONS(4011), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4011), + [anon_sym_var] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4011), + [anon_sym_fun] = ACTIONS(4011), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4013), + [anon_sym_set] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4011), + [anon_sym_sealed] = ACTIONS(4011), + [anon_sym_annotation] = ACTIONS(4011), + [anon_sym_data] = ACTIONS(4013), + [anon_sym_inner] = ACTIONS(4013), + [anon_sym_value] = ACTIONS(4013), + [anon_sym_override] = ACTIONS(4011), + [anon_sym_lateinit] = ACTIONS(4011), + [anon_sym_public] = ACTIONS(4011), + [anon_sym_private] = ACTIONS(4011), + [anon_sym_internal] = ACTIONS(4011), + [anon_sym_protected] = ACTIONS(4011), + [anon_sym_tailrec] = ACTIONS(4011), + [anon_sym_operator] = ACTIONS(4011), + [anon_sym_infix] = ACTIONS(4011), + [anon_sym_inline] = ACTIONS(4011), + [anon_sym_external] = ACTIONS(4011), + [sym_property_modifier] = ACTIONS(4011), + [anon_sym_abstract] = ACTIONS(4011), + [anon_sym_final] = ACTIONS(4011), + [anon_sym_open] = ACTIONS(4011), + [anon_sym_vararg] = ACTIONS(4011), + [anon_sym_noinline] = ACTIONS(4011), + [anon_sym_crossinline] = ACTIONS(4011), + [anon_sym_expect] = ACTIONS(4013), + [anon_sym_actual] = ACTIONS(4013), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + }, + [2740] = { + [sym_property_delegate] = STATE(2877), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4664), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -345789,165 +339125,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2796] = { - [sym_primary_constructor] = STATE(4330), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3894), - [sym_enum_class_body] = STATE(4114), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6512), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2741] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_object] = ACTIONS(4028), + [anon_sym_fun] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_this] = ACTIONS(4028), + [anon_sym_super] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4028), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4053), + [anon_sym_DASH_EQ] = ACTIONS(4053), + [anon_sym_STAR_EQ] = ACTIONS(4053), + [anon_sym_SLASH_EQ] = ACTIONS(4053), + [anon_sym_PERCENT_EQ] = ACTIONS(4053), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4030), + [anon_sym_continue_AT] = ACTIONS(4030), + [anon_sym_break_AT] = ACTIONS(4030), + [anon_sym_this_AT] = ACTIONS(4030), + [anon_sym_super_AT] = ACTIONS(4030), + [sym_real_literal] = ACTIONS(4030), + [sym_integer_literal] = ACTIONS(4028), + [sym_hex_literal] = ACTIONS(4030), + [sym_bin_literal] = ACTIONS(4030), + [anon_sym_true] = ACTIONS(4028), + [anon_sym_false] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4030), + }, + [2742] = { + [sym_property_delegate] = STATE(2836), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6310), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4640), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2797] = { - [sym_type_constraints] = STATE(2830), - [sym_property_delegate] = STATE(3039), - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6514), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6462), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4806), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2743] = { + [sym_property_delegate] = STATE(2873), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6282), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -345972,51 +339398,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2798] = { - [sym_type_constraints] = STATE(2821), - [sym_property_delegate] = STATE(3030), - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2744] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_RBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4021), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_interface] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4021), + [anon_sym_var] = ACTIONS(4021), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4021), + [anon_sym_fun] = ACTIONS(4021), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4023), + [anon_sym_set] = ACTIONS(4023), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4021), + [anon_sym_sealed] = ACTIONS(4021), + [anon_sym_annotation] = ACTIONS(4021), + [anon_sym_data] = ACTIONS(4023), + [anon_sym_inner] = ACTIONS(4023), + [anon_sym_value] = ACTIONS(4023), + [anon_sym_override] = ACTIONS(4021), + [anon_sym_lateinit] = ACTIONS(4021), + [anon_sym_public] = ACTIONS(4021), + [anon_sym_private] = ACTIONS(4021), + [anon_sym_internal] = ACTIONS(4021), + [anon_sym_protected] = ACTIONS(4021), + [anon_sym_tailrec] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(4021), + [anon_sym_infix] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym_external] = ACTIONS(4021), + [sym_property_modifier] = ACTIONS(4021), + [anon_sym_abstract] = ACTIONS(4021), + [anon_sym_final] = ACTIONS(4021), + [anon_sym_open] = ACTIONS(4021), + [anon_sym_vararg] = ACTIONS(4021), + [anon_sym_noinline] = ACTIONS(4021), + [anon_sym_crossinline] = ACTIONS(4021), + [anon_sym_expect] = ACTIONS(4023), + [anon_sym_actual] = ACTIONS(4023), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + }, + [2745] = { + [sym_property_delegate] = STATE(2871), + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6516), + [anon_sym_EQ] = ACTIONS(6414), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6462), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6256), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(5812), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(5191), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), [anon_sym_STAR] = ACTIONS(1734), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), @@ -346064,74 +339580,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2799] = { - [sym_type_constraints] = STATE(2824), - [sym_property_delegate] = STATE(3037), - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6518), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6462), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(5213), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2746] = { + [sym_property_delegate] = STATE(2863), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6278), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -346156,49 +339671,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2800] = { - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9416), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2747] = { + [sym_property_delegate] = STATE(2828), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6262), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6256), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6228), - [anon_sym_get] = ACTIONS(6230), - [anon_sym_set] = ACTIONS(6232), + [anon_sym_SEMI] = ACTIONS(6264), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_DASH_GT] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), [anon_sym_while] = ACTIONS(3344), @@ -346249,347 +339762,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2801] = { - [sym_primary_constructor] = STATE(4321), - [sym_class_body] = STATE(4114), - [sym__class_parameters] = STATE(3861), - [sym_type_constraints] = STATE(3893), - [sym_modifiers] = STATE(10129), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6520), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_constructor] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [2802] = { - [sym_annotated_lambda] = STATE(3211), - [sym_lambda_literal] = STATE(3173), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(4030), - [anon_sym_AT] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_as] = ACTIONS(4030), - [anon_sym_EQ] = ACTIONS(4030), - [anon_sym_fun] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_RBRACE] = ACTIONS(4032), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_COMMA] = ACTIONS(4032), - [anon_sym_LT] = ACTIONS(4030), - [anon_sym_GT] = ACTIONS(4030), - [anon_sym_where] = ACTIONS(4030), - [anon_sym_object] = ACTIONS(4030), - [anon_sym_DOT] = ACTIONS(4030), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym_get] = ACTIONS(4030), - [anon_sym_set] = ACTIONS(4030), - [anon_sym_this] = ACTIONS(4030), - [anon_sym_super] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4030), - [sym_label] = ACTIONS(4030), - [anon_sym_in] = ACTIONS(4030), - [anon_sym_DOT_DOT] = ACTIONS(4032), - [anon_sym_QMARK_COLON] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4032), - [anon_sym_null] = ACTIONS(4030), - [anon_sym_if] = ACTIONS(4030), - [anon_sym_else] = ACTIONS(4030), - [anon_sym_when] = ACTIONS(4030), - [anon_sym_try] = ACTIONS(4030), - [anon_sym_throw] = ACTIONS(4030), - [anon_sym_return] = ACTIONS(4030), - [anon_sym_continue] = ACTIONS(4030), - [anon_sym_break] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(4032), - [anon_sym_PLUS_EQ] = ACTIONS(4032), - [anon_sym_DASH_EQ] = ACTIONS(4032), - [anon_sym_STAR_EQ] = ACTIONS(4032), - [anon_sym_SLASH_EQ] = ACTIONS(4032), - [anon_sym_PERCENT_EQ] = ACTIONS(4032), - [anon_sym_BANG_EQ] = ACTIONS(4030), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4032), - [anon_sym_EQ_EQ] = ACTIONS(4030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4032), - [anon_sym_LT_EQ] = ACTIONS(4032), - [anon_sym_GT_EQ] = ACTIONS(4032), - [anon_sym_BANGin] = ACTIONS(4032), - [anon_sym_is] = ACTIONS(4030), - [anon_sym_BANGis] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_SLASH] = ACTIONS(4030), - [anon_sym_PERCENT] = ACTIONS(4030), - [anon_sym_as_QMARK] = ACTIONS(4032), - [anon_sym_PLUS_PLUS] = ACTIONS(4032), - [anon_sym_DASH_DASH] = ACTIONS(4032), - [anon_sym_BANG] = ACTIONS(4030), - [anon_sym_BANG_BANG] = ACTIONS(4032), - [anon_sym_data] = ACTIONS(4030), - [anon_sym_inner] = ACTIONS(4030), - [anon_sym_value] = ACTIONS(4030), - [anon_sym_expect] = ACTIONS(4030), - [anon_sym_actual] = ACTIONS(4030), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4032), - [anon_sym_continue_AT] = ACTIONS(4032), - [anon_sym_break_AT] = ACTIONS(4032), - [anon_sym_this_AT] = ACTIONS(4032), - [anon_sym_super_AT] = ACTIONS(4032), - [sym_real_literal] = ACTIONS(4032), - [sym_integer_literal] = ACTIONS(4030), - [sym_hex_literal] = ACTIONS(4032), - [sym_bin_literal] = ACTIONS(4032), - [anon_sym_true] = ACTIONS(4030), - [anon_sym_false] = ACTIONS(4030), - [anon_sym_SQUOTE] = ACTIONS(4032), - [sym__backtick_identifier] = ACTIONS(4032), - [sym__automatic_semicolon] = ACTIONS(4032), - [sym_safe_nav] = ACTIONS(4032), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4032), - }, - [2803] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4022), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_typealias] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4025), - [anon_sym_fun] = ACTIONS(4025), - [anon_sym_interface] = ACTIONS(4025), - [anon_sym_enum] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_val] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4025), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4027), - [anon_sym_set] = ACTIONS(4027), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4015), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_while] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4025), - [anon_sym_sealed] = ACTIONS(4025), - [anon_sym_annotation] = ACTIONS(4025), - [anon_sym_data] = ACTIONS(4027), - [anon_sym_inner] = ACTIONS(4027), - [anon_sym_value] = ACTIONS(4027), - [anon_sym_override] = ACTIONS(4025), - [anon_sym_lateinit] = ACTIONS(4025), - [anon_sym_public] = ACTIONS(4025), - [anon_sym_private] = ACTIONS(4025), - [anon_sym_internal] = ACTIONS(4025), - [anon_sym_protected] = ACTIONS(4025), - [anon_sym_tailrec] = ACTIONS(4025), - [anon_sym_operator] = ACTIONS(4025), - [anon_sym_infix] = ACTIONS(4025), - [anon_sym_inline] = ACTIONS(4025), - [anon_sym_external] = ACTIONS(4025), - [sym_property_modifier] = ACTIONS(4025), - [anon_sym_abstract] = ACTIONS(4025), - [anon_sym_final] = ACTIONS(4025), - [anon_sym_open] = ACTIONS(4025), - [anon_sym_vararg] = ACTIONS(4025), - [anon_sym_noinline] = ACTIONS(4025), - [anon_sym_crossinline] = ACTIONS(4025), - [anon_sym_expect] = ACTIONS(4027), - [anon_sym_actual] = ACTIONS(4027), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), + [2748] = { + [sym_annotated_lambda] = STATE(3161), + [sym_lambda_literal] = STATE(3174), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_object] = ACTIONS(3992), + [anon_sym_fun] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_this] = ACTIONS(3992), + [anon_sym_super] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3992), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_null] = ACTIONS(3992), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_when] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3994), + [anon_sym_continue_AT] = ACTIONS(3994), + [anon_sym_break_AT] = ACTIONS(3994), + [anon_sym_this_AT] = ACTIONS(3994), + [anon_sym_super_AT] = ACTIONS(3994), + [sym_real_literal] = ACTIONS(3994), + [sym_integer_literal] = ACTIONS(3992), + [sym_hex_literal] = ACTIONS(3994), + [sym_bin_literal] = ACTIONS(3994), + [anon_sym_true] = ACTIONS(3992), + [anon_sym_false] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3994), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3994), }, - [2804] = { - [sym_property_delegate] = STATE(2908), - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6370), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6336), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4752), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2749] = { + [sym_property_delegate] = STATE(2820), + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6416), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4513), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -346614,164 +339944,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2805] = { - [sym_annotated_lambda] = STATE(3233), - [sym_lambda_literal] = STATE(3173), - [sym_annotation] = STATE(8605), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8605), - [sym__alpha_identifier] = ACTIONS(4082), - [anon_sym_AT] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(4082), - [anon_sym_EQ] = ACTIONS(4082), - [anon_sym_fun] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_where] = ACTIONS(4082), - [anon_sym_object] = ACTIONS(4082), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_get] = ACTIONS(4082), - [anon_sym_set] = ACTIONS(4082), - [anon_sym_this] = ACTIONS(4082), - [anon_sym_super] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [sym_label] = ACTIONS(4082), - [anon_sym_in] = ACTIONS(4082), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_QMARK_COLON] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_null] = ACTIONS(4082), - [anon_sym_if] = ACTIONS(4082), - [anon_sym_else] = ACTIONS(4082), - [anon_sym_when] = ACTIONS(4082), - [anon_sym_try] = ACTIONS(4082), - [anon_sym_throw] = ACTIONS(4082), - [anon_sym_return] = ACTIONS(4082), - [anon_sym_continue] = ACTIONS(4082), - [anon_sym_break] = ACTIONS(4082), - [anon_sym_COLON_COLON] = ACTIONS(4084), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_STAR_EQ] = ACTIONS(4084), - [anon_sym_SLASH_EQ] = ACTIONS(4084), - [anon_sym_PERCENT_EQ] = ACTIONS(4084), - [anon_sym_BANG_EQ] = ACTIONS(4082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_BANGin] = ACTIONS(4084), - [anon_sym_is] = ACTIONS(4082), - [anon_sym_BANGis] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_SLASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4082), - [anon_sym_as_QMARK] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_BANG_BANG] = ACTIONS(4084), - [anon_sym_data] = ACTIONS(4082), - [anon_sym_inner] = ACTIONS(4082), - [anon_sym_value] = ACTIONS(4082), - [anon_sym_expect] = ACTIONS(4082), - [anon_sym_actual] = ACTIONS(4082), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4084), - [anon_sym_continue_AT] = ACTIONS(4084), - [anon_sym_break_AT] = ACTIONS(4084), - [anon_sym_this_AT] = ACTIONS(4084), - [anon_sym_super_AT] = ACTIONS(4084), - [sym_real_literal] = ACTIONS(4084), - [sym_integer_literal] = ACTIONS(4082), - [sym_hex_literal] = ACTIONS(4084), - [sym_bin_literal] = ACTIONS(4084), - [anon_sym_true] = ACTIONS(4082), - [anon_sym_false] = ACTIONS(4082), - [anon_sym_SQUOTE] = ACTIONS(4084), - [sym__backtick_identifier] = ACTIONS(4084), - [sym__automatic_semicolon] = ACTIONS(4084), - [sym_safe_nav] = ACTIONS(4084), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4084), - }, - [2806] = { - [sym_property_delegate] = STATE(2886), - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6408), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6336), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4601), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2750] = { + [sym_property_delegate] = STATE(2841), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6346), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -346796,46 +340035,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2807] = { - [sym_property_delegate] = STATE(2915), - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2751] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_object] = ACTIONS(4028), + [anon_sym_fun] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_this] = ACTIONS(4028), + [anon_sym_super] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4028), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4043), + [anon_sym_DASH_EQ] = ACTIONS(4043), + [anon_sym_STAR_EQ] = ACTIONS(4043), + [anon_sym_SLASH_EQ] = ACTIONS(4043), + [anon_sym_PERCENT_EQ] = ACTIONS(4043), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4030), + [anon_sym_continue_AT] = ACTIONS(4030), + [anon_sym_break_AT] = ACTIONS(4030), + [anon_sym_this_AT] = ACTIONS(4030), + [anon_sym_super_AT] = ACTIONS(4030), + [sym_real_literal] = ACTIONS(4030), + [sym_integer_literal] = ACTIONS(4028), + [sym_hex_literal] = ACTIONS(4030), + [sym_bin_literal] = ACTIONS(4030), + [anon_sym_true] = ACTIONS(4028), + [anon_sym_false] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4030), + }, + [2752] = { + [sym_property_delegate] = STATE(2879), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6438), + [anon_sym_EQ] = ACTIONS(6330), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6336), + [anon_sym_by] = ACTIONS(6256), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6440), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), + [anon_sym_SEMI] = ACTIONS(6332), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), [anon_sym_STAR] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), @@ -346887,73 +340217,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2808] = { - [sym_property_delegate] = STATE(2896), - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6406), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6336), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4764), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2753] = { + [sym_annotated_lambda] = STATE(3072), + [sym_lambda_literal] = STATE(3174), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_object] = ACTIONS(4000), + [anon_sym_fun] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_this] = ACTIONS(4000), + [anon_sym_super] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_null] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_when] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4002), + [anon_sym_continue_AT] = ACTIONS(4002), + [anon_sym_break_AT] = ACTIONS(4002), + [anon_sym_this_AT] = ACTIONS(4002), + [anon_sym_super_AT] = ACTIONS(4002), + [sym_real_literal] = ACTIONS(4002), + [sym_integer_literal] = ACTIONS(4000), + [sym_hex_literal] = ACTIONS(4002), + [sym_bin_literal] = ACTIONS(4002), + [anon_sym_true] = ACTIONS(4000), + [anon_sym_false] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4002), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4002), + }, + [2754] = { + [sym_property_delegate] = STATE(2943), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6368), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(5203), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -346978,141 +340397,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2809] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_typealias] = ACTIONS(4017), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4017), - [anon_sym_fun] = ACTIONS(4017), - [anon_sym_interface] = ACTIONS(4017), - [anon_sym_enum] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_val] = ACTIONS(4017), - [anon_sym_var] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4017), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4015), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_while] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4019), - [anon_sym_sealed] = ACTIONS(4019), - [anon_sym_annotation] = ACTIONS(4019), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_value] = ACTIONS(4019), - [anon_sym_override] = ACTIONS(4019), - [anon_sym_lateinit] = ACTIONS(4019), - [anon_sym_public] = ACTIONS(4019), - [anon_sym_private] = ACTIONS(4019), - [anon_sym_internal] = ACTIONS(4019), - [anon_sym_protected] = ACTIONS(4019), - [anon_sym_tailrec] = ACTIONS(4019), - [anon_sym_operator] = ACTIONS(4019), - [anon_sym_infix] = ACTIONS(4019), - [anon_sym_inline] = ACTIONS(4019), - [anon_sym_external] = ACTIONS(4019), - [sym_property_modifier] = ACTIONS(4019), - [anon_sym_abstract] = ACTIONS(4019), - [anon_sym_final] = ACTIONS(4019), - [anon_sym_open] = ACTIONS(4019), - [anon_sym_vararg] = ACTIONS(4019), - [anon_sym_noinline] = ACTIONS(4019), - [anon_sym_crossinline] = ACTIONS(4019), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), + [2755] = { + [sym_property_delegate] = STATE(2967), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6404), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6406), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2810] = { - [sym_property_delegate] = STATE(2900), - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2756] = { + [sym_property_delegate] = STATE(2948), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6412), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2757] = { + [sym_property_delegate] = STATE(2932), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6408), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(5018), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2758] = { + [sym_property_delegate] = STATE(2891), + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6334), + [anon_sym_EQ] = ACTIONS(6418), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6336), + [anon_sym_by] = ACTIONS(6360), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4794), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), + [anon_sym_SEMI] = ACTIONS(5143), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), [anon_sym_STAR] = ACTIONS(1734), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), @@ -347160,50 +340757,1480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2811] = { - [sym_property_delegate] = STATE(2895), - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2759] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4018), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4021), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_interface] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4021), + [anon_sym_var] = ACTIONS(4021), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4021), + [anon_sym_fun] = ACTIONS(4021), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4023), + [anon_sym_set] = ACTIONS(4023), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4021), + [anon_sym_sealed] = ACTIONS(4021), + [anon_sym_annotation] = ACTIONS(4021), + [anon_sym_data] = ACTIONS(4023), + [anon_sym_inner] = ACTIONS(4023), + [anon_sym_value] = ACTIONS(4023), + [anon_sym_override] = ACTIONS(4021), + [anon_sym_lateinit] = ACTIONS(4021), + [anon_sym_public] = ACTIONS(4021), + [anon_sym_private] = ACTIONS(4021), + [anon_sym_internal] = ACTIONS(4021), + [anon_sym_protected] = ACTIONS(4021), + [anon_sym_tailrec] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(4021), + [anon_sym_infix] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym_external] = ACTIONS(4021), + [sym_property_modifier] = ACTIONS(4021), + [anon_sym_abstract] = ACTIONS(4021), + [anon_sym_final] = ACTIONS(4021), + [anon_sym_open] = ACTIONS(4021), + [anon_sym_vararg] = ACTIONS(4021), + [anon_sym_noinline] = ACTIONS(4021), + [anon_sym_crossinline] = ACTIONS(4021), + [anon_sym_expect] = ACTIONS(4023), + [anon_sym_actual] = ACTIONS(4023), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + }, + [2760] = { + [sym_property_delegate] = STATE(2959), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6378), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(5014), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2761] = { + [sym_property_delegate] = STATE(2954), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6390), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2762] = { + [sym_property_delegate] = STATE(2929), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6386), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(5217), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2763] = { + [sym_catch_block] = STATE(2809), + [sym_finally_block] = STATE(3190), + [aux_sym_try_expression_repeat1] = STATE(2809), + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_object] = ACTIONS(4094), + [anon_sym_fun] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_this] = ACTIONS(4094), + [anon_sym_super] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_null] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_when] = ACTIONS(4094), + [anon_sym_try] = ACTIONS(4094), + [anon_sym_catch] = ACTIONS(6420), + [anon_sym_finally] = ACTIONS(6422), + [anon_sym_throw] = ACTIONS(4094), + [anon_sym_return] = ACTIONS(4094), + [anon_sym_continue] = ACTIONS(4094), + [anon_sym_break] = ACTIONS(4094), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4096), + [anon_sym_continue_AT] = ACTIONS(4096), + [anon_sym_break_AT] = ACTIONS(4096), + [anon_sym_this_AT] = ACTIONS(4096), + [anon_sym_super_AT] = ACTIONS(4096), + [sym_real_literal] = ACTIONS(4096), + [sym_integer_literal] = ACTIONS(4094), + [sym_hex_literal] = ACTIONS(4096), + [sym_bin_literal] = ACTIONS(4096), + [anon_sym_true] = ACTIONS(4094), + [anon_sym_false] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4096), + [sym__backtick_identifier] = ACTIONS(4096), + [sym__automatic_semicolon] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4096), + }, + [2764] = { + [sym_property_delegate] = STATE(2961), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6424), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + }, + [2765] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4006), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4011), + [anon_sym_interface] = ACTIONS(4011), + [anon_sym_enum] = ACTIONS(4011), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4011), + [anon_sym_var] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4011), + [anon_sym_fun] = ACTIONS(4011), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4013), + [anon_sym_set] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4011), + [anon_sym_sealed] = ACTIONS(4011), + [anon_sym_annotation] = ACTIONS(4011), + [anon_sym_data] = ACTIONS(4013), + [anon_sym_inner] = ACTIONS(4013), + [anon_sym_value] = ACTIONS(4013), + [anon_sym_override] = ACTIONS(4011), + [anon_sym_lateinit] = ACTIONS(4011), + [anon_sym_public] = ACTIONS(4011), + [anon_sym_private] = ACTIONS(4011), + [anon_sym_internal] = ACTIONS(4011), + [anon_sym_protected] = ACTIONS(4011), + [anon_sym_tailrec] = ACTIONS(4011), + [anon_sym_operator] = ACTIONS(4011), + [anon_sym_infix] = ACTIONS(4011), + [anon_sym_inline] = ACTIONS(4011), + [anon_sym_external] = ACTIONS(4011), + [sym_property_modifier] = ACTIONS(4011), + [anon_sym_abstract] = ACTIONS(4011), + [anon_sym_final] = ACTIONS(4011), + [anon_sym_open] = ACTIONS(4011), + [anon_sym_vararg] = ACTIONS(4011), + [anon_sym_noinline] = ACTIONS(4011), + [anon_sym_crossinline] = ACTIONS(4011), + [anon_sym_expect] = ACTIONS(4013), + [anon_sym_actual] = ACTIONS(4013), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + }, + [2766] = { + [sym_property_delegate] = STATE(2912), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(5157), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2767] = { + [sym_annotated_lambda] = STATE(3476), + [sym_lambda_literal] = STATE(3370), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_RBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_DASH_GT] = ACTIONS(3994), + [sym_label] = ACTIONS(3994), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_while] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + }, + [2768] = { + [sym_type_constraints] = STATE(2882), + [sym_function_body] = STATE(3195), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6426), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), + }, + [2769] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2770] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2771] = { + [sym_type_constraints] = STATE(2890), + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6432), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), + }, + [2772] = { + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_by] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_object] = ACTIONS(4179), + [anon_sym_fun] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_this] = ACTIONS(4179), + [anon_sym_super] = ACTIONS(4179), + [anon_sym_AMP] = ACTIONS(4179), + [sym__quest] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_QMARK_COLON] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_null] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_throw] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS_EQ] = ACTIONS(4181), + [anon_sym_DASH_EQ] = ACTIONS(4181), + [anon_sym_STAR_EQ] = ACTIONS(4181), + [anon_sym_SLASH_EQ] = ACTIONS(4181), + [anon_sym_PERCENT_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_as_QMARK] = ACTIONS(4181), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4181), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4181), + [anon_sym_continue_AT] = ACTIONS(4181), + [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [anon_sym_SQUOTE] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4181), + [sym__automatic_semicolon] = ACTIONS(4181), + [sym_safe_nav] = ACTIONS(4181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4181), + }, + [2773] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_RBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4030), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_while] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4053), + [anon_sym_DASH_EQ] = ACTIONS(4053), + [anon_sym_STAR_EQ] = ACTIONS(4053), + [anon_sym_SLASH_EQ] = ACTIONS(4053), + [anon_sym_PERCENT_EQ] = ACTIONS(4053), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), + }, + [2774] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_RBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4030), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_while] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4043), + [anon_sym_DASH_EQ] = ACTIONS(4043), + [anon_sym_STAR_EQ] = ACTIONS(4043), + [anon_sym_SLASH_EQ] = ACTIONS(4043), + [anon_sym_PERCENT_EQ] = ACTIONS(4043), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), + }, + [2775] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6430), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6336), + [anon_sym_COMMA] = ACTIONS(3346), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6432), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), [anon_sym_STAR] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), @@ -347251,73 +342278,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2812] = { - [sym_property_delegate] = STATE(2885), - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6442), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6336), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4703), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2776] = { + [sym_getter] = STATE(5177), + [sym_setter] = STATE(5177), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -347342,164 +342367,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2813] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4022), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_typealias] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4025), - [anon_sym_fun] = ACTIONS(4025), - [anon_sym_interface] = ACTIONS(4025), - [anon_sym_enum] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_val] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4025), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4027), - [anon_sym_set] = ACTIONS(4027), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4015), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_while] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4027), - [anon_sym_sealed] = ACTIONS(4027), - [anon_sym_annotation] = ACTIONS(4027), - [anon_sym_data] = ACTIONS(4027), - [anon_sym_inner] = ACTIONS(4027), - [anon_sym_value] = ACTIONS(4027), - [anon_sym_override] = ACTIONS(4027), - [anon_sym_lateinit] = ACTIONS(4027), - [anon_sym_public] = ACTIONS(4027), - [anon_sym_private] = ACTIONS(4027), - [anon_sym_internal] = ACTIONS(4027), - [anon_sym_protected] = ACTIONS(4027), - [anon_sym_tailrec] = ACTIONS(4027), - [anon_sym_operator] = ACTIONS(4027), - [anon_sym_infix] = ACTIONS(4027), - [anon_sym_inline] = ACTIONS(4027), - [anon_sym_external] = ACTIONS(4027), - [sym_property_modifier] = ACTIONS(4027), - [anon_sym_abstract] = ACTIONS(4027), - [anon_sym_final] = ACTIONS(4027), - [anon_sym_open] = ACTIONS(4027), - [anon_sym_vararg] = ACTIONS(4027), - [anon_sym_noinline] = ACTIONS(4027), - [anon_sym_crossinline] = ACTIONS(4027), - [anon_sym_expect] = ACTIONS(4027), - [anon_sym_actual] = ACTIONS(4027), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), + [2777] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2814] = { - [sym_property_delegate] = STATE(2903), - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6522), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6336), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4762), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2778] = { + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -347524,50 +342545,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2815] = { - [sym_property_delegate] = STATE(2877), - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2779] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6524), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6336), + [anon_sym_COMMA] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4796), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), [anon_sym_STAR] = ACTIONS(1810), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), [anon_sym_DOT_DOT] = ACTIONS(1810), [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1810), @@ -347615,323 +342634,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2816] = { - [sym_indexing_suffix] = STATE(7443), - [sym_navigation_suffix] = STATE(7443), - [sym__postfix_unary_operator] = STATE(7443), - [sym__member_access_operator] = STATE(7875), - [sym__postfix_unary_suffix] = STATE(7443), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7443), - [sym__alpha_identifier] = ACTIONS(4034), - [anon_sym_AT] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4038), - [anon_sym_as] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4041), - [anon_sym_fun] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_COMMA] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_where] = ACTIONS(4034), - [anon_sym_object] = ACTIONS(4034), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_get] = ACTIONS(4034), - [anon_sym_set] = ACTIONS(4034), - [anon_sym_this] = ACTIONS(4034), - [anon_sym_super] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4034), - [sym_label] = ACTIONS(4034), - [anon_sym_in] = ACTIONS(4034), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_QMARK_COLON] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_null] = ACTIONS(4034), - [anon_sym_if] = ACTIONS(4034), - [anon_sym_else] = ACTIONS(4034), - [anon_sym_when] = ACTIONS(4034), - [anon_sym_try] = ACTIONS(4034), - [anon_sym_throw] = ACTIONS(4034), - [anon_sym_return] = ACTIONS(4034), - [anon_sym_continue] = ACTIONS(4034), - [anon_sym_break] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4046), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT_EQ] = ACTIONS(4036), - [anon_sym_GT_EQ] = ACTIONS(4036), - [anon_sym_BANGin] = ACTIONS(4036), - [anon_sym_is] = ACTIONS(4034), - [anon_sym_BANGis] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_SLASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_as_QMARK] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(4051), - [anon_sym_BANG] = ACTIONS(4034), - [anon_sym_BANG_BANG] = ACTIONS(4051), - [anon_sym_data] = ACTIONS(4034), - [anon_sym_inner] = ACTIONS(4034), - [anon_sym_value] = ACTIONS(4034), - [anon_sym_expect] = ACTIONS(4034), - [anon_sym_actual] = ACTIONS(4034), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4036), - [anon_sym_continue_AT] = ACTIONS(4036), - [anon_sym_break_AT] = ACTIONS(4036), - [anon_sym_this_AT] = ACTIONS(4036), - [anon_sym_super_AT] = ACTIONS(4036), - [sym_real_literal] = ACTIONS(4036), - [sym_integer_literal] = ACTIONS(4034), - [sym_hex_literal] = ACTIONS(4036), - [sym_bin_literal] = ACTIONS(4036), - [anon_sym_true] = ACTIONS(4034), - [anon_sym_false] = ACTIONS(4034), - [anon_sym_SQUOTE] = ACTIONS(4036), - [sym__backtick_identifier] = ACTIONS(4036), - [sym__automatic_semicolon] = ACTIONS(4036), - [sym_safe_nav] = ACTIONS(4046), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4036), - }, - [2817] = { - [sym_indexing_suffix] = STATE(7443), - [sym_navigation_suffix] = STATE(7443), - [sym__postfix_unary_operator] = STATE(7443), - [sym__member_access_operator] = STATE(7875), - [sym__postfix_unary_suffix] = STATE(7443), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7443), - [sym__alpha_identifier] = ACTIONS(4034), - [anon_sym_AT] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4038), - [anon_sym_as] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4070), - [anon_sym_fun] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_COMMA] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_where] = ACTIONS(4034), - [anon_sym_object] = ACTIONS(4034), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_get] = ACTIONS(4034), - [anon_sym_set] = ACTIONS(4034), - [anon_sym_this] = ACTIONS(4034), - [anon_sym_super] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4034), - [sym_label] = ACTIONS(4034), - [anon_sym_in] = ACTIONS(4034), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_QMARK_COLON] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_null] = ACTIONS(4034), - [anon_sym_if] = ACTIONS(4034), - [anon_sym_else] = ACTIONS(4034), - [anon_sym_when] = ACTIONS(4034), - [anon_sym_try] = ACTIONS(4034), - [anon_sym_throw] = ACTIONS(4034), - [anon_sym_return] = ACTIONS(4034), - [anon_sym_continue] = ACTIONS(4034), - [anon_sym_break] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4046), - [anon_sym_PLUS_EQ] = ACTIONS(4073), - [anon_sym_DASH_EQ] = ACTIONS(4073), - [anon_sym_STAR_EQ] = ACTIONS(4073), - [anon_sym_SLASH_EQ] = ACTIONS(4073), - [anon_sym_PERCENT_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT_EQ] = ACTIONS(4036), - [anon_sym_GT_EQ] = ACTIONS(4036), - [anon_sym_BANGin] = ACTIONS(4036), - [anon_sym_is] = ACTIONS(4034), - [anon_sym_BANGis] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_SLASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_as_QMARK] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(4051), - [anon_sym_BANG] = ACTIONS(4034), - [anon_sym_BANG_BANG] = ACTIONS(4051), - [anon_sym_data] = ACTIONS(4034), - [anon_sym_inner] = ACTIONS(4034), - [anon_sym_value] = ACTIONS(4034), - [anon_sym_expect] = ACTIONS(4034), - [anon_sym_actual] = ACTIONS(4034), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4036), - [anon_sym_continue_AT] = ACTIONS(4036), - [anon_sym_break_AT] = ACTIONS(4036), - [anon_sym_this_AT] = ACTIONS(4036), - [anon_sym_super_AT] = ACTIONS(4036), - [sym_real_literal] = ACTIONS(4036), - [sym_integer_literal] = ACTIONS(4034), - [sym_hex_literal] = ACTIONS(4036), - [sym_bin_literal] = ACTIONS(4036), - [anon_sym_true] = ACTIONS(4034), - [anon_sym_false] = ACTIONS(4034), - [anon_sym_SQUOTE] = ACTIONS(4036), - [sym__backtick_identifier] = ACTIONS(4036), - [sym__automatic_semicolon] = ACTIONS(4036), - [sym_safe_nav] = ACTIONS(4046), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4036), - }, - [2818] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_typealias] = ACTIONS(4017), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4017), - [anon_sym_fun] = ACTIONS(4017), - [anon_sym_interface] = ACTIONS(4017), - [anon_sym_enum] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_val] = ACTIONS(4017), - [anon_sym_var] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4017), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4015), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_while] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4017), - [anon_sym_sealed] = ACTIONS(4017), - [anon_sym_annotation] = ACTIONS(4017), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_value] = ACTIONS(4019), - [anon_sym_override] = ACTIONS(4017), - [anon_sym_lateinit] = ACTIONS(4017), - [anon_sym_public] = ACTIONS(4017), - [anon_sym_private] = ACTIONS(4017), - [anon_sym_internal] = ACTIONS(4017), - [anon_sym_protected] = ACTIONS(4017), - [anon_sym_tailrec] = ACTIONS(4017), - [anon_sym_operator] = ACTIONS(4017), - [anon_sym_infix] = ACTIONS(4017), - [anon_sym_inline] = ACTIONS(4017), - [anon_sym_external] = ACTIONS(4017), - [sym_property_modifier] = ACTIONS(4017), - [anon_sym_abstract] = ACTIONS(4017), - [anon_sym_final] = ACTIONS(4017), - [anon_sym_open] = ACTIONS(4017), - [anon_sym_vararg] = ACTIONS(4017), - [anon_sym_noinline] = ACTIONS(4017), - [anon_sym_crossinline] = ACTIONS(4017), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - }, - [2819] = { - [sym_property_delegate] = STATE(2925), - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2780] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6436), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6336), + [anon_sym_COMMA] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), [anon_sym_STAR] = ACTIONS(1734), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), @@ -347979,45 +342723,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2820] = { - [sym_property_delegate] = STATE(3038), - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2781] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2782] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6496), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6462), + [anon_sym_COMMA] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4892), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), [anon_sym_STAR] = ACTIONS(1734), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), @@ -348068,46 +342901,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2821] = { - [sym_property_delegate] = STATE(3026), - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2783] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6526), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6462), + [anon_sym_COMMA] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(5157), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), [anon_sym_STAR] = ACTIONS(1810), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), @@ -348158,46 +342990,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1810), [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2822] = { - [sym_property_delegate] = STATE(3000), - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2784] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + }, + [2785] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6528), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6462), + [anon_sym_COMMA] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4844), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), [anon_sym_STAR] = ACTIONS(1810), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), @@ -348248,72 +343168,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1810), [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2823] = { - [sym_property_delegate] = STATE(2957), - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6476), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6462), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6478), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2786] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -348338,46 +343257,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2824] = { - [sym_property_delegate] = STATE(3030), - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2787] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2788] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6516), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(6462), + [anon_sym_COMMA] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(5191), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), [anon_sym_STAR] = ACTIONS(1734), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), @@ -348428,72 +343435,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2825] = { - [sym_property_delegate] = STATE(2962), - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6498), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6462), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4938), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2789] = { + [sym_type_constraints] = STATE(2908), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(6434), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [2790] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6288), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -348518,162 +343613,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2826] = { - [sym_catch_block] = STATE(2862), - [sym_finally_block] = STATE(3232), - [aux_sym_try_expression_repeat1] = STATE(2862), - [sym__alpha_identifier] = ACTIONS(4130), - [anon_sym_AT] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_as] = ACTIONS(4130), - [anon_sym_EQ] = ACTIONS(4130), - [anon_sym_fun] = ACTIONS(4130), - [anon_sym_LBRACE] = ACTIONS(4132), - [anon_sym_RBRACE] = ACTIONS(4132), - [anon_sym_LPAREN] = ACTIONS(4132), - [anon_sym_COMMA] = ACTIONS(4132), - [anon_sym_LT] = ACTIONS(4130), - [anon_sym_GT] = ACTIONS(4130), - [anon_sym_where] = ACTIONS(4130), - [anon_sym_object] = ACTIONS(4130), - [anon_sym_DOT] = ACTIONS(4130), - [anon_sym_SEMI] = ACTIONS(4132), - [anon_sym_get] = ACTIONS(4130), - [anon_sym_set] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_super] = ACTIONS(4130), - [anon_sym_STAR] = ACTIONS(4130), - [sym_label] = ACTIONS(4130), - [anon_sym_in] = ACTIONS(4130), - [anon_sym_DOT_DOT] = ACTIONS(4132), - [anon_sym_QMARK_COLON] = ACTIONS(4132), - [anon_sym_AMP_AMP] = ACTIONS(4132), - [anon_sym_PIPE_PIPE] = ACTIONS(4132), - [anon_sym_null] = ACTIONS(4130), - [anon_sym_if] = ACTIONS(4130), - [anon_sym_else] = ACTIONS(4130), - [anon_sym_when] = ACTIONS(4130), - [anon_sym_try] = ACTIONS(4130), - [anon_sym_catch] = ACTIONS(6530), - [anon_sym_finally] = ACTIONS(6532), - [anon_sym_throw] = ACTIONS(4130), - [anon_sym_return] = ACTIONS(4130), - [anon_sym_continue] = ACTIONS(4130), - [anon_sym_break] = ACTIONS(4130), - [anon_sym_COLON_COLON] = ACTIONS(4132), - [anon_sym_PLUS_EQ] = ACTIONS(4132), - [anon_sym_DASH_EQ] = ACTIONS(4132), - [anon_sym_STAR_EQ] = ACTIONS(4132), - [anon_sym_SLASH_EQ] = ACTIONS(4132), - [anon_sym_PERCENT_EQ] = ACTIONS(4132), - [anon_sym_BANG_EQ] = ACTIONS(4130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4132), - [anon_sym_EQ_EQ] = ACTIONS(4130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4132), - [anon_sym_LT_EQ] = ACTIONS(4132), - [anon_sym_GT_EQ] = ACTIONS(4132), - [anon_sym_BANGin] = ACTIONS(4132), - [anon_sym_is] = ACTIONS(4130), - [anon_sym_BANGis] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4130), - [anon_sym_DASH] = ACTIONS(4130), - [anon_sym_SLASH] = ACTIONS(4130), - [anon_sym_PERCENT] = ACTIONS(4130), - [anon_sym_as_QMARK] = ACTIONS(4132), - [anon_sym_PLUS_PLUS] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4132), - [anon_sym_BANG] = ACTIONS(4130), - [anon_sym_BANG_BANG] = ACTIONS(4132), - [anon_sym_data] = ACTIONS(4130), - [anon_sym_inner] = ACTIONS(4130), - [anon_sym_value] = ACTIONS(4130), - [anon_sym_expect] = ACTIONS(4130), - [anon_sym_actual] = ACTIONS(4130), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4132), - [anon_sym_continue_AT] = ACTIONS(4132), - [anon_sym_break_AT] = ACTIONS(4132), - [anon_sym_this_AT] = ACTIONS(4132), - [anon_sym_super_AT] = ACTIONS(4132), - [sym_real_literal] = ACTIONS(4132), - [sym_integer_literal] = ACTIONS(4130), - [sym_hex_literal] = ACTIONS(4132), - [sym_bin_literal] = ACTIONS(4132), - [anon_sym_true] = ACTIONS(4130), - [anon_sym_false] = ACTIONS(4130), - [anon_sym_SQUOTE] = ACTIONS(4132), - [sym__backtick_identifier] = ACTIONS(4132), - [sym__automatic_semicolon] = ACTIONS(4132), - [sym_safe_nav] = ACTIONS(4132), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4132), + [2791] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_by] = ACTIONS(4004), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4004), + [sym__quest] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [2827] = { - [sym_property_delegate] = STATE(2992), - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6460), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6462), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(5036), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2792] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -348698,252 +343791,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - }, - [2828] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4022), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_typealias] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4025), - [anon_sym_fun] = ACTIONS(4025), - [anon_sym_interface] = ACTIONS(4025), - [anon_sym_enum] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_val] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4025), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4027), - [anon_sym_set] = ACTIONS(4027), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4015), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4025), - [anon_sym_sealed] = ACTIONS(4025), - [anon_sym_annotation] = ACTIONS(4025), - [anon_sym_data] = ACTIONS(4027), - [anon_sym_inner] = ACTIONS(4027), - [anon_sym_value] = ACTIONS(4027), - [anon_sym_override] = ACTIONS(4025), - [anon_sym_lateinit] = ACTIONS(4025), - [anon_sym_public] = ACTIONS(4025), - [anon_sym_private] = ACTIONS(4025), - [anon_sym_internal] = ACTIONS(4025), - [anon_sym_protected] = ACTIONS(4025), - [anon_sym_tailrec] = ACTIONS(4025), - [anon_sym_operator] = ACTIONS(4025), - [anon_sym_infix] = ACTIONS(4025), - [anon_sym_inline] = ACTIONS(4025), - [anon_sym_external] = ACTIONS(4025), - [sym_property_modifier] = ACTIONS(4025), - [anon_sym_abstract] = ACTIONS(4025), - [anon_sym_final] = ACTIONS(4025), - [anon_sym_open] = ACTIONS(4025), - [anon_sym_vararg] = ACTIONS(4025), - [anon_sym_noinline] = ACTIONS(4025), - [anon_sym_crossinline] = ACTIONS(4025), - [anon_sym_expect] = ACTIONS(4027), - [anon_sym_actual] = ACTIONS(4027), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4015), - [sym__automatic_semicolon] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2829] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4012), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_typealias] = ACTIONS(4017), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4017), - [anon_sym_fun] = ACTIONS(4017), - [anon_sym_interface] = ACTIONS(4017), - [anon_sym_enum] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_val] = ACTIONS(4017), - [anon_sym_var] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4017), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4015), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4017), - [anon_sym_sealed] = ACTIONS(4017), - [anon_sym_annotation] = ACTIONS(4017), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_value] = ACTIONS(4019), - [anon_sym_override] = ACTIONS(4017), - [anon_sym_lateinit] = ACTIONS(4017), - [anon_sym_public] = ACTIONS(4017), - [anon_sym_private] = ACTIONS(4017), - [anon_sym_internal] = ACTIONS(4017), - [anon_sym_protected] = ACTIONS(4017), - [anon_sym_tailrec] = ACTIONS(4017), - [anon_sym_operator] = ACTIONS(4017), - [anon_sym_infix] = ACTIONS(4017), - [anon_sym_inline] = ACTIONS(4017), - [anon_sym_external] = ACTIONS(4017), - [sym_property_modifier] = ACTIONS(4017), - [anon_sym_abstract] = ACTIONS(4017), - [anon_sym_final] = ACTIONS(4017), - [anon_sym_open] = ACTIONS(4017), - [anon_sym_vararg] = ACTIONS(4017), - [anon_sym_noinline] = ACTIONS(4017), - [anon_sym_crossinline] = ACTIONS(4017), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4015), - [sym__automatic_semicolon] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - }, - [2830] = { - [sym_property_delegate] = STATE(3037), - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6518), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6462), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(5213), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2793] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -348968,72 +343880,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2831] = { - [sym_property_delegate] = STATE(3039), - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(6514), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_by] = ACTIONS(6462), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4806), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2794] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4417), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -349058,46 +343969,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2832] = { - [sym_property_delegate] = STATE(3033), - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2795] = { + [sym_annotated_lambda] = STATE(3438), + [sym_lambda_literal] = STATE(3370), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_DASH_GT] = ACTIONS(4002), + [sym_label] = ACTIONS(4002), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_while] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + }, + [2796] = { + [aux_sym_user_type_repeat1] = STATE(2807), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_object] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6436), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_this] = ACTIONS(4193), + [anon_sym_super] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4193), + [sym__quest] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [sym_label] = ACTIONS(4193), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_when] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_throw] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4195), + [anon_sym_continue_AT] = ACTIONS(4195), + [anon_sym_break_AT] = ACTIONS(4195), + [anon_sym_this_AT] = ACTIONS(4195), + [anon_sym_super_AT] = ACTIONS(4195), + [sym_real_literal] = ACTIONS(4195), + [sym_integer_literal] = ACTIONS(4193), + [sym_hex_literal] = ACTIONS(4195), + [sym_bin_literal] = ACTIONS(4195), + [anon_sym_true] = ACTIONS(4193), + [anon_sym_false] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4195), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4195), + }, + [2797] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6508), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6462), + [anon_sym_COMMA] = ACTIONS(3346), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6510), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), [anon_sym_STAR] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), @@ -349148,71 +344236,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2833] = { - [sym_getter] = STATE(3962), - [sym_setter] = STATE(3962), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(3438), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3438), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [2798] = { + [sym_type_constraints] = STATE(2911), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6439), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [2799] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -349237,71 +344414,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2834] = { - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2800] = { + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -349326,32 +344503,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2835] = { - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2801] = { + [sym_getter] = STATE(4018), + [sym_setter] = STATE(4018), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + }, + [2802] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), @@ -349362,9 +344628,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(3344), [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), + [anon_sym_SEMI] = ACTIONS(6242), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), [anon_sym_STAR] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), @@ -349415,516 +344681,516 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2836] = { - [aux_sym_user_type_repeat1] = STATE(2838), - [sym__alpha_identifier] = ACTIONS(4202), - [anon_sym_AT] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_as] = ACTIONS(4202), - [anon_sym_EQ] = ACTIONS(4202), - [anon_sym_fun] = ACTIONS(4202), - [anon_sym_LBRACE] = ACTIONS(4204), - [anon_sym_RBRACE] = ACTIONS(4204), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym_COMMA] = ACTIONS(4204), - [anon_sym_by] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4202), - [anon_sym_GT] = ACTIONS(4202), - [anon_sym_where] = ACTIONS(4202), - [anon_sym_object] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(6534), - [anon_sym_SEMI] = ACTIONS(4204), - [anon_sym_get] = ACTIONS(4202), - [anon_sym_set] = ACTIONS(4202), - [anon_sym_this] = ACTIONS(4202), - [anon_sym_super] = ACTIONS(4202), - [anon_sym_AMP] = ACTIONS(4202), - [sym__quest] = ACTIONS(4202), - [anon_sym_STAR] = ACTIONS(4202), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4202), - [anon_sym_DOT_DOT] = ACTIONS(4204), - [anon_sym_QMARK_COLON] = ACTIONS(4204), - [anon_sym_AMP_AMP] = ACTIONS(4204), - [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), - [anon_sym_if] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4202), - [anon_sym_when] = ACTIONS(4202), - [anon_sym_try] = ACTIONS(4202), - [anon_sym_throw] = ACTIONS(4202), - [anon_sym_return] = ACTIONS(4202), - [anon_sym_continue] = ACTIONS(4202), - [anon_sym_break] = ACTIONS(4202), - [anon_sym_COLON_COLON] = ACTIONS(4204), - [anon_sym_PLUS_EQ] = ACTIONS(4204), - [anon_sym_DASH_EQ] = ACTIONS(4204), - [anon_sym_STAR_EQ] = ACTIONS(4204), - [anon_sym_SLASH_EQ] = ACTIONS(4204), - [anon_sym_PERCENT_EQ] = ACTIONS(4204), - [anon_sym_BANG_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), - [anon_sym_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), - [anon_sym_LT_EQ] = ACTIONS(4204), - [anon_sym_GT_EQ] = ACTIONS(4204), - [anon_sym_BANGin] = ACTIONS(4204), - [anon_sym_is] = ACTIONS(4202), - [anon_sym_BANGis] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4202), - [anon_sym_DASH] = ACTIONS(4202), - [anon_sym_SLASH] = ACTIONS(4202), - [anon_sym_PERCENT] = ACTIONS(4202), - [anon_sym_as_QMARK] = ACTIONS(4204), - [anon_sym_PLUS_PLUS] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4204), - [anon_sym_BANG] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4204), - [anon_sym_data] = ACTIONS(4202), - [anon_sym_inner] = ACTIONS(4202), - [anon_sym_value] = ACTIONS(4202), - [anon_sym_expect] = ACTIONS(4202), - [anon_sym_actual] = ACTIONS(4202), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4204), - [anon_sym_continue_AT] = ACTIONS(4204), - [anon_sym_break_AT] = ACTIONS(4204), - [anon_sym_this_AT] = ACTIONS(4204), - [anon_sym_super_AT] = ACTIONS(4204), - [sym_real_literal] = ACTIONS(4204), - [sym_integer_literal] = ACTIONS(4202), - [sym_hex_literal] = ACTIONS(4204), - [sym_bin_literal] = ACTIONS(4204), - [anon_sym_true] = ACTIONS(4202), - [anon_sym_false] = ACTIONS(4202), - [anon_sym_SQUOTE] = ACTIONS(4204), - [sym__backtick_identifier] = ACTIONS(4204), - [sym__automatic_semicolon] = ACTIONS(4204), - [sym_safe_nav] = ACTIONS(4204), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4204), + [2803] = { + [sym_type_arguments] = STATE(2821), + [sym__alpha_identifier] = ACTIONS(4128), + [anon_sym_AT] = ACTIONS(4189), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_as] = ACTIONS(4128), + [anon_sym_EQ] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_RBRACE] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_COMMA] = ACTIONS(4189), + [anon_sym_by] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(6441), + [anon_sym_GT] = ACTIONS(4128), + [anon_sym_where] = ACTIONS(4128), + [anon_sym_object] = ACTIONS(4128), + [anon_sym_fun] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4189), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4128), + [anon_sym_this] = ACTIONS(4128), + [anon_sym_super] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4128), + [sym__quest] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4128), + [sym_label] = ACTIONS(4128), + [anon_sym_in] = ACTIONS(4128), + [anon_sym_DOT_DOT] = ACTIONS(4189), + [anon_sym_QMARK_COLON] = ACTIONS(4189), + [anon_sym_AMP_AMP] = ACTIONS(4189), + [anon_sym_PIPE_PIPE] = ACTIONS(4189), + [anon_sym_null] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(4128), + [anon_sym_else] = ACTIONS(4128), + [anon_sym_when] = ACTIONS(4128), + [anon_sym_try] = ACTIONS(4128), + [anon_sym_throw] = ACTIONS(4128), + [anon_sym_return] = ACTIONS(4128), + [anon_sym_continue] = ACTIONS(4128), + [anon_sym_break] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4189), + [anon_sym_PLUS_EQ] = ACTIONS(4189), + [anon_sym_DASH_EQ] = ACTIONS(4189), + [anon_sym_STAR_EQ] = ACTIONS(4189), + [anon_sym_SLASH_EQ] = ACTIONS(4189), + [anon_sym_PERCENT_EQ] = ACTIONS(4189), + [anon_sym_BANG_EQ] = ACTIONS(4128), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), + [anon_sym_EQ_EQ] = ACTIONS(4128), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), + [anon_sym_LT_EQ] = ACTIONS(4189), + [anon_sym_GT_EQ] = ACTIONS(4189), + [anon_sym_BANGin] = ACTIONS(4189), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4189), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_SLASH] = ACTIONS(4128), + [anon_sym_PERCENT] = ACTIONS(4128), + [anon_sym_as_QMARK] = ACTIONS(4189), + [anon_sym_PLUS_PLUS] = ACTIONS(4189), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_BANG] = ACTIONS(4128), + [anon_sym_BANG_BANG] = ACTIONS(4189), + [anon_sym_data] = ACTIONS(4128), + [anon_sym_inner] = ACTIONS(4128), + [anon_sym_value] = ACTIONS(4128), + [anon_sym_expect] = ACTIONS(4128), + [anon_sym_actual] = ACTIONS(4128), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4189), + [anon_sym_continue_AT] = ACTIONS(4189), + [anon_sym_break_AT] = ACTIONS(4189), + [anon_sym_this_AT] = ACTIONS(4189), + [anon_sym_super_AT] = ACTIONS(4189), + [sym_real_literal] = ACTIONS(4189), + [sym_integer_literal] = ACTIONS(4128), + [sym_hex_literal] = ACTIONS(4189), + [sym_bin_literal] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4189), + [sym__backtick_identifier] = ACTIONS(4189), + [sym__automatic_semicolon] = ACTIONS(4189), + [sym_safe_nav] = ACTIONS(4189), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4189), }, - [2837] = { - [aux_sym_user_type_repeat1] = STATE(2836), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_fun] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_COMMA] = ACTIONS(4227), - [anon_sym_by] = ACTIONS(4225), - [anon_sym_LT] = ACTIONS(4225), - [anon_sym_GT] = ACTIONS(4225), - [anon_sym_where] = ACTIONS(4225), - [anon_sym_object] = ACTIONS(4225), - [anon_sym_DOT] = ACTIONS(6537), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [anon_sym_this] = ACTIONS(4225), - [anon_sym_super] = ACTIONS(4225), - [anon_sym_AMP] = ACTIONS(4225), - [sym__quest] = ACTIONS(4225), - [anon_sym_STAR] = ACTIONS(4225), - [sym_label] = ACTIONS(4225), - [anon_sym_in] = ACTIONS(4225), - [anon_sym_DOT_DOT] = ACTIONS(4227), - [anon_sym_QMARK_COLON] = ACTIONS(4227), - [anon_sym_AMP_AMP] = ACTIONS(4227), - [anon_sym_PIPE_PIPE] = ACTIONS(4227), - [anon_sym_null] = ACTIONS(4225), - [anon_sym_if] = ACTIONS(4225), - [anon_sym_else] = ACTIONS(4225), - [anon_sym_when] = ACTIONS(4225), - [anon_sym_try] = ACTIONS(4225), - [anon_sym_throw] = ACTIONS(4225), - [anon_sym_return] = ACTIONS(4225), - [anon_sym_continue] = ACTIONS(4225), - [anon_sym_break] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_PLUS_EQ] = ACTIONS(4227), - [anon_sym_DASH_EQ] = ACTIONS(4227), - [anon_sym_STAR_EQ] = ACTIONS(4227), - [anon_sym_SLASH_EQ] = ACTIONS(4227), - [anon_sym_PERCENT_EQ] = ACTIONS(4227), - [anon_sym_BANG_EQ] = ACTIONS(4225), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4227), - [anon_sym_EQ_EQ] = ACTIONS(4225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4227), - [anon_sym_LT_EQ] = ACTIONS(4227), - [anon_sym_GT_EQ] = ACTIONS(4227), - [anon_sym_BANGin] = ACTIONS(4227), - [anon_sym_is] = ACTIONS(4225), - [anon_sym_BANGis] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_SLASH] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_as_QMARK] = ACTIONS(4227), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG] = ACTIONS(4225), - [anon_sym_BANG_BANG] = ACTIONS(4227), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4227), - [anon_sym_continue_AT] = ACTIONS(4227), - [anon_sym_break_AT] = ACTIONS(4227), - [anon_sym_this_AT] = ACTIONS(4227), - [anon_sym_super_AT] = ACTIONS(4227), - [sym_real_literal] = ACTIONS(4227), - [sym_integer_literal] = ACTIONS(4225), - [sym_hex_literal] = ACTIONS(4227), - [sym_bin_literal] = ACTIONS(4227), - [anon_sym_true] = ACTIONS(4225), - [anon_sym_false] = ACTIONS(4225), - [anon_sym_SQUOTE] = ACTIONS(4227), - [sym__backtick_identifier] = ACTIONS(4227), - [sym__automatic_semicolon] = ACTIONS(4227), - [sym_safe_nav] = ACTIONS(4227), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4227), + [2804] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), }, - [2838] = { - [aux_sym_user_type_repeat1] = STATE(2838), - [sym__alpha_identifier] = ACTIONS(4189), - [anon_sym_AT] = ACTIONS(4191), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_as] = ACTIONS(4189), - [anon_sym_EQ] = ACTIONS(4189), - [anon_sym_fun] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_by] = ACTIONS(4189), - [anon_sym_LT] = ACTIONS(4189), - [anon_sym_GT] = ACTIONS(4189), - [anon_sym_where] = ACTIONS(4189), - [anon_sym_object] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(6540), - [anon_sym_SEMI] = ACTIONS(4191), - [anon_sym_get] = ACTIONS(4189), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_this] = ACTIONS(4189), - [anon_sym_super] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [sym__quest] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [sym_label] = ACTIONS(4189), - [anon_sym_in] = ACTIONS(4189), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_QMARK_COLON] = ACTIONS(4191), - [anon_sym_AMP_AMP] = ACTIONS(4191), - [anon_sym_PIPE_PIPE] = ACTIONS(4191), - [anon_sym_null] = ACTIONS(4189), - [anon_sym_if] = ACTIONS(4189), - [anon_sym_else] = ACTIONS(4189), - [anon_sym_when] = ACTIONS(4189), - [anon_sym_try] = ACTIONS(4189), - [anon_sym_throw] = ACTIONS(4189), - [anon_sym_return] = ACTIONS(4189), - [anon_sym_continue] = ACTIONS(4189), - [anon_sym_break] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(4191), - [anon_sym_PLUS_EQ] = ACTIONS(4191), - [anon_sym_DASH_EQ] = ACTIONS(4191), - [anon_sym_STAR_EQ] = ACTIONS(4191), - [anon_sym_SLASH_EQ] = ACTIONS(4191), - [anon_sym_PERCENT_EQ] = ACTIONS(4191), - [anon_sym_BANG_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4191), - [anon_sym_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4191), - [anon_sym_LT_EQ] = ACTIONS(4191), - [anon_sym_GT_EQ] = ACTIONS(4191), - [anon_sym_BANGin] = ACTIONS(4191), - [anon_sym_is] = ACTIONS(4189), - [anon_sym_BANGis] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_SLASH] = ACTIONS(4189), - [anon_sym_PERCENT] = ACTIONS(4189), - [anon_sym_as_QMARK] = ACTIONS(4191), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_BANG_BANG] = ACTIONS(4191), - [anon_sym_data] = ACTIONS(4189), - [anon_sym_inner] = ACTIONS(4189), - [anon_sym_value] = ACTIONS(4189), - [anon_sym_expect] = ACTIONS(4189), - [anon_sym_actual] = ACTIONS(4189), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4191), - [anon_sym_continue_AT] = ACTIONS(4191), - [anon_sym_break_AT] = ACTIONS(4191), - [anon_sym_this_AT] = ACTIONS(4191), - [anon_sym_super_AT] = ACTIONS(4191), - [sym_real_literal] = ACTIONS(4191), - [sym_integer_literal] = ACTIONS(4189), - [sym_hex_literal] = ACTIONS(4191), - [sym_bin_literal] = ACTIONS(4191), - [anon_sym_true] = ACTIONS(4189), - [anon_sym_false] = ACTIONS(4189), - [anon_sym_SQUOTE] = ACTIONS(4191), - [sym__backtick_identifier] = ACTIONS(4191), - [sym__automatic_semicolon] = ACTIONS(4191), - [sym_safe_nav] = ACTIONS(4191), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4191), + [2805] = { + [sym_type_constraints] = STATE(2920), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(6443), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [2839] = { - [sym_type_constraints] = STATE(3003), - [sym_function_body] = STATE(3278), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(6543), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_COMMA] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4209), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_this] = ACTIONS(4209), - [anon_sym_super] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4209), - [sym_label] = ACTIONS(4209), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_if] = ACTIONS(4209), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_when] = ACTIONS(4209), - [anon_sym_try] = ACTIONS(4209), - [anon_sym_throw] = ACTIONS(4209), - [anon_sym_return] = ACTIONS(4209), - [anon_sym_continue] = ACTIONS(4209), - [anon_sym_break] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_PLUS_EQ] = ACTIONS(4211), - [anon_sym_DASH_EQ] = ACTIONS(4211), - [anon_sym_STAR_EQ] = ACTIONS(4211), - [anon_sym_SLASH_EQ] = ACTIONS(4211), - [anon_sym_PERCENT_EQ] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4209), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG] = ACTIONS(4209), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4211), - [anon_sym_continue_AT] = ACTIONS(4211), - [anon_sym_break_AT] = ACTIONS(4211), - [anon_sym_this_AT] = ACTIONS(4211), - [anon_sym_super_AT] = ACTIONS(4211), - [sym_real_literal] = ACTIONS(4211), - [sym_integer_literal] = ACTIONS(4209), - [sym_hex_literal] = ACTIONS(4211), - [sym_bin_literal] = ACTIONS(4211), - [anon_sym_true] = ACTIONS(4209), - [anon_sym_false] = ACTIONS(4209), - [anon_sym_SQUOTE] = ACTIONS(4211), - [sym__backtick_identifier] = ACTIONS(4211), - [sym__automatic_semicolon] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4211), + [2806] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), }, - [2840] = { - [sym_type_arguments] = STATE(2927), - [sym__alpha_identifier] = ACTIONS(4177), - [anon_sym_AT] = ACTIONS(4179), - [anon_sym_LBRACK] = ACTIONS(4179), - [anon_sym_as] = ACTIONS(4177), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_fun] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4179), - [anon_sym_RBRACE] = ACTIONS(4179), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_COMMA] = ACTIONS(4179), - [anon_sym_by] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(6549), - [anon_sym_GT] = ACTIONS(4177), - [anon_sym_where] = ACTIONS(4177), - [anon_sym_object] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4177), - [anon_sym_SEMI] = ACTIONS(4179), - [anon_sym_get] = ACTIONS(4177), - [anon_sym_set] = ACTIONS(4177), - [anon_sym_this] = ACTIONS(4177), - [anon_sym_super] = ACTIONS(4177), - [anon_sym_AMP] = ACTIONS(4177), - [sym__quest] = ACTIONS(4177), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4177), - [anon_sym_DOT_DOT] = ACTIONS(4179), - [anon_sym_QMARK_COLON] = ACTIONS(4179), - [anon_sym_AMP_AMP] = ACTIONS(4179), - [anon_sym_PIPE_PIPE] = ACTIONS(4179), - [anon_sym_null] = ACTIONS(4177), - [anon_sym_if] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4177), - [anon_sym_when] = ACTIONS(4177), - [anon_sym_try] = ACTIONS(4177), - [anon_sym_throw] = ACTIONS(4177), - [anon_sym_return] = ACTIONS(4177), - [anon_sym_continue] = ACTIONS(4177), - [anon_sym_break] = ACTIONS(4177), - [anon_sym_COLON_COLON] = ACTIONS(4179), - [anon_sym_PLUS_EQ] = ACTIONS(4179), - [anon_sym_DASH_EQ] = ACTIONS(4179), - [anon_sym_STAR_EQ] = ACTIONS(4179), - [anon_sym_SLASH_EQ] = ACTIONS(4179), - [anon_sym_PERCENT_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), - [anon_sym_LT_EQ] = ACTIONS(4179), - [anon_sym_GT_EQ] = ACTIONS(4179), - [anon_sym_BANGin] = ACTIONS(4179), - [anon_sym_is] = ACTIONS(4177), - [anon_sym_BANGis] = ACTIONS(4179), - [anon_sym_PLUS] = ACTIONS(4177), - [anon_sym_DASH] = ACTIONS(4177), - [anon_sym_SLASH] = ACTIONS(4177), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4179), - [anon_sym_PLUS_PLUS] = ACTIONS(4179), - [anon_sym_DASH_DASH] = ACTIONS(4179), - [anon_sym_BANG] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4177), - [anon_sym_inner] = ACTIONS(4177), - [anon_sym_value] = ACTIONS(4177), - [anon_sym_expect] = ACTIONS(4177), - [anon_sym_actual] = ACTIONS(4177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4179), - [anon_sym_continue_AT] = ACTIONS(4179), - [anon_sym_break_AT] = ACTIONS(4179), - [anon_sym_this_AT] = ACTIONS(4179), - [anon_sym_super_AT] = ACTIONS(4179), - [sym_real_literal] = ACTIONS(4179), - [sym_integer_literal] = ACTIONS(4177), - [sym_hex_literal] = ACTIONS(4179), - [sym_bin_literal] = ACTIONS(4179), - [anon_sym_true] = ACTIONS(4177), - [anon_sym_false] = ACTIONS(4177), - [anon_sym_SQUOTE] = ACTIONS(4179), - [sym__backtick_identifier] = ACTIONS(4179), - [sym__automatic_semicolon] = ACTIONS(4179), - [sym_safe_nav] = ACTIONS(4179), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4179), + [2807] = { + [aux_sym_user_type_repeat1] = STATE(2810), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_by] = ACTIONS(4153), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(4153), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_fun] = ACTIONS(4153), + [anon_sym_DOT] = ACTIONS(6445), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_this] = ACTIONS(4153), + [anon_sym_super] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4153), + [sym__quest] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4153), + [sym_label] = ACTIONS(4153), + [anon_sym_in] = ACTIONS(4153), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_QMARK_COLON] = ACTIONS(4155), + [anon_sym_AMP_AMP] = ACTIONS(4155), + [anon_sym_PIPE_PIPE] = ACTIONS(4155), + [anon_sym_null] = ACTIONS(4153), + [anon_sym_if] = ACTIONS(4153), + [anon_sym_else] = ACTIONS(4153), + [anon_sym_when] = ACTIONS(4153), + [anon_sym_try] = ACTIONS(4153), + [anon_sym_throw] = ACTIONS(4153), + [anon_sym_return] = ACTIONS(4153), + [anon_sym_continue] = ACTIONS(4153), + [anon_sym_break] = ACTIONS(4153), + [anon_sym_COLON_COLON] = ACTIONS(4155), + [anon_sym_PLUS_EQ] = ACTIONS(4155), + [anon_sym_DASH_EQ] = ACTIONS(4155), + [anon_sym_STAR_EQ] = ACTIONS(4155), + [anon_sym_SLASH_EQ] = ACTIONS(4155), + [anon_sym_PERCENT_EQ] = ACTIONS(4155), + [anon_sym_BANG_EQ] = ACTIONS(4153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4155), + [anon_sym_EQ_EQ] = ACTIONS(4153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4155), + [anon_sym_LT_EQ] = ACTIONS(4155), + [anon_sym_GT_EQ] = ACTIONS(4155), + [anon_sym_BANGin] = ACTIONS(4155), + [anon_sym_is] = ACTIONS(4153), + [anon_sym_BANGis] = ACTIONS(4155), + [anon_sym_PLUS] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_SLASH] = ACTIONS(4153), + [anon_sym_PERCENT] = ACTIONS(4153), + [anon_sym_as_QMARK] = ACTIONS(4155), + [anon_sym_PLUS_PLUS] = ACTIONS(4155), + [anon_sym_DASH_DASH] = ACTIONS(4155), + [anon_sym_BANG] = ACTIONS(4153), + [anon_sym_BANG_BANG] = ACTIONS(4155), + [anon_sym_data] = ACTIONS(4153), + [anon_sym_inner] = ACTIONS(4153), + [anon_sym_value] = ACTIONS(4153), + [anon_sym_expect] = ACTIONS(4153), + [anon_sym_actual] = ACTIONS(4153), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4155), + [anon_sym_continue_AT] = ACTIONS(4155), + [anon_sym_break_AT] = ACTIONS(4155), + [anon_sym_this_AT] = ACTIONS(4155), + [anon_sym_super_AT] = ACTIONS(4155), + [sym_real_literal] = ACTIONS(4155), + [sym_integer_literal] = ACTIONS(4153), + [sym_hex_literal] = ACTIONS(4155), + [sym_bin_literal] = ACTIONS(4155), + [anon_sym_true] = ACTIONS(4153), + [anon_sym_false] = ACTIONS(4153), + [anon_sym_SQUOTE] = ACTIONS(4155), + [sym__backtick_identifier] = ACTIONS(4155), + [sym__automatic_semicolon] = ACTIONS(4155), + [sym_safe_nav] = ACTIONS(4155), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4155), }, - [2841] = { - [sym_getter] = STATE(5259), - [sym_setter] = STATE(5259), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(1802), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), + [2808] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4419), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -349949,300 +345215,474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2842] = { - [sym_type_constraints] = STATE(3005), - [sym_function_body] = STATE(3314), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6551), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [2809] = { + [sym_catch_block] = STATE(2809), + [aux_sym_try_expression_repeat1] = STATE(2809), + [sym__alpha_identifier] = ACTIONS(4130), + [anon_sym_AT] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_as] = ACTIONS(4130), + [anon_sym_EQ] = ACTIONS(4130), + [anon_sym_LBRACE] = ACTIONS(4132), + [anon_sym_RBRACE] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4132), + [anon_sym_COMMA] = ACTIONS(4132), + [anon_sym_LT] = ACTIONS(4130), + [anon_sym_GT] = ACTIONS(4130), + [anon_sym_where] = ACTIONS(4130), + [anon_sym_object] = ACTIONS(4130), + [anon_sym_fun] = ACTIONS(4130), + [anon_sym_DOT] = ACTIONS(4130), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4130), + [anon_sym_set] = ACTIONS(4130), + [anon_sym_this] = ACTIONS(4130), + [anon_sym_super] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4130), + [sym_label] = ACTIONS(4130), + [anon_sym_in] = ACTIONS(4130), + [anon_sym_DOT_DOT] = ACTIONS(4132), + [anon_sym_QMARK_COLON] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_PIPE_PIPE] = ACTIONS(4132), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_if] = ACTIONS(4130), + [anon_sym_else] = ACTIONS(4130), + [anon_sym_when] = ACTIONS(4130), + [anon_sym_try] = ACTIONS(4130), + [anon_sym_catch] = ACTIONS(6448), + [anon_sym_finally] = ACTIONS(4130), + [anon_sym_throw] = ACTIONS(4130), + [anon_sym_return] = ACTIONS(4130), + [anon_sym_continue] = ACTIONS(4130), + [anon_sym_break] = ACTIONS(4130), + [anon_sym_COLON_COLON] = ACTIONS(4132), + [anon_sym_PLUS_EQ] = ACTIONS(4132), + [anon_sym_DASH_EQ] = ACTIONS(4132), + [anon_sym_STAR_EQ] = ACTIONS(4132), + [anon_sym_SLASH_EQ] = ACTIONS(4132), + [anon_sym_PERCENT_EQ] = ACTIONS(4132), + [anon_sym_BANG_EQ] = ACTIONS(4130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4132), + [anon_sym_EQ_EQ] = ACTIONS(4130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4132), + [anon_sym_LT_EQ] = ACTIONS(4132), + [anon_sym_GT_EQ] = ACTIONS(4132), + [anon_sym_BANGin] = ACTIONS(4132), + [anon_sym_is] = ACTIONS(4130), + [anon_sym_BANGis] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_SLASH] = ACTIONS(4130), + [anon_sym_PERCENT] = ACTIONS(4130), + [anon_sym_as_QMARK] = ACTIONS(4132), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_BANG] = ACTIONS(4130), + [anon_sym_BANG_BANG] = ACTIONS(4132), + [anon_sym_data] = ACTIONS(4130), + [anon_sym_inner] = ACTIONS(4130), + [anon_sym_value] = ACTIONS(4130), + [anon_sym_expect] = ACTIONS(4130), + [anon_sym_actual] = ACTIONS(4130), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4132), + [anon_sym_continue_AT] = ACTIONS(4132), + [anon_sym_break_AT] = ACTIONS(4132), + [anon_sym_this_AT] = ACTIONS(4132), + [anon_sym_super_AT] = ACTIONS(4132), + [sym_real_literal] = ACTIONS(4132), + [sym_integer_literal] = ACTIONS(4130), + [sym_hex_literal] = ACTIONS(4132), + [sym_bin_literal] = ACTIONS(4132), + [anon_sym_true] = ACTIONS(4130), + [anon_sym_false] = ACTIONS(4130), + [anon_sym_SQUOTE] = ACTIONS(4132), + [sym__backtick_identifier] = ACTIONS(4132), + [sym__automatic_semicolon] = ACTIONS(4132), + [sym_safe_nav] = ACTIONS(4132), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4132), }, - [2843] = { - [sym_type_constraints] = STATE(3008), - [sym_function_body] = STATE(3354), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(6553), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [2810] = { + [aux_sym_user_type_repeat1] = STATE(2810), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(6451), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), }, - [2844] = { - [sym_type_constraints] = STATE(3011), - [sym_function_body] = STATE(3192), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(6555), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), + [2811] = { + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_object] = ACTIONS(4237), + [anon_sym_fun] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_this] = ACTIONS(4237), + [anon_sym_super] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6454), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [sym_label] = ACTIONS(4237), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_null] = ACTIONS(4237), + [anon_sym_if] = ACTIONS(4237), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_when] = ACTIONS(4237), + [anon_sym_try] = ACTIONS(4237), + [anon_sym_throw] = ACTIONS(4237), + [anon_sym_return] = ACTIONS(4237), + [anon_sym_continue] = ACTIONS(4237), + [anon_sym_break] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4239), + [anon_sym_continue_AT] = ACTIONS(4239), + [anon_sym_break_AT] = ACTIONS(4239), + [anon_sym_this_AT] = ACTIONS(4239), + [anon_sym_super_AT] = ACTIONS(4239), + [sym_real_literal] = ACTIONS(4239), + [sym_integer_literal] = ACTIONS(4237), + [sym_hex_literal] = ACTIONS(4239), + [sym_bin_literal] = ACTIONS(4239), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4239), + [sym__backtick_identifier] = ACTIONS(4239), + [sym__automatic_semicolon] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4239), }, - [2845] = { - [sym_type_constraints] = STATE(3015), - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3335), + [2812] = { + [aux_sym_nullable_type_repeat1] = STATE(2838), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_by] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_object] = ACTIONS(4303), + [anon_sym_fun] = ACTIONS(4303), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_this] = ACTIONS(4303), + [anon_sym_super] = ACTIONS(4303), + [sym__quest] = ACTIONS(6456), + [anon_sym_STAR] = ACTIONS(4303), + [sym_label] = ACTIONS(4303), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_DOT_DOT] = ACTIONS(4305), + [anon_sym_QMARK_COLON] = ACTIONS(4305), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4305), + [anon_sym_null] = ACTIONS(4303), + [anon_sym_if] = ACTIONS(4303), + [anon_sym_else] = ACTIONS(4303), + [anon_sym_when] = ACTIONS(4303), + [anon_sym_try] = ACTIONS(4303), + [anon_sym_throw] = ACTIONS(4303), + [anon_sym_return] = ACTIONS(4303), + [anon_sym_continue] = ACTIONS(4303), + [anon_sym_break] = ACTIONS(4303), + [anon_sym_COLON_COLON] = ACTIONS(4305), + [anon_sym_PLUS_EQ] = ACTIONS(4305), + [anon_sym_DASH_EQ] = ACTIONS(4305), + [anon_sym_STAR_EQ] = ACTIONS(4305), + [anon_sym_SLASH_EQ] = ACTIONS(4305), + [anon_sym_PERCENT_EQ] = ACTIONS(4305), + [anon_sym_BANG_EQ] = ACTIONS(4303), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4305), + [anon_sym_EQ_EQ] = ACTIONS(4303), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4305), + [anon_sym_LT_EQ] = ACTIONS(4305), + [anon_sym_GT_EQ] = ACTIONS(4305), + [anon_sym_BANGin] = ACTIONS(4305), + [anon_sym_is] = ACTIONS(4303), + [anon_sym_BANGis] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_as_QMARK] = ACTIONS(4305), + [anon_sym_PLUS_PLUS] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_BANG_BANG] = ACTIONS(4305), + [anon_sym_data] = ACTIONS(4303), + [anon_sym_inner] = ACTIONS(4303), + [anon_sym_value] = ACTIONS(4303), + [anon_sym_expect] = ACTIONS(4303), + [anon_sym_actual] = ACTIONS(4303), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4305), + [anon_sym_continue_AT] = ACTIONS(4305), + [anon_sym_break_AT] = ACTIONS(4305), + [anon_sym_this_AT] = ACTIONS(4305), + [anon_sym_super_AT] = ACTIONS(4305), + [sym_real_literal] = ACTIONS(4305), + [sym_integer_literal] = ACTIONS(4303), + [sym_hex_literal] = ACTIONS(4305), + [sym_bin_literal] = ACTIONS(4305), + [anon_sym_true] = ACTIONS(4303), + [anon_sym_false] = ACTIONS(4303), + [anon_sym_SQUOTE] = ACTIONS(4305), + [sym__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4305), + }, + [2813] = { + [sym__alpha_identifier] = ACTIONS(4313), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_as] = ACTIONS(4313), + [anon_sym_EQ] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_RBRACE] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_COMMA] = ACTIONS(4315), + [anon_sym_by] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4313), + [anon_sym_GT] = ACTIONS(4313), + [anon_sym_where] = ACTIONS(4313), + [anon_sym_object] = ACTIONS(4313), + [anon_sym_fun] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym_get] = ACTIONS(4313), + [anon_sym_set] = ACTIONS(4313), + [anon_sym_this] = ACTIONS(4313), + [anon_sym_super] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4313), + [sym__quest] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4313), + [sym_label] = ACTIONS(4313), + [anon_sym_in] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_QMARK_COLON] = ACTIONS(4315), + [anon_sym_AMP_AMP] = ACTIONS(4315), + [anon_sym_PIPE_PIPE] = ACTIONS(4315), + [anon_sym_null] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4313), + [anon_sym_else] = ACTIONS(4313), + [anon_sym_when] = ACTIONS(4313), + [anon_sym_try] = ACTIONS(4313), + [anon_sym_throw] = ACTIONS(4313), + [anon_sym_return] = ACTIONS(4313), + [anon_sym_continue] = ACTIONS(4313), + [anon_sym_break] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_PLUS_EQ] = ACTIONS(4315), + [anon_sym_DASH_EQ] = ACTIONS(4315), + [anon_sym_STAR_EQ] = ACTIONS(4315), + [anon_sym_SLASH_EQ] = ACTIONS(4315), + [anon_sym_PERCENT_EQ] = ACTIONS(4315), + [anon_sym_BANG_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4315), + [anon_sym_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4315), + [anon_sym_LT_EQ] = ACTIONS(4315), + [anon_sym_GT_EQ] = ACTIONS(4315), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(4313), + [anon_sym_BANGis] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_SLASH] = ACTIONS(4313), + [anon_sym_PERCENT] = ACTIONS(4313), + [anon_sym_as_QMARK] = ACTIONS(4315), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(4313), + [anon_sym_BANG_BANG] = ACTIONS(4315), + [anon_sym_data] = ACTIONS(4313), + [anon_sym_inner] = ACTIONS(4313), + [anon_sym_value] = ACTIONS(4313), + [anon_sym_expect] = ACTIONS(4313), + [anon_sym_actual] = ACTIONS(4313), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4315), + [anon_sym_continue_AT] = ACTIONS(4315), + [anon_sym_break_AT] = ACTIONS(4315), + [anon_sym_this_AT] = ACTIONS(4315), + [anon_sym_super_AT] = ACTIONS(4315), + [sym_real_literal] = ACTIONS(4315), + [sym_integer_literal] = ACTIONS(4313), + [sym_hex_literal] = ACTIONS(4315), + [sym_bin_literal] = ACTIONS(4315), + [anon_sym_true] = ACTIONS(4313), + [anon_sym_false] = ACTIONS(4313), + [anon_sym_SQUOTE] = ACTIONS(4315), + [sym__backtick_identifier] = ACTIONS(4315), + [sym__automatic_semicolon] = ACTIONS(4315), + [sym_safe_nav] = ACTIONS(4315), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4315), + }, + [2814] = { + [sym_type_constraints] = STATE(3158), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(6557), + [anon_sym_COLON] = ACTIONS(6458), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(6547), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(3260), + [anon_sym_where] = ACTIONS(3256), [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), @@ -350313,63 +345753,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4185), }, - [2846] = { - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6424), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2815] = { + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -350394,71 +345834,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2847] = { - [sym_getter] = STATE(5227), - [sym_setter] = STATE(5227), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(3438), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3438), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [2816] = { + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_by] = ACTIONS(4317), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(4317), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_this] = ACTIONS(4317), + [anon_sym_super] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(4317), + [sym__quest] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4317), + [sym_label] = ACTIONS(4317), + [anon_sym_in] = ACTIONS(4317), + [anon_sym_DOT_DOT] = ACTIONS(4319), + [anon_sym_QMARK_COLON] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_PIPE_PIPE] = ACTIONS(4319), + [anon_sym_null] = ACTIONS(4317), + [anon_sym_if] = ACTIONS(4317), + [anon_sym_else] = ACTIONS(4317), + [anon_sym_when] = ACTIONS(4317), + [anon_sym_try] = ACTIONS(4317), + [anon_sym_throw] = ACTIONS(4317), + [anon_sym_return] = ACTIONS(4317), + [anon_sym_continue] = ACTIONS(4317), + [anon_sym_break] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_PLUS_EQ] = ACTIONS(4319), + [anon_sym_DASH_EQ] = ACTIONS(4319), + [anon_sym_STAR_EQ] = ACTIONS(4319), + [anon_sym_SLASH_EQ] = ACTIONS(4319), + [anon_sym_PERCENT_EQ] = ACTIONS(4319), + [anon_sym_BANG_EQ] = ACTIONS(4317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4319), + [anon_sym_EQ_EQ] = ACTIONS(4317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4319), + [anon_sym_LT_EQ] = ACTIONS(4319), + [anon_sym_GT_EQ] = ACTIONS(4319), + [anon_sym_BANGin] = ACTIONS(4319), + [anon_sym_is] = ACTIONS(4317), + [anon_sym_BANGis] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4317), + [anon_sym_PERCENT] = ACTIONS(4317), + [anon_sym_as_QMARK] = ACTIONS(4319), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [anon_sym_BANG] = ACTIONS(4317), + [anon_sym_BANG_BANG] = ACTIONS(4319), + [anon_sym_data] = ACTIONS(4317), + [anon_sym_inner] = ACTIONS(4317), + [anon_sym_value] = ACTIONS(4317), + [anon_sym_expect] = ACTIONS(4317), + [anon_sym_actual] = ACTIONS(4317), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4319), + [anon_sym_continue_AT] = ACTIONS(4319), + [anon_sym_break_AT] = ACTIONS(4319), + [anon_sym_this_AT] = ACTIONS(4319), + [anon_sym_super_AT] = ACTIONS(4319), + [sym_real_literal] = ACTIONS(4319), + [sym_integer_literal] = ACTIONS(4317), + [sym_hex_literal] = ACTIONS(4319), + [sym_bin_literal] = ACTIONS(4319), + [anon_sym_true] = ACTIONS(4317), + [anon_sym_false] = ACTIONS(4317), + [anon_sym_SQUOTE] = ACTIONS(4319), + [sym__backtick_identifier] = ACTIONS(4319), + [sym__automatic_semicolon] = ACTIONS(4319), + [sym_safe_nav] = ACTIONS(4319), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4319), + }, + [2817] = { + [sym_type_constraints] = STATE(3267), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(6462), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [2818] = { + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), + }, + [2819] = { + [sym_type_constraints] = STATE(2920), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [2820] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4656), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -350483,48 +346274,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2848] = { - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2821] = { + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_by] = ACTIONS(4335), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(4335), + [sym__quest] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), + }, + [2822] = { + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6448), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), + [anon_sym_SEMI] = ACTIONS(6264), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), [anon_sym_STAR] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), @@ -350572,71 +346450,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2849] = { - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2823] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -350661,71 +346538,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2850] = { - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2824] = { + [sym_type_constraints] = STATE(2911), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [2825] = { + [sym_type_constraints] = STATE(2923), + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [2826] = { + [sym_type_arguments] = STATE(3030), + [sym__alpha_identifier] = ACTIONS(4128), + [anon_sym_AT] = ACTIONS(4189), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_EQ] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_RBRACE] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_COMMA] = ACTIONS(4189), + [anon_sym_by] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(6464), + [anon_sym_where] = ACTIONS(4128), + [anon_sym_object] = ACTIONS(4128), + [anon_sym_fun] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4189), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4128), + [anon_sym_this] = ACTIONS(4128), + [anon_sym_super] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4189), + [sym__quest] = ACTIONS(4189), + [anon_sym_STAR] = ACTIONS(4189), + [sym_label] = ACTIONS(4128), + [anon_sym_in] = ACTIONS(4128), + [anon_sym_null] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(4128), + [anon_sym_else] = ACTIONS(4128), + [anon_sym_when] = ACTIONS(4128), + [anon_sym_try] = ACTIONS(4128), + [anon_sym_throw] = ACTIONS(4128), + [anon_sym_return] = ACTIONS(4128), + [anon_sym_continue] = ACTIONS(4128), + [anon_sym_break] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4189), + [anon_sym_BANGin] = ACTIONS(4189), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4189), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_PLUS_PLUS] = ACTIONS(4189), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_BANG] = ACTIONS(4128), + [anon_sym_suspend] = ACTIONS(4128), + [anon_sym_sealed] = ACTIONS(4128), + [anon_sym_annotation] = ACTIONS(4128), + [anon_sym_data] = ACTIONS(4128), + [anon_sym_inner] = ACTIONS(4128), + [anon_sym_value] = ACTIONS(4128), + [anon_sym_override] = ACTIONS(4128), + [anon_sym_lateinit] = ACTIONS(4128), + [anon_sym_public] = ACTIONS(4128), + [anon_sym_private] = ACTIONS(4128), + [anon_sym_internal] = ACTIONS(4128), + [anon_sym_protected] = ACTIONS(4128), + [anon_sym_tailrec] = ACTIONS(4128), + [anon_sym_operator] = ACTIONS(4128), + [anon_sym_infix] = ACTIONS(4128), + [anon_sym_inline] = ACTIONS(4128), + [anon_sym_external] = ACTIONS(4128), + [sym_property_modifier] = ACTIONS(4128), + [anon_sym_abstract] = ACTIONS(4128), + [anon_sym_final] = ACTIONS(4128), + [anon_sym_open] = ACTIONS(4128), + [anon_sym_vararg] = ACTIONS(4128), + [anon_sym_noinline] = ACTIONS(4128), + [anon_sym_crossinline] = ACTIONS(4128), + [anon_sym_expect] = ACTIONS(4128), + [anon_sym_actual] = ACTIONS(4128), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4189), + [anon_sym_continue_AT] = ACTIONS(4189), + [anon_sym_break_AT] = ACTIONS(4189), + [anon_sym_this_AT] = ACTIONS(4189), + [anon_sym_super_AT] = ACTIONS(4189), + [sym_real_literal] = ACTIONS(4189), + [sym_integer_literal] = ACTIONS(4128), + [sym_hex_literal] = ACTIONS(4189), + [sym_bin_literal] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4189), + [sym__backtick_identifier] = ACTIONS(4189), + [sym__automatic_semicolon] = ACTIONS(4189), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4189), + }, + [2827] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -350750,71 +346890,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2851] = { - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2828] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4640), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -350839,71 +346978,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2852] = { - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4539), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2829] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -350928,71 +347066,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2853] = { - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2830] = { + [sym_type_constraints] = STATE(2908), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [2831] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -351017,671 +347242,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2854] = { - [sym_indexing_suffix] = STATE(7443), - [sym_navigation_suffix] = STATE(7443), - [sym__postfix_unary_operator] = STATE(7443), - [sym__member_access_operator] = STATE(7875), - [sym__postfix_unary_suffix] = STATE(7443), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7443), - [sym__alpha_identifier] = ACTIONS(4034), - [anon_sym_AT] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4038), - [anon_sym_RBRACK] = ACTIONS(4036), - [anon_sym_as] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4041), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_COMMA] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_where] = ACTIONS(4034), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_get] = ACTIONS(4034), - [anon_sym_set] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4034), - [anon_sym_DASH_GT] = ACTIONS(4036), - [sym_label] = ACTIONS(4036), - [anon_sym_in] = ACTIONS(4034), - [anon_sym_while] = ACTIONS(4034), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_QMARK_COLON] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_else] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4046), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT_EQ] = ACTIONS(4036), - [anon_sym_GT_EQ] = ACTIONS(4036), - [anon_sym_BANGin] = ACTIONS(4036), - [anon_sym_is] = ACTIONS(4034), - [anon_sym_BANGis] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_SLASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_as_QMARK] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(4051), - [anon_sym_BANG_BANG] = ACTIONS(4051), - [anon_sym_suspend] = ACTIONS(4034), - [anon_sym_sealed] = ACTIONS(4034), - [anon_sym_annotation] = ACTIONS(4034), - [anon_sym_data] = ACTIONS(4034), - [anon_sym_inner] = ACTIONS(4034), - [anon_sym_value] = ACTIONS(4034), - [anon_sym_override] = ACTIONS(4034), - [anon_sym_lateinit] = ACTIONS(4034), - [anon_sym_public] = ACTIONS(4034), - [anon_sym_private] = ACTIONS(4034), - [anon_sym_internal] = ACTIONS(4034), - [anon_sym_protected] = ACTIONS(4034), - [anon_sym_tailrec] = ACTIONS(4034), - [anon_sym_operator] = ACTIONS(4034), - [anon_sym_infix] = ACTIONS(4034), - [anon_sym_inline] = ACTIONS(4034), - [anon_sym_external] = ACTIONS(4034), - [sym_property_modifier] = ACTIONS(4034), - [anon_sym_abstract] = ACTIONS(4034), - [anon_sym_final] = ACTIONS(4034), - [anon_sym_open] = ACTIONS(4034), - [anon_sym_vararg] = ACTIONS(4034), - [anon_sym_noinline] = ACTIONS(4034), - [anon_sym_crossinline] = ACTIONS(4034), - [anon_sym_expect] = ACTIONS(4034), - [anon_sym_actual] = ACTIONS(4034), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4036), - [sym_safe_nav] = ACTIONS(4046), - [sym_multiline_comment] = ACTIONS(3), + [2832] = { + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_RBRACK] = ACTIONS(4181), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_object] = ACTIONS(4179), + [anon_sym_fun] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_this] = ACTIONS(4179), + [anon_sym_super] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [anon_sym_DASH_GT] = ACTIONS(4181), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_while] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_QMARK_COLON] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_null] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_throw] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS_EQ] = ACTIONS(4181), + [anon_sym_DASH_EQ] = ACTIONS(4181), + [anon_sym_STAR_EQ] = ACTIONS(4181), + [anon_sym_SLASH_EQ] = ACTIONS(4181), + [anon_sym_PERCENT_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_as_QMARK] = ACTIONS(4181), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4181), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4181), + [anon_sym_continue_AT] = ACTIONS(4181), + [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [anon_sym_SQUOTE] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4181), + [sym_safe_nav] = ACTIONS(4181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4181), }, - [2855] = { - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4534), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - }, - [2856] = { - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2857] = { - [sym_annotated_lambda] = STATE(3581), - [sym_lambda_literal] = STATE(3670), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(4030), - [anon_sym_AT] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_RBRACK] = ACTIONS(4032), - [anon_sym_as] = ACTIONS(4030), - [anon_sym_EQ] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_RBRACE] = ACTIONS(4032), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_COMMA] = ACTIONS(4032), - [anon_sym_RPAREN] = ACTIONS(4032), - [anon_sym_LT] = ACTIONS(4030), - [anon_sym_GT] = ACTIONS(4030), - [anon_sym_where] = ACTIONS(4030), - [anon_sym_DOT] = ACTIONS(4030), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym_get] = ACTIONS(4030), - [anon_sym_set] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4030), - [anon_sym_DASH_GT] = ACTIONS(4032), - [sym_label] = ACTIONS(4032), - [anon_sym_in] = ACTIONS(4030), - [anon_sym_while] = ACTIONS(4030), - [anon_sym_DOT_DOT] = ACTIONS(4032), - [anon_sym_QMARK_COLON] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4032), - [anon_sym_else] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(4032), - [anon_sym_PLUS_EQ] = ACTIONS(4032), - [anon_sym_DASH_EQ] = ACTIONS(4032), - [anon_sym_STAR_EQ] = ACTIONS(4032), - [anon_sym_SLASH_EQ] = ACTIONS(4032), - [anon_sym_PERCENT_EQ] = ACTIONS(4032), - [anon_sym_BANG_EQ] = ACTIONS(4030), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4032), - [anon_sym_EQ_EQ] = ACTIONS(4030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4032), - [anon_sym_LT_EQ] = ACTIONS(4032), - [anon_sym_GT_EQ] = ACTIONS(4032), - [anon_sym_BANGin] = ACTIONS(4032), - [anon_sym_is] = ACTIONS(4030), - [anon_sym_BANGis] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_SLASH] = ACTIONS(4030), - [anon_sym_PERCENT] = ACTIONS(4030), - [anon_sym_as_QMARK] = ACTIONS(4032), - [anon_sym_PLUS_PLUS] = ACTIONS(4032), - [anon_sym_DASH_DASH] = ACTIONS(4032), - [anon_sym_BANG_BANG] = ACTIONS(4032), - [anon_sym_suspend] = ACTIONS(4030), - [anon_sym_sealed] = ACTIONS(4030), - [anon_sym_annotation] = ACTIONS(4030), - [anon_sym_data] = ACTIONS(4030), - [anon_sym_inner] = ACTIONS(4030), - [anon_sym_value] = ACTIONS(4030), - [anon_sym_override] = ACTIONS(4030), - [anon_sym_lateinit] = ACTIONS(4030), - [anon_sym_public] = ACTIONS(4030), - [anon_sym_private] = ACTIONS(4030), - [anon_sym_internal] = ACTIONS(4030), - [anon_sym_protected] = ACTIONS(4030), - [anon_sym_tailrec] = ACTIONS(4030), - [anon_sym_operator] = ACTIONS(4030), - [anon_sym_infix] = ACTIONS(4030), - [anon_sym_inline] = ACTIONS(4030), - [anon_sym_external] = ACTIONS(4030), - [sym_property_modifier] = ACTIONS(4030), - [anon_sym_abstract] = ACTIONS(4030), - [anon_sym_final] = ACTIONS(4030), - [anon_sym_open] = ACTIONS(4030), - [anon_sym_vararg] = ACTIONS(4030), - [anon_sym_noinline] = ACTIONS(4030), - [anon_sym_crossinline] = ACTIONS(4030), - [anon_sym_expect] = ACTIONS(4030), - [anon_sym_actual] = ACTIONS(4030), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4032), - [sym_safe_nav] = ACTIONS(4032), - [sym_multiline_comment] = ACTIONS(3), - }, - [2858] = { - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4545), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [2833] = { + [sym_function_body] = STATE(3258), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(6466), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), }, - [2859] = { - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [2834] = { + [sym_catch_block] = STATE(2889), + [sym_finally_block] = STATE(3439), + [aux_sym_try_expression_repeat1] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_RBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_RPAREN] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_DASH_GT] = ACTIONS(4096), + [sym_label] = ACTIONS(4096), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_while] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_catch] = ACTIONS(6468), + [anon_sym_finally] = ACTIONS(6470), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_suspend] = ACTIONS(4094), + [anon_sym_sealed] = ACTIONS(4094), + [anon_sym_annotation] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_override] = ACTIONS(4094), + [anon_sym_lateinit] = ACTIONS(4094), + [anon_sym_public] = ACTIONS(4094), + [anon_sym_private] = ACTIONS(4094), + [anon_sym_internal] = ACTIONS(4094), + [anon_sym_protected] = ACTIONS(4094), + [anon_sym_tailrec] = ACTIONS(4094), + [anon_sym_operator] = ACTIONS(4094), + [anon_sym_infix] = ACTIONS(4094), + [anon_sym_inline] = ACTIONS(4094), + [anon_sym_external] = ACTIONS(4094), + [sym_property_modifier] = ACTIONS(4094), + [anon_sym_abstract] = ACTIONS(4094), + [anon_sym_final] = ACTIONS(4094), + [anon_sym_open] = ACTIONS(4094), + [anon_sym_vararg] = ACTIONS(4094), + [anon_sym_noinline] = ACTIONS(4094), + [anon_sym_crossinline] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), [sym_multiline_comment] = ACTIONS(3), }, - [2860] = { - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4391), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), + [2835] = { + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(6472), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, - [2861] = { - [sym_getter] = STATE(4045), - [sym_setter] = STATE(4045), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2836] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), [anon_sym_DOT_DOT] = ACTIONS(1792), [anon_sym_QMARK_COLON] = ACTIONS(1792), [anon_sym_AMP_AMP] = ACTIONS(1792), @@ -351729,249 +347682,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2862] = { - [sym_catch_block] = STATE(2862), - [aux_sym_try_expression_repeat1] = STATE(2862), - [sym__alpha_identifier] = ACTIONS(4170), - [anon_sym_AT] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_as] = ACTIONS(4170), - [anon_sym_EQ] = ACTIONS(4170), - [anon_sym_fun] = ACTIONS(4170), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4172), - [anon_sym_LPAREN] = ACTIONS(4172), - [anon_sym_COMMA] = ACTIONS(4172), - [anon_sym_LT] = ACTIONS(4170), - [anon_sym_GT] = ACTIONS(4170), - [anon_sym_where] = ACTIONS(4170), - [anon_sym_object] = ACTIONS(4170), - [anon_sym_DOT] = ACTIONS(4170), - [anon_sym_SEMI] = ACTIONS(4172), - [anon_sym_get] = ACTIONS(4170), - [anon_sym_set] = ACTIONS(4170), - [anon_sym_this] = ACTIONS(4170), - [anon_sym_super] = ACTIONS(4170), - [anon_sym_STAR] = ACTIONS(4170), - [sym_label] = ACTIONS(4170), - [anon_sym_in] = ACTIONS(4170), - [anon_sym_DOT_DOT] = ACTIONS(4172), - [anon_sym_QMARK_COLON] = ACTIONS(4172), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [anon_sym_null] = ACTIONS(4170), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(4170), - [anon_sym_when] = ACTIONS(4170), - [anon_sym_try] = ACTIONS(4170), - [anon_sym_catch] = ACTIONS(6559), - [anon_sym_finally] = ACTIONS(4170), - [anon_sym_throw] = ACTIONS(4170), - [anon_sym_return] = ACTIONS(4170), - [anon_sym_continue] = ACTIONS(4170), - [anon_sym_break] = ACTIONS(4170), - [anon_sym_COLON_COLON] = ACTIONS(4172), - [anon_sym_PLUS_EQ] = ACTIONS(4172), - [anon_sym_DASH_EQ] = ACTIONS(4172), - [anon_sym_STAR_EQ] = ACTIONS(4172), - [anon_sym_SLASH_EQ] = ACTIONS(4172), - [anon_sym_PERCENT_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ] = ACTIONS(4170), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ] = ACTIONS(4170), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), - [anon_sym_LT_EQ] = ACTIONS(4172), - [anon_sym_GT_EQ] = ACTIONS(4172), - [anon_sym_BANGin] = ACTIONS(4172), - [anon_sym_is] = ACTIONS(4170), - [anon_sym_BANGis] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4170), - [anon_sym_DASH] = ACTIONS(4170), - [anon_sym_SLASH] = ACTIONS(4170), - [anon_sym_PERCENT] = ACTIONS(4170), - [anon_sym_as_QMARK] = ACTIONS(4172), - [anon_sym_PLUS_PLUS] = ACTIONS(4172), - [anon_sym_DASH_DASH] = ACTIONS(4172), - [anon_sym_BANG] = ACTIONS(4170), - [anon_sym_BANG_BANG] = ACTIONS(4172), - [anon_sym_data] = ACTIONS(4170), - [anon_sym_inner] = ACTIONS(4170), - [anon_sym_value] = ACTIONS(4170), - [anon_sym_expect] = ACTIONS(4170), - [anon_sym_actual] = ACTIONS(4170), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4172), - [anon_sym_continue_AT] = ACTIONS(4172), - [anon_sym_break_AT] = ACTIONS(4172), - [anon_sym_this_AT] = ACTIONS(4172), - [anon_sym_super_AT] = ACTIONS(4172), - [sym_real_literal] = ACTIONS(4172), - [sym_integer_literal] = ACTIONS(4170), - [sym_hex_literal] = ACTIONS(4172), - [sym_bin_literal] = ACTIONS(4172), - [anon_sym_true] = ACTIONS(4170), - [anon_sym_false] = ACTIONS(4170), - [anon_sym_SQUOTE] = ACTIONS(4172), - [sym__backtick_identifier] = ACTIONS(4172), - [sym__automatic_semicolon] = ACTIONS(4172), - [sym_safe_nav] = ACTIONS(4172), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4172), + [2837] = { + [sym_function_body] = STATE(3252), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(6474), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), }, - [2863] = { - [sym_annotated_lambda] = STATE(3493), - [sym_lambda_literal] = STATE(3670), - [sym_annotation] = STATE(8609), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8609), - [sym__alpha_identifier] = ACTIONS(4082), - [anon_sym_AT] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_RBRACK] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(4082), - [anon_sym_EQ] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_RPAREN] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_where] = ACTIONS(4082), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_get] = ACTIONS(4082), - [anon_sym_set] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_DASH_GT] = ACTIONS(4084), - [sym_label] = ACTIONS(4084), - [anon_sym_in] = ACTIONS(4082), - [anon_sym_while] = ACTIONS(4082), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_QMARK_COLON] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_else] = ACTIONS(4082), - [anon_sym_COLON_COLON] = ACTIONS(4084), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_STAR_EQ] = ACTIONS(4084), - [anon_sym_SLASH_EQ] = ACTIONS(4084), - [anon_sym_PERCENT_EQ] = ACTIONS(4084), - [anon_sym_BANG_EQ] = ACTIONS(4082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_BANGin] = ACTIONS(4084), - [anon_sym_is] = ACTIONS(4082), - [anon_sym_BANGis] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_SLASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4082), - [anon_sym_as_QMARK] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_BANG_BANG] = ACTIONS(4084), - [anon_sym_suspend] = ACTIONS(4082), - [anon_sym_sealed] = ACTIONS(4082), - [anon_sym_annotation] = ACTIONS(4082), - [anon_sym_data] = ACTIONS(4082), - [anon_sym_inner] = ACTIONS(4082), - [anon_sym_value] = ACTIONS(4082), - [anon_sym_override] = ACTIONS(4082), - [anon_sym_lateinit] = ACTIONS(4082), - [anon_sym_public] = ACTIONS(4082), - [anon_sym_private] = ACTIONS(4082), - [anon_sym_internal] = ACTIONS(4082), - [anon_sym_protected] = ACTIONS(4082), - [anon_sym_tailrec] = ACTIONS(4082), - [anon_sym_operator] = ACTIONS(4082), - [anon_sym_infix] = ACTIONS(4082), - [anon_sym_inline] = ACTIONS(4082), - [anon_sym_external] = ACTIONS(4082), - [sym_property_modifier] = ACTIONS(4082), - [anon_sym_abstract] = ACTIONS(4082), - [anon_sym_final] = ACTIONS(4082), - [anon_sym_open] = ACTIONS(4082), - [anon_sym_vararg] = ACTIONS(4082), - [anon_sym_noinline] = ACTIONS(4082), - [anon_sym_crossinline] = ACTIONS(4082), - [anon_sym_expect] = ACTIONS(4082), - [anon_sym_actual] = ACTIONS(4082), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4084), - [sym_safe_nav] = ACTIONS(4084), + [2838] = { + [aux_sym_nullable_type_repeat1] = STATE(2862), + [sym__alpha_identifier] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_as] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_RBRACE] = ACTIONS(4249), + [anon_sym_LPAREN] = ACTIONS(4249), + [anon_sym_COMMA] = ACTIONS(4249), + [anon_sym_by] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4247), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_where] = ACTIONS(4247), + [anon_sym_object] = ACTIONS(4247), + [anon_sym_fun] = ACTIONS(4247), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4249), + [anon_sym_get] = ACTIONS(4247), + [anon_sym_set] = ACTIONS(4247), + [anon_sym_this] = ACTIONS(4247), + [anon_sym_super] = ACTIONS(4247), + [sym__quest] = ACTIONS(6476), + [anon_sym_STAR] = ACTIONS(4247), + [sym_label] = ACTIONS(4247), + [anon_sym_in] = ACTIONS(4247), + [anon_sym_DOT_DOT] = ACTIONS(4249), + [anon_sym_QMARK_COLON] = ACTIONS(4249), + [anon_sym_AMP_AMP] = ACTIONS(4249), + [anon_sym_PIPE_PIPE] = ACTIONS(4249), + [anon_sym_null] = ACTIONS(4247), + [anon_sym_if] = ACTIONS(4247), + [anon_sym_else] = ACTIONS(4247), + [anon_sym_when] = ACTIONS(4247), + [anon_sym_try] = ACTIONS(4247), + [anon_sym_throw] = ACTIONS(4247), + [anon_sym_return] = ACTIONS(4247), + [anon_sym_continue] = ACTIONS(4247), + [anon_sym_break] = ACTIONS(4247), + [anon_sym_COLON_COLON] = ACTIONS(4249), + [anon_sym_PLUS_EQ] = ACTIONS(4249), + [anon_sym_DASH_EQ] = ACTIONS(4249), + [anon_sym_STAR_EQ] = ACTIONS(4249), + [anon_sym_SLASH_EQ] = ACTIONS(4249), + [anon_sym_PERCENT_EQ] = ACTIONS(4249), + [anon_sym_BANG_EQ] = ACTIONS(4247), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4249), + [anon_sym_EQ_EQ] = ACTIONS(4247), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4249), + [anon_sym_LT_EQ] = ACTIONS(4249), + [anon_sym_GT_EQ] = ACTIONS(4249), + [anon_sym_BANGin] = ACTIONS(4249), + [anon_sym_is] = ACTIONS(4247), + [anon_sym_BANGis] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_as_QMARK] = ACTIONS(4249), + [anon_sym_PLUS_PLUS] = ACTIONS(4249), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_BANG_BANG] = ACTIONS(4249), + [anon_sym_data] = ACTIONS(4247), + [anon_sym_inner] = ACTIONS(4247), + [anon_sym_value] = ACTIONS(4247), + [anon_sym_expect] = ACTIONS(4247), + [anon_sym_actual] = ACTIONS(4247), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4249), + [anon_sym_continue_AT] = ACTIONS(4249), + [anon_sym_break_AT] = ACTIONS(4249), + [anon_sym_this_AT] = ACTIONS(4249), + [anon_sym_super_AT] = ACTIONS(4249), + [sym_real_literal] = ACTIONS(4249), + [sym_integer_literal] = ACTIONS(4247), + [sym_hex_literal] = ACTIONS(4249), + [sym_bin_literal] = ACTIONS(4249), + [anon_sym_true] = ACTIONS(4247), + [anon_sym_false] = ACTIONS(4247), + [anon_sym_SQUOTE] = ACTIONS(4249), + [sym__backtick_identifier] = ACTIONS(4249), + [sym__automatic_semicolon] = ACTIONS(4249), + [sym_safe_nav] = ACTIONS(4249), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4249), + }, + [2839] = { + [sym_class_body] = STATE(3173), + [sym_type_constraints] = STATE(3039), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [2840] = { + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_object] = ACTIONS(4237), + [anon_sym_fun] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_this] = ACTIONS(4237), + [anon_sym_super] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6478), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [sym_label] = ACTIONS(4237), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_null] = ACTIONS(4237), + [anon_sym_if] = ACTIONS(4237), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_when] = ACTIONS(4237), + [anon_sym_try] = ACTIONS(4237), + [anon_sym_throw] = ACTIONS(4237), + [anon_sym_return] = ACTIONS(4237), + [anon_sym_continue] = ACTIONS(4237), + [anon_sym_break] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4239), + [anon_sym_continue_AT] = ACTIONS(4239), + [anon_sym_break_AT] = ACTIONS(4239), + [anon_sym_this_AT] = ACTIONS(4239), + [anon_sym_super_AT] = ACTIONS(4239), + [sym_real_literal] = ACTIONS(4239), + [sym_integer_literal] = ACTIONS(4237), + [sym_hex_literal] = ACTIONS(4239), + [sym_bin_literal] = ACTIONS(4239), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4239), + [sym__backtick_identifier] = ACTIONS(4239), + [sym__automatic_semicolon] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4239), }, - [2864] = { - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4528), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2841] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -351996,48 +348122,1543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2865] = { - [sym_getter] = STATE(4045), - [sym_setter] = STATE(4045), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2842] = { + [aux_sym_nullable_type_repeat1] = STATE(2838), + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [sym__quest] = ACTIONS(6456), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_null] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4206), + [anon_sym_continue_AT] = ACTIONS(4206), + [anon_sym_break_AT] = ACTIONS(4206), + [anon_sym_this_AT] = ACTIONS(4206), + [anon_sym_super_AT] = ACTIONS(4206), + [sym_real_literal] = ACTIONS(4206), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4206), + [sym_bin_literal] = ACTIONS(4206), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4206), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4206), + }, + [2843] = { + [sym_class_body] = STATE(3206), + [sym_type_constraints] = STATE(3024), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(6480), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), + }, + [2844] = { + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [2845] = { + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_EQ] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_by] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4181), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_object] = ACTIONS(4179), + [anon_sym_fun] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_this] = ACTIONS(4179), + [anon_sym_super] = ACTIONS(4179), + [anon_sym_AMP] = ACTIONS(4181), + [sym__quest] = ACTIONS(4181), + [anon_sym_STAR] = ACTIONS(4181), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_throw] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4181), + [anon_sym_continue_AT] = ACTIONS(4181), + [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [anon_sym_SQUOTE] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4181), + [sym__automatic_semicolon] = ACTIONS(4181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4181), + }, + [2846] = { + [sym_class_body] = STATE(3061), + [sym_type_constraints] = STATE(3015), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [2847] = { + [sym_type_constraints] = STATE(2927), + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [2848] = { + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_as] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4210), + [anon_sym_GT] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_object] = ACTIONS(4210), + [anon_sym_fun] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_this] = ACTIONS(4210), + [anon_sym_super] = ACTIONS(4210), + [sym__quest] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_DASH_GT] = ACTIONS(4214), + [sym_label] = ACTIONS(4210), + [anon_sym_in] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(4212), + [anon_sym_QMARK_COLON] = ACTIONS(4212), + [anon_sym_AMP_AMP] = ACTIONS(4212), + [anon_sym_PIPE_PIPE] = ACTIONS(4212), + [anon_sym_null] = ACTIONS(4210), + [anon_sym_if] = ACTIONS(4210), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_try] = ACTIONS(4210), + [anon_sym_throw] = ACTIONS(4210), + [anon_sym_return] = ACTIONS(4210), + [anon_sym_continue] = ACTIONS(4210), + [anon_sym_break] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_PLUS_EQ] = ACTIONS(4212), + [anon_sym_DASH_EQ] = ACTIONS(4212), + [anon_sym_STAR_EQ] = ACTIONS(4212), + [anon_sym_SLASH_EQ] = ACTIONS(4212), + [anon_sym_PERCENT_EQ] = ACTIONS(4212), + [anon_sym_BANG_EQ] = ACTIONS(4210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4212), + [anon_sym_EQ_EQ] = ACTIONS(4210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4212), + [anon_sym_LT_EQ] = ACTIONS(4212), + [anon_sym_GT_EQ] = ACTIONS(4212), + [anon_sym_BANGin] = ACTIONS(4212), + [anon_sym_is] = ACTIONS(4210), + [anon_sym_BANGis] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_SLASH] = ACTIONS(4210), + [anon_sym_PERCENT] = ACTIONS(4210), + [anon_sym_as_QMARK] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_BANG_BANG] = ACTIONS(4212), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4212), + [anon_sym_continue_AT] = ACTIONS(4212), + [anon_sym_break_AT] = ACTIONS(4212), + [anon_sym_this_AT] = ACTIONS(4212), + [anon_sym_super_AT] = ACTIONS(4212), + [sym_real_literal] = ACTIONS(4212), + [sym_integer_literal] = ACTIONS(4210), + [sym_hex_literal] = ACTIONS(4212), + [sym_bin_literal] = ACTIONS(4212), + [anon_sym_true] = ACTIONS(4210), + [anon_sym_false] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4212), + [sym__backtick_identifier] = ACTIONS(4212), + [sym__automatic_semicolon] = ACTIONS(4212), + [sym_safe_nav] = ACTIONS(4212), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4212), + }, + [2849] = { + [sym_type_constraints] = STATE(3231), + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6482), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), + }, + [2850] = { + [sym__alpha_identifier] = ACTIONS(4253), + [anon_sym_AT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4255), + [anon_sym_RBRACK] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4253), + [anon_sym_EQ] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_RBRACE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4253), + [anon_sym_where] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_fun] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_get] = ACTIONS(4253), + [anon_sym_set] = ACTIONS(4253), + [anon_sym_this] = ACTIONS(4253), + [anon_sym_super] = ACTIONS(4253), + [anon_sym_STAR] = ACTIONS(4253), + [anon_sym_DASH_GT] = ACTIONS(4255), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4253), + [anon_sym_while] = ACTIONS(4253), + [anon_sym_DOT_DOT] = ACTIONS(4255), + [anon_sym_QMARK_COLON] = ACTIONS(4255), + [anon_sym_AMP_AMP] = ACTIONS(4255), + [anon_sym_PIPE_PIPE] = ACTIONS(4255), + [anon_sym_null] = ACTIONS(4253), + [anon_sym_if] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4253), + [anon_sym_when] = ACTIONS(4253), + [anon_sym_try] = ACTIONS(4253), + [anon_sym_throw] = ACTIONS(4253), + [anon_sym_return] = ACTIONS(4253), + [anon_sym_continue] = ACTIONS(4253), + [anon_sym_break] = ACTIONS(4253), + [anon_sym_COLON_COLON] = ACTIONS(4255), + [anon_sym_PLUS_EQ] = ACTIONS(4255), + [anon_sym_DASH_EQ] = ACTIONS(4255), + [anon_sym_STAR_EQ] = ACTIONS(4255), + [anon_sym_SLASH_EQ] = ACTIONS(4255), + [anon_sym_PERCENT_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4255), + [anon_sym_LT_EQ] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4255), + [anon_sym_BANGin] = ACTIONS(4255), + [anon_sym_is] = ACTIONS(4253), + [anon_sym_BANGis] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4253), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4255), + [anon_sym_PLUS_PLUS] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4253), + [anon_sym_inner] = ACTIONS(4253), + [anon_sym_value] = ACTIONS(4253), + [anon_sym_expect] = ACTIONS(4253), + [anon_sym_actual] = ACTIONS(4253), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4255), + [anon_sym_continue_AT] = ACTIONS(4255), + [anon_sym_break_AT] = ACTIONS(4255), + [anon_sym_this_AT] = ACTIONS(4255), + [anon_sym_super_AT] = ACTIONS(4255), + [sym_real_literal] = ACTIONS(4255), + [sym_integer_literal] = ACTIONS(4253), + [sym_hex_literal] = ACTIONS(4255), + [sym_bin_literal] = ACTIONS(4255), + [anon_sym_true] = ACTIONS(4253), + [anon_sym_false] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4255), + [sym__backtick_identifier] = ACTIONS(4255), + [sym_safe_nav] = ACTIONS(4255), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4255), + }, + [2851] = { + [sym_type_constraints] = STATE(3007), + [sym_enum_class_body] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6484), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [2852] = { + [sym_class_body] = STATE(3255), + [sym_type_constraints] = STATE(3006), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6486), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [2853] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_EQ] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_by] = ACTIONS(4004), + [anon_sym_LT] = ACTIONS(4009), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4009), + [sym__quest] = ACTIONS(4009), + [anon_sym_STAR] = ACTIONS(4009), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [2854] = { + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), + }, + [2855] = { + [sym_type_constraints] = STATE(2996), + [sym_enum_class_body] = STATE(3200), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(6488), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), + }, + [2856] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4021), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_interface] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4021), + [anon_sym_var] = ACTIONS(4021), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4021), + [anon_sym_fun] = ACTIONS(4021), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4023), + [anon_sym_set] = ACTIONS(4023), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4023), + [anon_sym_sealed] = ACTIONS(4023), + [anon_sym_annotation] = ACTIONS(4023), + [anon_sym_data] = ACTIONS(4023), + [anon_sym_inner] = ACTIONS(4023), + [anon_sym_value] = ACTIONS(4023), + [anon_sym_override] = ACTIONS(4023), + [anon_sym_lateinit] = ACTIONS(4023), + [anon_sym_public] = ACTIONS(4023), + [anon_sym_private] = ACTIONS(4023), + [anon_sym_internal] = ACTIONS(4023), + [anon_sym_protected] = ACTIONS(4023), + [anon_sym_tailrec] = ACTIONS(4023), + [anon_sym_operator] = ACTIONS(4023), + [anon_sym_infix] = ACTIONS(4023), + [anon_sym_inline] = ACTIONS(4023), + [anon_sym_external] = ACTIONS(4023), + [sym_property_modifier] = ACTIONS(4023), + [anon_sym_abstract] = ACTIONS(4023), + [anon_sym_final] = ACTIONS(4023), + [anon_sym_open] = ACTIONS(4023), + [anon_sym_vararg] = ACTIONS(4023), + [anon_sym_noinline] = ACTIONS(4023), + [anon_sym_crossinline] = ACTIONS(4023), + [anon_sym_expect] = ACTIONS(4023), + [anon_sym_actual] = ACTIONS(4023), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + }, + [2857] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4011), + [anon_sym_interface] = ACTIONS(4011), + [anon_sym_enum] = ACTIONS(4011), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4011), + [anon_sym_var] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4011), + [anon_sym_fun] = ACTIONS(4011), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4013), + [anon_sym_set] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4013), + [anon_sym_sealed] = ACTIONS(4013), + [anon_sym_annotation] = ACTIONS(4013), + [anon_sym_data] = ACTIONS(4013), + [anon_sym_inner] = ACTIONS(4013), + [anon_sym_value] = ACTIONS(4013), + [anon_sym_override] = ACTIONS(4013), + [anon_sym_lateinit] = ACTIONS(4013), + [anon_sym_public] = ACTIONS(4013), + [anon_sym_private] = ACTIONS(4013), + [anon_sym_internal] = ACTIONS(4013), + [anon_sym_protected] = ACTIONS(4013), + [anon_sym_tailrec] = ACTIONS(4013), + [anon_sym_operator] = ACTIONS(4013), + [anon_sym_infix] = ACTIONS(4013), + [anon_sym_inline] = ACTIONS(4013), + [anon_sym_external] = ACTIONS(4013), + [sym_property_modifier] = ACTIONS(4013), + [anon_sym_abstract] = ACTIONS(4013), + [anon_sym_final] = ACTIONS(4013), + [anon_sym_open] = ACTIONS(4013), + [anon_sym_vararg] = ACTIONS(4013), + [anon_sym_noinline] = ACTIONS(4013), + [anon_sym_crossinline] = ACTIONS(4013), + [anon_sym_expect] = ACTIONS(4013), + [anon_sym_actual] = ACTIONS(4013), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + }, + [2858] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6332), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2859] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4433), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), [anon_sym_DOT_DOT] = ACTIONS(1792), [anon_sym_QMARK_COLON] = ACTIONS(1792), [anon_sym_AMP_AMP] = ACTIONS(1792), @@ -352085,48 +349706,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2866] = { - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2860] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6490), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_DASH_GT] = ACTIONS(4265), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [2861] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6494), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4281), + [anon_sym_DASH_GT] = ACTIONS(4287), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [2862] = { + [aux_sym_nullable_type_repeat1] = STATE(2862), + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_RBRACE] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4222), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [sym__quest] = ACTIONS(6498), + [anon_sym_STAR] = ACTIONS(4222), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4224), + [anon_sym_QMARK_COLON] = ACTIONS(4224), + [anon_sym_AMP_AMP] = ACTIONS(4224), + [anon_sym_PIPE_PIPE] = ACTIONS(4224), + [anon_sym_null] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4224), + [anon_sym_PLUS_EQ] = ACTIONS(4224), + [anon_sym_DASH_EQ] = ACTIONS(4224), + [anon_sym_STAR_EQ] = ACTIONS(4224), + [anon_sym_SLASH_EQ] = ACTIONS(4224), + [anon_sym_PERCENT_EQ] = ACTIONS(4224), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4224), + [anon_sym_LT_EQ] = ACTIONS(4224), + [anon_sym_GT_EQ] = ACTIONS(4224), + [anon_sym_BANGin] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4224), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4224), + [anon_sym_DASH_DASH] = ACTIONS(4224), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4224), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4224), + [anon_sym_continue_AT] = ACTIONS(4224), + [anon_sym_break_AT] = ACTIONS(4224), + [anon_sym_this_AT] = ACTIONS(4224), + [anon_sym_super_AT] = ACTIONS(4224), + [sym_real_literal] = ACTIONS(4224), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4224), + [sym_bin_literal] = ACTIONS(4224), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4224), + [sym__backtick_identifier] = ACTIONS(4224), + [sym__automatic_semicolon] = ACTIONS(4224), + [sym_safe_nav] = ACTIONS(4224), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4224), + }, + [2863] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), + [anon_sym_SEMI] = ACTIONS(4513), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), [anon_sym_STAR] = ACTIONS(1734), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), @@ -352174,48 +350058,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2867] = { - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2864] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2865] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), [anon_sym_STAR] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), @@ -352263,137 +350234,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, + [2866] = { + [sym_type_constraints] = STATE(3224), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6501), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [2867] = { + [sym_type_constraints] = STATE(3194), + [sym_function_body] = STATE(3195), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), + }, [2868] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_by] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4010), - [anon_sym_set] = ACTIONS(4010), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_AMP] = ACTIONS(4010), - [sym__quest] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4010), - [sym_label] = ACTIONS(4010), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_data] = ACTIONS(4010), - [anon_sym_inner] = ACTIONS(4010), - [anon_sym_value] = ACTIONS(4010), - [anon_sym_expect] = ACTIONS(4010), - [anon_sym_actual] = ACTIONS(4010), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4015), - [sym__automatic_semicolon] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), }, [2869] = { - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + }, + [2870] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4526), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), [anon_sym_STAR] = ACTIONS(1734), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), @@ -352441,137 +350674,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2870] = { - [sym__alpha_identifier] = ACTIONS(4215), - [anon_sym_AT] = ACTIONS(4217), - [anon_sym_COLON] = ACTIONS(4215), - [anon_sym_LBRACK] = ACTIONS(4217), - [anon_sym_as] = ACTIONS(4215), - [anon_sym_EQ] = ACTIONS(4215), - [anon_sym_fun] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4217), - [anon_sym_COMMA] = ACTIONS(4217), - [anon_sym_by] = ACTIONS(4215), - [anon_sym_LT] = ACTIONS(4215), - [anon_sym_GT] = ACTIONS(4215), - [anon_sym_where] = ACTIONS(4215), - [anon_sym_object] = ACTIONS(4215), - [anon_sym_DOT] = ACTIONS(4215), - [anon_sym_SEMI] = ACTIONS(4217), - [anon_sym_get] = ACTIONS(4215), - [anon_sym_set] = ACTIONS(4215), - [anon_sym_this] = ACTIONS(4215), - [anon_sym_super] = ACTIONS(4215), - [anon_sym_AMP] = ACTIONS(4215), - [sym__quest] = ACTIONS(4215), - [anon_sym_STAR] = ACTIONS(4215), - [sym_label] = ACTIONS(4215), - [anon_sym_in] = ACTIONS(4215), - [anon_sym_DOT_DOT] = ACTIONS(4217), - [anon_sym_QMARK_COLON] = ACTIONS(4217), - [anon_sym_AMP_AMP] = ACTIONS(4217), - [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4215), - [anon_sym_if] = ACTIONS(4215), - [anon_sym_else] = ACTIONS(4215), - [anon_sym_when] = ACTIONS(4215), - [anon_sym_try] = ACTIONS(4215), - [anon_sym_throw] = ACTIONS(4215), - [anon_sym_return] = ACTIONS(4215), - [anon_sym_continue] = ACTIONS(4215), - [anon_sym_break] = ACTIONS(4215), - [anon_sym_COLON_COLON] = ACTIONS(4217), - [anon_sym_PLUS_EQ] = ACTIONS(4217), - [anon_sym_DASH_EQ] = ACTIONS(4217), - [anon_sym_STAR_EQ] = ACTIONS(4217), - [anon_sym_SLASH_EQ] = ACTIONS(4217), - [anon_sym_PERCENT_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ] = ACTIONS(4215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ] = ACTIONS(4215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), - [anon_sym_LT_EQ] = ACTIONS(4217), - [anon_sym_GT_EQ] = ACTIONS(4217), - [anon_sym_BANGin] = ACTIONS(4217), - [anon_sym_is] = ACTIONS(4215), - [anon_sym_BANGis] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4215), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_SLASH] = ACTIONS(4215), - [anon_sym_PERCENT] = ACTIONS(4215), - [anon_sym_as_QMARK] = ACTIONS(4217), - [anon_sym_PLUS_PLUS] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4217), - [anon_sym_BANG] = ACTIONS(4215), - [anon_sym_BANG_BANG] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4215), - [anon_sym_inner] = ACTIONS(4215), - [anon_sym_value] = ACTIONS(4215), - [anon_sym_expect] = ACTIONS(4215), - [anon_sym_actual] = ACTIONS(4215), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4217), - [anon_sym_continue_AT] = ACTIONS(4217), - [anon_sym_break_AT] = ACTIONS(4217), - [anon_sym_this_AT] = ACTIONS(4217), - [anon_sym_super_AT] = ACTIONS(4217), - [sym_real_literal] = ACTIONS(4217), - [sym_integer_literal] = ACTIONS(4215), - [sym_hex_literal] = ACTIONS(4217), - [sym_bin_literal] = ACTIONS(4217), - [anon_sym_true] = ACTIONS(4215), - [anon_sym_false] = ACTIONS(4215), - [anon_sym_SQUOTE] = ACTIONS(4217), - [sym__backtick_identifier] = ACTIONS(4217), - [sym__automatic_semicolon] = ACTIONS(4217), - [sym_safe_nav] = ACTIONS(4217), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4217), - }, [2871] = { - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), [anon_sym_STAR] = ACTIONS(1810), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), [anon_sym_DOT_DOT] = ACTIONS(1810), [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1810), @@ -352619,48 +350762,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, [2872] = { - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4524), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), [anon_sym_STAR] = ACTIONS(1810), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), [anon_sym_DOT_DOT] = ACTIONS(1810), [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1810), @@ -352708,160 +350850,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, [2873] = { - [sym_indexing_suffix] = STATE(7443), - [sym_navigation_suffix] = STATE(7443), - [sym__postfix_unary_operator] = STATE(7443), - [sym__member_access_operator] = STATE(7875), - [sym__postfix_unary_suffix] = STATE(7443), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7443), - [sym__alpha_identifier] = ACTIONS(4034), - [anon_sym_AT] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4038), - [anon_sym_RBRACK] = ACTIONS(4036), - [anon_sym_as] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4070), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_COMMA] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_where] = ACTIONS(4034), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_get] = ACTIONS(4034), - [anon_sym_set] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4034), - [anon_sym_DASH_GT] = ACTIONS(4036), - [sym_label] = ACTIONS(4036), - [anon_sym_in] = ACTIONS(4034), - [anon_sym_while] = ACTIONS(4034), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_QMARK_COLON] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_else] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4046), - [anon_sym_PLUS_EQ] = ACTIONS(4073), - [anon_sym_DASH_EQ] = ACTIONS(4073), - [anon_sym_STAR_EQ] = ACTIONS(4073), - [anon_sym_SLASH_EQ] = ACTIONS(4073), - [anon_sym_PERCENT_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT_EQ] = ACTIONS(4036), - [anon_sym_GT_EQ] = ACTIONS(4036), - [anon_sym_BANGin] = ACTIONS(4036), - [anon_sym_is] = ACTIONS(4034), - [anon_sym_BANGis] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_SLASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_as_QMARK] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(4051), - [anon_sym_BANG_BANG] = ACTIONS(4051), - [anon_sym_suspend] = ACTIONS(4034), - [anon_sym_sealed] = ACTIONS(4034), - [anon_sym_annotation] = ACTIONS(4034), - [anon_sym_data] = ACTIONS(4034), - [anon_sym_inner] = ACTIONS(4034), - [anon_sym_value] = ACTIONS(4034), - [anon_sym_override] = ACTIONS(4034), - [anon_sym_lateinit] = ACTIONS(4034), - [anon_sym_public] = ACTIONS(4034), - [anon_sym_private] = ACTIONS(4034), - [anon_sym_internal] = ACTIONS(4034), - [anon_sym_protected] = ACTIONS(4034), - [anon_sym_tailrec] = ACTIONS(4034), - [anon_sym_operator] = ACTIONS(4034), - [anon_sym_infix] = ACTIONS(4034), - [anon_sym_inline] = ACTIONS(4034), - [anon_sym_external] = ACTIONS(4034), - [sym_property_modifier] = ACTIONS(4034), - [anon_sym_abstract] = ACTIONS(4034), - [anon_sym_final] = ACTIONS(4034), - [anon_sym_open] = ACTIONS(4034), - [anon_sym_vararg] = ACTIONS(4034), - [anon_sym_noinline] = ACTIONS(4034), - [anon_sym_crossinline] = ACTIONS(4034), - [anon_sym_expect] = ACTIONS(4034), - [anon_sym_actual] = ACTIONS(4034), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4036), - [sym_safe_nav] = ACTIONS(4046), + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, [2874] = { - [sym_getter] = STATE(4022), - [sym_setter] = STATE(4022), - [sym_modifiers] = STATE(9735), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(6392), - [anon_sym_set] = ACTIONS(6394), - [anon_sym_STAR] = ACTIONS(1802), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -352886,71 +351026,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, [2875] = { - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -352975,71 +351114,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, [2876] = { - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_modifiers] = STATE(9721), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(6330), - [anon_sym_set] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -353064,32 +351202,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, [2877] = { - [sym_getter] = STATE(3552), - [sym_setter] = STATE(3552), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), @@ -353099,9 +351236,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4659), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -353153,70 +351290,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, [2878] = { - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_getter] = STATE(3458), + [sym_setter] = STATE(3458), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -353241,70 +351378,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, [2879] = { - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4664), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -353329,70 +351466,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, [2880] = { - [sym_getter] = STATE(4978), - [sym_setter] = STATE(4978), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -353417,158 +351554,503 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, [2881] = { - [sym_type_constraints] = STATE(3277), - [sym_function_body] = STATE(3278), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(6562), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4209), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_this] = ACTIONS(4209), - [anon_sym_super] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4209), - [sym_label] = ACTIONS(4209), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_if] = ACTIONS(4209), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_when] = ACTIONS(4209), - [anon_sym_try] = ACTIONS(4209), - [anon_sym_throw] = ACTIONS(4209), - [anon_sym_return] = ACTIONS(4209), - [anon_sym_continue] = ACTIONS(4209), - [anon_sym_break] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_PLUS_EQ] = ACTIONS(4211), - [anon_sym_DASH_EQ] = ACTIONS(4211), - [anon_sym_STAR_EQ] = ACTIONS(4211), - [anon_sym_SLASH_EQ] = ACTIONS(4211), - [anon_sym_PERCENT_EQ] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4209), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG] = ACTIONS(4209), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4211), - [anon_sym_continue_AT] = ACTIONS(4211), - [anon_sym_break_AT] = ACTIONS(4211), - [anon_sym_this_AT] = ACTIONS(4211), - [anon_sym_super_AT] = ACTIONS(4211), - [sym_real_literal] = ACTIONS(4211), - [sym_integer_literal] = ACTIONS(4209), - [sym_hex_literal] = ACTIONS(4211), - [sym_bin_literal] = ACTIONS(4211), - [anon_sym_true] = ACTIONS(4209), - [anon_sym_false] = ACTIONS(4209), - [anon_sym_SQUOTE] = ACTIONS(4211), - [sym__backtick_identifier] = ACTIONS(4211), - [sym__automatic_semicolon] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4211), + [aux_sym_user_type_repeat1] = STATE(2928), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_EQ] = ACTIONS(4195), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_object] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6505), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_this] = ACTIONS(4193), + [anon_sym_super] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [sym__quest] = ACTIONS(4195), + [anon_sym_STAR] = ACTIONS(4195), + [sym_label] = ACTIONS(4193), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_when] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_throw] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4195), + [anon_sym_continue_AT] = ACTIONS(4195), + [anon_sym_break_AT] = ACTIONS(4195), + [anon_sym_this_AT] = ACTIONS(4195), + [anon_sym_super_AT] = ACTIONS(4195), + [sym_real_literal] = ACTIONS(4195), + [sym_integer_literal] = ACTIONS(4193), + [sym_hex_literal] = ACTIONS(4195), + [sym_bin_literal] = ACTIONS(4195), + [anon_sym_true] = ACTIONS(4193), + [anon_sym_false] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4195), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4195), }, [2882] = { - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), + }, + [2883] = { + [sym_type_constraints] = STATE(3184), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(6507), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [anon_sym_DASH_GT] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, + [2884] = { + [sym_class_body] = STATE(3061), + [sym_type_constraints] = STATE(3015), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3376), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [2885] = { + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_RBRACK] = ACTIONS(4181), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), + [anon_sym_by] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_AMP] = ACTIONS(4179), + [sym__quest] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [anon_sym_DASH_GT] = ACTIONS(4181), + [sym_label] = ACTIONS(4181), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_while] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_QMARK_COLON] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS_EQ] = ACTIONS(4181), + [anon_sym_DASH_EQ] = ACTIONS(4181), + [anon_sym_STAR_EQ] = ACTIONS(4181), + [anon_sym_SLASH_EQ] = ACTIONS(4181), + [anon_sym_PERCENT_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_as_QMARK] = ACTIONS(4181), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG_BANG] = ACTIONS(4181), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4181), + [sym_safe_nav] = ACTIONS(4181), + [sym_multiline_comment] = ACTIONS(3), + }, + [2886] = { + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -353593,47 +352075,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2883] = { - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2887] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6440), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), [anon_sym_STAR] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), @@ -353681,158 +352162,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2884] = { - [sym__alpha_identifier] = ACTIONS(4311), - [anon_sym_AT] = ACTIONS(4313), - [anon_sym_LBRACK] = ACTIONS(4313), - [anon_sym_as] = ACTIONS(4311), - [anon_sym_EQ] = ACTIONS(4311), - [anon_sym_fun] = ACTIONS(4311), - [anon_sym_LBRACE] = ACTIONS(4313), - [anon_sym_RBRACE] = ACTIONS(4313), - [anon_sym_LPAREN] = ACTIONS(4313), - [anon_sym_COMMA] = ACTIONS(4313), - [anon_sym_by] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_where] = ACTIONS(4311), - [anon_sym_object] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4311), - [anon_sym_SEMI] = ACTIONS(4313), - [anon_sym_get] = ACTIONS(4311), - [anon_sym_set] = ACTIONS(4311), - [anon_sym_this] = ACTIONS(4311), - [anon_sym_super] = ACTIONS(4311), - [sym__quest] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_DASH_GT] = ACTIONS(4315), - [sym_label] = ACTIONS(4311), - [anon_sym_in] = ACTIONS(4311), - [anon_sym_DOT_DOT] = ACTIONS(4313), - [anon_sym_QMARK_COLON] = ACTIONS(4313), - [anon_sym_AMP_AMP] = ACTIONS(4313), - [anon_sym_PIPE_PIPE] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4311), - [anon_sym_if] = ACTIONS(4311), - [anon_sym_else] = ACTIONS(4311), - [anon_sym_when] = ACTIONS(4311), - [anon_sym_try] = ACTIONS(4311), - [anon_sym_throw] = ACTIONS(4311), - [anon_sym_return] = ACTIONS(4311), - [anon_sym_continue] = ACTIONS(4311), - [anon_sym_break] = ACTIONS(4311), - [anon_sym_COLON_COLON] = ACTIONS(4313), - [anon_sym_PLUS_EQ] = ACTIONS(4313), - [anon_sym_DASH_EQ] = ACTIONS(4313), - [anon_sym_STAR_EQ] = ACTIONS(4313), - [anon_sym_SLASH_EQ] = ACTIONS(4313), - [anon_sym_PERCENT_EQ] = ACTIONS(4313), - [anon_sym_BANG_EQ] = ACTIONS(4311), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), - [anon_sym_EQ_EQ] = ACTIONS(4311), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), - [anon_sym_LT_EQ] = ACTIONS(4313), - [anon_sym_GT_EQ] = ACTIONS(4313), - [anon_sym_BANGin] = ACTIONS(4313), - [anon_sym_is] = ACTIONS(4311), - [anon_sym_BANGis] = ACTIONS(4313), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_PERCENT] = ACTIONS(4311), - [anon_sym_as_QMARK] = ACTIONS(4313), - [anon_sym_PLUS_PLUS] = ACTIONS(4313), - [anon_sym_DASH_DASH] = ACTIONS(4313), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_BANG_BANG] = ACTIONS(4313), - [anon_sym_data] = ACTIONS(4311), - [anon_sym_inner] = ACTIONS(4311), - [anon_sym_value] = ACTIONS(4311), - [anon_sym_expect] = ACTIONS(4311), - [anon_sym_actual] = ACTIONS(4311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4313), - [anon_sym_continue_AT] = ACTIONS(4313), - [anon_sym_break_AT] = ACTIONS(4313), - [anon_sym_this_AT] = ACTIONS(4313), - [anon_sym_super_AT] = ACTIONS(4313), - [sym_real_literal] = ACTIONS(4313), - [sym_integer_literal] = ACTIONS(4311), - [sym_hex_literal] = ACTIONS(4313), - [sym_bin_literal] = ACTIONS(4313), - [anon_sym_true] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4313), - [sym__backtick_identifier] = ACTIONS(4313), - [sym__automatic_semicolon] = ACTIONS(4313), - [sym_safe_nav] = ACTIONS(4313), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4313), + [2888] = { + [sym_class_body] = STATE(3173), + [sym_type_constraints] = STATE(3039), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, - [2885] = { - [sym_getter] = STATE(3590), - [sym_setter] = STATE(3590), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4752), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2889] = { + [sym_catch_block] = STATE(2889), + [aux_sym_try_expression_repeat1] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(4130), + [anon_sym_AT] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_RBRACK] = ACTIONS(4132), + [anon_sym_as] = ACTIONS(4130), + [anon_sym_EQ] = ACTIONS(4130), + [anon_sym_LBRACE] = ACTIONS(4132), + [anon_sym_RBRACE] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4132), + [anon_sym_COMMA] = ACTIONS(4132), + [anon_sym_RPAREN] = ACTIONS(4132), + [anon_sym_LT] = ACTIONS(4130), + [anon_sym_GT] = ACTIONS(4130), + [anon_sym_where] = ACTIONS(4130), + [anon_sym_DOT] = ACTIONS(4130), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4130), + [anon_sym_set] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_DASH_GT] = ACTIONS(4132), + [sym_label] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(4130), + [anon_sym_while] = ACTIONS(4130), + [anon_sym_DOT_DOT] = ACTIONS(4132), + [anon_sym_QMARK_COLON] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_PIPE_PIPE] = ACTIONS(4132), + [anon_sym_else] = ACTIONS(4130), + [anon_sym_catch] = ACTIONS(6513), + [anon_sym_finally] = ACTIONS(4130), + [anon_sym_COLON_COLON] = ACTIONS(4132), + [anon_sym_PLUS_EQ] = ACTIONS(4132), + [anon_sym_DASH_EQ] = ACTIONS(4132), + [anon_sym_STAR_EQ] = ACTIONS(4132), + [anon_sym_SLASH_EQ] = ACTIONS(4132), + [anon_sym_PERCENT_EQ] = ACTIONS(4132), + [anon_sym_BANG_EQ] = ACTIONS(4130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4132), + [anon_sym_EQ_EQ] = ACTIONS(4130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4132), + [anon_sym_LT_EQ] = ACTIONS(4132), + [anon_sym_GT_EQ] = ACTIONS(4132), + [anon_sym_BANGin] = ACTIONS(4132), + [anon_sym_is] = ACTIONS(4130), + [anon_sym_BANGis] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_SLASH] = ACTIONS(4130), + [anon_sym_PERCENT] = ACTIONS(4130), + [anon_sym_as_QMARK] = ACTIONS(4132), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_BANG_BANG] = ACTIONS(4132), + [anon_sym_suspend] = ACTIONS(4130), + [anon_sym_sealed] = ACTIONS(4130), + [anon_sym_annotation] = ACTIONS(4130), + [anon_sym_data] = ACTIONS(4130), + [anon_sym_inner] = ACTIONS(4130), + [anon_sym_value] = ACTIONS(4130), + [anon_sym_override] = ACTIONS(4130), + [anon_sym_lateinit] = ACTIONS(4130), + [anon_sym_public] = ACTIONS(4130), + [anon_sym_private] = ACTIONS(4130), + [anon_sym_internal] = ACTIONS(4130), + [anon_sym_protected] = ACTIONS(4130), + [anon_sym_tailrec] = ACTIONS(4130), + [anon_sym_operator] = ACTIONS(4130), + [anon_sym_infix] = ACTIONS(4130), + [anon_sym_inline] = ACTIONS(4130), + [anon_sym_external] = ACTIONS(4130), + [sym_property_modifier] = ACTIONS(4130), + [anon_sym_abstract] = ACTIONS(4130), + [anon_sym_final] = ACTIONS(4130), + [anon_sym_open] = ACTIONS(4130), + [anon_sym_vararg] = ACTIONS(4130), + [anon_sym_noinline] = ACTIONS(4130), + [anon_sym_crossinline] = ACTIONS(4130), + [anon_sym_expect] = ACTIONS(4130), + [anon_sym_actual] = ACTIONS(4130), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4132), + [sym_safe_nav] = ACTIONS(4132), + [sym_multiline_comment] = ACTIONS(3), + }, + [2890] = { + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [2891] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(5129), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -353857,70 +352510,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2886] = { - [sym_getter] = STATE(4866), - [sym_setter] = STATE(4866), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4764), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2892] = { + [sym_type_constraints] = STATE(3147), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6516), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [2893] = { + [sym_getter] = STATE(4018), + [sym_setter] = STATE(4018), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -353945,135 +352684,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2887] = { - [aux_sym_nullable_type_repeat1] = STATE(2887), - [sym__alpha_identifier] = ACTIONS(4262), - [anon_sym_AT] = ACTIONS(4264), - [anon_sym_LBRACK] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4262), - [anon_sym_EQ] = ACTIONS(4262), - [anon_sym_fun] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_LPAREN] = ACTIONS(4264), - [anon_sym_COMMA] = ACTIONS(4264), - [anon_sym_by] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4262), - [anon_sym_GT] = ACTIONS(4262), - [anon_sym_where] = ACTIONS(4262), - [anon_sym_object] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym_get] = ACTIONS(4262), - [anon_sym_set] = ACTIONS(4262), - [anon_sym_this] = ACTIONS(4262), - [anon_sym_super] = ACTIONS(4262), - [sym__quest] = ACTIONS(6566), - [anon_sym_STAR] = ACTIONS(4262), - [sym_label] = ACTIONS(4262), - [anon_sym_in] = ACTIONS(4262), - [anon_sym_DOT_DOT] = ACTIONS(4264), - [anon_sym_QMARK_COLON] = ACTIONS(4264), - [anon_sym_AMP_AMP] = ACTIONS(4264), - [anon_sym_PIPE_PIPE] = ACTIONS(4264), - [anon_sym_null] = ACTIONS(4262), - [anon_sym_if] = ACTIONS(4262), - [anon_sym_else] = ACTIONS(4262), - [anon_sym_when] = ACTIONS(4262), - [anon_sym_try] = ACTIONS(4262), - [anon_sym_throw] = ACTIONS(4262), - [anon_sym_return] = ACTIONS(4262), - [anon_sym_continue] = ACTIONS(4262), - [anon_sym_break] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_PLUS_EQ] = ACTIONS(4264), - [anon_sym_DASH_EQ] = ACTIONS(4264), - [anon_sym_STAR_EQ] = ACTIONS(4264), - [anon_sym_SLASH_EQ] = ACTIONS(4264), - [anon_sym_PERCENT_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), - [anon_sym_LT_EQ] = ACTIONS(4264), - [anon_sym_GT_EQ] = ACTIONS(4264), - [anon_sym_BANGin] = ACTIONS(4264), - [anon_sym_is] = ACTIONS(4262), - [anon_sym_BANGis] = ACTIONS(4264), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4262), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_as_QMARK] = ACTIONS(4264), - [anon_sym_PLUS_PLUS] = ACTIONS(4264), - [anon_sym_DASH_DASH] = ACTIONS(4264), - [anon_sym_BANG] = ACTIONS(4262), - [anon_sym_BANG_BANG] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4262), - [anon_sym_inner] = ACTIONS(4262), - [anon_sym_value] = ACTIONS(4262), - [anon_sym_expect] = ACTIONS(4262), - [anon_sym_actual] = ACTIONS(4262), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4264), - [anon_sym_continue_AT] = ACTIONS(4264), - [anon_sym_break_AT] = ACTIONS(4264), - [anon_sym_this_AT] = ACTIONS(4264), - [anon_sym_super_AT] = ACTIONS(4264), - [sym_real_literal] = ACTIONS(4264), - [sym_integer_literal] = ACTIONS(4262), - [sym_hex_literal] = ACTIONS(4264), - [sym_bin_literal] = ACTIONS(4264), - [anon_sym_true] = ACTIONS(4262), - [anon_sym_false] = ACTIONS(4262), - [anon_sym_SQUOTE] = ACTIONS(4264), - [sym__backtick_identifier] = ACTIONS(4264), - [sym__automatic_semicolon] = ACTIONS(4264), - [sym_safe_nav] = ACTIONS(4264), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4264), - }, - [2888] = { - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2894] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_as] = ACTIONS(3344), [anon_sym_LBRACE] = ACTIONS(3346), [anon_sym_RBRACE] = ACTIONS(3346), [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), [anon_sym_LT] = ACTIONS(3344), [anon_sym_GT] = ACTIONS(3344), [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), + [anon_sym_SEMI] = ACTIONS(6406), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), [anon_sym_STAR] = ACTIONS(3346), [sym_label] = ACTIONS(3346), [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), [anon_sym_DOT_DOT] = ACTIONS(3346), [anon_sym_QMARK_COLON] = ACTIONS(3346), [anon_sym_AMP_AMP] = ACTIONS(3346), @@ -354121,389 +352771,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2889] = { - [sym_type_constraints] = STATE(3313), - [sym_function_body] = STATE(3314), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6569), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [2895] = { + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [2890] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4022), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_typealias] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4025), - [anon_sym_fun] = ACTIONS(4025), - [anon_sym_interface] = ACTIONS(4025), - [anon_sym_enum] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_val] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4025), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4027), - [anon_sym_set] = ACTIONS(4027), - [anon_sym_STAR] = ACTIONS(4010), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4027), - [anon_sym_sealed] = ACTIONS(4027), - [anon_sym_annotation] = ACTIONS(4027), - [anon_sym_data] = ACTIONS(4027), - [anon_sym_inner] = ACTIONS(4027), - [anon_sym_value] = ACTIONS(4027), - [anon_sym_override] = ACTIONS(4027), - [anon_sym_lateinit] = ACTIONS(4027), - [anon_sym_public] = ACTIONS(4027), - [anon_sym_private] = ACTIONS(4027), - [anon_sym_internal] = ACTIONS(4027), - [anon_sym_protected] = ACTIONS(4027), - [anon_sym_tailrec] = ACTIONS(4027), - [anon_sym_operator] = ACTIONS(4027), - [anon_sym_infix] = ACTIONS(4027), - [anon_sym_inline] = ACTIONS(4027), - [anon_sym_external] = ACTIONS(4027), - [sym_property_modifier] = ACTIONS(4027), - [anon_sym_abstract] = ACTIONS(4027), - [anon_sym_final] = ACTIONS(4027), - [anon_sym_open] = ACTIONS(4027), - [anon_sym_vararg] = ACTIONS(4027), - [anon_sym_noinline] = ACTIONS(4027), - [anon_sym_crossinline] = ACTIONS(4027), - [anon_sym_expect] = ACTIONS(4027), - [anon_sym_actual] = ACTIONS(4027), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4015), - [sym__automatic_semicolon] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), + [2896] = { + [sym_class_body] = STATE(3206), + [sym_type_constraints] = STATE(3024), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(6518), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, - [2891] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_typealias] = ACTIONS(4017), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4017), - [anon_sym_fun] = ACTIONS(4017), - [anon_sym_interface] = ACTIONS(4017), - [anon_sym_enum] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_val] = ACTIONS(4017), - [anon_sym_var] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4017), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4010), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4019), - [anon_sym_sealed] = ACTIONS(4019), - [anon_sym_annotation] = ACTIONS(4019), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_value] = ACTIONS(4019), - [anon_sym_override] = ACTIONS(4019), - [anon_sym_lateinit] = ACTIONS(4019), - [anon_sym_public] = ACTIONS(4019), - [anon_sym_private] = ACTIONS(4019), - [anon_sym_internal] = ACTIONS(4019), - [anon_sym_protected] = ACTIONS(4019), - [anon_sym_tailrec] = ACTIONS(4019), - [anon_sym_operator] = ACTIONS(4019), - [anon_sym_infix] = ACTIONS(4019), - [anon_sym_inline] = ACTIONS(4019), - [anon_sym_external] = ACTIONS(4019), - [sym_property_modifier] = ACTIONS(4019), - [anon_sym_abstract] = ACTIONS(4019), - [anon_sym_final] = ACTIONS(4019), - [anon_sym_open] = ACTIONS(4019), - [anon_sym_vararg] = ACTIONS(4019), - [anon_sym_noinline] = ACTIONS(4019), - [anon_sym_crossinline] = ACTIONS(4019), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4015), - [sym__automatic_semicolon] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), + [2897] = { + [sym_type_constraints] = STATE(3136), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(6520), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_RBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_DASH_GT] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, - [2892] = { - [sym__alpha_identifier] = ACTIONS(4215), - [anon_sym_AT] = ACTIONS(4217), - [anon_sym_LBRACK] = ACTIONS(4217), - [anon_sym_RBRACK] = ACTIONS(4217), - [anon_sym_as] = ACTIONS(4215), - [anon_sym_EQ] = ACTIONS(4215), - [anon_sym_fun] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4217), - [anon_sym_COMMA] = ACTIONS(4217), - [anon_sym_RPAREN] = ACTIONS(4217), - [anon_sym_LT] = ACTIONS(4215), - [anon_sym_GT] = ACTIONS(4215), - [anon_sym_where] = ACTIONS(4215), - [anon_sym_object] = ACTIONS(4215), - [anon_sym_DOT] = ACTIONS(4215), - [anon_sym_SEMI] = ACTIONS(4217), - [anon_sym_get] = ACTIONS(4215), - [anon_sym_set] = ACTIONS(4215), - [anon_sym_this] = ACTIONS(4215), - [anon_sym_super] = ACTIONS(4215), - [anon_sym_STAR] = ACTIONS(4215), - [anon_sym_DASH_GT] = ACTIONS(4217), - [sym_label] = ACTIONS(4215), - [anon_sym_in] = ACTIONS(4215), - [anon_sym_while] = ACTIONS(4215), - [anon_sym_DOT_DOT] = ACTIONS(4217), - [anon_sym_QMARK_COLON] = ACTIONS(4217), - [anon_sym_AMP_AMP] = ACTIONS(4217), - [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4215), - [anon_sym_if] = ACTIONS(4215), - [anon_sym_else] = ACTIONS(4215), - [anon_sym_when] = ACTIONS(4215), - [anon_sym_try] = ACTIONS(4215), - [anon_sym_throw] = ACTIONS(4215), - [anon_sym_return] = ACTIONS(4215), - [anon_sym_continue] = ACTIONS(4215), - [anon_sym_break] = ACTIONS(4215), - [anon_sym_COLON_COLON] = ACTIONS(4217), - [anon_sym_PLUS_EQ] = ACTIONS(4217), - [anon_sym_DASH_EQ] = ACTIONS(4217), - [anon_sym_STAR_EQ] = ACTIONS(4217), - [anon_sym_SLASH_EQ] = ACTIONS(4217), - [anon_sym_PERCENT_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ] = ACTIONS(4215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ] = ACTIONS(4215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), - [anon_sym_LT_EQ] = ACTIONS(4217), - [anon_sym_GT_EQ] = ACTIONS(4217), - [anon_sym_BANGin] = ACTIONS(4217), - [anon_sym_is] = ACTIONS(4215), - [anon_sym_BANGis] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4215), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_SLASH] = ACTIONS(4215), - [anon_sym_PERCENT] = ACTIONS(4215), - [anon_sym_as_QMARK] = ACTIONS(4217), - [anon_sym_PLUS_PLUS] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4217), - [anon_sym_BANG] = ACTIONS(4215), - [anon_sym_BANG_BANG] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4215), - [anon_sym_inner] = ACTIONS(4215), - [anon_sym_value] = ACTIONS(4215), - [anon_sym_expect] = ACTIONS(4215), - [anon_sym_actual] = ACTIONS(4215), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4217), - [anon_sym_continue_AT] = ACTIONS(4217), - [anon_sym_break_AT] = ACTIONS(4217), - [anon_sym_this_AT] = ACTIONS(4217), - [anon_sym_super_AT] = ACTIONS(4217), - [sym_real_literal] = ACTIONS(4217), - [sym_integer_literal] = ACTIONS(4215), - [sym_hex_literal] = ACTIONS(4217), - [sym_bin_literal] = ACTIONS(4217), - [anon_sym_true] = ACTIONS(4215), - [anon_sym_false] = ACTIONS(4215), - [anon_sym_SQUOTE] = ACTIONS(4217), - [sym__backtick_identifier] = ACTIONS(4217), - [sym_safe_nav] = ACTIONS(4217), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4217), - }, - [2893] = { - [aux_sym_nullable_type_repeat1] = STATE(2944), + [2898] = { + [sym_class_body] = STATE(3206), + [sym_type_constraints] = STATE(3024), [sym__alpha_identifier] = ACTIONS(4327), [anon_sym_AT] = ACTIONS(4329), [anon_sym_LBRACK] = ACTIONS(4329), [anon_sym_as] = ACTIONS(4327), [anon_sym_EQ] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(3262), [anon_sym_RBRACE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4327), [anon_sym_LT] = ACTIONS(4327), [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3256), [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), [anon_sym_DOT] = ACTIONS(4327), [anon_sym_SEMI] = ACTIONS(4329), [anon_sym_get] = ACTIONS(4327), [anon_sym_set] = ACTIONS(4327), [anon_sym_this] = ACTIONS(4327), [anon_sym_super] = ACTIONS(4327), - [sym__quest] = ACTIONS(6571), [anon_sym_STAR] = ACTIONS(4327), [sym_label] = ACTIONS(4327), [anon_sym_in] = ACTIONS(4327), @@ -354568,40 +353127,1169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4329), }, - [2894] = { - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2899] = { + [sym_type_arguments] = STATE(3025), + [sym__alpha_identifier] = ACTIONS(4128), + [anon_sym_AT] = ACTIONS(4189), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_RBRACK] = ACTIONS(4189), + [anon_sym_as] = ACTIONS(4128), + [anon_sym_EQ] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_RBRACE] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_COMMA] = ACTIONS(4189), + [anon_sym_RPAREN] = ACTIONS(4189), + [anon_sym_by] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(6522), + [anon_sym_GT] = ACTIONS(4128), + [anon_sym_where] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4189), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4128), + [sym__quest] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4128), + [anon_sym_DASH_GT] = ACTIONS(4189), + [sym_label] = ACTIONS(4189), + [anon_sym_in] = ACTIONS(4128), + [anon_sym_while] = ACTIONS(4128), + [anon_sym_DOT_DOT] = ACTIONS(4189), + [anon_sym_QMARK_COLON] = ACTIONS(4189), + [anon_sym_AMP_AMP] = ACTIONS(4189), + [anon_sym_PIPE_PIPE] = ACTIONS(4189), + [anon_sym_else] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4189), + [anon_sym_PLUS_EQ] = ACTIONS(4189), + [anon_sym_DASH_EQ] = ACTIONS(4189), + [anon_sym_STAR_EQ] = ACTIONS(4189), + [anon_sym_SLASH_EQ] = ACTIONS(4189), + [anon_sym_PERCENT_EQ] = ACTIONS(4189), + [anon_sym_BANG_EQ] = ACTIONS(4128), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), + [anon_sym_EQ_EQ] = ACTIONS(4128), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), + [anon_sym_LT_EQ] = ACTIONS(4189), + [anon_sym_GT_EQ] = ACTIONS(4189), + [anon_sym_BANGin] = ACTIONS(4189), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4189), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_SLASH] = ACTIONS(4128), + [anon_sym_PERCENT] = ACTIONS(4128), + [anon_sym_as_QMARK] = ACTIONS(4189), + [anon_sym_PLUS_PLUS] = ACTIONS(4189), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_BANG_BANG] = ACTIONS(4189), + [anon_sym_suspend] = ACTIONS(4128), + [anon_sym_sealed] = ACTIONS(4128), + [anon_sym_annotation] = ACTIONS(4128), + [anon_sym_data] = ACTIONS(4128), + [anon_sym_inner] = ACTIONS(4128), + [anon_sym_value] = ACTIONS(4128), + [anon_sym_override] = ACTIONS(4128), + [anon_sym_lateinit] = ACTIONS(4128), + [anon_sym_public] = ACTIONS(4128), + [anon_sym_private] = ACTIONS(4128), + [anon_sym_internal] = ACTIONS(4128), + [anon_sym_protected] = ACTIONS(4128), + [anon_sym_tailrec] = ACTIONS(4128), + [anon_sym_operator] = ACTIONS(4128), + [anon_sym_infix] = ACTIONS(4128), + [anon_sym_inline] = ACTIONS(4128), + [anon_sym_external] = ACTIONS(4128), + [sym_property_modifier] = ACTIONS(4128), + [anon_sym_abstract] = ACTIONS(4128), + [anon_sym_final] = ACTIONS(4128), + [anon_sym_open] = ACTIONS(4128), + [anon_sym_vararg] = ACTIONS(4128), + [anon_sym_noinline] = ACTIONS(4128), + [anon_sym_crossinline] = ACTIONS(4128), + [anon_sym_expect] = ACTIONS(4128), + [anon_sym_actual] = ACTIONS(4128), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4189), + [sym_safe_nav] = ACTIONS(4189), + [sym_multiline_comment] = ACTIONS(3), + }, + [2900] = { + [sym_value_arguments] = STATE(3237), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(6524), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), + }, + [2901] = { + [sym_type_constraints] = STATE(3224), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [2902] = { + [sym_class_body] = STATE(3247), + [sym_type_constraints] = STATE(3009), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4355), + [anon_sym_fun] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_this] = ACTIONS(4355), + [anon_sym_super] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_null] = ACTIONS(4355), + [anon_sym_if] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_when] = ACTIONS(4355), + [anon_sym_try] = ACTIONS(4355), + [anon_sym_throw] = ACTIONS(4355), + [anon_sym_return] = ACTIONS(4355), + [anon_sym_continue] = ACTIONS(4355), + [anon_sym_break] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4357), + [anon_sym_continue_AT] = ACTIONS(4357), + [anon_sym_break_AT] = ACTIONS(4357), + [anon_sym_this_AT] = ACTIONS(4357), + [anon_sym_super_AT] = ACTIONS(4357), + [sym_real_literal] = ACTIONS(4357), + [sym_integer_literal] = ACTIONS(4355), + [sym_hex_literal] = ACTIONS(4357), + [sym_bin_literal] = ACTIONS(4357), + [anon_sym_true] = ACTIONS(4355), + [anon_sym_false] = ACTIONS(4355), + [anon_sym_SQUOTE] = ACTIONS(4357), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4357), + }, + [2903] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + }, + [2904] = { + [sym_type_constraints] = STATE(3007), + [sym_enum_class_body] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [2905] = { + [aux_sym_user_type_repeat1] = STATE(2905), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_RBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_RPAREN] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(6526), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4168), + [sym_label] = ACTIONS(4168), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_while] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + }, + [2906] = { + [sym_type_constraints] = STATE(3119), + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6529), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_RBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + }, + [2907] = { + [sym_type_constraints] = STATE(3007), + [sym_enum_class_body] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6531), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [2908] = { + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [2909] = { + [sym_type_constraints] = STATE(3107), + [sym_function_body] = STATE(3552), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6533), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_RBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_RPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [anon_sym_DASH_GT] = ACTIONS(4175), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_while] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + }, + [2910] = { + [aux_sym_user_type_repeat1] = STATE(2905), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_RBRACK] = ACTIONS(4155), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_RPAREN] = ACTIONS(4155), + [anon_sym_by] = ACTIONS(4153), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(4153), + [anon_sym_DOT] = ACTIONS(6535), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4153), + [sym__quest] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4153), + [anon_sym_DASH_GT] = ACTIONS(4155), + [sym_label] = ACTIONS(4155), + [anon_sym_in] = ACTIONS(4153), + [anon_sym_while] = ACTIONS(4153), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_QMARK_COLON] = ACTIONS(4155), + [anon_sym_AMP_AMP] = ACTIONS(4155), + [anon_sym_PIPE_PIPE] = ACTIONS(4155), + [anon_sym_else] = ACTIONS(4153), + [anon_sym_COLON_COLON] = ACTIONS(4155), + [anon_sym_PLUS_EQ] = ACTIONS(4155), + [anon_sym_DASH_EQ] = ACTIONS(4155), + [anon_sym_STAR_EQ] = ACTIONS(4155), + [anon_sym_SLASH_EQ] = ACTIONS(4155), + [anon_sym_PERCENT_EQ] = ACTIONS(4155), + [anon_sym_BANG_EQ] = ACTIONS(4153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4155), + [anon_sym_EQ_EQ] = ACTIONS(4153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4155), + [anon_sym_LT_EQ] = ACTIONS(4155), + [anon_sym_GT_EQ] = ACTIONS(4155), + [anon_sym_BANGin] = ACTIONS(4155), + [anon_sym_is] = ACTIONS(4153), + [anon_sym_BANGis] = ACTIONS(4155), + [anon_sym_PLUS] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_SLASH] = ACTIONS(4153), + [anon_sym_PERCENT] = ACTIONS(4153), + [anon_sym_as_QMARK] = ACTIONS(4155), + [anon_sym_PLUS_PLUS] = ACTIONS(4155), + [anon_sym_DASH_DASH] = ACTIONS(4155), + [anon_sym_BANG_BANG] = ACTIONS(4155), + [anon_sym_suspend] = ACTIONS(4153), + [anon_sym_sealed] = ACTIONS(4153), + [anon_sym_annotation] = ACTIONS(4153), + [anon_sym_data] = ACTIONS(4153), + [anon_sym_inner] = ACTIONS(4153), + [anon_sym_value] = ACTIONS(4153), + [anon_sym_override] = ACTIONS(4153), + [anon_sym_lateinit] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4153), + [anon_sym_private] = ACTIONS(4153), + [anon_sym_internal] = ACTIONS(4153), + [anon_sym_protected] = ACTIONS(4153), + [anon_sym_tailrec] = ACTIONS(4153), + [anon_sym_operator] = ACTIONS(4153), + [anon_sym_infix] = ACTIONS(4153), + [anon_sym_inline] = ACTIONS(4153), + [anon_sym_external] = ACTIONS(4153), + [sym_property_modifier] = ACTIONS(4153), + [anon_sym_abstract] = ACTIONS(4153), + [anon_sym_final] = ACTIONS(4153), + [anon_sym_open] = ACTIONS(4153), + [anon_sym_vararg] = ACTIONS(4153), + [anon_sym_noinline] = ACTIONS(4153), + [anon_sym_crossinline] = ACTIONS(4153), + [anon_sym_expect] = ACTIONS(4153), + [anon_sym_actual] = ACTIONS(4153), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4155), + [sym_safe_nav] = ACTIONS(4155), + [sym_multiline_comment] = ACTIONS(3), + }, + [2911] = { + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [2912] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), + [anon_sym_SEMI] = ACTIONS(5143), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), [anon_sym_STAR] = ACTIONS(1734), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), @@ -354649,135 +354337,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2895] = { - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4703), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - }, - [2896] = { - [sym_getter] = STATE(4824), - [sym_setter] = STATE(4824), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2913] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(1732), [anon_sym_GT] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4794), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), [anon_sym_STAR] = ACTIONS(1734), [sym_label] = ACTIONS(1734), [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), [anon_sym_DOT_DOT] = ACTIONS(1734), [anon_sym_QMARK_COLON] = ACTIONS(1734), [anon_sym_AMP_AMP] = ACTIONS(1734), @@ -354825,246 +354424,1374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2897] = { - [sym_getter] = STATE(3525), - [sym_setter] = STATE(3525), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), + [2914] = { + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_object] = ACTIONS(4455), + [anon_sym_fun] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_this] = ACTIONS(4455), + [anon_sym_super] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [sym_label] = ACTIONS(4455), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_null] = ACTIONS(4455), + [anon_sym_if] = ACTIONS(4455), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_when] = ACTIONS(4455), + [anon_sym_try] = ACTIONS(4455), + [anon_sym_throw] = ACTIONS(4455), + [anon_sym_return] = ACTIONS(4455), + [anon_sym_continue] = ACTIONS(4455), + [anon_sym_break] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4455), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4457), + [anon_sym_continue_AT] = ACTIONS(4457), + [anon_sym_break_AT] = ACTIONS(4457), + [anon_sym_this_AT] = ACTIONS(4457), + [anon_sym_super_AT] = ACTIONS(4457), + [sym_real_literal] = ACTIONS(4457), + [sym_integer_literal] = ACTIONS(4455), + [sym_hex_literal] = ACTIONS(4457), + [sym_bin_literal] = ACTIONS(4457), + [aux_sym_unsigned_literal_token1] = ACTIONS(6538), + [anon_sym_L] = ACTIONS(6540), + [anon_sym_true] = ACTIONS(4455), + [anon_sym_false] = ACTIONS(4455), + [anon_sym_SQUOTE] = ACTIONS(4457), + [sym__backtick_identifier] = ACTIONS(4457), + [sym__automatic_semicolon] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4457), }, - [2898] = { - [sym_catch_block] = STATE(3031), - [sym_finally_block] = STATE(3487), - [aux_sym_try_expression_repeat1] = STATE(3031), - [sym__alpha_identifier] = ACTIONS(4130), - [anon_sym_AT] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_RBRACK] = ACTIONS(4132), - [anon_sym_as] = ACTIONS(4130), - [anon_sym_EQ] = ACTIONS(4130), - [anon_sym_LBRACE] = ACTIONS(4132), - [anon_sym_RBRACE] = ACTIONS(4132), - [anon_sym_LPAREN] = ACTIONS(4132), - [anon_sym_COMMA] = ACTIONS(4132), - [anon_sym_RPAREN] = ACTIONS(4132), - [anon_sym_LT] = ACTIONS(4130), - [anon_sym_GT] = ACTIONS(4130), - [anon_sym_where] = ACTIONS(4130), - [anon_sym_DOT] = ACTIONS(4130), - [anon_sym_SEMI] = ACTIONS(4132), - [anon_sym_get] = ACTIONS(4130), - [anon_sym_set] = ACTIONS(4130), - [anon_sym_STAR] = ACTIONS(4130), - [anon_sym_DASH_GT] = ACTIONS(4132), - [sym_label] = ACTIONS(4132), - [anon_sym_in] = ACTIONS(4130), - [anon_sym_while] = ACTIONS(4130), - [anon_sym_DOT_DOT] = ACTIONS(4132), - [anon_sym_QMARK_COLON] = ACTIONS(4132), - [anon_sym_AMP_AMP] = ACTIONS(4132), - [anon_sym_PIPE_PIPE] = ACTIONS(4132), - [anon_sym_else] = ACTIONS(4130), - [anon_sym_catch] = ACTIONS(6573), - [anon_sym_finally] = ACTIONS(6575), - [anon_sym_COLON_COLON] = ACTIONS(4132), - [anon_sym_PLUS_EQ] = ACTIONS(4132), - [anon_sym_DASH_EQ] = ACTIONS(4132), - [anon_sym_STAR_EQ] = ACTIONS(4132), - [anon_sym_SLASH_EQ] = ACTIONS(4132), - [anon_sym_PERCENT_EQ] = ACTIONS(4132), - [anon_sym_BANG_EQ] = ACTIONS(4130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4132), - [anon_sym_EQ_EQ] = ACTIONS(4130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4132), - [anon_sym_LT_EQ] = ACTIONS(4132), - [anon_sym_GT_EQ] = ACTIONS(4132), - [anon_sym_BANGin] = ACTIONS(4132), - [anon_sym_is] = ACTIONS(4130), - [anon_sym_BANGis] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4130), - [anon_sym_DASH] = ACTIONS(4130), - [anon_sym_SLASH] = ACTIONS(4130), - [anon_sym_PERCENT] = ACTIONS(4130), - [anon_sym_as_QMARK] = ACTIONS(4132), - [anon_sym_PLUS_PLUS] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4132), - [anon_sym_BANG_BANG] = ACTIONS(4132), - [anon_sym_suspend] = ACTIONS(4130), - [anon_sym_sealed] = ACTIONS(4130), - [anon_sym_annotation] = ACTIONS(4130), - [anon_sym_data] = ACTIONS(4130), - [anon_sym_inner] = ACTIONS(4130), - [anon_sym_value] = ACTIONS(4130), - [anon_sym_override] = ACTIONS(4130), - [anon_sym_lateinit] = ACTIONS(4130), - [anon_sym_public] = ACTIONS(4130), - [anon_sym_private] = ACTIONS(4130), - [anon_sym_internal] = ACTIONS(4130), - [anon_sym_protected] = ACTIONS(4130), - [anon_sym_tailrec] = ACTIONS(4130), - [anon_sym_operator] = ACTIONS(4130), - [anon_sym_infix] = ACTIONS(4130), - [anon_sym_inline] = ACTIONS(4130), - [anon_sym_external] = ACTIONS(4130), - [sym_property_modifier] = ACTIONS(4130), - [anon_sym_abstract] = ACTIONS(4130), - [anon_sym_final] = ACTIONS(4130), - [anon_sym_open] = ACTIONS(4130), - [anon_sym_vararg] = ACTIONS(4130), - [anon_sym_noinline] = ACTIONS(4130), - [anon_sym_crossinline] = ACTIONS(4130), - [anon_sym_expect] = ACTIONS(4130), - [anon_sym_actual] = ACTIONS(4130), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4132), - [sym_safe_nav] = ACTIONS(4132), - [sym_multiline_comment] = ACTIONS(3), + [2915] = { + [aux_sym_user_type_repeat1] = STATE(2807), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_object] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6542), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_this] = ACTIONS(4193), + [anon_sym_super] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [sym_label] = ACTIONS(4193), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_when] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_throw] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4195), + [anon_sym_continue_AT] = ACTIONS(4195), + [anon_sym_break_AT] = ACTIONS(4195), + [anon_sym_this_AT] = ACTIONS(4195), + [anon_sym_super_AT] = ACTIONS(4195), + [sym_real_literal] = ACTIONS(4195), + [sym_integer_literal] = ACTIONS(4193), + [sym_hex_literal] = ACTIONS(4195), + [sym_bin_literal] = ACTIONS(4195), + [anon_sym_true] = ACTIONS(4193), + [anon_sym_false] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4195), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4195), }, - [2899] = { - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2916] = { + [sym_type_constraints] = STATE(3267), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [2917] = { + [sym_class_body] = STATE(3255), + [sym_type_constraints] = STATE(3006), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [2918] = { + [aux_sym_user_type_repeat1] = STATE(2918), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4168), + [sym__quest] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), + }, + [2919] = { + [sym_class_body] = STATE(3255), + [sym_type_constraints] = STATE(3006), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6548), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [2920] = { + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [2921] = { + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), + }, + [2922] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_catch] = ACTIONS(4451), + [anon_sym_finally] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [2923] = { + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [2924] = { + [sym_class_body] = STATE(3241), + [sym_type_constraints] = STATE(3002), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4493), + [anon_sym_fun] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_this] = ACTIONS(4493), + [anon_sym_super] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_null] = ACTIONS(4493), + [anon_sym_if] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_when] = ACTIONS(4493), + [anon_sym_try] = ACTIONS(4493), + [anon_sym_throw] = ACTIONS(4493), + [anon_sym_return] = ACTIONS(4493), + [anon_sym_continue] = ACTIONS(4493), + [anon_sym_break] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4495), + [anon_sym_continue_AT] = ACTIONS(4495), + [anon_sym_break_AT] = ACTIONS(4495), + [anon_sym_this_AT] = ACTIONS(4495), + [anon_sym_super_AT] = ACTIONS(4495), + [sym_real_literal] = ACTIONS(4495), + [sym_integer_literal] = ACTIONS(4493), + [sym_hex_literal] = ACTIONS(4495), + [sym_bin_literal] = ACTIONS(4495), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [anon_sym_SQUOTE] = ACTIONS(4495), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4495), + }, + [2925] = { + [sym_type_constraints] = STATE(3001), + [sym_enum_class_body] = STATE(3239), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), + }, + [2926] = { + [sym_type_arguments] = STATE(6538), + [sym__alpha_identifier] = ACTIONS(4122), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_COLON] = ACTIONS(6550), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_EQ] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_RBRACE] = ACTIONS(4124), + [anon_sym_LPAREN] = ACTIONS(4124), + [anon_sym_by] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(6552), + [anon_sym_where] = ACTIONS(4122), + [anon_sym_object] = ACTIONS(4122), + [anon_sym_fun] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym_get] = ACTIONS(4122), + [anon_sym_set] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_super] = ACTIONS(4122), + [sym__quest] = ACTIONS(4189), + [anon_sym_STAR] = ACTIONS(4124), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4122), + [anon_sym_if] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4122), + [anon_sym_when] = ACTIONS(4122), + [anon_sym_try] = ACTIONS(4122), + [anon_sym_throw] = ACTIONS(4122), + [anon_sym_return] = ACTIONS(4122), + [anon_sym_continue] = ACTIONS(4122), + [anon_sym_break] = ACTIONS(4122), + [anon_sym_COLON_COLON] = ACTIONS(4124), + [anon_sym_BANGin] = ACTIONS(4124), + [anon_sym_is] = ACTIONS(4122), + [anon_sym_BANGis] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4122), + [anon_sym_sealed] = ACTIONS(4122), + [anon_sym_annotation] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4122), + [anon_sym_inner] = ACTIONS(4122), + [anon_sym_value] = ACTIONS(4122), + [anon_sym_override] = ACTIONS(4122), + [anon_sym_lateinit] = ACTIONS(4122), + [anon_sym_public] = ACTIONS(4122), + [anon_sym_private] = ACTIONS(4122), + [anon_sym_internal] = ACTIONS(4122), + [anon_sym_protected] = ACTIONS(4122), + [anon_sym_tailrec] = ACTIONS(4122), + [anon_sym_operator] = ACTIONS(4122), + [anon_sym_infix] = ACTIONS(4122), + [anon_sym_inline] = ACTIONS(4122), + [anon_sym_external] = ACTIONS(4122), + [sym_property_modifier] = ACTIONS(4122), + [anon_sym_abstract] = ACTIONS(4122), + [anon_sym_final] = ACTIONS(4122), + [anon_sym_open] = ACTIONS(4122), + [anon_sym_vararg] = ACTIONS(4122), + [anon_sym_noinline] = ACTIONS(4122), + [anon_sym_crossinline] = ACTIONS(4122), + [anon_sym_expect] = ACTIONS(4122), + [anon_sym_actual] = ACTIONS(4122), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4124), + [anon_sym_continue_AT] = ACTIONS(4124), + [anon_sym_break_AT] = ACTIONS(4124), + [anon_sym_this_AT] = ACTIONS(4124), + [anon_sym_super_AT] = ACTIONS(4124), + [sym_real_literal] = ACTIONS(4124), + [sym_integer_literal] = ACTIONS(4122), + [sym_hex_literal] = ACTIONS(4124), + [sym_bin_literal] = ACTIONS(4124), + [anon_sym_true] = ACTIONS(4122), + [anon_sym_false] = ACTIONS(4122), + [anon_sym_SQUOTE] = ACTIONS(4124), + [sym__backtick_identifier] = ACTIONS(4124), + [sym__automatic_semicolon] = ACTIONS(4124), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4124), + }, + [2927] = { + [sym_function_body] = STATE(3110), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), + }, + [2928] = { + [aux_sym_user_type_repeat1] = STATE(2918), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_EQ] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_by] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(4153), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_fun] = ACTIONS(4153), + [anon_sym_DOT] = ACTIONS(6554), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_this] = ACTIONS(4153), + [anon_sym_super] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4155), + [sym__quest] = ACTIONS(4155), + [anon_sym_STAR] = ACTIONS(4155), + [sym_label] = ACTIONS(4153), + [anon_sym_in] = ACTIONS(4153), + [anon_sym_null] = ACTIONS(4153), + [anon_sym_if] = ACTIONS(4153), + [anon_sym_else] = ACTIONS(4153), + [anon_sym_when] = ACTIONS(4153), + [anon_sym_try] = ACTIONS(4153), + [anon_sym_throw] = ACTIONS(4153), + [anon_sym_return] = ACTIONS(4153), + [anon_sym_continue] = ACTIONS(4153), + [anon_sym_break] = ACTIONS(4153), + [anon_sym_COLON_COLON] = ACTIONS(4155), + [anon_sym_BANGin] = ACTIONS(4155), + [anon_sym_is] = ACTIONS(4153), + [anon_sym_BANGis] = ACTIONS(4155), + [anon_sym_PLUS] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_PLUS_PLUS] = ACTIONS(4155), + [anon_sym_DASH_DASH] = ACTIONS(4155), + [anon_sym_BANG] = ACTIONS(4153), + [anon_sym_suspend] = ACTIONS(4153), + [anon_sym_sealed] = ACTIONS(4153), + [anon_sym_annotation] = ACTIONS(4153), + [anon_sym_data] = ACTIONS(4153), + [anon_sym_inner] = ACTIONS(4153), + [anon_sym_value] = ACTIONS(4153), + [anon_sym_override] = ACTIONS(4153), + [anon_sym_lateinit] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4153), + [anon_sym_private] = ACTIONS(4153), + [anon_sym_internal] = ACTIONS(4153), + [anon_sym_protected] = ACTIONS(4153), + [anon_sym_tailrec] = ACTIONS(4153), + [anon_sym_operator] = ACTIONS(4153), + [anon_sym_infix] = ACTIONS(4153), + [anon_sym_inline] = ACTIONS(4153), + [anon_sym_external] = ACTIONS(4153), + [sym_property_modifier] = ACTIONS(4153), + [anon_sym_abstract] = ACTIONS(4153), + [anon_sym_final] = ACTIONS(4153), + [anon_sym_open] = ACTIONS(4153), + [anon_sym_vararg] = ACTIONS(4153), + [anon_sym_noinline] = ACTIONS(4153), + [anon_sym_crossinline] = ACTIONS(4153), + [anon_sym_expect] = ACTIONS(4153), + [anon_sym_actual] = ACTIONS(4153), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4155), + [anon_sym_continue_AT] = ACTIONS(4155), + [anon_sym_break_AT] = ACTIONS(4155), + [anon_sym_this_AT] = ACTIONS(4155), + [anon_sym_super_AT] = ACTIONS(4155), + [sym_real_literal] = ACTIONS(4155), + [sym_integer_literal] = ACTIONS(4153), + [sym_hex_literal] = ACTIONS(4155), + [sym_bin_literal] = ACTIONS(4155), + [anon_sym_true] = ACTIONS(4153), + [anon_sym_false] = ACTIONS(4153), + [anon_sym_SQUOTE] = ACTIONS(4155), + [sym__backtick_identifier] = ACTIONS(4155), + [sym__automatic_semicolon] = ACTIONS(4155), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4155), + }, + [2929] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(5157), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -355089,70 +355816,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2900] = { - [sym_getter] = STATE(4974), - [sym_setter] = STATE(4974), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4762), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2930] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -355177,223 +355903,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2901] = { - [sym_function_body] = STATE(3185), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(6577), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_where] = ACTIONS(4269), - [anon_sym_object] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_this] = ACTIONS(4269), - [anon_sym_super] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4269), - [sym_label] = ACTIONS(4269), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_null] = ACTIONS(4269), - [anon_sym_if] = ACTIONS(4269), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_when] = ACTIONS(4269), - [anon_sym_try] = ACTIONS(4269), - [anon_sym_throw] = ACTIONS(4269), - [anon_sym_return] = ACTIONS(4269), - [anon_sym_continue] = ACTIONS(4269), - [anon_sym_break] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_PLUS_EQ] = ACTIONS(4271), - [anon_sym_DASH_EQ] = ACTIONS(4271), - [anon_sym_STAR_EQ] = ACTIONS(4271), - [anon_sym_SLASH_EQ] = ACTIONS(4271), - [anon_sym_PERCENT_EQ] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4269), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4269), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4271), - [anon_sym_continue_AT] = ACTIONS(4271), - [anon_sym_break_AT] = ACTIONS(4271), - [anon_sym_this_AT] = ACTIONS(4271), - [anon_sym_super_AT] = ACTIONS(4271), - [sym_real_literal] = ACTIONS(4271), - [sym_integer_literal] = ACTIONS(4269), - [sym_hex_literal] = ACTIONS(4271), - [sym_bin_literal] = ACTIONS(4271), - [anon_sym_true] = ACTIONS(4269), - [anon_sym_false] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4271), - [sym__backtick_identifier] = ACTIONS(4271), - [sym__automatic_semicolon] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4271), - }, - [2902] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_RBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(6579), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4236), - [anon_sym_DASH_GT] = ACTIONS(4242), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_while] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4242), + [2931] = { + [aux_sym_user_type_repeat1] = STATE(2910), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_RBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_RPAREN] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6556), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4193), + [sym__quest] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [anon_sym_DASH_GT] = ACTIONS(4195), + [sym_label] = ACTIONS(4195), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_while] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), }, - [2903] = { - [sym_getter] = STATE(4978), - [sym_setter] = STATE(4978), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2932] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), [anon_sym_DOT_DOT] = ACTIONS(1792), [anon_sym_QMARK_COLON] = ACTIONS(1792), [anon_sym_AMP_AMP] = ACTIONS(1792), @@ -355441,334 +356077,591 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2904] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_EQ] = ACTIONS(4015), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_by] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4015), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4010), - [anon_sym_set] = ACTIONS(4010), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_AMP] = ACTIONS(4015), - [sym__quest] = ACTIONS(4015), - [anon_sym_STAR] = ACTIONS(4015), - [sym_label] = ACTIONS(4010), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_suspend] = ACTIONS(4010), - [anon_sym_sealed] = ACTIONS(4010), - [anon_sym_annotation] = ACTIONS(4010), - [anon_sym_data] = ACTIONS(4010), - [anon_sym_inner] = ACTIONS(4010), - [anon_sym_value] = ACTIONS(4010), - [anon_sym_override] = ACTIONS(4010), - [anon_sym_lateinit] = ACTIONS(4010), - [anon_sym_public] = ACTIONS(4010), - [anon_sym_private] = ACTIONS(4010), - [anon_sym_internal] = ACTIONS(4010), - [anon_sym_protected] = ACTIONS(4010), - [anon_sym_tailrec] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_infix] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym_external] = ACTIONS(4010), - [sym_property_modifier] = ACTIONS(4010), - [anon_sym_abstract] = ACTIONS(4010), - [anon_sym_final] = ACTIONS(4010), - [anon_sym_open] = ACTIONS(4010), - [anon_sym_vararg] = ACTIONS(4010), - [anon_sym_noinline] = ACTIONS(4010), - [anon_sym_crossinline] = ACTIONS(4010), - [anon_sym_expect] = ACTIONS(4010), - [anon_sym_actual] = ACTIONS(4010), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4015), - [sym__automatic_semicolon] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), + [2933] = { + [sym_class_body] = STATE(3239), + [sym_type_constraints] = STATE(2997), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), }, - [2905] = { - [sym_getter] = STATE(4976), - [sym_setter] = STATE(4976), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(1802), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), + [2934] = { + [sym__alpha_identifier] = ACTIONS(4345), + [anon_sym_AT] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4345), + [anon_sym_EQ] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4347), + [anon_sym_RBRACE] = ACTIONS(4347), + [anon_sym_LPAREN] = ACTIONS(4347), + [anon_sym_COMMA] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_where] = ACTIONS(4345), + [anon_sym_object] = ACTIONS(4345), + [anon_sym_fun] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_SEMI] = ACTIONS(4347), + [anon_sym_get] = ACTIONS(4345), + [anon_sym_set] = ACTIONS(4345), + [anon_sym_this] = ACTIONS(4345), + [anon_sym_super] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [sym_label] = ACTIONS(4345), + [anon_sym_in] = ACTIONS(4345), + [anon_sym_DOT_DOT] = ACTIONS(4347), + [anon_sym_QMARK_COLON] = ACTIONS(4347), + [anon_sym_AMP_AMP] = ACTIONS(4347), + [anon_sym_PIPE_PIPE] = ACTIONS(4347), + [anon_sym_null] = ACTIONS(4345), + [anon_sym_if] = ACTIONS(4345), + [anon_sym_else] = ACTIONS(4345), + [anon_sym_when] = ACTIONS(4345), + [anon_sym_try] = ACTIONS(4345), + [anon_sym_catch] = ACTIONS(4345), + [anon_sym_finally] = ACTIONS(4345), + [anon_sym_throw] = ACTIONS(4345), + [anon_sym_return] = ACTIONS(4345), + [anon_sym_continue] = ACTIONS(4345), + [anon_sym_break] = ACTIONS(4345), + [anon_sym_COLON_COLON] = ACTIONS(4347), + [anon_sym_PLUS_EQ] = ACTIONS(4347), + [anon_sym_DASH_EQ] = ACTIONS(4347), + [anon_sym_STAR_EQ] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [anon_sym_PERCENT_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_BANGin] = ACTIONS(4347), + [anon_sym_is] = ACTIONS(4345), + [anon_sym_BANGis] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4345), + [anon_sym_DASH] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4345), + [anon_sym_as_QMARK] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4347), + [anon_sym_DASH_DASH] = ACTIONS(4347), + [anon_sym_BANG] = ACTIONS(4345), + [anon_sym_BANG_BANG] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4345), + [anon_sym_inner] = ACTIONS(4345), + [anon_sym_value] = ACTIONS(4345), + [anon_sym_expect] = ACTIONS(4345), + [anon_sym_actual] = ACTIONS(4345), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4347), + [anon_sym_continue_AT] = ACTIONS(4347), + [anon_sym_break_AT] = ACTIONS(4347), + [anon_sym_this_AT] = ACTIONS(4347), + [anon_sym_super_AT] = ACTIONS(4347), + [sym_real_literal] = ACTIONS(4347), + [sym_integer_literal] = ACTIONS(4345), + [sym_hex_literal] = ACTIONS(4347), + [sym_bin_literal] = ACTIONS(4347), + [anon_sym_true] = ACTIONS(4345), + [anon_sym_false] = ACTIONS(4345), + [anon_sym_SQUOTE] = ACTIONS(4347), + [sym__backtick_identifier] = ACTIONS(4347), + [sym__automatic_semicolon] = ACTIONS(4347), + [sym_safe_nav] = ACTIONS(4347), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4347), }, - [2906] = { - [sym_getter] = STATE(5014), - [sym_setter] = STATE(5014), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_RPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(3438), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3438), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), - [sym_multiline_comment] = ACTIONS(3), + [2935] = { + [sym__alpha_identifier] = ACTIONS(4485), + [anon_sym_AT] = ACTIONS(4487), + [anon_sym_LBRACK] = ACTIONS(4487), + [anon_sym_as] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_LBRACE] = ACTIONS(4487), + [anon_sym_RBRACE] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4487), + [anon_sym_COMMA] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_where] = ACTIONS(4485), + [anon_sym_object] = ACTIONS(4485), + [anon_sym_fun] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_get] = ACTIONS(4485), + [anon_sym_set] = ACTIONS(4485), + [anon_sym_this] = ACTIONS(4485), + [anon_sym_super] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4485), + [sym_label] = ACTIONS(4485), + [anon_sym_in] = ACTIONS(4485), + [anon_sym_DOT_DOT] = ACTIONS(4487), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4487), + [anon_sym_PIPE_PIPE] = ACTIONS(4487), + [anon_sym_null] = ACTIONS(4485), + [anon_sym_if] = ACTIONS(4485), + [anon_sym_else] = ACTIONS(4485), + [anon_sym_when] = ACTIONS(4485), + [anon_sym_try] = ACTIONS(4485), + [anon_sym_catch] = ACTIONS(4485), + [anon_sym_finally] = ACTIONS(4485), + [anon_sym_throw] = ACTIONS(4485), + [anon_sym_return] = ACTIONS(4485), + [anon_sym_continue] = ACTIONS(4485), + [anon_sym_break] = ACTIONS(4485), + [anon_sym_COLON_COLON] = ACTIONS(4487), + [anon_sym_PLUS_EQ] = ACTIONS(4487), + [anon_sym_DASH_EQ] = ACTIONS(4487), + [anon_sym_STAR_EQ] = ACTIONS(4487), + [anon_sym_SLASH_EQ] = ACTIONS(4487), + [anon_sym_PERCENT_EQ] = ACTIONS(4487), + [anon_sym_BANG_EQ] = ACTIONS(4485), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4487), + [anon_sym_EQ_EQ] = ACTIONS(4485), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4487), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_BANGin] = ACTIONS(4487), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4485), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_SLASH] = ACTIONS(4485), + [anon_sym_PERCENT] = ACTIONS(4485), + [anon_sym_as_QMARK] = ACTIONS(4487), + [anon_sym_PLUS_PLUS] = ACTIONS(4487), + [anon_sym_DASH_DASH] = ACTIONS(4487), + [anon_sym_BANG] = ACTIONS(4485), + [anon_sym_BANG_BANG] = ACTIONS(4487), + [anon_sym_data] = ACTIONS(4485), + [anon_sym_inner] = ACTIONS(4485), + [anon_sym_value] = ACTIONS(4485), + [anon_sym_expect] = ACTIONS(4485), + [anon_sym_actual] = ACTIONS(4485), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4487), + [anon_sym_continue_AT] = ACTIONS(4487), + [anon_sym_break_AT] = ACTIONS(4487), + [anon_sym_this_AT] = ACTIONS(4487), + [anon_sym_super_AT] = ACTIONS(4487), + [sym_real_literal] = ACTIONS(4487), + [sym_integer_literal] = ACTIONS(4485), + [sym_hex_literal] = ACTIONS(4487), + [sym_bin_literal] = ACTIONS(4487), + [anon_sym_true] = ACTIONS(4485), + [anon_sym_false] = ACTIONS(4485), + [anon_sym_SQUOTE] = ACTIONS(4487), + [sym__backtick_identifier] = ACTIONS(4487), + [sym__automatic_semicolon] = ACTIONS(4487), + [sym_safe_nav] = ACTIONS(4487), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4487), }, - [2907] = { - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2936] = { + [sym_type_constraints] = STATE(2996), + [sym_enum_class_body] = STATE(3200), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), + }, + [2937] = { + [sym_type_constraints] = STATE(2996), + [sym_enum_class_body] = STATE(3200), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(6559), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), + }, + [2938] = { + [sym_type_arguments] = STATE(6538), + [sym__alpha_identifier] = ACTIONS(4122), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_COLON] = ACTIONS(6561), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_RBRACK] = ACTIONS(4124), + [anon_sym_as] = ACTIONS(4122), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_RBRACE] = ACTIONS(4124), + [anon_sym_LPAREN] = ACTIONS(4124), + [anon_sym_COMMA] = ACTIONS(4124), + [anon_sym_RPAREN] = ACTIONS(4124), + [anon_sym_by] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4122), + [anon_sym_where] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym_get] = ACTIONS(4122), + [anon_sym_set] = ACTIONS(4122), + [sym__quest] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_DASH_GT] = ACTIONS(4124), + [sym_label] = ACTIONS(4124), + [anon_sym_in] = ACTIONS(4122), + [anon_sym_while] = ACTIONS(4122), + [anon_sym_DOT_DOT] = ACTIONS(4124), + [anon_sym_QMARK_COLON] = ACTIONS(4124), + [anon_sym_AMP_AMP] = ACTIONS(4124), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_else] = ACTIONS(4122), + [anon_sym_COLON_COLON] = ACTIONS(4124), + [anon_sym_PLUS_EQ] = ACTIONS(4124), + [anon_sym_DASH_EQ] = ACTIONS(4124), + [anon_sym_STAR_EQ] = ACTIONS(4124), + [anon_sym_SLASH_EQ] = ACTIONS(4124), + [anon_sym_PERCENT_EQ] = ACTIONS(4124), + [anon_sym_BANG_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), + [anon_sym_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), + [anon_sym_LT_EQ] = ACTIONS(4124), + [anon_sym_GT_EQ] = ACTIONS(4124), + [anon_sym_BANGin] = ACTIONS(4124), + [anon_sym_is] = ACTIONS(4122), + [anon_sym_BANGis] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_SLASH] = ACTIONS(4122), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4124), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_BANG_BANG] = ACTIONS(4124), + [anon_sym_suspend] = ACTIONS(4122), + [anon_sym_sealed] = ACTIONS(4122), + [anon_sym_annotation] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4122), + [anon_sym_inner] = ACTIONS(4122), + [anon_sym_value] = ACTIONS(4122), + [anon_sym_override] = ACTIONS(4122), + [anon_sym_lateinit] = ACTIONS(4122), + [anon_sym_public] = ACTIONS(4122), + [anon_sym_private] = ACTIONS(4122), + [anon_sym_internal] = ACTIONS(4122), + [anon_sym_protected] = ACTIONS(4122), + [anon_sym_tailrec] = ACTIONS(4122), + [anon_sym_operator] = ACTIONS(4122), + [anon_sym_infix] = ACTIONS(4122), + [anon_sym_inline] = ACTIONS(4122), + [anon_sym_external] = ACTIONS(4122), + [sym_property_modifier] = ACTIONS(4122), + [anon_sym_abstract] = ACTIONS(4122), + [anon_sym_final] = ACTIONS(4122), + [anon_sym_open] = ACTIONS(4122), + [anon_sym_vararg] = ACTIONS(4122), + [anon_sym_noinline] = ACTIONS(4122), + [anon_sym_crossinline] = ACTIONS(4122), + [anon_sym_expect] = ACTIONS(4122), + [anon_sym_actual] = ACTIONS(4122), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4124), + [sym_safe_nav] = ACTIONS(4124), + [sym_multiline_comment] = ACTIONS(3), + }, + [2939] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6412), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -355793,70 +356686,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2908] = { - [sym_getter] = STATE(3621), - [sym_setter] = STATE(3621), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2940] = { + [sym_class_body] = STATE(3203), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(6563), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), + }, + [2941] = { + [sym_class_body] = STATE(3157), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(6565), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), + }, + [2942] = { + [sym_type_constraints] = STATE(2995), + [sym_enum_class_body] = STATE(3167), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), + }, + [2943] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(5217), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -355881,598 +357034,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - }, - [2909] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(6583), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RPAREN] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4347), - [anon_sym_DASH_GT] = ACTIONS(4353), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_while] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [2910] = { - [sym__alpha_identifier] = ACTIONS(4297), - [anon_sym_AT] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4297), - [anon_sym_EQ] = ACTIONS(4297), - [anon_sym_fun] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_RBRACE] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_by] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_where] = ACTIONS(4297), - [anon_sym_object] = ACTIONS(4297), - [anon_sym_DOT] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_get] = ACTIONS(4297), - [anon_sym_set] = ACTIONS(4297), - [anon_sym_this] = ACTIONS(4297), - [anon_sym_super] = ACTIONS(4297), - [anon_sym_AMP] = ACTIONS(6587), - [sym__quest] = ACTIONS(4297), - [anon_sym_STAR] = ACTIONS(4297), - [sym_label] = ACTIONS(4297), - [anon_sym_in] = ACTIONS(4297), - [anon_sym_DOT_DOT] = ACTIONS(4299), - [anon_sym_QMARK_COLON] = ACTIONS(4299), - [anon_sym_AMP_AMP] = ACTIONS(4299), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_null] = ACTIONS(4297), - [anon_sym_if] = ACTIONS(4297), - [anon_sym_else] = ACTIONS(4297), - [anon_sym_when] = ACTIONS(4297), - [anon_sym_try] = ACTIONS(4297), - [anon_sym_throw] = ACTIONS(4297), - [anon_sym_return] = ACTIONS(4297), - [anon_sym_continue] = ACTIONS(4297), - [anon_sym_break] = ACTIONS(4297), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym_PLUS_EQ] = ACTIONS(4299), - [anon_sym_DASH_EQ] = ACTIONS(4299), - [anon_sym_STAR_EQ] = ACTIONS(4299), - [anon_sym_SLASH_EQ] = ACTIONS(4299), - [anon_sym_PERCENT_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ] = ACTIONS(4297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ] = ACTIONS(4297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ] = ACTIONS(4299), - [anon_sym_GT_EQ] = ACTIONS(4299), - [anon_sym_BANGin] = ACTIONS(4299), - [anon_sym_is] = ACTIONS(4297), - [anon_sym_BANGis] = ACTIONS(4299), - [anon_sym_PLUS] = ACTIONS(4297), - [anon_sym_DASH] = ACTIONS(4297), - [anon_sym_SLASH] = ACTIONS(4297), - [anon_sym_PERCENT] = ACTIONS(4297), - [anon_sym_as_QMARK] = ACTIONS(4299), - [anon_sym_PLUS_PLUS] = ACTIONS(4299), - [anon_sym_DASH_DASH] = ACTIONS(4299), - [anon_sym_BANG] = ACTIONS(4297), - [anon_sym_BANG_BANG] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4297), - [anon_sym_inner] = ACTIONS(4297), - [anon_sym_value] = ACTIONS(4297), - [anon_sym_expect] = ACTIONS(4297), - [anon_sym_actual] = ACTIONS(4297), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4299), - [anon_sym_continue_AT] = ACTIONS(4299), - [anon_sym_break_AT] = ACTIONS(4299), - [anon_sym_this_AT] = ACTIONS(4299), - [anon_sym_super_AT] = ACTIONS(4299), - [sym_real_literal] = ACTIONS(4299), - [sym_integer_literal] = ACTIONS(4297), - [sym_hex_literal] = ACTIONS(4299), - [sym_bin_literal] = ACTIONS(4299), - [anon_sym_true] = ACTIONS(4297), - [anon_sym_false] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym__backtick_identifier] = ACTIONS(4299), - [sym__automatic_semicolon] = ACTIONS(4299), - [sym_safe_nav] = ACTIONS(4299), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4299), - }, - [2911] = { - [sym_type_constraints] = STATE(3353), - [sym_function_body] = STATE(3354), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(6589), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), - }, - [2912] = { - [sym__alpha_identifier] = ACTIONS(4215), - [anon_sym_AT] = ACTIONS(4217), - [anon_sym_COLON] = ACTIONS(4215), - [anon_sym_LBRACK] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4217), - [anon_sym_COMMA] = ACTIONS(4217), - [anon_sym_by] = ACTIONS(4215), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(4215), - [anon_sym_object] = ACTIONS(4215), - [anon_sym_DOT] = ACTIONS(4215), - [anon_sym_SEMI] = ACTIONS(4217), - [anon_sym_get] = ACTIONS(4215), - [anon_sym_set] = ACTIONS(4215), - [anon_sym_this] = ACTIONS(4215), - [anon_sym_super] = ACTIONS(4215), - [anon_sym_AMP] = ACTIONS(4217), - [sym__quest] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4215), - [anon_sym_in] = ACTIONS(4215), - [anon_sym_null] = ACTIONS(4215), - [anon_sym_if] = ACTIONS(4215), - [anon_sym_else] = ACTIONS(4215), - [anon_sym_when] = ACTIONS(4215), - [anon_sym_try] = ACTIONS(4215), - [anon_sym_throw] = ACTIONS(4215), - [anon_sym_return] = ACTIONS(4215), - [anon_sym_continue] = ACTIONS(4215), - [anon_sym_break] = ACTIONS(4215), - [anon_sym_COLON_COLON] = ACTIONS(4217), - [anon_sym_BANGin] = ACTIONS(4217), - [anon_sym_is] = ACTIONS(4215), - [anon_sym_BANGis] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4215), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_PLUS_PLUS] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4217), - [anon_sym_BANG] = ACTIONS(4215), - [anon_sym_suspend] = ACTIONS(4215), - [anon_sym_sealed] = ACTIONS(4215), - [anon_sym_annotation] = ACTIONS(4215), - [anon_sym_data] = ACTIONS(4215), - [anon_sym_inner] = ACTIONS(4215), - [anon_sym_value] = ACTIONS(4215), - [anon_sym_override] = ACTIONS(4215), - [anon_sym_lateinit] = ACTIONS(4215), - [anon_sym_public] = ACTIONS(4215), - [anon_sym_private] = ACTIONS(4215), - [anon_sym_internal] = ACTIONS(4215), - [anon_sym_protected] = ACTIONS(4215), - [anon_sym_tailrec] = ACTIONS(4215), - [anon_sym_operator] = ACTIONS(4215), - [anon_sym_infix] = ACTIONS(4215), - [anon_sym_inline] = ACTIONS(4215), - [anon_sym_external] = ACTIONS(4215), - [sym_property_modifier] = ACTIONS(4215), - [anon_sym_abstract] = ACTIONS(4215), - [anon_sym_final] = ACTIONS(4215), - [anon_sym_open] = ACTIONS(4215), - [anon_sym_vararg] = ACTIONS(4215), - [anon_sym_noinline] = ACTIONS(4215), - [anon_sym_crossinline] = ACTIONS(4215), - [anon_sym_expect] = ACTIONS(4215), - [anon_sym_actual] = ACTIONS(4215), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4217), - [anon_sym_continue_AT] = ACTIONS(4217), - [anon_sym_break_AT] = ACTIONS(4217), - [anon_sym_this_AT] = ACTIONS(4217), - [anon_sym_super_AT] = ACTIONS(4217), - [sym_real_literal] = ACTIONS(4217), - [sym_integer_literal] = ACTIONS(4215), - [sym_hex_literal] = ACTIONS(4217), - [sym_bin_literal] = ACTIONS(4217), - [anon_sym_true] = ACTIONS(4215), - [anon_sym_false] = ACTIONS(4215), - [anon_sym_SQUOTE] = ACTIONS(4217), - [sym__backtick_identifier] = ACTIONS(4217), - [sym__automatic_semicolon] = ACTIONS(4217), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4217), - }, - [2913] = { - [sym_function_body] = STATE(3238), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(6591), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4339), - [anon_sym_object] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_this] = ACTIONS(4339), - [anon_sym_super] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [sym_label] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [anon_sym_try] = ACTIONS(4339), - [anon_sym_throw] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_PLUS_EQ] = ACTIONS(4341), - [anon_sym_DASH_EQ] = ACTIONS(4341), - [anon_sym_STAR_EQ] = ACTIONS(4341), - [anon_sym_SLASH_EQ] = ACTIONS(4341), - [anon_sym_PERCENT_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4339), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4341), - [anon_sym_continue_AT] = ACTIONS(4341), - [anon_sym_break_AT] = ACTIONS(4341), - [anon_sym_this_AT] = ACTIONS(4341), - [anon_sym_super_AT] = ACTIONS(4341), - [sym_real_literal] = ACTIONS(4341), - [sym_integer_literal] = ACTIONS(4339), - [sym_hex_literal] = ACTIONS(4341), - [sym_bin_literal] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4339), - [anon_sym_false] = ACTIONS(4339), - [anon_sym_SQUOTE] = ACTIONS(4341), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4341), }, - [2914] = { - [sym__alpha_identifier] = ACTIONS(4331), - [anon_sym_AT] = ACTIONS(4333), - [anon_sym_LBRACK] = ACTIONS(4333), - [anon_sym_RBRACK] = ACTIONS(4333), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_EQ] = ACTIONS(4331), - [anon_sym_fun] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4333), - [anon_sym_RBRACE] = ACTIONS(4333), - [anon_sym_LPAREN] = ACTIONS(4333), - [anon_sym_COMMA] = ACTIONS(4333), - [anon_sym_RPAREN] = ACTIONS(4333), - [anon_sym_LT] = ACTIONS(4331), - [anon_sym_GT] = ACTIONS(4331), - [anon_sym_where] = ACTIONS(4331), - [anon_sym_object] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_SEMI] = ACTIONS(4333), - [anon_sym_get] = ACTIONS(4331), - [anon_sym_set] = ACTIONS(4331), - [anon_sym_this] = ACTIONS(4331), - [anon_sym_super] = ACTIONS(4331), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4333), - [sym_label] = ACTIONS(4331), - [anon_sym_in] = ACTIONS(4331), - [anon_sym_while] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4333), - [anon_sym_QMARK_COLON] = ACTIONS(4333), - [anon_sym_AMP_AMP] = ACTIONS(4333), - [anon_sym_PIPE_PIPE] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(4331), - [anon_sym_if] = ACTIONS(4331), - [anon_sym_else] = ACTIONS(4331), - [anon_sym_when] = ACTIONS(4331), - [anon_sym_try] = ACTIONS(4331), - [anon_sym_throw] = ACTIONS(4331), - [anon_sym_return] = ACTIONS(4331), - [anon_sym_continue] = ACTIONS(4331), - [anon_sym_break] = ACTIONS(4331), - [anon_sym_COLON_COLON] = ACTIONS(4333), - [anon_sym_PLUS_EQ] = ACTIONS(4333), - [anon_sym_DASH_EQ] = ACTIONS(4333), - [anon_sym_STAR_EQ] = ACTIONS(4333), - [anon_sym_SLASH_EQ] = ACTIONS(4333), - [anon_sym_PERCENT_EQ] = ACTIONS(4333), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), - [anon_sym_LT_EQ] = ACTIONS(4333), - [anon_sym_GT_EQ] = ACTIONS(4333), - [anon_sym_BANGin] = ACTIONS(4333), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_BANGis] = ACTIONS(4333), - [anon_sym_PLUS] = ACTIONS(4331), - [anon_sym_DASH] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4331), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_as_QMARK] = ACTIONS(4333), - [anon_sym_PLUS_PLUS] = ACTIONS(4333), - [anon_sym_DASH_DASH] = ACTIONS(4333), - [anon_sym_BANG] = ACTIONS(4331), - [anon_sym_BANG_BANG] = ACTIONS(4333), - [anon_sym_data] = ACTIONS(4331), - [anon_sym_inner] = ACTIONS(4331), - [anon_sym_value] = ACTIONS(4331), - [anon_sym_expect] = ACTIONS(4331), - [anon_sym_actual] = ACTIONS(4331), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4333), - [anon_sym_continue_AT] = ACTIONS(4333), - [anon_sym_break_AT] = ACTIONS(4333), - [anon_sym_this_AT] = ACTIONS(4333), - [anon_sym_super_AT] = ACTIONS(4333), - [sym_real_literal] = ACTIONS(4333), - [sym_integer_literal] = ACTIONS(4331), - [sym_hex_literal] = ACTIONS(4333), - [sym_bin_literal] = ACTIONS(4333), - [anon_sym_true] = ACTIONS(4331), - [anon_sym_false] = ACTIONS(4331), - [anon_sym_SQUOTE] = ACTIONS(4333), - [sym__backtick_identifier] = ACTIONS(4333), - [sym_safe_nav] = ACTIONS(4333), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4333), - }, - [2915] = { - [sym_getter] = STATE(4836), - [sym_setter] = STATE(4836), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4601), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2944] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -356497,295 +357121,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2916] = { - [sym_type_constraints] = STATE(2972), - [sym_function_body] = STATE(3262), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), - }, - [2917] = { - [sym_type_constraints] = STATE(3016), - [sym_function_body] = STATE(3221), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), - }, - [2918] = { - [sym_type_constraints] = STATE(3159), - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3335), + [2945] = { + [sym_type_constraints] = STATE(3158), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(6593), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(6547), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(3260), + [anon_sym_where] = ACTIONS(3256), [anon_sym_object] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4183), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_PLUS_EQ] = ACTIONS(4185), - [anon_sym_DASH_EQ] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4185), - [anon_sym_SLASH_EQ] = ACTIONS(4185), - [anon_sym_PERCENT_EQ] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4183), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), - }, - [2919] = { - [sym_type_constraints] = STATE(3015), - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6545), [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4183), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), @@ -356856,415 +357216,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4185), }, - [2920] = { - [sym_type_constraints] = STATE(3011), - [sym_function_body] = STATE(3192), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), - }, - [2921] = { - [sym_type_constraints] = STATE(3193), - [sym_function_body] = STATE(3192), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(6595), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), - }, - [2922] = { - [sym_type_constraints] = STATE(3008), - [sym_function_body] = STATE(3354), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [2946] = { + [sym_class_body] = STATE(3167), + [sym_type_constraints] = STATE(2990), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, - [2923] = { - [sym_type_constraints] = STATE(3045), - [sym_enum_class_body] = STATE(3174), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(6597), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), + [2947] = { + [sym_type_constraints] = STATE(2989), + [sym_enum_class_body] = STATE(3150), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4467), + [anon_sym_fun] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_this] = ACTIONS(4467), + [anon_sym_super] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4467), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_null] = ACTIONS(4467), + [anon_sym_if] = ACTIONS(4467), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_when] = ACTIONS(4467), + [anon_sym_try] = ACTIONS(4467), + [anon_sym_throw] = ACTIONS(4467), + [anon_sym_return] = ACTIONS(4467), + [anon_sym_continue] = ACTIONS(4467), + [anon_sym_break] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG] = ACTIONS(4467), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4469), + [anon_sym_continue_AT] = ACTIONS(4469), + [anon_sym_break_AT] = ACTIONS(4469), + [anon_sym_this_AT] = ACTIONS(4469), + [anon_sym_super_AT] = ACTIONS(4469), + [sym_real_literal] = ACTIONS(4469), + [sym_integer_literal] = ACTIONS(4467), + [sym_hex_literal] = ACTIONS(4469), + [sym_bin_literal] = ACTIONS(4469), + [anon_sym_true] = ACTIONS(4467), + [anon_sym_false] = ACTIONS(4467), + [anon_sym_SQUOTE] = ACTIONS(4469), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4469), }, - [2924] = { - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2948] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(5018), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -357289,135 +357469,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2925] = { - [sym_getter] = STATE(3682), - [sym_setter] = STATE(3682), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4796), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), + [2949] = { + [sym_type_constraints] = STATE(3124), + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, - [2926] = { - [sym_getter] = STATE(3552), - [sym_setter] = STATE(3552), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2950] = { + [sym_type_constraints] = STATE(2985), + [sym_enum_class_body] = STATE(3118), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4481), + [anon_sym_fun] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_this] = ACTIONS(4481), + [anon_sym_super] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_null] = ACTIONS(4481), + [anon_sym_if] = ACTIONS(4481), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_when] = ACTIONS(4481), + [anon_sym_try] = ACTIONS(4481), + [anon_sym_throw] = ACTIONS(4481), + [anon_sym_return] = ACTIONS(4481), + [anon_sym_continue] = ACTIONS(4481), + [anon_sym_break] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4481), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4483), + [anon_sym_continue_AT] = ACTIONS(4483), + [anon_sym_break_AT] = ACTIONS(4483), + [anon_sym_this_AT] = ACTIONS(4483), + [anon_sym_super_AT] = ACTIONS(4483), + [sym_real_literal] = ACTIONS(4483), + [sym_integer_literal] = ACTIONS(4481), + [sym_hex_literal] = ACTIONS(4483), + [sym_bin_literal] = ACTIONS(4483), + [anon_sym_true] = ACTIONS(4481), + [anon_sym_false] = ACTIONS(4481), + [anon_sym_SQUOTE] = ACTIONS(4483), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4483), + }, + [2951] = { + [sym_type_constraints] = STATE(3112), + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [2952] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), [anon_sym_DOT_DOT] = ACTIONS(1792), [anon_sym_QMARK_COLON] = ACTIONS(1792), [anon_sym_AMP_AMP] = ACTIONS(1792), @@ -357465,246 +357817,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2927] = { - [sym__alpha_identifier] = ACTIONS(4317), - [anon_sym_AT] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [anon_sym_as] = ACTIONS(4317), - [anon_sym_EQ] = ACTIONS(4317), - [anon_sym_fun] = ACTIONS(4317), - [anon_sym_LBRACE] = ACTIONS(4319), - [anon_sym_RBRACE] = ACTIONS(4319), - [anon_sym_LPAREN] = ACTIONS(4319), - [anon_sym_COMMA] = ACTIONS(4319), - [anon_sym_by] = ACTIONS(4317), - [anon_sym_LT] = ACTIONS(4317), - [anon_sym_GT] = ACTIONS(4317), - [anon_sym_where] = ACTIONS(4317), - [anon_sym_object] = ACTIONS(4317), - [anon_sym_DOT] = ACTIONS(4317), - [anon_sym_SEMI] = ACTIONS(4319), - [anon_sym_get] = ACTIONS(4317), - [anon_sym_set] = ACTIONS(4317), - [anon_sym_this] = ACTIONS(4317), - [anon_sym_super] = ACTIONS(4317), - [anon_sym_AMP] = ACTIONS(4317), - [sym__quest] = ACTIONS(4317), - [anon_sym_STAR] = ACTIONS(4317), - [sym_label] = ACTIONS(4317), - [anon_sym_in] = ACTIONS(4317), - [anon_sym_DOT_DOT] = ACTIONS(4319), - [anon_sym_QMARK_COLON] = ACTIONS(4319), - [anon_sym_AMP_AMP] = ACTIONS(4319), - [anon_sym_PIPE_PIPE] = ACTIONS(4319), - [anon_sym_null] = ACTIONS(4317), - [anon_sym_if] = ACTIONS(4317), - [anon_sym_else] = ACTIONS(4317), - [anon_sym_when] = ACTIONS(4317), - [anon_sym_try] = ACTIONS(4317), - [anon_sym_throw] = ACTIONS(4317), - [anon_sym_return] = ACTIONS(4317), - [anon_sym_continue] = ACTIONS(4317), - [anon_sym_break] = ACTIONS(4317), - [anon_sym_COLON_COLON] = ACTIONS(4319), - [anon_sym_PLUS_EQ] = ACTIONS(4319), - [anon_sym_DASH_EQ] = ACTIONS(4319), - [anon_sym_STAR_EQ] = ACTIONS(4319), - [anon_sym_SLASH_EQ] = ACTIONS(4319), - [anon_sym_PERCENT_EQ] = ACTIONS(4319), - [anon_sym_BANG_EQ] = ACTIONS(4317), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4319), - [anon_sym_EQ_EQ] = ACTIONS(4317), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4319), - [anon_sym_LT_EQ] = ACTIONS(4319), - [anon_sym_GT_EQ] = ACTIONS(4319), - [anon_sym_BANGin] = ACTIONS(4319), - [anon_sym_is] = ACTIONS(4317), - [anon_sym_BANGis] = ACTIONS(4319), - [anon_sym_PLUS] = ACTIONS(4317), - [anon_sym_DASH] = ACTIONS(4317), - [anon_sym_SLASH] = ACTIONS(4317), - [anon_sym_PERCENT] = ACTIONS(4317), - [anon_sym_as_QMARK] = ACTIONS(4319), - [anon_sym_PLUS_PLUS] = ACTIONS(4319), - [anon_sym_DASH_DASH] = ACTIONS(4319), - [anon_sym_BANG] = ACTIONS(4317), - [anon_sym_BANG_BANG] = ACTIONS(4319), - [anon_sym_data] = ACTIONS(4317), - [anon_sym_inner] = ACTIONS(4317), - [anon_sym_value] = ACTIONS(4317), - [anon_sym_expect] = ACTIONS(4317), - [anon_sym_actual] = ACTIONS(4317), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4319), - [anon_sym_continue_AT] = ACTIONS(4319), - [anon_sym_break_AT] = ACTIONS(4319), - [anon_sym_this_AT] = ACTIONS(4319), - [anon_sym_super_AT] = ACTIONS(4319), - [sym_real_literal] = ACTIONS(4319), - [sym_integer_literal] = ACTIONS(4317), - [sym_hex_literal] = ACTIONS(4319), - [sym_bin_literal] = ACTIONS(4319), - [anon_sym_true] = ACTIONS(4317), - [anon_sym_false] = ACTIONS(4317), - [anon_sym_SQUOTE] = ACTIONS(4319), - [sym__backtick_identifier] = ACTIONS(4319), - [sym__automatic_semicolon] = ACTIONS(4319), - [sym_safe_nav] = ACTIONS(4319), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4319), - }, - [2928] = { - [sym__alpha_identifier] = ACTIONS(4189), - [anon_sym_AT] = ACTIONS(4191), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_as] = ACTIONS(4189), - [anon_sym_EQ] = ACTIONS(4189), - [anon_sym_fun] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_by] = ACTIONS(4189), - [anon_sym_LT] = ACTIONS(4189), - [anon_sym_GT] = ACTIONS(4189), - [anon_sym_where] = ACTIONS(4189), - [anon_sym_object] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_SEMI] = ACTIONS(4191), - [anon_sym_get] = ACTIONS(4189), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_this] = ACTIONS(4189), - [anon_sym_super] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [sym__quest] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [sym_label] = ACTIONS(4189), - [anon_sym_in] = ACTIONS(4189), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_QMARK_COLON] = ACTIONS(4191), - [anon_sym_AMP_AMP] = ACTIONS(4191), - [anon_sym_PIPE_PIPE] = ACTIONS(4191), - [anon_sym_null] = ACTIONS(4189), - [anon_sym_if] = ACTIONS(4189), - [anon_sym_else] = ACTIONS(4189), - [anon_sym_when] = ACTIONS(4189), - [anon_sym_try] = ACTIONS(4189), - [anon_sym_throw] = ACTIONS(4189), - [anon_sym_return] = ACTIONS(4189), - [anon_sym_continue] = ACTIONS(4189), - [anon_sym_break] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(4191), - [anon_sym_PLUS_EQ] = ACTIONS(4191), - [anon_sym_DASH_EQ] = ACTIONS(4191), - [anon_sym_STAR_EQ] = ACTIONS(4191), - [anon_sym_SLASH_EQ] = ACTIONS(4191), - [anon_sym_PERCENT_EQ] = ACTIONS(4191), - [anon_sym_BANG_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4191), - [anon_sym_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4191), - [anon_sym_LT_EQ] = ACTIONS(4191), - [anon_sym_GT_EQ] = ACTIONS(4191), - [anon_sym_BANGin] = ACTIONS(4191), - [anon_sym_is] = ACTIONS(4189), - [anon_sym_BANGis] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_SLASH] = ACTIONS(4189), - [anon_sym_PERCENT] = ACTIONS(4189), - [anon_sym_as_QMARK] = ACTIONS(4191), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_BANG_BANG] = ACTIONS(4191), - [anon_sym_data] = ACTIONS(4189), - [anon_sym_inner] = ACTIONS(4189), - [anon_sym_value] = ACTIONS(4189), - [anon_sym_expect] = ACTIONS(4189), - [anon_sym_actual] = ACTIONS(4189), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4191), - [anon_sym_continue_AT] = ACTIONS(4191), - [anon_sym_break_AT] = ACTIONS(4191), - [anon_sym_this_AT] = ACTIONS(4191), - [anon_sym_super_AT] = ACTIONS(4191), - [sym_real_literal] = ACTIONS(4191), - [sym_integer_literal] = ACTIONS(4189), - [sym_hex_literal] = ACTIONS(4191), - [sym_bin_literal] = ACTIONS(4191), - [anon_sym_true] = ACTIONS(4189), - [anon_sym_false] = ACTIONS(4189), - [anon_sym_SQUOTE] = ACTIONS(4191), - [sym__backtick_identifier] = ACTIONS(4191), - [sym__automatic_semicolon] = ACTIONS(4191), - [sym_safe_nav] = ACTIONS(4191), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4191), - }, - [2929] = { - [sym_getter] = STATE(3460), - [sym_setter] = STATE(3460), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6432), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2953] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -357729,70 +357904,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2930] = { - [sym_getter] = STATE(3530), - [sym_setter] = STATE(3530), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(1802), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), + [2954] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(5014), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -357817,70 +357991,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2931] = { - [sym_getter] = STATE(3516), - [sym_setter] = STATE(3516), - [sym_modifiers] = STATE(9437), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_RPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(6372), - [anon_sym_set] = ACTIONS(6374), - [anon_sym_STAR] = ACTIONS(3438), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3438), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [2955] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_RBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4009), + [anon_sym_by] = ACTIONS(4004), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4004), + [sym__quest] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + }, + [2956] = { + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), + }, + [2957] = { + [sym_function_body] = STATE(3265), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), + }, + [2958] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -357905,246 +358339,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2932] = { - [sym__alpha_identifier] = ACTIONS(4232), - [anon_sym_AT] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4232), - [anon_sym_EQ] = ACTIONS(4232), - [anon_sym_fun] = ACTIONS(4232), - [anon_sym_LBRACE] = ACTIONS(4234), - [anon_sym_RBRACE] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_COMMA] = ACTIONS(4234), - [anon_sym_by] = ACTIONS(4232), - [anon_sym_LT] = ACTIONS(4232), - [anon_sym_GT] = ACTIONS(4232), - [anon_sym_where] = ACTIONS(4232), - [anon_sym_object] = ACTIONS(4232), - [anon_sym_DOT] = ACTIONS(4232), - [anon_sym_SEMI] = ACTIONS(4234), - [anon_sym_get] = ACTIONS(4232), - [anon_sym_set] = ACTIONS(4232), - [anon_sym_this] = ACTIONS(4232), - [anon_sym_super] = ACTIONS(4232), - [anon_sym_AMP] = ACTIONS(4232), - [sym__quest] = ACTIONS(4232), - [anon_sym_STAR] = ACTIONS(4232), - [sym_label] = ACTIONS(4232), - [anon_sym_in] = ACTIONS(4232), - [anon_sym_DOT_DOT] = ACTIONS(4234), - [anon_sym_QMARK_COLON] = ACTIONS(4234), - [anon_sym_AMP_AMP] = ACTIONS(4234), - [anon_sym_PIPE_PIPE] = ACTIONS(4234), - [anon_sym_null] = ACTIONS(4232), - [anon_sym_if] = ACTIONS(4232), - [anon_sym_else] = ACTIONS(4232), - [anon_sym_when] = ACTIONS(4232), - [anon_sym_try] = ACTIONS(4232), - [anon_sym_throw] = ACTIONS(4232), - [anon_sym_return] = ACTIONS(4232), - [anon_sym_continue] = ACTIONS(4232), - [anon_sym_break] = ACTIONS(4232), - [anon_sym_COLON_COLON] = ACTIONS(4234), - [anon_sym_PLUS_EQ] = ACTIONS(4234), - [anon_sym_DASH_EQ] = ACTIONS(4234), - [anon_sym_STAR_EQ] = ACTIONS(4234), - [anon_sym_SLASH_EQ] = ACTIONS(4234), - [anon_sym_PERCENT_EQ] = ACTIONS(4234), - [anon_sym_BANG_EQ] = ACTIONS(4232), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), - [anon_sym_EQ_EQ] = ACTIONS(4232), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), - [anon_sym_LT_EQ] = ACTIONS(4234), - [anon_sym_GT_EQ] = ACTIONS(4234), - [anon_sym_BANGin] = ACTIONS(4234), - [anon_sym_is] = ACTIONS(4232), - [anon_sym_BANGis] = ACTIONS(4234), - [anon_sym_PLUS] = ACTIONS(4232), - [anon_sym_DASH] = ACTIONS(4232), - [anon_sym_SLASH] = ACTIONS(4232), - [anon_sym_PERCENT] = ACTIONS(4232), - [anon_sym_as_QMARK] = ACTIONS(4234), - [anon_sym_PLUS_PLUS] = ACTIONS(4234), - [anon_sym_DASH_DASH] = ACTIONS(4234), - [anon_sym_BANG] = ACTIONS(4232), - [anon_sym_BANG_BANG] = ACTIONS(4234), - [anon_sym_data] = ACTIONS(4232), - [anon_sym_inner] = ACTIONS(4232), - [anon_sym_value] = ACTIONS(4232), - [anon_sym_expect] = ACTIONS(4232), - [anon_sym_actual] = ACTIONS(4232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4234), - [anon_sym_continue_AT] = ACTIONS(4234), - [anon_sym_break_AT] = ACTIONS(4234), - [anon_sym_this_AT] = ACTIONS(4234), - [anon_sym_super_AT] = ACTIONS(4234), - [sym_real_literal] = ACTIONS(4234), - [sym_integer_literal] = ACTIONS(4232), - [sym_hex_literal] = ACTIONS(4234), - [sym_bin_literal] = ACTIONS(4234), - [anon_sym_true] = ACTIONS(4232), - [anon_sym_false] = ACTIONS(4232), - [anon_sym_SQUOTE] = ACTIONS(4234), - [sym__backtick_identifier] = ACTIONS(4234), - [sym__automatic_semicolon] = ACTIONS(4234), - [sym_safe_nav] = ACTIONS(4234), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4234), - }, - [2933] = { - [sym__alpha_identifier] = ACTIONS(4335), - [anon_sym_AT] = ACTIONS(4337), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_as] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_fun] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_RBRACE] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_COMMA] = ACTIONS(4337), - [anon_sym_by] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4335), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_where] = ACTIONS(4335), - [anon_sym_object] = ACTIONS(4335), - [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4337), - [anon_sym_get] = ACTIONS(4335), - [anon_sym_set] = ACTIONS(4335), - [anon_sym_this] = ACTIONS(4335), - [anon_sym_super] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4335), - [sym__quest] = ACTIONS(4335), - [anon_sym_STAR] = ACTIONS(4335), - [sym_label] = ACTIONS(4335), - [anon_sym_in] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(4337), - [anon_sym_QMARK_COLON] = ACTIONS(4337), - [anon_sym_AMP_AMP] = ACTIONS(4337), - [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [anon_sym_null] = ACTIONS(4335), - [anon_sym_if] = ACTIONS(4335), - [anon_sym_else] = ACTIONS(4335), - [anon_sym_when] = ACTIONS(4335), - [anon_sym_try] = ACTIONS(4335), - [anon_sym_throw] = ACTIONS(4335), - [anon_sym_return] = ACTIONS(4335), - [anon_sym_continue] = ACTIONS(4335), - [anon_sym_break] = ACTIONS(4335), - [anon_sym_COLON_COLON] = ACTIONS(4337), - [anon_sym_PLUS_EQ] = ACTIONS(4337), - [anon_sym_DASH_EQ] = ACTIONS(4337), - [anon_sym_STAR_EQ] = ACTIONS(4337), - [anon_sym_SLASH_EQ] = ACTIONS(4337), - [anon_sym_PERCENT_EQ] = ACTIONS(4337), - [anon_sym_BANG_EQ] = ACTIONS(4335), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), - [anon_sym_EQ_EQ] = ACTIONS(4335), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), - [anon_sym_LT_EQ] = ACTIONS(4337), - [anon_sym_GT_EQ] = ACTIONS(4337), - [anon_sym_BANGin] = ACTIONS(4337), - [anon_sym_is] = ACTIONS(4335), - [anon_sym_BANGis] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_as_QMARK] = ACTIONS(4337), - [anon_sym_PLUS_PLUS] = ACTIONS(4337), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_BANG_BANG] = ACTIONS(4337), - [anon_sym_data] = ACTIONS(4335), - [anon_sym_inner] = ACTIONS(4335), - [anon_sym_value] = ACTIONS(4335), - [anon_sym_expect] = ACTIONS(4335), - [anon_sym_actual] = ACTIONS(4335), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4337), - [anon_sym_continue_AT] = ACTIONS(4337), - [anon_sym_break_AT] = ACTIONS(4337), - [anon_sym_this_AT] = ACTIONS(4337), - [anon_sym_super_AT] = ACTIONS(4337), - [sym_real_literal] = ACTIONS(4337), - [sym_integer_literal] = ACTIONS(4335), - [sym_hex_literal] = ACTIONS(4337), - [sym_bin_literal] = ACTIONS(4337), - [anon_sym_true] = ACTIONS(4335), - [anon_sym_false] = ACTIONS(4335), - [anon_sym_SQUOTE] = ACTIONS(4337), - [sym__backtick_identifier] = ACTIONS(4337), - [sym__automatic_semicolon] = ACTIONS(4337), - [sym_safe_nav] = ACTIONS(4337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4337), - }, - [2934] = { - [sym_getter] = STATE(4904), - [sym_setter] = STATE(4904), - [sym_modifiers] = STATE(9468), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(6338), - [anon_sym_set] = ACTIONS(6340), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), + [2959] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -358169,1263 +358426,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - }, - [2935] = { - [sym_class_body] = STATE(3264), - [sym_type_constraints] = STATE(3064), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [2936] = { - [sym__alpha_identifier] = ACTIONS(4297), - [anon_sym_AT] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4297), - [anon_sym_EQ] = ACTIONS(4297), - [anon_sym_fun] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_RBRACE] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_by] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_where] = ACTIONS(4297), - [anon_sym_object] = ACTIONS(4297), - [anon_sym_DOT] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_get] = ACTIONS(4297), - [anon_sym_set] = ACTIONS(4297), - [anon_sym_this] = ACTIONS(4297), - [anon_sym_super] = ACTIONS(4297), - [anon_sym_AMP] = ACTIONS(6599), - [sym__quest] = ACTIONS(4297), - [anon_sym_STAR] = ACTIONS(4297), - [sym_label] = ACTIONS(4297), - [anon_sym_in] = ACTIONS(4297), - [anon_sym_DOT_DOT] = ACTIONS(4299), - [anon_sym_QMARK_COLON] = ACTIONS(4299), - [anon_sym_AMP_AMP] = ACTIONS(4299), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_null] = ACTIONS(4297), - [anon_sym_if] = ACTIONS(4297), - [anon_sym_else] = ACTIONS(4297), - [anon_sym_when] = ACTIONS(4297), - [anon_sym_try] = ACTIONS(4297), - [anon_sym_throw] = ACTIONS(4297), - [anon_sym_return] = ACTIONS(4297), - [anon_sym_continue] = ACTIONS(4297), - [anon_sym_break] = ACTIONS(4297), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym_PLUS_EQ] = ACTIONS(4299), - [anon_sym_DASH_EQ] = ACTIONS(4299), - [anon_sym_STAR_EQ] = ACTIONS(4299), - [anon_sym_SLASH_EQ] = ACTIONS(4299), - [anon_sym_PERCENT_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ] = ACTIONS(4297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ] = ACTIONS(4297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ] = ACTIONS(4299), - [anon_sym_GT_EQ] = ACTIONS(4299), - [anon_sym_BANGin] = ACTIONS(4299), - [anon_sym_is] = ACTIONS(4297), - [anon_sym_BANGis] = ACTIONS(4299), - [anon_sym_PLUS] = ACTIONS(4297), - [anon_sym_DASH] = ACTIONS(4297), - [anon_sym_SLASH] = ACTIONS(4297), - [anon_sym_PERCENT] = ACTIONS(4297), - [anon_sym_as_QMARK] = ACTIONS(4299), - [anon_sym_PLUS_PLUS] = ACTIONS(4299), - [anon_sym_DASH_DASH] = ACTIONS(4299), - [anon_sym_BANG] = ACTIONS(4297), - [anon_sym_BANG_BANG] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4297), - [anon_sym_inner] = ACTIONS(4297), - [anon_sym_value] = ACTIONS(4297), - [anon_sym_expect] = ACTIONS(4297), - [anon_sym_actual] = ACTIONS(4297), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4299), - [anon_sym_continue_AT] = ACTIONS(4299), - [anon_sym_break_AT] = ACTIONS(4299), - [anon_sym_this_AT] = ACTIONS(4299), - [anon_sym_super_AT] = ACTIONS(4299), - [sym_real_literal] = ACTIONS(4299), - [sym_integer_literal] = ACTIONS(4297), - [sym_hex_literal] = ACTIONS(4299), - [sym_bin_literal] = ACTIONS(4299), - [anon_sym_true] = ACTIONS(4297), - [anon_sym_false] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym__backtick_identifier] = ACTIONS(4299), - [sym__automatic_semicolon] = ACTIONS(4299), - [sym_safe_nav] = ACTIONS(4299), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4299), - }, - [2937] = { - [aux_sym_nullable_type_repeat1] = STATE(2944), - [sym__alpha_identifier] = ACTIONS(4250), - [anon_sym_AT] = ACTIONS(4252), - [anon_sym_LBRACK] = ACTIONS(4252), - [anon_sym_as] = ACTIONS(4250), - [anon_sym_EQ] = ACTIONS(4250), - [anon_sym_fun] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4252), - [anon_sym_RBRACE] = ACTIONS(4252), - [anon_sym_LPAREN] = ACTIONS(4252), - [anon_sym_COMMA] = ACTIONS(4252), - [anon_sym_by] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4250), - [anon_sym_GT] = ACTIONS(4250), - [anon_sym_where] = ACTIONS(4250), - [anon_sym_object] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4250), - [anon_sym_SEMI] = ACTIONS(4252), - [anon_sym_get] = ACTIONS(4250), - [anon_sym_set] = ACTIONS(4250), - [anon_sym_this] = ACTIONS(4250), - [anon_sym_super] = ACTIONS(4250), - [sym__quest] = ACTIONS(6571), - [anon_sym_STAR] = ACTIONS(4250), - [sym_label] = ACTIONS(4250), - [anon_sym_in] = ACTIONS(4250), - [anon_sym_DOT_DOT] = ACTIONS(4252), - [anon_sym_QMARK_COLON] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4252), - [anon_sym_PIPE_PIPE] = ACTIONS(4252), - [anon_sym_null] = ACTIONS(4250), - [anon_sym_if] = ACTIONS(4250), - [anon_sym_else] = ACTIONS(4250), - [anon_sym_when] = ACTIONS(4250), - [anon_sym_try] = ACTIONS(4250), - [anon_sym_throw] = ACTIONS(4250), - [anon_sym_return] = ACTIONS(4250), - [anon_sym_continue] = ACTIONS(4250), - [anon_sym_break] = ACTIONS(4250), - [anon_sym_COLON_COLON] = ACTIONS(4252), - [anon_sym_PLUS_EQ] = ACTIONS(4252), - [anon_sym_DASH_EQ] = ACTIONS(4252), - [anon_sym_STAR_EQ] = ACTIONS(4252), - [anon_sym_SLASH_EQ] = ACTIONS(4252), - [anon_sym_PERCENT_EQ] = ACTIONS(4252), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), - [anon_sym_LT_EQ] = ACTIONS(4252), - [anon_sym_GT_EQ] = ACTIONS(4252), - [anon_sym_BANGin] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4250), - [anon_sym_BANGis] = ACTIONS(4252), - [anon_sym_PLUS] = ACTIONS(4250), - [anon_sym_DASH] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4250), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_as_QMARK] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4252), - [anon_sym_DASH_DASH] = ACTIONS(4252), - [anon_sym_BANG] = ACTIONS(4250), - [anon_sym_BANG_BANG] = ACTIONS(4252), - [anon_sym_data] = ACTIONS(4250), - [anon_sym_inner] = ACTIONS(4250), - [anon_sym_value] = ACTIONS(4250), - [anon_sym_expect] = ACTIONS(4250), - [anon_sym_actual] = ACTIONS(4250), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4252), - [anon_sym_continue_AT] = ACTIONS(4252), - [anon_sym_break_AT] = ACTIONS(4252), - [anon_sym_this_AT] = ACTIONS(4252), - [anon_sym_super_AT] = ACTIONS(4252), - [sym_real_literal] = ACTIONS(4252), - [sym_integer_literal] = ACTIONS(4250), - [sym_hex_literal] = ACTIONS(4252), - [sym_bin_literal] = ACTIONS(4252), - [anon_sym_true] = ACTIONS(4250), - [anon_sym_false] = ACTIONS(4250), - [anon_sym_SQUOTE] = ACTIONS(4252), - [sym__backtick_identifier] = ACTIONS(4252), - [sym__automatic_semicolon] = ACTIONS(4252), - [sym_safe_nav] = ACTIONS(4252), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4252), - }, - [2938] = { - [sym_function_body] = STATE(3245), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_COLON] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_COMMA] = ACTIONS(4323), - [anon_sym_LT] = ACTIONS(4321), - [anon_sym_GT] = ACTIONS(4321), - [anon_sym_where] = ACTIONS(4321), - [anon_sym_object] = ACTIONS(4321), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_get] = ACTIONS(4321), - [anon_sym_set] = ACTIONS(4321), - [anon_sym_this] = ACTIONS(4321), - [anon_sym_super] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4321), - [anon_sym_in] = ACTIONS(4321), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_QMARK_COLON] = ACTIONS(4323), - [anon_sym_AMP_AMP] = ACTIONS(4323), - [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_null] = ACTIONS(4321), - [anon_sym_if] = ACTIONS(4321), - [anon_sym_else] = ACTIONS(4321), - [anon_sym_when] = ACTIONS(4321), - [anon_sym_try] = ACTIONS(4321), - [anon_sym_throw] = ACTIONS(4321), - [anon_sym_return] = ACTIONS(4321), - [anon_sym_continue] = ACTIONS(4321), - [anon_sym_break] = ACTIONS(4321), - [anon_sym_COLON_COLON] = ACTIONS(4323), - [anon_sym_PLUS_EQ] = ACTIONS(4323), - [anon_sym_DASH_EQ] = ACTIONS(4323), - [anon_sym_STAR_EQ] = ACTIONS(4323), - [anon_sym_SLASH_EQ] = ACTIONS(4323), - [anon_sym_PERCENT_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), - [anon_sym_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4323), - [anon_sym_BANGin] = ACTIONS(4323), - [anon_sym_is] = ACTIONS(4321), - [anon_sym_BANGis] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4321), - [anon_sym_as_QMARK] = ACTIONS(4323), - [anon_sym_PLUS_PLUS] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG] = ACTIONS(4321), - [anon_sym_BANG_BANG] = ACTIONS(4323), - [anon_sym_data] = ACTIONS(4321), - [anon_sym_inner] = ACTIONS(4321), - [anon_sym_value] = ACTIONS(4321), - [anon_sym_expect] = ACTIONS(4321), - [anon_sym_actual] = ACTIONS(4321), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4323), - [anon_sym_continue_AT] = ACTIONS(4323), - [anon_sym_break_AT] = ACTIONS(4323), - [anon_sym_this_AT] = ACTIONS(4323), - [anon_sym_super_AT] = ACTIONS(4323), - [sym_real_literal] = ACTIONS(4323), - [sym_integer_literal] = ACTIONS(4321), - [sym_hex_literal] = ACTIONS(4323), - [sym_bin_literal] = ACTIONS(4323), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [anon_sym_SQUOTE] = ACTIONS(4323), - [sym__backtick_identifier] = ACTIONS(4323), - [sym__automatic_semicolon] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4323), - }, - [2939] = { - [sym_class_body] = STATE(3297), - [sym_type_constraints] = STATE(3046), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(6603), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_fun] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4275), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_this] = ACTIONS(4275), - [anon_sym_super] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), - [sym_label] = ACTIONS(4275), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4275), - [anon_sym_if] = ACTIONS(4275), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_when] = ACTIONS(4275), - [anon_sym_try] = ACTIONS(4275), - [anon_sym_throw] = ACTIONS(4275), - [anon_sym_return] = ACTIONS(4275), - [anon_sym_continue] = ACTIONS(4275), - [anon_sym_break] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_PLUS_EQ] = ACTIONS(4277), - [anon_sym_DASH_EQ] = ACTIONS(4277), - [anon_sym_STAR_EQ] = ACTIONS(4277), - [anon_sym_SLASH_EQ] = ACTIONS(4277), - [anon_sym_PERCENT_EQ] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4277), - [anon_sym_continue_AT] = ACTIONS(4277), - [anon_sym_break_AT] = ACTIONS(4277), - [anon_sym_this_AT] = ACTIONS(4277), - [anon_sym_super_AT] = ACTIONS(4277), - [sym_real_literal] = ACTIONS(4277), - [sym_integer_literal] = ACTIONS(4275), - [sym_hex_literal] = ACTIONS(4277), - [sym_bin_literal] = ACTIONS(4277), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [anon_sym_SQUOTE] = ACTIONS(4277), - [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), - }, - [2940] = { - [sym_class_body] = STATE(3304), - [sym_type_constraints] = STATE(3053), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [2941] = { - [sym_type_constraints] = STATE(3078), - [sym_enum_class_body] = STATE(3304), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [2942] = { - [sym_class_body] = STATE(3345), - [sym_type_constraints] = STATE(3121), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6605), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), - }, - [2943] = { - [sym_type_constraints] = STATE(3138), - [sym_enum_class_body] = STATE(3345), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6607), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), - }, - [2944] = { - [aux_sym_nullable_type_repeat1] = STATE(2887), - [sym__alpha_identifier] = ACTIONS(4363), - [anon_sym_AT] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_as] = ACTIONS(4363), - [anon_sym_EQ] = ACTIONS(4363), - [anon_sym_fun] = ACTIONS(4363), - [anon_sym_LBRACE] = ACTIONS(4365), - [anon_sym_RBRACE] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_COMMA] = ACTIONS(4365), - [anon_sym_by] = ACTIONS(4363), - [anon_sym_LT] = ACTIONS(4363), - [anon_sym_GT] = ACTIONS(4363), - [anon_sym_where] = ACTIONS(4363), - [anon_sym_object] = ACTIONS(4363), - [anon_sym_DOT] = ACTIONS(4363), - [anon_sym_SEMI] = ACTIONS(4365), - [anon_sym_get] = ACTIONS(4363), - [anon_sym_set] = ACTIONS(4363), - [anon_sym_this] = ACTIONS(4363), - [anon_sym_super] = ACTIONS(4363), - [sym__quest] = ACTIONS(6609), - [anon_sym_STAR] = ACTIONS(4363), - [sym_label] = ACTIONS(4363), - [anon_sym_in] = ACTIONS(4363), - [anon_sym_DOT_DOT] = ACTIONS(4365), - [anon_sym_QMARK_COLON] = ACTIONS(4365), - [anon_sym_AMP_AMP] = ACTIONS(4365), - [anon_sym_PIPE_PIPE] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4363), - [anon_sym_if] = ACTIONS(4363), - [anon_sym_else] = ACTIONS(4363), - [anon_sym_when] = ACTIONS(4363), - [anon_sym_try] = ACTIONS(4363), - [anon_sym_throw] = ACTIONS(4363), - [anon_sym_return] = ACTIONS(4363), - [anon_sym_continue] = ACTIONS(4363), - [anon_sym_break] = ACTIONS(4363), - [anon_sym_COLON_COLON] = ACTIONS(4365), - [anon_sym_PLUS_EQ] = ACTIONS(4365), - [anon_sym_DASH_EQ] = ACTIONS(4365), - [anon_sym_STAR_EQ] = ACTIONS(4365), - [anon_sym_SLASH_EQ] = ACTIONS(4365), - [anon_sym_PERCENT_EQ] = ACTIONS(4365), - [anon_sym_BANG_EQ] = ACTIONS(4363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), - [anon_sym_EQ_EQ] = ACTIONS(4363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), - [anon_sym_LT_EQ] = ACTIONS(4365), - [anon_sym_GT_EQ] = ACTIONS(4365), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(4363), - [anon_sym_BANGis] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4363), - [anon_sym_DASH] = ACTIONS(4363), - [anon_sym_SLASH] = ACTIONS(4363), - [anon_sym_PERCENT] = ACTIONS(4363), - [anon_sym_as_QMARK] = ACTIONS(4365), - [anon_sym_PLUS_PLUS] = ACTIONS(4365), - [anon_sym_DASH_DASH] = ACTIONS(4365), - [anon_sym_BANG] = ACTIONS(4363), - [anon_sym_BANG_BANG] = ACTIONS(4365), - [anon_sym_data] = ACTIONS(4363), - [anon_sym_inner] = ACTIONS(4363), - [anon_sym_value] = ACTIONS(4363), - [anon_sym_expect] = ACTIONS(4363), - [anon_sym_actual] = ACTIONS(4363), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4365), - [anon_sym_continue_AT] = ACTIONS(4365), - [anon_sym_break_AT] = ACTIONS(4365), - [anon_sym_this_AT] = ACTIONS(4365), - [anon_sym_super_AT] = ACTIONS(4365), - [sym_real_literal] = ACTIONS(4365), - [sym_integer_literal] = ACTIONS(4363), - [sym_hex_literal] = ACTIONS(4365), - [sym_bin_literal] = ACTIONS(4365), - [anon_sym_true] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_SQUOTE] = ACTIONS(4365), - [sym__backtick_identifier] = ACTIONS(4365), - [sym__automatic_semicolon] = ACTIONS(4365), - [sym_safe_nav] = ACTIONS(4365), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4365), - }, - [2945] = { - [sym_type_arguments] = STATE(3139), - [sym__alpha_identifier] = ACTIONS(4177), - [anon_sym_AT] = ACTIONS(4179), - [anon_sym_LBRACK] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4179), - [anon_sym_RBRACE] = ACTIONS(4179), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_COMMA] = ACTIONS(4179), - [anon_sym_by] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(6611), - [anon_sym_where] = ACTIONS(4177), - [anon_sym_object] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4177), - [anon_sym_SEMI] = ACTIONS(4179), - [anon_sym_get] = ACTIONS(4177), - [anon_sym_set] = ACTIONS(4177), - [anon_sym_this] = ACTIONS(4177), - [anon_sym_super] = ACTIONS(4177), - [anon_sym_AMP] = ACTIONS(4179), - [sym__quest] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4177), - [anon_sym_if] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4177), - [anon_sym_when] = ACTIONS(4177), - [anon_sym_try] = ACTIONS(4177), - [anon_sym_throw] = ACTIONS(4177), - [anon_sym_return] = ACTIONS(4177), - [anon_sym_continue] = ACTIONS(4177), - [anon_sym_break] = ACTIONS(4177), - [anon_sym_COLON_COLON] = ACTIONS(4179), - [anon_sym_BANGin] = ACTIONS(4179), - [anon_sym_is] = ACTIONS(4177), - [anon_sym_BANGis] = ACTIONS(4179), - [anon_sym_PLUS] = ACTIONS(4177), - [anon_sym_DASH] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4179), - [anon_sym_DASH_DASH] = ACTIONS(4179), - [anon_sym_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4177), - [anon_sym_sealed] = ACTIONS(4177), - [anon_sym_annotation] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4177), - [anon_sym_inner] = ACTIONS(4177), - [anon_sym_value] = ACTIONS(4177), - [anon_sym_override] = ACTIONS(4177), - [anon_sym_lateinit] = ACTIONS(4177), - [anon_sym_public] = ACTIONS(4177), - [anon_sym_private] = ACTIONS(4177), - [anon_sym_internal] = ACTIONS(4177), - [anon_sym_protected] = ACTIONS(4177), - [anon_sym_tailrec] = ACTIONS(4177), - [anon_sym_operator] = ACTIONS(4177), - [anon_sym_infix] = ACTIONS(4177), - [anon_sym_inline] = ACTIONS(4177), - [anon_sym_external] = ACTIONS(4177), - [sym_property_modifier] = ACTIONS(4177), - [anon_sym_abstract] = ACTIONS(4177), - [anon_sym_final] = ACTIONS(4177), - [anon_sym_open] = ACTIONS(4177), - [anon_sym_vararg] = ACTIONS(4177), - [anon_sym_noinline] = ACTIONS(4177), - [anon_sym_crossinline] = ACTIONS(4177), - [anon_sym_expect] = ACTIONS(4177), - [anon_sym_actual] = ACTIONS(4177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4179), - [anon_sym_continue_AT] = ACTIONS(4179), - [anon_sym_break_AT] = ACTIONS(4179), - [anon_sym_this_AT] = ACTIONS(4179), - [anon_sym_super_AT] = ACTIONS(4179), - [sym_real_literal] = ACTIONS(4179), - [sym_integer_literal] = ACTIONS(4177), - [sym_hex_literal] = ACTIONS(4179), - [sym_bin_literal] = ACTIONS(4179), - [anon_sym_true] = ACTIONS(4177), - [anon_sym_false] = ACTIONS(4177), - [anon_sym_SQUOTE] = ACTIONS(4179), - [sym__backtick_identifier] = ACTIONS(4179), - [sym__automatic_semicolon] = ACTIONS(4179), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4179), - }, - [2946] = { - [sym_class_body] = STATE(3204), - [sym_type_constraints] = STATE(3107), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), - }, - [2947] = { - [sym_type_constraints] = STATE(3134), - [sym_enum_class_body] = STATE(3204), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), - }, - [2948] = { - [sym_class_body] = STATE(3174), - [sym_type_constraints] = STATE(3093), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(6613), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), }, - [2949] = { - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), + [2960] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), @@ -359435,8 +358461,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1808), [anon_sym_DOT] = ACTIONS(1808), [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), [anon_sym_STAR] = ACTIONS(1810), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), @@ -359487,69 +358513,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1810), [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2950] = { - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2961] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(5010), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -359574,591 +358600,417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2951] = { - [sym_type_constraints] = STATE(3099), - [sym_enum_class_body] = STATE(3147), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_fun] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_this] = ACTIONS(4457), - [anon_sym_super] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [sym_label] = ACTIONS(4457), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_null] = ACTIONS(4457), - [anon_sym_if] = ACTIONS(4457), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_when] = ACTIONS(4457), - [anon_sym_try] = ACTIONS(4457), - [anon_sym_throw] = ACTIONS(4457), - [anon_sym_return] = ACTIONS(4457), - [anon_sym_continue] = ACTIONS(4457), - [anon_sym_break] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4459), - [anon_sym_continue_AT] = ACTIONS(4459), - [anon_sym_break_AT] = ACTIONS(4459), - [anon_sym_this_AT] = ACTIONS(4459), - [anon_sym_super_AT] = ACTIONS(4459), - [sym_real_literal] = ACTIONS(4459), - [sym_integer_literal] = ACTIONS(4457), - [sym_hex_literal] = ACTIONS(4459), - [sym_bin_literal] = ACTIONS(4459), - [anon_sym_true] = ACTIONS(4457), - [anon_sym_false] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4459), - [sym__backtick_identifier] = ACTIONS(4459), - [sym__automatic_semicolon] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4459), - }, - [2952] = { - [sym_class_body] = STATE(3294), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(6615), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), - }, - [2953] = { - [aux_sym_user_type_repeat1] = STATE(2953), - [sym__alpha_identifier] = ACTIONS(4189), - [anon_sym_AT] = ACTIONS(4191), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_EQ] = ACTIONS(4191), - [anon_sym_fun] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_by] = ACTIONS(4189), - [anon_sym_where] = ACTIONS(4189), - [anon_sym_object] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(6617), - [anon_sym_SEMI] = ACTIONS(4191), - [anon_sym_get] = ACTIONS(4189), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_this] = ACTIONS(4189), - [anon_sym_super] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4191), - [sym__quest] = ACTIONS(4191), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(4189), - [anon_sym_in] = ACTIONS(4189), - [anon_sym_null] = ACTIONS(4189), - [anon_sym_if] = ACTIONS(4189), - [anon_sym_else] = ACTIONS(4189), - [anon_sym_when] = ACTIONS(4189), - [anon_sym_try] = ACTIONS(4189), - [anon_sym_throw] = ACTIONS(4189), - [anon_sym_return] = ACTIONS(4189), - [anon_sym_continue] = ACTIONS(4189), - [anon_sym_break] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(4191), - [anon_sym_BANGin] = ACTIONS(4191), - [anon_sym_is] = ACTIONS(4189), - [anon_sym_BANGis] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_suspend] = ACTIONS(4189), - [anon_sym_sealed] = ACTIONS(4189), - [anon_sym_annotation] = ACTIONS(4189), - [anon_sym_data] = ACTIONS(4189), - [anon_sym_inner] = ACTIONS(4189), - [anon_sym_value] = ACTIONS(4189), - [anon_sym_override] = ACTIONS(4189), - [anon_sym_lateinit] = ACTIONS(4189), - [anon_sym_public] = ACTIONS(4189), - [anon_sym_private] = ACTIONS(4189), - [anon_sym_internal] = ACTIONS(4189), - [anon_sym_protected] = ACTIONS(4189), - [anon_sym_tailrec] = ACTIONS(4189), - [anon_sym_operator] = ACTIONS(4189), - [anon_sym_infix] = ACTIONS(4189), - [anon_sym_inline] = ACTIONS(4189), - [anon_sym_external] = ACTIONS(4189), - [sym_property_modifier] = ACTIONS(4189), - [anon_sym_abstract] = ACTIONS(4189), - [anon_sym_final] = ACTIONS(4189), - [anon_sym_open] = ACTIONS(4189), - [anon_sym_vararg] = ACTIONS(4189), - [anon_sym_noinline] = ACTIONS(4189), - [anon_sym_crossinline] = ACTIONS(4189), - [anon_sym_expect] = ACTIONS(4189), - [anon_sym_actual] = ACTIONS(4189), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4191), - [anon_sym_continue_AT] = ACTIONS(4191), - [anon_sym_break_AT] = ACTIONS(4191), - [anon_sym_this_AT] = ACTIONS(4191), - [anon_sym_super_AT] = ACTIONS(4191), - [sym_real_literal] = ACTIONS(4191), - [sym_integer_literal] = ACTIONS(4189), - [sym_hex_literal] = ACTIONS(4191), - [sym_bin_literal] = ACTIONS(4191), - [anon_sym_true] = ACTIONS(4189), - [anon_sym_false] = ACTIONS(4189), - [anon_sym_SQUOTE] = ACTIONS(4191), - [sym__backtick_identifier] = ACTIONS(4191), - [sym__automatic_semicolon] = ACTIONS(4191), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4191), + [2962] = { + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, - [2954] = { - [sym_type_constraints] = STATE(3045), - [sym_enum_class_body] = STATE(3174), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [2963] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), }, - [2955] = { - [sym_type_constraints] = STATE(3193), - [sym_function_body] = STATE(3192), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), + [2964] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_catch] = ACTIONS(4477), + [anon_sym_finally] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), }, - [2956] = { - [sym_type_constraints] = STATE(3159), - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4183), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_PLUS_EQ] = ACTIONS(4185), - [anon_sym_DASH_EQ] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4185), - [anon_sym_SLASH_EQ] = ACTIONS(4185), - [anon_sym_PERCENT_EQ] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4183), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), + [2965] = { + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), }, - [2957] = { - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(5036), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), + [2966] = { + [sym_getter] = STATE(5177), + [sym_setter] = STATE(5177), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -360183,330 +359035,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2958] = { - [sym_type_constraints] = STATE(3045), - [sym_enum_class_body] = STATE(3174), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(6620), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [2967] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(5203), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), }, - [2959] = { - [aux_sym_user_type_repeat1] = STATE(2953), - [sym__alpha_identifier] = ACTIONS(4202), - [anon_sym_AT] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_EQ] = ACTIONS(4204), - [anon_sym_fun] = ACTIONS(4202), - [anon_sym_LBRACE] = ACTIONS(4204), - [anon_sym_RBRACE] = ACTIONS(4204), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym_COMMA] = ACTIONS(4204), - [anon_sym_by] = ACTIONS(4202), - [anon_sym_where] = ACTIONS(4202), - [anon_sym_object] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(6622), - [anon_sym_SEMI] = ACTIONS(4204), - [anon_sym_get] = ACTIONS(4202), - [anon_sym_set] = ACTIONS(4202), - [anon_sym_this] = ACTIONS(4202), - [anon_sym_super] = ACTIONS(4202), - [anon_sym_AMP] = ACTIONS(4204), - [sym__quest] = ACTIONS(4204), - [anon_sym_STAR] = ACTIONS(4204), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4202), - [anon_sym_if] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4202), - [anon_sym_when] = ACTIONS(4202), - [anon_sym_try] = ACTIONS(4202), - [anon_sym_throw] = ACTIONS(4202), - [anon_sym_return] = ACTIONS(4202), - [anon_sym_continue] = ACTIONS(4202), - [anon_sym_break] = ACTIONS(4202), - [anon_sym_COLON_COLON] = ACTIONS(4204), - [anon_sym_BANGin] = ACTIONS(4204), - [anon_sym_is] = ACTIONS(4202), - [anon_sym_BANGis] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4202), - [anon_sym_DASH] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4204), - [anon_sym_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4202), - [anon_sym_sealed] = ACTIONS(4202), - [anon_sym_annotation] = ACTIONS(4202), - [anon_sym_data] = ACTIONS(4202), - [anon_sym_inner] = ACTIONS(4202), - [anon_sym_value] = ACTIONS(4202), - [anon_sym_override] = ACTIONS(4202), - [anon_sym_lateinit] = ACTIONS(4202), - [anon_sym_public] = ACTIONS(4202), - [anon_sym_private] = ACTIONS(4202), - [anon_sym_internal] = ACTIONS(4202), - [anon_sym_protected] = ACTIONS(4202), - [anon_sym_tailrec] = ACTIONS(4202), - [anon_sym_operator] = ACTIONS(4202), - [anon_sym_infix] = ACTIONS(4202), - [anon_sym_inline] = ACTIONS(4202), - [anon_sym_external] = ACTIONS(4202), - [sym_property_modifier] = ACTIONS(4202), - [anon_sym_abstract] = ACTIONS(4202), - [anon_sym_final] = ACTIONS(4202), - [anon_sym_open] = ACTIONS(4202), - [anon_sym_vararg] = ACTIONS(4202), - [anon_sym_noinline] = ACTIONS(4202), - [anon_sym_crossinline] = ACTIONS(4202), - [anon_sym_expect] = ACTIONS(4202), - [anon_sym_actual] = ACTIONS(4202), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4204), - [anon_sym_continue_AT] = ACTIONS(4204), - [anon_sym_break_AT] = ACTIONS(4204), - [anon_sym_this_AT] = ACTIONS(4204), - [anon_sym_super_AT] = ACTIONS(4204), - [sym_real_literal] = ACTIONS(4204), - [sym_integer_literal] = ACTIONS(4202), - [sym_hex_literal] = ACTIONS(4204), - [sym_bin_literal] = ACTIONS(4204), - [anon_sym_true] = ACTIONS(4202), - [anon_sym_false] = ACTIONS(4202), - [anon_sym_SQUOTE] = ACTIONS(4204), - [sym__backtick_identifier] = ACTIONS(4204), - [sym__automatic_semicolon] = ACTIONS(4204), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4204), - }, - [2960] = { - [sym_type_constraints] = STATE(3227), - [sym_function_body] = STATE(3221), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), - }, - [2961] = { - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2968] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -360531,69 +359209,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2962] = { - [sym_getter] = STATE(4094), - [sym_setter] = STATE(4094), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(4892), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), + [2969] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -360618,4055 +359296,5636 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2963] = { - [sym_type_constraints] = STATE(3115), - [sym_enum_class_body] = STATE(3164), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_fun] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_this] = ACTIONS(4465), - [anon_sym_super] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [sym_label] = ACTIONS(4465), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_null] = ACTIONS(4465), - [anon_sym_if] = ACTIONS(4465), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_when] = ACTIONS(4465), - [anon_sym_try] = ACTIONS(4465), - [anon_sym_throw] = ACTIONS(4465), - [anon_sym_return] = ACTIONS(4465), - [anon_sym_continue] = ACTIONS(4465), - [anon_sym_break] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4467), - [anon_sym_continue_AT] = ACTIONS(4467), - [anon_sym_break_AT] = ACTIONS(4467), - [anon_sym_this_AT] = ACTIONS(4467), - [anon_sym_super_AT] = ACTIONS(4467), - [sym_real_literal] = ACTIONS(4467), - [sym_integer_literal] = ACTIONS(4465), - [sym_hex_literal] = ACTIONS(4467), - [sym_bin_literal] = ACTIONS(4467), - [anon_sym_true] = ACTIONS(4465), - [anon_sym_false] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4467), - [sym__backtick_identifier] = ACTIONS(4467), - [sym__automatic_semicolon] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4467), + [2970] = { + [sym_enum_class_body] = STATE(3061), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [2964] = { - [sym_class_body] = STATE(3195), - [sym_type_constraints] = STATE(3106), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), + [2971] = { + [sym__alpha_identifier] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4672), + [anon_sym_RBRACE] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4672), + [anon_sym_COMMA] = ACTIONS(4672), + [anon_sym_by] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4670), + [anon_sym_where] = ACTIONS(4670), + [anon_sym_object] = ACTIONS(4670), + [anon_sym_fun] = ACTIONS(4670), + [anon_sym_DOT] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4672), + [anon_sym_get] = ACTIONS(4670), + [anon_sym_set] = ACTIONS(4670), + [anon_sym_this] = ACTIONS(4670), + [anon_sym_super] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4670), + [sym_label] = ACTIONS(4670), + [anon_sym_in] = ACTIONS(4670), + [anon_sym_DOT_DOT] = ACTIONS(4672), + [anon_sym_QMARK_COLON] = ACTIONS(4672), + [anon_sym_AMP_AMP] = ACTIONS(4672), + [anon_sym_PIPE_PIPE] = ACTIONS(4672), + [anon_sym_null] = ACTIONS(4670), + [anon_sym_if] = ACTIONS(4670), + [anon_sym_else] = ACTIONS(4670), + [anon_sym_when] = ACTIONS(4670), + [anon_sym_try] = ACTIONS(4670), + [anon_sym_throw] = ACTIONS(4670), + [anon_sym_return] = ACTIONS(4670), + [anon_sym_continue] = ACTIONS(4670), + [anon_sym_break] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_PLUS_EQ] = ACTIONS(4672), + [anon_sym_DASH_EQ] = ACTIONS(4672), + [anon_sym_STAR_EQ] = ACTIONS(4672), + [anon_sym_SLASH_EQ] = ACTIONS(4672), + [anon_sym_PERCENT_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4672), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4672), + [anon_sym_BANGin] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(4670), + [anon_sym_BANGis] = ACTIONS(4672), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_SLASH] = ACTIONS(4670), + [anon_sym_PERCENT] = ACTIONS(4670), + [anon_sym_as_QMARK] = ACTIONS(4672), + [anon_sym_PLUS_PLUS] = ACTIONS(4672), + [anon_sym_DASH_DASH] = ACTIONS(4672), + [anon_sym_BANG] = ACTIONS(4670), + [anon_sym_BANG_BANG] = ACTIONS(4672), + [anon_sym_data] = ACTIONS(4670), + [anon_sym_inner] = ACTIONS(4670), + [anon_sym_value] = ACTIONS(4670), + [anon_sym_expect] = ACTIONS(4670), + [anon_sym_actual] = ACTIONS(4670), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4672), + [anon_sym_continue_AT] = ACTIONS(4672), + [anon_sym_break_AT] = ACTIONS(4672), + [anon_sym_this_AT] = ACTIONS(4672), + [anon_sym_super_AT] = ACTIONS(4672), + [sym_real_literal] = ACTIONS(4672), + [sym_integer_literal] = ACTIONS(4670), + [sym_hex_literal] = ACTIONS(4672), + [sym_bin_literal] = ACTIONS(4672), + [anon_sym_true] = ACTIONS(4670), + [anon_sym_false] = ACTIONS(4670), + [anon_sym_SQUOTE] = ACTIONS(4672), + [sym__backtick_identifier] = ACTIONS(4672), + [sym__automatic_semicolon] = ACTIONS(4672), + [sym_safe_nav] = ACTIONS(4672), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4672), }, - [2965] = { - [aux_sym_user_type_repeat1] = STATE(2959), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_EQ] = ACTIONS(4227), - [anon_sym_fun] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_COMMA] = ACTIONS(4227), - [anon_sym_by] = ACTIONS(4225), - [anon_sym_where] = ACTIONS(4225), - [anon_sym_object] = ACTIONS(4225), - [anon_sym_DOT] = ACTIONS(6624), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [anon_sym_this] = ACTIONS(4225), - [anon_sym_super] = ACTIONS(4225), - [anon_sym_AMP] = ACTIONS(4227), - [sym__quest] = ACTIONS(4227), - [anon_sym_STAR] = ACTIONS(4227), - [sym_label] = ACTIONS(4225), - [anon_sym_in] = ACTIONS(4225), - [anon_sym_null] = ACTIONS(4225), - [anon_sym_if] = ACTIONS(4225), - [anon_sym_else] = ACTIONS(4225), - [anon_sym_when] = ACTIONS(4225), - [anon_sym_try] = ACTIONS(4225), - [anon_sym_throw] = ACTIONS(4225), - [anon_sym_return] = ACTIONS(4225), - [anon_sym_continue] = ACTIONS(4225), - [anon_sym_break] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_BANGin] = ACTIONS(4227), - [anon_sym_is] = ACTIONS(4225), - [anon_sym_BANGis] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG] = ACTIONS(4225), - [anon_sym_suspend] = ACTIONS(4225), - [anon_sym_sealed] = ACTIONS(4225), - [anon_sym_annotation] = ACTIONS(4225), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_override] = ACTIONS(4225), - [anon_sym_lateinit] = ACTIONS(4225), - [anon_sym_public] = ACTIONS(4225), - [anon_sym_private] = ACTIONS(4225), - [anon_sym_internal] = ACTIONS(4225), - [anon_sym_protected] = ACTIONS(4225), - [anon_sym_tailrec] = ACTIONS(4225), - [anon_sym_operator] = ACTIONS(4225), - [anon_sym_infix] = ACTIONS(4225), - [anon_sym_inline] = ACTIONS(4225), - [anon_sym_external] = ACTIONS(4225), - [sym_property_modifier] = ACTIONS(4225), - [anon_sym_abstract] = ACTIONS(4225), - [anon_sym_final] = ACTIONS(4225), - [anon_sym_open] = ACTIONS(4225), - [anon_sym_vararg] = ACTIONS(4225), - [anon_sym_noinline] = ACTIONS(4225), - [anon_sym_crossinline] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4227), - [anon_sym_continue_AT] = ACTIONS(4227), - [anon_sym_break_AT] = ACTIONS(4227), - [anon_sym_this_AT] = ACTIONS(4227), - [anon_sym_super_AT] = ACTIONS(4227), - [sym_real_literal] = ACTIONS(4227), - [sym_integer_literal] = ACTIONS(4225), - [sym_hex_literal] = ACTIONS(4227), - [sym_bin_literal] = ACTIONS(4227), - [anon_sym_true] = ACTIONS(4225), - [anon_sym_false] = ACTIONS(4225), - [anon_sym_SQUOTE] = ACTIONS(4227), - [sym__backtick_identifier] = ACTIONS(4227), - [sym__automatic_semicolon] = ACTIONS(4227), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4227), + [2972] = { + [sym__alpha_identifier] = ACTIONS(4543), + [anon_sym_AT] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_as] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_where] = ACTIONS(4543), + [anon_sym_object] = ACTIONS(4543), + [anon_sym_fun] = ACTIONS(4543), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4545), + [anon_sym_get] = ACTIONS(4543), + [anon_sym_set] = ACTIONS(4543), + [anon_sym_this] = ACTIONS(4543), + [anon_sym_super] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4543), + [anon_sym_in] = ACTIONS(4543), + [anon_sym_DOT_DOT] = ACTIONS(4545), + [anon_sym_QMARK_COLON] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_null] = ACTIONS(4543), + [anon_sym_if] = ACTIONS(4543), + [anon_sym_else] = ACTIONS(4543), + [anon_sym_when] = ACTIONS(4543), + [anon_sym_try] = ACTIONS(4543), + [anon_sym_throw] = ACTIONS(4543), + [anon_sym_return] = ACTIONS(4543), + [anon_sym_continue] = ACTIONS(4543), + [anon_sym_break] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4545), + [anon_sym_EQ_EQ] = ACTIONS(4543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_BANGin] = ACTIONS(4545), + [anon_sym_is] = ACTIONS(4543), + [anon_sym_BANGis] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_BANG] = ACTIONS(4543), + [anon_sym_BANG_BANG] = ACTIONS(4545), + [anon_sym_data] = ACTIONS(4543), + [anon_sym_inner] = ACTIONS(4543), + [anon_sym_value] = ACTIONS(4543), + [anon_sym_expect] = ACTIONS(4543), + [anon_sym_actual] = ACTIONS(4543), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4545), + [anon_sym_continue_AT] = ACTIONS(4545), + [anon_sym_break_AT] = ACTIONS(4545), + [anon_sym_this_AT] = ACTIONS(4545), + [anon_sym_super_AT] = ACTIONS(4545), + [sym_real_literal] = ACTIONS(4545), + [sym_integer_literal] = ACTIONS(4543), + [sym_hex_literal] = ACTIONS(4545), + [sym_bin_literal] = ACTIONS(4545), + [anon_sym_true] = ACTIONS(4543), + [anon_sym_false] = ACTIONS(4543), + [anon_sym_SQUOTE] = ACTIONS(4545), + [sym__backtick_identifier] = ACTIONS(4545), + [sym__automatic_semicolon] = ACTIONS(4545), + [sym_safe_nav] = ACTIONS(4545), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4545), }, - [2966] = { - [sym_class_body] = STATE(3251), - [sym__alpha_identifier] = ACTIONS(4443), - [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(6626), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_as] = ACTIONS(4443), - [anon_sym_EQ] = ACTIONS(4443), - [anon_sym_fun] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4443), - [anon_sym_GT] = ACTIONS(4443), - [anon_sym_where] = ACTIONS(4443), - [anon_sym_object] = ACTIONS(4443), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4445), - [anon_sym_get] = ACTIONS(4443), - [anon_sym_set] = ACTIONS(4443), - [anon_sym_this] = ACTIONS(4443), - [anon_sym_super] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4443), - [sym_label] = ACTIONS(4443), - [anon_sym_in] = ACTIONS(4443), - [anon_sym_DOT_DOT] = ACTIONS(4445), - [anon_sym_QMARK_COLON] = ACTIONS(4445), - [anon_sym_AMP_AMP] = ACTIONS(4445), - [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), - [anon_sym_if] = ACTIONS(4443), - [anon_sym_else] = ACTIONS(4443), - [anon_sym_when] = ACTIONS(4443), - [anon_sym_try] = ACTIONS(4443), - [anon_sym_throw] = ACTIONS(4443), - [anon_sym_return] = ACTIONS(4443), - [anon_sym_continue] = ACTIONS(4443), - [anon_sym_break] = ACTIONS(4443), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_PLUS_EQ] = ACTIONS(4445), - [anon_sym_DASH_EQ] = ACTIONS(4445), - [anon_sym_STAR_EQ] = ACTIONS(4445), - [anon_sym_SLASH_EQ] = ACTIONS(4445), - [anon_sym_PERCENT_EQ] = ACTIONS(4445), - [anon_sym_BANG_EQ] = ACTIONS(4443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), - [anon_sym_EQ_EQ] = ACTIONS(4443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), - [anon_sym_LT_EQ] = ACTIONS(4445), - [anon_sym_GT_EQ] = ACTIONS(4445), - [anon_sym_BANGin] = ACTIONS(4445), - [anon_sym_is] = ACTIONS(4443), - [anon_sym_BANGis] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_SLASH] = ACTIONS(4443), - [anon_sym_PERCENT] = ACTIONS(4443), - [anon_sym_as_QMARK] = ACTIONS(4445), - [anon_sym_PLUS_PLUS] = ACTIONS(4445), - [anon_sym_DASH_DASH] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4443), - [anon_sym_BANG_BANG] = ACTIONS(4445), - [anon_sym_data] = ACTIONS(4443), - [anon_sym_inner] = ACTIONS(4443), - [anon_sym_value] = ACTIONS(4443), - [anon_sym_expect] = ACTIONS(4443), - [anon_sym_actual] = ACTIONS(4443), + [2973] = { + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_RBRACK] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6567), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [anon_sym_DASH_GT] = ACTIONS(4239), + [sym_label] = ACTIONS(4239), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_while] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4445), - [anon_sym_continue_AT] = ACTIONS(4445), - [anon_sym_break_AT] = ACTIONS(4445), - [anon_sym_this_AT] = ACTIONS(4445), - [anon_sym_super_AT] = ACTIONS(4445), - [sym_real_literal] = ACTIONS(4445), - [sym_integer_literal] = ACTIONS(4443), - [sym_hex_literal] = ACTIONS(4445), - [sym_bin_literal] = ACTIONS(4445), - [anon_sym_true] = ACTIONS(4443), - [anon_sym_false] = ACTIONS(4443), - [anon_sym_SQUOTE] = ACTIONS(4445), - [sym__backtick_identifier] = ACTIONS(4445), - [sym__automatic_semicolon] = ACTIONS(4445), - [sym_safe_nav] = ACTIONS(4445), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4445), - }, - [2967] = { - [sym_function_body] = STATE(3238), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4339), - [anon_sym_object] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_this] = ACTIONS(4339), - [anon_sym_super] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [sym_label] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [anon_sym_try] = ACTIONS(4339), - [anon_sym_throw] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_PLUS_EQ] = ACTIONS(4341), - [anon_sym_DASH_EQ] = ACTIONS(4341), - [anon_sym_STAR_EQ] = ACTIONS(4341), - [anon_sym_SLASH_EQ] = ACTIONS(4341), - [anon_sym_PERCENT_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4339), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4341), - [anon_sym_continue_AT] = ACTIONS(4341), - [anon_sym_break_AT] = ACTIONS(4341), - [anon_sym_this_AT] = ACTIONS(4341), - [anon_sym_super_AT] = ACTIONS(4341), - [sym_real_literal] = ACTIONS(4341), - [sym_integer_literal] = ACTIONS(4339), - [sym_hex_literal] = ACTIONS(4341), - [sym_bin_literal] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4339), - [anon_sym_false] = ACTIONS(4339), - [anon_sym_SQUOTE] = ACTIONS(4341), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4341), - }, - [2968] = { - [sym_class_body] = STATE(3197), - [sym_type_constraints] = STATE(3110), - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_fun] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_super] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [sym_label] = ACTIONS(4469), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_null] = ACTIONS(4469), - [anon_sym_if] = ACTIONS(4469), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_when] = ACTIONS(4469), - [anon_sym_try] = ACTIONS(4469), - [anon_sym_throw] = ACTIONS(4469), - [anon_sym_return] = ACTIONS(4469), - [anon_sym_continue] = ACTIONS(4469), - [anon_sym_break] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_value] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4471), - [anon_sym_continue_AT] = ACTIONS(4471), - [anon_sym_break_AT] = ACTIONS(4471), - [anon_sym_this_AT] = ACTIONS(4471), - [anon_sym_super_AT] = ACTIONS(4471), - [sym_real_literal] = ACTIONS(4471), - [sym_integer_literal] = ACTIONS(4469), - [sym_hex_literal] = ACTIONS(4471), - [sym_bin_literal] = ACTIONS(4471), - [anon_sym_true] = ACTIONS(4469), - [anon_sym_false] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4471), - [sym__backtick_identifier] = ACTIONS(4471), - [sym__automatic_semicolon] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4471), - }, - [2969] = { - [sym_function_body] = STATE(3273), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_COMMA] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_where] = ACTIONS(4518), - [anon_sym_object] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_this] = ACTIONS(4518), - [anon_sym_super] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4518), - [sym_label] = ACTIONS(4518), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_null] = ACTIONS(4518), - [anon_sym_if] = ACTIONS(4518), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_when] = ACTIONS(4518), - [anon_sym_try] = ACTIONS(4518), - [anon_sym_throw] = ACTIONS(4518), - [anon_sym_return] = ACTIONS(4518), - [anon_sym_continue] = ACTIONS(4518), - [anon_sym_break] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_PLUS_EQ] = ACTIONS(4520), - [anon_sym_DASH_EQ] = ACTIONS(4520), - [anon_sym_STAR_EQ] = ACTIONS(4520), - [anon_sym_SLASH_EQ] = ACTIONS(4520), - [anon_sym_PERCENT_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4518), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4518), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4520), - [anon_sym_continue_AT] = ACTIONS(4520), - [anon_sym_break_AT] = ACTIONS(4520), - [anon_sym_this_AT] = ACTIONS(4520), - [anon_sym_super_AT] = ACTIONS(4520), - [sym_real_literal] = ACTIONS(4520), - [sym_integer_literal] = ACTIONS(4518), - [sym_hex_literal] = ACTIONS(4520), - [sym_bin_literal] = ACTIONS(4520), - [anon_sym_true] = ACTIONS(4518), - [anon_sym_false] = ACTIONS(4518), - [anon_sym_SQUOTE] = ACTIONS(4520), - [sym__backtick_identifier] = ACTIONS(4520), - [sym__automatic_semicolon] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4520), - }, - [2970] = { - [sym_class_body] = STATE(3174), - [sym_type_constraints] = STATE(3093), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), - }, - [2971] = { - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_where] = ACTIONS(4530), - [anon_sym_object] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_this] = ACTIONS(4530), - [anon_sym_super] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_null] = ACTIONS(4530), - [anon_sym_if] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_when] = ACTIONS(4530), - [anon_sym_try] = ACTIONS(4530), - [anon_sym_throw] = ACTIONS(4530), - [anon_sym_return] = ACTIONS(4530), - [anon_sym_continue] = ACTIONS(4530), - [anon_sym_break] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4532), - [anon_sym_continue_AT] = ACTIONS(4532), - [anon_sym_break_AT] = ACTIONS(4532), - [anon_sym_this_AT] = ACTIONS(4532), - [anon_sym_super_AT] = ACTIONS(4532), - [sym_real_literal] = ACTIONS(4532), - [sym_integer_literal] = ACTIONS(4530), - [sym_hex_literal] = ACTIONS(4532), - [sym_bin_literal] = ACTIONS(4532), - [anon_sym_true] = ACTIONS(4530), - [anon_sym_false] = ACTIONS(4530), - [anon_sym_SQUOTE] = ACTIONS(4532), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4532), - }, - [2972] = { - [sym_function_body] = STATE(3280), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4453), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_where] = ACTIONS(4453), - [anon_sym_object] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_this] = ACTIONS(4453), - [anon_sym_super] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4453), - [sym_label] = ACTIONS(4453), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_null] = ACTIONS(4453), - [anon_sym_if] = ACTIONS(4453), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_when] = ACTIONS(4453), - [anon_sym_try] = ACTIONS(4453), - [anon_sym_throw] = ACTIONS(4453), - [anon_sym_return] = ACTIONS(4453), - [anon_sym_continue] = ACTIONS(4453), - [anon_sym_break] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_PLUS_EQ] = ACTIONS(4455), - [anon_sym_DASH_EQ] = ACTIONS(4455), - [anon_sym_STAR_EQ] = ACTIONS(4455), - [anon_sym_SLASH_EQ] = ACTIONS(4455), - [anon_sym_PERCENT_EQ] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4453), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4453), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4455), - [anon_sym_continue_AT] = ACTIONS(4455), - [anon_sym_break_AT] = ACTIONS(4455), - [anon_sym_this_AT] = ACTIONS(4455), - [anon_sym_super_AT] = ACTIONS(4455), - [sym_real_literal] = ACTIONS(4455), - [sym_integer_literal] = ACTIONS(4453), - [sym_hex_literal] = ACTIONS(4455), - [sym_bin_literal] = ACTIONS(4455), - [anon_sym_true] = ACTIONS(4453), - [anon_sym_false] = ACTIONS(4453), - [anon_sym_SQUOTE] = ACTIONS(4455), - [sym__backtick_identifier] = ACTIONS(4455), - [sym__automatic_semicolon] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4455), - }, - [2973] = { - [sym_type_constraints] = STATE(3341), - [sym_function_body] = STATE(3461), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(6628), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_RBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_COMMA] = ACTIONS(4211), - [anon_sym_RPAREN] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4209), - [anon_sym_DASH_GT] = ACTIONS(4211), - [sym_label] = ACTIONS(4211), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_while] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_PLUS_EQ] = ACTIONS(4211), - [anon_sym_DASH_EQ] = ACTIONS(4211), - [anon_sym_STAR_EQ] = ACTIONS(4211), - [anon_sym_SLASH_EQ] = ACTIONS(4211), - [anon_sym_PERCENT_EQ] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4209), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_suspend] = ACTIONS(4209), - [anon_sym_sealed] = ACTIONS(4209), - [anon_sym_annotation] = ACTIONS(4209), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_override] = ACTIONS(4209), - [anon_sym_lateinit] = ACTIONS(4209), - [anon_sym_public] = ACTIONS(4209), - [anon_sym_private] = ACTIONS(4209), - [anon_sym_internal] = ACTIONS(4209), - [anon_sym_protected] = ACTIONS(4209), - [anon_sym_tailrec] = ACTIONS(4209), - [anon_sym_operator] = ACTIONS(4209), - [anon_sym_infix] = ACTIONS(4209), - [anon_sym_inline] = ACTIONS(4209), - [anon_sym_external] = ACTIONS(4209), - [sym_property_modifier] = ACTIONS(4209), - [anon_sym_abstract] = ACTIONS(4209), - [anon_sym_final] = ACTIONS(4209), - [anon_sym_open] = ACTIONS(4209), - [anon_sym_vararg] = ACTIONS(4209), - [anon_sym_noinline] = ACTIONS(4209), - [anon_sym_crossinline] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), + [sym__backtick_identifier] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), [sym_multiline_comment] = ACTIONS(3), }, [2974] = { - [sym_getter] = STATE(3962), - [sym_setter] = STATE(3962), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(3438), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3438), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_object] = ACTIONS(4710), + [anon_sym_fun] = ACTIONS(4710), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_this] = ACTIONS(4710), + [anon_sym_super] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [sym_label] = ACTIONS(4710), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_null] = ACTIONS(4710), + [anon_sym_if] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_when] = ACTIONS(4710), + [anon_sym_try] = ACTIONS(4710), + [anon_sym_throw] = ACTIONS(4710), + [anon_sym_return] = ACTIONS(4710), + [anon_sym_continue] = ACTIONS(4710), + [anon_sym_break] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4712), + [anon_sym_continue_AT] = ACTIONS(4712), + [anon_sym_break_AT] = ACTIONS(4712), + [anon_sym_this_AT] = ACTIONS(4712), + [anon_sym_super_AT] = ACTIONS(4712), + [anon_sym_AT2] = ACTIONS(6569), + [sym_real_literal] = ACTIONS(4712), + [sym_integer_literal] = ACTIONS(4710), + [sym_hex_literal] = ACTIONS(4712), + [sym_bin_literal] = ACTIONS(4712), + [anon_sym_true] = ACTIONS(4710), + [anon_sym_false] = ACTIONS(4710), + [anon_sym_SQUOTE] = ACTIONS(4712), + [sym__backtick_identifier] = ACTIONS(4712), + [sym__automatic_semicolon] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4712), }, [2975] = { - [sym_type_constraints] = STATE(3338), - [sym_function_body] = STATE(3582), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6634), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_RBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_RPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [anon_sym_DASH_GT] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(6571), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, [2976] = { - [sym_type_arguments] = STATE(6730), - [sym__alpha_identifier] = ACTIONS(4219), - [anon_sym_AT] = ACTIONS(4221), - [anon_sym_COLON] = ACTIONS(6636), - [anon_sym_LBRACK] = ACTIONS(4221), - [anon_sym_EQ] = ACTIONS(4221), - [anon_sym_fun] = ACTIONS(4219), - [anon_sym_LBRACE] = ACTIONS(4221), - [anon_sym_RBRACE] = ACTIONS(4221), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_by] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(6638), - [anon_sym_where] = ACTIONS(4219), - [anon_sym_object] = ACTIONS(4219), - [anon_sym_DOT] = ACTIONS(4177), - [anon_sym_SEMI] = ACTIONS(4221), - [anon_sym_get] = ACTIONS(4219), - [anon_sym_set] = ACTIONS(4219), - [anon_sym_this] = ACTIONS(4219), - [anon_sym_super] = ACTIONS(4219), - [sym__quest] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4221), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4219), - [anon_sym_if] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4219), - [anon_sym_when] = ACTIONS(4219), - [anon_sym_try] = ACTIONS(4219), - [anon_sym_throw] = ACTIONS(4219), - [anon_sym_return] = ACTIONS(4219), - [anon_sym_continue] = ACTIONS(4219), - [anon_sym_break] = ACTIONS(4219), - [anon_sym_COLON_COLON] = ACTIONS(4221), - [anon_sym_BANGin] = ACTIONS(4221), - [anon_sym_is] = ACTIONS(4219), - [anon_sym_BANGis] = ACTIONS(4221), - [anon_sym_PLUS] = ACTIONS(4219), - [anon_sym_DASH] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4221), - [anon_sym_DASH_DASH] = ACTIONS(4221), - [anon_sym_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4219), - [anon_sym_sealed] = ACTIONS(4219), - [anon_sym_annotation] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4219), - [anon_sym_inner] = ACTIONS(4219), - [anon_sym_value] = ACTIONS(4219), - [anon_sym_override] = ACTIONS(4219), - [anon_sym_lateinit] = ACTIONS(4219), - [anon_sym_public] = ACTIONS(4219), - [anon_sym_private] = ACTIONS(4219), - [anon_sym_internal] = ACTIONS(4219), - [anon_sym_protected] = ACTIONS(4219), - [anon_sym_tailrec] = ACTIONS(4219), - [anon_sym_operator] = ACTIONS(4219), - [anon_sym_infix] = ACTIONS(4219), - [anon_sym_inline] = ACTIONS(4219), - [anon_sym_external] = ACTIONS(4219), - [sym_property_modifier] = ACTIONS(4219), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_final] = ACTIONS(4219), - [anon_sym_open] = ACTIONS(4219), - [anon_sym_vararg] = ACTIONS(4219), - [anon_sym_noinline] = ACTIONS(4219), - [anon_sym_crossinline] = ACTIONS(4219), - [anon_sym_expect] = ACTIONS(4219), - [anon_sym_actual] = ACTIONS(4219), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4221), - [anon_sym_continue_AT] = ACTIONS(4221), - [anon_sym_break_AT] = ACTIONS(4221), - [anon_sym_this_AT] = ACTIONS(4221), - [anon_sym_super_AT] = ACTIONS(4221), - [sym_real_literal] = ACTIONS(4221), - [sym_integer_literal] = ACTIONS(4219), - [sym_hex_literal] = ACTIONS(4221), - [sym_bin_literal] = ACTIONS(4221), - [anon_sym_true] = ACTIONS(4219), - [anon_sym_false] = ACTIONS(4219), - [anon_sym_SQUOTE] = ACTIONS(4221), - [sym__backtick_identifier] = ACTIONS(4221), - [sym__automatic_semicolon] = ACTIONS(4221), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4221), + [sym_annotated_lambda] = STATE(3935), + [sym_lambda_literal] = STATE(4039), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4002), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), }, [2977] = { - [sym_type_constraints] = STATE(3333), - [sym_function_body] = STATE(3584), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(6640), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_RBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_RPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_DASH_GT] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_while] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [aux_sym_nullable_type_repeat1] = STATE(3043), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_RBRACK] = ACTIONS(4305), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_RPAREN] = ACTIONS(4305), + [anon_sym_by] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [sym__quest] = ACTIONS(6573), + [anon_sym_STAR] = ACTIONS(4303), + [anon_sym_DASH_GT] = ACTIONS(4305), + [sym_label] = ACTIONS(4305), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_while] = ACTIONS(4303), + [anon_sym_DOT_DOT] = ACTIONS(4305), + [anon_sym_QMARK_COLON] = ACTIONS(4305), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4305), + [anon_sym_else] = ACTIONS(4303), + [anon_sym_COLON_COLON] = ACTIONS(4305), + [anon_sym_PLUS_EQ] = ACTIONS(4305), + [anon_sym_DASH_EQ] = ACTIONS(4305), + [anon_sym_STAR_EQ] = ACTIONS(4305), + [anon_sym_SLASH_EQ] = ACTIONS(4305), + [anon_sym_PERCENT_EQ] = ACTIONS(4305), + [anon_sym_BANG_EQ] = ACTIONS(4303), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4305), + [anon_sym_EQ_EQ] = ACTIONS(4303), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4305), + [anon_sym_LT_EQ] = ACTIONS(4305), + [anon_sym_GT_EQ] = ACTIONS(4305), + [anon_sym_BANGin] = ACTIONS(4305), + [anon_sym_is] = ACTIONS(4303), + [anon_sym_BANGis] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_as_QMARK] = ACTIONS(4305), + [anon_sym_PLUS_PLUS] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_BANG_BANG] = ACTIONS(4305), + [anon_sym_suspend] = ACTIONS(4303), + [anon_sym_sealed] = ACTIONS(4303), + [anon_sym_annotation] = ACTIONS(4303), + [anon_sym_data] = ACTIONS(4303), + [anon_sym_inner] = ACTIONS(4303), + [anon_sym_value] = ACTIONS(4303), + [anon_sym_override] = ACTIONS(4303), + [anon_sym_lateinit] = ACTIONS(4303), + [anon_sym_public] = ACTIONS(4303), + [anon_sym_private] = ACTIONS(4303), + [anon_sym_internal] = ACTIONS(4303), + [anon_sym_protected] = ACTIONS(4303), + [anon_sym_tailrec] = ACTIONS(4303), + [anon_sym_operator] = ACTIONS(4303), + [anon_sym_infix] = ACTIONS(4303), + [anon_sym_inline] = ACTIONS(4303), + [anon_sym_external] = ACTIONS(4303), + [sym_property_modifier] = ACTIONS(4303), + [anon_sym_abstract] = ACTIONS(4303), + [anon_sym_final] = ACTIONS(4303), + [anon_sym_open] = ACTIONS(4303), + [anon_sym_vararg] = ACTIONS(4303), + [anon_sym_noinline] = ACTIONS(4303), + [anon_sym_crossinline] = ACTIONS(4303), + [anon_sym_expect] = ACTIONS(4303), + [anon_sym_actual] = ACTIONS(4303), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), [sym_multiline_comment] = ACTIONS(3), }, [2978] = { - [sym_class_body] = STATE(3229), - [sym_type_constraints] = STATE(3076), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), + [sym_annotated_lambda] = STATE(3981), + [sym_lambda_literal] = STATE(4039), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3994), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), }, [2979] = { - [sym_type_constraints] = STATE(3072), - [sym_enum_class_body] = STATE(3229), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_RBRACK] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6575), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [anon_sym_DASH_GT] = ACTIONS(4239), + [sym_label] = ACTIONS(4239), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_while] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), + [sym_multiline_comment] = ACTIONS(3), }, [2980] = { - [sym_type_constraints] = STATE(3134), - [sym_enum_class_body] = STATE(3204), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3378), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [sym_class_body] = STATE(3513), + [sym_type_constraints] = STATE(3324), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6577), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), }, [2981] = { - [aux_sym_user_type_repeat1] = STATE(2836), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_fun] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_COMMA] = ACTIONS(4227), - [anon_sym_by] = ACTIONS(4225), - [anon_sym_LT] = ACTIONS(4225), - [anon_sym_GT] = ACTIONS(4225), - [anon_sym_where] = ACTIONS(4225), - [anon_sym_object] = ACTIONS(4225), - [anon_sym_DOT] = ACTIONS(6642), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [anon_sym_this] = ACTIONS(4225), - [anon_sym_super] = ACTIONS(4225), - [anon_sym_STAR] = ACTIONS(4225), - [sym_label] = ACTIONS(4225), - [anon_sym_in] = ACTIONS(4225), - [anon_sym_DOT_DOT] = ACTIONS(4227), - [anon_sym_QMARK_COLON] = ACTIONS(4227), - [anon_sym_AMP_AMP] = ACTIONS(4227), - [anon_sym_PIPE_PIPE] = ACTIONS(4227), - [anon_sym_null] = ACTIONS(4225), - [anon_sym_if] = ACTIONS(4225), - [anon_sym_else] = ACTIONS(4225), - [anon_sym_when] = ACTIONS(4225), - [anon_sym_try] = ACTIONS(4225), - [anon_sym_throw] = ACTIONS(4225), - [anon_sym_return] = ACTIONS(4225), - [anon_sym_continue] = ACTIONS(4225), - [anon_sym_break] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_PLUS_EQ] = ACTIONS(4227), - [anon_sym_DASH_EQ] = ACTIONS(4227), - [anon_sym_STAR_EQ] = ACTIONS(4227), - [anon_sym_SLASH_EQ] = ACTIONS(4227), - [anon_sym_PERCENT_EQ] = ACTIONS(4227), - [anon_sym_BANG_EQ] = ACTIONS(4225), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4227), - [anon_sym_EQ_EQ] = ACTIONS(4225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4227), - [anon_sym_LT_EQ] = ACTIONS(4227), - [anon_sym_GT_EQ] = ACTIONS(4227), - [anon_sym_BANGin] = ACTIONS(4227), - [anon_sym_is] = ACTIONS(4225), - [anon_sym_BANGis] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_SLASH] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_as_QMARK] = ACTIONS(4227), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG] = ACTIONS(4225), - [anon_sym_BANG_BANG] = ACTIONS(4227), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4227), - [anon_sym_continue_AT] = ACTIONS(4227), - [anon_sym_break_AT] = ACTIONS(4227), - [anon_sym_this_AT] = ACTIONS(4227), - [anon_sym_super_AT] = ACTIONS(4227), - [sym_real_literal] = ACTIONS(4227), - [sym_integer_literal] = ACTIONS(4225), - [sym_hex_literal] = ACTIONS(4227), - [sym_bin_literal] = ACTIONS(4227), - [anon_sym_true] = ACTIONS(4225), - [anon_sym_false] = ACTIONS(4225), - [anon_sym_SQUOTE] = ACTIONS(4227), - [sym__backtick_identifier] = ACTIONS(4227), - [sym__automatic_semicolon] = ACTIONS(4227), - [sym_safe_nav] = ACTIONS(4227), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4227), + [aux_sym__delegation_specifiers_repeat1] = STATE(3034), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_EQ] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(6579), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_object] = ACTIONS(4684), + [anon_sym_fun] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_this] = ACTIONS(4684), + [anon_sym_super] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4684), + [sym_label] = ACTIONS(4684), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(4684), + [anon_sym_if] = ACTIONS(4684), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_when] = ACTIONS(4684), + [anon_sym_try] = ACTIONS(4684), + [anon_sym_throw] = ACTIONS(4684), + [anon_sym_return] = ACTIONS(4684), + [anon_sym_continue] = ACTIONS(4684), + [anon_sym_break] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_PLUS_EQ] = ACTIONS(4686), + [anon_sym_DASH_EQ] = ACTIONS(4686), + [anon_sym_STAR_EQ] = ACTIONS(4686), + [anon_sym_SLASH_EQ] = ACTIONS(4686), + [anon_sym_PERCENT_EQ] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4684), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG] = ACTIONS(4684), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4686), + [anon_sym_continue_AT] = ACTIONS(4686), + [anon_sym_break_AT] = ACTIONS(4686), + [anon_sym_this_AT] = ACTIONS(4686), + [anon_sym_super_AT] = ACTIONS(4686), + [sym_real_literal] = ACTIONS(4686), + [sym_integer_literal] = ACTIONS(4684), + [sym_hex_literal] = ACTIONS(4686), + [sym_bin_literal] = ACTIONS(4686), + [anon_sym_true] = ACTIONS(4684), + [anon_sym_false] = ACTIONS(4684), + [anon_sym_SQUOTE] = ACTIONS(4686), + [sym__backtick_identifier] = ACTIONS(4686), + [sym__automatic_semicolon] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4686), }, [2982] = { - [sym_class_body] = STATE(3164), - [sym_type_constraints] = STATE(3128), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_fun] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_this] = ACTIONS(4465), - [anon_sym_super] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [sym_label] = ACTIONS(4465), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_null] = ACTIONS(4465), - [anon_sym_if] = ACTIONS(4465), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_when] = ACTIONS(4465), - [anon_sym_try] = ACTIONS(4465), - [anon_sym_throw] = ACTIONS(4465), - [anon_sym_return] = ACTIONS(4465), - [anon_sym_continue] = ACTIONS(4465), - [anon_sym_break] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4467), - [anon_sym_continue_AT] = ACTIONS(4467), - [anon_sym_break_AT] = ACTIONS(4467), - [anon_sym_this_AT] = ACTIONS(4467), - [anon_sym_super_AT] = ACTIONS(4467), - [sym_real_literal] = ACTIONS(4467), - [sym_integer_literal] = ACTIONS(4465), - [sym_hex_literal] = ACTIONS(4467), - [sym_bin_literal] = ACTIONS(4467), - [anon_sym_true] = ACTIONS(4465), - [anon_sym_false] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4467), - [sym__backtick_identifier] = ACTIONS(4467), - [sym__automatic_semicolon] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4467), + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4053), + [anon_sym_DASH_EQ] = ACTIONS(4053), + [anon_sym_STAR_EQ] = ACTIONS(4053), + [anon_sym_SLASH_EQ] = ACTIONS(4053), + [anon_sym_PERCENT_EQ] = ACTIONS(4053), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), }, [2983] = { - [sym_class_body] = STATE(3147), - [sym_type_constraints] = STATE(3101), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_fun] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_this] = ACTIONS(4457), - [anon_sym_super] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [sym_label] = ACTIONS(4457), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_null] = ACTIONS(4457), - [anon_sym_if] = ACTIONS(4457), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_when] = ACTIONS(4457), - [anon_sym_try] = ACTIONS(4457), - [anon_sym_throw] = ACTIONS(4457), - [anon_sym_return] = ACTIONS(4457), - [anon_sym_continue] = ACTIONS(4457), - [anon_sym_break] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4459), - [anon_sym_continue_AT] = ACTIONS(4459), - [anon_sym_break_AT] = ACTIONS(4459), - [anon_sym_this_AT] = ACTIONS(4459), - [anon_sym_super_AT] = ACTIONS(4459), - [sym_real_literal] = ACTIONS(4459), - [sym_integer_literal] = ACTIONS(4457), - [sym_hex_literal] = ACTIONS(4459), - [sym_bin_literal] = ACTIONS(4459), - [anon_sym_true] = ACTIONS(4457), - [anon_sym_false] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4459), - [sym__backtick_identifier] = ACTIONS(4459), - [sym__automatic_semicolon] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4459), + [sym_class_body] = STATE(3565), + [sym_type_constraints] = STATE(3329), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(5669), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), }, [2984] = { - [sym_class_body] = STATE(3204), - [sym_type_constraints] = STATE(3107), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3386), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [sym_class_body] = STATE(3543), + [sym_type_constraints] = STATE(3346), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(6581), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_RBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [anon_sym_DASH_GT] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), }, [2985] = { - [sym_type_constraints] = STATE(3326), - [sym_function_body] = STATE(3608), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(6645), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_RBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [anon_sym_DASH_GT] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), + [sym_enum_class_body] = STATE(3114), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_object] = ACTIONS(4567), + [anon_sym_fun] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_this] = ACTIONS(4567), + [anon_sym_super] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [sym_label] = ACTIONS(4567), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_null] = ACTIONS(4567), + [anon_sym_if] = ACTIONS(4567), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_when] = ACTIONS(4567), + [anon_sym_try] = ACTIONS(4567), + [anon_sym_throw] = ACTIONS(4567), + [anon_sym_return] = ACTIONS(4567), + [anon_sym_continue] = ACTIONS(4567), + [anon_sym_break] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4569), + [anon_sym_continue_AT] = ACTIONS(4569), + [anon_sym_break_AT] = ACTIONS(4569), + [anon_sym_this_AT] = ACTIONS(4569), + [anon_sym_super_AT] = ACTIONS(4569), + [sym_real_literal] = ACTIONS(4569), + [sym_integer_literal] = ACTIONS(4567), + [sym_hex_literal] = ACTIONS(4569), + [sym_bin_literal] = ACTIONS(4569), + [anon_sym_true] = ACTIONS(4567), + [anon_sym_false] = ACTIONS(4567), + [anon_sym_SQUOTE] = ACTIONS(4569), + [sym__backtick_identifier] = ACTIONS(4569), + [sym__automatic_semicolon] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4569), }, [2986] = { - [sym__alpha_identifier] = ACTIONS(4373), - [anon_sym_AT] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_as] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_fun] = ACTIONS(4373), - [anon_sym_LBRACE] = ACTIONS(4375), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_where] = ACTIONS(4373), - [anon_sym_object] = ACTIONS(4373), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_get] = ACTIONS(4373), - [anon_sym_set] = ACTIONS(4373), - [anon_sym_this] = ACTIONS(4373), - [anon_sym_super] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4373), - [sym_label] = ACTIONS(4373), - [anon_sym_in] = ACTIONS(4373), - [anon_sym_DOT_DOT] = ACTIONS(4375), - [anon_sym_QMARK_COLON] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_null] = ACTIONS(4373), - [anon_sym_if] = ACTIONS(4373), - [anon_sym_else] = ACTIONS(4373), - [anon_sym_when] = ACTIONS(4373), - [anon_sym_try] = ACTIONS(4373), - [anon_sym_catch] = ACTIONS(4373), - [anon_sym_finally] = ACTIONS(4373), - [anon_sym_throw] = ACTIONS(4373), - [anon_sym_return] = ACTIONS(4373), - [anon_sym_continue] = ACTIONS(4373), - [anon_sym_break] = ACTIONS(4373), - [anon_sym_COLON_COLON] = ACTIONS(4375), - [anon_sym_PLUS_EQ] = ACTIONS(4375), - [anon_sym_DASH_EQ] = ACTIONS(4375), - [anon_sym_STAR_EQ] = ACTIONS(4375), - [anon_sym_SLASH_EQ] = ACTIONS(4375), - [anon_sym_PERCENT_EQ] = ACTIONS(4375), - [anon_sym_BANG_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4375), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_BANGin] = ACTIONS(4375), - [anon_sym_is] = ACTIONS(4373), - [anon_sym_BANGis] = ACTIONS(4375), - [anon_sym_PLUS] = ACTIONS(4373), - [anon_sym_DASH] = ACTIONS(4373), - [anon_sym_SLASH] = ACTIONS(4373), - [anon_sym_PERCENT] = ACTIONS(4373), - [anon_sym_as_QMARK] = ACTIONS(4375), - [anon_sym_PLUS_PLUS] = ACTIONS(4375), - [anon_sym_DASH_DASH] = ACTIONS(4375), - [anon_sym_BANG] = ACTIONS(4373), - [anon_sym_BANG_BANG] = ACTIONS(4375), - [anon_sym_data] = ACTIONS(4373), - [anon_sym_inner] = ACTIONS(4373), - [anon_sym_value] = ACTIONS(4373), - [anon_sym_expect] = ACTIONS(4373), - [anon_sym_actual] = ACTIONS(4373), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4375), - [anon_sym_continue_AT] = ACTIONS(4375), - [anon_sym_break_AT] = ACTIONS(4375), - [anon_sym_this_AT] = ACTIONS(4375), - [anon_sym_super_AT] = ACTIONS(4375), - [sym_real_literal] = ACTIONS(4375), - [sym_integer_literal] = ACTIONS(4373), - [sym_hex_literal] = ACTIONS(4375), - [sym_bin_literal] = ACTIONS(4375), - [anon_sym_true] = ACTIONS(4373), - [anon_sym_false] = ACTIONS(4373), - [anon_sym_SQUOTE] = ACTIONS(4375), - [sym__backtick_identifier] = ACTIONS(4375), - [sym__automatic_semicolon] = ACTIONS(4375), - [sym_safe_nav] = ACTIONS(4375), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4375), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(5665), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), }, [2987] = { - [sym_class_body] = STATE(3174), - [sym_type_constraints] = STATE(3093), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(6647), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [aux_sym__delegation_specifiers_repeat1] = STATE(3017), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), + [sym__string_start] = ACTIONS(4738), }, [2988] = { - [sym_getter] = STATE(4141), - [sym_setter] = STATE(4141), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym_class_body] = STATE(3539), + [sym_type_constraints] = STATE(3280), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [2989] = { - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), + [sym_enum_class_body] = STATE(3118), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_object] = ACTIONS(4481), + [anon_sym_fun] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_this] = ACTIONS(4481), + [anon_sym_super] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_null] = ACTIONS(4481), + [anon_sym_if] = ACTIONS(4481), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_when] = ACTIONS(4481), + [anon_sym_try] = ACTIONS(4481), + [anon_sym_throw] = ACTIONS(4481), + [anon_sym_return] = ACTIONS(4481), + [anon_sym_continue] = ACTIONS(4481), + [anon_sym_break] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4481), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4483), + [anon_sym_continue_AT] = ACTIONS(4483), + [anon_sym_break_AT] = ACTIONS(4483), + [anon_sym_this_AT] = ACTIONS(4483), + [anon_sym_super_AT] = ACTIONS(4483), + [sym_real_literal] = ACTIONS(4483), + [sym_integer_literal] = ACTIONS(4481), + [sym_hex_literal] = ACTIONS(4483), + [sym_bin_literal] = ACTIONS(4483), + [anon_sym_true] = ACTIONS(4481), + [anon_sym_false] = ACTIONS(4481), + [anon_sym_SQUOTE] = ACTIONS(4483), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4483), }, [2990] = { - [sym_class_body] = STATE(3264), - [sym_type_constraints] = STATE(3064), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [sym_class_body] = STATE(3133), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_object] = ACTIONS(4652), + [anon_sym_fun] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_this] = ACTIONS(4652), + [anon_sym_super] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4652), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_when] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4654), + [anon_sym_continue_AT] = ACTIONS(4654), + [anon_sym_break_AT] = ACTIONS(4654), + [anon_sym_this_AT] = ACTIONS(4654), + [anon_sym_super_AT] = ACTIONS(4654), + [sym_real_literal] = ACTIONS(4654), + [sym_integer_literal] = ACTIONS(4652), + [sym_hex_literal] = ACTIONS(4654), + [sym_bin_literal] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4654), }, [2991] = { - [sym_getter] = STATE(4022), - [sym_setter] = STATE(4022), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(1802), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), + [sym_type_constraints] = STATE(3303), + [sym_enum_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6583), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [2992] = { - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4938), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_as] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(4706), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_by] = ACTIONS(4706), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_where] = ACTIONS(4706), + [anon_sym_object] = ACTIONS(4706), + [anon_sym_fun] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(4706), + [anon_sym_set] = ACTIONS(4706), + [anon_sym_this] = ACTIONS(4706), + [anon_sym_super] = ACTIONS(4706), + [anon_sym_STAR] = ACTIONS(4706), + [sym_label] = ACTIONS(4706), + [anon_sym_in] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4708), + [anon_sym_QMARK_COLON] = ACTIONS(4708), + [anon_sym_AMP_AMP] = ACTIONS(4708), + [anon_sym_PIPE_PIPE] = ACTIONS(4708), + [anon_sym_null] = ACTIONS(4706), + [anon_sym_if] = ACTIONS(4706), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_when] = ACTIONS(4706), + [anon_sym_try] = ACTIONS(4706), + [anon_sym_throw] = ACTIONS(4706), + [anon_sym_return] = ACTIONS(4706), + [anon_sym_continue] = ACTIONS(4706), + [anon_sym_break] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4708), + [anon_sym_PLUS_EQ] = ACTIONS(4708), + [anon_sym_DASH_EQ] = ACTIONS(4708), + [anon_sym_STAR_EQ] = ACTIONS(4708), + [anon_sym_SLASH_EQ] = ACTIONS(4708), + [anon_sym_PERCENT_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4708), + [anon_sym_EQ_EQ] = ACTIONS(4706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4708), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_BANGin] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4706), + [anon_sym_BANGis] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4706), + [anon_sym_PERCENT] = ACTIONS(4706), + [anon_sym_as_QMARK] = ACTIONS(4708), + [anon_sym_PLUS_PLUS] = ACTIONS(4708), + [anon_sym_DASH_DASH] = ACTIONS(4708), + [anon_sym_BANG] = ACTIONS(4706), + [anon_sym_BANG_BANG] = ACTIONS(4708), + [anon_sym_data] = ACTIONS(4706), + [anon_sym_inner] = ACTIONS(4706), + [anon_sym_value] = ACTIONS(4706), + [anon_sym_expect] = ACTIONS(4706), + [anon_sym_actual] = ACTIONS(4706), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4708), + [anon_sym_continue_AT] = ACTIONS(4708), + [anon_sym_break_AT] = ACTIONS(4708), + [anon_sym_this_AT] = ACTIONS(4708), + [anon_sym_super_AT] = ACTIONS(4708), + [sym_real_literal] = ACTIONS(4708), + [sym_integer_literal] = ACTIONS(4706), + [sym_hex_literal] = ACTIONS(4708), + [sym_bin_literal] = ACTIONS(4708), + [anon_sym_true] = ACTIONS(4706), + [anon_sym_false] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4708), + [sym__backtick_identifier] = ACTIONS(4708), + [sym__automatic_semicolon] = ACTIONS(4708), + [sym_safe_nav] = ACTIONS(4708), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4708), }, [2993] = { - [sym_type_constraints] = STATE(3322), - [sym_function_body] = STATE(3667), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(6649), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_RBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), - [anon_sym_RPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4183), - [anon_sym_DASH_GT] = ACTIONS(4185), - [sym_label] = ACTIONS(4185), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_while] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_PLUS_EQ] = ACTIONS(4185), - [anon_sym_DASH_EQ] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4185), - [anon_sym_SLASH_EQ] = ACTIONS(4185), - [anon_sym_PERCENT_EQ] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4183), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4696), + [anon_sym_AT] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_as] = ACTIONS(4696), + [anon_sym_EQ] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_by] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4696), + [anon_sym_where] = ACTIONS(4696), + [anon_sym_object] = ACTIONS(4696), + [anon_sym_fun] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4696), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_get] = ACTIONS(4696), + [anon_sym_set] = ACTIONS(4696), + [anon_sym_this] = ACTIONS(4696), + [anon_sym_super] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4696), + [sym_label] = ACTIONS(4696), + [anon_sym_in] = ACTIONS(4696), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_QMARK_COLON] = ACTIONS(4698), + [anon_sym_AMP_AMP] = ACTIONS(4698), + [anon_sym_PIPE_PIPE] = ACTIONS(4698), + [anon_sym_null] = ACTIONS(4696), + [anon_sym_if] = ACTIONS(4696), + [anon_sym_else] = ACTIONS(4696), + [anon_sym_when] = ACTIONS(4696), + [anon_sym_try] = ACTIONS(4696), + [anon_sym_throw] = ACTIONS(4696), + [anon_sym_return] = ACTIONS(4696), + [anon_sym_continue] = ACTIONS(4696), + [anon_sym_break] = ACTIONS(4696), + [anon_sym_COLON_COLON] = ACTIONS(4698), + [anon_sym_PLUS_EQ] = ACTIONS(4698), + [anon_sym_DASH_EQ] = ACTIONS(4698), + [anon_sym_STAR_EQ] = ACTIONS(4698), + [anon_sym_SLASH_EQ] = ACTIONS(4698), + [anon_sym_PERCENT_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4698), + [anon_sym_BANGin] = ACTIONS(4698), + [anon_sym_is] = ACTIONS(4696), + [anon_sym_BANGis] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4696), + [anon_sym_SLASH] = ACTIONS(4696), + [anon_sym_PERCENT] = ACTIONS(4696), + [anon_sym_as_QMARK] = ACTIONS(4698), + [anon_sym_PLUS_PLUS] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4696), + [anon_sym_BANG_BANG] = ACTIONS(4698), + [anon_sym_data] = ACTIONS(4696), + [anon_sym_inner] = ACTIONS(4696), + [anon_sym_value] = ACTIONS(4696), + [anon_sym_expect] = ACTIONS(4696), + [anon_sym_actual] = ACTIONS(4696), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4698), + [anon_sym_continue_AT] = ACTIONS(4698), + [anon_sym_break_AT] = ACTIONS(4698), + [anon_sym_this_AT] = ACTIONS(4698), + [anon_sym_super_AT] = ACTIONS(4698), + [sym_real_literal] = ACTIONS(4698), + [sym_integer_literal] = ACTIONS(4696), + [sym_hex_literal] = ACTIONS(4698), + [sym_bin_literal] = ACTIONS(4698), + [anon_sym_true] = ACTIONS(4696), + [anon_sym_false] = ACTIONS(4696), + [anon_sym_SQUOTE] = ACTIONS(4698), + [sym__backtick_identifier] = ACTIONS(4698), + [sym__automatic_semicolon] = ACTIONS(4698), + [sym_safe_nav] = ACTIONS(4698), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4698), }, [2994] = { - [sym_getter] = STATE(4118), - [sym_setter] = STATE(4118), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(4674), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(4676), + [anon_sym_by] = ACTIONS(4674), + [anon_sym_LT] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4674), + [anon_sym_where] = ACTIONS(4674), + [anon_sym_object] = ACTIONS(4674), + [anon_sym_fun] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_get] = ACTIONS(4674), + [anon_sym_set] = ACTIONS(4674), + [anon_sym_this] = ACTIONS(4674), + [anon_sym_super] = ACTIONS(4674), + [anon_sym_STAR] = ACTIONS(4674), + [sym_label] = ACTIONS(4674), + [anon_sym_in] = ACTIONS(4674), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_QMARK_COLON] = ACTIONS(4676), + [anon_sym_AMP_AMP] = ACTIONS(4676), + [anon_sym_PIPE_PIPE] = ACTIONS(4676), + [anon_sym_null] = ACTIONS(4674), + [anon_sym_if] = ACTIONS(4674), + [anon_sym_else] = ACTIONS(4674), + [anon_sym_when] = ACTIONS(4674), + [anon_sym_try] = ACTIONS(4674), + [anon_sym_throw] = ACTIONS(4674), + [anon_sym_return] = ACTIONS(4674), + [anon_sym_continue] = ACTIONS(4674), + [anon_sym_break] = ACTIONS(4674), + [anon_sym_COLON_COLON] = ACTIONS(4676), + [anon_sym_PLUS_EQ] = ACTIONS(4676), + [anon_sym_DASH_EQ] = ACTIONS(4676), + [anon_sym_STAR_EQ] = ACTIONS(4676), + [anon_sym_SLASH_EQ] = ACTIONS(4676), + [anon_sym_PERCENT_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_BANGin] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_BANGis] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4674), + [anon_sym_SLASH] = ACTIONS(4674), + [anon_sym_PERCENT] = ACTIONS(4674), + [anon_sym_as_QMARK] = ACTIONS(4676), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_BANG] = ACTIONS(4674), + [anon_sym_BANG_BANG] = ACTIONS(4676), + [anon_sym_data] = ACTIONS(4674), + [anon_sym_inner] = ACTIONS(4674), + [anon_sym_value] = ACTIONS(4674), + [anon_sym_expect] = ACTIONS(4674), + [anon_sym_actual] = ACTIONS(4674), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4676), + [anon_sym_continue_AT] = ACTIONS(4676), + [anon_sym_break_AT] = ACTIONS(4676), + [anon_sym_this_AT] = ACTIONS(4676), + [anon_sym_super_AT] = ACTIONS(4676), + [sym_real_literal] = ACTIONS(4676), + [sym_integer_literal] = ACTIONS(4674), + [sym_hex_literal] = ACTIONS(4676), + [sym_bin_literal] = ACTIONS(4676), + [anon_sym_true] = ACTIONS(4674), + [anon_sym_false] = ACTIONS(4674), + [anon_sym_SQUOTE] = ACTIONS(4676), + [sym__backtick_identifier] = ACTIONS(4676), + [sym__automatic_semicolon] = ACTIONS(4676), + [sym_safe_nav] = ACTIONS(4676), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4676), }, [2995] = { - [sym_getter] = STATE(4130), - [sym_setter] = STATE(4130), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6478), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), + [sym_enum_class_body] = STATE(3133), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_object] = ACTIONS(4652), + [anon_sym_fun] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_this] = ACTIONS(4652), + [anon_sym_super] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4652), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_when] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4654), + [anon_sym_continue_AT] = ACTIONS(4654), + [anon_sym_break_AT] = ACTIONS(4654), + [anon_sym_this_AT] = ACTIONS(4654), + [anon_sym_super_AT] = ACTIONS(4654), + [sym_real_literal] = ACTIONS(4654), + [sym_integer_literal] = ACTIONS(4652), + [sym_hex_literal] = ACTIONS(4654), + [sym_bin_literal] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4654), }, [2996] = { - [aux_sym_user_type_repeat1] = STATE(3024), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_RBRACK] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_COMMA] = ACTIONS(4227), - [anon_sym_RPAREN] = ACTIONS(4227), - [anon_sym_by] = ACTIONS(4225), - [anon_sym_LT] = ACTIONS(4225), - [anon_sym_GT] = ACTIONS(4225), - [anon_sym_where] = ACTIONS(4225), - [anon_sym_DOT] = ACTIONS(6651), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [anon_sym_AMP] = ACTIONS(4225), - [sym__quest] = ACTIONS(4225), - [anon_sym_STAR] = ACTIONS(4225), - [anon_sym_DASH_GT] = ACTIONS(4227), - [sym_label] = ACTIONS(4227), - [anon_sym_in] = ACTIONS(4225), - [anon_sym_while] = ACTIONS(4225), - [anon_sym_DOT_DOT] = ACTIONS(4227), - [anon_sym_QMARK_COLON] = ACTIONS(4227), - [anon_sym_AMP_AMP] = ACTIONS(4227), - [anon_sym_PIPE_PIPE] = ACTIONS(4227), - [anon_sym_else] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_PLUS_EQ] = ACTIONS(4227), - [anon_sym_DASH_EQ] = ACTIONS(4227), - [anon_sym_STAR_EQ] = ACTIONS(4227), - [anon_sym_SLASH_EQ] = ACTIONS(4227), - [anon_sym_PERCENT_EQ] = ACTIONS(4227), - [anon_sym_BANG_EQ] = ACTIONS(4225), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4227), - [anon_sym_EQ_EQ] = ACTIONS(4225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4227), - [anon_sym_LT_EQ] = ACTIONS(4227), - [anon_sym_GT_EQ] = ACTIONS(4227), - [anon_sym_BANGin] = ACTIONS(4227), - [anon_sym_is] = ACTIONS(4225), - [anon_sym_BANGis] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_SLASH] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_as_QMARK] = ACTIONS(4227), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG_BANG] = ACTIONS(4227), - [anon_sym_suspend] = ACTIONS(4225), - [anon_sym_sealed] = ACTIONS(4225), - [anon_sym_annotation] = ACTIONS(4225), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_override] = ACTIONS(4225), - [anon_sym_lateinit] = ACTIONS(4225), - [anon_sym_public] = ACTIONS(4225), - [anon_sym_private] = ACTIONS(4225), - [anon_sym_internal] = ACTIONS(4225), - [anon_sym_protected] = ACTIONS(4225), - [anon_sym_tailrec] = ACTIONS(4225), - [anon_sym_operator] = ACTIONS(4225), - [anon_sym_infix] = ACTIONS(4225), - [anon_sym_inline] = ACTIONS(4225), - [anon_sym_external] = ACTIONS(4225), - [sym_property_modifier] = ACTIONS(4225), - [anon_sym_abstract] = ACTIONS(4225), - [anon_sym_final] = ACTIONS(4225), - [anon_sym_open] = ACTIONS(4225), - [anon_sym_vararg] = ACTIONS(4225), - [anon_sym_noinline] = ACTIONS(4225), - [anon_sym_crossinline] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4227), - [sym_safe_nav] = ACTIONS(4227), - [sym_multiline_comment] = ACTIONS(3), + [sym_enum_class_body] = STATE(3150), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_object] = ACTIONS(4467), + [anon_sym_fun] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_this] = ACTIONS(4467), + [anon_sym_super] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4467), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_null] = ACTIONS(4467), + [anon_sym_if] = ACTIONS(4467), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_when] = ACTIONS(4467), + [anon_sym_try] = ACTIONS(4467), + [anon_sym_throw] = ACTIONS(4467), + [anon_sym_return] = ACTIONS(4467), + [anon_sym_continue] = ACTIONS(4467), + [anon_sym_break] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG] = ACTIONS(4467), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4469), + [anon_sym_continue_AT] = ACTIONS(4469), + [anon_sym_break_AT] = ACTIONS(4469), + [anon_sym_this_AT] = ACTIONS(4469), + [anon_sym_super_AT] = ACTIONS(4469), + [sym_real_literal] = ACTIONS(4469), + [sym_integer_literal] = ACTIONS(4467), + [sym_hex_literal] = ACTIONS(4469), + [sym_bin_literal] = ACTIONS(4469), + [anon_sym_true] = ACTIONS(4467), + [anon_sym_false] = ACTIONS(4467), + [anon_sym_SQUOTE] = ACTIONS(4469), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4469), }, [2997] = { - [sym__alpha_identifier] = ACTIONS(4487), - [anon_sym_AT] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [anon_sym_as] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_fun] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_RBRACE] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_COMMA] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_where] = ACTIONS(4487), - [anon_sym_object] = ACTIONS(4487), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_SEMI] = ACTIONS(4489), - [anon_sym_get] = ACTIONS(4487), - [anon_sym_set] = ACTIONS(4487), - [anon_sym_this] = ACTIONS(4487), - [anon_sym_super] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [sym_label] = ACTIONS(4487), - [anon_sym_in] = ACTIONS(4487), - [anon_sym_DOT_DOT] = ACTIONS(4489), - [anon_sym_QMARK_COLON] = ACTIONS(4489), - [anon_sym_AMP_AMP] = ACTIONS(4489), - [anon_sym_PIPE_PIPE] = ACTIONS(4489), - [anon_sym_null] = ACTIONS(4487), - [anon_sym_if] = ACTIONS(4487), - [anon_sym_else] = ACTIONS(4487), - [anon_sym_when] = ACTIONS(4487), - [anon_sym_try] = ACTIONS(4487), - [anon_sym_throw] = ACTIONS(4487), - [anon_sym_return] = ACTIONS(4487), - [anon_sym_continue] = ACTIONS(4487), - [anon_sym_break] = ACTIONS(4487), - [anon_sym_COLON_COLON] = ACTIONS(4489), - [anon_sym_PLUS_EQ] = ACTIONS(4489), - [anon_sym_DASH_EQ] = ACTIONS(4489), - [anon_sym_STAR_EQ] = ACTIONS(4489), - [anon_sym_SLASH_EQ] = ACTIONS(4489), - [anon_sym_PERCENT_EQ] = ACTIONS(4489), - [anon_sym_BANG_EQ] = ACTIONS(4487), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4489), - [anon_sym_EQ_EQ] = ACTIONS(4487), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4489), - [anon_sym_LT_EQ] = ACTIONS(4489), - [anon_sym_GT_EQ] = ACTIONS(4489), - [anon_sym_BANGin] = ACTIONS(4489), - [anon_sym_is] = ACTIONS(4487), - [anon_sym_BANGis] = ACTIONS(4489), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_PERCENT] = ACTIONS(4487), - [anon_sym_as_QMARK] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_BANG_BANG] = ACTIONS(4489), - [anon_sym_data] = ACTIONS(4487), - [anon_sym_inner] = ACTIONS(4487), - [anon_sym_value] = ACTIONS(4487), - [anon_sym_expect] = ACTIONS(4487), - [anon_sym_actual] = ACTIONS(4487), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4489), - [anon_sym_continue_AT] = ACTIONS(4489), - [anon_sym_break_AT] = ACTIONS(4489), - [anon_sym_this_AT] = ACTIONS(4489), - [anon_sym_super_AT] = ACTIONS(4489), - [sym_real_literal] = ACTIONS(4489), - [sym_integer_literal] = ACTIONS(4487), - [sym_hex_literal] = ACTIONS(4489), - [sym_bin_literal] = ACTIONS(4489), - [aux_sym_unsigned_literal_token1] = ACTIONS(6654), - [anon_sym_L] = ACTIONS(6656), - [anon_sym_true] = ACTIONS(4487), - [anon_sym_false] = ACTIONS(4487), - [anon_sym_SQUOTE] = ACTIONS(4489), - [sym__backtick_identifier] = ACTIONS(4489), - [sym__automatic_semicolon] = ACTIONS(4489), - [sym_safe_nav] = ACTIONS(4489), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4489), + [sym_class_body] = STATE(3167), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, [2998] = { - [sym_type_constraints] = STATE(3138), - [sym_enum_class_body] = STATE(3345), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6658), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(5636), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), }, [2999] = { - [sym_value_arguments] = STATE(3337), - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_fun] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(6660), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_object] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_this] = ACTIONS(4435), - [anon_sym_super] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4435), - [sym_label] = ACTIONS(4435), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_null] = ACTIONS(4435), - [anon_sym_if] = ACTIONS(4435), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_when] = ACTIONS(4435), - [anon_sym_try] = ACTIONS(4435), - [anon_sym_throw] = ACTIONS(4435), - [anon_sym_return] = ACTIONS(4435), - [anon_sym_continue] = ACTIONS(4435), - [anon_sym_break] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_PLUS_EQ] = ACTIONS(4437), - [anon_sym_DASH_EQ] = ACTIONS(4437), - [anon_sym_STAR_EQ] = ACTIONS(4437), - [anon_sym_SLASH_EQ] = ACTIONS(4437), - [anon_sym_PERCENT_EQ] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4435), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4435), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4437), - [anon_sym_continue_AT] = ACTIONS(4437), - [anon_sym_break_AT] = ACTIONS(4437), - [anon_sym_this_AT] = ACTIONS(4437), - [anon_sym_super_AT] = ACTIONS(4437), - [sym_real_literal] = ACTIONS(4437), - [sym_integer_literal] = ACTIONS(4435), - [sym_hex_literal] = ACTIONS(4437), - [sym_bin_literal] = ACTIONS(4437), - [anon_sym_true] = ACTIONS(4435), - [anon_sym_false] = ACTIONS(4435), - [anon_sym_SQUOTE] = ACTIONS(4437), - [sym__backtick_identifier] = ACTIONS(4437), - [sym__automatic_semicolon] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4437), + [sym__alpha_identifier] = ACTIONS(4559), + [anon_sym_AT] = ACTIONS(4561), + [anon_sym_COLON] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4561), + [anon_sym_as] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4559), + [anon_sym_LBRACE] = ACTIONS(4561), + [anon_sym_RBRACE] = ACTIONS(4561), + [anon_sym_LPAREN] = ACTIONS(4561), + [anon_sym_COMMA] = ACTIONS(4561), + [anon_sym_LT] = ACTIONS(4559), + [anon_sym_GT] = ACTIONS(4559), + [anon_sym_where] = ACTIONS(4559), + [anon_sym_object] = ACTIONS(4559), + [anon_sym_fun] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_SEMI] = ACTIONS(4561), + [anon_sym_get] = ACTIONS(4559), + [anon_sym_set] = ACTIONS(4559), + [anon_sym_this] = ACTIONS(4559), + [anon_sym_super] = ACTIONS(4559), + [anon_sym_STAR] = ACTIONS(4559), + [sym_label] = ACTIONS(4559), + [anon_sym_in] = ACTIONS(4559), + [anon_sym_DOT_DOT] = ACTIONS(4561), + [anon_sym_QMARK_COLON] = ACTIONS(4561), + [anon_sym_AMP_AMP] = ACTIONS(4561), + [anon_sym_PIPE_PIPE] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4559), + [anon_sym_if] = ACTIONS(4559), + [anon_sym_else] = ACTIONS(4559), + [anon_sym_when] = ACTIONS(4559), + [anon_sym_try] = ACTIONS(4559), + [anon_sym_throw] = ACTIONS(4559), + [anon_sym_return] = ACTIONS(4559), + [anon_sym_continue] = ACTIONS(4559), + [anon_sym_break] = ACTIONS(4559), + [anon_sym_COLON_COLON] = ACTIONS(4561), + [anon_sym_PLUS_EQ] = ACTIONS(4561), + [anon_sym_DASH_EQ] = ACTIONS(4561), + [anon_sym_STAR_EQ] = ACTIONS(4561), + [anon_sym_SLASH_EQ] = ACTIONS(4561), + [anon_sym_PERCENT_EQ] = ACTIONS(4561), + [anon_sym_BANG_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4561), + [anon_sym_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4561), + [anon_sym_LT_EQ] = ACTIONS(4561), + [anon_sym_GT_EQ] = ACTIONS(4561), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4559), + [anon_sym_BANGis] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_DASH] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4559), + [anon_sym_as_QMARK] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(4561), + [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_BANG] = ACTIONS(4559), + [anon_sym_BANG_BANG] = ACTIONS(4561), + [anon_sym_data] = ACTIONS(4559), + [anon_sym_inner] = ACTIONS(4559), + [anon_sym_value] = ACTIONS(4559), + [anon_sym_expect] = ACTIONS(4559), + [anon_sym_actual] = ACTIONS(4559), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4561), + [anon_sym_continue_AT] = ACTIONS(4561), + [anon_sym_break_AT] = ACTIONS(4561), + [anon_sym_this_AT] = ACTIONS(4561), + [anon_sym_super_AT] = ACTIONS(4561), + [sym_real_literal] = ACTIONS(4561), + [sym_integer_literal] = ACTIONS(4559), + [sym_hex_literal] = ACTIONS(4561), + [sym_bin_literal] = ACTIONS(4561), + [anon_sym_true] = ACTIONS(4559), + [anon_sym_false] = ACTIONS(4559), + [anon_sym_SQUOTE] = ACTIONS(4561), + [sym__backtick_identifier] = ACTIONS(4561), + [sym__automatic_semicolon] = ACTIONS(4561), + [sym_safe_nav] = ACTIONS(4561), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4561), }, [3000] = { - [sym_getter] = STATE(4045), - [sym_setter] = STATE(4045), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(5139), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [sym_type_constraints] = STATE(3361), + [sym_enum_class_body] = STATE(3406), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(6585), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_RBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [anon_sym_DASH_GT] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, [3001] = { - [sym_type_constraints] = STATE(3276), - [sym_function_body] = STATE(3262), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), + [sym_enum_class_body] = STATE(3167), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, [3002] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_catch] = ACTIONS(4377), - [anon_sym_finally] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), + [sym_class_body] = STATE(3171), + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_object] = ACTIONS(4644), + [anon_sym_fun] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_this] = ACTIONS(4644), + [anon_sym_super] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [sym_label] = ACTIONS(4644), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_null] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_when] = ACTIONS(4644), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_throw] = ACTIONS(4644), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4646), + [anon_sym_continue_AT] = ACTIONS(4646), + [anon_sym_break_AT] = ACTIONS(4646), + [anon_sym_this_AT] = ACTIONS(4646), + [anon_sym_super_AT] = ACTIONS(4646), + [sym_real_literal] = ACTIONS(4646), + [sym_integer_literal] = ACTIONS(4644), + [sym_hex_literal] = ACTIONS(4646), + [sym_bin_literal] = ACTIONS(4646), + [anon_sym_true] = ACTIONS(4644), + [anon_sym_false] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4646), + [sym__backtick_identifier] = ACTIONS(4646), + [sym__automatic_semicolon] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4646), }, [3003] = { - [sym_function_body] = STATE(3314), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [sym__alpha_identifier] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4760), + [anon_sym_COLON] = ACTIONS(4758), + [anon_sym_LBRACK] = ACTIONS(4760), + [anon_sym_as] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4760), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4760), + [anon_sym_COMMA] = ACTIONS(4760), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_where] = ACTIONS(4758), + [anon_sym_object] = ACTIONS(4758), + [anon_sym_fun] = ACTIONS(4758), + [anon_sym_DOT] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4760), + [anon_sym_get] = ACTIONS(4758), + [anon_sym_set] = ACTIONS(4758), + [anon_sym_this] = ACTIONS(4758), + [anon_sym_super] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4758), + [sym_label] = ACTIONS(4758), + [anon_sym_in] = ACTIONS(4758), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_QMARK_COLON] = ACTIONS(4760), + [anon_sym_AMP_AMP] = ACTIONS(4760), + [anon_sym_PIPE_PIPE] = ACTIONS(4760), + [anon_sym_null] = ACTIONS(4758), + [anon_sym_if] = ACTIONS(4758), + [anon_sym_else] = ACTIONS(4758), + [anon_sym_when] = ACTIONS(4758), + [anon_sym_try] = ACTIONS(4758), + [anon_sym_throw] = ACTIONS(4758), + [anon_sym_return] = ACTIONS(4758), + [anon_sym_continue] = ACTIONS(4758), + [anon_sym_break] = ACTIONS(4758), + [anon_sym_COLON_COLON] = ACTIONS(4760), + [anon_sym_PLUS_EQ] = ACTIONS(4760), + [anon_sym_DASH_EQ] = ACTIONS(4760), + [anon_sym_STAR_EQ] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(4760), + [anon_sym_PERCENT_EQ] = ACTIONS(4760), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4760), + [anon_sym_BANGin] = ACTIONS(4760), + [anon_sym_is] = ACTIONS(4758), + [anon_sym_BANGis] = ACTIONS(4760), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_SLASH] = ACTIONS(4758), + [anon_sym_PERCENT] = ACTIONS(4758), + [anon_sym_as_QMARK] = ACTIONS(4760), + [anon_sym_PLUS_PLUS] = ACTIONS(4760), + [anon_sym_DASH_DASH] = ACTIONS(4760), + [anon_sym_BANG] = ACTIONS(4758), + [anon_sym_BANG_BANG] = ACTIONS(4760), + [anon_sym_data] = ACTIONS(4758), + [anon_sym_inner] = ACTIONS(4758), + [anon_sym_value] = ACTIONS(4758), + [anon_sym_expect] = ACTIONS(4758), + [anon_sym_actual] = ACTIONS(4758), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4760), + [anon_sym_continue_AT] = ACTIONS(4760), + [anon_sym_break_AT] = ACTIONS(4760), + [anon_sym_this_AT] = ACTIONS(4760), + [anon_sym_super_AT] = ACTIONS(4760), + [sym_real_literal] = ACTIONS(4760), + [sym_integer_literal] = ACTIONS(4758), + [sym_hex_literal] = ACTIONS(4760), + [sym_bin_literal] = ACTIONS(4760), + [anon_sym_true] = ACTIONS(4758), + [anon_sym_false] = ACTIONS(4758), + [anon_sym_SQUOTE] = ACTIONS(4760), + [sym__backtick_identifier] = ACTIONS(4760), + [sym__automatic_semicolon] = ACTIONS(4760), + [sym_safe_nav] = ACTIONS(4760), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4760), }, [3004] = { - [sym_type_constraints] = STATE(3138), - [sym_enum_class_body] = STATE(3345), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4043), + [anon_sym_DASH_EQ] = ACTIONS(4043), + [anon_sym_STAR_EQ] = ACTIONS(4043), + [anon_sym_SLASH_EQ] = ACTIONS(4043), + [anon_sym_PERCENT_EQ] = ACTIONS(4043), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), }, [3005] = { - [sym_function_body] = STATE(3354), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(4154), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [sym_enum_class_body] = STATE(3200), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), }, [3006] = { - [sym_type_constraints] = STATE(3353), - [sym_function_body] = STATE(3354), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [sym_class_body] = STATE(3239), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), }, [3007] = { - [sym_type_constraints] = STATE(3127), - [sym_enum_class_body] = STATE(3195), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), + [sym_enum_class_body] = STATE(3239), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), }, [3008] = { - [sym_function_body] = STATE(3192), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(4164), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), + [sym__alpha_identifier] = ACTIONS(4313), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_EQ] = ACTIONS(4315), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_RBRACE] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_COMMA] = ACTIONS(4315), + [anon_sym_by] = ACTIONS(4313), + [anon_sym_where] = ACTIONS(4313), + [anon_sym_object] = ACTIONS(4313), + [anon_sym_fun] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym_get] = ACTIONS(4313), + [anon_sym_set] = ACTIONS(4313), + [anon_sym_this] = ACTIONS(4313), + [anon_sym_super] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4315), + [sym__quest] = ACTIONS(4315), + [anon_sym_STAR] = ACTIONS(4315), + [sym_label] = ACTIONS(4313), + [anon_sym_in] = ACTIONS(4313), + [anon_sym_null] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4313), + [anon_sym_else] = ACTIONS(4313), + [anon_sym_when] = ACTIONS(4313), + [anon_sym_try] = ACTIONS(4313), + [anon_sym_throw] = ACTIONS(4313), + [anon_sym_return] = ACTIONS(4313), + [anon_sym_continue] = ACTIONS(4313), + [anon_sym_break] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(4313), + [anon_sym_BANGis] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(4313), + [anon_sym_suspend] = ACTIONS(4313), + [anon_sym_sealed] = ACTIONS(4313), + [anon_sym_annotation] = ACTIONS(4313), + [anon_sym_data] = ACTIONS(4313), + [anon_sym_inner] = ACTIONS(4313), + [anon_sym_value] = ACTIONS(4313), + [anon_sym_override] = ACTIONS(4313), + [anon_sym_lateinit] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_internal] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_tailrec] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_infix] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym_external] = ACTIONS(4313), + [sym_property_modifier] = ACTIONS(4313), + [anon_sym_abstract] = ACTIONS(4313), + [anon_sym_final] = ACTIONS(4313), + [anon_sym_open] = ACTIONS(4313), + [anon_sym_vararg] = ACTIONS(4313), + [anon_sym_noinline] = ACTIONS(4313), + [anon_sym_crossinline] = ACTIONS(4313), + [anon_sym_expect] = ACTIONS(4313), + [anon_sym_actual] = ACTIONS(4313), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4315), + [anon_sym_continue_AT] = ACTIONS(4315), + [anon_sym_break_AT] = ACTIONS(4315), + [anon_sym_this_AT] = ACTIONS(4315), + [anon_sym_super_AT] = ACTIONS(4315), + [sym_real_literal] = ACTIONS(4315), + [sym_integer_literal] = ACTIONS(4313), + [sym_hex_literal] = ACTIONS(4315), + [sym_bin_literal] = ACTIONS(4315), + [anon_sym_true] = ACTIONS(4313), + [anon_sym_false] = ACTIONS(4313), + [anon_sym_SQUOTE] = ACTIONS(4315), + [sym__backtick_identifier] = ACTIONS(4315), + [sym__automatic_semicolon] = ACTIONS(4315), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4315), }, [3009] = { - [sym_class_body] = STATE(3297), - [sym_type_constraints] = STATE(3046), + [sym_class_body] = STATE(3241), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_object] = ACTIONS(4493), + [anon_sym_fun] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_this] = ACTIONS(4493), + [anon_sym_super] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_null] = ACTIONS(4493), + [anon_sym_if] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_when] = ACTIONS(4493), + [anon_sym_try] = ACTIONS(4493), + [anon_sym_throw] = ACTIONS(4493), + [anon_sym_return] = ACTIONS(4493), + [anon_sym_continue] = ACTIONS(4493), + [anon_sym_break] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4495), + [anon_sym_continue_AT] = ACTIONS(4495), + [anon_sym_break_AT] = ACTIONS(4495), + [anon_sym_this_AT] = ACTIONS(4495), + [anon_sym_super_AT] = ACTIONS(4495), + [sym_real_literal] = ACTIONS(4495), + [sym_integer_literal] = ACTIONS(4493), + [sym_hex_literal] = ACTIONS(4495), + [sym_bin_literal] = ACTIONS(4495), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [anon_sym_SQUOTE] = ACTIONS(4495), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4495), + }, + [3010] = { + [sym__alpha_identifier] = ACTIONS(4551), + [anon_sym_AT] = ACTIONS(4553), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_as] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4553), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_where] = ACTIONS(4551), + [anon_sym_object] = ACTIONS(4551), + [anon_sym_fun] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4553), + [anon_sym_get] = ACTIONS(4551), + [anon_sym_set] = ACTIONS(4551), + [anon_sym_this] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [sym_label] = ACTIONS(4551), + [anon_sym_in] = ACTIONS(4551), + [anon_sym_DOT_DOT] = ACTIONS(4553), + [anon_sym_QMARK_COLON] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_null] = ACTIONS(4551), + [anon_sym_if] = ACTIONS(4551), + [anon_sym_else] = ACTIONS(4551), + [anon_sym_when] = ACTIONS(4551), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_throw] = ACTIONS(4551), + [anon_sym_return] = ACTIONS(4551), + [anon_sym_continue] = ACTIONS(4551), + [anon_sym_break] = ACTIONS(4551), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(4553), + [anon_sym_DASH_EQ] = ACTIONS(4553), + [anon_sym_STAR_EQ] = ACTIONS(4553), + [anon_sym_SLASH_EQ] = ACTIONS(4553), + [anon_sym_PERCENT_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4553), + [anon_sym_is] = ACTIONS(4551), + [anon_sym_BANGis] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_as_QMARK] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_BANG_BANG] = ACTIONS(4553), + [anon_sym_data] = ACTIONS(4551), + [anon_sym_inner] = ACTIONS(4551), + [anon_sym_value] = ACTIONS(4551), + [anon_sym_expect] = ACTIONS(4551), + [anon_sym_actual] = ACTIONS(4551), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4553), + [anon_sym_continue_AT] = ACTIONS(4553), + [anon_sym_break_AT] = ACTIONS(4553), + [anon_sym_this_AT] = ACTIONS(4553), + [anon_sym_super_AT] = ACTIONS(4553), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_SQUOTE] = ACTIONS(4553), + [sym__backtick_identifier] = ACTIONS(4553), + [sym__automatic_semicolon] = ACTIONS(4553), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4553), + }, + [3011] = { + [sym_class_body] = STATE(3251), + [sym__alpha_identifier] = ACTIONS(4547), + [anon_sym_AT] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4549), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_where] = ACTIONS(4547), + [anon_sym_object] = ACTIONS(4547), + [anon_sym_fun] = ACTIONS(4547), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_SEMI] = ACTIONS(4549), + [anon_sym_get] = ACTIONS(4547), + [anon_sym_set] = ACTIONS(4547), + [anon_sym_this] = ACTIONS(4547), + [anon_sym_super] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4547), + [sym_label] = ACTIONS(4547), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_null] = ACTIONS(4547), + [anon_sym_if] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(4547), + [anon_sym_when] = ACTIONS(4547), + [anon_sym_try] = ACTIONS(4547), + [anon_sym_throw] = ACTIONS(4547), + [anon_sym_return] = ACTIONS(4547), + [anon_sym_continue] = ACTIONS(4547), + [anon_sym_break] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ] = ACTIONS(4547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_EQ] = ACTIONS(4549), + [anon_sym_BANGin] = ACTIONS(4549), + [anon_sym_is] = ACTIONS(4547), + [anon_sym_BANGis] = ACTIONS(4549), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_as_QMARK] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_BANG] = ACTIONS(4547), + [anon_sym_BANG_BANG] = ACTIONS(4549), + [anon_sym_data] = ACTIONS(4547), + [anon_sym_inner] = ACTIONS(4547), + [anon_sym_value] = ACTIONS(4547), + [anon_sym_expect] = ACTIONS(4547), + [anon_sym_actual] = ACTIONS(4547), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4549), + [anon_sym_continue_AT] = ACTIONS(4549), + [anon_sym_break_AT] = ACTIONS(4549), + [anon_sym_this_AT] = ACTIONS(4549), + [anon_sym_super_AT] = ACTIONS(4549), + [sym_real_literal] = ACTIONS(4549), + [sym_integer_literal] = ACTIONS(4547), + [sym_hex_literal] = ACTIONS(4549), + [sym_bin_literal] = ACTIONS(4549), + [anon_sym_true] = ACTIONS(4547), + [anon_sym_false] = ACTIONS(4547), + [anon_sym_SQUOTE] = ACTIONS(4549), + [sym__backtick_identifier] = ACTIONS(4549), + [sym__automatic_semicolon] = ACTIONS(4549), + [sym_safe_nav] = ACTIONS(4549), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4549), + }, + [3012] = { + [sym_enum_class_body] = STATE(3254), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), + }, + [3013] = { + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_EQ] = ACTIONS(4319), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_by] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(4317), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_this] = ACTIONS(4317), + [anon_sym_super] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(4319), + [sym__quest] = ACTIONS(4319), + [anon_sym_STAR] = ACTIONS(4319), + [sym_label] = ACTIONS(4317), + [anon_sym_in] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4317), + [anon_sym_if] = ACTIONS(4317), + [anon_sym_else] = ACTIONS(4317), + [anon_sym_when] = ACTIONS(4317), + [anon_sym_try] = ACTIONS(4317), + [anon_sym_throw] = ACTIONS(4317), + [anon_sym_return] = ACTIONS(4317), + [anon_sym_continue] = ACTIONS(4317), + [anon_sym_break] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_BANGin] = ACTIONS(4319), + [anon_sym_is] = ACTIONS(4317), + [anon_sym_BANGis] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [anon_sym_BANG] = ACTIONS(4317), + [anon_sym_suspend] = ACTIONS(4317), + [anon_sym_sealed] = ACTIONS(4317), + [anon_sym_annotation] = ACTIONS(4317), + [anon_sym_data] = ACTIONS(4317), + [anon_sym_inner] = ACTIONS(4317), + [anon_sym_value] = ACTIONS(4317), + [anon_sym_override] = ACTIONS(4317), + [anon_sym_lateinit] = ACTIONS(4317), + [anon_sym_public] = ACTIONS(4317), + [anon_sym_private] = ACTIONS(4317), + [anon_sym_internal] = ACTIONS(4317), + [anon_sym_protected] = ACTIONS(4317), + [anon_sym_tailrec] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_infix] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym_external] = ACTIONS(4317), + [sym_property_modifier] = ACTIONS(4317), + [anon_sym_abstract] = ACTIONS(4317), + [anon_sym_final] = ACTIONS(4317), + [anon_sym_open] = ACTIONS(4317), + [anon_sym_vararg] = ACTIONS(4317), + [anon_sym_noinline] = ACTIONS(4317), + [anon_sym_crossinline] = ACTIONS(4317), + [anon_sym_expect] = ACTIONS(4317), + [anon_sym_actual] = ACTIONS(4317), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4319), + [anon_sym_continue_AT] = ACTIONS(4319), + [anon_sym_break_AT] = ACTIONS(4319), + [anon_sym_this_AT] = ACTIONS(4319), + [anon_sym_super_AT] = ACTIONS(4319), + [sym_real_literal] = ACTIONS(4319), + [sym_integer_literal] = ACTIONS(4317), + [sym_hex_literal] = ACTIONS(4319), + [sym_bin_literal] = ACTIONS(4319), + [anon_sym_true] = ACTIONS(4317), + [anon_sym_false] = ACTIONS(4317), + [anon_sym_SQUOTE] = ACTIONS(4319), + [sym__backtick_identifier] = ACTIONS(4319), + [sym__automatic_semicolon] = ACTIONS(4319), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4319), + }, + [3014] = { + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4168), + [sym__quest] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), + }, + [3015] = { + [sym_class_body] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [3016] = { + [aux_sym_type_constraints_repeat1] = STATE(3046), + [sym__alpha_identifier] = ACTIONS(4339), + [anon_sym_AT] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [anon_sym_as] = ACTIONS(4339), + [anon_sym_EQ] = ACTIONS(4339), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym_COMMA] = ACTIONS(6587), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(4339), + [anon_sym_object] = ACTIONS(4339), + [anon_sym_fun] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym_get] = ACTIONS(4339), + [anon_sym_set] = ACTIONS(4339), + [anon_sym_this] = ACTIONS(4339), + [anon_sym_super] = ACTIONS(4339), + [anon_sym_STAR] = ACTIONS(4339), + [sym_label] = ACTIONS(4339), + [anon_sym_in] = ACTIONS(4339), + [anon_sym_DOT_DOT] = ACTIONS(4341), + [anon_sym_QMARK_COLON] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_PIPE_PIPE] = ACTIONS(4341), + [anon_sym_null] = ACTIONS(4339), + [anon_sym_if] = ACTIONS(4339), + [anon_sym_else] = ACTIONS(4339), + [anon_sym_when] = ACTIONS(4339), + [anon_sym_try] = ACTIONS(4339), + [anon_sym_throw] = ACTIONS(4339), + [anon_sym_return] = ACTIONS(4339), + [anon_sym_continue] = ACTIONS(4339), + [anon_sym_break] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_PLUS_EQ] = ACTIONS(4341), + [anon_sym_DASH_EQ] = ACTIONS(4341), + [anon_sym_STAR_EQ] = ACTIONS(4341), + [anon_sym_SLASH_EQ] = ACTIONS(4341), + [anon_sym_PERCENT_EQ] = ACTIONS(4341), + [anon_sym_BANG_EQ] = ACTIONS(4339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), + [anon_sym_EQ_EQ] = ACTIONS(4339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), + [anon_sym_LT_EQ] = ACTIONS(4341), + [anon_sym_GT_EQ] = ACTIONS(4341), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(4339), + [anon_sym_BANGis] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4339), + [anon_sym_PERCENT] = ACTIONS(4339), + [anon_sym_as_QMARK] = ACTIONS(4341), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4339), + [anon_sym_BANG_BANG] = ACTIONS(4341), + [anon_sym_data] = ACTIONS(4339), + [anon_sym_inner] = ACTIONS(4339), + [anon_sym_value] = ACTIONS(4339), + [anon_sym_expect] = ACTIONS(4339), + [anon_sym_actual] = ACTIONS(4339), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4341), + [anon_sym_continue_AT] = ACTIONS(4341), + [anon_sym_break_AT] = ACTIONS(4341), + [anon_sym_this_AT] = ACTIONS(4341), + [anon_sym_super_AT] = ACTIONS(4341), + [sym_real_literal] = ACTIONS(4341), + [sym_integer_literal] = ACTIONS(4339), + [sym_hex_literal] = ACTIONS(4341), + [sym_bin_literal] = ACTIONS(4341), + [anon_sym_true] = ACTIONS(4339), + [anon_sym_false] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4341), + [sym__backtick_identifier] = ACTIONS(4341), + [sym__automatic_semicolon] = ACTIONS(4341), + [sym_safe_nav] = ACTIONS(4341), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4341), + }, + [3017] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3017), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(6589), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_object] = ACTIONS(4633), + [anon_sym_fun] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_this] = ACTIONS(4633), + [anon_sym_super] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [sym_label] = ACTIONS(4633), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_null] = ACTIONS(4633), + [anon_sym_if] = ACTIONS(4633), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_when] = ACTIONS(4633), + [anon_sym_try] = ACTIONS(4633), + [anon_sym_throw] = ACTIONS(4633), + [anon_sym_return] = ACTIONS(4633), + [anon_sym_continue] = ACTIONS(4633), + [anon_sym_break] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4633), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4635), + [anon_sym_continue_AT] = ACTIONS(4635), + [anon_sym_break_AT] = ACTIONS(4635), + [anon_sym_this_AT] = ACTIONS(4635), + [anon_sym_super_AT] = ACTIONS(4635), + [sym_real_literal] = ACTIONS(4635), + [sym_integer_literal] = ACTIONS(4633), + [sym_hex_literal] = ACTIONS(4635), + [sym_bin_literal] = ACTIONS(4635), + [anon_sym_true] = ACTIONS(4633), + [anon_sym_false] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4635), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4635), + }, + [3018] = { + [sym__alpha_identifier] = ACTIONS(4313), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(4315), + [anon_sym_as] = ACTIONS(4313), + [anon_sym_EQ] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_RBRACE] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_COMMA] = ACTIONS(4315), + [anon_sym_RPAREN] = ACTIONS(4315), + [anon_sym_by] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4313), + [anon_sym_GT] = ACTIONS(4313), + [anon_sym_where] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym_get] = ACTIONS(4313), + [anon_sym_set] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4313), + [sym__quest] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4313), + [anon_sym_DASH_GT] = ACTIONS(4315), + [sym_label] = ACTIONS(4315), + [anon_sym_in] = ACTIONS(4313), + [anon_sym_while] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_QMARK_COLON] = ACTIONS(4315), + [anon_sym_AMP_AMP] = ACTIONS(4315), + [anon_sym_PIPE_PIPE] = ACTIONS(4315), + [anon_sym_else] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_PLUS_EQ] = ACTIONS(4315), + [anon_sym_DASH_EQ] = ACTIONS(4315), + [anon_sym_STAR_EQ] = ACTIONS(4315), + [anon_sym_SLASH_EQ] = ACTIONS(4315), + [anon_sym_PERCENT_EQ] = ACTIONS(4315), + [anon_sym_BANG_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4315), + [anon_sym_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4315), + [anon_sym_LT_EQ] = ACTIONS(4315), + [anon_sym_GT_EQ] = ACTIONS(4315), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(4313), + [anon_sym_BANGis] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_SLASH] = ACTIONS(4313), + [anon_sym_PERCENT] = ACTIONS(4313), + [anon_sym_as_QMARK] = ACTIONS(4315), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_BANG_BANG] = ACTIONS(4315), + [anon_sym_suspend] = ACTIONS(4313), + [anon_sym_sealed] = ACTIONS(4313), + [anon_sym_annotation] = ACTIONS(4313), + [anon_sym_data] = ACTIONS(4313), + [anon_sym_inner] = ACTIONS(4313), + [anon_sym_value] = ACTIONS(4313), + [anon_sym_override] = ACTIONS(4313), + [anon_sym_lateinit] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_internal] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_tailrec] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_infix] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym_external] = ACTIONS(4313), + [sym_property_modifier] = ACTIONS(4313), + [anon_sym_abstract] = ACTIONS(4313), + [anon_sym_final] = ACTIONS(4313), + [anon_sym_open] = ACTIONS(4313), + [anon_sym_vararg] = ACTIONS(4313), + [anon_sym_noinline] = ACTIONS(4313), + [anon_sym_crossinline] = ACTIONS(4313), + [anon_sym_expect] = ACTIONS(4313), + [anon_sym_actual] = ACTIONS(4313), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4315), + [sym_safe_nav] = ACTIONS(4315), + [sym_multiline_comment] = ACTIONS(3), + }, + [3019] = { + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_RBRACK] = ACTIONS(4319), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_RPAREN] = ACTIONS(4319), + [anon_sym_by] = ACTIONS(4317), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(4317), + [sym__quest] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4317), + [anon_sym_DASH_GT] = ACTIONS(4319), + [sym_label] = ACTIONS(4319), + [anon_sym_in] = ACTIONS(4317), + [anon_sym_while] = ACTIONS(4317), + [anon_sym_DOT_DOT] = ACTIONS(4319), + [anon_sym_QMARK_COLON] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_PIPE_PIPE] = ACTIONS(4319), + [anon_sym_else] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_PLUS_EQ] = ACTIONS(4319), + [anon_sym_DASH_EQ] = ACTIONS(4319), + [anon_sym_STAR_EQ] = ACTIONS(4319), + [anon_sym_SLASH_EQ] = ACTIONS(4319), + [anon_sym_PERCENT_EQ] = ACTIONS(4319), + [anon_sym_BANG_EQ] = ACTIONS(4317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4319), + [anon_sym_EQ_EQ] = ACTIONS(4317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4319), + [anon_sym_LT_EQ] = ACTIONS(4319), + [anon_sym_GT_EQ] = ACTIONS(4319), + [anon_sym_BANGin] = ACTIONS(4319), + [anon_sym_is] = ACTIONS(4317), + [anon_sym_BANGis] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4317), + [anon_sym_PERCENT] = ACTIONS(4317), + [anon_sym_as_QMARK] = ACTIONS(4319), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [anon_sym_BANG_BANG] = ACTIONS(4319), + [anon_sym_suspend] = ACTIONS(4317), + [anon_sym_sealed] = ACTIONS(4317), + [anon_sym_annotation] = ACTIONS(4317), + [anon_sym_data] = ACTIONS(4317), + [anon_sym_inner] = ACTIONS(4317), + [anon_sym_value] = ACTIONS(4317), + [anon_sym_override] = ACTIONS(4317), + [anon_sym_lateinit] = ACTIONS(4317), + [anon_sym_public] = ACTIONS(4317), + [anon_sym_private] = ACTIONS(4317), + [anon_sym_internal] = ACTIONS(4317), + [anon_sym_protected] = ACTIONS(4317), + [anon_sym_tailrec] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_infix] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym_external] = ACTIONS(4317), + [sym_property_modifier] = ACTIONS(4317), + [anon_sym_abstract] = ACTIONS(4317), + [anon_sym_final] = ACTIONS(4317), + [anon_sym_open] = ACTIONS(4317), + [anon_sym_vararg] = ACTIONS(4317), + [anon_sym_noinline] = ACTIONS(4317), + [anon_sym_crossinline] = ACTIONS(4317), + [anon_sym_expect] = ACTIONS(4317), + [anon_sym_actual] = ACTIONS(4317), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4319), + [sym_safe_nav] = ACTIONS(4319), + [sym_multiline_comment] = ACTIONS(3), + }, + [3020] = { + [sym_enum_class_body] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [3021] = { + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_RBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_RPAREN] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4168), + [sym_label] = ACTIONS(4168), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_while] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + }, + [3022] = { + [sym__alpha_identifier] = ACTIONS(4750), + [anon_sym_AT] = ACTIONS(4752), + [anon_sym_COLON] = ACTIONS(4750), + [anon_sym_LBRACK] = ACTIONS(4752), + [anon_sym_as] = ACTIONS(4750), + [anon_sym_EQ] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4752), + [anon_sym_RBRACE] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4752), + [anon_sym_COMMA] = ACTIONS(4752), + [anon_sym_LT] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4750), + [anon_sym_where] = ACTIONS(4750), + [anon_sym_object] = ACTIONS(4750), + [anon_sym_fun] = ACTIONS(4750), + [anon_sym_DOT] = ACTIONS(4750), + [anon_sym_SEMI] = ACTIONS(4752), + [anon_sym_get] = ACTIONS(4750), + [anon_sym_set] = ACTIONS(4750), + [anon_sym_this] = ACTIONS(4750), + [anon_sym_super] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4750), + [sym_label] = ACTIONS(4750), + [anon_sym_in] = ACTIONS(4750), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4752), + [anon_sym_PIPE_PIPE] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(4750), + [anon_sym_if] = ACTIONS(4750), + [anon_sym_else] = ACTIONS(4750), + [anon_sym_when] = ACTIONS(4750), + [anon_sym_try] = ACTIONS(4750), + [anon_sym_throw] = ACTIONS(4750), + [anon_sym_return] = ACTIONS(4750), + [anon_sym_continue] = ACTIONS(4750), + [anon_sym_break] = ACTIONS(4750), + [anon_sym_COLON_COLON] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4752), + [anon_sym_DASH_EQ] = ACTIONS(4752), + [anon_sym_STAR_EQ] = ACTIONS(4752), + [anon_sym_SLASH_EQ] = ACTIONS(4752), + [anon_sym_PERCENT_EQ] = ACTIONS(4752), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4752), + [anon_sym_BANGin] = ACTIONS(4752), + [anon_sym_is] = ACTIONS(4750), + [anon_sym_BANGis] = ACTIONS(4752), + [anon_sym_PLUS] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_SLASH] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4750), + [anon_sym_as_QMARK] = ACTIONS(4752), + [anon_sym_PLUS_PLUS] = ACTIONS(4752), + [anon_sym_DASH_DASH] = ACTIONS(4752), + [anon_sym_BANG] = ACTIONS(4750), + [anon_sym_BANG_BANG] = ACTIONS(4752), + [anon_sym_data] = ACTIONS(4750), + [anon_sym_inner] = ACTIONS(4750), + [anon_sym_value] = ACTIONS(4750), + [anon_sym_expect] = ACTIONS(4750), + [anon_sym_actual] = ACTIONS(4750), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4752), + [anon_sym_continue_AT] = ACTIONS(4752), + [anon_sym_break_AT] = ACTIONS(4752), + [anon_sym_this_AT] = ACTIONS(4752), + [anon_sym_super_AT] = ACTIONS(4752), + [sym_real_literal] = ACTIONS(4752), + [sym_integer_literal] = ACTIONS(4750), + [sym_hex_literal] = ACTIONS(4752), + [sym_bin_literal] = ACTIONS(4752), + [anon_sym_true] = ACTIONS(4750), + [anon_sym_false] = ACTIONS(4750), + [anon_sym_SQUOTE] = ACTIONS(4752), + [sym__backtick_identifier] = ACTIONS(4752), + [sym__automatic_semicolon] = ACTIONS(4752), + [sym_safe_nav] = ACTIONS(4752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4752), + }, + [3023] = { + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_COLON] = ACTIONS(4754), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_as] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_where] = ACTIONS(4754), + [anon_sym_object] = ACTIONS(4754), + [anon_sym_fun] = ACTIONS(4754), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_get] = ACTIONS(4754), + [anon_sym_set] = ACTIONS(4754), + [anon_sym_this] = ACTIONS(4754), + [anon_sym_super] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [sym_label] = ACTIONS(4754), + [anon_sym_in] = ACTIONS(4754), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_QMARK_COLON] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_null] = ACTIONS(4754), + [anon_sym_if] = ACTIONS(4754), + [anon_sym_else] = ACTIONS(4754), + [anon_sym_when] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(4754), + [anon_sym_throw] = ACTIONS(4754), + [anon_sym_return] = ACTIONS(4754), + [anon_sym_continue] = ACTIONS(4754), + [anon_sym_break] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4756), + [anon_sym_SLASH_EQ] = ACTIONS(4756), + [anon_sym_PERCENT_EQ] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4756), + [anon_sym_BANGin] = ACTIONS(4756), + [anon_sym_is] = ACTIONS(4754), + [anon_sym_BANGis] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4754), + [anon_sym_as_QMARK] = ACTIONS(4756), + [anon_sym_PLUS_PLUS] = ACTIONS(4756), + [anon_sym_DASH_DASH] = ACTIONS(4756), + [anon_sym_BANG] = ACTIONS(4754), + [anon_sym_BANG_BANG] = ACTIONS(4756), + [anon_sym_data] = ACTIONS(4754), + [anon_sym_inner] = ACTIONS(4754), + [anon_sym_value] = ACTIONS(4754), + [anon_sym_expect] = ACTIONS(4754), + [anon_sym_actual] = ACTIONS(4754), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4756), + [anon_sym_continue_AT] = ACTIONS(4756), + [anon_sym_break_AT] = ACTIONS(4756), + [anon_sym_this_AT] = ACTIONS(4756), + [anon_sym_super_AT] = ACTIONS(4756), + [sym_real_literal] = ACTIONS(4756), + [sym_integer_literal] = ACTIONS(4754), + [sym_hex_literal] = ACTIONS(4756), + [sym_bin_literal] = ACTIONS(4756), + [anon_sym_true] = ACTIONS(4754), + [anon_sym_false] = ACTIONS(4754), + [anon_sym_SQUOTE] = ACTIONS(4756), + [sym__backtick_identifier] = ACTIONS(4756), + [sym__automatic_semicolon] = ACTIONS(4756), + [sym_safe_nav] = ACTIONS(4756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4756), + }, + [3024] = { + [sym_class_body] = STATE(3247), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(4355), + [anon_sym_object] = ACTIONS(4355), + [anon_sym_fun] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_this] = ACTIONS(4355), + [anon_sym_super] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_null] = ACTIONS(4355), + [anon_sym_if] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_when] = ACTIONS(4355), + [anon_sym_try] = ACTIONS(4355), + [anon_sym_throw] = ACTIONS(4355), + [anon_sym_return] = ACTIONS(4355), + [anon_sym_continue] = ACTIONS(4355), + [anon_sym_break] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4357), + [anon_sym_continue_AT] = ACTIONS(4357), + [anon_sym_break_AT] = ACTIONS(4357), + [anon_sym_this_AT] = ACTIONS(4357), + [anon_sym_super_AT] = ACTIONS(4357), + [sym_real_literal] = ACTIONS(4357), + [sym_integer_literal] = ACTIONS(4355), + [sym_hex_literal] = ACTIONS(4357), + [sym_bin_literal] = ACTIONS(4357), + [anon_sym_true] = ACTIONS(4355), + [anon_sym_false] = ACTIONS(4355), + [anon_sym_SQUOTE] = ACTIONS(4357), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4357), + }, + [3025] = { + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_RBRACK] = ACTIONS(4337), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [anon_sym_by] = ACTIONS(4335), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(4335), + [sym__quest] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [anon_sym_DASH_GT] = ACTIONS(4337), + [sym_label] = ACTIONS(4337), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_while] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + }, + [3026] = { + [sym_function_body] = STATE(3499), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_RBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [anon_sym_DASH_GT] = ACTIONS(4231), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_while] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + }, + [3027] = { + [sym_class_body] = STATE(3061), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [3028] = { + [sym_class_body] = STATE(3228), + [sym__alpha_identifier] = ACTIONS(4555), + [anon_sym_AT] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4555), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_LPAREN] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_where] = ACTIONS(4555), + [anon_sym_object] = ACTIONS(4555), + [anon_sym_fun] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_SEMI] = ACTIONS(4557), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), + [anon_sym_this] = ACTIONS(4555), + [anon_sym_super] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [sym_label] = ACTIONS(4555), + [anon_sym_in] = ACTIONS(4555), + [anon_sym_DOT_DOT] = ACTIONS(4557), + [anon_sym_QMARK_COLON] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_null] = ACTIONS(4555), + [anon_sym_if] = ACTIONS(4555), + [anon_sym_else] = ACTIONS(4555), + [anon_sym_when] = ACTIONS(4555), + [anon_sym_try] = ACTIONS(4555), + [anon_sym_throw] = ACTIONS(4555), + [anon_sym_return] = ACTIONS(4555), + [anon_sym_continue] = ACTIONS(4555), + [anon_sym_break] = ACTIONS(4555), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(4557), + [anon_sym_DASH_EQ] = ACTIONS(4557), + [anon_sym_STAR_EQ] = ACTIONS(4557), + [anon_sym_SLASH_EQ] = ACTIONS(4557), + [anon_sym_PERCENT_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_BANGin] = ACTIONS(4557), + [anon_sym_is] = ACTIONS(4555), + [anon_sym_BANGis] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_as_QMARK] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_BANG_BANG] = ACTIONS(4557), + [anon_sym_data] = ACTIONS(4555), + [anon_sym_inner] = ACTIONS(4555), + [anon_sym_value] = ACTIONS(4555), + [anon_sym_expect] = ACTIONS(4555), + [anon_sym_actual] = ACTIONS(4555), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4557), + [anon_sym_continue_AT] = ACTIONS(4557), + [anon_sym_break_AT] = ACTIONS(4557), + [anon_sym_this_AT] = ACTIONS(4557), + [anon_sym_super_AT] = ACTIONS(4557), + [sym_real_literal] = ACTIONS(4557), + [sym_integer_literal] = ACTIONS(4555), + [sym_hex_literal] = ACTIONS(4557), + [sym_bin_literal] = ACTIONS(4557), + [anon_sym_true] = ACTIONS(4555), + [anon_sym_false] = ACTIONS(4555), + [anon_sym_SQUOTE] = ACTIONS(4557), + [sym__backtick_identifier] = ACTIONS(4557), + [sym__automatic_semicolon] = ACTIONS(4557), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4557), + }, + [3029] = { + [sym__alpha_identifier] = ACTIONS(4571), + [anon_sym_AT] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [anon_sym_as] = ACTIONS(4571), + [anon_sym_EQ] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_COMMA] = ACTIONS(4573), + [anon_sym_by] = ACTIONS(4571), + [anon_sym_LT] = ACTIONS(4571), + [anon_sym_GT] = ACTIONS(4571), + [anon_sym_where] = ACTIONS(4571), + [anon_sym_object] = ACTIONS(4571), + [anon_sym_fun] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_get] = ACTIONS(4571), + [anon_sym_set] = ACTIONS(4571), + [anon_sym_this] = ACTIONS(4571), + [anon_sym_super] = ACTIONS(4571), + [anon_sym_STAR] = ACTIONS(4571), + [sym_label] = ACTIONS(4571), + [anon_sym_in] = ACTIONS(4571), + [anon_sym_DOT_DOT] = ACTIONS(4573), + [anon_sym_QMARK_COLON] = ACTIONS(4573), + [anon_sym_AMP_AMP] = ACTIONS(4573), + [anon_sym_PIPE_PIPE] = ACTIONS(4573), + [anon_sym_null] = ACTIONS(4571), + [anon_sym_if] = ACTIONS(4571), + [anon_sym_else] = ACTIONS(4571), + [anon_sym_when] = ACTIONS(4571), + [anon_sym_try] = ACTIONS(4571), + [anon_sym_throw] = ACTIONS(4571), + [anon_sym_return] = ACTIONS(4571), + [anon_sym_continue] = ACTIONS(4571), + [anon_sym_break] = ACTIONS(4571), + [anon_sym_COLON_COLON] = ACTIONS(4573), + [anon_sym_PLUS_EQ] = ACTIONS(4573), + [anon_sym_DASH_EQ] = ACTIONS(4573), + [anon_sym_STAR_EQ] = ACTIONS(4573), + [anon_sym_SLASH_EQ] = ACTIONS(4573), + [anon_sym_PERCENT_EQ] = ACTIONS(4573), + [anon_sym_BANG_EQ] = ACTIONS(4571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4573), + [anon_sym_EQ_EQ] = ACTIONS(4571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4573), + [anon_sym_LT_EQ] = ACTIONS(4573), + [anon_sym_GT_EQ] = ACTIONS(4573), + [anon_sym_BANGin] = ACTIONS(4573), + [anon_sym_is] = ACTIONS(4571), + [anon_sym_BANGis] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4571), + [anon_sym_PERCENT] = ACTIONS(4571), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4573), + [anon_sym_DASH_DASH] = ACTIONS(4573), + [anon_sym_BANG] = ACTIONS(4571), + [anon_sym_BANG_BANG] = ACTIONS(4573), + [anon_sym_data] = ACTIONS(4571), + [anon_sym_inner] = ACTIONS(4571), + [anon_sym_value] = ACTIONS(4571), + [anon_sym_expect] = ACTIONS(4571), + [anon_sym_actual] = ACTIONS(4571), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4573), + [anon_sym_continue_AT] = ACTIONS(4573), + [anon_sym_break_AT] = ACTIONS(4573), + [anon_sym_this_AT] = ACTIONS(4573), + [anon_sym_super_AT] = ACTIONS(4573), + [sym_real_literal] = ACTIONS(4573), + [sym_integer_literal] = ACTIONS(4571), + [sym_hex_literal] = ACTIONS(4573), + [sym_bin_literal] = ACTIONS(4573), + [anon_sym_true] = ACTIONS(4571), + [anon_sym_false] = ACTIONS(4571), + [anon_sym_SQUOTE] = ACTIONS(4573), + [sym__backtick_identifier] = ACTIONS(4573), + [sym__automatic_semicolon] = ACTIONS(4573), + [sym_safe_nav] = ACTIONS(4573), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4573), + }, + [3030] = { + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_by] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(4337), + [sym__quest] = ACTIONS(4337), + [anon_sym_STAR] = ACTIONS(4337), + [sym_label] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), + }, + [3031] = { + [sym__alpha_identifier] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4681), + [anon_sym_LBRACK] = ACTIONS(4681), + [anon_sym_as] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_LBRACE] = ACTIONS(4681), + [anon_sym_RBRACE] = ACTIONS(4681), + [anon_sym_LPAREN] = ACTIONS(4681), + [anon_sym_COMMA] = ACTIONS(4681), + [anon_sym_by] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_where] = ACTIONS(4678), + [anon_sym_object] = ACTIONS(4678), + [anon_sym_fun] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4681), + [anon_sym_get] = ACTIONS(4678), + [anon_sym_set] = ACTIONS(4678), + [anon_sym_this] = ACTIONS(4678), + [anon_sym_super] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4678), + [sym_label] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4681), + [anon_sym_QMARK_COLON] = ACTIONS(4681), + [anon_sym_AMP_AMP] = ACTIONS(4681), + [anon_sym_PIPE_PIPE] = ACTIONS(4681), + [anon_sym_null] = ACTIONS(4678), + [anon_sym_if] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_when] = ACTIONS(4678), + [anon_sym_try] = ACTIONS(4678), + [anon_sym_throw] = ACTIONS(4678), + [anon_sym_return] = ACTIONS(4678), + [anon_sym_continue] = ACTIONS(4678), + [anon_sym_break] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4681), + [anon_sym_PLUS_EQ] = ACTIONS(4681), + [anon_sym_DASH_EQ] = ACTIONS(4681), + [anon_sym_STAR_EQ] = ACTIONS(4681), + [anon_sym_SLASH_EQ] = ACTIONS(4681), + [anon_sym_PERCENT_EQ] = ACTIONS(4681), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4681), + [anon_sym_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4681), + [anon_sym_LT_EQ] = ACTIONS(4681), + [anon_sym_GT_EQ] = ACTIONS(4681), + [anon_sym_BANGin] = ACTIONS(4681), + [anon_sym_is] = ACTIONS(4678), + [anon_sym_BANGis] = ACTIONS(4681), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_as_QMARK] = ACTIONS(4681), + [anon_sym_PLUS_PLUS] = ACTIONS(4681), + [anon_sym_DASH_DASH] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(4678), + [anon_sym_BANG_BANG] = ACTIONS(4681), + [anon_sym_data] = ACTIONS(4678), + [anon_sym_inner] = ACTIONS(4678), + [anon_sym_value] = ACTIONS(4678), + [anon_sym_expect] = ACTIONS(4678), + [anon_sym_actual] = ACTIONS(4678), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4681), + [anon_sym_continue_AT] = ACTIONS(4681), + [anon_sym_break_AT] = ACTIONS(4681), + [anon_sym_this_AT] = ACTIONS(4681), + [anon_sym_super_AT] = ACTIONS(4681), + [sym_real_literal] = ACTIONS(4681), + [sym_integer_literal] = ACTIONS(4678), + [sym_hex_literal] = ACTIONS(4681), + [sym_bin_literal] = ACTIONS(4681), + [anon_sym_true] = ACTIONS(4678), + [anon_sym_false] = ACTIONS(4678), + [anon_sym_SQUOTE] = ACTIONS(4681), + [sym__backtick_identifier] = ACTIONS(4681), + [sym__automatic_semicolon] = ACTIONS(4681), + [sym_safe_nav] = ACTIONS(4681), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4681), + }, + [3032] = { + [aux_sym_nullable_type_repeat1] = STATE(3032), + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_RBRACK] = ACTIONS(4224), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_RBRACE] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4224), + [anon_sym_RPAREN] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4222), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [sym__quest] = ACTIONS(6594), + [anon_sym_STAR] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4224), + [sym_label] = ACTIONS(4224), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4224), + [anon_sym_QMARK_COLON] = ACTIONS(4224), + [anon_sym_AMP_AMP] = ACTIONS(4224), + [anon_sym_PIPE_PIPE] = ACTIONS(4224), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4224), + [anon_sym_PLUS_EQ] = ACTIONS(4224), + [anon_sym_DASH_EQ] = ACTIONS(4224), + [anon_sym_STAR_EQ] = ACTIONS(4224), + [anon_sym_SLASH_EQ] = ACTIONS(4224), + [anon_sym_PERCENT_EQ] = ACTIONS(4224), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4224), + [anon_sym_LT_EQ] = ACTIONS(4224), + [anon_sym_GT_EQ] = ACTIONS(4224), + [anon_sym_BANGin] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4224), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4224), + [anon_sym_DASH_DASH] = ACTIONS(4224), + [anon_sym_BANG_BANG] = ACTIONS(4224), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4224), + [sym_safe_nav] = ACTIONS(4224), + [sym_multiline_comment] = ACTIONS(3), + }, + [3033] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_null] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4206), + [anon_sym_continue_AT] = ACTIONS(4206), + [anon_sym_break_AT] = ACTIONS(4206), + [anon_sym_this_AT] = ACTIONS(4206), + [anon_sym_super_AT] = ACTIONS(4206), + [sym_real_literal] = ACTIONS(4206), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4206), + [sym_bin_literal] = ACTIONS(4206), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4206), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4206), + }, + [3034] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3017), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(6579), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), + }, + [3035] = { + [sym_function_body] = STATE(3414), + [sym__block] = STATE(3402), [sym__alpha_identifier] = ACTIONS(4275), [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(6597), [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_RBRACK] = ACTIONS(4277), [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_fun] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_RBRACE] = ACTIONS(4277), [anon_sym_LPAREN] = ACTIONS(4277), [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4277), [anon_sym_LT] = ACTIONS(4275), [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), [anon_sym_DOT] = ACTIONS(4275), [anon_sym_SEMI] = ACTIONS(4277), [anon_sym_get] = ACTIONS(4275), [anon_sym_set] = ACTIONS(4275), - [anon_sym_this] = ACTIONS(4275), - [anon_sym_super] = ACTIONS(4275), [anon_sym_STAR] = ACTIONS(4275), - [sym_label] = ACTIONS(4275), + [anon_sym_DASH_GT] = ACTIONS(4277), + [sym_label] = ACTIONS(4277), [anon_sym_in] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), [anon_sym_DOT_DOT] = ACTIONS(4277), [anon_sym_QMARK_COLON] = ACTIONS(4277), [anon_sym_AMP_AMP] = ACTIONS(4277), [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4275), - [anon_sym_if] = ACTIONS(4275), [anon_sym_else] = ACTIONS(4275), - [anon_sym_when] = ACTIONS(4275), - [anon_sym_try] = ACTIONS(4275), - [anon_sym_throw] = ACTIONS(4275), - [anon_sym_return] = ACTIONS(4275), - [anon_sym_continue] = ACTIONS(4275), - [anon_sym_break] = ACTIONS(4275), [anon_sym_COLON_COLON] = ACTIONS(4277), [anon_sym_PLUS_EQ] = ACTIONS(4277), [anon_sym_DASH_EQ] = ACTIONS(4277), @@ -364689,158 +364948,758 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(4277), [anon_sym_PLUS_PLUS] = ACTIONS(4277), [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG] = ACTIONS(4275), [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), [anon_sym_data] = ACTIONS(4275), [anon_sym_inner] = ACTIONS(4275), [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), [anon_sym_expect] = ACTIONS(4275), [anon_sym_actual] = ACTIONS(4275), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4277), - [anon_sym_continue_AT] = ACTIONS(4277), - [anon_sym_break_AT] = ACTIONS(4277), - [anon_sym_this_AT] = ACTIONS(4277), - [anon_sym_super_AT] = ACTIONS(4277), - [sym_real_literal] = ACTIONS(4277), - [sym_integer_literal] = ACTIONS(4275), - [sym_hex_literal] = ACTIONS(4277), - [sym_bin_literal] = ACTIONS(4277), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [anon_sym_SQUOTE] = ACTIONS(4277), [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), }, - [3010] = { - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [3036] = { + [sym__alpha_identifier] = ACTIONS(4581), + [anon_sym_AT] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4581), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_as] = ACTIONS(4581), + [anon_sym_EQ] = ACTIONS(4581), + [anon_sym_LBRACE] = ACTIONS(4583), + [anon_sym_RBRACE] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_COMMA] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4581), + [anon_sym_GT] = ACTIONS(4581), + [anon_sym_where] = ACTIONS(4581), + [anon_sym_object] = ACTIONS(4581), + [anon_sym_fun] = ACTIONS(4581), + [anon_sym_DOT] = ACTIONS(4581), + [anon_sym_SEMI] = ACTIONS(4583), + [anon_sym_get] = ACTIONS(4581), + [anon_sym_set] = ACTIONS(4581), + [anon_sym_this] = ACTIONS(4581), + [anon_sym_super] = ACTIONS(4581), + [anon_sym_STAR] = ACTIONS(4581), + [sym_label] = ACTIONS(4581), + [anon_sym_in] = ACTIONS(4581), + [anon_sym_DOT_DOT] = ACTIONS(4583), + [anon_sym_QMARK_COLON] = ACTIONS(4583), + [anon_sym_AMP_AMP] = ACTIONS(4583), + [anon_sym_PIPE_PIPE] = ACTIONS(4583), + [anon_sym_null] = ACTIONS(4581), + [anon_sym_if] = ACTIONS(4581), + [anon_sym_else] = ACTIONS(4581), + [anon_sym_when] = ACTIONS(4581), + [anon_sym_try] = ACTIONS(4581), + [anon_sym_throw] = ACTIONS(4581), + [anon_sym_return] = ACTIONS(4581), + [anon_sym_continue] = ACTIONS(4581), + [anon_sym_break] = ACTIONS(4581), + [anon_sym_COLON_COLON] = ACTIONS(4583), + [anon_sym_PLUS_EQ] = ACTIONS(4583), + [anon_sym_DASH_EQ] = ACTIONS(4583), + [anon_sym_STAR_EQ] = ACTIONS(4583), + [anon_sym_SLASH_EQ] = ACTIONS(4583), + [anon_sym_PERCENT_EQ] = ACTIONS(4583), + [anon_sym_BANG_EQ] = ACTIONS(4581), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4581), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4583), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4583), + [anon_sym_BANGin] = ACTIONS(4583), + [anon_sym_is] = ACTIONS(4581), + [anon_sym_BANGis] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4581), + [anon_sym_DASH] = ACTIONS(4581), + [anon_sym_SLASH] = ACTIONS(4581), + [anon_sym_PERCENT] = ACTIONS(4581), + [anon_sym_as_QMARK] = ACTIONS(4583), + [anon_sym_PLUS_PLUS] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4583), + [anon_sym_BANG] = ACTIONS(4581), + [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_data] = ACTIONS(4581), + [anon_sym_inner] = ACTIONS(4581), + [anon_sym_value] = ACTIONS(4581), + [anon_sym_expect] = ACTIONS(4581), + [anon_sym_actual] = ACTIONS(4581), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4583), + [anon_sym_continue_AT] = ACTIONS(4583), + [anon_sym_break_AT] = ACTIONS(4583), + [anon_sym_this_AT] = ACTIONS(4583), + [anon_sym_super_AT] = ACTIONS(4583), + [sym_real_literal] = ACTIONS(4583), + [sym_integer_literal] = ACTIONS(4581), + [sym_hex_literal] = ACTIONS(4583), + [sym_bin_literal] = ACTIONS(4583), + [anon_sym_true] = ACTIONS(4581), + [anon_sym_false] = ACTIONS(4581), + [anon_sym_SQUOTE] = ACTIONS(4583), + [sym__backtick_identifier] = ACTIONS(4583), + [sym__automatic_semicolon] = ACTIONS(4583), + [sym_safe_nav] = ACTIONS(4583), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4583), + }, + [3037] = { + [aux_sym_nullable_type_repeat1] = STATE(3043), + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_RBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_RPAREN] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [sym__quest] = ACTIONS(6573), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_DASH_GT] = ACTIONS(4206), + [sym_label] = ACTIONS(4206), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + }, + [3038] = { + [sym_type_constraints] = STATE(3189), + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_RBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_DASH_GT] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + }, + [3039] = { + [sym_class_body] = STATE(3206), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, - [3011] = { - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3335), + [3040] = { + [sym__alpha_identifier] = ACTIONS(4585), + [anon_sym_AT] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4585), + [anon_sym_EQ] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_RBRACE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4585), + [anon_sym_where] = ACTIONS(4585), + [anon_sym_object] = ACTIONS(4585), + [anon_sym_fun] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_get] = ACTIONS(4585), + [anon_sym_set] = ACTIONS(4585), + [anon_sym_this] = ACTIONS(4585), + [anon_sym_super] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(4585), + [sym_label] = ACTIONS(4585), + [anon_sym_in] = ACTIONS(4585), + [anon_sym_DOT_DOT] = ACTIONS(4587), + [anon_sym_QMARK_COLON] = ACTIONS(4587), + [anon_sym_AMP_AMP] = ACTIONS(4587), + [anon_sym_PIPE_PIPE] = ACTIONS(4587), + [anon_sym_null] = ACTIONS(4585), + [anon_sym_if] = ACTIONS(4585), + [anon_sym_else] = ACTIONS(4585), + [anon_sym_when] = ACTIONS(4585), + [anon_sym_try] = ACTIONS(4585), + [anon_sym_throw] = ACTIONS(4585), + [anon_sym_return] = ACTIONS(4585), + [anon_sym_continue] = ACTIONS(4585), + [anon_sym_break] = ACTIONS(4585), + [anon_sym_COLON_COLON] = ACTIONS(4587), + [anon_sym_PLUS_EQ] = ACTIONS(4587), + [anon_sym_DASH_EQ] = ACTIONS(4587), + [anon_sym_STAR_EQ] = ACTIONS(4587), + [anon_sym_SLASH_EQ] = ACTIONS(4587), + [anon_sym_PERCENT_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4587), + [anon_sym_LT_EQ] = ACTIONS(4587), + [anon_sym_GT_EQ] = ACTIONS(4587), + [anon_sym_BANGin] = ACTIONS(4587), + [anon_sym_is] = ACTIONS(4585), + [anon_sym_BANGis] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4585), + [anon_sym_SLASH] = ACTIONS(4585), + [anon_sym_PERCENT] = ACTIONS(4585), + [anon_sym_as_QMARK] = ACTIONS(4587), + [anon_sym_PLUS_PLUS] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4585), + [anon_sym_BANG_BANG] = ACTIONS(4587), + [anon_sym_data] = ACTIONS(4585), + [anon_sym_inner] = ACTIONS(4585), + [anon_sym_value] = ACTIONS(4585), + [anon_sym_expect] = ACTIONS(4585), + [anon_sym_actual] = ACTIONS(4585), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4587), + [anon_sym_continue_AT] = ACTIONS(4587), + [anon_sym_break_AT] = ACTIONS(4587), + [anon_sym_this_AT] = ACTIONS(4587), + [anon_sym_super_AT] = ACTIONS(4587), + [sym_real_literal] = ACTIONS(4587), + [sym_integer_literal] = ACTIONS(4585), + [sym_hex_literal] = ACTIONS(4587), + [sym_bin_literal] = ACTIONS(4587), + [anon_sym_true] = ACTIONS(4585), + [anon_sym_false] = ACTIONS(4585), + [anon_sym_SQUOTE] = ACTIONS(4587), + [sym__backtick_identifier] = ACTIONS(4587), + [sym__automatic_semicolon] = ACTIONS(4587), + [sym_safe_nav] = ACTIONS(4587), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4587), + }, + [3041] = { + [sym__alpha_identifier] = ACTIONS(4577), + [anon_sym_AT] = ACTIONS(4579), + [anon_sym_COLON] = ACTIONS(4577), + [anon_sym_LBRACK] = ACTIONS(4579), + [anon_sym_as] = ACTIONS(4577), + [anon_sym_EQ] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [anon_sym_RBRACE] = ACTIONS(4579), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym_COMMA] = ACTIONS(4579), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4577), + [anon_sym_where] = ACTIONS(4577), + [anon_sym_object] = ACTIONS(4577), + [anon_sym_fun] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SEMI] = ACTIONS(4579), + [anon_sym_get] = ACTIONS(4577), + [anon_sym_set] = ACTIONS(4577), + [anon_sym_this] = ACTIONS(4577), + [anon_sym_super] = ACTIONS(4577), + [anon_sym_STAR] = ACTIONS(4577), + [sym_label] = ACTIONS(4577), + [anon_sym_in] = ACTIONS(4577), + [anon_sym_DOT_DOT] = ACTIONS(4579), + [anon_sym_QMARK_COLON] = ACTIONS(4579), + [anon_sym_AMP_AMP] = ACTIONS(4579), + [anon_sym_PIPE_PIPE] = ACTIONS(4579), + [anon_sym_null] = ACTIONS(4577), + [anon_sym_if] = ACTIONS(4577), + [anon_sym_else] = ACTIONS(4577), + [anon_sym_when] = ACTIONS(4577), + [anon_sym_try] = ACTIONS(4577), + [anon_sym_throw] = ACTIONS(4577), + [anon_sym_return] = ACTIONS(4577), + [anon_sym_continue] = ACTIONS(4577), + [anon_sym_break] = ACTIONS(4577), + [anon_sym_COLON_COLON] = ACTIONS(4579), + [anon_sym_PLUS_EQ] = ACTIONS(4579), + [anon_sym_DASH_EQ] = ACTIONS(4579), + [anon_sym_STAR_EQ] = ACTIONS(4579), + [anon_sym_SLASH_EQ] = ACTIONS(4579), + [anon_sym_PERCENT_EQ] = ACTIONS(4579), + [anon_sym_BANG_EQ] = ACTIONS(4577), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4579), + [anon_sym_EQ_EQ] = ACTIONS(4577), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4579), + [anon_sym_LT_EQ] = ACTIONS(4579), + [anon_sym_GT_EQ] = ACTIONS(4579), + [anon_sym_BANGin] = ACTIONS(4579), + [anon_sym_is] = ACTIONS(4577), + [anon_sym_BANGis] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4577), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4577), + [anon_sym_PERCENT] = ACTIONS(4577), + [anon_sym_as_QMARK] = ACTIONS(4579), + [anon_sym_PLUS_PLUS] = ACTIONS(4579), + [anon_sym_DASH_DASH] = ACTIONS(4579), + [anon_sym_BANG] = ACTIONS(4577), + [anon_sym_BANG_BANG] = ACTIONS(4579), + [anon_sym_data] = ACTIONS(4577), + [anon_sym_inner] = ACTIONS(4577), + [anon_sym_value] = ACTIONS(4577), + [anon_sym_expect] = ACTIONS(4577), + [anon_sym_actual] = ACTIONS(4577), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4579), + [anon_sym_continue_AT] = ACTIONS(4579), + [anon_sym_break_AT] = ACTIONS(4579), + [anon_sym_this_AT] = ACTIONS(4579), + [anon_sym_super_AT] = ACTIONS(4579), + [sym_real_literal] = ACTIONS(4579), + [sym_integer_literal] = ACTIONS(4577), + [sym_hex_literal] = ACTIONS(4579), + [sym_bin_literal] = ACTIONS(4579), + [anon_sym_true] = ACTIONS(4577), + [anon_sym_false] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4579), + [sym__backtick_identifier] = ACTIONS(4579), + [sym__automatic_semicolon] = ACTIONS(4579), + [sym_safe_nav] = ACTIONS(4579), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4579), + }, + [3042] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(6524), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), + }, + [3043] = { + [aux_sym_nullable_type_repeat1] = STATE(3032), + [sym__alpha_identifier] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_RBRACK] = ACTIONS(4249), + [anon_sym_as] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_RBRACE] = ACTIONS(4249), + [anon_sym_LPAREN] = ACTIONS(4249), + [anon_sym_COMMA] = ACTIONS(4249), + [anon_sym_RPAREN] = ACTIONS(4249), + [anon_sym_by] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4247), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_where] = ACTIONS(4247), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4249), + [anon_sym_get] = ACTIONS(4247), + [anon_sym_set] = ACTIONS(4247), + [sym__quest] = ACTIONS(6599), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_DASH_GT] = ACTIONS(4249), + [sym_label] = ACTIONS(4249), + [anon_sym_in] = ACTIONS(4247), + [anon_sym_while] = ACTIONS(4247), + [anon_sym_DOT_DOT] = ACTIONS(4249), + [anon_sym_QMARK_COLON] = ACTIONS(4249), + [anon_sym_AMP_AMP] = ACTIONS(4249), + [anon_sym_PIPE_PIPE] = ACTIONS(4249), + [anon_sym_else] = ACTIONS(4247), + [anon_sym_COLON_COLON] = ACTIONS(4249), + [anon_sym_PLUS_EQ] = ACTIONS(4249), + [anon_sym_DASH_EQ] = ACTIONS(4249), + [anon_sym_STAR_EQ] = ACTIONS(4249), + [anon_sym_SLASH_EQ] = ACTIONS(4249), + [anon_sym_PERCENT_EQ] = ACTIONS(4249), + [anon_sym_BANG_EQ] = ACTIONS(4247), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4249), + [anon_sym_EQ_EQ] = ACTIONS(4247), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4249), + [anon_sym_LT_EQ] = ACTIONS(4249), + [anon_sym_GT_EQ] = ACTIONS(4249), + [anon_sym_BANGin] = ACTIONS(4249), + [anon_sym_is] = ACTIONS(4247), + [anon_sym_BANGis] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_as_QMARK] = ACTIONS(4249), + [anon_sym_PLUS_PLUS] = ACTIONS(4249), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_BANG_BANG] = ACTIONS(4249), + [anon_sym_suspend] = ACTIONS(4247), + [anon_sym_sealed] = ACTIONS(4247), + [anon_sym_annotation] = ACTIONS(4247), + [anon_sym_data] = ACTIONS(4247), + [anon_sym_inner] = ACTIONS(4247), + [anon_sym_value] = ACTIONS(4247), + [anon_sym_override] = ACTIONS(4247), + [anon_sym_lateinit] = ACTIONS(4247), + [anon_sym_public] = ACTIONS(4247), + [anon_sym_private] = ACTIONS(4247), + [anon_sym_internal] = ACTIONS(4247), + [anon_sym_protected] = ACTIONS(4247), + [anon_sym_tailrec] = ACTIONS(4247), + [anon_sym_operator] = ACTIONS(4247), + [anon_sym_infix] = ACTIONS(4247), + [anon_sym_inline] = ACTIONS(4247), + [anon_sym_external] = ACTIONS(4247), + [sym_property_modifier] = ACTIONS(4247), + [anon_sym_abstract] = ACTIONS(4247), + [anon_sym_final] = ACTIONS(4247), + [anon_sym_open] = ACTIONS(4247), + [anon_sym_vararg] = ACTIONS(4247), + [anon_sym_noinline] = ACTIONS(4247), + [anon_sym_crossinline] = ACTIONS(4247), + [anon_sym_expect] = ACTIONS(4247), + [anon_sym_actual] = ACTIONS(4247), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4249), + [sym_safe_nav] = ACTIONS(4249), + [sym_multiline_comment] = ACTIONS(3), + }, + [3044] = { + [sym_type_constraints] = STATE(3184), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(6547), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(4183), - [anon_sym_object] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), [anon_sym_STAR] = ACTIONS(4183), - [sym_label] = ACTIONS(4183), + [anon_sym_DASH_GT] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), [anon_sym_DOT_DOT] = ACTIONS(4185), [anon_sym_QMARK_COLON] = ACTIONS(4185), [anon_sym_AMP_AMP] = ACTIONS(4185), [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), [anon_sym_COLON_COLON] = ACTIONS(4185), [anon_sym_PLUS_EQ] = ACTIONS(4185), [anon_sym_DASH_EQ] = ACTIONS(4185), @@ -364863,136 +365722,398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(4185), [anon_sym_PLUS_PLUS] = ACTIONS(4185), [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), [anon_sym_data] = ACTIONS(4183), [anon_sym_inner] = ACTIONS(4183), [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), [anon_sym_expect] = ACTIONS(4183), [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), }, - [3012] = { - [sym_getter] = STATE(4045), - [sym_setter] = STATE(4045), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [3045] = { + [sym_type_constraints] = STATE(3147), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, - [3013] = { - [sym_class_body] = STATE(3297), - [sym_type_constraints] = STATE(3046), + [3046] = { + [aux_sym_type_constraints_repeat1] = STATE(3056), + [sym__alpha_identifier] = ACTIONS(4424), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_as] = ACTIONS(4424), + [anon_sym_EQ] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(6587), + [anon_sym_LT] = ACTIONS(4424), + [anon_sym_GT] = ACTIONS(4424), + [anon_sym_where] = ACTIONS(4424), + [anon_sym_object] = ACTIONS(4424), + [anon_sym_fun] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym_get] = ACTIONS(4424), + [anon_sym_set] = ACTIONS(4424), + [anon_sym_this] = ACTIONS(4424), + [anon_sym_super] = ACTIONS(4424), + [anon_sym_STAR] = ACTIONS(4424), + [sym_label] = ACTIONS(4424), + [anon_sym_in] = ACTIONS(4424), + [anon_sym_DOT_DOT] = ACTIONS(4426), + [anon_sym_QMARK_COLON] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_PIPE_PIPE] = ACTIONS(4426), + [anon_sym_null] = ACTIONS(4424), + [anon_sym_if] = ACTIONS(4424), + [anon_sym_else] = ACTIONS(4424), + [anon_sym_when] = ACTIONS(4424), + [anon_sym_try] = ACTIONS(4424), + [anon_sym_throw] = ACTIONS(4424), + [anon_sym_return] = ACTIONS(4424), + [anon_sym_continue] = ACTIONS(4424), + [anon_sym_break] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_PERCENT_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4424), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4426), + [anon_sym_EQ_EQ] = ACTIONS(4424), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4426), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_BANGin] = ACTIONS(4426), + [anon_sym_is] = ACTIONS(4424), + [anon_sym_BANGis] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_SLASH] = ACTIONS(4424), + [anon_sym_PERCENT] = ACTIONS(4424), + [anon_sym_as_QMARK] = ACTIONS(4426), + [anon_sym_PLUS_PLUS] = ACTIONS(4426), + [anon_sym_DASH_DASH] = ACTIONS(4426), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_BANG_BANG] = ACTIONS(4426), + [anon_sym_data] = ACTIONS(4424), + [anon_sym_inner] = ACTIONS(4424), + [anon_sym_value] = ACTIONS(4424), + [anon_sym_expect] = ACTIONS(4424), + [anon_sym_actual] = ACTIONS(4424), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4426), + [anon_sym_continue_AT] = ACTIONS(4426), + [anon_sym_break_AT] = ACTIONS(4426), + [anon_sym_this_AT] = ACTIONS(4426), + [anon_sym_super_AT] = ACTIONS(4426), + [sym_real_literal] = ACTIONS(4426), + [sym_integer_literal] = ACTIONS(4424), + [sym_hex_literal] = ACTIONS(4426), + [sym_bin_literal] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4424), + [anon_sym_false] = ACTIONS(4424), + [anon_sym_SQUOTE] = ACTIONS(4426), + [sym__backtick_identifier] = ACTIONS(4426), + [sym__automatic_semicolon] = ACTIONS(4426), + [sym_safe_nav] = ACTIONS(4426), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4426), + }, + [3047] = { + [sym_class_body] = STATE(3173), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [3048] = { + [sym__alpha_identifier] = ACTIONS(4563), + [anon_sym_AT] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_as] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4563), + [anon_sym_GT] = ACTIONS(4563), + [anon_sym_where] = ACTIONS(4563), + [anon_sym_object] = ACTIONS(4563), + [anon_sym_fun] = ACTIONS(4563), + [anon_sym_DOT] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_get] = ACTIONS(4563), + [anon_sym_set] = ACTIONS(4563), + [anon_sym_this] = ACTIONS(4563), + [anon_sym_super] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [sym_label] = ACTIONS(4563), + [anon_sym_in] = ACTIONS(4563), + [anon_sym_DOT_DOT] = ACTIONS(4565), + [anon_sym_QMARK_COLON] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4565), + [anon_sym_PIPE_PIPE] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_if] = ACTIONS(4563), + [anon_sym_else] = ACTIONS(4563), + [anon_sym_when] = ACTIONS(4563), + [anon_sym_try] = ACTIONS(4563), + [anon_sym_throw] = ACTIONS(4563), + [anon_sym_return] = ACTIONS(4563), + [anon_sym_continue] = ACTIONS(4563), + [anon_sym_break] = ACTIONS(4563), + [anon_sym_COLON_COLON] = ACTIONS(4565), + [anon_sym_PLUS_EQ] = ACTIONS(4565), + [anon_sym_DASH_EQ] = ACTIONS(4565), + [anon_sym_STAR_EQ] = ACTIONS(4565), + [anon_sym_SLASH_EQ] = ACTIONS(4565), + [anon_sym_PERCENT_EQ] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4565), + [anon_sym_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4565), + [anon_sym_LT_EQ] = ACTIONS(4565), + [anon_sym_GT_EQ] = ACTIONS(4565), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_as_QMARK] = ACTIONS(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(4565), + [anon_sym_DASH_DASH] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(4563), + [anon_sym_BANG_BANG] = ACTIONS(4565), + [anon_sym_data] = ACTIONS(4563), + [anon_sym_inner] = ACTIONS(4563), + [anon_sym_value] = ACTIONS(4563), + [anon_sym_expect] = ACTIONS(4563), + [anon_sym_actual] = ACTIONS(4563), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4565), + [anon_sym_continue_AT] = ACTIONS(4565), + [anon_sym_break_AT] = ACTIONS(4565), + [anon_sym_this_AT] = ACTIONS(4565), + [anon_sym_super_AT] = ACTIONS(4565), + [sym_real_literal] = ACTIONS(4565), + [sym_integer_literal] = ACTIONS(4563), + [sym_hex_literal] = ACTIONS(4565), + [sym_bin_literal] = ACTIONS(4565), + [anon_sym_true] = ACTIONS(4563), + [anon_sym_false] = ACTIONS(4563), + [anon_sym_SQUOTE] = ACTIONS(4565), + [sym__backtick_identifier] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(4565), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4565), + }, + [3049] = { + [sym_function_body] = STATE(3258), + [sym__block] = STATE(3082), [sym__alpha_identifier] = ACTIONS(4275), [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(6662), + [anon_sym_COLON] = ACTIONS(6601), [anon_sym_LBRACK] = ACTIONS(4277), [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_fun] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), [anon_sym_RBRACE] = ACTIONS(4277), [anon_sym_LPAREN] = ACTIONS(4277), [anon_sym_LT] = ACTIONS(4275), [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(3260), [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), [anon_sym_DOT] = ACTIONS(4275), [anon_sym_SEMI] = ACTIONS(4277), [anon_sym_get] = ACTIONS(4275), @@ -365063,5663 +366184,7612 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4277), }, - [3014] = { - [sym_class_body] = STATE(3304), - [sym_type_constraints] = STATE(3053), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [3050] = { + [sym_type_constraints] = STATE(3136), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_RBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_DASH_GT] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), }, - [3015] = { - [sym_function_body] = STATE(3221), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), + [3051] = { + [sym__alpha_identifier] = ACTIONS(4740), + [anon_sym_AT] = ACTIONS(4742), + [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_as] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(4740), + [anon_sym_LBRACE] = ACTIONS(4742), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_COMMA] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4740), + [anon_sym_GT] = ACTIONS(4740), + [anon_sym_where] = ACTIONS(4740), + [anon_sym_object] = ACTIONS(4740), + [anon_sym_fun] = ACTIONS(4740), + [anon_sym_DOT] = ACTIONS(4740), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_get] = ACTIONS(4740), + [anon_sym_set] = ACTIONS(4740), + [anon_sym_this] = ACTIONS(4740), + [anon_sym_super] = ACTIONS(4740), + [anon_sym_STAR] = ACTIONS(4740), + [sym_label] = ACTIONS(4740), + [anon_sym_in] = ACTIONS(4740), + [anon_sym_DOT_DOT] = ACTIONS(4742), + [anon_sym_QMARK_COLON] = ACTIONS(4742), + [anon_sym_AMP_AMP] = ACTIONS(4742), + [anon_sym_PIPE_PIPE] = ACTIONS(4742), + [anon_sym_null] = ACTIONS(4740), + [anon_sym_if] = ACTIONS(4740), + [anon_sym_else] = ACTIONS(4740), + [anon_sym_when] = ACTIONS(4740), + [anon_sym_try] = ACTIONS(4740), + [anon_sym_throw] = ACTIONS(4740), + [anon_sym_return] = ACTIONS(4740), + [anon_sym_continue] = ACTIONS(4740), + [anon_sym_break] = ACTIONS(4740), + [anon_sym_COLON_COLON] = ACTIONS(4742), + [anon_sym_PLUS_EQ] = ACTIONS(4742), + [anon_sym_DASH_EQ] = ACTIONS(4742), + [anon_sym_STAR_EQ] = ACTIONS(4742), + [anon_sym_SLASH_EQ] = ACTIONS(4742), + [anon_sym_PERCENT_EQ] = ACTIONS(4742), + [anon_sym_BANG_EQ] = ACTIONS(4740), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), + [anon_sym_EQ_EQ] = ACTIONS(4740), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), + [anon_sym_LT_EQ] = ACTIONS(4742), + [anon_sym_GT_EQ] = ACTIONS(4742), + [anon_sym_BANGin] = ACTIONS(4742), + [anon_sym_is] = ACTIONS(4740), + [anon_sym_BANGis] = ACTIONS(4742), + [anon_sym_PLUS] = ACTIONS(4740), + [anon_sym_DASH] = ACTIONS(4740), + [anon_sym_SLASH] = ACTIONS(4740), + [anon_sym_PERCENT] = ACTIONS(4740), + [anon_sym_as_QMARK] = ACTIONS(4742), + [anon_sym_PLUS_PLUS] = ACTIONS(4742), + [anon_sym_DASH_DASH] = ACTIONS(4742), + [anon_sym_BANG] = ACTIONS(4740), + [anon_sym_BANG_BANG] = ACTIONS(4742), + [anon_sym_data] = ACTIONS(4740), + [anon_sym_inner] = ACTIONS(4740), + [anon_sym_value] = ACTIONS(4740), + [anon_sym_expect] = ACTIONS(4740), + [anon_sym_actual] = ACTIONS(4740), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4742), + [anon_sym_continue_AT] = ACTIONS(4742), + [anon_sym_break_AT] = ACTIONS(4742), + [anon_sym_this_AT] = ACTIONS(4742), + [anon_sym_super_AT] = ACTIONS(4742), + [sym_real_literal] = ACTIONS(4742), + [sym_integer_literal] = ACTIONS(4740), + [sym_hex_literal] = ACTIONS(4742), + [sym_bin_literal] = ACTIONS(4742), + [anon_sym_L] = ACTIONS(6603), + [anon_sym_true] = ACTIONS(4740), + [anon_sym_false] = ACTIONS(4740), + [anon_sym_SQUOTE] = ACTIONS(4742), + [sym__backtick_identifier] = ACTIONS(4742), + [sym__automatic_semicolon] = ACTIONS(4742), + [sym_safe_nav] = ACTIONS(4742), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4742), }, - [3016] = { - [sym_function_body] = STATE(3262), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(6545), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(4287), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), + [3052] = { + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(6605), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_RBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_DASH_GT] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), }, - [3017] = { - [aux_sym_user_type_repeat1] = STATE(3017), - [sym__alpha_identifier] = ACTIONS(4189), - [anon_sym_AT] = ACTIONS(4191), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_RBRACK] = ACTIONS(4191), - [anon_sym_as] = ACTIONS(4189), - [anon_sym_EQ] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_RPAREN] = ACTIONS(4191), - [anon_sym_by] = ACTIONS(4189), - [anon_sym_LT] = ACTIONS(4189), - [anon_sym_GT] = ACTIONS(4189), - [anon_sym_where] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(6664), - [anon_sym_SEMI] = ACTIONS(4191), - [anon_sym_get] = ACTIONS(4189), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [sym__quest] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [anon_sym_DASH_GT] = ACTIONS(4191), - [sym_label] = ACTIONS(4191), - [anon_sym_in] = ACTIONS(4189), - [anon_sym_while] = ACTIONS(4189), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_QMARK_COLON] = ACTIONS(4191), - [anon_sym_AMP_AMP] = ACTIONS(4191), - [anon_sym_PIPE_PIPE] = ACTIONS(4191), - [anon_sym_else] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(4191), - [anon_sym_PLUS_EQ] = ACTIONS(4191), - [anon_sym_DASH_EQ] = ACTIONS(4191), - [anon_sym_STAR_EQ] = ACTIONS(4191), - [anon_sym_SLASH_EQ] = ACTIONS(4191), - [anon_sym_PERCENT_EQ] = ACTIONS(4191), - [anon_sym_BANG_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4191), - [anon_sym_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4191), - [anon_sym_LT_EQ] = ACTIONS(4191), - [anon_sym_GT_EQ] = ACTIONS(4191), - [anon_sym_BANGin] = ACTIONS(4191), - [anon_sym_is] = ACTIONS(4189), - [anon_sym_BANGis] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_SLASH] = ACTIONS(4189), - [anon_sym_PERCENT] = ACTIONS(4189), - [anon_sym_as_QMARK] = ACTIONS(4191), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_BANG_BANG] = ACTIONS(4191), - [anon_sym_suspend] = ACTIONS(4189), - [anon_sym_sealed] = ACTIONS(4189), - [anon_sym_annotation] = ACTIONS(4189), - [anon_sym_data] = ACTIONS(4189), - [anon_sym_inner] = ACTIONS(4189), - [anon_sym_value] = ACTIONS(4189), - [anon_sym_override] = ACTIONS(4189), - [anon_sym_lateinit] = ACTIONS(4189), - [anon_sym_public] = ACTIONS(4189), - [anon_sym_private] = ACTIONS(4189), - [anon_sym_internal] = ACTIONS(4189), - [anon_sym_protected] = ACTIONS(4189), - [anon_sym_tailrec] = ACTIONS(4189), - [anon_sym_operator] = ACTIONS(4189), - [anon_sym_infix] = ACTIONS(4189), - [anon_sym_inline] = ACTIONS(4189), - [anon_sym_external] = ACTIONS(4189), - [sym_property_modifier] = ACTIONS(4189), - [anon_sym_abstract] = ACTIONS(4189), - [anon_sym_final] = ACTIONS(4189), - [anon_sym_open] = ACTIONS(4189), - [anon_sym_vararg] = ACTIONS(4189), - [anon_sym_noinline] = ACTIONS(4189), - [anon_sym_crossinline] = ACTIONS(4189), - [anon_sym_expect] = ACTIONS(4189), - [anon_sym_actual] = ACTIONS(4189), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4191), - [sym_safe_nav] = ACTIONS(4191), + [3053] = { + [sym_import_list] = STATE(3053), + [sym_import_header] = STATE(8751), + [aux_sym_source_file_repeat2] = STATE(3053), + [aux_sym_import_list_repeat1] = STATE(8751), + [ts_builtin_sym_end] = ACTIONS(6607), + [sym__alpha_identifier] = ACTIONS(6609), + [anon_sym_AT] = ACTIONS(6607), + [anon_sym_LBRACK] = ACTIONS(6607), + [anon_sym_import] = ACTIONS(6611), + [anon_sym_typealias] = ACTIONS(6609), + [anon_sym_class] = ACTIONS(6609), + [anon_sym_interface] = ACTIONS(6609), + [anon_sym_enum] = ACTIONS(6609), + [anon_sym_LBRACE] = ACTIONS(6607), + [anon_sym_LPAREN] = ACTIONS(6607), + [anon_sym_val] = ACTIONS(6609), + [anon_sym_var] = ACTIONS(6609), + [anon_sym_object] = ACTIONS(6609), + [anon_sym_fun] = ACTIONS(6609), + [anon_sym_get] = ACTIONS(6609), + [anon_sym_set] = ACTIONS(6609), + [anon_sym_this] = ACTIONS(6609), + [anon_sym_super] = ACTIONS(6609), + [anon_sym_STAR] = ACTIONS(6607), + [sym_label] = ACTIONS(6609), + [anon_sym_for] = ACTIONS(6609), + [anon_sym_while] = ACTIONS(6609), + [anon_sym_do] = ACTIONS(6609), + [anon_sym_null] = ACTIONS(6609), + [anon_sym_if] = ACTIONS(6609), + [anon_sym_when] = ACTIONS(6609), + [anon_sym_try] = ACTIONS(6609), + [anon_sym_throw] = ACTIONS(6609), + [anon_sym_return] = ACTIONS(6609), + [anon_sym_continue] = ACTIONS(6609), + [anon_sym_break] = ACTIONS(6609), + [anon_sym_COLON_COLON] = ACTIONS(6607), + [anon_sym_PLUS] = ACTIONS(6609), + [anon_sym_DASH] = ACTIONS(6609), + [anon_sym_PLUS_PLUS] = ACTIONS(6607), + [anon_sym_DASH_DASH] = ACTIONS(6607), + [anon_sym_BANG] = ACTIONS(6607), + [anon_sym_suspend] = ACTIONS(6609), + [anon_sym_sealed] = ACTIONS(6609), + [anon_sym_annotation] = ACTIONS(6609), + [anon_sym_data] = ACTIONS(6609), + [anon_sym_inner] = ACTIONS(6609), + [anon_sym_value] = ACTIONS(6609), + [anon_sym_override] = ACTIONS(6609), + [anon_sym_lateinit] = ACTIONS(6609), + [anon_sym_public] = ACTIONS(6609), + [anon_sym_private] = ACTIONS(6609), + [anon_sym_internal] = ACTIONS(6609), + [anon_sym_protected] = ACTIONS(6609), + [anon_sym_tailrec] = ACTIONS(6609), + [anon_sym_operator] = ACTIONS(6609), + [anon_sym_infix] = ACTIONS(6609), + [anon_sym_inline] = ACTIONS(6609), + [anon_sym_external] = ACTIONS(6609), + [sym_property_modifier] = ACTIONS(6609), + [anon_sym_abstract] = ACTIONS(6609), + [anon_sym_final] = ACTIONS(6609), + [anon_sym_open] = ACTIONS(6609), + [anon_sym_vararg] = ACTIONS(6609), + [anon_sym_noinline] = ACTIONS(6609), + [anon_sym_crossinline] = ACTIONS(6609), + [anon_sym_expect] = ACTIONS(6609), + [anon_sym_actual] = ACTIONS(6609), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6607), + [anon_sym_continue_AT] = ACTIONS(6607), + [anon_sym_break_AT] = ACTIONS(6607), + [anon_sym_this_AT] = ACTIONS(6607), + [anon_sym_super_AT] = ACTIONS(6607), + [sym_real_literal] = ACTIONS(6607), + [sym_integer_literal] = ACTIONS(6609), + [sym_hex_literal] = ACTIONS(6607), + [sym_bin_literal] = ACTIONS(6607), + [anon_sym_true] = ACTIONS(6609), + [anon_sym_false] = ACTIONS(6609), + [anon_sym_SQUOTE] = ACTIONS(6607), + [sym__backtick_identifier] = ACTIONS(6607), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6607), + }, + [3054] = { + [sym_type_constraints] = STATE(3192), + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_RBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_DASH_GT] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, - [3018] = { - [sym__alpha_identifier] = ACTIONS(4449), - [anon_sym_AT] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [anon_sym_as] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(4449), - [anon_sym_fun] = ACTIONS(4449), - [anon_sym_LBRACE] = ACTIONS(4451), - [anon_sym_RBRACE] = ACTIONS(4451), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_COMMA] = ACTIONS(4451), - [anon_sym_LT] = ACTIONS(4449), - [anon_sym_GT] = ACTIONS(4449), - [anon_sym_where] = ACTIONS(4449), - [anon_sym_object] = ACTIONS(4449), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [anon_sym_get] = ACTIONS(4449), - [anon_sym_set] = ACTIONS(4449), - [anon_sym_this] = ACTIONS(4449), - [anon_sym_super] = ACTIONS(4449), - [anon_sym_STAR] = ACTIONS(4449), - [sym_label] = ACTIONS(4449), - [anon_sym_in] = ACTIONS(4449), - [anon_sym_DOT_DOT] = ACTIONS(4451), - [anon_sym_QMARK_COLON] = ACTIONS(4451), - [anon_sym_AMP_AMP] = ACTIONS(4451), - [anon_sym_PIPE_PIPE] = ACTIONS(4451), - [anon_sym_null] = ACTIONS(4449), - [anon_sym_if] = ACTIONS(4449), - [anon_sym_else] = ACTIONS(4449), - [anon_sym_when] = ACTIONS(4449), - [anon_sym_try] = ACTIONS(4449), - [anon_sym_catch] = ACTIONS(4449), - [anon_sym_finally] = ACTIONS(4449), - [anon_sym_throw] = ACTIONS(4449), - [anon_sym_return] = ACTIONS(4449), - [anon_sym_continue] = ACTIONS(4449), - [anon_sym_break] = ACTIONS(4449), - [anon_sym_COLON_COLON] = ACTIONS(4451), - [anon_sym_PLUS_EQ] = ACTIONS(4451), - [anon_sym_DASH_EQ] = ACTIONS(4451), - [anon_sym_STAR_EQ] = ACTIONS(4451), - [anon_sym_SLASH_EQ] = ACTIONS(4451), - [anon_sym_PERCENT_EQ] = ACTIONS(4451), - [anon_sym_BANG_EQ] = ACTIONS(4449), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4451), - [anon_sym_EQ_EQ] = ACTIONS(4449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4451), - [anon_sym_LT_EQ] = ACTIONS(4451), - [anon_sym_GT_EQ] = ACTIONS(4451), - [anon_sym_BANGin] = ACTIONS(4451), - [anon_sym_is] = ACTIONS(4449), - [anon_sym_BANGis] = ACTIONS(4451), - [anon_sym_PLUS] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_SLASH] = ACTIONS(4449), - [anon_sym_PERCENT] = ACTIONS(4449), - [anon_sym_as_QMARK] = ACTIONS(4451), - [anon_sym_PLUS_PLUS] = ACTIONS(4451), - [anon_sym_DASH_DASH] = ACTIONS(4451), - [anon_sym_BANG] = ACTIONS(4449), - [anon_sym_BANG_BANG] = ACTIONS(4451), - [anon_sym_data] = ACTIONS(4449), - [anon_sym_inner] = ACTIONS(4449), - [anon_sym_value] = ACTIONS(4449), - [anon_sym_expect] = ACTIONS(4449), - [anon_sym_actual] = ACTIONS(4449), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4451), - [anon_sym_continue_AT] = ACTIONS(4451), - [anon_sym_break_AT] = ACTIONS(4451), - [anon_sym_this_AT] = ACTIONS(4451), - [anon_sym_super_AT] = ACTIONS(4451), - [sym_real_literal] = ACTIONS(4451), - [sym_integer_literal] = ACTIONS(4449), - [sym_hex_literal] = ACTIONS(4451), - [sym_bin_literal] = ACTIONS(4451), - [anon_sym_true] = ACTIONS(4449), - [anon_sym_false] = ACTIONS(4449), - [anon_sym_SQUOTE] = ACTIONS(4451), - [sym__backtick_identifier] = ACTIONS(4451), - [sym__automatic_semicolon] = ACTIONS(4451), - [sym_safe_nav] = ACTIONS(4451), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4451), + [3055] = { + [sym__alpha_identifier] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4748), + [anon_sym_COLON] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4748), + [anon_sym_as] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4748), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4748), + [anon_sym_COMMA] = ACTIONS(4748), + [anon_sym_LT] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4746), + [anon_sym_where] = ACTIONS(4746), + [anon_sym_object] = ACTIONS(4746), + [anon_sym_fun] = ACTIONS(4746), + [anon_sym_DOT] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4748), + [anon_sym_get] = ACTIONS(4746), + [anon_sym_set] = ACTIONS(4746), + [anon_sym_this] = ACTIONS(4746), + [anon_sym_super] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(4746), + [anon_sym_in] = ACTIONS(4746), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_QMARK_COLON] = ACTIONS(4748), + [anon_sym_AMP_AMP] = ACTIONS(4748), + [anon_sym_PIPE_PIPE] = ACTIONS(4748), + [anon_sym_null] = ACTIONS(4746), + [anon_sym_if] = ACTIONS(4746), + [anon_sym_else] = ACTIONS(4746), + [anon_sym_when] = ACTIONS(4746), + [anon_sym_try] = ACTIONS(4746), + [anon_sym_throw] = ACTIONS(4746), + [anon_sym_return] = ACTIONS(4746), + [anon_sym_continue] = ACTIONS(4746), + [anon_sym_break] = ACTIONS(4746), + [anon_sym_COLON_COLON] = ACTIONS(4748), + [anon_sym_PLUS_EQ] = ACTIONS(4748), + [anon_sym_DASH_EQ] = ACTIONS(4748), + [anon_sym_STAR_EQ] = ACTIONS(4748), + [anon_sym_SLASH_EQ] = ACTIONS(4748), + [anon_sym_PERCENT_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4748), + [anon_sym_BANGin] = ACTIONS(4748), + [anon_sym_is] = ACTIONS(4746), + [anon_sym_BANGis] = ACTIONS(4748), + [anon_sym_PLUS] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_SLASH] = ACTIONS(4746), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(4748), + [anon_sym_PLUS_PLUS] = ACTIONS(4748), + [anon_sym_DASH_DASH] = ACTIONS(4748), + [anon_sym_BANG] = ACTIONS(4746), + [anon_sym_BANG_BANG] = ACTIONS(4748), + [anon_sym_data] = ACTIONS(4746), + [anon_sym_inner] = ACTIONS(4746), + [anon_sym_value] = ACTIONS(4746), + [anon_sym_expect] = ACTIONS(4746), + [anon_sym_actual] = ACTIONS(4746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4748), + [anon_sym_continue_AT] = ACTIONS(4748), + [anon_sym_break_AT] = ACTIONS(4748), + [anon_sym_this_AT] = ACTIONS(4748), + [anon_sym_super_AT] = ACTIONS(4748), + [sym_real_literal] = ACTIONS(4748), + [sym_integer_literal] = ACTIONS(4746), + [sym_hex_literal] = ACTIONS(4748), + [sym_bin_literal] = ACTIONS(4748), + [anon_sym_true] = ACTIONS(4746), + [anon_sym_false] = ACTIONS(4746), + [anon_sym_SQUOTE] = ACTIONS(4748), + [sym__backtick_identifier] = ACTIONS(4748), + [sym__automatic_semicolon] = ACTIONS(4748), + [sym_safe_nav] = ACTIONS(4748), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4748), }, - [3019] = { - [sym_class_body] = STATE(3345), - [sym_type_constraints] = STATE(3121), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6667), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [3056] = { + [aux_sym_type_constraints_repeat1] = STATE(3056), + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_object] = ACTIONS(4430), + [anon_sym_fun] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_this] = ACTIONS(4430), + [anon_sym_super] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [sym_label] = ACTIONS(4430), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_null] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_when] = ACTIONS(4430), + [anon_sym_try] = ACTIONS(4430), + [anon_sym_throw] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4432), + [anon_sym_continue_AT] = ACTIONS(4432), + [anon_sym_break_AT] = ACTIONS(4432), + [anon_sym_this_AT] = ACTIONS(4432), + [anon_sym_super_AT] = ACTIONS(4432), + [sym_real_literal] = ACTIONS(4432), + [sym_integer_literal] = ACTIONS(4430), + [sym_hex_literal] = ACTIONS(4432), + [sym_bin_literal] = ACTIONS(4432), + [anon_sym_true] = ACTIONS(4430), + [anon_sym_false] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4432), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4432), }, - [3020] = { - [sym_getter] = STATE(5227), - [sym_setter] = STATE(5227), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(3438), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3438), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [3057] = { + [sym__alpha_identifier] = ACTIONS(4728), + [anon_sym_AT] = ACTIONS(4730), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_as] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4730), + [anon_sym_RBRACE] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4730), + [anon_sym_COMMA] = ACTIONS(4730), + [anon_sym_by] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_where] = ACTIONS(4728), + [anon_sym_object] = ACTIONS(4728), + [anon_sym_fun] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_get] = ACTIONS(4728), + [anon_sym_set] = ACTIONS(4728), + [anon_sym_this] = ACTIONS(4728), + [anon_sym_super] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4728), + [anon_sym_DOT_DOT] = ACTIONS(4730), + [anon_sym_QMARK_COLON] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4728), + [anon_sym_if] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4728), + [anon_sym_when] = ACTIONS(4728), + [anon_sym_try] = ACTIONS(4728), + [anon_sym_throw] = ACTIONS(4728), + [anon_sym_return] = ACTIONS(4728), + [anon_sym_continue] = ACTIONS(4728), + [anon_sym_break] = ACTIONS(4728), + [anon_sym_COLON_COLON] = ACTIONS(4730), + [anon_sym_PLUS_EQ] = ACTIONS(4730), + [anon_sym_DASH_EQ] = ACTIONS(4730), + [anon_sym_STAR_EQ] = ACTIONS(4730), + [anon_sym_SLASH_EQ] = ACTIONS(4730), + [anon_sym_PERCENT_EQ] = ACTIONS(4730), + [anon_sym_BANG_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4730), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4730), + [anon_sym_LT_EQ] = ACTIONS(4730), + [anon_sym_GT_EQ] = ACTIONS(4730), + [anon_sym_BANGin] = ACTIONS(4730), + [anon_sym_is] = ACTIONS(4728), + [anon_sym_BANGis] = ACTIONS(4730), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4728), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4730), + [anon_sym_PLUS_PLUS] = ACTIONS(4730), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_BANG_BANG] = ACTIONS(4730), + [anon_sym_data] = ACTIONS(4728), + [anon_sym_inner] = ACTIONS(4728), + [anon_sym_value] = ACTIONS(4728), + [anon_sym_expect] = ACTIONS(4728), + [anon_sym_actual] = ACTIONS(4728), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4730), + [anon_sym_continue_AT] = ACTIONS(4730), + [anon_sym_break_AT] = ACTIONS(4730), + [anon_sym_this_AT] = ACTIONS(4730), + [anon_sym_super_AT] = ACTIONS(4730), + [sym_real_literal] = ACTIONS(4730), + [sym_integer_literal] = ACTIONS(4728), + [sym_hex_literal] = ACTIONS(4730), + [sym_bin_literal] = ACTIONS(4730), + [anon_sym_true] = ACTIONS(4728), + [anon_sym_false] = ACTIONS(4728), + [anon_sym_SQUOTE] = ACTIONS(4730), + [sym__backtick_identifier] = ACTIONS(4730), + [sym__automatic_semicolon] = ACTIONS(4730), + [sym_safe_nav] = ACTIONS(4730), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4730), + }, + [3058] = { + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_as] = ACTIONS(4762), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4765), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_by] = ACTIONS(4762), + [anon_sym_LT] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_object] = ACTIONS(4762), + [anon_sym_fun] = ACTIONS(4762), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_this] = ACTIONS(4762), + [anon_sym_super] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [sym_label] = ACTIONS(4762), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_DOT_DOT] = ACTIONS(4765), + [anon_sym_QMARK_COLON] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_null] = ACTIONS(4762), + [anon_sym_if] = ACTIONS(4762), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_when] = ACTIONS(4762), + [anon_sym_try] = ACTIONS(4762), + [anon_sym_throw] = ACTIONS(4762), + [anon_sym_return] = ACTIONS(4762), + [anon_sym_continue] = ACTIONS(4762), + [anon_sym_break] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4765), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_BANGin] = ACTIONS(4765), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4765), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_SLASH] = ACTIONS(4762), + [anon_sym_PERCENT] = ACTIONS(4762), + [anon_sym_as_QMARK] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_BANG] = ACTIONS(4762), + [anon_sym_BANG_BANG] = ACTIONS(4765), + [anon_sym_data] = ACTIONS(4762), + [anon_sym_inner] = ACTIONS(4762), + [anon_sym_value] = ACTIONS(4762), + [anon_sym_expect] = ACTIONS(4762), + [anon_sym_actual] = ACTIONS(4762), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4765), + [anon_sym_continue_AT] = ACTIONS(4765), + [anon_sym_break_AT] = ACTIONS(4765), + [anon_sym_this_AT] = ACTIONS(4765), + [anon_sym_super_AT] = ACTIONS(4765), + [sym_real_literal] = ACTIONS(4765), + [sym_integer_literal] = ACTIONS(4762), + [sym_hex_literal] = ACTIONS(4765), + [sym_bin_literal] = ACTIONS(4765), + [anon_sym_true] = ACTIONS(4762), + [anon_sym_false] = ACTIONS(4762), + [anon_sym_SQUOTE] = ACTIONS(4765), + [sym__backtick_identifier] = ACTIONS(4765), + [sym__automatic_semicolon] = ACTIONS(4765), + [sym_safe_nav] = ACTIONS(4765), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4765), + }, + [3059] = { + [sym_function_body] = STATE(3252), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(6617), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), + }, + [3060] = { + [sym__alpha_identifier] = ACTIONS(5199), + [anon_sym_AT] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(5201), + [anon_sym_as] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_LBRACE] = ACTIONS(5201), + [anon_sym_RBRACE] = ACTIONS(5201), + [anon_sym_LPAREN] = ACTIONS(5201), + [anon_sym_COMMA] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5199), + [anon_sym_GT] = ACTIONS(5199), + [anon_sym_where] = ACTIONS(5199), + [anon_sym_object] = ACTIONS(5199), + [anon_sym_fun] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5199), + [anon_sym_SEMI] = ACTIONS(5201), + [anon_sym_get] = ACTIONS(5199), + [anon_sym_set] = ACTIONS(5199), + [anon_sym_this] = ACTIONS(5199), + [anon_sym_super] = ACTIONS(5199), + [anon_sym_STAR] = ACTIONS(5199), + [sym_label] = ACTIONS(5199), + [anon_sym_in] = ACTIONS(5199), + [anon_sym_DOT_DOT] = ACTIONS(5201), + [anon_sym_QMARK_COLON] = ACTIONS(5201), + [anon_sym_AMP_AMP] = ACTIONS(5201), + [anon_sym_PIPE_PIPE] = ACTIONS(5201), + [anon_sym_null] = ACTIONS(5199), + [anon_sym_if] = ACTIONS(5199), + [anon_sym_else] = ACTIONS(5199), + [anon_sym_when] = ACTIONS(5199), + [anon_sym_try] = ACTIONS(5199), + [anon_sym_throw] = ACTIONS(5199), + [anon_sym_return] = ACTIONS(5199), + [anon_sym_continue] = ACTIONS(5199), + [anon_sym_break] = ACTIONS(5199), + [anon_sym_COLON_COLON] = ACTIONS(5201), + [anon_sym_PLUS_EQ] = ACTIONS(5201), + [anon_sym_DASH_EQ] = ACTIONS(5201), + [anon_sym_STAR_EQ] = ACTIONS(5201), + [anon_sym_SLASH_EQ] = ACTIONS(5201), + [anon_sym_PERCENT_EQ] = ACTIONS(5201), + [anon_sym_BANG_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5201), + [anon_sym_EQ_EQ] = ACTIONS(5199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5201), + [anon_sym_LT_EQ] = ACTIONS(5201), + [anon_sym_GT_EQ] = ACTIONS(5201), + [anon_sym_BANGin] = ACTIONS(5201), + [anon_sym_is] = ACTIONS(5199), + [anon_sym_BANGis] = ACTIONS(5201), + [anon_sym_PLUS] = ACTIONS(5199), + [anon_sym_DASH] = ACTIONS(5199), + [anon_sym_SLASH] = ACTIONS(5199), + [anon_sym_PERCENT] = ACTIONS(5199), + [anon_sym_as_QMARK] = ACTIONS(5201), + [anon_sym_PLUS_PLUS] = ACTIONS(5201), + [anon_sym_DASH_DASH] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5199), + [anon_sym_BANG_BANG] = ACTIONS(5201), + [anon_sym_data] = ACTIONS(5199), + [anon_sym_inner] = ACTIONS(5199), + [anon_sym_value] = ACTIONS(5199), + [anon_sym_expect] = ACTIONS(5199), + [anon_sym_actual] = ACTIONS(5199), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5201), + [anon_sym_continue_AT] = ACTIONS(5201), + [anon_sym_break_AT] = ACTIONS(5201), + [anon_sym_this_AT] = ACTIONS(5201), + [anon_sym_super_AT] = ACTIONS(5201), + [sym_real_literal] = ACTIONS(5201), + [sym_integer_literal] = ACTIONS(5199), + [sym_hex_literal] = ACTIONS(5201), + [sym_bin_literal] = ACTIONS(5201), + [anon_sym_true] = ACTIONS(5199), + [anon_sym_false] = ACTIONS(5199), + [anon_sym_SQUOTE] = ACTIONS(5201), + [sym__backtick_identifier] = ACTIONS(5201), + [sym__automatic_semicolon] = ACTIONS(5201), + [sym_safe_nav] = ACTIONS(5201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5201), + }, + [3061] = { + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(4218), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [3062] = { + [sym__alpha_identifier] = ACTIONS(4934), + [anon_sym_AT] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_RBRACE] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_where] = ACTIONS(4934), + [anon_sym_object] = ACTIONS(4934), + [anon_sym_fun] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_get] = ACTIONS(4934), + [anon_sym_set] = ACTIONS(4934), + [anon_sym_this] = ACTIONS(4934), + [anon_sym_super] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4934), + [sym_label] = ACTIONS(4934), + [anon_sym_in] = ACTIONS(4934), + [anon_sym_DOT_DOT] = ACTIONS(4936), + [anon_sym_QMARK_COLON] = ACTIONS(4936), + [anon_sym_AMP_AMP] = ACTIONS(4936), + [anon_sym_PIPE_PIPE] = ACTIONS(4936), + [anon_sym_null] = ACTIONS(4934), + [anon_sym_if] = ACTIONS(4934), + [anon_sym_else] = ACTIONS(4934), + [anon_sym_when] = ACTIONS(4934), + [anon_sym_try] = ACTIONS(4934), + [anon_sym_throw] = ACTIONS(4934), + [anon_sym_return] = ACTIONS(4934), + [anon_sym_continue] = ACTIONS(4934), + [anon_sym_break] = ACTIONS(4934), + [anon_sym_COLON_COLON] = ACTIONS(4936), + [anon_sym_PLUS_EQ] = ACTIONS(4936), + [anon_sym_DASH_EQ] = ACTIONS(4936), + [anon_sym_STAR_EQ] = ACTIONS(4936), + [anon_sym_SLASH_EQ] = ACTIONS(4936), + [anon_sym_PERCENT_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ] = ACTIONS(4934), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ] = ACTIONS(4934), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4936), + [anon_sym_LT_EQ] = ACTIONS(4936), + [anon_sym_GT_EQ] = ACTIONS(4936), + [anon_sym_BANGin] = ACTIONS(4936), + [anon_sym_is] = ACTIONS(4934), + [anon_sym_BANGis] = ACTIONS(4936), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_as_QMARK] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4934), + [anon_sym_BANG_BANG] = ACTIONS(4936), + [anon_sym_data] = ACTIONS(4934), + [anon_sym_inner] = ACTIONS(4934), + [anon_sym_value] = ACTIONS(4934), + [anon_sym_expect] = ACTIONS(4934), + [anon_sym_actual] = ACTIONS(4934), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), + [anon_sym_return_AT] = ACTIONS(4936), + [anon_sym_continue_AT] = ACTIONS(4936), + [anon_sym_break_AT] = ACTIONS(4936), + [anon_sym_this_AT] = ACTIONS(4936), + [anon_sym_super_AT] = ACTIONS(4936), + [sym_real_literal] = ACTIONS(4936), + [sym_integer_literal] = ACTIONS(4934), + [sym_hex_literal] = ACTIONS(4936), + [sym_bin_literal] = ACTIONS(4936), + [anon_sym_true] = ACTIONS(4934), + [anon_sym_false] = ACTIONS(4934), + [anon_sym_SQUOTE] = ACTIONS(4936), + [sym__backtick_identifier] = ACTIONS(4936), + [sym__automatic_semicolon] = ACTIONS(4936), + [sym_safe_nav] = ACTIONS(4936), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4936), }, - [3021] = { - [sym_getter] = STATE(5259), - [sym_setter] = STATE(5259), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(1802), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [3063] = { + [sym__alpha_identifier] = ACTIONS(4938), + [anon_sym_AT] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4940), + [anon_sym_as] = ACTIONS(4938), + [anon_sym_EQ] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_RBRACE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4938), + [anon_sym_where] = ACTIONS(4938), + [anon_sym_object] = ACTIONS(4938), + [anon_sym_fun] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_get] = ACTIONS(4938), + [anon_sym_set] = ACTIONS(4938), + [anon_sym_this] = ACTIONS(4938), + [anon_sym_super] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4938), + [sym_label] = ACTIONS(4938), + [anon_sym_in] = ACTIONS(4938), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_QMARK_COLON] = ACTIONS(4940), + [anon_sym_AMP_AMP] = ACTIONS(4940), + [anon_sym_PIPE_PIPE] = ACTIONS(4940), + [anon_sym_null] = ACTIONS(4938), + [anon_sym_if] = ACTIONS(4938), + [anon_sym_else] = ACTIONS(4938), + [anon_sym_when] = ACTIONS(4938), + [anon_sym_try] = ACTIONS(4938), + [anon_sym_throw] = ACTIONS(4938), + [anon_sym_return] = ACTIONS(4938), + [anon_sym_continue] = ACTIONS(4938), + [anon_sym_break] = ACTIONS(4938), + [anon_sym_COLON_COLON] = ACTIONS(4940), + [anon_sym_PLUS_EQ] = ACTIONS(4940), + [anon_sym_DASH_EQ] = ACTIONS(4940), + [anon_sym_STAR_EQ] = ACTIONS(4940), + [anon_sym_SLASH_EQ] = ACTIONS(4940), + [anon_sym_PERCENT_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4940), + [anon_sym_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4940), + [anon_sym_GT_EQ] = ACTIONS(4940), + [anon_sym_BANGin] = ACTIONS(4940), + [anon_sym_is] = ACTIONS(4938), + [anon_sym_BANGis] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4938), + [anon_sym_PERCENT] = ACTIONS(4938), + [anon_sym_as_QMARK] = ACTIONS(4940), + [anon_sym_PLUS_PLUS] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4938), + [anon_sym_BANG_BANG] = ACTIONS(4940), + [anon_sym_data] = ACTIONS(4938), + [anon_sym_inner] = ACTIONS(4938), + [anon_sym_value] = ACTIONS(4938), + [anon_sym_expect] = ACTIONS(4938), + [anon_sym_actual] = ACTIONS(4938), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4940), + [anon_sym_continue_AT] = ACTIONS(4940), + [anon_sym_break_AT] = ACTIONS(4940), + [anon_sym_this_AT] = ACTIONS(4940), + [anon_sym_super_AT] = ACTIONS(4940), + [sym_real_literal] = ACTIONS(4940), + [sym_integer_literal] = ACTIONS(4938), + [sym_hex_literal] = ACTIONS(4940), + [sym_bin_literal] = ACTIONS(4940), + [anon_sym_true] = ACTIONS(4938), + [anon_sym_false] = ACTIONS(4938), + [anon_sym_SQUOTE] = ACTIONS(4940), + [sym__backtick_identifier] = ACTIONS(4940), + [sym__automatic_semicolon] = ACTIONS(4940), + [sym_safe_nav] = ACTIONS(4940), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4940), + }, + [3064] = { + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_object] = ACTIONS(4237), + [anon_sym_fun] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_this] = ACTIONS(4237), + [anon_sym_super] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6619), + [sym__quest] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4239), + [sym_label] = ACTIONS(4237), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_null] = ACTIONS(4237), + [anon_sym_if] = ACTIONS(4237), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_when] = ACTIONS(4237), + [anon_sym_try] = ACTIONS(4237), + [anon_sym_throw] = ACTIONS(4237), + [anon_sym_return] = ACTIONS(4237), + [anon_sym_continue] = ACTIONS(4237), + [anon_sym_break] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), + [anon_sym_return_AT] = ACTIONS(4239), + [anon_sym_continue_AT] = ACTIONS(4239), + [anon_sym_break_AT] = ACTIONS(4239), + [anon_sym_this_AT] = ACTIONS(4239), + [anon_sym_super_AT] = ACTIONS(4239), + [sym_real_literal] = ACTIONS(4239), + [sym_integer_literal] = ACTIONS(4237), + [sym_hex_literal] = ACTIONS(4239), + [sym_bin_literal] = ACTIONS(4239), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4239), + [sym__backtick_identifier] = ACTIONS(4239), + [sym__automatic_semicolon] = ACTIONS(4239), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4239), }, - [3022] = { - [sym_type_arguments] = STATE(3056), - [sym__alpha_identifier] = ACTIONS(4177), - [anon_sym_AT] = ACTIONS(4179), - [anon_sym_LBRACK] = ACTIONS(4179), - [anon_sym_RBRACK] = ACTIONS(4179), - [anon_sym_as] = ACTIONS(4177), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4179), - [anon_sym_RBRACE] = ACTIONS(4179), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_COMMA] = ACTIONS(4179), - [anon_sym_RPAREN] = ACTIONS(4179), - [anon_sym_by] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(6669), - [anon_sym_GT] = ACTIONS(4177), - [anon_sym_where] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4177), - [anon_sym_SEMI] = ACTIONS(4179), - [anon_sym_get] = ACTIONS(4177), - [anon_sym_set] = ACTIONS(4177), - [anon_sym_AMP] = ACTIONS(4177), - [sym__quest] = ACTIONS(4177), - [anon_sym_STAR] = ACTIONS(4177), - [anon_sym_DASH_GT] = ACTIONS(4179), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4177), - [anon_sym_while] = ACTIONS(4177), - [anon_sym_DOT_DOT] = ACTIONS(4179), - [anon_sym_QMARK_COLON] = ACTIONS(4179), - [anon_sym_AMP_AMP] = ACTIONS(4179), - [anon_sym_PIPE_PIPE] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4177), - [anon_sym_COLON_COLON] = ACTIONS(4179), - [anon_sym_PLUS_EQ] = ACTIONS(4179), - [anon_sym_DASH_EQ] = ACTIONS(4179), - [anon_sym_STAR_EQ] = ACTIONS(4179), - [anon_sym_SLASH_EQ] = ACTIONS(4179), - [anon_sym_PERCENT_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), - [anon_sym_LT_EQ] = ACTIONS(4179), - [anon_sym_GT_EQ] = ACTIONS(4179), - [anon_sym_BANGin] = ACTIONS(4179), - [anon_sym_is] = ACTIONS(4177), - [anon_sym_BANGis] = ACTIONS(4179), - [anon_sym_PLUS] = ACTIONS(4177), - [anon_sym_DASH] = ACTIONS(4177), - [anon_sym_SLASH] = ACTIONS(4177), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4179), - [anon_sym_PLUS_PLUS] = ACTIONS(4179), - [anon_sym_DASH_DASH] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4179), - [anon_sym_suspend] = ACTIONS(4177), - [anon_sym_sealed] = ACTIONS(4177), - [anon_sym_annotation] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4177), - [anon_sym_inner] = ACTIONS(4177), - [anon_sym_value] = ACTIONS(4177), - [anon_sym_override] = ACTIONS(4177), - [anon_sym_lateinit] = ACTIONS(4177), - [anon_sym_public] = ACTIONS(4177), - [anon_sym_private] = ACTIONS(4177), - [anon_sym_internal] = ACTIONS(4177), - [anon_sym_protected] = ACTIONS(4177), - [anon_sym_tailrec] = ACTIONS(4177), - [anon_sym_operator] = ACTIONS(4177), - [anon_sym_infix] = ACTIONS(4177), - [anon_sym_inline] = ACTIONS(4177), - [anon_sym_external] = ACTIONS(4177), - [sym_property_modifier] = ACTIONS(4177), - [anon_sym_abstract] = ACTIONS(4177), - [anon_sym_final] = ACTIONS(4177), - [anon_sym_open] = ACTIONS(4177), - [anon_sym_vararg] = ACTIONS(4177), - [anon_sym_noinline] = ACTIONS(4177), - [anon_sym_crossinline] = ACTIONS(4177), - [anon_sym_expect] = ACTIONS(4177), - [anon_sym_actual] = ACTIONS(4177), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4179), - [sym_safe_nav] = ACTIONS(4179), - [sym_multiline_comment] = ACTIONS(3), + [3065] = { + [sym__alpha_identifier] = ACTIONS(4942), + [anon_sym_AT] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4944), + [anon_sym_as] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_RBRACE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4942), + [anon_sym_where] = ACTIONS(4942), + [anon_sym_object] = ACTIONS(4942), + [anon_sym_fun] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_get] = ACTIONS(4942), + [anon_sym_set] = ACTIONS(4942), + [anon_sym_this] = ACTIONS(4942), + [anon_sym_super] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4942), + [sym_label] = ACTIONS(4942), + [anon_sym_in] = ACTIONS(4942), + [anon_sym_DOT_DOT] = ACTIONS(4944), + [anon_sym_QMARK_COLON] = ACTIONS(4944), + [anon_sym_AMP_AMP] = ACTIONS(4944), + [anon_sym_PIPE_PIPE] = ACTIONS(4944), + [anon_sym_null] = ACTIONS(4942), + [anon_sym_if] = ACTIONS(4942), + [anon_sym_else] = ACTIONS(4942), + [anon_sym_when] = ACTIONS(4942), + [anon_sym_try] = ACTIONS(4942), + [anon_sym_throw] = ACTIONS(4942), + [anon_sym_return] = ACTIONS(4942), + [anon_sym_continue] = ACTIONS(4942), + [anon_sym_break] = ACTIONS(4942), + [anon_sym_COLON_COLON] = ACTIONS(4944), + [anon_sym_PLUS_EQ] = ACTIONS(4944), + [anon_sym_DASH_EQ] = ACTIONS(4944), + [anon_sym_STAR_EQ] = ACTIONS(4944), + [anon_sym_SLASH_EQ] = ACTIONS(4944), + [anon_sym_PERCENT_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4944), + [anon_sym_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4944), + [anon_sym_LT_EQ] = ACTIONS(4944), + [anon_sym_GT_EQ] = ACTIONS(4944), + [anon_sym_BANGin] = ACTIONS(4944), + [anon_sym_is] = ACTIONS(4942), + [anon_sym_BANGis] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4942), + [anon_sym_PERCENT] = ACTIONS(4942), + [anon_sym_as_QMARK] = ACTIONS(4944), + [anon_sym_PLUS_PLUS] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4942), + [anon_sym_BANG_BANG] = ACTIONS(4944), + [anon_sym_data] = ACTIONS(4942), + [anon_sym_inner] = ACTIONS(4942), + [anon_sym_value] = ACTIONS(4942), + [anon_sym_expect] = ACTIONS(4942), + [anon_sym_actual] = ACTIONS(4942), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4944), + [anon_sym_continue_AT] = ACTIONS(4944), + [anon_sym_break_AT] = ACTIONS(4944), + [anon_sym_this_AT] = ACTIONS(4944), + [anon_sym_super_AT] = ACTIONS(4944), + [sym_real_literal] = ACTIONS(4944), + [sym_integer_literal] = ACTIONS(4942), + [sym_hex_literal] = ACTIONS(4944), + [sym_bin_literal] = ACTIONS(4944), + [anon_sym_true] = ACTIONS(4942), + [anon_sym_false] = ACTIONS(4942), + [anon_sym_SQUOTE] = ACTIONS(4944), + [sym__backtick_identifier] = ACTIONS(4944), + [sym__automatic_semicolon] = ACTIONS(4944), + [sym_safe_nav] = ACTIONS(4944), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4944), }, - [3023] = { - [sym_type_constraints] = STATE(3078), - [sym_enum_class_body] = STATE(3304), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [3066] = { + [aux_sym_nullable_type_repeat1] = STATE(3154), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_EQ] = ACTIONS(4305), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_by] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_object] = ACTIONS(4303), + [anon_sym_fun] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_this] = ACTIONS(4303), + [anon_sym_super] = ACTIONS(4303), + [sym__quest] = ACTIONS(6621), + [anon_sym_STAR] = ACTIONS(4305), + [sym_label] = ACTIONS(4303), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_null] = ACTIONS(4303), + [anon_sym_if] = ACTIONS(4303), + [anon_sym_else] = ACTIONS(4303), + [anon_sym_when] = ACTIONS(4303), + [anon_sym_try] = ACTIONS(4303), + [anon_sym_throw] = ACTIONS(4303), + [anon_sym_return] = ACTIONS(4303), + [anon_sym_continue] = ACTIONS(4303), + [anon_sym_break] = ACTIONS(4303), + [anon_sym_COLON_COLON] = ACTIONS(4305), + [anon_sym_BANGin] = ACTIONS(4305), + [anon_sym_is] = ACTIONS(4303), + [anon_sym_BANGis] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_PLUS_PLUS] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_suspend] = ACTIONS(4303), + [anon_sym_sealed] = ACTIONS(4303), + [anon_sym_annotation] = ACTIONS(4303), + [anon_sym_data] = ACTIONS(4303), + [anon_sym_inner] = ACTIONS(4303), + [anon_sym_value] = ACTIONS(4303), + [anon_sym_override] = ACTIONS(4303), + [anon_sym_lateinit] = ACTIONS(4303), + [anon_sym_public] = ACTIONS(4303), + [anon_sym_private] = ACTIONS(4303), + [anon_sym_internal] = ACTIONS(4303), + [anon_sym_protected] = ACTIONS(4303), + [anon_sym_tailrec] = ACTIONS(4303), + [anon_sym_operator] = ACTIONS(4303), + [anon_sym_infix] = ACTIONS(4303), + [anon_sym_inline] = ACTIONS(4303), + [anon_sym_external] = ACTIONS(4303), + [sym_property_modifier] = ACTIONS(4303), + [anon_sym_abstract] = ACTIONS(4303), + [anon_sym_final] = ACTIONS(4303), + [anon_sym_open] = ACTIONS(4303), + [anon_sym_vararg] = ACTIONS(4303), + [anon_sym_noinline] = ACTIONS(4303), + [anon_sym_crossinline] = ACTIONS(4303), + [anon_sym_expect] = ACTIONS(4303), + [anon_sym_actual] = ACTIONS(4303), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4305), + [anon_sym_continue_AT] = ACTIONS(4305), + [anon_sym_break_AT] = ACTIONS(4305), + [anon_sym_this_AT] = ACTIONS(4305), + [anon_sym_super_AT] = ACTIONS(4305), + [sym_real_literal] = ACTIONS(4305), + [sym_integer_literal] = ACTIONS(4303), + [sym_hex_literal] = ACTIONS(4305), + [sym_bin_literal] = ACTIONS(4305), + [anon_sym_true] = ACTIONS(4303), + [anon_sym_false] = ACTIONS(4303), + [anon_sym_SQUOTE] = ACTIONS(4305), + [sym__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4305), }, - [3024] = { - [aux_sym_user_type_repeat1] = STATE(3017), - [sym__alpha_identifier] = ACTIONS(4202), - [anon_sym_AT] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_RBRACK] = ACTIONS(4204), - [anon_sym_as] = ACTIONS(4202), - [anon_sym_EQ] = ACTIONS(4202), - [anon_sym_LBRACE] = ACTIONS(4204), - [anon_sym_RBRACE] = ACTIONS(4204), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym_COMMA] = ACTIONS(4204), - [anon_sym_RPAREN] = ACTIONS(4204), - [anon_sym_by] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4202), - [anon_sym_GT] = ACTIONS(4202), - [anon_sym_where] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(6671), - [anon_sym_SEMI] = ACTIONS(4204), - [anon_sym_get] = ACTIONS(4202), - [anon_sym_set] = ACTIONS(4202), - [anon_sym_AMP] = ACTIONS(4202), - [sym__quest] = ACTIONS(4202), - [anon_sym_STAR] = ACTIONS(4202), - [anon_sym_DASH_GT] = ACTIONS(4204), - [sym_label] = ACTIONS(4204), - [anon_sym_in] = ACTIONS(4202), - [anon_sym_while] = ACTIONS(4202), - [anon_sym_DOT_DOT] = ACTIONS(4204), - [anon_sym_QMARK_COLON] = ACTIONS(4204), - [anon_sym_AMP_AMP] = ACTIONS(4204), - [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_else] = ACTIONS(4202), - [anon_sym_COLON_COLON] = ACTIONS(4204), - [anon_sym_PLUS_EQ] = ACTIONS(4204), - [anon_sym_DASH_EQ] = ACTIONS(4204), - [anon_sym_STAR_EQ] = ACTIONS(4204), - [anon_sym_SLASH_EQ] = ACTIONS(4204), - [anon_sym_PERCENT_EQ] = ACTIONS(4204), - [anon_sym_BANG_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), - [anon_sym_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), - [anon_sym_LT_EQ] = ACTIONS(4204), - [anon_sym_GT_EQ] = ACTIONS(4204), - [anon_sym_BANGin] = ACTIONS(4204), - [anon_sym_is] = ACTIONS(4202), - [anon_sym_BANGis] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4202), - [anon_sym_DASH] = ACTIONS(4202), - [anon_sym_SLASH] = ACTIONS(4202), - [anon_sym_PERCENT] = ACTIONS(4202), - [anon_sym_as_QMARK] = ACTIONS(4204), - [anon_sym_PLUS_PLUS] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4204), - [anon_sym_BANG_BANG] = ACTIONS(4204), - [anon_sym_suspend] = ACTIONS(4202), - [anon_sym_sealed] = ACTIONS(4202), - [anon_sym_annotation] = ACTIONS(4202), - [anon_sym_data] = ACTIONS(4202), - [anon_sym_inner] = ACTIONS(4202), - [anon_sym_value] = ACTIONS(4202), - [anon_sym_override] = ACTIONS(4202), - [anon_sym_lateinit] = ACTIONS(4202), - [anon_sym_public] = ACTIONS(4202), - [anon_sym_private] = ACTIONS(4202), - [anon_sym_internal] = ACTIONS(4202), - [anon_sym_protected] = ACTIONS(4202), - [anon_sym_tailrec] = ACTIONS(4202), - [anon_sym_operator] = ACTIONS(4202), - [anon_sym_infix] = ACTIONS(4202), - [anon_sym_inline] = ACTIONS(4202), - [anon_sym_external] = ACTIONS(4202), - [sym_property_modifier] = ACTIONS(4202), - [anon_sym_abstract] = ACTIONS(4202), - [anon_sym_final] = ACTIONS(4202), - [anon_sym_open] = ACTIONS(4202), - [anon_sym_vararg] = ACTIONS(4202), - [anon_sym_noinline] = ACTIONS(4202), - [anon_sym_crossinline] = ACTIONS(4202), - [anon_sym_expect] = ACTIONS(4202), - [anon_sym_actual] = ACTIONS(4202), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4204), - [sym_safe_nav] = ACTIONS(4204), - [sym_multiline_comment] = ACTIONS(3), + [3067] = { + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, - [3025] = { - [sym_getter] = STATE(5345), - [sym_setter] = STATE(5345), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(6510), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [3068] = { + [sym_type_constraints] = STATE(3356), + [sym_enum_class_body] = STATE(3478), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_while] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), }, - [3026] = { - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [3069] = { + [sym_value_arguments] = STATE(3531), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_RBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(6623), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [anon_sym_DASH_GT] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_while] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), [sym_multiline_comment] = ACTIONS(3), }, - [3027] = { - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [3070] = { + [sym_class_body] = STATE(3543), + [sym_type_constraints] = STATE(3346), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_RBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [anon_sym_DASH_GT] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), }, - [3028] = { - [sym_class_body] = STATE(3345), - [sym_type_constraints] = STATE(3121), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [3071] = { + [sym__alpha_identifier] = ACTIONS(4970), + [anon_sym_AT] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4970), + [anon_sym_EQ] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_RBRACE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_where] = ACTIONS(4970), + [anon_sym_object] = ACTIONS(4970), + [anon_sym_fun] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_get] = ACTIONS(4970), + [anon_sym_set] = ACTIONS(4970), + [anon_sym_this] = ACTIONS(4970), + [anon_sym_super] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [sym_label] = ACTIONS(4970), + [anon_sym_in] = ACTIONS(4970), + [anon_sym_DOT_DOT] = ACTIONS(4972), + [anon_sym_QMARK_COLON] = ACTIONS(4972), + [anon_sym_AMP_AMP] = ACTIONS(4972), + [anon_sym_PIPE_PIPE] = ACTIONS(4972), + [anon_sym_null] = ACTIONS(4970), + [anon_sym_if] = ACTIONS(4970), + [anon_sym_else] = ACTIONS(4970), + [anon_sym_when] = ACTIONS(4970), + [anon_sym_try] = ACTIONS(4970), + [anon_sym_throw] = ACTIONS(4970), + [anon_sym_return] = ACTIONS(4970), + [anon_sym_continue] = ACTIONS(4970), + [anon_sym_break] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_PLUS_EQ] = ACTIONS(4972), + [anon_sym_DASH_EQ] = ACTIONS(4972), + [anon_sym_STAR_EQ] = ACTIONS(4972), + [anon_sym_SLASH_EQ] = ACTIONS(4972), + [anon_sym_PERCENT_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4972), + [anon_sym_GT_EQ] = ACTIONS(4972), + [anon_sym_BANGin] = ACTIONS(4972), + [anon_sym_is] = ACTIONS(4970), + [anon_sym_BANGis] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4970), + [anon_sym_as_QMARK] = ACTIONS(4972), + [anon_sym_PLUS_PLUS] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4970), + [anon_sym_BANG_BANG] = ACTIONS(4972), + [anon_sym_data] = ACTIONS(4970), + [anon_sym_inner] = ACTIONS(4970), + [anon_sym_value] = ACTIONS(4970), + [anon_sym_expect] = ACTIONS(4970), + [anon_sym_actual] = ACTIONS(4970), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4972), + [anon_sym_continue_AT] = ACTIONS(4972), + [anon_sym_break_AT] = ACTIONS(4972), + [anon_sym_this_AT] = ACTIONS(4972), + [anon_sym_super_AT] = ACTIONS(4972), + [sym_real_literal] = ACTIONS(4972), + [sym_integer_literal] = ACTIONS(4970), + [sym_hex_literal] = ACTIONS(4972), + [sym_bin_literal] = ACTIONS(4972), + [anon_sym_true] = ACTIONS(4970), + [anon_sym_false] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4972), + [sym__backtick_identifier] = ACTIONS(4972), + [sym__automatic_semicolon] = ACTIONS(4972), + [sym_safe_nav] = ACTIONS(4972), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4972), }, - [3029] = { - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [3072] = { + [sym__alpha_identifier] = ACTIONS(4950), + [anon_sym_AT] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4950), + [anon_sym_EQ] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4950), + [anon_sym_where] = ACTIONS(4950), + [anon_sym_object] = ACTIONS(4950), + [anon_sym_fun] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_get] = ACTIONS(4950), + [anon_sym_set] = ACTIONS(4950), + [anon_sym_this] = ACTIONS(4950), + [anon_sym_super] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4950), + [sym_label] = ACTIONS(4950), + [anon_sym_in] = ACTIONS(4950), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_QMARK_COLON] = ACTIONS(4952), + [anon_sym_AMP_AMP] = ACTIONS(4952), + [anon_sym_PIPE_PIPE] = ACTIONS(4952), + [anon_sym_null] = ACTIONS(4950), + [anon_sym_if] = ACTIONS(4950), + [anon_sym_else] = ACTIONS(4950), + [anon_sym_when] = ACTIONS(4950), + [anon_sym_try] = ACTIONS(4950), + [anon_sym_throw] = ACTIONS(4950), + [anon_sym_return] = ACTIONS(4950), + [anon_sym_continue] = ACTIONS(4950), + [anon_sym_break] = ACTIONS(4950), + [anon_sym_COLON_COLON] = ACTIONS(4952), + [anon_sym_PLUS_EQ] = ACTIONS(4952), + [anon_sym_DASH_EQ] = ACTIONS(4952), + [anon_sym_STAR_EQ] = ACTIONS(4952), + [anon_sym_SLASH_EQ] = ACTIONS(4952), + [anon_sym_PERCENT_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4952), + [anon_sym_BANGin] = ACTIONS(4952), + [anon_sym_is] = ACTIONS(4950), + [anon_sym_BANGis] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4950), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4950), + [anon_sym_PERCENT] = ACTIONS(4950), + [anon_sym_as_QMARK] = ACTIONS(4952), + [anon_sym_PLUS_PLUS] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4950), + [anon_sym_BANG_BANG] = ACTIONS(4952), + [anon_sym_data] = ACTIONS(4950), + [anon_sym_inner] = ACTIONS(4950), + [anon_sym_value] = ACTIONS(4950), + [anon_sym_expect] = ACTIONS(4950), + [anon_sym_actual] = ACTIONS(4950), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4952), + [anon_sym_continue_AT] = ACTIONS(4952), + [anon_sym_break_AT] = ACTIONS(4952), + [anon_sym_this_AT] = ACTIONS(4952), + [anon_sym_super_AT] = ACTIONS(4952), + [sym_real_literal] = ACTIONS(4952), + [sym_integer_literal] = ACTIONS(4950), + [sym_hex_literal] = ACTIONS(4952), + [sym_bin_literal] = ACTIONS(4952), + [anon_sym_true] = ACTIONS(4950), + [anon_sym_false] = ACTIONS(4950), + [anon_sym_SQUOTE] = ACTIONS(4952), + [sym__backtick_identifier] = ACTIONS(4952), + [sym__automatic_semicolon] = ACTIONS(4952), + [sym_safe_nav] = ACTIONS(4952), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4952), + }, + [3073] = { + [sym__alpha_identifier] = ACTIONS(5020), + [anon_sym_AT] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_as] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5022), + [anon_sym_RBRACE] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5022), + [anon_sym_COMMA] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_where] = ACTIONS(5020), + [anon_sym_object] = ACTIONS(5020), + [anon_sym_fun] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5022), + [anon_sym_get] = ACTIONS(5020), + [anon_sym_set] = ACTIONS(5020), + [anon_sym_this] = ACTIONS(5020), + [anon_sym_super] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [sym_label] = ACTIONS(5020), + [anon_sym_in] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5022), + [anon_sym_QMARK_COLON] = ACTIONS(5022), + [anon_sym_AMP_AMP] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5022), + [anon_sym_null] = ACTIONS(5020), + [anon_sym_if] = ACTIONS(5020), + [anon_sym_else] = ACTIONS(5020), + [anon_sym_when] = ACTIONS(5020), + [anon_sym_try] = ACTIONS(5020), + [anon_sym_throw] = ACTIONS(5020), + [anon_sym_return] = ACTIONS(5020), + [anon_sym_continue] = ACTIONS(5020), + [anon_sym_break] = ACTIONS(5020), + [anon_sym_COLON_COLON] = ACTIONS(5022), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5022), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_BANGin] = ACTIONS(5022), + [anon_sym_is] = ACTIONS(5020), + [anon_sym_BANGis] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_as_QMARK] = ACTIONS(5022), + [anon_sym_PLUS_PLUS] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_BANG_BANG] = ACTIONS(5022), + [anon_sym_data] = ACTIONS(5020), + [anon_sym_inner] = ACTIONS(5020), + [anon_sym_value] = ACTIONS(5020), + [anon_sym_expect] = ACTIONS(5020), + [anon_sym_actual] = ACTIONS(5020), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [anon_sym_return_AT] = ACTIONS(5022), + [anon_sym_continue_AT] = ACTIONS(5022), + [anon_sym_break_AT] = ACTIONS(5022), + [anon_sym_this_AT] = ACTIONS(5022), + [anon_sym_super_AT] = ACTIONS(5022), + [sym_real_literal] = ACTIONS(5022), + [sym_integer_literal] = ACTIONS(5020), + [sym_hex_literal] = ACTIONS(5022), + [sym_bin_literal] = ACTIONS(5022), + [anon_sym_true] = ACTIONS(5020), + [anon_sym_false] = ACTIONS(5020), + [anon_sym_SQUOTE] = ACTIONS(5022), + [sym__backtick_identifier] = ACTIONS(5022), + [sym__automatic_semicolon] = ACTIONS(5022), + [sym_safe_nav] = ACTIONS(5022), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5022), }, - [3030] = { - [sym_getter] = STATE(5313), - [sym_setter] = STATE(5313), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(5157), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [3074] = { + [sym__alpha_identifier] = ACTIONS(5024), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_object] = ACTIONS(5024), + [anon_sym_fun] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_get] = ACTIONS(5024), + [anon_sym_set] = ACTIONS(5024), + [anon_sym_this] = ACTIONS(5024), + [anon_sym_super] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [sym_label] = ACTIONS(5024), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_QMARK_COLON] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_null] = ACTIONS(5024), + [anon_sym_if] = ACTIONS(5024), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_when] = ACTIONS(5024), + [anon_sym_try] = ACTIONS(5024), + [anon_sym_throw] = ACTIONS(5024), + [anon_sym_return] = ACTIONS(5024), + [anon_sym_continue] = ACTIONS(5024), + [anon_sym_break] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(6625), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_PERCENT_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_BANGin] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_BANGis] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_as_QMARK] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_BANG_BANG] = ACTIONS(5026), + [anon_sym_data] = ACTIONS(5024), + [anon_sym_inner] = ACTIONS(5024), + [anon_sym_value] = ACTIONS(5024), + [anon_sym_expect] = ACTIONS(5024), + [anon_sym_actual] = ACTIONS(5024), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [anon_sym_return_AT] = ACTIONS(5026), + [anon_sym_continue_AT] = ACTIONS(5026), + [anon_sym_break_AT] = ACTIONS(5026), + [anon_sym_this_AT] = ACTIONS(5026), + [anon_sym_super_AT] = ACTIONS(5026), + [sym_real_literal] = ACTIONS(5026), + [sym_integer_literal] = ACTIONS(5024), + [sym_hex_literal] = ACTIONS(5026), + [sym_bin_literal] = ACTIONS(5026), + [anon_sym_true] = ACTIONS(5024), + [anon_sym_false] = ACTIONS(5024), + [anon_sym_SQUOTE] = ACTIONS(5026), + [sym__backtick_identifier] = ACTIONS(5026), + [sym__automatic_semicolon] = ACTIONS(5026), + [sym_safe_nav] = ACTIONS(5026), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5026), }, - [3031] = { - [sym_catch_block] = STATE(3031), - [aux_sym_try_expression_repeat1] = STATE(3031), - [sym__alpha_identifier] = ACTIONS(4170), - [anon_sym_AT] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_RBRACK] = ACTIONS(4172), - [anon_sym_as] = ACTIONS(4170), - [anon_sym_EQ] = ACTIONS(4170), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4172), - [anon_sym_LPAREN] = ACTIONS(4172), - [anon_sym_COMMA] = ACTIONS(4172), - [anon_sym_RPAREN] = ACTIONS(4172), - [anon_sym_LT] = ACTIONS(4170), - [anon_sym_GT] = ACTIONS(4170), - [anon_sym_where] = ACTIONS(4170), - [anon_sym_DOT] = ACTIONS(4170), - [anon_sym_SEMI] = ACTIONS(4172), - [anon_sym_get] = ACTIONS(4170), - [anon_sym_set] = ACTIONS(4170), - [anon_sym_STAR] = ACTIONS(4170), - [anon_sym_DASH_GT] = ACTIONS(4172), - [sym_label] = ACTIONS(4172), - [anon_sym_in] = ACTIONS(4170), - [anon_sym_while] = ACTIONS(4170), - [anon_sym_DOT_DOT] = ACTIONS(4172), - [anon_sym_QMARK_COLON] = ACTIONS(4172), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [anon_sym_else] = ACTIONS(4170), - [anon_sym_catch] = ACTIONS(6674), - [anon_sym_finally] = ACTIONS(4170), - [anon_sym_COLON_COLON] = ACTIONS(4172), - [anon_sym_PLUS_EQ] = ACTIONS(4172), - [anon_sym_DASH_EQ] = ACTIONS(4172), - [anon_sym_STAR_EQ] = ACTIONS(4172), - [anon_sym_SLASH_EQ] = ACTIONS(4172), - [anon_sym_PERCENT_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ] = ACTIONS(4170), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ] = ACTIONS(4170), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), - [anon_sym_LT_EQ] = ACTIONS(4172), - [anon_sym_GT_EQ] = ACTIONS(4172), - [anon_sym_BANGin] = ACTIONS(4172), - [anon_sym_is] = ACTIONS(4170), - [anon_sym_BANGis] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4170), - [anon_sym_DASH] = ACTIONS(4170), - [anon_sym_SLASH] = ACTIONS(4170), - [anon_sym_PERCENT] = ACTIONS(4170), - [anon_sym_as_QMARK] = ACTIONS(4172), - [anon_sym_PLUS_PLUS] = ACTIONS(4172), - [anon_sym_DASH_DASH] = ACTIONS(4172), - [anon_sym_BANG_BANG] = ACTIONS(4172), - [anon_sym_suspend] = ACTIONS(4170), - [anon_sym_sealed] = ACTIONS(4170), - [anon_sym_annotation] = ACTIONS(4170), - [anon_sym_data] = ACTIONS(4170), - [anon_sym_inner] = ACTIONS(4170), - [anon_sym_value] = ACTIONS(4170), - [anon_sym_override] = ACTIONS(4170), - [anon_sym_lateinit] = ACTIONS(4170), - [anon_sym_public] = ACTIONS(4170), - [anon_sym_private] = ACTIONS(4170), - [anon_sym_internal] = ACTIONS(4170), - [anon_sym_protected] = ACTIONS(4170), - [anon_sym_tailrec] = ACTIONS(4170), - [anon_sym_operator] = ACTIONS(4170), - [anon_sym_infix] = ACTIONS(4170), - [anon_sym_inline] = ACTIONS(4170), - [anon_sym_external] = ACTIONS(4170), - [sym_property_modifier] = ACTIONS(4170), - [anon_sym_abstract] = ACTIONS(4170), - [anon_sym_final] = ACTIONS(4170), - [anon_sym_open] = ACTIONS(4170), - [anon_sym_vararg] = ACTIONS(4170), - [anon_sym_noinline] = ACTIONS(4170), - [anon_sym_crossinline] = ACTIONS(4170), - [anon_sym_expect] = ACTIONS(4170), - [anon_sym_actual] = ACTIONS(4170), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4172), - [sym_safe_nav] = ACTIONS(4172), + [3075] = { + [sym_catch_block] = STATE(3347), + [sym_finally_block] = STATE(3912), + [aux_sym_try_expression_repeat1] = STATE(3347), + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4096), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_catch] = ACTIONS(6628), + [anon_sym_finally] = ACTIONS(6630), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_suspend] = ACTIONS(4094), + [anon_sym_sealed] = ACTIONS(4094), + [anon_sym_annotation] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_override] = ACTIONS(4094), + [anon_sym_lateinit] = ACTIONS(4094), + [anon_sym_public] = ACTIONS(4094), + [anon_sym_private] = ACTIONS(4094), + [anon_sym_internal] = ACTIONS(4094), + [anon_sym_protected] = ACTIONS(4094), + [anon_sym_tailrec] = ACTIONS(4094), + [anon_sym_operator] = ACTIONS(4094), + [anon_sym_infix] = ACTIONS(4094), + [anon_sym_inline] = ACTIONS(4094), + [anon_sym_external] = ACTIONS(4094), + [sym_property_modifier] = ACTIONS(4094), + [anon_sym_abstract] = ACTIONS(4094), + [anon_sym_final] = ACTIONS(4094), + [anon_sym_open] = ACTIONS(4094), + [anon_sym_vararg] = ACTIONS(4094), + [anon_sym_noinline] = ACTIONS(4094), + [anon_sym_crossinline] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4096), + [sym__automatic_semicolon] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), [sym_multiline_comment] = ACTIONS(3), }, - [3032] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_by] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4010), - [anon_sym_set] = ACTIONS(4010), - [anon_sym_AMP] = ACTIONS(4010), - [sym__quest] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4015), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_while] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4010), - [anon_sym_sealed] = ACTIONS(4010), - [anon_sym_annotation] = ACTIONS(4010), - [anon_sym_data] = ACTIONS(4010), - [anon_sym_inner] = ACTIONS(4010), - [anon_sym_value] = ACTIONS(4010), - [anon_sym_override] = ACTIONS(4010), - [anon_sym_lateinit] = ACTIONS(4010), - [anon_sym_public] = ACTIONS(4010), - [anon_sym_private] = ACTIONS(4010), - [anon_sym_internal] = ACTIONS(4010), - [anon_sym_protected] = ACTIONS(4010), - [anon_sym_tailrec] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_infix] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym_external] = ACTIONS(4010), - [sym_property_modifier] = ACTIONS(4010), - [anon_sym_abstract] = ACTIONS(4010), - [anon_sym_final] = ACTIONS(4010), - [anon_sym_open] = ACTIONS(4010), - [anon_sym_vararg] = ACTIONS(4010), - [anon_sym_noinline] = ACTIONS(4010), - [anon_sym_crossinline] = ACTIONS(4010), - [anon_sym_expect] = ACTIONS(4010), - [anon_sym_actual] = ACTIONS(4010), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), + [3076] = { + [sym__alpha_identifier] = ACTIONS(4954), + [anon_sym_AT] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4954), + [anon_sym_EQ] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4954), + [anon_sym_where] = ACTIONS(4954), + [anon_sym_object] = ACTIONS(4954), + [anon_sym_fun] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_get] = ACTIONS(4954), + [anon_sym_set] = ACTIONS(4954), + [anon_sym_this] = ACTIONS(4954), + [anon_sym_super] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4954), + [sym_label] = ACTIONS(4954), + [anon_sym_in] = ACTIONS(4954), + [anon_sym_DOT_DOT] = ACTIONS(4956), + [anon_sym_QMARK_COLON] = ACTIONS(4956), + [anon_sym_AMP_AMP] = ACTIONS(4956), + [anon_sym_PIPE_PIPE] = ACTIONS(4956), + [anon_sym_null] = ACTIONS(4954), + [anon_sym_if] = ACTIONS(4954), + [anon_sym_else] = ACTIONS(4954), + [anon_sym_when] = ACTIONS(4954), + [anon_sym_try] = ACTIONS(4954), + [anon_sym_throw] = ACTIONS(4954), + [anon_sym_return] = ACTIONS(4954), + [anon_sym_continue] = ACTIONS(4954), + [anon_sym_break] = ACTIONS(4954), + [anon_sym_COLON_COLON] = ACTIONS(4956), + [anon_sym_PLUS_EQ] = ACTIONS(4956), + [anon_sym_DASH_EQ] = ACTIONS(4956), + [anon_sym_STAR_EQ] = ACTIONS(4956), + [anon_sym_SLASH_EQ] = ACTIONS(4956), + [anon_sym_PERCENT_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4956), + [anon_sym_LT_EQ] = ACTIONS(4956), + [anon_sym_GT_EQ] = ACTIONS(4956), + [anon_sym_BANGin] = ACTIONS(4956), + [anon_sym_is] = ACTIONS(4954), + [anon_sym_BANGis] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4954), + [anon_sym_as_QMARK] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4954), + [anon_sym_BANG_BANG] = ACTIONS(4956), + [anon_sym_data] = ACTIONS(4954), + [anon_sym_inner] = ACTIONS(4954), + [anon_sym_value] = ACTIONS(4954), + [anon_sym_expect] = ACTIONS(4954), + [anon_sym_actual] = ACTIONS(4954), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4956), + [anon_sym_continue_AT] = ACTIONS(4956), + [anon_sym_break_AT] = ACTIONS(4956), + [anon_sym_this_AT] = ACTIONS(4956), + [anon_sym_super_AT] = ACTIONS(4956), + [sym_real_literal] = ACTIONS(4956), + [sym_integer_literal] = ACTIONS(4954), + [sym_hex_literal] = ACTIONS(4956), + [sym_bin_literal] = ACTIONS(4956), + [anon_sym_true] = ACTIONS(4954), + [anon_sym_false] = ACTIONS(4954), + [anon_sym_SQUOTE] = ACTIONS(4956), + [sym__backtick_identifier] = ACTIONS(4956), + [sym__automatic_semicolon] = ACTIONS(4956), + [sym_safe_nav] = ACTIONS(4956), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4956), }, - [3033] = { - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(4806), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [3077] = { + [sym__alpha_identifier] = ACTIONS(5089), + [anon_sym_AT] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_as] = ACTIONS(5089), + [anon_sym_EQ] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_RBRACE] = ACTIONS(5091), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_where] = ACTIONS(5089), + [anon_sym_object] = ACTIONS(5089), + [anon_sym_fun] = ACTIONS(5089), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_SEMI] = ACTIONS(5091), + [anon_sym_get] = ACTIONS(5089), + [anon_sym_set] = ACTIONS(5089), + [anon_sym_this] = ACTIONS(5089), + [anon_sym_super] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [sym_label] = ACTIONS(5089), + [anon_sym_in] = ACTIONS(5089), + [anon_sym_DOT_DOT] = ACTIONS(5091), + [anon_sym_QMARK_COLON] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_null] = ACTIONS(5089), + [anon_sym_if] = ACTIONS(5089), + [anon_sym_else] = ACTIONS(5089), + [anon_sym_when] = ACTIONS(5089), + [anon_sym_try] = ACTIONS(5089), + [anon_sym_throw] = ACTIONS(5089), + [anon_sym_return] = ACTIONS(5089), + [anon_sym_continue] = ACTIONS(5089), + [anon_sym_break] = ACTIONS(5089), + [anon_sym_COLON_COLON] = ACTIONS(5091), + [anon_sym_PLUS_EQ] = ACTIONS(5091), + [anon_sym_DASH_EQ] = ACTIONS(5091), + [anon_sym_STAR_EQ] = ACTIONS(5091), + [anon_sym_SLASH_EQ] = ACTIONS(5091), + [anon_sym_PERCENT_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5091), + [anon_sym_EQ_EQ] = ACTIONS(5089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5091), + [anon_sym_LT_EQ] = ACTIONS(5091), + [anon_sym_GT_EQ] = ACTIONS(5091), + [anon_sym_BANGin] = ACTIONS(5091), + [anon_sym_is] = ACTIONS(5089), + [anon_sym_BANGis] = ACTIONS(5091), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_as_QMARK] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_BANG] = ACTIONS(5089), + [anon_sym_BANG_BANG] = ACTIONS(5091), + [anon_sym_data] = ACTIONS(5089), + [anon_sym_inner] = ACTIONS(5089), + [anon_sym_value] = ACTIONS(5089), + [anon_sym_expect] = ACTIONS(5089), + [anon_sym_actual] = ACTIONS(5089), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5091), + [anon_sym_continue_AT] = ACTIONS(5091), + [anon_sym_break_AT] = ACTIONS(5091), + [anon_sym_this_AT] = ACTIONS(5091), + [anon_sym_super_AT] = ACTIONS(5091), + [sym_real_literal] = ACTIONS(5091), + [sym_integer_literal] = ACTIONS(5089), + [sym_hex_literal] = ACTIONS(5091), + [sym_bin_literal] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5089), + [anon_sym_false] = ACTIONS(5089), + [anon_sym_SQUOTE] = ACTIONS(5091), + [sym__backtick_identifier] = ACTIONS(5091), + [sym__automatic_semicolon] = ACTIONS(5091), + [sym_safe_nav] = ACTIONS(5091), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5091), + }, + [3078] = { + [sym_class_body] = STATE(3478), + [sym_type_constraints] = STATE(3354), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_while] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), }, - [3034] = { - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [3079] = { + [sym__alpha_identifier] = ACTIONS(5024), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_object] = ACTIONS(5024), + [anon_sym_fun] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_get] = ACTIONS(5024), + [anon_sym_set] = ACTIONS(5024), + [anon_sym_this] = ACTIONS(5024), + [anon_sym_super] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [sym_label] = ACTIONS(5024), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_QMARK_COLON] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_null] = ACTIONS(5024), + [anon_sym_if] = ACTIONS(5024), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_when] = ACTIONS(5024), + [anon_sym_try] = ACTIONS(5024), + [anon_sym_throw] = ACTIONS(5024), + [anon_sym_return] = ACTIONS(5024), + [anon_sym_continue] = ACTIONS(5024), + [anon_sym_break] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(6625), + [anon_sym_PLUS_EQ] = ACTIONS(5057), + [anon_sym_DASH_EQ] = ACTIONS(5057), + [anon_sym_STAR_EQ] = ACTIONS(5057), + [anon_sym_SLASH_EQ] = ACTIONS(5057), + [anon_sym_PERCENT_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_BANGin] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_BANGis] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_as_QMARK] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_BANG_BANG] = ACTIONS(5026), + [anon_sym_data] = ACTIONS(5024), + [anon_sym_inner] = ACTIONS(5024), + [anon_sym_value] = ACTIONS(5024), + [anon_sym_expect] = ACTIONS(5024), + [anon_sym_actual] = ACTIONS(5024), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [anon_sym_return_AT] = ACTIONS(5026), + [anon_sym_continue_AT] = ACTIONS(5026), + [anon_sym_break_AT] = ACTIONS(5026), + [anon_sym_this_AT] = ACTIONS(5026), + [anon_sym_super_AT] = ACTIONS(5026), + [sym_real_literal] = ACTIONS(5026), + [sym_integer_literal] = ACTIONS(5024), + [sym_hex_literal] = ACTIONS(5026), + [sym_bin_literal] = ACTIONS(5026), + [anon_sym_true] = ACTIONS(5024), + [anon_sym_false] = ACTIONS(5024), + [anon_sym_SQUOTE] = ACTIONS(5026), + [sym__backtick_identifier] = ACTIONS(5026), + [sym__automatic_semicolon] = ACTIONS(5026), + [sym_safe_nav] = ACTIONS(5026), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5026), }, - [3035] = { - [sym_class_body] = STATE(3340), - [sym_type_constraints] = STATE(3117), - [sym__alpha_identifier] = ACTIONS(4461), - [anon_sym_AT] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_as] = ACTIONS(4461), - [anon_sym_EQ] = ACTIONS(4461), - [anon_sym_fun] = ACTIONS(4461), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4461), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [anon_sym_get] = ACTIONS(4461), - [anon_sym_set] = ACTIONS(4461), - [anon_sym_this] = ACTIONS(4461), - [anon_sym_super] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [sym_label] = ACTIONS(4461), - [anon_sym_in] = ACTIONS(4461), - [anon_sym_DOT_DOT] = ACTIONS(4463), - [anon_sym_QMARK_COLON] = ACTIONS(4463), - [anon_sym_AMP_AMP] = ACTIONS(4463), - [anon_sym_PIPE_PIPE] = ACTIONS(4463), - [anon_sym_null] = ACTIONS(4461), - [anon_sym_if] = ACTIONS(4461), - [anon_sym_else] = ACTIONS(4461), - [anon_sym_when] = ACTIONS(4461), - [anon_sym_try] = ACTIONS(4461), - [anon_sym_throw] = ACTIONS(4461), - [anon_sym_return] = ACTIONS(4461), - [anon_sym_continue] = ACTIONS(4461), - [anon_sym_break] = ACTIONS(4461), - [anon_sym_COLON_COLON] = ACTIONS(4463), - [anon_sym_PLUS_EQ] = ACTIONS(4463), - [anon_sym_DASH_EQ] = ACTIONS(4463), - [anon_sym_STAR_EQ] = ACTIONS(4463), - [anon_sym_SLASH_EQ] = ACTIONS(4463), - [anon_sym_PERCENT_EQ] = ACTIONS(4463), - [anon_sym_BANG_EQ] = ACTIONS(4461), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4463), - [anon_sym_EQ_EQ] = ACTIONS(4461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4463), - [anon_sym_LT_EQ] = ACTIONS(4463), - [anon_sym_GT_EQ] = ACTIONS(4463), - [anon_sym_BANGin] = ACTIONS(4463), - [anon_sym_is] = ACTIONS(4461), - [anon_sym_BANGis] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(4461), - [anon_sym_as_QMARK] = ACTIONS(4463), - [anon_sym_PLUS_PLUS] = ACTIONS(4463), - [anon_sym_DASH_DASH] = ACTIONS(4463), - [anon_sym_BANG] = ACTIONS(4461), - [anon_sym_BANG_BANG] = ACTIONS(4463), - [anon_sym_data] = ACTIONS(4461), - [anon_sym_inner] = ACTIONS(4461), - [anon_sym_value] = ACTIONS(4461), - [anon_sym_expect] = ACTIONS(4461), - [anon_sym_actual] = ACTIONS(4461), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4463), - [anon_sym_continue_AT] = ACTIONS(4463), - [anon_sym_break_AT] = ACTIONS(4463), - [anon_sym_this_AT] = ACTIONS(4463), - [anon_sym_super_AT] = ACTIONS(4463), - [sym_real_literal] = ACTIONS(4463), - [sym_integer_literal] = ACTIONS(4461), - [sym_hex_literal] = ACTIONS(4463), - [sym_bin_literal] = ACTIONS(4463), - [anon_sym_true] = ACTIONS(4461), - [anon_sym_false] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym__backtick_identifier] = ACTIONS(4463), - [sym__automatic_semicolon] = ACTIONS(4463), - [sym_safe_nav] = ACTIONS(4463), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4463), + [3080] = { + [sym__alpha_identifier] = ACTIONS(4914), + [anon_sym_AT] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_as] = ACTIONS(4914), + [anon_sym_EQ] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_RBRACE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4914), + [anon_sym_where] = ACTIONS(4914), + [anon_sym_object] = ACTIONS(4914), + [anon_sym_fun] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_get] = ACTIONS(4914), + [anon_sym_set] = ACTIONS(4914), + [anon_sym_this] = ACTIONS(4914), + [anon_sym_super] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4914), + [sym_label] = ACTIONS(4914), + [anon_sym_in] = ACTIONS(4914), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_QMARK_COLON] = ACTIONS(4916), + [anon_sym_AMP_AMP] = ACTIONS(4916), + [anon_sym_PIPE_PIPE] = ACTIONS(4916), + [anon_sym_null] = ACTIONS(4914), + [anon_sym_if] = ACTIONS(4914), + [anon_sym_else] = ACTIONS(4914), + [anon_sym_when] = ACTIONS(4914), + [anon_sym_try] = ACTIONS(4914), + [anon_sym_throw] = ACTIONS(4914), + [anon_sym_return] = ACTIONS(4914), + [anon_sym_continue] = ACTIONS(4914), + [anon_sym_break] = ACTIONS(4914), + [anon_sym_COLON_COLON] = ACTIONS(4916), + [anon_sym_PLUS_EQ] = ACTIONS(4916), + [anon_sym_DASH_EQ] = ACTIONS(4916), + [anon_sym_STAR_EQ] = ACTIONS(4916), + [anon_sym_SLASH_EQ] = ACTIONS(4916), + [anon_sym_PERCENT_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4916), + [anon_sym_EQ_EQ] = ACTIONS(4914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4916), + [anon_sym_LT_EQ] = ACTIONS(4916), + [anon_sym_GT_EQ] = ACTIONS(4916), + [anon_sym_BANGin] = ACTIONS(4916), + [anon_sym_is] = ACTIONS(4914), + [anon_sym_BANGis] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4914), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4914), + [anon_sym_PERCENT] = ACTIONS(4914), + [anon_sym_as_QMARK] = ACTIONS(4916), + [anon_sym_PLUS_PLUS] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4914), + [anon_sym_BANG_BANG] = ACTIONS(4916), + [anon_sym_data] = ACTIONS(4914), + [anon_sym_inner] = ACTIONS(4914), + [anon_sym_value] = ACTIONS(4914), + [anon_sym_expect] = ACTIONS(4914), + [anon_sym_actual] = ACTIONS(4914), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4916), + [anon_sym_continue_AT] = ACTIONS(4916), + [anon_sym_break_AT] = ACTIONS(4916), + [anon_sym_this_AT] = ACTIONS(4916), + [anon_sym_super_AT] = ACTIONS(4916), + [sym_real_literal] = ACTIONS(4916), + [sym_integer_literal] = ACTIONS(4914), + [sym_hex_literal] = ACTIONS(4916), + [sym_bin_literal] = ACTIONS(4916), + [anon_sym_true] = ACTIONS(4914), + [anon_sym_false] = ACTIONS(4914), + [anon_sym_SQUOTE] = ACTIONS(4916), + [sym__backtick_identifier] = ACTIONS(4916), + [sym__automatic_semicolon] = ACTIONS(4916), + [sym_safe_nav] = ACTIONS(4916), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4916), }, - [3036] = { - [sym__alpha_identifier] = ACTIONS(4215), - [anon_sym_AT] = ACTIONS(4217), - [anon_sym_COLON] = ACTIONS(4215), - [anon_sym_LBRACK] = ACTIONS(4217), - [anon_sym_RBRACK] = ACTIONS(4217), - [anon_sym_as] = ACTIONS(4215), - [anon_sym_EQ] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4217), - [anon_sym_COMMA] = ACTIONS(4217), - [anon_sym_RPAREN] = ACTIONS(4217), - [anon_sym_by] = ACTIONS(4215), - [anon_sym_LT] = ACTIONS(4215), - [anon_sym_GT] = ACTIONS(4215), - [anon_sym_where] = ACTIONS(4215), - [anon_sym_DOT] = ACTIONS(4215), - [anon_sym_SEMI] = ACTIONS(4217), - [anon_sym_get] = ACTIONS(4215), - [anon_sym_set] = ACTIONS(4215), - [anon_sym_AMP] = ACTIONS(4215), - [sym__quest] = ACTIONS(4215), - [anon_sym_STAR] = ACTIONS(4215), - [anon_sym_DASH_GT] = ACTIONS(4217), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4215), - [anon_sym_while] = ACTIONS(4215), - [anon_sym_DOT_DOT] = ACTIONS(4217), - [anon_sym_QMARK_COLON] = ACTIONS(4217), - [anon_sym_AMP_AMP] = ACTIONS(4217), - [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4215), - [anon_sym_COLON_COLON] = ACTIONS(4217), - [anon_sym_PLUS_EQ] = ACTIONS(4217), - [anon_sym_DASH_EQ] = ACTIONS(4217), - [anon_sym_STAR_EQ] = ACTIONS(4217), - [anon_sym_SLASH_EQ] = ACTIONS(4217), - [anon_sym_PERCENT_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ] = ACTIONS(4215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ] = ACTIONS(4215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), - [anon_sym_LT_EQ] = ACTIONS(4217), - [anon_sym_GT_EQ] = ACTIONS(4217), - [anon_sym_BANGin] = ACTIONS(4217), - [anon_sym_is] = ACTIONS(4215), - [anon_sym_BANGis] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4215), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_SLASH] = ACTIONS(4215), - [anon_sym_PERCENT] = ACTIONS(4215), - [anon_sym_as_QMARK] = ACTIONS(4217), - [anon_sym_PLUS_PLUS] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4217), - [anon_sym_suspend] = ACTIONS(4215), - [anon_sym_sealed] = ACTIONS(4215), - [anon_sym_annotation] = ACTIONS(4215), - [anon_sym_data] = ACTIONS(4215), - [anon_sym_inner] = ACTIONS(4215), - [anon_sym_value] = ACTIONS(4215), - [anon_sym_override] = ACTIONS(4215), - [anon_sym_lateinit] = ACTIONS(4215), - [anon_sym_public] = ACTIONS(4215), - [anon_sym_private] = ACTIONS(4215), - [anon_sym_internal] = ACTIONS(4215), - [anon_sym_protected] = ACTIONS(4215), - [anon_sym_tailrec] = ACTIONS(4215), - [anon_sym_operator] = ACTIONS(4215), - [anon_sym_infix] = ACTIONS(4215), - [anon_sym_inline] = ACTIONS(4215), - [anon_sym_external] = ACTIONS(4215), - [sym_property_modifier] = ACTIONS(4215), - [anon_sym_abstract] = ACTIONS(4215), - [anon_sym_final] = ACTIONS(4215), - [anon_sym_open] = ACTIONS(4215), - [anon_sym_vararg] = ACTIONS(4215), - [anon_sym_noinline] = ACTIONS(4215), - [anon_sym_crossinline] = ACTIONS(4215), - [anon_sym_expect] = ACTIONS(4215), - [anon_sym_actual] = ACTIONS(4215), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4217), - [sym_safe_nav] = ACTIONS(4217), + [3081] = { + [sym_type_constraints] = STATE(3351), + [sym_enum_class_body] = STATE(3472), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_DASH_GT] = ACTIONS(4469), + [sym_label] = ACTIONS(4469), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_while] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), [sym_multiline_comment] = ACTIONS(3), }, - [3037] = { - [sym_getter] = STATE(5355), - [sym_setter] = STATE(5355), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(5191), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), + [3082] = { + [sym__alpha_identifier] = ACTIONS(5095), + [anon_sym_AT] = ACTIONS(5097), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5097), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_where] = ACTIONS(5095), + [anon_sym_object] = ACTIONS(5095), + [anon_sym_fun] = ACTIONS(5095), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_SEMI] = ACTIONS(5097), + [anon_sym_get] = ACTIONS(5095), + [anon_sym_set] = ACTIONS(5095), + [anon_sym_this] = ACTIONS(5095), + [anon_sym_super] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5095), + [sym_label] = ACTIONS(5095), + [anon_sym_in] = ACTIONS(5095), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_QMARK_COLON] = ACTIONS(5097), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_null] = ACTIONS(5095), + [anon_sym_if] = ACTIONS(5095), + [anon_sym_else] = ACTIONS(5095), + [anon_sym_when] = ACTIONS(5095), + [anon_sym_try] = ACTIONS(5095), + [anon_sym_throw] = ACTIONS(5095), + [anon_sym_return] = ACTIONS(5095), + [anon_sym_continue] = ACTIONS(5095), + [anon_sym_break] = ACTIONS(5095), + [anon_sym_COLON_COLON] = ACTIONS(5097), + [anon_sym_PLUS_EQ] = ACTIONS(5097), + [anon_sym_DASH_EQ] = ACTIONS(5097), + [anon_sym_STAR_EQ] = ACTIONS(5097), + [anon_sym_SLASH_EQ] = ACTIONS(5097), + [anon_sym_PERCENT_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_BANGin] = ACTIONS(5097), + [anon_sym_is] = ACTIONS(5095), + [anon_sym_BANGis] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5095), + [anon_sym_as_QMARK] = ACTIONS(5097), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_BANG] = ACTIONS(5095), + [anon_sym_BANG_BANG] = ACTIONS(5097), + [anon_sym_data] = ACTIONS(5095), + [anon_sym_inner] = ACTIONS(5095), + [anon_sym_value] = ACTIONS(5095), + [anon_sym_expect] = ACTIONS(5095), + [anon_sym_actual] = ACTIONS(5095), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [anon_sym_return_AT] = ACTIONS(5097), + [anon_sym_continue_AT] = ACTIONS(5097), + [anon_sym_break_AT] = ACTIONS(5097), + [anon_sym_this_AT] = ACTIONS(5097), + [anon_sym_super_AT] = ACTIONS(5097), + [sym_real_literal] = ACTIONS(5097), + [sym_integer_literal] = ACTIONS(5095), + [sym_hex_literal] = ACTIONS(5097), + [sym_bin_literal] = ACTIONS(5097), + [anon_sym_true] = ACTIONS(5095), + [anon_sym_false] = ACTIONS(5095), + [anon_sym_SQUOTE] = ACTIONS(5097), + [sym__backtick_identifier] = ACTIONS(5097), + [sym__automatic_semicolon] = ACTIONS(5097), + [sym_safe_nav] = ACTIONS(5097), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5097), }, - [3038] = { - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4844), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), + [3083] = { + [sym__alpha_identifier] = ACTIONS(5043), + [anon_sym_AT] = ACTIONS(5045), + [anon_sym_LBRACK] = ACTIONS(5045), + [anon_sym_as] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5045), + [anon_sym_RBRACE] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5045), + [anon_sym_COMMA] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5043), + [anon_sym_GT] = ACTIONS(5043), + [anon_sym_where] = ACTIONS(5043), + [anon_sym_object] = ACTIONS(5043), + [anon_sym_fun] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5043), + [anon_sym_SEMI] = ACTIONS(5045), + [anon_sym_get] = ACTIONS(5043), + [anon_sym_set] = ACTIONS(5043), + [anon_sym_this] = ACTIONS(5043), + [anon_sym_super] = ACTIONS(5043), + [anon_sym_STAR] = ACTIONS(5043), + [sym_label] = ACTIONS(5043), + [anon_sym_in] = ACTIONS(5043), + [anon_sym_DOT_DOT] = ACTIONS(5045), + [anon_sym_QMARK_COLON] = ACTIONS(5045), + [anon_sym_AMP_AMP] = ACTIONS(5045), + [anon_sym_PIPE_PIPE] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5043), + [anon_sym_if] = ACTIONS(5043), + [anon_sym_else] = ACTIONS(5043), + [anon_sym_when] = ACTIONS(5043), + [anon_sym_try] = ACTIONS(5043), + [anon_sym_throw] = ACTIONS(5043), + [anon_sym_return] = ACTIONS(5043), + [anon_sym_continue] = ACTIONS(5043), + [anon_sym_break] = ACTIONS(5043), + [anon_sym_COLON_COLON] = ACTIONS(5045), + [anon_sym_PLUS_EQ] = ACTIONS(5045), + [anon_sym_DASH_EQ] = ACTIONS(5045), + [anon_sym_STAR_EQ] = ACTIONS(5045), + [anon_sym_SLASH_EQ] = ACTIONS(5045), + [anon_sym_PERCENT_EQ] = ACTIONS(5045), + [anon_sym_BANG_EQ] = ACTIONS(5043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5045), + [anon_sym_EQ_EQ] = ACTIONS(5043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5045), + [anon_sym_LT_EQ] = ACTIONS(5045), + [anon_sym_GT_EQ] = ACTIONS(5045), + [anon_sym_BANGin] = ACTIONS(5045), + [anon_sym_is] = ACTIONS(5043), + [anon_sym_BANGis] = ACTIONS(5045), + [anon_sym_PLUS] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5043), + [anon_sym_PERCENT] = ACTIONS(5043), + [anon_sym_as_QMARK] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5045), + [anon_sym_DASH_DASH] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5043), + [anon_sym_BANG_BANG] = ACTIONS(5045), + [anon_sym_data] = ACTIONS(5043), + [anon_sym_inner] = ACTIONS(5043), + [anon_sym_value] = ACTIONS(5043), + [anon_sym_expect] = ACTIONS(5043), + [anon_sym_actual] = ACTIONS(5043), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5045), + [anon_sym_continue_AT] = ACTIONS(5045), + [anon_sym_break_AT] = ACTIONS(5045), + [anon_sym_this_AT] = ACTIONS(5045), + [anon_sym_super_AT] = ACTIONS(5045), + [sym_real_literal] = ACTIONS(5045), + [sym_integer_literal] = ACTIONS(5043), + [sym_hex_literal] = ACTIONS(5045), + [sym_bin_literal] = ACTIONS(5045), + [anon_sym_true] = ACTIONS(5043), + [anon_sym_false] = ACTIONS(5043), + [anon_sym_SQUOTE] = ACTIONS(5045), + [sym__backtick_identifier] = ACTIONS(5045), + [sym__automatic_semicolon] = ACTIONS(5045), + [sym_safe_nav] = ACTIONS(5045), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5045), }, - [3039] = { - [sym_getter] = STATE(5224), - [sym_setter] = STATE(5224), - [sym_modifiers] = STATE(9514), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(5213), - [anon_sym_get] = ACTIONS(6504), - [anon_sym_set] = ACTIONS(6506), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), + [3084] = { + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5051), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_object] = ACTIONS(5051), + [anon_sym_fun] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_this] = ACTIONS(5051), + [anon_sym_super] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [sym_label] = ACTIONS(5051), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_null] = ACTIONS(5051), + [anon_sym_if] = ACTIONS(5051), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_when] = ACTIONS(5051), + [anon_sym_try] = ACTIONS(5051), + [anon_sym_throw] = ACTIONS(5051), + [anon_sym_return] = ACTIONS(5051), + [anon_sym_continue] = ACTIONS(5051), + [anon_sym_break] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5051), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5053), + [anon_sym_continue_AT] = ACTIONS(5053), + [anon_sym_break_AT] = ACTIONS(5053), + [anon_sym_this_AT] = ACTIONS(5053), + [anon_sym_super_AT] = ACTIONS(5053), + [sym_real_literal] = ACTIONS(5053), + [sym_integer_literal] = ACTIONS(5051), + [sym_hex_literal] = ACTIONS(5053), + [sym_bin_literal] = ACTIONS(5053), + [anon_sym_true] = ACTIONS(5051), + [anon_sym_false] = ACTIONS(5051), + [anon_sym_SQUOTE] = ACTIONS(5053), + [sym__backtick_identifier] = ACTIONS(5053), + [sym__automatic_semicolon] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5053), }, - [3040] = { - [sym_getter] = STATE(4085), - [sym_setter] = STATE(4085), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5781), - [sym_class_modifier] = STATE(5781), - [sym_member_modifier] = STATE(5781), - [sym_visibility_modifier] = STATE(5781), - [sym_function_modifier] = STATE(5781), - [sym_inheritance_modifier] = STATE(5781), - [sym_parameter_modifier] = STATE(5781), - [sym_platform_modifier] = STATE(5781), - [sym_annotation] = STATE(5781), - [sym__single_annotation] = STATE(5941), - [sym__multi_annotation] = STATE(5941), - [aux_sym_modifiers_repeat1] = STATE(5781), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6464), - [anon_sym_set] = ACTIONS(6466), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3342), - [anon_sym_actual] = ACTIONS(3342), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), + [3085] = { + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_object] = ACTIONS(4028), + [anon_sym_fun] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_this] = ACTIONS(4028), + [anon_sym_super] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4028), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4030), + [anon_sym_PLUS_EQ] = ACTIONS(4030), + [anon_sym_DASH_EQ] = ACTIONS(4030), + [anon_sym_STAR_EQ] = ACTIONS(4030), + [anon_sym_SLASH_EQ] = ACTIONS(4030), + [anon_sym_PERCENT_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_BANG_BANG] = ACTIONS(4030), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4030), + [anon_sym_continue_AT] = ACTIONS(4030), + [anon_sym_break_AT] = ACTIONS(4030), + [anon_sym_this_AT] = ACTIONS(4030), + [anon_sym_super_AT] = ACTIONS(4030), + [sym_real_literal] = ACTIONS(4030), + [sym_integer_literal] = ACTIONS(4028), + [sym_hex_literal] = ACTIONS(4030), + [sym_bin_literal] = ACTIONS(4030), + [anon_sym_true] = ACTIONS(4028), + [anon_sym_false] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4030), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4030), }, - [3041] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4381), - [anon_sym_fun] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_GT] = ACTIONS(4381), - [anon_sym_where] = ACTIONS(4381), - [anon_sym_object] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_this] = ACTIONS(4381), - [anon_sym_super] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [sym_label] = ACTIONS(4381), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_QMARK_COLON] = ACTIONS(4383), - [anon_sym_AMP_AMP] = ACTIONS(4383), - [anon_sym_PIPE_PIPE] = ACTIONS(4383), - [anon_sym_null] = ACTIONS(4381), - [anon_sym_if] = ACTIONS(4381), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_when] = ACTIONS(4381), - [anon_sym_try] = ACTIONS(4381), - [anon_sym_catch] = ACTIONS(4381), - [anon_sym_finally] = ACTIONS(4381), - [anon_sym_throw] = ACTIONS(4381), - [anon_sym_return] = ACTIONS(4381), - [anon_sym_continue] = ACTIONS(4381), - [anon_sym_break] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4383), - [anon_sym_DASH_EQ] = ACTIONS(4383), - [anon_sym_STAR_EQ] = ACTIONS(4383), - [anon_sym_SLASH_EQ] = ACTIONS(4383), - [anon_sym_PERCENT_EQ] = ACTIONS(4383), - [anon_sym_BANG_EQ] = ACTIONS(4381), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), - [anon_sym_EQ_EQ] = ACTIONS(4381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), - [anon_sym_LT_EQ] = ACTIONS(4383), - [anon_sym_GT_EQ] = ACTIONS(4383), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_as_QMARK] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG] = ACTIONS(4381), - [anon_sym_BANG_BANG] = ACTIONS(4383), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4383), - [anon_sym_continue_AT] = ACTIONS(4383), - [anon_sym_break_AT] = ACTIONS(4383), - [anon_sym_this_AT] = ACTIONS(4383), - [anon_sym_super_AT] = ACTIONS(4383), - [sym_real_literal] = ACTIONS(4383), - [sym_integer_literal] = ACTIONS(4381), - [sym_hex_literal] = ACTIONS(4383), - [sym_bin_literal] = ACTIONS(4383), - [anon_sym_true] = ACTIONS(4381), - [anon_sym_false] = ACTIONS(4381), - [anon_sym_SQUOTE] = ACTIONS(4383), - [sym__backtick_identifier] = ACTIONS(4383), - [sym__automatic_semicolon] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4383), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4383), + [3086] = { + [sym__alpha_identifier] = ACTIONS(4660), + [anon_sym_AT] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_where] = ACTIONS(4660), + [anon_sym_object] = ACTIONS(4660), + [anon_sym_fun] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_get] = ACTIONS(4660), + [anon_sym_set] = ACTIONS(4660), + [anon_sym_this] = ACTIONS(4660), + [anon_sym_super] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [sym_label] = ACTIONS(4660), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4662), + [anon_sym_QMARK_COLON] = ACTIONS(4662), + [anon_sym_AMP_AMP] = ACTIONS(4662), + [anon_sym_PIPE_PIPE] = ACTIONS(4662), + [anon_sym_null] = ACTIONS(4660), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_when] = ACTIONS(4660), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_throw] = ACTIONS(4660), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_PLUS_EQ] = ACTIONS(4662), + [anon_sym_DASH_EQ] = ACTIONS(4662), + [anon_sym_STAR_EQ] = ACTIONS(4662), + [anon_sym_SLASH_EQ] = ACTIONS(4662), + [anon_sym_PERCENT_EQ] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4662), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4662), + [anon_sym_LT_EQ] = ACTIONS(4662), + [anon_sym_GT_EQ] = ACTIONS(4662), + [anon_sym_BANGin] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_BANGis] = ACTIONS(4662), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_as_QMARK] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(4660), + [anon_sym_BANG_BANG] = ACTIONS(4662), + [anon_sym_data] = ACTIONS(4660), + [anon_sym_inner] = ACTIONS(4660), + [anon_sym_value] = ACTIONS(4660), + [anon_sym_expect] = ACTIONS(4660), + [anon_sym_actual] = ACTIONS(4660), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4662), + [anon_sym_continue_AT] = ACTIONS(4662), + [anon_sym_break_AT] = ACTIONS(4662), + [anon_sym_this_AT] = ACTIONS(4662), + [anon_sym_super_AT] = ACTIONS(4662), + [sym_real_literal] = ACTIONS(4662), + [sym_integer_literal] = ACTIONS(4660), + [sym_hex_literal] = ACTIONS(4662), + [sym_bin_literal] = ACTIONS(4662), + [anon_sym_true] = ACTIONS(4660), + [anon_sym_false] = ACTIONS(4660), + [anon_sym_SQUOTE] = ACTIONS(4662), + [sym__backtick_identifier] = ACTIONS(4662), + [sym__automatic_semicolon] = ACTIONS(4662), + [sym_safe_nav] = ACTIONS(4662), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4662), }, - [3042] = { - [sym_type_arguments] = STATE(6730), - [sym__alpha_identifier] = ACTIONS(4219), - [anon_sym_AT] = ACTIONS(4221), - [anon_sym_COLON] = ACTIONS(6677), - [anon_sym_LBRACK] = ACTIONS(4221), - [anon_sym_RBRACK] = ACTIONS(4221), - [anon_sym_as] = ACTIONS(4219), - [anon_sym_EQ] = ACTIONS(4219), - [anon_sym_LBRACE] = ACTIONS(4221), - [anon_sym_RBRACE] = ACTIONS(4221), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_COMMA] = ACTIONS(4221), - [anon_sym_RPAREN] = ACTIONS(4221), - [anon_sym_by] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4219), - [anon_sym_GT] = ACTIONS(4219), - [anon_sym_where] = ACTIONS(4219), - [anon_sym_DOT] = ACTIONS(4219), - [anon_sym_SEMI] = ACTIONS(4221), - [anon_sym_get] = ACTIONS(4219), - [anon_sym_set] = ACTIONS(4219), - [sym__quest] = ACTIONS(4177), - [anon_sym_STAR] = ACTIONS(4219), - [anon_sym_DASH_GT] = ACTIONS(4221), - [sym_label] = ACTIONS(4221), - [anon_sym_in] = ACTIONS(4219), - [anon_sym_while] = ACTIONS(4219), - [anon_sym_DOT_DOT] = ACTIONS(4221), - [anon_sym_QMARK_COLON] = ACTIONS(4221), - [anon_sym_AMP_AMP] = ACTIONS(4221), - [anon_sym_PIPE_PIPE] = ACTIONS(4221), - [anon_sym_else] = ACTIONS(4219), - [anon_sym_COLON_COLON] = ACTIONS(4221), - [anon_sym_PLUS_EQ] = ACTIONS(4221), - [anon_sym_DASH_EQ] = ACTIONS(4221), - [anon_sym_STAR_EQ] = ACTIONS(4221), - [anon_sym_SLASH_EQ] = ACTIONS(4221), - [anon_sym_PERCENT_EQ] = ACTIONS(4221), - [anon_sym_BANG_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4221), - [anon_sym_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4221), - [anon_sym_LT_EQ] = ACTIONS(4221), - [anon_sym_GT_EQ] = ACTIONS(4221), - [anon_sym_BANGin] = ACTIONS(4221), - [anon_sym_is] = ACTIONS(4219), - [anon_sym_BANGis] = ACTIONS(4221), - [anon_sym_PLUS] = ACTIONS(4219), - [anon_sym_DASH] = ACTIONS(4219), - [anon_sym_SLASH] = ACTIONS(4219), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4221), - [anon_sym_PLUS_PLUS] = ACTIONS(4221), - [anon_sym_DASH_DASH] = ACTIONS(4221), - [anon_sym_BANG_BANG] = ACTIONS(4221), - [anon_sym_suspend] = ACTIONS(4219), - [anon_sym_sealed] = ACTIONS(4219), - [anon_sym_annotation] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4219), - [anon_sym_inner] = ACTIONS(4219), - [anon_sym_value] = ACTIONS(4219), - [anon_sym_override] = ACTIONS(4219), - [anon_sym_lateinit] = ACTIONS(4219), - [anon_sym_public] = ACTIONS(4219), - [anon_sym_private] = ACTIONS(4219), - [anon_sym_internal] = ACTIONS(4219), - [anon_sym_protected] = ACTIONS(4219), - [anon_sym_tailrec] = ACTIONS(4219), - [anon_sym_operator] = ACTIONS(4219), - [anon_sym_infix] = ACTIONS(4219), - [anon_sym_inline] = ACTIONS(4219), - [anon_sym_external] = ACTIONS(4219), - [sym_property_modifier] = ACTIONS(4219), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_final] = ACTIONS(4219), - [anon_sym_open] = ACTIONS(4219), - [anon_sym_vararg] = ACTIONS(4219), - [anon_sym_noinline] = ACTIONS(4219), - [anon_sym_crossinline] = ACTIONS(4219), - [anon_sym_expect] = ACTIONS(4219), - [anon_sym_actual] = ACTIONS(4219), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4221), - [sym_safe_nav] = ACTIONS(4221), + [3087] = { + [sym__alpha_identifier] = ACTIONS(4489), + [anon_sym_AT] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4491), + [anon_sym_RBRACK] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4489), + [anon_sym_constructor] = ACTIONS(4489), + [anon_sym_LBRACE] = ACTIONS(4491), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_LPAREN] = ACTIONS(4491), + [anon_sym_COMMA] = ACTIONS(4491), + [anon_sym_RPAREN] = ACTIONS(4491), + [anon_sym_LT] = ACTIONS(4489), + [anon_sym_GT] = ACTIONS(4489), + [anon_sym_where] = ACTIONS(4489), + [anon_sym_DOT] = ACTIONS(4489), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_get] = ACTIONS(4489), + [anon_sym_set] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4489), + [anon_sym_DASH_GT] = ACTIONS(4491), + [sym_label] = ACTIONS(4491), + [anon_sym_in] = ACTIONS(4489), + [anon_sym_while] = ACTIONS(4489), + [anon_sym_DOT_DOT] = ACTIONS(4491), + [anon_sym_QMARK_COLON] = ACTIONS(4491), + [anon_sym_AMP_AMP] = ACTIONS(4491), + [anon_sym_PIPE_PIPE] = ACTIONS(4491), + [anon_sym_else] = ACTIONS(4489), + [anon_sym_COLON_COLON] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ] = ACTIONS(4489), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ] = ACTIONS(4489), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4491), + [anon_sym_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_EQ] = ACTIONS(4491), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4489), + [anon_sym_BANGis] = ACTIONS(4491), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4489), + [anon_sym_PERCENT] = ACTIONS(4489), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4491), + [anon_sym_DASH_DASH] = ACTIONS(4491), + [anon_sym_BANG_BANG] = ACTIONS(4491), + [anon_sym_suspend] = ACTIONS(4489), + [anon_sym_sealed] = ACTIONS(4489), + [anon_sym_annotation] = ACTIONS(4489), + [anon_sym_data] = ACTIONS(4489), + [anon_sym_inner] = ACTIONS(4489), + [anon_sym_value] = ACTIONS(4489), + [anon_sym_override] = ACTIONS(4489), + [anon_sym_lateinit] = ACTIONS(4489), + [anon_sym_public] = ACTIONS(4489), + [anon_sym_private] = ACTIONS(4489), + [anon_sym_internal] = ACTIONS(4489), + [anon_sym_protected] = ACTIONS(4489), + [anon_sym_tailrec] = ACTIONS(4489), + [anon_sym_operator] = ACTIONS(4489), + [anon_sym_infix] = ACTIONS(4489), + [anon_sym_inline] = ACTIONS(4489), + [anon_sym_external] = ACTIONS(4489), + [sym_property_modifier] = ACTIONS(4489), + [anon_sym_abstract] = ACTIONS(4489), + [anon_sym_final] = ACTIONS(4489), + [anon_sym_open] = ACTIONS(4489), + [anon_sym_vararg] = ACTIONS(4489), + [anon_sym_noinline] = ACTIONS(4489), + [anon_sym_crossinline] = ACTIONS(4489), + [anon_sym_expect] = ACTIONS(4489), + [anon_sym_actual] = ACTIONS(4489), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4491), + [sym_safe_nav] = ACTIONS(4491), [sym_multiline_comment] = ACTIONS(3), }, - [3043] = { - [aux_sym_nullable_type_repeat1] = STATE(3080), - [sym__alpha_identifier] = ACTIONS(4250), - [anon_sym_AT] = ACTIONS(4252), - [anon_sym_LBRACK] = ACTIONS(4252), - [anon_sym_RBRACK] = ACTIONS(4252), - [anon_sym_as] = ACTIONS(4250), - [anon_sym_EQ] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4252), - [anon_sym_RBRACE] = ACTIONS(4252), - [anon_sym_LPAREN] = ACTIONS(4252), - [anon_sym_COMMA] = ACTIONS(4252), - [anon_sym_RPAREN] = ACTIONS(4252), - [anon_sym_by] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4250), - [anon_sym_GT] = ACTIONS(4250), - [anon_sym_where] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4250), - [anon_sym_SEMI] = ACTIONS(4252), - [anon_sym_get] = ACTIONS(4250), - [anon_sym_set] = ACTIONS(4250), - [sym__quest] = ACTIONS(6679), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_DASH_GT] = ACTIONS(4252), - [sym_label] = ACTIONS(4252), - [anon_sym_in] = ACTIONS(4250), - [anon_sym_while] = ACTIONS(4250), - [anon_sym_DOT_DOT] = ACTIONS(4252), - [anon_sym_QMARK_COLON] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4252), - [anon_sym_PIPE_PIPE] = ACTIONS(4252), - [anon_sym_else] = ACTIONS(4250), - [anon_sym_COLON_COLON] = ACTIONS(4252), - [anon_sym_PLUS_EQ] = ACTIONS(4252), - [anon_sym_DASH_EQ] = ACTIONS(4252), - [anon_sym_STAR_EQ] = ACTIONS(4252), - [anon_sym_SLASH_EQ] = ACTIONS(4252), - [anon_sym_PERCENT_EQ] = ACTIONS(4252), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), - [anon_sym_LT_EQ] = ACTIONS(4252), - [anon_sym_GT_EQ] = ACTIONS(4252), - [anon_sym_BANGin] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4250), - [anon_sym_BANGis] = ACTIONS(4252), - [anon_sym_PLUS] = ACTIONS(4250), - [anon_sym_DASH] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4250), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_as_QMARK] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4252), - [anon_sym_DASH_DASH] = ACTIONS(4252), - [anon_sym_BANG_BANG] = ACTIONS(4252), - [anon_sym_suspend] = ACTIONS(4250), - [anon_sym_sealed] = ACTIONS(4250), - [anon_sym_annotation] = ACTIONS(4250), - [anon_sym_data] = ACTIONS(4250), - [anon_sym_inner] = ACTIONS(4250), - [anon_sym_value] = ACTIONS(4250), - [anon_sym_override] = ACTIONS(4250), - [anon_sym_lateinit] = ACTIONS(4250), - [anon_sym_public] = ACTIONS(4250), - [anon_sym_private] = ACTIONS(4250), - [anon_sym_internal] = ACTIONS(4250), - [anon_sym_protected] = ACTIONS(4250), - [anon_sym_tailrec] = ACTIONS(4250), - [anon_sym_operator] = ACTIONS(4250), - [anon_sym_infix] = ACTIONS(4250), - [anon_sym_inline] = ACTIONS(4250), - [anon_sym_external] = ACTIONS(4250), - [sym_property_modifier] = ACTIONS(4250), - [anon_sym_abstract] = ACTIONS(4250), - [anon_sym_final] = ACTIONS(4250), - [anon_sym_open] = ACTIONS(4250), - [anon_sym_vararg] = ACTIONS(4250), - [anon_sym_noinline] = ACTIONS(4250), - [anon_sym_crossinline] = ACTIONS(4250), - [anon_sym_expect] = ACTIONS(4250), - [anon_sym_actual] = ACTIONS(4250), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4252), - [sym_safe_nav] = ACTIONS(4252), - [sym_multiline_comment] = ACTIONS(3), + [3088] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(6632), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(6634), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, - [3044] = { - [sym_indexing_suffix] = STATE(7443), - [sym_navigation_suffix] = STATE(7443), - [sym__postfix_unary_operator] = STATE(7443), - [sym__member_access_operator] = STATE(7875), - [sym__postfix_unary_suffix] = STATE(7443), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7443), - [sym__alpha_identifier] = ACTIONS(4034), - [anon_sym_AT] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4038), - [anon_sym_as] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4070), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_COMMA] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_where] = ACTIONS(4034), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_get] = ACTIONS(4034), - [anon_sym_set] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4034), - [sym_label] = ACTIONS(4036), - [anon_sym_in] = ACTIONS(4034), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_QMARK_COLON] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_else] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4046), - [anon_sym_PLUS_EQ] = ACTIONS(4073), - [anon_sym_DASH_EQ] = ACTIONS(4073), - [anon_sym_STAR_EQ] = ACTIONS(4073), - [anon_sym_SLASH_EQ] = ACTIONS(4073), - [anon_sym_PERCENT_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT_EQ] = ACTIONS(4036), - [anon_sym_GT_EQ] = ACTIONS(4036), - [anon_sym_BANGin] = ACTIONS(4036), - [anon_sym_is] = ACTIONS(4034), - [anon_sym_BANGis] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_SLASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_as_QMARK] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(4051), - [anon_sym_BANG_BANG] = ACTIONS(4051), - [anon_sym_suspend] = ACTIONS(4034), - [anon_sym_sealed] = ACTIONS(4034), - [anon_sym_annotation] = ACTIONS(4034), - [anon_sym_data] = ACTIONS(4034), - [anon_sym_inner] = ACTIONS(4034), - [anon_sym_value] = ACTIONS(4034), - [anon_sym_override] = ACTIONS(4034), - [anon_sym_lateinit] = ACTIONS(4034), - [anon_sym_public] = ACTIONS(4034), - [anon_sym_private] = ACTIONS(4034), - [anon_sym_internal] = ACTIONS(4034), - [anon_sym_protected] = ACTIONS(4034), - [anon_sym_tailrec] = ACTIONS(4034), - [anon_sym_operator] = ACTIONS(4034), - [anon_sym_infix] = ACTIONS(4034), - [anon_sym_inline] = ACTIONS(4034), - [anon_sym_external] = ACTIONS(4034), - [sym_property_modifier] = ACTIONS(4034), - [anon_sym_abstract] = ACTIONS(4034), - [anon_sym_final] = ACTIONS(4034), - [anon_sym_open] = ACTIONS(4034), - [anon_sym_vararg] = ACTIONS(4034), - [anon_sym_noinline] = ACTIONS(4034), - [anon_sym_crossinline] = ACTIONS(4034), - [anon_sym_expect] = ACTIONS(4034), - [anon_sym_actual] = ACTIONS(4034), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4036), - [sym__automatic_semicolon] = ACTIONS(4036), - [sym_safe_nav] = ACTIONS(4046), - [sym_multiline_comment] = ACTIONS(3), + [3089] = { + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(4432), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_object] = ACTIONS(4430), + [anon_sym_fun] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_this] = ACTIONS(4430), + [anon_sym_super] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [sym_label] = ACTIONS(4430), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_null] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_when] = ACTIONS(4430), + [anon_sym_try] = ACTIONS(4430), + [anon_sym_throw] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4432), + [anon_sym_continue_AT] = ACTIONS(4432), + [anon_sym_break_AT] = ACTIONS(4432), + [anon_sym_this_AT] = ACTIONS(4432), + [anon_sym_super_AT] = ACTIONS(4432), + [sym_real_literal] = ACTIONS(4432), + [sym_integer_literal] = ACTIONS(4430), + [sym_hex_literal] = ACTIONS(4432), + [sym_bin_literal] = ACTIONS(4432), + [anon_sym_true] = ACTIONS(4430), + [anon_sym_false] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4432), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4432), }, - [3045] = { - [sym_enum_class_body] = STATE(3147), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_fun] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(4457), - [anon_sym_object] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_this] = ACTIONS(4457), - [anon_sym_super] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [sym_label] = ACTIONS(4457), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_null] = ACTIONS(4457), - [anon_sym_if] = ACTIONS(4457), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_when] = ACTIONS(4457), - [anon_sym_try] = ACTIONS(4457), - [anon_sym_throw] = ACTIONS(4457), - [anon_sym_return] = ACTIONS(4457), - [anon_sym_continue] = ACTIONS(4457), - [anon_sym_break] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4459), - [anon_sym_continue_AT] = ACTIONS(4459), - [anon_sym_break_AT] = ACTIONS(4459), - [anon_sym_this_AT] = ACTIONS(4459), - [anon_sym_super_AT] = ACTIONS(4459), - [sym_real_literal] = ACTIONS(4459), - [sym_integer_literal] = ACTIONS(4457), - [sym_hex_literal] = ACTIONS(4459), - [sym_bin_literal] = ACTIONS(4459), - [anon_sym_true] = ACTIONS(4457), - [anon_sym_false] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4459), - [sym__backtick_identifier] = ACTIONS(4459), - [sym__automatic_semicolon] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4459), + [3090] = { + [sym__alpha_identifier] = ACTIONS(4846), + [anon_sym_AT] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_as] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_where] = ACTIONS(4846), + [anon_sym_object] = ACTIONS(4846), + [anon_sym_fun] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_get] = ACTIONS(4846), + [anon_sym_set] = ACTIONS(4846), + [anon_sym_this] = ACTIONS(4846), + [anon_sym_super] = ACTIONS(4846), + [anon_sym_STAR] = ACTIONS(4846), + [sym_label] = ACTIONS(4846), + [anon_sym_in] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4848), + [anon_sym_QMARK_COLON] = ACTIONS(4848), + [anon_sym_AMP_AMP] = ACTIONS(4848), + [anon_sym_PIPE_PIPE] = ACTIONS(4848), + [anon_sym_null] = ACTIONS(4846), + [anon_sym_if] = ACTIONS(4846), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_when] = ACTIONS(4846), + [anon_sym_try] = ACTIONS(4846), + [anon_sym_throw] = ACTIONS(4846), + [anon_sym_return] = ACTIONS(4846), + [anon_sym_continue] = ACTIONS(4846), + [anon_sym_break] = ACTIONS(4846), + [anon_sym_COLON_COLON] = ACTIONS(4848), + [anon_sym_PLUS_EQ] = ACTIONS(4848), + [anon_sym_DASH_EQ] = ACTIONS(4848), + [anon_sym_STAR_EQ] = ACTIONS(4848), + [anon_sym_SLASH_EQ] = ACTIONS(4848), + [anon_sym_PERCENT_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4848), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_BANGin] = ACTIONS(4848), + [anon_sym_is] = ACTIONS(4846), + [anon_sym_BANGis] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4846), + [anon_sym_PERCENT] = ACTIONS(4846), + [anon_sym_as_QMARK] = ACTIONS(4848), + [anon_sym_PLUS_PLUS] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4846), + [anon_sym_BANG_BANG] = ACTIONS(4848), + [anon_sym_data] = ACTIONS(4846), + [anon_sym_inner] = ACTIONS(4846), + [anon_sym_value] = ACTIONS(4846), + [anon_sym_expect] = ACTIONS(4846), + [anon_sym_actual] = ACTIONS(4846), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4848), + [anon_sym_continue_AT] = ACTIONS(4848), + [anon_sym_break_AT] = ACTIONS(4848), + [anon_sym_this_AT] = ACTIONS(4848), + [anon_sym_super_AT] = ACTIONS(4848), + [sym_real_literal] = ACTIONS(4848), + [sym_integer_literal] = ACTIONS(4846), + [sym_hex_literal] = ACTIONS(4848), + [sym_bin_literal] = ACTIONS(4848), + [anon_sym_true] = ACTIONS(4846), + [anon_sym_false] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4848), + [sym__backtick_identifier] = ACTIONS(4848), + [sym__automatic_semicolon] = ACTIONS(4848), + [sym_safe_nav] = ACTIONS(4848), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4848), }, - [3046] = { - [sym_class_body] = STATE(3340), - [sym__alpha_identifier] = ACTIONS(4461), - [anon_sym_AT] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_as] = ACTIONS(4461), - [anon_sym_EQ] = ACTIONS(4461), - [anon_sym_fun] = ACTIONS(4461), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_where] = ACTIONS(4461), - [anon_sym_object] = ACTIONS(4461), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [anon_sym_get] = ACTIONS(4461), - [anon_sym_set] = ACTIONS(4461), - [anon_sym_this] = ACTIONS(4461), - [anon_sym_super] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [sym_label] = ACTIONS(4461), - [anon_sym_in] = ACTIONS(4461), - [anon_sym_DOT_DOT] = ACTIONS(4463), - [anon_sym_QMARK_COLON] = ACTIONS(4463), - [anon_sym_AMP_AMP] = ACTIONS(4463), - [anon_sym_PIPE_PIPE] = ACTIONS(4463), - [anon_sym_null] = ACTIONS(4461), - [anon_sym_if] = ACTIONS(4461), - [anon_sym_else] = ACTIONS(4461), - [anon_sym_when] = ACTIONS(4461), - [anon_sym_try] = ACTIONS(4461), - [anon_sym_throw] = ACTIONS(4461), - [anon_sym_return] = ACTIONS(4461), - [anon_sym_continue] = ACTIONS(4461), - [anon_sym_break] = ACTIONS(4461), - [anon_sym_COLON_COLON] = ACTIONS(4463), - [anon_sym_PLUS_EQ] = ACTIONS(4463), - [anon_sym_DASH_EQ] = ACTIONS(4463), - [anon_sym_STAR_EQ] = ACTIONS(4463), - [anon_sym_SLASH_EQ] = ACTIONS(4463), - [anon_sym_PERCENT_EQ] = ACTIONS(4463), - [anon_sym_BANG_EQ] = ACTIONS(4461), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4463), - [anon_sym_EQ_EQ] = ACTIONS(4461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4463), - [anon_sym_LT_EQ] = ACTIONS(4463), - [anon_sym_GT_EQ] = ACTIONS(4463), - [anon_sym_BANGin] = ACTIONS(4463), - [anon_sym_is] = ACTIONS(4461), - [anon_sym_BANGis] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(4461), - [anon_sym_as_QMARK] = ACTIONS(4463), - [anon_sym_PLUS_PLUS] = ACTIONS(4463), - [anon_sym_DASH_DASH] = ACTIONS(4463), - [anon_sym_BANG] = ACTIONS(4461), - [anon_sym_BANG_BANG] = ACTIONS(4463), - [anon_sym_data] = ACTIONS(4461), - [anon_sym_inner] = ACTIONS(4461), - [anon_sym_value] = ACTIONS(4461), - [anon_sym_expect] = ACTIONS(4461), - [anon_sym_actual] = ACTIONS(4461), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4463), - [anon_sym_continue_AT] = ACTIONS(4463), - [anon_sym_break_AT] = ACTIONS(4463), - [anon_sym_this_AT] = ACTIONS(4463), - [anon_sym_super_AT] = ACTIONS(4463), - [sym_real_literal] = ACTIONS(4463), - [sym_integer_literal] = ACTIONS(4461), - [sym_hex_literal] = ACTIONS(4463), - [sym_bin_literal] = ACTIONS(4463), - [anon_sym_true] = ACTIONS(4461), - [anon_sym_false] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym__backtick_identifier] = ACTIONS(4463), - [sym__automatic_semicolon] = ACTIONS(4463), - [sym_safe_nav] = ACTIONS(4463), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4463), + [3091] = { + [sym__alpha_identifier] = ACTIONS(5067), + [anon_sym_AT] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_as] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(5067), + [anon_sym_LBRACE] = ACTIONS(5069), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5069), + [anon_sym_COMMA] = ACTIONS(5069), + [anon_sym_LT] = ACTIONS(5067), + [anon_sym_GT] = ACTIONS(5067), + [anon_sym_where] = ACTIONS(5067), + [anon_sym_object] = ACTIONS(5067), + [anon_sym_fun] = ACTIONS(5067), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [anon_sym_get] = ACTIONS(5067), + [anon_sym_set] = ACTIONS(5067), + [anon_sym_this] = ACTIONS(5067), + [anon_sym_super] = ACTIONS(5067), + [anon_sym_STAR] = ACTIONS(5067), + [sym_label] = ACTIONS(5067), + [anon_sym_in] = ACTIONS(5067), + [anon_sym_DOT_DOT] = ACTIONS(5069), + [anon_sym_QMARK_COLON] = ACTIONS(5069), + [anon_sym_AMP_AMP] = ACTIONS(5069), + [anon_sym_PIPE_PIPE] = ACTIONS(5069), + [anon_sym_null] = ACTIONS(5067), + [anon_sym_if] = ACTIONS(5067), + [anon_sym_else] = ACTIONS(5067), + [anon_sym_when] = ACTIONS(5067), + [anon_sym_try] = ACTIONS(5067), + [anon_sym_throw] = ACTIONS(5067), + [anon_sym_return] = ACTIONS(5067), + [anon_sym_continue] = ACTIONS(5067), + [anon_sym_break] = ACTIONS(5067), + [anon_sym_COLON_COLON] = ACTIONS(5069), + [anon_sym_PLUS_EQ] = ACTIONS(5069), + [anon_sym_DASH_EQ] = ACTIONS(5069), + [anon_sym_STAR_EQ] = ACTIONS(5069), + [anon_sym_SLASH_EQ] = ACTIONS(5069), + [anon_sym_PERCENT_EQ] = ACTIONS(5069), + [anon_sym_BANG_EQ] = ACTIONS(5067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5069), + [anon_sym_EQ_EQ] = ACTIONS(5067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5069), + [anon_sym_LT_EQ] = ACTIONS(5069), + [anon_sym_GT_EQ] = ACTIONS(5069), + [anon_sym_BANGin] = ACTIONS(5069), + [anon_sym_is] = ACTIONS(5067), + [anon_sym_BANGis] = ACTIONS(5069), + [anon_sym_PLUS] = ACTIONS(5067), + [anon_sym_DASH] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5067), + [anon_sym_PERCENT] = ACTIONS(5067), + [anon_sym_as_QMARK] = ACTIONS(5069), + [anon_sym_PLUS_PLUS] = ACTIONS(5069), + [anon_sym_DASH_DASH] = ACTIONS(5069), + [anon_sym_BANG] = ACTIONS(5067), + [anon_sym_BANG_BANG] = ACTIONS(5069), + [anon_sym_data] = ACTIONS(5067), + [anon_sym_inner] = ACTIONS(5067), + [anon_sym_value] = ACTIONS(5067), + [anon_sym_expect] = ACTIONS(5067), + [anon_sym_actual] = ACTIONS(5067), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5069), + [anon_sym_continue_AT] = ACTIONS(5069), + [anon_sym_break_AT] = ACTIONS(5069), + [anon_sym_this_AT] = ACTIONS(5069), + [anon_sym_super_AT] = ACTIONS(5069), + [sym_real_literal] = ACTIONS(5069), + [sym_integer_literal] = ACTIONS(5067), + [sym_hex_literal] = ACTIONS(5069), + [sym_bin_literal] = ACTIONS(5069), + [anon_sym_true] = ACTIONS(5067), + [anon_sym_false] = ACTIONS(5067), + [anon_sym_SQUOTE] = ACTIONS(5069), + [sym__backtick_identifier] = ACTIONS(5069), + [sym__automatic_semicolon] = ACTIONS(5069), + [sym_safe_nav] = ACTIONS(5069), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5069), }, - [3047] = { - [sym_class_body] = STATE(3327), - [sym__alpha_identifier] = ACTIONS(4722), - [anon_sym_AT] = ACTIONS(4724), - [anon_sym_LBRACK] = ACTIONS(4724), - [anon_sym_as] = ACTIONS(4722), - [anon_sym_EQ] = ACTIONS(4722), - [anon_sym_fun] = ACTIONS(4722), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4724), - [anon_sym_LPAREN] = ACTIONS(4724), - [anon_sym_COMMA] = ACTIONS(4724), - [anon_sym_LT] = ACTIONS(4722), - [anon_sym_GT] = ACTIONS(4722), - [anon_sym_where] = ACTIONS(4722), - [anon_sym_object] = ACTIONS(4722), - [anon_sym_DOT] = ACTIONS(4722), - [anon_sym_SEMI] = ACTIONS(4724), - [anon_sym_get] = ACTIONS(4722), - [anon_sym_set] = ACTIONS(4722), - [anon_sym_this] = ACTIONS(4722), - [anon_sym_super] = ACTIONS(4722), - [anon_sym_STAR] = ACTIONS(4722), - [sym_label] = ACTIONS(4722), - [anon_sym_in] = ACTIONS(4722), - [anon_sym_DOT_DOT] = ACTIONS(4724), - [anon_sym_QMARK_COLON] = ACTIONS(4724), - [anon_sym_AMP_AMP] = ACTIONS(4724), - [anon_sym_PIPE_PIPE] = ACTIONS(4724), - [anon_sym_null] = ACTIONS(4722), - [anon_sym_if] = ACTIONS(4722), - [anon_sym_else] = ACTIONS(4722), - [anon_sym_when] = ACTIONS(4722), - [anon_sym_try] = ACTIONS(4722), - [anon_sym_throw] = ACTIONS(4722), - [anon_sym_return] = ACTIONS(4722), - [anon_sym_continue] = ACTIONS(4722), - [anon_sym_break] = ACTIONS(4722), - [anon_sym_COLON_COLON] = ACTIONS(4724), - [anon_sym_PLUS_EQ] = ACTIONS(4724), - [anon_sym_DASH_EQ] = ACTIONS(4724), - [anon_sym_STAR_EQ] = ACTIONS(4724), - [anon_sym_SLASH_EQ] = ACTIONS(4724), - [anon_sym_PERCENT_EQ] = ACTIONS(4724), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_BANGin] = ACTIONS(4724), - [anon_sym_is] = ACTIONS(4722), - [anon_sym_BANGis] = ACTIONS(4724), - [anon_sym_PLUS] = ACTIONS(4722), - [anon_sym_DASH] = ACTIONS(4722), - [anon_sym_SLASH] = ACTIONS(4722), - [anon_sym_PERCENT] = ACTIONS(4722), - [anon_sym_as_QMARK] = ACTIONS(4724), - [anon_sym_PLUS_PLUS] = ACTIONS(4724), - [anon_sym_DASH_DASH] = ACTIONS(4724), - [anon_sym_BANG] = ACTIONS(4722), - [anon_sym_BANG_BANG] = ACTIONS(4724), - [anon_sym_data] = ACTIONS(4722), - [anon_sym_inner] = ACTIONS(4722), - [anon_sym_value] = ACTIONS(4722), - [anon_sym_expect] = ACTIONS(4722), - [anon_sym_actual] = ACTIONS(4722), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4724), - [anon_sym_continue_AT] = ACTIONS(4724), - [anon_sym_break_AT] = ACTIONS(4724), - [anon_sym_this_AT] = ACTIONS(4724), - [anon_sym_super_AT] = ACTIONS(4724), - [sym_real_literal] = ACTIONS(4724), - [sym_integer_literal] = ACTIONS(4722), - [sym_hex_literal] = ACTIONS(4724), - [sym_bin_literal] = ACTIONS(4724), - [anon_sym_true] = ACTIONS(4722), - [anon_sym_false] = ACTIONS(4722), - [anon_sym_SQUOTE] = ACTIONS(4724), - [sym__backtick_identifier] = ACTIONS(4724), - [sym__automatic_semicolon] = ACTIONS(4724), - [sym_safe_nav] = ACTIONS(4724), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4724), + [3092] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), }, - [3048] = { - [sym__alpha_identifier] = ACTIONS(4758), - [anon_sym_AT] = ACTIONS(4760), - [anon_sym_COLON] = ACTIONS(4758), - [anon_sym_LBRACK] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4758), - [anon_sym_EQ] = ACTIONS(4758), - [anon_sym_fun] = ACTIONS(4758), - [anon_sym_LBRACE] = ACTIONS(4760), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LT] = ACTIONS(4758), - [anon_sym_GT] = ACTIONS(4758), - [anon_sym_where] = ACTIONS(4758), - [anon_sym_object] = ACTIONS(4758), - [anon_sym_DOT] = ACTIONS(4758), - [anon_sym_SEMI] = ACTIONS(4760), - [anon_sym_get] = ACTIONS(4758), - [anon_sym_set] = ACTIONS(4758), - [anon_sym_this] = ACTIONS(4758), - [anon_sym_super] = ACTIONS(4758), - [anon_sym_STAR] = ACTIONS(4758), - [sym_label] = ACTIONS(4758), - [anon_sym_in] = ACTIONS(4758), - [anon_sym_DOT_DOT] = ACTIONS(4760), - [anon_sym_QMARK_COLON] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [anon_sym_null] = ACTIONS(4758), - [anon_sym_if] = ACTIONS(4758), - [anon_sym_else] = ACTIONS(4758), - [anon_sym_when] = ACTIONS(4758), - [anon_sym_try] = ACTIONS(4758), - [anon_sym_throw] = ACTIONS(4758), - [anon_sym_return] = ACTIONS(4758), - [anon_sym_continue] = ACTIONS(4758), - [anon_sym_break] = ACTIONS(4758), - [anon_sym_COLON_COLON] = ACTIONS(4760), - [anon_sym_PLUS_EQ] = ACTIONS(4760), - [anon_sym_DASH_EQ] = ACTIONS(4760), - [anon_sym_STAR_EQ] = ACTIONS(4760), - [anon_sym_SLASH_EQ] = ACTIONS(4760), - [anon_sym_PERCENT_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4758), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_BANGin] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4758), - [anon_sym_BANGis] = ACTIONS(4760), - [anon_sym_PLUS] = ACTIONS(4758), - [anon_sym_DASH] = ACTIONS(4758), - [anon_sym_SLASH] = ACTIONS(4758), - [anon_sym_PERCENT] = ACTIONS(4758), - [anon_sym_as_QMARK] = ACTIONS(4760), - [anon_sym_PLUS_PLUS] = ACTIONS(4760), - [anon_sym_DASH_DASH] = ACTIONS(4760), - [anon_sym_BANG] = ACTIONS(4758), - [anon_sym_BANG_BANG] = ACTIONS(4760), - [anon_sym_data] = ACTIONS(4758), - [anon_sym_inner] = ACTIONS(4758), - [anon_sym_value] = ACTIONS(4758), - [anon_sym_expect] = ACTIONS(4758), - [anon_sym_actual] = ACTIONS(4758), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4760), - [anon_sym_continue_AT] = ACTIONS(4760), - [anon_sym_break_AT] = ACTIONS(4760), - [anon_sym_this_AT] = ACTIONS(4760), - [anon_sym_super_AT] = ACTIONS(4760), - [sym_real_literal] = ACTIONS(4760), - [sym_integer_literal] = ACTIONS(4758), - [sym_hex_literal] = ACTIONS(4760), - [sym_bin_literal] = ACTIONS(4760), - [anon_sym_true] = ACTIONS(4758), - [anon_sym_false] = ACTIONS(4758), - [anon_sym_SQUOTE] = ACTIONS(4760), - [sym__backtick_identifier] = ACTIONS(4760), - [sym__automatic_semicolon] = ACTIONS(4760), - [sym_safe_nav] = ACTIONS(4760), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4760), + [3093] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(6634), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, - [3049] = { - [sym_indexing_suffix] = STATE(7443), - [sym_navigation_suffix] = STATE(7443), - [sym__postfix_unary_operator] = STATE(7443), - [sym__member_access_operator] = STATE(7875), - [sym__postfix_unary_suffix] = STATE(7443), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7443), - [sym__alpha_identifier] = ACTIONS(4034), - [anon_sym_AT] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4038), - [anon_sym_as] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4041), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_COMMA] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_where] = ACTIONS(4034), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_get] = ACTIONS(4034), - [anon_sym_set] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4034), - [sym_label] = ACTIONS(4036), - [anon_sym_in] = ACTIONS(4034), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_QMARK_COLON] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_else] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4046), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT_EQ] = ACTIONS(4036), - [anon_sym_GT_EQ] = ACTIONS(4036), - [anon_sym_BANGin] = ACTIONS(4036), - [anon_sym_is] = ACTIONS(4034), - [anon_sym_BANGis] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_SLASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_as_QMARK] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(4051), - [anon_sym_BANG_BANG] = ACTIONS(4051), - [anon_sym_suspend] = ACTIONS(4034), - [anon_sym_sealed] = ACTIONS(4034), - [anon_sym_annotation] = ACTIONS(4034), - [anon_sym_data] = ACTIONS(4034), - [anon_sym_inner] = ACTIONS(4034), - [anon_sym_value] = ACTIONS(4034), - [anon_sym_override] = ACTIONS(4034), - [anon_sym_lateinit] = ACTIONS(4034), - [anon_sym_public] = ACTIONS(4034), - [anon_sym_private] = ACTIONS(4034), - [anon_sym_internal] = ACTIONS(4034), - [anon_sym_protected] = ACTIONS(4034), - [anon_sym_tailrec] = ACTIONS(4034), - [anon_sym_operator] = ACTIONS(4034), - [anon_sym_infix] = ACTIONS(4034), - [anon_sym_inline] = ACTIONS(4034), - [anon_sym_external] = ACTIONS(4034), - [sym_property_modifier] = ACTIONS(4034), - [anon_sym_abstract] = ACTIONS(4034), - [anon_sym_final] = ACTIONS(4034), - [anon_sym_open] = ACTIONS(4034), - [anon_sym_vararg] = ACTIONS(4034), - [anon_sym_noinline] = ACTIONS(4034), - [anon_sym_crossinline] = ACTIONS(4034), - [anon_sym_expect] = ACTIONS(4034), - [anon_sym_actual] = ACTIONS(4034), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4036), - [sym__automatic_semicolon] = ACTIONS(4036), - [sym_safe_nav] = ACTIONS(4046), + [3094] = { + [sym__alpha_identifier] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1584), + [anon_sym_set] = ACTIONS(1584), + [anon_sym_this] = ACTIONS(1584), + [anon_sym_super] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [sym_label] = ACTIONS(1584), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(1584), + [anon_sym_try] = ACTIONS(1584), + [anon_sym_throw] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_COLON_COLON] = ACTIONS(1582), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1584), + [anon_sym_inner] = ACTIONS(1584), + [anon_sym_value] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1584), + [anon_sym_actual] = ACTIONS(1584), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1582), + [anon_sym_continue_AT] = ACTIONS(1582), + [anon_sym_break_AT] = ACTIONS(1582), + [anon_sym_this_AT] = ACTIONS(1582), + [anon_sym_super_AT] = ACTIONS(1582), + [sym_real_literal] = ACTIONS(1582), + [sym_integer_literal] = ACTIONS(1584), + [sym_hex_literal] = ACTIONS(1582), + [sym_bin_literal] = ACTIONS(1582), + [anon_sym_true] = ACTIONS(1584), + [anon_sym_false] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1582), + [sym__backtick_identifier] = ACTIONS(1582), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1582), }, - [3050] = { - [sym__alpha_identifier] = ACTIONS(4744), - [anon_sym_AT] = ACTIONS(4746), - [anon_sym_COLON] = ACTIONS(4744), - [anon_sym_LBRACK] = ACTIONS(4746), - [anon_sym_as] = ACTIONS(4744), - [anon_sym_EQ] = ACTIONS(4744), - [anon_sym_fun] = ACTIONS(4744), - [anon_sym_LBRACE] = ACTIONS(4746), - [anon_sym_RBRACE] = ACTIONS(4746), - [anon_sym_LPAREN] = ACTIONS(4746), - [anon_sym_COMMA] = ACTIONS(4746), - [anon_sym_LT] = ACTIONS(4744), - [anon_sym_GT] = ACTIONS(4744), - [anon_sym_where] = ACTIONS(4744), - [anon_sym_object] = ACTIONS(4744), - [anon_sym_DOT] = ACTIONS(4744), - [anon_sym_SEMI] = ACTIONS(4746), - [anon_sym_get] = ACTIONS(4744), - [anon_sym_set] = ACTIONS(4744), - [anon_sym_this] = ACTIONS(4744), - [anon_sym_super] = ACTIONS(4744), - [anon_sym_STAR] = ACTIONS(4744), - [sym_label] = ACTIONS(4744), - [anon_sym_in] = ACTIONS(4744), - [anon_sym_DOT_DOT] = ACTIONS(4746), - [anon_sym_QMARK_COLON] = ACTIONS(4746), - [anon_sym_AMP_AMP] = ACTIONS(4746), - [anon_sym_PIPE_PIPE] = ACTIONS(4746), - [anon_sym_null] = ACTIONS(4744), - [anon_sym_if] = ACTIONS(4744), - [anon_sym_else] = ACTIONS(4744), - [anon_sym_when] = ACTIONS(4744), - [anon_sym_try] = ACTIONS(4744), - [anon_sym_throw] = ACTIONS(4744), - [anon_sym_return] = ACTIONS(4744), - [anon_sym_continue] = ACTIONS(4744), - [anon_sym_break] = ACTIONS(4744), - [anon_sym_COLON_COLON] = ACTIONS(4746), - [anon_sym_PLUS_EQ] = ACTIONS(4746), - [anon_sym_DASH_EQ] = ACTIONS(4746), - [anon_sym_STAR_EQ] = ACTIONS(4746), - [anon_sym_SLASH_EQ] = ACTIONS(4746), - [anon_sym_PERCENT_EQ] = ACTIONS(4746), - [anon_sym_BANG_EQ] = ACTIONS(4744), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4746), - [anon_sym_EQ_EQ] = ACTIONS(4744), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4746), - [anon_sym_LT_EQ] = ACTIONS(4746), - [anon_sym_GT_EQ] = ACTIONS(4746), - [anon_sym_BANGin] = ACTIONS(4746), - [anon_sym_is] = ACTIONS(4744), - [anon_sym_BANGis] = ACTIONS(4746), - [anon_sym_PLUS] = ACTIONS(4744), - [anon_sym_DASH] = ACTIONS(4744), - [anon_sym_SLASH] = ACTIONS(4744), - [anon_sym_PERCENT] = ACTIONS(4744), - [anon_sym_as_QMARK] = ACTIONS(4746), - [anon_sym_PLUS_PLUS] = ACTIONS(4746), - [anon_sym_DASH_DASH] = ACTIONS(4746), - [anon_sym_BANG] = ACTIONS(4744), - [anon_sym_BANG_BANG] = ACTIONS(4746), - [anon_sym_data] = ACTIONS(4744), - [anon_sym_inner] = ACTIONS(4744), - [anon_sym_value] = ACTIONS(4744), - [anon_sym_expect] = ACTIONS(4744), - [anon_sym_actual] = ACTIONS(4744), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4746), - [anon_sym_continue_AT] = ACTIONS(4746), - [anon_sym_break_AT] = ACTIONS(4746), - [anon_sym_this_AT] = ACTIONS(4746), - [anon_sym_super_AT] = ACTIONS(4746), - [sym_real_literal] = ACTIONS(4746), - [sym_integer_literal] = ACTIONS(4744), - [sym_hex_literal] = ACTIONS(4746), - [sym_bin_literal] = ACTIONS(4746), - [anon_sym_true] = ACTIONS(4744), - [anon_sym_false] = ACTIONS(4744), - [anon_sym_SQUOTE] = ACTIONS(4746), - [sym__backtick_identifier] = ACTIONS(4746), - [sym__automatic_semicolon] = ACTIONS(4746), - [sym_safe_nav] = ACTIONS(4746), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4746), + [3095] = { + [sym__alpha_identifier] = ACTIONS(5059), + [anon_sym_AT] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [anon_sym_as] = ACTIONS(5059), + [anon_sym_EQ] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5061), + [anon_sym_RBRACE] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5061), + [anon_sym_COMMA] = ACTIONS(5061), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_where] = ACTIONS(5059), + [anon_sym_object] = ACTIONS(5059), + [anon_sym_fun] = ACTIONS(5059), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [anon_sym_get] = ACTIONS(5059), + [anon_sym_set] = ACTIONS(5059), + [anon_sym_this] = ACTIONS(5059), + [anon_sym_super] = ACTIONS(5059), + [anon_sym_STAR] = ACTIONS(5059), + [sym_label] = ACTIONS(5059), + [anon_sym_in] = ACTIONS(5059), + [anon_sym_DOT_DOT] = ACTIONS(5061), + [anon_sym_QMARK_COLON] = ACTIONS(5061), + [anon_sym_AMP_AMP] = ACTIONS(5061), + [anon_sym_PIPE_PIPE] = ACTIONS(5061), + [anon_sym_null] = ACTIONS(5059), + [anon_sym_if] = ACTIONS(5059), + [anon_sym_else] = ACTIONS(5059), + [anon_sym_when] = ACTIONS(5059), + [anon_sym_try] = ACTIONS(5059), + [anon_sym_throw] = ACTIONS(5059), + [anon_sym_return] = ACTIONS(5059), + [anon_sym_continue] = ACTIONS(5059), + [anon_sym_break] = ACTIONS(5059), + [anon_sym_COLON_COLON] = ACTIONS(5061), + [anon_sym_PLUS_EQ] = ACTIONS(5061), + [anon_sym_DASH_EQ] = ACTIONS(5061), + [anon_sym_STAR_EQ] = ACTIONS(5061), + [anon_sym_SLASH_EQ] = ACTIONS(5061), + [anon_sym_PERCENT_EQ] = ACTIONS(5061), + [anon_sym_BANG_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5061), + [anon_sym_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5061), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_BANGin] = ACTIONS(5061), + [anon_sym_is] = ACTIONS(5059), + [anon_sym_BANGis] = ACTIONS(5061), + [anon_sym_PLUS] = ACTIONS(5059), + [anon_sym_DASH] = ACTIONS(5059), + [anon_sym_SLASH] = ACTIONS(5059), + [anon_sym_PERCENT] = ACTIONS(5059), + [anon_sym_as_QMARK] = ACTIONS(5061), + [anon_sym_PLUS_PLUS] = ACTIONS(5061), + [anon_sym_DASH_DASH] = ACTIONS(5061), + [anon_sym_BANG] = ACTIONS(5059), + [anon_sym_BANG_BANG] = ACTIONS(5061), + [anon_sym_data] = ACTIONS(5059), + [anon_sym_inner] = ACTIONS(5059), + [anon_sym_value] = ACTIONS(5059), + [anon_sym_expect] = ACTIONS(5059), + [anon_sym_actual] = ACTIONS(5059), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5061), + [anon_sym_continue_AT] = ACTIONS(5061), + [anon_sym_break_AT] = ACTIONS(5061), + [anon_sym_this_AT] = ACTIONS(5061), + [anon_sym_super_AT] = ACTIONS(5061), + [sym_real_literal] = ACTIONS(5061), + [sym_integer_literal] = ACTIONS(5059), + [sym_hex_literal] = ACTIONS(5061), + [sym_bin_literal] = ACTIONS(5061), + [anon_sym_true] = ACTIONS(5059), + [anon_sym_false] = ACTIONS(5059), + [anon_sym_SQUOTE] = ACTIONS(5061), + [sym__backtick_identifier] = ACTIONS(5061), + [sym__automatic_semicolon] = ACTIONS(5061), + [sym_safe_nav] = ACTIONS(5061), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5061), }, - [3051] = { - [sym_function_body] = STATE(3686), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(6681), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_RBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_where] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4269), - [anon_sym_DASH_GT] = ACTIONS(4271), - [sym_label] = ACTIONS(4271), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_while] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_PLUS_EQ] = ACTIONS(4271), - [anon_sym_DASH_EQ] = ACTIONS(4271), - [anon_sym_STAR_EQ] = ACTIONS(4271), - [anon_sym_SLASH_EQ] = ACTIONS(4271), - [anon_sym_PERCENT_EQ] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4269), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_suspend] = ACTIONS(4269), - [anon_sym_sealed] = ACTIONS(4269), - [anon_sym_annotation] = ACTIONS(4269), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_override] = ACTIONS(4269), - [anon_sym_lateinit] = ACTIONS(4269), - [anon_sym_public] = ACTIONS(4269), - [anon_sym_private] = ACTIONS(4269), - [anon_sym_internal] = ACTIONS(4269), - [anon_sym_protected] = ACTIONS(4269), - [anon_sym_tailrec] = ACTIONS(4269), - [anon_sym_operator] = ACTIONS(4269), - [anon_sym_infix] = ACTIONS(4269), - [anon_sym_inline] = ACTIONS(4269), - [anon_sym_external] = ACTIONS(4269), - [sym_property_modifier] = ACTIONS(4269), - [anon_sym_abstract] = ACTIONS(4269), - [anon_sym_final] = ACTIONS(4269), - [anon_sym_open] = ACTIONS(4269), - [anon_sym_vararg] = ACTIONS(4269), - [anon_sym_noinline] = ACTIONS(4269), - [anon_sym_crossinline] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), + [3096] = { + [sym_type_constraints] = STATE(3345), + [sym_enum_class_body] = STATE(3466), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_RBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_RPAREN] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [anon_sym_DASH_GT] = ACTIONS(4483), + [sym_label] = ACTIONS(4483), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_while] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), [sym_multiline_comment] = ACTIONS(3), }, - [3052] = { - [aux_sym_type_constraints_repeat1] = STATE(3129), - [sym__alpha_identifier] = ACTIONS(4541), - [anon_sym_AT] = ACTIONS(4543), - [anon_sym_LBRACK] = ACTIONS(4543), - [anon_sym_as] = ACTIONS(4541), - [anon_sym_EQ] = ACTIONS(4541), - [anon_sym_fun] = ACTIONS(4541), - [anon_sym_LBRACE] = ACTIONS(4543), - [anon_sym_RBRACE] = ACTIONS(4543), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_COMMA] = ACTIONS(6683), - [anon_sym_LT] = ACTIONS(4541), - [anon_sym_GT] = ACTIONS(4541), - [anon_sym_where] = ACTIONS(4541), - [anon_sym_object] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4541), - [anon_sym_SEMI] = ACTIONS(4543), - [anon_sym_get] = ACTIONS(4541), - [anon_sym_set] = ACTIONS(4541), - [anon_sym_this] = ACTIONS(4541), - [anon_sym_super] = ACTIONS(4541), - [anon_sym_STAR] = ACTIONS(4541), - [sym_label] = ACTIONS(4541), - [anon_sym_in] = ACTIONS(4541), - [anon_sym_DOT_DOT] = ACTIONS(4543), - [anon_sym_QMARK_COLON] = ACTIONS(4543), - [anon_sym_AMP_AMP] = ACTIONS(4543), - [anon_sym_PIPE_PIPE] = ACTIONS(4543), - [anon_sym_null] = ACTIONS(4541), - [anon_sym_if] = ACTIONS(4541), - [anon_sym_else] = ACTIONS(4541), - [anon_sym_when] = ACTIONS(4541), - [anon_sym_try] = ACTIONS(4541), - [anon_sym_throw] = ACTIONS(4541), - [anon_sym_return] = ACTIONS(4541), - [anon_sym_continue] = ACTIONS(4541), - [anon_sym_break] = ACTIONS(4541), - [anon_sym_COLON_COLON] = ACTIONS(4543), - [anon_sym_PLUS_EQ] = ACTIONS(4543), - [anon_sym_DASH_EQ] = ACTIONS(4543), - [anon_sym_STAR_EQ] = ACTIONS(4543), - [anon_sym_SLASH_EQ] = ACTIONS(4543), - [anon_sym_PERCENT_EQ] = ACTIONS(4543), - [anon_sym_BANG_EQ] = ACTIONS(4541), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4543), - [anon_sym_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4543), - [anon_sym_LT_EQ] = ACTIONS(4543), - [anon_sym_GT_EQ] = ACTIONS(4543), - [anon_sym_BANGin] = ACTIONS(4543), - [anon_sym_is] = ACTIONS(4541), - [anon_sym_BANGis] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4541), - [anon_sym_DASH] = ACTIONS(4541), - [anon_sym_SLASH] = ACTIONS(4541), - [anon_sym_PERCENT] = ACTIONS(4541), - [anon_sym_as_QMARK] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_BANG] = ACTIONS(4541), - [anon_sym_BANG_BANG] = ACTIONS(4543), - [anon_sym_data] = ACTIONS(4541), - [anon_sym_inner] = ACTIONS(4541), - [anon_sym_value] = ACTIONS(4541), - [anon_sym_expect] = ACTIONS(4541), - [anon_sym_actual] = ACTIONS(4541), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4543), - [anon_sym_continue_AT] = ACTIONS(4543), - [anon_sym_break_AT] = ACTIONS(4543), - [anon_sym_this_AT] = ACTIONS(4543), - [anon_sym_super_AT] = ACTIONS(4543), - [sym_real_literal] = ACTIONS(4543), - [sym_integer_literal] = ACTIONS(4541), - [sym_hex_literal] = ACTIONS(4543), - [sym_bin_literal] = ACTIONS(4543), - [anon_sym_true] = ACTIONS(4541), - [anon_sym_false] = ACTIONS(4541), - [anon_sym_SQUOTE] = ACTIONS(4543), - [sym__backtick_identifier] = ACTIONS(4543), - [sym__automatic_semicolon] = ACTIONS(4543), - [sym_safe_nav] = ACTIONS(4543), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4543), + [3097] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(6636), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, - [3053] = { - [sym_class_body] = STATE(3345), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [3098] = { + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(6640), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_object] = ACTIONS(5051), + [anon_sym_fun] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_this] = ACTIONS(5051), + [anon_sym_super] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [sym_label] = ACTIONS(5051), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_null] = ACTIONS(5051), + [anon_sym_if] = ACTIONS(5051), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_when] = ACTIONS(5051), + [anon_sym_try] = ACTIONS(5051), + [anon_sym_throw] = ACTIONS(5051), + [anon_sym_return] = ACTIONS(5051), + [anon_sym_continue] = ACTIONS(5051), + [anon_sym_break] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5051), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5053), + [anon_sym_continue_AT] = ACTIONS(5053), + [anon_sym_break_AT] = ACTIONS(5053), + [anon_sym_this_AT] = ACTIONS(5053), + [anon_sym_super_AT] = ACTIONS(5053), + [sym_real_literal] = ACTIONS(5053), + [sym_integer_literal] = ACTIONS(5051), + [sym_hex_literal] = ACTIONS(5053), + [sym_bin_literal] = ACTIONS(5053), + [anon_sym_true] = ACTIONS(5051), + [anon_sym_false] = ACTIONS(5051), + [anon_sym_SQUOTE] = ACTIONS(5053), + [sym__backtick_identifier] = ACTIONS(5053), + [sym__automatic_semicolon] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5053), }, - [3054] = { - [sym_enum_class_body] = STATE(3304), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [3099] = { + [sym__alpha_identifier] = ACTIONS(5073), + [anon_sym_AT] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_as] = ACTIONS(5073), + [anon_sym_EQ] = ACTIONS(5073), + [anon_sym_LBRACE] = ACTIONS(5075), + [anon_sym_RBRACE] = ACTIONS(5075), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_where] = ACTIONS(5073), + [anon_sym_object] = ACTIONS(5073), + [anon_sym_fun] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_SEMI] = ACTIONS(5075), + [anon_sym_get] = ACTIONS(5073), + [anon_sym_set] = ACTIONS(5073), + [anon_sym_this] = ACTIONS(5073), + [anon_sym_super] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [sym_label] = ACTIONS(5073), + [anon_sym_in] = ACTIONS(5073), + [anon_sym_DOT_DOT] = ACTIONS(5075), + [anon_sym_QMARK_COLON] = ACTIONS(5075), + [anon_sym_AMP_AMP] = ACTIONS(5075), + [anon_sym_PIPE_PIPE] = ACTIONS(5075), + [anon_sym_null] = ACTIONS(5073), + [anon_sym_if] = ACTIONS(5073), + [anon_sym_else] = ACTIONS(5073), + [anon_sym_when] = ACTIONS(5073), + [anon_sym_try] = ACTIONS(5073), + [anon_sym_throw] = ACTIONS(5073), + [anon_sym_return] = ACTIONS(5073), + [anon_sym_continue] = ACTIONS(5073), + [anon_sym_break] = ACTIONS(5073), + [anon_sym_COLON_COLON] = ACTIONS(5075), + [anon_sym_PLUS_EQ] = ACTIONS(5075), + [anon_sym_DASH_EQ] = ACTIONS(5075), + [anon_sym_STAR_EQ] = ACTIONS(5075), + [anon_sym_SLASH_EQ] = ACTIONS(5075), + [anon_sym_PERCENT_EQ] = ACTIONS(5075), + [anon_sym_BANG_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5075), + [anon_sym_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5075), + [anon_sym_LT_EQ] = ACTIONS(5075), + [anon_sym_GT_EQ] = ACTIONS(5075), + [anon_sym_BANGin] = ACTIONS(5075), + [anon_sym_is] = ACTIONS(5073), + [anon_sym_BANGis] = ACTIONS(5075), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5075), + [anon_sym_PLUS_PLUS] = ACTIONS(5075), + [anon_sym_DASH_DASH] = ACTIONS(5075), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_BANG_BANG] = ACTIONS(5075), + [anon_sym_data] = ACTIONS(5073), + [anon_sym_inner] = ACTIONS(5073), + [anon_sym_value] = ACTIONS(5073), + [anon_sym_expect] = ACTIONS(5073), + [anon_sym_actual] = ACTIONS(5073), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5075), + [anon_sym_continue_AT] = ACTIONS(5075), + [anon_sym_break_AT] = ACTIONS(5075), + [anon_sym_this_AT] = ACTIONS(5075), + [anon_sym_super_AT] = ACTIONS(5075), + [sym_real_literal] = ACTIONS(5075), + [sym_integer_literal] = ACTIONS(5073), + [sym_hex_literal] = ACTIONS(5075), + [sym_bin_literal] = ACTIONS(5075), + [anon_sym_true] = ACTIONS(5073), + [anon_sym_false] = ACTIONS(5073), + [anon_sym_SQUOTE] = ACTIONS(5075), + [sym__backtick_identifier] = ACTIONS(5075), + [sym__automatic_semicolon] = ACTIONS(5075), + [sym_safe_nav] = ACTIONS(5075), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5075), }, - [3055] = { - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_LBRACE] = ACTIONS(4329), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4327), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), + [3100] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(6642), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [3101] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(6646), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), + [sym__string_start] = ACTIONS(4284), }, - [3056] = { - [sym__alpha_identifier] = ACTIONS(4317), - [anon_sym_AT] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [anon_sym_RBRACK] = ACTIONS(4319), - [anon_sym_as] = ACTIONS(4317), - [anon_sym_EQ] = ACTIONS(4317), - [anon_sym_LBRACE] = ACTIONS(4319), - [anon_sym_RBRACE] = ACTIONS(4319), - [anon_sym_LPAREN] = ACTIONS(4319), - [anon_sym_COMMA] = ACTIONS(4319), - [anon_sym_RPAREN] = ACTIONS(4319), - [anon_sym_by] = ACTIONS(4317), - [anon_sym_LT] = ACTIONS(4317), - [anon_sym_GT] = ACTIONS(4317), - [anon_sym_where] = ACTIONS(4317), - [anon_sym_DOT] = ACTIONS(4317), - [anon_sym_SEMI] = ACTIONS(4319), - [anon_sym_get] = ACTIONS(4317), - [anon_sym_set] = ACTIONS(4317), - [anon_sym_AMP] = ACTIONS(4317), - [sym__quest] = ACTIONS(4317), - [anon_sym_STAR] = ACTIONS(4317), - [anon_sym_DASH_GT] = ACTIONS(4319), - [sym_label] = ACTIONS(4319), - [anon_sym_in] = ACTIONS(4317), - [anon_sym_while] = ACTIONS(4317), - [anon_sym_DOT_DOT] = ACTIONS(4319), - [anon_sym_QMARK_COLON] = ACTIONS(4319), - [anon_sym_AMP_AMP] = ACTIONS(4319), - [anon_sym_PIPE_PIPE] = ACTIONS(4319), - [anon_sym_else] = ACTIONS(4317), - [anon_sym_COLON_COLON] = ACTIONS(4319), - [anon_sym_PLUS_EQ] = ACTIONS(4319), - [anon_sym_DASH_EQ] = ACTIONS(4319), - [anon_sym_STAR_EQ] = ACTIONS(4319), - [anon_sym_SLASH_EQ] = ACTIONS(4319), - [anon_sym_PERCENT_EQ] = ACTIONS(4319), - [anon_sym_BANG_EQ] = ACTIONS(4317), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4319), - [anon_sym_EQ_EQ] = ACTIONS(4317), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4319), - [anon_sym_LT_EQ] = ACTIONS(4319), - [anon_sym_GT_EQ] = ACTIONS(4319), - [anon_sym_BANGin] = ACTIONS(4319), - [anon_sym_is] = ACTIONS(4317), - [anon_sym_BANGis] = ACTIONS(4319), - [anon_sym_PLUS] = ACTIONS(4317), - [anon_sym_DASH] = ACTIONS(4317), - [anon_sym_SLASH] = ACTIONS(4317), - [anon_sym_PERCENT] = ACTIONS(4317), - [anon_sym_as_QMARK] = ACTIONS(4319), - [anon_sym_PLUS_PLUS] = ACTIONS(4319), - [anon_sym_DASH_DASH] = ACTIONS(4319), - [anon_sym_BANG_BANG] = ACTIONS(4319), - [anon_sym_suspend] = ACTIONS(4317), - [anon_sym_sealed] = ACTIONS(4317), - [anon_sym_annotation] = ACTIONS(4317), - [anon_sym_data] = ACTIONS(4317), - [anon_sym_inner] = ACTIONS(4317), - [anon_sym_value] = ACTIONS(4317), - [anon_sym_override] = ACTIONS(4317), - [anon_sym_lateinit] = ACTIONS(4317), - [anon_sym_public] = ACTIONS(4317), - [anon_sym_private] = ACTIONS(4317), - [anon_sym_internal] = ACTIONS(4317), - [anon_sym_protected] = ACTIONS(4317), - [anon_sym_tailrec] = ACTIONS(4317), - [anon_sym_operator] = ACTIONS(4317), - [anon_sym_infix] = ACTIONS(4317), - [anon_sym_inline] = ACTIONS(4317), - [anon_sym_external] = ACTIONS(4317), - [sym_property_modifier] = ACTIONS(4317), - [anon_sym_abstract] = ACTIONS(4317), - [anon_sym_final] = ACTIONS(4317), - [anon_sym_open] = ACTIONS(4317), - [anon_sym_vararg] = ACTIONS(4317), - [anon_sym_noinline] = ACTIONS(4317), - [anon_sym_crossinline] = ACTIONS(4317), - [anon_sym_expect] = ACTIONS(4317), - [anon_sym_actual] = ACTIONS(4317), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4319), - [sym_safe_nav] = ACTIONS(4319), + [3102] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), + }, + [3103] = { + [sym__alpha_identifier] = ACTIONS(4946), + [anon_sym_AT] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4946), + [anon_sym_EQ] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_RBRACE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4946), + [anon_sym_where] = ACTIONS(4946), + [anon_sym_object] = ACTIONS(4946), + [anon_sym_fun] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_get] = ACTIONS(4946), + [anon_sym_set] = ACTIONS(4946), + [anon_sym_this] = ACTIONS(4946), + [anon_sym_super] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4946), + [sym_label] = ACTIONS(4946), + [anon_sym_in] = ACTIONS(4946), + [anon_sym_DOT_DOT] = ACTIONS(4948), + [anon_sym_QMARK_COLON] = ACTIONS(4948), + [anon_sym_AMP_AMP] = ACTIONS(4948), + [anon_sym_PIPE_PIPE] = ACTIONS(4948), + [anon_sym_null] = ACTIONS(4946), + [anon_sym_if] = ACTIONS(4946), + [anon_sym_else] = ACTIONS(4946), + [anon_sym_when] = ACTIONS(4946), + [anon_sym_try] = ACTIONS(4946), + [anon_sym_throw] = ACTIONS(4946), + [anon_sym_return] = ACTIONS(4946), + [anon_sym_continue] = ACTIONS(4946), + [anon_sym_break] = ACTIONS(4946), + [anon_sym_COLON_COLON] = ACTIONS(4948), + [anon_sym_PLUS_EQ] = ACTIONS(4948), + [anon_sym_DASH_EQ] = ACTIONS(4948), + [anon_sym_STAR_EQ] = ACTIONS(4948), + [anon_sym_SLASH_EQ] = ACTIONS(4948), + [anon_sym_PERCENT_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ] = ACTIONS(4946), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4948), + [anon_sym_LT_EQ] = ACTIONS(4948), + [anon_sym_GT_EQ] = ACTIONS(4948), + [anon_sym_BANGin] = ACTIONS(4948), + [anon_sym_is] = ACTIONS(4946), + [anon_sym_BANGis] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4946), + [anon_sym_PERCENT] = ACTIONS(4946), + [anon_sym_as_QMARK] = ACTIONS(4948), + [anon_sym_PLUS_PLUS] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4946), + [anon_sym_BANG_BANG] = ACTIONS(4948), + [anon_sym_data] = ACTIONS(4946), + [anon_sym_inner] = ACTIONS(4946), + [anon_sym_value] = ACTIONS(4946), + [anon_sym_expect] = ACTIONS(4946), + [anon_sym_actual] = ACTIONS(4946), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4948), + [anon_sym_continue_AT] = ACTIONS(4948), + [anon_sym_break_AT] = ACTIONS(4948), + [anon_sym_this_AT] = ACTIONS(4948), + [anon_sym_super_AT] = ACTIONS(4948), + [sym_real_literal] = ACTIONS(4948), + [sym_integer_literal] = ACTIONS(4946), + [sym_hex_literal] = ACTIONS(4948), + [sym_bin_literal] = ACTIONS(4948), + [anon_sym_true] = ACTIONS(4946), + [anon_sym_false] = ACTIONS(4946), + [anon_sym_SQUOTE] = ACTIONS(4948), + [sym__backtick_identifier] = ACTIONS(4948), + [sym__automatic_semicolon] = ACTIONS(4948), + [sym_safe_nav] = ACTIONS(4948), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4948), + }, + [3104] = { + [sym__alpha_identifier] = ACTIONS(4485), + [anon_sym_AT] = ACTIONS(4487), + [anon_sym_LBRACK] = ACTIONS(4487), + [anon_sym_RBRACK] = ACTIONS(4487), + [anon_sym_as] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_LBRACE] = ACTIONS(4487), + [anon_sym_RBRACE] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4487), + [anon_sym_COMMA] = ACTIONS(4487), + [anon_sym_RPAREN] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_where] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_get] = ACTIONS(4485), + [anon_sym_set] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4485), + [anon_sym_DASH_GT] = ACTIONS(4487), + [sym_label] = ACTIONS(4487), + [anon_sym_in] = ACTIONS(4485), + [anon_sym_while] = ACTIONS(4485), + [anon_sym_DOT_DOT] = ACTIONS(4487), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4487), + [anon_sym_PIPE_PIPE] = ACTIONS(4487), + [anon_sym_else] = ACTIONS(4485), + [anon_sym_catch] = ACTIONS(4485), + [anon_sym_finally] = ACTIONS(4485), + [anon_sym_COLON_COLON] = ACTIONS(4487), + [anon_sym_PLUS_EQ] = ACTIONS(4487), + [anon_sym_DASH_EQ] = ACTIONS(4487), + [anon_sym_STAR_EQ] = ACTIONS(4487), + [anon_sym_SLASH_EQ] = ACTIONS(4487), + [anon_sym_PERCENT_EQ] = ACTIONS(4487), + [anon_sym_BANG_EQ] = ACTIONS(4485), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4487), + [anon_sym_EQ_EQ] = ACTIONS(4485), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4487), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_BANGin] = ACTIONS(4487), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4485), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_SLASH] = ACTIONS(4485), + [anon_sym_PERCENT] = ACTIONS(4485), + [anon_sym_as_QMARK] = ACTIONS(4487), + [anon_sym_PLUS_PLUS] = ACTIONS(4487), + [anon_sym_DASH_DASH] = ACTIONS(4487), + [anon_sym_BANG_BANG] = ACTIONS(4487), + [anon_sym_suspend] = ACTIONS(4485), + [anon_sym_sealed] = ACTIONS(4485), + [anon_sym_annotation] = ACTIONS(4485), + [anon_sym_data] = ACTIONS(4485), + [anon_sym_inner] = ACTIONS(4485), + [anon_sym_value] = ACTIONS(4485), + [anon_sym_override] = ACTIONS(4485), + [anon_sym_lateinit] = ACTIONS(4485), + [anon_sym_public] = ACTIONS(4485), + [anon_sym_private] = ACTIONS(4485), + [anon_sym_internal] = ACTIONS(4485), + [anon_sym_protected] = ACTIONS(4485), + [anon_sym_tailrec] = ACTIONS(4485), + [anon_sym_operator] = ACTIONS(4485), + [anon_sym_infix] = ACTIONS(4485), + [anon_sym_inline] = ACTIONS(4485), + [anon_sym_external] = ACTIONS(4485), + [sym_property_modifier] = ACTIONS(4485), + [anon_sym_abstract] = ACTIONS(4485), + [anon_sym_final] = ACTIONS(4485), + [anon_sym_open] = ACTIONS(4485), + [anon_sym_vararg] = ACTIONS(4485), + [anon_sym_noinline] = ACTIONS(4485), + [anon_sym_crossinline] = ACTIONS(4485), + [anon_sym_expect] = ACTIONS(4485), + [anon_sym_actual] = ACTIONS(4485), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4487), + [sym_safe_nav] = ACTIONS(4487), [sym_multiline_comment] = ACTIONS(3), }, - [3057] = { - [sym__alpha_identifier] = ACTIONS(4685), - [anon_sym_AT] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_as] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_fun] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_RBRACE] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_COMMA] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4685), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_where] = ACTIONS(4685), - [anon_sym_object] = ACTIONS(4685), - [anon_sym_DOT] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_get] = ACTIONS(4685), - [anon_sym_set] = ACTIONS(4685), - [anon_sym_this] = ACTIONS(4685), - [anon_sym_super] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [sym_label] = ACTIONS(4685), - [anon_sym_in] = ACTIONS(4685), - [anon_sym_DOT_DOT] = ACTIONS(4687), - [anon_sym_QMARK_COLON] = ACTIONS(4687), - [anon_sym_AMP_AMP] = ACTIONS(4687), - [anon_sym_PIPE_PIPE] = ACTIONS(4687), - [anon_sym_null] = ACTIONS(4685), - [anon_sym_if] = ACTIONS(4685), - [anon_sym_else] = ACTIONS(4685), - [anon_sym_when] = ACTIONS(4685), - [anon_sym_try] = ACTIONS(4685), - [anon_sym_throw] = ACTIONS(4685), - [anon_sym_return] = ACTIONS(4685), - [anon_sym_continue] = ACTIONS(4685), - [anon_sym_break] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4687), - [anon_sym_PLUS_EQ] = ACTIONS(4687), - [anon_sym_DASH_EQ] = ACTIONS(4687), - [anon_sym_STAR_EQ] = ACTIONS(4687), - [anon_sym_SLASH_EQ] = ACTIONS(4687), - [anon_sym_PERCENT_EQ] = ACTIONS(4687), - [anon_sym_BANG_EQ] = ACTIONS(4685), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4687), - [anon_sym_EQ_EQ] = ACTIONS(4685), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4687), - [anon_sym_LT_EQ] = ACTIONS(4687), - [anon_sym_GT_EQ] = ACTIONS(4687), - [anon_sym_BANGin] = ACTIONS(4687), - [anon_sym_is] = ACTIONS(4685), - [anon_sym_BANGis] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_as_QMARK] = ACTIONS(4687), - [anon_sym_PLUS_PLUS] = ACTIONS(4687), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_BANG_BANG] = ACTIONS(4687), - [anon_sym_data] = ACTIONS(4685), - [anon_sym_inner] = ACTIONS(4685), - [anon_sym_value] = ACTIONS(4685), - [anon_sym_expect] = ACTIONS(4685), - [anon_sym_actual] = ACTIONS(4685), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4687), - [anon_sym_continue_AT] = ACTIONS(4687), - [anon_sym_break_AT] = ACTIONS(4687), - [anon_sym_this_AT] = ACTIONS(4687), - [anon_sym_super_AT] = ACTIONS(4687), - [sym_real_literal] = ACTIONS(4687), - [sym_integer_literal] = ACTIONS(4685), - [sym_hex_literal] = ACTIONS(4687), - [sym_bin_literal] = ACTIONS(4687), - [anon_sym_true] = ACTIONS(4685), - [anon_sym_false] = ACTIONS(4685), - [anon_sym_SQUOTE] = ACTIONS(4687), - [sym__backtick_identifier] = ACTIONS(4687), - [sym__automatic_semicolon] = ACTIONS(4687), - [sym_safe_nav] = ACTIONS(4687), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4687), + [3105] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(6650), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, - [3058] = { - [aux_sym_nullable_type_repeat1] = STATE(3058), - [sym__alpha_identifier] = ACTIONS(4262), - [anon_sym_AT] = ACTIONS(4264), - [anon_sym_LBRACK] = ACTIONS(4264), - [anon_sym_RBRACK] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4262), - [anon_sym_EQ] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_LPAREN] = ACTIONS(4264), - [anon_sym_COMMA] = ACTIONS(4264), - [anon_sym_RPAREN] = ACTIONS(4264), - [anon_sym_by] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4262), - [anon_sym_GT] = ACTIONS(4262), - [anon_sym_where] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym_get] = ACTIONS(4262), - [anon_sym_set] = ACTIONS(4262), - [sym__quest] = ACTIONS(6685), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_DASH_GT] = ACTIONS(4264), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4262), - [anon_sym_while] = ACTIONS(4262), - [anon_sym_DOT_DOT] = ACTIONS(4264), - [anon_sym_QMARK_COLON] = ACTIONS(4264), - [anon_sym_AMP_AMP] = ACTIONS(4264), - [anon_sym_PIPE_PIPE] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_PLUS_EQ] = ACTIONS(4264), - [anon_sym_DASH_EQ] = ACTIONS(4264), - [anon_sym_STAR_EQ] = ACTIONS(4264), - [anon_sym_SLASH_EQ] = ACTIONS(4264), - [anon_sym_PERCENT_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), - [anon_sym_LT_EQ] = ACTIONS(4264), - [anon_sym_GT_EQ] = ACTIONS(4264), - [anon_sym_BANGin] = ACTIONS(4264), - [anon_sym_is] = ACTIONS(4262), - [anon_sym_BANGis] = ACTIONS(4264), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4262), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_as_QMARK] = ACTIONS(4264), - [anon_sym_PLUS_PLUS] = ACTIONS(4264), - [anon_sym_DASH_DASH] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4264), - [anon_sym_suspend] = ACTIONS(4262), - [anon_sym_sealed] = ACTIONS(4262), - [anon_sym_annotation] = ACTIONS(4262), - [anon_sym_data] = ACTIONS(4262), - [anon_sym_inner] = ACTIONS(4262), - [anon_sym_value] = ACTIONS(4262), - [anon_sym_override] = ACTIONS(4262), - [anon_sym_lateinit] = ACTIONS(4262), - [anon_sym_public] = ACTIONS(4262), - [anon_sym_private] = ACTIONS(4262), - [anon_sym_internal] = ACTIONS(4262), - [anon_sym_protected] = ACTIONS(4262), - [anon_sym_tailrec] = ACTIONS(4262), - [anon_sym_operator] = ACTIONS(4262), - [anon_sym_infix] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym_external] = ACTIONS(4262), - [sym_property_modifier] = ACTIONS(4262), - [anon_sym_abstract] = ACTIONS(4262), - [anon_sym_final] = ACTIONS(4262), - [anon_sym_open] = ACTIONS(4262), - [anon_sym_vararg] = ACTIONS(4262), - [anon_sym_noinline] = ACTIONS(4262), - [anon_sym_crossinline] = ACTIONS(4262), - [anon_sym_expect] = ACTIONS(4262), - [anon_sym_actual] = ACTIONS(4262), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4264), - [sym_safe_nav] = ACTIONS(4264), + [3106] = { + [sym__alpha_identifier] = ACTIONS(4345), + [anon_sym_AT] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_RBRACK] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4345), + [anon_sym_EQ] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4347), + [anon_sym_RBRACE] = ACTIONS(4347), + [anon_sym_LPAREN] = ACTIONS(4347), + [anon_sym_COMMA] = ACTIONS(4347), + [anon_sym_RPAREN] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_where] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_SEMI] = ACTIONS(4347), + [anon_sym_get] = ACTIONS(4345), + [anon_sym_set] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_DASH_GT] = ACTIONS(4347), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4345), + [anon_sym_while] = ACTIONS(4345), + [anon_sym_DOT_DOT] = ACTIONS(4347), + [anon_sym_QMARK_COLON] = ACTIONS(4347), + [anon_sym_AMP_AMP] = ACTIONS(4347), + [anon_sym_PIPE_PIPE] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4345), + [anon_sym_catch] = ACTIONS(4345), + [anon_sym_finally] = ACTIONS(4345), + [anon_sym_COLON_COLON] = ACTIONS(4347), + [anon_sym_PLUS_EQ] = ACTIONS(4347), + [anon_sym_DASH_EQ] = ACTIONS(4347), + [anon_sym_STAR_EQ] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [anon_sym_PERCENT_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_BANGin] = ACTIONS(4347), + [anon_sym_is] = ACTIONS(4345), + [anon_sym_BANGis] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4345), + [anon_sym_DASH] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4345), + [anon_sym_as_QMARK] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4347), + [anon_sym_DASH_DASH] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4347), + [anon_sym_suspend] = ACTIONS(4345), + [anon_sym_sealed] = ACTIONS(4345), + [anon_sym_annotation] = ACTIONS(4345), + [anon_sym_data] = ACTIONS(4345), + [anon_sym_inner] = ACTIONS(4345), + [anon_sym_value] = ACTIONS(4345), + [anon_sym_override] = ACTIONS(4345), + [anon_sym_lateinit] = ACTIONS(4345), + [anon_sym_public] = ACTIONS(4345), + [anon_sym_private] = ACTIONS(4345), + [anon_sym_internal] = ACTIONS(4345), + [anon_sym_protected] = ACTIONS(4345), + [anon_sym_tailrec] = ACTIONS(4345), + [anon_sym_operator] = ACTIONS(4345), + [anon_sym_infix] = ACTIONS(4345), + [anon_sym_inline] = ACTIONS(4345), + [anon_sym_external] = ACTIONS(4345), + [sym_property_modifier] = ACTIONS(4345), + [anon_sym_abstract] = ACTIONS(4345), + [anon_sym_final] = ACTIONS(4345), + [anon_sym_open] = ACTIONS(4345), + [anon_sym_vararg] = ACTIONS(4345), + [anon_sym_noinline] = ACTIONS(4345), + [anon_sym_crossinline] = ACTIONS(4345), + [anon_sym_expect] = ACTIONS(4345), + [anon_sym_actual] = ACTIONS(4345), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4347), + [sym_safe_nav] = ACTIONS(4347), [sym_multiline_comment] = ACTIONS(3), }, - [3059] = { - [sym__alpha_identifier] = ACTIONS(4189), - [anon_sym_AT] = ACTIONS(4191), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_RBRACK] = ACTIONS(4191), - [anon_sym_as] = ACTIONS(4189), - [anon_sym_EQ] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_RPAREN] = ACTIONS(4191), - [anon_sym_by] = ACTIONS(4189), - [anon_sym_LT] = ACTIONS(4189), - [anon_sym_GT] = ACTIONS(4189), - [anon_sym_where] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_SEMI] = ACTIONS(4191), - [anon_sym_get] = ACTIONS(4189), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [sym__quest] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [anon_sym_DASH_GT] = ACTIONS(4191), - [sym_label] = ACTIONS(4191), - [anon_sym_in] = ACTIONS(4189), - [anon_sym_while] = ACTIONS(4189), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_QMARK_COLON] = ACTIONS(4191), - [anon_sym_AMP_AMP] = ACTIONS(4191), - [anon_sym_PIPE_PIPE] = ACTIONS(4191), - [anon_sym_else] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(4191), - [anon_sym_PLUS_EQ] = ACTIONS(4191), - [anon_sym_DASH_EQ] = ACTIONS(4191), - [anon_sym_STAR_EQ] = ACTIONS(4191), - [anon_sym_SLASH_EQ] = ACTIONS(4191), - [anon_sym_PERCENT_EQ] = ACTIONS(4191), - [anon_sym_BANG_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4191), - [anon_sym_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4191), - [anon_sym_LT_EQ] = ACTIONS(4191), - [anon_sym_GT_EQ] = ACTIONS(4191), - [anon_sym_BANGin] = ACTIONS(4191), - [anon_sym_is] = ACTIONS(4189), - [anon_sym_BANGis] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_SLASH] = ACTIONS(4189), - [anon_sym_PERCENT] = ACTIONS(4189), - [anon_sym_as_QMARK] = ACTIONS(4191), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_BANG_BANG] = ACTIONS(4191), - [anon_sym_suspend] = ACTIONS(4189), - [anon_sym_sealed] = ACTIONS(4189), - [anon_sym_annotation] = ACTIONS(4189), - [anon_sym_data] = ACTIONS(4189), - [anon_sym_inner] = ACTIONS(4189), - [anon_sym_value] = ACTIONS(4189), - [anon_sym_override] = ACTIONS(4189), - [anon_sym_lateinit] = ACTIONS(4189), - [anon_sym_public] = ACTIONS(4189), - [anon_sym_private] = ACTIONS(4189), - [anon_sym_internal] = ACTIONS(4189), - [anon_sym_protected] = ACTIONS(4189), - [anon_sym_tailrec] = ACTIONS(4189), - [anon_sym_operator] = ACTIONS(4189), - [anon_sym_infix] = ACTIONS(4189), - [anon_sym_inline] = ACTIONS(4189), - [anon_sym_external] = ACTIONS(4189), - [sym_property_modifier] = ACTIONS(4189), - [anon_sym_abstract] = ACTIONS(4189), - [anon_sym_final] = ACTIONS(4189), - [anon_sym_open] = ACTIONS(4189), - [anon_sym_vararg] = ACTIONS(4189), - [anon_sym_noinline] = ACTIONS(4189), - [anon_sym_crossinline] = ACTIONS(4189), - [anon_sym_expect] = ACTIONS(4189), - [anon_sym_actual] = ACTIONS(4189), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4191), - [sym_safe_nav] = ACTIONS(4191), + [3107] = { + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_RBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, - [3060] = { - [aux_sym_nullable_type_repeat1] = STATE(3080), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_RBRACK] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(4327), - [anon_sym_LBRACE] = ACTIONS(4329), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_RPAREN] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4327), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [sym__quest] = ACTIONS(6679), - [anon_sym_STAR] = ACTIONS(4327), - [anon_sym_DASH_GT] = ACTIONS(4329), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_while] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [3108] = { + [sym__alpha_identifier] = ACTIONS(4122), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_COLON] = ACTIONS(6561), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_RBRACK] = ACTIONS(4124), + [anon_sym_as] = ACTIONS(4122), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_RBRACE] = ACTIONS(4124), + [anon_sym_LPAREN] = ACTIONS(4124), + [anon_sym_COMMA] = ACTIONS(4124), + [anon_sym_RPAREN] = ACTIONS(4124), + [anon_sym_by] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4122), + [anon_sym_where] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym_get] = ACTIONS(4122), + [anon_sym_set] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_DASH_GT] = ACTIONS(4124), + [sym_label] = ACTIONS(4124), + [anon_sym_in] = ACTIONS(4122), + [anon_sym_while] = ACTIONS(4122), + [anon_sym_DOT_DOT] = ACTIONS(4124), + [anon_sym_QMARK_COLON] = ACTIONS(4124), + [anon_sym_AMP_AMP] = ACTIONS(4124), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_else] = ACTIONS(4122), + [anon_sym_COLON_COLON] = ACTIONS(4124), + [anon_sym_PLUS_EQ] = ACTIONS(4124), + [anon_sym_DASH_EQ] = ACTIONS(4124), + [anon_sym_STAR_EQ] = ACTIONS(4124), + [anon_sym_SLASH_EQ] = ACTIONS(4124), + [anon_sym_PERCENT_EQ] = ACTIONS(4124), + [anon_sym_BANG_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), + [anon_sym_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), + [anon_sym_LT_EQ] = ACTIONS(4124), + [anon_sym_GT_EQ] = ACTIONS(4124), + [anon_sym_BANGin] = ACTIONS(4124), + [anon_sym_is] = ACTIONS(4122), + [anon_sym_BANGis] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_SLASH] = ACTIONS(4122), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4124), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_BANG_BANG] = ACTIONS(4124), + [anon_sym_suspend] = ACTIONS(4122), + [anon_sym_sealed] = ACTIONS(4122), + [anon_sym_annotation] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4122), + [anon_sym_inner] = ACTIONS(4122), + [anon_sym_value] = ACTIONS(4122), + [anon_sym_override] = ACTIONS(4122), + [anon_sym_lateinit] = ACTIONS(4122), + [anon_sym_public] = ACTIONS(4122), + [anon_sym_private] = ACTIONS(4122), + [anon_sym_internal] = ACTIONS(4122), + [anon_sym_protected] = ACTIONS(4122), + [anon_sym_tailrec] = ACTIONS(4122), + [anon_sym_operator] = ACTIONS(4122), + [anon_sym_infix] = ACTIONS(4122), + [anon_sym_inline] = ACTIONS(4122), + [anon_sym_external] = ACTIONS(4122), + [sym_property_modifier] = ACTIONS(4122), + [anon_sym_abstract] = ACTIONS(4122), + [anon_sym_final] = ACTIONS(4122), + [anon_sym_open] = ACTIONS(4122), + [anon_sym_vararg] = ACTIONS(4122), + [anon_sym_noinline] = ACTIONS(4122), + [anon_sym_crossinline] = ACTIONS(4122), + [anon_sym_expect] = ACTIONS(4122), + [anon_sym_actual] = ACTIONS(4122), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4124), + [sym_safe_nav] = ACTIONS(4124), [sym_multiline_comment] = ACTIONS(3), }, - [3061] = { - [sym_class_body] = STATE(3304), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [3109] = { + [sym_class_body] = STATE(3589), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(6654), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_RBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [anon_sym_DASH_GT] = ACTIONS(4499), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_while] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), }, - [3062] = { - [sym_import_list] = STATE(3062), - [sym_import_header] = STATE(9037), - [aux_sym_source_file_repeat2] = STATE(3062), - [aux_sym_import_list_repeat1] = STATE(9037), - [ts_builtin_sym_end] = ACTIONS(6688), - [sym__alpha_identifier] = ACTIONS(6690), - [anon_sym_AT] = ACTIONS(6688), - [anon_sym_LBRACK] = ACTIONS(6688), - [anon_sym_import] = ACTIONS(6692), - [anon_sym_typealias] = ACTIONS(6690), - [anon_sym_class] = ACTIONS(6690), - [anon_sym_fun] = ACTIONS(6690), - [anon_sym_interface] = ACTIONS(6690), - [anon_sym_enum] = ACTIONS(6690), - [anon_sym_LBRACE] = ACTIONS(6688), - [anon_sym_LPAREN] = ACTIONS(6688), - [anon_sym_val] = ACTIONS(6690), - [anon_sym_var] = ACTIONS(6690), - [anon_sym_object] = ACTIONS(6690), - [anon_sym_get] = ACTIONS(6690), - [anon_sym_set] = ACTIONS(6690), - [anon_sym_this] = ACTIONS(6690), - [anon_sym_super] = ACTIONS(6690), - [anon_sym_STAR] = ACTIONS(6688), - [sym_label] = ACTIONS(6690), - [anon_sym_for] = ACTIONS(6690), - [anon_sym_while] = ACTIONS(6690), - [anon_sym_do] = ACTIONS(6690), - [anon_sym_null] = ACTIONS(6690), - [anon_sym_if] = ACTIONS(6690), - [anon_sym_when] = ACTIONS(6690), - [anon_sym_try] = ACTIONS(6690), - [anon_sym_throw] = ACTIONS(6690), - [anon_sym_return] = ACTIONS(6690), - [anon_sym_continue] = ACTIONS(6690), - [anon_sym_break] = ACTIONS(6690), - [anon_sym_COLON_COLON] = ACTIONS(6688), - [anon_sym_PLUS] = ACTIONS(6690), - [anon_sym_DASH] = ACTIONS(6690), - [anon_sym_PLUS_PLUS] = ACTIONS(6688), - [anon_sym_DASH_DASH] = ACTIONS(6688), - [anon_sym_BANG] = ACTIONS(6688), - [anon_sym_suspend] = ACTIONS(6690), - [anon_sym_sealed] = ACTIONS(6690), - [anon_sym_annotation] = ACTIONS(6690), - [anon_sym_data] = ACTIONS(6690), - [anon_sym_inner] = ACTIONS(6690), - [anon_sym_value] = ACTIONS(6690), - [anon_sym_override] = ACTIONS(6690), - [anon_sym_lateinit] = ACTIONS(6690), - [anon_sym_public] = ACTIONS(6690), - [anon_sym_private] = ACTIONS(6690), - [anon_sym_internal] = ACTIONS(6690), - [anon_sym_protected] = ACTIONS(6690), - [anon_sym_tailrec] = ACTIONS(6690), - [anon_sym_operator] = ACTIONS(6690), - [anon_sym_infix] = ACTIONS(6690), - [anon_sym_inline] = ACTIONS(6690), - [anon_sym_external] = ACTIONS(6690), - [sym_property_modifier] = ACTIONS(6690), - [anon_sym_abstract] = ACTIONS(6690), - [anon_sym_final] = ACTIONS(6690), - [anon_sym_open] = ACTIONS(6690), - [anon_sym_vararg] = ACTIONS(6690), - [anon_sym_noinline] = ACTIONS(6690), - [anon_sym_crossinline] = ACTIONS(6690), - [anon_sym_expect] = ACTIONS(6690), - [anon_sym_actual] = ACTIONS(6690), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6688), - [anon_sym_continue_AT] = ACTIONS(6688), - [anon_sym_break_AT] = ACTIONS(6688), - [anon_sym_this_AT] = ACTIONS(6688), - [anon_sym_super_AT] = ACTIONS(6688), - [sym_real_literal] = ACTIONS(6688), - [sym_integer_literal] = ACTIONS(6690), - [sym_hex_literal] = ACTIONS(6688), - [sym_bin_literal] = ACTIONS(6688), - [anon_sym_true] = ACTIONS(6690), - [anon_sym_false] = ACTIONS(6690), - [anon_sym_SQUOTE] = ACTIONS(6688), - [sym__backtick_identifier] = ACTIONS(6688), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6688), + [3110] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_where] = ACTIONS(4974), + [anon_sym_object] = ACTIONS(4974), + [anon_sym_fun] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_this] = ACTIONS(4974), + [anon_sym_super] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4974), + [sym_label] = ACTIONS(4974), + [anon_sym_in] = ACTIONS(4974), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_QMARK_COLON] = ACTIONS(4976), + [anon_sym_AMP_AMP] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4976), + [anon_sym_null] = ACTIONS(4974), + [anon_sym_if] = ACTIONS(4974), + [anon_sym_else] = ACTIONS(4974), + [anon_sym_when] = ACTIONS(4974), + [anon_sym_try] = ACTIONS(4974), + [anon_sym_throw] = ACTIONS(4974), + [anon_sym_return] = ACTIONS(4974), + [anon_sym_continue] = ACTIONS(4974), + [anon_sym_break] = ACTIONS(4974), + [anon_sym_COLON_COLON] = ACTIONS(4976), + [anon_sym_PLUS_EQ] = ACTIONS(4976), + [anon_sym_DASH_EQ] = ACTIONS(4976), + [anon_sym_STAR_EQ] = ACTIONS(4976), + [anon_sym_SLASH_EQ] = ACTIONS(4976), + [anon_sym_PERCENT_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4976), + [anon_sym_BANGin] = ACTIONS(4976), + [anon_sym_is] = ACTIONS(4974), + [anon_sym_BANGis] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4974), + [anon_sym_PERCENT] = ACTIONS(4974), + [anon_sym_as_QMARK] = ACTIONS(4976), + [anon_sym_PLUS_PLUS] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4974), + [anon_sym_BANG_BANG] = ACTIONS(4976), + [anon_sym_data] = ACTIONS(4974), + [anon_sym_inner] = ACTIONS(4974), + [anon_sym_value] = ACTIONS(4974), + [anon_sym_expect] = ACTIONS(4974), + [anon_sym_actual] = ACTIONS(4974), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4976), + [anon_sym_continue_AT] = ACTIONS(4976), + [anon_sym_break_AT] = ACTIONS(4976), + [anon_sym_this_AT] = ACTIONS(4976), + [anon_sym_super_AT] = ACTIONS(4976), + [sym_real_literal] = ACTIONS(4976), + [sym_integer_literal] = ACTIONS(4974), + [sym_hex_literal] = ACTIONS(4976), + [sym_bin_literal] = ACTIONS(4976), + [anon_sym_true] = ACTIONS(4974), + [anon_sym_false] = ACTIONS(4974), + [anon_sym_SQUOTE] = ACTIONS(4976), + [sym__backtick_identifier] = ACTIONS(4976), + [sym__automatic_semicolon] = ACTIONS(4976), + [sym_safe_nav] = ACTIONS(4976), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4976), }, - [3063] = { - [sym__alpha_identifier] = ACTIONS(4232), - [anon_sym_AT] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4234), - [anon_sym_RBRACK] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4232), - [anon_sym_EQ] = ACTIONS(4232), - [anon_sym_LBRACE] = ACTIONS(4234), - [anon_sym_RBRACE] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_COMMA] = ACTIONS(4234), - [anon_sym_RPAREN] = ACTIONS(4234), - [anon_sym_by] = ACTIONS(4232), - [anon_sym_LT] = ACTIONS(4232), - [anon_sym_GT] = ACTIONS(4232), - [anon_sym_where] = ACTIONS(4232), - [anon_sym_DOT] = ACTIONS(4232), - [anon_sym_SEMI] = ACTIONS(4234), - [anon_sym_get] = ACTIONS(4232), - [anon_sym_set] = ACTIONS(4232), - [anon_sym_AMP] = ACTIONS(4232), - [sym__quest] = ACTIONS(4232), - [anon_sym_STAR] = ACTIONS(4232), - [anon_sym_DASH_GT] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4232), - [anon_sym_while] = ACTIONS(4232), - [anon_sym_DOT_DOT] = ACTIONS(4234), - [anon_sym_QMARK_COLON] = ACTIONS(4234), - [anon_sym_AMP_AMP] = ACTIONS(4234), - [anon_sym_PIPE_PIPE] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4232), - [anon_sym_COLON_COLON] = ACTIONS(4234), - [anon_sym_PLUS_EQ] = ACTIONS(4234), - [anon_sym_DASH_EQ] = ACTIONS(4234), - [anon_sym_STAR_EQ] = ACTIONS(4234), - [anon_sym_SLASH_EQ] = ACTIONS(4234), - [anon_sym_PERCENT_EQ] = ACTIONS(4234), - [anon_sym_BANG_EQ] = ACTIONS(4232), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), - [anon_sym_EQ_EQ] = ACTIONS(4232), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), - [anon_sym_LT_EQ] = ACTIONS(4234), - [anon_sym_GT_EQ] = ACTIONS(4234), - [anon_sym_BANGin] = ACTIONS(4234), - [anon_sym_is] = ACTIONS(4232), - [anon_sym_BANGis] = ACTIONS(4234), - [anon_sym_PLUS] = ACTIONS(4232), - [anon_sym_DASH] = ACTIONS(4232), - [anon_sym_SLASH] = ACTIONS(4232), - [anon_sym_PERCENT] = ACTIONS(4232), - [anon_sym_as_QMARK] = ACTIONS(4234), - [anon_sym_PLUS_PLUS] = ACTIONS(4234), - [anon_sym_DASH_DASH] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4234), - [anon_sym_suspend] = ACTIONS(4232), - [anon_sym_sealed] = ACTIONS(4232), - [anon_sym_annotation] = ACTIONS(4232), - [anon_sym_data] = ACTIONS(4232), - [anon_sym_inner] = ACTIONS(4232), - [anon_sym_value] = ACTIONS(4232), - [anon_sym_override] = ACTIONS(4232), - [anon_sym_lateinit] = ACTIONS(4232), - [anon_sym_public] = ACTIONS(4232), - [anon_sym_private] = ACTIONS(4232), - [anon_sym_internal] = ACTIONS(4232), - [anon_sym_protected] = ACTIONS(4232), - [anon_sym_tailrec] = ACTIONS(4232), - [anon_sym_operator] = ACTIONS(4232), - [anon_sym_infix] = ACTIONS(4232), - [anon_sym_inline] = ACTIONS(4232), - [anon_sym_external] = ACTIONS(4232), - [sym_property_modifier] = ACTIONS(4232), - [anon_sym_abstract] = ACTIONS(4232), - [anon_sym_final] = ACTIONS(4232), - [anon_sym_open] = ACTIONS(4232), - [anon_sym_vararg] = ACTIONS(4232), - [anon_sym_noinline] = ACTIONS(4232), - [anon_sym_crossinline] = ACTIONS(4232), - [anon_sym_expect] = ACTIONS(4232), - [anon_sym_actual] = ACTIONS(4232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4234), - [sym_safe_nav] = ACTIONS(4234), - [sym_multiline_comment] = ACTIONS(3), + [3111] = { + [sym__alpha_identifier] = ACTIONS(5039), + [anon_sym_AT] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_as] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5041), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5039), + [anon_sym_GT] = ACTIONS(5039), + [anon_sym_where] = ACTIONS(5039), + [anon_sym_object] = ACTIONS(5039), + [anon_sym_fun] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5039), + [anon_sym_SEMI] = ACTIONS(5041), + [anon_sym_get] = ACTIONS(5039), + [anon_sym_set] = ACTIONS(5039), + [anon_sym_this] = ACTIONS(5039), + [anon_sym_super] = ACTIONS(5039), + [anon_sym_STAR] = ACTIONS(5039), + [sym_label] = ACTIONS(5039), + [anon_sym_in] = ACTIONS(5039), + [anon_sym_DOT_DOT] = ACTIONS(5041), + [anon_sym_QMARK_COLON] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5041), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_null] = ACTIONS(5039), + [anon_sym_if] = ACTIONS(5039), + [anon_sym_else] = ACTIONS(5039), + [anon_sym_when] = ACTIONS(5039), + [anon_sym_try] = ACTIONS(5039), + [anon_sym_throw] = ACTIONS(5039), + [anon_sym_return] = ACTIONS(5039), + [anon_sym_continue] = ACTIONS(5039), + [anon_sym_break] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5039), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5041), + [anon_sym_EQ_EQ] = ACTIONS(5039), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_BANGin] = ACTIONS(5041), + [anon_sym_is] = ACTIONS(5039), + [anon_sym_BANGis] = ACTIONS(5041), + [anon_sym_PLUS] = ACTIONS(5039), + [anon_sym_DASH] = ACTIONS(5039), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), + [anon_sym_as_QMARK] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5039), + [anon_sym_BANG_BANG] = ACTIONS(5041), + [anon_sym_data] = ACTIONS(5039), + [anon_sym_inner] = ACTIONS(5039), + [anon_sym_value] = ACTIONS(5039), + [anon_sym_expect] = ACTIONS(5039), + [anon_sym_actual] = ACTIONS(5039), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5041), + [anon_sym_continue_AT] = ACTIONS(5041), + [anon_sym_break_AT] = ACTIONS(5041), + [anon_sym_this_AT] = ACTIONS(5041), + [anon_sym_super_AT] = ACTIONS(5041), + [sym_real_literal] = ACTIONS(5041), + [sym_integer_literal] = ACTIONS(5039), + [sym_hex_literal] = ACTIONS(5041), + [sym_bin_literal] = ACTIONS(5041), + [anon_sym_true] = ACTIONS(5039), + [anon_sym_false] = ACTIONS(5039), + [anon_sym_SQUOTE] = ACTIONS(5041), + [sym__backtick_identifier] = ACTIONS(5041), + [sym__automatic_semicolon] = ACTIONS(5041), + [sym_safe_nav] = ACTIONS(5041), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5041), }, - [3064] = { - [sym_class_body] = STATE(3297), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_fun] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(4275), - [anon_sym_object] = ACTIONS(4275), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_this] = ACTIONS(4275), - [anon_sym_super] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), - [sym_label] = ACTIONS(4275), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4275), - [anon_sym_if] = ACTIONS(4275), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_when] = ACTIONS(4275), - [anon_sym_try] = ACTIONS(4275), - [anon_sym_throw] = ACTIONS(4275), - [anon_sym_return] = ACTIONS(4275), - [anon_sym_continue] = ACTIONS(4275), - [anon_sym_break] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_PLUS_EQ] = ACTIONS(4277), - [anon_sym_DASH_EQ] = ACTIONS(4277), - [anon_sym_STAR_EQ] = ACTIONS(4277), - [anon_sym_SLASH_EQ] = ACTIONS(4277), - [anon_sym_PERCENT_EQ] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4277), - [anon_sym_continue_AT] = ACTIONS(4277), - [anon_sym_break_AT] = ACTIONS(4277), - [anon_sym_this_AT] = ACTIONS(4277), - [anon_sym_super_AT] = ACTIONS(4277), - [sym_real_literal] = ACTIONS(4277), - [sym_integer_literal] = ACTIONS(4275), - [sym_hex_literal] = ACTIONS(4277), - [sym_bin_literal] = ACTIONS(4277), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [anon_sym_SQUOTE] = ACTIONS(4277), - [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), + [3112] = { + [sym_function_body] = STATE(3110), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), }, - [3065] = { - [sym__alpha_identifier] = ACTIONS(4667), - [anon_sym_AT] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4669), - [anon_sym_as] = ACTIONS(4667), - [anon_sym_EQ] = ACTIONS(4667), - [anon_sym_fun] = ACTIONS(4667), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_RBRACE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_by] = ACTIONS(4667), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4667), - [anon_sym_where] = ACTIONS(4667), - [anon_sym_object] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_get] = ACTIONS(4667), - [anon_sym_set] = ACTIONS(4667), - [anon_sym_this] = ACTIONS(4667), - [anon_sym_super] = ACTIONS(4667), - [anon_sym_STAR] = ACTIONS(4667), - [sym_label] = ACTIONS(4667), - [anon_sym_in] = ACTIONS(4667), - [anon_sym_DOT_DOT] = ACTIONS(4669), - [anon_sym_QMARK_COLON] = ACTIONS(4669), - [anon_sym_AMP_AMP] = ACTIONS(4669), - [anon_sym_PIPE_PIPE] = ACTIONS(4669), - [anon_sym_null] = ACTIONS(4667), - [anon_sym_if] = ACTIONS(4667), - [anon_sym_else] = ACTIONS(4667), - [anon_sym_when] = ACTIONS(4667), - [anon_sym_try] = ACTIONS(4667), - [anon_sym_throw] = ACTIONS(4667), - [anon_sym_return] = ACTIONS(4667), - [anon_sym_continue] = ACTIONS(4667), - [anon_sym_break] = ACTIONS(4667), - [anon_sym_COLON_COLON] = ACTIONS(4669), - [anon_sym_PLUS_EQ] = ACTIONS(4669), - [anon_sym_DASH_EQ] = ACTIONS(4669), - [anon_sym_STAR_EQ] = ACTIONS(4669), - [anon_sym_SLASH_EQ] = ACTIONS(4669), - [anon_sym_PERCENT_EQ] = ACTIONS(4669), - [anon_sym_BANG_EQ] = ACTIONS(4667), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4669), - [anon_sym_EQ_EQ] = ACTIONS(4667), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4669), - [anon_sym_LT_EQ] = ACTIONS(4669), - [anon_sym_GT_EQ] = ACTIONS(4669), - [anon_sym_BANGin] = ACTIONS(4669), - [anon_sym_is] = ACTIONS(4667), - [anon_sym_BANGis] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4667), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4667), - [anon_sym_PERCENT] = ACTIONS(4667), - [anon_sym_as_QMARK] = ACTIONS(4669), - [anon_sym_PLUS_PLUS] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4667), - [anon_sym_BANG_BANG] = ACTIONS(4669), - [anon_sym_data] = ACTIONS(4667), - [anon_sym_inner] = ACTIONS(4667), - [anon_sym_value] = ACTIONS(4667), - [anon_sym_expect] = ACTIONS(4667), - [anon_sym_actual] = ACTIONS(4667), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4669), - [anon_sym_continue_AT] = ACTIONS(4669), - [anon_sym_break_AT] = ACTIONS(4669), - [anon_sym_this_AT] = ACTIONS(4669), - [anon_sym_super_AT] = ACTIONS(4669), - [sym_real_literal] = ACTIONS(4669), - [sym_integer_literal] = ACTIONS(4667), - [sym_hex_literal] = ACTIONS(4669), - [sym_bin_literal] = ACTIONS(4669), - [anon_sym_true] = ACTIONS(4667), - [anon_sym_false] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4669), - [sym__backtick_identifier] = ACTIONS(4669), - [sym__automatic_semicolon] = ACTIONS(4669), - [sym_safe_nav] = ACTIONS(4669), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4669), + [3113] = { + [sym_class_body] = STATE(3546), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_RBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_RPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_DASH_GT] = ACTIONS(4351), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_while] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), }, - [3066] = { - [sym__alpha_identifier] = ACTIONS(4691), - [anon_sym_AT] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_as] = ACTIONS(4691), - [anon_sym_EQ] = ACTIONS(4691), - [anon_sym_fun] = ACTIONS(4691), - [anon_sym_LBRACE] = ACTIONS(4693), - [anon_sym_RBRACE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_where] = ACTIONS(4691), - [anon_sym_object] = ACTIONS(4691), - [anon_sym_DOT] = ACTIONS(4691), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_get] = ACTIONS(4691), - [anon_sym_set] = ACTIONS(4691), - [anon_sym_this] = ACTIONS(4691), - [anon_sym_super] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [sym_label] = ACTIONS(4691), - [anon_sym_in] = ACTIONS(4691), - [anon_sym_DOT_DOT] = ACTIONS(4693), - [anon_sym_QMARK_COLON] = ACTIONS(4693), - [anon_sym_AMP_AMP] = ACTIONS(4693), - [anon_sym_PIPE_PIPE] = ACTIONS(4693), - [anon_sym_null] = ACTIONS(4691), - [anon_sym_if] = ACTIONS(4691), - [anon_sym_else] = ACTIONS(4691), - [anon_sym_when] = ACTIONS(4691), - [anon_sym_try] = ACTIONS(4691), - [anon_sym_throw] = ACTIONS(4691), - [anon_sym_return] = ACTIONS(4691), - [anon_sym_continue] = ACTIONS(4691), - [anon_sym_break] = ACTIONS(4691), - [anon_sym_COLON_COLON] = ACTIONS(4693), - [anon_sym_PLUS_EQ] = ACTIONS(4693), - [anon_sym_DASH_EQ] = ACTIONS(4693), - [anon_sym_STAR_EQ] = ACTIONS(4693), - [anon_sym_SLASH_EQ] = ACTIONS(4693), - [anon_sym_PERCENT_EQ] = ACTIONS(4693), - [anon_sym_BANG_EQ] = ACTIONS(4691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4693), - [anon_sym_EQ_EQ] = ACTIONS(4691), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4693), - [anon_sym_LT_EQ] = ACTIONS(4693), - [anon_sym_GT_EQ] = ACTIONS(4693), - [anon_sym_BANGin] = ACTIONS(4693), - [anon_sym_is] = ACTIONS(4691), - [anon_sym_BANGis] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_PERCENT] = ACTIONS(4691), - [anon_sym_as_QMARK] = ACTIONS(4693), - [anon_sym_PLUS_PLUS] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4693), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_BANG_BANG] = ACTIONS(4693), - [anon_sym_data] = ACTIONS(4691), - [anon_sym_inner] = ACTIONS(4691), - [anon_sym_value] = ACTIONS(4691), - [anon_sym_expect] = ACTIONS(4691), - [anon_sym_actual] = ACTIONS(4691), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4693), - [anon_sym_continue_AT] = ACTIONS(4693), - [anon_sym_break_AT] = ACTIONS(4693), - [anon_sym_this_AT] = ACTIONS(4693), - [anon_sym_super_AT] = ACTIONS(4693), - [sym_real_literal] = ACTIONS(4693), - [sym_integer_literal] = ACTIONS(4691), - [sym_hex_literal] = ACTIONS(4693), - [sym_bin_literal] = ACTIONS(4693), - [anon_sym_true] = ACTIONS(4691), - [anon_sym_false] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4693), - [sym__backtick_identifier] = ACTIONS(4693), - [sym__automatic_semicolon] = ACTIONS(4693), - [sym_safe_nav] = ACTIONS(4693), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4693), + [3114] = { + [sym__alpha_identifier] = ACTIONS(5085), + [anon_sym_AT] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_as] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_LBRACE] = ACTIONS(5087), + [anon_sym_RBRACE] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_where] = ACTIONS(5085), + [anon_sym_object] = ACTIONS(5085), + [anon_sym_fun] = ACTIONS(5085), + [anon_sym_DOT] = ACTIONS(5085), + [anon_sym_SEMI] = ACTIONS(5087), + [anon_sym_get] = ACTIONS(5085), + [anon_sym_set] = ACTIONS(5085), + [anon_sym_this] = ACTIONS(5085), + [anon_sym_super] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [sym_label] = ACTIONS(5085), + [anon_sym_in] = ACTIONS(5085), + [anon_sym_DOT_DOT] = ACTIONS(5087), + [anon_sym_QMARK_COLON] = ACTIONS(5087), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_null] = ACTIONS(5085), + [anon_sym_if] = ACTIONS(5085), + [anon_sym_else] = ACTIONS(5085), + [anon_sym_when] = ACTIONS(5085), + [anon_sym_try] = ACTIONS(5085), + [anon_sym_throw] = ACTIONS(5085), + [anon_sym_return] = ACTIONS(5085), + [anon_sym_continue] = ACTIONS(5085), + [anon_sym_break] = ACTIONS(5085), + [anon_sym_COLON_COLON] = ACTIONS(5087), + [anon_sym_PLUS_EQ] = ACTIONS(5087), + [anon_sym_DASH_EQ] = ACTIONS(5087), + [anon_sym_STAR_EQ] = ACTIONS(5087), + [anon_sym_SLASH_EQ] = ACTIONS(5087), + [anon_sym_PERCENT_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5087), + [anon_sym_LT_EQ] = ACTIONS(5087), + [anon_sym_GT_EQ] = ACTIONS(5087), + [anon_sym_BANGin] = ACTIONS(5087), + [anon_sym_is] = ACTIONS(5085), + [anon_sym_BANGis] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_PERCENT] = ACTIONS(5085), + [anon_sym_as_QMARK] = ACTIONS(5087), + [anon_sym_PLUS_PLUS] = ACTIONS(5087), + [anon_sym_DASH_DASH] = ACTIONS(5087), + [anon_sym_BANG] = ACTIONS(5085), + [anon_sym_BANG_BANG] = ACTIONS(5087), + [anon_sym_data] = ACTIONS(5085), + [anon_sym_inner] = ACTIONS(5085), + [anon_sym_value] = ACTIONS(5085), + [anon_sym_expect] = ACTIONS(5085), + [anon_sym_actual] = ACTIONS(5085), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5087), + [anon_sym_continue_AT] = ACTIONS(5087), + [anon_sym_break_AT] = ACTIONS(5087), + [anon_sym_this_AT] = ACTIONS(5087), + [anon_sym_super_AT] = ACTIONS(5087), + [sym_real_literal] = ACTIONS(5087), + [sym_integer_literal] = ACTIONS(5085), + [sym_hex_literal] = ACTIONS(5087), + [sym_bin_literal] = ACTIONS(5087), + [anon_sym_true] = ACTIONS(5085), + [anon_sym_false] = ACTIONS(5085), + [anon_sym_SQUOTE] = ACTIONS(5087), + [sym__backtick_identifier] = ACTIONS(5087), + [sym__automatic_semicolon] = ACTIONS(5087), + [sym_safe_nav] = ACTIONS(5087), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5087), }, - [3067] = { - [sym__alpha_identifier] = ACTIONS(4587), - [anon_sym_AT] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_as] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_fun] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4589), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_LPAREN] = ACTIONS(4589), - [anon_sym_COMMA] = ACTIONS(4589), - [anon_sym_by] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4587), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_where] = ACTIONS(4587), - [anon_sym_object] = ACTIONS(4587), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [anon_sym_get] = ACTIONS(4587), - [anon_sym_set] = ACTIONS(4587), - [anon_sym_this] = ACTIONS(4587), - [anon_sym_super] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [sym_label] = ACTIONS(4587), - [anon_sym_in] = ACTIONS(4587), - [anon_sym_DOT_DOT] = ACTIONS(4589), - [anon_sym_QMARK_COLON] = ACTIONS(4589), - [anon_sym_AMP_AMP] = ACTIONS(4589), - [anon_sym_PIPE_PIPE] = ACTIONS(4589), - [anon_sym_null] = ACTIONS(4587), - [anon_sym_if] = ACTIONS(4587), - [anon_sym_else] = ACTIONS(4587), - [anon_sym_when] = ACTIONS(4587), - [anon_sym_try] = ACTIONS(4587), - [anon_sym_throw] = ACTIONS(4587), - [anon_sym_return] = ACTIONS(4587), - [anon_sym_continue] = ACTIONS(4587), - [anon_sym_break] = ACTIONS(4587), - [anon_sym_COLON_COLON] = ACTIONS(4589), - [anon_sym_PLUS_EQ] = ACTIONS(4589), - [anon_sym_DASH_EQ] = ACTIONS(4589), - [anon_sym_STAR_EQ] = ACTIONS(4589), - [anon_sym_SLASH_EQ] = ACTIONS(4589), - [anon_sym_PERCENT_EQ] = ACTIONS(4589), - [anon_sym_BANG_EQ] = ACTIONS(4587), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), - [anon_sym_EQ_EQ] = ACTIONS(4587), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), - [anon_sym_LT_EQ] = ACTIONS(4589), - [anon_sym_GT_EQ] = ACTIONS(4589), - [anon_sym_BANGin] = ACTIONS(4589), - [anon_sym_is] = ACTIONS(4587), - [anon_sym_BANGis] = ACTIONS(4589), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_as_QMARK] = ACTIONS(4589), - [anon_sym_PLUS_PLUS] = ACTIONS(4589), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_BANG_BANG] = ACTIONS(4589), - [anon_sym_data] = ACTIONS(4587), - [anon_sym_inner] = ACTIONS(4587), - [anon_sym_value] = ACTIONS(4587), - [anon_sym_expect] = ACTIONS(4587), - [anon_sym_actual] = ACTIONS(4587), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4589), - [anon_sym_continue_AT] = ACTIONS(4589), - [anon_sym_break_AT] = ACTIONS(4589), - [anon_sym_this_AT] = ACTIONS(4589), - [anon_sym_super_AT] = ACTIONS(4589), - [sym_real_literal] = ACTIONS(4589), - [sym_integer_literal] = ACTIONS(4587), - [sym_hex_literal] = ACTIONS(4589), - [sym_bin_literal] = ACTIONS(4589), - [anon_sym_true] = ACTIONS(4587), - [anon_sym_false] = ACTIONS(4587), - [anon_sym_SQUOTE] = ACTIONS(4589), - [sym__backtick_identifier] = ACTIONS(4589), - [sym__automatic_semicolon] = ACTIONS(4589), - [sym_safe_nav] = ACTIONS(4589), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4589), + [3115] = { + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_LBRACE] = ACTIONS(4441), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), }, - [3068] = { - [sym__alpha_identifier] = ACTIONS(4681), - [anon_sym_AT] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_as] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_fun] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4683), - [anon_sym_RBRACE] = ACTIONS(4683), - [anon_sym_LPAREN] = ACTIONS(4683), - [anon_sym_COMMA] = ACTIONS(4683), - [anon_sym_by] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4681), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_where] = ACTIONS(4681), - [anon_sym_object] = ACTIONS(4681), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_get] = ACTIONS(4681), - [anon_sym_set] = ACTIONS(4681), - [anon_sym_this] = ACTIONS(4681), - [anon_sym_super] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [sym_label] = ACTIONS(4681), - [anon_sym_in] = ACTIONS(4681), - [anon_sym_DOT_DOT] = ACTIONS(4683), - [anon_sym_QMARK_COLON] = ACTIONS(4683), - [anon_sym_AMP_AMP] = ACTIONS(4683), - [anon_sym_PIPE_PIPE] = ACTIONS(4683), - [anon_sym_null] = ACTIONS(4681), - [anon_sym_if] = ACTIONS(4681), - [anon_sym_else] = ACTIONS(4681), - [anon_sym_when] = ACTIONS(4681), - [anon_sym_try] = ACTIONS(4681), - [anon_sym_throw] = ACTIONS(4681), - [anon_sym_return] = ACTIONS(4681), - [anon_sym_continue] = ACTIONS(4681), - [anon_sym_break] = ACTIONS(4681), - [anon_sym_COLON_COLON] = ACTIONS(4683), - [anon_sym_PLUS_EQ] = ACTIONS(4683), - [anon_sym_DASH_EQ] = ACTIONS(4683), - [anon_sym_STAR_EQ] = ACTIONS(4683), - [anon_sym_SLASH_EQ] = ACTIONS(4683), - [anon_sym_PERCENT_EQ] = ACTIONS(4683), - [anon_sym_BANG_EQ] = ACTIONS(4681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4683), - [anon_sym_EQ_EQ] = ACTIONS(4681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4683), - [anon_sym_LT_EQ] = ACTIONS(4683), - [anon_sym_GT_EQ] = ACTIONS(4683), - [anon_sym_BANGin] = ACTIONS(4683), - [anon_sym_is] = ACTIONS(4681), - [anon_sym_BANGis] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4681), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_as_QMARK] = ACTIONS(4683), - [anon_sym_PLUS_PLUS] = ACTIONS(4683), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_BANG_BANG] = ACTIONS(4683), - [anon_sym_data] = ACTIONS(4681), - [anon_sym_inner] = ACTIONS(4681), - [anon_sym_value] = ACTIONS(4681), - [anon_sym_expect] = ACTIONS(4681), - [anon_sym_actual] = ACTIONS(4681), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4683), - [anon_sym_continue_AT] = ACTIONS(4683), - [anon_sym_break_AT] = ACTIONS(4683), - [anon_sym_this_AT] = ACTIONS(4683), - [anon_sym_super_AT] = ACTIONS(4683), - [sym_real_literal] = ACTIONS(4683), - [sym_integer_literal] = ACTIONS(4681), - [sym_hex_literal] = ACTIONS(4683), - [sym_bin_literal] = ACTIONS(4683), - [anon_sym_true] = ACTIONS(4681), - [anon_sym_false] = ACTIONS(4681), - [anon_sym_SQUOTE] = ACTIONS(4683), - [sym__backtick_identifier] = ACTIONS(4683), - [sym__automatic_semicolon] = ACTIONS(4683), - [sym_safe_nav] = ACTIONS(4683), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4683), + [3116] = { + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3420), + [anon_sym_set] = ACTIONS(3420), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_data] = ACTIONS(3420), + [anon_sym_inner] = ACTIONS(3420), + [anon_sym_value] = ACTIONS(3420), + [anon_sym_expect] = ACTIONS(3420), + [anon_sym_actual] = ACTIONS(3420), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), }, - [3069] = { - [sym__alpha_identifier] = ACTIONS(4786), - [anon_sym_AT] = ACTIONS(4788), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_LBRACK] = ACTIONS(4788), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_EQ] = ACTIONS(4786), - [anon_sym_fun] = ACTIONS(4786), - [anon_sym_LBRACE] = ACTIONS(4788), - [anon_sym_RBRACE] = ACTIONS(4788), - [anon_sym_LPAREN] = ACTIONS(4788), - [anon_sym_COMMA] = ACTIONS(4788), - [anon_sym_LT] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4786), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_object] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4786), - [anon_sym_SEMI] = ACTIONS(4788), - [anon_sym_get] = ACTIONS(4786), - [anon_sym_set] = ACTIONS(4786), - [anon_sym_this] = ACTIONS(4786), - [anon_sym_super] = ACTIONS(4786), - [anon_sym_STAR] = ACTIONS(4786), - [sym_label] = ACTIONS(4786), - [anon_sym_in] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4788), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4788), - [anon_sym_PIPE_PIPE] = ACTIONS(4788), - [anon_sym_null] = ACTIONS(4786), - [anon_sym_if] = ACTIONS(4786), - [anon_sym_else] = ACTIONS(4786), - [anon_sym_when] = ACTIONS(4786), - [anon_sym_try] = ACTIONS(4786), - [anon_sym_throw] = ACTIONS(4786), - [anon_sym_return] = ACTIONS(4786), - [anon_sym_continue] = ACTIONS(4786), - [anon_sym_break] = ACTIONS(4786), - [anon_sym_COLON_COLON] = ACTIONS(4788), - [anon_sym_PLUS_EQ] = ACTIONS(4788), - [anon_sym_DASH_EQ] = ACTIONS(4788), - [anon_sym_STAR_EQ] = ACTIONS(4788), - [anon_sym_SLASH_EQ] = ACTIONS(4788), - [anon_sym_PERCENT_EQ] = ACTIONS(4788), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4788), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4788), - [anon_sym_LT_EQ] = ACTIONS(4788), - [anon_sym_GT_EQ] = ACTIONS(4788), - [anon_sym_BANGin] = ACTIONS(4788), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_BANGis] = ACTIONS(4788), - [anon_sym_PLUS] = ACTIONS(4786), - [anon_sym_DASH] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4786), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_as_QMARK] = ACTIONS(4788), - [anon_sym_PLUS_PLUS] = ACTIONS(4788), - [anon_sym_DASH_DASH] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4786), - [anon_sym_BANG_BANG] = ACTIONS(4788), - [anon_sym_data] = ACTIONS(4786), - [anon_sym_inner] = ACTIONS(4786), - [anon_sym_value] = ACTIONS(4786), - [anon_sym_expect] = ACTIONS(4786), - [anon_sym_actual] = ACTIONS(4786), + [3117] = { + [sym_class_body] = STATE(3517), + [sym_type_constraints] = STATE(3302), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_RBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_RPAREN] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [anon_sym_DASH_GT] = ACTIONS(4357), + [sym_label] = ACTIONS(4357), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_while] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4788), - [anon_sym_continue_AT] = ACTIONS(4788), - [anon_sym_break_AT] = ACTIONS(4788), - [anon_sym_this_AT] = ACTIONS(4788), - [anon_sym_super_AT] = ACTIONS(4788), - [sym_real_literal] = ACTIONS(4788), - [sym_integer_literal] = ACTIONS(4786), - [sym_hex_literal] = ACTIONS(4788), - [sym_bin_literal] = ACTIONS(4788), - [anon_sym_true] = ACTIONS(4786), - [anon_sym_false] = ACTIONS(4786), - [anon_sym_SQUOTE] = ACTIONS(4788), - [sym__backtick_identifier] = ACTIONS(4788), - [sym__automatic_semicolon] = ACTIONS(4788), - [sym_safe_nav] = ACTIONS(4788), + [sym__backtick_identifier] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4788), }, - [3070] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_EQ] = ACTIONS(4790), - [anon_sym_fun] = ACTIONS(4790), - [anon_sym_LBRACE] = ACTIONS(4792), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4792), - [anon_sym_COMMA] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_object] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_this] = ACTIONS(4790), - [anon_sym_super] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4790), - [sym_label] = ACTIONS(4790), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4792), - [anon_sym_QMARK_COLON] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_null] = ACTIONS(4790), - [anon_sym_if] = ACTIONS(4790), - [anon_sym_else] = ACTIONS(4790), - [anon_sym_when] = ACTIONS(4790), - [anon_sym_try] = ACTIONS(4790), - [anon_sym_throw] = ACTIONS(4790), - [anon_sym_return] = ACTIONS(4790), - [anon_sym_continue] = ACTIONS(4790), - [anon_sym_break] = ACTIONS(4790), - [anon_sym_COLON_COLON] = ACTIONS(4792), - [anon_sym_PLUS_EQ] = ACTIONS(4792), - [anon_sym_DASH_EQ] = ACTIONS(4792), - [anon_sym_STAR_EQ] = ACTIONS(4792), - [anon_sym_SLASH_EQ] = ACTIONS(4792), - [anon_sym_PERCENT_EQ] = ACTIONS(4792), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4792), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4792), - [anon_sym_LT_EQ] = ACTIONS(4792), - [anon_sym_GT_EQ] = ACTIONS(4792), - [anon_sym_BANGin] = ACTIONS(4792), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_BANGis] = ACTIONS(4792), - [anon_sym_PLUS] = ACTIONS(4790), - [anon_sym_DASH] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4790), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_as_QMARK] = ACTIONS(4792), - [anon_sym_PLUS_PLUS] = ACTIONS(4792), - [anon_sym_DASH_DASH] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4790), - [anon_sym_BANG_BANG] = ACTIONS(4792), - [anon_sym_data] = ACTIONS(4790), - [anon_sym_inner] = ACTIONS(4790), - [anon_sym_value] = ACTIONS(4790), - [anon_sym_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), + [3118] = { + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4569), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_object] = ACTIONS(4567), + [anon_sym_fun] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_this] = ACTIONS(4567), + [anon_sym_super] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [sym_label] = ACTIONS(4567), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_null] = ACTIONS(4567), + [anon_sym_if] = ACTIONS(4567), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_when] = ACTIONS(4567), + [anon_sym_try] = ACTIONS(4567), + [anon_sym_throw] = ACTIONS(4567), + [anon_sym_return] = ACTIONS(4567), + [anon_sym_continue] = ACTIONS(4567), + [anon_sym_break] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4569), + [anon_sym_continue_AT] = ACTIONS(4569), + [anon_sym_break_AT] = ACTIONS(4569), + [anon_sym_this_AT] = ACTIONS(4569), + [anon_sym_super_AT] = ACTIONS(4569), + [sym_real_literal] = ACTIONS(4569), + [sym_integer_literal] = ACTIONS(4567), + [sym_hex_literal] = ACTIONS(4569), + [sym_bin_literal] = ACTIONS(4569), + [anon_sym_true] = ACTIONS(4567), + [anon_sym_false] = ACTIONS(4567), + [anon_sym_SQUOTE] = ACTIONS(4569), + [sym__backtick_identifier] = ACTIONS(4569), + [sym__automatic_semicolon] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4569), + }, + [3119] = { + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_RBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_DASH_GT] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + }, + [3120] = { + [sym__alpha_identifier] = ACTIONS(4930), + [anon_sym_AT] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_as] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_where] = ACTIONS(4930), + [anon_sym_object] = ACTIONS(4930), + [anon_sym_fun] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_get] = ACTIONS(4930), + [anon_sym_set] = ACTIONS(4930), + [anon_sym_this] = ACTIONS(4930), + [anon_sym_super] = ACTIONS(4930), + [anon_sym_STAR] = ACTIONS(4930), + [sym_label] = ACTIONS(4930), + [anon_sym_in] = ACTIONS(4930), + [anon_sym_DOT_DOT] = ACTIONS(4932), + [anon_sym_QMARK_COLON] = ACTIONS(4932), + [anon_sym_AMP_AMP] = ACTIONS(4932), + [anon_sym_PIPE_PIPE] = ACTIONS(4932), + [anon_sym_null] = ACTIONS(4930), + [anon_sym_if] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4930), + [anon_sym_when] = ACTIONS(4930), + [anon_sym_try] = ACTIONS(4930), + [anon_sym_throw] = ACTIONS(4930), + [anon_sym_return] = ACTIONS(4930), + [anon_sym_continue] = ACTIONS(4930), + [anon_sym_break] = ACTIONS(4930), + [anon_sym_COLON_COLON] = ACTIONS(4932), + [anon_sym_PLUS_EQ] = ACTIONS(4932), + [anon_sym_DASH_EQ] = ACTIONS(4932), + [anon_sym_STAR_EQ] = ACTIONS(4932), + [anon_sym_SLASH_EQ] = ACTIONS(4932), + [anon_sym_PERCENT_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4932), + [anon_sym_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4932), + [anon_sym_LT_EQ] = ACTIONS(4932), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_BANGin] = ACTIONS(4932), + [anon_sym_is] = ACTIONS(4930), + [anon_sym_BANGis] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4930), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4930), + [anon_sym_PERCENT] = ACTIONS(4930), + [anon_sym_as_QMARK] = ACTIONS(4932), + [anon_sym_PLUS_PLUS] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4930), + [anon_sym_BANG_BANG] = ACTIONS(4932), + [anon_sym_data] = ACTIONS(4930), + [anon_sym_inner] = ACTIONS(4930), + [anon_sym_value] = ACTIONS(4930), + [anon_sym_expect] = ACTIONS(4930), + [anon_sym_actual] = ACTIONS(4930), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4932), + [anon_sym_continue_AT] = ACTIONS(4932), + [anon_sym_break_AT] = ACTIONS(4932), + [anon_sym_this_AT] = ACTIONS(4932), + [anon_sym_super_AT] = ACTIONS(4932), + [sym_real_literal] = ACTIONS(4932), + [sym_integer_literal] = ACTIONS(4930), + [sym_hex_literal] = ACTIONS(4932), + [sym_bin_literal] = ACTIONS(4932), + [anon_sym_true] = ACTIONS(4930), + [anon_sym_false] = ACTIONS(4930), + [anon_sym_SQUOTE] = ACTIONS(4932), + [sym__backtick_identifier] = ACTIONS(4932), + [sym__automatic_semicolon] = ACTIONS(4932), + [sym_safe_nav] = ACTIONS(4932), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4932), + }, + [3121] = { + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4299), + [anon_sym_LBRACE] = ACTIONS(4301), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [3122] = { + [sym_file_annotation] = STATE(3122), + [aux_sym_source_file_repeat1] = STATE(3122), + [ts_builtin_sym_end] = ACTIONS(6658), + [sym__alpha_identifier] = ACTIONS(6660), + [anon_sym_AT] = ACTIONS(6662), + [anon_sym_LBRACK] = ACTIONS(6658), + [anon_sym_package] = ACTIONS(6660), + [anon_sym_import] = ACTIONS(6660), + [anon_sym_typealias] = ACTIONS(6660), + [anon_sym_class] = ACTIONS(6660), + [anon_sym_interface] = ACTIONS(6660), + [anon_sym_enum] = ACTIONS(6660), + [anon_sym_LBRACE] = ACTIONS(6658), + [anon_sym_LPAREN] = ACTIONS(6658), + [anon_sym_val] = ACTIONS(6660), + [anon_sym_var] = ACTIONS(6660), + [anon_sym_object] = ACTIONS(6660), + [anon_sym_fun] = ACTIONS(6660), + [anon_sym_get] = ACTIONS(6660), + [anon_sym_set] = ACTIONS(6660), + [anon_sym_this] = ACTIONS(6660), + [anon_sym_super] = ACTIONS(6660), + [anon_sym_STAR] = ACTIONS(6658), + [sym_label] = ACTIONS(6660), + [anon_sym_for] = ACTIONS(6660), + [anon_sym_while] = ACTIONS(6660), + [anon_sym_do] = ACTIONS(6660), + [anon_sym_null] = ACTIONS(6660), + [anon_sym_if] = ACTIONS(6660), + [anon_sym_when] = ACTIONS(6660), + [anon_sym_try] = ACTIONS(6660), + [anon_sym_throw] = ACTIONS(6660), + [anon_sym_return] = ACTIONS(6660), + [anon_sym_continue] = ACTIONS(6660), + [anon_sym_break] = ACTIONS(6660), + [anon_sym_COLON_COLON] = ACTIONS(6658), + [anon_sym_PLUS] = ACTIONS(6660), + [anon_sym_DASH] = ACTIONS(6660), + [anon_sym_PLUS_PLUS] = ACTIONS(6658), + [anon_sym_DASH_DASH] = ACTIONS(6658), + [anon_sym_BANG] = ACTIONS(6658), + [anon_sym_suspend] = ACTIONS(6660), + [anon_sym_sealed] = ACTIONS(6660), + [anon_sym_annotation] = ACTIONS(6660), + [anon_sym_data] = ACTIONS(6660), + [anon_sym_inner] = ACTIONS(6660), + [anon_sym_value] = ACTIONS(6660), + [anon_sym_override] = ACTIONS(6660), + [anon_sym_lateinit] = ACTIONS(6660), + [anon_sym_public] = ACTIONS(6660), + [anon_sym_private] = ACTIONS(6660), + [anon_sym_internal] = ACTIONS(6660), + [anon_sym_protected] = ACTIONS(6660), + [anon_sym_tailrec] = ACTIONS(6660), + [anon_sym_operator] = ACTIONS(6660), + [anon_sym_infix] = ACTIONS(6660), + [anon_sym_inline] = ACTIONS(6660), + [anon_sym_external] = ACTIONS(6660), + [sym_property_modifier] = ACTIONS(6660), + [anon_sym_abstract] = ACTIONS(6660), + [anon_sym_final] = ACTIONS(6660), + [anon_sym_open] = ACTIONS(6660), + [anon_sym_vararg] = ACTIONS(6660), + [anon_sym_noinline] = ACTIONS(6660), + [anon_sym_crossinline] = ACTIONS(6660), + [anon_sym_expect] = ACTIONS(6660), + [anon_sym_actual] = ACTIONS(6660), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6658), + [anon_sym_continue_AT] = ACTIONS(6658), + [anon_sym_break_AT] = ACTIONS(6658), + [anon_sym_this_AT] = ACTIONS(6658), + [anon_sym_super_AT] = ACTIONS(6658), + [sym_real_literal] = ACTIONS(6658), + [sym_integer_literal] = ACTIONS(6660), + [sym_hex_literal] = ACTIONS(6658), + [sym_bin_literal] = ACTIONS(6658), + [anon_sym_true] = ACTIONS(6660), + [anon_sym_false] = ACTIONS(6660), + [anon_sym_SQUOTE] = ACTIONS(6658), + [sym__backtick_identifier] = ACTIONS(6658), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6658), + }, + [3123] = { + [sym__alpha_identifier] = ACTIONS(4926), + [anon_sym_AT] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_as] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_where] = ACTIONS(4926), + [anon_sym_object] = ACTIONS(4926), + [anon_sym_fun] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_get] = ACTIONS(4926), + [anon_sym_set] = ACTIONS(4926), + [anon_sym_this] = ACTIONS(4926), + [anon_sym_super] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(4926), + [sym_label] = ACTIONS(4926), + [anon_sym_in] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4928), + [anon_sym_QMARK_COLON] = ACTIONS(4928), + [anon_sym_AMP_AMP] = ACTIONS(4928), + [anon_sym_PIPE_PIPE] = ACTIONS(4928), + [anon_sym_null] = ACTIONS(4926), + [anon_sym_if] = ACTIONS(4926), + [anon_sym_else] = ACTIONS(4926), + [anon_sym_when] = ACTIONS(4926), + [anon_sym_try] = ACTIONS(4926), + [anon_sym_throw] = ACTIONS(4926), + [anon_sym_return] = ACTIONS(4926), + [anon_sym_continue] = ACTIONS(4926), + [anon_sym_break] = ACTIONS(4926), + [anon_sym_COLON_COLON] = ACTIONS(4928), + [anon_sym_PLUS_EQ] = ACTIONS(4928), + [anon_sym_DASH_EQ] = ACTIONS(4928), + [anon_sym_STAR_EQ] = ACTIONS(4928), + [anon_sym_SLASH_EQ] = ACTIONS(4928), + [anon_sym_PERCENT_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ] = ACTIONS(4926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), + [anon_sym_EQ_EQ] = ACTIONS(4926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), + [anon_sym_LT_EQ] = ACTIONS(4928), + [anon_sym_GT_EQ] = ACTIONS(4928), + [anon_sym_BANGin] = ACTIONS(4928), + [anon_sym_is] = ACTIONS(4926), + [anon_sym_BANGis] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_PERCENT] = ACTIONS(4926), + [anon_sym_as_QMARK] = ACTIONS(4928), + [anon_sym_PLUS_PLUS] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4926), + [anon_sym_BANG_BANG] = ACTIONS(4928), + [anon_sym_data] = ACTIONS(4926), + [anon_sym_inner] = ACTIONS(4926), + [anon_sym_value] = ACTIONS(4926), + [anon_sym_expect] = ACTIONS(4926), + [anon_sym_actual] = ACTIONS(4926), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4792), - [anon_sym_continue_AT] = ACTIONS(4792), - [anon_sym_break_AT] = ACTIONS(4792), - [anon_sym_this_AT] = ACTIONS(4792), - [anon_sym_super_AT] = ACTIONS(4792), - [sym_real_literal] = ACTIONS(4792), - [sym_integer_literal] = ACTIONS(4790), - [sym_hex_literal] = ACTIONS(4792), - [sym_bin_literal] = ACTIONS(4792), - [anon_sym_true] = ACTIONS(4790), - [anon_sym_false] = ACTIONS(4790), - [anon_sym_SQUOTE] = ACTIONS(4792), - [sym__backtick_identifier] = ACTIONS(4792), - [sym__automatic_semicolon] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), + [anon_sym_return_AT] = ACTIONS(4928), + [anon_sym_continue_AT] = ACTIONS(4928), + [anon_sym_break_AT] = ACTIONS(4928), + [anon_sym_this_AT] = ACTIONS(4928), + [anon_sym_super_AT] = ACTIONS(4928), + [sym_real_literal] = ACTIONS(4928), + [sym_integer_literal] = ACTIONS(4926), + [sym_hex_literal] = ACTIONS(4928), + [sym_bin_literal] = ACTIONS(4928), + [anon_sym_true] = ACTIONS(4926), + [anon_sym_false] = ACTIONS(4926), + [anon_sym_SQUOTE] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(4928), + [sym__automatic_semicolon] = ACTIONS(4928), + [sym_safe_nav] = ACTIONS(4928), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4792), + [sym__string_start] = ACTIONS(4928), }, - [3071] = { - [sym__alpha_identifier] = ACTIONS(4297), - [anon_sym_AT] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_RBRACK] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4297), - [anon_sym_EQ] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_RBRACE] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_RPAREN] = ACTIONS(4299), - [anon_sym_by] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_where] = ACTIONS(4297), - [anon_sym_DOT] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_get] = ACTIONS(4297), - [anon_sym_set] = ACTIONS(4297), - [anon_sym_AMP] = ACTIONS(6695), - [sym__quest] = ACTIONS(4297), - [anon_sym_STAR] = ACTIONS(4297), - [anon_sym_DASH_GT] = ACTIONS(4299), + [3124] = { + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4297), - [anon_sym_while] = ACTIONS(4297), - [anon_sym_DOT_DOT] = ACTIONS(4299), - [anon_sym_QMARK_COLON] = ACTIONS(4299), - [anon_sym_AMP_AMP] = ACTIONS(4299), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4297), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym_PLUS_EQ] = ACTIONS(4299), - [anon_sym_DASH_EQ] = ACTIONS(4299), - [anon_sym_STAR_EQ] = ACTIONS(4299), - [anon_sym_SLASH_EQ] = ACTIONS(4299), - [anon_sym_PERCENT_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ] = ACTIONS(4297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ] = ACTIONS(4297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ] = ACTIONS(4299), - [anon_sym_GT_EQ] = ACTIONS(4299), - [anon_sym_BANGin] = ACTIONS(4299), - [anon_sym_is] = ACTIONS(4297), - [anon_sym_BANGis] = ACTIONS(4299), - [anon_sym_PLUS] = ACTIONS(4297), - [anon_sym_DASH] = ACTIONS(4297), - [anon_sym_SLASH] = ACTIONS(4297), - [anon_sym_PERCENT] = ACTIONS(4297), - [anon_sym_as_QMARK] = ACTIONS(4299), - [anon_sym_PLUS_PLUS] = ACTIONS(4299), - [anon_sym_DASH_DASH] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4299), - [anon_sym_suspend] = ACTIONS(4297), - [anon_sym_sealed] = ACTIONS(4297), - [anon_sym_annotation] = ACTIONS(4297), - [anon_sym_data] = ACTIONS(4297), - [anon_sym_inner] = ACTIONS(4297), - [anon_sym_value] = ACTIONS(4297), - [anon_sym_override] = ACTIONS(4297), - [anon_sym_lateinit] = ACTIONS(4297), - [anon_sym_public] = ACTIONS(4297), - [anon_sym_private] = ACTIONS(4297), - [anon_sym_internal] = ACTIONS(4297), - [anon_sym_protected] = ACTIONS(4297), - [anon_sym_tailrec] = ACTIONS(4297), - [anon_sym_operator] = ACTIONS(4297), - [anon_sym_infix] = ACTIONS(4297), - [anon_sym_inline] = ACTIONS(4297), - [anon_sym_external] = ACTIONS(4297), - [sym_property_modifier] = ACTIONS(4297), - [anon_sym_abstract] = ACTIONS(4297), - [anon_sym_final] = ACTIONS(4297), - [anon_sym_open] = ACTIONS(4297), - [anon_sym_vararg] = ACTIONS(4297), - [anon_sym_noinline] = ACTIONS(4297), - [anon_sym_crossinline] = ACTIONS(4297), - [anon_sym_expect] = ACTIONS(4297), - [anon_sym_actual] = ACTIONS(4297), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4299), - [sym_safe_nav] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [3125] = { + [sym_type_constraints] = STATE(3303), + [sym_enum_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, - [3072] = { - [sym_enum_class_body] = STATE(3272), - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_fun] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_LT] = ACTIONS(4595), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_where] = ACTIONS(4595), - [anon_sym_object] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_this] = ACTIONS(4595), - [anon_sym_super] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [sym_label] = ACTIONS(4595), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_if] = ACTIONS(4595), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_when] = ACTIONS(4595), - [anon_sym_try] = ACTIONS(4595), - [anon_sym_throw] = ACTIONS(4595), - [anon_sym_return] = ACTIONS(4595), - [anon_sym_continue] = ACTIONS(4595), - [anon_sym_break] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4597), - [anon_sym_continue_AT] = ACTIONS(4597), - [anon_sym_break_AT] = ACTIONS(4597), - [anon_sym_this_AT] = ACTIONS(4597), - [anon_sym_super_AT] = ACTIONS(4597), - [sym_real_literal] = ACTIONS(4597), - [sym_integer_literal] = ACTIONS(4595), - [sym_hex_literal] = ACTIONS(4597), - [sym_bin_literal] = ACTIONS(4597), - [anon_sym_true] = ACTIONS(4595), - [anon_sym_false] = ACTIONS(4595), - [anon_sym_SQUOTE] = ACTIONS(4597), - [sym__backtick_identifier] = ACTIONS(4597), - [sym__automatic_semicolon] = ACTIONS(4597), - [sym_safe_nav] = ACTIONS(4597), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4597), + [3126] = { + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(1814), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_data] = ACTIONS(1814), + [anon_sym_inner] = ACTIONS(1814), + [anon_sym_value] = ACTIONS(1814), + [anon_sym_expect] = ACTIONS(1814), + [anon_sym_actual] = ACTIONS(1814), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [3073] = { - [aux_sym_type_constraints_repeat1] = STATE(3073), - [sym__alpha_identifier] = ACTIONS(4495), - [anon_sym_AT] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_as] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4495), - [anon_sym_fun] = ACTIONS(4495), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_COMMA] = ACTIONS(6697), - [anon_sym_LT] = ACTIONS(4495), - [anon_sym_GT] = ACTIONS(4495), - [anon_sym_where] = ACTIONS(4495), - [anon_sym_object] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4495), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_get] = ACTIONS(4495), - [anon_sym_set] = ACTIONS(4495), - [anon_sym_this] = ACTIONS(4495), - [anon_sym_super] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4495), - [anon_sym_DOT_DOT] = ACTIONS(4497), - [anon_sym_QMARK_COLON] = ACTIONS(4497), - [anon_sym_AMP_AMP] = ACTIONS(4497), - [anon_sym_PIPE_PIPE] = ACTIONS(4497), - [anon_sym_null] = ACTIONS(4495), - [anon_sym_if] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4495), - [anon_sym_when] = ACTIONS(4495), - [anon_sym_try] = ACTIONS(4495), - [anon_sym_throw] = ACTIONS(4495), - [anon_sym_return] = ACTIONS(4495), - [anon_sym_continue] = ACTIONS(4495), - [anon_sym_break] = ACTIONS(4495), - [anon_sym_COLON_COLON] = ACTIONS(4497), - [anon_sym_PLUS_EQ] = ACTIONS(4497), - [anon_sym_DASH_EQ] = ACTIONS(4497), - [anon_sym_STAR_EQ] = ACTIONS(4497), - [anon_sym_SLASH_EQ] = ACTIONS(4497), - [anon_sym_PERCENT_EQ] = ACTIONS(4497), - [anon_sym_BANG_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4497), - [anon_sym_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4497), - [anon_sym_LT_EQ] = ACTIONS(4497), - [anon_sym_GT_EQ] = ACTIONS(4497), - [anon_sym_BANGin] = ACTIONS(4497), - [anon_sym_is] = ACTIONS(4495), - [anon_sym_BANGis] = ACTIONS(4497), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_SLASH] = ACTIONS(4495), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4497), - [anon_sym_PLUS_PLUS] = ACTIONS(4497), - [anon_sym_DASH_DASH] = ACTIONS(4497), - [anon_sym_BANG] = ACTIONS(4495), - [anon_sym_BANG_BANG] = ACTIONS(4497), - [anon_sym_data] = ACTIONS(4495), - [anon_sym_inner] = ACTIONS(4495), - [anon_sym_value] = ACTIONS(4495), - [anon_sym_expect] = ACTIONS(4495), - [anon_sym_actual] = ACTIONS(4495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4497), - [anon_sym_continue_AT] = ACTIONS(4497), - [anon_sym_break_AT] = ACTIONS(4497), - [anon_sym_this_AT] = ACTIONS(4497), - [anon_sym_super_AT] = ACTIONS(4497), - [sym_real_literal] = ACTIONS(4497), - [sym_integer_literal] = ACTIONS(4495), - [sym_hex_literal] = ACTIONS(4497), - [sym_bin_literal] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4495), - [anon_sym_false] = ACTIONS(4495), - [anon_sym_SQUOTE] = ACTIONS(4497), - [sym__backtick_identifier] = ACTIONS(4497), - [sym__automatic_semicolon] = ACTIONS(4497), - [sym_safe_nav] = ACTIONS(4497), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4497), + [3127] = { + [sym_class_body] = STATE(3157), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(6665), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), }, - [3074] = { - [sym__alpha_identifier] = ACTIONS(4335), - [anon_sym_AT] = ACTIONS(4337), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_RBRACK] = ACTIONS(4337), - [anon_sym_as] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_RBRACE] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_COMMA] = ACTIONS(4337), - [anon_sym_RPAREN] = ACTIONS(4337), - [anon_sym_by] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4335), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_where] = ACTIONS(4335), - [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4337), - [anon_sym_get] = ACTIONS(4335), - [anon_sym_set] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4335), - [sym__quest] = ACTIONS(4335), - [anon_sym_STAR] = ACTIONS(4335), - [anon_sym_DASH_GT] = ACTIONS(4337), - [sym_label] = ACTIONS(4337), - [anon_sym_in] = ACTIONS(4335), - [anon_sym_while] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(4337), - [anon_sym_QMARK_COLON] = ACTIONS(4337), - [anon_sym_AMP_AMP] = ACTIONS(4337), - [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [anon_sym_else] = ACTIONS(4335), - [anon_sym_COLON_COLON] = ACTIONS(4337), - [anon_sym_PLUS_EQ] = ACTIONS(4337), - [anon_sym_DASH_EQ] = ACTIONS(4337), - [anon_sym_STAR_EQ] = ACTIONS(4337), - [anon_sym_SLASH_EQ] = ACTIONS(4337), - [anon_sym_PERCENT_EQ] = ACTIONS(4337), - [anon_sym_BANG_EQ] = ACTIONS(4335), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), - [anon_sym_EQ_EQ] = ACTIONS(4335), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), - [anon_sym_LT_EQ] = ACTIONS(4337), - [anon_sym_GT_EQ] = ACTIONS(4337), - [anon_sym_BANGin] = ACTIONS(4337), - [anon_sym_is] = ACTIONS(4335), - [anon_sym_BANGis] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_as_QMARK] = ACTIONS(4337), - [anon_sym_PLUS_PLUS] = ACTIONS(4337), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_BANG_BANG] = ACTIONS(4337), - [anon_sym_suspend] = ACTIONS(4335), - [anon_sym_sealed] = ACTIONS(4335), - [anon_sym_annotation] = ACTIONS(4335), - [anon_sym_data] = ACTIONS(4335), - [anon_sym_inner] = ACTIONS(4335), - [anon_sym_value] = ACTIONS(4335), - [anon_sym_override] = ACTIONS(4335), - [anon_sym_lateinit] = ACTIONS(4335), - [anon_sym_public] = ACTIONS(4335), - [anon_sym_private] = ACTIONS(4335), - [anon_sym_internal] = ACTIONS(4335), - [anon_sym_protected] = ACTIONS(4335), - [anon_sym_tailrec] = ACTIONS(4335), - [anon_sym_operator] = ACTIONS(4335), - [anon_sym_infix] = ACTIONS(4335), - [anon_sym_inline] = ACTIONS(4335), - [anon_sym_external] = ACTIONS(4335), - [sym_property_modifier] = ACTIONS(4335), - [anon_sym_abstract] = ACTIONS(4335), - [anon_sym_final] = ACTIONS(4335), - [anon_sym_open] = ACTIONS(4335), - [anon_sym_vararg] = ACTIONS(4335), - [anon_sym_noinline] = ACTIONS(4335), - [anon_sym_crossinline] = ACTIONS(4335), - [anon_sym_expect] = ACTIONS(4335), - [anon_sym_actual] = ACTIONS(4335), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4337), - [sym_safe_nav] = ACTIONS(4337), - [sym_multiline_comment] = ACTIONS(3), + [3128] = { + [sym__alpha_identifier] = ACTIONS(4798), + [anon_sym_AT] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_as] = ACTIONS(4798), + [anon_sym_EQ] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4800), + [anon_sym_RBRACE] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4800), + [anon_sym_COMMA] = ACTIONS(4800), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_where] = ACTIONS(4798), + [anon_sym_object] = ACTIONS(4798), + [anon_sym_fun] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_get] = ACTIONS(4798), + [anon_sym_set] = ACTIONS(4798), + [anon_sym_this] = ACTIONS(4798), + [anon_sym_super] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4798), + [sym_label] = ACTIONS(4798), + [anon_sym_in] = ACTIONS(4798), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_QMARK_COLON] = ACTIONS(4800), + [anon_sym_AMP_AMP] = ACTIONS(4800), + [anon_sym_PIPE_PIPE] = ACTIONS(4800), + [anon_sym_null] = ACTIONS(4798), + [anon_sym_if] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(4798), + [anon_sym_when] = ACTIONS(4798), + [anon_sym_try] = ACTIONS(4798), + [anon_sym_throw] = ACTIONS(4798), + [anon_sym_return] = ACTIONS(4798), + [anon_sym_continue] = ACTIONS(4798), + [anon_sym_break] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_PLUS_EQ] = ACTIONS(4800), + [anon_sym_DASH_EQ] = ACTIONS(4800), + [anon_sym_STAR_EQ] = ACTIONS(4800), + [anon_sym_SLASH_EQ] = ACTIONS(4800), + [anon_sym_PERCENT_EQ] = ACTIONS(4800), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4800), + [anon_sym_BANGin] = ACTIONS(4800), + [anon_sym_is] = ACTIONS(4798), + [anon_sym_BANGis] = ACTIONS(4800), + [anon_sym_PLUS] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_SLASH] = ACTIONS(4798), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4800), + [anon_sym_PLUS_PLUS] = ACTIONS(4800), + [anon_sym_DASH_DASH] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(4798), + [anon_sym_BANG_BANG] = ACTIONS(4800), + [anon_sym_data] = ACTIONS(4798), + [anon_sym_inner] = ACTIONS(4798), + [anon_sym_value] = ACTIONS(4798), + [anon_sym_expect] = ACTIONS(4798), + [anon_sym_actual] = ACTIONS(4798), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4800), + [anon_sym_continue_AT] = ACTIONS(4800), + [anon_sym_break_AT] = ACTIONS(4800), + [anon_sym_this_AT] = ACTIONS(4800), + [anon_sym_super_AT] = ACTIONS(4800), + [sym_real_literal] = ACTIONS(4800), + [sym_integer_literal] = ACTIONS(4798), + [sym_hex_literal] = ACTIONS(4800), + [sym_bin_literal] = ACTIONS(4800), + [anon_sym_true] = ACTIONS(4798), + [anon_sym_false] = ACTIONS(4798), + [anon_sym_SQUOTE] = ACTIONS(4800), + [sym__backtick_identifier] = ACTIONS(4800), + [sym__automatic_semicolon] = ACTIONS(4800), + [sym_safe_nav] = ACTIONS(4800), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4800), }, - [3075] = { - [sym__alpha_identifier] = ACTIONS(4335), - [anon_sym_AT] = ACTIONS(4337), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_EQ] = ACTIONS(4337), - [anon_sym_fun] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_RBRACE] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_COMMA] = ACTIONS(4337), - [anon_sym_by] = ACTIONS(4335), - [anon_sym_where] = ACTIONS(4335), - [anon_sym_object] = ACTIONS(4335), - [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4337), - [anon_sym_get] = ACTIONS(4335), - [anon_sym_set] = ACTIONS(4335), - [anon_sym_this] = ACTIONS(4335), - [anon_sym_super] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [sym__quest] = ACTIONS(4337), - [anon_sym_STAR] = ACTIONS(4337), - [sym_label] = ACTIONS(4335), - [anon_sym_in] = ACTIONS(4335), - [anon_sym_null] = ACTIONS(4335), - [anon_sym_if] = ACTIONS(4335), - [anon_sym_else] = ACTIONS(4335), - [anon_sym_when] = ACTIONS(4335), - [anon_sym_try] = ACTIONS(4335), - [anon_sym_throw] = ACTIONS(4335), - [anon_sym_return] = ACTIONS(4335), - [anon_sym_continue] = ACTIONS(4335), - [anon_sym_break] = ACTIONS(4335), - [anon_sym_COLON_COLON] = ACTIONS(4337), - [anon_sym_BANGin] = ACTIONS(4337), - [anon_sym_is] = ACTIONS(4335), - [anon_sym_BANGis] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_PLUS_PLUS] = ACTIONS(4337), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_suspend] = ACTIONS(4335), - [anon_sym_sealed] = ACTIONS(4335), - [anon_sym_annotation] = ACTIONS(4335), - [anon_sym_data] = ACTIONS(4335), - [anon_sym_inner] = ACTIONS(4335), - [anon_sym_value] = ACTIONS(4335), - [anon_sym_override] = ACTIONS(4335), - [anon_sym_lateinit] = ACTIONS(4335), - [anon_sym_public] = ACTIONS(4335), - [anon_sym_private] = ACTIONS(4335), - [anon_sym_internal] = ACTIONS(4335), - [anon_sym_protected] = ACTIONS(4335), - [anon_sym_tailrec] = ACTIONS(4335), - [anon_sym_operator] = ACTIONS(4335), - [anon_sym_infix] = ACTIONS(4335), - [anon_sym_inline] = ACTIONS(4335), - [anon_sym_external] = ACTIONS(4335), - [sym_property_modifier] = ACTIONS(4335), - [anon_sym_abstract] = ACTIONS(4335), - [anon_sym_final] = ACTIONS(4335), - [anon_sym_open] = ACTIONS(4335), - [anon_sym_vararg] = ACTIONS(4335), - [anon_sym_noinline] = ACTIONS(4335), - [anon_sym_crossinline] = ACTIONS(4335), - [anon_sym_expect] = ACTIONS(4335), - [anon_sym_actual] = ACTIONS(4335), + [3129] = { + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_object] = ACTIONS(4210), + [anon_sym_fun] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_this] = ACTIONS(4210), + [anon_sym_super] = ACTIONS(4210), + [sym__quest] = ACTIONS(4212), + [anon_sym_STAR] = ACTIONS(4212), + [anon_sym_DASH_GT] = ACTIONS(4214), + [sym_label] = ACTIONS(4210), + [anon_sym_in] = ACTIONS(4210), + [anon_sym_null] = ACTIONS(4210), + [anon_sym_if] = ACTIONS(4210), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_try] = ACTIONS(4210), + [anon_sym_throw] = ACTIONS(4210), + [anon_sym_return] = ACTIONS(4210), + [anon_sym_continue] = ACTIONS(4210), + [anon_sym_break] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_BANGin] = ACTIONS(4212), + [anon_sym_is] = ACTIONS(4210), + [anon_sym_BANGis] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_suspend] = ACTIONS(4210), + [anon_sym_sealed] = ACTIONS(4210), + [anon_sym_annotation] = ACTIONS(4210), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_override] = ACTIONS(4210), + [anon_sym_lateinit] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_internal] = ACTIONS(4210), + [anon_sym_protected] = ACTIONS(4210), + [anon_sym_tailrec] = ACTIONS(4210), + [anon_sym_operator] = ACTIONS(4210), + [anon_sym_infix] = ACTIONS(4210), + [anon_sym_inline] = ACTIONS(4210), + [anon_sym_external] = ACTIONS(4210), + [sym_property_modifier] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_open] = ACTIONS(4210), + [anon_sym_vararg] = ACTIONS(4210), + [anon_sym_noinline] = ACTIONS(4210), + [anon_sym_crossinline] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4212), + [anon_sym_continue_AT] = ACTIONS(4212), + [anon_sym_break_AT] = ACTIONS(4212), + [anon_sym_this_AT] = ACTIONS(4212), + [anon_sym_super_AT] = ACTIONS(4212), + [sym_real_literal] = ACTIONS(4212), + [sym_integer_literal] = ACTIONS(4210), + [sym_hex_literal] = ACTIONS(4212), + [sym_bin_literal] = ACTIONS(4212), + [anon_sym_true] = ACTIONS(4210), + [anon_sym_false] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4212), + [sym__backtick_identifier] = ACTIONS(4212), + [sym__automatic_semicolon] = ACTIONS(4212), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4212), + }, + [3130] = { + [sym__alpha_identifier] = ACTIONS(5167), + [anon_sym_AT] = ACTIONS(5169), + [anon_sym_LBRACK] = ACTIONS(5169), + [anon_sym_as] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5169), + [anon_sym_RBRACE] = ACTIONS(5169), + [anon_sym_LPAREN] = ACTIONS(5169), + [anon_sym_COMMA] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5167), + [anon_sym_GT] = ACTIONS(5167), + [anon_sym_where] = ACTIONS(5167), + [anon_sym_object] = ACTIONS(5167), + [anon_sym_fun] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5167), + [anon_sym_SEMI] = ACTIONS(5169), + [anon_sym_get] = ACTIONS(5167), + [anon_sym_set] = ACTIONS(5167), + [anon_sym_this] = ACTIONS(5167), + [anon_sym_super] = ACTIONS(5167), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(5167), + [anon_sym_in] = ACTIONS(5167), + [anon_sym_DOT_DOT] = ACTIONS(5169), + [anon_sym_QMARK_COLON] = ACTIONS(5169), + [anon_sym_AMP_AMP] = ACTIONS(5169), + [anon_sym_PIPE_PIPE] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5167), + [anon_sym_if] = ACTIONS(5167), + [anon_sym_else] = ACTIONS(5167), + [anon_sym_when] = ACTIONS(5167), + [anon_sym_try] = ACTIONS(5167), + [anon_sym_throw] = ACTIONS(5167), + [anon_sym_return] = ACTIONS(5167), + [anon_sym_continue] = ACTIONS(5167), + [anon_sym_break] = ACTIONS(5167), + [anon_sym_COLON_COLON] = ACTIONS(5169), + [anon_sym_PLUS_EQ] = ACTIONS(5169), + [anon_sym_DASH_EQ] = ACTIONS(5169), + [anon_sym_STAR_EQ] = ACTIONS(5169), + [anon_sym_SLASH_EQ] = ACTIONS(5169), + [anon_sym_PERCENT_EQ] = ACTIONS(5169), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5169), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5169), + [anon_sym_LT_EQ] = ACTIONS(5169), + [anon_sym_GT_EQ] = ACTIONS(5169), + [anon_sym_BANGin] = ACTIONS(5169), + [anon_sym_is] = ACTIONS(5167), + [anon_sym_BANGis] = ACTIONS(5169), + [anon_sym_PLUS] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5167), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(5169), + [anon_sym_PLUS_PLUS] = ACTIONS(5169), + [anon_sym_DASH_DASH] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5167), + [anon_sym_BANG_BANG] = ACTIONS(5169), + [anon_sym_data] = ACTIONS(5167), + [anon_sym_inner] = ACTIONS(5167), + [anon_sym_value] = ACTIONS(5167), + [anon_sym_expect] = ACTIONS(5167), + [anon_sym_actual] = ACTIONS(5167), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5169), + [anon_sym_continue_AT] = ACTIONS(5169), + [anon_sym_break_AT] = ACTIONS(5169), + [anon_sym_this_AT] = ACTIONS(5169), + [anon_sym_super_AT] = ACTIONS(5169), + [sym_real_literal] = ACTIONS(5169), + [sym_integer_literal] = ACTIONS(5167), + [sym_hex_literal] = ACTIONS(5169), + [sym_bin_literal] = ACTIONS(5169), + [anon_sym_true] = ACTIONS(5167), + [anon_sym_false] = ACTIONS(5167), + [anon_sym_SQUOTE] = ACTIONS(5169), + [sym__backtick_identifier] = ACTIONS(5169), + [sym__automatic_semicolon] = ACTIONS(5169), + [sym_safe_nav] = ACTIONS(5169), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5169), + }, + [3131] = { + [sym__alpha_identifier] = ACTIONS(3113), + [anon_sym_AT] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3113), + [anon_sym_GT] = ACTIONS(3113), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3113), + [anon_sym_set] = ACTIONS(3113), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [sym_label] = ACTIONS(3113), + [anon_sym_in] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_QMARK_COLON] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3115), + [anon_sym_LT_EQ] = ACTIONS(3115), + [anon_sym_GT_EQ] = ACTIONS(3115), + [anon_sym_BANGin] = ACTIONS(3115), + [anon_sym_is] = ACTIONS(3113), + [anon_sym_BANGis] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_SLASH] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_as_QMARK] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(3115), + [anon_sym_data] = ACTIONS(3113), + [anon_sym_inner] = ACTIONS(3113), + [anon_sym_value] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3113), + [anon_sym_actual] = ACTIONS(3113), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(3115), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3115), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), + }, + [3132] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4337), - [anon_sym_continue_AT] = ACTIONS(4337), - [anon_sym_break_AT] = ACTIONS(4337), - [anon_sym_this_AT] = ACTIONS(4337), - [anon_sym_super_AT] = ACTIONS(4337), - [sym_real_literal] = ACTIONS(4337), - [sym_integer_literal] = ACTIONS(4335), - [sym_hex_literal] = ACTIONS(4337), - [sym_bin_literal] = ACTIONS(4337), - [anon_sym_true] = ACTIONS(4335), - [anon_sym_false] = ACTIONS(4335), - [anon_sym_SQUOTE] = ACTIONS(4337), - [sym__backtick_identifier] = ACTIONS(4337), - [sym__automatic_semicolon] = ACTIONS(4337), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4337), + [sym__string_start] = ACTIONS(4277), }, - [3076] = { - [sym_class_body] = STATE(3272), - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_fun] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_LT] = ACTIONS(4595), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_where] = ACTIONS(4595), - [anon_sym_object] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_this] = ACTIONS(4595), - [anon_sym_super] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [sym_label] = ACTIONS(4595), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_if] = ACTIONS(4595), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_when] = ACTIONS(4595), - [anon_sym_try] = ACTIONS(4595), - [anon_sym_throw] = ACTIONS(4595), - [anon_sym_return] = ACTIONS(4595), - [anon_sym_continue] = ACTIONS(4595), - [anon_sym_break] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4597), - [anon_sym_continue_AT] = ACTIONS(4597), - [anon_sym_break_AT] = ACTIONS(4597), - [anon_sym_this_AT] = ACTIONS(4597), - [anon_sym_super_AT] = ACTIONS(4597), - [sym_real_literal] = ACTIONS(4597), - [sym_integer_literal] = ACTIONS(4595), - [sym_hex_literal] = ACTIONS(4597), - [sym_bin_literal] = ACTIONS(4597), - [anon_sym_true] = ACTIONS(4595), - [anon_sym_false] = ACTIONS(4595), - [anon_sym_SQUOTE] = ACTIONS(4597), - [sym__backtick_identifier] = ACTIONS(4597), - [sym__automatic_semicolon] = ACTIONS(4597), - [sym_safe_nav] = ACTIONS(4597), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4597), + [3133] = { + [sym__alpha_identifier] = ACTIONS(4966), + [anon_sym_AT] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4966), + [anon_sym_EQ] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_RBRACE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_where] = ACTIONS(4966), + [anon_sym_object] = ACTIONS(4966), + [anon_sym_fun] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_get] = ACTIONS(4966), + [anon_sym_set] = ACTIONS(4966), + [anon_sym_this] = ACTIONS(4966), + [anon_sym_super] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [sym_label] = ACTIONS(4966), + [anon_sym_in] = ACTIONS(4966), + [anon_sym_DOT_DOT] = ACTIONS(4968), + [anon_sym_QMARK_COLON] = ACTIONS(4968), + [anon_sym_AMP_AMP] = ACTIONS(4968), + [anon_sym_PIPE_PIPE] = ACTIONS(4968), + [anon_sym_null] = ACTIONS(4966), + [anon_sym_if] = ACTIONS(4966), + [anon_sym_else] = ACTIONS(4966), + [anon_sym_when] = ACTIONS(4966), + [anon_sym_try] = ACTIONS(4966), + [anon_sym_throw] = ACTIONS(4966), + [anon_sym_return] = ACTIONS(4966), + [anon_sym_continue] = ACTIONS(4966), + [anon_sym_break] = ACTIONS(4966), + [anon_sym_COLON_COLON] = ACTIONS(4968), + [anon_sym_PLUS_EQ] = ACTIONS(4968), + [anon_sym_DASH_EQ] = ACTIONS(4968), + [anon_sym_STAR_EQ] = ACTIONS(4968), + [anon_sym_SLASH_EQ] = ACTIONS(4968), + [anon_sym_PERCENT_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4968), + [anon_sym_LT_EQ] = ACTIONS(4968), + [anon_sym_GT_EQ] = ACTIONS(4968), + [anon_sym_BANGin] = ACTIONS(4968), + [anon_sym_is] = ACTIONS(4966), + [anon_sym_BANGis] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_PERCENT] = ACTIONS(4966), + [anon_sym_as_QMARK] = ACTIONS(4968), + [anon_sym_PLUS_PLUS] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4966), + [anon_sym_BANG_BANG] = ACTIONS(4968), + [anon_sym_data] = ACTIONS(4966), + [anon_sym_inner] = ACTIONS(4966), + [anon_sym_value] = ACTIONS(4966), + [anon_sym_expect] = ACTIONS(4966), + [anon_sym_actual] = ACTIONS(4966), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4968), + [anon_sym_continue_AT] = ACTIONS(4968), + [anon_sym_break_AT] = ACTIONS(4968), + [anon_sym_this_AT] = ACTIONS(4968), + [anon_sym_super_AT] = ACTIONS(4968), + [sym_real_literal] = ACTIONS(4968), + [sym_integer_literal] = ACTIONS(4966), + [sym_hex_literal] = ACTIONS(4968), + [sym_bin_literal] = ACTIONS(4968), + [anon_sym_true] = ACTIONS(4966), + [anon_sym_false] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4968), + [sym__backtick_identifier] = ACTIONS(4968), + [sym__automatic_semicolon] = ACTIONS(4968), + [sym_safe_nav] = ACTIONS(4968), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4968), }, - [3077] = { - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_fun] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(6660), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_object] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_this] = ACTIONS(4435), - [anon_sym_super] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4435), - [sym_label] = ACTIONS(4435), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_null] = ACTIONS(4435), - [anon_sym_if] = ACTIONS(4435), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_when] = ACTIONS(4435), - [anon_sym_try] = ACTIONS(4435), - [anon_sym_throw] = ACTIONS(4435), - [anon_sym_return] = ACTIONS(4435), - [anon_sym_continue] = ACTIONS(4435), - [anon_sym_break] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_PLUS_EQ] = ACTIONS(4437), - [anon_sym_DASH_EQ] = ACTIONS(4437), - [anon_sym_STAR_EQ] = ACTIONS(4437), - [anon_sym_SLASH_EQ] = ACTIONS(4437), - [anon_sym_PERCENT_EQ] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4435), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4435), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4437), - [anon_sym_continue_AT] = ACTIONS(4437), - [anon_sym_break_AT] = ACTIONS(4437), - [anon_sym_this_AT] = ACTIONS(4437), - [anon_sym_super_AT] = ACTIONS(4437), - [sym_real_literal] = ACTIONS(4437), - [sym_integer_literal] = ACTIONS(4435), - [sym_hex_literal] = ACTIONS(4437), - [sym_bin_literal] = ACTIONS(4437), - [anon_sym_true] = ACTIONS(4435), - [anon_sym_false] = ACTIONS(4435), - [anon_sym_SQUOTE] = ACTIONS(4437), - [sym__backtick_identifier] = ACTIONS(4437), - [sym__automatic_semicolon] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4437), + [3134] = { + [sym__alpha_identifier] = ACTIONS(5063), + [anon_sym_AT] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [anon_sym_as] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5065), + [anon_sym_RBRACE] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5065), + [anon_sym_COMMA] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5063), + [anon_sym_GT] = ACTIONS(5063), + [anon_sym_where] = ACTIONS(5063), + [anon_sym_object] = ACTIONS(5063), + [anon_sym_fun] = ACTIONS(5063), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5063), + [anon_sym_this] = ACTIONS(5063), + [anon_sym_super] = ACTIONS(5063), + [anon_sym_STAR] = ACTIONS(5063), + [sym_label] = ACTIONS(5063), + [anon_sym_in] = ACTIONS(5063), + [anon_sym_DOT_DOT] = ACTIONS(5065), + [anon_sym_QMARK_COLON] = ACTIONS(5065), + [anon_sym_AMP_AMP] = ACTIONS(5065), + [anon_sym_PIPE_PIPE] = ACTIONS(5065), + [anon_sym_null] = ACTIONS(5063), + [anon_sym_if] = ACTIONS(5063), + [anon_sym_else] = ACTIONS(5063), + [anon_sym_when] = ACTIONS(5063), + [anon_sym_try] = ACTIONS(5063), + [anon_sym_throw] = ACTIONS(5063), + [anon_sym_return] = ACTIONS(5063), + [anon_sym_continue] = ACTIONS(5063), + [anon_sym_break] = ACTIONS(5063), + [anon_sym_COLON_COLON] = ACTIONS(5065), + [anon_sym_PLUS_EQ] = ACTIONS(5065), + [anon_sym_DASH_EQ] = ACTIONS(5065), + [anon_sym_STAR_EQ] = ACTIONS(5065), + [anon_sym_SLASH_EQ] = ACTIONS(5065), + [anon_sym_PERCENT_EQ] = ACTIONS(5065), + [anon_sym_BANG_EQ] = ACTIONS(5063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5065), + [anon_sym_EQ_EQ] = ACTIONS(5063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5065), + [anon_sym_LT_EQ] = ACTIONS(5065), + [anon_sym_GT_EQ] = ACTIONS(5065), + [anon_sym_BANGin] = ACTIONS(5065), + [anon_sym_is] = ACTIONS(5063), + [anon_sym_BANGis] = ACTIONS(5065), + [anon_sym_PLUS] = ACTIONS(5063), + [anon_sym_DASH] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5063), + [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_as_QMARK] = ACTIONS(5065), + [anon_sym_PLUS_PLUS] = ACTIONS(5065), + [anon_sym_DASH_DASH] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5063), + [anon_sym_BANG_BANG] = ACTIONS(5065), + [anon_sym_data] = ACTIONS(5063), + [anon_sym_inner] = ACTIONS(5063), + [anon_sym_value] = ACTIONS(5063), + [anon_sym_expect] = ACTIONS(5063), + [anon_sym_actual] = ACTIONS(5063), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5065), + [anon_sym_continue_AT] = ACTIONS(5065), + [anon_sym_break_AT] = ACTIONS(5065), + [anon_sym_this_AT] = ACTIONS(5065), + [anon_sym_super_AT] = ACTIONS(5065), + [sym_real_literal] = ACTIONS(5065), + [sym_integer_literal] = ACTIONS(5063), + [sym_hex_literal] = ACTIONS(5065), + [sym_bin_literal] = ACTIONS(5065), + [anon_sym_true] = ACTIONS(5063), + [anon_sym_false] = ACTIONS(5063), + [anon_sym_SQUOTE] = ACTIONS(5065), + [sym__backtick_identifier] = ACTIONS(5065), + [sym__automatic_semicolon] = ACTIONS(5065), + [sym_safe_nav] = ACTIONS(5065), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5065), }, - [3078] = { - [sym_enum_class_body] = STATE(3345), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [3135] = { + [sym__alpha_identifier] = ACTIONS(4910), + [anon_sym_AT] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_as] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_RBRACE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_where] = ACTIONS(4910), + [anon_sym_object] = ACTIONS(4910), + [anon_sym_fun] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_get] = ACTIONS(4910), + [anon_sym_set] = ACTIONS(4910), + [anon_sym_this] = ACTIONS(4910), + [anon_sym_super] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4910), + [sym_label] = ACTIONS(4910), + [anon_sym_in] = ACTIONS(4910), + [anon_sym_DOT_DOT] = ACTIONS(4912), + [anon_sym_QMARK_COLON] = ACTIONS(4912), + [anon_sym_AMP_AMP] = ACTIONS(4912), + [anon_sym_PIPE_PIPE] = ACTIONS(4912), + [anon_sym_null] = ACTIONS(4910), + [anon_sym_if] = ACTIONS(4910), + [anon_sym_else] = ACTIONS(4910), + [anon_sym_when] = ACTIONS(4910), + [anon_sym_try] = ACTIONS(4910), + [anon_sym_throw] = ACTIONS(4910), + [anon_sym_return] = ACTIONS(4910), + [anon_sym_continue] = ACTIONS(4910), + [anon_sym_break] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_PLUS_EQ] = ACTIONS(4912), + [anon_sym_DASH_EQ] = ACTIONS(4912), + [anon_sym_STAR_EQ] = ACTIONS(4912), + [anon_sym_SLASH_EQ] = ACTIONS(4912), + [anon_sym_PERCENT_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ] = ACTIONS(4910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4912), + [anon_sym_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4912), + [anon_sym_LT_EQ] = ACTIONS(4912), + [anon_sym_GT_EQ] = ACTIONS(4912), + [anon_sym_BANGin] = ACTIONS(4912), + [anon_sym_is] = ACTIONS(4910), + [anon_sym_BANGis] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_PERCENT] = ACTIONS(4910), + [anon_sym_as_QMARK] = ACTIONS(4912), + [anon_sym_PLUS_PLUS] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4910), + [anon_sym_BANG_BANG] = ACTIONS(4912), + [anon_sym_data] = ACTIONS(4910), + [anon_sym_inner] = ACTIONS(4910), + [anon_sym_value] = ACTIONS(4910), + [anon_sym_expect] = ACTIONS(4910), + [anon_sym_actual] = ACTIONS(4910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4912), + [anon_sym_continue_AT] = ACTIONS(4912), + [anon_sym_break_AT] = ACTIONS(4912), + [anon_sym_this_AT] = ACTIONS(4912), + [anon_sym_super_AT] = ACTIONS(4912), + [sym_real_literal] = ACTIONS(4912), + [sym_integer_literal] = ACTIONS(4910), + [sym_hex_literal] = ACTIONS(4912), + [sym_bin_literal] = ACTIONS(4912), + [anon_sym_true] = ACTIONS(4910), + [anon_sym_false] = ACTIONS(4910), + [anon_sym_SQUOTE] = ACTIONS(4912), + [sym__backtick_identifier] = ACTIONS(4912), + [sym__automatic_semicolon] = ACTIONS(4912), + [sym_safe_nav] = ACTIONS(4912), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4912), }, - [3079] = { - [sym_function_body] = STATE(3245), - [sym__block] = STATE(3335), + [3136] = { + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [3137] = { + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [3138] = { + [sym__alpha_identifier] = ACTIONS(5099), + [anon_sym_AT] = ACTIONS(5101), + [anon_sym_LBRACK] = ACTIONS(5101), + [anon_sym_as] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5101), + [anon_sym_RBRACE] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5101), + [anon_sym_COMMA] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5099), + [anon_sym_GT] = ACTIONS(5099), + [anon_sym_where] = ACTIONS(5099), + [anon_sym_object] = ACTIONS(5099), + [anon_sym_fun] = ACTIONS(5099), + [anon_sym_DOT] = ACTIONS(5099), + [anon_sym_SEMI] = ACTIONS(5101), + [anon_sym_get] = ACTIONS(5099), + [anon_sym_set] = ACTIONS(5099), + [anon_sym_this] = ACTIONS(5099), + [anon_sym_super] = ACTIONS(5099), + [anon_sym_STAR] = ACTIONS(5099), + [sym_label] = ACTIONS(5099), + [anon_sym_in] = ACTIONS(5099), + [anon_sym_DOT_DOT] = ACTIONS(5101), + [anon_sym_QMARK_COLON] = ACTIONS(5101), + [anon_sym_AMP_AMP] = ACTIONS(5101), + [anon_sym_PIPE_PIPE] = ACTIONS(5101), + [anon_sym_null] = ACTIONS(5099), + [anon_sym_if] = ACTIONS(5099), + [anon_sym_else] = ACTIONS(5099), + [anon_sym_when] = ACTIONS(5099), + [anon_sym_try] = ACTIONS(5099), + [anon_sym_throw] = ACTIONS(5099), + [anon_sym_return] = ACTIONS(5099), + [anon_sym_continue] = ACTIONS(5099), + [anon_sym_break] = ACTIONS(5099), + [anon_sym_COLON_COLON] = ACTIONS(5101), + [anon_sym_PLUS_EQ] = ACTIONS(5101), + [anon_sym_DASH_EQ] = ACTIONS(5101), + [anon_sym_STAR_EQ] = ACTIONS(5101), + [anon_sym_SLASH_EQ] = ACTIONS(5101), + [anon_sym_PERCENT_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ] = ACTIONS(5099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ] = ACTIONS(5099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5101), + [anon_sym_LT_EQ] = ACTIONS(5101), + [anon_sym_GT_EQ] = ACTIONS(5101), + [anon_sym_BANGin] = ACTIONS(5101), + [anon_sym_is] = ACTIONS(5099), + [anon_sym_BANGis] = ACTIONS(5101), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5099), + [anon_sym_as_QMARK] = ACTIONS(5101), + [anon_sym_PLUS_PLUS] = ACTIONS(5101), + [anon_sym_DASH_DASH] = ACTIONS(5101), + [anon_sym_BANG] = ACTIONS(5099), + [anon_sym_BANG_BANG] = ACTIONS(5101), + [anon_sym_data] = ACTIONS(5099), + [anon_sym_inner] = ACTIONS(5099), + [anon_sym_value] = ACTIONS(5099), + [anon_sym_expect] = ACTIONS(5099), + [anon_sym_actual] = ACTIONS(5099), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5101), + [anon_sym_continue_AT] = ACTIONS(5101), + [anon_sym_break_AT] = ACTIONS(5101), + [anon_sym_this_AT] = ACTIONS(5101), + [anon_sym_super_AT] = ACTIONS(5101), + [sym_real_literal] = ACTIONS(5101), + [sym_integer_literal] = ACTIONS(5099), + [sym_hex_literal] = ACTIONS(5101), + [sym_bin_literal] = ACTIONS(5101), + [anon_sym_true] = ACTIONS(5099), + [anon_sym_false] = ACTIONS(5099), + [anon_sym_SQUOTE] = ACTIONS(5101), + [sym__backtick_identifier] = ACTIONS(5101), + [sym__automatic_semicolon] = ACTIONS(5101), + [sym_safe_nav] = ACTIONS(5101), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5101), + }, + [3139] = { + [sym_type_constraints] = STATE(3361), + [sym_enum_class_body] = STATE(3406), [sym__alpha_identifier] = ACTIONS(4321), [anon_sym_AT] = ACTIONS(4323), - [anon_sym_COLON] = ACTIONS(6700), [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_RBRACK] = ACTIONS(4323), [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(6547), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5486), [anon_sym_RBRACE] = ACTIONS(4323), [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4323), [anon_sym_LT] = ACTIONS(4321), [anon_sym_GT] = ACTIONS(4321), - [anon_sym_object] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(4321), [anon_sym_SEMI] = ACTIONS(4323), [anon_sym_get] = ACTIONS(4321), [anon_sym_set] = ACTIONS(4321), - [anon_sym_this] = ACTIONS(4321), - [anon_sym_super] = ACTIONS(4321), [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4321), + [anon_sym_DASH_GT] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), [anon_sym_in] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), [anon_sym_DOT_DOT] = ACTIONS(4323), [anon_sym_QMARK_COLON] = ACTIONS(4323), [anon_sym_AMP_AMP] = ACTIONS(4323), [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_null] = ACTIONS(4321), - [anon_sym_if] = ACTIONS(4321), [anon_sym_else] = ACTIONS(4321), - [anon_sym_when] = ACTIONS(4321), - [anon_sym_try] = ACTIONS(4321), - [anon_sym_throw] = ACTIONS(4321), - [anon_sym_return] = ACTIONS(4321), - [anon_sym_continue] = ACTIONS(4321), - [anon_sym_break] = ACTIONS(4321), [anon_sym_COLON_COLON] = ACTIONS(4323), [anon_sym_PLUS_EQ] = ACTIONS(4323), [anon_sym_DASH_EQ] = ACTIONS(4323), @@ -370742,652 +373812,650 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(4323), [anon_sym_PLUS_PLUS] = ACTIONS(4323), [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG] = ACTIONS(4321), [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), [anon_sym_data] = ACTIONS(4321), [anon_sym_inner] = ACTIONS(4321), [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), [anon_sym_expect] = ACTIONS(4321), [anon_sym_actual] = ACTIONS(4321), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4323), - [anon_sym_continue_AT] = ACTIONS(4323), - [anon_sym_break_AT] = ACTIONS(4323), - [anon_sym_this_AT] = ACTIONS(4323), - [anon_sym_super_AT] = ACTIONS(4323), - [sym_real_literal] = ACTIONS(4323), - [sym_integer_literal] = ACTIONS(4321), - [sym_hex_literal] = ACTIONS(4323), - [sym_bin_literal] = ACTIONS(4323), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [anon_sym_SQUOTE] = ACTIONS(4323), [sym__backtick_identifier] = ACTIONS(4323), - [sym__automatic_semicolon] = ACTIONS(4323), [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4323), }, - [3080] = { - [aux_sym_nullable_type_repeat1] = STATE(3058), - [sym__alpha_identifier] = ACTIONS(4363), - [anon_sym_AT] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_RBRACK] = ACTIONS(4365), - [anon_sym_as] = ACTIONS(4363), - [anon_sym_EQ] = ACTIONS(4363), - [anon_sym_LBRACE] = ACTIONS(4365), - [anon_sym_RBRACE] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_COMMA] = ACTIONS(4365), - [anon_sym_RPAREN] = ACTIONS(4365), - [anon_sym_by] = ACTIONS(4363), - [anon_sym_LT] = ACTIONS(4363), - [anon_sym_GT] = ACTIONS(4363), - [anon_sym_where] = ACTIONS(4363), - [anon_sym_DOT] = ACTIONS(4363), - [anon_sym_SEMI] = ACTIONS(4365), - [anon_sym_get] = ACTIONS(4363), - [anon_sym_set] = ACTIONS(4363), - [sym__quest] = ACTIONS(6702), - [anon_sym_STAR] = ACTIONS(4363), - [anon_sym_DASH_GT] = ACTIONS(4365), - [sym_label] = ACTIONS(4365), - [anon_sym_in] = ACTIONS(4363), - [anon_sym_while] = ACTIONS(4363), - [anon_sym_DOT_DOT] = ACTIONS(4365), - [anon_sym_QMARK_COLON] = ACTIONS(4365), - [anon_sym_AMP_AMP] = ACTIONS(4365), - [anon_sym_PIPE_PIPE] = ACTIONS(4365), - [anon_sym_else] = ACTIONS(4363), - [anon_sym_COLON_COLON] = ACTIONS(4365), - [anon_sym_PLUS_EQ] = ACTIONS(4365), - [anon_sym_DASH_EQ] = ACTIONS(4365), - [anon_sym_STAR_EQ] = ACTIONS(4365), - [anon_sym_SLASH_EQ] = ACTIONS(4365), - [anon_sym_PERCENT_EQ] = ACTIONS(4365), - [anon_sym_BANG_EQ] = ACTIONS(4363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), - [anon_sym_EQ_EQ] = ACTIONS(4363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), - [anon_sym_LT_EQ] = ACTIONS(4365), - [anon_sym_GT_EQ] = ACTIONS(4365), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(4363), - [anon_sym_BANGis] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4363), - [anon_sym_DASH] = ACTIONS(4363), - [anon_sym_SLASH] = ACTIONS(4363), - [anon_sym_PERCENT] = ACTIONS(4363), - [anon_sym_as_QMARK] = ACTIONS(4365), - [anon_sym_PLUS_PLUS] = ACTIONS(4365), - [anon_sym_DASH_DASH] = ACTIONS(4365), - [anon_sym_BANG_BANG] = ACTIONS(4365), - [anon_sym_suspend] = ACTIONS(4363), - [anon_sym_sealed] = ACTIONS(4363), - [anon_sym_annotation] = ACTIONS(4363), - [anon_sym_data] = ACTIONS(4363), - [anon_sym_inner] = ACTIONS(4363), - [anon_sym_value] = ACTIONS(4363), - [anon_sym_override] = ACTIONS(4363), - [anon_sym_lateinit] = ACTIONS(4363), - [anon_sym_public] = ACTIONS(4363), - [anon_sym_private] = ACTIONS(4363), - [anon_sym_internal] = ACTIONS(4363), - [anon_sym_protected] = ACTIONS(4363), - [anon_sym_tailrec] = ACTIONS(4363), - [anon_sym_operator] = ACTIONS(4363), - [anon_sym_infix] = ACTIONS(4363), - [anon_sym_inline] = ACTIONS(4363), - [anon_sym_external] = ACTIONS(4363), - [sym_property_modifier] = ACTIONS(4363), - [anon_sym_abstract] = ACTIONS(4363), - [anon_sym_final] = ACTIONS(4363), - [anon_sym_open] = ACTIONS(4363), - [anon_sym_vararg] = ACTIONS(4363), - [anon_sym_noinline] = ACTIONS(4363), - [anon_sym_crossinline] = ACTIONS(4363), - [anon_sym_expect] = ACTIONS(4363), - [anon_sym_actual] = ACTIONS(4363), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4365), - [sym_safe_nav] = ACTIONS(4365), - [sym_multiline_comment] = ACTIONS(3), + [3140] = { + [sym__alpha_identifier] = ACTIONS(5035), + [anon_sym_AT] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_as] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_where] = ACTIONS(5035), + [anon_sym_object] = ACTIONS(5035), + [anon_sym_fun] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_SEMI] = ACTIONS(5037), + [anon_sym_get] = ACTIONS(5035), + [anon_sym_set] = ACTIONS(5035), + [anon_sym_this] = ACTIONS(5035), + [anon_sym_super] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [sym_label] = ACTIONS(5035), + [anon_sym_in] = ACTIONS(5035), + [anon_sym_DOT_DOT] = ACTIONS(5037), + [anon_sym_QMARK_COLON] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_null] = ACTIONS(5035), + [anon_sym_if] = ACTIONS(5035), + [anon_sym_else] = ACTIONS(5035), + [anon_sym_when] = ACTIONS(5035), + [anon_sym_try] = ACTIONS(5035), + [anon_sym_throw] = ACTIONS(5035), + [anon_sym_return] = ACTIONS(5035), + [anon_sym_continue] = ACTIONS(5035), + [anon_sym_break] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5037), + [anon_sym_EQ_EQ] = ACTIONS(5035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_BANGin] = ACTIONS(5037), + [anon_sym_is] = ACTIONS(5035), + [anon_sym_BANGis] = ACTIONS(5037), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_as_QMARK] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5035), + [anon_sym_BANG_BANG] = ACTIONS(5037), + [anon_sym_data] = ACTIONS(5035), + [anon_sym_inner] = ACTIONS(5035), + [anon_sym_value] = ACTIONS(5035), + [anon_sym_expect] = ACTIONS(5035), + [anon_sym_actual] = ACTIONS(5035), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5037), + [anon_sym_continue_AT] = ACTIONS(5037), + [anon_sym_break_AT] = ACTIONS(5037), + [anon_sym_this_AT] = ACTIONS(5037), + [anon_sym_super_AT] = ACTIONS(5037), + [sym_real_literal] = ACTIONS(5037), + [sym_integer_literal] = ACTIONS(5035), + [sym_hex_literal] = ACTIONS(5037), + [sym_bin_literal] = ACTIONS(5037), + [anon_sym_true] = ACTIONS(5035), + [anon_sym_false] = ACTIONS(5035), + [anon_sym_SQUOTE] = ACTIONS(5037), + [sym__backtick_identifier] = ACTIONS(5037), + [sym__automatic_semicolon] = ACTIONS(5037), + [sym_safe_nav] = ACTIONS(5037), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5037), }, - [3081] = { - [sym_type_constraints] = STATE(3320), - [sym_function_body] = STATE(3536), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_RBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [anon_sym_DASH_GT] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_while] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), + [3141] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(6667), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), }, - [3082] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3088), - [sym__alpha_identifier] = ACTIONS(4740), - [anon_sym_AT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4740), - [anon_sym_fun] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_where] = ACTIONS(4740), - [anon_sym_object] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4740), - [anon_sym_set] = ACTIONS(4740), - [anon_sym_this] = ACTIONS(4740), - [anon_sym_super] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4740), - [sym_label] = ACTIONS(4740), - [anon_sym_in] = ACTIONS(4740), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [anon_sym_QMARK_COLON] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_null] = ACTIONS(4740), - [anon_sym_if] = ACTIONS(4740), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_when] = ACTIONS(4740), - [anon_sym_try] = ACTIONS(4740), - [anon_sym_throw] = ACTIONS(4740), - [anon_sym_return] = ACTIONS(4740), - [anon_sym_continue] = ACTIONS(4740), - [anon_sym_break] = ACTIONS(4740), - [anon_sym_COLON_COLON] = ACTIONS(4742), - [anon_sym_PLUS_EQ] = ACTIONS(4742), - [anon_sym_DASH_EQ] = ACTIONS(4742), - [anon_sym_STAR_EQ] = ACTIONS(4742), - [anon_sym_SLASH_EQ] = ACTIONS(4742), - [anon_sym_PERCENT_EQ] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT_EQ] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_BANGin] = ACTIONS(4742), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_BANGis] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4740), - [anon_sym_as_QMARK] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4742), - [anon_sym_BANG] = ACTIONS(4740), - [anon_sym_BANG_BANG] = ACTIONS(4742), - [anon_sym_data] = ACTIONS(4740), - [anon_sym_inner] = ACTIONS(4740), - [anon_sym_value] = ACTIONS(4740), - [anon_sym_expect] = ACTIONS(4740), - [anon_sym_actual] = ACTIONS(4740), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4742), - [anon_sym_continue_AT] = ACTIONS(4742), - [anon_sym_break_AT] = ACTIONS(4742), - [anon_sym_this_AT] = ACTIONS(4742), - [anon_sym_super_AT] = ACTIONS(4742), - [sym_real_literal] = ACTIONS(4742), - [sym_integer_literal] = ACTIONS(4740), - [sym_hex_literal] = ACTIONS(4742), - [sym_bin_literal] = ACTIONS(4742), - [anon_sym_true] = ACTIONS(4740), - [anon_sym_false] = ACTIONS(4740), - [anon_sym_SQUOTE] = ACTIONS(4742), - [sym__backtick_identifier] = ACTIONS(4742), - [sym__automatic_semicolon] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), + [3142] = { + [sym_class_body] = STATE(3494), + [sym_type_constraints] = STATE(3362), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_RBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_RPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [anon_sym_DASH_GT] = ACTIONS(4465), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_while] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4742), }, - [3083] = { - [sym_type_constraints] = STATE(3321), - [sym_function_body] = STATE(3554), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_RBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_RPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4293), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), + [3143] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(6669), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), }, - [3084] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3082), - [sym__alpha_identifier] = ACTIONS(4671), - [anon_sym_AT] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4673), - [anon_sym_as] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_fun] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_RBRACE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4671), - [anon_sym_where] = ACTIONS(4671), - [anon_sym_object] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_get] = ACTIONS(4671), - [anon_sym_set] = ACTIONS(4671), - [anon_sym_this] = ACTIONS(4671), - [anon_sym_super] = ACTIONS(4671), - [anon_sym_STAR] = ACTIONS(4671), - [sym_label] = ACTIONS(4671), - [anon_sym_in] = ACTIONS(4671), - [anon_sym_DOT_DOT] = ACTIONS(4673), - [anon_sym_QMARK_COLON] = ACTIONS(4673), - [anon_sym_AMP_AMP] = ACTIONS(4673), - [anon_sym_PIPE_PIPE] = ACTIONS(4673), - [anon_sym_null] = ACTIONS(4671), - [anon_sym_if] = ACTIONS(4671), - [anon_sym_else] = ACTIONS(4671), - [anon_sym_when] = ACTIONS(4671), - [anon_sym_try] = ACTIONS(4671), - [anon_sym_throw] = ACTIONS(4671), - [anon_sym_return] = ACTIONS(4671), - [anon_sym_continue] = ACTIONS(4671), - [anon_sym_break] = ACTIONS(4671), - [anon_sym_COLON_COLON] = ACTIONS(4673), - [anon_sym_PLUS_EQ] = ACTIONS(4673), - [anon_sym_DASH_EQ] = ACTIONS(4673), - [anon_sym_STAR_EQ] = ACTIONS(4673), - [anon_sym_SLASH_EQ] = ACTIONS(4673), - [anon_sym_PERCENT_EQ] = ACTIONS(4673), - [anon_sym_BANG_EQ] = ACTIONS(4671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4673), - [anon_sym_EQ_EQ] = ACTIONS(4671), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4673), - [anon_sym_LT_EQ] = ACTIONS(4673), - [anon_sym_GT_EQ] = ACTIONS(4673), - [anon_sym_BANGin] = ACTIONS(4673), - [anon_sym_is] = ACTIONS(4671), - [anon_sym_BANGis] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4671), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4671), - [anon_sym_PERCENT] = ACTIONS(4671), - [anon_sym_as_QMARK] = ACTIONS(4673), - [anon_sym_PLUS_PLUS] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4671), - [anon_sym_BANG_BANG] = ACTIONS(4673), - [anon_sym_data] = ACTIONS(4671), - [anon_sym_inner] = ACTIONS(4671), - [anon_sym_value] = ACTIONS(4671), - [anon_sym_expect] = ACTIONS(4671), - [anon_sym_actual] = ACTIONS(4671), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4673), - [anon_sym_continue_AT] = ACTIONS(4673), - [anon_sym_break_AT] = ACTIONS(4673), - [anon_sym_this_AT] = ACTIONS(4673), - [anon_sym_super_AT] = ACTIONS(4673), - [sym_real_literal] = ACTIONS(4673), - [sym_integer_literal] = ACTIONS(4671), - [sym_hex_literal] = ACTIONS(4673), - [sym_bin_literal] = ACTIONS(4673), - [anon_sym_true] = ACTIONS(4671), - [anon_sym_false] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4673), - [sym__backtick_identifier] = ACTIONS(4673), - [sym__automatic_semicolon] = ACTIONS(4673), - [sym_safe_nav] = ACTIONS(4673), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4673), + [3144] = { + [sym__alpha_identifier] = ACTIONS(4842), + [anon_sym_AT] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_as] = ACTIONS(4842), + [anon_sym_EQ] = ACTIONS(4842), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_where] = ACTIONS(4842), + [anon_sym_object] = ACTIONS(4842), + [anon_sym_fun] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_get] = ACTIONS(4842), + [anon_sym_set] = ACTIONS(4842), + [anon_sym_this] = ACTIONS(4842), + [anon_sym_super] = ACTIONS(4842), + [anon_sym_STAR] = ACTIONS(4842), + [sym_label] = ACTIONS(4842), + [anon_sym_in] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4844), + [anon_sym_QMARK_COLON] = ACTIONS(4844), + [anon_sym_AMP_AMP] = ACTIONS(4844), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_null] = ACTIONS(4842), + [anon_sym_if] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4842), + [anon_sym_when] = ACTIONS(4842), + [anon_sym_try] = ACTIONS(4842), + [anon_sym_throw] = ACTIONS(4842), + [anon_sym_return] = ACTIONS(4842), + [anon_sym_continue] = ACTIONS(4842), + [anon_sym_break] = ACTIONS(4842), + [anon_sym_COLON_COLON] = ACTIONS(4844), + [anon_sym_PLUS_EQ] = ACTIONS(4844), + [anon_sym_DASH_EQ] = ACTIONS(4844), + [anon_sym_STAR_EQ] = ACTIONS(4844), + [anon_sym_SLASH_EQ] = ACTIONS(4844), + [anon_sym_PERCENT_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4844), + [anon_sym_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4844), + [anon_sym_LT_EQ] = ACTIONS(4844), + [anon_sym_GT_EQ] = ACTIONS(4844), + [anon_sym_BANGin] = ACTIONS(4844), + [anon_sym_is] = ACTIONS(4842), + [anon_sym_BANGis] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4842), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_as_QMARK] = ACTIONS(4844), + [anon_sym_PLUS_PLUS] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(4842), + [anon_sym_BANG_BANG] = ACTIONS(4844), + [anon_sym_data] = ACTIONS(4842), + [anon_sym_inner] = ACTIONS(4842), + [anon_sym_value] = ACTIONS(4842), + [anon_sym_expect] = ACTIONS(4842), + [anon_sym_actual] = ACTIONS(4842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4844), + [anon_sym_continue_AT] = ACTIONS(4844), + [anon_sym_break_AT] = ACTIONS(4844), + [anon_sym_this_AT] = ACTIONS(4844), + [anon_sym_super_AT] = ACTIONS(4844), + [sym_real_literal] = ACTIONS(4844), + [sym_integer_literal] = ACTIONS(4842), + [sym_hex_literal] = ACTIONS(4844), + [sym_bin_literal] = ACTIONS(4844), + [anon_sym_true] = ACTIONS(4842), + [anon_sym_false] = ACTIONS(4842), + [anon_sym_SQUOTE] = ACTIONS(4844), + [sym__backtick_identifier] = ACTIONS(4844), + [sym__automatic_semicolon] = ACTIONS(4844), + [sym_safe_nav] = ACTIONS(4844), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4844), }, - [3085] = { - [sym_class_body] = STATE(3264), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [3145] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6671), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), }, - [3086] = { - [sym__alpha_identifier] = ACTIONS(4695), - [anon_sym_AT] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_as] = ACTIONS(4695), - [anon_sym_EQ] = ACTIONS(4695), - [anon_sym_fun] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4697), - [anon_sym_RBRACE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_where] = ACTIONS(4695), - [anon_sym_object] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_get] = ACTIONS(4695), - [anon_sym_set] = ACTIONS(4695), - [anon_sym_this] = ACTIONS(4695), - [anon_sym_super] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [sym_label] = ACTIONS(4695), - [anon_sym_in] = ACTIONS(4695), - [anon_sym_DOT_DOT] = ACTIONS(4697), - [anon_sym_QMARK_COLON] = ACTIONS(4697), - [anon_sym_AMP_AMP] = ACTIONS(4697), - [anon_sym_PIPE_PIPE] = ACTIONS(4697), - [anon_sym_null] = ACTIONS(4695), - [anon_sym_if] = ACTIONS(4695), - [anon_sym_else] = ACTIONS(4695), - [anon_sym_when] = ACTIONS(4695), - [anon_sym_try] = ACTIONS(4695), - [anon_sym_throw] = ACTIONS(4695), - [anon_sym_return] = ACTIONS(4695), - [anon_sym_continue] = ACTIONS(4695), - [anon_sym_break] = ACTIONS(4695), - [anon_sym_COLON_COLON] = ACTIONS(4697), - [anon_sym_PLUS_EQ] = ACTIONS(4697), - [anon_sym_DASH_EQ] = ACTIONS(4697), - [anon_sym_STAR_EQ] = ACTIONS(4697), - [anon_sym_SLASH_EQ] = ACTIONS(4697), - [anon_sym_PERCENT_EQ] = ACTIONS(4697), - [anon_sym_BANG_EQ] = ACTIONS(4695), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4697), - [anon_sym_EQ_EQ] = ACTIONS(4695), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4697), - [anon_sym_LT_EQ] = ACTIONS(4697), - [anon_sym_GT_EQ] = ACTIONS(4697), - [anon_sym_BANGin] = ACTIONS(4697), - [anon_sym_is] = ACTIONS(4695), - [anon_sym_BANGis] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_PERCENT] = ACTIONS(4695), - [anon_sym_as_QMARK] = ACTIONS(4697), - [anon_sym_PLUS_PLUS] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_BANG_BANG] = ACTIONS(4697), - [anon_sym_data] = ACTIONS(4695), - [anon_sym_inner] = ACTIONS(4695), - [anon_sym_value] = ACTIONS(4695), - [anon_sym_expect] = ACTIONS(4695), - [anon_sym_actual] = ACTIONS(4695), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4697), - [anon_sym_continue_AT] = ACTIONS(4697), - [anon_sym_break_AT] = ACTIONS(4697), - [anon_sym_this_AT] = ACTIONS(4697), - [anon_sym_super_AT] = ACTIONS(4697), - [sym_real_literal] = ACTIONS(4697), - [sym_integer_literal] = ACTIONS(4695), - [sym_hex_literal] = ACTIONS(4697), - [sym_bin_literal] = ACTIONS(4697), - [anon_sym_true] = ACTIONS(4695), - [anon_sym_false] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4697), - [sym__backtick_identifier] = ACTIONS(4697), - [sym__automatic_semicolon] = ACTIONS(4697), - [sym_safe_nav] = ACTIONS(4697), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4697), + [3146] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6673), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), }, - [3087] = { - [sym_type_constraints] = STATE(3322), - [sym_function_body] = STATE(3667), - [sym__block] = STATE(3620), + [3147] = { + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_RBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_COMMA] = ACTIONS(4185), [anon_sym_RPAREN] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5594), + [anon_sym_where] = ACTIONS(4183), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), @@ -371456,3031 +374524,2060 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, - [3088] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3088), - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_fun] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(6706), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_object] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_this] = ACTIONS(4705), - [anon_sym_super] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4705), - [sym_label] = ACTIONS(4705), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_null] = ACTIONS(4705), - [anon_sym_if] = ACTIONS(4705), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_when] = ACTIONS(4705), - [anon_sym_try] = ACTIONS(4705), - [anon_sym_throw] = ACTIONS(4705), - [anon_sym_return] = ACTIONS(4705), - [anon_sym_continue] = ACTIONS(4705), - [anon_sym_break] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_PLUS_EQ] = ACTIONS(4707), - [anon_sym_DASH_EQ] = ACTIONS(4707), - [anon_sym_STAR_EQ] = ACTIONS(4707), - [anon_sym_SLASH_EQ] = ACTIONS(4707), - [anon_sym_PERCENT_EQ] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4705), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4705), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4707), - [anon_sym_continue_AT] = ACTIONS(4707), - [anon_sym_break_AT] = ACTIONS(4707), - [anon_sym_this_AT] = ACTIONS(4707), - [anon_sym_super_AT] = ACTIONS(4707), - [sym_real_literal] = ACTIONS(4707), - [sym_integer_literal] = ACTIONS(4705), - [sym_hex_literal] = ACTIONS(4707), - [sym_bin_literal] = ACTIONS(4707), - [anon_sym_true] = ACTIONS(4705), - [anon_sym_false] = ACTIONS(4705), - [anon_sym_SQUOTE] = ACTIONS(4707), - [sym__backtick_identifier] = ACTIONS(4707), - [sym__automatic_semicolon] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4707), - }, - [3089] = { - [sym_function_body] = STATE(3238), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(6709), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_object] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_this] = ACTIONS(4339), - [anon_sym_super] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [sym_label] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [anon_sym_try] = ACTIONS(4339), - [anon_sym_throw] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_PLUS_EQ] = ACTIONS(4341), - [anon_sym_DASH_EQ] = ACTIONS(4341), - [anon_sym_STAR_EQ] = ACTIONS(4341), - [anon_sym_SLASH_EQ] = ACTIONS(4341), - [anon_sym_PERCENT_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4339), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), + [3148] = { + [sym__alpha_identifier] = ACTIONS(4888), + [anon_sym_AT] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_as] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4890), + [anon_sym_RBRACE] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4890), + [anon_sym_COMMA] = ACTIONS(4890), + [anon_sym_LT] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_where] = ACTIONS(4888), + [anon_sym_object] = ACTIONS(4888), + [anon_sym_fun] = ACTIONS(4888), + [anon_sym_DOT] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4890), + [anon_sym_get] = ACTIONS(4888), + [anon_sym_set] = ACTIONS(4888), + [anon_sym_this] = ACTIONS(4888), + [anon_sym_super] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [sym_label] = ACTIONS(4888), + [anon_sym_in] = ACTIONS(4888), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_QMARK_COLON] = ACTIONS(4890), + [anon_sym_AMP_AMP] = ACTIONS(4890), + [anon_sym_PIPE_PIPE] = ACTIONS(4890), + [anon_sym_null] = ACTIONS(4888), + [anon_sym_if] = ACTIONS(4888), + [anon_sym_else] = ACTIONS(4888), + [anon_sym_when] = ACTIONS(4888), + [anon_sym_try] = ACTIONS(4888), + [anon_sym_throw] = ACTIONS(4888), + [anon_sym_return] = ACTIONS(4888), + [anon_sym_continue] = ACTIONS(4888), + [anon_sym_break] = ACTIONS(4888), + [anon_sym_COLON_COLON] = ACTIONS(4890), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4890), + [anon_sym_BANGin] = ACTIONS(4890), + [anon_sym_is] = ACTIONS(4888), + [anon_sym_BANGis] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_as_QMARK] = ACTIONS(4890), + [anon_sym_PLUS_PLUS] = ACTIONS(4890), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_BANG_BANG] = ACTIONS(4890), + [anon_sym_data] = ACTIONS(4888), + [anon_sym_inner] = ACTIONS(4888), + [anon_sym_value] = ACTIONS(4888), + [anon_sym_expect] = ACTIONS(4888), + [anon_sym_actual] = ACTIONS(4888), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4341), - [anon_sym_continue_AT] = ACTIONS(4341), - [anon_sym_break_AT] = ACTIONS(4341), - [anon_sym_this_AT] = ACTIONS(4341), - [anon_sym_super_AT] = ACTIONS(4341), - [sym_real_literal] = ACTIONS(4341), - [sym_integer_literal] = ACTIONS(4339), - [sym_hex_literal] = ACTIONS(4341), - [sym_bin_literal] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4339), - [anon_sym_false] = ACTIONS(4339), - [anon_sym_SQUOTE] = ACTIONS(4341), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4341), - }, - [3090] = { - [sym_type_constraints] = STATE(3326), - [sym_function_body] = STATE(3608), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_RBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [anon_sym_DASH_GT] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - }, - [3091] = { - [sym__alpha_identifier] = ACTIONS(4776), - [anon_sym_AT] = ACTIONS(4778), - [anon_sym_LBRACK] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(4776), - [anon_sym_EQ] = ACTIONS(4776), - [anon_sym_fun] = ACTIONS(4776), - [anon_sym_LBRACE] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(4778), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_by] = ACTIONS(4776), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_where] = ACTIONS(4776), - [anon_sym_object] = ACTIONS(4776), - [anon_sym_DOT] = ACTIONS(4776), - [anon_sym_SEMI] = ACTIONS(4778), - [anon_sym_get] = ACTIONS(4776), - [anon_sym_set] = ACTIONS(4776), - [anon_sym_this] = ACTIONS(4776), - [anon_sym_super] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4776), - [sym_label] = ACTIONS(4776), - [anon_sym_in] = ACTIONS(4776), - [anon_sym_DOT_DOT] = ACTIONS(4778), - [anon_sym_QMARK_COLON] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4778), - [anon_sym_PIPE_PIPE] = ACTIONS(4778), - [anon_sym_null] = ACTIONS(4776), - [anon_sym_if] = ACTIONS(4776), - [anon_sym_else] = ACTIONS(4776), - [anon_sym_when] = ACTIONS(4776), - [anon_sym_try] = ACTIONS(4776), - [anon_sym_throw] = ACTIONS(4776), - [anon_sym_return] = ACTIONS(4776), - [anon_sym_continue] = ACTIONS(4776), - [anon_sym_break] = ACTIONS(4776), - [anon_sym_COLON_COLON] = ACTIONS(4778), - [anon_sym_PLUS_EQ] = ACTIONS(4778), - [anon_sym_DASH_EQ] = ACTIONS(4778), - [anon_sym_STAR_EQ] = ACTIONS(4778), - [anon_sym_SLASH_EQ] = ACTIONS(4778), - [anon_sym_PERCENT_EQ] = ACTIONS(4778), - [anon_sym_BANG_EQ] = ACTIONS(4776), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4778), - [anon_sym_EQ_EQ] = ACTIONS(4776), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4778), - [anon_sym_LT_EQ] = ACTIONS(4778), - [anon_sym_GT_EQ] = ACTIONS(4778), - [anon_sym_BANGin] = ACTIONS(4778), - [anon_sym_is] = ACTIONS(4776), - [anon_sym_BANGis] = ACTIONS(4778), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4776), - [anon_sym_as_QMARK] = ACTIONS(4778), - [anon_sym_PLUS_PLUS] = ACTIONS(4778), - [anon_sym_DASH_DASH] = ACTIONS(4778), - [anon_sym_BANG] = ACTIONS(4776), - [anon_sym_BANG_BANG] = ACTIONS(4778), - [anon_sym_data] = ACTIONS(4776), - [anon_sym_inner] = ACTIONS(4776), - [anon_sym_value] = ACTIONS(4776), - [anon_sym_expect] = ACTIONS(4776), - [anon_sym_actual] = ACTIONS(4776), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4778), - [anon_sym_continue_AT] = ACTIONS(4778), - [anon_sym_break_AT] = ACTIONS(4778), - [anon_sym_this_AT] = ACTIONS(4778), - [anon_sym_super_AT] = ACTIONS(4778), - [sym_real_literal] = ACTIONS(4778), - [sym_integer_literal] = ACTIONS(4776), - [sym_hex_literal] = ACTIONS(4778), - [sym_bin_literal] = ACTIONS(4778), - [anon_sym_true] = ACTIONS(4776), - [anon_sym_false] = ACTIONS(4776), - [anon_sym_SQUOTE] = ACTIONS(4778), - [sym__backtick_identifier] = ACTIONS(4778), - [sym__automatic_semicolon] = ACTIONS(4778), - [sym_safe_nav] = ACTIONS(4778), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4778), - }, - [3092] = { - [sym_type_constraints] = STATE(3333), - [sym_function_body] = STATE(3584), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_RBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_RPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_DASH_GT] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_while] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [anon_sym_return_AT] = ACTIONS(4890), + [anon_sym_continue_AT] = ACTIONS(4890), + [anon_sym_break_AT] = ACTIONS(4890), + [anon_sym_this_AT] = ACTIONS(4890), + [anon_sym_super_AT] = ACTIONS(4890), + [sym_real_literal] = ACTIONS(4890), + [sym_integer_literal] = ACTIONS(4888), + [sym_hex_literal] = ACTIONS(4890), + [sym_bin_literal] = ACTIONS(4890), + [anon_sym_true] = ACTIONS(4888), + [anon_sym_false] = ACTIONS(4888), + [anon_sym_SQUOTE] = ACTIONS(4890), + [sym__backtick_identifier] = ACTIONS(4890), + [sym__automatic_semicolon] = ACTIONS(4890), + [sym_safe_nav] = ACTIONS(4890), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4890), }, - [3093] = { - [sym_class_body] = STATE(3147), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_fun] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(4457), - [anon_sym_object] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_this] = ACTIONS(4457), - [anon_sym_super] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [sym_label] = ACTIONS(4457), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_null] = ACTIONS(4457), - [anon_sym_if] = ACTIONS(4457), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_when] = ACTIONS(4457), - [anon_sym_try] = ACTIONS(4457), - [anon_sym_throw] = ACTIONS(4457), - [anon_sym_return] = ACTIONS(4457), - [anon_sym_continue] = ACTIONS(4457), - [anon_sym_break] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4459), - [anon_sym_continue_AT] = ACTIONS(4459), - [anon_sym_break_AT] = ACTIONS(4459), - [anon_sym_this_AT] = ACTIONS(4459), - [anon_sym_super_AT] = ACTIONS(4459), - [sym_real_literal] = ACTIONS(4459), - [sym_integer_literal] = ACTIONS(4457), - [sym_hex_literal] = ACTIONS(4459), - [sym_bin_literal] = ACTIONS(4459), - [anon_sym_true] = ACTIONS(4457), - [anon_sym_false] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4459), - [sym__backtick_identifier] = ACTIONS(4459), - [sym__automatic_semicolon] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4459), - }, - [3094] = { - [sym_class_body] = STATE(3497), - [sym_type_constraints] = STATE(3443), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(6711), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_RBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), - [anon_sym_DASH_GT] = ACTIONS(4277), - [sym_label] = ACTIONS(4277), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_while] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_PLUS_EQ] = ACTIONS(4277), - [anon_sym_DASH_EQ] = ACTIONS(4277), - [anon_sym_STAR_EQ] = ACTIONS(4277), - [anon_sym_SLASH_EQ] = ACTIONS(4277), - [anon_sym_PERCENT_EQ] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_suspend] = ACTIONS(4275), - [anon_sym_sealed] = ACTIONS(4275), - [anon_sym_annotation] = ACTIONS(4275), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_override] = ACTIONS(4275), - [anon_sym_lateinit] = ACTIONS(4275), - [anon_sym_public] = ACTIONS(4275), - [anon_sym_private] = ACTIONS(4275), - [anon_sym_internal] = ACTIONS(4275), - [anon_sym_protected] = ACTIONS(4275), - [anon_sym_tailrec] = ACTIONS(4275), - [anon_sym_operator] = ACTIONS(4275), - [anon_sym_infix] = ACTIONS(4275), - [anon_sym_inline] = ACTIONS(4275), - [anon_sym_external] = ACTIONS(4275), - [sym_property_modifier] = ACTIONS(4275), - [anon_sym_abstract] = ACTIONS(4275), - [anon_sym_final] = ACTIONS(4275), - [anon_sym_open] = ACTIONS(4275), - [anon_sym_vararg] = ACTIONS(4275), - [anon_sym_noinline] = ACTIONS(4275), - [anon_sym_crossinline] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), + [3149] = { + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3344), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_data] = ACTIONS(3344), + [anon_sym_inner] = ACTIONS(3344), + [anon_sym_value] = ACTIONS(3344), + [anon_sym_expect] = ACTIONS(3344), + [anon_sym_actual] = ACTIONS(3344), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [3095] = { - [sym_class_body] = STATE(3204), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), - }, - [3096] = { - [sym_function_body] = STATE(3185), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(6713), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_object] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_this] = ACTIONS(4269), - [anon_sym_super] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4269), - [sym_label] = ACTIONS(4269), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_null] = ACTIONS(4269), - [anon_sym_if] = ACTIONS(4269), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_when] = ACTIONS(4269), - [anon_sym_try] = ACTIONS(4269), - [anon_sym_throw] = ACTIONS(4269), - [anon_sym_return] = ACTIONS(4269), - [anon_sym_continue] = ACTIONS(4269), - [anon_sym_break] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_PLUS_EQ] = ACTIONS(4271), - [anon_sym_DASH_EQ] = ACTIONS(4271), - [anon_sym_STAR_EQ] = ACTIONS(4271), - [anon_sym_SLASH_EQ] = ACTIONS(4271), - [anon_sym_PERCENT_EQ] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4269), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4269), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4271), - [anon_sym_continue_AT] = ACTIONS(4271), - [anon_sym_break_AT] = ACTIONS(4271), - [anon_sym_this_AT] = ACTIONS(4271), - [anon_sym_super_AT] = ACTIONS(4271), - [sym_real_literal] = ACTIONS(4271), - [sym_integer_literal] = ACTIONS(4269), - [sym_hex_literal] = ACTIONS(4271), - [sym_bin_literal] = ACTIONS(4271), - [anon_sym_true] = ACTIONS(4269), - [anon_sym_false] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4271), - [sym__backtick_identifier] = ACTIONS(4271), - [sym__automatic_semicolon] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4271), - }, - [3097] = { - [sym__alpha_identifier] = ACTIONS(4641), - [anon_sym_AT] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_as] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_fun] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4643), - [anon_sym_RBRACE] = ACTIONS(4643), - [anon_sym_LPAREN] = ACTIONS(4643), - [anon_sym_COMMA] = ACTIONS(4643), - [anon_sym_LT] = ACTIONS(4641), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_where] = ACTIONS(4641), - [anon_sym_object] = ACTIONS(4641), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4643), - [anon_sym_get] = ACTIONS(4641), - [anon_sym_set] = ACTIONS(4641), - [anon_sym_this] = ACTIONS(4641), - [anon_sym_super] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [sym_label] = ACTIONS(4641), - [anon_sym_in] = ACTIONS(4641), - [anon_sym_DOT_DOT] = ACTIONS(4643), - [anon_sym_QMARK_COLON] = ACTIONS(4643), - [anon_sym_AMP_AMP] = ACTIONS(4643), - [anon_sym_PIPE_PIPE] = ACTIONS(4643), - [anon_sym_null] = ACTIONS(4641), - [anon_sym_if] = ACTIONS(4641), - [anon_sym_else] = ACTIONS(4641), - [anon_sym_when] = ACTIONS(4641), - [anon_sym_try] = ACTIONS(4641), - [anon_sym_throw] = ACTIONS(4641), - [anon_sym_return] = ACTIONS(4641), - [anon_sym_continue] = ACTIONS(4641), - [anon_sym_break] = ACTIONS(4641), - [anon_sym_COLON_COLON] = ACTIONS(4643), - [anon_sym_PLUS_EQ] = ACTIONS(4643), - [anon_sym_DASH_EQ] = ACTIONS(4643), - [anon_sym_STAR_EQ] = ACTIONS(4643), - [anon_sym_SLASH_EQ] = ACTIONS(4643), - [anon_sym_PERCENT_EQ] = ACTIONS(4643), - [anon_sym_BANG_EQ] = ACTIONS(4641), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4643), - [anon_sym_EQ_EQ] = ACTIONS(4641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4643), - [anon_sym_LT_EQ] = ACTIONS(4643), - [anon_sym_GT_EQ] = ACTIONS(4643), - [anon_sym_BANGin] = ACTIONS(4643), - [anon_sym_is] = ACTIONS(4641), - [anon_sym_BANGis] = ACTIONS(4643), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4641), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_as_QMARK] = ACTIONS(4643), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(4641), - [anon_sym_inner] = ACTIONS(4641), - [anon_sym_value] = ACTIONS(4641), - [anon_sym_expect] = ACTIONS(4641), - [anon_sym_actual] = ACTIONS(4641), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4643), - [anon_sym_continue_AT] = ACTIONS(4643), - [anon_sym_break_AT] = ACTIONS(4643), - [anon_sym_this_AT] = ACTIONS(4643), - [anon_sym_super_AT] = ACTIONS(4643), - [anon_sym_AT2] = ACTIONS(6715), - [sym_real_literal] = ACTIONS(4643), - [sym_integer_literal] = ACTIONS(4641), - [sym_hex_literal] = ACTIONS(4643), - [sym_bin_literal] = ACTIONS(4643), - [anon_sym_true] = ACTIONS(4641), - [anon_sym_false] = ACTIONS(4641), - [anon_sym_SQUOTE] = ACTIONS(4643), - [sym__backtick_identifier] = ACTIONS(4643), - [sym__automatic_semicolon] = ACTIONS(4643), - [sym_safe_nav] = ACTIONS(4643), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4643), + [3150] = { + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4483), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_object] = ACTIONS(4481), + [anon_sym_fun] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_this] = ACTIONS(4481), + [anon_sym_super] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_null] = ACTIONS(4481), + [anon_sym_if] = ACTIONS(4481), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_when] = ACTIONS(4481), + [anon_sym_try] = ACTIONS(4481), + [anon_sym_throw] = ACTIONS(4481), + [anon_sym_return] = ACTIONS(4481), + [anon_sym_continue] = ACTIONS(4481), + [anon_sym_break] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4481), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4483), + [anon_sym_continue_AT] = ACTIONS(4483), + [anon_sym_break_AT] = ACTIONS(4483), + [anon_sym_this_AT] = ACTIONS(4483), + [anon_sym_super_AT] = ACTIONS(4483), + [sym_real_literal] = ACTIONS(4483), + [sym_integer_literal] = ACTIONS(4481), + [sym_hex_literal] = ACTIONS(4483), + [sym_bin_literal] = ACTIONS(4483), + [anon_sym_true] = ACTIONS(4481), + [anon_sym_false] = ACTIONS(4481), + [anon_sym_SQUOTE] = ACTIONS(4483), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4483), }, - [3098] = { - [sym__alpha_identifier] = ACTIONS(4677), - [anon_sym_AT] = ACTIONS(4679), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_as] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_fun] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4679), - [anon_sym_RBRACE] = ACTIONS(4679), - [anon_sym_LPAREN] = ACTIONS(4679), - [anon_sym_COMMA] = ACTIONS(4679), - [anon_sym_LT] = ACTIONS(4677), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_where] = ACTIONS(4677), - [anon_sym_object] = ACTIONS(4677), - [anon_sym_DOT] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4679), - [anon_sym_get] = ACTIONS(4677), - [anon_sym_set] = ACTIONS(4677), - [anon_sym_this] = ACTIONS(4677), - [anon_sym_super] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [sym_label] = ACTIONS(4677), - [anon_sym_in] = ACTIONS(4677), - [anon_sym_DOT_DOT] = ACTIONS(4679), - [anon_sym_QMARK_COLON] = ACTIONS(4679), - [anon_sym_AMP_AMP] = ACTIONS(4679), - [anon_sym_PIPE_PIPE] = ACTIONS(4679), - [anon_sym_null] = ACTIONS(4677), - [anon_sym_if] = ACTIONS(4677), - [anon_sym_else] = ACTIONS(4677), - [anon_sym_when] = ACTIONS(4677), - [anon_sym_try] = ACTIONS(4677), - [anon_sym_throw] = ACTIONS(4677), - [anon_sym_return] = ACTIONS(4677), - [anon_sym_continue] = ACTIONS(4677), - [anon_sym_break] = ACTIONS(4677), - [anon_sym_COLON_COLON] = ACTIONS(4679), - [anon_sym_PLUS_EQ] = ACTIONS(4679), - [anon_sym_DASH_EQ] = ACTIONS(4679), - [anon_sym_STAR_EQ] = ACTIONS(4679), - [anon_sym_SLASH_EQ] = ACTIONS(4679), - [anon_sym_PERCENT_EQ] = ACTIONS(4679), - [anon_sym_BANG_EQ] = ACTIONS(4677), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4679), - [anon_sym_EQ_EQ] = ACTIONS(4677), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4679), - [anon_sym_LT_EQ] = ACTIONS(4679), - [anon_sym_GT_EQ] = ACTIONS(4679), - [anon_sym_BANGin] = ACTIONS(4679), - [anon_sym_is] = ACTIONS(4677), - [anon_sym_BANGis] = ACTIONS(4679), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_as_QMARK] = ACTIONS(4679), - [anon_sym_PLUS_PLUS] = ACTIONS(4679), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_BANG_BANG] = ACTIONS(4679), - [anon_sym_data] = ACTIONS(4677), - [anon_sym_inner] = ACTIONS(4677), - [anon_sym_value] = ACTIONS(4677), - [anon_sym_expect] = ACTIONS(4677), - [anon_sym_actual] = ACTIONS(4677), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4679), - [anon_sym_continue_AT] = ACTIONS(4679), - [anon_sym_break_AT] = ACTIONS(4679), - [anon_sym_this_AT] = ACTIONS(4679), - [anon_sym_super_AT] = ACTIONS(4679), - [sym_real_literal] = ACTIONS(4679), - [sym_integer_literal] = ACTIONS(4677), - [sym_hex_literal] = ACTIONS(4679), - [sym_bin_literal] = ACTIONS(4679), - [anon_sym_true] = ACTIONS(4677), - [anon_sym_false] = ACTIONS(4677), - [anon_sym_SQUOTE] = ACTIONS(4679), - [sym__backtick_identifier] = ACTIONS(4679), - [sym__automatic_semicolon] = ACTIONS(4679), - [sym_safe_nav] = ACTIONS(4679), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4679), + [3151] = { + [sym__alpha_identifier] = ACTIONS(4880), + [anon_sym_AT] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_as] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_COMMA] = ACTIONS(4882), + [anon_sym_LT] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_object] = ACTIONS(4880), + [anon_sym_fun] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4882), + [anon_sym_get] = ACTIONS(4880), + [anon_sym_set] = ACTIONS(4880), + [anon_sym_this] = ACTIONS(4880), + [anon_sym_super] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [sym_label] = ACTIONS(4880), + [anon_sym_in] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_QMARK_COLON] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_PIPE_PIPE] = ACTIONS(4882), + [anon_sym_null] = ACTIONS(4880), + [anon_sym_if] = ACTIONS(4880), + [anon_sym_else] = ACTIONS(4880), + [anon_sym_when] = ACTIONS(4880), + [anon_sym_try] = ACTIONS(4880), + [anon_sym_throw] = ACTIONS(4880), + [anon_sym_return] = ACTIONS(4880), + [anon_sym_continue] = ACTIONS(4880), + [anon_sym_break] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_PLUS_EQ] = ACTIONS(4882), + [anon_sym_DASH_EQ] = ACTIONS(4882), + [anon_sym_STAR_EQ] = ACTIONS(4882), + [anon_sym_SLASH_EQ] = ACTIONS(4882), + [anon_sym_PERCENT_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4882), + [anon_sym_BANGin] = ACTIONS(4882), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_BANGis] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_as_QMARK] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4882), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_BANG_BANG] = ACTIONS(4882), + [anon_sym_data] = ACTIONS(4880), + [anon_sym_inner] = ACTIONS(4880), + [anon_sym_value] = ACTIONS(4880), + [anon_sym_expect] = ACTIONS(4880), + [anon_sym_actual] = ACTIONS(4880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4882), + [anon_sym_continue_AT] = ACTIONS(4882), + [anon_sym_break_AT] = ACTIONS(4882), + [anon_sym_this_AT] = ACTIONS(4882), + [anon_sym_super_AT] = ACTIONS(4882), + [sym_real_literal] = ACTIONS(4882), + [sym_integer_literal] = ACTIONS(4880), + [sym_hex_literal] = ACTIONS(4882), + [sym_bin_literal] = ACTIONS(4882), + [anon_sym_true] = ACTIONS(4880), + [anon_sym_false] = ACTIONS(4880), + [anon_sym_SQUOTE] = ACTIONS(4882), + [sym__backtick_identifier] = ACTIONS(4882), + [sym__automatic_semicolon] = ACTIONS(4882), + [sym_safe_nav] = ACTIONS(4882), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4882), }, - [3099] = { - [sym_enum_class_body] = STATE(3229), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), + [3152] = { + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3160), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3162), + [anon_sym_QMARK_COLON] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(3162), + [anon_sym_data] = ACTIONS(3160), + [anon_sym_inner] = ACTIONS(3160), + [anon_sym_value] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3160), + [anon_sym_actual] = ACTIONS(3160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(3162), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), }, - [3100] = { - [sym_enum_class_body] = STATE(3204), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [3153] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), }, - [3101] = { - [sym_class_body] = STATE(3229), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), + [3154] = { + [aux_sym_nullable_type_repeat1] = STATE(3177), + [sym__alpha_identifier] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_EQ] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_RBRACE] = ACTIONS(4249), + [anon_sym_LPAREN] = ACTIONS(4249), + [anon_sym_COMMA] = ACTIONS(4249), + [anon_sym_by] = ACTIONS(4247), + [anon_sym_where] = ACTIONS(4247), + [anon_sym_object] = ACTIONS(4247), + [anon_sym_fun] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4249), + [anon_sym_get] = ACTIONS(4247), + [anon_sym_set] = ACTIONS(4247), + [anon_sym_this] = ACTIONS(4247), + [anon_sym_super] = ACTIONS(4247), + [sym__quest] = ACTIONS(6675), + [anon_sym_STAR] = ACTIONS(4249), + [sym_label] = ACTIONS(4247), + [anon_sym_in] = ACTIONS(4247), + [anon_sym_null] = ACTIONS(4247), + [anon_sym_if] = ACTIONS(4247), + [anon_sym_else] = ACTIONS(4247), + [anon_sym_when] = ACTIONS(4247), + [anon_sym_try] = ACTIONS(4247), + [anon_sym_throw] = ACTIONS(4247), + [anon_sym_return] = ACTIONS(4247), + [anon_sym_continue] = ACTIONS(4247), + [anon_sym_break] = ACTIONS(4247), + [anon_sym_COLON_COLON] = ACTIONS(4249), + [anon_sym_BANGin] = ACTIONS(4249), + [anon_sym_is] = ACTIONS(4247), + [anon_sym_BANGis] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_PLUS_PLUS] = ACTIONS(4249), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_suspend] = ACTIONS(4247), + [anon_sym_sealed] = ACTIONS(4247), + [anon_sym_annotation] = ACTIONS(4247), + [anon_sym_data] = ACTIONS(4247), + [anon_sym_inner] = ACTIONS(4247), + [anon_sym_value] = ACTIONS(4247), + [anon_sym_override] = ACTIONS(4247), + [anon_sym_lateinit] = ACTIONS(4247), + [anon_sym_public] = ACTIONS(4247), + [anon_sym_private] = ACTIONS(4247), + [anon_sym_internal] = ACTIONS(4247), + [anon_sym_protected] = ACTIONS(4247), + [anon_sym_tailrec] = ACTIONS(4247), + [anon_sym_operator] = ACTIONS(4247), + [anon_sym_infix] = ACTIONS(4247), + [anon_sym_inline] = ACTIONS(4247), + [anon_sym_external] = ACTIONS(4247), + [sym_property_modifier] = ACTIONS(4247), + [anon_sym_abstract] = ACTIONS(4247), + [anon_sym_final] = ACTIONS(4247), + [anon_sym_open] = ACTIONS(4247), + [anon_sym_vararg] = ACTIONS(4247), + [anon_sym_noinline] = ACTIONS(4247), + [anon_sym_crossinline] = ACTIONS(4247), + [anon_sym_expect] = ACTIONS(4247), + [anon_sym_actual] = ACTIONS(4247), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4249), + [anon_sym_continue_AT] = ACTIONS(4249), + [anon_sym_break_AT] = ACTIONS(4249), + [anon_sym_this_AT] = ACTIONS(4249), + [anon_sym_super_AT] = ACTIONS(4249), + [sym_real_literal] = ACTIONS(4249), + [sym_integer_literal] = ACTIONS(4247), + [sym_hex_literal] = ACTIONS(4249), + [sym_bin_literal] = ACTIONS(4249), + [anon_sym_true] = ACTIONS(4247), + [anon_sym_false] = ACTIONS(4247), + [anon_sym_SQUOTE] = ACTIONS(4249), + [sym__backtick_identifier] = ACTIONS(4249), + [sym__automatic_semicolon] = ACTIONS(4249), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4249), }, - [3102] = { - [sym_class_body] = STATE(3500), - [sym_type_constraints] = STATE(3439), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(5699), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_DASH_GT] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), + [3155] = { + [sym__alpha_identifier] = ACTIONS(4870), + [anon_sym_AT] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_as] = ACTIONS(4870), + [anon_sym_EQ] = ACTIONS(4870), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_RBRACE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4870), + [anon_sym_where] = ACTIONS(4870), + [anon_sym_object] = ACTIONS(4870), + [anon_sym_fun] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_get] = ACTIONS(4870), + [anon_sym_set] = ACTIONS(4870), + [anon_sym_this] = ACTIONS(4870), + [anon_sym_super] = ACTIONS(4870), + [anon_sym_STAR] = ACTIONS(4870), + [sym_label] = ACTIONS(4870), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4872), + [anon_sym_AMP_AMP] = ACTIONS(4872), + [anon_sym_PIPE_PIPE] = ACTIONS(4872), + [anon_sym_null] = ACTIONS(4870), + [anon_sym_if] = ACTIONS(4870), + [anon_sym_else] = ACTIONS(4870), + [anon_sym_when] = ACTIONS(4870), + [anon_sym_try] = ACTIONS(4870), + [anon_sym_throw] = ACTIONS(4870), + [anon_sym_return] = ACTIONS(4870), + [anon_sym_continue] = ACTIONS(4870), + [anon_sym_break] = ACTIONS(4870), + [anon_sym_COLON_COLON] = ACTIONS(4872), + [anon_sym_PLUS_EQ] = ACTIONS(4872), + [anon_sym_DASH_EQ] = ACTIONS(4872), + [anon_sym_STAR_EQ] = ACTIONS(4872), + [anon_sym_SLASH_EQ] = ACTIONS(4872), + [anon_sym_PERCENT_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ] = ACTIONS(4870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4872), + [anon_sym_EQ_EQ] = ACTIONS(4870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4872), + [anon_sym_LT_EQ] = ACTIONS(4872), + [anon_sym_GT_EQ] = ACTIONS(4872), + [anon_sym_BANGin] = ACTIONS(4872), + [anon_sym_is] = ACTIONS(4870), + [anon_sym_BANGis] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4870), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4870), + [anon_sym_PERCENT] = ACTIONS(4870), + [anon_sym_as_QMARK] = ACTIONS(4872), + [anon_sym_PLUS_PLUS] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4872), + [anon_sym_BANG] = ACTIONS(4870), + [anon_sym_BANG_BANG] = ACTIONS(4872), + [anon_sym_data] = ACTIONS(4870), + [anon_sym_inner] = ACTIONS(4870), + [anon_sym_value] = ACTIONS(4870), + [anon_sym_expect] = ACTIONS(4870), + [anon_sym_actual] = ACTIONS(4870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4872), + [anon_sym_continue_AT] = ACTIONS(4872), + [anon_sym_break_AT] = ACTIONS(4872), + [anon_sym_this_AT] = ACTIONS(4872), + [anon_sym_super_AT] = ACTIONS(4872), + [sym_real_literal] = ACTIONS(4872), + [sym_integer_literal] = ACTIONS(4870), + [sym_hex_literal] = ACTIONS(4872), + [sym_bin_literal] = ACTIONS(4872), + [anon_sym_true] = ACTIONS(4870), + [anon_sym_false] = ACTIONS(4870), + [anon_sym_SQUOTE] = ACTIONS(4872), + [sym__backtick_identifier] = ACTIONS(4872), + [sym__automatic_semicolon] = ACTIONS(4872), + [sym_safe_nav] = ACTIONS(4872), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4872), }, - [3103] = { - [sym_class_body] = STATE(3200), - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_fun] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4756), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_where] = ACTIONS(4754), - [anon_sym_object] = ACTIONS(4754), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_this] = ACTIONS(4754), - [anon_sym_super] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [sym_label] = ACTIONS(4754), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_null] = ACTIONS(4754), - [anon_sym_if] = ACTIONS(4754), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_when] = ACTIONS(4754), - [anon_sym_try] = ACTIONS(4754), - [anon_sym_throw] = ACTIONS(4754), - [anon_sym_return] = ACTIONS(4754), - [anon_sym_continue] = ACTIONS(4754), - [anon_sym_break] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG] = ACTIONS(4754), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), + [3156] = { + [sym__alpha_identifier] = ACTIONS(4898), + [anon_sym_AT] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_object] = ACTIONS(4898), + [anon_sym_fun] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_get] = ACTIONS(4898), + [anon_sym_set] = ACTIONS(4898), + [anon_sym_this] = ACTIONS(4898), + [anon_sym_super] = ACTIONS(4898), + [anon_sym_STAR] = ACTIONS(4898), + [sym_label] = ACTIONS(4898), + [anon_sym_in] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4900), + [anon_sym_QMARK_COLON] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_null] = ACTIONS(4898), + [anon_sym_if] = ACTIONS(4898), + [anon_sym_else] = ACTIONS(4898), + [anon_sym_when] = ACTIONS(4898), + [anon_sym_try] = ACTIONS(4898), + [anon_sym_throw] = ACTIONS(4898), + [anon_sym_return] = ACTIONS(4898), + [anon_sym_continue] = ACTIONS(4898), + [anon_sym_break] = ACTIONS(4898), + [anon_sym_COLON_COLON] = ACTIONS(4900), + [anon_sym_PLUS_EQ] = ACTIONS(4900), + [anon_sym_DASH_EQ] = ACTIONS(4900), + [anon_sym_STAR_EQ] = ACTIONS(4900), + [anon_sym_SLASH_EQ] = ACTIONS(4900), + [anon_sym_PERCENT_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4900), + [anon_sym_LT_EQ] = ACTIONS(4900), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_BANGin] = ACTIONS(4900), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_BANGis] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_PERCENT] = ACTIONS(4898), + [anon_sym_as_QMARK] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4898), + [anon_sym_BANG_BANG] = ACTIONS(4900), + [anon_sym_data] = ACTIONS(4898), + [anon_sym_inner] = ACTIONS(4898), + [anon_sym_value] = ACTIONS(4898), + [anon_sym_expect] = ACTIONS(4898), + [anon_sym_actual] = ACTIONS(4898), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4756), - [anon_sym_continue_AT] = ACTIONS(4756), - [anon_sym_break_AT] = ACTIONS(4756), - [anon_sym_this_AT] = ACTIONS(4756), - [anon_sym_super_AT] = ACTIONS(4756), - [sym_real_literal] = ACTIONS(4756), - [sym_integer_literal] = ACTIONS(4754), - [sym_hex_literal] = ACTIONS(4756), - [sym_bin_literal] = ACTIONS(4756), - [anon_sym_true] = ACTIONS(4754), - [anon_sym_false] = ACTIONS(4754), - [anon_sym_SQUOTE] = ACTIONS(4756), - [sym__backtick_identifier] = ACTIONS(4756), - [sym__automatic_semicolon] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), + [anon_sym_return_AT] = ACTIONS(4900), + [anon_sym_continue_AT] = ACTIONS(4900), + [anon_sym_break_AT] = ACTIONS(4900), + [anon_sym_this_AT] = ACTIONS(4900), + [anon_sym_super_AT] = ACTIONS(4900), + [sym_real_literal] = ACTIONS(4900), + [sym_integer_literal] = ACTIONS(4898), + [sym_hex_literal] = ACTIONS(4900), + [sym_bin_literal] = ACTIONS(4900), + [anon_sym_true] = ACTIONS(4898), + [anon_sym_false] = ACTIONS(4898), + [anon_sym_SQUOTE] = ACTIONS(4900), + [sym__backtick_identifier] = ACTIONS(4900), + [sym__automatic_semicolon] = ACTIONS(4900), + [sym_safe_nav] = ACTIONS(4900), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4756), + [sym__string_start] = ACTIONS(4900), }, - [3104] = { - [sym__alpha_identifier] = ACTIONS(4748), - [anon_sym_AT] = ACTIONS(4750), - [anon_sym_LBRACK] = ACTIONS(4750), - [anon_sym_as] = ACTIONS(4748), - [anon_sym_EQ] = ACTIONS(4748), - [anon_sym_fun] = ACTIONS(4748), - [anon_sym_LBRACE] = ACTIONS(4750), - [anon_sym_RBRACE] = ACTIONS(4750), - [anon_sym_LPAREN] = ACTIONS(4750), - [anon_sym_COMMA] = ACTIONS(4750), - [anon_sym_by] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4748), - [anon_sym_GT] = ACTIONS(4748), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_object] = ACTIONS(4748), - [anon_sym_DOT] = ACTIONS(4748), - [anon_sym_SEMI] = ACTIONS(4750), - [anon_sym_get] = ACTIONS(4748), - [anon_sym_set] = ACTIONS(4748), - [anon_sym_this] = ACTIONS(4748), - [anon_sym_super] = ACTIONS(4748), - [anon_sym_STAR] = ACTIONS(4748), - [sym_label] = ACTIONS(4748), - [anon_sym_in] = ACTIONS(4748), - [anon_sym_DOT_DOT] = ACTIONS(4750), - [anon_sym_QMARK_COLON] = ACTIONS(4750), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4750), - [anon_sym_null] = ACTIONS(4748), - [anon_sym_if] = ACTIONS(4748), - [anon_sym_else] = ACTIONS(4748), - [anon_sym_when] = ACTIONS(4748), - [anon_sym_try] = ACTIONS(4748), - [anon_sym_throw] = ACTIONS(4748), - [anon_sym_return] = ACTIONS(4748), - [anon_sym_continue] = ACTIONS(4748), - [anon_sym_break] = ACTIONS(4748), - [anon_sym_COLON_COLON] = ACTIONS(4750), - [anon_sym_PLUS_EQ] = ACTIONS(4750), - [anon_sym_DASH_EQ] = ACTIONS(4750), - [anon_sym_STAR_EQ] = ACTIONS(4750), - [anon_sym_SLASH_EQ] = ACTIONS(4750), - [anon_sym_PERCENT_EQ] = ACTIONS(4750), - [anon_sym_BANG_EQ] = ACTIONS(4748), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4750), - [anon_sym_EQ_EQ] = ACTIONS(4748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4750), - [anon_sym_LT_EQ] = ACTIONS(4750), - [anon_sym_GT_EQ] = ACTIONS(4750), - [anon_sym_BANGin] = ACTIONS(4750), - [anon_sym_is] = ACTIONS(4748), - [anon_sym_BANGis] = ACTIONS(4750), - [anon_sym_PLUS] = ACTIONS(4748), - [anon_sym_DASH] = ACTIONS(4748), - [anon_sym_SLASH] = ACTIONS(4748), - [anon_sym_PERCENT] = ACTIONS(4748), - [anon_sym_as_QMARK] = ACTIONS(4750), - [anon_sym_PLUS_PLUS] = ACTIONS(4750), - [anon_sym_DASH_DASH] = ACTIONS(4750), - [anon_sym_BANG] = ACTIONS(4748), - [anon_sym_BANG_BANG] = ACTIONS(4750), - [anon_sym_data] = ACTIONS(4748), - [anon_sym_inner] = ACTIONS(4748), - [anon_sym_value] = ACTIONS(4748), - [anon_sym_expect] = ACTIONS(4748), - [anon_sym_actual] = ACTIONS(4748), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4750), - [anon_sym_continue_AT] = ACTIONS(4750), - [anon_sym_break_AT] = ACTIONS(4750), - [anon_sym_this_AT] = ACTIONS(4750), - [anon_sym_super_AT] = ACTIONS(4750), - [sym_real_literal] = ACTIONS(4750), - [sym_integer_literal] = ACTIONS(4748), - [sym_hex_literal] = ACTIONS(4750), - [sym_bin_literal] = ACTIONS(4750), - [anon_sym_true] = ACTIONS(4748), - [anon_sym_false] = ACTIONS(4748), - [anon_sym_SQUOTE] = ACTIONS(4750), - [sym__backtick_identifier] = ACTIONS(4750), - [sym__automatic_semicolon] = ACTIONS(4750), - [sym_safe_nav] = ACTIONS(4750), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4750), + [3157] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_object] = ACTIONS(4850), + [anon_sym_fun] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_this] = ACTIONS(4850), + [anon_sym_super] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [sym_label] = ACTIONS(4850), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_when] = ACTIONS(4850), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_throw] = ACTIONS(4850), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4852), + [anon_sym_continue_AT] = ACTIONS(4852), + [anon_sym_break_AT] = ACTIONS(4852), + [anon_sym_this_AT] = ACTIONS(4852), + [anon_sym_super_AT] = ACTIONS(4852), + [sym_real_literal] = ACTIONS(4852), + [sym_integer_literal] = ACTIONS(4850), + [sym_hex_literal] = ACTIONS(4852), + [sym_bin_literal] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4852), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4852), }, - [3105] = { - [sym__alpha_identifier] = ACTIONS(4766), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_EQ] = ACTIONS(4766), - [anon_sym_fun] = ACTIONS(4766), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(4769), - [anon_sym_COMMA] = ACTIONS(4769), - [anon_sym_by] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_object] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4766), - [anon_sym_set] = ACTIONS(4766), - [anon_sym_this] = ACTIONS(4766), - [anon_sym_super] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4766), - [sym_label] = ACTIONS(4766), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_null] = ACTIONS(4766), - [anon_sym_if] = ACTIONS(4766), - [anon_sym_else] = ACTIONS(4766), - [anon_sym_when] = ACTIONS(4766), - [anon_sym_try] = ACTIONS(4766), - [anon_sym_throw] = ACTIONS(4766), - [anon_sym_return] = ACTIONS(4766), - [anon_sym_continue] = ACTIONS(4766), - [anon_sym_break] = ACTIONS(4766), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_STAR_EQ] = ACTIONS(4769), - [anon_sym_SLASH_EQ] = ACTIONS(4769), - [anon_sym_PERCENT_EQ] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4766), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_data] = ACTIONS(4766), - [anon_sym_inner] = ACTIONS(4766), - [anon_sym_value] = ACTIONS(4766), - [anon_sym_expect] = ACTIONS(4766), - [anon_sym_actual] = ACTIONS(4766), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4769), - [anon_sym_continue_AT] = ACTIONS(4769), - [anon_sym_break_AT] = ACTIONS(4769), - [anon_sym_this_AT] = ACTIONS(4769), - [anon_sym_super_AT] = ACTIONS(4769), - [sym_real_literal] = ACTIONS(4769), - [sym_integer_literal] = ACTIONS(4766), - [sym_hex_literal] = ACTIONS(4769), - [sym_bin_literal] = ACTIONS(4769), - [anon_sym_true] = ACTIONS(4766), - [anon_sym_false] = ACTIONS(4766), - [anon_sym_SQUOTE] = ACTIONS(4769), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4769), + [3158] = { + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, - [3106] = { - [sym_class_body] = STATE(3164), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_fun] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(4465), - [anon_sym_object] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_this] = ACTIONS(4465), - [anon_sym_super] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [sym_label] = ACTIONS(4465), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_null] = ACTIONS(4465), - [anon_sym_if] = ACTIONS(4465), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_when] = ACTIONS(4465), - [anon_sym_try] = ACTIONS(4465), - [anon_sym_throw] = ACTIONS(4465), - [anon_sym_return] = ACTIONS(4465), - [anon_sym_continue] = ACTIONS(4465), - [anon_sym_break] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4467), - [anon_sym_continue_AT] = ACTIONS(4467), - [anon_sym_break_AT] = ACTIONS(4467), - [anon_sym_this_AT] = ACTIONS(4467), - [anon_sym_super_AT] = ACTIONS(4467), - [sym_real_literal] = ACTIONS(4467), - [sym_integer_literal] = ACTIONS(4465), - [sym_hex_literal] = ACTIONS(4467), - [sym_bin_literal] = ACTIONS(4467), - [anon_sym_true] = ACTIONS(4465), - [anon_sym_false] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4467), - [sym__backtick_identifier] = ACTIONS(4467), - [sym__automatic_semicolon] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4467), + [3159] = { + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4295), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, - [3107] = { - [sym_class_body] = STATE(3174), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(4281), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), + [3160] = { + [sym__alpha_identifier] = ACTIONS(4866), + [anon_sym_AT] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_as] = ACTIONS(4866), + [anon_sym_EQ] = ACTIONS(4866), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4866), + [anon_sym_where] = ACTIONS(4866), + [anon_sym_object] = ACTIONS(4866), + [anon_sym_fun] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_get] = ACTIONS(4866), + [anon_sym_set] = ACTIONS(4866), + [anon_sym_this] = ACTIONS(4866), + [anon_sym_super] = ACTIONS(4866), + [anon_sym_STAR] = ACTIONS(4866), + [sym_label] = ACTIONS(4866), + [anon_sym_in] = ACTIONS(4866), + [anon_sym_DOT_DOT] = ACTIONS(4868), + [anon_sym_QMARK_COLON] = ACTIONS(4868), + [anon_sym_AMP_AMP] = ACTIONS(4868), + [anon_sym_PIPE_PIPE] = ACTIONS(4868), + [anon_sym_null] = ACTIONS(4866), + [anon_sym_if] = ACTIONS(4866), + [anon_sym_else] = ACTIONS(4866), + [anon_sym_when] = ACTIONS(4866), + [anon_sym_try] = ACTIONS(4866), + [anon_sym_throw] = ACTIONS(4866), + [anon_sym_return] = ACTIONS(4866), + [anon_sym_continue] = ACTIONS(4866), + [anon_sym_break] = ACTIONS(4866), + [anon_sym_COLON_COLON] = ACTIONS(4868), + [anon_sym_PLUS_EQ] = ACTIONS(4868), + [anon_sym_DASH_EQ] = ACTIONS(4868), + [anon_sym_STAR_EQ] = ACTIONS(4868), + [anon_sym_SLASH_EQ] = ACTIONS(4868), + [anon_sym_PERCENT_EQ] = ACTIONS(4868), + [anon_sym_BANG_EQ] = ACTIONS(4866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4868), + [anon_sym_EQ_EQ] = ACTIONS(4866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4868), + [anon_sym_LT_EQ] = ACTIONS(4868), + [anon_sym_GT_EQ] = ACTIONS(4868), + [anon_sym_BANGin] = ACTIONS(4868), + [anon_sym_is] = ACTIONS(4866), + [anon_sym_BANGis] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4866), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4866), + [anon_sym_PERCENT] = ACTIONS(4866), + [anon_sym_as_QMARK] = ACTIONS(4868), + [anon_sym_PLUS_PLUS] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4868), + [anon_sym_BANG] = ACTIONS(4866), + [anon_sym_BANG_BANG] = ACTIONS(4868), + [anon_sym_data] = ACTIONS(4866), + [anon_sym_inner] = ACTIONS(4866), + [anon_sym_value] = ACTIONS(4866), + [anon_sym_expect] = ACTIONS(4866), + [anon_sym_actual] = ACTIONS(4866), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4868), + [anon_sym_continue_AT] = ACTIONS(4868), + [anon_sym_break_AT] = ACTIONS(4868), + [anon_sym_this_AT] = ACTIONS(4868), + [anon_sym_super_AT] = ACTIONS(4868), + [sym_real_literal] = ACTIONS(4868), + [sym_integer_literal] = ACTIONS(4866), + [sym_hex_literal] = ACTIONS(4868), + [sym_bin_literal] = ACTIONS(4868), + [anon_sym_true] = ACTIONS(4866), + [anon_sym_false] = ACTIONS(4866), + [anon_sym_SQUOTE] = ACTIONS(4868), + [sym__backtick_identifier] = ACTIONS(4868), + [sym__automatic_semicolon] = ACTIONS(4868), + [sym_safe_nav] = ACTIONS(4868), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4868), }, - [3108] = { - [sym__alpha_identifier] = ACTIONS(4714), - [anon_sym_AT] = ACTIONS(4716), - [anon_sym_COLON] = ACTIONS(4714), - [anon_sym_LBRACK] = ACTIONS(4716), - [anon_sym_as] = ACTIONS(4714), - [anon_sym_EQ] = ACTIONS(4714), - [anon_sym_fun] = ACTIONS(4714), - [anon_sym_LBRACE] = ACTIONS(4716), - [anon_sym_RBRACE] = ACTIONS(4716), - [anon_sym_LPAREN] = ACTIONS(4716), - [anon_sym_COMMA] = ACTIONS(4716), - [anon_sym_LT] = ACTIONS(4714), - [anon_sym_GT] = ACTIONS(4714), - [anon_sym_where] = ACTIONS(4714), - [anon_sym_object] = ACTIONS(4714), - [anon_sym_DOT] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_get] = ACTIONS(4714), - [anon_sym_set] = ACTIONS(4714), - [anon_sym_this] = ACTIONS(4714), - [anon_sym_super] = ACTIONS(4714), - [anon_sym_STAR] = ACTIONS(4714), - [sym_label] = ACTIONS(4714), - [anon_sym_in] = ACTIONS(4714), - [anon_sym_DOT_DOT] = ACTIONS(4716), - [anon_sym_QMARK_COLON] = ACTIONS(4716), - [anon_sym_AMP_AMP] = ACTIONS(4716), - [anon_sym_PIPE_PIPE] = ACTIONS(4716), - [anon_sym_null] = ACTIONS(4714), - [anon_sym_if] = ACTIONS(4714), - [anon_sym_else] = ACTIONS(4714), - [anon_sym_when] = ACTIONS(4714), - [anon_sym_try] = ACTIONS(4714), - [anon_sym_throw] = ACTIONS(4714), - [anon_sym_return] = ACTIONS(4714), - [anon_sym_continue] = ACTIONS(4714), - [anon_sym_break] = ACTIONS(4714), - [anon_sym_COLON_COLON] = ACTIONS(4716), - [anon_sym_PLUS_EQ] = ACTIONS(4716), - [anon_sym_DASH_EQ] = ACTIONS(4716), - [anon_sym_STAR_EQ] = ACTIONS(4716), - [anon_sym_SLASH_EQ] = ACTIONS(4716), - [anon_sym_PERCENT_EQ] = ACTIONS(4716), - [anon_sym_BANG_EQ] = ACTIONS(4714), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4716), - [anon_sym_EQ_EQ] = ACTIONS(4714), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4716), - [anon_sym_LT_EQ] = ACTIONS(4716), - [anon_sym_GT_EQ] = ACTIONS(4716), - [anon_sym_BANGin] = ACTIONS(4716), - [anon_sym_is] = ACTIONS(4714), - [anon_sym_BANGis] = ACTIONS(4716), - [anon_sym_PLUS] = ACTIONS(4714), - [anon_sym_DASH] = ACTIONS(4714), - [anon_sym_SLASH] = ACTIONS(4714), - [anon_sym_PERCENT] = ACTIONS(4714), - [anon_sym_as_QMARK] = ACTIONS(4716), - [anon_sym_PLUS_PLUS] = ACTIONS(4716), - [anon_sym_DASH_DASH] = ACTIONS(4716), - [anon_sym_BANG] = ACTIONS(4714), - [anon_sym_BANG_BANG] = ACTIONS(4716), - [anon_sym_data] = ACTIONS(4714), - [anon_sym_inner] = ACTIONS(4714), - [anon_sym_value] = ACTIONS(4714), - [anon_sym_expect] = ACTIONS(4714), - [anon_sym_actual] = ACTIONS(4714), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4716), - [anon_sym_continue_AT] = ACTIONS(4716), - [anon_sym_break_AT] = ACTIONS(4716), - [anon_sym_this_AT] = ACTIONS(4716), - [anon_sym_super_AT] = ACTIONS(4716), - [sym_real_literal] = ACTIONS(4716), - [sym_integer_literal] = ACTIONS(4714), - [sym_hex_literal] = ACTIONS(4716), - [sym_bin_literal] = ACTIONS(4716), - [anon_sym_true] = ACTIONS(4714), - [anon_sym_false] = ACTIONS(4714), - [anon_sym_SQUOTE] = ACTIONS(4716), - [sym__backtick_identifier] = ACTIONS(4716), - [sym__automatic_semicolon] = ACTIONS(4716), - [sym_safe_nav] = ACTIONS(4716), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4716), + [3161] = { + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_object] = ACTIONS(4000), + [anon_sym_fun] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_this] = ACTIONS(4000), + [anon_sym_super] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_null] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_when] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4002), + [anon_sym_continue_AT] = ACTIONS(4002), + [anon_sym_break_AT] = ACTIONS(4002), + [anon_sym_this_AT] = ACTIONS(4002), + [anon_sym_super_AT] = ACTIONS(4002), + [sym_real_literal] = ACTIONS(4002), + [sym_integer_literal] = ACTIONS(4000), + [sym_hex_literal] = ACTIONS(4002), + [sym_bin_literal] = ACTIONS(4002), + [anon_sym_true] = ACTIONS(4000), + [anon_sym_false] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4002), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4002), }, - [3109] = { - [sym_type_constraints] = STATE(3416), - [sym_enum_class_body] = STATE(3574), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6717), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_RBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [anon_sym_DASH_GT] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [3162] = { + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(1808), + [anon_sym_set] = ACTIONS(1808), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_data] = ACTIONS(1808), + [anon_sym_inner] = ACTIONS(1808), + [anon_sym_value] = ACTIONS(1808), + [anon_sym_expect] = ACTIONS(1808), + [anon_sym_actual] = ACTIONS(1808), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [3110] = { - [sym_class_body] = STATE(3166), - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_fun] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_object] = ACTIONS(4637), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_this] = ACTIONS(4637), - [anon_sym_super] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [sym_label] = ACTIONS(4637), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_null] = ACTIONS(4637), - [anon_sym_if] = ACTIONS(4637), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_when] = ACTIONS(4637), - [anon_sym_try] = ACTIONS(4637), - [anon_sym_throw] = ACTIONS(4637), - [anon_sym_return] = ACTIONS(4637), - [anon_sym_continue] = ACTIONS(4637), - [anon_sym_break] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4639), - [anon_sym_continue_AT] = ACTIONS(4639), - [anon_sym_break_AT] = ACTIONS(4639), - [anon_sym_this_AT] = ACTIONS(4639), - [anon_sym_super_AT] = ACTIONS(4639), - [sym_real_literal] = ACTIONS(4639), - [sym_integer_literal] = ACTIONS(4637), - [sym_hex_literal] = ACTIONS(4639), - [sym_bin_literal] = ACTIONS(4639), - [anon_sym_true] = ACTIONS(4637), - [anon_sym_false] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4639), - [sym__backtick_identifier] = ACTIONS(4639), - [sym__automatic_semicolon] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4639), - }, - [3111] = { - [sym__alpha_identifier] = ACTIONS(4699), - [anon_sym_AT] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_as] = ACTIONS(4699), - [anon_sym_EQ] = ACTIONS(4699), - [anon_sym_fun] = ACTIONS(4699), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_RBRACE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_where] = ACTIONS(4699), - [anon_sym_object] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_get] = ACTIONS(4699), - [anon_sym_set] = ACTIONS(4699), - [anon_sym_this] = ACTIONS(4699), - [anon_sym_super] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [sym_label] = ACTIONS(4699), - [anon_sym_in] = ACTIONS(4699), - [anon_sym_DOT_DOT] = ACTIONS(4701), - [anon_sym_QMARK_COLON] = ACTIONS(4701), - [anon_sym_AMP_AMP] = ACTIONS(4701), - [anon_sym_PIPE_PIPE] = ACTIONS(4701), - [anon_sym_null] = ACTIONS(4699), - [anon_sym_if] = ACTIONS(4699), - [anon_sym_else] = ACTIONS(4699), - [anon_sym_when] = ACTIONS(4699), - [anon_sym_try] = ACTIONS(4699), - [anon_sym_throw] = ACTIONS(4699), - [anon_sym_return] = ACTIONS(4699), - [anon_sym_continue] = ACTIONS(4699), - [anon_sym_break] = ACTIONS(4699), - [anon_sym_COLON_COLON] = ACTIONS(4701), - [anon_sym_PLUS_EQ] = ACTIONS(4701), - [anon_sym_DASH_EQ] = ACTIONS(4701), - [anon_sym_STAR_EQ] = ACTIONS(4701), - [anon_sym_SLASH_EQ] = ACTIONS(4701), - [anon_sym_PERCENT_EQ] = ACTIONS(4701), - [anon_sym_BANG_EQ] = ACTIONS(4699), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4701), - [anon_sym_EQ_EQ] = ACTIONS(4699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4701), - [anon_sym_LT_EQ] = ACTIONS(4701), - [anon_sym_GT_EQ] = ACTIONS(4701), - [anon_sym_BANGin] = ACTIONS(4701), - [anon_sym_is] = ACTIONS(4699), - [anon_sym_BANGis] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_PERCENT] = ACTIONS(4699), - [anon_sym_as_QMARK] = ACTIONS(4701), - [anon_sym_PLUS_PLUS] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_BANG_BANG] = ACTIONS(4701), - [anon_sym_data] = ACTIONS(4699), - [anon_sym_inner] = ACTIONS(4699), - [anon_sym_value] = ACTIONS(4699), - [anon_sym_expect] = ACTIONS(4699), - [anon_sym_actual] = ACTIONS(4699), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4701), - [anon_sym_continue_AT] = ACTIONS(4701), - [anon_sym_break_AT] = ACTIONS(4701), - [anon_sym_this_AT] = ACTIONS(4701), - [anon_sym_super_AT] = ACTIONS(4701), - [sym_real_literal] = ACTIONS(4701), - [sym_integer_literal] = ACTIONS(4699), - [sym_hex_literal] = ACTIONS(4701), - [sym_bin_literal] = ACTIONS(4701), - [anon_sym_true] = ACTIONS(4699), - [anon_sym_false] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4701), - [sym__backtick_identifier] = ACTIONS(4701), - [sym__automatic_semicolon] = ACTIONS(4701), - [sym_safe_nav] = ACTIONS(4701), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4701), - }, - [3112] = { - [sym__alpha_identifier] = ACTIONS(4726), - [anon_sym_AT] = ACTIONS(4728), - [anon_sym_LBRACK] = ACTIONS(4728), - [anon_sym_as] = ACTIONS(4726), - [anon_sym_EQ] = ACTIONS(4726), - [anon_sym_fun] = ACTIONS(4726), - [anon_sym_LBRACE] = ACTIONS(4728), - [anon_sym_RBRACE] = ACTIONS(4728), - [anon_sym_LPAREN] = ACTIONS(4728), - [anon_sym_COMMA] = ACTIONS(4728), - [anon_sym_by] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4726), - [anon_sym_GT] = ACTIONS(4726), - [anon_sym_where] = ACTIONS(4726), - [anon_sym_object] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4726), - [anon_sym_SEMI] = ACTIONS(4728), - [anon_sym_get] = ACTIONS(4726), - [anon_sym_set] = ACTIONS(4726), - [anon_sym_this] = ACTIONS(4726), - [anon_sym_super] = ACTIONS(4726), - [anon_sym_STAR] = ACTIONS(4726), - [sym_label] = ACTIONS(4726), - [anon_sym_in] = ACTIONS(4726), - [anon_sym_DOT_DOT] = ACTIONS(4728), - [anon_sym_QMARK_COLON] = ACTIONS(4728), - [anon_sym_AMP_AMP] = ACTIONS(4728), - [anon_sym_PIPE_PIPE] = ACTIONS(4728), - [anon_sym_null] = ACTIONS(4726), - [anon_sym_if] = ACTIONS(4726), - [anon_sym_else] = ACTIONS(4726), - [anon_sym_when] = ACTIONS(4726), - [anon_sym_try] = ACTIONS(4726), - [anon_sym_throw] = ACTIONS(4726), - [anon_sym_return] = ACTIONS(4726), - [anon_sym_continue] = ACTIONS(4726), - [anon_sym_break] = ACTIONS(4726), - [anon_sym_COLON_COLON] = ACTIONS(4728), - [anon_sym_PLUS_EQ] = ACTIONS(4728), - [anon_sym_DASH_EQ] = ACTIONS(4728), - [anon_sym_STAR_EQ] = ACTIONS(4728), - [anon_sym_SLASH_EQ] = ACTIONS(4728), - [anon_sym_PERCENT_EQ] = ACTIONS(4728), - [anon_sym_BANG_EQ] = ACTIONS(4726), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), - [anon_sym_EQ_EQ] = ACTIONS(4726), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_GT_EQ] = ACTIONS(4728), - [anon_sym_BANGin] = ACTIONS(4728), - [anon_sym_is] = ACTIONS(4726), - [anon_sym_BANGis] = ACTIONS(4728), - [anon_sym_PLUS] = ACTIONS(4726), - [anon_sym_DASH] = ACTIONS(4726), - [anon_sym_SLASH] = ACTIONS(4726), - [anon_sym_PERCENT] = ACTIONS(4726), - [anon_sym_as_QMARK] = ACTIONS(4728), - [anon_sym_PLUS_PLUS] = ACTIONS(4728), - [anon_sym_DASH_DASH] = ACTIONS(4728), - [anon_sym_BANG] = ACTIONS(4726), - [anon_sym_BANG_BANG] = ACTIONS(4728), - [anon_sym_data] = ACTIONS(4726), - [anon_sym_inner] = ACTIONS(4726), - [anon_sym_value] = ACTIONS(4726), - [anon_sym_expect] = ACTIONS(4726), - [anon_sym_actual] = ACTIONS(4726), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4728), - [anon_sym_continue_AT] = ACTIONS(4728), - [anon_sym_break_AT] = ACTIONS(4728), - [anon_sym_this_AT] = ACTIONS(4728), - [anon_sym_super_AT] = ACTIONS(4728), - [sym_real_literal] = ACTIONS(4728), - [sym_integer_literal] = ACTIONS(4726), - [sym_hex_literal] = ACTIONS(4728), - [sym_bin_literal] = ACTIONS(4728), - [anon_sym_true] = ACTIONS(4726), - [anon_sym_false] = ACTIONS(4726), - [anon_sym_SQUOTE] = ACTIONS(4728), - [sym__backtick_identifier] = ACTIONS(4728), - [sym__automatic_semicolon] = ACTIONS(4728), - [sym_safe_nav] = ACTIONS(4728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4728), - }, - [3113] = { - [sym_class_body] = STATE(3652), - [sym_type_constraints] = STATE(3394), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(6719), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_RBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_RPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [anon_sym_DASH_GT] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_while] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [3163] = { + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_RBRACK] = ACTIONS(4212), + [anon_sym_as] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_RPAREN] = ACTIONS(4212), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4210), + [anon_sym_GT] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [sym__quest] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_DASH_GT] = ACTIONS(4214), + [sym_label] = ACTIONS(4212), + [anon_sym_in] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(4212), + [anon_sym_QMARK_COLON] = ACTIONS(4212), + [anon_sym_AMP_AMP] = ACTIONS(4212), + [anon_sym_PIPE_PIPE] = ACTIONS(4212), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_PLUS_EQ] = ACTIONS(4212), + [anon_sym_DASH_EQ] = ACTIONS(4212), + [anon_sym_STAR_EQ] = ACTIONS(4212), + [anon_sym_SLASH_EQ] = ACTIONS(4212), + [anon_sym_PERCENT_EQ] = ACTIONS(4212), + [anon_sym_BANG_EQ] = ACTIONS(4210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4212), + [anon_sym_EQ_EQ] = ACTIONS(4210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4212), + [anon_sym_LT_EQ] = ACTIONS(4212), + [anon_sym_GT_EQ] = ACTIONS(4212), + [anon_sym_BANGin] = ACTIONS(4212), + [anon_sym_is] = ACTIONS(4210), + [anon_sym_BANGis] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_SLASH] = ACTIONS(4210), + [anon_sym_PERCENT] = ACTIONS(4210), + [anon_sym_as_QMARK] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG_BANG] = ACTIONS(4212), + [anon_sym_suspend] = ACTIONS(4210), + [anon_sym_sealed] = ACTIONS(4210), + [anon_sym_annotation] = ACTIONS(4210), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_override] = ACTIONS(4210), + [anon_sym_lateinit] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_internal] = ACTIONS(4210), + [anon_sym_protected] = ACTIONS(4210), + [anon_sym_tailrec] = ACTIONS(4210), + [anon_sym_operator] = ACTIONS(4210), + [anon_sym_infix] = ACTIONS(4210), + [anon_sym_inline] = ACTIONS(4210), + [anon_sym_external] = ACTIONS(4210), + [sym_property_modifier] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_open] = ACTIONS(4210), + [anon_sym_vararg] = ACTIONS(4210), + [anon_sym_noinline] = ACTIONS(4210), + [anon_sym_crossinline] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4212), + [sym_safe_nav] = ACTIONS(4212), [sym_multiline_comment] = ACTIONS(3), }, - [3114] = { - [sym__alpha_identifier] = ACTIONS(4730), - [anon_sym_AT] = ACTIONS(4733), - [anon_sym_LBRACK] = ACTIONS(4733), - [anon_sym_as] = ACTIONS(4730), - [anon_sym_EQ] = ACTIONS(4730), - [anon_sym_fun] = ACTIONS(4730), - [anon_sym_LBRACE] = ACTIONS(4733), - [anon_sym_RBRACE] = ACTIONS(4733), - [anon_sym_LPAREN] = ACTIONS(4733), - [anon_sym_COMMA] = ACTIONS(4733), - [anon_sym_by] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4730), - [anon_sym_GT] = ACTIONS(4730), - [anon_sym_where] = ACTIONS(4730), - [anon_sym_object] = ACTIONS(4730), - [anon_sym_DOT] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4733), - [anon_sym_get] = ACTIONS(4730), - [anon_sym_set] = ACTIONS(4730), - [anon_sym_this] = ACTIONS(4730), - [anon_sym_super] = ACTIONS(4730), - [anon_sym_STAR] = ACTIONS(4730), - [sym_label] = ACTIONS(4730), - [anon_sym_in] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4733), - [anon_sym_QMARK_COLON] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_null] = ACTIONS(4730), - [anon_sym_if] = ACTIONS(4730), - [anon_sym_else] = ACTIONS(4730), - [anon_sym_when] = ACTIONS(4730), - [anon_sym_try] = ACTIONS(4730), - [anon_sym_throw] = ACTIONS(4730), - [anon_sym_return] = ACTIONS(4730), - [anon_sym_continue] = ACTIONS(4730), - [anon_sym_break] = ACTIONS(4730), - [anon_sym_COLON_COLON] = ACTIONS(4733), - [anon_sym_PLUS_EQ] = ACTIONS(4733), - [anon_sym_DASH_EQ] = ACTIONS(4733), - [anon_sym_STAR_EQ] = ACTIONS(4733), - [anon_sym_SLASH_EQ] = ACTIONS(4733), - [anon_sym_PERCENT_EQ] = ACTIONS(4733), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4733), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4733), - [anon_sym_LT_EQ] = ACTIONS(4733), - [anon_sym_GT_EQ] = ACTIONS(4733), - [anon_sym_BANGin] = ACTIONS(4733), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_BANGis] = ACTIONS(4733), - [anon_sym_PLUS] = ACTIONS(4730), - [anon_sym_DASH] = ACTIONS(4730), - [anon_sym_SLASH] = ACTIONS(4730), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_as_QMARK] = ACTIONS(4733), - [anon_sym_PLUS_PLUS] = ACTIONS(4733), - [anon_sym_DASH_DASH] = ACTIONS(4733), - [anon_sym_BANG] = ACTIONS(4730), - [anon_sym_BANG_BANG] = ACTIONS(4733), - [anon_sym_data] = ACTIONS(4730), - [anon_sym_inner] = ACTIONS(4730), - [anon_sym_value] = ACTIONS(4730), - [anon_sym_expect] = ACTIONS(4730), - [anon_sym_actual] = ACTIONS(4730), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4733), - [anon_sym_continue_AT] = ACTIONS(4733), - [anon_sym_break_AT] = ACTIONS(4733), - [anon_sym_this_AT] = ACTIONS(4733), - [anon_sym_super_AT] = ACTIONS(4733), - [sym_real_literal] = ACTIONS(4733), - [sym_integer_literal] = ACTIONS(4730), - [sym_hex_literal] = ACTIONS(4733), - [sym_bin_literal] = ACTIONS(4733), - [anon_sym_true] = ACTIONS(4730), - [anon_sym_false] = ACTIONS(4730), - [anon_sym_SQUOTE] = ACTIONS(4733), - [sym__backtick_identifier] = ACTIONS(4733), - [sym__automatic_semicolon] = ACTIONS(4733), - [sym_safe_nav] = ACTIONS(4733), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4733), + [3164] = { + [sym_class_body] = STATE(3203), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(6677), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), }, - [3115] = { - [sym_enum_class_body] = STATE(3142), - [sym__alpha_identifier] = ACTIONS(4772), - [anon_sym_AT] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4772), - [anon_sym_fun] = ACTIONS(4772), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4772), - [anon_sym_GT] = ACTIONS(4772), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_object] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4772), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_get] = ACTIONS(4772), - [anon_sym_set] = ACTIONS(4772), - [anon_sym_this] = ACTIONS(4772), - [anon_sym_super] = ACTIONS(4772), - [anon_sym_STAR] = ACTIONS(4772), - [sym_label] = ACTIONS(4772), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_QMARK_COLON] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_null] = ACTIONS(4772), - [anon_sym_if] = ACTIONS(4772), - [anon_sym_else] = ACTIONS(4772), - [anon_sym_when] = ACTIONS(4772), - [anon_sym_try] = ACTIONS(4772), - [anon_sym_throw] = ACTIONS(4772), - [anon_sym_return] = ACTIONS(4772), - [anon_sym_continue] = ACTIONS(4772), - [anon_sym_break] = ACTIONS(4772), - [anon_sym_COLON_COLON] = ACTIONS(4774), - [anon_sym_PLUS_EQ] = ACTIONS(4774), - [anon_sym_DASH_EQ] = ACTIONS(4774), - [anon_sym_STAR_EQ] = ACTIONS(4774), - [anon_sym_SLASH_EQ] = ACTIONS(4774), - [anon_sym_PERCENT_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4772), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_BANGin] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4772), - [anon_sym_BANGis] = ACTIONS(4774), - [anon_sym_PLUS] = ACTIONS(4772), - [anon_sym_DASH] = ACTIONS(4772), - [anon_sym_SLASH] = ACTIONS(4772), - [anon_sym_PERCENT] = ACTIONS(4772), - [anon_sym_as_QMARK] = ACTIONS(4774), - [anon_sym_PLUS_PLUS] = ACTIONS(4774), - [anon_sym_DASH_DASH] = ACTIONS(4774), - [anon_sym_BANG] = ACTIONS(4772), - [anon_sym_BANG_BANG] = ACTIONS(4774), - [anon_sym_data] = ACTIONS(4772), - [anon_sym_inner] = ACTIONS(4772), - [anon_sym_value] = ACTIONS(4772), - [anon_sym_expect] = ACTIONS(4772), - [anon_sym_actual] = ACTIONS(4772), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4774), - [anon_sym_continue_AT] = ACTIONS(4774), - [anon_sym_break_AT] = ACTIONS(4774), - [anon_sym_this_AT] = ACTIONS(4774), - [anon_sym_super_AT] = ACTIONS(4774), - [sym_real_literal] = ACTIONS(4774), - [sym_integer_literal] = ACTIONS(4772), - [sym_hex_literal] = ACTIONS(4774), - [sym_bin_literal] = ACTIONS(4774), - [anon_sym_true] = ACTIONS(4772), - [anon_sym_false] = ACTIONS(4772), - [anon_sym_SQUOTE] = ACTIONS(4774), - [sym__backtick_identifier] = ACTIONS(4774), - [sym__automatic_semicolon] = ACTIONS(4774), - [sym_safe_nav] = ACTIONS(4774), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4774), + [3165] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_object] = ACTIONS(4778), + [anon_sym_fun] = ACTIONS(4778), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_this] = ACTIONS(4778), + [anon_sym_super] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [sym_label] = ACTIONS(4778), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_null] = ACTIONS(4778), + [anon_sym_if] = ACTIONS(4778), + [anon_sym_else] = ACTIONS(4778), + [anon_sym_when] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4778), + [anon_sym_throw] = ACTIONS(4778), + [anon_sym_return] = ACTIONS(4778), + [anon_sym_continue] = ACTIONS(4778), + [anon_sym_break] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4778), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4780), + [anon_sym_continue_AT] = ACTIONS(4780), + [anon_sym_break_AT] = ACTIONS(4780), + [anon_sym_this_AT] = ACTIONS(4780), + [anon_sym_super_AT] = ACTIONS(4780), + [sym_real_literal] = ACTIONS(4780), + [sym_integer_literal] = ACTIONS(4778), + [sym_hex_literal] = ACTIONS(4780), + [sym_bin_literal] = ACTIONS(4780), + [anon_sym_true] = ACTIONS(4778), + [anon_sym_false] = ACTIONS(4778), + [anon_sym_SQUOTE] = ACTIONS(4780), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4780), }, - [3116] = { - [sym__alpha_identifier] = ACTIONS(4591), - [anon_sym_AT] = ACTIONS(4593), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_as] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_fun] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4593), - [anon_sym_RBRACE] = ACTIONS(4593), - [anon_sym_LPAREN] = ACTIONS(4593), - [anon_sym_COMMA] = ACTIONS(4593), - [anon_sym_LT] = ACTIONS(4591), - [anon_sym_GT] = ACTIONS(4591), - [anon_sym_where] = ACTIONS(4591), - [anon_sym_object] = ACTIONS(4591), - [anon_sym_DOT] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4593), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), - [anon_sym_this] = ACTIONS(4591), - [anon_sym_super] = ACTIONS(4591), - [anon_sym_STAR] = ACTIONS(4591), - [sym_label] = ACTIONS(4591), - [anon_sym_in] = ACTIONS(4591), - [anon_sym_DOT_DOT] = ACTIONS(4593), - [anon_sym_QMARK_COLON] = ACTIONS(4593), - [anon_sym_AMP_AMP] = ACTIONS(4593), - [anon_sym_PIPE_PIPE] = ACTIONS(4593), - [anon_sym_null] = ACTIONS(4591), - [anon_sym_if] = ACTIONS(4591), - [anon_sym_else] = ACTIONS(4591), - [anon_sym_when] = ACTIONS(4591), - [anon_sym_try] = ACTIONS(4591), - [anon_sym_throw] = ACTIONS(4591), - [anon_sym_return] = ACTIONS(4591), - [anon_sym_continue] = ACTIONS(4591), - [anon_sym_break] = ACTIONS(4591), - [anon_sym_COLON_COLON] = ACTIONS(4593), - [anon_sym_PLUS_EQ] = ACTIONS(4593), - [anon_sym_DASH_EQ] = ACTIONS(4593), - [anon_sym_STAR_EQ] = ACTIONS(4593), - [anon_sym_SLASH_EQ] = ACTIONS(4593), - [anon_sym_PERCENT_EQ] = ACTIONS(4593), - [anon_sym_BANG_EQ] = ACTIONS(4591), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4593), - [anon_sym_EQ_EQ] = ACTIONS(4591), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4593), - [anon_sym_LT_EQ] = ACTIONS(4593), - [anon_sym_GT_EQ] = ACTIONS(4593), - [anon_sym_BANGin] = ACTIONS(4593), - [anon_sym_is] = ACTIONS(4591), - [anon_sym_BANGis] = ACTIONS(4593), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4591), - [anon_sym_SLASH] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_as_QMARK] = ACTIONS(4593), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(4591), - [anon_sym_BANG_BANG] = ACTIONS(4593), - [anon_sym_data] = ACTIONS(4591), - [anon_sym_inner] = ACTIONS(4591), - [anon_sym_value] = ACTIONS(4591), - [anon_sym_expect] = ACTIONS(4591), - [anon_sym_actual] = ACTIONS(4591), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4593), - [anon_sym_continue_AT] = ACTIONS(4593), - [anon_sym_break_AT] = ACTIONS(4593), - [anon_sym_this_AT] = ACTIONS(4593), - [anon_sym_super_AT] = ACTIONS(4593), - [sym_real_literal] = ACTIONS(4593), - [sym_integer_literal] = ACTIONS(4591), - [sym_hex_literal] = ACTIONS(4593), - [sym_bin_literal] = ACTIONS(4593), - [anon_sym_true] = ACTIONS(4591), - [anon_sym_false] = ACTIONS(4591), - [anon_sym_SQUOTE] = ACTIONS(4593), - [sym__backtick_identifier] = ACTIONS(4593), - [sym__automatic_semicolon] = ACTIONS(4593), - [sym_safe_nav] = ACTIONS(4593), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4593), + [3166] = { + [sym__alpha_identifier] = ACTIONS(4253), + [anon_sym_AT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4253), + [anon_sym_EQ] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_RBRACE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4253), + [anon_sym_where] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_fun] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_get] = ACTIONS(4253), + [anon_sym_set] = ACTIONS(4253), + [anon_sym_this] = ACTIONS(4253), + [anon_sym_super] = ACTIONS(4253), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4253), + [anon_sym_DOT_DOT] = ACTIONS(4255), + [anon_sym_QMARK_COLON] = ACTIONS(4255), + [anon_sym_AMP_AMP] = ACTIONS(4255), + [anon_sym_PIPE_PIPE] = ACTIONS(4255), + [anon_sym_null] = ACTIONS(4253), + [anon_sym_if] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4253), + [anon_sym_when] = ACTIONS(4253), + [anon_sym_try] = ACTIONS(4253), + [anon_sym_throw] = ACTIONS(4253), + [anon_sym_return] = ACTIONS(4253), + [anon_sym_continue] = ACTIONS(4253), + [anon_sym_break] = ACTIONS(4253), + [anon_sym_COLON_COLON] = ACTIONS(4255), + [anon_sym_PLUS_EQ] = ACTIONS(4255), + [anon_sym_DASH_EQ] = ACTIONS(4255), + [anon_sym_STAR_EQ] = ACTIONS(4255), + [anon_sym_SLASH_EQ] = ACTIONS(4255), + [anon_sym_PERCENT_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4255), + [anon_sym_LT_EQ] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4255), + [anon_sym_BANGin] = ACTIONS(4255), + [anon_sym_is] = ACTIONS(4253), + [anon_sym_BANGis] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4253), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4255), + [anon_sym_PLUS_PLUS] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4253), + [anon_sym_inner] = ACTIONS(4253), + [anon_sym_value] = ACTIONS(4253), + [anon_sym_expect] = ACTIONS(4253), + [anon_sym_actual] = ACTIONS(4253), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4255), + [anon_sym_continue_AT] = ACTIONS(4255), + [anon_sym_break_AT] = ACTIONS(4255), + [anon_sym_this_AT] = ACTIONS(4255), + [anon_sym_super_AT] = ACTIONS(4255), + [sym_real_literal] = ACTIONS(4255), + [sym_integer_literal] = ACTIONS(4253), + [sym_hex_literal] = ACTIONS(4255), + [sym_bin_literal] = ACTIONS(4255), + [anon_sym_true] = ACTIONS(4253), + [anon_sym_false] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4255), + [sym__backtick_identifier] = ACTIONS(4255), + [sym__automatic_semicolon] = ACTIONS(4255), + [sym_safe_nav] = ACTIONS(4255), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4255), }, - [3117] = { - [sym_class_body] = STATE(3197), - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_fun] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(4469), - [anon_sym_object] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_super] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [sym_label] = ACTIONS(4469), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_null] = ACTIONS(4469), - [anon_sym_if] = ACTIONS(4469), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_when] = ACTIONS(4469), - [anon_sym_try] = ACTIONS(4469), - [anon_sym_throw] = ACTIONS(4469), - [anon_sym_return] = ACTIONS(4469), - [anon_sym_continue] = ACTIONS(4469), - [anon_sym_break] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_value] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4471), - [anon_sym_continue_AT] = ACTIONS(4471), - [anon_sym_break_AT] = ACTIONS(4471), - [anon_sym_this_AT] = ACTIONS(4471), - [anon_sym_super_AT] = ACTIONS(4471), - [sym_real_literal] = ACTIONS(4471), - [sym_integer_literal] = ACTIONS(4469), - [sym_hex_literal] = ACTIONS(4471), - [sym_bin_literal] = ACTIONS(4471), - [anon_sym_true] = ACTIONS(4469), - [anon_sym_false] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4471), - [sym__backtick_identifier] = ACTIONS(4471), - [sym__automatic_semicolon] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4471), + [3167] = { + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_object] = ACTIONS(4652), + [anon_sym_fun] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_this] = ACTIONS(4652), + [anon_sym_super] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4652), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_when] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4654), + [anon_sym_continue_AT] = ACTIONS(4654), + [anon_sym_break_AT] = ACTIONS(4654), + [anon_sym_this_AT] = ACTIONS(4654), + [anon_sym_super_AT] = ACTIONS(4654), + [sym_real_literal] = ACTIONS(4654), + [sym_integer_literal] = ACTIONS(4652), + [sym_hex_literal] = ACTIONS(4654), + [sym_bin_literal] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4654), }, - [3118] = { - [sym_type_constraints] = STATE(3392), - [sym_enum_class_body] = STATE(3652), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(6721), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_RBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_RPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [anon_sym_DASH_GT] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_while] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [3168] = { + [sym__alpha_identifier] = ACTIONS(4902), + [anon_sym_AT] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4902), + [anon_sym_where] = ACTIONS(4902), + [anon_sym_object] = ACTIONS(4902), + [anon_sym_fun] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_get] = ACTIONS(4902), + [anon_sym_set] = ACTIONS(4902), + [anon_sym_this] = ACTIONS(4902), + [anon_sym_super] = ACTIONS(4902), + [anon_sym_STAR] = ACTIONS(4902), + [sym_label] = ACTIONS(4902), + [anon_sym_in] = ACTIONS(4902), + [anon_sym_DOT_DOT] = ACTIONS(4904), + [anon_sym_QMARK_COLON] = ACTIONS(4904), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_PIPE_PIPE] = ACTIONS(4904), + [anon_sym_null] = ACTIONS(4902), + [anon_sym_if] = ACTIONS(4902), + [anon_sym_else] = ACTIONS(4902), + [anon_sym_when] = ACTIONS(4902), + [anon_sym_try] = ACTIONS(4902), + [anon_sym_throw] = ACTIONS(4902), + [anon_sym_return] = ACTIONS(4902), + [anon_sym_continue] = ACTIONS(4902), + [anon_sym_break] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_PLUS_EQ] = ACTIONS(4904), + [anon_sym_DASH_EQ] = ACTIONS(4904), + [anon_sym_STAR_EQ] = ACTIONS(4904), + [anon_sym_SLASH_EQ] = ACTIONS(4904), + [anon_sym_PERCENT_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4904), + [anon_sym_EQ_EQ] = ACTIONS(4902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4904), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_BANGin] = ACTIONS(4904), + [anon_sym_is] = ACTIONS(4902), + [anon_sym_BANGis] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4902), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4902), + [anon_sym_PERCENT] = ACTIONS(4902), + [anon_sym_as_QMARK] = ACTIONS(4904), + [anon_sym_PLUS_PLUS] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4902), + [anon_sym_BANG_BANG] = ACTIONS(4904), + [anon_sym_data] = ACTIONS(4902), + [anon_sym_inner] = ACTIONS(4902), + [anon_sym_value] = ACTIONS(4902), + [anon_sym_expect] = ACTIONS(4902), + [anon_sym_actual] = ACTIONS(4902), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - }, - [3119] = { - [sym_class_body] = STATE(3597), - [sym_type_constraints] = STATE(3409), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(5705), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_DASH_GT] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [anon_sym_return_AT] = ACTIONS(4904), + [anon_sym_continue_AT] = ACTIONS(4904), + [anon_sym_break_AT] = ACTIONS(4904), + [anon_sym_this_AT] = ACTIONS(4904), + [anon_sym_super_AT] = ACTIONS(4904), + [sym_real_literal] = ACTIONS(4904), + [sym_integer_literal] = ACTIONS(4902), + [sym_hex_literal] = ACTIONS(4904), + [sym_bin_literal] = ACTIONS(4904), + [anon_sym_true] = ACTIONS(4902), + [anon_sym_false] = ACTIONS(4902), + [anon_sym_SQUOTE] = ACTIONS(4904), + [sym__backtick_identifier] = ACTIONS(4904), + [sym__automatic_semicolon] = ACTIONS(4904), + [sym_safe_nav] = ACTIONS(4904), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4904), }, - [3120] = { - [sym_type_constraints] = STATE(3408), - [sym_enum_class_body] = STATE(3597), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(5703), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_DASH_GT] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), + [3169] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), }, - [3121] = { - [sym_class_body] = STATE(3195), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), + [3170] = { + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_object] = ACTIONS(3992), + [anon_sym_fun] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_this] = ACTIONS(3992), + [anon_sym_super] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3992), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_null] = ACTIONS(3992), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_when] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3994), + [anon_sym_continue_AT] = ACTIONS(3994), + [anon_sym_break_AT] = ACTIONS(3994), + [anon_sym_this_AT] = ACTIONS(3994), + [anon_sym_super_AT] = ACTIONS(3994), + [sym_real_literal] = ACTIONS(3994), + [sym_integer_literal] = ACTIONS(3992), + [sym_hex_literal] = ACTIONS(3994), + [sym_bin_literal] = ACTIONS(3994), + [anon_sym_true] = ACTIONS(3992), + [anon_sym_false] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3994), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3994), }, - [3122] = { - [sym_function_body] = STATE(3534), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_COLON] = ACTIONS(6723), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_RBRACK] = ACTIONS(4323), - [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_COMMA] = ACTIONS(4323), - [anon_sym_RPAREN] = ACTIONS(4323), - [anon_sym_LT] = ACTIONS(4321), - [anon_sym_GT] = ACTIONS(4321), - [anon_sym_where] = ACTIONS(4321), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_get] = ACTIONS(4321), - [anon_sym_set] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4321), - [anon_sym_DASH_GT] = ACTIONS(4323), - [sym_label] = ACTIONS(4323), - [anon_sym_in] = ACTIONS(4321), - [anon_sym_while] = ACTIONS(4321), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_QMARK_COLON] = ACTIONS(4323), - [anon_sym_AMP_AMP] = ACTIONS(4323), - [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_else] = ACTIONS(4321), - [anon_sym_COLON_COLON] = ACTIONS(4323), - [anon_sym_PLUS_EQ] = ACTIONS(4323), - [anon_sym_DASH_EQ] = ACTIONS(4323), - [anon_sym_STAR_EQ] = ACTIONS(4323), - [anon_sym_SLASH_EQ] = ACTIONS(4323), - [anon_sym_PERCENT_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), - [anon_sym_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4323), - [anon_sym_BANGin] = ACTIONS(4323), - [anon_sym_is] = ACTIONS(4321), - [anon_sym_BANGis] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4321), - [anon_sym_as_QMARK] = ACTIONS(4323), - [anon_sym_PLUS_PLUS] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG_BANG] = ACTIONS(4323), - [anon_sym_suspend] = ACTIONS(4321), - [anon_sym_sealed] = ACTIONS(4321), - [anon_sym_annotation] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4321), - [anon_sym_inner] = ACTIONS(4321), - [anon_sym_value] = ACTIONS(4321), - [anon_sym_override] = ACTIONS(4321), - [anon_sym_lateinit] = ACTIONS(4321), - [anon_sym_public] = ACTIONS(4321), - [anon_sym_private] = ACTIONS(4321), - [anon_sym_internal] = ACTIONS(4321), - [anon_sym_protected] = ACTIONS(4321), - [anon_sym_tailrec] = ACTIONS(4321), - [anon_sym_operator] = ACTIONS(4321), - [anon_sym_infix] = ACTIONS(4321), - [anon_sym_inline] = ACTIONS(4321), - [anon_sym_external] = ACTIONS(4321), - [sym_property_modifier] = ACTIONS(4321), - [anon_sym_abstract] = ACTIONS(4321), - [anon_sym_final] = ACTIONS(4321), - [anon_sym_open] = ACTIONS(4321), - [anon_sym_vararg] = ACTIONS(4321), - [anon_sym_noinline] = ACTIONS(4321), - [anon_sym_crossinline] = ACTIONS(4321), - [anon_sym_expect] = ACTIONS(4321), - [anon_sym_actual] = ACTIONS(4321), + [3171] = { + [sym__alpha_identifier] = ACTIONS(4906), + [anon_sym_AT] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_where] = ACTIONS(4906), + [anon_sym_object] = ACTIONS(4906), + [anon_sym_fun] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_get] = ACTIONS(4906), + [anon_sym_set] = ACTIONS(4906), + [anon_sym_this] = ACTIONS(4906), + [anon_sym_super] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4906), + [sym_label] = ACTIONS(4906), + [anon_sym_in] = ACTIONS(4906), + [anon_sym_DOT_DOT] = ACTIONS(4908), + [anon_sym_QMARK_COLON] = ACTIONS(4908), + [anon_sym_AMP_AMP] = ACTIONS(4908), + [anon_sym_PIPE_PIPE] = ACTIONS(4908), + [anon_sym_null] = ACTIONS(4906), + [anon_sym_if] = ACTIONS(4906), + [anon_sym_else] = ACTIONS(4906), + [anon_sym_when] = ACTIONS(4906), + [anon_sym_try] = ACTIONS(4906), + [anon_sym_throw] = ACTIONS(4906), + [anon_sym_return] = ACTIONS(4906), + [anon_sym_continue] = ACTIONS(4906), + [anon_sym_break] = ACTIONS(4906), + [anon_sym_COLON_COLON] = ACTIONS(4908), + [anon_sym_PLUS_EQ] = ACTIONS(4908), + [anon_sym_DASH_EQ] = ACTIONS(4908), + [anon_sym_STAR_EQ] = ACTIONS(4908), + [anon_sym_SLASH_EQ] = ACTIONS(4908), + [anon_sym_PERCENT_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4906), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4908), + [anon_sym_EQ_EQ] = ACTIONS(4906), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4908), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_BANGin] = ACTIONS(4908), + [anon_sym_is] = ACTIONS(4906), + [anon_sym_BANGis] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_PERCENT] = ACTIONS(4906), + [anon_sym_as_QMARK] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4906), + [anon_sym_BANG_BANG] = ACTIONS(4908), + [anon_sym_data] = ACTIONS(4906), + [anon_sym_inner] = ACTIONS(4906), + [anon_sym_value] = ACTIONS(4906), + [anon_sym_expect] = ACTIONS(4906), + [anon_sym_actual] = ACTIONS(4906), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), + [anon_sym_return_AT] = ACTIONS(4908), + [anon_sym_continue_AT] = ACTIONS(4908), + [anon_sym_break_AT] = ACTIONS(4908), + [anon_sym_this_AT] = ACTIONS(4908), + [anon_sym_super_AT] = ACTIONS(4908), + [sym_real_literal] = ACTIONS(4908), + [sym_integer_literal] = ACTIONS(4906), + [sym_hex_literal] = ACTIONS(4908), + [sym_bin_literal] = ACTIONS(4908), + [anon_sym_true] = ACTIONS(4906), + [anon_sym_false] = ACTIONS(4906), + [anon_sym_SQUOTE] = ACTIONS(4908), + [sym__backtick_identifier] = ACTIONS(4908), + [sym__automatic_semicolon] = ACTIONS(4908), + [sym_safe_nav] = ACTIONS(4908), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4908), }, - [3123] = { - [sym_function_body] = STATE(3502), - [sym__block] = STATE(3620), + [3172] = { + [aux_sym_type_constraints_repeat1] = STATE(3209), [sym__alpha_identifier] = ACTIONS(4339), [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(6725), [anon_sym_LBRACK] = ACTIONS(4341), [anon_sym_RBRACK] = ACTIONS(4341), [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), + [anon_sym_EQ] = ACTIONS(4339), + [anon_sym_LBRACE] = ACTIONS(4341), [anon_sym_RBRACE] = ACTIONS(4341), [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), + [anon_sym_COMMA] = ACTIONS(6679), [anon_sym_RPAREN] = ACTIONS(4341), + [anon_sym_by] = ACTIONS(4339), [anon_sym_LT] = ACTIONS(4339), [anon_sym_GT] = ACTIONS(4339), [anon_sym_where] = ACTIONS(4339), @@ -374552,4848 +376649,2283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4341), [sym_multiline_comment] = ACTIONS(3), }, - [3124] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3088), - [sym__alpha_identifier] = ACTIONS(4740), - [anon_sym_AT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4740), - [anon_sym_fun] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_where] = ACTIONS(4740), - [anon_sym_object] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4740), - [anon_sym_set] = ACTIONS(4740), - [anon_sym_this] = ACTIONS(4740), - [anon_sym_super] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4740), - [sym_label] = ACTIONS(4740), - [anon_sym_in] = ACTIONS(4740), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [anon_sym_QMARK_COLON] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_null] = ACTIONS(4740), - [anon_sym_if] = ACTIONS(4740), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_when] = ACTIONS(4740), - [anon_sym_try] = ACTIONS(4740), - [anon_sym_throw] = ACTIONS(4740), - [anon_sym_return] = ACTIONS(4740), - [anon_sym_continue] = ACTIONS(4740), - [anon_sym_break] = ACTIONS(4740), - [anon_sym_COLON_COLON] = ACTIONS(4742), - [anon_sym_PLUS_EQ] = ACTIONS(4742), - [anon_sym_DASH_EQ] = ACTIONS(4742), - [anon_sym_STAR_EQ] = ACTIONS(4742), - [anon_sym_SLASH_EQ] = ACTIONS(4742), - [anon_sym_PERCENT_EQ] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT_EQ] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_BANGin] = ACTIONS(4742), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_BANGis] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4740), - [anon_sym_as_QMARK] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4742), - [anon_sym_BANG] = ACTIONS(4740), - [anon_sym_BANG_BANG] = ACTIONS(4742), - [anon_sym_data] = ACTIONS(4740), - [anon_sym_inner] = ACTIONS(4740), - [anon_sym_value] = ACTIONS(4740), - [anon_sym_expect] = ACTIONS(4740), - [anon_sym_actual] = ACTIONS(4740), + [3173] = { + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4742), - [anon_sym_continue_AT] = ACTIONS(4742), - [anon_sym_break_AT] = ACTIONS(4742), - [anon_sym_this_AT] = ACTIONS(4742), - [anon_sym_super_AT] = ACTIONS(4742), - [sym_real_literal] = ACTIONS(4742), - [sym_integer_literal] = ACTIONS(4740), - [sym_hex_literal] = ACTIONS(4742), - [sym_bin_literal] = ACTIONS(4742), - [anon_sym_true] = ACTIONS(4740), - [anon_sym_false] = ACTIONS(4740), - [anon_sym_SQUOTE] = ACTIONS(4742), - [sym__backtick_identifier] = ACTIONS(4742), - [sym__automatic_semicolon] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4742), - }, - [3125] = { - [sym_annotated_lambda] = STATE(3940), - [sym_lambda_literal] = STATE(3987), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(4030), - [anon_sym_AT] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_as] = ACTIONS(4030), - [anon_sym_EQ] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_RBRACE] = ACTIONS(4032), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_COMMA] = ACTIONS(4032), - [anon_sym_LT] = ACTIONS(4030), - [anon_sym_GT] = ACTIONS(4030), - [anon_sym_where] = ACTIONS(4030), - [anon_sym_DOT] = ACTIONS(4030), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym_get] = ACTIONS(4030), - [anon_sym_set] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4030), - [sym_label] = ACTIONS(4032), - [anon_sym_in] = ACTIONS(4030), - [anon_sym_DOT_DOT] = ACTIONS(4032), - [anon_sym_QMARK_COLON] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4032), - [anon_sym_else] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(4032), - [anon_sym_PLUS_EQ] = ACTIONS(4032), - [anon_sym_DASH_EQ] = ACTIONS(4032), - [anon_sym_STAR_EQ] = ACTIONS(4032), - [anon_sym_SLASH_EQ] = ACTIONS(4032), - [anon_sym_PERCENT_EQ] = ACTIONS(4032), - [anon_sym_BANG_EQ] = ACTIONS(4030), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4032), - [anon_sym_EQ_EQ] = ACTIONS(4030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4032), - [anon_sym_LT_EQ] = ACTIONS(4032), - [anon_sym_GT_EQ] = ACTIONS(4032), - [anon_sym_BANGin] = ACTIONS(4032), - [anon_sym_is] = ACTIONS(4030), - [anon_sym_BANGis] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_SLASH] = ACTIONS(4030), - [anon_sym_PERCENT] = ACTIONS(4030), - [anon_sym_as_QMARK] = ACTIONS(4032), - [anon_sym_PLUS_PLUS] = ACTIONS(4032), - [anon_sym_DASH_DASH] = ACTIONS(4032), - [anon_sym_BANG_BANG] = ACTIONS(4032), - [anon_sym_suspend] = ACTIONS(4030), - [anon_sym_sealed] = ACTIONS(4030), - [anon_sym_annotation] = ACTIONS(4030), - [anon_sym_data] = ACTIONS(4030), - [anon_sym_inner] = ACTIONS(4030), - [anon_sym_value] = ACTIONS(4030), - [anon_sym_override] = ACTIONS(4030), - [anon_sym_lateinit] = ACTIONS(4030), - [anon_sym_public] = ACTIONS(4030), - [anon_sym_private] = ACTIONS(4030), - [anon_sym_internal] = ACTIONS(4030), - [anon_sym_protected] = ACTIONS(4030), - [anon_sym_tailrec] = ACTIONS(4030), - [anon_sym_operator] = ACTIONS(4030), - [anon_sym_infix] = ACTIONS(4030), - [anon_sym_inline] = ACTIONS(4030), - [anon_sym_external] = ACTIONS(4030), - [sym_property_modifier] = ACTIONS(4030), - [anon_sym_abstract] = ACTIONS(4030), - [anon_sym_final] = ACTIONS(4030), - [anon_sym_open] = ACTIONS(4030), - [anon_sym_vararg] = ACTIONS(4030), - [anon_sym_noinline] = ACTIONS(4030), - [anon_sym_crossinline] = ACTIONS(4030), - [anon_sym_expect] = ACTIONS(4030), - [anon_sym_actual] = ACTIONS(4030), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4032), - [sym__automatic_semicolon] = ACTIONS(4032), - [sym_safe_nav] = ACTIONS(4032), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, - [3126] = { - [sym__alpha_identifier] = ACTIONS(4653), - [anon_sym_AT] = ACTIONS(4655), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_as] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_fun] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4655), - [anon_sym_RBRACE] = ACTIONS(4655), - [anon_sym_LPAREN] = ACTIONS(4655), - [anon_sym_COMMA] = ACTIONS(4655), - [anon_sym_LT] = ACTIONS(4653), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_where] = ACTIONS(4653), - [anon_sym_object] = ACTIONS(4653), - [anon_sym_DOT] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4655), - [anon_sym_get] = ACTIONS(4653), - [anon_sym_set] = ACTIONS(4653), - [anon_sym_this] = ACTIONS(4653), - [anon_sym_super] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [sym_label] = ACTIONS(4653), - [anon_sym_in] = ACTIONS(4653), - [anon_sym_DOT_DOT] = ACTIONS(4655), - [anon_sym_QMARK_COLON] = ACTIONS(4655), - [anon_sym_AMP_AMP] = ACTIONS(4655), - [anon_sym_PIPE_PIPE] = ACTIONS(4655), - [anon_sym_null] = ACTIONS(4653), - [anon_sym_if] = ACTIONS(4653), - [anon_sym_else] = ACTIONS(4653), - [anon_sym_when] = ACTIONS(4653), - [anon_sym_try] = ACTIONS(4653), - [anon_sym_throw] = ACTIONS(4653), - [anon_sym_return] = ACTIONS(4653), - [anon_sym_continue] = ACTIONS(4653), - [anon_sym_break] = ACTIONS(4653), - [anon_sym_COLON_COLON] = ACTIONS(4655), - [anon_sym_PLUS_EQ] = ACTIONS(4655), - [anon_sym_DASH_EQ] = ACTIONS(4655), - [anon_sym_STAR_EQ] = ACTIONS(4655), - [anon_sym_SLASH_EQ] = ACTIONS(4655), - [anon_sym_PERCENT_EQ] = ACTIONS(4655), - [anon_sym_BANG_EQ] = ACTIONS(4653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4655), - [anon_sym_EQ_EQ] = ACTIONS(4653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4655), - [anon_sym_LT_EQ] = ACTIONS(4655), - [anon_sym_GT_EQ] = ACTIONS(4655), - [anon_sym_BANGin] = ACTIONS(4655), - [anon_sym_is] = ACTIONS(4653), - [anon_sym_BANGis] = ACTIONS(4655), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_as_QMARK] = ACTIONS(4655), - [anon_sym_PLUS_PLUS] = ACTIONS(4655), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_BANG_BANG] = ACTIONS(4655), - [anon_sym_data] = ACTIONS(4653), - [anon_sym_inner] = ACTIONS(4653), - [anon_sym_value] = ACTIONS(4653), - [anon_sym_expect] = ACTIONS(4653), - [anon_sym_actual] = ACTIONS(4653), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4655), - [anon_sym_continue_AT] = ACTIONS(4655), - [anon_sym_break_AT] = ACTIONS(4655), - [anon_sym_this_AT] = ACTIONS(4655), - [anon_sym_super_AT] = ACTIONS(4655), - [sym_real_literal] = ACTIONS(4655), - [sym_integer_literal] = ACTIONS(4653), - [sym_hex_literal] = ACTIONS(4655), - [sym_bin_literal] = ACTIONS(4655), - [anon_sym_L] = ACTIONS(6727), - [anon_sym_true] = ACTIONS(4653), - [anon_sym_false] = ACTIONS(4653), - [anon_sym_SQUOTE] = ACTIONS(4655), - [sym__backtick_identifier] = ACTIONS(4655), - [sym__automatic_semicolon] = ACTIONS(4655), - [sym_safe_nav] = ACTIONS(4655), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4655), + [3174] = { + [sym__alpha_identifier] = ACTIONS(4854), + [anon_sym_AT] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4854), + [anon_sym_EQ] = ACTIONS(4854), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4854), + [anon_sym_where] = ACTIONS(4854), + [anon_sym_object] = ACTIONS(4854), + [anon_sym_fun] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_get] = ACTIONS(4854), + [anon_sym_set] = ACTIONS(4854), + [anon_sym_this] = ACTIONS(4854), + [anon_sym_super] = ACTIONS(4854), + [anon_sym_STAR] = ACTIONS(4854), + [sym_label] = ACTIONS(4854), + [anon_sym_in] = ACTIONS(4854), + [anon_sym_DOT_DOT] = ACTIONS(4856), + [anon_sym_QMARK_COLON] = ACTIONS(4856), + [anon_sym_AMP_AMP] = ACTIONS(4856), + [anon_sym_PIPE_PIPE] = ACTIONS(4856), + [anon_sym_null] = ACTIONS(4854), + [anon_sym_if] = ACTIONS(4854), + [anon_sym_else] = ACTIONS(4854), + [anon_sym_when] = ACTIONS(4854), + [anon_sym_try] = ACTIONS(4854), + [anon_sym_throw] = ACTIONS(4854), + [anon_sym_return] = ACTIONS(4854), + [anon_sym_continue] = ACTIONS(4854), + [anon_sym_break] = ACTIONS(4854), + [anon_sym_COLON_COLON] = ACTIONS(4856), + [anon_sym_PLUS_EQ] = ACTIONS(4856), + [anon_sym_DASH_EQ] = ACTIONS(4856), + [anon_sym_STAR_EQ] = ACTIONS(4856), + [anon_sym_SLASH_EQ] = ACTIONS(4856), + [anon_sym_PERCENT_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ] = ACTIONS(4854), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ] = ACTIONS(4854), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4856), + [anon_sym_LT_EQ] = ACTIONS(4856), + [anon_sym_GT_EQ] = ACTIONS(4856), + [anon_sym_BANGin] = ACTIONS(4856), + [anon_sym_is] = ACTIONS(4854), + [anon_sym_BANGis] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4854), + [anon_sym_PERCENT] = ACTIONS(4854), + [anon_sym_as_QMARK] = ACTIONS(4856), + [anon_sym_PLUS_PLUS] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4856), + [anon_sym_BANG] = ACTIONS(4854), + [anon_sym_BANG_BANG] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4854), + [anon_sym_inner] = ACTIONS(4854), + [anon_sym_value] = ACTIONS(4854), + [anon_sym_expect] = ACTIONS(4854), + [anon_sym_actual] = ACTIONS(4854), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4856), + [anon_sym_continue_AT] = ACTIONS(4856), + [anon_sym_break_AT] = ACTIONS(4856), + [anon_sym_this_AT] = ACTIONS(4856), + [anon_sym_super_AT] = ACTIONS(4856), + [sym_real_literal] = ACTIONS(4856), + [sym_integer_literal] = ACTIONS(4854), + [sym_hex_literal] = ACTIONS(4856), + [sym_bin_literal] = ACTIONS(4856), + [anon_sym_true] = ACTIONS(4854), + [anon_sym_false] = ACTIONS(4854), + [anon_sym_SQUOTE] = ACTIONS(4856), + [sym__backtick_identifier] = ACTIONS(4856), + [sym__automatic_semicolon] = ACTIONS(4856), + [sym_safe_nav] = ACTIONS(4856), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4856), }, - [3127] = { - [sym_enum_class_body] = STATE(3164), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_fun] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(4465), - [anon_sym_object] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_this] = ACTIONS(4465), - [anon_sym_super] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [sym_label] = ACTIONS(4465), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_null] = ACTIONS(4465), - [anon_sym_if] = ACTIONS(4465), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_when] = ACTIONS(4465), - [anon_sym_try] = ACTIONS(4465), - [anon_sym_throw] = ACTIONS(4465), - [anon_sym_return] = ACTIONS(4465), - [anon_sym_continue] = ACTIONS(4465), - [anon_sym_break] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4467), - [anon_sym_continue_AT] = ACTIONS(4467), - [anon_sym_break_AT] = ACTIONS(4467), - [anon_sym_this_AT] = ACTIONS(4467), - [anon_sym_super_AT] = ACTIONS(4467), - [sym_real_literal] = ACTIONS(4467), - [sym_integer_literal] = ACTIONS(4465), - [sym_hex_literal] = ACTIONS(4467), - [sym_bin_literal] = ACTIONS(4467), - [anon_sym_true] = ACTIONS(4465), - [anon_sym_false] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4467), - [sym__backtick_identifier] = ACTIONS(4467), - [sym__automatic_semicolon] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4467), + [3175] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_catch] = ACTIONS(4451), + [anon_sym_finally] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), }, - [3128] = { - [sym_class_body] = STATE(3142), - [sym__alpha_identifier] = ACTIONS(4772), - [anon_sym_AT] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4772), - [anon_sym_fun] = ACTIONS(4772), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4772), - [anon_sym_GT] = ACTIONS(4772), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_object] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4772), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_get] = ACTIONS(4772), - [anon_sym_set] = ACTIONS(4772), - [anon_sym_this] = ACTIONS(4772), - [anon_sym_super] = ACTIONS(4772), - [anon_sym_STAR] = ACTIONS(4772), - [sym_label] = ACTIONS(4772), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_QMARK_COLON] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_null] = ACTIONS(4772), - [anon_sym_if] = ACTIONS(4772), - [anon_sym_else] = ACTIONS(4772), - [anon_sym_when] = ACTIONS(4772), - [anon_sym_try] = ACTIONS(4772), - [anon_sym_throw] = ACTIONS(4772), - [anon_sym_return] = ACTIONS(4772), - [anon_sym_continue] = ACTIONS(4772), - [anon_sym_break] = ACTIONS(4772), - [anon_sym_COLON_COLON] = ACTIONS(4774), - [anon_sym_PLUS_EQ] = ACTIONS(4774), - [anon_sym_DASH_EQ] = ACTIONS(4774), - [anon_sym_STAR_EQ] = ACTIONS(4774), - [anon_sym_SLASH_EQ] = ACTIONS(4774), - [anon_sym_PERCENT_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4772), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_BANGin] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4772), - [anon_sym_BANGis] = ACTIONS(4774), - [anon_sym_PLUS] = ACTIONS(4772), - [anon_sym_DASH] = ACTIONS(4772), - [anon_sym_SLASH] = ACTIONS(4772), - [anon_sym_PERCENT] = ACTIONS(4772), - [anon_sym_as_QMARK] = ACTIONS(4774), - [anon_sym_PLUS_PLUS] = ACTIONS(4774), - [anon_sym_DASH_DASH] = ACTIONS(4774), - [anon_sym_BANG] = ACTIONS(4772), - [anon_sym_BANG_BANG] = ACTIONS(4774), - [anon_sym_data] = ACTIONS(4772), - [anon_sym_inner] = ACTIONS(4772), - [anon_sym_value] = ACTIONS(4772), - [anon_sym_expect] = ACTIONS(4772), - [anon_sym_actual] = ACTIONS(4772), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4774), - [anon_sym_continue_AT] = ACTIONS(4774), - [anon_sym_break_AT] = ACTIONS(4774), - [anon_sym_this_AT] = ACTIONS(4774), - [anon_sym_super_AT] = ACTIONS(4774), - [sym_real_literal] = ACTIONS(4774), - [sym_integer_literal] = ACTIONS(4772), - [sym_hex_literal] = ACTIONS(4774), - [sym_bin_literal] = ACTIONS(4774), - [anon_sym_true] = ACTIONS(4772), - [anon_sym_false] = ACTIONS(4772), - [anon_sym_SQUOTE] = ACTIONS(4774), - [sym__backtick_identifier] = ACTIONS(4774), - [sym__automatic_semicolon] = ACTIONS(4774), - [sym_safe_nav] = ACTIONS(4774), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4774), + [3176] = { + [aux_sym_nullable_type_repeat1] = STATE(3154), + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [sym__quest] = ACTIONS(6621), + [anon_sym_STAR] = ACTIONS(4206), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4206), + [anon_sym_continue_AT] = ACTIONS(4206), + [anon_sym_break_AT] = ACTIONS(4206), + [anon_sym_this_AT] = ACTIONS(4206), + [anon_sym_super_AT] = ACTIONS(4206), + [sym_real_literal] = ACTIONS(4206), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4206), + [sym_bin_literal] = ACTIONS(4206), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4206), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4206), }, - [3129] = { - [aux_sym_type_constraints_repeat1] = STATE(3073), - [sym__alpha_identifier] = ACTIONS(4506), - [anon_sym_AT] = ACTIONS(4508), - [anon_sym_LBRACK] = ACTIONS(4508), - [anon_sym_as] = ACTIONS(4506), - [anon_sym_EQ] = ACTIONS(4506), - [anon_sym_fun] = ACTIONS(4506), - [anon_sym_LBRACE] = ACTIONS(4508), - [anon_sym_RBRACE] = ACTIONS(4508), - [anon_sym_LPAREN] = ACTIONS(4508), - [anon_sym_COMMA] = ACTIONS(6683), - [anon_sym_LT] = ACTIONS(4506), - [anon_sym_GT] = ACTIONS(4506), - [anon_sym_where] = ACTIONS(4506), - [anon_sym_object] = ACTIONS(4506), - [anon_sym_DOT] = ACTIONS(4506), - [anon_sym_SEMI] = ACTIONS(4508), - [anon_sym_get] = ACTIONS(4506), - [anon_sym_set] = ACTIONS(4506), - [anon_sym_this] = ACTIONS(4506), - [anon_sym_super] = ACTIONS(4506), - [anon_sym_STAR] = ACTIONS(4506), - [sym_label] = ACTIONS(4506), - [anon_sym_in] = ACTIONS(4506), - [anon_sym_DOT_DOT] = ACTIONS(4508), - [anon_sym_QMARK_COLON] = ACTIONS(4508), - [anon_sym_AMP_AMP] = ACTIONS(4508), - [anon_sym_PIPE_PIPE] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4506), - [anon_sym_if] = ACTIONS(4506), - [anon_sym_else] = ACTIONS(4506), - [anon_sym_when] = ACTIONS(4506), - [anon_sym_try] = ACTIONS(4506), - [anon_sym_throw] = ACTIONS(4506), - [anon_sym_return] = ACTIONS(4506), - [anon_sym_continue] = ACTIONS(4506), - [anon_sym_break] = ACTIONS(4506), - [anon_sym_COLON_COLON] = ACTIONS(4508), - [anon_sym_PLUS_EQ] = ACTIONS(4508), - [anon_sym_DASH_EQ] = ACTIONS(4508), - [anon_sym_STAR_EQ] = ACTIONS(4508), - [anon_sym_SLASH_EQ] = ACTIONS(4508), - [anon_sym_PERCENT_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ] = ACTIONS(4506), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4508), - [anon_sym_LT_EQ] = ACTIONS(4508), - [anon_sym_GT_EQ] = ACTIONS(4508), - [anon_sym_BANGin] = ACTIONS(4508), - [anon_sym_is] = ACTIONS(4506), - [anon_sym_BANGis] = ACTIONS(4508), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_DASH] = ACTIONS(4506), - [anon_sym_SLASH] = ACTIONS(4506), - [anon_sym_PERCENT] = ACTIONS(4506), - [anon_sym_as_QMARK] = ACTIONS(4508), - [anon_sym_PLUS_PLUS] = ACTIONS(4508), - [anon_sym_DASH_DASH] = ACTIONS(4508), - [anon_sym_BANG] = ACTIONS(4506), - [anon_sym_BANG_BANG] = ACTIONS(4508), - [anon_sym_data] = ACTIONS(4506), - [anon_sym_inner] = ACTIONS(4506), - [anon_sym_value] = ACTIONS(4506), - [anon_sym_expect] = ACTIONS(4506), - [anon_sym_actual] = ACTIONS(4506), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4508), - [anon_sym_continue_AT] = ACTIONS(4508), - [anon_sym_break_AT] = ACTIONS(4508), - [anon_sym_this_AT] = ACTIONS(4508), - [anon_sym_super_AT] = ACTIONS(4508), - [sym_real_literal] = ACTIONS(4508), - [sym_integer_literal] = ACTIONS(4506), - [sym_hex_literal] = ACTIONS(4508), - [sym_bin_literal] = ACTIONS(4508), - [anon_sym_true] = ACTIONS(4506), - [anon_sym_false] = ACTIONS(4506), - [anon_sym_SQUOTE] = ACTIONS(4508), - [sym__backtick_identifier] = ACTIONS(4508), - [sym__automatic_semicolon] = ACTIONS(4508), - [sym_safe_nav] = ACTIONS(4508), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4508), + [3177] = { + [aux_sym_nullable_type_repeat1] = STATE(3177), + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_EQ] = ACTIONS(4224), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_RBRACE] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [sym__quest] = ACTIONS(6681), + [anon_sym_STAR] = ACTIONS(4224), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_null] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4224), + [anon_sym_BANGin] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4224), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS_PLUS] = ACTIONS(4224), + [anon_sym_DASH_DASH] = ACTIONS(4224), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4224), + [anon_sym_continue_AT] = ACTIONS(4224), + [anon_sym_break_AT] = ACTIONS(4224), + [anon_sym_this_AT] = ACTIONS(4224), + [anon_sym_super_AT] = ACTIONS(4224), + [sym_real_literal] = ACTIONS(4224), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4224), + [sym_bin_literal] = ACTIONS(4224), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4224), + [sym__backtick_identifier] = ACTIONS(4224), + [sym__automatic_semicolon] = ACTIONS(4224), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4224), }, - [3130] = { - [sym_type_constraints] = STATE(3435), - [sym_enum_class_body] = STATE(3500), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(5701), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_DASH_GT] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), + [3178] = { + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [3131] = { - [sym__alpha_identifier] = ACTIONS(4297), - [anon_sym_AT] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_RBRACK] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4297), - [anon_sym_EQ] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_RBRACE] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_RPAREN] = ACTIONS(4299), - [anon_sym_by] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_where] = ACTIONS(4297), - [anon_sym_DOT] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_get] = ACTIONS(4297), - [anon_sym_set] = ACTIONS(4297), - [anon_sym_AMP] = ACTIONS(6729), - [sym__quest] = ACTIONS(4297), - [anon_sym_STAR] = ACTIONS(4297), - [anon_sym_DASH_GT] = ACTIONS(4299), - [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4297), - [anon_sym_while] = ACTIONS(4297), - [anon_sym_DOT_DOT] = ACTIONS(4299), - [anon_sym_QMARK_COLON] = ACTIONS(4299), - [anon_sym_AMP_AMP] = ACTIONS(4299), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4297), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym_PLUS_EQ] = ACTIONS(4299), - [anon_sym_DASH_EQ] = ACTIONS(4299), - [anon_sym_STAR_EQ] = ACTIONS(4299), - [anon_sym_SLASH_EQ] = ACTIONS(4299), - [anon_sym_PERCENT_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ] = ACTIONS(4297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ] = ACTIONS(4297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ] = ACTIONS(4299), - [anon_sym_GT_EQ] = ACTIONS(4299), - [anon_sym_BANGin] = ACTIONS(4299), - [anon_sym_is] = ACTIONS(4297), - [anon_sym_BANGis] = ACTIONS(4299), - [anon_sym_PLUS] = ACTIONS(4297), - [anon_sym_DASH] = ACTIONS(4297), - [anon_sym_SLASH] = ACTIONS(4297), - [anon_sym_PERCENT] = ACTIONS(4297), - [anon_sym_as_QMARK] = ACTIONS(4299), - [anon_sym_PLUS_PLUS] = ACTIONS(4299), - [anon_sym_DASH_DASH] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4299), - [anon_sym_suspend] = ACTIONS(4297), - [anon_sym_sealed] = ACTIONS(4297), - [anon_sym_annotation] = ACTIONS(4297), - [anon_sym_data] = ACTIONS(4297), - [anon_sym_inner] = ACTIONS(4297), - [anon_sym_value] = ACTIONS(4297), - [anon_sym_override] = ACTIONS(4297), - [anon_sym_lateinit] = ACTIONS(4297), - [anon_sym_public] = ACTIONS(4297), - [anon_sym_private] = ACTIONS(4297), - [anon_sym_internal] = ACTIONS(4297), - [anon_sym_protected] = ACTIONS(4297), - [anon_sym_tailrec] = ACTIONS(4297), - [anon_sym_operator] = ACTIONS(4297), - [anon_sym_infix] = ACTIONS(4297), - [anon_sym_inline] = ACTIONS(4297), - [anon_sym_external] = ACTIONS(4297), - [sym_property_modifier] = ACTIONS(4297), - [anon_sym_abstract] = ACTIONS(4297), - [anon_sym_final] = ACTIONS(4297), - [anon_sym_open] = ACTIONS(4297), - [anon_sym_vararg] = ACTIONS(4297), - [anon_sym_noinline] = ACTIONS(4297), - [anon_sym_crossinline] = ACTIONS(4297), - [anon_sym_expect] = ACTIONS(4297), - [anon_sym_actual] = ACTIONS(4297), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4299), - [sym_safe_nav] = ACTIONS(4299), + [3179] = { + [sym__alpha_identifier] = ACTIONS(5171), + [anon_sym_AT] = ACTIONS(5173), + [anon_sym_LBRACK] = ACTIONS(5173), + [anon_sym_as] = ACTIONS(5171), + [anon_sym_EQ] = ACTIONS(5171), + [anon_sym_LBRACE] = ACTIONS(5173), + [anon_sym_RBRACE] = ACTIONS(5173), + [anon_sym_LPAREN] = ACTIONS(5173), + [anon_sym_COMMA] = ACTIONS(5173), + [anon_sym_LT] = ACTIONS(5171), + [anon_sym_GT] = ACTIONS(5171), + [anon_sym_where] = ACTIONS(5171), + [anon_sym_object] = ACTIONS(5171), + [anon_sym_fun] = ACTIONS(5171), + [anon_sym_DOT] = ACTIONS(5171), + [anon_sym_SEMI] = ACTIONS(5173), + [anon_sym_get] = ACTIONS(5171), + [anon_sym_set] = ACTIONS(5171), + [anon_sym_this] = ACTIONS(5171), + [anon_sym_super] = ACTIONS(5171), + [anon_sym_STAR] = ACTIONS(5171), + [sym_label] = ACTIONS(5171), + [anon_sym_in] = ACTIONS(5171), + [anon_sym_DOT_DOT] = ACTIONS(5173), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5173), + [anon_sym_PIPE_PIPE] = ACTIONS(5173), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_if] = ACTIONS(5171), + [anon_sym_else] = ACTIONS(5171), + [anon_sym_when] = ACTIONS(5171), + [anon_sym_try] = ACTIONS(5171), + [anon_sym_throw] = ACTIONS(5171), + [anon_sym_return] = ACTIONS(5171), + [anon_sym_continue] = ACTIONS(5171), + [anon_sym_break] = ACTIONS(5171), + [anon_sym_COLON_COLON] = ACTIONS(5173), + [anon_sym_PLUS_EQ] = ACTIONS(5173), + [anon_sym_DASH_EQ] = ACTIONS(5173), + [anon_sym_STAR_EQ] = ACTIONS(5173), + [anon_sym_SLASH_EQ] = ACTIONS(5173), + [anon_sym_PERCENT_EQ] = ACTIONS(5173), + [anon_sym_BANG_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), + [anon_sym_EQ_EQ] = ACTIONS(5171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), + [anon_sym_LT_EQ] = ACTIONS(5173), + [anon_sym_GT_EQ] = ACTIONS(5173), + [anon_sym_BANGin] = ACTIONS(5173), + [anon_sym_is] = ACTIONS(5171), + [anon_sym_BANGis] = ACTIONS(5173), + [anon_sym_PLUS] = ACTIONS(5171), + [anon_sym_DASH] = ACTIONS(5171), + [anon_sym_SLASH] = ACTIONS(5171), + [anon_sym_PERCENT] = ACTIONS(5171), + [anon_sym_as_QMARK] = ACTIONS(5173), + [anon_sym_PLUS_PLUS] = ACTIONS(5173), + [anon_sym_DASH_DASH] = ACTIONS(5173), + [anon_sym_BANG] = ACTIONS(5171), + [anon_sym_BANG_BANG] = ACTIONS(5173), + [anon_sym_data] = ACTIONS(5171), + [anon_sym_inner] = ACTIONS(5171), + [anon_sym_value] = ACTIONS(5171), + [anon_sym_expect] = ACTIONS(5171), + [anon_sym_actual] = ACTIONS(5171), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5173), + [anon_sym_continue_AT] = ACTIONS(5173), + [anon_sym_break_AT] = ACTIONS(5173), + [anon_sym_this_AT] = ACTIONS(5173), + [anon_sym_super_AT] = ACTIONS(5173), + [sym_real_literal] = ACTIONS(5173), + [sym_integer_literal] = ACTIONS(5171), + [sym_hex_literal] = ACTIONS(5173), + [sym_bin_literal] = ACTIONS(5173), + [anon_sym_true] = ACTIONS(5171), + [anon_sym_false] = ACTIONS(5171), + [anon_sym_SQUOTE] = ACTIONS(5173), + [sym__backtick_identifier] = ACTIONS(5173), + [sym__automatic_semicolon] = ACTIONS(5173), + [sym_safe_nav] = ACTIONS(5173), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5173), }, - [3132] = { - [sym_annotated_lambda] = STATE(3957), - [sym_lambda_literal] = STATE(3987), - [sym_annotation] = STATE(8624), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8624), - [sym__alpha_identifier] = ACTIONS(4082), - [anon_sym_AT] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(4082), - [anon_sym_EQ] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_where] = ACTIONS(4082), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_get] = ACTIONS(4082), - [anon_sym_set] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [sym_label] = ACTIONS(4084), - [anon_sym_in] = ACTIONS(4082), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_QMARK_COLON] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_else] = ACTIONS(4082), - [anon_sym_COLON_COLON] = ACTIONS(4084), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_STAR_EQ] = ACTIONS(4084), - [anon_sym_SLASH_EQ] = ACTIONS(4084), - [anon_sym_PERCENT_EQ] = ACTIONS(4084), - [anon_sym_BANG_EQ] = ACTIONS(4082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_BANGin] = ACTIONS(4084), - [anon_sym_is] = ACTIONS(4082), - [anon_sym_BANGis] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_SLASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4082), - [anon_sym_as_QMARK] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_BANG_BANG] = ACTIONS(4084), - [anon_sym_suspend] = ACTIONS(4082), - [anon_sym_sealed] = ACTIONS(4082), - [anon_sym_annotation] = ACTIONS(4082), - [anon_sym_data] = ACTIONS(4082), - [anon_sym_inner] = ACTIONS(4082), - [anon_sym_value] = ACTIONS(4082), - [anon_sym_override] = ACTIONS(4082), - [anon_sym_lateinit] = ACTIONS(4082), - [anon_sym_public] = ACTIONS(4082), - [anon_sym_private] = ACTIONS(4082), - [anon_sym_internal] = ACTIONS(4082), - [anon_sym_protected] = ACTIONS(4082), - [anon_sym_tailrec] = ACTIONS(4082), - [anon_sym_operator] = ACTIONS(4082), - [anon_sym_infix] = ACTIONS(4082), - [anon_sym_inline] = ACTIONS(4082), - [anon_sym_external] = ACTIONS(4082), - [sym_property_modifier] = ACTIONS(4082), - [anon_sym_abstract] = ACTIONS(4082), - [anon_sym_final] = ACTIONS(4082), - [anon_sym_open] = ACTIONS(4082), - [anon_sym_vararg] = ACTIONS(4082), - [anon_sym_noinline] = ACTIONS(4082), - [anon_sym_crossinline] = ACTIONS(4082), - [anon_sym_expect] = ACTIONS(4082), - [anon_sym_actual] = ACTIONS(4082), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4084), - [sym__automatic_semicolon] = ACTIONS(4084), - [sym_safe_nav] = ACTIONS(4084), + [3180] = { + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_RBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_DASH_GT] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, - [3133] = { - [sym_class_body] = STATE(3574), - [sym_type_constraints] = STATE(3419), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6731), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_RBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [anon_sym_DASH_GT] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [3181] = { + [sym__alpha_identifier] = ACTIONS(4838), + [anon_sym_AT] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4838), + [anon_sym_EQ] = ACTIONS(4838), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4838), + [anon_sym_where] = ACTIONS(4838), + [anon_sym_object] = ACTIONS(4838), + [anon_sym_fun] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_get] = ACTIONS(4838), + [anon_sym_set] = ACTIONS(4838), + [anon_sym_this] = ACTIONS(4838), + [anon_sym_super] = ACTIONS(4838), + [anon_sym_STAR] = ACTIONS(4838), + [sym_label] = ACTIONS(4838), + [anon_sym_in] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4840), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4840), + [anon_sym_PIPE_PIPE] = ACTIONS(4840), + [anon_sym_null] = ACTIONS(4838), + [anon_sym_if] = ACTIONS(4838), + [anon_sym_else] = ACTIONS(4838), + [anon_sym_when] = ACTIONS(4838), + [anon_sym_try] = ACTIONS(4838), + [anon_sym_throw] = ACTIONS(4838), + [anon_sym_return] = ACTIONS(4838), + [anon_sym_continue] = ACTIONS(4838), + [anon_sym_break] = ACTIONS(4838), + [anon_sym_COLON_COLON] = ACTIONS(4840), + [anon_sym_PLUS_EQ] = ACTIONS(4840), + [anon_sym_DASH_EQ] = ACTIONS(4840), + [anon_sym_STAR_EQ] = ACTIONS(4840), + [anon_sym_SLASH_EQ] = ACTIONS(4840), + [anon_sym_PERCENT_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ] = ACTIONS(4838), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4840), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_BANGin] = ACTIONS(4840), + [anon_sym_is] = ACTIONS(4838), + [anon_sym_BANGis] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4838), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4838), + [anon_sym_PERCENT] = ACTIONS(4838), + [anon_sym_as_QMARK] = ACTIONS(4840), + [anon_sym_PLUS_PLUS] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4838), + [anon_sym_BANG_BANG] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4838), + [anon_sym_inner] = ACTIONS(4838), + [anon_sym_value] = ACTIONS(4838), + [anon_sym_expect] = ACTIONS(4838), + [anon_sym_actual] = ACTIONS(4838), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4840), + [anon_sym_continue_AT] = ACTIONS(4840), + [anon_sym_break_AT] = ACTIONS(4840), + [anon_sym_this_AT] = ACTIONS(4840), + [anon_sym_super_AT] = ACTIONS(4840), + [sym_real_literal] = ACTIONS(4840), + [sym_integer_literal] = ACTIONS(4838), + [sym_hex_literal] = ACTIONS(4840), + [sym_bin_literal] = ACTIONS(4840), + [anon_sym_true] = ACTIONS(4838), + [anon_sym_false] = ACTIONS(4838), + [anon_sym_SQUOTE] = ACTIONS(4840), + [sym__backtick_identifier] = ACTIONS(4840), + [sym__automatic_semicolon] = ACTIONS(4840), + [sym_safe_nav] = ACTIONS(4840), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4840), + }, + [3182] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), + }, + [3183] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_RBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_RPAREN] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [anon_sym_DASH_GT] = ACTIONS(4479), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_while] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_catch] = ACTIONS(4477), + [anon_sym_finally] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), }, - [3134] = { - [sym_enum_class_body] = STATE(3174), + [3184] = { + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_RBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_DASH_GT] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + }, + [3185] = { [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6636), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), [anon_sym_get] = ACTIONS(4281), [anon_sym_set] = ACTIONS(4281), [anon_sym_this] = ACTIONS(4281), [anon_sym_super] = ACTIONS(4281), [anon_sym_STAR] = ACTIONS(4281), [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), [anon_sym_null] = ACTIONS(4281), [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), [anon_sym_when] = ACTIONS(4281), [anon_sym_try] = ACTIONS(4281), [anon_sym_throw] = ACTIONS(4281), [anon_sym_return] = ACTIONS(4281), [anon_sym_continue] = ACTIONS(4281), [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), [anon_sym_PLUS] = ACTIONS(4281), [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4287), [anon_sym_data] = ACTIONS(4281), [anon_sym_inner] = ACTIONS(4281), [anon_sym_value] = ACTIONS(4281), [anon_sym_expect] = ACTIONS(4281), [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), [anon_sym_true] = ACTIONS(4281), [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), - }, - [3135] = { - [sym__alpha_identifier] = ACTIONS(4232), - [anon_sym_AT] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4232), - [anon_sym_LBRACE] = ACTIONS(4234), - [anon_sym_RBRACE] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_COMMA] = ACTIONS(4234), - [anon_sym_by] = ACTIONS(4232), - [anon_sym_where] = ACTIONS(4232), - [anon_sym_object] = ACTIONS(4232), - [anon_sym_DOT] = ACTIONS(4232), - [anon_sym_SEMI] = ACTIONS(4234), - [anon_sym_get] = ACTIONS(4232), - [anon_sym_set] = ACTIONS(4232), - [anon_sym_this] = ACTIONS(4232), - [anon_sym_super] = ACTIONS(4232), - [anon_sym_AMP] = ACTIONS(4234), - [sym__quest] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4232), - [anon_sym_in] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4232), - [anon_sym_if] = ACTIONS(4232), - [anon_sym_else] = ACTIONS(4232), - [anon_sym_when] = ACTIONS(4232), - [anon_sym_try] = ACTIONS(4232), - [anon_sym_throw] = ACTIONS(4232), - [anon_sym_return] = ACTIONS(4232), - [anon_sym_continue] = ACTIONS(4232), - [anon_sym_break] = ACTIONS(4232), - [anon_sym_COLON_COLON] = ACTIONS(4234), - [anon_sym_BANGin] = ACTIONS(4234), - [anon_sym_is] = ACTIONS(4232), - [anon_sym_BANGis] = ACTIONS(4234), - [anon_sym_PLUS] = ACTIONS(4232), - [anon_sym_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4234), - [anon_sym_DASH_DASH] = ACTIONS(4234), - [anon_sym_BANG] = ACTIONS(4232), - [anon_sym_suspend] = ACTIONS(4232), - [anon_sym_sealed] = ACTIONS(4232), - [anon_sym_annotation] = ACTIONS(4232), - [anon_sym_data] = ACTIONS(4232), - [anon_sym_inner] = ACTIONS(4232), - [anon_sym_value] = ACTIONS(4232), - [anon_sym_override] = ACTIONS(4232), - [anon_sym_lateinit] = ACTIONS(4232), - [anon_sym_public] = ACTIONS(4232), - [anon_sym_private] = ACTIONS(4232), - [anon_sym_internal] = ACTIONS(4232), - [anon_sym_protected] = ACTIONS(4232), - [anon_sym_tailrec] = ACTIONS(4232), - [anon_sym_operator] = ACTIONS(4232), - [anon_sym_infix] = ACTIONS(4232), - [anon_sym_inline] = ACTIONS(4232), - [anon_sym_external] = ACTIONS(4232), - [sym_property_modifier] = ACTIONS(4232), - [anon_sym_abstract] = ACTIONS(4232), - [anon_sym_final] = ACTIONS(4232), - [anon_sym_open] = ACTIONS(4232), - [anon_sym_vararg] = ACTIONS(4232), - [anon_sym_noinline] = ACTIONS(4232), - [anon_sym_crossinline] = ACTIONS(4232), - [anon_sym_expect] = ACTIONS(4232), - [anon_sym_actual] = ACTIONS(4232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4234), - [anon_sym_continue_AT] = ACTIONS(4234), - [anon_sym_break_AT] = ACTIONS(4234), - [anon_sym_this_AT] = ACTIONS(4234), - [anon_sym_super_AT] = ACTIONS(4234), - [sym_real_literal] = ACTIONS(4234), - [sym_integer_literal] = ACTIONS(4232), - [sym_hex_literal] = ACTIONS(4234), - [sym_bin_literal] = ACTIONS(4234), - [anon_sym_true] = ACTIONS(4232), - [anon_sym_false] = ACTIONS(4232), - [anon_sym_SQUOTE] = ACTIONS(4234), - [sym__backtick_identifier] = ACTIONS(4234), - [sym__automatic_semicolon] = ACTIONS(4234), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4234), - }, - [3136] = { - [sym__alpha_identifier] = ACTIONS(4189), - [anon_sym_AT] = ACTIONS(4191), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_EQ] = ACTIONS(4191), - [anon_sym_fun] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_by] = ACTIONS(4189), - [anon_sym_where] = ACTIONS(4189), - [anon_sym_object] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_SEMI] = ACTIONS(4191), - [anon_sym_get] = ACTIONS(4189), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_this] = ACTIONS(4189), - [anon_sym_super] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4191), - [sym__quest] = ACTIONS(4191), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(4189), - [anon_sym_in] = ACTIONS(4189), - [anon_sym_null] = ACTIONS(4189), - [anon_sym_if] = ACTIONS(4189), - [anon_sym_else] = ACTIONS(4189), - [anon_sym_when] = ACTIONS(4189), - [anon_sym_try] = ACTIONS(4189), - [anon_sym_throw] = ACTIONS(4189), - [anon_sym_return] = ACTIONS(4189), - [anon_sym_continue] = ACTIONS(4189), - [anon_sym_break] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(4191), - [anon_sym_BANGin] = ACTIONS(4191), - [anon_sym_is] = ACTIONS(4189), - [anon_sym_BANGis] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_suspend] = ACTIONS(4189), - [anon_sym_sealed] = ACTIONS(4189), - [anon_sym_annotation] = ACTIONS(4189), - [anon_sym_data] = ACTIONS(4189), - [anon_sym_inner] = ACTIONS(4189), - [anon_sym_value] = ACTIONS(4189), - [anon_sym_override] = ACTIONS(4189), - [anon_sym_lateinit] = ACTIONS(4189), - [anon_sym_public] = ACTIONS(4189), - [anon_sym_private] = ACTIONS(4189), - [anon_sym_internal] = ACTIONS(4189), - [anon_sym_protected] = ACTIONS(4189), - [anon_sym_tailrec] = ACTIONS(4189), - [anon_sym_operator] = ACTIONS(4189), - [anon_sym_infix] = ACTIONS(4189), - [anon_sym_inline] = ACTIONS(4189), - [anon_sym_external] = ACTIONS(4189), - [sym_property_modifier] = ACTIONS(4189), - [anon_sym_abstract] = ACTIONS(4189), - [anon_sym_final] = ACTIONS(4189), - [anon_sym_open] = ACTIONS(4189), - [anon_sym_vararg] = ACTIONS(4189), - [anon_sym_noinline] = ACTIONS(4189), - [anon_sym_crossinline] = ACTIONS(4189), - [anon_sym_expect] = ACTIONS(4189), - [anon_sym_actual] = ACTIONS(4189), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4191), - [anon_sym_continue_AT] = ACTIONS(4191), - [anon_sym_break_AT] = ACTIONS(4191), - [anon_sym_this_AT] = ACTIONS(4191), - [anon_sym_super_AT] = ACTIONS(4191), - [sym_real_literal] = ACTIONS(4191), - [sym_integer_literal] = ACTIONS(4189), - [sym_hex_literal] = ACTIONS(4191), - [sym_bin_literal] = ACTIONS(4191), - [anon_sym_true] = ACTIONS(4189), - [anon_sym_false] = ACTIONS(4189), - [anon_sym_SQUOTE] = ACTIONS(4191), - [sym__backtick_identifier] = ACTIONS(4191), - [sym__automatic_semicolon] = ACTIONS(4191), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4191), - }, - [3137] = { - [sym_class_body] = STATE(3466), - [sym_type_constraints] = STATE(3357), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(5689), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [3138] = { - [sym_enum_class_body] = STATE(3195), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), - }, - [3139] = { - [sym__alpha_identifier] = ACTIONS(4317), - [anon_sym_AT] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [anon_sym_EQ] = ACTIONS(4319), - [anon_sym_fun] = ACTIONS(4317), - [anon_sym_LBRACE] = ACTIONS(4319), - [anon_sym_RBRACE] = ACTIONS(4319), - [anon_sym_LPAREN] = ACTIONS(4319), - [anon_sym_COMMA] = ACTIONS(4319), - [anon_sym_by] = ACTIONS(4317), - [anon_sym_where] = ACTIONS(4317), - [anon_sym_object] = ACTIONS(4317), - [anon_sym_DOT] = ACTIONS(4317), - [anon_sym_SEMI] = ACTIONS(4319), - [anon_sym_get] = ACTIONS(4317), - [anon_sym_set] = ACTIONS(4317), - [anon_sym_this] = ACTIONS(4317), - [anon_sym_super] = ACTIONS(4317), - [anon_sym_AMP] = ACTIONS(4319), - [sym__quest] = ACTIONS(4319), - [anon_sym_STAR] = ACTIONS(4319), - [sym_label] = ACTIONS(4317), - [anon_sym_in] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(4317), - [anon_sym_if] = ACTIONS(4317), - [anon_sym_else] = ACTIONS(4317), - [anon_sym_when] = ACTIONS(4317), - [anon_sym_try] = ACTIONS(4317), - [anon_sym_throw] = ACTIONS(4317), - [anon_sym_return] = ACTIONS(4317), - [anon_sym_continue] = ACTIONS(4317), - [anon_sym_break] = ACTIONS(4317), - [anon_sym_COLON_COLON] = ACTIONS(4319), - [anon_sym_BANGin] = ACTIONS(4319), - [anon_sym_is] = ACTIONS(4317), - [anon_sym_BANGis] = ACTIONS(4319), - [anon_sym_PLUS] = ACTIONS(4317), - [anon_sym_DASH] = ACTIONS(4317), - [anon_sym_PLUS_PLUS] = ACTIONS(4319), - [anon_sym_DASH_DASH] = ACTIONS(4319), - [anon_sym_BANG] = ACTIONS(4317), - [anon_sym_suspend] = ACTIONS(4317), - [anon_sym_sealed] = ACTIONS(4317), - [anon_sym_annotation] = ACTIONS(4317), - [anon_sym_data] = ACTIONS(4317), - [anon_sym_inner] = ACTIONS(4317), - [anon_sym_value] = ACTIONS(4317), - [anon_sym_override] = ACTIONS(4317), - [anon_sym_lateinit] = ACTIONS(4317), - [anon_sym_public] = ACTIONS(4317), - [anon_sym_private] = ACTIONS(4317), - [anon_sym_internal] = ACTIONS(4317), - [anon_sym_protected] = ACTIONS(4317), - [anon_sym_tailrec] = ACTIONS(4317), - [anon_sym_operator] = ACTIONS(4317), - [anon_sym_infix] = ACTIONS(4317), - [anon_sym_inline] = ACTIONS(4317), - [anon_sym_external] = ACTIONS(4317), - [sym_property_modifier] = ACTIONS(4317), - [anon_sym_abstract] = ACTIONS(4317), - [anon_sym_final] = ACTIONS(4317), - [anon_sym_open] = ACTIONS(4317), - [anon_sym_vararg] = ACTIONS(4317), - [anon_sym_noinline] = ACTIONS(4317), - [anon_sym_crossinline] = ACTIONS(4317), - [anon_sym_expect] = ACTIONS(4317), - [anon_sym_actual] = ACTIONS(4317), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4319), - [anon_sym_continue_AT] = ACTIONS(4319), - [anon_sym_break_AT] = ACTIONS(4319), - [anon_sym_this_AT] = ACTIONS(4319), - [anon_sym_super_AT] = ACTIONS(4319), - [sym_real_literal] = ACTIONS(4319), - [sym_integer_literal] = ACTIONS(4317), - [sym_hex_literal] = ACTIONS(4319), - [sym_bin_literal] = ACTIONS(4319), - [anon_sym_true] = ACTIONS(4317), - [anon_sym_false] = ACTIONS(4317), - [anon_sym_SQUOTE] = ACTIONS(4319), - [sym__backtick_identifier] = ACTIONS(4319), - [sym__automatic_semicolon] = ACTIONS(4319), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4319), - }, - [3140] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4347), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(6733), - [anon_sym_COMMA] = ACTIONS(4350), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_where] = ACTIONS(4347), - [anon_sym_object] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4350), - [anon_sym_DASH_EQ] = ACTIONS(4350), - [anon_sym_STAR_EQ] = ACTIONS(4350), - [anon_sym_SLASH_EQ] = ACTIONS(4350), - [anon_sym_PERCENT_EQ] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), - }, - [3141] = { - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_fun] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_object] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_this] = ACTIONS(4435), - [anon_sym_super] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4435), - [sym_label] = ACTIONS(4435), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_null] = ACTIONS(4435), - [anon_sym_if] = ACTIONS(4435), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_when] = ACTIONS(4435), - [anon_sym_try] = ACTIONS(4435), - [anon_sym_throw] = ACTIONS(4435), - [anon_sym_return] = ACTIONS(4435), - [anon_sym_continue] = ACTIONS(4435), - [anon_sym_break] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_PLUS_EQ] = ACTIONS(4437), - [anon_sym_DASH_EQ] = ACTIONS(4437), - [anon_sym_STAR_EQ] = ACTIONS(4437), - [anon_sym_SLASH_EQ] = ACTIONS(4437), - [anon_sym_PERCENT_EQ] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4435), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4435), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4437), - [anon_sym_continue_AT] = ACTIONS(4437), - [anon_sym_break_AT] = ACTIONS(4437), - [anon_sym_this_AT] = ACTIONS(4437), - [anon_sym_super_AT] = ACTIONS(4437), - [sym_real_literal] = ACTIONS(4437), - [sym_integer_literal] = ACTIONS(4435), - [sym_hex_literal] = ACTIONS(4437), - [sym_bin_literal] = ACTIONS(4437), - [anon_sym_true] = ACTIONS(4435), - [anon_sym_false] = ACTIONS(4435), - [anon_sym_SQUOTE] = ACTIONS(4437), - [sym__backtick_identifier] = ACTIONS(4437), - [sym__automatic_semicolon] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4437), + [sym__string_start] = ACTIONS(4284), }, - [3142] = { - [sym__alpha_identifier] = ACTIONS(5209), - [anon_sym_AT] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_as] = ACTIONS(5209), - [anon_sym_EQ] = ACTIONS(5209), - [anon_sym_fun] = ACTIONS(5209), - [anon_sym_LBRACE] = ACTIONS(5211), - [anon_sym_RBRACE] = ACTIONS(5211), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_where] = ACTIONS(5209), - [anon_sym_object] = ACTIONS(5209), - [anon_sym_DOT] = ACTIONS(5209), - [anon_sym_SEMI] = ACTIONS(5211), - [anon_sym_get] = ACTIONS(5209), - [anon_sym_set] = ACTIONS(5209), - [anon_sym_this] = ACTIONS(5209), - [anon_sym_super] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [sym_label] = ACTIONS(5209), - [anon_sym_in] = ACTIONS(5209), - [anon_sym_DOT_DOT] = ACTIONS(5211), - [anon_sym_QMARK_COLON] = ACTIONS(5211), - [anon_sym_AMP_AMP] = ACTIONS(5211), - [anon_sym_PIPE_PIPE] = ACTIONS(5211), - [anon_sym_null] = ACTIONS(5209), - [anon_sym_if] = ACTIONS(5209), - [anon_sym_else] = ACTIONS(5209), - [anon_sym_when] = ACTIONS(5209), - [anon_sym_try] = ACTIONS(5209), - [anon_sym_throw] = ACTIONS(5209), - [anon_sym_return] = ACTIONS(5209), - [anon_sym_continue] = ACTIONS(5209), - [anon_sym_break] = ACTIONS(5209), - [anon_sym_COLON_COLON] = ACTIONS(5211), - [anon_sym_PLUS_EQ] = ACTIONS(5211), - [anon_sym_DASH_EQ] = ACTIONS(5211), - [anon_sym_STAR_EQ] = ACTIONS(5211), - [anon_sym_SLASH_EQ] = ACTIONS(5211), - [anon_sym_PERCENT_EQ] = ACTIONS(5211), - [anon_sym_BANG_EQ] = ACTIONS(5209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5211), - [anon_sym_EQ_EQ] = ACTIONS(5209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5211), - [anon_sym_LT_EQ] = ACTIONS(5211), - [anon_sym_GT_EQ] = ACTIONS(5211), - [anon_sym_BANGin] = ACTIONS(5211), - [anon_sym_is] = ACTIONS(5209), - [anon_sym_BANGis] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_PERCENT] = ACTIONS(5209), - [anon_sym_as_QMARK] = ACTIONS(5211), - [anon_sym_PLUS_PLUS] = ACTIONS(5211), - [anon_sym_DASH_DASH] = ACTIONS(5211), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_BANG_BANG] = ACTIONS(5211), - [anon_sym_data] = ACTIONS(5209), - [anon_sym_inner] = ACTIONS(5209), - [anon_sym_value] = ACTIONS(5209), - [anon_sym_expect] = ACTIONS(5209), - [anon_sym_actual] = ACTIONS(5209), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5211), - [anon_sym_continue_AT] = ACTIONS(5211), - [anon_sym_break_AT] = ACTIONS(5211), - [anon_sym_this_AT] = ACTIONS(5211), - [anon_sym_super_AT] = ACTIONS(5211), - [sym_real_literal] = ACTIONS(5211), - [sym_integer_literal] = ACTIONS(5209), - [sym_hex_literal] = ACTIONS(5211), - [sym_bin_literal] = ACTIONS(5211), - [anon_sym_true] = ACTIONS(5209), - [anon_sym_false] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5211), - [sym__backtick_identifier] = ACTIONS(5211), - [sym__automatic_semicolon] = ACTIONS(5211), - [sym_safe_nav] = ACTIONS(5211), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5211), + [3186] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6642), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, - [3143] = { - [sym__alpha_identifier] = ACTIONS(5045), - [anon_sym_AT] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(5045), - [anon_sym_fun] = ACTIONS(5045), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_where] = ACTIONS(5045), - [anon_sym_object] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_get] = ACTIONS(5045), - [anon_sym_set] = ACTIONS(5045), - [anon_sym_this] = ACTIONS(5045), - [anon_sym_super] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [sym_label] = ACTIONS(5045), - [anon_sym_in] = ACTIONS(5045), - [anon_sym_DOT_DOT] = ACTIONS(5047), - [anon_sym_QMARK_COLON] = ACTIONS(5047), - [anon_sym_AMP_AMP] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_null] = ACTIONS(5045), - [anon_sym_if] = ACTIONS(5045), - [anon_sym_else] = ACTIONS(5045), - [anon_sym_when] = ACTIONS(5045), - [anon_sym_try] = ACTIONS(5045), - [anon_sym_throw] = ACTIONS(5045), - [anon_sym_return] = ACTIONS(5045), - [anon_sym_continue] = ACTIONS(5045), - [anon_sym_break] = ACTIONS(5045), - [anon_sym_COLON_COLON] = ACTIONS(5047), - [anon_sym_PLUS_EQ] = ACTIONS(5047), - [anon_sym_DASH_EQ] = ACTIONS(5047), - [anon_sym_STAR_EQ] = ACTIONS(5047), - [anon_sym_SLASH_EQ] = ACTIONS(5047), - [anon_sym_PERCENT_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_BANGin] = ACTIONS(5047), - [anon_sym_is] = ACTIONS(5045), - [anon_sym_BANGis] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_PERCENT] = ACTIONS(5045), - [anon_sym_as_QMARK] = ACTIONS(5047), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5045), - [anon_sym_BANG_BANG] = ACTIONS(5047), - [anon_sym_data] = ACTIONS(5045), - [anon_sym_inner] = ACTIONS(5045), - [anon_sym_value] = ACTIONS(5045), - [anon_sym_expect] = ACTIONS(5045), - [anon_sym_actual] = ACTIONS(5045), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5047), - [anon_sym_continue_AT] = ACTIONS(5047), - [anon_sym_break_AT] = ACTIONS(5047), - [anon_sym_this_AT] = ACTIONS(5047), - [anon_sym_super_AT] = ACTIONS(5047), - [sym_real_literal] = ACTIONS(5047), - [sym_integer_literal] = ACTIONS(5045), - [sym_hex_literal] = ACTIONS(5047), - [sym_bin_literal] = ACTIONS(5047), - [anon_sym_true] = ACTIONS(5045), - [anon_sym_false] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5047), - [sym__backtick_identifier] = ACTIONS(5047), - [sym__automatic_semicolon] = ACTIONS(5047), - [sym_safe_nav] = ACTIONS(5047), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5047), + [3187] = { + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(1796), + [anon_sym_set] = ACTIONS(1796), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_data] = ACTIONS(1796), + [anon_sym_inner] = ACTIONS(1796), + [anon_sym_value] = ACTIONS(1796), + [anon_sym_expect] = ACTIONS(1796), + [anon_sym_actual] = ACTIONS(1796), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [3144] = { - [sym__alpha_identifier] = ACTIONS(5201), - [anon_sym_AT] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_as] = ACTIONS(5201), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_fun] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(5203), - [anon_sym_RBRACE] = ACTIONS(5203), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_where] = ACTIONS(5201), - [anon_sym_object] = ACTIONS(5201), - [anon_sym_DOT] = ACTIONS(5201), - [anon_sym_SEMI] = ACTIONS(5203), - [anon_sym_get] = ACTIONS(5201), - [anon_sym_set] = ACTIONS(5201), - [anon_sym_this] = ACTIONS(5201), - [anon_sym_super] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [sym_label] = ACTIONS(5201), - [anon_sym_in] = ACTIONS(5201), - [anon_sym_DOT_DOT] = ACTIONS(5203), - [anon_sym_QMARK_COLON] = ACTIONS(5203), - [anon_sym_AMP_AMP] = ACTIONS(5203), - [anon_sym_PIPE_PIPE] = ACTIONS(5203), - [anon_sym_null] = ACTIONS(5201), - [anon_sym_if] = ACTIONS(5201), - [anon_sym_else] = ACTIONS(5201), - [anon_sym_when] = ACTIONS(5201), - [anon_sym_try] = ACTIONS(5201), - [anon_sym_throw] = ACTIONS(5201), - [anon_sym_return] = ACTIONS(5201), - [anon_sym_continue] = ACTIONS(5201), - [anon_sym_break] = ACTIONS(5201), - [anon_sym_COLON_COLON] = ACTIONS(5203), - [anon_sym_PLUS_EQ] = ACTIONS(5203), - [anon_sym_DASH_EQ] = ACTIONS(5203), - [anon_sym_STAR_EQ] = ACTIONS(5203), - [anon_sym_SLASH_EQ] = ACTIONS(5203), - [anon_sym_PERCENT_EQ] = ACTIONS(5203), - [anon_sym_BANG_EQ] = ACTIONS(5201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5203), - [anon_sym_EQ_EQ] = ACTIONS(5201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5203), - [anon_sym_LT_EQ] = ACTIONS(5203), - [anon_sym_GT_EQ] = ACTIONS(5203), - [anon_sym_BANGin] = ACTIONS(5203), - [anon_sym_is] = ACTIONS(5201), - [anon_sym_BANGis] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_PERCENT] = ACTIONS(5201), - [anon_sym_as_QMARK] = ACTIONS(5203), - [anon_sym_PLUS_PLUS] = ACTIONS(5203), - [anon_sym_DASH_DASH] = ACTIONS(5203), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_BANG_BANG] = ACTIONS(5203), - [anon_sym_data] = ACTIONS(5201), - [anon_sym_inner] = ACTIONS(5201), - [anon_sym_value] = ACTIONS(5201), - [anon_sym_expect] = ACTIONS(5201), - [anon_sym_actual] = ACTIONS(5201), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5203), - [anon_sym_continue_AT] = ACTIONS(5203), - [anon_sym_break_AT] = ACTIONS(5203), - [anon_sym_this_AT] = ACTIONS(5203), - [anon_sym_super_AT] = ACTIONS(5203), - [sym_real_literal] = ACTIONS(5203), - [sym_integer_literal] = ACTIONS(5201), - [sym_hex_literal] = ACTIONS(5203), - [sym_bin_literal] = ACTIONS(5203), - [anon_sym_true] = ACTIONS(5201), - [anon_sym_false] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5203), - [sym__backtick_identifier] = ACTIONS(5203), - [sym__automatic_semicolon] = ACTIONS(5203), - [sym_safe_nav] = ACTIONS(5203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5203), + [3188] = { + [sym__alpha_identifier] = ACTIONS(4958), + [anon_sym_AT] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4958), + [anon_sym_EQ] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_where] = ACTIONS(4958), + [anon_sym_object] = ACTIONS(4958), + [anon_sym_fun] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_get] = ACTIONS(4958), + [anon_sym_set] = ACTIONS(4958), + [anon_sym_this] = ACTIONS(4958), + [anon_sym_super] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [sym_label] = ACTIONS(4958), + [anon_sym_in] = ACTIONS(4958), + [anon_sym_DOT_DOT] = ACTIONS(4960), + [anon_sym_QMARK_COLON] = ACTIONS(4960), + [anon_sym_AMP_AMP] = ACTIONS(4960), + [anon_sym_PIPE_PIPE] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(4958), + [anon_sym_if] = ACTIONS(4958), + [anon_sym_else] = ACTIONS(4958), + [anon_sym_when] = ACTIONS(4958), + [anon_sym_try] = ACTIONS(4958), + [anon_sym_throw] = ACTIONS(4958), + [anon_sym_return] = ACTIONS(4958), + [anon_sym_continue] = ACTIONS(4958), + [anon_sym_break] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(4960), + [anon_sym_PLUS_EQ] = ACTIONS(4960), + [anon_sym_DASH_EQ] = ACTIONS(4960), + [anon_sym_STAR_EQ] = ACTIONS(4960), + [anon_sym_SLASH_EQ] = ACTIONS(4960), + [anon_sym_PERCENT_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4960), + [anon_sym_LT_EQ] = ACTIONS(4960), + [anon_sym_GT_EQ] = ACTIONS(4960), + [anon_sym_BANGin] = ACTIONS(4960), + [anon_sym_is] = ACTIONS(4958), + [anon_sym_BANGis] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_as_QMARK] = ACTIONS(4960), + [anon_sym_PLUS_PLUS] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4958), + [anon_sym_BANG_BANG] = ACTIONS(4960), + [anon_sym_data] = ACTIONS(4958), + [anon_sym_inner] = ACTIONS(4958), + [anon_sym_value] = ACTIONS(4958), + [anon_sym_expect] = ACTIONS(4958), + [anon_sym_actual] = ACTIONS(4958), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4960), + [anon_sym_continue_AT] = ACTIONS(4960), + [anon_sym_break_AT] = ACTIONS(4960), + [anon_sym_this_AT] = ACTIONS(4960), + [anon_sym_super_AT] = ACTIONS(4960), + [sym_real_literal] = ACTIONS(4960), + [sym_integer_literal] = ACTIONS(4958), + [sym_hex_literal] = ACTIONS(4960), + [sym_bin_literal] = ACTIONS(4960), + [anon_sym_true] = ACTIONS(4958), + [anon_sym_false] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4960), + [sym__backtick_identifier] = ACTIONS(4960), + [sym__automatic_semicolon] = ACTIONS(4960), + [sym_safe_nav] = ACTIONS(4960), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4960), }, - [3145] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_COMMA] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_object] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_this] = ACTIONS(4926), - [anon_sym_super] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_if] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(6737), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4926), - [anon_sym_throw] = ACTIONS(4926), - [anon_sym_return] = ACTIONS(4926), - [anon_sym_continue] = ACTIONS(4926), - [anon_sym_break] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_PLUS_EQ] = ACTIONS(4928), - [anon_sym_DASH_EQ] = ACTIONS(4928), - [anon_sym_STAR_EQ] = ACTIONS(4928), - [anon_sym_SLASH_EQ] = ACTIONS(4928), - [anon_sym_PERCENT_EQ] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4928), - [anon_sym_continue_AT] = ACTIONS(4928), - [anon_sym_break_AT] = ACTIONS(4928), - [anon_sym_this_AT] = ACTIONS(4928), - [anon_sym_super_AT] = ACTIONS(4928), - [sym_real_literal] = ACTIONS(4928), - [sym_integer_literal] = ACTIONS(4926), - [sym_hex_literal] = ACTIONS(4928), - [sym_bin_literal] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [anon_sym_SQUOTE] = ACTIONS(4928), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [3189] = { + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_RBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_DASH_GT] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), - }, - [3146] = { - [sym__alpha_identifier] = ACTIONS(5038), - [anon_sym_AT] = ACTIONS(5040), - [anon_sym_LBRACK] = ACTIONS(5040), - [anon_sym_as] = ACTIONS(5038), - [anon_sym_EQ] = ACTIONS(5038), - [anon_sym_fun] = ACTIONS(5038), - [anon_sym_LBRACE] = ACTIONS(5040), - [anon_sym_RBRACE] = ACTIONS(5040), - [anon_sym_LPAREN] = ACTIONS(5040), - [anon_sym_COMMA] = ACTIONS(5040), - [anon_sym_LT] = ACTIONS(5038), - [anon_sym_GT] = ACTIONS(5038), - [anon_sym_where] = ACTIONS(5038), - [anon_sym_object] = ACTIONS(5038), - [anon_sym_DOT] = ACTIONS(5038), - [anon_sym_SEMI] = ACTIONS(5040), - [anon_sym_get] = ACTIONS(5038), - [anon_sym_set] = ACTIONS(5038), - [anon_sym_this] = ACTIONS(5038), - [anon_sym_super] = ACTIONS(5038), - [anon_sym_STAR] = ACTIONS(5038), - [sym_label] = ACTIONS(5038), - [anon_sym_in] = ACTIONS(5038), - [anon_sym_DOT_DOT] = ACTIONS(5040), - [anon_sym_QMARK_COLON] = ACTIONS(5040), - [anon_sym_AMP_AMP] = ACTIONS(5040), - [anon_sym_PIPE_PIPE] = ACTIONS(5040), - [anon_sym_null] = ACTIONS(5038), - [anon_sym_if] = ACTIONS(5038), - [anon_sym_else] = ACTIONS(5038), - [anon_sym_when] = ACTIONS(5038), - [anon_sym_try] = ACTIONS(5038), - [anon_sym_throw] = ACTIONS(5038), - [anon_sym_return] = ACTIONS(5038), - [anon_sym_continue] = ACTIONS(5038), - [anon_sym_break] = ACTIONS(5038), - [anon_sym_COLON_COLON] = ACTIONS(6739), - [anon_sym_PLUS_EQ] = ACTIONS(5040), - [anon_sym_DASH_EQ] = ACTIONS(5040), - [anon_sym_STAR_EQ] = ACTIONS(5040), - [anon_sym_SLASH_EQ] = ACTIONS(5040), - [anon_sym_PERCENT_EQ] = ACTIONS(5040), - [anon_sym_BANG_EQ] = ACTIONS(5038), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5040), - [anon_sym_EQ_EQ] = ACTIONS(5038), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5040), - [anon_sym_LT_EQ] = ACTIONS(5040), - [anon_sym_GT_EQ] = ACTIONS(5040), - [anon_sym_BANGin] = ACTIONS(5040), - [anon_sym_is] = ACTIONS(5038), - [anon_sym_BANGis] = ACTIONS(5040), - [anon_sym_PLUS] = ACTIONS(5038), - [anon_sym_DASH] = ACTIONS(5038), - [anon_sym_SLASH] = ACTIONS(5038), - [anon_sym_PERCENT] = ACTIONS(5038), - [anon_sym_as_QMARK] = ACTIONS(5040), - [anon_sym_PLUS_PLUS] = ACTIONS(5040), - [anon_sym_DASH_DASH] = ACTIONS(5040), - [anon_sym_BANG] = ACTIONS(5038), - [anon_sym_BANG_BANG] = ACTIONS(5040), - [anon_sym_data] = ACTIONS(5038), - [anon_sym_inner] = ACTIONS(5038), - [anon_sym_value] = ACTIONS(5038), - [anon_sym_expect] = ACTIONS(5038), - [anon_sym_actual] = ACTIONS(5038), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5040), - [anon_sym_continue_AT] = ACTIONS(5040), - [anon_sym_break_AT] = ACTIONS(5040), - [anon_sym_this_AT] = ACTIONS(5040), - [anon_sym_super_AT] = ACTIONS(5040), - [sym_real_literal] = ACTIONS(5040), - [sym_integer_literal] = ACTIONS(5038), - [sym_hex_literal] = ACTIONS(5040), - [sym_bin_literal] = ACTIONS(5040), - [anon_sym_true] = ACTIONS(5038), - [anon_sym_false] = ACTIONS(5038), - [anon_sym_SQUOTE] = ACTIONS(5040), - [sym__backtick_identifier] = ACTIONS(5040), - [sym__automatic_semicolon] = ACTIONS(5040), - [sym_safe_nav] = ACTIONS(5040), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5040), }, - [3147] = { - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), - }, - [3148] = { - [sym__alpha_identifier] = ACTIONS(5024), - [anon_sym_AT] = ACTIONS(5026), - [anon_sym_LBRACK] = ACTIONS(5026), - [anon_sym_as] = ACTIONS(5024), - [anon_sym_EQ] = ACTIONS(5024), - [anon_sym_fun] = ACTIONS(5024), - [anon_sym_LBRACE] = ACTIONS(5026), - [anon_sym_RBRACE] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(5026), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LT] = ACTIONS(5024), - [anon_sym_GT] = ACTIONS(5024), - [anon_sym_where] = ACTIONS(5024), - [anon_sym_object] = ACTIONS(5024), - [anon_sym_DOT] = ACTIONS(5024), - [anon_sym_SEMI] = ACTIONS(5026), - [anon_sym_get] = ACTIONS(5024), - [anon_sym_set] = ACTIONS(5024), - [anon_sym_this] = ACTIONS(5024), - [anon_sym_super] = ACTIONS(5024), - [anon_sym_STAR] = ACTIONS(5024), - [sym_label] = ACTIONS(5024), - [anon_sym_in] = ACTIONS(5024), - [anon_sym_DOT_DOT] = ACTIONS(5026), - [anon_sym_QMARK_COLON] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5026), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_null] = ACTIONS(5024), - [anon_sym_if] = ACTIONS(5024), - [anon_sym_else] = ACTIONS(5024), - [anon_sym_when] = ACTIONS(5024), - [anon_sym_try] = ACTIONS(5024), - [anon_sym_throw] = ACTIONS(5024), - [anon_sym_return] = ACTIONS(5024), - [anon_sym_continue] = ACTIONS(5024), - [anon_sym_break] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5026), - [anon_sym_PLUS_EQ] = ACTIONS(5026), - [anon_sym_DASH_EQ] = ACTIONS(5026), - [anon_sym_STAR_EQ] = ACTIONS(5026), - [anon_sym_SLASH_EQ] = ACTIONS(5026), - [anon_sym_PERCENT_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5024), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), - [anon_sym_EQ_EQ] = ACTIONS(5024), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), - [anon_sym_LT_EQ] = ACTIONS(5026), - [anon_sym_GT_EQ] = ACTIONS(5026), - [anon_sym_BANGin] = ACTIONS(5026), - [anon_sym_is] = ACTIONS(5024), - [anon_sym_BANGis] = ACTIONS(5026), - [anon_sym_PLUS] = ACTIONS(5024), - [anon_sym_DASH] = ACTIONS(5024), - [anon_sym_SLASH] = ACTIONS(5024), - [anon_sym_PERCENT] = ACTIONS(5024), - [anon_sym_as_QMARK] = ACTIONS(5026), - [anon_sym_PLUS_PLUS] = ACTIONS(5026), - [anon_sym_DASH_DASH] = ACTIONS(5026), - [anon_sym_BANG] = ACTIONS(5024), - [anon_sym_BANG_BANG] = ACTIONS(5026), - [anon_sym_data] = ACTIONS(5024), - [anon_sym_inner] = ACTIONS(5024), - [anon_sym_value] = ACTIONS(5024), - [anon_sym_expect] = ACTIONS(5024), - [anon_sym_actual] = ACTIONS(5024), + [3190] = { + [sym__alpha_identifier] = ACTIONS(5131), + [anon_sym_AT] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_as] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_where] = ACTIONS(5131), + [anon_sym_object] = ACTIONS(5131), + [anon_sym_fun] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_SEMI] = ACTIONS(5133), + [anon_sym_get] = ACTIONS(5131), + [anon_sym_set] = ACTIONS(5131), + [anon_sym_this] = ACTIONS(5131), + [anon_sym_super] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [sym_label] = ACTIONS(5131), + [anon_sym_in] = ACTIONS(5131), + [anon_sym_DOT_DOT] = ACTIONS(5133), + [anon_sym_QMARK_COLON] = ACTIONS(5133), + [anon_sym_AMP_AMP] = ACTIONS(5133), + [anon_sym_PIPE_PIPE] = ACTIONS(5133), + [anon_sym_null] = ACTIONS(5131), + [anon_sym_if] = ACTIONS(5131), + [anon_sym_else] = ACTIONS(5131), + [anon_sym_when] = ACTIONS(5131), + [anon_sym_try] = ACTIONS(5131), + [anon_sym_throw] = ACTIONS(5131), + [anon_sym_return] = ACTIONS(5131), + [anon_sym_continue] = ACTIONS(5131), + [anon_sym_break] = ACTIONS(5131), + [anon_sym_COLON_COLON] = ACTIONS(5133), + [anon_sym_PLUS_EQ] = ACTIONS(5133), + [anon_sym_DASH_EQ] = ACTIONS(5133), + [anon_sym_STAR_EQ] = ACTIONS(5133), + [anon_sym_SLASH_EQ] = ACTIONS(5133), + [anon_sym_PERCENT_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5133), + [anon_sym_LT_EQ] = ACTIONS(5133), + [anon_sym_GT_EQ] = ACTIONS(5133), + [anon_sym_BANGin] = ACTIONS(5133), + [anon_sym_is] = ACTIONS(5131), + [anon_sym_BANGis] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5131), + [anon_sym_as_QMARK] = ACTIONS(5133), + [anon_sym_PLUS_PLUS] = ACTIONS(5133), + [anon_sym_DASH_DASH] = ACTIONS(5133), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_BANG_BANG] = ACTIONS(5133), + [anon_sym_data] = ACTIONS(5131), + [anon_sym_inner] = ACTIONS(5131), + [anon_sym_value] = ACTIONS(5131), + [anon_sym_expect] = ACTIONS(5131), + [anon_sym_actual] = ACTIONS(5131), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5026), - [anon_sym_continue_AT] = ACTIONS(5026), - [anon_sym_break_AT] = ACTIONS(5026), - [anon_sym_this_AT] = ACTIONS(5026), - [anon_sym_super_AT] = ACTIONS(5026), - [sym_real_literal] = ACTIONS(5026), - [sym_integer_literal] = ACTIONS(5024), - [sym_hex_literal] = ACTIONS(5026), - [sym_bin_literal] = ACTIONS(5026), - [anon_sym_true] = ACTIONS(5024), - [anon_sym_false] = ACTIONS(5024), - [anon_sym_SQUOTE] = ACTIONS(5026), - [sym__backtick_identifier] = ACTIONS(5026), - [sym__automatic_semicolon] = ACTIONS(5026), - [sym_safe_nav] = ACTIONS(5026), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5026), - }, - [3149] = { - [sym__alpha_identifier] = ACTIONS(5016), - [anon_sym_AT] = ACTIONS(5018), - [anon_sym_LBRACK] = ACTIONS(5018), - [anon_sym_as] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(5016), - [anon_sym_fun] = ACTIONS(5016), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_RBRACE] = ACTIONS(5018), - [anon_sym_LPAREN] = ACTIONS(5018), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_LT] = ACTIONS(5016), - [anon_sym_GT] = ACTIONS(5016), - [anon_sym_where] = ACTIONS(5016), - [anon_sym_object] = ACTIONS(5016), - [anon_sym_DOT] = ACTIONS(5016), - [anon_sym_SEMI] = ACTIONS(5018), - [anon_sym_get] = ACTIONS(5016), - [anon_sym_set] = ACTIONS(5016), - [anon_sym_this] = ACTIONS(5016), - [anon_sym_super] = ACTIONS(5016), - [anon_sym_STAR] = ACTIONS(5016), - [sym_label] = ACTIONS(5016), - [anon_sym_in] = ACTIONS(5016), - [anon_sym_DOT_DOT] = ACTIONS(5018), - [anon_sym_QMARK_COLON] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_null] = ACTIONS(5016), - [anon_sym_if] = ACTIONS(5016), - [anon_sym_else] = ACTIONS(5016), - [anon_sym_when] = ACTIONS(5016), - [anon_sym_try] = ACTIONS(5016), - [anon_sym_throw] = ACTIONS(5016), - [anon_sym_return] = ACTIONS(5016), - [anon_sym_continue] = ACTIONS(5016), - [anon_sym_break] = ACTIONS(5016), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym_PLUS_EQ] = ACTIONS(5018), - [anon_sym_DASH_EQ] = ACTIONS(5018), - [anon_sym_STAR_EQ] = ACTIONS(5018), - [anon_sym_SLASH_EQ] = ACTIONS(5018), - [anon_sym_PERCENT_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5018), - [anon_sym_EQ_EQ] = ACTIONS(5016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5018), - [anon_sym_GT_EQ] = ACTIONS(5018), - [anon_sym_BANGin] = ACTIONS(5018), - [anon_sym_is] = ACTIONS(5016), - [anon_sym_BANGis] = ACTIONS(5018), - [anon_sym_PLUS] = ACTIONS(5016), - [anon_sym_DASH] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5016), - [anon_sym_PERCENT] = ACTIONS(5016), - [anon_sym_as_QMARK] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_BANG] = ACTIONS(5016), - [anon_sym_BANG_BANG] = ACTIONS(5018), - [anon_sym_data] = ACTIONS(5016), - [anon_sym_inner] = ACTIONS(5016), - [anon_sym_value] = ACTIONS(5016), - [anon_sym_expect] = ACTIONS(5016), - [anon_sym_actual] = ACTIONS(5016), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5018), - [anon_sym_continue_AT] = ACTIONS(5018), - [anon_sym_break_AT] = ACTIONS(5018), - [anon_sym_this_AT] = ACTIONS(5018), - [anon_sym_super_AT] = ACTIONS(5018), - [sym_real_literal] = ACTIONS(5018), - [sym_integer_literal] = ACTIONS(5016), - [sym_hex_literal] = ACTIONS(5018), - [sym_bin_literal] = ACTIONS(5018), - [anon_sym_true] = ACTIONS(5016), - [anon_sym_false] = ACTIONS(5016), - [anon_sym_SQUOTE] = ACTIONS(5018), - [sym__backtick_identifier] = ACTIONS(5018), - [sym__automatic_semicolon] = ACTIONS(5018), - [sym_safe_nav] = ACTIONS(5018), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5018), - }, - [3150] = { - [sym__alpha_identifier] = ACTIONS(5165), - [anon_sym_AT] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [anon_sym_as] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_fun] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_RBRACE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_where] = ACTIONS(5165), - [anon_sym_object] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_get] = ACTIONS(5165), - [anon_sym_set] = ACTIONS(5165), - [anon_sym_this] = ACTIONS(5165), - [anon_sym_super] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [sym_label] = ACTIONS(5165), - [anon_sym_in] = ACTIONS(5165), - [anon_sym_DOT_DOT] = ACTIONS(5167), - [anon_sym_QMARK_COLON] = ACTIONS(5167), - [anon_sym_AMP_AMP] = ACTIONS(5167), - [anon_sym_PIPE_PIPE] = ACTIONS(5167), - [anon_sym_null] = ACTIONS(5165), - [anon_sym_if] = ACTIONS(5165), - [anon_sym_else] = ACTIONS(5165), - [anon_sym_when] = ACTIONS(5165), - [anon_sym_try] = ACTIONS(5165), - [anon_sym_throw] = ACTIONS(5165), - [anon_sym_return] = ACTIONS(5165), - [anon_sym_continue] = ACTIONS(5165), - [anon_sym_break] = ACTIONS(5165), - [anon_sym_COLON_COLON] = ACTIONS(5167), - [anon_sym_PLUS_EQ] = ACTIONS(5167), - [anon_sym_DASH_EQ] = ACTIONS(5167), - [anon_sym_STAR_EQ] = ACTIONS(5167), - [anon_sym_SLASH_EQ] = ACTIONS(5167), - [anon_sym_PERCENT_EQ] = ACTIONS(5167), - [anon_sym_BANG_EQ] = ACTIONS(5165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5167), - [anon_sym_EQ_EQ] = ACTIONS(5165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5167), - [anon_sym_LT_EQ] = ACTIONS(5167), - [anon_sym_GT_EQ] = ACTIONS(5167), - [anon_sym_BANGin] = ACTIONS(5167), - [anon_sym_is] = ACTIONS(5165), - [anon_sym_BANGis] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_PERCENT] = ACTIONS(5165), - [anon_sym_as_QMARK] = ACTIONS(5167), - [anon_sym_PLUS_PLUS] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5165), - [anon_sym_BANG_BANG] = ACTIONS(5167), - [anon_sym_data] = ACTIONS(5165), - [anon_sym_inner] = ACTIONS(5165), - [anon_sym_value] = ACTIONS(5165), - [anon_sym_expect] = ACTIONS(5165), - [anon_sym_actual] = ACTIONS(5165), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5167), - [anon_sym_continue_AT] = ACTIONS(5167), - [anon_sym_break_AT] = ACTIONS(5167), - [anon_sym_this_AT] = ACTIONS(5167), - [anon_sym_super_AT] = ACTIONS(5167), - [sym_real_literal] = ACTIONS(5167), - [sym_integer_literal] = ACTIONS(5165), - [sym_hex_literal] = ACTIONS(5167), - [sym_bin_literal] = ACTIONS(5167), - [anon_sym_true] = ACTIONS(5165), - [anon_sym_false] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5167), - [sym__backtick_identifier] = ACTIONS(5167), - [sym__automatic_semicolon] = ACTIONS(5167), - [sym_safe_nav] = ACTIONS(5167), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5167), - }, - [3151] = { - [sym_class_body] = STATE(3603), - [sym_type_constraints] = STATE(3403), - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_RBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_RPAREN] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [anon_sym_DASH_GT] = ACTIONS(4471), - [sym_label] = ACTIONS(4471), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_while] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_suspend] = ACTIONS(4469), - [anon_sym_sealed] = ACTIONS(4469), - [anon_sym_annotation] = ACTIONS(4469), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_value] = ACTIONS(4469), - [anon_sym_override] = ACTIONS(4469), - [anon_sym_lateinit] = ACTIONS(4469), - [anon_sym_public] = ACTIONS(4469), - [anon_sym_private] = ACTIONS(4469), - [anon_sym_internal] = ACTIONS(4469), - [anon_sym_protected] = ACTIONS(4469), - [anon_sym_tailrec] = ACTIONS(4469), - [anon_sym_operator] = ACTIONS(4469), - [anon_sym_infix] = ACTIONS(4469), - [anon_sym_inline] = ACTIONS(4469), - [anon_sym_external] = ACTIONS(4469), - [sym_property_modifier] = ACTIONS(4469), - [anon_sym_abstract] = ACTIONS(4469), - [anon_sym_final] = ACTIONS(4469), - [anon_sym_open] = ACTIONS(4469), - [anon_sym_vararg] = ACTIONS(4469), - [anon_sym_noinline] = ACTIONS(4469), - [anon_sym_crossinline] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), + [anon_sym_return_AT] = ACTIONS(5133), + [anon_sym_continue_AT] = ACTIONS(5133), + [anon_sym_break_AT] = ACTIONS(5133), + [anon_sym_this_AT] = ACTIONS(5133), + [anon_sym_super_AT] = ACTIONS(5133), + [sym_real_literal] = ACTIONS(5133), + [sym_integer_literal] = ACTIONS(5131), + [sym_hex_literal] = ACTIONS(5133), + [sym_bin_literal] = ACTIONS(5133), + [anon_sym_true] = ACTIONS(5131), + [anon_sym_false] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5133), + [sym__backtick_identifier] = ACTIONS(5133), + [sym__automatic_semicolon] = ACTIONS(5133), + [sym_safe_nav] = ACTIONS(5133), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5133), }, - [3152] = { - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(1790), - [anon_sym_set] = ACTIONS(1790), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_data] = ACTIONS(1790), - [anon_sym_inner] = ACTIONS(1790), - [anon_sym_value] = ACTIONS(1790), - [anon_sym_expect] = ACTIONS(1790), - [anon_sym_actual] = ACTIONS(1790), + [3191] = { + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [anon_sym_DASH_GT] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), - }, - [3153] = { - [sym_value_arguments] = STATE(3504), - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_RBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_RPAREN] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(6742), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_DASH_GT] = ACTIONS(4437), - [sym_label] = ACTIONS(4437), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_while] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_PLUS_EQ] = ACTIONS(4437), - [anon_sym_DASH_EQ] = ACTIONS(4437), - [anon_sym_STAR_EQ] = ACTIONS(4437), - [anon_sym_SLASH_EQ] = ACTIONS(4437), - [anon_sym_PERCENT_EQ] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4435), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_suspend] = ACTIONS(4435), - [anon_sym_sealed] = ACTIONS(4435), - [anon_sym_annotation] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_override] = ACTIONS(4435), - [anon_sym_lateinit] = ACTIONS(4435), - [anon_sym_public] = ACTIONS(4435), - [anon_sym_private] = ACTIONS(4435), - [anon_sym_internal] = ACTIONS(4435), - [anon_sym_protected] = ACTIONS(4435), - [anon_sym_tailrec] = ACTIONS(4435), - [anon_sym_operator] = ACTIONS(4435), - [anon_sym_infix] = ACTIONS(4435), - [anon_sym_inline] = ACTIONS(4435), - [anon_sym_external] = ACTIONS(4435), - [sym_property_modifier] = ACTIONS(4435), - [anon_sym_abstract] = ACTIONS(4435), - [anon_sym_final] = ACTIONS(4435), - [anon_sym_open] = ACTIONS(4435), - [anon_sym_vararg] = ACTIONS(4435), - [anon_sym_noinline] = ACTIONS(4435), - [anon_sym_crossinline] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), - }, - [3154] = { - [sym_class_body] = STATE(3604), - [sym_type_constraints] = STATE(3401), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_RPAREN] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_DASH_GT] = ACTIONS(4425), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_while] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - }, - [3155] = { - [sym__alpha_identifier] = ACTIONS(5012), - [anon_sym_AT] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5014), - [anon_sym_as] = ACTIONS(5012), - [anon_sym_EQ] = ACTIONS(5012), - [anon_sym_fun] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5014), - [anon_sym_RBRACE] = ACTIONS(5014), - [anon_sym_LPAREN] = ACTIONS(5014), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_LT] = ACTIONS(5012), - [anon_sym_GT] = ACTIONS(5012), - [anon_sym_where] = ACTIONS(5012), - [anon_sym_object] = ACTIONS(5012), - [anon_sym_DOT] = ACTIONS(5012), - [anon_sym_SEMI] = ACTIONS(5014), - [anon_sym_get] = ACTIONS(5012), - [anon_sym_set] = ACTIONS(5012), - [anon_sym_this] = ACTIONS(5012), - [anon_sym_super] = ACTIONS(5012), - [anon_sym_STAR] = ACTIONS(5012), - [sym_label] = ACTIONS(5012), - [anon_sym_in] = ACTIONS(5012), - [anon_sym_DOT_DOT] = ACTIONS(5014), - [anon_sym_QMARK_COLON] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5014), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_null] = ACTIONS(5012), - [anon_sym_if] = ACTIONS(5012), - [anon_sym_else] = ACTIONS(5012), - [anon_sym_when] = ACTIONS(5012), - [anon_sym_try] = ACTIONS(5012), - [anon_sym_throw] = ACTIONS(5012), - [anon_sym_return] = ACTIONS(5012), - [anon_sym_continue] = ACTIONS(5012), - [anon_sym_break] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5014), - [anon_sym_PLUS_EQ] = ACTIONS(5014), - [anon_sym_DASH_EQ] = ACTIONS(5014), - [anon_sym_STAR_EQ] = ACTIONS(5014), - [anon_sym_SLASH_EQ] = ACTIONS(5014), - [anon_sym_PERCENT_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5012), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5014), - [anon_sym_EQ_EQ] = ACTIONS(5012), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5014), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_BANGin] = ACTIONS(5014), - [anon_sym_is] = ACTIONS(5012), - [anon_sym_BANGis] = ACTIONS(5014), - [anon_sym_PLUS] = ACTIONS(5012), - [anon_sym_DASH] = ACTIONS(5012), - [anon_sym_SLASH] = ACTIONS(5012), - [anon_sym_PERCENT] = ACTIONS(5012), - [anon_sym_as_QMARK] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_BANG] = ACTIONS(5012), - [anon_sym_BANG_BANG] = ACTIONS(5014), - [anon_sym_data] = ACTIONS(5012), - [anon_sym_inner] = ACTIONS(5012), - [anon_sym_value] = ACTIONS(5012), - [anon_sym_expect] = ACTIONS(5012), - [anon_sym_actual] = ACTIONS(5012), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5014), - [anon_sym_continue_AT] = ACTIONS(5014), - [anon_sym_break_AT] = ACTIONS(5014), - [anon_sym_this_AT] = ACTIONS(5014), - [anon_sym_super_AT] = ACTIONS(5014), - [sym_real_literal] = ACTIONS(5014), - [sym_integer_literal] = ACTIONS(5012), - [sym_hex_literal] = ACTIONS(5014), - [sym_bin_literal] = ACTIONS(5014), - [anon_sym_true] = ACTIONS(5012), - [anon_sym_false] = ACTIONS(5012), - [anon_sym_SQUOTE] = ACTIONS(5014), - [sym__backtick_identifier] = ACTIONS(5014), - [sym__automatic_semicolon] = ACTIONS(5014), - [sym_safe_nav] = ACTIONS(5014), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5014), - }, - [3156] = { - [sym__alpha_identifier] = ACTIONS(5008), - [anon_sym_AT] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5010), - [anon_sym_as] = ACTIONS(5008), - [anon_sym_EQ] = ACTIONS(5008), - [anon_sym_fun] = ACTIONS(5008), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_RBRACE] = ACTIONS(5010), - [anon_sym_LPAREN] = ACTIONS(5010), - [anon_sym_COMMA] = ACTIONS(5010), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_where] = ACTIONS(5008), - [anon_sym_object] = ACTIONS(5008), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_SEMI] = ACTIONS(5010), - [anon_sym_get] = ACTIONS(5008), - [anon_sym_set] = ACTIONS(5008), - [anon_sym_this] = ACTIONS(5008), - [anon_sym_super] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [sym_label] = ACTIONS(5008), - [anon_sym_in] = ACTIONS(5008), - [anon_sym_DOT_DOT] = ACTIONS(5010), - [anon_sym_QMARK_COLON] = ACTIONS(5010), - [anon_sym_AMP_AMP] = ACTIONS(5010), - [anon_sym_PIPE_PIPE] = ACTIONS(5010), - [anon_sym_null] = ACTIONS(5008), - [anon_sym_if] = ACTIONS(5008), - [anon_sym_else] = ACTIONS(5008), - [anon_sym_when] = ACTIONS(5008), - [anon_sym_try] = ACTIONS(5008), - [anon_sym_throw] = ACTIONS(5008), - [anon_sym_return] = ACTIONS(5008), - [anon_sym_continue] = ACTIONS(5008), - [anon_sym_break] = ACTIONS(5008), - [anon_sym_COLON_COLON] = ACTIONS(5010), - [anon_sym_PLUS_EQ] = ACTIONS(5010), - [anon_sym_DASH_EQ] = ACTIONS(5010), - [anon_sym_STAR_EQ] = ACTIONS(5010), - [anon_sym_SLASH_EQ] = ACTIONS(5010), - [anon_sym_PERCENT_EQ] = ACTIONS(5010), - [anon_sym_BANG_EQ] = ACTIONS(5008), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5010), - [anon_sym_EQ_EQ] = ACTIONS(5008), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5010), - [anon_sym_LT_EQ] = ACTIONS(5010), - [anon_sym_GT_EQ] = ACTIONS(5010), - [anon_sym_BANGin] = ACTIONS(5010), - [anon_sym_is] = ACTIONS(5008), - [anon_sym_BANGis] = ACTIONS(5010), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_as_QMARK] = ACTIONS(5010), - [anon_sym_PLUS_PLUS] = ACTIONS(5010), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_BANG] = ACTIONS(5008), - [anon_sym_BANG_BANG] = ACTIONS(5010), - [anon_sym_data] = ACTIONS(5008), - [anon_sym_inner] = ACTIONS(5008), - [anon_sym_value] = ACTIONS(5008), - [anon_sym_expect] = ACTIONS(5008), - [anon_sym_actual] = ACTIONS(5008), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5010), - [anon_sym_continue_AT] = ACTIONS(5010), - [anon_sym_break_AT] = ACTIONS(5010), - [anon_sym_this_AT] = ACTIONS(5010), - [anon_sym_super_AT] = ACTIONS(5010), - [sym_real_literal] = ACTIONS(5010), - [sym_integer_literal] = ACTIONS(5008), - [sym_hex_literal] = ACTIONS(5010), - [sym_bin_literal] = ACTIONS(5010), - [anon_sym_true] = ACTIONS(5008), - [anon_sym_false] = ACTIONS(5008), - [anon_sym_SQUOTE] = ACTIONS(5010), - [sym__backtick_identifier] = ACTIONS(5010), - [sym__automatic_semicolon] = ACTIONS(5010), - [sym_safe_nav] = ACTIONS(5010), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5010), - }, - [3157] = { - [sym__alpha_identifier] = ACTIONS(5141), - [anon_sym_AT] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_as] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_fun] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_RBRACE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5141), - [anon_sym_where] = ACTIONS(5141), - [anon_sym_object] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_get] = ACTIONS(5141), - [anon_sym_set] = ACTIONS(5141), - [anon_sym_this] = ACTIONS(5141), - [anon_sym_super] = ACTIONS(5141), - [anon_sym_STAR] = ACTIONS(5141), - [sym_label] = ACTIONS(5141), - [anon_sym_in] = ACTIONS(5141), - [anon_sym_DOT_DOT] = ACTIONS(5143), - [anon_sym_QMARK_COLON] = ACTIONS(5143), - [anon_sym_AMP_AMP] = ACTIONS(5143), - [anon_sym_PIPE_PIPE] = ACTIONS(5143), - [anon_sym_null] = ACTIONS(5141), - [anon_sym_if] = ACTIONS(5141), - [anon_sym_else] = ACTIONS(5141), - [anon_sym_when] = ACTIONS(5141), - [anon_sym_try] = ACTIONS(5141), - [anon_sym_throw] = ACTIONS(5141), - [anon_sym_return] = ACTIONS(5141), - [anon_sym_continue] = ACTIONS(5141), - [anon_sym_break] = ACTIONS(5141), - [anon_sym_COLON_COLON] = ACTIONS(5143), - [anon_sym_PLUS_EQ] = ACTIONS(5143), - [anon_sym_DASH_EQ] = ACTIONS(5143), - [anon_sym_STAR_EQ] = ACTIONS(5143), - [anon_sym_SLASH_EQ] = ACTIONS(5143), - [anon_sym_PERCENT_EQ] = ACTIONS(5143), - [anon_sym_BANG_EQ] = ACTIONS(5141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5143), - [anon_sym_EQ_EQ] = ACTIONS(5141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5143), - [anon_sym_LT_EQ] = ACTIONS(5143), - [anon_sym_GT_EQ] = ACTIONS(5143), - [anon_sym_BANGin] = ACTIONS(5143), - [anon_sym_is] = ACTIONS(5141), - [anon_sym_BANGis] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5141), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5141), - [anon_sym_PERCENT] = ACTIONS(5141), - [anon_sym_as_QMARK] = ACTIONS(5143), - [anon_sym_PLUS_PLUS] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5141), - [anon_sym_BANG_BANG] = ACTIONS(5143), - [anon_sym_data] = ACTIONS(5141), - [anon_sym_inner] = ACTIONS(5141), - [anon_sym_value] = ACTIONS(5141), - [anon_sym_expect] = ACTIONS(5141), - [anon_sym_actual] = ACTIONS(5141), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5143), - [anon_sym_continue_AT] = ACTIONS(5143), - [anon_sym_break_AT] = ACTIONS(5143), - [anon_sym_this_AT] = ACTIONS(5143), - [anon_sym_super_AT] = ACTIONS(5143), - [sym_real_literal] = ACTIONS(5143), - [sym_integer_literal] = ACTIONS(5141), - [sym_hex_literal] = ACTIONS(5143), - [sym_bin_literal] = ACTIONS(5143), - [anon_sym_true] = ACTIONS(5141), - [anon_sym_false] = ACTIONS(5141), - [anon_sym_SQUOTE] = ACTIONS(5143), - [sym__backtick_identifier] = ACTIONS(5143), - [sym__automatic_semicolon] = ACTIONS(5143), - [sym_safe_nav] = ACTIONS(5143), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5143), - }, - [3158] = { - [sym__alpha_identifier] = ACTIONS(5000), - [anon_sym_AT] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5002), - [anon_sym_as] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_fun] = ACTIONS(5000), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_LPAREN] = ACTIONS(5002), - [anon_sym_COMMA] = ACTIONS(5002), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_where] = ACTIONS(5000), - [anon_sym_object] = ACTIONS(5000), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5002), - [anon_sym_get] = ACTIONS(5000), - [anon_sym_set] = ACTIONS(5000), - [anon_sym_this] = ACTIONS(5000), - [anon_sym_super] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(5000), - [sym_label] = ACTIONS(5000), - [anon_sym_in] = ACTIONS(5000), - [anon_sym_DOT_DOT] = ACTIONS(5002), - [anon_sym_QMARK_COLON] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_PIPE_PIPE] = ACTIONS(5002), - [anon_sym_null] = ACTIONS(5000), - [anon_sym_if] = ACTIONS(5000), - [anon_sym_else] = ACTIONS(5000), - [anon_sym_when] = ACTIONS(5000), - [anon_sym_try] = ACTIONS(5000), - [anon_sym_throw] = ACTIONS(5000), - [anon_sym_return] = ACTIONS(5000), - [anon_sym_continue] = ACTIONS(5000), - [anon_sym_break] = ACTIONS(5000), - [anon_sym_COLON_COLON] = ACTIONS(5002), - [anon_sym_PLUS_EQ] = ACTIONS(5002), - [anon_sym_DASH_EQ] = ACTIONS(5002), - [anon_sym_STAR_EQ] = ACTIONS(5002), - [anon_sym_SLASH_EQ] = ACTIONS(5002), - [anon_sym_PERCENT_EQ] = ACTIONS(5002), - [anon_sym_BANG_EQ] = ACTIONS(5000), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5002), - [anon_sym_EQ_EQ] = ACTIONS(5000), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5002), - [anon_sym_LT_EQ] = ACTIONS(5002), - [anon_sym_GT_EQ] = ACTIONS(5002), - [anon_sym_BANGin] = ACTIONS(5002), - [anon_sym_is] = ACTIONS(5000), - [anon_sym_BANGis] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(5000), - [anon_sym_as_QMARK] = ACTIONS(5002), - [anon_sym_PLUS_PLUS] = ACTIONS(5002), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_BANG] = ACTIONS(5000), - [anon_sym_BANG_BANG] = ACTIONS(5002), - [anon_sym_data] = ACTIONS(5000), - [anon_sym_inner] = ACTIONS(5000), - [anon_sym_value] = ACTIONS(5000), - [anon_sym_expect] = ACTIONS(5000), - [anon_sym_actual] = ACTIONS(5000), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5002), - [anon_sym_continue_AT] = ACTIONS(5002), - [anon_sym_break_AT] = ACTIONS(5002), - [anon_sym_this_AT] = ACTIONS(5002), - [anon_sym_super_AT] = ACTIONS(5002), - [sym_real_literal] = ACTIONS(5002), - [sym_integer_literal] = ACTIONS(5000), - [sym_hex_literal] = ACTIONS(5002), - [sym_bin_literal] = ACTIONS(5002), - [anon_sym_true] = ACTIONS(5000), - [anon_sym_false] = ACTIONS(5000), - [anon_sym_SQUOTE] = ACTIONS(5002), - [sym__backtick_identifier] = ACTIONS(5002), - [sym__automatic_semicolon] = ACTIONS(5002), - [sym_safe_nav] = ACTIONS(5002), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5002), - }, - [3159] = { - [sym_function_body] = STATE(3221), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), - }, - [3160] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4293), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), - }, - [3161] = { - [sym_type_constraints] = STATE(3356), - [sym_enum_class_body] = STATE(3604), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_RPAREN] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_DASH_GT] = ACTIONS(4425), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_while] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), + [sym__backtick_identifier] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, - [3162] = { - [sym__alpha_identifier] = ACTIONS(4996), - [anon_sym_AT] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_as] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_fun] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LPAREN] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_where] = ACTIONS(4996), - [anon_sym_object] = ACTIONS(4996), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_get] = ACTIONS(4996), - [anon_sym_set] = ACTIONS(4996), - [anon_sym_this] = ACTIONS(4996), - [anon_sym_super] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [sym_label] = ACTIONS(4996), - [anon_sym_in] = ACTIONS(4996), - [anon_sym_DOT_DOT] = ACTIONS(4998), - [anon_sym_QMARK_COLON] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_null] = ACTIONS(4996), - [anon_sym_if] = ACTIONS(4996), - [anon_sym_else] = ACTIONS(4996), - [anon_sym_when] = ACTIONS(4996), - [anon_sym_try] = ACTIONS(4996), - [anon_sym_throw] = ACTIONS(4996), - [anon_sym_return] = ACTIONS(4996), - [anon_sym_continue] = ACTIONS(4996), - [anon_sym_break] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4996), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4998), - [anon_sym_EQ_EQ] = ACTIONS(4996), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_BANGin] = ACTIONS(4998), - [anon_sym_is] = ACTIONS(4996), - [anon_sym_BANGis] = ACTIONS(4998), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_as_QMARK] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_BANG] = ACTIONS(4996), - [anon_sym_BANG_BANG] = ACTIONS(4998), - [anon_sym_data] = ACTIONS(4996), - [anon_sym_inner] = ACTIONS(4996), - [anon_sym_value] = ACTIONS(4996), - [anon_sym_expect] = ACTIONS(4996), - [anon_sym_actual] = ACTIONS(4996), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4998), - [anon_sym_continue_AT] = ACTIONS(4998), - [anon_sym_break_AT] = ACTIONS(4998), - [anon_sym_this_AT] = ACTIONS(4998), - [anon_sym_super_AT] = ACTIONS(4998), - [sym_real_literal] = ACTIONS(4998), - [sym_integer_literal] = ACTIONS(4996), - [sym_hex_literal] = ACTIONS(4998), - [sym_bin_literal] = ACTIONS(4998), - [anon_sym_true] = ACTIONS(4996), - [anon_sym_false] = ACTIONS(4996), - [anon_sym_SQUOTE] = ACTIONS(4998), - [sym__backtick_identifier] = ACTIONS(4998), - [sym__automatic_semicolon] = ACTIONS(4998), - [sym_safe_nav] = ACTIONS(4998), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4998), - }, - [3163] = { - [sym__alpha_identifier] = ACTIONS(4992), - [anon_sym_AT] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_as] = ACTIONS(4992), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_fun] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_where] = ACTIONS(4992), - [anon_sym_object] = ACTIONS(4992), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym_get] = ACTIONS(4992), - [anon_sym_set] = ACTIONS(4992), - [anon_sym_this] = ACTIONS(4992), - [anon_sym_super] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [sym_label] = ACTIONS(4992), - [anon_sym_in] = ACTIONS(4992), - [anon_sym_DOT_DOT] = ACTIONS(4994), - [anon_sym_QMARK_COLON] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_null] = ACTIONS(4992), - [anon_sym_if] = ACTIONS(4992), - [anon_sym_else] = ACTIONS(4992), - [anon_sym_when] = ACTIONS(4992), - [anon_sym_try] = ACTIONS(4992), - [anon_sym_throw] = ACTIONS(4992), - [anon_sym_return] = ACTIONS(4992), - [anon_sym_continue] = ACTIONS(4992), - [anon_sym_break] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), - [anon_sym_EQ_EQ] = ACTIONS(4992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_BANGin] = ACTIONS(4994), - [anon_sym_is] = ACTIONS(4992), - [anon_sym_BANGis] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_as_QMARK] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_BANG] = ACTIONS(4992), - [anon_sym_BANG_BANG] = ACTIONS(4994), - [anon_sym_data] = ACTIONS(4992), - [anon_sym_inner] = ACTIONS(4992), - [anon_sym_value] = ACTIONS(4992), - [anon_sym_expect] = ACTIONS(4992), - [anon_sym_actual] = ACTIONS(4992), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4994), - [anon_sym_continue_AT] = ACTIONS(4994), - [anon_sym_break_AT] = ACTIONS(4994), - [anon_sym_this_AT] = ACTIONS(4994), - [anon_sym_super_AT] = ACTIONS(4994), - [sym_real_literal] = ACTIONS(4994), - [sym_integer_literal] = ACTIONS(4992), - [sym_hex_literal] = ACTIONS(4994), - [sym_bin_literal] = ACTIONS(4994), - [anon_sym_true] = ACTIONS(4992), - [anon_sym_false] = ACTIONS(4992), - [anon_sym_SQUOTE] = ACTIONS(4994), - [sym__backtick_identifier] = ACTIONS(4994), - [sym__automatic_semicolon] = ACTIONS(4994), - [sym_safe_nav] = ACTIONS(4994), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4994), - }, - [3164] = { - [sym__alpha_identifier] = ACTIONS(4772), - [anon_sym_AT] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4772), - [anon_sym_fun] = ACTIONS(4772), - [anon_sym_LBRACE] = ACTIONS(4774), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4772), - [anon_sym_GT] = ACTIONS(4772), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_object] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4772), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_get] = ACTIONS(4772), - [anon_sym_set] = ACTIONS(4772), - [anon_sym_this] = ACTIONS(4772), - [anon_sym_super] = ACTIONS(4772), - [anon_sym_STAR] = ACTIONS(4772), - [sym_label] = ACTIONS(4772), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_QMARK_COLON] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_null] = ACTIONS(4772), - [anon_sym_if] = ACTIONS(4772), - [anon_sym_else] = ACTIONS(4772), - [anon_sym_when] = ACTIONS(4772), - [anon_sym_try] = ACTIONS(4772), - [anon_sym_throw] = ACTIONS(4772), - [anon_sym_return] = ACTIONS(4772), - [anon_sym_continue] = ACTIONS(4772), - [anon_sym_break] = ACTIONS(4772), - [anon_sym_COLON_COLON] = ACTIONS(4774), - [anon_sym_PLUS_EQ] = ACTIONS(4774), - [anon_sym_DASH_EQ] = ACTIONS(4774), - [anon_sym_STAR_EQ] = ACTIONS(4774), - [anon_sym_SLASH_EQ] = ACTIONS(4774), - [anon_sym_PERCENT_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4772), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_BANGin] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4772), - [anon_sym_BANGis] = ACTIONS(4774), - [anon_sym_PLUS] = ACTIONS(4772), - [anon_sym_DASH] = ACTIONS(4772), - [anon_sym_SLASH] = ACTIONS(4772), - [anon_sym_PERCENT] = ACTIONS(4772), - [anon_sym_as_QMARK] = ACTIONS(4774), - [anon_sym_PLUS_PLUS] = ACTIONS(4774), - [anon_sym_DASH_DASH] = ACTIONS(4774), - [anon_sym_BANG] = ACTIONS(4772), - [anon_sym_BANG_BANG] = ACTIONS(4774), - [anon_sym_data] = ACTIONS(4772), - [anon_sym_inner] = ACTIONS(4772), - [anon_sym_value] = ACTIONS(4772), - [anon_sym_expect] = ACTIONS(4772), - [anon_sym_actual] = ACTIONS(4772), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4774), - [anon_sym_continue_AT] = ACTIONS(4774), - [anon_sym_break_AT] = ACTIONS(4774), - [anon_sym_this_AT] = ACTIONS(4774), - [anon_sym_super_AT] = ACTIONS(4774), - [sym_real_literal] = ACTIONS(4774), - [sym_integer_literal] = ACTIONS(4772), - [sym_hex_literal] = ACTIONS(4774), - [sym_bin_literal] = ACTIONS(4774), - [anon_sym_true] = ACTIONS(4772), - [anon_sym_false] = ACTIONS(4772), - [anon_sym_SQUOTE] = ACTIONS(4774), - [sym__backtick_identifier] = ACTIONS(4774), - [sym__automatic_semicolon] = ACTIONS(4774), - [sym_safe_nav] = ACTIONS(4774), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4774), - }, - [3165] = { - [sym_class_body] = STATE(3652), - [sym_type_constraints] = STATE(3394), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_RBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_RPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [anon_sym_DASH_GT] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_while] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [3192] = { + [sym_function_body] = STATE(3457), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_RBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_RPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [anon_sym_DASH_GT] = ACTIONS(4441), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_while] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), }, - [3166] = { - [sym__alpha_identifier] = ACTIONS(5123), - [anon_sym_AT] = ACTIONS(5125), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_as] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_fun] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5125), - [anon_sym_RBRACE] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5125), - [anon_sym_COMMA] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5123), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_where] = ACTIONS(5123), - [anon_sym_object] = ACTIONS(5123), - [anon_sym_DOT] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5125), - [anon_sym_get] = ACTIONS(5123), - [anon_sym_set] = ACTIONS(5123), - [anon_sym_this] = ACTIONS(5123), - [anon_sym_super] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(5123), - [anon_sym_in] = ACTIONS(5123), - [anon_sym_DOT_DOT] = ACTIONS(5125), - [anon_sym_QMARK_COLON] = ACTIONS(5125), - [anon_sym_AMP_AMP] = ACTIONS(5125), - [anon_sym_PIPE_PIPE] = ACTIONS(5125), - [anon_sym_null] = ACTIONS(5123), - [anon_sym_if] = ACTIONS(5123), - [anon_sym_else] = ACTIONS(5123), - [anon_sym_when] = ACTIONS(5123), - [anon_sym_try] = ACTIONS(5123), - [anon_sym_throw] = ACTIONS(5123), - [anon_sym_return] = ACTIONS(5123), - [anon_sym_continue] = ACTIONS(5123), - [anon_sym_break] = ACTIONS(5123), - [anon_sym_COLON_COLON] = ACTIONS(5125), - [anon_sym_PLUS_EQ] = ACTIONS(5125), - [anon_sym_DASH_EQ] = ACTIONS(5125), - [anon_sym_STAR_EQ] = ACTIONS(5125), - [anon_sym_SLASH_EQ] = ACTIONS(5125), - [anon_sym_PERCENT_EQ] = ACTIONS(5125), - [anon_sym_BANG_EQ] = ACTIONS(5123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5125), - [anon_sym_EQ_EQ] = ACTIONS(5123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5125), - [anon_sym_LT_EQ] = ACTIONS(5125), - [anon_sym_GT_EQ] = ACTIONS(5125), - [anon_sym_BANGin] = ACTIONS(5125), - [anon_sym_is] = ACTIONS(5123), - [anon_sym_BANGis] = ACTIONS(5125), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5123), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(5125), - [anon_sym_PLUS_PLUS] = ACTIONS(5125), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_BANG_BANG] = ACTIONS(5125), - [anon_sym_data] = ACTIONS(5123), - [anon_sym_inner] = ACTIONS(5123), - [anon_sym_value] = ACTIONS(5123), - [anon_sym_expect] = ACTIONS(5123), - [anon_sym_actual] = ACTIONS(5123), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5125), - [anon_sym_continue_AT] = ACTIONS(5125), - [anon_sym_break_AT] = ACTIONS(5125), - [anon_sym_this_AT] = ACTIONS(5125), - [anon_sym_super_AT] = ACTIONS(5125), - [sym_real_literal] = ACTIONS(5125), - [sym_integer_literal] = ACTIONS(5123), - [sym_hex_literal] = ACTIONS(5125), - [sym_bin_literal] = ACTIONS(5125), - [anon_sym_true] = ACTIONS(5123), - [anon_sym_false] = ACTIONS(5123), - [anon_sym_SQUOTE] = ACTIONS(5125), - [sym__backtick_identifier] = ACTIONS(5125), - [sym__automatic_semicolon] = ACTIONS(5125), - [sym_safe_nav] = ACTIONS(5125), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5125), - }, - [3167] = { - [sym__alpha_identifier] = ACTIONS(5119), - [anon_sym_AT] = ACTIONS(5121), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_as] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_fun] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5121), - [anon_sym_RBRACE] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5121), - [anon_sym_COMMA] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5119), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_object] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5121), - [anon_sym_get] = ACTIONS(5119), - [anon_sym_set] = ACTIONS(5119), - [anon_sym_this] = ACTIONS(5119), - [anon_sym_super] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [sym_label] = ACTIONS(5119), - [anon_sym_in] = ACTIONS(5119), - [anon_sym_DOT_DOT] = ACTIONS(5121), - [anon_sym_QMARK_COLON] = ACTIONS(5121), - [anon_sym_AMP_AMP] = ACTIONS(5121), - [anon_sym_PIPE_PIPE] = ACTIONS(5121), - [anon_sym_null] = ACTIONS(5119), - [anon_sym_if] = ACTIONS(5119), - [anon_sym_else] = ACTIONS(5119), - [anon_sym_when] = ACTIONS(5119), - [anon_sym_try] = ACTIONS(5119), - [anon_sym_throw] = ACTIONS(5119), - [anon_sym_return] = ACTIONS(5119), - [anon_sym_continue] = ACTIONS(5119), - [anon_sym_break] = ACTIONS(5119), - [anon_sym_COLON_COLON] = ACTIONS(5121), - [anon_sym_PLUS_EQ] = ACTIONS(5121), - [anon_sym_DASH_EQ] = ACTIONS(5121), - [anon_sym_STAR_EQ] = ACTIONS(5121), - [anon_sym_SLASH_EQ] = ACTIONS(5121), - [anon_sym_PERCENT_EQ] = ACTIONS(5121), - [anon_sym_BANG_EQ] = ACTIONS(5119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5121), - [anon_sym_EQ_EQ] = ACTIONS(5119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5121), - [anon_sym_LT_EQ] = ACTIONS(5121), - [anon_sym_GT_EQ] = ACTIONS(5121), - [anon_sym_BANGin] = ACTIONS(5121), - [anon_sym_is] = ACTIONS(5119), - [anon_sym_BANGis] = ACTIONS(5121), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_as_QMARK] = ACTIONS(5121), - [anon_sym_PLUS_PLUS] = ACTIONS(5121), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_BANG_BANG] = ACTIONS(5121), - [anon_sym_data] = ACTIONS(5119), - [anon_sym_inner] = ACTIONS(5119), - [anon_sym_value] = ACTIONS(5119), - [anon_sym_expect] = ACTIONS(5119), - [anon_sym_actual] = ACTIONS(5119), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5121), - [anon_sym_continue_AT] = ACTIONS(5121), - [anon_sym_break_AT] = ACTIONS(5121), - [anon_sym_this_AT] = ACTIONS(5121), - [anon_sym_super_AT] = ACTIONS(5121), - [sym_real_literal] = ACTIONS(5121), - [sym_integer_literal] = ACTIONS(5119), - [sym_hex_literal] = ACTIONS(5121), - [sym_bin_literal] = ACTIONS(5121), - [anon_sym_true] = ACTIONS(5119), - [anon_sym_false] = ACTIONS(5119), - [anon_sym_SQUOTE] = ACTIONS(5121), - [sym__backtick_identifier] = ACTIONS(5121), - [sym__automatic_semicolon] = ACTIONS(5121), - [sym_safe_nav] = ACTIONS(5121), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5121), - }, - [3168] = { - [sym__alpha_identifier] = ACTIONS(4988), - [anon_sym_AT] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_as] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_fun] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_LPAREN] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_where] = ACTIONS(4988), - [anon_sym_object] = ACTIONS(4988), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_SEMI] = ACTIONS(4990), - [anon_sym_get] = ACTIONS(4988), - [anon_sym_set] = ACTIONS(4988), - [anon_sym_this] = ACTIONS(4988), - [anon_sym_super] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [sym_label] = ACTIONS(4988), - [anon_sym_in] = ACTIONS(4988), - [anon_sym_DOT_DOT] = ACTIONS(4990), - [anon_sym_QMARK_COLON] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_null] = ACTIONS(4988), - [anon_sym_if] = ACTIONS(4988), - [anon_sym_else] = ACTIONS(4988), - [anon_sym_when] = ACTIONS(4988), - [anon_sym_try] = ACTIONS(4988), - [anon_sym_throw] = ACTIONS(4988), - [anon_sym_return] = ACTIONS(4988), - [anon_sym_continue] = ACTIONS(4988), - [anon_sym_break] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4988), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4990), - [anon_sym_EQ_EQ] = ACTIONS(4988), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_BANGin] = ACTIONS(4990), - [anon_sym_is] = ACTIONS(4988), - [anon_sym_BANGis] = ACTIONS(4990), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_as_QMARK] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4988), - [anon_sym_BANG_BANG] = ACTIONS(4990), - [anon_sym_data] = ACTIONS(4988), - [anon_sym_inner] = ACTIONS(4988), - [anon_sym_value] = ACTIONS(4988), - [anon_sym_expect] = ACTIONS(4988), - [anon_sym_actual] = ACTIONS(4988), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4990), - [anon_sym_continue_AT] = ACTIONS(4990), - [anon_sym_break_AT] = ACTIONS(4990), - [anon_sym_this_AT] = ACTIONS(4990), - [anon_sym_super_AT] = ACTIONS(4990), - [sym_real_literal] = ACTIONS(4990), - [sym_integer_literal] = ACTIONS(4988), - [sym_hex_literal] = ACTIONS(4990), - [sym_bin_literal] = ACTIONS(4990), - [anon_sym_true] = ACTIONS(4988), - [anon_sym_false] = ACTIONS(4988), - [anon_sym_SQUOTE] = ACTIONS(4990), - [sym__backtick_identifier] = ACTIONS(4990), - [sym__automatic_semicolon] = ACTIONS(4990), - [sym_safe_nav] = ACTIONS(4990), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4990), - }, - [3169] = { - [sym_type_constraints] = STATE(3392), - [sym_enum_class_body] = STATE(3652), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_RBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_RPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [anon_sym_DASH_GT] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_while] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [3193] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_RBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_constructor] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4009), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), [sym_multiline_comment] = ACTIONS(3), }, - [3170] = { - [sym__alpha_identifier] = ACTIONS(4984), - [anon_sym_AT] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4986), - [anon_sym_as] = ACTIONS(4984), - [anon_sym_EQ] = ACTIONS(4984), - [anon_sym_fun] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4986), - [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_LPAREN] = ACTIONS(4986), - [anon_sym_COMMA] = ACTIONS(4986), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_GT] = ACTIONS(4984), - [anon_sym_where] = ACTIONS(4984), - [anon_sym_object] = ACTIONS(4984), - [anon_sym_DOT] = ACTIONS(4984), - [anon_sym_SEMI] = ACTIONS(4986), - [anon_sym_get] = ACTIONS(4984), - [anon_sym_set] = ACTIONS(4984), - [anon_sym_this] = ACTIONS(4984), - [anon_sym_super] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4984), - [sym_label] = ACTIONS(4984), - [anon_sym_in] = ACTIONS(4984), - [anon_sym_DOT_DOT] = ACTIONS(4986), - [anon_sym_QMARK_COLON] = ACTIONS(4986), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_null] = ACTIONS(4984), - [anon_sym_if] = ACTIONS(4984), - [anon_sym_else] = ACTIONS(4984), - [anon_sym_when] = ACTIONS(4984), - [anon_sym_try] = ACTIONS(4984), - [anon_sym_throw] = ACTIONS(4984), - [anon_sym_return] = ACTIONS(4984), - [anon_sym_continue] = ACTIONS(4984), - [anon_sym_break] = ACTIONS(4984), - [anon_sym_COLON_COLON] = ACTIONS(4986), - [anon_sym_PLUS_EQ] = ACTIONS(4986), - [anon_sym_DASH_EQ] = ACTIONS(4986), - [anon_sym_STAR_EQ] = ACTIONS(4986), - [anon_sym_SLASH_EQ] = ACTIONS(4986), - [anon_sym_PERCENT_EQ] = ACTIONS(4986), - [anon_sym_BANG_EQ] = ACTIONS(4984), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4986), - [anon_sym_EQ_EQ] = ACTIONS(4984), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4986), - [anon_sym_LT_EQ] = ACTIONS(4986), - [anon_sym_GT_EQ] = ACTIONS(4986), - [anon_sym_BANGin] = ACTIONS(4986), - [anon_sym_is] = ACTIONS(4984), - [anon_sym_BANGis] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4984), - [anon_sym_as_QMARK] = ACTIONS(4986), - [anon_sym_PLUS_PLUS] = ACTIONS(4986), - [anon_sym_DASH_DASH] = ACTIONS(4986), - [anon_sym_BANG] = ACTIONS(4984), - [anon_sym_BANG_BANG] = ACTIONS(4986), - [anon_sym_data] = ACTIONS(4984), - [anon_sym_inner] = ACTIONS(4984), - [anon_sym_value] = ACTIONS(4984), - [anon_sym_expect] = ACTIONS(4984), - [anon_sym_actual] = ACTIONS(4984), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4986), - [anon_sym_continue_AT] = ACTIONS(4986), - [anon_sym_break_AT] = ACTIONS(4986), - [anon_sym_this_AT] = ACTIONS(4986), - [anon_sym_super_AT] = ACTIONS(4986), - [sym_real_literal] = ACTIONS(4986), - [sym_integer_literal] = ACTIONS(4984), - [sym_hex_literal] = ACTIONS(4986), - [sym_bin_literal] = ACTIONS(4986), - [anon_sym_true] = ACTIONS(4984), - [anon_sym_false] = ACTIONS(4984), - [anon_sym_SQUOTE] = ACTIONS(4986), - [sym__backtick_identifier] = ACTIONS(4986), - [sym__automatic_semicolon] = ACTIONS(4986), - [sym_safe_nav] = ACTIONS(4986), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4986), - }, - [3171] = { - [sym__alpha_identifier] = ACTIONS(4980), - [anon_sym_AT] = ACTIONS(4982), - [anon_sym_LBRACK] = ACTIONS(4982), - [anon_sym_as] = ACTIONS(4980), - [anon_sym_EQ] = ACTIONS(4980), - [anon_sym_fun] = ACTIONS(4980), - [anon_sym_LBRACE] = ACTIONS(4982), - [anon_sym_RBRACE] = ACTIONS(4982), - [anon_sym_LPAREN] = ACTIONS(4982), - [anon_sym_COMMA] = ACTIONS(4982), - [anon_sym_LT] = ACTIONS(4980), - [anon_sym_GT] = ACTIONS(4980), - [anon_sym_where] = ACTIONS(4980), - [anon_sym_object] = ACTIONS(4980), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_SEMI] = ACTIONS(4982), - [anon_sym_get] = ACTIONS(4980), - [anon_sym_set] = ACTIONS(4980), - [anon_sym_this] = ACTIONS(4980), - [anon_sym_super] = ACTIONS(4980), - [anon_sym_STAR] = ACTIONS(4980), - [sym_label] = ACTIONS(4980), - [anon_sym_in] = ACTIONS(4980), - [anon_sym_DOT_DOT] = ACTIONS(4982), - [anon_sym_QMARK_COLON] = ACTIONS(4982), - [anon_sym_AMP_AMP] = ACTIONS(4982), - [anon_sym_PIPE_PIPE] = ACTIONS(4982), - [anon_sym_null] = ACTIONS(4980), - [anon_sym_if] = ACTIONS(4980), - [anon_sym_else] = ACTIONS(4980), - [anon_sym_when] = ACTIONS(4980), - [anon_sym_try] = ACTIONS(4980), - [anon_sym_throw] = ACTIONS(4980), - [anon_sym_return] = ACTIONS(4980), - [anon_sym_continue] = ACTIONS(4980), - [anon_sym_break] = ACTIONS(4980), - [anon_sym_COLON_COLON] = ACTIONS(4982), - [anon_sym_PLUS_EQ] = ACTIONS(4982), - [anon_sym_DASH_EQ] = ACTIONS(4982), - [anon_sym_STAR_EQ] = ACTIONS(4982), - [anon_sym_SLASH_EQ] = ACTIONS(4982), - [anon_sym_PERCENT_EQ] = ACTIONS(4982), - [anon_sym_BANG_EQ] = ACTIONS(4980), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4982), - [anon_sym_EQ_EQ] = ACTIONS(4980), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4982), - [anon_sym_LT_EQ] = ACTIONS(4982), - [anon_sym_GT_EQ] = ACTIONS(4982), - [anon_sym_BANGin] = ACTIONS(4982), - [anon_sym_is] = ACTIONS(4980), - [anon_sym_BANGis] = ACTIONS(4982), - [anon_sym_PLUS] = ACTIONS(4980), - [anon_sym_DASH] = ACTIONS(4980), - [anon_sym_SLASH] = ACTIONS(4980), - [anon_sym_PERCENT] = ACTIONS(4980), - [anon_sym_as_QMARK] = ACTIONS(4982), - [anon_sym_PLUS_PLUS] = ACTIONS(4982), - [anon_sym_DASH_DASH] = ACTIONS(4982), - [anon_sym_BANG] = ACTIONS(4980), - [anon_sym_BANG_BANG] = ACTIONS(4982), - [anon_sym_data] = ACTIONS(4980), - [anon_sym_inner] = ACTIONS(4980), - [anon_sym_value] = ACTIONS(4980), - [anon_sym_expect] = ACTIONS(4980), - [anon_sym_actual] = ACTIONS(4980), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4982), - [anon_sym_continue_AT] = ACTIONS(4982), - [anon_sym_break_AT] = ACTIONS(4982), - [anon_sym_this_AT] = ACTIONS(4982), - [anon_sym_super_AT] = ACTIONS(4982), - [sym_real_literal] = ACTIONS(4982), - [sym_integer_literal] = ACTIONS(4980), - [sym_hex_literal] = ACTIONS(4982), - [sym_bin_literal] = ACTIONS(4982), - [anon_sym_true] = ACTIONS(4980), - [anon_sym_false] = ACTIONS(4980), - [anon_sym_SQUOTE] = ACTIONS(4982), - [sym__backtick_identifier] = ACTIONS(4982), - [sym__automatic_semicolon] = ACTIONS(4982), - [sym_safe_nav] = ACTIONS(4982), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4982), - }, - [3172] = { - [sym__alpha_identifier] = ACTIONS(4030), - [anon_sym_AT] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_as] = ACTIONS(4030), - [anon_sym_EQ] = ACTIONS(4030), - [anon_sym_fun] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_RBRACE] = ACTIONS(4032), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_COMMA] = ACTIONS(4032), - [anon_sym_LT] = ACTIONS(4030), - [anon_sym_GT] = ACTIONS(4030), - [anon_sym_where] = ACTIONS(4030), - [anon_sym_object] = ACTIONS(4030), - [anon_sym_DOT] = ACTIONS(4030), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym_get] = ACTIONS(4030), - [anon_sym_set] = ACTIONS(4030), - [anon_sym_this] = ACTIONS(4030), - [anon_sym_super] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4030), - [sym_label] = ACTIONS(4030), - [anon_sym_in] = ACTIONS(4030), - [anon_sym_DOT_DOT] = ACTIONS(4032), - [anon_sym_QMARK_COLON] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4032), - [anon_sym_null] = ACTIONS(4030), - [anon_sym_if] = ACTIONS(4030), - [anon_sym_else] = ACTIONS(4030), - [anon_sym_when] = ACTIONS(4030), - [anon_sym_try] = ACTIONS(4030), - [anon_sym_throw] = ACTIONS(4030), - [anon_sym_return] = ACTIONS(4030), - [anon_sym_continue] = ACTIONS(4030), - [anon_sym_break] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(4032), - [anon_sym_PLUS_EQ] = ACTIONS(4032), - [anon_sym_DASH_EQ] = ACTIONS(4032), - [anon_sym_STAR_EQ] = ACTIONS(4032), - [anon_sym_SLASH_EQ] = ACTIONS(4032), - [anon_sym_PERCENT_EQ] = ACTIONS(4032), - [anon_sym_BANG_EQ] = ACTIONS(4030), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4032), - [anon_sym_EQ_EQ] = ACTIONS(4030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4032), - [anon_sym_LT_EQ] = ACTIONS(4032), - [anon_sym_GT_EQ] = ACTIONS(4032), - [anon_sym_BANGin] = ACTIONS(4032), - [anon_sym_is] = ACTIONS(4030), - [anon_sym_BANGis] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_SLASH] = ACTIONS(4030), - [anon_sym_PERCENT] = ACTIONS(4030), - [anon_sym_as_QMARK] = ACTIONS(4032), - [anon_sym_PLUS_PLUS] = ACTIONS(4032), - [anon_sym_DASH_DASH] = ACTIONS(4032), - [anon_sym_BANG] = ACTIONS(4030), - [anon_sym_BANG_BANG] = ACTIONS(4032), - [anon_sym_data] = ACTIONS(4030), - [anon_sym_inner] = ACTIONS(4030), - [anon_sym_value] = ACTIONS(4030), - [anon_sym_expect] = ACTIONS(4030), - [anon_sym_actual] = ACTIONS(4030), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4032), - [anon_sym_continue_AT] = ACTIONS(4032), - [anon_sym_break_AT] = ACTIONS(4032), - [anon_sym_this_AT] = ACTIONS(4032), - [anon_sym_super_AT] = ACTIONS(4032), - [sym_real_literal] = ACTIONS(4032), - [sym_integer_literal] = ACTIONS(4030), - [sym_hex_literal] = ACTIONS(4032), - [sym_bin_literal] = ACTIONS(4032), - [anon_sym_true] = ACTIONS(4030), - [anon_sym_false] = ACTIONS(4030), - [anon_sym_SQUOTE] = ACTIONS(4032), - [sym__backtick_identifier] = ACTIONS(4032), - [sym__automatic_semicolon] = ACTIONS(4032), - [sym_safe_nav] = ACTIONS(4032), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4032), - }, - [3173] = { - [sym__alpha_identifier] = ACTIONS(4968), - [anon_sym_AT] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(4968), - [anon_sym_EQ] = ACTIONS(4968), - [anon_sym_fun] = ACTIONS(4968), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(4968), - [anon_sym_GT] = ACTIONS(4968), - [anon_sym_where] = ACTIONS(4968), - [anon_sym_object] = ACTIONS(4968), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym_get] = ACTIONS(4968), - [anon_sym_set] = ACTIONS(4968), - [anon_sym_this] = ACTIONS(4968), - [anon_sym_super] = ACTIONS(4968), - [anon_sym_STAR] = ACTIONS(4968), - [sym_label] = ACTIONS(4968), - [anon_sym_in] = ACTIONS(4968), - [anon_sym_DOT_DOT] = ACTIONS(4970), - [anon_sym_QMARK_COLON] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4970), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_null] = ACTIONS(4968), - [anon_sym_if] = ACTIONS(4968), - [anon_sym_else] = ACTIONS(4968), - [anon_sym_when] = ACTIONS(4968), - [anon_sym_try] = ACTIONS(4968), - [anon_sym_throw] = ACTIONS(4968), - [anon_sym_return] = ACTIONS(4968), - [anon_sym_continue] = ACTIONS(4968), - [anon_sym_break] = ACTIONS(4968), - [anon_sym_COLON_COLON] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4970), - [anon_sym_DASH_EQ] = ACTIONS(4970), - [anon_sym_STAR_EQ] = ACTIONS(4970), - [anon_sym_SLASH_EQ] = ACTIONS(4970), - [anon_sym_PERCENT_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4968), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4970), - [anon_sym_EQ_EQ] = ACTIONS(4968), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4970), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_BANGin] = ACTIONS(4970), - [anon_sym_is] = ACTIONS(4968), - [anon_sym_BANGis] = ACTIONS(4970), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4968), - [anon_sym_as_QMARK] = ACTIONS(4970), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_BANG] = ACTIONS(4968), - [anon_sym_BANG_BANG] = ACTIONS(4970), - [anon_sym_data] = ACTIONS(4968), - [anon_sym_inner] = ACTIONS(4968), - [anon_sym_value] = ACTIONS(4968), - [anon_sym_expect] = ACTIONS(4968), - [anon_sym_actual] = ACTIONS(4968), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4970), - [anon_sym_continue_AT] = ACTIONS(4970), - [anon_sym_break_AT] = ACTIONS(4970), - [anon_sym_this_AT] = ACTIONS(4970), - [anon_sym_super_AT] = ACTIONS(4970), - [sym_real_literal] = ACTIONS(4970), - [sym_integer_literal] = ACTIONS(4968), - [sym_hex_literal] = ACTIONS(4970), - [sym_bin_literal] = ACTIONS(4970), - [anon_sym_true] = ACTIONS(4968), - [anon_sym_false] = ACTIONS(4968), - [anon_sym_SQUOTE] = ACTIONS(4970), - [sym__backtick_identifier] = ACTIONS(4970), - [sym__automatic_semicolon] = ACTIONS(4970), - [sym_safe_nav] = ACTIONS(4970), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4970), - }, - [3174] = { - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_fun] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(4459), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(4457), - [anon_sym_object] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_this] = ACTIONS(4457), - [anon_sym_super] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [sym_label] = ACTIONS(4457), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_null] = ACTIONS(4457), - [anon_sym_if] = ACTIONS(4457), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_when] = ACTIONS(4457), - [anon_sym_try] = ACTIONS(4457), - [anon_sym_throw] = ACTIONS(4457), - [anon_sym_return] = ACTIONS(4457), - [anon_sym_continue] = ACTIONS(4457), - [anon_sym_break] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4459), - [anon_sym_continue_AT] = ACTIONS(4459), - [anon_sym_break_AT] = ACTIONS(4459), - [anon_sym_this_AT] = ACTIONS(4459), - [anon_sym_super_AT] = ACTIONS(4459), - [sym_real_literal] = ACTIONS(4459), - [sym_integer_literal] = ACTIONS(4457), - [sym_hex_literal] = ACTIONS(4459), - [sym_bin_literal] = ACTIONS(4459), - [anon_sym_true] = ACTIONS(4457), - [anon_sym_false] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4459), - [sym__backtick_identifier] = ACTIONS(4459), - [sym__automatic_semicolon] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4459), - }, - [3175] = { - [sym__alpha_identifier] = ACTIONS(4964), - [anon_sym_AT] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_as] = ACTIONS(4964), - [anon_sym_EQ] = ACTIONS(4964), - [anon_sym_fun] = ACTIONS(4964), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_RBRACE] = ACTIONS(4966), - [anon_sym_LPAREN] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_where] = ACTIONS(4964), - [anon_sym_object] = ACTIONS(4964), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_SEMI] = ACTIONS(4966), - [anon_sym_get] = ACTIONS(4964), - [anon_sym_set] = ACTIONS(4964), - [anon_sym_this] = ACTIONS(4964), - [anon_sym_super] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4964), - [sym_label] = ACTIONS(4964), - [anon_sym_in] = ACTIONS(4964), - [anon_sym_DOT_DOT] = ACTIONS(4966), - [anon_sym_QMARK_COLON] = ACTIONS(4966), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_null] = ACTIONS(4964), - [anon_sym_if] = ACTIONS(4964), - [anon_sym_else] = ACTIONS(4964), - [anon_sym_when] = ACTIONS(4964), - [anon_sym_try] = ACTIONS(4964), - [anon_sym_throw] = ACTIONS(4964), - [anon_sym_return] = ACTIONS(4964), - [anon_sym_continue] = ACTIONS(4964), - [anon_sym_break] = ACTIONS(4964), - [anon_sym_COLON_COLON] = ACTIONS(4966), - [anon_sym_PLUS_EQ] = ACTIONS(4966), - [anon_sym_DASH_EQ] = ACTIONS(4966), - [anon_sym_STAR_EQ] = ACTIONS(4966), - [anon_sym_SLASH_EQ] = ACTIONS(4966), - [anon_sym_PERCENT_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4966), - [anon_sym_EQ_EQ] = ACTIONS(4964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4966), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_BANGin] = ACTIONS(4966), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_BANGis] = ACTIONS(4966), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4964), - [anon_sym_as_QMARK] = ACTIONS(4966), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_BANG] = ACTIONS(4964), - [anon_sym_BANG_BANG] = ACTIONS(4966), - [anon_sym_data] = ACTIONS(4964), - [anon_sym_inner] = ACTIONS(4964), - [anon_sym_value] = ACTIONS(4964), - [anon_sym_expect] = ACTIONS(4964), - [anon_sym_actual] = ACTIONS(4964), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4966), - [anon_sym_continue_AT] = ACTIONS(4966), - [anon_sym_break_AT] = ACTIONS(4966), - [anon_sym_this_AT] = ACTIONS(4966), - [anon_sym_super_AT] = ACTIONS(4966), - [sym_real_literal] = ACTIONS(4966), - [sym_integer_literal] = ACTIONS(4964), - [sym_hex_literal] = ACTIONS(4966), - [sym_bin_literal] = ACTIONS(4966), - [anon_sym_true] = ACTIONS(4964), - [anon_sym_false] = ACTIONS(4964), - [anon_sym_SQUOTE] = ACTIONS(4966), - [sym__backtick_identifier] = ACTIONS(4966), - [sym__automatic_semicolon] = ACTIONS(4966), - [sym_safe_nav] = ACTIONS(4966), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4966), + [3194] = { + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, - [3176] = { - [sym_class_body] = STATE(3666), - [sym_type_constraints] = STATE(3388), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_RBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_RPAREN] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [anon_sym_DASH_GT] = ACTIONS(4467), - [sym_label] = ACTIONS(4467), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_while] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_suspend] = ACTIONS(4465), - [anon_sym_sealed] = ACTIONS(4465), - [anon_sym_annotation] = ACTIONS(4465), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_override] = ACTIONS(4465), - [anon_sym_lateinit] = ACTIONS(4465), - [anon_sym_public] = ACTIONS(4465), - [anon_sym_private] = ACTIONS(4465), - [anon_sym_internal] = ACTIONS(4465), - [anon_sym_protected] = ACTIONS(4465), - [anon_sym_tailrec] = ACTIONS(4465), - [anon_sym_operator] = ACTIONS(4465), - [anon_sym_infix] = ACTIONS(4465), - [anon_sym_inline] = ACTIONS(4465), - [anon_sym_external] = ACTIONS(4465), - [sym_property_modifier] = ACTIONS(4465), - [anon_sym_abstract] = ACTIONS(4465), - [anon_sym_final] = ACTIONS(4465), - [anon_sym_open] = ACTIONS(4465), - [anon_sym_vararg] = ACTIONS(4465), - [anon_sym_noinline] = ACTIONS(4465), - [anon_sym_crossinline] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), - [sym_multiline_comment] = ACTIONS(3), + [3195] = { + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4137), + [anon_sym_LBRACE] = ACTIONS(4139), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, - [3177] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4236), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(6744), - [anon_sym_COMMA] = ACTIONS(4239), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_where] = ACTIONS(4236), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4239), - [anon_sym_DASH_EQ] = ACTIONS(4239), - [anon_sym_STAR_EQ] = ACTIONS(4239), - [anon_sym_SLASH_EQ] = ACTIONS(4239), - [anon_sym_PERCENT_EQ] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), + [3196] = { + [sym__alpha_identifier] = ACTIONS(4962), + [anon_sym_AT] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4962), + [anon_sym_EQ] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_RBRACE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4962), + [anon_sym_where] = ACTIONS(4962), + [anon_sym_object] = ACTIONS(4962), + [anon_sym_fun] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_get] = ACTIONS(4962), + [anon_sym_set] = ACTIONS(4962), + [anon_sym_this] = ACTIONS(4962), + [anon_sym_super] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [sym_label] = ACTIONS(4962), + [anon_sym_in] = ACTIONS(4962), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_QMARK_COLON] = ACTIONS(4964), + [anon_sym_AMP_AMP] = ACTIONS(4964), + [anon_sym_PIPE_PIPE] = ACTIONS(4964), + [anon_sym_null] = ACTIONS(4962), + [anon_sym_if] = ACTIONS(4962), + [anon_sym_else] = ACTIONS(4962), + [anon_sym_when] = ACTIONS(4962), + [anon_sym_try] = ACTIONS(4962), + [anon_sym_throw] = ACTIONS(4962), + [anon_sym_return] = ACTIONS(4962), + [anon_sym_continue] = ACTIONS(4962), + [anon_sym_break] = ACTIONS(4962), + [anon_sym_COLON_COLON] = ACTIONS(4964), + [anon_sym_PLUS_EQ] = ACTIONS(4964), + [anon_sym_DASH_EQ] = ACTIONS(4964), + [anon_sym_STAR_EQ] = ACTIONS(4964), + [anon_sym_SLASH_EQ] = ACTIONS(4964), + [anon_sym_PERCENT_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4964), + [anon_sym_LT_EQ] = ACTIONS(4964), + [anon_sym_GT_EQ] = ACTIONS(4964), + [anon_sym_BANGin] = ACTIONS(4964), + [anon_sym_is] = ACTIONS(4962), + [anon_sym_BANGis] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_PERCENT] = ACTIONS(4962), + [anon_sym_as_QMARK] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4962), + [anon_sym_BANG_BANG] = ACTIONS(4964), + [anon_sym_data] = ACTIONS(4962), + [anon_sym_inner] = ACTIONS(4962), + [anon_sym_value] = ACTIONS(4962), + [anon_sym_expect] = ACTIONS(4962), + [anon_sym_actual] = ACTIONS(4962), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4964), + [anon_sym_continue_AT] = ACTIONS(4964), + [anon_sym_break_AT] = ACTIONS(4964), + [anon_sym_this_AT] = ACTIONS(4964), + [anon_sym_super_AT] = ACTIONS(4964), + [sym_real_literal] = ACTIONS(4964), + [sym_integer_literal] = ACTIONS(4962), + [sym_hex_literal] = ACTIONS(4964), + [sym_bin_literal] = ACTIONS(4964), + [anon_sym_true] = ACTIONS(4962), + [anon_sym_false] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4964), + [sym__backtick_identifier] = ACTIONS(4964), + [sym__automatic_semicolon] = ACTIONS(4964), + [sym_safe_nav] = ACTIONS(4964), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4964), }, - [3178] = { - [sym__alpha_identifier] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_as] = ACTIONS(209), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_fun] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_where] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(209), - [anon_sym_set] = ACTIONS(209), - [anon_sym_this] = ACTIONS(209), - [anon_sym_super] = ACTIONS(209), - [anon_sym_STAR] = ACTIONS(209), - [sym_label] = ACTIONS(209), - [anon_sym_in] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(207), - [anon_sym_QMARK_COLON] = ACTIONS(207), - [anon_sym_AMP_AMP] = ACTIONS(207), - [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(209), - [anon_sym_if] = ACTIONS(209), - [anon_sym_else] = ACTIONS(209), - [anon_sym_when] = ACTIONS(209), - [anon_sym_try] = ACTIONS(209), - [anon_sym_throw] = ACTIONS(209), - [anon_sym_return] = ACTIONS(209), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_break] = ACTIONS(209), - [anon_sym_COLON_COLON] = ACTIONS(207), - [anon_sym_PLUS_EQ] = ACTIONS(207), - [anon_sym_DASH_EQ] = ACTIONS(207), - [anon_sym_STAR_EQ] = ACTIONS(207), - [anon_sym_SLASH_EQ] = ACTIONS(207), - [anon_sym_PERCENT_EQ] = ACTIONS(207), - [anon_sym_BANG_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(207), - [anon_sym_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(207), - [anon_sym_LT_EQ] = ACTIONS(207), - [anon_sym_GT_EQ] = ACTIONS(207), - [anon_sym_BANGin] = ACTIONS(207), - [anon_sym_is] = ACTIONS(209), - [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(209), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(207), - [anon_sym_DASH_DASH] = ACTIONS(207), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_BANG_BANG] = ACTIONS(207), - [anon_sym_data] = ACTIONS(209), - [anon_sym_inner] = ACTIONS(209), - [anon_sym_value] = ACTIONS(209), - [anon_sym_expect] = ACTIONS(209), - [anon_sym_actual] = ACTIONS(209), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(207), - [anon_sym_continue_AT] = ACTIONS(207), - [anon_sym_break_AT] = ACTIONS(207), - [anon_sym_this_AT] = ACTIONS(207), - [anon_sym_super_AT] = ACTIONS(207), - [sym_real_literal] = ACTIONS(207), - [sym_integer_literal] = ACTIONS(209), - [sym_hex_literal] = ACTIONS(207), - [sym_bin_literal] = ACTIONS(207), - [anon_sym_true] = ACTIONS(209), - [anon_sym_false] = ACTIONS(209), - [anon_sym_SQUOTE] = ACTIONS(207), - [sym__backtick_identifier] = ACTIONS(207), - [sym__automatic_semicolon] = ACTIONS(207), - [sym_safe_nav] = ACTIONS(207), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [3197] = { + [sym__alpha_identifier] = ACTIONS(4826), + [anon_sym_AT] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_as] = ACTIONS(4826), + [anon_sym_EQ] = ACTIONS(4826), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_where] = ACTIONS(4826), + [anon_sym_object] = ACTIONS(4826), + [anon_sym_fun] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_get] = ACTIONS(4826), + [anon_sym_set] = ACTIONS(4826), + [anon_sym_this] = ACTIONS(4826), + [anon_sym_super] = ACTIONS(4826), + [anon_sym_STAR] = ACTIONS(4826), + [sym_label] = ACTIONS(4826), + [anon_sym_in] = ACTIONS(4826), + [anon_sym_DOT_DOT] = ACTIONS(4828), + [anon_sym_QMARK_COLON] = ACTIONS(4828), + [anon_sym_AMP_AMP] = ACTIONS(4828), + [anon_sym_PIPE_PIPE] = ACTIONS(4828), + [anon_sym_null] = ACTIONS(4826), + [anon_sym_if] = ACTIONS(4826), + [anon_sym_else] = ACTIONS(4826), + [anon_sym_when] = ACTIONS(4826), + [anon_sym_try] = ACTIONS(4826), + [anon_sym_throw] = ACTIONS(4826), + [anon_sym_return] = ACTIONS(4826), + [anon_sym_continue] = ACTIONS(4826), + [anon_sym_break] = ACTIONS(4826), + [anon_sym_COLON_COLON] = ACTIONS(4828), + [anon_sym_PLUS_EQ] = ACTIONS(4828), + [anon_sym_DASH_EQ] = ACTIONS(4828), + [anon_sym_STAR_EQ] = ACTIONS(4828), + [anon_sym_SLASH_EQ] = ACTIONS(4828), + [anon_sym_PERCENT_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ] = ACTIONS(4826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4828), + [anon_sym_EQ_EQ] = ACTIONS(4826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4828), + [anon_sym_LT_EQ] = ACTIONS(4828), + [anon_sym_GT_EQ] = ACTIONS(4828), + [anon_sym_BANGin] = ACTIONS(4828), + [anon_sym_is] = ACTIONS(4826), + [anon_sym_BANGis] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4826), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4826), + [anon_sym_PERCENT] = ACTIONS(4826), + [anon_sym_as_QMARK] = ACTIONS(4828), + [anon_sym_PLUS_PLUS] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4828), + [anon_sym_BANG] = ACTIONS(4826), + [anon_sym_BANG_BANG] = ACTIONS(4828), + [anon_sym_data] = ACTIONS(4826), + [anon_sym_inner] = ACTIONS(4826), + [anon_sym_value] = ACTIONS(4826), + [anon_sym_expect] = ACTIONS(4826), + [anon_sym_actual] = ACTIONS(4826), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4828), + [anon_sym_continue_AT] = ACTIONS(4828), + [anon_sym_break_AT] = ACTIONS(4828), + [anon_sym_this_AT] = ACTIONS(4828), + [anon_sym_super_AT] = ACTIONS(4828), + [sym_real_literal] = ACTIONS(4828), + [sym_integer_literal] = ACTIONS(4826), + [sym_hex_literal] = ACTIONS(4828), + [sym_bin_literal] = ACTIONS(4828), + [anon_sym_true] = ACTIONS(4826), + [anon_sym_false] = ACTIONS(4826), + [anon_sym_SQUOTE] = ACTIONS(4828), + [sym__backtick_identifier] = ACTIONS(4828), + [sym__automatic_semicolon] = ACTIONS(4828), + [sym_safe_nav] = ACTIONS(4828), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4828), }, - [3179] = { - [sym__alpha_identifier] = ACTIONS(5091), - [anon_sym_AT] = ACTIONS(5093), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_as] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_fun] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5093), - [anon_sym_RBRACE] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5093), - [anon_sym_COMMA] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5091), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_where] = ACTIONS(5091), - [anon_sym_object] = ACTIONS(5091), - [anon_sym_DOT] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5093), - [anon_sym_get] = ACTIONS(5091), - [anon_sym_set] = ACTIONS(5091), - [anon_sym_this] = ACTIONS(5091), - [anon_sym_super] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [sym_label] = ACTIONS(5091), - [anon_sym_in] = ACTIONS(5091), - [anon_sym_DOT_DOT] = ACTIONS(5093), - [anon_sym_QMARK_COLON] = ACTIONS(5093), - [anon_sym_AMP_AMP] = ACTIONS(5093), - [anon_sym_PIPE_PIPE] = ACTIONS(5093), - [anon_sym_null] = ACTIONS(5091), - [anon_sym_if] = ACTIONS(5091), - [anon_sym_else] = ACTIONS(5091), - [anon_sym_when] = ACTIONS(5091), - [anon_sym_try] = ACTIONS(5091), - [anon_sym_throw] = ACTIONS(5091), - [anon_sym_return] = ACTIONS(5091), - [anon_sym_continue] = ACTIONS(5091), - [anon_sym_break] = ACTIONS(5091), - [anon_sym_COLON_COLON] = ACTIONS(5093), - [anon_sym_PLUS_EQ] = ACTIONS(5093), - [anon_sym_DASH_EQ] = ACTIONS(5093), - [anon_sym_STAR_EQ] = ACTIONS(5093), - [anon_sym_SLASH_EQ] = ACTIONS(5093), - [anon_sym_PERCENT_EQ] = ACTIONS(5093), - [anon_sym_BANG_EQ] = ACTIONS(5091), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5093), - [anon_sym_EQ_EQ] = ACTIONS(5091), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5093), - [anon_sym_LT_EQ] = ACTIONS(5093), - [anon_sym_GT_EQ] = ACTIONS(5093), - [anon_sym_BANGin] = ACTIONS(5093), - [anon_sym_is] = ACTIONS(5091), - [anon_sym_BANGis] = ACTIONS(5093), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5091), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_as_QMARK] = ACTIONS(5093), - [anon_sym_PLUS_PLUS] = ACTIONS(5093), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5091), - [anon_sym_BANG_BANG] = ACTIONS(5093), - [anon_sym_data] = ACTIONS(5091), - [anon_sym_inner] = ACTIONS(5091), - [anon_sym_value] = ACTIONS(5091), - [anon_sym_expect] = ACTIONS(5091), - [anon_sym_actual] = ACTIONS(5091), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5093), - [anon_sym_continue_AT] = ACTIONS(5093), - [anon_sym_break_AT] = ACTIONS(5093), - [anon_sym_this_AT] = ACTIONS(5093), - [anon_sym_super_AT] = ACTIONS(5093), - [sym_real_literal] = ACTIONS(5093), - [sym_integer_literal] = ACTIONS(5091), - [sym_hex_literal] = ACTIONS(5093), - [sym_bin_literal] = ACTIONS(5093), - [anon_sym_true] = ACTIONS(5091), - [anon_sym_false] = ACTIONS(5091), - [anon_sym_SQUOTE] = ACTIONS(5093), - [sym__backtick_identifier] = ACTIONS(5093), - [sym__automatic_semicolon] = ACTIONS(5093), - [sym_safe_nav] = ACTIONS(5093), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5093), + [3198] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6684), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [3180] = { - [sym__alpha_identifier] = ACTIONS(4236), + [3199] = { + [sym__alpha_identifier] = ACTIONS(4237), [anon_sym_AT] = ACTIONS(4239), [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_fun] = ACTIONS(4236), + [anon_sym_EQ] = ACTIONS(4239), [anon_sym_LBRACE] = ACTIONS(4239), [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(6748), + [anon_sym_LPAREN] = ACTIONS(4239), [anon_sym_COMMA] = ACTIONS(4239), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_where] = ACTIONS(4236), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_object] = ACTIONS(4237), + [anon_sym_fun] = ACTIONS(4237), [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_this] = ACTIONS(4237), + [anon_sym_super] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6688), + [sym__quest] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4239), + [sym_label] = ACTIONS(4237), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_null] = ACTIONS(4237), + [anon_sym_if] = ACTIONS(4237), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_when] = ACTIONS(4237), + [anon_sym_try] = ACTIONS(4237), + [anon_sym_throw] = ACTIONS(4237), + [anon_sym_return] = ACTIONS(4237), + [anon_sym_continue] = ACTIONS(4237), + [anon_sym_break] = ACTIONS(4237), [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), + [anon_sym_is] = ACTIONS(4237), [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), [anon_sym_PLUS_PLUS] = ACTIONS(4239), [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(4239), [anon_sym_continue_AT] = ACTIONS(4239), @@ -379401,960 +378933,1723 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this_AT] = ACTIONS(4239), [anon_sym_super_AT] = ACTIONS(4239), [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), + [sym_integer_literal] = ACTIONS(4237), [sym_hex_literal] = ACTIONS(4239), [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), [anon_sym_SQUOTE] = ACTIONS(4239), [sym__backtick_identifier] = ACTIONS(4239), [sym__automatic_semicolon] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4239), }, - [3181] = { - [sym_type_constraints] = STATE(3385), - [sym_enum_class_body] = STATE(3666), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_RBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_RPAREN] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [anon_sym_DASH_GT] = ACTIONS(4467), + [3200] = { + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_object] = ACTIONS(4467), + [anon_sym_fun] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_this] = ACTIONS(4467), + [anon_sym_super] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), [sym_label] = ACTIONS(4467), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_while] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_suspend] = ACTIONS(4465), - [anon_sym_sealed] = ACTIONS(4465), - [anon_sym_annotation] = ACTIONS(4465), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_override] = ACTIONS(4465), - [anon_sym_lateinit] = ACTIONS(4465), - [anon_sym_public] = ACTIONS(4465), - [anon_sym_private] = ACTIONS(4465), - [anon_sym_internal] = ACTIONS(4465), - [anon_sym_protected] = ACTIONS(4465), - [anon_sym_tailrec] = ACTIONS(4465), - [anon_sym_operator] = ACTIONS(4465), - [anon_sym_infix] = ACTIONS(4465), - [anon_sym_inline] = ACTIONS(4465), - [anon_sym_external] = ACTIONS(4465), - [sym_property_modifier] = ACTIONS(4465), - [anon_sym_abstract] = ACTIONS(4465), - [anon_sym_final] = ACTIONS(4465), - [anon_sym_open] = ACTIONS(4465), - [anon_sym_vararg] = ACTIONS(4465), - [anon_sym_noinline] = ACTIONS(4465), - [anon_sym_crossinline] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), - [sym_multiline_comment] = ACTIONS(3), - }, - [3182] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(6752), - [anon_sym_COMMA] = ACTIONS(4350), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_where] = ACTIONS(4347), - [anon_sym_object] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_null] = ACTIONS(4467), + [anon_sym_if] = ACTIONS(4467), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_when] = ACTIONS(4467), + [anon_sym_try] = ACTIONS(4467), + [anon_sym_throw] = ACTIONS(4467), + [anon_sym_return] = ACTIONS(4467), + [anon_sym_continue] = ACTIONS(4467), + [anon_sym_break] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG] = ACTIONS(4467), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4469), + [anon_sym_continue_AT] = ACTIONS(4469), + [anon_sym_break_AT] = ACTIONS(4469), + [anon_sym_this_AT] = ACTIONS(4469), + [anon_sym_super_AT] = ACTIONS(4469), + [sym_real_literal] = ACTIONS(4469), + [sym_integer_literal] = ACTIONS(4467), + [sym_hex_literal] = ACTIONS(4469), + [sym_bin_literal] = ACTIONS(4469), + [anon_sym_true] = ACTIONS(4467), + [anon_sym_false] = ACTIONS(4467), + [anon_sym_SQUOTE] = ACTIONS(4469), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4469), }, - [3183] = { - [sym__alpha_identifier] = ACTIONS(4960), - [anon_sym_AT] = ACTIONS(4962), - [anon_sym_LBRACK] = ACTIONS(4962), - [anon_sym_as] = ACTIONS(4960), - [anon_sym_EQ] = ACTIONS(4960), - [anon_sym_fun] = ACTIONS(4960), - [anon_sym_LBRACE] = ACTIONS(4962), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_COMMA] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4960), - [anon_sym_GT] = ACTIONS(4960), - [anon_sym_where] = ACTIONS(4960), - [anon_sym_object] = ACTIONS(4960), - [anon_sym_DOT] = ACTIONS(4960), - [anon_sym_SEMI] = ACTIONS(4962), - [anon_sym_get] = ACTIONS(4960), - [anon_sym_set] = ACTIONS(4960), - [anon_sym_this] = ACTIONS(4960), - [anon_sym_super] = ACTIONS(4960), - [anon_sym_STAR] = ACTIONS(4960), - [sym_label] = ACTIONS(4960), - [anon_sym_in] = ACTIONS(4960), - [anon_sym_DOT_DOT] = ACTIONS(4962), - [anon_sym_QMARK_COLON] = ACTIONS(4962), - [anon_sym_AMP_AMP] = ACTIONS(4962), - [anon_sym_PIPE_PIPE] = ACTIONS(4962), - [anon_sym_null] = ACTIONS(4960), - [anon_sym_if] = ACTIONS(4960), - [anon_sym_else] = ACTIONS(4960), - [anon_sym_when] = ACTIONS(4960), - [anon_sym_try] = ACTIONS(4960), - [anon_sym_throw] = ACTIONS(4960), - [anon_sym_return] = ACTIONS(4960), - [anon_sym_continue] = ACTIONS(4960), - [anon_sym_break] = ACTIONS(4960), - [anon_sym_COLON_COLON] = ACTIONS(4962), - [anon_sym_PLUS_EQ] = ACTIONS(4962), - [anon_sym_DASH_EQ] = ACTIONS(4962), - [anon_sym_STAR_EQ] = ACTIONS(4962), - [anon_sym_SLASH_EQ] = ACTIONS(4962), - [anon_sym_PERCENT_EQ] = ACTIONS(4962), - [anon_sym_BANG_EQ] = ACTIONS(4960), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4962), - [anon_sym_EQ_EQ] = ACTIONS(4960), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4962), - [anon_sym_LT_EQ] = ACTIONS(4962), - [anon_sym_GT_EQ] = ACTIONS(4962), - [anon_sym_BANGin] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_BANGis] = ACTIONS(4962), - [anon_sym_PLUS] = ACTIONS(4960), - [anon_sym_DASH] = ACTIONS(4960), - [anon_sym_SLASH] = ACTIONS(4960), - [anon_sym_PERCENT] = ACTIONS(4960), - [anon_sym_as_QMARK] = ACTIONS(4962), - [anon_sym_PLUS_PLUS] = ACTIONS(4962), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_BANG] = ACTIONS(4960), - [anon_sym_BANG_BANG] = ACTIONS(4962), - [anon_sym_data] = ACTIONS(4960), - [anon_sym_inner] = ACTIONS(4960), - [anon_sym_value] = ACTIONS(4960), - [anon_sym_expect] = ACTIONS(4960), - [anon_sym_actual] = ACTIONS(4960), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4962), - [anon_sym_continue_AT] = ACTIONS(4962), - [anon_sym_break_AT] = ACTIONS(4962), - [anon_sym_this_AT] = ACTIONS(4962), - [anon_sym_super_AT] = ACTIONS(4962), - [sym_real_literal] = ACTIONS(4962), - [sym_integer_literal] = ACTIONS(4960), - [sym_hex_literal] = ACTIONS(4962), - [sym_bin_literal] = ACTIONS(4962), - [anon_sym_true] = ACTIONS(4960), - [anon_sym_false] = ACTIONS(4960), - [anon_sym_SQUOTE] = ACTIONS(4962), - [sym__backtick_identifier] = ACTIONS(4962), - [sym__automatic_semicolon] = ACTIONS(4962), - [sym_safe_nav] = ACTIONS(4962), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4962), + [3201] = { + [sym__alpha_identifier] = ACTIONS(4782), + [anon_sym_AT] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4784), + [anon_sym_as] = ACTIONS(4782), + [anon_sym_EQ] = ACTIONS(4782), + [anon_sym_LBRACE] = ACTIONS(4784), + [anon_sym_RBRACE] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4784), + [anon_sym_COMMA] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4782), + [anon_sym_where] = ACTIONS(4782), + [anon_sym_object] = ACTIONS(4782), + [anon_sym_fun] = ACTIONS(4782), + [anon_sym_DOT] = ACTIONS(4782), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_get] = ACTIONS(4782), + [anon_sym_set] = ACTIONS(4782), + [anon_sym_this] = ACTIONS(4782), + [anon_sym_super] = ACTIONS(4782), + [anon_sym_STAR] = ACTIONS(4782), + [sym_label] = ACTIONS(4782), + [anon_sym_in] = ACTIONS(4782), + [anon_sym_DOT_DOT] = ACTIONS(4784), + [anon_sym_QMARK_COLON] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_null] = ACTIONS(4782), + [anon_sym_if] = ACTIONS(4782), + [anon_sym_else] = ACTIONS(4782), + [anon_sym_when] = ACTIONS(4782), + [anon_sym_try] = ACTIONS(4782), + [anon_sym_throw] = ACTIONS(4782), + [anon_sym_return] = ACTIONS(4782), + [anon_sym_continue] = ACTIONS(4782), + [anon_sym_break] = ACTIONS(4782), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_PLUS_EQ] = ACTIONS(4784), + [anon_sym_DASH_EQ] = ACTIONS(4784), + [anon_sym_STAR_EQ] = ACTIONS(4784), + [anon_sym_SLASH_EQ] = ACTIONS(4784), + [anon_sym_PERCENT_EQ] = ACTIONS(4784), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4784), + [anon_sym_LT_EQ] = ACTIONS(4784), + [anon_sym_GT_EQ] = ACTIONS(4784), + [anon_sym_BANGin] = ACTIONS(4784), + [anon_sym_is] = ACTIONS(4782), + [anon_sym_BANGis] = ACTIONS(4784), + [anon_sym_PLUS] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4782), + [anon_sym_SLASH] = ACTIONS(4782), + [anon_sym_PERCENT] = ACTIONS(4782), + [anon_sym_as_QMARK] = ACTIONS(4784), + [anon_sym_PLUS_PLUS] = ACTIONS(4784), + [anon_sym_DASH_DASH] = ACTIONS(4784), + [anon_sym_BANG] = ACTIONS(4782), + [anon_sym_BANG_BANG] = ACTIONS(4784), + [anon_sym_data] = ACTIONS(4782), + [anon_sym_inner] = ACTIONS(4782), + [anon_sym_value] = ACTIONS(4782), + [anon_sym_expect] = ACTIONS(4782), + [anon_sym_actual] = ACTIONS(4782), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4784), + [anon_sym_continue_AT] = ACTIONS(4784), + [anon_sym_break_AT] = ACTIONS(4784), + [anon_sym_this_AT] = ACTIONS(4784), + [anon_sym_super_AT] = ACTIONS(4784), + [sym_real_literal] = ACTIONS(4784), + [sym_integer_literal] = ACTIONS(4782), + [sym_hex_literal] = ACTIONS(4784), + [sym_bin_literal] = ACTIONS(4784), + [anon_sym_true] = ACTIONS(4782), + [anon_sym_false] = ACTIONS(4782), + [anon_sym_SQUOTE] = ACTIONS(4784), + [sym__backtick_identifier] = ACTIONS(4784), + [sym__automatic_semicolon] = ACTIONS(4784), + [sym_safe_nav] = ACTIONS(4784), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4784), }, - [3184] = { - [sym__alpha_identifier] = ACTIONS(4956), - [anon_sym_AT] = ACTIONS(4958), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_as] = ACTIONS(4956), - [anon_sym_EQ] = ACTIONS(4956), - [anon_sym_fun] = ACTIONS(4956), - [anon_sym_LBRACE] = ACTIONS(4958), - [anon_sym_RBRACE] = ACTIONS(4958), - [anon_sym_LPAREN] = ACTIONS(4958), - [anon_sym_COMMA] = ACTIONS(4958), - [anon_sym_LT] = ACTIONS(4956), - [anon_sym_GT] = ACTIONS(4956), - [anon_sym_where] = ACTIONS(4956), - [anon_sym_object] = ACTIONS(4956), - [anon_sym_DOT] = ACTIONS(4956), - [anon_sym_SEMI] = ACTIONS(4958), - [anon_sym_get] = ACTIONS(4956), - [anon_sym_set] = ACTIONS(4956), - [anon_sym_this] = ACTIONS(4956), - [anon_sym_super] = ACTIONS(4956), - [anon_sym_STAR] = ACTIONS(4956), - [sym_label] = ACTIONS(4956), - [anon_sym_in] = ACTIONS(4956), - [anon_sym_DOT_DOT] = ACTIONS(4958), - [anon_sym_QMARK_COLON] = ACTIONS(4958), - [anon_sym_AMP_AMP] = ACTIONS(4958), - [anon_sym_PIPE_PIPE] = ACTIONS(4958), - [anon_sym_null] = ACTIONS(4956), - [anon_sym_if] = ACTIONS(4956), - [anon_sym_else] = ACTIONS(4956), - [anon_sym_when] = ACTIONS(4956), - [anon_sym_try] = ACTIONS(4956), - [anon_sym_throw] = ACTIONS(4956), - [anon_sym_return] = ACTIONS(4956), - [anon_sym_continue] = ACTIONS(4956), - [anon_sym_break] = ACTIONS(4956), - [anon_sym_COLON_COLON] = ACTIONS(4958), - [anon_sym_PLUS_EQ] = ACTIONS(4958), - [anon_sym_DASH_EQ] = ACTIONS(4958), - [anon_sym_STAR_EQ] = ACTIONS(4958), - [anon_sym_SLASH_EQ] = ACTIONS(4958), - [anon_sym_PERCENT_EQ] = ACTIONS(4958), - [anon_sym_BANG_EQ] = ACTIONS(4956), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4958), - [anon_sym_EQ_EQ] = ACTIONS(4956), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4958), - [anon_sym_LT_EQ] = ACTIONS(4958), - [anon_sym_GT_EQ] = ACTIONS(4958), - [anon_sym_BANGin] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4956), - [anon_sym_BANGis] = ACTIONS(4958), - [anon_sym_PLUS] = ACTIONS(4956), - [anon_sym_DASH] = ACTIONS(4956), - [anon_sym_SLASH] = ACTIONS(4956), - [anon_sym_PERCENT] = ACTIONS(4956), - [anon_sym_as_QMARK] = ACTIONS(4958), - [anon_sym_PLUS_PLUS] = ACTIONS(4958), - [anon_sym_DASH_DASH] = ACTIONS(4958), - [anon_sym_BANG] = ACTIONS(4956), - [anon_sym_BANG_BANG] = ACTIONS(4958), - [anon_sym_data] = ACTIONS(4956), - [anon_sym_inner] = ACTIONS(4956), - [anon_sym_value] = ACTIONS(4956), - [anon_sym_expect] = ACTIONS(4956), - [anon_sym_actual] = ACTIONS(4956), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4958), - [anon_sym_continue_AT] = ACTIONS(4958), - [anon_sym_break_AT] = ACTIONS(4958), - [anon_sym_this_AT] = ACTIONS(4958), - [anon_sym_super_AT] = ACTIONS(4958), - [sym_real_literal] = ACTIONS(4958), - [sym_integer_literal] = ACTIONS(4956), - [sym_hex_literal] = ACTIONS(4958), - [sym_bin_literal] = ACTIONS(4958), - [anon_sym_true] = ACTIONS(4956), - [anon_sym_false] = ACTIONS(4956), - [anon_sym_SQUOTE] = ACTIONS(4958), - [sym__backtick_identifier] = ACTIONS(4958), - [sym__automatic_semicolon] = ACTIONS(4958), - [sym_safe_nav] = ACTIONS(4958), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4958), + [3202] = { + [sym_type_constraints] = STATE(3366), + [sym_enum_class_body] = STATE(3494), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_RBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_RPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [anon_sym_DASH_GT] = ACTIONS(4465), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_while] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), }, - [3185] = { - [sym__alpha_identifier] = ACTIONS(4952), - [anon_sym_AT] = ACTIONS(4954), - [anon_sym_LBRACK] = ACTIONS(4954), - [anon_sym_as] = ACTIONS(4952), - [anon_sym_EQ] = ACTIONS(4952), - [anon_sym_fun] = ACTIONS(4952), - [anon_sym_LBRACE] = ACTIONS(4954), - [anon_sym_RBRACE] = ACTIONS(4954), - [anon_sym_LPAREN] = ACTIONS(4954), - [anon_sym_COMMA] = ACTIONS(4954), - [anon_sym_LT] = ACTIONS(4952), - [anon_sym_GT] = ACTIONS(4952), - [anon_sym_where] = ACTIONS(4952), - [anon_sym_object] = ACTIONS(4952), - [anon_sym_DOT] = ACTIONS(4952), - [anon_sym_SEMI] = ACTIONS(4954), - [anon_sym_get] = ACTIONS(4952), - [anon_sym_set] = ACTIONS(4952), - [anon_sym_this] = ACTIONS(4952), - [anon_sym_super] = ACTIONS(4952), - [anon_sym_STAR] = ACTIONS(4952), - [sym_label] = ACTIONS(4952), - [anon_sym_in] = ACTIONS(4952), - [anon_sym_DOT_DOT] = ACTIONS(4954), - [anon_sym_QMARK_COLON] = ACTIONS(4954), - [anon_sym_AMP_AMP] = ACTIONS(4954), - [anon_sym_PIPE_PIPE] = ACTIONS(4954), - [anon_sym_null] = ACTIONS(4952), - [anon_sym_if] = ACTIONS(4952), - [anon_sym_else] = ACTIONS(4952), - [anon_sym_when] = ACTIONS(4952), - [anon_sym_try] = ACTIONS(4952), - [anon_sym_throw] = ACTIONS(4952), - [anon_sym_return] = ACTIONS(4952), - [anon_sym_continue] = ACTIONS(4952), - [anon_sym_break] = ACTIONS(4952), - [anon_sym_COLON_COLON] = ACTIONS(4954), - [anon_sym_PLUS_EQ] = ACTIONS(4954), - [anon_sym_DASH_EQ] = ACTIONS(4954), - [anon_sym_STAR_EQ] = ACTIONS(4954), - [anon_sym_SLASH_EQ] = ACTIONS(4954), - [anon_sym_PERCENT_EQ] = ACTIONS(4954), - [anon_sym_BANG_EQ] = ACTIONS(4952), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4954), - [anon_sym_EQ_EQ] = ACTIONS(4952), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4954), - [anon_sym_LT_EQ] = ACTIONS(4954), - [anon_sym_GT_EQ] = ACTIONS(4954), - [anon_sym_BANGin] = ACTIONS(4954), - [anon_sym_is] = ACTIONS(4952), - [anon_sym_BANGis] = ACTIONS(4954), - [anon_sym_PLUS] = ACTIONS(4952), - [anon_sym_DASH] = ACTIONS(4952), - [anon_sym_SLASH] = ACTIONS(4952), - [anon_sym_PERCENT] = ACTIONS(4952), - [anon_sym_as_QMARK] = ACTIONS(4954), - [anon_sym_PLUS_PLUS] = ACTIONS(4954), - [anon_sym_DASH_DASH] = ACTIONS(4954), - [anon_sym_BANG] = ACTIONS(4952), - [anon_sym_BANG_BANG] = ACTIONS(4954), - [anon_sym_data] = ACTIONS(4952), - [anon_sym_inner] = ACTIONS(4952), - [anon_sym_value] = ACTIONS(4952), - [anon_sym_expect] = ACTIONS(4952), - [anon_sym_actual] = ACTIONS(4952), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4954), - [anon_sym_continue_AT] = ACTIONS(4954), - [anon_sym_break_AT] = ACTIONS(4954), - [anon_sym_this_AT] = ACTIONS(4954), - [anon_sym_super_AT] = ACTIONS(4954), - [sym_real_literal] = ACTIONS(4954), - [sym_integer_literal] = ACTIONS(4952), - [sym_hex_literal] = ACTIONS(4954), - [sym_bin_literal] = ACTIONS(4954), - [anon_sym_true] = ACTIONS(4952), - [anon_sym_false] = ACTIONS(4952), - [anon_sym_SQUOTE] = ACTIONS(4954), - [sym__backtick_identifier] = ACTIONS(4954), - [sym__automatic_semicolon] = ACTIONS(4954), - [sym_safe_nav] = ACTIONS(4954), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4954), + [3203] = { + [sym__alpha_identifier] = ACTIONS(5103), + [anon_sym_AT] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5105), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5103), + [anon_sym_GT] = ACTIONS(5103), + [anon_sym_where] = ACTIONS(5103), + [anon_sym_object] = ACTIONS(5103), + [anon_sym_fun] = ACTIONS(5103), + [anon_sym_DOT] = ACTIONS(5103), + [anon_sym_SEMI] = ACTIONS(5105), + [anon_sym_get] = ACTIONS(5103), + [anon_sym_set] = ACTIONS(5103), + [anon_sym_this] = ACTIONS(5103), + [anon_sym_super] = ACTIONS(5103), + [anon_sym_STAR] = ACTIONS(5103), + [sym_label] = ACTIONS(5103), + [anon_sym_in] = ACTIONS(5103), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_QMARK_COLON] = ACTIONS(5105), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_null] = ACTIONS(5103), + [anon_sym_if] = ACTIONS(5103), + [anon_sym_else] = ACTIONS(5103), + [anon_sym_when] = ACTIONS(5103), + [anon_sym_try] = ACTIONS(5103), + [anon_sym_throw] = ACTIONS(5103), + [anon_sym_return] = ACTIONS(5103), + [anon_sym_continue] = ACTIONS(5103), + [anon_sym_break] = ACTIONS(5103), + [anon_sym_COLON_COLON] = ACTIONS(5105), + [anon_sym_PLUS_EQ] = ACTIONS(5105), + [anon_sym_DASH_EQ] = ACTIONS(5105), + [anon_sym_STAR_EQ] = ACTIONS(5105), + [anon_sym_SLASH_EQ] = ACTIONS(5105), + [anon_sym_PERCENT_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_BANGin] = ACTIONS(5105), + [anon_sym_is] = ACTIONS(5103), + [anon_sym_BANGis] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5103), + [anon_sym_DASH] = ACTIONS(5103), + [anon_sym_SLASH] = ACTIONS(5103), + [anon_sym_PERCENT] = ACTIONS(5103), + [anon_sym_as_QMARK] = ACTIONS(5105), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_BANG] = ACTIONS(5103), + [anon_sym_BANG_BANG] = ACTIONS(5105), + [anon_sym_data] = ACTIONS(5103), + [anon_sym_inner] = ACTIONS(5103), + [anon_sym_value] = ACTIONS(5103), + [anon_sym_expect] = ACTIONS(5103), + [anon_sym_actual] = ACTIONS(5103), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5105), + [anon_sym_continue_AT] = ACTIONS(5105), + [anon_sym_break_AT] = ACTIONS(5105), + [anon_sym_this_AT] = ACTIONS(5105), + [anon_sym_super_AT] = ACTIONS(5105), + [sym_real_literal] = ACTIONS(5105), + [sym_integer_literal] = ACTIONS(5103), + [sym_hex_literal] = ACTIONS(5105), + [sym_bin_literal] = ACTIONS(5105), + [anon_sym_true] = ACTIONS(5103), + [anon_sym_false] = ACTIONS(5103), + [anon_sym_SQUOTE] = ACTIONS(5105), + [sym__backtick_identifier] = ACTIONS(5105), + [sym__automatic_semicolon] = ACTIONS(5105), + [sym_safe_nav] = ACTIONS(5105), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5105), }, - [3186] = { - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(1808), - [anon_sym_set] = ACTIONS(1808), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_data] = ACTIONS(1808), - [anon_sym_inner] = ACTIONS(1808), - [anon_sym_value] = ACTIONS(1808), - [anon_sym_expect] = ACTIONS(1808), - [anon_sym_actual] = ACTIONS(1808), + [3204] = { + [sym__alpha_identifier] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_as] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_LBRACE] = ACTIONS(4724), + [anon_sym_RBRACE] = ACTIONS(4724), + [anon_sym_LPAREN] = ACTIONS(4724), + [anon_sym_COMMA] = ACTIONS(4724), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_where] = ACTIONS(4722), + [anon_sym_object] = ACTIONS(4722), + [anon_sym_fun] = ACTIONS(4722), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym_get] = ACTIONS(4722), + [anon_sym_set] = ACTIONS(4722), + [anon_sym_this] = ACTIONS(4722), + [anon_sym_super] = ACTIONS(4722), + [anon_sym_STAR] = ACTIONS(4722), + [sym_label] = ACTIONS(4722), + [anon_sym_in] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4724), + [anon_sym_QMARK_COLON] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_null] = ACTIONS(4722), + [anon_sym_if] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_when] = ACTIONS(4722), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_throw] = ACTIONS(4722), + [anon_sym_return] = ACTIONS(4722), + [anon_sym_continue] = ACTIONS(4722), + [anon_sym_break] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_PLUS_EQ] = ACTIONS(4724), + [anon_sym_DASH_EQ] = ACTIONS(4724), + [anon_sym_STAR_EQ] = ACTIONS(4724), + [anon_sym_SLASH_EQ] = ACTIONS(4724), + [anon_sym_PERCENT_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), + [anon_sym_LT_EQ] = ACTIONS(4724), + [anon_sym_GT_EQ] = ACTIONS(4724), + [anon_sym_BANGin] = ACTIONS(4724), + [anon_sym_is] = ACTIONS(4722), + [anon_sym_BANGis] = ACTIONS(4724), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_SLASH] = ACTIONS(4722), + [anon_sym_PERCENT] = ACTIONS(4722), + [anon_sym_as_QMARK] = ACTIONS(4724), + [anon_sym_PLUS_PLUS] = ACTIONS(4724), + [anon_sym_DASH_DASH] = ACTIONS(4724), + [anon_sym_BANG] = ACTIONS(4722), + [anon_sym_BANG_BANG] = ACTIONS(4724), + [anon_sym_data] = ACTIONS(4722), + [anon_sym_inner] = ACTIONS(4722), + [anon_sym_value] = ACTIONS(4722), + [anon_sym_expect] = ACTIONS(4722), + [anon_sym_actual] = ACTIONS(4722), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [anon_sym_return_AT] = ACTIONS(4724), + [anon_sym_continue_AT] = ACTIONS(4724), + [anon_sym_break_AT] = ACTIONS(4724), + [anon_sym_this_AT] = ACTIONS(4724), + [anon_sym_super_AT] = ACTIONS(4724), + [sym_real_literal] = ACTIONS(4724), + [sym_integer_literal] = ACTIONS(4722), + [sym_hex_literal] = ACTIONS(4724), + [sym_bin_literal] = ACTIONS(4724), + [anon_sym_true] = ACTIONS(4722), + [anon_sym_false] = ACTIONS(4722), + [anon_sym_SQUOTE] = ACTIONS(4724), + [sym__backtick_identifier] = ACTIONS(4724), + [sym__automatic_semicolon] = ACTIONS(4724), + [sym_safe_nav] = ACTIONS(4724), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [sym__string_start] = ACTIONS(4724), }, - [3187] = { - [sym_class_body] = STATE(3468), - [sym__alpha_identifier] = ACTIONS(4443), - [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(6756), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_as] = ACTIONS(4443), - [anon_sym_EQ] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4443), - [anon_sym_GT] = ACTIONS(4443), - [anon_sym_where] = ACTIONS(4443), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4445), - [anon_sym_get] = ACTIONS(4443), - [anon_sym_set] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4443), - [anon_sym_DASH_GT] = ACTIONS(4445), - [sym_label] = ACTIONS(4445), - [anon_sym_in] = ACTIONS(4443), - [anon_sym_while] = ACTIONS(4443), - [anon_sym_DOT_DOT] = ACTIONS(4445), - [anon_sym_QMARK_COLON] = ACTIONS(4445), - [anon_sym_AMP_AMP] = ACTIONS(4445), - [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_else] = ACTIONS(4443), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_PLUS_EQ] = ACTIONS(4445), - [anon_sym_DASH_EQ] = ACTIONS(4445), - [anon_sym_STAR_EQ] = ACTIONS(4445), - [anon_sym_SLASH_EQ] = ACTIONS(4445), - [anon_sym_PERCENT_EQ] = ACTIONS(4445), - [anon_sym_BANG_EQ] = ACTIONS(4443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), - [anon_sym_EQ_EQ] = ACTIONS(4443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), - [anon_sym_LT_EQ] = ACTIONS(4445), - [anon_sym_GT_EQ] = ACTIONS(4445), - [anon_sym_BANGin] = ACTIONS(4445), - [anon_sym_is] = ACTIONS(4443), - [anon_sym_BANGis] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_SLASH] = ACTIONS(4443), - [anon_sym_PERCENT] = ACTIONS(4443), - [anon_sym_as_QMARK] = ACTIONS(4445), - [anon_sym_PLUS_PLUS] = ACTIONS(4445), - [anon_sym_DASH_DASH] = ACTIONS(4445), - [anon_sym_BANG_BANG] = ACTIONS(4445), - [anon_sym_suspend] = ACTIONS(4443), - [anon_sym_sealed] = ACTIONS(4443), - [anon_sym_annotation] = ACTIONS(4443), - [anon_sym_data] = ACTIONS(4443), - [anon_sym_inner] = ACTIONS(4443), - [anon_sym_value] = ACTIONS(4443), - [anon_sym_override] = ACTIONS(4443), - [anon_sym_lateinit] = ACTIONS(4443), - [anon_sym_public] = ACTIONS(4443), - [anon_sym_private] = ACTIONS(4443), - [anon_sym_internal] = ACTIONS(4443), - [anon_sym_protected] = ACTIONS(4443), - [anon_sym_tailrec] = ACTIONS(4443), - [anon_sym_operator] = ACTIONS(4443), - [anon_sym_infix] = ACTIONS(4443), - [anon_sym_inline] = ACTIONS(4443), - [anon_sym_external] = ACTIONS(4443), - [sym_property_modifier] = ACTIONS(4443), - [anon_sym_abstract] = ACTIONS(4443), - [anon_sym_final] = ACTIONS(4443), - [anon_sym_open] = ACTIONS(4443), - [anon_sym_vararg] = ACTIONS(4443), - [anon_sym_noinline] = ACTIONS(4443), - [anon_sym_crossinline] = ACTIONS(4443), - [anon_sym_expect] = ACTIONS(4443), - [anon_sym_actual] = ACTIONS(4443), + [3205] = { + [sym__alpha_identifier] = ACTIONS(5107), + [anon_sym_AT] = ACTIONS(5109), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5107), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_RBRACE] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_LT] = ACTIONS(5107), + [anon_sym_GT] = ACTIONS(5107), + [anon_sym_where] = ACTIONS(5107), + [anon_sym_object] = ACTIONS(5107), + [anon_sym_fun] = ACTIONS(5107), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_SEMI] = ACTIONS(5109), + [anon_sym_get] = ACTIONS(5107), + [anon_sym_set] = ACTIONS(5107), + [anon_sym_this] = ACTIONS(5107), + [anon_sym_super] = ACTIONS(5107), + [anon_sym_STAR] = ACTIONS(5107), + [sym_label] = ACTIONS(5107), + [anon_sym_in] = ACTIONS(5107), + [anon_sym_DOT_DOT] = ACTIONS(5109), + [anon_sym_QMARK_COLON] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_null] = ACTIONS(5107), + [anon_sym_if] = ACTIONS(5107), + [anon_sym_else] = ACTIONS(5107), + [anon_sym_when] = ACTIONS(5107), + [anon_sym_try] = ACTIONS(5107), + [anon_sym_throw] = ACTIONS(5107), + [anon_sym_return] = ACTIONS(5107), + [anon_sym_continue] = ACTIONS(5107), + [anon_sym_break] = ACTIONS(5107), + [anon_sym_COLON_COLON] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5109), + [anon_sym_EQ_EQ] = ACTIONS(5107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_BANGin] = ACTIONS(5109), + [anon_sym_is] = ACTIONS(5107), + [anon_sym_BANGis] = ACTIONS(5109), + [anon_sym_PLUS] = ACTIONS(5107), + [anon_sym_DASH] = ACTIONS(5107), + [anon_sym_SLASH] = ACTIONS(5107), + [anon_sym_PERCENT] = ACTIONS(5107), + [anon_sym_as_QMARK] = ACTIONS(5109), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_BANG] = ACTIONS(5107), + [anon_sym_BANG_BANG] = ACTIONS(5109), + [anon_sym_data] = ACTIONS(5107), + [anon_sym_inner] = ACTIONS(5107), + [anon_sym_value] = ACTIONS(5107), + [anon_sym_expect] = ACTIONS(5107), + [anon_sym_actual] = ACTIONS(5107), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4445), - [sym_safe_nav] = ACTIONS(4445), + [anon_sym_return_AT] = ACTIONS(5109), + [anon_sym_continue_AT] = ACTIONS(5109), + [anon_sym_break_AT] = ACTIONS(5109), + [anon_sym_this_AT] = ACTIONS(5109), + [anon_sym_super_AT] = ACTIONS(5109), + [sym_real_literal] = ACTIONS(5109), + [sym_integer_literal] = ACTIONS(5107), + [sym_hex_literal] = ACTIONS(5109), + [sym_bin_literal] = ACTIONS(5109), + [anon_sym_true] = ACTIONS(5107), + [anon_sym_false] = ACTIONS(5107), + [anon_sym_SQUOTE] = ACTIONS(5109), + [sym__backtick_identifier] = ACTIONS(5109), + [sym__automatic_semicolon] = ACTIONS(5109), + [sym_safe_nav] = ACTIONS(5109), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5109), }, - [3188] = { - [sym_class_body] = STATE(3605), - [sym_type_constraints] = STATE(3380), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_RBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_RPAREN] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_DASH_GT] = ACTIONS(4459), - [sym_label] = ACTIONS(4459), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_while] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_suspend] = ACTIONS(4457), - [anon_sym_sealed] = ACTIONS(4457), - [anon_sym_annotation] = ACTIONS(4457), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_override] = ACTIONS(4457), - [anon_sym_lateinit] = ACTIONS(4457), - [anon_sym_public] = ACTIONS(4457), - [anon_sym_private] = ACTIONS(4457), - [anon_sym_internal] = ACTIONS(4457), - [anon_sym_protected] = ACTIONS(4457), - [anon_sym_tailrec] = ACTIONS(4457), - [anon_sym_operator] = ACTIONS(4457), - [anon_sym_infix] = ACTIONS(4457), - [anon_sym_inline] = ACTIONS(4457), - [anon_sym_external] = ACTIONS(4457), - [sym_property_modifier] = ACTIONS(4457), - [anon_sym_abstract] = ACTIONS(4457), - [anon_sym_final] = ACTIONS(4457), - [anon_sym_open] = ACTIONS(4457), - [anon_sym_vararg] = ACTIONS(4457), - [anon_sym_noinline] = ACTIONS(4457), - [anon_sym_crossinline] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), + [3206] = { + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4357), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(4355), + [anon_sym_object] = ACTIONS(4355), + [anon_sym_fun] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_this] = ACTIONS(4355), + [anon_sym_super] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_null] = ACTIONS(4355), + [anon_sym_if] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_when] = ACTIONS(4355), + [anon_sym_try] = ACTIONS(4355), + [anon_sym_throw] = ACTIONS(4355), + [anon_sym_return] = ACTIONS(4355), + [anon_sym_continue] = ACTIONS(4355), + [anon_sym_break] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4357), + [anon_sym_continue_AT] = ACTIONS(4357), + [anon_sym_break_AT] = ACTIONS(4357), + [anon_sym_this_AT] = ACTIONS(4357), + [anon_sym_super_AT] = ACTIONS(4357), + [sym_real_literal] = ACTIONS(4357), + [sym_integer_literal] = ACTIONS(4355), + [sym_hex_literal] = ACTIONS(4357), + [sym_bin_literal] = ACTIONS(4357), + [anon_sym_true] = ACTIONS(4355), + [anon_sym_false] = ACTIONS(4355), + [anon_sym_SQUOTE] = ACTIONS(4357), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4357), }, - [3189] = { - [sym__alpha_identifier] = ACTIONS(5087), - [anon_sym_AT] = ACTIONS(5089), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_as] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_fun] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5089), - [anon_sym_RBRACE] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5089), - [anon_sym_COMMA] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5087), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_where] = ACTIONS(5087), - [anon_sym_object] = ACTIONS(5087), - [anon_sym_DOT] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5089), - [anon_sym_get] = ACTIONS(5087), - [anon_sym_set] = ACTIONS(5087), - [anon_sym_this] = ACTIONS(5087), - [anon_sym_super] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [sym_label] = ACTIONS(5087), - [anon_sym_in] = ACTIONS(5087), - [anon_sym_DOT_DOT] = ACTIONS(5089), - [anon_sym_QMARK_COLON] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5089), - [anon_sym_PIPE_PIPE] = ACTIONS(5089), - [anon_sym_null] = ACTIONS(5087), - [anon_sym_if] = ACTIONS(5087), - [anon_sym_else] = ACTIONS(5087), - [anon_sym_when] = ACTIONS(5087), - [anon_sym_try] = ACTIONS(5087), - [anon_sym_throw] = ACTIONS(5087), - [anon_sym_return] = ACTIONS(5087), - [anon_sym_continue] = ACTIONS(5087), - [anon_sym_break] = ACTIONS(5087), - [anon_sym_COLON_COLON] = ACTIONS(5089), - [anon_sym_PLUS_EQ] = ACTIONS(5089), - [anon_sym_DASH_EQ] = ACTIONS(5089), - [anon_sym_STAR_EQ] = ACTIONS(5089), - [anon_sym_SLASH_EQ] = ACTIONS(5089), - [anon_sym_PERCENT_EQ] = ACTIONS(5089), - [anon_sym_BANG_EQ] = ACTIONS(5087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5089), - [anon_sym_EQ_EQ] = ACTIONS(5087), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5089), - [anon_sym_LT_EQ] = ACTIONS(5089), - [anon_sym_GT_EQ] = ACTIONS(5089), - [anon_sym_BANGin] = ACTIONS(5089), - [anon_sym_is] = ACTIONS(5087), - [anon_sym_BANGis] = ACTIONS(5089), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5087), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_as_QMARK] = ACTIONS(5089), - [anon_sym_PLUS_PLUS] = ACTIONS(5089), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5087), - [anon_sym_BANG_BANG] = ACTIONS(5089), - [anon_sym_data] = ACTIONS(5087), - [anon_sym_inner] = ACTIONS(5087), - [anon_sym_value] = ACTIONS(5087), - [anon_sym_expect] = ACTIONS(5087), - [anon_sym_actual] = ACTIONS(5087), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5089), - [anon_sym_continue_AT] = ACTIONS(5089), - [anon_sym_break_AT] = ACTIONS(5089), - [anon_sym_this_AT] = ACTIONS(5089), - [anon_sym_super_AT] = ACTIONS(5089), - [sym_real_literal] = ACTIONS(5089), - [sym_integer_literal] = ACTIONS(5087), - [sym_hex_literal] = ACTIONS(5089), - [sym_bin_literal] = ACTIONS(5089), - [anon_sym_true] = ACTIONS(5087), - [anon_sym_false] = ACTIONS(5087), - [anon_sym_SQUOTE] = ACTIONS(5089), - [sym__backtick_identifier] = ACTIONS(5089), - [sym__automatic_semicolon] = ACTIONS(5089), - [sym_safe_nav] = ACTIONS(5089), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5089), + [3207] = { + [sym__alpha_identifier] = ACTIONS(4786), + [anon_sym_AT] = ACTIONS(4788), + [anon_sym_LBRACK] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4786), + [anon_sym_EQ] = ACTIONS(4786), + [anon_sym_LBRACE] = ACTIONS(4788), + [anon_sym_RBRACE] = ACTIONS(4788), + [anon_sym_LPAREN] = ACTIONS(4788), + [anon_sym_COMMA] = ACTIONS(4788), + [anon_sym_LT] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4786), + [anon_sym_where] = ACTIONS(4786), + [anon_sym_object] = ACTIONS(4786), + [anon_sym_fun] = ACTIONS(4786), + [anon_sym_DOT] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4788), + [anon_sym_get] = ACTIONS(4786), + [anon_sym_set] = ACTIONS(4786), + [anon_sym_this] = ACTIONS(4786), + [anon_sym_super] = ACTIONS(4786), + [anon_sym_STAR] = ACTIONS(4786), + [sym_label] = ACTIONS(4786), + [anon_sym_in] = ACTIONS(4786), + [anon_sym_DOT_DOT] = ACTIONS(4788), + [anon_sym_QMARK_COLON] = ACTIONS(4788), + [anon_sym_AMP_AMP] = ACTIONS(4788), + [anon_sym_PIPE_PIPE] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(4786), + [anon_sym_if] = ACTIONS(4786), + [anon_sym_else] = ACTIONS(4786), + [anon_sym_when] = ACTIONS(4786), + [anon_sym_try] = ACTIONS(4786), + [anon_sym_throw] = ACTIONS(4786), + [anon_sym_return] = ACTIONS(4786), + [anon_sym_continue] = ACTIONS(4786), + [anon_sym_break] = ACTIONS(4786), + [anon_sym_COLON_COLON] = ACTIONS(4788), + [anon_sym_PLUS_EQ] = ACTIONS(4788), + [anon_sym_DASH_EQ] = ACTIONS(4788), + [anon_sym_STAR_EQ] = ACTIONS(4788), + [anon_sym_SLASH_EQ] = ACTIONS(4788), + [anon_sym_PERCENT_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ] = ACTIONS(4786), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4788), + [anon_sym_LT_EQ] = ACTIONS(4788), + [anon_sym_GT_EQ] = ACTIONS(4788), + [anon_sym_BANGin] = ACTIONS(4788), + [anon_sym_is] = ACTIONS(4786), + [anon_sym_BANGis] = ACTIONS(4788), + [anon_sym_PLUS] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4786), + [anon_sym_SLASH] = ACTIONS(4786), + [anon_sym_PERCENT] = ACTIONS(4786), + [anon_sym_as_QMARK] = ACTIONS(4788), + [anon_sym_PLUS_PLUS] = ACTIONS(4788), + [anon_sym_DASH_DASH] = ACTIONS(4788), + [anon_sym_BANG] = ACTIONS(4786), + [anon_sym_BANG_BANG] = ACTIONS(4788), + [anon_sym_data] = ACTIONS(4786), + [anon_sym_inner] = ACTIONS(4786), + [anon_sym_value] = ACTIONS(4786), + [anon_sym_expect] = ACTIONS(4786), + [anon_sym_actual] = ACTIONS(4786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4788), + [anon_sym_continue_AT] = ACTIONS(4788), + [anon_sym_break_AT] = ACTIONS(4788), + [anon_sym_this_AT] = ACTIONS(4788), + [anon_sym_super_AT] = ACTIONS(4788), + [sym_real_literal] = ACTIONS(4788), + [sym_integer_literal] = ACTIONS(4786), + [sym_hex_literal] = ACTIONS(4788), + [sym_bin_literal] = ACTIONS(4788), + [anon_sym_true] = ACTIONS(4786), + [anon_sym_false] = ACTIONS(4786), + [anon_sym_SQUOTE] = ACTIONS(4788), + [sym__backtick_identifier] = ACTIONS(4788), + [sym__automatic_semicolon] = ACTIONS(4788), + [sym_safe_nav] = ACTIONS(4788), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4788), }, - [3190] = { - [sym_type_constraints] = STATE(3379), - [sym_enum_class_body] = STATE(3605), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_RBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_RPAREN] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_DASH_GT] = ACTIONS(4459), - [sym_label] = ACTIONS(4459), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_while] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_suspend] = ACTIONS(4457), - [anon_sym_sealed] = ACTIONS(4457), - [anon_sym_annotation] = ACTIONS(4457), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_override] = ACTIONS(4457), - [anon_sym_lateinit] = ACTIONS(4457), - [anon_sym_public] = ACTIONS(4457), - [anon_sym_private] = ACTIONS(4457), - [anon_sym_internal] = ACTIONS(4457), - [anon_sym_protected] = ACTIONS(4457), - [anon_sym_tailrec] = ACTIONS(4457), - [anon_sym_operator] = ACTIONS(4457), - [anon_sym_infix] = ACTIONS(4457), - [anon_sym_inline] = ACTIONS(4457), - [anon_sym_external] = ACTIONS(4457), - [sym_property_modifier] = ACTIONS(4457), - [anon_sym_abstract] = ACTIONS(4457), - [anon_sym_final] = ACTIONS(4457), - [anon_sym_open] = ACTIONS(4457), - [anon_sym_vararg] = ACTIONS(4457), - [anon_sym_noinline] = ACTIONS(4457), - [anon_sym_crossinline] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), + [3208] = { + [sym_class_body] = STATE(3495), + [sym_type_constraints] = STATE(3368), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_RBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [anon_sym_DASH_GT] = ACTIONS(4495), + [sym_label] = ACTIONS(4495), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_while] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), [sym_multiline_comment] = ACTIONS(3), }, - [3191] = { - [sym__alpha_identifier] = ACTIONS(4948), - [anon_sym_AT] = ACTIONS(4950), - [anon_sym_LBRACK] = ACTIONS(4950), - [anon_sym_as] = ACTIONS(4948), - [anon_sym_EQ] = ACTIONS(4948), - [anon_sym_fun] = ACTIONS(4948), - [anon_sym_LBRACE] = ACTIONS(4950), - [anon_sym_RBRACE] = ACTIONS(4950), - [anon_sym_LPAREN] = ACTIONS(4950), - [anon_sym_COMMA] = ACTIONS(4950), - [anon_sym_LT] = ACTIONS(4948), - [anon_sym_GT] = ACTIONS(4948), - [anon_sym_where] = ACTIONS(4948), - [anon_sym_object] = ACTIONS(4948), - [anon_sym_DOT] = ACTIONS(4948), - [anon_sym_SEMI] = ACTIONS(4950), - [anon_sym_get] = ACTIONS(4948), - [anon_sym_set] = ACTIONS(4948), - [anon_sym_this] = ACTIONS(4948), - [anon_sym_super] = ACTIONS(4948), - [anon_sym_STAR] = ACTIONS(4948), - [sym_label] = ACTIONS(4948), - [anon_sym_in] = ACTIONS(4948), - [anon_sym_DOT_DOT] = ACTIONS(4950), - [anon_sym_QMARK_COLON] = ACTIONS(4950), - [anon_sym_AMP_AMP] = ACTIONS(4950), - [anon_sym_PIPE_PIPE] = ACTIONS(4950), - [anon_sym_null] = ACTIONS(4948), - [anon_sym_if] = ACTIONS(4948), - [anon_sym_else] = ACTIONS(4948), - [anon_sym_when] = ACTIONS(4948), - [anon_sym_try] = ACTIONS(4948), - [anon_sym_throw] = ACTIONS(4948), - [anon_sym_return] = ACTIONS(4948), - [anon_sym_continue] = ACTIONS(4948), - [anon_sym_break] = ACTIONS(4948), - [anon_sym_COLON_COLON] = ACTIONS(4950), - [anon_sym_PLUS_EQ] = ACTIONS(4950), - [anon_sym_DASH_EQ] = ACTIONS(4950), - [anon_sym_STAR_EQ] = ACTIONS(4950), - [anon_sym_SLASH_EQ] = ACTIONS(4950), - [anon_sym_PERCENT_EQ] = ACTIONS(4950), - [anon_sym_BANG_EQ] = ACTIONS(4948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4950), - [anon_sym_EQ_EQ] = ACTIONS(4948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4950), - [anon_sym_LT_EQ] = ACTIONS(4950), - [anon_sym_GT_EQ] = ACTIONS(4950), - [anon_sym_BANGin] = ACTIONS(4950), - [anon_sym_is] = ACTIONS(4948), - [anon_sym_BANGis] = ACTIONS(4950), - [anon_sym_PLUS] = ACTIONS(4948), - [anon_sym_DASH] = ACTIONS(4948), - [anon_sym_SLASH] = ACTIONS(4948), - [anon_sym_PERCENT] = ACTIONS(4948), - [anon_sym_as_QMARK] = ACTIONS(4950), - [anon_sym_PLUS_PLUS] = ACTIONS(4950), - [anon_sym_DASH_DASH] = ACTIONS(4950), - [anon_sym_BANG] = ACTIONS(4948), - [anon_sym_BANG_BANG] = ACTIONS(4950), - [anon_sym_data] = ACTIONS(4948), - [anon_sym_inner] = ACTIONS(4948), - [anon_sym_value] = ACTIONS(4948), - [anon_sym_expect] = ACTIONS(4948), - [anon_sym_actual] = ACTIONS(4948), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4950), - [anon_sym_continue_AT] = ACTIONS(4950), - [anon_sym_break_AT] = ACTIONS(4950), - [anon_sym_this_AT] = ACTIONS(4950), - [anon_sym_super_AT] = ACTIONS(4950), - [sym_real_literal] = ACTIONS(4950), - [sym_integer_literal] = ACTIONS(4948), - [sym_hex_literal] = ACTIONS(4950), - [sym_bin_literal] = ACTIONS(4950), - [anon_sym_true] = ACTIONS(4948), - [anon_sym_false] = ACTIONS(4948), - [anon_sym_SQUOTE] = ACTIONS(4950), - [sym__backtick_identifier] = ACTIONS(4950), - [sym__automatic_semicolon] = ACTIONS(4950), - [sym_safe_nav] = ACTIONS(4950), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4950), + [3209] = { + [aux_sym_type_constraints_repeat1] = STATE(3250), + [sym__alpha_identifier] = ACTIONS(4424), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_RBRACK] = ACTIONS(4426), + [anon_sym_as] = ACTIONS(4424), + [anon_sym_EQ] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(6679), + [anon_sym_RPAREN] = ACTIONS(4426), + [anon_sym_by] = ACTIONS(4424), + [anon_sym_LT] = ACTIONS(4424), + [anon_sym_GT] = ACTIONS(4424), + [anon_sym_where] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym_get] = ACTIONS(4424), + [anon_sym_set] = ACTIONS(4424), + [anon_sym_STAR] = ACTIONS(4424), + [anon_sym_DASH_GT] = ACTIONS(4426), + [sym_label] = ACTIONS(4426), + [anon_sym_in] = ACTIONS(4424), + [anon_sym_while] = ACTIONS(4424), + [anon_sym_DOT_DOT] = ACTIONS(4426), + [anon_sym_QMARK_COLON] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_PIPE_PIPE] = ACTIONS(4426), + [anon_sym_else] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_PERCENT_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4424), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4426), + [anon_sym_EQ_EQ] = ACTIONS(4424), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4426), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_BANGin] = ACTIONS(4426), + [anon_sym_is] = ACTIONS(4424), + [anon_sym_BANGis] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_SLASH] = ACTIONS(4424), + [anon_sym_PERCENT] = ACTIONS(4424), + [anon_sym_as_QMARK] = ACTIONS(4426), + [anon_sym_PLUS_PLUS] = ACTIONS(4426), + [anon_sym_DASH_DASH] = ACTIONS(4426), + [anon_sym_BANG_BANG] = ACTIONS(4426), + [anon_sym_suspend] = ACTIONS(4424), + [anon_sym_sealed] = ACTIONS(4424), + [anon_sym_annotation] = ACTIONS(4424), + [anon_sym_data] = ACTIONS(4424), + [anon_sym_inner] = ACTIONS(4424), + [anon_sym_value] = ACTIONS(4424), + [anon_sym_override] = ACTIONS(4424), + [anon_sym_lateinit] = ACTIONS(4424), + [anon_sym_public] = ACTIONS(4424), + [anon_sym_private] = ACTIONS(4424), + [anon_sym_internal] = ACTIONS(4424), + [anon_sym_protected] = ACTIONS(4424), + [anon_sym_tailrec] = ACTIONS(4424), + [anon_sym_operator] = ACTIONS(4424), + [anon_sym_infix] = ACTIONS(4424), + [anon_sym_inline] = ACTIONS(4424), + [anon_sym_external] = ACTIONS(4424), + [sym_property_modifier] = ACTIONS(4424), + [anon_sym_abstract] = ACTIONS(4424), + [anon_sym_final] = ACTIONS(4424), + [anon_sym_open] = ACTIONS(4424), + [anon_sym_vararg] = ACTIONS(4424), + [anon_sym_noinline] = ACTIONS(4424), + [anon_sym_crossinline] = ACTIONS(4424), + [anon_sym_expect] = ACTIONS(4424), + [anon_sym_actual] = ACTIONS(4424), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4426), + [sym_safe_nav] = ACTIONS(4426), + [sym_multiline_comment] = ACTIONS(3), }, - [3192] = { + [3210] = { + [sym__alpha_identifier] = ACTIONS(5183), + [anon_sym_AT] = ACTIONS(5185), + [anon_sym_LBRACK] = ACTIONS(5185), + [anon_sym_as] = ACTIONS(5183), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5185), + [anon_sym_RBRACE] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5185), + [anon_sym_COMMA] = ACTIONS(5185), + [anon_sym_LT] = ACTIONS(5183), + [anon_sym_GT] = ACTIONS(5183), + [anon_sym_where] = ACTIONS(5183), + [anon_sym_object] = ACTIONS(5183), + [anon_sym_fun] = ACTIONS(5183), + [anon_sym_DOT] = ACTIONS(5183), + [anon_sym_SEMI] = ACTIONS(5185), + [anon_sym_get] = ACTIONS(5183), + [anon_sym_set] = ACTIONS(5183), + [anon_sym_this] = ACTIONS(5183), + [anon_sym_super] = ACTIONS(5183), + [anon_sym_STAR] = ACTIONS(5183), + [sym_label] = ACTIONS(5183), + [anon_sym_in] = ACTIONS(5183), + [anon_sym_DOT_DOT] = ACTIONS(5185), + [anon_sym_QMARK_COLON] = ACTIONS(5185), + [anon_sym_AMP_AMP] = ACTIONS(5185), + [anon_sym_PIPE_PIPE] = ACTIONS(5185), + [anon_sym_null] = ACTIONS(5183), + [anon_sym_if] = ACTIONS(5183), + [anon_sym_else] = ACTIONS(5183), + [anon_sym_when] = ACTIONS(5183), + [anon_sym_try] = ACTIONS(5183), + [anon_sym_throw] = ACTIONS(5183), + [anon_sym_return] = ACTIONS(5183), + [anon_sym_continue] = ACTIONS(5183), + [anon_sym_break] = ACTIONS(5183), + [anon_sym_COLON_COLON] = ACTIONS(5185), + [anon_sym_PLUS_EQ] = ACTIONS(5185), + [anon_sym_DASH_EQ] = ACTIONS(5185), + [anon_sym_STAR_EQ] = ACTIONS(5185), + [anon_sym_SLASH_EQ] = ACTIONS(5185), + [anon_sym_PERCENT_EQ] = ACTIONS(5185), + [anon_sym_BANG_EQ] = ACTIONS(5183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5185), + [anon_sym_EQ_EQ] = ACTIONS(5183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5185), + [anon_sym_LT_EQ] = ACTIONS(5185), + [anon_sym_GT_EQ] = ACTIONS(5185), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(5183), + [anon_sym_BANGis] = ACTIONS(5185), + [anon_sym_PLUS] = ACTIONS(5183), + [anon_sym_DASH] = ACTIONS(5183), + [anon_sym_SLASH] = ACTIONS(5183), + [anon_sym_PERCENT] = ACTIONS(5183), + [anon_sym_as_QMARK] = ACTIONS(5185), + [anon_sym_PLUS_PLUS] = ACTIONS(5185), + [anon_sym_DASH_DASH] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5183), + [anon_sym_BANG_BANG] = ACTIONS(5185), + [anon_sym_data] = ACTIONS(5183), + [anon_sym_inner] = ACTIONS(5183), + [anon_sym_value] = ACTIONS(5183), + [anon_sym_expect] = ACTIONS(5183), + [anon_sym_actual] = ACTIONS(5183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5185), + [anon_sym_continue_AT] = ACTIONS(5185), + [anon_sym_break_AT] = ACTIONS(5185), + [anon_sym_this_AT] = ACTIONS(5185), + [anon_sym_super_AT] = ACTIONS(5185), + [sym_real_literal] = ACTIONS(5185), + [sym_integer_literal] = ACTIONS(5183), + [sym_hex_literal] = ACTIONS(5185), + [sym_bin_literal] = ACTIONS(5185), + [anon_sym_true] = ACTIONS(5183), + [anon_sym_false] = ACTIONS(5183), + [anon_sym_SQUOTE] = ACTIONS(5185), + [sym__backtick_identifier] = ACTIONS(5185), + [sym__automatic_semicolon] = ACTIONS(5185), + [sym_safe_nav] = ACTIONS(5185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5185), + }, + [3211] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6690), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [3212] = { + [sym__alpha_identifier] = ACTIONS(4834), + [anon_sym_AT] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_as] = ACTIONS(4834), + [anon_sym_EQ] = ACTIONS(4834), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_RBRACE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4834), + [anon_sym_where] = ACTIONS(4834), + [anon_sym_object] = ACTIONS(4834), + [anon_sym_fun] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_get] = ACTIONS(4834), + [anon_sym_set] = ACTIONS(4834), + [anon_sym_this] = ACTIONS(4834), + [anon_sym_super] = ACTIONS(4834), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(4834), + [anon_sym_in] = ACTIONS(4834), + [anon_sym_DOT_DOT] = ACTIONS(4836), + [anon_sym_QMARK_COLON] = ACTIONS(4836), + [anon_sym_AMP_AMP] = ACTIONS(4836), + [anon_sym_PIPE_PIPE] = ACTIONS(4836), + [anon_sym_null] = ACTIONS(4834), + [anon_sym_if] = ACTIONS(4834), + [anon_sym_else] = ACTIONS(4834), + [anon_sym_when] = ACTIONS(4834), + [anon_sym_try] = ACTIONS(4834), + [anon_sym_throw] = ACTIONS(4834), + [anon_sym_return] = ACTIONS(4834), + [anon_sym_continue] = ACTIONS(4834), + [anon_sym_break] = ACTIONS(4834), + [anon_sym_COLON_COLON] = ACTIONS(4836), + [anon_sym_PLUS_EQ] = ACTIONS(4836), + [anon_sym_DASH_EQ] = ACTIONS(4836), + [anon_sym_STAR_EQ] = ACTIONS(4836), + [anon_sym_SLASH_EQ] = ACTIONS(4836), + [anon_sym_PERCENT_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4836), + [anon_sym_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4836), + [anon_sym_LT_EQ] = ACTIONS(4836), + [anon_sym_GT_EQ] = ACTIONS(4836), + [anon_sym_BANGin] = ACTIONS(4836), + [anon_sym_is] = ACTIONS(4834), + [anon_sym_BANGis] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4834), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4834), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(4836), + [anon_sym_PLUS_PLUS] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4836), + [anon_sym_BANG] = ACTIONS(4834), + [anon_sym_BANG_BANG] = ACTIONS(4836), + [anon_sym_data] = ACTIONS(4834), + [anon_sym_inner] = ACTIONS(4834), + [anon_sym_value] = ACTIONS(4834), + [anon_sym_expect] = ACTIONS(4834), + [anon_sym_actual] = ACTIONS(4834), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4836), + [anon_sym_continue_AT] = ACTIONS(4836), + [anon_sym_break_AT] = ACTIONS(4836), + [anon_sym_this_AT] = ACTIONS(4836), + [anon_sym_super_AT] = ACTIONS(4836), + [sym_real_literal] = ACTIONS(4836), + [sym_integer_literal] = ACTIONS(4834), + [sym_hex_literal] = ACTIONS(4836), + [sym_bin_literal] = ACTIONS(4836), + [anon_sym_true] = ACTIONS(4834), + [anon_sym_false] = ACTIONS(4834), + [anon_sym_SQUOTE] = ACTIONS(4836), + [sym__backtick_identifier] = ACTIONS(4836), + [sym__automatic_semicolon] = ACTIONS(4836), + [sym_safe_nav] = ACTIONS(4836), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4836), + }, + [3213] = { + [sym__alpha_identifier] = ACTIONS(4918), + [anon_sym_AT] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4918), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4918), + [anon_sym_where] = ACTIONS(4918), + [anon_sym_object] = ACTIONS(4918), + [anon_sym_fun] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_get] = ACTIONS(4918), + [anon_sym_set] = ACTIONS(4918), + [anon_sym_this] = ACTIONS(4918), + [anon_sym_super] = ACTIONS(4918), + [anon_sym_STAR] = ACTIONS(4918), + [sym_label] = ACTIONS(4918), + [anon_sym_in] = ACTIONS(4918), + [anon_sym_DOT_DOT] = ACTIONS(4920), + [anon_sym_QMARK_COLON] = ACTIONS(4920), + [anon_sym_AMP_AMP] = ACTIONS(4920), + [anon_sym_PIPE_PIPE] = ACTIONS(4920), + [anon_sym_null] = ACTIONS(4918), + [anon_sym_if] = ACTIONS(4918), + [anon_sym_else] = ACTIONS(4918), + [anon_sym_when] = ACTIONS(4918), + [anon_sym_try] = ACTIONS(4918), + [anon_sym_throw] = ACTIONS(4918), + [anon_sym_return] = ACTIONS(4918), + [anon_sym_continue] = ACTIONS(4918), + [anon_sym_break] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_PLUS_EQ] = ACTIONS(4920), + [anon_sym_DASH_EQ] = ACTIONS(4920), + [anon_sym_STAR_EQ] = ACTIONS(4920), + [anon_sym_SLASH_EQ] = ACTIONS(4920), + [anon_sym_PERCENT_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4918), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ] = ACTIONS(4918), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_BANGin] = ACTIONS(4920), + [anon_sym_is] = ACTIONS(4918), + [anon_sym_BANGis] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4918), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4918), + [anon_sym_PERCENT] = ACTIONS(4918), + [anon_sym_as_QMARK] = ACTIONS(4920), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4918), + [anon_sym_BANG_BANG] = ACTIONS(4920), + [anon_sym_data] = ACTIONS(4918), + [anon_sym_inner] = ACTIONS(4918), + [anon_sym_value] = ACTIONS(4918), + [anon_sym_expect] = ACTIONS(4918), + [anon_sym_actual] = ACTIONS(4918), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4920), + [anon_sym_continue_AT] = ACTIONS(4920), + [anon_sym_break_AT] = ACTIONS(4920), + [anon_sym_this_AT] = ACTIONS(4920), + [anon_sym_super_AT] = ACTIONS(4920), + [sym_real_literal] = ACTIONS(4920), + [sym_integer_literal] = ACTIONS(4918), + [sym_hex_literal] = ACTIONS(4920), + [sym_bin_literal] = ACTIONS(4920), + [anon_sym_true] = ACTIONS(4918), + [anon_sym_false] = ACTIONS(4918), + [anon_sym_SQUOTE] = ACTIONS(4920), + [sym__backtick_identifier] = ACTIONS(4920), + [sym__automatic_semicolon] = ACTIONS(4920), + [sym_safe_nav] = ACTIONS(4920), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4920), + }, + [3214] = { + [sym_function_body] = STATE(3397), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_DASH_GT] = ACTIONS(4449), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + }, + [3215] = { + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_as] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), + [anon_sym_this] = ACTIONS(123), + [anon_sym_super] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(123), + [sym_label] = ACTIONS(123), + [anon_sym_in] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_break] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(121), + [anon_sym_DASH_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(123), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_data] = ACTIONS(123), + [anon_sym_inner] = ACTIONS(123), + [anon_sym_value] = ACTIONS(123), + [anon_sym_expect] = ACTIONS(123), + [anon_sym_actual] = ACTIONS(123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(121), + [anon_sym_continue_AT] = ACTIONS(121), + [anon_sym_break_AT] = ACTIONS(121), + [anon_sym_this_AT] = ACTIONS(121), + [anon_sym_super_AT] = ACTIONS(121), + [sym_real_literal] = ACTIONS(121), + [sym_integer_literal] = ACTIONS(123), + [sym_hex_literal] = ACTIONS(121), + [sym_bin_literal] = ACTIONS(121), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), + [anon_sym_SQUOTE] = ACTIONS(121), + [sym__backtick_identifier] = ACTIONS(121), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(121), + }, + [3216] = { + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_as] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4776), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_COMMA] = ACTIONS(4776), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_where] = ACTIONS(4774), + [anon_sym_object] = ACTIONS(4774), + [anon_sym_fun] = ACTIONS(4774), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4776), + [anon_sym_get] = ACTIONS(4774), + [anon_sym_set] = ACTIONS(4774), + [anon_sym_this] = ACTIONS(4774), + [anon_sym_super] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [sym_label] = ACTIONS(4774), + [anon_sym_in] = ACTIONS(4774), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_QMARK_COLON] = ACTIONS(4776), + [anon_sym_AMP_AMP] = ACTIONS(4776), + [anon_sym_PIPE_PIPE] = ACTIONS(4776), + [anon_sym_null] = ACTIONS(4774), + [anon_sym_if] = ACTIONS(4774), + [anon_sym_else] = ACTIONS(4774), + [anon_sym_when] = ACTIONS(4774), + [anon_sym_try] = ACTIONS(4774), + [anon_sym_throw] = ACTIONS(4774), + [anon_sym_return] = ACTIONS(4774), + [anon_sym_continue] = ACTIONS(4774), + [anon_sym_break] = ACTIONS(4774), + [anon_sym_COLON_COLON] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4776), + [anon_sym_DASH_EQ] = ACTIONS(4776), + [anon_sym_STAR_EQ] = ACTIONS(4776), + [anon_sym_SLASH_EQ] = ACTIONS(4776), + [anon_sym_PERCENT_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4776), + [anon_sym_BANGin] = ACTIONS(4776), + [anon_sym_is] = ACTIONS(4774), + [anon_sym_BANGis] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_as_QMARK] = ACTIONS(4776), + [anon_sym_PLUS_PLUS] = ACTIONS(4776), + [anon_sym_DASH_DASH] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4774), + [anon_sym_BANG_BANG] = ACTIONS(4776), + [anon_sym_data] = ACTIONS(4774), + [anon_sym_inner] = ACTIONS(4774), + [anon_sym_value] = ACTIONS(4774), + [anon_sym_expect] = ACTIONS(4774), + [anon_sym_actual] = ACTIONS(4774), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4776), + [anon_sym_continue_AT] = ACTIONS(4776), + [anon_sym_break_AT] = ACTIONS(4776), + [anon_sym_this_AT] = ACTIONS(4776), + [anon_sym_super_AT] = ACTIONS(4776), + [sym_real_literal] = ACTIONS(4776), + [sym_integer_literal] = ACTIONS(4774), + [sym_hex_literal] = ACTIONS(4776), + [sym_bin_literal] = ACTIONS(4776), + [anon_sym_true] = ACTIONS(4774), + [anon_sym_false] = ACTIONS(4774), + [anon_sym_SQUOTE] = ACTIONS(4776), + [sym__backtick_identifier] = ACTIONS(4776), + [sym__automatic_semicolon] = ACTIONS(4776), + [sym_safe_nav] = ACTIONS(4776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4776), + }, + [3217] = { + [sym__alpha_identifier] = ACTIONS(5179), + [anon_sym_AT] = ACTIONS(5181), + [anon_sym_LBRACK] = ACTIONS(5181), + [anon_sym_as] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5181), + [anon_sym_RBRACE] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5181), + [anon_sym_COMMA] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5179), + [anon_sym_GT] = ACTIONS(5179), + [anon_sym_where] = ACTIONS(5179), + [anon_sym_object] = ACTIONS(5179), + [anon_sym_fun] = ACTIONS(5179), + [anon_sym_DOT] = ACTIONS(5179), + [anon_sym_SEMI] = ACTIONS(5181), + [anon_sym_get] = ACTIONS(5179), + [anon_sym_set] = ACTIONS(5179), + [anon_sym_this] = ACTIONS(5179), + [anon_sym_super] = ACTIONS(5179), + [anon_sym_STAR] = ACTIONS(5179), + [sym_label] = ACTIONS(5179), + [anon_sym_in] = ACTIONS(5179), + [anon_sym_DOT_DOT] = ACTIONS(5181), + [anon_sym_QMARK_COLON] = ACTIONS(5181), + [anon_sym_AMP_AMP] = ACTIONS(5181), + [anon_sym_PIPE_PIPE] = ACTIONS(5181), + [anon_sym_null] = ACTIONS(5179), + [anon_sym_if] = ACTIONS(5179), + [anon_sym_else] = ACTIONS(5179), + [anon_sym_when] = ACTIONS(5179), + [anon_sym_try] = ACTIONS(5179), + [anon_sym_throw] = ACTIONS(5179), + [anon_sym_return] = ACTIONS(5179), + [anon_sym_continue] = ACTIONS(5179), + [anon_sym_break] = ACTIONS(5179), + [anon_sym_COLON_COLON] = ACTIONS(5181), + [anon_sym_PLUS_EQ] = ACTIONS(5181), + [anon_sym_DASH_EQ] = ACTIONS(5181), + [anon_sym_STAR_EQ] = ACTIONS(5181), + [anon_sym_SLASH_EQ] = ACTIONS(5181), + [anon_sym_PERCENT_EQ] = ACTIONS(5181), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5181), + [anon_sym_GT_EQ] = ACTIONS(5181), + [anon_sym_BANGin] = ACTIONS(5181), + [anon_sym_is] = ACTIONS(5179), + [anon_sym_BANGis] = ACTIONS(5181), + [anon_sym_PLUS] = ACTIONS(5179), + [anon_sym_DASH] = ACTIONS(5179), + [anon_sym_SLASH] = ACTIONS(5179), + [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_as_QMARK] = ACTIONS(5181), + [anon_sym_PLUS_PLUS] = ACTIONS(5181), + [anon_sym_DASH_DASH] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5179), + [anon_sym_BANG_BANG] = ACTIONS(5181), + [anon_sym_data] = ACTIONS(5179), + [anon_sym_inner] = ACTIONS(5179), + [anon_sym_value] = ACTIONS(5179), + [anon_sym_expect] = ACTIONS(5179), + [anon_sym_actual] = ACTIONS(5179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5181), + [anon_sym_continue_AT] = ACTIONS(5181), + [anon_sym_break_AT] = ACTIONS(5181), + [anon_sym_this_AT] = ACTIONS(5181), + [anon_sym_super_AT] = ACTIONS(5181), + [sym_real_literal] = ACTIONS(5181), + [sym_integer_literal] = ACTIONS(5179), + [sym_hex_literal] = ACTIONS(5181), + [sym_bin_literal] = ACTIONS(5181), + [anon_sym_true] = ACTIONS(5179), + [anon_sym_false] = ACTIONS(5179), + [anon_sym_SQUOTE] = ACTIONS(5181), + [sym__backtick_identifier] = ACTIONS(5181), + [sym__automatic_semicolon] = ACTIONS(5181), + [sym_safe_nav] = ACTIONS(5181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5181), + }, + [3218] = { + [sym__alpha_identifier] = ACTIONS(4471), + [anon_sym_AT] = ACTIONS(4473), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4471), + [anon_sym_EQ] = ACTIONS(4471), + [anon_sym_constructor] = ACTIONS(4471), + [anon_sym_LBRACE] = ACTIONS(4473), + [anon_sym_RBRACE] = ACTIONS(4473), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_where] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4471), + [anon_sym_SEMI] = ACTIONS(4473), + [anon_sym_get] = ACTIONS(4471), + [anon_sym_set] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_DASH_GT] = ACTIONS(4473), + [sym_label] = ACTIONS(4473), + [anon_sym_in] = ACTIONS(4471), + [anon_sym_while] = ACTIONS(4471), + [anon_sym_DOT_DOT] = ACTIONS(4473), + [anon_sym_QMARK_COLON] = ACTIONS(4473), + [anon_sym_AMP_AMP] = ACTIONS(4473), + [anon_sym_PIPE_PIPE] = ACTIONS(4473), + [anon_sym_else] = ACTIONS(4471), + [anon_sym_COLON_COLON] = ACTIONS(4473), + [anon_sym_PLUS_EQ] = ACTIONS(4473), + [anon_sym_DASH_EQ] = ACTIONS(4473), + [anon_sym_STAR_EQ] = ACTIONS(4473), + [anon_sym_SLASH_EQ] = ACTIONS(4473), + [anon_sym_PERCENT_EQ] = ACTIONS(4473), + [anon_sym_BANG_EQ] = ACTIONS(4471), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4473), + [anon_sym_EQ_EQ] = ACTIONS(4471), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4473), + [anon_sym_LT_EQ] = ACTIONS(4473), + [anon_sym_GT_EQ] = ACTIONS(4473), + [anon_sym_BANGin] = ACTIONS(4473), + [anon_sym_is] = ACTIONS(4471), + [anon_sym_BANGis] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_PERCENT] = ACTIONS(4471), + [anon_sym_as_QMARK] = ACTIONS(4473), + [anon_sym_PLUS_PLUS] = ACTIONS(4473), + [anon_sym_DASH_DASH] = ACTIONS(4473), + [anon_sym_BANG_BANG] = ACTIONS(4473), + [anon_sym_suspend] = ACTIONS(4471), + [anon_sym_sealed] = ACTIONS(4471), + [anon_sym_annotation] = ACTIONS(4471), + [anon_sym_data] = ACTIONS(4471), + [anon_sym_inner] = ACTIONS(4471), + [anon_sym_value] = ACTIONS(4471), + [anon_sym_override] = ACTIONS(4471), + [anon_sym_lateinit] = ACTIONS(4471), + [anon_sym_public] = ACTIONS(4471), + [anon_sym_private] = ACTIONS(4471), + [anon_sym_internal] = ACTIONS(4471), + [anon_sym_protected] = ACTIONS(4471), + [anon_sym_tailrec] = ACTIONS(4471), + [anon_sym_operator] = ACTIONS(4471), + [anon_sym_infix] = ACTIONS(4471), + [anon_sym_inline] = ACTIONS(4471), + [anon_sym_external] = ACTIONS(4471), + [sym_property_modifier] = ACTIONS(4471), + [anon_sym_abstract] = ACTIONS(4471), + [anon_sym_final] = ACTIONS(4471), + [anon_sym_open] = ACTIONS(4471), + [anon_sym_vararg] = ACTIONS(4471), + [anon_sym_noinline] = ACTIONS(4471), + [anon_sym_crossinline] = ACTIONS(4471), + [anon_sym_expect] = ACTIONS(4471), + [anon_sym_actual] = ACTIONS(4471), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4473), + [sym_safe_nav] = ACTIONS(4473), + [sym_multiline_comment] = ACTIONS(3), + }, + [3219] = { + [sym__alpha_identifier] = ACTIONS(5163), + [anon_sym_AT] = ACTIONS(5165), + [anon_sym_LBRACK] = ACTIONS(5165), + [anon_sym_as] = ACTIONS(5163), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5165), + [anon_sym_RBRACE] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5165), + [anon_sym_COMMA] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5163), + [anon_sym_GT] = ACTIONS(5163), + [anon_sym_where] = ACTIONS(5163), + [anon_sym_object] = ACTIONS(5163), + [anon_sym_fun] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5163), + [anon_sym_SEMI] = ACTIONS(5165), + [anon_sym_get] = ACTIONS(5163), + [anon_sym_set] = ACTIONS(5163), + [anon_sym_this] = ACTIONS(5163), + [anon_sym_super] = ACTIONS(5163), + [anon_sym_STAR] = ACTIONS(5163), + [sym_label] = ACTIONS(5163), + [anon_sym_in] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_QMARK_COLON] = ACTIONS(5165), + [anon_sym_AMP_AMP] = ACTIONS(5165), + [anon_sym_PIPE_PIPE] = ACTIONS(5165), + [anon_sym_null] = ACTIONS(5163), + [anon_sym_if] = ACTIONS(5163), + [anon_sym_else] = ACTIONS(5163), + [anon_sym_when] = ACTIONS(5163), + [anon_sym_try] = ACTIONS(5163), + [anon_sym_throw] = ACTIONS(5163), + [anon_sym_return] = ACTIONS(5163), + [anon_sym_continue] = ACTIONS(5163), + [anon_sym_break] = ACTIONS(5163), + [anon_sym_COLON_COLON] = ACTIONS(5165), + [anon_sym_PLUS_EQ] = ACTIONS(5165), + [anon_sym_DASH_EQ] = ACTIONS(5165), + [anon_sym_STAR_EQ] = ACTIONS(5165), + [anon_sym_SLASH_EQ] = ACTIONS(5165), + [anon_sym_PERCENT_EQ] = ACTIONS(5165), + [anon_sym_BANG_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5165), + [anon_sym_EQ_EQ] = ACTIONS(5163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5165), + [anon_sym_LT_EQ] = ACTIONS(5165), + [anon_sym_GT_EQ] = ACTIONS(5165), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(5163), + [anon_sym_BANGis] = ACTIONS(5165), + [anon_sym_PLUS] = ACTIONS(5163), + [anon_sym_DASH] = ACTIONS(5163), + [anon_sym_SLASH] = ACTIONS(5163), + [anon_sym_PERCENT] = ACTIONS(5163), + [anon_sym_as_QMARK] = ACTIONS(5165), + [anon_sym_PLUS_PLUS] = ACTIONS(5165), + [anon_sym_DASH_DASH] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5163), + [anon_sym_BANG_BANG] = ACTIONS(5165), + [anon_sym_data] = ACTIONS(5163), + [anon_sym_inner] = ACTIONS(5163), + [anon_sym_value] = ACTIONS(5163), + [anon_sym_expect] = ACTIONS(5163), + [anon_sym_actual] = ACTIONS(5163), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5165), + [anon_sym_continue_AT] = ACTIONS(5165), + [anon_sym_break_AT] = ACTIONS(5165), + [anon_sym_this_AT] = ACTIONS(5165), + [anon_sym_super_AT] = ACTIONS(5165), + [sym_real_literal] = ACTIONS(5165), + [sym_integer_literal] = ACTIONS(5163), + [sym_hex_literal] = ACTIONS(5165), + [sym_bin_literal] = ACTIONS(5165), + [anon_sym_true] = ACTIONS(5163), + [anon_sym_false] = ACTIONS(5163), + [anon_sym_SQUOTE] = ACTIONS(5165), + [sym__backtick_identifier] = ACTIONS(5165), + [sym__automatic_semicolon] = ACTIONS(5165), + [sym_safe_nav] = ACTIONS(5165), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5165), + }, + [3220] = { [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), [anon_sym_EQ] = ACTIONS(4183), - [anon_sym_fun] = ACTIONS(4183), [anon_sym_LBRACE] = ACTIONS(4185), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), @@ -380363,6 +380658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4183), [anon_sym_where] = ACTIONS(4183), [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), @@ -380433,21 +380729,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4185), }, - [3193] = { - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3335), + [3221] = { + [sym__alpha_identifier] = ACTIONS(5159), + [anon_sym_AT] = ACTIONS(5161), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym_as] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5161), + [anon_sym_RBRACE] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5161), + [anon_sym_COMMA] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5159), + [anon_sym_GT] = ACTIONS(5159), + [anon_sym_where] = ACTIONS(5159), + [anon_sym_object] = ACTIONS(5159), + [anon_sym_fun] = ACTIONS(5159), + [anon_sym_DOT] = ACTIONS(5159), + [anon_sym_SEMI] = ACTIONS(5161), + [anon_sym_get] = ACTIONS(5159), + [anon_sym_set] = ACTIONS(5159), + [anon_sym_this] = ACTIONS(5159), + [anon_sym_super] = ACTIONS(5159), + [anon_sym_STAR] = ACTIONS(5159), + [sym_label] = ACTIONS(5159), + [anon_sym_in] = ACTIONS(5159), + [anon_sym_DOT_DOT] = ACTIONS(5161), + [anon_sym_QMARK_COLON] = ACTIONS(5161), + [anon_sym_AMP_AMP] = ACTIONS(5161), + [anon_sym_PIPE_PIPE] = ACTIONS(5161), + [anon_sym_null] = ACTIONS(5159), + [anon_sym_if] = ACTIONS(5159), + [anon_sym_else] = ACTIONS(5159), + [anon_sym_when] = ACTIONS(5159), + [anon_sym_try] = ACTIONS(5159), + [anon_sym_throw] = ACTIONS(5159), + [anon_sym_return] = ACTIONS(5159), + [anon_sym_continue] = ACTIONS(5159), + [anon_sym_break] = ACTIONS(5159), + [anon_sym_COLON_COLON] = ACTIONS(5161), + [anon_sym_PLUS_EQ] = ACTIONS(5161), + [anon_sym_DASH_EQ] = ACTIONS(5161), + [anon_sym_STAR_EQ] = ACTIONS(5161), + [anon_sym_SLASH_EQ] = ACTIONS(5161), + [anon_sym_PERCENT_EQ] = ACTIONS(5161), + [anon_sym_BANG_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5161), + [anon_sym_EQ_EQ] = ACTIONS(5159), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5161), + [anon_sym_LT_EQ] = ACTIONS(5161), + [anon_sym_GT_EQ] = ACTIONS(5161), + [anon_sym_BANGin] = ACTIONS(5161), + [anon_sym_is] = ACTIONS(5159), + [anon_sym_BANGis] = ACTIONS(5161), + [anon_sym_PLUS] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5159), + [anon_sym_SLASH] = ACTIONS(5159), + [anon_sym_PERCENT] = ACTIONS(5159), + [anon_sym_as_QMARK] = ACTIONS(5161), + [anon_sym_PLUS_PLUS] = ACTIONS(5161), + [anon_sym_DASH_DASH] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5159), + [anon_sym_BANG_BANG] = ACTIONS(5161), + [anon_sym_data] = ACTIONS(5159), + [anon_sym_inner] = ACTIONS(5159), + [anon_sym_value] = ACTIONS(5159), + [anon_sym_expect] = ACTIONS(5159), + [anon_sym_actual] = ACTIONS(5159), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5161), + [anon_sym_continue_AT] = ACTIONS(5161), + [anon_sym_break_AT] = ACTIONS(5161), + [anon_sym_this_AT] = ACTIONS(5161), + [anon_sym_super_AT] = ACTIONS(5161), + [sym_real_literal] = ACTIONS(5161), + [sym_integer_literal] = ACTIONS(5159), + [sym_hex_literal] = ACTIONS(5161), + [sym_bin_literal] = ACTIONS(5161), + [anon_sym_true] = ACTIONS(5159), + [anon_sym_false] = ACTIONS(5159), + [anon_sym_SQUOTE] = ACTIONS(5161), + [sym__backtick_identifier] = ACTIONS(5161), + [sym__automatic_semicolon] = ACTIONS(5161), + [sym_safe_nav] = ACTIONS(5161), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5161), + }, + [3222] = { + [aux_sym_user_type_repeat1] = STATE(2910), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_RBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_RPAREN] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6694), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [anon_sym_DASH_GT] = ACTIONS(4195), + [sym_label] = ACTIONS(4195), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_while] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), + }, + [3223] = { + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_RBRACK] = ACTIONS(4457), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_RPAREN] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_label] = ACTIONS(4457), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_while] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_suspend] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_annotation] = ACTIONS(4455), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_lateinit] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_tailrec] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_infix] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_external] = ACTIONS(4455), + [sym_property_modifier] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_final] = ACTIONS(4455), + [anon_sym_open] = ACTIONS(4455), + [anon_sym_vararg] = ACTIONS(4455), + [anon_sym_noinline] = ACTIONS(4455), + [anon_sym_crossinline] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [aux_sym_unsigned_literal_token1] = ACTIONS(6697), + [anon_sym_L] = ACTIONS(6699), + [sym__backtick_identifier] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), + [sym_multiline_comment] = ACTIONS(3), + }, + [3224] = { + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(6547), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), @@ -380518,2223 +381069,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4185), }, - [3194] = { - [sym_class_body] = STATE(3632), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(6758), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_RBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_RPAREN] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [anon_sym_DASH_GT] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_while] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), + [3225] = { + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [3195] = { - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_fun] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(4467), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(4465), - [anon_sym_object] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_this] = ACTIONS(4465), - [anon_sym_super] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [sym_label] = ACTIONS(4465), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_null] = ACTIONS(4465), - [anon_sym_if] = ACTIONS(4465), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_when] = ACTIONS(4465), - [anon_sym_try] = ACTIONS(4465), - [anon_sym_throw] = ACTIONS(4465), - [anon_sym_return] = ACTIONS(4465), - [anon_sym_continue] = ACTIONS(4465), - [anon_sym_break] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4467), - [anon_sym_continue_AT] = ACTIONS(4467), - [anon_sym_break_AT] = ACTIONS(4467), - [anon_sym_this_AT] = ACTIONS(4467), - [anon_sym_super_AT] = ACTIONS(4467), - [sym_real_literal] = ACTIONS(4467), - [sym_integer_literal] = ACTIONS(4465), - [sym_hex_literal] = ACTIONS(4467), - [sym_bin_literal] = ACTIONS(4467), - [anon_sym_true] = ACTIONS(4465), - [anon_sym_false] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4467), - [sym__backtick_identifier] = ACTIONS(4467), - [sym__automatic_semicolon] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4467), + [3226] = { + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_object] = ACTIONS(4633), + [anon_sym_fun] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_this] = ACTIONS(4633), + [anon_sym_super] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [sym_label] = ACTIONS(4633), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_null] = ACTIONS(4633), + [anon_sym_if] = ACTIONS(4633), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_when] = ACTIONS(4633), + [anon_sym_try] = ACTIONS(4633), + [anon_sym_throw] = ACTIONS(4633), + [anon_sym_return] = ACTIONS(4633), + [anon_sym_continue] = ACTIONS(4633), + [anon_sym_break] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4633), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4635), + [anon_sym_continue_AT] = ACTIONS(4635), + [anon_sym_break_AT] = ACTIONS(4635), + [anon_sym_this_AT] = ACTIONS(4635), + [anon_sym_super_AT] = ACTIONS(4635), + [sym_real_literal] = ACTIONS(4635), + [sym_integer_literal] = ACTIONS(4633), + [sym_hex_literal] = ACTIONS(4635), + [sym_bin_literal] = ACTIONS(4635), + [anon_sym_true] = ACTIONS(4633), + [anon_sym_false] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4635), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4635), }, - [3196] = { - [sym__alpha_identifier] = ACTIONS(4449), - [anon_sym_AT] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [anon_sym_RBRACK] = ACTIONS(4451), - [anon_sym_as] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(4449), - [anon_sym_LBRACE] = ACTIONS(4451), - [anon_sym_RBRACE] = ACTIONS(4451), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_COMMA] = ACTIONS(4451), - [anon_sym_RPAREN] = ACTIONS(4451), - [anon_sym_LT] = ACTIONS(4449), - [anon_sym_GT] = ACTIONS(4449), - [anon_sym_where] = ACTIONS(4449), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [anon_sym_get] = ACTIONS(4449), - [anon_sym_set] = ACTIONS(4449), - [anon_sym_STAR] = ACTIONS(4449), - [anon_sym_DASH_GT] = ACTIONS(4451), - [sym_label] = ACTIONS(4451), - [anon_sym_in] = ACTIONS(4449), - [anon_sym_while] = ACTIONS(4449), - [anon_sym_DOT_DOT] = ACTIONS(4451), - [anon_sym_QMARK_COLON] = ACTIONS(4451), - [anon_sym_AMP_AMP] = ACTIONS(4451), - [anon_sym_PIPE_PIPE] = ACTIONS(4451), - [anon_sym_else] = ACTIONS(4449), - [anon_sym_catch] = ACTIONS(4449), - [anon_sym_finally] = ACTIONS(4449), - [anon_sym_COLON_COLON] = ACTIONS(4451), - [anon_sym_PLUS_EQ] = ACTIONS(4451), - [anon_sym_DASH_EQ] = ACTIONS(4451), - [anon_sym_STAR_EQ] = ACTIONS(4451), - [anon_sym_SLASH_EQ] = ACTIONS(4451), - [anon_sym_PERCENT_EQ] = ACTIONS(4451), - [anon_sym_BANG_EQ] = ACTIONS(4449), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4451), - [anon_sym_EQ_EQ] = ACTIONS(4449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4451), - [anon_sym_LT_EQ] = ACTIONS(4451), - [anon_sym_GT_EQ] = ACTIONS(4451), - [anon_sym_BANGin] = ACTIONS(4451), - [anon_sym_is] = ACTIONS(4449), - [anon_sym_BANGis] = ACTIONS(4451), - [anon_sym_PLUS] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_SLASH] = ACTIONS(4449), - [anon_sym_PERCENT] = ACTIONS(4449), - [anon_sym_as_QMARK] = ACTIONS(4451), - [anon_sym_PLUS_PLUS] = ACTIONS(4451), - [anon_sym_DASH_DASH] = ACTIONS(4451), - [anon_sym_BANG_BANG] = ACTIONS(4451), - [anon_sym_suspend] = ACTIONS(4449), - [anon_sym_sealed] = ACTIONS(4449), - [anon_sym_annotation] = ACTIONS(4449), - [anon_sym_data] = ACTIONS(4449), - [anon_sym_inner] = ACTIONS(4449), - [anon_sym_value] = ACTIONS(4449), - [anon_sym_override] = ACTIONS(4449), - [anon_sym_lateinit] = ACTIONS(4449), - [anon_sym_public] = ACTIONS(4449), - [anon_sym_private] = ACTIONS(4449), - [anon_sym_internal] = ACTIONS(4449), - [anon_sym_protected] = ACTIONS(4449), - [anon_sym_tailrec] = ACTIONS(4449), - [anon_sym_operator] = ACTIONS(4449), - [anon_sym_infix] = ACTIONS(4449), - [anon_sym_inline] = ACTIONS(4449), - [anon_sym_external] = ACTIONS(4449), - [sym_property_modifier] = ACTIONS(4449), - [anon_sym_abstract] = ACTIONS(4449), - [anon_sym_final] = ACTIONS(4449), - [anon_sym_open] = ACTIONS(4449), - [anon_sym_vararg] = ACTIONS(4449), - [anon_sym_noinline] = ACTIONS(4449), - [anon_sym_crossinline] = ACTIONS(4449), - [anon_sym_expect] = ACTIONS(4449), - [anon_sym_actual] = ACTIONS(4449), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4451), - [sym_safe_nav] = ACTIONS(4451), - [sym_multiline_comment] = ACTIONS(3), + [3227] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5049), + [anon_sym_COMMA] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_where] = ACTIONS(5047), + [anon_sym_object] = ACTIONS(5047), + [anon_sym_fun] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_SEMI] = ACTIONS(5049), + [anon_sym_get] = ACTIONS(5047), + [anon_sym_set] = ACTIONS(5047), + [anon_sym_this] = ACTIONS(5047), + [anon_sym_super] = ACTIONS(5047), + [anon_sym_STAR] = ACTIONS(5047), + [sym_label] = ACTIONS(5047), + [anon_sym_in] = ACTIONS(5047), + [anon_sym_DOT_DOT] = ACTIONS(5049), + [anon_sym_QMARK_COLON] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5049), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_if] = ACTIONS(5047), + [anon_sym_else] = ACTIONS(5047), + [anon_sym_when] = ACTIONS(5047), + [anon_sym_try] = ACTIONS(5047), + [anon_sym_throw] = ACTIONS(5047), + [anon_sym_return] = ACTIONS(5047), + [anon_sym_continue] = ACTIONS(5047), + [anon_sym_break] = ACTIONS(5047), + [anon_sym_COLON_COLON] = ACTIONS(5049), + [anon_sym_PLUS_EQ] = ACTIONS(5049), + [anon_sym_DASH_EQ] = ACTIONS(5049), + [anon_sym_STAR_EQ] = ACTIONS(5049), + [anon_sym_SLASH_EQ] = ACTIONS(5049), + [anon_sym_PERCENT_EQ] = ACTIONS(5049), + [anon_sym_BANG_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5049), + [anon_sym_EQ_EQ] = ACTIONS(5047), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5049), + [anon_sym_LT_EQ] = ACTIONS(5049), + [anon_sym_GT_EQ] = ACTIONS(5049), + [anon_sym_BANGin] = ACTIONS(5049), + [anon_sym_is] = ACTIONS(5047), + [anon_sym_BANGis] = ACTIONS(5049), + [anon_sym_PLUS] = ACTIONS(5047), + [anon_sym_DASH] = ACTIONS(5047), + [anon_sym_SLASH] = ACTIONS(5047), + [anon_sym_PERCENT] = ACTIONS(5047), + [anon_sym_as_QMARK] = ACTIONS(5049), + [anon_sym_PLUS_PLUS] = ACTIONS(5049), + [anon_sym_DASH_DASH] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5047), + [anon_sym_BANG_BANG] = ACTIONS(5049), + [anon_sym_data] = ACTIONS(5047), + [anon_sym_inner] = ACTIONS(5047), + [anon_sym_value] = ACTIONS(5047), + [anon_sym_expect] = ACTIONS(5047), + [anon_sym_actual] = ACTIONS(5047), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5049), + [anon_sym_continue_AT] = ACTIONS(5049), + [anon_sym_break_AT] = ACTIONS(5049), + [anon_sym_this_AT] = ACTIONS(5049), + [anon_sym_super_AT] = ACTIONS(5049), + [sym_real_literal] = ACTIONS(5049), + [sym_integer_literal] = ACTIONS(5047), + [sym_hex_literal] = ACTIONS(5049), + [sym_bin_literal] = ACTIONS(5049), + [anon_sym_true] = ACTIONS(5047), + [anon_sym_false] = ACTIONS(5047), + [anon_sym_SQUOTE] = ACTIONS(5049), + [sym__backtick_identifier] = ACTIONS(5049), + [sym__automatic_semicolon] = ACTIONS(5049), + [sym_safe_nav] = ACTIONS(5049), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5049), }, - [3197] = { - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_fun] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_object] = ACTIONS(4637), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_this] = ACTIONS(4637), - [anon_sym_super] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [sym_label] = ACTIONS(4637), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_null] = ACTIONS(4637), - [anon_sym_if] = ACTIONS(4637), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_when] = ACTIONS(4637), - [anon_sym_try] = ACTIONS(4637), - [anon_sym_throw] = ACTIONS(4637), - [anon_sym_return] = ACTIONS(4637), - [anon_sym_continue] = ACTIONS(4637), - [anon_sym_break] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4639), - [anon_sym_continue_AT] = ACTIONS(4639), - [anon_sym_break_AT] = ACTIONS(4639), - [anon_sym_this_AT] = ACTIONS(4639), - [anon_sym_super_AT] = ACTIONS(4639), - [sym_real_literal] = ACTIONS(4639), - [sym_integer_literal] = ACTIONS(4637), - [sym_hex_literal] = ACTIONS(4639), - [sym_bin_literal] = ACTIONS(4639), - [anon_sym_true] = ACTIONS(4637), - [anon_sym_false] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4639), - [sym__backtick_identifier] = ACTIONS(4639), - [sym__automatic_semicolon] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4639), + [3228] = { + [sym__alpha_identifier] = ACTIONS(5219), + [anon_sym_AT] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_as] = ACTIONS(5219), + [anon_sym_EQ] = ACTIONS(5219), + [anon_sym_LBRACE] = ACTIONS(5221), + [anon_sym_RBRACE] = ACTIONS(5221), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_where] = ACTIONS(5219), + [anon_sym_object] = ACTIONS(5219), + [anon_sym_fun] = ACTIONS(5219), + [anon_sym_DOT] = ACTIONS(5219), + [anon_sym_SEMI] = ACTIONS(5221), + [anon_sym_get] = ACTIONS(5219), + [anon_sym_set] = ACTIONS(5219), + [anon_sym_this] = ACTIONS(5219), + [anon_sym_super] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [sym_label] = ACTIONS(5219), + [anon_sym_in] = ACTIONS(5219), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_QMARK_COLON] = ACTIONS(5221), + [anon_sym_AMP_AMP] = ACTIONS(5221), + [anon_sym_PIPE_PIPE] = ACTIONS(5221), + [anon_sym_null] = ACTIONS(5219), + [anon_sym_if] = ACTIONS(5219), + [anon_sym_else] = ACTIONS(5219), + [anon_sym_when] = ACTIONS(5219), + [anon_sym_try] = ACTIONS(5219), + [anon_sym_throw] = ACTIONS(5219), + [anon_sym_return] = ACTIONS(5219), + [anon_sym_continue] = ACTIONS(5219), + [anon_sym_break] = ACTIONS(5219), + [anon_sym_COLON_COLON] = ACTIONS(5221), + [anon_sym_PLUS_EQ] = ACTIONS(5221), + [anon_sym_DASH_EQ] = ACTIONS(5221), + [anon_sym_STAR_EQ] = ACTIONS(5221), + [anon_sym_SLASH_EQ] = ACTIONS(5221), + [anon_sym_PERCENT_EQ] = ACTIONS(5221), + [anon_sym_BANG_EQ] = ACTIONS(5219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5221), + [anon_sym_GT_EQ] = ACTIONS(5221), + [anon_sym_BANGin] = ACTIONS(5221), + [anon_sym_is] = ACTIONS(5219), + [anon_sym_BANGis] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_PERCENT] = ACTIONS(5219), + [anon_sym_as_QMARK] = ACTIONS(5221), + [anon_sym_PLUS_PLUS] = ACTIONS(5221), + [anon_sym_DASH_DASH] = ACTIONS(5221), + [anon_sym_BANG] = ACTIONS(5219), + [anon_sym_BANG_BANG] = ACTIONS(5221), + [anon_sym_data] = ACTIONS(5219), + [anon_sym_inner] = ACTIONS(5219), + [anon_sym_value] = ACTIONS(5219), + [anon_sym_expect] = ACTIONS(5219), + [anon_sym_actual] = ACTIONS(5219), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5221), + [anon_sym_continue_AT] = ACTIONS(5221), + [anon_sym_break_AT] = ACTIONS(5221), + [anon_sym_this_AT] = ACTIONS(5221), + [anon_sym_super_AT] = ACTIONS(5221), + [sym_real_literal] = ACTIONS(5221), + [sym_integer_literal] = ACTIONS(5219), + [sym_hex_literal] = ACTIONS(5221), + [sym_bin_literal] = ACTIONS(5221), + [anon_sym_true] = ACTIONS(5219), + [anon_sym_false] = ACTIONS(5219), + [anon_sym_SQUOTE] = ACTIONS(5221), + [sym__backtick_identifier] = ACTIONS(5221), + [sym__automatic_semicolon] = ACTIONS(5221), + [sym_safe_nav] = ACTIONS(5221), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5221), }, - [3198] = { - [sym__alpha_identifier] = ACTIONS(4922), - [anon_sym_AT] = ACTIONS(4924), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4922), - [anon_sym_EQ] = ACTIONS(4922), - [anon_sym_fun] = ACTIONS(4922), - [anon_sym_LBRACE] = ACTIONS(4924), - [anon_sym_RBRACE] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4924), - [anon_sym_LT] = ACTIONS(4922), - [anon_sym_GT] = ACTIONS(4922), - [anon_sym_where] = ACTIONS(4922), - [anon_sym_object] = ACTIONS(4922), - [anon_sym_DOT] = ACTIONS(4922), - [anon_sym_SEMI] = ACTIONS(4924), - [anon_sym_get] = ACTIONS(4922), - [anon_sym_set] = ACTIONS(4922), - [anon_sym_this] = ACTIONS(4922), - [anon_sym_super] = ACTIONS(4922), - [anon_sym_STAR] = ACTIONS(4922), - [sym_label] = ACTIONS(4922), - [anon_sym_in] = ACTIONS(4922), - [anon_sym_DOT_DOT] = ACTIONS(4924), - [anon_sym_QMARK_COLON] = ACTIONS(4924), - [anon_sym_AMP_AMP] = ACTIONS(4924), - [anon_sym_PIPE_PIPE] = ACTIONS(4924), - [anon_sym_null] = ACTIONS(4922), - [anon_sym_if] = ACTIONS(4922), - [anon_sym_else] = ACTIONS(4922), - [anon_sym_when] = ACTIONS(4922), - [anon_sym_try] = ACTIONS(4922), - [anon_sym_throw] = ACTIONS(4922), - [anon_sym_return] = ACTIONS(4922), - [anon_sym_continue] = ACTIONS(4922), - [anon_sym_break] = ACTIONS(4922), - [anon_sym_COLON_COLON] = ACTIONS(4924), - [anon_sym_PLUS_EQ] = ACTIONS(4924), - [anon_sym_DASH_EQ] = ACTIONS(4924), - [anon_sym_STAR_EQ] = ACTIONS(4924), - [anon_sym_SLASH_EQ] = ACTIONS(4924), - [anon_sym_PERCENT_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ] = ACTIONS(4922), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4924), - [anon_sym_LT_EQ] = ACTIONS(4924), - [anon_sym_GT_EQ] = ACTIONS(4924), - [anon_sym_BANGin] = ACTIONS(4924), - [anon_sym_is] = ACTIONS(4922), - [anon_sym_BANGis] = ACTIONS(4924), - [anon_sym_PLUS] = ACTIONS(4922), - [anon_sym_DASH] = ACTIONS(4922), - [anon_sym_SLASH] = ACTIONS(4922), - [anon_sym_PERCENT] = ACTIONS(4922), - [anon_sym_as_QMARK] = ACTIONS(4924), - [anon_sym_PLUS_PLUS] = ACTIONS(4924), - [anon_sym_DASH_DASH] = ACTIONS(4924), - [anon_sym_BANG] = ACTIONS(4922), - [anon_sym_BANG_BANG] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4922), - [anon_sym_inner] = ACTIONS(4922), - [anon_sym_value] = ACTIONS(4922), - [anon_sym_expect] = ACTIONS(4922), - [anon_sym_actual] = ACTIONS(4922), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4924), - [anon_sym_continue_AT] = ACTIONS(4924), - [anon_sym_break_AT] = ACTIONS(4924), - [anon_sym_this_AT] = ACTIONS(4924), - [anon_sym_super_AT] = ACTIONS(4924), - [sym_real_literal] = ACTIONS(4924), - [sym_integer_literal] = ACTIONS(4922), - [sym_hex_literal] = ACTIONS(4924), - [sym_bin_literal] = ACTIONS(4924), - [anon_sym_true] = ACTIONS(4922), - [anon_sym_false] = ACTIONS(4922), - [anon_sym_SQUOTE] = ACTIONS(4924), - [sym__backtick_identifier] = ACTIONS(4924), - [sym__automatic_semicolon] = ACTIONS(4924), - [sym_safe_nav] = ACTIONS(4924), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4924), - }, - [3199] = { - [sym_class_body] = STATE(3537), - [sym_type_constraints] = STATE(3373), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_RBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_RPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [anon_sym_DASH_GT] = ACTIONS(4387), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_while] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - }, - [3200] = { - [sym__alpha_identifier] = ACTIONS(4918), - [anon_sym_AT] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(4920), - [anon_sym_as] = ACTIONS(4918), - [anon_sym_EQ] = ACTIONS(4918), - [anon_sym_fun] = ACTIONS(4918), - [anon_sym_LBRACE] = ACTIONS(4920), - [anon_sym_RBRACE] = ACTIONS(4920), - [anon_sym_LPAREN] = ACTIONS(4920), - [anon_sym_COMMA] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4918), - [anon_sym_GT] = ACTIONS(4918), - [anon_sym_where] = ACTIONS(4918), - [anon_sym_object] = ACTIONS(4918), - [anon_sym_DOT] = ACTIONS(4918), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_get] = ACTIONS(4918), - [anon_sym_set] = ACTIONS(4918), - [anon_sym_this] = ACTIONS(4918), - [anon_sym_super] = ACTIONS(4918), - [anon_sym_STAR] = ACTIONS(4918), - [sym_label] = ACTIONS(4918), - [anon_sym_in] = ACTIONS(4918), - [anon_sym_DOT_DOT] = ACTIONS(4920), - [anon_sym_QMARK_COLON] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [anon_sym_null] = ACTIONS(4918), - [anon_sym_if] = ACTIONS(4918), - [anon_sym_else] = ACTIONS(4918), - [anon_sym_when] = ACTIONS(4918), - [anon_sym_try] = ACTIONS(4918), - [anon_sym_throw] = ACTIONS(4918), - [anon_sym_return] = ACTIONS(4918), - [anon_sym_continue] = ACTIONS(4918), - [anon_sym_break] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_PLUS_EQ] = ACTIONS(4920), - [anon_sym_DASH_EQ] = ACTIONS(4920), - [anon_sym_STAR_EQ] = ACTIONS(4920), - [anon_sym_SLASH_EQ] = ACTIONS(4920), - [anon_sym_PERCENT_EQ] = ACTIONS(4920), - [anon_sym_BANG_EQ] = ACTIONS(4918), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4920), - [anon_sym_EQ_EQ] = ACTIONS(4918), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4920), - [anon_sym_LT_EQ] = ACTIONS(4920), - [anon_sym_GT_EQ] = ACTIONS(4920), - [anon_sym_BANGin] = ACTIONS(4920), - [anon_sym_is] = ACTIONS(4918), - [anon_sym_BANGis] = ACTIONS(4920), - [anon_sym_PLUS] = ACTIONS(4918), - [anon_sym_DASH] = ACTIONS(4918), - [anon_sym_SLASH] = ACTIONS(4918), - [anon_sym_PERCENT] = ACTIONS(4918), - [anon_sym_as_QMARK] = ACTIONS(4920), - [anon_sym_PLUS_PLUS] = ACTIONS(4920), - [anon_sym_DASH_DASH] = ACTIONS(4920), - [anon_sym_BANG] = ACTIONS(4918), - [anon_sym_BANG_BANG] = ACTIONS(4920), - [anon_sym_data] = ACTIONS(4918), - [anon_sym_inner] = ACTIONS(4918), - [anon_sym_value] = ACTIONS(4918), - [anon_sym_expect] = ACTIONS(4918), - [anon_sym_actual] = ACTIONS(4918), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4920), - [anon_sym_continue_AT] = ACTIONS(4920), - [anon_sym_break_AT] = ACTIONS(4920), - [anon_sym_this_AT] = ACTIONS(4920), - [anon_sym_super_AT] = ACTIONS(4920), - [sym_real_literal] = ACTIONS(4920), - [sym_integer_literal] = ACTIONS(4918), - [sym_hex_literal] = ACTIONS(4920), - [sym_bin_literal] = ACTIONS(4920), - [anon_sym_true] = ACTIONS(4918), - [anon_sym_false] = ACTIONS(4918), - [anon_sym_SQUOTE] = ACTIONS(4920), - [sym__backtick_identifier] = ACTIONS(4920), - [sym__automatic_semicolon] = ACTIONS(4920), - [sym_safe_nav] = ACTIONS(4920), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4920), - }, - [3201] = { - [sym_type_constraints] = STATE(3372), - [sym_enum_class_body] = STATE(3537), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_RBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_RPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [anon_sym_DASH_GT] = ACTIONS(4387), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_while] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - }, - [3202] = { - [sym__alpha_identifier] = ACTIONS(4311), - [anon_sym_AT] = ACTIONS(4313), - [anon_sym_LBRACK] = ACTIONS(4313), - [anon_sym_EQ] = ACTIONS(4313), - [anon_sym_fun] = ACTIONS(4311), - [anon_sym_LBRACE] = ACTIONS(4313), - [anon_sym_RBRACE] = ACTIONS(4313), - [anon_sym_LPAREN] = ACTIONS(4313), - [anon_sym_COMMA] = ACTIONS(4313), - [anon_sym_by] = ACTIONS(4311), - [anon_sym_where] = ACTIONS(4311), - [anon_sym_object] = ACTIONS(4311), - [anon_sym_SEMI] = ACTIONS(4313), - [anon_sym_get] = ACTIONS(4311), - [anon_sym_set] = ACTIONS(4311), - [anon_sym_this] = ACTIONS(4311), - [anon_sym_super] = ACTIONS(4311), - [sym__quest] = ACTIONS(4313), - [anon_sym_STAR] = ACTIONS(4313), - [anon_sym_DASH_GT] = ACTIONS(4315), - [sym_label] = ACTIONS(4311), - [anon_sym_in] = ACTIONS(4311), - [anon_sym_null] = ACTIONS(4311), - [anon_sym_if] = ACTIONS(4311), - [anon_sym_else] = ACTIONS(4311), - [anon_sym_when] = ACTIONS(4311), - [anon_sym_try] = ACTIONS(4311), - [anon_sym_throw] = ACTIONS(4311), - [anon_sym_return] = ACTIONS(4311), - [anon_sym_continue] = ACTIONS(4311), - [anon_sym_break] = ACTIONS(4311), - [anon_sym_COLON_COLON] = ACTIONS(4313), - [anon_sym_BANGin] = ACTIONS(4313), - [anon_sym_is] = ACTIONS(4311), - [anon_sym_BANGis] = ACTIONS(4313), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_PLUS_PLUS] = ACTIONS(4313), - [anon_sym_DASH_DASH] = ACTIONS(4313), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_suspend] = ACTIONS(4311), - [anon_sym_sealed] = ACTIONS(4311), - [anon_sym_annotation] = ACTIONS(4311), - [anon_sym_data] = ACTIONS(4311), - [anon_sym_inner] = ACTIONS(4311), - [anon_sym_value] = ACTIONS(4311), - [anon_sym_override] = ACTIONS(4311), - [anon_sym_lateinit] = ACTIONS(4311), - [anon_sym_public] = ACTIONS(4311), - [anon_sym_private] = ACTIONS(4311), - [anon_sym_internal] = ACTIONS(4311), - [anon_sym_protected] = ACTIONS(4311), - [anon_sym_tailrec] = ACTIONS(4311), - [anon_sym_operator] = ACTIONS(4311), - [anon_sym_infix] = ACTIONS(4311), - [anon_sym_inline] = ACTIONS(4311), - [anon_sym_external] = ACTIONS(4311), - [sym_property_modifier] = ACTIONS(4311), - [anon_sym_abstract] = ACTIONS(4311), - [anon_sym_final] = ACTIONS(4311), - [anon_sym_open] = ACTIONS(4311), - [anon_sym_vararg] = ACTIONS(4311), - [anon_sym_noinline] = ACTIONS(4311), - [anon_sym_crossinline] = ACTIONS(4311), - [anon_sym_expect] = ACTIONS(4311), - [anon_sym_actual] = ACTIONS(4311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4313), - [anon_sym_continue_AT] = ACTIONS(4313), - [anon_sym_break_AT] = ACTIONS(4313), - [anon_sym_this_AT] = ACTIONS(4313), - [anon_sym_super_AT] = ACTIONS(4313), - [sym_real_literal] = ACTIONS(4313), - [sym_integer_literal] = ACTIONS(4311), - [sym_hex_literal] = ACTIONS(4313), - [sym_bin_literal] = ACTIONS(4313), - [anon_sym_true] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4313), - [sym__backtick_identifier] = ACTIONS(4313), - [sym__automatic_semicolon] = ACTIONS(4313), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4313), - }, - [3203] = { - [sym__alpha_identifier] = ACTIONS(4944), - [anon_sym_AT] = ACTIONS(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_as] = ACTIONS(4944), - [anon_sym_EQ] = ACTIONS(4944), - [anon_sym_fun] = ACTIONS(4944), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_where] = ACTIONS(4944), - [anon_sym_object] = ACTIONS(4944), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_get] = ACTIONS(4944), - [anon_sym_set] = ACTIONS(4944), - [anon_sym_this] = ACTIONS(4944), - [anon_sym_super] = ACTIONS(4944), - [anon_sym_STAR] = ACTIONS(4944), - [sym_label] = ACTIONS(4944), - [anon_sym_in] = ACTIONS(4944), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_QMARK_COLON] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_null] = ACTIONS(4944), - [anon_sym_if] = ACTIONS(4944), - [anon_sym_else] = ACTIONS(4944), - [anon_sym_when] = ACTIONS(4944), - [anon_sym_try] = ACTIONS(4944), - [anon_sym_throw] = ACTIONS(4944), - [anon_sym_return] = ACTIONS(4944), - [anon_sym_continue] = ACTIONS(4944), - [anon_sym_break] = ACTIONS(4944), - [anon_sym_COLON_COLON] = ACTIONS(4946), - [anon_sym_PLUS_EQ] = ACTIONS(4946), - [anon_sym_DASH_EQ] = ACTIONS(4946), - [anon_sym_STAR_EQ] = ACTIONS(4946), - [anon_sym_SLASH_EQ] = ACTIONS(4946), - [anon_sym_PERCENT_EQ] = ACTIONS(4946), - [anon_sym_BANG_EQ] = ACTIONS(4944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_BANGin] = ACTIONS(4946), - [anon_sym_is] = ACTIONS(4944), - [anon_sym_BANGis] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4944), - [anon_sym_as_QMARK] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_BANG] = ACTIONS(4944), - [anon_sym_BANG_BANG] = ACTIONS(4946), - [anon_sym_data] = ACTIONS(4944), - [anon_sym_inner] = ACTIONS(4944), - [anon_sym_value] = ACTIONS(4944), - [anon_sym_expect] = ACTIONS(4944), - [anon_sym_actual] = ACTIONS(4944), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4946), - [anon_sym_continue_AT] = ACTIONS(4946), - [anon_sym_break_AT] = ACTIONS(4946), - [anon_sym_this_AT] = ACTIONS(4946), - [anon_sym_super_AT] = ACTIONS(4946), - [sym_real_literal] = ACTIONS(4946), - [sym_integer_literal] = ACTIONS(4944), - [sym_hex_literal] = ACTIONS(4946), - [sym_bin_literal] = ACTIONS(4946), - [anon_sym_true] = ACTIONS(4944), - [anon_sym_false] = ACTIONS(4944), - [anon_sym_SQUOTE] = ACTIONS(4946), - [sym__backtick_identifier] = ACTIONS(4946), - [sym__automatic_semicolon] = ACTIONS(4946), - [sym_safe_nav] = ACTIONS(4946), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4946), - }, - [3204] = { - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(4283), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(4281), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), - }, - [3205] = { - [sym__alpha_identifier] = ACTIONS(4868), - [anon_sym_AT] = ACTIONS(4870), - [anon_sym_LBRACK] = ACTIONS(4870), - [anon_sym_as] = ACTIONS(4868), - [anon_sym_EQ] = ACTIONS(4868), - [anon_sym_fun] = ACTIONS(4868), - [anon_sym_LBRACE] = ACTIONS(4870), - [anon_sym_RBRACE] = ACTIONS(4870), - [anon_sym_LPAREN] = ACTIONS(4870), - [anon_sym_COMMA] = ACTIONS(4870), - [anon_sym_LT] = ACTIONS(4868), - [anon_sym_GT] = ACTIONS(4868), - [anon_sym_where] = ACTIONS(4868), - [anon_sym_object] = ACTIONS(4868), - [anon_sym_DOT] = ACTIONS(4868), - [anon_sym_SEMI] = ACTIONS(4870), - [anon_sym_get] = ACTIONS(4868), - [anon_sym_set] = ACTIONS(4868), - [anon_sym_this] = ACTIONS(4868), - [anon_sym_super] = ACTIONS(4868), - [anon_sym_STAR] = ACTIONS(4868), - [sym_label] = ACTIONS(4868), - [anon_sym_in] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4870), - [anon_sym_QMARK_COLON] = ACTIONS(4870), - [anon_sym_AMP_AMP] = ACTIONS(4870), - [anon_sym_PIPE_PIPE] = ACTIONS(4870), - [anon_sym_null] = ACTIONS(4868), - [anon_sym_if] = ACTIONS(4868), - [anon_sym_else] = ACTIONS(4868), - [anon_sym_when] = ACTIONS(4868), - [anon_sym_try] = ACTIONS(4868), - [anon_sym_throw] = ACTIONS(4868), - [anon_sym_return] = ACTIONS(4868), - [anon_sym_continue] = ACTIONS(4868), - [anon_sym_break] = ACTIONS(4868), - [anon_sym_COLON_COLON] = ACTIONS(4870), - [anon_sym_PLUS_EQ] = ACTIONS(4870), - [anon_sym_DASH_EQ] = ACTIONS(4870), - [anon_sym_STAR_EQ] = ACTIONS(4870), - [anon_sym_SLASH_EQ] = ACTIONS(4870), - [anon_sym_PERCENT_EQ] = ACTIONS(4870), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4870), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4870), - [anon_sym_LT_EQ] = ACTIONS(4870), - [anon_sym_GT_EQ] = ACTIONS(4870), - [anon_sym_BANGin] = ACTIONS(4870), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_BANGis] = ACTIONS(4870), - [anon_sym_PLUS] = ACTIONS(4868), - [anon_sym_DASH] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4868), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_as_QMARK] = ACTIONS(4870), - [anon_sym_PLUS_PLUS] = ACTIONS(4870), - [anon_sym_DASH_DASH] = ACTIONS(4870), - [anon_sym_BANG] = ACTIONS(4868), - [anon_sym_BANG_BANG] = ACTIONS(4870), - [anon_sym_data] = ACTIONS(4868), - [anon_sym_inner] = ACTIONS(4868), - [anon_sym_value] = ACTIONS(4868), - [anon_sym_expect] = ACTIONS(4868), - [anon_sym_actual] = ACTIONS(4868), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4870), - [anon_sym_continue_AT] = ACTIONS(4870), - [anon_sym_break_AT] = ACTIONS(4870), - [anon_sym_this_AT] = ACTIONS(4870), - [anon_sym_super_AT] = ACTIONS(4870), - [sym_real_literal] = ACTIONS(4870), - [sym_integer_literal] = ACTIONS(4868), - [sym_hex_literal] = ACTIONS(4870), - [sym_bin_literal] = ACTIONS(4870), - [anon_sym_true] = ACTIONS(4868), - [anon_sym_false] = ACTIONS(4868), - [anon_sym_SQUOTE] = ACTIONS(4870), - [sym__backtick_identifier] = ACTIONS(4870), - [sym__automatic_semicolon] = ACTIONS(4870), - [sym_safe_nav] = ACTIONS(4870), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4870), - }, - [3206] = { - [sym__alpha_identifier] = ACTIONS(4130), - [anon_sym_AT] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_as] = ACTIONS(4130), - [anon_sym_EQ] = ACTIONS(4130), - [anon_sym_fun] = ACTIONS(4130), - [anon_sym_LBRACE] = ACTIONS(4132), - [anon_sym_RBRACE] = ACTIONS(4132), - [anon_sym_LPAREN] = ACTIONS(4132), - [anon_sym_COMMA] = ACTIONS(4132), - [anon_sym_LT] = ACTIONS(4130), - [anon_sym_GT] = ACTIONS(4130), - [anon_sym_where] = ACTIONS(4130), - [anon_sym_object] = ACTIONS(4130), - [anon_sym_DOT] = ACTIONS(4130), - [anon_sym_SEMI] = ACTIONS(4132), - [anon_sym_get] = ACTIONS(4130), - [anon_sym_set] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_super] = ACTIONS(4130), - [anon_sym_STAR] = ACTIONS(4130), - [sym_label] = ACTIONS(4130), - [anon_sym_in] = ACTIONS(4130), - [anon_sym_DOT_DOT] = ACTIONS(4132), - [anon_sym_QMARK_COLON] = ACTIONS(4132), - [anon_sym_AMP_AMP] = ACTIONS(4132), - [anon_sym_PIPE_PIPE] = ACTIONS(4132), - [anon_sym_null] = ACTIONS(4130), - [anon_sym_if] = ACTIONS(4130), - [anon_sym_else] = ACTIONS(4130), - [anon_sym_when] = ACTIONS(4130), - [anon_sym_try] = ACTIONS(4130), - [anon_sym_throw] = ACTIONS(4130), - [anon_sym_return] = ACTIONS(4130), - [anon_sym_continue] = ACTIONS(4130), - [anon_sym_break] = ACTIONS(4130), - [anon_sym_COLON_COLON] = ACTIONS(4132), - [anon_sym_PLUS_EQ] = ACTIONS(4132), - [anon_sym_DASH_EQ] = ACTIONS(4132), - [anon_sym_STAR_EQ] = ACTIONS(4132), - [anon_sym_SLASH_EQ] = ACTIONS(4132), - [anon_sym_PERCENT_EQ] = ACTIONS(4132), - [anon_sym_BANG_EQ] = ACTIONS(4130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4132), - [anon_sym_EQ_EQ] = ACTIONS(4130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4132), - [anon_sym_LT_EQ] = ACTIONS(4132), - [anon_sym_GT_EQ] = ACTIONS(4132), - [anon_sym_BANGin] = ACTIONS(4132), - [anon_sym_is] = ACTIONS(4130), - [anon_sym_BANGis] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4130), - [anon_sym_DASH] = ACTIONS(4130), - [anon_sym_SLASH] = ACTIONS(4130), - [anon_sym_PERCENT] = ACTIONS(4130), - [anon_sym_as_QMARK] = ACTIONS(4132), - [anon_sym_PLUS_PLUS] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4132), - [anon_sym_BANG] = ACTIONS(4130), - [anon_sym_BANG_BANG] = ACTIONS(4132), - [anon_sym_data] = ACTIONS(4130), - [anon_sym_inner] = ACTIONS(4130), - [anon_sym_value] = ACTIONS(4130), - [anon_sym_expect] = ACTIONS(4130), - [anon_sym_actual] = ACTIONS(4130), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4132), - [anon_sym_continue_AT] = ACTIONS(4132), - [anon_sym_break_AT] = ACTIONS(4132), - [anon_sym_this_AT] = ACTIONS(4132), - [anon_sym_super_AT] = ACTIONS(4132), - [sym_real_literal] = ACTIONS(4132), - [sym_integer_literal] = ACTIONS(4130), - [sym_hex_literal] = ACTIONS(4132), - [sym_bin_literal] = ACTIONS(4132), - [anon_sym_true] = ACTIONS(4130), - [anon_sym_false] = ACTIONS(4130), - [anon_sym_SQUOTE] = ACTIONS(4132), - [sym__backtick_identifier] = ACTIONS(4132), - [sym__automatic_semicolon] = ACTIONS(4132), - [sym_safe_nav] = ACTIONS(4132), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4132), - }, - [3207] = { - [sym__alpha_identifier] = ACTIONS(4860), - [anon_sym_AT] = ACTIONS(4862), - [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_EQ] = ACTIONS(4860), - [anon_sym_fun] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4862), - [anon_sym_RBRACE] = ACTIONS(4862), - [anon_sym_LPAREN] = ACTIONS(4862), - [anon_sym_COMMA] = ACTIONS(4862), - [anon_sym_LT] = ACTIONS(4860), - [anon_sym_GT] = ACTIONS(4860), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_object] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4860), - [anon_sym_SEMI] = ACTIONS(4862), - [anon_sym_get] = ACTIONS(4860), - [anon_sym_set] = ACTIONS(4860), - [anon_sym_this] = ACTIONS(4860), - [anon_sym_super] = ACTIONS(4860), - [anon_sym_STAR] = ACTIONS(4860), - [sym_label] = ACTIONS(4860), - [anon_sym_in] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4862), - [anon_sym_QMARK_COLON] = ACTIONS(4862), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE_PIPE] = ACTIONS(4862), - [anon_sym_null] = ACTIONS(4860), - [anon_sym_if] = ACTIONS(4860), - [anon_sym_else] = ACTIONS(4860), - [anon_sym_when] = ACTIONS(4860), - [anon_sym_try] = ACTIONS(4860), - [anon_sym_throw] = ACTIONS(4860), - [anon_sym_return] = ACTIONS(4860), - [anon_sym_continue] = ACTIONS(4860), - [anon_sym_break] = ACTIONS(4860), - [anon_sym_COLON_COLON] = ACTIONS(4862), - [anon_sym_PLUS_EQ] = ACTIONS(4862), - [anon_sym_DASH_EQ] = ACTIONS(4862), - [anon_sym_STAR_EQ] = ACTIONS(4862), - [anon_sym_SLASH_EQ] = ACTIONS(4862), - [anon_sym_PERCENT_EQ] = ACTIONS(4862), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4862), - [anon_sym_LT_EQ] = ACTIONS(4862), - [anon_sym_GT_EQ] = ACTIONS(4862), - [anon_sym_BANGin] = ACTIONS(4862), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_BANGis] = ACTIONS(4862), - [anon_sym_PLUS] = ACTIONS(4860), - [anon_sym_DASH] = ACTIONS(4860), - [anon_sym_SLASH] = ACTIONS(4860), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_as_QMARK] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4862), - [anon_sym_DASH_DASH] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4860), - [anon_sym_BANG_BANG] = ACTIONS(4862), - [anon_sym_data] = ACTIONS(4860), - [anon_sym_inner] = ACTIONS(4860), - [anon_sym_value] = ACTIONS(4860), - [anon_sym_expect] = ACTIONS(4860), - [anon_sym_actual] = ACTIONS(4860), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4862), - [anon_sym_continue_AT] = ACTIONS(4862), - [anon_sym_break_AT] = ACTIONS(4862), - [anon_sym_this_AT] = ACTIONS(4862), - [anon_sym_super_AT] = ACTIONS(4862), - [sym_real_literal] = ACTIONS(4862), - [sym_integer_literal] = ACTIONS(4860), - [sym_hex_literal] = ACTIONS(4862), - [sym_bin_literal] = ACTIONS(4862), - [anon_sym_true] = ACTIONS(4860), - [anon_sym_false] = ACTIONS(4860), - [anon_sym_SQUOTE] = ACTIONS(4862), - [sym__backtick_identifier] = ACTIONS(4862), - [sym__automatic_semicolon] = ACTIONS(4862), - [sym_safe_nav] = ACTIONS(4862), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4862), - }, - [3208] = { - [sym__alpha_identifier] = ACTIONS(4902), - [anon_sym_AT] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(4904), - [anon_sym_as] = ACTIONS(4902), - [anon_sym_EQ] = ACTIONS(4902), - [anon_sym_fun] = ACTIONS(4902), - [anon_sym_LBRACE] = ACTIONS(4904), - [anon_sym_RBRACE] = ACTIONS(4904), - [anon_sym_LPAREN] = ACTIONS(4904), - [anon_sym_COMMA] = ACTIONS(4904), - [anon_sym_LT] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4902), - [anon_sym_where] = ACTIONS(4902), - [anon_sym_object] = ACTIONS(4902), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_get] = ACTIONS(4902), - [anon_sym_set] = ACTIONS(4902), - [anon_sym_this] = ACTIONS(4902), - [anon_sym_super] = ACTIONS(4902), - [anon_sym_STAR] = ACTIONS(4902), - [sym_label] = ACTIONS(4902), - [anon_sym_in] = ACTIONS(4902), - [anon_sym_DOT_DOT] = ACTIONS(4904), - [anon_sym_QMARK_COLON] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_null] = ACTIONS(4902), - [anon_sym_if] = ACTIONS(4902), - [anon_sym_else] = ACTIONS(4902), - [anon_sym_when] = ACTIONS(4902), - [anon_sym_try] = ACTIONS(4902), - [anon_sym_throw] = ACTIONS(4902), - [anon_sym_return] = ACTIONS(4902), - [anon_sym_continue] = ACTIONS(4902), - [anon_sym_break] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_PLUS_EQ] = ACTIONS(4904), - [anon_sym_DASH_EQ] = ACTIONS(4904), - [anon_sym_STAR_EQ] = ACTIONS(4904), - [anon_sym_SLASH_EQ] = ACTIONS(4904), - [anon_sym_PERCENT_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4902), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4904), - [anon_sym_EQ_EQ] = ACTIONS(4902), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ] = ACTIONS(4904), - [anon_sym_GT_EQ] = ACTIONS(4904), - [anon_sym_BANGin] = ACTIONS(4904), - [anon_sym_is] = ACTIONS(4902), - [anon_sym_BANGis] = ACTIONS(4904), - [anon_sym_PLUS] = ACTIONS(4902), - [anon_sym_DASH] = ACTIONS(4902), - [anon_sym_SLASH] = ACTIONS(4902), - [anon_sym_PERCENT] = ACTIONS(4902), - [anon_sym_as_QMARK] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_BANG] = ACTIONS(4902), - [anon_sym_BANG_BANG] = ACTIONS(4904), - [anon_sym_data] = ACTIONS(4902), - [anon_sym_inner] = ACTIONS(4902), - [anon_sym_value] = ACTIONS(4902), - [anon_sym_expect] = ACTIONS(4902), - [anon_sym_actual] = ACTIONS(4902), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4904), - [anon_sym_continue_AT] = ACTIONS(4904), - [anon_sym_break_AT] = ACTIONS(4904), - [anon_sym_this_AT] = ACTIONS(4904), - [anon_sym_super_AT] = ACTIONS(4904), - [sym_real_literal] = ACTIONS(4904), - [sym_integer_literal] = ACTIONS(4902), - [sym_hex_literal] = ACTIONS(4904), - [sym_bin_literal] = ACTIONS(4904), - [anon_sym_true] = ACTIONS(4902), - [anon_sym_false] = ACTIONS(4902), - [anon_sym_SQUOTE] = ACTIONS(4904), - [sym__backtick_identifier] = ACTIONS(4904), - [sym__automatic_semicolon] = ACTIONS(4904), - [sym_safe_nav] = ACTIONS(4904), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4904), - }, - [3209] = { - [sym__alpha_identifier] = ACTIONS(4898), - [anon_sym_AT] = ACTIONS(4900), - [anon_sym_LBRACK] = ACTIONS(4900), - [anon_sym_as] = ACTIONS(4898), - [anon_sym_EQ] = ACTIONS(4898), - [anon_sym_fun] = ACTIONS(4898), - [anon_sym_LBRACE] = ACTIONS(4900), - [anon_sym_RBRACE] = ACTIONS(4900), - [anon_sym_LPAREN] = ACTIONS(4900), - [anon_sym_COMMA] = ACTIONS(4900), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_where] = ACTIONS(4898), - [anon_sym_object] = ACTIONS(4898), - [anon_sym_DOT] = ACTIONS(4898), - [anon_sym_SEMI] = ACTIONS(4900), - [anon_sym_get] = ACTIONS(4898), - [anon_sym_set] = ACTIONS(4898), - [anon_sym_this] = ACTIONS(4898), - [anon_sym_super] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4898), - [sym_label] = ACTIONS(4898), - [anon_sym_in] = ACTIONS(4898), - [anon_sym_DOT_DOT] = ACTIONS(4900), - [anon_sym_QMARK_COLON] = ACTIONS(4900), - [anon_sym_AMP_AMP] = ACTIONS(4900), - [anon_sym_PIPE_PIPE] = ACTIONS(4900), - [anon_sym_null] = ACTIONS(4898), - [anon_sym_if] = ACTIONS(4898), - [anon_sym_else] = ACTIONS(4898), - [anon_sym_when] = ACTIONS(4898), - [anon_sym_try] = ACTIONS(4898), - [anon_sym_throw] = ACTIONS(4898), - [anon_sym_return] = ACTIONS(4898), - [anon_sym_continue] = ACTIONS(4898), - [anon_sym_break] = ACTIONS(4898), - [anon_sym_COLON_COLON] = ACTIONS(4900), - [anon_sym_PLUS_EQ] = ACTIONS(4900), - [anon_sym_DASH_EQ] = ACTIONS(4900), - [anon_sym_STAR_EQ] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(4900), - [anon_sym_PERCENT_EQ] = ACTIONS(4900), - [anon_sym_BANG_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4900), - [anon_sym_EQ_EQ] = ACTIONS(4898), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4900), - [anon_sym_LT_EQ] = ACTIONS(4900), - [anon_sym_GT_EQ] = ACTIONS(4900), - [anon_sym_BANGin] = ACTIONS(4900), - [anon_sym_is] = ACTIONS(4898), - [anon_sym_BANGis] = ACTIONS(4900), - [anon_sym_PLUS] = ACTIONS(4898), - [anon_sym_DASH] = ACTIONS(4898), - [anon_sym_SLASH] = ACTIONS(4898), - [anon_sym_PERCENT] = ACTIONS(4898), - [anon_sym_as_QMARK] = ACTIONS(4900), - [anon_sym_PLUS_PLUS] = ACTIONS(4900), - [anon_sym_DASH_DASH] = ACTIONS(4900), - [anon_sym_BANG] = ACTIONS(4898), - [anon_sym_BANG_BANG] = ACTIONS(4900), - [anon_sym_data] = ACTIONS(4898), - [anon_sym_inner] = ACTIONS(4898), - [anon_sym_value] = ACTIONS(4898), - [anon_sym_expect] = ACTIONS(4898), - [anon_sym_actual] = ACTIONS(4898), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4900), - [anon_sym_continue_AT] = ACTIONS(4900), - [anon_sym_break_AT] = ACTIONS(4900), - [anon_sym_this_AT] = ACTIONS(4900), - [anon_sym_super_AT] = ACTIONS(4900), - [sym_real_literal] = ACTIONS(4900), - [sym_integer_literal] = ACTIONS(4898), - [sym_hex_literal] = ACTIONS(4900), - [sym_bin_literal] = ACTIONS(4900), - [anon_sym_true] = ACTIONS(4898), - [anon_sym_false] = ACTIONS(4898), - [anon_sym_SQUOTE] = ACTIONS(4900), - [sym__backtick_identifier] = ACTIONS(4900), - [sym__automatic_semicolon] = ACTIONS(4900), - [sym_safe_nav] = ACTIONS(4900), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4900), - }, - [3210] = { - [sym__alpha_identifier] = ACTIONS(4894), - [anon_sym_AT] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(4896), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4894), - [anon_sym_fun] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_object] = ACTIONS(4894), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_get] = ACTIONS(4894), - [anon_sym_set] = ACTIONS(4894), - [anon_sym_this] = ACTIONS(4894), - [anon_sym_super] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4894), - [sym_label] = ACTIONS(4894), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_QMARK_COLON] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_null] = ACTIONS(4894), - [anon_sym_if] = ACTIONS(4894), - [anon_sym_else] = ACTIONS(4894), - [anon_sym_when] = ACTIONS(4894), - [anon_sym_try] = ACTIONS(4894), - [anon_sym_throw] = ACTIONS(4894), - [anon_sym_return] = ACTIONS(4894), - [anon_sym_continue] = ACTIONS(4894), - [anon_sym_break] = ACTIONS(4894), - [anon_sym_COLON_COLON] = ACTIONS(4896), - [anon_sym_PLUS_EQ] = ACTIONS(4896), - [anon_sym_DASH_EQ] = ACTIONS(4896), - [anon_sym_STAR_EQ] = ACTIONS(4896), - [anon_sym_SLASH_EQ] = ACTIONS(4896), - [anon_sym_PERCENT_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_BANGin] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_BANGis] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_as_QMARK] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4896), - [anon_sym_DASH_DASH] = ACTIONS(4896), - [anon_sym_BANG] = ACTIONS(4894), - [anon_sym_BANG_BANG] = ACTIONS(4896), - [anon_sym_data] = ACTIONS(4894), - [anon_sym_inner] = ACTIONS(4894), - [anon_sym_value] = ACTIONS(4894), - [anon_sym_expect] = ACTIONS(4894), - [anon_sym_actual] = ACTIONS(4894), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4896), - [anon_sym_continue_AT] = ACTIONS(4896), - [anon_sym_break_AT] = ACTIONS(4896), - [anon_sym_this_AT] = ACTIONS(4896), - [anon_sym_super_AT] = ACTIONS(4896), - [sym_real_literal] = ACTIONS(4896), - [sym_integer_literal] = ACTIONS(4894), - [sym_hex_literal] = ACTIONS(4896), - [sym_bin_literal] = ACTIONS(4896), - [anon_sym_true] = ACTIONS(4894), - [anon_sym_false] = ACTIONS(4894), - [anon_sym_SQUOTE] = ACTIONS(4896), - [sym__backtick_identifier] = ACTIONS(4896), - [sym__automatic_semicolon] = ACTIONS(4896), - [sym_safe_nav] = ACTIONS(4896), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4896), - }, - [3211] = { - [sym__alpha_identifier] = ACTIONS(4082), - [anon_sym_AT] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(4082), - [anon_sym_EQ] = ACTIONS(4082), - [anon_sym_fun] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_where] = ACTIONS(4082), - [anon_sym_object] = ACTIONS(4082), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_get] = ACTIONS(4082), - [anon_sym_set] = ACTIONS(4082), - [anon_sym_this] = ACTIONS(4082), - [anon_sym_super] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [sym_label] = ACTIONS(4082), - [anon_sym_in] = ACTIONS(4082), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_QMARK_COLON] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_null] = ACTIONS(4082), - [anon_sym_if] = ACTIONS(4082), - [anon_sym_else] = ACTIONS(4082), - [anon_sym_when] = ACTIONS(4082), - [anon_sym_try] = ACTIONS(4082), - [anon_sym_throw] = ACTIONS(4082), - [anon_sym_return] = ACTIONS(4082), - [anon_sym_continue] = ACTIONS(4082), - [anon_sym_break] = ACTIONS(4082), - [anon_sym_COLON_COLON] = ACTIONS(4084), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_STAR_EQ] = ACTIONS(4084), - [anon_sym_SLASH_EQ] = ACTIONS(4084), - [anon_sym_PERCENT_EQ] = ACTIONS(4084), - [anon_sym_BANG_EQ] = ACTIONS(4082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_BANGin] = ACTIONS(4084), - [anon_sym_is] = ACTIONS(4082), - [anon_sym_BANGis] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_SLASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4082), - [anon_sym_as_QMARK] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_BANG_BANG] = ACTIONS(4084), - [anon_sym_data] = ACTIONS(4082), - [anon_sym_inner] = ACTIONS(4082), - [anon_sym_value] = ACTIONS(4082), - [anon_sym_expect] = ACTIONS(4082), - [anon_sym_actual] = ACTIONS(4082), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4084), - [anon_sym_continue_AT] = ACTIONS(4084), - [anon_sym_break_AT] = ACTIONS(4084), - [anon_sym_this_AT] = ACTIONS(4084), - [anon_sym_super_AT] = ACTIONS(4084), - [sym_real_literal] = ACTIONS(4084), - [sym_integer_literal] = ACTIONS(4082), - [sym_hex_literal] = ACTIONS(4084), - [sym_bin_literal] = ACTIONS(4084), - [anon_sym_true] = ACTIONS(4082), - [anon_sym_false] = ACTIONS(4082), - [anon_sym_SQUOTE] = ACTIONS(4084), - [sym__backtick_identifier] = ACTIONS(4084), - [sym__automatic_semicolon] = ACTIONS(4084), - [sym_safe_nav] = ACTIONS(4084), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4084), - }, - [3212] = { - [sym__alpha_identifier] = ACTIONS(4856), - [anon_sym_AT] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_as] = ACTIONS(4856), - [anon_sym_EQ] = ACTIONS(4856), - [anon_sym_fun] = ACTIONS(4856), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_RBRACE] = ACTIONS(4858), - [anon_sym_LPAREN] = ACTIONS(4858), - [anon_sym_COMMA] = ACTIONS(4858), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_where] = ACTIONS(4856), - [anon_sym_object] = ACTIONS(4856), - [anon_sym_DOT] = ACTIONS(4856), - [anon_sym_SEMI] = ACTIONS(4858), - [anon_sym_get] = ACTIONS(4856), - [anon_sym_set] = ACTIONS(4856), - [anon_sym_this] = ACTIONS(4856), - [anon_sym_super] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4856), - [sym_label] = ACTIONS(4856), - [anon_sym_in] = ACTIONS(4856), - [anon_sym_DOT_DOT] = ACTIONS(4858), - [anon_sym_QMARK_COLON] = ACTIONS(4858), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), - [anon_sym_if] = ACTIONS(4856), - [anon_sym_else] = ACTIONS(4856), - [anon_sym_when] = ACTIONS(4856), - [anon_sym_try] = ACTIONS(4856), - [anon_sym_throw] = ACTIONS(4856), - [anon_sym_return] = ACTIONS(4856), - [anon_sym_continue] = ACTIONS(4856), - [anon_sym_break] = ACTIONS(4856), - [anon_sym_COLON_COLON] = ACTIONS(4858), - [anon_sym_PLUS_EQ] = ACTIONS(4858), - [anon_sym_DASH_EQ] = ACTIONS(4858), - [anon_sym_STAR_EQ] = ACTIONS(4858), - [anon_sym_SLASH_EQ] = ACTIONS(4858), - [anon_sym_PERCENT_EQ] = ACTIONS(4858), - [anon_sym_BANG_EQ] = ACTIONS(4856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), - [anon_sym_EQ_EQ] = ACTIONS(4856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), - [anon_sym_LT_EQ] = ACTIONS(4858), - [anon_sym_GT_EQ] = ACTIONS(4858), - [anon_sym_BANGin] = ACTIONS(4858), - [anon_sym_is] = ACTIONS(4856), - [anon_sym_BANGis] = ACTIONS(4858), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4856), - [anon_sym_as_QMARK] = ACTIONS(4858), - [anon_sym_PLUS_PLUS] = ACTIONS(4858), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_BANG] = ACTIONS(4856), - [anon_sym_BANG_BANG] = ACTIONS(4858), - [anon_sym_data] = ACTIONS(4856), - [anon_sym_inner] = ACTIONS(4856), - [anon_sym_value] = ACTIONS(4856), - [anon_sym_expect] = ACTIONS(4856), - [anon_sym_actual] = ACTIONS(4856), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4858), - [anon_sym_continue_AT] = ACTIONS(4858), - [anon_sym_break_AT] = ACTIONS(4858), - [anon_sym_this_AT] = ACTIONS(4858), - [anon_sym_super_AT] = ACTIONS(4858), - [sym_real_literal] = ACTIONS(4858), - [sym_integer_literal] = ACTIONS(4856), - [sym_hex_literal] = ACTIONS(4858), - [sym_bin_literal] = ACTIONS(4858), - [anon_sym_true] = ACTIONS(4856), - [anon_sym_false] = ACTIONS(4856), - [anon_sym_SQUOTE] = ACTIONS(4858), - [sym__backtick_identifier] = ACTIONS(4858), - [sym__automatic_semicolon] = ACTIONS(4858), - [sym_safe_nav] = ACTIONS(4858), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4858), - }, - [3213] = { - [sym__alpha_identifier] = ACTIONS(3130), - [anon_sym_AT] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_as] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3130), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3130), - [anon_sym_set] = ACTIONS(3130), - [anon_sym_this] = ACTIONS(3130), - [anon_sym_super] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3130), - [sym_label] = ACTIONS(3130), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(3132), - [anon_sym_QMARK_COLON] = ACTIONS(3132), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_when] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_SLASH] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_as_QMARK] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_BANG_BANG] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3130), - [anon_sym_inner] = ACTIONS(3130), - [anon_sym_value] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3130), - [anon_sym_actual] = ACTIONS(3130), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3132), - [anon_sym_continue_AT] = ACTIONS(3132), - [anon_sym_break_AT] = ACTIONS(3132), - [anon_sym_this_AT] = ACTIONS(3132), - [anon_sym_super_AT] = ACTIONS(3132), - [sym_real_literal] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(3130), - [sym_hex_literal] = ACTIONS(3132), - [sym_bin_literal] = ACTIONS(3132), - [anon_sym_true] = ACTIONS(3130), - [anon_sym_false] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3132), - [sym__backtick_identifier] = ACTIONS(3132), - [sym__automatic_semicolon] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(3132), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3132), - }, - [3214] = { - [sym__alpha_identifier] = ACTIONS(4888), - [anon_sym_AT] = ACTIONS(4890), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_as] = ACTIONS(4888), - [anon_sym_EQ] = ACTIONS(4888), - [anon_sym_fun] = ACTIONS(4888), - [anon_sym_LBRACE] = ACTIONS(4890), - [anon_sym_RBRACE] = ACTIONS(4890), - [anon_sym_LPAREN] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_where] = ACTIONS(4888), - [anon_sym_object] = ACTIONS(4888), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_get] = ACTIONS(4888), - [anon_sym_set] = ACTIONS(4888), - [anon_sym_this] = ACTIONS(4888), - [anon_sym_super] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4888), - [sym_label] = ACTIONS(4888), - [anon_sym_in] = ACTIONS(4888), - [anon_sym_DOT_DOT] = ACTIONS(4890), - [anon_sym_QMARK_COLON] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_null] = ACTIONS(4888), - [anon_sym_if] = ACTIONS(4888), - [anon_sym_else] = ACTIONS(4888), - [anon_sym_when] = ACTIONS(4888), - [anon_sym_try] = ACTIONS(4888), - [anon_sym_throw] = ACTIONS(4888), - [anon_sym_return] = ACTIONS(4888), - [anon_sym_continue] = ACTIONS(4888), - [anon_sym_break] = ACTIONS(4888), - [anon_sym_COLON_COLON] = ACTIONS(4890), - [anon_sym_PLUS_EQ] = ACTIONS(4890), - [anon_sym_DASH_EQ] = ACTIONS(4890), - [anon_sym_STAR_EQ] = ACTIONS(4890), - [anon_sym_SLASH_EQ] = ACTIONS(4890), - [anon_sym_PERCENT_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4888), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4890), - [anon_sym_EQ_EQ] = ACTIONS(4888), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ] = ACTIONS(4890), - [anon_sym_GT_EQ] = ACTIONS(4890), - [anon_sym_BANGin] = ACTIONS(4890), - [anon_sym_is] = ACTIONS(4888), - [anon_sym_BANGis] = ACTIONS(4890), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4888), - [anon_sym_as_QMARK] = ACTIONS(4890), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_BANG] = ACTIONS(4888), - [anon_sym_BANG_BANG] = ACTIONS(4890), - [anon_sym_data] = ACTIONS(4888), - [anon_sym_inner] = ACTIONS(4888), - [anon_sym_value] = ACTIONS(4888), - [anon_sym_expect] = ACTIONS(4888), - [anon_sym_actual] = ACTIONS(4888), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4890), - [anon_sym_continue_AT] = ACTIONS(4890), - [anon_sym_break_AT] = ACTIONS(4890), - [anon_sym_this_AT] = ACTIONS(4890), - [anon_sym_super_AT] = ACTIONS(4890), - [sym_real_literal] = ACTIONS(4890), - [sym_integer_literal] = ACTIONS(4888), - [sym_hex_literal] = ACTIONS(4890), - [sym_bin_literal] = ACTIONS(4890), - [anon_sym_true] = ACTIONS(4888), - [anon_sym_false] = ACTIONS(4888), - [anon_sym_SQUOTE] = ACTIONS(4890), - [sym__backtick_identifier] = ACTIONS(4890), - [sym__automatic_semicolon] = ACTIONS(4890), - [sym_safe_nav] = ACTIONS(4890), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4890), - }, - [3215] = { - [sym__alpha_identifier] = ACTIONS(4876), - [anon_sym_AT] = ACTIONS(4878), - [anon_sym_LBRACK] = ACTIONS(4878), - [anon_sym_as] = ACTIONS(4876), - [anon_sym_EQ] = ACTIONS(4876), - [anon_sym_fun] = ACTIONS(4876), - [anon_sym_LBRACE] = ACTIONS(4878), - [anon_sym_RBRACE] = ACTIONS(4878), - [anon_sym_LPAREN] = ACTIONS(4878), - [anon_sym_COMMA] = ACTIONS(4878), - [anon_sym_LT] = ACTIONS(4876), - [anon_sym_GT] = ACTIONS(4876), - [anon_sym_where] = ACTIONS(4876), - [anon_sym_object] = ACTIONS(4876), - [anon_sym_DOT] = ACTIONS(4876), - [anon_sym_SEMI] = ACTIONS(4878), - [anon_sym_get] = ACTIONS(4876), - [anon_sym_set] = ACTIONS(4876), - [anon_sym_this] = ACTIONS(4876), - [anon_sym_super] = ACTIONS(4876), - [anon_sym_STAR] = ACTIONS(4876), - [sym_label] = ACTIONS(4876), - [anon_sym_in] = ACTIONS(4876), - [anon_sym_DOT_DOT] = ACTIONS(4878), - [anon_sym_QMARK_COLON] = ACTIONS(4878), - [anon_sym_AMP_AMP] = ACTIONS(4878), - [anon_sym_PIPE_PIPE] = ACTIONS(4878), - [anon_sym_null] = ACTIONS(4876), - [anon_sym_if] = ACTIONS(4876), - [anon_sym_else] = ACTIONS(4876), - [anon_sym_when] = ACTIONS(4876), - [anon_sym_try] = ACTIONS(4876), - [anon_sym_throw] = ACTIONS(4876), - [anon_sym_return] = ACTIONS(4876), - [anon_sym_continue] = ACTIONS(4876), - [anon_sym_break] = ACTIONS(4876), - [anon_sym_COLON_COLON] = ACTIONS(4878), - [anon_sym_PLUS_EQ] = ACTIONS(4878), - [anon_sym_DASH_EQ] = ACTIONS(4878), - [anon_sym_STAR_EQ] = ACTIONS(4878), - [anon_sym_SLASH_EQ] = ACTIONS(4878), - [anon_sym_PERCENT_EQ] = ACTIONS(4878), - [anon_sym_BANG_EQ] = ACTIONS(4876), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4878), - [anon_sym_EQ_EQ] = ACTIONS(4876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4878), - [anon_sym_LT_EQ] = ACTIONS(4878), - [anon_sym_GT_EQ] = ACTIONS(4878), - [anon_sym_BANGin] = ACTIONS(4878), - [anon_sym_is] = ACTIONS(4876), - [anon_sym_BANGis] = ACTIONS(4878), - [anon_sym_PLUS] = ACTIONS(4876), - [anon_sym_DASH] = ACTIONS(4876), - [anon_sym_SLASH] = ACTIONS(4876), - [anon_sym_PERCENT] = ACTIONS(4876), - [anon_sym_as_QMARK] = ACTIONS(4878), - [anon_sym_PLUS_PLUS] = ACTIONS(4878), - [anon_sym_DASH_DASH] = ACTIONS(4878), - [anon_sym_BANG] = ACTIONS(4876), - [anon_sym_BANG_BANG] = ACTIONS(4878), - [anon_sym_data] = ACTIONS(4876), - [anon_sym_inner] = ACTIONS(4876), - [anon_sym_value] = ACTIONS(4876), - [anon_sym_expect] = ACTIONS(4876), - [anon_sym_actual] = ACTIONS(4876), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4878), - [anon_sym_continue_AT] = ACTIONS(4878), - [anon_sym_break_AT] = ACTIONS(4878), - [anon_sym_this_AT] = ACTIONS(4878), - [anon_sym_super_AT] = ACTIONS(4878), - [sym_real_literal] = ACTIONS(4878), - [sym_integer_literal] = ACTIONS(4876), - [sym_hex_literal] = ACTIONS(4878), - [sym_bin_literal] = ACTIONS(4878), - [anon_sym_true] = ACTIONS(4876), - [anon_sym_false] = ACTIONS(4876), - [anon_sym_SQUOTE] = ACTIONS(4878), - [sym__backtick_identifier] = ACTIONS(4878), - [sym__automatic_semicolon] = ACTIONS(4878), - [sym_safe_nav] = ACTIONS(4878), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4878), - }, - [3216] = { - [sym__alpha_identifier] = ACTIONS(4872), - [anon_sym_AT] = ACTIONS(4874), - [anon_sym_LBRACK] = ACTIONS(4874), - [anon_sym_as] = ACTIONS(4872), - [anon_sym_EQ] = ACTIONS(4872), - [anon_sym_fun] = ACTIONS(4872), - [anon_sym_LBRACE] = ACTIONS(4874), - [anon_sym_RBRACE] = ACTIONS(4874), - [anon_sym_LPAREN] = ACTIONS(4874), - [anon_sym_COMMA] = ACTIONS(4874), - [anon_sym_LT] = ACTIONS(4872), - [anon_sym_GT] = ACTIONS(4872), - [anon_sym_where] = ACTIONS(4872), - [anon_sym_object] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4872), - [anon_sym_SEMI] = ACTIONS(4874), - [anon_sym_get] = ACTIONS(4872), - [anon_sym_set] = ACTIONS(4872), - [anon_sym_this] = ACTIONS(4872), - [anon_sym_super] = ACTIONS(4872), - [anon_sym_STAR] = ACTIONS(4872), - [sym_label] = ACTIONS(4872), - [anon_sym_in] = ACTIONS(4872), - [anon_sym_DOT_DOT] = ACTIONS(4874), - [anon_sym_QMARK_COLON] = ACTIONS(4874), - [anon_sym_AMP_AMP] = ACTIONS(4874), - [anon_sym_PIPE_PIPE] = ACTIONS(4874), - [anon_sym_null] = ACTIONS(4872), - [anon_sym_if] = ACTIONS(4872), - [anon_sym_else] = ACTIONS(4872), - [anon_sym_when] = ACTIONS(4872), - [anon_sym_try] = ACTIONS(4872), - [anon_sym_throw] = ACTIONS(4872), - [anon_sym_return] = ACTIONS(4872), - [anon_sym_continue] = ACTIONS(4872), - [anon_sym_break] = ACTIONS(4872), - [anon_sym_COLON_COLON] = ACTIONS(4874), - [anon_sym_PLUS_EQ] = ACTIONS(4874), - [anon_sym_DASH_EQ] = ACTIONS(4874), - [anon_sym_STAR_EQ] = ACTIONS(4874), - [anon_sym_SLASH_EQ] = ACTIONS(4874), - [anon_sym_PERCENT_EQ] = ACTIONS(4874), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4874), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4874), - [anon_sym_LT_EQ] = ACTIONS(4874), - [anon_sym_GT_EQ] = ACTIONS(4874), - [anon_sym_BANGin] = ACTIONS(4874), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_BANGis] = ACTIONS(4874), - [anon_sym_PLUS] = ACTIONS(4872), - [anon_sym_DASH] = ACTIONS(4872), - [anon_sym_SLASH] = ACTIONS(4872), - [anon_sym_PERCENT] = ACTIONS(4872), - [anon_sym_as_QMARK] = ACTIONS(4874), - [anon_sym_PLUS_PLUS] = ACTIONS(4874), - [anon_sym_DASH_DASH] = ACTIONS(4874), - [anon_sym_BANG] = ACTIONS(4872), - [anon_sym_BANG_BANG] = ACTIONS(4874), - [anon_sym_data] = ACTIONS(4872), - [anon_sym_inner] = ACTIONS(4872), - [anon_sym_value] = ACTIONS(4872), - [anon_sym_expect] = ACTIONS(4872), - [anon_sym_actual] = ACTIONS(4872), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4874), - [anon_sym_continue_AT] = ACTIONS(4874), - [anon_sym_break_AT] = ACTIONS(4874), - [anon_sym_this_AT] = ACTIONS(4874), - [anon_sym_super_AT] = ACTIONS(4874), - [sym_real_literal] = ACTIONS(4874), - [sym_integer_literal] = ACTIONS(4872), - [sym_hex_literal] = ACTIONS(4874), - [sym_bin_literal] = ACTIONS(4874), - [anon_sym_true] = ACTIONS(4872), - [anon_sym_false] = ACTIONS(4872), - [anon_sym_SQUOTE] = ACTIONS(4874), - [sym__backtick_identifier] = ACTIONS(4874), - [sym__automatic_semicolon] = ACTIONS(4874), - [sym_safe_nav] = ACTIONS(4874), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4874), - }, - [3217] = { - [sym_function_body] = STATE(3238), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_object] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_this] = ACTIONS(4339), - [anon_sym_super] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [sym_label] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [anon_sym_try] = ACTIONS(4339), - [anon_sym_throw] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_PLUS_EQ] = ACTIONS(4341), - [anon_sym_DASH_EQ] = ACTIONS(4341), - [anon_sym_STAR_EQ] = ACTIONS(4341), - [anon_sym_SLASH_EQ] = ACTIONS(4341), - [anon_sym_PERCENT_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4339), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4341), - [anon_sym_continue_AT] = ACTIONS(4341), - [anon_sym_break_AT] = ACTIONS(4341), - [anon_sym_this_AT] = ACTIONS(4341), - [anon_sym_super_AT] = ACTIONS(4341), - [sym_real_literal] = ACTIONS(4341), - [sym_integer_literal] = ACTIONS(4339), - [sym_hex_literal] = ACTIONS(4341), - [sym_bin_literal] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4339), - [anon_sym_false] = ACTIONS(4339), - [anon_sym_SQUOTE] = ACTIONS(4341), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4341), - }, - [3218] = { - [sym_class_body] = STATE(3251), - [sym__alpha_identifier] = ACTIONS(4443), - [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(6760), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_as] = ACTIONS(4443), - [anon_sym_EQ] = ACTIONS(4443), - [anon_sym_fun] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4443), - [anon_sym_GT] = ACTIONS(4443), - [anon_sym_object] = ACTIONS(4443), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4445), - [anon_sym_get] = ACTIONS(4443), - [anon_sym_set] = ACTIONS(4443), - [anon_sym_this] = ACTIONS(4443), - [anon_sym_super] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4443), - [sym_label] = ACTIONS(4443), - [anon_sym_in] = ACTIONS(4443), - [anon_sym_DOT_DOT] = ACTIONS(4445), - [anon_sym_QMARK_COLON] = ACTIONS(4445), - [anon_sym_AMP_AMP] = ACTIONS(4445), - [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), - [anon_sym_if] = ACTIONS(4443), - [anon_sym_else] = ACTIONS(4443), - [anon_sym_when] = ACTIONS(4443), - [anon_sym_try] = ACTIONS(4443), - [anon_sym_throw] = ACTIONS(4443), - [anon_sym_return] = ACTIONS(4443), - [anon_sym_continue] = ACTIONS(4443), - [anon_sym_break] = ACTIONS(4443), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_PLUS_EQ] = ACTIONS(4445), - [anon_sym_DASH_EQ] = ACTIONS(4445), - [anon_sym_STAR_EQ] = ACTIONS(4445), - [anon_sym_SLASH_EQ] = ACTIONS(4445), - [anon_sym_PERCENT_EQ] = ACTIONS(4445), - [anon_sym_BANG_EQ] = ACTIONS(4443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), - [anon_sym_EQ_EQ] = ACTIONS(4443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), - [anon_sym_LT_EQ] = ACTIONS(4445), - [anon_sym_GT_EQ] = ACTIONS(4445), - [anon_sym_BANGin] = ACTIONS(4445), - [anon_sym_is] = ACTIONS(4443), - [anon_sym_BANGis] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_SLASH] = ACTIONS(4443), - [anon_sym_PERCENT] = ACTIONS(4443), - [anon_sym_as_QMARK] = ACTIONS(4445), - [anon_sym_PLUS_PLUS] = ACTIONS(4445), - [anon_sym_DASH_DASH] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4443), - [anon_sym_BANG_BANG] = ACTIONS(4445), - [anon_sym_data] = ACTIONS(4443), - [anon_sym_inner] = ACTIONS(4443), - [anon_sym_value] = ACTIONS(4443), - [anon_sym_expect] = ACTIONS(4443), - [anon_sym_actual] = ACTIONS(4443), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4445), - [anon_sym_continue_AT] = ACTIONS(4445), - [anon_sym_break_AT] = ACTIONS(4445), - [anon_sym_this_AT] = ACTIONS(4445), - [anon_sym_super_AT] = ACTIONS(4445), - [sym_real_literal] = ACTIONS(4445), - [sym_integer_literal] = ACTIONS(4443), - [sym_hex_literal] = ACTIONS(4445), - [sym_bin_literal] = ACTIONS(4445), - [anon_sym_true] = ACTIONS(4443), - [anon_sym_false] = ACTIONS(4443), - [anon_sym_SQUOTE] = ACTIONS(4445), - [sym__backtick_identifier] = ACTIONS(4445), - [sym__automatic_semicolon] = ACTIONS(4445), - [sym_safe_nav] = ACTIONS(4445), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4445), - }, - [3219] = { - [sym__alpha_identifier] = ACTIONS(5065), - [anon_sym_AT] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_as] = ACTIONS(5065), - [anon_sym_EQ] = ACTIONS(5065), - [anon_sym_fun] = ACTIONS(5065), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_RBRACE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_where] = ACTIONS(5065), - [anon_sym_object] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_get] = ACTIONS(5065), - [anon_sym_set] = ACTIONS(5065), - [anon_sym_this] = ACTIONS(5065), - [anon_sym_super] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [sym_label] = ACTIONS(5065), - [anon_sym_in] = ACTIONS(5065), - [anon_sym_DOT_DOT] = ACTIONS(5067), - [anon_sym_QMARK_COLON] = ACTIONS(5067), - [anon_sym_AMP_AMP] = ACTIONS(5067), - [anon_sym_PIPE_PIPE] = ACTIONS(5067), - [anon_sym_null] = ACTIONS(5065), - [anon_sym_if] = ACTIONS(5065), - [anon_sym_else] = ACTIONS(5065), - [anon_sym_when] = ACTIONS(5065), - [anon_sym_try] = ACTIONS(5065), - [anon_sym_throw] = ACTIONS(5065), - [anon_sym_return] = ACTIONS(5065), - [anon_sym_continue] = ACTIONS(5065), - [anon_sym_break] = ACTIONS(5065), - [anon_sym_COLON_COLON] = ACTIONS(5067), - [anon_sym_PLUS_EQ] = ACTIONS(5067), - [anon_sym_DASH_EQ] = ACTIONS(5067), - [anon_sym_STAR_EQ] = ACTIONS(5067), - [anon_sym_SLASH_EQ] = ACTIONS(5067), - [anon_sym_PERCENT_EQ] = ACTIONS(5067), - [anon_sym_BANG_EQ] = ACTIONS(5065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5067), - [anon_sym_EQ_EQ] = ACTIONS(5065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5067), - [anon_sym_LT_EQ] = ACTIONS(5067), - [anon_sym_GT_EQ] = ACTIONS(5067), - [anon_sym_BANGin] = ACTIONS(5067), - [anon_sym_is] = ACTIONS(5065), - [anon_sym_BANGis] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_PERCENT] = ACTIONS(5065), - [anon_sym_as_QMARK] = ACTIONS(5067), - [anon_sym_PLUS_PLUS] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_BANG_BANG] = ACTIONS(5067), - [anon_sym_data] = ACTIONS(5065), - [anon_sym_inner] = ACTIONS(5065), - [anon_sym_value] = ACTIONS(5065), - [anon_sym_expect] = ACTIONS(5065), - [anon_sym_actual] = ACTIONS(5065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5067), - [anon_sym_continue_AT] = ACTIONS(5067), - [anon_sym_break_AT] = ACTIONS(5067), - [anon_sym_this_AT] = ACTIONS(5067), - [anon_sym_super_AT] = ACTIONS(5067), - [sym_real_literal] = ACTIONS(5067), - [sym_integer_literal] = ACTIONS(5065), - [sym_hex_literal] = ACTIONS(5067), - [sym_bin_literal] = ACTIONS(5067), - [anon_sym_true] = ACTIONS(5065), - [anon_sym_false] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5067), - [sym__backtick_identifier] = ACTIONS(5067), - [sym__automatic_semicolon] = ACTIONS(5067), - [sym_safe_nav] = ACTIONS(5067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5067), - }, - [3220] = { + [3229] = { [sym__alpha_identifier] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(1734), [anon_sym_LBRACK] = ACTIONS(1734), [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1734), [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_LPAREN] = ACTIONS(1734), @@ -382743,6 +381423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1732), [anon_sym_where] = ACTIONS(1732), [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), [anon_sym_DOT] = ACTIONS(1732), [anon_sym_SEMI] = ACTIONS(1734), [anon_sym_get] = ACTIONS(1732), @@ -382813,5113 +381494,692 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1734), }, - [3221] = { - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(4287), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(4287), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), - }, - [3222] = { - [sym__alpha_identifier] = ACTIONS(3156), - [anon_sym_AT] = ACTIONS(3158), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_as] = ACTIONS(3156), - [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3156), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3156), - [anon_sym_set] = ACTIONS(3156), - [anon_sym_this] = ACTIONS(3156), - [anon_sym_super] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3156), - [sym_label] = ACTIONS(3156), - [anon_sym_in] = ACTIONS(3156), - [anon_sym_DOT_DOT] = ACTIONS(3158), - [anon_sym_QMARK_COLON] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [anon_sym_null] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_when] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3158), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_STAR_EQ] = ACTIONS(3158), - [anon_sym_SLASH_EQ] = ACTIONS(3158), - [anon_sym_PERCENT_EQ] = ACTIONS(3158), - [anon_sym_BANG_EQ] = ACTIONS(3156), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3158), - [anon_sym_EQ_EQ] = ACTIONS(3156), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3158), - [anon_sym_LT_EQ] = ACTIONS(3158), - [anon_sym_GT_EQ] = ACTIONS(3158), - [anon_sym_BANGin] = ACTIONS(3158), - [anon_sym_is] = ACTIONS(3156), - [anon_sym_BANGis] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3156), - [anon_sym_PERCENT] = ACTIONS(3156), - [anon_sym_as_QMARK] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_BANG_BANG] = ACTIONS(3158), - [anon_sym_data] = ACTIONS(3156), - [anon_sym_inner] = ACTIONS(3156), - [anon_sym_value] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3156), - [anon_sym_actual] = ACTIONS(3156), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3158), - [anon_sym_continue_AT] = ACTIONS(3158), - [anon_sym_break_AT] = ACTIONS(3158), - [anon_sym_this_AT] = ACTIONS(3158), - [anon_sym_super_AT] = ACTIONS(3158), - [sym_real_literal] = ACTIONS(3158), - [sym_integer_literal] = ACTIONS(3156), - [sym_hex_literal] = ACTIONS(3158), - [sym_bin_literal] = ACTIONS(3158), - [anon_sym_true] = ACTIONS(3156), - [anon_sym_false] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3158), - [sym__backtick_identifier] = ACTIONS(3158), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(3158), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3158), - }, - [3223] = { - [sym__alpha_identifier] = ACTIONS(4840), - [anon_sym_AT] = ACTIONS(4842), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_as] = ACTIONS(4840), - [anon_sym_EQ] = ACTIONS(4840), - [anon_sym_fun] = ACTIONS(4840), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_LPAREN] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym_GT] = ACTIONS(4840), - [anon_sym_where] = ACTIONS(4840), - [anon_sym_object] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4840), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_get] = ACTIONS(4840), - [anon_sym_set] = ACTIONS(4840), - [anon_sym_this] = ACTIONS(4840), - [anon_sym_super] = ACTIONS(4840), - [anon_sym_STAR] = ACTIONS(4840), - [sym_label] = ACTIONS(4840), - [anon_sym_in] = ACTIONS(4840), - [anon_sym_DOT_DOT] = ACTIONS(4842), - [anon_sym_QMARK_COLON] = ACTIONS(4842), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_null] = ACTIONS(4840), - [anon_sym_if] = ACTIONS(4840), - [anon_sym_else] = ACTIONS(4840), - [anon_sym_when] = ACTIONS(4840), - [anon_sym_try] = ACTIONS(4840), - [anon_sym_throw] = ACTIONS(4840), - [anon_sym_return] = ACTIONS(4840), - [anon_sym_continue] = ACTIONS(4840), - [anon_sym_break] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(4842), - [anon_sym_PLUS_EQ] = ACTIONS(4842), - [anon_sym_DASH_EQ] = ACTIONS(4842), - [anon_sym_STAR_EQ] = ACTIONS(4842), - [anon_sym_SLASH_EQ] = ACTIONS(4842), - [anon_sym_PERCENT_EQ] = ACTIONS(4842), - [anon_sym_BANG_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), - [anon_sym_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), - [anon_sym_LT_EQ] = ACTIONS(4842), - [anon_sym_GT_EQ] = ACTIONS(4842), - [anon_sym_BANGin] = ACTIONS(4842), - [anon_sym_is] = ACTIONS(4840), - [anon_sym_BANGis] = ACTIONS(4842), - [anon_sym_PLUS] = ACTIONS(4840), - [anon_sym_DASH] = ACTIONS(4840), - [anon_sym_SLASH] = ACTIONS(4840), - [anon_sym_PERCENT] = ACTIONS(4840), - [anon_sym_as_QMARK] = ACTIONS(4842), - [anon_sym_PLUS_PLUS] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_BANG] = ACTIONS(4840), - [anon_sym_BANG_BANG] = ACTIONS(4842), - [anon_sym_data] = ACTIONS(4840), - [anon_sym_inner] = ACTIONS(4840), - [anon_sym_value] = ACTIONS(4840), - [anon_sym_expect] = ACTIONS(4840), - [anon_sym_actual] = ACTIONS(4840), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4842), - [anon_sym_continue_AT] = ACTIONS(4842), - [anon_sym_break_AT] = ACTIONS(4842), - [anon_sym_this_AT] = ACTIONS(4842), - [anon_sym_super_AT] = ACTIONS(4842), - [sym_real_literal] = ACTIONS(4842), - [sym_integer_literal] = ACTIONS(4840), - [sym_hex_literal] = ACTIONS(4842), - [sym_bin_literal] = ACTIONS(4842), - [anon_sym_true] = ACTIONS(4840), - [anon_sym_false] = ACTIONS(4840), - [anon_sym_SQUOTE] = ACTIONS(4842), - [sym__backtick_identifier] = ACTIONS(4842), - [sym__automatic_semicolon] = ACTIONS(4842), - [sym_safe_nav] = ACTIONS(4842), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4842), - }, - [3224] = { - [sym__alpha_identifier] = ACTIONS(4836), - [anon_sym_AT] = ACTIONS(4838), - [anon_sym_LBRACK] = ACTIONS(4838), - [anon_sym_as] = ACTIONS(4836), - [anon_sym_EQ] = ACTIONS(4836), - [anon_sym_fun] = ACTIONS(4836), - [anon_sym_LBRACE] = ACTIONS(4838), - [anon_sym_RBRACE] = ACTIONS(4838), - [anon_sym_LPAREN] = ACTIONS(4838), - [anon_sym_COMMA] = ACTIONS(4838), - [anon_sym_LT] = ACTIONS(4836), - [anon_sym_GT] = ACTIONS(4836), - [anon_sym_where] = ACTIONS(4836), - [anon_sym_object] = ACTIONS(4836), - [anon_sym_DOT] = ACTIONS(4836), - [anon_sym_SEMI] = ACTIONS(4838), - [anon_sym_get] = ACTIONS(4836), - [anon_sym_set] = ACTIONS(4836), - [anon_sym_this] = ACTIONS(4836), - [anon_sym_super] = ACTIONS(4836), - [anon_sym_STAR] = ACTIONS(4836), - [sym_label] = ACTIONS(4836), - [anon_sym_in] = ACTIONS(4836), - [anon_sym_DOT_DOT] = ACTIONS(4838), - [anon_sym_QMARK_COLON] = ACTIONS(4838), - [anon_sym_AMP_AMP] = ACTIONS(4838), - [anon_sym_PIPE_PIPE] = ACTIONS(4838), - [anon_sym_null] = ACTIONS(4836), - [anon_sym_if] = ACTIONS(4836), - [anon_sym_else] = ACTIONS(4836), - [anon_sym_when] = ACTIONS(4836), - [anon_sym_try] = ACTIONS(4836), - [anon_sym_throw] = ACTIONS(4836), - [anon_sym_return] = ACTIONS(4836), - [anon_sym_continue] = ACTIONS(4836), - [anon_sym_break] = ACTIONS(4836), - [anon_sym_COLON_COLON] = ACTIONS(4838), - [anon_sym_PLUS_EQ] = ACTIONS(4838), - [anon_sym_DASH_EQ] = ACTIONS(4838), - [anon_sym_STAR_EQ] = ACTIONS(4838), - [anon_sym_SLASH_EQ] = ACTIONS(4838), - [anon_sym_PERCENT_EQ] = ACTIONS(4838), - [anon_sym_BANG_EQ] = ACTIONS(4836), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4838), - [anon_sym_EQ_EQ] = ACTIONS(4836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4838), - [anon_sym_LT_EQ] = ACTIONS(4838), - [anon_sym_GT_EQ] = ACTIONS(4838), - [anon_sym_BANGin] = ACTIONS(4838), - [anon_sym_is] = ACTIONS(4836), - [anon_sym_BANGis] = ACTIONS(4838), - [anon_sym_PLUS] = ACTIONS(4836), - [anon_sym_DASH] = ACTIONS(4836), - [anon_sym_SLASH] = ACTIONS(4836), - [anon_sym_PERCENT] = ACTIONS(4836), - [anon_sym_as_QMARK] = ACTIONS(4838), - [anon_sym_PLUS_PLUS] = ACTIONS(4838), - [anon_sym_DASH_DASH] = ACTIONS(4838), - [anon_sym_BANG] = ACTIONS(4836), - [anon_sym_BANG_BANG] = ACTIONS(4838), - [anon_sym_data] = ACTIONS(4836), - [anon_sym_inner] = ACTIONS(4836), - [anon_sym_value] = ACTIONS(4836), - [anon_sym_expect] = ACTIONS(4836), - [anon_sym_actual] = ACTIONS(4836), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4838), - [anon_sym_continue_AT] = ACTIONS(4838), - [anon_sym_break_AT] = ACTIONS(4838), - [anon_sym_this_AT] = ACTIONS(4838), - [anon_sym_super_AT] = ACTIONS(4838), - [sym_real_literal] = ACTIONS(4838), - [sym_integer_literal] = ACTIONS(4836), - [sym_hex_literal] = ACTIONS(4838), - [sym_bin_literal] = ACTIONS(4838), - [anon_sym_true] = ACTIONS(4836), - [anon_sym_false] = ACTIONS(4836), - [anon_sym_SQUOTE] = ACTIONS(4838), - [sym__backtick_identifier] = ACTIONS(4838), - [sym__automatic_semicolon] = ACTIONS(4838), - [sym_safe_nav] = ACTIONS(4838), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4838), - }, - [3225] = { - [sym__alpha_identifier] = ACTIONS(5049), - [anon_sym_AT] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_as] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5049), - [anon_sym_fun] = ACTIONS(5049), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_where] = ACTIONS(5049), - [anon_sym_object] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_get] = ACTIONS(5049), - [anon_sym_set] = ACTIONS(5049), - [anon_sym_this] = ACTIONS(5049), - [anon_sym_super] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [sym_label] = ACTIONS(5049), - [anon_sym_in] = ACTIONS(5049), - [anon_sym_DOT_DOT] = ACTIONS(5051), - [anon_sym_QMARK_COLON] = ACTIONS(5051), - [anon_sym_AMP_AMP] = ACTIONS(5051), - [anon_sym_PIPE_PIPE] = ACTIONS(5051), - [anon_sym_null] = ACTIONS(5049), - [anon_sym_if] = ACTIONS(5049), - [anon_sym_else] = ACTIONS(5049), - [anon_sym_when] = ACTIONS(5049), - [anon_sym_try] = ACTIONS(5049), - [anon_sym_throw] = ACTIONS(5049), - [anon_sym_return] = ACTIONS(5049), - [anon_sym_continue] = ACTIONS(5049), - [anon_sym_break] = ACTIONS(5049), - [anon_sym_COLON_COLON] = ACTIONS(5051), - [anon_sym_PLUS_EQ] = ACTIONS(5051), - [anon_sym_DASH_EQ] = ACTIONS(5051), - [anon_sym_STAR_EQ] = ACTIONS(5051), - [anon_sym_SLASH_EQ] = ACTIONS(5051), - [anon_sym_PERCENT_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), - [anon_sym_LT_EQ] = ACTIONS(5051), - [anon_sym_GT_EQ] = ACTIONS(5051), - [anon_sym_BANGin] = ACTIONS(5051), - [anon_sym_is] = ACTIONS(5049), - [anon_sym_BANGis] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5049), - [anon_sym_as_QMARK] = ACTIONS(5051), - [anon_sym_PLUS_PLUS] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_BANG_BANG] = ACTIONS(5051), - [anon_sym_data] = ACTIONS(5049), - [anon_sym_inner] = ACTIONS(5049), - [anon_sym_value] = ACTIONS(5049), - [anon_sym_expect] = ACTIONS(5049), - [anon_sym_actual] = ACTIONS(5049), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5051), - [anon_sym_continue_AT] = ACTIONS(5051), - [anon_sym_break_AT] = ACTIONS(5051), - [anon_sym_this_AT] = ACTIONS(5051), - [anon_sym_super_AT] = ACTIONS(5051), - [sym_real_literal] = ACTIONS(5051), - [sym_integer_literal] = ACTIONS(5049), - [sym_hex_literal] = ACTIONS(5051), - [sym_bin_literal] = ACTIONS(5051), - [anon_sym_true] = ACTIONS(5049), - [anon_sym_false] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5051), - [sym__backtick_identifier] = ACTIONS(5051), - [sym__automatic_semicolon] = ACTIONS(5051), - [sym_safe_nav] = ACTIONS(5051), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5051), - }, - [3226] = { - [sym__alpha_identifier] = ACTIONS(5028), - [anon_sym_AT] = ACTIONS(5030), - [anon_sym_LBRACK] = ACTIONS(5030), - [anon_sym_as] = ACTIONS(5028), - [anon_sym_EQ] = ACTIONS(5028), - [anon_sym_fun] = ACTIONS(5028), - [anon_sym_LBRACE] = ACTIONS(5030), - [anon_sym_RBRACE] = ACTIONS(5030), - [anon_sym_LPAREN] = ACTIONS(5030), - [anon_sym_COMMA] = ACTIONS(5030), - [anon_sym_LT] = ACTIONS(5028), - [anon_sym_GT] = ACTIONS(5028), - [anon_sym_where] = ACTIONS(5028), - [anon_sym_object] = ACTIONS(5028), - [anon_sym_DOT] = ACTIONS(5028), - [anon_sym_SEMI] = ACTIONS(5030), - [anon_sym_get] = ACTIONS(5028), - [anon_sym_set] = ACTIONS(5028), - [anon_sym_this] = ACTIONS(5028), - [anon_sym_super] = ACTIONS(5028), - [anon_sym_STAR] = ACTIONS(5028), - [sym_label] = ACTIONS(5028), - [anon_sym_in] = ACTIONS(5028), - [anon_sym_DOT_DOT] = ACTIONS(5030), - [anon_sym_QMARK_COLON] = ACTIONS(5030), - [anon_sym_AMP_AMP] = ACTIONS(5030), - [anon_sym_PIPE_PIPE] = ACTIONS(5030), - [anon_sym_null] = ACTIONS(5028), - [anon_sym_if] = ACTIONS(5028), - [anon_sym_else] = ACTIONS(5028), - [anon_sym_when] = ACTIONS(5028), - [anon_sym_try] = ACTIONS(5028), - [anon_sym_throw] = ACTIONS(5028), - [anon_sym_return] = ACTIONS(5028), - [anon_sym_continue] = ACTIONS(5028), - [anon_sym_break] = ACTIONS(5028), - [anon_sym_COLON_COLON] = ACTIONS(5030), - [anon_sym_PLUS_EQ] = ACTIONS(5030), - [anon_sym_DASH_EQ] = ACTIONS(5030), - [anon_sym_STAR_EQ] = ACTIONS(5030), - [anon_sym_SLASH_EQ] = ACTIONS(5030), - [anon_sym_PERCENT_EQ] = ACTIONS(5030), - [anon_sym_BANG_EQ] = ACTIONS(5028), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5030), - [anon_sym_EQ_EQ] = ACTIONS(5028), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5030), - [anon_sym_LT_EQ] = ACTIONS(5030), - [anon_sym_GT_EQ] = ACTIONS(5030), - [anon_sym_BANGin] = ACTIONS(5030), - [anon_sym_is] = ACTIONS(5028), - [anon_sym_BANGis] = ACTIONS(5030), - [anon_sym_PLUS] = ACTIONS(5028), - [anon_sym_DASH] = ACTIONS(5028), - [anon_sym_SLASH] = ACTIONS(5028), - [anon_sym_PERCENT] = ACTIONS(5028), - [anon_sym_as_QMARK] = ACTIONS(5030), - [anon_sym_PLUS_PLUS] = ACTIONS(5030), - [anon_sym_DASH_DASH] = ACTIONS(5030), - [anon_sym_BANG] = ACTIONS(5028), - [anon_sym_BANG_BANG] = ACTIONS(5030), - [anon_sym_data] = ACTIONS(5028), - [anon_sym_inner] = ACTIONS(5028), - [anon_sym_value] = ACTIONS(5028), - [anon_sym_expect] = ACTIONS(5028), - [anon_sym_actual] = ACTIONS(5028), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5030), - [anon_sym_continue_AT] = ACTIONS(5030), - [anon_sym_break_AT] = ACTIONS(5030), - [anon_sym_this_AT] = ACTIONS(5030), - [anon_sym_super_AT] = ACTIONS(5030), - [sym_real_literal] = ACTIONS(5030), - [sym_integer_literal] = ACTIONS(5028), - [sym_hex_literal] = ACTIONS(5030), - [sym_bin_literal] = ACTIONS(5030), - [anon_sym_true] = ACTIONS(5028), - [anon_sym_false] = ACTIONS(5028), - [anon_sym_SQUOTE] = ACTIONS(5030), - [sym__backtick_identifier] = ACTIONS(5030), - [sym__automatic_semicolon] = ACTIONS(5030), - [sym_safe_nav] = ACTIONS(5030), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5030), - }, - [3227] = { - [sym_function_body] = STATE(3262), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), - }, - [3228] = { - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [3229] = { - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_fun] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(4597), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_LT] = ACTIONS(4595), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_where] = ACTIONS(4595), - [anon_sym_object] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_this] = ACTIONS(4595), - [anon_sym_super] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [sym_label] = ACTIONS(4595), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_if] = ACTIONS(4595), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_when] = ACTIONS(4595), - [anon_sym_try] = ACTIONS(4595), - [anon_sym_throw] = ACTIONS(4595), - [anon_sym_return] = ACTIONS(4595), - [anon_sym_continue] = ACTIONS(4595), - [anon_sym_break] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4597), - [anon_sym_continue_AT] = ACTIONS(4597), - [anon_sym_break_AT] = ACTIONS(4597), - [anon_sym_this_AT] = ACTIONS(4597), - [anon_sym_super_AT] = ACTIONS(4597), - [sym_real_literal] = ACTIONS(4597), - [sym_integer_literal] = ACTIONS(4595), - [sym_hex_literal] = ACTIONS(4597), - [sym_bin_literal] = ACTIONS(4597), - [anon_sym_true] = ACTIONS(4595), - [anon_sym_false] = ACTIONS(4595), - [anon_sym_SQUOTE] = ACTIONS(4597), - [sym__backtick_identifier] = ACTIONS(4597), - [sym__automatic_semicolon] = ACTIONS(4597), - [sym_safe_nav] = ACTIONS(4597), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4597), - }, [3230] = { - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_fun] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(1800), - [anon_sym_set] = ACTIONS(1800), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_super] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [sym_label] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_data] = ACTIONS(1800), - [anon_sym_inner] = ACTIONS(1800), - [anon_sym_value] = ACTIONS(1800), - [anon_sym_expect] = ACTIONS(1800), - [anon_sym_actual] = ACTIONS(1800), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1802), - [anon_sym_continue_AT] = ACTIONS(1802), - [anon_sym_break_AT] = ACTIONS(1802), - [anon_sym_this_AT] = ACTIONS(1802), - [anon_sym_super_AT] = ACTIONS(1802), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_object] = ACTIONS(4094), + [anon_sym_fun] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_this] = ACTIONS(4094), + [anon_sym_super] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_null] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_when] = ACTIONS(4094), + [anon_sym_try] = ACTIONS(4094), + [anon_sym_throw] = ACTIONS(4094), + [anon_sym_return] = ACTIONS(4094), + [anon_sym_continue] = ACTIONS(4094), + [anon_sym_break] = ACTIONS(4094), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4096), + [anon_sym_continue_AT] = ACTIONS(4096), + [anon_sym_break_AT] = ACTIONS(4096), + [anon_sym_this_AT] = ACTIONS(4096), + [anon_sym_super_AT] = ACTIONS(4096), + [sym_real_literal] = ACTIONS(4096), + [sym_integer_literal] = ACTIONS(4094), + [sym_hex_literal] = ACTIONS(4096), + [sym_bin_literal] = ACTIONS(4096), + [anon_sym_true] = ACTIONS(4094), + [anon_sym_false] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4096), + [sym__backtick_identifier] = ACTIONS(4096), + [sym__automatic_semicolon] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4096), }, [3231] = { - [sym__alpha_identifier] = ACTIONS(5057), - [anon_sym_AT] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(5057), - [anon_sym_fun] = ACTIONS(5057), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_where] = ACTIONS(5057), - [anon_sym_object] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_get] = ACTIONS(5057), - [anon_sym_set] = ACTIONS(5057), - [anon_sym_this] = ACTIONS(5057), - [anon_sym_super] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [sym_label] = ACTIONS(5057), - [anon_sym_in] = ACTIONS(5057), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_QMARK_COLON] = ACTIONS(5059), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_null] = ACTIONS(5057), - [anon_sym_if] = ACTIONS(5057), - [anon_sym_else] = ACTIONS(5057), - [anon_sym_when] = ACTIONS(5057), - [anon_sym_try] = ACTIONS(5057), - [anon_sym_throw] = ACTIONS(5057), - [anon_sym_return] = ACTIONS(5057), - [anon_sym_continue] = ACTIONS(5057), - [anon_sym_break] = ACTIONS(5057), - [anon_sym_COLON_COLON] = ACTIONS(5059), - [anon_sym_PLUS_EQ] = ACTIONS(5059), - [anon_sym_DASH_EQ] = ACTIONS(5059), - [anon_sym_STAR_EQ] = ACTIONS(5059), - [anon_sym_SLASH_EQ] = ACTIONS(5059), - [anon_sym_PERCENT_EQ] = ACTIONS(5059), - [anon_sym_BANG_EQ] = ACTIONS(5057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5059), - [anon_sym_EQ_EQ] = ACTIONS(5057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5059), - [anon_sym_LT_EQ] = ACTIONS(5059), - [anon_sym_GT_EQ] = ACTIONS(5059), - [anon_sym_BANGin] = ACTIONS(5059), - [anon_sym_is] = ACTIONS(5057), - [anon_sym_BANGis] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_PERCENT] = ACTIONS(5057), - [anon_sym_as_QMARK] = ACTIONS(5059), - [anon_sym_PLUS_PLUS] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5059), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_BANG_BANG] = ACTIONS(5059), - [anon_sym_data] = ACTIONS(5057), - [anon_sym_inner] = ACTIONS(5057), - [anon_sym_value] = ACTIONS(5057), - [anon_sym_expect] = ACTIONS(5057), - [anon_sym_actual] = ACTIONS(5057), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5059), - [anon_sym_continue_AT] = ACTIONS(5059), - [anon_sym_break_AT] = ACTIONS(5059), - [anon_sym_this_AT] = ACTIONS(5059), - [anon_sym_super_AT] = ACTIONS(5059), - [sym_real_literal] = ACTIONS(5059), - [sym_integer_literal] = ACTIONS(5057), - [sym_hex_literal] = ACTIONS(5059), - [sym_bin_literal] = ACTIONS(5059), - [anon_sym_true] = ACTIONS(5057), - [anon_sym_false] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5059), - [sym__backtick_identifier] = ACTIONS(5059), - [sym__automatic_semicolon] = ACTIONS(5059), - [sym_safe_nav] = ACTIONS(5059), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5059), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [3232] = { - [sym__alpha_identifier] = ACTIONS(5069), - [anon_sym_AT] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_as] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5069), - [anon_sym_fun] = ACTIONS(5069), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_RBRACE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_where] = ACTIONS(5069), - [anon_sym_object] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_get] = ACTIONS(5069), - [anon_sym_set] = ACTIONS(5069), - [anon_sym_this] = ACTIONS(5069), - [anon_sym_super] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [sym_label] = ACTIONS(5069), - [anon_sym_in] = ACTIONS(5069), - [anon_sym_DOT_DOT] = ACTIONS(5071), - [anon_sym_QMARK_COLON] = ACTIONS(5071), - [anon_sym_AMP_AMP] = ACTIONS(5071), - [anon_sym_PIPE_PIPE] = ACTIONS(5071), - [anon_sym_null] = ACTIONS(5069), - [anon_sym_if] = ACTIONS(5069), - [anon_sym_else] = ACTIONS(5069), - [anon_sym_when] = ACTIONS(5069), - [anon_sym_try] = ACTIONS(5069), - [anon_sym_throw] = ACTIONS(5069), - [anon_sym_return] = ACTIONS(5069), - [anon_sym_continue] = ACTIONS(5069), - [anon_sym_break] = ACTIONS(5069), - [anon_sym_COLON_COLON] = ACTIONS(5071), - [anon_sym_PLUS_EQ] = ACTIONS(5071), - [anon_sym_DASH_EQ] = ACTIONS(5071), - [anon_sym_STAR_EQ] = ACTIONS(5071), - [anon_sym_SLASH_EQ] = ACTIONS(5071), - [anon_sym_PERCENT_EQ] = ACTIONS(5071), - [anon_sym_BANG_EQ] = ACTIONS(5069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5071), - [anon_sym_EQ_EQ] = ACTIONS(5069), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5071), - [anon_sym_LT_EQ] = ACTIONS(5071), - [anon_sym_GT_EQ] = ACTIONS(5071), - [anon_sym_BANGin] = ACTIONS(5071), - [anon_sym_is] = ACTIONS(5069), - [anon_sym_BANGis] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_PERCENT] = ACTIONS(5069), - [anon_sym_as_QMARK] = ACTIONS(5071), - [anon_sym_PLUS_PLUS] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5069), - [anon_sym_BANG_BANG] = ACTIONS(5071), - [anon_sym_data] = ACTIONS(5069), - [anon_sym_inner] = ACTIONS(5069), - [anon_sym_value] = ACTIONS(5069), - [anon_sym_expect] = ACTIONS(5069), - [anon_sym_actual] = ACTIONS(5069), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5071), - [anon_sym_continue_AT] = ACTIONS(5071), - [anon_sym_break_AT] = ACTIONS(5071), - [anon_sym_this_AT] = ACTIONS(5071), - [anon_sym_super_AT] = ACTIONS(5071), - [sym_real_literal] = ACTIONS(5071), - [sym_integer_literal] = ACTIONS(5069), - [sym_hex_literal] = ACTIONS(5071), - [sym_bin_literal] = ACTIONS(5071), - [anon_sym_true] = ACTIONS(5069), - [anon_sym_false] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5071), - [sym__backtick_identifier] = ACTIONS(5071), - [sym__automatic_semicolon] = ACTIONS(5071), - [sym_safe_nav] = ACTIONS(5071), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5071), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4147), + [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [3233] = { - [sym__alpha_identifier] = ACTIONS(5079), - [anon_sym_AT] = ACTIONS(5081), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_as] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_fun] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5081), - [anon_sym_RBRACE] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5081), - [anon_sym_COMMA] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5079), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_where] = ACTIONS(5079), - [anon_sym_object] = ACTIONS(5079), - [anon_sym_DOT] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5081), - [anon_sym_get] = ACTIONS(5079), - [anon_sym_set] = ACTIONS(5079), - [anon_sym_this] = ACTIONS(5079), - [anon_sym_super] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [sym_label] = ACTIONS(5079), - [anon_sym_in] = ACTIONS(5079), - [anon_sym_DOT_DOT] = ACTIONS(5081), - [anon_sym_QMARK_COLON] = ACTIONS(5081), - [anon_sym_AMP_AMP] = ACTIONS(5081), - [anon_sym_PIPE_PIPE] = ACTIONS(5081), - [anon_sym_null] = ACTIONS(5079), - [anon_sym_if] = ACTIONS(5079), - [anon_sym_else] = ACTIONS(5079), - [anon_sym_when] = ACTIONS(5079), - [anon_sym_try] = ACTIONS(5079), - [anon_sym_throw] = ACTIONS(5079), - [anon_sym_return] = ACTIONS(5079), - [anon_sym_continue] = ACTIONS(5079), - [anon_sym_break] = ACTIONS(5079), - [anon_sym_COLON_COLON] = ACTIONS(5081), - [anon_sym_PLUS_EQ] = ACTIONS(5081), - [anon_sym_DASH_EQ] = ACTIONS(5081), - [anon_sym_STAR_EQ] = ACTIONS(5081), - [anon_sym_SLASH_EQ] = ACTIONS(5081), - [anon_sym_PERCENT_EQ] = ACTIONS(5081), - [anon_sym_BANG_EQ] = ACTIONS(5079), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5081), - [anon_sym_EQ_EQ] = ACTIONS(5079), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5081), - [anon_sym_LT_EQ] = ACTIONS(5081), - [anon_sym_GT_EQ] = ACTIONS(5081), - [anon_sym_BANGin] = ACTIONS(5081), - [anon_sym_is] = ACTIONS(5079), - [anon_sym_BANGis] = ACTIONS(5081), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5079), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_as_QMARK] = ACTIONS(5081), - [anon_sym_PLUS_PLUS] = ACTIONS(5081), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5079), - [anon_sym_BANG_BANG] = ACTIONS(5081), - [anon_sym_data] = ACTIONS(5079), - [anon_sym_inner] = ACTIONS(5079), - [anon_sym_value] = ACTIONS(5079), - [anon_sym_expect] = ACTIONS(5079), - [anon_sym_actual] = ACTIONS(5079), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5081), - [anon_sym_continue_AT] = ACTIONS(5081), - [anon_sym_break_AT] = ACTIONS(5081), - [anon_sym_this_AT] = ACTIONS(5081), - [anon_sym_super_AT] = ACTIONS(5081), - [sym_real_literal] = ACTIONS(5081), - [sym_integer_literal] = ACTIONS(5079), - [sym_hex_literal] = ACTIONS(5081), - [sym_bin_literal] = ACTIONS(5081), - [anon_sym_true] = ACTIONS(5079), - [anon_sym_false] = ACTIONS(5079), - [anon_sym_SQUOTE] = ACTIONS(5081), - [sym__backtick_identifier] = ACTIONS(5081), - [sym__automatic_semicolon] = ACTIONS(5081), - [sym_safe_nav] = ACTIONS(5081), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5081), + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_RBRACK] = ACTIONS(4181), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_constructor] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [anon_sym_DASH_GT] = ACTIONS(4181), + [sym_label] = ACTIONS(4181), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_while] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_QMARK_COLON] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS_EQ] = ACTIONS(4181), + [anon_sym_DASH_EQ] = ACTIONS(4181), + [anon_sym_STAR_EQ] = ACTIONS(4181), + [anon_sym_SLASH_EQ] = ACTIONS(4181), + [anon_sym_PERCENT_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_as_QMARK] = ACTIONS(4181), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG_BANG] = ACTIONS(4181), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4181), + [sym_safe_nav] = ACTIONS(4181), + [sym_multiline_comment] = ACTIONS(3), }, [3234] = { - [sym__alpha_identifier] = ACTIONS(5083), - [anon_sym_AT] = ACTIONS(5085), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_as] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_fun] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5085), - [anon_sym_RBRACE] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5085), - [anon_sym_COMMA] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5083), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_where] = ACTIONS(5083), - [anon_sym_object] = ACTIONS(5083), - [anon_sym_DOT] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5085), - [anon_sym_get] = ACTIONS(5083), - [anon_sym_set] = ACTIONS(5083), - [anon_sym_this] = ACTIONS(5083), - [anon_sym_super] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [sym_label] = ACTIONS(5083), - [anon_sym_in] = ACTIONS(5083), - [anon_sym_DOT_DOT] = ACTIONS(5085), - [anon_sym_QMARK_COLON] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5085), - [anon_sym_PIPE_PIPE] = ACTIONS(5085), - [anon_sym_null] = ACTIONS(5083), - [anon_sym_if] = ACTIONS(5083), - [anon_sym_else] = ACTIONS(5083), - [anon_sym_when] = ACTIONS(5083), - [anon_sym_try] = ACTIONS(5083), - [anon_sym_throw] = ACTIONS(5083), - [anon_sym_return] = ACTIONS(5083), - [anon_sym_continue] = ACTIONS(5083), - [anon_sym_break] = ACTIONS(5083), - [anon_sym_COLON_COLON] = ACTIONS(5085), - [anon_sym_PLUS_EQ] = ACTIONS(5085), - [anon_sym_DASH_EQ] = ACTIONS(5085), - [anon_sym_STAR_EQ] = ACTIONS(5085), - [anon_sym_SLASH_EQ] = ACTIONS(5085), - [anon_sym_PERCENT_EQ] = ACTIONS(5085), - [anon_sym_BANG_EQ] = ACTIONS(5083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5085), - [anon_sym_EQ_EQ] = ACTIONS(5083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5085), - [anon_sym_LT_EQ] = ACTIONS(5085), - [anon_sym_GT_EQ] = ACTIONS(5085), - [anon_sym_BANGin] = ACTIONS(5085), - [anon_sym_is] = ACTIONS(5083), - [anon_sym_BANGis] = ACTIONS(5085), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_as_QMARK] = ACTIONS(5085), - [anon_sym_PLUS_PLUS] = ACTIONS(5085), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5083), - [anon_sym_BANG_BANG] = ACTIONS(5085), - [anon_sym_data] = ACTIONS(5083), - [anon_sym_inner] = ACTIONS(5083), - [anon_sym_value] = ACTIONS(5083), - [anon_sym_expect] = ACTIONS(5083), - [anon_sym_actual] = ACTIONS(5083), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5085), - [anon_sym_continue_AT] = ACTIONS(5085), - [anon_sym_break_AT] = ACTIONS(5085), - [anon_sym_this_AT] = ACTIONS(5085), - [anon_sym_super_AT] = ACTIONS(5085), - [sym_real_literal] = ACTIONS(5085), - [sym_integer_literal] = ACTIONS(5083), - [sym_hex_literal] = ACTIONS(5085), - [sym_bin_literal] = ACTIONS(5085), - [anon_sym_true] = ACTIONS(5083), - [anon_sym_false] = ACTIONS(5083), - [anon_sym_SQUOTE] = ACTIONS(5085), - [sym__backtick_identifier] = ACTIONS(5085), - [sym__automatic_semicolon] = ACTIONS(5085), - [sym_safe_nav] = ACTIONS(5085), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5085), + [sym__alpha_identifier] = ACTIONS(5213), + [anon_sym_AT] = ACTIONS(5215), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_as] = ACTIONS(5213), + [anon_sym_EQ] = ACTIONS(5213), + [anon_sym_LBRACE] = ACTIONS(5215), + [anon_sym_RBRACE] = ACTIONS(5215), + [anon_sym_LPAREN] = ACTIONS(5215), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_where] = ACTIONS(5213), + [anon_sym_object] = ACTIONS(5213), + [anon_sym_fun] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(5213), + [anon_sym_SEMI] = ACTIONS(5215), + [anon_sym_get] = ACTIONS(5213), + [anon_sym_set] = ACTIONS(5213), + [anon_sym_this] = ACTIONS(5213), + [anon_sym_super] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5213), + [sym_label] = ACTIONS(5213), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5215), + [anon_sym_QMARK_COLON] = ACTIONS(5215), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(5215), + [anon_sym_null] = ACTIONS(5213), + [anon_sym_if] = ACTIONS(5213), + [anon_sym_else] = ACTIONS(5213), + [anon_sym_when] = ACTIONS(5213), + [anon_sym_try] = ACTIONS(5213), + [anon_sym_throw] = ACTIONS(5213), + [anon_sym_return] = ACTIONS(5213), + [anon_sym_continue] = ACTIONS(5213), + [anon_sym_break] = ACTIONS(5213), + [anon_sym_COLON_COLON] = ACTIONS(5215), + [anon_sym_PLUS_EQ] = ACTIONS(5215), + [anon_sym_DASH_EQ] = ACTIONS(5215), + [anon_sym_STAR_EQ] = ACTIONS(5215), + [anon_sym_SLASH_EQ] = ACTIONS(5215), + [anon_sym_PERCENT_EQ] = ACTIONS(5215), + [anon_sym_BANG_EQ] = ACTIONS(5213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5215), + [anon_sym_EQ_EQ] = ACTIONS(5213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5215), + [anon_sym_LT_EQ] = ACTIONS(5215), + [anon_sym_GT_EQ] = ACTIONS(5215), + [anon_sym_BANGin] = ACTIONS(5215), + [anon_sym_is] = ACTIONS(5213), + [anon_sym_BANGis] = ACTIONS(5215), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_PERCENT] = ACTIONS(5213), + [anon_sym_as_QMARK] = ACTIONS(5215), + [anon_sym_PLUS_PLUS] = ACTIONS(5215), + [anon_sym_DASH_DASH] = ACTIONS(5215), + [anon_sym_BANG] = ACTIONS(5213), + [anon_sym_BANG_BANG] = ACTIONS(5215), + [anon_sym_data] = ACTIONS(5213), + [anon_sym_inner] = ACTIONS(5213), + [anon_sym_value] = ACTIONS(5213), + [anon_sym_expect] = ACTIONS(5213), + [anon_sym_actual] = ACTIONS(5213), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5215), + [anon_sym_continue_AT] = ACTIONS(5215), + [anon_sym_break_AT] = ACTIONS(5215), + [anon_sym_this_AT] = ACTIONS(5215), + [anon_sym_super_AT] = ACTIONS(5215), + [sym_real_literal] = ACTIONS(5215), + [sym_integer_literal] = ACTIONS(5213), + [sym_hex_literal] = ACTIONS(5215), + [sym_bin_literal] = ACTIONS(5215), + [anon_sym_true] = ACTIONS(5213), + [anon_sym_false] = ACTIONS(5213), + [anon_sym_SQUOTE] = ACTIONS(5215), + [sym__backtick_identifier] = ACTIONS(5215), + [sym__automatic_semicolon] = ACTIONS(5215), + [sym_safe_nav] = ACTIONS(5215), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5215), }, [3235] = { - [sym__alpha_identifier] = ACTIONS(4034), - [anon_sym_AT] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_as] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4034), - [anon_sym_fun] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_COMMA] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_where] = ACTIONS(4034), - [anon_sym_object] = ACTIONS(4034), - [anon_sym_DOT] = ACTIONS(4034), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_get] = ACTIONS(4034), - [anon_sym_set] = ACTIONS(4034), - [anon_sym_this] = ACTIONS(4034), - [anon_sym_super] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4034), - [sym_label] = ACTIONS(4034), - [anon_sym_in] = ACTIONS(4034), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_QMARK_COLON] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_null] = ACTIONS(4034), - [anon_sym_if] = ACTIONS(4034), - [anon_sym_else] = ACTIONS(4034), - [anon_sym_when] = ACTIONS(4034), - [anon_sym_try] = ACTIONS(4034), - [anon_sym_throw] = ACTIONS(4034), - [anon_sym_return] = ACTIONS(4034), - [anon_sym_continue] = ACTIONS(4034), - [anon_sym_break] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4036), - [anon_sym_PLUS_EQ] = ACTIONS(4036), - [anon_sym_DASH_EQ] = ACTIONS(4036), - [anon_sym_STAR_EQ] = ACTIONS(4036), - [anon_sym_SLASH_EQ] = ACTIONS(4036), - [anon_sym_PERCENT_EQ] = ACTIONS(4036), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT_EQ] = ACTIONS(4036), - [anon_sym_GT_EQ] = ACTIONS(4036), - [anon_sym_BANGin] = ACTIONS(4036), - [anon_sym_is] = ACTIONS(4034), - [anon_sym_BANGis] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_SLASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_as_QMARK] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4036), - [anon_sym_DASH_DASH] = ACTIONS(4036), - [anon_sym_BANG] = ACTIONS(4034), - [anon_sym_BANG_BANG] = ACTIONS(4036), - [anon_sym_data] = ACTIONS(4034), - [anon_sym_inner] = ACTIONS(4034), - [anon_sym_value] = ACTIONS(4034), - [anon_sym_expect] = ACTIONS(4034), - [anon_sym_actual] = ACTIONS(4034), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4036), - [anon_sym_continue_AT] = ACTIONS(4036), - [anon_sym_break_AT] = ACTIONS(4036), - [anon_sym_this_AT] = ACTIONS(4036), - [anon_sym_super_AT] = ACTIONS(4036), - [sym_real_literal] = ACTIONS(4036), - [sym_integer_literal] = ACTIONS(4034), - [sym_hex_literal] = ACTIONS(4036), - [sym_bin_literal] = ACTIONS(4036), - [anon_sym_true] = ACTIONS(4034), - [anon_sym_false] = ACTIONS(4034), - [anon_sym_SQUOTE] = ACTIONS(4036), - [sym__backtick_identifier] = ACTIONS(4036), - [sym__automatic_semicolon] = ACTIONS(4036), - [sym_safe_nav] = ACTIONS(4036), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4036), + [sym__alpha_identifier] = ACTIONS(5209), + [anon_sym_AT] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5209), + [anon_sym_EQ] = ACTIONS(5209), + [anon_sym_LBRACE] = ACTIONS(5211), + [anon_sym_RBRACE] = ACTIONS(5211), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_where] = ACTIONS(5209), + [anon_sym_object] = ACTIONS(5209), + [anon_sym_fun] = ACTIONS(5209), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_SEMI] = ACTIONS(5211), + [anon_sym_get] = ACTIONS(5209), + [anon_sym_set] = ACTIONS(5209), + [anon_sym_this] = ACTIONS(5209), + [anon_sym_super] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5209), + [sym_label] = ACTIONS(5209), + [anon_sym_in] = ACTIONS(5209), + [anon_sym_DOT_DOT] = ACTIONS(5211), + [anon_sym_QMARK_COLON] = ACTIONS(5211), + [anon_sym_AMP_AMP] = ACTIONS(5211), + [anon_sym_PIPE_PIPE] = ACTIONS(5211), + [anon_sym_null] = ACTIONS(5209), + [anon_sym_if] = ACTIONS(5209), + [anon_sym_else] = ACTIONS(5209), + [anon_sym_when] = ACTIONS(5209), + [anon_sym_try] = ACTIONS(5209), + [anon_sym_throw] = ACTIONS(5209), + [anon_sym_return] = ACTIONS(5209), + [anon_sym_continue] = ACTIONS(5209), + [anon_sym_break] = ACTIONS(5209), + [anon_sym_COLON_COLON] = ACTIONS(5211), + [anon_sym_PLUS_EQ] = ACTIONS(5211), + [anon_sym_DASH_EQ] = ACTIONS(5211), + [anon_sym_STAR_EQ] = ACTIONS(5211), + [anon_sym_SLASH_EQ] = ACTIONS(5211), + [anon_sym_PERCENT_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ] = ACTIONS(5209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5211), + [anon_sym_EQ_EQ] = ACTIONS(5209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5211), + [anon_sym_LT_EQ] = ACTIONS(5211), + [anon_sym_GT_EQ] = ACTIONS(5211), + [anon_sym_BANGin] = ACTIONS(5211), + [anon_sym_is] = ACTIONS(5209), + [anon_sym_BANGis] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_PERCENT] = ACTIONS(5209), + [anon_sym_as_QMARK] = ACTIONS(5211), + [anon_sym_PLUS_PLUS] = ACTIONS(5211), + [anon_sym_DASH_DASH] = ACTIONS(5211), + [anon_sym_BANG] = ACTIONS(5209), + [anon_sym_BANG_BANG] = ACTIONS(5211), + [anon_sym_data] = ACTIONS(5209), + [anon_sym_inner] = ACTIONS(5209), + [anon_sym_value] = ACTIONS(5209), + [anon_sym_expect] = ACTIONS(5209), + [anon_sym_actual] = ACTIONS(5209), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5211), + [anon_sym_continue_AT] = ACTIONS(5211), + [anon_sym_break_AT] = ACTIONS(5211), + [anon_sym_this_AT] = ACTIONS(5211), + [anon_sym_super_AT] = ACTIONS(5211), + [sym_real_literal] = ACTIONS(5211), + [sym_integer_literal] = ACTIONS(5209), + [sym_hex_literal] = ACTIONS(5211), + [sym_bin_literal] = ACTIONS(5211), + [anon_sym_true] = ACTIONS(5209), + [anon_sym_false] = ACTIONS(5209), + [anon_sym_SQUOTE] = ACTIONS(5211), + [sym__backtick_identifier] = ACTIONS(5211), + [sym__automatic_semicolon] = ACTIONS(5211), + [sym_safe_nav] = ACTIONS(5211), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5211), }, [3236] = { - [sym__alpha_identifier] = ACTIONS(5032), - [anon_sym_AT] = ACTIONS(5034), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_as] = ACTIONS(5032), - [anon_sym_EQ] = ACTIONS(5032), - [anon_sym_fun] = ACTIONS(5032), - [anon_sym_LBRACE] = ACTIONS(5034), - [anon_sym_RBRACE] = ACTIONS(5034), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_COMMA] = ACTIONS(5034), - [anon_sym_LT] = ACTIONS(5032), - [anon_sym_GT] = ACTIONS(5032), - [anon_sym_where] = ACTIONS(5032), - [anon_sym_object] = ACTIONS(5032), - [anon_sym_DOT] = ACTIONS(5032), - [anon_sym_SEMI] = ACTIONS(5034), - [anon_sym_get] = ACTIONS(5032), - [anon_sym_set] = ACTIONS(5032), - [anon_sym_this] = ACTIONS(5032), - [anon_sym_super] = ACTIONS(5032), - [anon_sym_STAR] = ACTIONS(5032), - [sym_label] = ACTIONS(5032), - [anon_sym_in] = ACTIONS(5032), - [anon_sym_DOT_DOT] = ACTIONS(5034), - [anon_sym_QMARK_COLON] = ACTIONS(5034), - [anon_sym_AMP_AMP] = ACTIONS(5034), - [anon_sym_PIPE_PIPE] = ACTIONS(5034), - [anon_sym_null] = ACTIONS(5032), - [anon_sym_if] = ACTIONS(5032), - [anon_sym_else] = ACTIONS(5032), - [anon_sym_when] = ACTIONS(5032), - [anon_sym_try] = ACTIONS(5032), - [anon_sym_throw] = ACTIONS(5032), - [anon_sym_return] = ACTIONS(5032), - [anon_sym_continue] = ACTIONS(5032), - [anon_sym_break] = ACTIONS(5032), - [anon_sym_COLON_COLON] = ACTIONS(5034), - [anon_sym_PLUS_EQ] = ACTIONS(5034), - [anon_sym_DASH_EQ] = ACTIONS(5034), - [anon_sym_STAR_EQ] = ACTIONS(5034), - [anon_sym_SLASH_EQ] = ACTIONS(5034), - [anon_sym_PERCENT_EQ] = ACTIONS(5034), - [anon_sym_BANG_EQ] = ACTIONS(5032), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5034), - [anon_sym_EQ_EQ] = ACTIONS(5032), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5034), - [anon_sym_LT_EQ] = ACTIONS(5034), - [anon_sym_GT_EQ] = ACTIONS(5034), - [anon_sym_BANGin] = ACTIONS(5034), - [anon_sym_is] = ACTIONS(5032), - [anon_sym_BANGis] = ACTIONS(5034), - [anon_sym_PLUS] = ACTIONS(5032), - [anon_sym_DASH] = ACTIONS(5032), - [anon_sym_SLASH] = ACTIONS(5032), - [anon_sym_PERCENT] = ACTIONS(5032), - [anon_sym_as_QMARK] = ACTIONS(5034), - [anon_sym_PLUS_PLUS] = ACTIONS(5034), - [anon_sym_DASH_DASH] = ACTIONS(5034), - [anon_sym_BANG] = ACTIONS(5032), - [anon_sym_BANG_BANG] = ACTIONS(5034), - [anon_sym_data] = ACTIONS(5032), - [anon_sym_inner] = ACTIONS(5032), - [anon_sym_value] = ACTIONS(5032), - [anon_sym_expect] = ACTIONS(5032), - [anon_sym_actual] = ACTIONS(5032), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5034), - [anon_sym_continue_AT] = ACTIONS(5034), - [anon_sym_break_AT] = ACTIONS(5034), - [anon_sym_this_AT] = ACTIONS(5034), - [anon_sym_super_AT] = ACTIONS(5034), - [sym_real_literal] = ACTIONS(5034), - [sym_integer_literal] = ACTIONS(5032), - [sym_hex_literal] = ACTIONS(5034), - [sym_bin_literal] = ACTIONS(5034), - [anon_sym_true] = ACTIONS(5032), - [anon_sym_false] = ACTIONS(5032), - [anon_sym_SQUOTE] = ACTIONS(5034), - [sym__backtick_identifier] = ACTIONS(5034), - [sym__automatic_semicolon] = ACTIONS(5034), - [sym_safe_nav] = ACTIONS(5034), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5034), + [sym__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_as] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_where] = ACTIONS(5077), + [anon_sym_object] = ACTIONS(5077), + [anon_sym_fun] = ACTIONS(5077), + [anon_sym_DOT] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5079), + [anon_sym_get] = ACTIONS(5077), + [anon_sym_set] = ACTIONS(5077), + [anon_sym_this] = ACTIONS(5077), + [anon_sym_super] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [sym_label] = ACTIONS(5077), + [anon_sym_in] = ACTIONS(5077), + [anon_sym_DOT_DOT] = ACTIONS(5079), + [anon_sym_QMARK_COLON] = ACTIONS(5079), + [anon_sym_AMP_AMP] = ACTIONS(5079), + [anon_sym_PIPE_PIPE] = ACTIONS(5079), + [anon_sym_null] = ACTIONS(5077), + [anon_sym_if] = ACTIONS(5077), + [anon_sym_else] = ACTIONS(5077), + [anon_sym_when] = ACTIONS(5077), + [anon_sym_try] = ACTIONS(5077), + [anon_sym_throw] = ACTIONS(5077), + [anon_sym_return] = ACTIONS(5077), + [anon_sym_continue] = ACTIONS(5077), + [anon_sym_break] = ACTIONS(5077), + [anon_sym_COLON_COLON] = ACTIONS(5079), + [anon_sym_PLUS_EQ] = ACTIONS(5079), + [anon_sym_DASH_EQ] = ACTIONS(5079), + [anon_sym_STAR_EQ] = ACTIONS(5079), + [anon_sym_SLASH_EQ] = ACTIONS(5079), + [anon_sym_PERCENT_EQ] = ACTIONS(5079), + [anon_sym_BANG_EQ] = ACTIONS(5077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5079), + [anon_sym_EQ_EQ] = ACTIONS(5077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5079), + [anon_sym_LT_EQ] = ACTIONS(5079), + [anon_sym_GT_EQ] = ACTIONS(5079), + [anon_sym_BANGin] = ACTIONS(5079), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_BANGis] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_as_QMARK] = ACTIONS(5079), + [anon_sym_PLUS_PLUS] = ACTIONS(5079), + [anon_sym_DASH_DASH] = ACTIONS(5079), + [anon_sym_BANG] = ACTIONS(5077), + [anon_sym_BANG_BANG] = ACTIONS(5079), + [anon_sym_data] = ACTIONS(5077), + [anon_sym_inner] = ACTIONS(5077), + [anon_sym_value] = ACTIONS(5077), + [anon_sym_expect] = ACTIONS(5077), + [anon_sym_actual] = ACTIONS(5077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5079), + [anon_sym_continue_AT] = ACTIONS(5079), + [anon_sym_break_AT] = ACTIONS(5079), + [anon_sym_this_AT] = ACTIONS(5079), + [anon_sym_super_AT] = ACTIONS(5079), + [sym_real_literal] = ACTIONS(5079), + [sym_integer_literal] = ACTIONS(5077), + [sym_hex_literal] = ACTIONS(5079), + [sym_bin_literal] = ACTIONS(5079), + [anon_sym_true] = ACTIONS(5077), + [anon_sym_false] = ACTIONS(5077), + [anon_sym_SQUOTE] = ACTIONS(5079), + [sym__backtick_identifier] = ACTIONS(5079), + [sym__automatic_semicolon] = ACTIONS(5079), + [sym_safe_nav] = ACTIONS(5079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5079), }, [3237] = { - [sym__alpha_identifier] = ACTIONS(5038), - [anon_sym_AT] = ACTIONS(5040), - [anon_sym_LBRACK] = ACTIONS(5040), - [anon_sym_as] = ACTIONS(5038), - [anon_sym_EQ] = ACTIONS(5053), - [anon_sym_fun] = ACTIONS(5038), - [anon_sym_LBRACE] = ACTIONS(5040), - [anon_sym_RBRACE] = ACTIONS(5040), - [anon_sym_LPAREN] = ACTIONS(5040), - [anon_sym_COMMA] = ACTIONS(5040), - [anon_sym_LT] = ACTIONS(5038), - [anon_sym_GT] = ACTIONS(5038), - [anon_sym_where] = ACTIONS(5038), - [anon_sym_object] = ACTIONS(5038), - [anon_sym_DOT] = ACTIONS(5038), - [anon_sym_SEMI] = ACTIONS(5040), - [anon_sym_get] = ACTIONS(5038), - [anon_sym_set] = ACTIONS(5038), - [anon_sym_this] = ACTIONS(5038), - [anon_sym_super] = ACTIONS(5038), - [anon_sym_STAR] = ACTIONS(5038), - [sym_label] = ACTIONS(5038), - [anon_sym_in] = ACTIONS(5038), - [anon_sym_DOT_DOT] = ACTIONS(5040), - [anon_sym_QMARK_COLON] = ACTIONS(5040), - [anon_sym_AMP_AMP] = ACTIONS(5040), - [anon_sym_PIPE_PIPE] = ACTIONS(5040), - [anon_sym_null] = ACTIONS(5038), - [anon_sym_if] = ACTIONS(5038), - [anon_sym_else] = ACTIONS(5038), - [anon_sym_when] = ACTIONS(5038), - [anon_sym_try] = ACTIONS(5038), - [anon_sym_throw] = ACTIONS(5038), - [anon_sym_return] = ACTIONS(5038), - [anon_sym_continue] = ACTIONS(5038), - [anon_sym_break] = ACTIONS(5038), - [anon_sym_COLON_COLON] = ACTIONS(6739), - [anon_sym_PLUS_EQ] = ACTIONS(5055), - [anon_sym_DASH_EQ] = ACTIONS(5055), - [anon_sym_STAR_EQ] = ACTIONS(5055), - [anon_sym_SLASH_EQ] = ACTIONS(5055), - [anon_sym_PERCENT_EQ] = ACTIONS(5055), - [anon_sym_BANG_EQ] = ACTIONS(5038), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5040), - [anon_sym_EQ_EQ] = ACTIONS(5038), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5040), - [anon_sym_LT_EQ] = ACTIONS(5040), - [anon_sym_GT_EQ] = ACTIONS(5040), - [anon_sym_BANGin] = ACTIONS(5040), - [anon_sym_is] = ACTIONS(5038), - [anon_sym_BANGis] = ACTIONS(5040), - [anon_sym_PLUS] = ACTIONS(5038), - [anon_sym_DASH] = ACTIONS(5038), - [anon_sym_SLASH] = ACTIONS(5038), - [anon_sym_PERCENT] = ACTIONS(5038), - [anon_sym_as_QMARK] = ACTIONS(5040), - [anon_sym_PLUS_PLUS] = ACTIONS(5040), - [anon_sym_DASH_DASH] = ACTIONS(5040), - [anon_sym_BANG] = ACTIONS(5038), - [anon_sym_BANG_BANG] = ACTIONS(5040), - [anon_sym_data] = ACTIONS(5038), - [anon_sym_inner] = ACTIONS(5038), - [anon_sym_value] = ACTIONS(5038), - [anon_sym_expect] = ACTIONS(5038), - [anon_sym_actual] = ACTIONS(5038), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5040), - [anon_sym_continue_AT] = ACTIONS(5040), - [anon_sym_break_AT] = ACTIONS(5040), - [anon_sym_this_AT] = ACTIONS(5040), - [anon_sym_super_AT] = ACTIONS(5040), - [sym_real_literal] = ACTIONS(5040), - [sym_integer_literal] = ACTIONS(5038), - [sym_hex_literal] = ACTIONS(5040), - [sym_bin_literal] = ACTIONS(5040), - [anon_sym_true] = ACTIONS(5038), - [anon_sym_false] = ACTIONS(5038), - [anon_sym_SQUOTE] = ACTIONS(5040), - [sym__backtick_identifier] = ACTIONS(5040), - [sym__automatic_semicolon] = ACTIONS(5040), - [sym_safe_nav] = ACTIONS(5040), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5040), + [sym__alpha_identifier] = ACTIONS(5187), + [anon_sym_AT] = ACTIONS(5189), + [anon_sym_LBRACK] = ACTIONS(5189), + [anon_sym_as] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5189), + [anon_sym_RBRACE] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5189), + [anon_sym_COMMA] = ACTIONS(5189), + [anon_sym_LT] = ACTIONS(5187), + [anon_sym_GT] = ACTIONS(5187), + [anon_sym_where] = ACTIONS(5187), + [anon_sym_object] = ACTIONS(5187), + [anon_sym_fun] = ACTIONS(5187), + [anon_sym_DOT] = ACTIONS(5187), + [anon_sym_SEMI] = ACTIONS(5189), + [anon_sym_get] = ACTIONS(5187), + [anon_sym_set] = ACTIONS(5187), + [anon_sym_this] = ACTIONS(5187), + [anon_sym_super] = ACTIONS(5187), + [anon_sym_STAR] = ACTIONS(5187), + [sym_label] = ACTIONS(5187), + [anon_sym_in] = ACTIONS(5187), + [anon_sym_DOT_DOT] = ACTIONS(5189), + [anon_sym_QMARK_COLON] = ACTIONS(5189), + [anon_sym_AMP_AMP] = ACTIONS(5189), + [anon_sym_PIPE_PIPE] = ACTIONS(5189), + [anon_sym_null] = ACTIONS(5187), + [anon_sym_if] = ACTIONS(5187), + [anon_sym_else] = ACTIONS(5187), + [anon_sym_when] = ACTIONS(5187), + [anon_sym_try] = ACTIONS(5187), + [anon_sym_throw] = ACTIONS(5187), + [anon_sym_return] = ACTIONS(5187), + [anon_sym_continue] = ACTIONS(5187), + [anon_sym_break] = ACTIONS(5187), + [anon_sym_COLON_COLON] = ACTIONS(5189), + [anon_sym_PLUS_EQ] = ACTIONS(5189), + [anon_sym_DASH_EQ] = ACTIONS(5189), + [anon_sym_STAR_EQ] = ACTIONS(5189), + [anon_sym_SLASH_EQ] = ACTIONS(5189), + [anon_sym_PERCENT_EQ] = ACTIONS(5189), + [anon_sym_BANG_EQ] = ACTIONS(5187), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5189), + [anon_sym_EQ_EQ] = ACTIONS(5187), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5189), + [anon_sym_LT_EQ] = ACTIONS(5189), + [anon_sym_GT_EQ] = ACTIONS(5189), + [anon_sym_BANGin] = ACTIONS(5189), + [anon_sym_is] = ACTIONS(5187), + [anon_sym_BANGis] = ACTIONS(5189), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5187), + [anon_sym_PERCENT] = ACTIONS(5187), + [anon_sym_as_QMARK] = ACTIONS(5189), + [anon_sym_PLUS_PLUS] = ACTIONS(5189), + [anon_sym_DASH_DASH] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5187), + [anon_sym_BANG_BANG] = ACTIONS(5189), + [anon_sym_data] = ACTIONS(5187), + [anon_sym_inner] = ACTIONS(5187), + [anon_sym_value] = ACTIONS(5187), + [anon_sym_expect] = ACTIONS(5187), + [anon_sym_actual] = ACTIONS(5187), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5189), + [anon_sym_continue_AT] = ACTIONS(5189), + [anon_sym_break_AT] = ACTIONS(5189), + [anon_sym_this_AT] = ACTIONS(5189), + [anon_sym_super_AT] = ACTIONS(5189), + [sym_real_literal] = ACTIONS(5189), + [sym_integer_literal] = ACTIONS(5187), + [sym_hex_literal] = ACTIONS(5189), + [sym_bin_literal] = ACTIONS(5189), + [anon_sym_true] = ACTIONS(5187), + [anon_sym_false] = ACTIONS(5187), + [anon_sym_SQUOTE] = ACTIONS(5189), + [sym__backtick_identifier] = ACTIONS(5189), + [sym__automatic_semicolon] = ACTIONS(5189), + [sym_safe_nav] = ACTIONS(5189), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5189), }, [3238] = { - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(4321), - [anon_sym_fun] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(4323), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_COMMA] = ACTIONS(4323), - [anon_sym_LT] = ACTIONS(4321), - [anon_sym_GT] = ACTIONS(4321), - [anon_sym_where] = ACTIONS(4321), - [anon_sym_object] = ACTIONS(4321), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_get] = ACTIONS(4321), - [anon_sym_set] = ACTIONS(4321), - [anon_sym_this] = ACTIONS(4321), - [anon_sym_super] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4321), - [anon_sym_in] = ACTIONS(4321), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_QMARK_COLON] = ACTIONS(4323), - [anon_sym_AMP_AMP] = ACTIONS(4323), - [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_null] = ACTIONS(4321), - [anon_sym_if] = ACTIONS(4321), - [anon_sym_else] = ACTIONS(4321), - [anon_sym_when] = ACTIONS(4321), - [anon_sym_try] = ACTIONS(4321), - [anon_sym_throw] = ACTIONS(4321), - [anon_sym_return] = ACTIONS(4321), - [anon_sym_continue] = ACTIONS(4321), - [anon_sym_break] = ACTIONS(4321), - [anon_sym_COLON_COLON] = ACTIONS(4323), - [anon_sym_PLUS_EQ] = ACTIONS(4323), - [anon_sym_DASH_EQ] = ACTIONS(4323), - [anon_sym_STAR_EQ] = ACTIONS(4323), - [anon_sym_SLASH_EQ] = ACTIONS(4323), - [anon_sym_PERCENT_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), - [anon_sym_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4323), - [anon_sym_BANGin] = ACTIONS(4323), - [anon_sym_is] = ACTIONS(4321), - [anon_sym_BANGis] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4321), - [anon_sym_as_QMARK] = ACTIONS(4323), - [anon_sym_PLUS_PLUS] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG] = ACTIONS(4321), - [anon_sym_BANG_BANG] = ACTIONS(4323), - [anon_sym_data] = ACTIONS(4321), - [anon_sym_inner] = ACTIONS(4321), - [anon_sym_value] = ACTIONS(4321), - [anon_sym_expect] = ACTIONS(4321), - [anon_sym_actual] = ACTIONS(4321), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4323), - [anon_sym_continue_AT] = ACTIONS(4323), - [anon_sym_break_AT] = ACTIONS(4323), - [anon_sym_this_AT] = ACTIONS(4323), - [anon_sym_super_AT] = ACTIONS(4323), - [sym_real_literal] = ACTIONS(4323), - [sym_integer_literal] = ACTIONS(4321), - [sym_hex_literal] = ACTIONS(4323), - [sym_bin_literal] = ACTIONS(4323), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [anon_sym_SQUOTE] = ACTIONS(4323), - [sym__backtick_identifier] = ACTIONS(4323), - [sym__automatic_semicolon] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4323), - }, - [3239] = { - [sym__alpha_identifier] = ACTIONS(1622), - [anon_sym_AT] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_fun] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_object] = ACTIONS(1622), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1622), - [anon_sym_set] = ACTIONS(1622), - [anon_sym_this] = ACTIONS(1622), - [anon_sym_super] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1622), - [sym_label] = ACTIONS(1622), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1622), - [anon_sym_if] = ACTIONS(1622), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_when] = ACTIONS(1622), - [anon_sym_try] = ACTIONS(1622), - [anon_sym_throw] = ACTIONS(1622), - [anon_sym_return] = ACTIONS(1622), - [anon_sym_continue] = ACTIONS(1622), - [anon_sym_break] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1620), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1622), - [anon_sym_DASH] = ACTIONS(1622), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_data] = ACTIONS(1622), - [anon_sym_inner] = ACTIONS(1622), - [anon_sym_value] = ACTIONS(1622), - [anon_sym_expect] = ACTIONS(1622), - [anon_sym_actual] = ACTIONS(1622), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1620), - [anon_sym_continue_AT] = ACTIONS(1620), - [anon_sym_break_AT] = ACTIONS(1620), - [anon_sym_this_AT] = ACTIONS(1620), - [anon_sym_super_AT] = ACTIONS(1620), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(1622), - [sym_hex_literal] = ACTIONS(1620), - [sym_bin_literal] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_SQUOTE] = ACTIONS(1620), - [sym__backtick_identifier] = ACTIONS(1620), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1620), - }, - [3240] = { - [sym__alpha_identifier] = ACTIONS(5161), - [anon_sym_AT] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5163), - [anon_sym_as] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_fun] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_RBRACE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5161), - [anon_sym_where] = ACTIONS(5161), - [anon_sym_object] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_get] = ACTIONS(5161), - [anon_sym_set] = ACTIONS(5161), - [anon_sym_this] = ACTIONS(5161), - [anon_sym_super] = ACTIONS(5161), - [anon_sym_STAR] = ACTIONS(5161), - [sym_label] = ACTIONS(5161), - [anon_sym_in] = ACTIONS(5161), - [anon_sym_DOT_DOT] = ACTIONS(5163), - [anon_sym_QMARK_COLON] = ACTIONS(5163), - [anon_sym_AMP_AMP] = ACTIONS(5163), - [anon_sym_PIPE_PIPE] = ACTIONS(5163), - [anon_sym_null] = ACTIONS(5161), - [anon_sym_if] = ACTIONS(5161), - [anon_sym_else] = ACTIONS(5161), - [anon_sym_when] = ACTIONS(5161), - [anon_sym_try] = ACTIONS(5161), - [anon_sym_throw] = ACTIONS(5161), - [anon_sym_return] = ACTIONS(5161), - [anon_sym_continue] = ACTIONS(5161), - [anon_sym_break] = ACTIONS(5161), - [anon_sym_COLON_COLON] = ACTIONS(5163), - [anon_sym_PLUS_EQ] = ACTIONS(5163), - [anon_sym_DASH_EQ] = ACTIONS(5163), - [anon_sym_STAR_EQ] = ACTIONS(5163), - [anon_sym_SLASH_EQ] = ACTIONS(5163), - [anon_sym_PERCENT_EQ] = ACTIONS(5163), - [anon_sym_BANG_EQ] = ACTIONS(5161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5163), - [anon_sym_EQ_EQ] = ACTIONS(5161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5163), - [anon_sym_LT_EQ] = ACTIONS(5163), - [anon_sym_GT_EQ] = ACTIONS(5163), - [anon_sym_BANGin] = ACTIONS(5163), - [anon_sym_is] = ACTIONS(5161), - [anon_sym_BANGis] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5161), - [anon_sym_PERCENT] = ACTIONS(5161), - [anon_sym_as_QMARK] = ACTIONS(5163), - [anon_sym_PLUS_PLUS] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5161), - [anon_sym_BANG_BANG] = ACTIONS(5163), - [anon_sym_data] = ACTIONS(5161), - [anon_sym_inner] = ACTIONS(5161), - [anon_sym_value] = ACTIONS(5161), - [anon_sym_expect] = ACTIONS(5161), - [anon_sym_actual] = ACTIONS(5161), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5163), - [anon_sym_continue_AT] = ACTIONS(5163), - [anon_sym_break_AT] = ACTIONS(5163), - [anon_sym_this_AT] = ACTIONS(5163), - [anon_sym_super_AT] = ACTIONS(5163), - [sym_real_literal] = ACTIONS(5163), - [sym_integer_literal] = ACTIONS(5161), - [sym_hex_literal] = ACTIONS(5163), - [sym_bin_literal] = ACTIONS(5163), - [anon_sym_true] = ACTIONS(5161), - [anon_sym_false] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5163), - [sym__backtick_identifier] = ACTIONS(5163), - [sym__automatic_semicolon] = ACTIONS(5163), - [sym_safe_nav] = ACTIONS(5163), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5163), - }, - [3241] = { - [sym__alpha_identifier] = ACTIONS(4906), - [anon_sym_AT] = ACTIONS(4908), - [anon_sym_LBRACK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_EQ] = ACTIONS(4906), - [anon_sym_fun] = ACTIONS(4906), - [anon_sym_LBRACE] = ACTIONS(4908), - [anon_sym_RBRACE] = ACTIONS(4908), - [anon_sym_LPAREN] = ACTIONS(4908), - [anon_sym_COMMA] = ACTIONS(4908), - [anon_sym_LT] = ACTIONS(4906), - [anon_sym_GT] = ACTIONS(4906), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_object] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4906), - [anon_sym_SEMI] = ACTIONS(4908), - [anon_sym_get] = ACTIONS(4906), - [anon_sym_set] = ACTIONS(4906), - [anon_sym_this] = ACTIONS(4906), - [anon_sym_super] = ACTIONS(4906), - [anon_sym_STAR] = ACTIONS(4906), - [sym_label] = ACTIONS(4906), - [anon_sym_in] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4908), - [anon_sym_QMARK_COLON] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_PIPE_PIPE] = ACTIONS(4908), - [anon_sym_null] = ACTIONS(4906), - [anon_sym_if] = ACTIONS(4906), - [anon_sym_else] = ACTIONS(4906), - [anon_sym_when] = ACTIONS(4906), - [anon_sym_try] = ACTIONS(4906), - [anon_sym_throw] = ACTIONS(4906), - [anon_sym_return] = ACTIONS(4906), - [anon_sym_continue] = ACTIONS(4906), - [anon_sym_break] = ACTIONS(4906), - [anon_sym_COLON_COLON] = ACTIONS(4908), - [anon_sym_PLUS_EQ] = ACTIONS(4908), - [anon_sym_DASH_EQ] = ACTIONS(4908), - [anon_sym_STAR_EQ] = ACTIONS(4908), - [anon_sym_SLASH_EQ] = ACTIONS(4908), - [anon_sym_PERCENT_EQ] = ACTIONS(4908), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4908), - [anon_sym_LT_EQ] = ACTIONS(4908), - [anon_sym_GT_EQ] = ACTIONS(4908), - [anon_sym_BANGin] = ACTIONS(4908), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_BANGis] = ACTIONS(4908), - [anon_sym_PLUS] = ACTIONS(4906), - [anon_sym_DASH] = ACTIONS(4906), - [anon_sym_SLASH] = ACTIONS(4906), - [anon_sym_PERCENT] = ACTIONS(4906), - [anon_sym_as_QMARK] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4908), - [anon_sym_DASH_DASH] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4906), - [anon_sym_BANG_BANG] = ACTIONS(4908), - [anon_sym_data] = ACTIONS(4906), - [anon_sym_inner] = ACTIONS(4906), - [anon_sym_value] = ACTIONS(4906), - [anon_sym_expect] = ACTIONS(4906), - [anon_sym_actual] = ACTIONS(4906), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4908), - [anon_sym_continue_AT] = ACTIONS(4908), - [anon_sym_break_AT] = ACTIONS(4908), - [anon_sym_this_AT] = ACTIONS(4908), - [anon_sym_super_AT] = ACTIONS(4908), - [sym_real_literal] = ACTIONS(4908), - [sym_integer_literal] = ACTIONS(4906), - [sym_hex_literal] = ACTIONS(4908), - [sym_bin_literal] = ACTIONS(4908), - [anon_sym_true] = ACTIONS(4906), - [anon_sym_false] = ACTIONS(4906), - [anon_sym_SQUOTE] = ACTIONS(4908), - [sym__backtick_identifier] = ACTIONS(4908), - [sym__automatic_semicolon] = ACTIONS(4908), - [sym_safe_nav] = ACTIONS(4908), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4908), - }, - [3242] = { - [sym__alpha_identifier] = ACTIONS(4473), - [anon_sym_AT] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4475), - [anon_sym_RBRACK] = ACTIONS(4475), - [anon_sym_as] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_constructor] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4475), - [anon_sym_RBRACE] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4475), - [anon_sym_COMMA] = ACTIONS(4475), - [anon_sym_RPAREN] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4473), - [anon_sym_GT] = ACTIONS(4473), - [anon_sym_where] = ACTIONS(4473), - [anon_sym_DOT] = ACTIONS(4473), - [anon_sym_SEMI] = ACTIONS(4475), - [anon_sym_get] = ACTIONS(4473), - [anon_sym_set] = ACTIONS(4473), - [anon_sym_STAR] = ACTIONS(4473), - [anon_sym_DASH_GT] = ACTIONS(4475), - [sym_label] = ACTIONS(4475), - [anon_sym_in] = ACTIONS(4473), - [anon_sym_while] = ACTIONS(4473), - [anon_sym_DOT_DOT] = ACTIONS(4475), - [anon_sym_QMARK_COLON] = ACTIONS(4475), - [anon_sym_AMP_AMP] = ACTIONS(4475), - [anon_sym_PIPE_PIPE] = ACTIONS(4475), - [anon_sym_else] = ACTIONS(4473), - [anon_sym_COLON_COLON] = ACTIONS(4475), - [anon_sym_PLUS_EQ] = ACTIONS(4475), - [anon_sym_DASH_EQ] = ACTIONS(4475), - [anon_sym_STAR_EQ] = ACTIONS(4475), - [anon_sym_SLASH_EQ] = ACTIONS(4475), - [anon_sym_PERCENT_EQ] = ACTIONS(4475), - [anon_sym_BANG_EQ] = ACTIONS(4473), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4475), - [anon_sym_EQ_EQ] = ACTIONS(4473), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4475), - [anon_sym_LT_EQ] = ACTIONS(4475), - [anon_sym_GT_EQ] = ACTIONS(4475), - [anon_sym_BANGin] = ACTIONS(4475), - [anon_sym_is] = ACTIONS(4473), - [anon_sym_BANGis] = ACTIONS(4475), - [anon_sym_PLUS] = ACTIONS(4473), - [anon_sym_DASH] = ACTIONS(4473), - [anon_sym_SLASH] = ACTIONS(4473), - [anon_sym_PERCENT] = ACTIONS(4473), - [anon_sym_as_QMARK] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_BANG_BANG] = ACTIONS(4475), - [anon_sym_suspend] = ACTIONS(4473), - [anon_sym_sealed] = ACTIONS(4473), - [anon_sym_annotation] = ACTIONS(4473), - [anon_sym_data] = ACTIONS(4473), - [anon_sym_inner] = ACTIONS(4473), - [anon_sym_value] = ACTIONS(4473), - [anon_sym_override] = ACTIONS(4473), - [anon_sym_lateinit] = ACTIONS(4473), - [anon_sym_public] = ACTIONS(4473), - [anon_sym_private] = ACTIONS(4473), - [anon_sym_internal] = ACTIONS(4473), - [anon_sym_protected] = ACTIONS(4473), - [anon_sym_tailrec] = ACTIONS(4473), - [anon_sym_operator] = ACTIONS(4473), - [anon_sym_infix] = ACTIONS(4473), - [anon_sym_inline] = ACTIONS(4473), - [anon_sym_external] = ACTIONS(4473), - [sym_property_modifier] = ACTIONS(4473), - [anon_sym_abstract] = ACTIONS(4473), - [anon_sym_final] = ACTIONS(4473), - [anon_sym_open] = ACTIONS(4473), - [anon_sym_vararg] = ACTIONS(4473), - [anon_sym_noinline] = ACTIONS(4473), - [anon_sym_crossinline] = ACTIONS(4473), - [anon_sym_expect] = ACTIONS(4473), - [anon_sym_actual] = ACTIONS(4473), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4475), - [sym_safe_nav] = ACTIONS(4475), - [sym_multiline_comment] = ACTIONS(3), - }, - [3243] = { - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_object] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_this] = ACTIONS(4530), - [anon_sym_super] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_null] = ACTIONS(4530), - [anon_sym_if] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_when] = ACTIONS(4530), - [anon_sym_try] = ACTIONS(4530), - [anon_sym_throw] = ACTIONS(4530), - [anon_sym_return] = ACTIONS(4530), - [anon_sym_continue] = ACTIONS(4530), - [anon_sym_break] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4532), - [anon_sym_continue_AT] = ACTIONS(4532), - [anon_sym_break_AT] = ACTIONS(4532), - [anon_sym_this_AT] = ACTIONS(4532), - [anon_sym_super_AT] = ACTIONS(4532), - [sym_real_literal] = ACTIONS(4532), - [sym_integer_literal] = ACTIONS(4530), - [sym_hex_literal] = ACTIONS(4532), - [sym_bin_literal] = ACTIONS(4532), - [anon_sym_true] = ACTIONS(4530), - [anon_sym_false] = ACTIONS(4530), - [anon_sym_SQUOTE] = ACTIONS(4532), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4532), - }, - [3244] = { - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_fun] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_super] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_when] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_data] = ACTIONS(3344), - [anon_sym_inner] = ACTIONS(3344), - [anon_sym_value] = ACTIONS(3344), - [anon_sym_expect] = ACTIONS(3344), - [anon_sym_actual] = ACTIONS(3344), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3346), - [anon_sym_continue_AT] = ACTIONS(3346), - [anon_sym_break_AT] = ACTIONS(3346), - [anon_sym_this_AT] = ACTIONS(3346), - [anon_sym_super_AT] = ACTIONS(3346), - [sym_real_literal] = ACTIONS(3346), - [sym_integer_literal] = ACTIONS(3344), - [sym_hex_literal] = ACTIONS(3346), - [sym_bin_literal] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3346), - }, - [3245] = { - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(4530), - [anon_sym_fun] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4532), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_where] = ACTIONS(4530), - [anon_sym_object] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_this] = ACTIONS(4530), - [anon_sym_super] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_null] = ACTIONS(4530), - [anon_sym_if] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_when] = ACTIONS(4530), - [anon_sym_try] = ACTIONS(4530), - [anon_sym_throw] = ACTIONS(4530), - [anon_sym_return] = ACTIONS(4530), - [anon_sym_continue] = ACTIONS(4530), - [anon_sym_break] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4532), - [anon_sym_continue_AT] = ACTIONS(4532), - [anon_sym_break_AT] = ACTIONS(4532), - [anon_sym_this_AT] = ACTIONS(4532), - [anon_sym_super_AT] = ACTIONS(4532), - [sym_real_literal] = ACTIONS(4532), - [sym_integer_literal] = ACTIONS(4530), - [sym_hex_literal] = ACTIONS(4532), - [sym_bin_literal] = ACTIONS(4532), - [anon_sym_true] = ACTIONS(4530), - [anon_sym_false] = ACTIONS(4530), - [anon_sym_SQUOTE] = ACTIONS(4532), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4532), - }, - [3246] = { - [sym__alpha_identifier] = ACTIONS(4311), - [anon_sym_AT] = ACTIONS(4313), - [anon_sym_LBRACK] = ACTIONS(4313), - [anon_sym_RBRACK] = ACTIONS(4313), - [anon_sym_as] = ACTIONS(4311), - [anon_sym_EQ] = ACTIONS(4311), - [anon_sym_LBRACE] = ACTIONS(4313), - [anon_sym_RBRACE] = ACTIONS(4313), - [anon_sym_LPAREN] = ACTIONS(4313), - [anon_sym_COMMA] = ACTIONS(4313), - [anon_sym_RPAREN] = ACTIONS(4313), - [anon_sym_by] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_where] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4311), - [anon_sym_SEMI] = ACTIONS(4313), - [anon_sym_get] = ACTIONS(4311), - [anon_sym_set] = ACTIONS(4311), - [sym__quest] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_DASH_GT] = ACTIONS(4315), - [sym_label] = ACTIONS(4313), - [anon_sym_in] = ACTIONS(4311), - [anon_sym_while] = ACTIONS(4311), - [anon_sym_DOT_DOT] = ACTIONS(4313), - [anon_sym_QMARK_COLON] = ACTIONS(4313), - [anon_sym_AMP_AMP] = ACTIONS(4313), - [anon_sym_PIPE_PIPE] = ACTIONS(4313), - [anon_sym_else] = ACTIONS(4311), - [anon_sym_COLON_COLON] = ACTIONS(4313), - [anon_sym_PLUS_EQ] = ACTIONS(4313), - [anon_sym_DASH_EQ] = ACTIONS(4313), - [anon_sym_STAR_EQ] = ACTIONS(4313), - [anon_sym_SLASH_EQ] = ACTIONS(4313), - [anon_sym_PERCENT_EQ] = ACTIONS(4313), - [anon_sym_BANG_EQ] = ACTIONS(4311), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), - [anon_sym_EQ_EQ] = ACTIONS(4311), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), - [anon_sym_LT_EQ] = ACTIONS(4313), - [anon_sym_GT_EQ] = ACTIONS(4313), - [anon_sym_BANGin] = ACTIONS(4313), - [anon_sym_is] = ACTIONS(4311), - [anon_sym_BANGis] = ACTIONS(4313), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_PERCENT] = ACTIONS(4311), - [anon_sym_as_QMARK] = ACTIONS(4313), - [anon_sym_PLUS_PLUS] = ACTIONS(4313), - [anon_sym_DASH_DASH] = ACTIONS(4313), - [anon_sym_BANG_BANG] = ACTIONS(4313), - [anon_sym_suspend] = ACTIONS(4311), - [anon_sym_sealed] = ACTIONS(4311), - [anon_sym_annotation] = ACTIONS(4311), - [anon_sym_data] = ACTIONS(4311), - [anon_sym_inner] = ACTIONS(4311), - [anon_sym_value] = ACTIONS(4311), - [anon_sym_override] = ACTIONS(4311), - [anon_sym_lateinit] = ACTIONS(4311), - [anon_sym_public] = ACTIONS(4311), - [anon_sym_private] = ACTIONS(4311), - [anon_sym_internal] = ACTIONS(4311), - [anon_sym_protected] = ACTIONS(4311), - [anon_sym_tailrec] = ACTIONS(4311), - [anon_sym_operator] = ACTIONS(4311), - [anon_sym_infix] = ACTIONS(4311), - [anon_sym_inline] = ACTIONS(4311), - [anon_sym_external] = ACTIONS(4311), - [sym_property_modifier] = ACTIONS(4311), - [anon_sym_abstract] = ACTIONS(4311), - [anon_sym_final] = ACTIONS(4311), - [anon_sym_open] = ACTIONS(4311), - [anon_sym_vararg] = ACTIONS(4311), - [anon_sym_noinline] = ACTIONS(4311), - [anon_sym_crossinline] = ACTIONS(4311), - [anon_sym_expect] = ACTIONS(4311), - [anon_sym_actual] = ACTIONS(4311), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4313), - [sym_safe_nav] = ACTIONS(4313), - [sym_multiline_comment] = ACTIONS(3), - }, - [3247] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_COMMA] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_object] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(6762), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_this] = ACTIONS(4926), - [anon_sym_super] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_if] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(6737), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4926), - [anon_sym_throw] = ACTIONS(4926), - [anon_sym_return] = ACTIONS(4926), - [anon_sym_continue] = ACTIONS(4926), - [anon_sym_break] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_PLUS_EQ] = ACTIONS(4928), - [anon_sym_DASH_EQ] = ACTIONS(4928), - [anon_sym_STAR_EQ] = ACTIONS(4928), - [anon_sym_SLASH_EQ] = ACTIONS(4928), - [anon_sym_PERCENT_EQ] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4928), - [anon_sym_continue_AT] = ACTIONS(4928), - [anon_sym_break_AT] = ACTIONS(4928), - [anon_sym_this_AT] = ACTIONS(4928), - [anon_sym_super_AT] = ACTIONS(4928), - [sym_real_literal] = ACTIONS(4928), - [sym_integer_literal] = ACTIONS(4926), - [sym_hex_literal] = ACTIONS(4928), - [sym_bin_literal] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [anon_sym_SQUOTE] = ACTIONS(4928), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), - }, - [3248] = { - [sym__alpha_identifier] = ACTIONS(5049), - [anon_sym_AT] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_as] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5049), - [anon_sym_fun] = ACTIONS(5049), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(6764), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_where] = ACTIONS(5049), - [anon_sym_object] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_get] = ACTIONS(5049), - [anon_sym_set] = ACTIONS(5049), - [anon_sym_this] = ACTIONS(5049), - [anon_sym_super] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [sym_label] = ACTIONS(5049), - [anon_sym_in] = ACTIONS(5049), - [anon_sym_DOT_DOT] = ACTIONS(5051), - [anon_sym_QMARK_COLON] = ACTIONS(5051), - [anon_sym_AMP_AMP] = ACTIONS(5051), - [anon_sym_PIPE_PIPE] = ACTIONS(5051), - [anon_sym_null] = ACTIONS(5049), - [anon_sym_if] = ACTIONS(5049), - [anon_sym_else] = ACTIONS(5049), - [anon_sym_when] = ACTIONS(5049), - [anon_sym_try] = ACTIONS(5049), - [anon_sym_throw] = ACTIONS(5049), - [anon_sym_return] = ACTIONS(5049), - [anon_sym_continue] = ACTIONS(5049), - [anon_sym_break] = ACTIONS(5049), - [anon_sym_COLON_COLON] = ACTIONS(5051), - [anon_sym_PLUS_EQ] = ACTIONS(5051), - [anon_sym_DASH_EQ] = ACTIONS(5051), - [anon_sym_STAR_EQ] = ACTIONS(5051), - [anon_sym_SLASH_EQ] = ACTIONS(5051), - [anon_sym_PERCENT_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), - [anon_sym_LT_EQ] = ACTIONS(5051), - [anon_sym_GT_EQ] = ACTIONS(5051), - [anon_sym_BANGin] = ACTIONS(5051), - [anon_sym_is] = ACTIONS(5049), - [anon_sym_BANGis] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5049), - [anon_sym_as_QMARK] = ACTIONS(5051), - [anon_sym_PLUS_PLUS] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_BANG_BANG] = ACTIONS(5051), - [anon_sym_data] = ACTIONS(5049), - [anon_sym_inner] = ACTIONS(5049), - [anon_sym_value] = ACTIONS(5049), - [anon_sym_expect] = ACTIONS(5049), - [anon_sym_actual] = ACTIONS(5049), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5051), - [anon_sym_continue_AT] = ACTIONS(5051), - [anon_sym_break_AT] = ACTIONS(5051), - [anon_sym_this_AT] = ACTIONS(5051), - [anon_sym_super_AT] = ACTIONS(5051), - [sym_real_literal] = ACTIONS(5051), - [sym_integer_literal] = ACTIONS(5049), - [sym_hex_literal] = ACTIONS(5051), - [sym_bin_literal] = ACTIONS(5051), - [anon_sym_true] = ACTIONS(5049), - [anon_sym_false] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5051), - [sym__backtick_identifier] = ACTIONS(5051), - [sym__automatic_semicolon] = ACTIONS(5051), - [sym_safe_nav] = ACTIONS(5051), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5051), - }, - [3249] = { - [sym__alpha_identifier] = ACTIONS(5075), - [anon_sym_AT] = ACTIONS(5077), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_as] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_fun] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5077), - [anon_sym_RBRACE] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5077), - [anon_sym_COMMA] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_where] = ACTIONS(5075), - [anon_sym_object] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_get] = ACTIONS(5075), - [anon_sym_set] = ACTIONS(5075), - [anon_sym_this] = ACTIONS(5075), - [anon_sym_super] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [sym_label] = ACTIONS(5075), - [anon_sym_in] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5077), - [anon_sym_QMARK_COLON] = ACTIONS(5077), - [anon_sym_AMP_AMP] = ACTIONS(5077), - [anon_sym_PIPE_PIPE] = ACTIONS(5077), - [anon_sym_null] = ACTIONS(5075), - [anon_sym_if] = ACTIONS(5075), - [anon_sym_else] = ACTIONS(5075), - [anon_sym_when] = ACTIONS(5075), - [anon_sym_try] = ACTIONS(5075), - [anon_sym_throw] = ACTIONS(5075), - [anon_sym_return] = ACTIONS(5075), - [anon_sym_continue] = ACTIONS(5075), - [anon_sym_break] = ACTIONS(5075), - [anon_sym_COLON_COLON] = ACTIONS(5077), - [anon_sym_PLUS_EQ] = ACTIONS(5077), - [anon_sym_DASH_EQ] = ACTIONS(5077), - [anon_sym_STAR_EQ] = ACTIONS(5077), - [anon_sym_SLASH_EQ] = ACTIONS(5077), - [anon_sym_PERCENT_EQ] = ACTIONS(5077), - [anon_sym_BANG_EQ] = ACTIONS(5075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5077), - [anon_sym_EQ_EQ] = ACTIONS(5075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5077), - [anon_sym_LT_EQ] = ACTIONS(5077), - [anon_sym_GT_EQ] = ACTIONS(5077), - [anon_sym_BANGin] = ACTIONS(5077), - [anon_sym_is] = ACTIONS(5075), - [anon_sym_BANGis] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_as_QMARK] = ACTIONS(5077), - [anon_sym_PLUS_PLUS] = ACTIONS(5077), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_BANG_BANG] = ACTIONS(5077), - [anon_sym_data] = ACTIONS(5075), - [anon_sym_inner] = ACTIONS(5075), - [anon_sym_value] = ACTIONS(5075), - [anon_sym_expect] = ACTIONS(5075), - [anon_sym_actual] = ACTIONS(5075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5077), - [anon_sym_continue_AT] = ACTIONS(5077), - [anon_sym_break_AT] = ACTIONS(5077), - [anon_sym_this_AT] = ACTIONS(5077), - [anon_sym_super_AT] = ACTIONS(5077), - [sym_real_literal] = ACTIONS(5077), - [sym_integer_literal] = ACTIONS(5075), - [sym_hex_literal] = ACTIONS(5077), - [sym_bin_literal] = ACTIONS(5077), - [anon_sym_true] = ACTIONS(5075), - [anon_sym_false] = ACTIONS(5075), - [anon_sym_SQUOTE] = ACTIONS(5077), - [sym__backtick_identifier] = ACTIONS(5077), - [sym__automatic_semicolon] = ACTIONS(5077), - [sym_safe_nav] = ACTIONS(5077), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5077), - }, - [3250] = { - [sym__alpha_identifier] = ACTIONS(5239), - [anon_sym_AT] = ACTIONS(5241), - [anon_sym_LBRACK] = ACTIONS(5241), - [anon_sym_as] = ACTIONS(5239), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_fun] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5241), - [anon_sym_RBRACE] = ACTIONS(5241), - [anon_sym_LPAREN] = ACTIONS(5241), - [anon_sym_COMMA] = ACTIONS(5241), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_where] = ACTIONS(5239), - [anon_sym_object] = ACTIONS(5239), - [anon_sym_DOT] = ACTIONS(5239), - [anon_sym_SEMI] = ACTIONS(5241), - [anon_sym_get] = ACTIONS(5239), - [anon_sym_set] = ACTIONS(5239), - [anon_sym_this] = ACTIONS(5239), - [anon_sym_super] = ACTIONS(5239), - [anon_sym_STAR] = ACTIONS(5239), - [sym_label] = ACTIONS(5239), - [anon_sym_in] = ACTIONS(5239), - [anon_sym_DOT_DOT] = ACTIONS(5241), - [anon_sym_QMARK_COLON] = ACTIONS(5241), - [anon_sym_AMP_AMP] = ACTIONS(5241), - [anon_sym_PIPE_PIPE] = ACTIONS(5241), - [anon_sym_null] = ACTIONS(5239), - [anon_sym_if] = ACTIONS(5239), - [anon_sym_else] = ACTIONS(5239), - [anon_sym_when] = ACTIONS(5239), - [anon_sym_try] = ACTIONS(5239), - [anon_sym_throw] = ACTIONS(5239), - [anon_sym_return] = ACTIONS(5239), - [anon_sym_continue] = ACTIONS(5239), - [anon_sym_break] = ACTIONS(5239), - [anon_sym_COLON_COLON] = ACTIONS(5241), - [anon_sym_PLUS_EQ] = ACTIONS(5241), - [anon_sym_DASH_EQ] = ACTIONS(5241), - [anon_sym_STAR_EQ] = ACTIONS(5241), - [anon_sym_SLASH_EQ] = ACTIONS(5241), - [anon_sym_PERCENT_EQ] = ACTIONS(5241), - [anon_sym_BANG_EQ] = ACTIONS(5239), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5241), - [anon_sym_EQ_EQ] = ACTIONS(5239), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5241), - [anon_sym_LT_EQ] = ACTIONS(5241), - [anon_sym_GT_EQ] = ACTIONS(5241), - [anon_sym_BANGin] = ACTIONS(5241), - [anon_sym_is] = ACTIONS(5239), - [anon_sym_BANGis] = ACTIONS(5241), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_PERCENT] = ACTIONS(5239), - [anon_sym_as_QMARK] = ACTIONS(5241), - [anon_sym_PLUS_PLUS] = ACTIONS(5241), - [anon_sym_DASH_DASH] = ACTIONS(5241), - [anon_sym_BANG] = ACTIONS(5239), - [anon_sym_BANG_BANG] = ACTIONS(5241), - [anon_sym_data] = ACTIONS(5239), - [anon_sym_inner] = ACTIONS(5239), - [anon_sym_value] = ACTIONS(5239), - [anon_sym_expect] = ACTIONS(5239), - [anon_sym_actual] = ACTIONS(5239), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5241), - [anon_sym_continue_AT] = ACTIONS(5241), - [anon_sym_break_AT] = ACTIONS(5241), - [anon_sym_this_AT] = ACTIONS(5241), - [anon_sym_super_AT] = ACTIONS(5241), - [sym_real_literal] = ACTIONS(5241), - [sym_integer_literal] = ACTIONS(5239), - [sym_hex_literal] = ACTIONS(5241), - [sym_bin_literal] = ACTIONS(5241), - [anon_sym_true] = ACTIONS(5239), - [anon_sym_false] = ACTIONS(5239), - [anon_sym_SQUOTE] = ACTIONS(5241), - [sym__backtick_identifier] = ACTIONS(5241), - [sym__automatic_semicolon] = ACTIONS(5241), - [sym_safe_nav] = ACTIONS(5241), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5241), - }, - [3251] = { - [sym__alpha_identifier] = ACTIONS(5099), - [anon_sym_AT] = ACTIONS(5101), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_as] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_fun] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5101), - [anon_sym_RBRACE] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5101), - [anon_sym_COMMA] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5099), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_where] = ACTIONS(5099), - [anon_sym_object] = ACTIONS(5099), - [anon_sym_DOT] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5101), - [anon_sym_get] = ACTIONS(5099), - [anon_sym_set] = ACTIONS(5099), - [anon_sym_this] = ACTIONS(5099), - [anon_sym_super] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [sym_label] = ACTIONS(5099), - [anon_sym_in] = ACTIONS(5099), - [anon_sym_DOT_DOT] = ACTIONS(5101), - [anon_sym_QMARK_COLON] = ACTIONS(5101), - [anon_sym_AMP_AMP] = ACTIONS(5101), - [anon_sym_PIPE_PIPE] = ACTIONS(5101), - [anon_sym_null] = ACTIONS(5099), - [anon_sym_if] = ACTIONS(5099), - [anon_sym_else] = ACTIONS(5099), - [anon_sym_when] = ACTIONS(5099), - [anon_sym_try] = ACTIONS(5099), - [anon_sym_throw] = ACTIONS(5099), - [anon_sym_return] = ACTIONS(5099), - [anon_sym_continue] = ACTIONS(5099), - [anon_sym_break] = ACTIONS(5099), - [anon_sym_COLON_COLON] = ACTIONS(5101), - [anon_sym_PLUS_EQ] = ACTIONS(5101), - [anon_sym_DASH_EQ] = ACTIONS(5101), - [anon_sym_STAR_EQ] = ACTIONS(5101), - [anon_sym_SLASH_EQ] = ACTIONS(5101), - [anon_sym_PERCENT_EQ] = ACTIONS(5101), - [anon_sym_BANG_EQ] = ACTIONS(5099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5101), - [anon_sym_EQ_EQ] = ACTIONS(5099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5101), - [anon_sym_LT_EQ] = ACTIONS(5101), - [anon_sym_GT_EQ] = ACTIONS(5101), - [anon_sym_BANGin] = ACTIONS(5101), - [anon_sym_is] = ACTIONS(5099), - [anon_sym_BANGis] = ACTIONS(5101), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5099), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_as_QMARK] = ACTIONS(5101), - [anon_sym_PLUS_PLUS] = ACTIONS(5101), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5099), - [anon_sym_BANG_BANG] = ACTIONS(5101), - [anon_sym_data] = ACTIONS(5099), - [anon_sym_inner] = ACTIONS(5099), - [anon_sym_value] = ACTIONS(5099), - [anon_sym_expect] = ACTIONS(5099), - [anon_sym_actual] = ACTIONS(5099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5101), - [anon_sym_continue_AT] = ACTIONS(5101), - [anon_sym_break_AT] = ACTIONS(5101), - [anon_sym_this_AT] = ACTIONS(5101), - [anon_sym_super_AT] = ACTIONS(5101), - [sym_real_literal] = ACTIONS(5101), - [sym_integer_literal] = ACTIONS(5099), - [sym_hex_literal] = ACTIONS(5101), - [sym_bin_literal] = ACTIONS(5101), - [anon_sym_true] = ACTIONS(5099), - [anon_sym_false] = ACTIONS(5099), - [anon_sym_SQUOTE] = ACTIONS(5101), - [sym__backtick_identifier] = ACTIONS(5101), - [sym__automatic_semicolon] = ACTIONS(5101), - [sym_safe_nav] = ACTIONS(5101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5101), - }, - [3252] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), - }, - [3253] = { - [sym__alpha_identifier] = ACTIONS(5243), - [anon_sym_AT] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_as] = ACTIONS(5243), - [anon_sym_EQ] = ACTIONS(5243), - [anon_sym_fun] = ACTIONS(5243), - [anon_sym_LBRACE] = ACTIONS(5245), - [anon_sym_RBRACE] = ACTIONS(5245), - [anon_sym_LPAREN] = ACTIONS(5245), - [anon_sym_COMMA] = ACTIONS(5245), - [anon_sym_LT] = ACTIONS(5243), - [anon_sym_GT] = ACTIONS(5243), - [anon_sym_where] = ACTIONS(5243), - [anon_sym_object] = ACTIONS(5243), - [anon_sym_DOT] = ACTIONS(5243), - [anon_sym_SEMI] = ACTIONS(5245), - [anon_sym_get] = ACTIONS(5243), - [anon_sym_set] = ACTIONS(5243), - [anon_sym_this] = ACTIONS(5243), - [anon_sym_super] = ACTIONS(5243), - [anon_sym_STAR] = ACTIONS(5243), - [sym_label] = ACTIONS(5243), - [anon_sym_in] = ACTIONS(5243), - [anon_sym_DOT_DOT] = ACTIONS(5245), - [anon_sym_QMARK_COLON] = ACTIONS(5245), - [anon_sym_AMP_AMP] = ACTIONS(5245), - [anon_sym_PIPE_PIPE] = ACTIONS(5245), - [anon_sym_null] = ACTIONS(5243), - [anon_sym_if] = ACTIONS(5243), - [anon_sym_else] = ACTIONS(5243), - [anon_sym_when] = ACTIONS(5243), - [anon_sym_try] = ACTIONS(5243), - [anon_sym_throw] = ACTIONS(5243), - [anon_sym_return] = ACTIONS(5243), - [anon_sym_continue] = ACTIONS(5243), - [anon_sym_break] = ACTIONS(5243), - [anon_sym_COLON_COLON] = ACTIONS(5245), - [anon_sym_PLUS_EQ] = ACTIONS(5245), - [anon_sym_DASH_EQ] = ACTIONS(5245), - [anon_sym_STAR_EQ] = ACTIONS(5245), - [anon_sym_SLASH_EQ] = ACTIONS(5245), - [anon_sym_PERCENT_EQ] = ACTIONS(5245), - [anon_sym_BANG_EQ] = ACTIONS(5243), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5245), - [anon_sym_EQ_EQ] = ACTIONS(5243), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5245), - [anon_sym_LT_EQ] = ACTIONS(5245), - [anon_sym_GT_EQ] = ACTIONS(5245), - [anon_sym_BANGin] = ACTIONS(5245), - [anon_sym_is] = ACTIONS(5243), - [anon_sym_BANGis] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5243), - [anon_sym_DASH] = ACTIONS(5243), - [anon_sym_SLASH] = ACTIONS(5243), - [anon_sym_PERCENT] = ACTIONS(5243), - [anon_sym_as_QMARK] = ACTIONS(5245), - [anon_sym_PLUS_PLUS] = ACTIONS(5245), - [anon_sym_DASH_DASH] = ACTIONS(5245), - [anon_sym_BANG] = ACTIONS(5243), - [anon_sym_BANG_BANG] = ACTIONS(5245), - [anon_sym_data] = ACTIONS(5243), - [anon_sym_inner] = ACTIONS(5243), - [anon_sym_value] = ACTIONS(5243), - [anon_sym_expect] = ACTIONS(5243), - [anon_sym_actual] = ACTIONS(5243), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5245), - [anon_sym_continue_AT] = ACTIONS(5245), - [anon_sym_break_AT] = ACTIONS(5245), - [anon_sym_this_AT] = ACTIONS(5245), - [anon_sym_super_AT] = ACTIONS(5245), - [sym_real_literal] = ACTIONS(5245), - [sym_integer_literal] = ACTIONS(5243), - [sym_hex_literal] = ACTIONS(5245), - [sym_bin_literal] = ACTIONS(5245), - [anon_sym_true] = ACTIONS(5243), - [anon_sym_false] = ACTIONS(5243), - [anon_sym_SQUOTE] = ACTIONS(5245), - [sym__backtick_identifier] = ACTIONS(5245), - [sym__automatic_semicolon] = ACTIONS(5245), - [sym_safe_nav] = ACTIONS(5245), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5245), - }, - [3254] = { - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(4518), - [anon_sym_fun] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(4520), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_COMMA] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_where] = ACTIONS(4518), - [anon_sym_object] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_this] = ACTIONS(4518), - [anon_sym_super] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4518), - [sym_label] = ACTIONS(4518), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_null] = ACTIONS(4518), - [anon_sym_if] = ACTIONS(4518), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_when] = ACTIONS(4518), - [anon_sym_try] = ACTIONS(4518), - [anon_sym_throw] = ACTIONS(4518), - [anon_sym_return] = ACTIONS(4518), - [anon_sym_continue] = ACTIONS(4518), - [anon_sym_break] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_PLUS_EQ] = ACTIONS(4520), - [anon_sym_DASH_EQ] = ACTIONS(4520), - [anon_sym_STAR_EQ] = ACTIONS(4520), - [anon_sym_SLASH_EQ] = ACTIONS(4520), - [anon_sym_PERCENT_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4518), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4518), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4520), - [anon_sym_continue_AT] = ACTIONS(4520), - [anon_sym_break_AT] = ACTIONS(4520), - [anon_sym_this_AT] = ACTIONS(4520), - [anon_sym_super_AT] = ACTIONS(4520), - [sym_real_literal] = ACTIONS(4520), - [sym_integer_literal] = ACTIONS(4518), - [sym_hex_literal] = ACTIONS(4520), - [sym_bin_literal] = ACTIONS(4520), - [anon_sym_true] = ACTIONS(4518), - [anon_sym_false] = ACTIONS(4518), - [anon_sym_SQUOTE] = ACTIONS(4520), - [sym__backtick_identifier] = ACTIONS(4520), - [sym__automatic_semicolon] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4520), - }, - [3255] = { - [sym_class_body] = STATE(3294), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(6766), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), - }, - [3256] = { - [sym_function_body] = STATE(3273), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_object] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_this] = ACTIONS(4518), - [anon_sym_super] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4518), - [sym_label] = ACTIONS(4518), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_null] = ACTIONS(4518), - [anon_sym_if] = ACTIONS(4518), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_when] = ACTIONS(4518), - [anon_sym_try] = ACTIONS(4518), - [anon_sym_throw] = ACTIONS(4518), - [anon_sym_return] = ACTIONS(4518), - [anon_sym_continue] = ACTIONS(4518), - [anon_sym_break] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_PLUS_EQ] = ACTIONS(4520), - [anon_sym_DASH_EQ] = ACTIONS(4520), - [anon_sym_STAR_EQ] = ACTIONS(4520), - [anon_sym_SLASH_EQ] = ACTIONS(4520), - [anon_sym_PERCENT_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4518), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4518), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4520), - [anon_sym_continue_AT] = ACTIONS(4520), - [anon_sym_break_AT] = ACTIONS(4520), - [anon_sym_this_AT] = ACTIONS(4520), - [anon_sym_super_AT] = ACTIONS(4520), - [sym_real_literal] = ACTIONS(4520), - [sym_integer_literal] = ACTIONS(4518), - [sym_hex_literal] = ACTIONS(4520), - [sym_bin_literal] = ACTIONS(4520), - [anon_sym_true] = ACTIONS(4518), - [anon_sym_false] = ACTIONS(4518), - [anon_sym_SQUOTE] = ACTIONS(4520), - [sym__backtick_identifier] = ACTIONS(4520), - [sym__automatic_semicolon] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4520), - }, - [3257] = { - [sym__alpha_identifier] = ACTIONS(4495), - [anon_sym_AT] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_as] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4495), - [anon_sym_fun] = ACTIONS(4495), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_COMMA] = ACTIONS(4497), - [anon_sym_LT] = ACTIONS(4495), - [anon_sym_GT] = ACTIONS(4495), - [anon_sym_where] = ACTIONS(4495), - [anon_sym_object] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4495), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_get] = ACTIONS(4495), - [anon_sym_set] = ACTIONS(4495), - [anon_sym_this] = ACTIONS(4495), - [anon_sym_super] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4495), - [anon_sym_DOT_DOT] = ACTIONS(4497), - [anon_sym_QMARK_COLON] = ACTIONS(4497), - [anon_sym_AMP_AMP] = ACTIONS(4497), - [anon_sym_PIPE_PIPE] = ACTIONS(4497), - [anon_sym_null] = ACTIONS(4495), - [anon_sym_if] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4495), - [anon_sym_when] = ACTIONS(4495), - [anon_sym_try] = ACTIONS(4495), - [anon_sym_throw] = ACTIONS(4495), - [anon_sym_return] = ACTIONS(4495), - [anon_sym_continue] = ACTIONS(4495), - [anon_sym_break] = ACTIONS(4495), - [anon_sym_COLON_COLON] = ACTIONS(4497), - [anon_sym_PLUS_EQ] = ACTIONS(4497), - [anon_sym_DASH_EQ] = ACTIONS(4497), - [anon_sym_STAR_EQ] = ACTIONS(4497), - [anon_sym_SLASH_EQ] = ACTIONS(4497), - [anon_sym_PERCENT_EQ] = ACTIONS(4497), - [anon_sym_BANG_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4497), - [anon_sym_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4497), - [anon_sym_LT_EQ] = ACTIONS(4497), - [anon_sym_GT_EQ] = ACTIONS(4497), - [anon_sym_BANGin] = ACTIONS(4497), - [anon_sym_is] = ACTIONS(4495), - [anon_sym_BANGis] = ACTIONS(4497), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_SLASH] = ACTIONS(4495), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4497), - [anon_sym_PLUS_PLUS] = ACTIONS(4497), - [anon_sym_DASH_DASH] = ACTIONS(4497), - [anon_sym_BANG] = ACTIONS(4495), - [anon_sym_BANG_BANG] = ACTIONS(4497), - [anon_sym_data] = ACTIONS(4495), - [anon_sym_inner] = ACTIONS(4495), - [anon_sym_value] = ACTIONS(4495), - [anon_sym_expect] = ACTIONS(4495), - [anon_sym_actual] = ACTIONS(4495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4497), - [anon_sym_continue_AT] = ACTIONS(4497), - [anon_sym_break_AT] = ACTIONS(4497), - [anon_sym_this_AT] = ACTIONS(4497), - [anon_sym_super_AT] = ACTIONS(4497), - [sym_real_literal] = ACTIONS(4497), - [sym_integer_literal] = ACTIONS(4495), - [sym_hex_literal] = ACTIONS(4497), - [sym_bin_literal] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4495), - [anon_sym_false] = ACTIONS(4495), - [anon_sym_SQUOTE] = ACTIONS(4497), - [sym__backtick_identifier] = ACTIONS(4497), - [sym__automatic_semicolon] = ACTIONS(4497), - [sym_safe_nav] = ACTIONS(4497), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4497), - }, - [3258] = { - [sym_type_constraints] = STATE(3416), - [sym_enum_class_body] = STATE(3574), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_RBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [anon_sym_DASH_GT] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - }, - [3259] = { - [sym__alpha_identifier] = ACTIONS(5115), - [anon_sym_AT] = ACTIONS(5117), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_as] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_fun] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5117), - [anon_sym_RBRACE] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5117), - [anon_sym_COMMA] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5115), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_where] = ACTIONS(5115), - [anon_sym_object] = ACTIONS(5115), - [anon_sym_DOT] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5117), - [anon_sym_get] = ACTIONS(5115), - [anon_sym_set] = ACTIONS(5115), - [anon_sym_this] = ACTIONS(5115), - [anon_sym_super] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [sym_label] = ACTIONS(5115), - [anon_sym_in] = ACTIONS(5115), - [anon_sym_DOT_DOT] = ACTIONS(5117), - [anon_sym_QMARK_COLON] = ACTIONS(5117), - [anon_sym_AMP_AMP] = ACTIONS(5117), - [anon_sym_PIPE_PIPE] = ACTIONS(5117), - [anon_sym_null] = ACTIONS(5115), - [anon_sym_if] = ACTIONS(5115), - [anon_sym_else] = ACTIONS(5115), - [anon_sym_when] = ACTIONS(5115), - [anon_sym_try] = ACTIONS(5115), - [anon_sym_throw] = ACTIONS(5115), - [anon_sym_return] = ACTIONS(5115), - [anon_sym_continue] = ACTIONS(5115), - [anon_sym_break] = ACTIONS(5115), - [anon_sym_COLON_COLON] = ACTIONS(5117), - [anon_sym_PLUS_EQ] = ACTIONS(5117), - [anon_sym_DASH_EQ] = ACTIONS(5117), - [anon_sym_STAR_EQ] = ACTIONS(5117), - [anon_sym_SLASH_EQ] = ACTIONS(5117), - [anon_sym_PERCENT_EQ] = ACTIONS(5117), - [anon_sym_BANG_EQ] = ACTIONS(5115), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5117), - [anon_sym_EQ_EQ] = ACTIONS(5115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5117), - [anon_sym_LT_EQ] = ACTIONS(5117), - [anon_sym_GT_EQ] = ACTIONS(5117), - [anon_sym_BANGin] = ACTIONS(5117), - [anon_sym_is] = ACTIONS(5115), - [anon_sym_BANGis] = ACTIONS(5117), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5115), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_as_QMARK] = ACTIONS(5117), - [anon_sym_PLUS_PLUS] = ACTIONS(5117), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_BANG_BANG] = ACTIONS(5117), - [anon_sym_data] = ACTIONS(5115), - [anon_sym_inner] = ACTIONS(5115), - [anon_sym_value] = ACTIONS(5115), - [anon_sym_expect] = ACTIONS(5115), - [anon_sym_actual] = ACTIONS(5115), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5117), - [anon_sym_continue_AT] = ACTIONS(5117), - [anon_sym_break_AT] = ACTIONS(5117), - [anon_sym_this_AT] = ACTIONS(5117), - [anon_sym_super_AT] = ACTIONS(5117), - [sym_real_literal] = ACTIONS(5117), - [sym_integer_literal] = ACTIONS(5115), - [sym_hex_literal] = ACTIONS(5117), - [sym_bin_literal] = ACTIONS(5117), - [anon_sym_true] = ACTIONS(5115), - [anon_sym_false] = ACTIONS(5115), - [anon_sym_SQUOTE] = ACTIONS(5117), - [sym__backtick_identifier] = ACTIONS(5117), - [sym__automatic_semicolon] = ACTIONS(5117), - [sym_safe_nav] = ACTIONS(5117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5117), - }, - [3260] = { - [sym__alpha_identifier] = ACTIONS(4373), - [anon_sym_AT] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_RBRACK] = ACTIONS(4375), - [anon_sym_as] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_LBRACE] = ACTIONS(4375), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_RPAREN] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_where] = ACTIONS(4373), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_get] = ACTIONS(4373), - [anon_sym_set] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4373), - [anon_sym_DASH_GT] = ACTIONS(4375), - [sym_label] = ACTIONS(4375), - [anon_sym_in] = ACTIONS(4373), - [anon_sym_while] = ACTIONS(4373), - [anon_sym_DOT_DOT] = ACTIONS(4375), - [anon_sym_QMARK_COLON] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_else] = ACTIONS(4373), - [anon_sym_catch] = ACTIONS(4373), - [anon_sym_finally] = ACTIONS(4373), - [anon_sym_COLON_COLON] = ACTIONS(4375), - [anon_sym_PLUS_EQ] = ACTIONS(4375), - [anon_sym_DASH_EQ] = ACTIONS(4375), - [anon_sym_STAR_EQ] = ACTIONS(4375), - [anon_sym_SLASH_EQ] = ACTIONS(4375), - [anon_sym_PERCENT_EQ] = ACTIONS(4375), - [anon_sym_BANG_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4375), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_BANGin] = ACTIONS(4375), - [anon_sym_is] = ACTIONS(4373), - [anon_sym_BANGis] = ACTIONS(4375), - [anon_sym_PLUS] = ACTIONS(4373), - [anon_sym_DASH] = ACTIONS(4373), - [anon_sym_SLASH] = ACTIONS(4373), - [anon_sym_PERCENT] = ACTIONS(4373), - [anon_sym_as_QMARK] = ACTIONS(4375), - [anon_sym_PLUS_PLUS] = ACTIONS(4375), - [anon_sym_DASH_DASH] = ACTIONS(4375), - [anon_sym_BANG_BANG] = ACTIONS(4375), - [anon_sym_suspend] = ACTIONS(4373), - [anon_sym_sealed] = ACTIONS(4373), - [anon_sym_annotation] = ACTIONS(4373), - [anon_sym_data] = ACTIONS(4373), - [anon_sym_inner] = ACTIONS(4373), - [anon_sym_value] = ACTIONS(4373), - [anon_sym_override] = ACTIONS(4373), - [anon_sym_lateinit] = ACTIONS(4373), - [anon_sym_public] = ACTIONS(4373), - [anon_sym_private] = ACTIONS(4373), - [anon_sym_internal] = ACTIONS(4373), - [anon_sym_protected] = ACTIONS(4373), - [anon_sym_tailrec] = ACTIONS(4373), - [anon_sym_operator] = ACTIONS(4373), - [anon_sym_infix] = ACTIONS(4373), - [anon_sym_inline] = ACTIONS(4373), - [anon_sym_external] = ACTIONS(4373), - [sym_property_modifier] = ACTIONS(4373), - [anon_sym_abstract] = ACTIONS(4373), - [anon_sym_final] = ACTIONS(4373), - [anon_sym_open] = ACTIONS(4373), - [anon_sym_vararg] = ACTIONS(4373), - [anon_sym_noinline] = ACTIONS(4373), - [anon_sym_crossinline] = ACTIONS(4373), - [anon_sym_expect] = ACTIONS(4373), - [anon_sym_actual] = ACTIONS(4373), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4375), - [sym_safe_nav] = ACTIONS(4375), - [sym_multiline_comment] = ACTIONS(3), - }, - [3261] = { - [sym__alpha_identifier] = ACTIONS(5131), - [anon_sym_AT] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_as] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_fun] = ACTIONS(5131), - [anon_sym_LBRACE] = ACTIONS(5133), - [anon_sym_RBRACE] = ACTIONS(5133), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_LT] = ACTIONS(5131), - [anon_sym_GT] = ACTIONS(5131), - [anon_sym_where] = ACTIONS(5131), - [anon_sym_object] = ACTIONS(5131), - [anon_sym_DOT] = ACTIONS(5131), - [anon_sym_SEMI] = ACTIONS(5133), - [anon_sym_get] = ACTIONS(5131), - [anon_sym_set] = ACTIONS(5131), - [anon_sym_this] = ACTIONS(5131), - [anon_sym_super] = ACTIONS(5131), - [anon_sym_STAR] = ACTIONS(5131), - [sym_label] = ACTIONS(5131), - [anon_sym_in] = ACTIONS(5131), - [anon_sym_DOT_DOT] = ACTIONS(5133), - [anon_sym_QMARK_COLON] = ACTIONS(5133), - [anon_sym_AMP_AMP] = ACTIONS(5133), - [anon_sym_PIPE_PIPE] = ACTIONS(5133), - [anon_sym_null] = ACTIONS(5131), - [anon_sym_if] = ACTIONS(5131), - [anon_sym_else] = ACTIONS(5131), - [anon_sym_when] = ACTIONS(5131), - [anon_sym_try] = ACTIONS(5131), - [anon_sym_throw] = ACTIONS(5131), - [anon_sym_return] = ACTIONS(5131), - [anon_sym_continue] = ACTIONS(5131), - [anon_sym_break] = ACTIONS(5131), - [anon_sym_COLON_COLON] = ACTIONS(5133), - [anon_sym_PLUS_EQ] = ACTIONS(5133), - [anon_sym_DASH_EQ] = ACTIONS(5133), - [anon_sym_STAR_EQ] = ACTIONS(5133), - [anon_sym_SLASH_EQ] = ACTIONS(5133), - [anon_sym_PERCENT_EQ] = ACTIONS(5133), - [anon_sym_BANG_EQ] = ACTIONS(5131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5133), - [anon_sym_EQ_EQ] = ACTIONS(5131), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5133), - [anon_sym_LT_EQ] = ACTIONS(5133), - [anon_sym_GT_EQ] = ACTIONS(5133), - [anon_sym_BANGin] = ACTIONS(5133), - [anon_sym_is] = ACTIONS(5131), - [anon_sym_BANGis] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5131), - [anon_sym_SLASH] = ACTIONS(5131), - [anon_sym_PERCENT] = ACTIONS(5131), - [anon_sym_as_QMARK] = ACTIONS(5133), - [anon_sym_PLUS_PLUS] = ACTIONS(5133), - [anon_sym_DASH_DASH] = ACTIONS(5133), - [anon_sym_BANG] = ACTIONS(5131), - [anon_sym_BANG_BANG] = ACTIONS(5133), - [anon_sym_data] = ACTIONS(5131), - [anon_sym_inner] = ACTIONS(5131), - [anon_sym_value] = ACTIONS(5131), - [anon_sym_expect] = ACTIONS(5131), - [anon_sym_actual] = ACTIONS(5131), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5133), - [anon_sym_continue_AT] = ACTIONS(5133), - [anon_sym_break_AT] = ACTIONS(5133), - [anon_sym_this_AT] = ACTIONS(5133), - [anon_sym_super_AT] = ACTIONS(5133), - [sym_real_literal] = ACTIONS(5133), - [sym_integer_literal] = ACTIONS(5131), - [sym_hex_literal] = ACTIONS(5133), - [sym_bin_literal] = ACTIONS(5133), - [anon_sym_true] = ACTIONS(5131), - [anon_sym_false] = ACTIONS(5131), - [anon_sym_SQUOTE] = ACTIONS(5133), - [sym__backtick_identifier] = ACTIONS(5133), - [sym__automatic_semicolon] = ACTIONS(5133), - [sym_safe_nav] = ACTIONS(5133), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5133), - }, - [3262] = { - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(4453), - [anon_sym_fun] = ACTIONS(4453), - [anon_sym_LBRACE] = ACTIONS(4455), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_where] = ACTIONS(4453), - [anon_sym_object] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_this] = ACTIONS(4453), - [anon_sym_super] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4453), - [sym_label] = ACTIONS(4453), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_null] = ACTIONS(4453), - [anon_sym_if] = ACTIONS(4453), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_when] = ACTIONS(4453), - [anon_sym_try] = ACTIONS(4453), - [anon_sym_throw] = ACTIONS(4453), - [anon_sym_return] = ACTIONS(4453), - [anon_sym_continue] = ACTIONS(4453), - [anon_sym_break] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_PLUS_EQ] = ACTIONS(4455), - [anon_sym_DASH_EQ] = ACTIONS(4455), - [anon_sym_STAR_EQ] = ACTIONS(4455), - [anon_sym_SLASH_EQ] = ACTIONS(4455), - [anon_sym_PERCENT_EQ] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4453), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4453), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4455), - [anon_sym_continue_AT] = ACTIONS(4455), - [anon_sym_break_AT] = ACTIONS(4455), - [anon_sym_this_AT] = ACTIONS(4455), - [anon_sym_super_AT] = ACTIONS(4455), - [sym_real_literal] = ACTIONS(4455), - [sym_integer_literal] = ACTIONS(4453), - [sym_hex_literal] = ACTIONS(4455), - [sym_bin_literal] = ACTIONS(4455), - [anon_sym_true] = ACTIONS(4453), - [anon_sym_false] = ACTIONS(4453), - [anon_sym_SQUOTE] = ACTIONS(4455), - [sym__backtick_identifier] = ACTIONS(4455), - [sym__automatic_semicolon] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4455), - }, - [3263] = { - [aux_sym_type_constraints_repeat1] = STATE(3300), - [sym__alpha_identifier] = ACTIONS(4541), - [anon_sym_AT] = ACTIONS(4543), - [anon_sym_LBRACK] = ACTIONS(4543), - [anon_sym_RBRACK] = ACTIONS(4543), - [anon_sym_as] = ACTIONS(4541), - [anon_sym_EQ] = ACTIONS(4541), - [anon_sym_LBRACE] = ACTIONS(4543), - [anon_sym_RBRACE] = ACTIONS(4543), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_COMMA] = ACTIONS(6768), - [anon_sym_RPAREN] = ACTIONS(4543), - [anon_sym_by] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4541), - [anon_sym_GT] = ACTIONS(4541), - [anon_sym_where] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4541), - [anon_sym_SEMI] = ACTIONS(4543), - [anon_sym_get] = ACTIONS(4541), - [anon_sym_set] = ACTIONS(4541), - [anon_sym_STAR] = ACTIONS(4541), - [anon_sym_DASH_GT] = ACTIONS(4543), - [sym_label] = ACTIONS(4543), - [anon_sym_in] = ACTIONS(4541), - [anon_sym_while] = ACTIONS(4541), - [anon_sym_DOT_DOT] = ACTIONS(4543), - [anon_sym_QMARK_COLON] = ACTIONS(4543), - [anon_sym_AMP_AMP] = ACTIONS(4543), - [anon_sym_PIPE_PIPE] = ACTIONS(4543), - [anon_sym_else] = ACTIONS(4541), - [anon_sym_COLON_COLON] = ACTIONS(4543), - [anon_sym_PLUS_EQ] = ACTIONS(4543), - [anon_sym_DASH_EQ] = ACTIONS(4543), - [anon_sym_STAR_EQ] = ACTIONS(4543), - [anon_sym_SLASH_EQ] = ACTIONS(4543), - [anon_sym_PERCENT_EQ] = ACTIONS(4543), - [anon_sym_BANG_EQ] = ACTIONS(4541), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4543), - [anon_sym_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4543), - [anon_sym_LT_EQ] = ACTIONS(4543), - [anon_sym_GT_EQ] = ACTIONS(4543), - [anon_sym_BANGin] = ACTIONS(4543), - [anon_sym_is] = ACTIONS(4541), - [anon_sym_BANGis] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4541), - [anon_sym_DASH] = ACTIONS(4541), - [anon_sym_SLASH] = ACTIONS(4541), - [anon_sym_PERCENT] = ACTIONS(4541), - [anon_sym_as_QMARK] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_BANG_BANG] = ACTIONS(4543), - [anon_sym_suspend] = ACTIONS(4541), - [anon_sym_sealed] = ACTIONS(4541), - [anon_sym_annotation] = ACTIONS(4541), - [anon_sym_data] = ACTIONS(4541), - [anon_sym_inner] = ACTIONS(4541), - [anon_sym_value] = ACTIONS(4541), - [anon_sym_override] = ACTIONS(4541), - [anon_sym_lateinit] = ACTIONS(4541), - [anon_sym_public] = ACTIONS(4541), - [anon_sym_private] = ACTIONS(4541), - [anon_sym_internal] = ACTIONS(4541), - [anon_sym_protected] = ACTIONS(4541), - [anon_sym_tailrec] = ACTIONS(4541), - [anon_sym_operator] = ACTIONS(4541), - [anon_sym_infix] = ACTIONS(4541), - [anon_sym_inline] = ACTIONS(4541), - [anon_sym_external] = ACTIONS(4541), - [sym_property_modifier] = ACTIONS(4541), - [anon_sym_abstract] = ACTIONS(4541), - [anon_sym_final] = ACTIONS(4541), - [anon_sym_open] = ACTIONS(4541), - [anon_sym_vararg] = ACTIONS(4541), - [anon_sym_noinline] = ACTIONS(4541), - [anon_sym_crossinline] = ACTIONS(4541), - [anon_sym_expect] = ACTIONS(4541), - [anon_sym_actual] = ACTIONS(4541), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4543), - [sym_safe_nav] = ACTIONS(4543), - [sym_multiline_comment] = ACTIONS(3), - }, - [3264] = { - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_fun] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4277), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(4275), - [anon_sym_object] = ACTIONS(4275), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_this] = ACTIONS(4275), - [anon_sym_super] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), - [sym_label] = ACTIONS(4275), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4275), - [anon_sym_if] = ACTIONS(4275), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_when] = ACTIONS(4275), - [anon_sym_try] = ACTIONS(4275), - [anon_sym_throw] = ACTIONS(4275), - [anon_sym_return] = ACTIONS(4275), - [anon_sym_continue] = ACTIONS(4275), - [anon_sym_break] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_PLUS_EQ] = ACTIONS(4277), - [anon_sym_DASH_EQ] = ACTIONS(4277), - [anon_sym_STAR_EQ] = ACTIONS(4277), - [anon_sym_SLASH_EQ] = ACTIONS(4277), - [anon_sym_PERCENT_EQ] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4277), - [anon_sym_continue_AT] = ACTIONS(4277), - [anon_sym_break_AT] = ACTIONS(4277), - [anon_sym_this_AT] = ACTIONS(4277), - [anon_sym_super_AT] = ACTIONS(4277), - [sym_real_literal] = ACTIONS(4277), - [sym_integer_literal] = ACTIONS(4275), - [sym_hex_literal] = ACTIONS(4277), - [sym_bin_literal] = ACTIONS(4277), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [anon_sym_SQUOTE] = ACTIONS(4277), - [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), - }, - [3265] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4381), - [anon_sym_fun] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_GT] = ACTIONS(4381), - [anon_sym_where] = ACTIONS(4381), - [anon_sym_object] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_this] = ACTIONS(4381), - [anon_sym_super] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [sym_label] = ACTIONS(4381), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_QMARK_COLON] = ACTIONS(4383), - [anon_sym_AMP_AMP] = ACTIONS(4383), - [anon_sym_PIPE_PIPE] = ACTIONS(4383), - [anon_sym_null] = ACTIONS(4381), - [anon_sym_if] = ACTIONS(4381), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_when] = ACTIONS(4381), - [anon_sym_try] = ACTIONS(4381), - [anon_sym_throw] = ACTIONS(4381), - [anon_sym_return] = ACTIONS(4381), - [anon_sym_continue] = ACTIONS(4381), - [anon_sym_break] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4383), - [anon_sym_DASH_EQ] = ACTIONS(4383), - [anon_sym_STAR_EQ] = ACTIONS(4383), - [anon_sym_SLASH_EQ] = ACTIONS(4383), - [anon_sym_PERCENT_EQ] = ACTIONS(4383), - [anon_sym_BANG_EQ] = ACTIONS(4381), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), - [anon_sym_EQ_EQ] = ACTIONS(4381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), - [anon_sym_LT_EQ] = ACTIONS(4383), - [anon_sym_GT_EQ] = ACTIONS(4383), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_as_QMARK] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG] = ACTIONS(4381), - [anon_sym_BANG_BANG] = ACTIONS(4383), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4383), - [anon_sym_continue_AT] = ACTIONS(4383), - [anon_sym_break_AT] = ACTIONS(4383), - [anon_sym_this_AT] = ACTIONS(4383), - [anon_sym_super_AT] = ACTIONS(4383), - [sym_real_literal] = ACTIONS(4383), - [sym_integer_literal] = ACTIONS(4381), - [sym_hex_literal] = ACTIONS(4383), - [sym_bin_literal] = ACTIONS(4383), - [anon_sym_true] = ACTIONS(4381), - [anon_sym_false] = ACTIONS(4381), - [anon_sym_SQUOTE] = ACTIONS(4383), - [sym__backtick_identifier] = ACTIONS(4383), - [sym__automatic_semicolon] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4383), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4383), - }, - [3266] = { - [aux_sym_nullable_type_repeat1] = STATE(3293), - [sym__alpha_identifier] = ACTIONS(4363), - [anon_sym_AT] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_EQ] = ACTIONS(4365), - [anon_sym_fun] = ACTIONS(4363), - [anon_sym_LBRACE] = ACTIONS(4365), - [anon_sym_RBRACE] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_COMMA] = ACTIONS(4365), - [anon_sym_by] = ACTIONS(4363), - [anon_sym_where] = ACTIONS(4363), - [anon_sym_object] = ACTIONS(4363), - [anon_sym_SEMI] = ACTIONS(4365), - [anon_sym_get] = ACTIONS(4363), - [anon_sym_set] = ACTIONS(4363), - [anon_sym_this] = ACTIONS(4363), - [anon_sym_super] = ACTIONS(4363), - [sym__quest] = ACTIONS(6770), - [anon_sym_STAR] = ACTIONS(4365), - [sym_label] = ACTIONS(4363), - [anon_sym_in] = ACTIONS(4363), - [anon_sym_null] = ACTIONS(4363), - [anon_sym_if] = ACTIONS(4363), - [anon_sym_else] = ACTIONS(4363), - [anon_sym_when] = ACTIONS(4363), - [anon_sym_try] = ACTIONS(4363), - [anon_sym_throw] = ACTIONS(4363), - [anon_sym_return] = ACTIONS(4363), - [anon_sym_continue] = ACTIONS(4363), - [anon_sym_break] = ACTIONS(4363), - [anon_sym_COLON_COLON] = ACTIONS(4365), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(4363), - [anon_sym_BANGis] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4363), - [anon_sym_DASH] = ACTIONS(4363), - [anon_sym_PLUS_PLUS] = ACTIONS(4365), - [anon_sym_DASH_DASH] = ACTIONS(4365), - [anon_sym_BANG] = ACTIONS(4363), - [anon_sym_suspend] = ACTIONS(4363), - [anon_sym_sealed] = ACTIONS(4363), - [anon_sym_annotation] = ACTIONS(4363), - [anon_sym_data] = ACTIONS(4363), - [anon_sym_inner] = ACTIONS(4363), - [anon_sym_value] = ACTIONS(4363), - [anon_sym_override] = ACTIONS(4363), - [anon_sym_lateinit] = ACTIONS(4363), - [anon_sym_public] = ACTIONS(4363), - [anon_sym_private] = ACTIONS(4363), - [anon_sym_internal] = ACTIONS(4363), - [anon_sym_protected] = ACTIONS(4363), - [anon_sym_tailrec] = ACTIONS(4363), - [anon_sym_operator] = ACTIONS(4363), - [anon_sym_infix] = ACTIONS(4363), - [anon_sym_inline] = ACTIONS(4363), - [anon_sym_external] = ACTIONS(4363), - [sym_property_modifier] = ACTIONS(4363), - [anon_sym_abstract] = ACTIONS(4363), - [anon_sym_final] = ACTIONS(4363), - [anon_sym_open] = ACTIONS(4363), - [anon_sym_vararg] = ACTIONS(4363), - [anon_sym_noinline] = ACTIONS(4363), - [anon_sym_crossinline] = ACTIONS(4363), - [anon_sym_expect] = ACTIONS(4363), - [anon_sym_actual] = ACTIONS(4363), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4365), - [anon_sym_continue_AT] = ACTIONS(4365), - [anon_sym_break_AT] = ACTIONS(4365), - [anon_sym_this_AT] = ACTIONS(4365), - [anon_sym_super_AT] = ACTIONS(4365), - [sym_real_literal] = ACTIONS(4365), - [sym_integer_literal] = ACTIONS(4363), - [sym_hex_literal] = ACTIONS(4365), - [sym_bin_literal] = ACTIONS(4365), - [anon_sym_true] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_SQUOTE] = ACTIONS(4365), - [sym__backtick_identifier] = ACTIONS(4365), - [sym__automatic_semicolon] = ACTIONS(4365), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4365), - }, - [3267] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(5032), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(5034), - [anon_sym_DASH_EQ] = ACTIONS(5034), - [anon_sym_STAR_EQ] = ACTIONS(5034), - [anon_sym_SLASH_EQ] = ACTIONS(5034), - [anon_sym_PERCENT_EQ] = ACTIONS(5034), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), - }, - [3268] = { - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [3269] = { - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3438), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_fun] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_object] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(3436), - [anon_sym_set] = ACTIONS(3436), - [anon_sym_this] = ACTIONS(3436), - [anon_sym_super] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3436), - [sym_label] = ACTIONS(3436), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_null] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_when] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_data] = ACTIONS(3436), - [anon_sym_inner] = ACTIONS(3436), - [anon_sym_value] = ACTIONS(3436), - [anon_sym_expect] = ACTIONS(3436), - [anon_sym_actual] = ACTIONS(3436), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3438), - [anon_sym_continue_AT] = ACTIONS(3438), - [anon_sym_break_AT] = ACTIONS(3438), - [anon_sym_this_AT] = ACTIONS(3438), - [anon_sym_super_AT] = ACTIONS(3438), - [sym_real_literal] = ACTIONS(3438), - [sym_integer_literal] = ACTIONS(3436), - [sym_hex_literal] = ACTIONS(3438), - [sym_bin_literal] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [anon_sym_SQUOTE] = ACTIONS(3438), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3438), - }, - [3270] = { - [sym__alpha_identifier] = ACTIONS(4718), - [anon_sym_AT] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4720), - [anon_sym_as] = ACTIONS(4718), - [anon_sym_EQ] = ACTIONS(4718), - [anon_sym_fun] = ACTIONS(4718), - [anon_sym_LBRACE] = ACTIONS(4720), - [anon_sym_RBRACE] = ACTIONS(4720), - [anon_sym_LPAREN] = ACTIONS(4720), - [anon_sym_COMMA] = ACTIONS(4720), - [anon_sym_LT] = ACTIONS(4718), - [anon_sym_GT] = ACTIONS(4718), - [anon_sym_where] = ACTIONS(4718), - [anon_sym_object] = ACTIONS(4718), - [anon_sym_DOT] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_get] = ACTIONS(4718), - [anon_sym_set] = ACTIONS(4718), - [anon_sym_this] = ACTIONS(4718), - [anon_sym_super] = ACTIONS(4718), - [anon_sym_STAR] = ACTIONS(4718), - [sym_label] = ACTIONS(4718), - [anon_sym_in] = ACTIONS(4718), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_QMARK_COLON] = ACTIONS(4720), - [anon_sym_AMP_AMP] = ACTIONS(4720), - [anon_sym_PIPE_PIPE] = ACTIONS(4720), - [anon_sym_null] = ACTIONS(4718), - [anon_sym_if] = ACTIONS(4718), - [anon_sym_else] = ACTIONS(4718), - [anon_sym_when] = ACTIONS(4718), - [anon_sym_try] = ACTIONS(4718), - [anon_sym_throw] = ACTIONS(4718), - [anon_sym_return] = ACTIONS(4718), - [anon_sym_continue] = ACTIONS(4718), - [anon_sym_break] = ACTIONS(4718), - [anon_sym_COLON_COLON] = ACTIONS(4720), - [anon_sym_PLUS_EQ] = ACTIONS(4720), - [anon_sym_DASH_EQ] = ACTIONS(4720), - [anon_sym_STAR_EQ] = ACTIONS(4720), - [anon_sym_SLASH_EQ] = ACTIONS(4720), - [anon_sym_PERCENT_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4718), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), - [anon_sym_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4720), - [anon_sym_BANGin] = ACTIONS(4720), - [anon_sym_is] = ACTIONS(4718), - [anon_sym_BANGis] = ACTIONS(4720), - [anon_sym_PLUS] = ACTIONS(4718), - [anon_sym_DASH] = ACTIONS(4718), - [anon_sym_SLASH] = ACTIONS(4718), - [anon_sym_PERCENT] = ACTIONS(4718), - [anon_sym_as_QMARK] = ACTIONS(4720), - [anon_sym_PLUS_PLUS] = ACTIONS(4720), - [anon_sym_DASH_DASH] = ACTIONS(4720), - [anon_sym_BANG] = ACTIONS(4718), - [anon_sym_BANG_BANG] = ACTIONS(4720), - [anon_sym_data] = ACTIONS(4718), - [anon_sym_inner] = ACTIONS(4718), - [anon_sym_value] = ACTIONS(4718), - [anon_sym_expect] = ACTIONS(4718), - [anon_sym_actual] = ACTIONS(4718), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4720), - [anon_sym_continue_AT] = ACTIONS(4720), - [anon_sym_break_AT] = ACTIONS(4720), - [anon_sym_this_AT] = ACTIONS(4720), - [anon_sym_super_AT] = ACTIONS(4720), - [sym_real_literal] = ACTIONS(4720), - [sym_integer_literal] = ACTIONS(4718), - [sym_hex_literal] = ACTIONS(4720), - [sym_bin_literal] = ACTIONS(4720), - [anon_sym_true] = ACTIONS(4718), - [anon_sym_false] = ACTIONS(4718), - [anon_sym_SQUOTE] = ACTIONS(4720), - [sym__backtick_identifier] = ACTIONS(4720), - [sym__automatic_semicolon] = ACTIONS(4720), - [sym_safe_nav] = ACTIONS(4720), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4720), - }, - [3271] = { - [sym__alpha_identifier] = ACTIONS(5149), - [anon_sym_AT] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_as] = ACTIONS(5149), - [anon_sym_EQ] = ACTIONS(5149), - [anon_sym_fun] = ACTIONS(5149), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_RBRACE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5149), - [anon_sym_where] = ACTIONS(5149), - [anon_sym_object] = ACTIONS(5149), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_get] = ACTIONS(5149), - [anon_sym_set] = ACTIONS(5149), - [anon_sym_this] = ACTIONS(5149), - [anon_sym_super] = ACTIONS(5149), - [anon_sym_STAR] = ACTIONS(5149), - [sym_label] = ACTIONS(5149), - [anon_sym_in] = ACTIONS(5149), - [anon_sym_DOT_DOT] = ACTIONS(5151), - [anon_sym_QMARK_COLON] = ACTIONS(5151), - [anon_sym_AMP_AMP] = ACTIONS(5151), - [anon_sym_PIPE_PIPE] = ACTIONS(5151), - [anon_sym_null] = ACTIONS(5149), - [anon_sym_if] = ACTIONS(5149), - [anon_sym_else] = ACTIONS(5149), - [anon_sym_when] = ACTIONS(5149), - [anon_sym_try] = ACTIONS(5149), - [anon_sym_throw] = ACTIONS(5149), - [anon_sym_return] = ACTIONS(5149), - [anon_sym_continue] = ACTIONS(5149), - [anon_sym_break] = ACTIONS(5149), - [anon_sym_COLON_COLON] = ACTIONS(5151), - [anon_sym_PLUS_EQ] = ACTIONS(5151), - [anon_sym_DASH_EQ] = ACTIONS(5151), - [anon_sym_STAR_EQ] = ACTIONS(5151), - [anon_sym_SLASH_EQ] = ACTIONS(5151), - [anon_sym_PERCENT_EQ] = ACTIONS(5151), - [anon_sym_BANG_EQ] = ACTIONS(5149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), - [anon_sym_EQ_EQ] = ACTIONS(5149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), - [anon_sym_LT_EQ] = ACTIONS(5151), - [anon_sym_GT_EQ] = ACTIONS(5151), - [anon_sym_BANGin] = ACTIONS(5151), - [anon_sym_is] = ACTIONS(5149), - [anon_sym_BANGis] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5149), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5149), - [anon_sym_PERCENT] = ACTIONS(5149), - [anon_sym_as_QMARK] = ACTIONS(5151), - [anon_sym_PLUS_PLUS] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5149), - [anon_sym_BANG_BANG] = ACTIONS(5151), - [anon_sym_data] = ACTIONS(5149), - [anon_sym_inner] = ACTIONS(5149), - [anon_sym_value] = ACTIONS(5149), - [anon_sym_expect] = ACTIONS(5149), - [anon_sym_actual] = ACTIONS(5149), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5151), - [anon_sym_continue_AT] = ACTIONS(5151), - [anon_sym_break_AT] = ACTIONS(5151), - [anon_sym_this_AT] = ACTIONS(5151), - [anon_sym_super_AT] = ACTIONS(5151), - [sym_real_literal] = ACTIONS(5151), - [sym_integer_literal] = ACTIONS(5149), - [sym_hex_literal] = ACTIONS(5151), - [sym_bin_literal] = ACTIONS(5151), - [anon_sym_true] = ACTIONS(5149), - [anon_sym_false] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5151), - [sym__backtick_identifier] = ACTIONS(5151), - [sym__automatic_semicolon] = ACTIONS(5151), - [sym_safe_nav] = ACTIONS(5151), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5151), - }, - [3272] = { - [sym__alpha_identifier] = ACTIONS(5223), - [anon_sym_AT] = ACTIONS(5225), - [anon_sym_LBRACK] = ACTIONS(5225), - [anon_sym_as] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_fun] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5225), - [anon_sym_RBRACE] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5225), - [anon_sym_COMMA] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5223), - [anon_sym_GT] = ACTIONS(5223), - [anon_sym_where] = ACTIONS(5223), - [anon_sym_object] = ACTIONS(5223), - [anon_sym_DOT] = ACTIONS(5223), - [anon_sym_SEMI] = ACTIONS(5225), - [anon_sym_get] = ACTIONS(5223), - [anon_sym_set] = ACTIONS(5223), - [anon_sym_this] = ACTIONS(5223), - [anon_sym_super] = ACTIONS(5223), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(5223), - [anon_sym_in] = ACTIONS(5223), - [anon_sym_DOT_DOT] = ACTIONS(5225), - [anon_sym_QMARK_COLON] = ACTIONS(5225), - [anon_sym_AMP_AMP] = ACTIONS(5225), - [anon_sym_PIPE_PIPE] = ACTIONS(5225), - [anon_sym_null] = ACTIONS(5223), - [anon_sym_if] = ACTIONS(5223), - [anon_sym_else] = ACTIONS(5223), - [anon_sym_when] = ACTIONS(5223), - [anon_sym_try] = ACTIONS(5223), - [anon_sym_throw] = ACTIONS(5223), - [anon_sym_return] = ACTIONS(5223), - [anon_sym_continue] = ACTIONS(5223), - [anon_sym_break] = ACTIONS(5223), - [anon_sym_COLON_COLON] = ACTIONS(5225), - [anon_sym_PLUS_EQ] = ACTIONS(5225), - [anon_sym_DASH_EQ] = ACTIONS(5225), - [anon_sym_STAR_EQ] = ACTIONS(5225), - [anon_sym_SLASH_EQ] = ACTIONS(5225), - [anon_sym_PERCENT_EQ] = ACTIONS(5225), - [anon_sym_BANG_EQ] = ACTIONS(5223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5225), - [anon_sym_EQ_EQ] = ACTIONS(5223), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5225), - [anon_sym_LT_EQ] = ACTIONS(5225), - [anon_sym_GT_EQ] = ACTIONS(5225), - [anon_sym_BANGin] = ACTIONS(5225), - [anon_sym_is] = ACTIONS(5223), - [anon_sym_BANGis] = ACTIONS(5225), - [anon_sym_PLUS] = ACTIONS(5223), - [anon_sym_DASH] = ACTIONS(5223), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(5225), - [anon_sym_PLUS_PLUS] = ACTIONS(5225), - [anon_sym_DASH_DASH] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5223), - [anon_sym_BANG_BANG] = ACTIONS(5225), - [anon_sym_data] = ACTIONS(5223), - [anon_sym_inner] = ACTIONS(5223), - [anon_sym_value] = ACTIONS(5223), - [anon_sym_expect] = ACTIONS(5223), - [anon_sym_actual] = ACTIONS(5223), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5225), - [anon_sym_continue_AT] = ACTIONS(5225), - [anon_sym_break_AT] = ACTIONS(5225), - [anon_sym_this_AT] = ACTIONS(5225), - [anon_sym_super_AT] = ACTIONS(5225), - [sym_real_literal] = ACTIONS(5225), - [sym_integer_literal] = ACTIONS(5223), - [sym_hex_literal] = ACTIONS(5225), - [sym_bin_literal] = ACTIONS(5225), - [anon_sym_true] = ACTIONS(5223), - [anon_sym_false] = ACTIONS(5223), - [anon_sym_SQUOTE] = ACTIONS(5225), - [sym__backtick_identifier] = ACTIONS(5225), - [sym__automatic_semicolon] = ACTIONS(5225), - [sym_safe_nav] = ACTIONS(5225), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5225), - }, - [3273] = { - [sym__alpha_identifier] = ACTIONS(5107), - [anon_sym_AT] = ACTIONS(5109), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_as] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_fun] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5109), - [anon_sym_RBRACE] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_COMMA] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5107), - [anon_sym_GT] = ACTIONS(5107), - [anon_sym_where] = ACTIONS(5107), - [anon_sym_object] = ACTIONS(5107), - [anon_sym_DOT] = ACTIONS(5107), - [anon_sym_SEMI] = ACTIONS(5109), - [anon_sym_get] = ACTIONS(5107), - [anon_sym_set] = ACTIONS(5107), - [anon_sym_this] = ACTIONS(5107), - [anon_sym_super] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5107), - [sym_label] = ACTIONS(5107), - [anon_sym_in] = ACTIONS(5107), - [anon_sym_DOT_DOT] = ACTIONS(5109), - [anon_sym_QMARK_COLON] = ACTIONS(5109), - [anon_sym_AMP_AMP] = ACTIONS(5109), - [anon_sym_PIPE_PIPE] = ACTIONS(5109), - [anon_sym_null] = ACTIONS(5107), - [anon_sym_if] = ACTIONS(5107), - [anon_sym_else] = ACTIONS(5107), - [anon_sym_when] = ACTIONS(5107), - [anon_sym_try] = ACTIONS(5107), - [anon_sym_throw] = ACTIONS(5107), - [anon_sym_return] = ACTIONS(5107), - [anon_sym_continue] = ACTIONS(5107), - [anon_sym_break] = ACTIONS(5107), - [anon_sym_COLON_COLON] = ACTIONS(5109), - [anon_sym_PLUS_EQ] = ACTIONS(5109), - [anon_sym_DASH_EQ] = ACTIONS(5109), - [anon_sym_STAR_EQ] = ACTIONS(5109), - [anon_sym_SLASH_EQ] = ACTIONS(5109), - [anon_sym_PERCENT_EQ] = ACTIONS(5109), - [anon_sym_BANG_EQ] = ACTIONS(5107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5109), - [anon_sym_EQ_EQ] = ACTIONS(5107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5109), - [anon_sym_LT_EQ] = ACTIONS(5109), - [anon_sym_GT_EQ] = ACTIONS(5109), - [anon_sym_BANGin] = ACTIONS(5109), - [anon_sym_is] = ACTIONS(5107), - [anon_sym_BANGis] = ACTIONS(5109), - [anon_sym_PLUS] = ACTIONS(5107), - [anon_sym_DASH] = ACTIONS(5107), - [anon_sym_SLASH] = ACTIONS(5107), - [anon_sym_PERCENT] = ACTIONS(5107), - [anon_sym_as_QMARK] = ACTIONS(5109), - [anon_sym_PLUS_PLUS] = ACTIONS(5109), - [anon_sym_DASH_DASH] = ACTIONS(5109), - [anon_sym_BANG] = ACTIONS(5107), - [anon_sym_BANG_BANG] = ACTIONS(5109), - [anon_sym_data] = ACTIONS(5107), - [anon_sym_inner] = ACTIONS(5107), - [anon_sym_value] = ACTIONS(5107), - [anon_sym_expect] = ACTIONS(5107), - [anon_sym_actual] = ACTIONS(5107), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5109), - [anon_sym_continue_AT] = ACTIONS(5109), - [anon_sym_break_AT] = ACTIONS(5109), - [anon_sym_this_AT] = ACTIONS(5109), - [anon_sym_super_AT] = ACTIONS(5109), - [sym_real_literal] = ACTIONS(5109), - [sym_integer_literal] = ACTIONS(5107), - [sym_hex_literal] = ACTIONS(5109), - [sym_bin_literal] = ACTIONS(5109), - [anon_sym_true] = ACTIONS(5107), - [anon_sym_false] = ACTIONS(5107), - [anon_sym_SQUOTE] = ACTIONS(5109), - [sym__backtick_identifier] = ACTIONS(5109), - [sym__automatic_semicolon] = ACTIONS(5109), - [sym_safe_nav] = ACTIONS(5109), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5109), - }, - [3274] = { - [sym__alpha_identifier] = ACTIONS(5103), - [anon_sym_AT] = ACTIONS(5105), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_as] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_fun] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5105), - [anon_sym_RBRACE] = ACTIONS(5105), - [anon_sym_LPAREN] = ACTIONS(5105), - [anon_sym_COMMA] = ACTIONS(5105), - [anon_sym_LT] = ACTIONS(5103), - [anon_sym_GT] = ACTIONS(5103), - [anon_sym_where] = ACTIONS(5103), - [anon_sym_object] = ACTIONS(5103), - [anon_sym_DOT] = ACTIONS(5103), - [anon_sym_SEMI] = ACTIONS(5105), - [anon_sym_get] = ACTIONS(5103), - [anon_sym_set] = ACTIONS(5103), - [anon_sym_this] = ACTIONS(5103), - [anon_sym_super] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5103), - [sym_label] = ACTIONS(5103), - [anon_sym_in] = ACTIONS(5103), - [anon_sym_DOT_DOT] = ACTIONS(5105), - [anon_sym_QMARK_COLON] = ACTIONS(5105), - [anon_sym_AMP_AMP] = ACTIONS(5105), - [anon_sym_PIPE_PIPE] = ACTIONS(5105), - [anon_sym_null] = ACTIONS(5103), - [anon_sym_if] = ACTIONS(5103), - [anon_sym_else] = ACTIONS(5103), - [anon_sym_when] = ACTIONS(5103), - [anon_sym_try] = ACTIONS(5103), - [anon_sym_throw] = ACTIONS(5103), - [anon_sym_return] = ACTIONS(5103), - [anon_sym_continue] = ACTIONS(5103), - [anon_sym_break] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_PLUS_EQ] = ACTIONS(5105), - [anon_sym_DASH_EQ] = ACTIONS(5105), - [anon_sym_STAR_EQ] = ACTIONS(5105), - [anon_sym_SLASH_EQ] = ACTIONS(5105), - [anon_sym_PERCENT_EQ] = ACTIONS(5105), - [anon_sym_BANG_EQ] = ACTIONS(5103), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5105), - [anon_sym_EQ_EQ] = ACTIONS(5103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5105), - [anon_sym_LT_EQ] = ACTIONS(5105), - [anon_sym_GT_EQ] = ACTIONS(5105), - [anon_sym_BANGin] = ACTIONS(5105), - [anon_sym_is] = ACTIONS(5103), - [anon_sym_BANGis] = ACTIONS(5105), - [anon_sym_PLUS] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5103), - [anon_sym_SLASH] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_as_QMARK] = ACTIONS(5105), - [anon_sym_PLUS_PLUS] = ACTIONS(5105), - [anon_sym_DASH_DASH] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5103), - [anon_sym_BANG_BANG] = ACTIONS(5105), - [anon_sym_data] = ACTIONS(5103), - [anon_sym_inner] = ACTIONS(5103), - [anon_sym_value] = ACTIONS(5103), - [anon_sym_expect] = ACTIONS(5103), - [anon_sym_actual] = ACTIONS(5103), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5105), - [anon_sym_continue_AT] = ACTIONS(5105), - [anon_sym_break_AT] = ACTIONS(5105), - [anon_sym_this_AT] = ACTIONS(5105), - [anon_sym_super_AT] = ACTIONS(5105), - [sym_real_literal] = ACTIONS(5105), - [sym_integer_literal] = ACTIONS(5103), - [sym_hex_literal] = ACTIONS(5105), - [sym_bin_literal] = ACTIONS(5105), - [anon_sym_true] = ACTIONS(5103), - [anon_sym_false] = ACTIONS(5103), - [anon_sym_SQUOTE] = ACTIONS(5105), - [sym__backtick_identifier] = ACTIONS(5105), - [sym__automatic_semicolon] = ACTIONS(5105), - [sym_safe_nav] = ACTIONS(5105), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5105), - }, - [3275] = { - [sym_class_body] = STATE(3574), - [sym_type_constraints] = STATE(3419), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_RBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [anon_sym_DASH_GT] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - }, - [3276] = { - [sym_function_body] = STATE(3280), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4453), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_object] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_this] = ACTIONS(4453), - [anon_sym_super] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4453), - [sym_label] = ACTIONS(4453), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_null] = ACTIONS(4453), - [anon_sym_if] = ACTIONS(4453), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_when] = ACTIONS(4453), - [anon_sym_try] = ACTIONS(4453), - [anon_sym_throw] = ACTIONS(4453), - [anon_sym_return] = ACTIONS(4453), - [anon_sym_continue] = ACTIONS(4453), - [anon_sym_break] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_PLUS_EQ] = ACTIONS(4455), - [anon_sym_DASH_EQ] = ACTIONS(4455), - [anon_sym_STAR_EQ] = ACTIONS(4455), - [anon_sym_SLASH_EQ] = ACTIONS(4455), - [anon_sym_PERCENT_EQ] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4453), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4453), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4455), - [anon_sym_continue_AT] = ACTIONS(4455), - [anon_sym_break_AT] = ACTIONS(4455), - [anon_sym_this_AT] = ACTIONS(4455), - [anon_sym_super_AT] = ACTIONS(4455), - [sym_real_literal] = ACTIONS(4455), - [sym_integer_literal] = ACTIONS(4453), - [sym_hex_literal] = ACTIONS(4455), - [sym_bin_literal] = ACTIONS(4455), - [anon_sym_true] = ACTIONS(4453), - [anon_sym_false] = ACTIONS(4453), - [anon_sym_SQUOTE] = ACTIONS(4455), - [sym__backtick_identifier] = ACTIONS(4455), - [sym__automatic_semicolon] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4455), - }, - [3277] = { - [sym_function_body] = STATE(3314), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), - }, - [3278] = { - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(4196), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), - }, - [3279] = { - [sym_class_body] = STATE(3573), - [sym_type_constraints] = STATE(3421), - [sym__alpha_identifier] = ACTIONS(4461), - [anon_sym_AT] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_RBRACK] = ACTIONS(4463), - [anon_sym_as] = ACTIONS(4461), - [anon_sym_EQ] = ACTIONS(4461), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_RPAREN] = ACTIONS(4463), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [anon_sym_get] = ACTIONS(4461), - [anon_sym_set] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [anon_sym_DASH_GT] = ACTIONS(4463), - [sym_label] = ACTIONS(4463), - [anon_sym_in] = ACTIONS(4461), - [anon_sym_while] = ACTIONS(4461), - [anon_sym_DOT_DOT] = ACTIONS(4463), - [anon_sym_QMARK_COLON] = ACTIONS(4463), - [anon_sym_AMP_AMP] = ACTIONS(4463), - [anon_sym_PIPE_PIPE] = ACTIONS(4463), - [anon_sym_else] = ACTIONS(4461), - [anon_sym_COLON_COLON] = ACTIONS(4463), - [anon_sym_PLUS_EQ] = ACTIONS(4463), - [anon_sym_DASH_EQ] = ACTIONS(4463), - [anon_sym_STAR_EQ] = ACTIONS(4463), - [anon_sym_SLASH_EQ] = ACTIONS(4463), - [anon_sym_PERCENT_EQ] = ACTIONS(4463), - [anon_sym_BANG_EQ] = ACTIONS(4461), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4463), - [anon_sym_EQ_EQ] = ACTIONS(4461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4463), - [anon_sym_LT_EQ] = ACTIONS(4463), - [anon_sym_GT_EQ] = ACTIONS(4463), - [anon_sym_BANGin] = ACTIONS(4463), - [anon_sym_is] = ACTIONS(4461), - [anon_sym_BANGis] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(4461), - [anon_sym_as_QMARK] = ACTIONS(4463), - [anon_sym_PLUS_PLUS] = ACTIONS(4463), - [anon_sym_DASH_DASH] = ACTIONS(4463), - [anon_sym_BANG_BANG] = ACTIONS(4463), - [anon_sym_suspend] = ACTIONS(4461), - [anon_sym_sealed] = ACTIONS(4461), - [anon_sym_annotation] = ACTIONS(4461), - [anon_sym_data] = ACTIONS(4461), - [anon_sym_inner] = ACTIONS(4461), - [anon_sym_value] = ACTIONS(4461), - [anon_sym_override] = ACTIONS(4461), - [anon_sym_lateinit] = ACTIONS(4461), - [anon_sym_public] = ACTIONS(4461), - [anon_sym_private] = ACTIONS(4461), - [anon_sym_internal] = ACTIONS(4461), - [anon_sym_protected] = ACTIONS(4461), - [anon_sym_tailrec] = ACTIONS(4461), - [anon_sym_operator] = ACTIONS(4461), - [anon_sym_infix] = ACTIONS(4461), - [anon_sym_inline] = ACTIONS(4461), - [anon_sym_external] = ACTIONS(4461), - [sym_property_modifier] = ACTIONS(4461), - [anon_sym_abstract] = ACTIONS(4461), - [anon_sym_final] = ACTIONS(4461), - [anon_sym_open] = ACTIONS(4461), - [anon_sym_vararg] = ACTIONS(4461), - [anon_sym_noinline] = ACTIONS(4461), - [anon_sym_crossinline] = ACTIONS(4461), - [anon_sym_expect] = ACTIONS(4461), - [anon_sym_actual] = ACTIONS(4461), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4463), - [sym_safe_nav] = ACTIONS(4463), - [sym_multiline_comment] = ACTIONS(3), - }, - [3280] = { - [sym__alpha_identifier] = ACTIONS(5227), - [anon_sym_AT] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [anon_sym_as] = ACTIONS(5227), - [anon_sym_EQ] = ACTIONS(5227), - [anon_sym_fun] = ACTIONS(5227), - [anon_sym_LBRACE] = ACTIONS(5229), - [anon_sym_RBRACE] = ACTIONS(5229), - [anon_sym_LPAREN] = ACTIONS(5229), - [anon_sym_COMMA] = ACTIONS(5229), - [anon_sym_LT] = ACTIONS(5227), - [anon_sym_GT] = ACTIONS(5227), - [anon_sym_where] = ACTIONS(5227), - [anon_sym_object] = ACTIONS(5227), - [anon_sym_DOT] = ACTIONS(5227), - [anon_sym_SEMI] = ACTIONS(5229), - [anon_sym_get] = ACTIONS(5227), - [anon_sym_set] = ACTIONS(5227), - [anon_sym_this] = ACTIONS(5227), - [anon_sym_super] = ACTIONS(5227), - [anon_sym_STAR] = ACTIONS(5227), - [sym_label] = ACTIONS(5227), - [anon_sym_in] = ACTIONS(5227), - [anon_sym_DOT_DOT] = ACTIONS(5229), - [anon_sym_QMARK_COLON] = ACTIONS(5229), - [anon_sym_AMP_AMP] = ACTIONS(5229), - [anon_sym_PIPE_PIPE] = ACTIONS(5229), - [anon_sym_null] = ACTIONS(5227), - [anon_sym_if] = ACTIONS(5227), - [anon_sym_else] = ACTIONS(5227), - [anon_sym_when] = ACTIONS(5227), - [anon_sym_try] = ACTIONS(5227), - [anon_sym_throw] = ACTIONS(5227), - [anon_sym_return] = ACTIONS(5227), - [anon_sym_continue] = ACTIONS(5227), - [anon_sym_break] = ACTIONS(5227), - [anon_sym_COLON_COLON] = ACTIONS(5229), - [anon_sym_PLUS_EQ] = ACTIONS(5229), - [anon_sym_DASH_EQ] = ACTIONS(5229), - [anon_sym_STAR_EQ] = ACTIONS(5229), - [anon_sym_SLASH_EQ] = ACTIONS(5229), - [anon_sym_PERCENT_EQ] = ACTIONS(5229), - [anon_sym_BANG_EQ] = ACTIONS(5227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5229), - [anon_sym_EQ_EQ] = ACTIONS(5227), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5229), - [anon_sym_LT_EQ] = ACTIONS(5229), - [anon_sym_GT_EQ] = ACTIONS(5229), - [anon_sym_BANGin] = ACTIONS(5229), - [anon_sym_is] = ACTIONS(5227), - [anon_sym_BANGis] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5227), - [anon_sym_DASH] = ACTIONS(5227), - [anon_sym_SLASH] = ACTIONS(5227), - [anon_sym_PERCENT] = ACTIONS(5227), - [anon_sym_as_QMARK] = ACTIONS(5229), - [anon_sym_PLUS_PLUS] = ACTIONS(5229), - [anon_sym_DASH_DASH] = ACTIONS(5229), - [anon_sym_BANG] = ACTIONS(5227), - [anon_sym_BANG_BANG] = ACTIONS(5229), - [anon_sym_data] = ACTIONS(5227), - [anon_sym_inner] = ACTIONS(5227), - [anon_sym_value] = ACTIONS(5227), - [anon_sym_expect] = ACTIONS(5227), - [anon_sym_actual] = ACTIONS(5227), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5229), - [anon_sym_continue_AT] = ACTIONS(5229), - [anon_sym_break_AT] = ACTIONS(5229), - [anon_sym_this_AT] = ACTIONS(5229), - [anon_sym_super_AT] = ACTIONS(5229), - [sym_real_literal] = ACTIONS(5229), - [sym_integer_literal] = ACTIONS(5227), - [sym_hex_literal] = ACTIONS(5229), - [sym_bin_literal] = ACTIONS(5229), - [anon_sym_true] = ACTIONS(5227), - [anon_sym_false] = ACTIONS(5227), - [anon_sym_SQUOTE] = ACTIONS(5229), - [sym__backtick_identifier] = ACTIONS(5229), - [sym__automatic_semicolon] = ACTIONS(5229), - [sym_safe_nav] = ACTIONS(5229), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5229), - }, - [3281] = { [sym__alpha_identifier] = ACTIONS(5205), [anon_sym_AT] = ACTIONS(5207), [anon_sym_LBRACK] = ACTIONS(5207), [anon_sym_as] = ACTIONS(5205), [anon_sym_EQ] = ACTIONS(5205), - [anon_sym_fun] = ACTIONS(5205), [anon_sym_LBRACE] = ACTIONS(5207), [anon_sym_RBRACE] = ACTIONS(5207), [anon_sym_LPAREN] = ACTIONS(5207), @@ -387928,6 +382188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(5205), [anon_sym_where] = ACTIONS(5205), [anon_sym_object] = ACTIONS(5205), + [anon_sym_fun] = ACTIONS(5205), [anon_sym_DOT] = ACTIONS(5205), [anon_sym_SEMI] = ACTIONS(5207), [anon_sym_get] = ACTIONS(5205), @@ -387998,3528 +382259,6454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5207), }, - [3282] = { - [sym__alpha_identifier] = ACTIONS(5231), - [anon_sym_AT] = ACTIONS(5233), - [anon_sym_LBRACK] = ACTIONS(5233), - [anon_sym_as] = ACTIONS(5231), - [anon_sym_EQ] = ACTIONS(5231), - [anon_sym_fun] = ACTIONS(5231), - [anon_sym_LBRACE] = ACTIONS(5233), - [anon_sym_RBRACE] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5233), - [anon_sym_COMMA] = ACTIONS(5233), - [anon_sym_LT] = ACTIONS(5231), - [anon_sym_GT] = ACTIONS(5231), - [anon_sym_where] = ACTIONS(5231), - [anon_sym_object] = ACTIONS(5231), - [anon_sym_DOT] = ACTIONS(5231), - [anon_sym_SEMI] = ACTIONS(5233), - [anon_sym_get] = ACTIONS(5231), - [anon_sym_set] = ACTIONS(5231), - [anon_sym_this] = ACTIONS(5231), - [anon_sym_super] = ACTIONS(5231), - [anon_sym_STAR] = ACTIONS(5231), - [sym_label] = ACTIONS(5231), - [anon_sym_in] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5233), - [anon_sym_AMP_AMP] = ACTIONS(5233), - [anon_sym_PIPE_PIPE] = ACTIONS(5233), - [anon_sym_null] = ACTIONS(5231), - [anon_sym_if] = ACTIONS(5231), - [anon_sym_else] = ACTIONS(5231), - [anon_sym_when] = ACTIONS(5231), - [anon_sym_try] = ACTIONS(5231), - [anon_sym_throw] = ACTIONS(5231), - [anon_sym_return] = ACTIONS(5231), - [anon_sym_continue] = ACTIONS(5231), - [anon_sym_break] = ACTIONS(5231), - [anon_sym_COLON_COLON] = ACTIONS(5233), - [anon_sym_PLUS_EQ] = ACTIONS(5233), - [anon_sym_DASH_EQ] = ACTIONS(5233), - [anon_sym_STAR_EQ] = ACTIONS(5233), - [anon_sym_SLASH_EQ] = ACTIONS(5233), - [anon_sym_PERCENT_EQ] = ACTIONS(5233), - [anon_sym_BANG_EQ] = ACTIONS(5231), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5233), - [anon_sym_EQ_EQ] = ACTIONS(5231), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5233), - [anon_sym_LT_EQ] = ACTIONS(5233), - [anon_sym_GT_EQ] = ACTIONS(5233), - [anon_sym_BANGin] = ACTIONS(5233), - [anon_sym_is] = ACTIONS(5231), - [anon_sym_BANGis] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_SLASH] = ACTIONS(5231), - [anon_sym_PERCENT] = ACTIONS(5231), - [anon_sym_as_QMARK] = ACTIONS(5233), - [anon_sym_PLUS_PLUS] = ACTIONS(5233), - [anon_sym_DASH_DASH] = ACTIONS(5233), - [anon_sym_BANG] = ACTIONS(5231), - [anon_sym_BANG_BANG] = ACTIONS(5233), - [anon_sym_data] = ACTIONS(5231), - [anon_sym_inner] = ACTIONS(5231), - [anon_sym_value] = ACTIONS(5231), - [anon_sym_expect] = ACTIONS(5231), - [anon_sym_actual] = ACTIONS(5231), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5233), - [anon_sym_continue_AT] = ACTIONS(5233), - [anon_sym_break_AT] = ACTIONS(5233), - [anon_sym_this_AT] = ACTIONS(5233), - [anon_sym_super_AT] = ACTIONS(5233), - [sym_real_literal] = ACTIONS(5233), - [sym_integer_literal] = ACTIONS(5231), - [sym_hex_literal] = ACTIONS(5233), - [sym_bin_literal] = ACTIONS(5233), - [anon_sym_true] = ACTIONS(5231), - [anon_sym_false] = ACTIONS(5231), - [anon_sym_SQUOTE] = ACTIONS(5233), - [sym__backtick_identifier] = ACTIONS(5233), - [sym__automatic_semicolon] = ACTIONS(5233), - [sym_safe_nav] = ACTIONS(5233), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5233), + [3239] = { + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, - [3283] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_RBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_RPAREN] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [anon_sym_DASH_GT] = ACTIONS(4379), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_while] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_catch] = ACTIONS(4377), - [anon_sym_finally] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), + [3240] = { + [sym__alpha_identifier] = ACTIONS(5195), + [anon_sym_AT] = ACTIONS(5197), + [anon_sym_LBRACK] = ACTIONS(5197), + [anon_sym_as] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5197), + [anon_sym_RBRACE] = ACTIONS(5197), + [anon_sym_LPAREN] = ACTIONS(5197), + [anon_sym_COMMA] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5195), + [anon_sym_GT] = ACTIONS(5195), + [anon_sym_where] = ACTIONS(5195), + [anon_sym_object] = ACTIONS(5195), + [anon_sym_fun] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5195), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym_get] = ACTIONS(5195), + [anon_sym_set] = ACTIONS(5195), + [anon_sym_this] = ACTIONS(5195), + [anon_sym_super] = ACTIONS(5195), + [anon_sym_STAR] = ACTIONS(5195), + [sym_label] = ACTIONS(5195), + [anon_sym_in] = ACTIONS(5195), + [anon_sym_DOT_DOT] = ACTIONS(5197), + [anon_sym_QMARK_COLON] = ACTIONS(5197), + [anon_sym_AMP_AMP] = ACTIONS(5197), + [anon_sym_PIPE_PIPE] = ACTIONS(5197), + [anon_sym_null] = ACTIONS(5195), + [anon_sym_if] = ACTIONS(5195), + [anon_sym_else] = ACTIONS(5195), + [anon_sym_when] = ACTIONS(5195), + [anon_sym_try] = ACTIONS(5195), + [anon_sym_throw] = ACTIONS(5195), + [anon_sym_return] = ACTIONS(5195), + [anon_sym_continue] = ACTIONS(5195), + [anon_sym_break] = ACTIONS(5195), + [anon_sym_COLON_COLON] = ACTIONS(5197), + [anon_sym_PLUS_EQ] = ACTIONS(5197), + [anon_sym_DASH_EQ] = ACTIONS(5197), + [anon_sym_STAR_EQ] = ACTIONS(5197), + [anon_sym_SLASH_EQ] = ACTIONS(5197), + [anon_sym_PERCENT_EQ] = ACTIONS(5197), + [anon_sym_BANG_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5197), + [anon_sym_EQ_EQ] = ACTIONS(5195), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5197), + [anon_sym_LT_EQ] = ACTIONS(5197), + [anon_sym_GT_EQ] = ACTIONS(5197), + [anon_sym_BANGin] = ACTIONS(5197), + [anon_sym_is] = ACTIONS(5195), + [anon_sym_BANGis] = ACTIONS(5197), + [anon_sym_PLUS] = ACTIONS(5195), + [anon_sym_DASH] = ACTIONS(5195), + [anon_sym_SLASH] = ACTIONS(5195), + [anon_sym_PERCENT] = ACTIONS(5195), + [anon_sym_as_QMARK] = ACTIONS(5197), + [anon_sym_PLUS_PLUS] = ACTIONS(5197), + [anon_sym_DASH_DASH] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5195), + [anon_sym_BANG_BANG] = ACTIONS(5197), + [anon_sym_data] = ACTIONS(5195), + [anon_sym_inner] = ACTIONS(5195), + [anon_sym_value] = ACTIONS(5195), + [anon_sym_expect] = ACTIONS(5195), + [anon_sym_actual] = ACTIONS(5195), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5197), + [anon_sym_continue_AT] = ACTIONS(5197), + [anon_sym_break_AT] = ACTIONS(5197), + [anon_sym_this_AT] = ACTIONS(5197), + [anon_sym_super_AT] = ACTIONS(5197), + [sym_real_literal] = ACTIONS(5197), + [sym_integer_literal] = ACTIONS(5195), + [sym_hex_literal] = ACTIONS(5197), + [sym_bin_literal] = ACTIONS(5197), + [anon_sym_true] = ACTIONS(5195), + [anon_sym_false] = ACTIONS(5195), + [anon_sym_SQUOTE] = ACTIONS(5197), + [sym__backtick_identifier] = ACTIONS(5197), + [sym__automatic_semicolon] = ACTIONS(5197), + [sym_safe_nav] = ACTIONS(5197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5197), + }, + [3241] = { + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_object] = ACTIONS(4644), + [anon_sym_fun] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_this] = ACTIONS(4644), + [anon_sym_super] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [sym_label] = ACTIONS(4644), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_null] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_when] = ACTIONS(4644), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_throw] = ACTIONS(4644), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4646), + [anon_sym_continue_AT] = ACTIONS(4646), + [anon_sym_break_AT] = ACTIONS(4646), + [anon_sym_this_AT] = ACTIONS(4646), + [anon_sym_super_AT] = ACTIONS(4646), + [sym_real_literal] = ACTIONS(4646), + [sym_integer_literal] = ACTIONS(4644), + [sym_hex_literal] = ACTIONS(4646), + [sym_bin_literal] = ACTIONS(4646), + [anon_sym_true] = ACTIONS(4644), + [anon_sym_false] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4646), + [sym__backtick_identifier] = ACTIONS(4646), + [sym__automatic_semicolon] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4646), + }, + [3242] = { + [sym__alpha_identifier] = ACTIONS(4790), + [anon_sym_AT] = ACTIONS(4792), + [anon_sym_LBRACK] = ACTIONS(4792), + [anon_sym_as] = ACTIONS(4790), + [anon_sym_EQ] = ACTIONS(4790), + [anon_sym_LBRACE] = ACTIONS(4792), + [anon_sym_RBRACE] = ACTIONS(4792), + [anon_sym_LPAREN] = ACTIONS(4792), + [anon_sym_COMMA] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4790), + [anon_sym_GT] = ACTIONS(4790), + [anon_sym_where] = ACTIONS(4790), + [anon_sym_object] = ACTIONS(4790), + [anon_sym_fun] = ACTIONS(4790), + [anon_sym_DOT] = ACTIONS(4790), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_get] = ACTIONS(4790), + [anon_sym_set] = ACTIONS(4790), + [anon_sym_this] = ACTIONS(4790), + [anon_sym_super] = ACTIONS(4790), + [anon_sym_STAR] = ACTIONS(4790), + [sym_label] = ACTIONS(4790), + [anon_sym_in] = ACTIONS(4790), + [anon_sym_DOT_DOT] = ACTIONS(4792), + [anon_sym_QMARK_COLON] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_null] = ACTIONS(4790), + [anon_sym_if] = ACTIONS(4790), + [anon_sym_else] = ACTIONS(4790), + [anon_sym_when] = ACTIONS(4790), + [anon_sym_try] = ACTIONS(4790), + [anon_sym_throw] = ACTIONS(4790), + [anon_sym_return] = ACTIONS(4790), + [anon_sym_continue] = ACTIONS(4790), + [anon_sym_break] = ACTIONS(4790), + [anon_sym_COLON_COLON] = ACTIONS(4792), + [anon_sym_PLUS_EQ] = ACTIONS(4792), + [anon_sym_DASH_EQ] = ACTIONS(4792), + [anon_sym_STAR_EQ] = ACTIONS(4792), + [anon_sym_SLASH_EQ] = ACTIONS(4792), + [anon_sym_PERCENT_EQ] = ACTIONS(4792), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4792), + [anon_sym_LT_EQ] = ACTIONS(4792), + [anon_sym_GT_EQ] = ACTIONS(4792), + [anon_sym_BANGin] = ACTIONS(4792), + [anon_sym_is] = ACTIONS(4790), + [anon_sym_BANGis] = ACTIONS(4792), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4790), + [anon_sym_SLASH] = ACTIONS(4790), + [anon_sym_PERCENT] = ACTIONS(4790), + [anon_sym_as_QMARK] = ACTIONS(4792), + [anon_sym_PLUS_PLUS] = ACTIONS(4792), + [anon_sym_DASH_DASH] = ACTIONS(4792), + [anon_sym_BANG] = ACTIONS(4790), + [anon_sym_BANG_BANG] = ACTIONS(4792), + [anon_sym_data] = ACTIONS(4790), + [anon_sym_inner] = ACTIONS(4790), + [anon_sym_value] = ACTIONS(4790), + [anon_sym_expect] = ACTIONS(4790), + [anon_sym_actual] = ACTIONS(4790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4792), + [anon_sym_continue_AT] = ACTIONS(4792), + [anon_sym_break_AT] = ACTIONS(4792), + [anon_sym_this_AT] = ACTIONS(4792), + [anon_sym_super_AT] = ACTIONS(4792), + [sym_real_literal] = ACTIONS(4792), + [sym_integer_literal] = ACTIONS(4790), + [sym_hex_literal] = ACTIONS(4792), + [sym_bin_literal] = ACTIONS(4792), + [anon_sym_true] = ACTIONS(4790), + [anon_sym_false] = ACTIONS(4790), + [anon_sym_SQUOTE] = ACTIONS(4792), + [sym__backtick_identifier] = ACTIONS(4792), + [sym__automatic_semicolon] = ACTIONS(4792), + [sym_safe_nav] = ACTIONS(4792), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4792), }, - [3284] = { - [sym__alpha_identifier] = ACTIONS(4331), - [anon_sym_AT] = ACTIONS(4333), - [anon_sym_LBRACK] = ACTIONS(4333), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_EQ] = ACTIONS(4331), - [anon_sym_fun] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4333), - [anon_sym_RBRACE] = ACTIONS(4333), - [anon_sym_LPAREN] = ACTIONS(4333), - [anon_sym_COMMA] = ACTIONS(4333), - [anon_sym_LT] = ACTIONS(4331), - [anon_sym_GT] = ACTIONS(4331), - [anon_sym_where] = ACTIONS(4331), - [anon_sym_object] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_SEMI] = ACTIONS(4333), - [anon_sym_get] = ACTIONS(4331), - [anon_sym_set] = ACTIONS(4331), - [anon_sym_this] = ACTIONS(4331), - [anon_sym_super] = ACTIONS(4331), - [anon_sym_STAR] = ACTIONS(4331), - [sym_label] = ACTIONS(4331), - [anon_sym_in] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4333), - [anon_sym_QMARK_COLON] = ACTIONS(4333), - [anon_sym_AMP_AMP] = ACTIONS(4333), - [anon_sym_PIPE_PIPE] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(4331), - [anon_sym_if] = ACTIONS(4331), - [anon_sym_else] = ACTIONS(4331), - [anon_sym_when] = ACTIONS(4331), - [anon_sym_try] = ACTIONS(4331), - [anon_sym_throw] = ACTIONS(4331), - [anon_sym_return] = ACTIONS(4331), - [anon_sym_continue] = ACTIONS(4331), - [anon_sym_break] = ACTIONS(4331), - [anon_sym_COLON_COLON] = ACTIONS(4333), - [anon_sym_PLUS_EQ] = ACTIONS(4333), - [anon_sym_DASH_EQ] = ACTIONS(4333), - [anon_sym_STAR_EQ] = ACTIONS(4333), - [anon_sym_SLASH_EQ] = ACTIONS(4333), - [anon_sym_PERCENT_EQ] = ACTIONS(4333), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), - [anon_sym_LT_EQ] = ACTIONS(4333), - [anon_sym_GT_EQ] = ACTIONS(4333), - [anon_sym_BANGin] = ACTIONS(4333), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_BANGis] = ACTIONS(4333), - [anon_sym_PLUS] = ACTIONS(4331), - [anon_sym_DASH] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4331), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_as_QMARK] = ACTIONS(4333), - [anon_sym_PLUS_PLUS] = ACTIONS(4333), - [anon_sym_DASH_DASH] = ACTIONS(4333), - [anon_sym_BANG] = ACTIONS(4331), - [anon_sym_BANG_BANG] = ACTIONS(4333), - [anon_sym_data] = ACTIONS(4331), - [anon_sym_inner] = ACTIONS(4331), - [anon_sym_value] = ACTIONS(4331), - [anon_sym_expect] = ACTIONS(4331), - [anon_sym_actual] = ACTIONS(4331), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4333), - [anon_sym_continue_AT] = ACTIONS(4333), - [anon_sym_break_AT] = ACTIONS(4333), - [anon_sym_this_AT] = ACTIONS(4333), - [anon_sym_super_AT] = ACTIONS(4333), - [sym_real_literal] = ACTIONS(4333), - [sym_integer_literal] = ACTIONS(4331), - [sym_hex_literal] = ACTIONS(4333), - [sym_bin_literal] = ACTIONS(4333), - [anon_sym_true] = ACTIONS(4331), - [anon_sym_false] = ACTIONS(4331), - [anon_sym_SQUOTE] = ACTIONS(4333), - [sym__backtick_identifier] = ACTIONS(4333), - [sym__automatic_semicolon] = ACTIONS(4333), - [sym_safe_nav] = ACTIONS(4333), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4333), + [3243] = { + [sym__alpha_identifier] = ACTIONS(4812), + [anon_sym_AT] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_where] = ACTIONS(4812), + [anon_sym_object] = ACTIONS(4812), + [anon_sym_fun] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4814), + [anon_sym_get] = ACTIONS(4812), + [anon_sym_set] = ACTIONS(4812), + [anon_sym_this] = ACTIONS(4812), + [anon_sym_super] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [sym_label] = ACTIONS(4812), + [anon_sym_in] = ACTIONS(4812), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_QMARK_COLON] = ACTIONS(4814), + [anon_sym_AMP_AMP] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4814), + [anon_sym_null] = ACTIONS(4812), + [anon_sym_if] = ACTIONS(4812), + [anon_sym_else] = ACTIONS(4812), + [anon_sym_when] = ACTIONS(4812), + [anon_sym_try] = ACTIONS(4812), + [anon_sym_throw] = ACTIONS(4812), + [anon_sym_return] = ACTIONS(4812), + [anon_sym_continue] = ACTIONS(4812), + [anon_sym_break] = ACTIONS(4812), + [anon_sym_COLON_COLON] = ACTIONS(4814), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4814), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_BANGin] = ACTIONS(4814), + [anon_sym_is] = ACTIONS(4812), + [anon_sym_BANGis] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4812), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_as_QMARK] = ACTIONS(4814), + [anon_sym_PLUS_PLUS] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_BANG_BANG] = ACTIONS(4814), + [anon_sym_data] = ACTIONS(4812), + [anon_sym_inner] = ACTIONS(4812), + [anon_sym_value] = ACTIONS(4812), + [anon_sym_expect] = ACTIONS(4812), + [anon_sym_actual] = ACTIONS(4812), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4814), + [anon_sym_continue_AT] = ACTIONS(4814), + [anon_sym_break_AT] = ACTIONS(4814), + [anon_sym_this_AT] = ACTIONS(4814), + [anon_sym_super_AT] = ACTIONS(4814), + [sym_real_literal] = ACTIONS(4814), + [sym_integer_literal] = ACTIONS(4812), + [sym_hex_literal] = ACTIONS(4814), + [sym_bin_literal] = ACTIONS(4814), + [anon_sym_true] = ACTIONS(4812), + [anon_sym_false] = ACTIONS(4812), + [anon_sym_SQUOTE] = ACTIONS(4814), + [sym__backtick_identifier] = ACTIONS(4814), + [sym__automatic_semicolon] = ACTIONS(4814), + [sym_safe_nav] = ACTIONS(4814), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4814), }, - [3285] = { - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_fun] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_object] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(1826), - [anon_sym_set] = ACTIONS(1826), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_super] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_when] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_data] = ACTIONS(1826), - [anon_sym_inner] = ACTIONS(1826), - [anon_sym_value] = ACTIONS(1826), - [anon_sym_expect] = ACTIONS(1826), - [anon_sym_actual] = ACTIONS(1826), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1828), - [anon_sym_continue_AT] = ACTIONS(1828), - [anon_sym_break_AT] = ACTIONS(1828), - [anon_sym_this_AT] = ACTIONS(1828), - [anon_sym_super_AT] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [sym_hex_literal] = ACTIONS(1828), - [sym_bin_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1828), + [3244] = { + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [3286] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_fun] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(6772), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_where] = ACTIONS(5177), - [anon_sym_object] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_this] = ACTIONS(5177), - [anon_sym_super] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [sym_label] = ACTIONS(5177), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_null] = ACTIONS(5177), - [anon_sym_if] = ACTIONS(5177), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_when] = ACTIONS(5177), - [anon_sym_try] = ACTIONS(5177), - [anon_sym_throw] = ACTIONS(5177), - [anon_sym_return] = ACTIONS(5177), - [anon_sym_continue] = ACTIONS(5177), - [anon_sym_break] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_PLUS_EQ] = ACTIONS(5179), - [anon_sym_DASH_EQ] = ACTIONS(5179), - [anon_sym_STAR_EQ] = ACTIONS(5179), - [anon_sym_SLASH_EQ] = ACTIONS(5179), - [anon_sym_PERCENT_EQ] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5177), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5179), - [anon_sym_continue_AT] = ACTIONS(5179), - [anon_sym_break_AT] = ACTIONS(5179), - [anon_sym_this_AT] = ACTIONS(5179), - [anon_sym_super_AT] = ACTIONS(5179), - [sym_real_literal] = ACTIONS(5179), - [sym_integer_literal] = ACTIONS(5177), - [sym_hex_literal] = ACTIONS(5179), - [sym_bin_literal] = ACTIONS(5179), - [anon_sym_true] = ACTIONS(5177), - [anon_sym_false] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5179), - [sym__backtick_identifier] = ACTIONS(5179), - [sym__automatic_semicolon] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5179), + [3245] = { + [sym__alpha_identifier] = ACTIONS(4804), + [anon_sym_AT] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_as] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4804), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_where] = ACTIONS(4804), + [anon_sym_object] = ACTIONS(4804), + [anon_sym_fun] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4806), + [anon_sym_get] = ACTIONS(4804), + [anon_sym_set] = ACTIONS(4804), + [anon_sym_this] = ACTIONS(4804), + [anon_sym_super] = ACTIONS(4804), + [anon_sym_STAR] = ACTIONS(4804), + [sym_label] = ACTIONS(4804), + [anon_sym_in] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4806), + [anon_sym_QMARK_COLON] = ACTIONS(4806), + [anon_sym_AMP_AMP] = ACTIONS(4806), + [anon_sym_PIPE_PIPE] = ACTIONS(4806), + [anon_sym_null] = ACTIONS(4804), + [anon_sym_if] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_when] = ACTIONS(4804), + [anon_sym_try] = ACTIONS(4804), + [anon_sym_throw] = ACTIONS(4804), + [anon_sym_return] = ACTIONS(4804), + [anon_sym_continue] = ACTIONS(4804), + [anon_sym_break] = ACTIONS(4804), + [anon_sym_COLON_COLON] = ACTIONS(4806), + [anon_sym_PLUS_EQ] = ACTIONS(4806), + [anon_sym_DASH_EQ] = ACTIONS(4806), + [anon_sym_STAR_EQ] = ACTIONS(4806), + [anon_sym_SLASH_EQ] = ACTIONS(4806), + [anon_sym_PERCENT_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4806), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_BANGin] = ACTIONS(4806), + [anon_sym_is] = ACTIONS(4804), + [anon_sym_BANGis] = ACTIONS(4806), + [anon_sym_PLUS] = ACTIONS(4804), + [anon_sym_DASH] = ACTIONS(4804), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_PERCENT] = ACTIONS(4804), + [anon_sym_as_QMARK] = ACTIONS(4806), + [anon_sym_PLUS_PLUS] = ACTIONS(4806), + [anon_sym_DASH_DASH] = ACTIONS(4806), + [anon_sym_BANG] = ACTIONS(4804), + [anon_sym_BANG_BANG] = ACTIONS(4806), + [anon_sym_data] = ACTIONS(4804), + [anon_sym_inner] = ACTIONS(4804), + [anon_sym_value] = ACTIONS(4804), + [anon_sym_expect] = ACTIONS(4804), + [anon_sym_actual] = ACTIONS(4804), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4806), + [anon_sym_continue_AT] = ACTIONS(4806), + [anon_sym_break_AT] = ACTIONS(4806), + [anon_sym_this_AT] = ACTIONS(4806), + [anon_sym_super_AT] = ACTIONS(4806), + [sym_real_literal] = ACTIONS(4806), + [sym_integer_literal] = ACTIONS(4804), + [sym_hex_literal] = ACTIONS(4806), + [sym_bin_literal] = ACTIONS(4806), + [anon_sym_true] = ACTIONS(4804), + [anon_sym_false] = ACTIONS(4804), + [anon_sym_SQUOTE] = ACTIONS(4806), + [sym__backtick_identifier] = ACTIONS(4806), + [sym__automatic_semicolon] = ACTIONS(4806), + [sym_safe_nav] = ACTIONS(4806), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4806), }, - [3287] = { - [sym__alpha_identifier] = ACTIONS(5171), - [anon_sym_AT] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_fun] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(6774), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_where] = ACTIONS(5171), - [anon_sym_object] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5173), - [anon_sym_get] = ACTIONS(5171), - [anon_sym_set] = ACTIONS(5171), - [anon_sym_this] = ACTIONS(5171), - [anon_sym_super] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [sym_label] = ACTIONS(5171), - [anon_sym_in] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5173), - [anon_sym_QMARK_COLON] = ACTIONS(5173), - [anon_sym_AMP_AMP] = ACTIONS(5173), - [anon_sym_PIPE_PIPE] = ACTIONS(5173), - [anon_sym_null] = ACTIONS(5171), - [anon_sym_if] = ACTIONS(5171), - [anon_sym_else] = ACTIONS(5171), - [anon_sym_when] = ACTIONS(5171), - [anon_sym_try] = ACTIONS(5171), - [anon_sym_throw] = ACTIONS(5171), - [anon_sym_return] = ACTIONS(5171), - [anon_sym_continue] = ACTIONS(5171), - [anon_sym_break] = ACTIONS(5171), - [anon_sym_COLON_COLON] = ACTIONS(5173), - [anon_sym_PLUS_EQ] = ACTIONS(5173), - [anon_sym_DASH_EQ] = ACTIONS(5173), - [anon_sym_STAR_EQ] = ACTIONS(5173), - [anon_sym_SLASH_EQ] = ACTIONS(5173), - [anon_sym_PERCENT_EQ] = ACTIONS(5173), - [anon_sym_BANG_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), - [anon_sym_LT_EQ] = ACTIONS(5173), - [anon_sym_GT_EQ] = ACTIONS(5173), - [anon_sym_BANGin] = ACTIONS(5173), - [anon_sym_is] = ACTIONS(5171), - [anon_sym_BANGis] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_as_QMARK] = ACTIONS(5173), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_BANG_BANG] = ACTIONS(5173), - [anon_sym_data] = ACTIONS(5171), - [anon_sym_inner] = ACTIONS(5171), - [anon_sym_value] = ACTIONS(5171), - [anon_sym_expect] = ACTIONS(5171), - [anon_sym_actual] = ACTIONS(5171), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5173), - [anon_sym_continue_AT] = ACTIONS(5173), - [anon_sym_break_AT] = ACTIONS(5173), - [anon_sym_this_AT] = ACTIONS(5173), - [anon_sym_super_AT] = ACTIONS(5173), - [sym_real_literal] = ACTIONS(5173), - [sym_integer_literal] = ACTIONS(5171), - [sym_hex_literal] = ACTIONS(5173), - [sym_bin_literal] = ACTIONS(5173), - [anon_sym_true] = ACTIONS(5171), - [anon_sym_false] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5173), - [sym__backtick_identifier] = ACTIONS(5173), - [sym__automatic_semicolon] = ACTIONS(5173), - [sym_safe_nav] = ACTIONS(5173), + [3246] = { + [sym__alpha_identifier] = ACTIONS(5191), + [anon_sym_AT] = ACTIONS(5193), + [anon_sym_LBRACK] = ACTIONS(5193), + [anon_sym_as] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(5193), + [anon_sym_RBRACE] = ACTIONS(5193), + [anon_sym_LPAREN] = ACTIONS(5193), + [anon_sym_COMMA] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5191), + [anon_sym_GT] = ACTIONS(5191), + [anon_sym_where] = ACTIONS(5191), + [anon_sym_object] = ACTIONS(5191), + [anon_sym_fun] = ACTIONS(5191), + [anon_sym_DOT] = ACTIONS(5191), + [anon_sym_SEMI] = ACTIONS(5193), + [anon_sym_get] = ACTIONS(5191), + [anon_sym_set] = ACTIONS(5191), + [anon_sym_this] = ACTIONS(5191), + [anon_sym_super] = ACTIONS(5191), + [anon_sym_STAR] = ACTIONS(5191), + [sym_label] = ACTIONS(5191), + [anon_sym_in] = ACTIONS(5191), + [anon_sym_DOT_DOT] = ACTIONS(5193), + [anon_sym_QMARK_COLON] = ACTIONS(5193), + [anon_sym_AMP_AMP] = ACTIONS(5193), + [anon_sym_PIPE_PIPE] = ACTIONS(5193), + [anon_sym_null] = ACTIONS(5191), + [anon_sym_if] = ACTIONS(5191), + [anon_sym_else] = ACTIONS(5191), + [anon_sym_when] = ACTIONS(5191), + [anon_sym_try] = ACTIONS(5191), + [anon_sym_throw] = ACTIONS(5191), + [anon_sym_return] = ACTIONS(5191), + [anon_sym_continue] = ACTIONS(5191), + [anon_sym_break] = ACTIONS(5191), + [anon_sym_COLON_COLON] = ACTIONS(5193), + [anon_sym_PLUS_EQ] = ACTIONS(5193), + [anon_sym_DASH_EQ] = ACTIONS(5193), + [anon_sym_STAR_EQ] = ACTIONS(5193), + [anon_sym_SLASH_EQ] = ACTIONS(5193), + [anon_sym_PERCENT_EQ] = ACTIONS(5193), + [anon_sym_BANG_EQ] = ACTIONS(5191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5193), + [anon_sym_EQ_EQ] = ACTIONS(5191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5193), + [anon_sym_LT_EQ] = ACTIONS(5193), + [anon_sym_GT_EQ] = ACTIONS(5193), + [anon_sym_BANGin] = ACTIONS(5193), + [anon_sym_is] = ACTIONS(5191), + [anon_sym_BANGis] = ACTIONS(5193), + [anon_sym_PLUS] = ACTIONS(5191), + [anon_sym_DASH] = ACTIONS(5191), + [anon_sym_SLASH] = ACTIONS(5191), + [anon_sym_PERCENT] = ACTIONS(5191), + [anon_sym_as_QMARK] = ACTIONS(5193), + [anon_sym_PLUS_PLUS] = ACTIONS(5193), + [anon_sym_DASH_DASH] = ACTIONS(5193), + [anon_sym_BANG] = ACTIONS(5191), + [anon_sym_BANG_BANG] = ACTIONS(5193), + [anon_sym_data] = ACTIONS(5191), + [anon_sym_inner] = ACTIONS(5191), + [anon_sym_value] = ACTIONS(5191), + [anon_sym_expect] = ACTIONS(5191), + [anon_sym_actual] = ACTIONS(5191), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5193), + [anon_sym_continue_AT] = ACTIONS(5193), + [anon_sym_break_AT] = ACTIONS(5193), + [anon_sym_this_AT] = ACTIONS(5193), + [anon_sym_super_AT] = ACTIONS(5193), + [sym_real_literal] = ACTIONS(5193), + [sym_integer_literal] = ACTIONS(5191), + [sym_hex_literal] = ACTIONS(5193), + [sym_bin_literal] = ACTIONS(5193), + [anon_sym_true] = ACTIONS(5191), + [anon_sym_false] = ACTIONS(5191), + [anon_sym_SQUOTE] = ACTIONS(5193), + [sym__backtick_identifier] = ACTIONS(5193), + [sym__automatic_semicolon] = ACTIONS(5193), + [sym_safe_nav] = ACTIONS(5193), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5193), + }, + [3247] = { + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_object] = ACTIONS(4493), + [anon_sym_fun] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_this] = ACTIONS(4493), + [anon_sym_super] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_null] = ACTIONS(4493), + [anon_sym_if] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_when] = ACTIONS(4493), + [anon_sym_try] = ACTIONS(4493), + [anon_sym_throw] = ACTIONS(4493), + [anon_sym_return] = ACTIONS(4493), + [anon_sym_continue] = ACTIONS(4493), + [anon_sym_break] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4495), + [anon_sym_continue_AT] = ACTIONS(4495), + [anon_sym_break_AT] = ACTIONS(4495), + [anon_sym_this_AT] = ACTIONS(4495), + [anon_sym_super_AT] = ACTIONS(4495), + [sym_real_literal] = ACTIONS(4495), + [sym_integer_literal] = ACTIONS(4493), + [sym_hex_literal] = ACTIONS(4495), + [sym_bin_literal] = ACTIONS(4495), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [anon_sym_SQUOTE] = ACTIONS(4495), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4495), + }, + [3248] = { + [sym__alpha_identifier] = ACTIONS(5135), + [anon_sym_AT] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_EQ] = ACTIONS(5135), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_where] = ACTIONS(5135), + [anon_sym_object] = ACTIONS(5135), + [anon_sym_fun] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(5137), + [anon_sym_get] = ACTIONS(5135), + [anon_sym_set] = ACTIONS(5135), + [anon_sym_this] = ACTIONS(5135), + [anon_sym_super] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [sym_label] = ACTIONS(5135), + [anon_sym_in] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5137), + [anon_sym_QMARK_COLON] = ACTIONS(5137), + [anon_sym_AMP_AMP] = ACTIONS(5137), + [anon_sym_PIPE_PIPE] = ACTIONS(5137), + [anon_sym_null] = ACTIONS(5135), + [anon_sym_if] = ACTIONS(5135), + [anon_sym_else] = ACTIONS(5135), + [anon_sym_when] = ACTIONS(5135), + [anon_sym_try] = ACTIONS(5135), + [anon_sym_throw] = ACTIONS(5135), + [anon_sym_return] = ACTIONS(5135), + [anon_sym_continue] = ACTIONS(5135), + [anon_sym_break] = ACTIONS(5135), + [anon_sym_COLON_COLON] = ACTIONS(5137), + [anon_sym_PLUS_EQ] = ACTIONS(5137), + [anon_sym_DASH_EQ] = ACTIONS(5137), + [anon_sym_STAR_EQ] = ACTIONS(5137), + [anon_sym_SLASH_EQ] = ACTIONS(5137), + [anon_sym_PERCENT_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5137), + [anon_sym_LT_EQ] = ACTIONS(5137), + [anon_sym_GT_EQ] = ACTIONS(5137), + [anon_sym_BANGin] = ACTIONS(5137), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_BANGis] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_as_QMARK] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5137), + [anon_sym_DASH_DASH] = ACTIONS(5137), + [anon_sym_BANG] = ACTIONS(5135), + [anon_sym_BANG_BANG] = ACTIONS(5137), + [anon_sym_data] = ACTIONS(5135), + [anon_sym_inner] = ACTIONS(5135), + [anon_sym_value] = ACTIONS(5135), + [anon_sym_expect] = ACTIONS(5135), + [anon_sym_actual] = ACTIONS(5135), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5137), + [anon_sym_continue_AT] = ACTIONS(5137), + [anon_sym_break_AT] = ACTIONS(5137), + [anon_sym_this_AT] = ACTIONS(5137), + [anon_sym_super_AT] = ACTIONS(5137), + [sym_real_literal] = ACTIONS(5137), + [sym_integer_literal] = ACTIONS(5135), + [sym_hex_literal] = ACTIONS(5137), + [sym_bin_literal] = ACTIONS(5137), + [anon_sym_true] = ACTIONS(5135), + [anon_sym_false] = ACTIONS(5135), + [anon_sym_SQUOTE] = ACTIONS(5137), + [sym__backtick_identifier] = ACTIONS(5137), + [sym__automatic_semicolon] = ACTIONS(5137), + [sym_safe_nav] = ACTIONS(5137), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5137), + }, + [3249] = { + [sym__alpha_identifier] = ACTIONS(5117), + [anon_sym_AT] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [anon_sym_as] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5119), + [anon_sym_RBRACE] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5119), + [anon_sym_COMMA] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5117), + [anon_sym_GT] = ACTIONS(5117), + [anon_sym_where] = ACTIONS(5117), + [anon_sym_object] = ACTIONS(5117), + [anon_sym_fun] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5117), + [anon_sym_SEMI] = ACTIONS(5119), + [anon_sym_get] = ACTIONS(5117), + [anon_sym_set] = ACTIONS(5117), + [anon_sym_this] = ACTIONS(5117), + [anon_sym_super] = ACTIONS(5117), + [anon_sym_STAR] = ACTIONS(5117), + [sym_label] = ACTIONS(5117), + [anon_sym_in] = ACTIONS(5117), + [anon_sym_DOT_DOT] = ACTIONS(5119), + [anon_sym_QMARK_COLON] = ACTIONS(5119), + [anon_sym_AMP_AMP] = ACTIONS(5119), + [anon_sym_PIPE_PIPE] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5117), + [anon_sym_if] = ACTIONS(5117), + [anon_sym_else] = ACTIONS(5117), + [anon_sym_when] = ACTIONS(5117), + [anon_sym_try] = ACTIONS(5117), + [anon_sym_throw] = ACTIONS(5117), + [anon_sym_return] = ACTIONS(5117), + [anon_sym_continue] = ACTIONS(5117), + [anon_sym_break] = ACTIONS(5117), + [anon_sym_COLON_COLON] = ACTIONS(5119), + [anon_sym_PLUS_EQ] = ACTIONS(5119), + [anon_sym_DASH_EQ] = ACTIONS(5119), + [anon_sym_STAR_EQ] = ACTIONS(5119), + [anon_sym_SLASH_EQ] = ACTIONS(5119), + [anon_sym_PERCENT_EQ] = ACTIONS(5119), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5119), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5119), + [anon_sym_LT_EQ] = ACTIONS(5119), + [anon_sym_GT_EQ] = ACTIONS(5119), + [anon_sym_BANGin] = ACTIONS(5119), + [anon_sym_is] = ACTIONS(5117), + [anon_sym_BANGis] = ACTIONS(5119), + [anon_sym_PLUS] = ACTIONS(5117), + [anon_sym_DASH] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5117), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_as_QMARK] = ACTIONS(5119), + [anon_sym_PLUS_PLUS] = ACTIONS(5119), + [anon_sym_DASH_DASH] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5117), + [anon_sym_BANG_BANG] = ACTIONS(5119), + [anon_sym_data] = ACTIONS(5117), + [anon_sym_inner] = ACTIONS(5117), + [anon_sym_value] = ACTIONS(5117), + [anon_sym_expect] = ACTIONS(5117), + [anon_sym_actual] = ACTIONS(5117), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5119), + [anon_sym_continue_AT] = ACTIONS(5119), + [anon_sym_break_AT] = ACTIONS(5119), + [anon_sym_this_AT] = ACTIONS(5119), + [anon_sym_super_AT] = ACTIONS(5119), + [sym_real_literal] = ACTIONS(5119), + [sym_integer_literal] = ACTIONS(5117), + [sym_hex_literal] = ACTIONS(5119), + [sym_bin_literal] = ACTIONS(5119), + [anon_sym_true] = ACTIONS(5117), + [anon_sym_false] = ACTIONS(5117), + [anon_sym_SQUOTE] = ACTIONS(5119), + [sym__backtick_identifier] = ACTIONS(5119), + [sym__automatic_semicolon] = ACTIONS(5119), + [sym_safe_nav] = ACTIONS(5119), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5119), + }, + [3250] = { + [aux_sym_type_constraints_repeat1] = STATE(3250), + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_RBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(6701), + [anon_sym_RPAREN] = ACTIONS(4432), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [anon_sym_DASH_GT] = ACTIONS(4432), + [sym_label] = ACTIONS(4432), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_while] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5173), }, - [3288] = { - [aux_sym_nullable_type_repeat1] = STATE(3266), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_EQ] = ACTIONS(4329), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_LBRACE] = ACTIONS(4329), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [sym__quest] = ACTIONS(6776), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), + [3251] = { + [sym__alpha_identifier] = ACTIONS(5121), + [anon_sym_AT] = ACTIONS(5123), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_as] = ACTIONS(5121), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_RBRACE] = ACTIONS(5123), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5121), + [anon_sym_GT] = ACTIONS(5121), + [anon_sym_where] = ACTIONS(5121), + [anon_sym_object] = ACTIONS(5121), + [anon_sym_fun] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5121), + [anon_sym_SEMI] = ACTIONS(5123), + [anon_sym_get] = ACTIONS(5121), + [anon_sym_set] = ACTIONS(5121), + [anon_sym_this] = ACTIONS(5121), + [anon_sym_super] = ACTIONS(5121), + [anon_sym_STAR] = ACTIONS(5121), + [sym_label] = ACTIONS(5121), + [anon_sym_in] = ACTIONS(5121), + [anon_sym_DOT_DOT] = ACTIONS(5123), + [anon_sym_QMARK_COLON] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_if] = ACTIONS(5121), + [anon_sym_else] = ACTIONS(5121), + [anon_sym_when] = ACTIONS(5121), + [anon_sym_try] = ACTIONS(5121), + [anon_sym_throw] = ACTIONS(5121), + [anon_sym_return] = ACTIONS(5121), + [anon_sym_continue] = ACTIONS(5121), + [anon_sym_break] = ACTIONS(5121), + [anon_sym_COLON_COLON] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5123), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_BANGin] = ACTIONS(5123), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_BANGis] = ACTIONS(5123), + [anon_sym_PLUS] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5121), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_as_QMARK] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_BANG] = ACTIONS(5121), + [anon_sym_BANG_BANG] = ACTIONS(5123), + [anon_sym_data] = ACTIONS(5121), + [anon_sym_inner] = ACTIONS(5121), + [anon_sym_value] = ACTIONS(5121), + [anon_sym_expect] = ACTIONS(5121), + [anon_sym_actual] = ACTIONS(5121), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5123), + [anon_sym_continue_AT] = ACTIONS(5123), + [anon_sym_break_AT] = ACTIONS(5123), + [anon_sym_this_AT] = ACTIONS(5123), + [anon_sym_super_AT] = ACTIONS(5123), + [sym_real_literal] = ACTIONS(5123), + [sym_integer_literal] = ACTIONS(5121), + [sym_hex_literal] = ACTIONS(5123), + [sym_bin_literal] = ACTIONS(5123), + [anon_sym_true] = ACTIONS(5121), + [anon_sym_false] = ACTIONS(5121), + [anon_sym_SQUOTE] = ACTIONS(5123), + [sym__backtick_identifier] = ACTIONS(5123), + [sym__automatic_semicolon] = ACTIONS(5123), + [sym_safe_nav] = ACTIONS(5123), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5123), + }, + [3252] = { + [sym__alpha_identifier] = ACTIONS(4794), + [anon_sym_AT] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_RBRACE] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4796), + [anon_sym_COMMA] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4794), + [anon_sym_where] = ACTIONS(4794), + [anon_sym_object] = ACTIONS(4794), + [anon_sym_fun] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_get] = ACTIONS(4794), + [anon_sym_set] = ACTIONS(4794), + [anon_sym_this] = ACTIONS(4794), + [anon_sym_super] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4794), + [sym_label] = ACTIONS(4794), + [anon_sym_in] = ACTIONS(4794), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_QMARK_COLON] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_null] = ACTIONS(4794), + [anon_sym_if] = ACTIONS(4794), + [anon_sym_else] = ACTIONS(4794), + [anon_sym_when] = ACTIONS(4794), + [anon_sym_try] = ACTIONS(4794), + [anon_sym_throw] = ACTIONS(4794), + [anon_sym_return] = ACTIONS(4794), + [anon_sym_continue] = ACTIONS(4794), + [anon_sym_break] = ACTIONS(4794), + [anon_sym_COLON_COLON] = ACTIONS(4796), + [anon_sym_PLUS_EQ] = ACTIONS(4796), + [anon_sym_DASH_EQ] = ACTIONS(4796), + [anon_sym_STAR_EQ] = ACTIONS(4796), + [anon_sym_SLASH_EQ] = ACTIONS(4796), + [anon_sym_PERCENT_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4796), + [anon_sym_BANGin] = ACTIONS(4796), + [anon_sym_is] = ACTIONS(4794), + [anon_sym_BANGis] = ACTIONS(4796), + [anon_sym_PLUS] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_SLASH] = ACTIONS(4794), + [anon_sym_PERCENT] = ACTIONS(4794), + [anon_sym_as_QMARK] = ACTIONS(4796), + [anon_sym_PLUS_PLUS] = ACTIONS(4796), + [anon_sym_DASH_DASH] = ACTIONS(4796), + [anon_sym_BANG] = ACTIONS(4794), + [anon_sym_BANG_BANG] = ACTIONS(4796), + [anon_sym_data] = ACTIONS(4794), + [anon_sym_inner] = ACTIONS(4794), + [anon_sym_value] = ACTIONS(4794), + [anon_sym_expect] = ACTIONS(4794), + [anon_sym_actual] = ACTIONS(4794), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4796), + [anon_sym_continue_AT] = ACTIONS(4796), + [anon_sym_break_AT] = ACTIONS(4796), + [anon_sym_this_AT] = ACTIONS(4796), + [anon_sym_super_AT] = ACTIONS(4796), + [sym_real_literal] = ACTIONS(4796), + [sym_integer_literal] = ACTIONS(4794), + [sym_hex_literal] = ACTIONS(4796), + [sym_bin_literal] = ACTIONS(4796), + [anon_sym_true] = ACTIONS(4794), + [anon_sym_false] = ACTIONS(4794), + [anon_sym_SQUOTE] = ACTIONS(4796), + [sym__backtick_identifier] = ACTIONS(4796), + [sym__automatic_semicolon] = ACTIONS(4796), + [sym_safe_nav] = ACTIONS(4796), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4796), + }, + [3253] = { + [sym_class_body] = STATE(3513), + [sym_type_constraints] = STATE(3324), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + }, + [3254] = { + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), + [sym__string_start] = ACTIONS(4323), }, - [3289] = { - [sym__alpha_identifier] = ACTIONS(5251), - [anon_sym_AT] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_as] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5251), - [anon_sym_fun] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5253), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_LPAREN] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LT] = ACTIONS(5251), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_where] = ACTIONS(5251), - [anon_sym_object] = ACTIONS(5251), - [anon_sym_DOT] = ACTIONS(5251), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_get] = ACTIONS(5251), - [anon_sym_set] = ACTIONS(5251), - [anon_sym_this] = ACTIONS(5251), - [anon_sym_super] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [sym_label] = ACTIONS(5251), - [anon_sym_in] = ACTIONS(5251), - [anon_sym_DOT_DOT] = ACTIONS(5253), - [anon_sym_QMARK_COLON] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_null] = ACTIONS(5251), - [anon_sym_if] = ACTIONS(5251), - [anon_sym_else] = ACTIONS(5251), - [anon_sym_when] = ACTIONS(5251), - [anon_sym_try] = ACTIONS(5251), - [anon_sym_throw] = ACTIONS(5251), - [anon_sym_return] = ACTIONS(5251), - [anon_sym_continue] = ACTIONS(5251), - [anon_sym_break] = ACTIONS(5251), - [anon_sym_COLON_COLON] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5251), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5253), - [anon_sym_EQ_EQ] = ACTIONS(5251), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_BANGin] = ACTIONS(5253), - [anon_sym_is] = ACTIONS(5251), - [anon_sym_BANGis] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_PERCENT] = ACTIONS(5251), - [anon_sym_as_QMARK] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_BANG] = ACTIONS(5251), - [anon_sym_BANG_BANG] = ACTIONS(5253), - [anon_sym_data] = ACTIONS(5251), - [anon_sym_inner] = ACTIONS(5251), - [anon_sym_value] = ACTIONS(5251), - [anon_sym_expect] = ACTIONS(5251), - [anon_sym_actual] = ACTIONS(5251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5253), - [anon_sym_continue_AT] = ACTIONS(5253), - [anon_sym_break_AT] = ACTIONS(5253), - [anon_sym_this_AT] = ACTIONS(5253), - [anon_sym_super_AT] = ACTIONS(5253), - [sym_real_literal] = ACTIONS(5253), - [sym_integer_literal] = ACTIONS(5251), - [sym_hex_literal] = ACTIONS(5253), - [sym_bin_literal] = ACTIONS(5253), - [anon_sym_true] = ACTIONS(5251), - [anon_sym_false] = ACTIONS(5251), - [anon_sym_SQUOTE] = ACTIONS(5253), - [sym__backtick_identifier] = ACTIONS(5253), - [sym__automatic_semicolon] = ACTIONS(5253), - [sym_safe_nav] = ACTIONS(5253), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5253), + [3255] = { + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(4465), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), }, - [3290] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_fun] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4852), - [anon_sym_object] = ACTIONS(4852), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_this] = ACTIONS(4852), - [anon_sym_super] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [sym_label] = ACTIONS(4852), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_null] = ACTIONS(4852), - [anon_sym_if] = ACTIONS(4852), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_when] = ACTIONS(4852), - [anon_sym_try] = ACTIONS(4852), - [anon_sym_throw] = ACTIONS(4852), - [anon_sym_return] = ACTIONS(4852), - [anon_sym_continue] = ACTIONS(4852), - [anon_sym_break] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG] = ACTIONS(4852), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4854), - [anon_sym_continue_AT] = ACTIONS(4854), - [anon_sym_break_AT] = ACTIONS(4854), - [anon_sym_this_AT] = ACTIONS(4854), - [anon_sym_super_AT] = ACTIONS(4854), - [sym_real_literal] = ACTIONS(4854), - [sym_integer_literal] = ACTIONS(4852), - [sym_hex_literal] = ACTIONS(4854), - [sym_bin_literal] = ACTIONS(4854), - [anon_sym_true] = ACTIONS(4852), - [anon_sym_false] = ACTIONS(4852), - [anon_sym_SQUOTE] = ACTIONS(4854), - [sym__backtick_identifier] = ACTIONS(4854), - [sym__automatic_semicolon] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4854), + [3256] = { + [sym__alpha_identifier] = ACTIONS(5175), + [anon_sym_AT] = ACTIONS(5177), + [anon_sym_LBRACK] = ACTIONS(5177), + [anon_sym_as] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5177), + [anon_sym_COMMA] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5175), + [anon_sym_GT] = ACTIONS(5175), + [anon_sym_where] = ACTIONS(5175), + [anon_sym_object] = ACTIONS(5175), + [anon_sym_fun] = ACTIONS(5175), + [anon_sym_DOT] = ACTIONS(5175), + [anon_sym_SEMI] = ACTIONS(5177), + [anon_sym_get] = ACTIONS(5175), + [anon_sym_set] = ACTIONS(5175), + [anon_sym_this] = ACTIONS(5175), + [anon_sym_super] = ACTIONS(5175), + [anon_sym_STAR] = ACTIONS(5175), + [sym_label] = ACTIONS(5175), + [anon_sym_in] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5177), + [anon_sym_QMARK_COLON] = ACTIONS(5177), + [anon_sym_AMP_AMP] = ACTIONS(5177), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_null] = ACTIONS(5175), + [anon_sym_if] = ACTIONS(5175), + [anon_sym_else] = ACTIONS(5175), + [anon_sym_when] = ACTIONS(5175), + [anon_sym_try] = ACTIONS(5175), + [anon_sym_throw] = ACTIONS(5175), + [anon_sym_return] = ACTIONS(5175), + [anon_sym_continue] = ACTIONS(5175), + [anon_sym_break] = ACTIONS(5175), + [anon_sym_COLON_COLON] = ACTIONS(5177), + [anon_sym_PLUS_EQ] = ACTIONS(5177), + [anon_sym_DASH_EQ] = ACTIONS(5177), + [anon_sym_STAR_EQ] = ACTIONS(5177), + [anon_sym_SLASH_EQ] = ACTIONS(5177), + [anon_sym_PERCENT_EQ] = ACTIONS(5177), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5177), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5177), + [anon_sym_LT_EQ] = ACTIONS(5177), + [anon_sym_GT_EQ] = ACTIONS(5177), + [anon_sym_BANGin] = ACTIONS(5177), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_BANGis] = ACTIONS(5177), + [anon_sym_PLUS] = ACTIONS(5175), + [anon_sym_DASH] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5175), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_as_QMARK] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5177), + [anon_sym_DASH_DASH] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5175), + [anon_sym_BANG_BANG] = ACTIONS(5177), + [anon_sym_data] = ACTIONS(5175), + [anon_sym_inner] = ACTIONS(5175), + [anon_sym_value] = ACTIONS(5175), + [anon_sym_expect] = ACTIONS(5175), + [anon_sym_actual] = ACTIONS(5175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5177), + [anon_sym_continue_AT] = ACTIONS(5177), + [anon_sym_break_AT] = ACTIONS(5177), + [anon_sym_this_AT] = ACTIONS(5177), + [anon_sym_super_AT] = ACTIONS(5177), + [sym_real_literal] = ACTIONS(5177), + [sym_integer_literal] = ACTIONS(5175), + [sym_hex_literal] = ACTIONS(5177), + [sym_bin_literal] = ACTIONS(5177), + [anon_sym_true] = ACTIONS(5175), + [anon_sym_false] = ACTIONS(5175), + [anon_sym_SQUOTE] = ACTIONS(5177), + [sym__backtick_identifier] = ACTIONS(5177), + [sym__automatic_semicolon] = ACTIONS(5177), + [sym_safe_nav] = ACTIONS(5177), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5177), }, - [3291] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(6778), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_this] = ACTIONS(4244), - [anon_sym_super] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4244), - [anon_sym_if] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4244), - [anon_sym_try] = ACTIONS(4244), - [anon_sym_throw] = ACTIONS(4244), - [anon_sym_return] = ACTIONS(4244), - [anon_sym_continue] = ACTIONS(4244), - [anon_sym_break] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4242), - [anon_sym_continue_AT] = ACTIONS(4242), - [anon_sym_break_AT] = ACTIONS(4242), - [anon_sym_this_AT] = ACTIONS(4242), - [anon_sym_super_AT] = ACTIONS(4242), - [sym_real_literal] = ACTIONS(4242), - [sym_integer_literal] = ACTIONS(4244), - [sym_hex_literal] = ACTIONS(4242), - [sym_bin_literal] = ACTIONS(4242), - [anon_sym_true] = ACTIONS(4244), - [anon_sym_false] = ACTIONS(4244), - [anon_sym_SQUOTE] = ACTIONS(4242), - [sym__backtick_identifier] = ACTIONS(4242), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4242), + [3257] = { + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, - [3292] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(6780), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_this] = ACTIONS(4355), - [anon_sym_super] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4355), - [sym_label] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [anon_sym_if] = ACTIONS(4355), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4355), - [anon_sym_try] = ACTIONS(4355), - [anon_sym_throw] = ACTIONS(4355), - [anon_sym_return] = ACTIONS(4355), - [anon_sym_continue] = ACTIONS(4355), - [anon_sym_break] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), + [3258] = { + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4353), - [anon_sym_continue_AT] = ACTIONS(4353), - [anon_sym_break_AT] = ACTIONS(4353), - [anon_sym_this_AT] = ACTIONS(4353), - [anon_sym_super_AT] = ACTIONS(4353), - [sym_real_literal] = ACTIONS(4353), - [sym_integer_literal] = ACTIONS(4355), - [sym_hex_literal] = ACTIONS(4353), - [sym_bin_literal] = ACTIONS(4353), - [anon_sym_true] = ACTIONS(4355), - [anon_sym_false] = ACTIONS(4355), - [anon_sym_SQUOTE] = ACTIONS(4353), - [sym__backtick_identifier] = ACTIONS(4353), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4353), + [sym__string_start] = ACTIONS(4445), }, - [3293] = { - [aux_sym_nullable_type_repeat1] = STATE(3293), - [sym__alpha_identifier] = ACTIONS(4262), - [anon_sym_AT] = ACTIONS(4264), - [anon_sym_LBRACK] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_LPAREN] = ACTIONS(4264), - [anon_sym_COMMA] = ACTIONS(4264), - [anon_sym_by] = ACTIONS(4262), - [anon_sym_where] = ACTIONS(4262), - [anon_sym_object] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym_get] = ACTIONS(4262), - [anon_sym_set] = ACTIONS(4262), - [anon_sym_this] = ACTIONS(4262), - [anon_sym_super] = ACTIONS(4262), - [sym__quest] = ACTIONS(6782), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4262), - [anon_sym_in] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4262), - [anon_sym_if] = ACTIONS(4262), - [anon_sym_else] = ACTIONS(4262), - [anon_sym_when] = ACTIONS(4262), - [anon_sym_try] = ACTIONS(4262), - [anon_sym_throw] = ACTIONS(4262), - [anon_sym_return] = ACTIONS(4262), - [anon_sym_continue] = ACTIONS(4262), - [anon_sym_break] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_BANGin] = ACTIONS(4264), - [anon_sym_is] = ACTIONS(4262), - [anon_sym_BANGis] = ACTIONS(4264), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_PLUS_PLUS] = ACTIONS(4264), - [anon_sym_DASH_DASH] = ACTIONS(4264), - [anon_sym_BANG] = ACTIONS(4262), - [anon_sym_suspend] = ACTIONS(4262), - [anon_sym_sealed] = ACTIONS(4262), - [anon_sym_annotation] = ACTIONS(4262), - [anon_sym_data] = ACTIONS(4262), - [anon_sym_inner] = ACTIONS(4262), - [anon_sym_value] = ACTIONS(4262), - [anon_sym_override] = ACTIONS(4262), - [anon_sym_lateinit] = ACTIONS(4262), - [anon_sym_public] = ACTIONS(4262), - [anon_sym_private] = ACTIONS(4262), - [anon_sym_internal] = ACTIONS(4262), - [anon_sym_protected] = ACTIONS(4262), - [anon_sym_tailrec] = ACTIONS(4262), - [anon_sym_operator] = ACTIONS(4262), - [anon_sym_infix] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym_external] = ACTIONS(4262), - [sym_property_modifier] = ACTIONS(4262), - [anon_sym_abstract] = ACTIONS(4262), - [anon_sym_final] = ACTIONS(4262), - [anon_sym_open] = ACTIONS(4262), - [anon_sym_vararg] = ACTIONS(4262), - [anon_sym_noinline] = ACTIONS(4262), - [anon_sym_crossinline] = ACTIONS(4262), - [anon_sym_expect] = ACTIONS(4262), - [anon_sym_actual] = ACTIONS(4262), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4264), - [anon_sym_continue_AT] = ACTIONS(4264), - [anon_sym_break_AT] = ACTIONS(4264), - [anon_sym_this_AT] = ACTIONS(4264), - [anon_sym_super_AT] = ACTIONS(4264), - [sym_real_literal] = ACTIONS(4264), - [sym_integer_literal] = ACTIONS(4262), - [sym_hex_literal] = ACTIONS(4264), - [sym_bin_literal] = ACTIONS(4264), - [anon_sym_true] = ACTIONS(4262), - [anon_sym_false] = ACTIONS(4262), - [anon_sym_SQUOTE] = ACTIONS(4264), - [sym__backtick_identifier] = ACTIONS(4264), - [sym__automatic_semicolon] = ACTIONS(4264), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4264), + [3259] = { + [sym__alpha_identifier] = ACTIONS(5125), + [anon_sym_AT] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5127), + [anon_sym_as] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5127), + [anon_sym_RBRACE] = ACTIONS(5127), + [anon_sym_LPAREN] = ACTIONS(5127), + [anon_sym_COMMA] = ACTIONS(5127), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_where] = ACTIONS(5125), + [anon_sym_object] = ACTIONS(5125), + [anon_sym_fun] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_SEMI] = ACTIONS(5127), + [anon_sym_get] = ACTIONS(5125), + [anon_sym_set] = ACTIONS(5125), + [anon_sym_this] = ACTIONS(5125), + [anon_sym_super] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5125), + [sym_label] = ACTIONS(5125), + [anon_sym_in] = ACTIONS(5125), + [anon_sym_DOT_DOT] = ACTIONS(5127), + [anon_sym_QMARK_COLON] = ACTIONS(5127), + [anon_sym_AMP_AMP] = ACTIONS(5127), + [anon_sym_PIPE_PIPE] = ACTIONS(5127), + [anon_sym_null] = ACTIONS(5125), + [anon_sym_if] = ACTIONS(5125), + [anon_sym_else] = ACTIONS(5125), + [anon_sym_when] = ACTIONS(5125), + [anon_sym_try] = ACTIONS(5125), + [anon_sym_throw] = ACTIONS(5125), + [anon_sym_return] = ACTIONS(5125), + [anon_sym_continue] = ACTIONS(5125), + [anon_sym_break] = ACTIONS(5125), + [anon_sym_COLON_COLON] = ACTIONS(5127), + [anon_sym_PLUS_EQ] = ACTIONS(5127), + [anon_sym_DASH_EQ] = ACTIONS(5127), + [anon_sym_STAR_EQ] = ACTIONS(5127), + [anon_sym_SLASH_EQ] = ACTIONS(5127), + [anon_sym_PERCENT_EQ] = ACTIONS(5127), + [anon_sym_BANG_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5127), + [anon_sym_EQ_EQ] = ACTIONS(5125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5127), + [anon_sym_LT_EQ] = ACTIONS(5127), + [anon_sym_GT_EQ] = ACTIONS(5127), + [anon_sym_BANGin] = ACTIONS(5127), + [anon_sym_is] = ACTIONS(5125), + [anon_sym_BANGis] = ACTIONS(5127), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_as_QMARK] = ACTIONS(5127), + [anon_sym_PLUS_PLUS] = ACTIONS(5127), + [anon_sym_DASH_DASH] = ACTIONS(5127), + [anon_sym_BANG] = ACTIONS(5125), + [anon_sym_BANG_BANG] = ACTIONS(5127), + [anon_sym_data] = ACTIONS(5125), + [anon_sym_inner] = ACTIONS(5125), + [anon_sym_value] = ACTIONS(5125), + [anon_sym_expect] = ACTIONS(5125), + [anon_sym_actual] = ACTIONS(5125), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5127), + [anon_sym_continue_AT] = ACTIONS(5127), + [anon_sym_break_AT] = ACTIONS(5127), + [anon_sym_this_AT] = ACTIONS(5127), + [anon_sym_super_AT] = ACTIONS(5127), + [sym_real_literal] = ACTIONS(5127), + [sym_integer_literal] = ACTIONS(5125), + [sym_hex_literal] = ACTIONS(5127), + [sym_bin_literal] = ACTIONS(5127), + [anon_sym_true] = ACTIONS(5125), + [anon_sym_false] = ACTIONS(5125), + [anon_sym_SQUOTE] = ACTIONS(5127), + [sym__backtick_identifier] = ACTIONS(5127), + [sym__automatic_semicolon] = ACTIONS(5127), + [sym_safe_nav] = ACTIONS(5127), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5127), }, - [3294] = { - [sym__alpha_identifier] = ACTIONS(5247), - [anon_sym_AT] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(5249), - [anon_sym_as] = ACTIONS(5247), - [anon_sym_EQ] = ACTIONS(5247), - [anon_sym_fun] = ACTIONS(5247), - [anon_sym_LBRACE] = ACTIONS(5249), - [anon_sym_RBRACE] = ACTIONS(5249), - [anon_sym_LPAREN] = ACTIONS(5249), - [anon_sym_COMMA] = ACTIONS(5249), - [anon_sym_LT] = ACTIONS(5247), - [anon_sym_GT] = ACTIONS(5247), - [anon_sym_where] = ACTIONS(5247), - [anon_sym_object] = ACTIONS(5247), - [anon_sym_DOT] = ACTIONS(5247), - [anon_sym_SEMI] = ACTIONS(5249), - [anon_sym_get] = ACTIONS(5247), - [anon_sym_set] = ACTIONS(5247), - [anon_sym_this] = ACTIONS(5247), - [anon_sym_super] = ACTIONS(5247), - [anon_sym_STAR] = ACTIONS(5247), - [sym_label] = ACTIONS(5247), - [anon_sym_in] = ACTIONS(5247), - [anon_sym_DOT_DOT] = ACTIONS(5249), - [anon_sym_QMARK_COLON] = ACTIONS(5249), - [anon_sym_AMP_AMP] = ACTIONS(5249), - [anon_sym_PIPE_PIPE] = ACTIONS(5249), - [anon_sym_null] = ACTIONS(5247), - [anon_sym_if] = ACTIONS(5247), - [anon_sym_else] = ACTIONS(5247), - [anon_sym_when] = ACTIONS(5247), - [anon_sym_try] = ACTIONS(5247), - [anon_sym_throw] = ACTIONS(5247), - [anon_sym_return] = ACTIONS(5247), - [anon_sym_continue] = ACTIONS(5247), - [anon_sym_break] = ACTIONS(5247), - [anon_sym_COLON_COLON] = ACTIONS(5249), - [anon_sym_PLUS_EQ] = ACTIONS(5249), - [anon_sym_DASH_EQ] = ACTIONS(5249), - [anon_sym_STAR_EQ] = ACTIONS(5249), - [anon_sym_SLASH_EQ] = ACTIONS(5249), - [anon_sym_PERCENT_EQ] = ACTIONS(5249), - [anon_sym_BANG_EQ] = ACTIONS(5247), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5249), - [anon_sym_EQ_EQ] = ACTIONS(5247), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5249), - [anon_sym_LT_EQ] = ACTIONS(5249), - [anon_sym_GT_EQ] = ACTIONS(5249), - [anon_sym_BANGin] = ACTIONS(5249), - [anon_sym_is] = ACTIONS(5247), - [anon_sym_BANGis] = ACTIONS(5249), - [anon_sym_PLUS] = ACTIONS(5247), - [anon_sym_DASH] = ACTIONS(5247), - [anon_sym_SLASH] = ACTIONS(5247), - [anon_sym_PERCENT] = ACTIONS(5247), - [anon_sym_as_QMARK] = ACTIONS(5249), - [anon_sym_PLUS_PLUS] = ACTIONS(5249), - [anon_sym_DASH_DASH] = ACTIONS(5249), - [anon_sym_BANG] = ACTIONS(5247), - [anon_sym_BANG_BANG] = ACTIONS(5249), - [anon_sym_data] = ACTIONS(5247), - [anon_sym_inner] = ACTIONS(5247), - [anon_sym_value] = ACTIONS(5247), - [anon_sym_expect] = ACTIONS(5247), - [anon_sym_actual] = ACTIONS(5247), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5249), - [anon_sym_continue_AT] = ACTIONS(5249), - [anon_sym_break_AT] = ACTIONS(5249), - [anon_sym_this_AT] = ACTIONS(5249), - [anon_sym_super_AT] = ACTIONS(5249), - [sym_real_literal] = ACTIONS(5249), - [sym_integer_literal] = ACTIONS(5247), - [sym_hex_literal] = ACTIONS(5249), - [sym_bin_literal] = ACTIONS(5249), - [anon_sym_true] = ACTIONS(5247), - [anon_sym_false] = ACTIONS(5247), - [anon_sym_SQUOTE] = ACTIONS(5249), - [sym__backtick_identifier] = ACTIONS(5249), - [sym__automatic_semicolon] = ACTIONS(5249), - [sym_safe_nav] = ACTIONS(5249), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5249), + [3260] = { + [sym__alpha_identifier] = ACTIONS(5139), + [anon_sym_AT] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(5139), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_where] = ACTIONS(5139), + [anon_sym_object] = ACTIONS(5139), + [anon_sym_fun] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5139), + [anon_sym_SEMI] = ACTIONS(5141), + [anon_sym_get] = ACTIONS(5139), + [anon_sym_set] = ACTIONS(5139), + [anon_sym_this] = ACTIONS(5139), + [anon_sym_super] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [sym_label] = ACTIONS(5139), + [anon_sym_in] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5141), + [anon_sym_QMARK_COLON] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_null] = ACTIONS(5139), + [anon_sym_if] = ACTIONS(5139), + [anon_sym_else] = ACTIONS(5139), + [anon_sym_when] = ACTIONS(5139), + [anon_sym_try] = ACTIONS(5139), + [anon_sym_throw] = ACTIONS(5139), + [anon_sym_return] = ACTIONS(5139), + [anon_sym_continue] = ACTIONS(5139), + [anon_sym_break] = ACTIONS(5139), + [anon_sym_COLON_COLON] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5141), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_BANGin] = ACTIONS(5141), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_BANGis] = ACTIONS(5141), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_as_QMARK] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_BANG] = ACTIONS(5139), + [anon_sym_BANG_BANG] = ACTIONS(5141), + [anon_sym_data] = ACTIONS(5139), + [anon_sym_inner] = ACTIONS(5139), + [anon_sym_value] = ACTIONS(5139), + [anon_sym_expect] = ACTIONS(5139), + [anon_sym_actual] = ACTIONS(5139), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5141), + [anon_sym_continue_AT] = ACTIONS(5141), + [anon_sym_break_AT] = ACTIONS(5141), + [anon_sym_this_AT] = ACTIONS(5141), + [anon_sym_super_AT] = ACTIONS(5141), + [sym_real_literal] = ACTIONS(5141), + [sym_integer_literal] = ACTIONS(5139), + [sym_hex_literal] = ACTIONS(5141), + [sym_bin_literal] = ACTIONS(5141), + [anon_sym_true] = ACTIONS(5139), + [anon_sym_false] = ACTIONS(5139), + [anon_sym_SQUOTE] = ACTIONS(5141), + [sym__backtick_identifier] = ACTIONS(5141), + [sym__automatic_semicolon] = ACTIONS(5141), + [sym_safe_nav] = ACTIONS(5141), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5141), }, - [3295] = { - [sym__alpha_identifier] = ACTIONS(4297), - [anon_sym_AT] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_RBRACE] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_by] = ACTIONS(4297), - [anon_sym_where] = ACTIONS(4297), - [anon_sym_object] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_get] = ACTIONS(4297), - [anon_sym_set] = ACTIONS(4297), - [anon_sym_this] = ACTIONS(4297), - [anon_sym_super] = ACTIONS(4297), - [anon_sym_AMP] = ACTIONS(6785), - [sym__quest] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4297), - [anon_sym_in] = ACTIONS(4297), - [anon_sym_null] = ACTIONS(4297), - [anon_sym_if] = ACTIONS(4297), - [anon_sym_else] = ACTIONS(4297), - [anon_sym_when] = ACTIONS(4297), - [anon_sym_try] = ACTIONS(4297), - [anon_sym_throw] = ACTIONS(4297), - [anon_sym_return] = ACTIONS(4297), - [anon_sym_continue] = ACTIONS(4297), - [anon_sym_break] = ACTIONS(4297), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym_BANGin] = ACTIONS(4299), - [anon_sym_is] = ACTIONS(4297), - [anon_sym_BANGis] = ACTIONS(4299), - [anon_sym_PLUS] = ACTIONS(4297), - [anon_sym_DASH] = ACTIONS(4297), - [anon_sym_PLUS_PLUS] = ACTIONS(4299), - [anon_sym_DASH_DASH] = ACTIONS(4299), - [anon_sym_BANG] = ACTIONS(4297), - [anon_sym_suspend] = ACTIONS(4297), - [anon_sym_sealed] = ACTIONS(4297), - [anon_sym_annotation] = ACTIONS(4297), - [anon_sym_data] = ACTIONS(4297), - [anon_sym_inner] = ACTIONS(4297), - [anon_sym_value] = ACTIONS(4297), - [anon_sym_override] = ACTIONS(4297), - [anon_sym_lateinit] = ACTIONS(4297), - [anon_sym_public] = ACTIONS(4297), - [anon_sym_private] = ACTIONS(4297), - [anon_sym_internal] = ACTIONS(4297), - [anon_sym_protected] = ACTIONS(4297), - [anon_sym_tailrec] = ACTIONS(4297), - [anon_sym_operator] = ACTIONS(4297), - [anon_sym_infix] = ACTIONS(4297), - [anon_sym_inline] = ACTIONS(4297), - [anon_sym_external] = ACTIONS(4297), - [sym_property_modifier] = ACTIONS(4297), - [anon_sym_abstract] = ACTIONS(4297), - [anon_sym_final] = ACTIONS(4297), - [anon_sym_open] = ACTIONS(4297), - [anon_sym_vararg] = ACTIONS(4297), - [anon_sym_noinline] = ACTIONS(4297), - [anon_sym_crossinline] = ACTIONS(4297), - [anon_sym_expect] = ACTIONS(4297), - [anon_sym_actual] = ACTIONS(4297), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4299), - [anon_sym_continue_AT] = ACTIONS(4299), - [anon_sym_break_AT] = ACTIONS(4299), - [anon_sym_this_AT] = ACTIONS(4299), - [anon_sym_super_AT] = ACTIONS(4299), - [sym_real_literal] = ACTIONS(4299), - [sym_integer_literal] = ACTIONS(4297), - [sym_hex_literal] = ACTIONS(4299), - [sym_bin_literal] = ACTIONS(4299), - [anon_sym_true] = ACTIONS(4297), - [anon_sym_false] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym__backtick_identifier] = ACTIONS(4299), - [sym__automatic_semicolon] = ACTIONS(4299), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4299), + [3261] = { + [aux_sym_user_type_repeat1] = STATE(2928), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_EQ] = ACTIONS(4195), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_object] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6554), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_this] = ACTIONS(4193), + [anon_sym_super] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4195), + [sym_label] = ACTIONS(4193), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_when] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_throw] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4195), + [anon_sym_continue_AT] = ACTIONS(4195), + [anon_sym_break_AT] = ACTIONS(4195), + [anon_sym_this_AT] = ACTIONS(4195), + [anon_sym_super_AT] = ACTIONS(4195), + [sym_real_literal] = ACTIONS(4195), + [sym_integer_literal] = ACTIONS(4193), + [sym_hex_literal] = ACTIONS(4195), + [sym_bin_literal] = ACTIONS(4195), + [anon_sym_true] = ACTIONS(4193), + [anon_sym_false] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4195), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4195), }, - [3296] = { - [sym__alpha_identifier] = ACTIONS(5235), - [anon_sym_AT] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_as] = ACTIONS(5235), - [anon_sym_EQ] = ACTIONS(5235), - [anon_sym_fun] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5237), - [anon_sym_RBRACE] = ACTIONS(5237), - [anon_sym_LPAREN] = ACTIONS(5237), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_LT] = ACTIONS(5235), - [anon_sym_GT] = ACTIONS(5235), - [anon_sym_where] = ACTIONS(5235), - [anon_sym_object] = ACTIONS(5235), - [anon_sym_DOT] = ACTIONS(5235), - [anon_sym_SEMI] = ACTIONS(5237), - [anon_sym_get] = ACTIONS(5235), - [anon_sym_set] = ACTIONS(5235), - [anon_sym_this] = ACTIONS(5235), - [anon_sym_super] = ACTIONS(5235), - [anon_sym_STAR] = ACTIONS(5235), - [sym_label] = ACTIONS(5235), - [anon_sym_in] = ACTIONS(5235), - [anon_sym_DOT_DOT] = ACTIONS(5237), - [anon_sym_QMARK_COLON] = ACTIONS(5237), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5237), - [anon_sym_null] = ACTIONS(5235), - [anon_sym_if] = ACTIONS(5235), - [anon_sym_else] = ACTIONS(5235), - [anon_sym_when] = ACTIONS(5235), - [anon_sym_try] = ACTIONS(5235), - [anon_sym_throw] = ACTIONS(5235), - [anon_sym_return] = ACTIONS(5235), - [anon_sym_continue] = ACTIONS(5235), - [anon_sym_break] = ACTIONS(5235), - [anon_sym_COLON_COLON] = ACTIONS(5237), - [anon_sym_PLUS_EQ] = ACTIONS(5237), - [anon_sym_DASH_EQ] = ACTIONS(5237), - [anon_sym_STAR_EQ] = ACTIONS(5237), - [anon_sym_SLASH_EQ] = ACTIONS(5237), - [anon_sym_PERCENT_EQ] = ACTIONS(5237), - [anon_sym_BANG_EQ] = ACTIONS(5235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5237), - [anon_sym_EQ_EQ] = ACTIONS(5235), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5237), - [anon_sym_LT_EQ] = ACTIONS(5237), - [anon_sym_GT_EQ] = ACTIONS(5237), - [anon_sym_BANGin] = ACTIONS(5237), - [anon_sym_is] = ACTIONS(5235), - [anon_sym_BANGis] = ACTIONS(5237), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_SLASH] = ACTIONS(5235), - [anon_sym_PERCENT] = ACTIONS(5235), - [anon_sym_as_QMARK] = ACTIONS(5237), - [anon_sym_PLUS_PLUS] = ACTIONS(5237), - [anon_sym_DASH_DASH] = ACTIONS(5237), - [anon_sym_BANG] = ACTIONS(5235), - [anon_sym_BANG_BANG] = ACTIONS(5237), - [anon_sym_data] = ACTIONS(5235), - [anon_sym_inner] = ACTIONS(5235), - [anon_sym_value] = ACTIONS(5235), - [anon_sym_expect] = ACTIONS(5235), - [anon_sym_actual] = ACTIONS(5235), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5237), - [anon_sym_continue_AT] = ACTIONS(5237), - [anon_sym_break_AT] = ACTIONS(5237), - [anon_sym_this_AT] = ACTIONS(5237), - [anon_sym_super_AT] = ACTIONS(5237), - [sym_real_literal] = ACTIONS(5237), - [sym_integer_literal] = ACTIONS(5235), - [sym_hex_literal] = ACTIONS(5237), - [sym_bin_literal] = ACTIONS(5237), - [anon_sym_true] = ACTIONS(5235), - [anon_sym_false] = ACTIONS(5235), - [anon_sym_SQUOTE] = ACTIONS(5237), - [sym__backtick_identifier] = ACTIONS(5237), - [sym__automatic_semicolon] = ACTIONS(5237), - [sym_safe_nav] = ACTIONS(5237), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5237), + [3262] = { + [sym__alpha_identifier] = ACTIONS(4884), + [anon_sym_AT] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_as] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4886), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4886), + [anon_sym_COMMA] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_where] = ACTIONS(4884), + [anon_sym_object] = ACTIONS(4884), + [anon_sym_fun] = ACTIONS(4884), + [anon_sym_DOT] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4886), + [anon_sym_get] = ACTIONS(4884), + [anon_sym_set] = ACTIONS(4884), + [anon_sym_this] = ACTIONS(4884), + [anon_sym_super] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [sym_label] = ACTIONS(4884), + [anon_sym_in] = ACTIONS(4884), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_QMARK_COLON] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_PIPE_PIPE] = ACTIONS(4886), + [anon_sym_null] = ACTIONS(4884), + [anon_sym_if] = ACTIONS(4884), + [anon_sym_else] = ACTIONS(4884), + [anon_sym_when] = ACTIONS(4884), + [anon_sym_try] = ACTIONS(4884), + [anon_sym_throw] = ACTIONS(4884), + [anon_sym_return] = ACTIONS(4884), + [anon_sym_continue] = ACTIONS(4884), + [anon_sym_break] = ACTIONS(4884), + [anon_sym_COLON_COLON] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4886), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(4884), + [anon_sym_BANGis] = ACTIONS(4886), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_as_QMARK] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4886), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_BANG_BANG] = ACTIONS(4886), + [anon_sym_data] = ACTIONS(4884), + [anon_sym_inner] = ACTIONS(4884), + [anon_sym_value] = ACTIONS(4884), + [anon_sym_expect] = ACTIONS(4884), + [anon_sym_actual] = ACTIONS(4884), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4886), + [anon_sym_continue_AT] = ACTIONS(4886), + [anon_sym_break_AT] = ACTIONS(4886), + [anon_sym_this_AT] = ACTIONS(4886), + [anon_sym_super_AT] = ACTIONS(4886), + [sym_real_literal] = ACTIONS(4886), + [sym_integer_literal] = ACTIONS(4884), + [sym_hex_literal] = ACTIONS(4886), + [sym_bin_literal] = ACTIONS(4886), + [anon_sym_true] = ACTIONS(4884), + [anon_sym_false] = ACTIONS(4884), + [anon_sym_SQUOTE] = ACTIONS(4886), + [sym__backtick_identifier] = ACTIONS(4886), + [sym__automatic_semicolon] = ACTIONS(4886), + [sym_safe_nav] = ACTIONS(4886), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4886), }, - [3297] = { - [sym__alpha_identifier] = ACTIONS(4461), - [anon_sym_AT] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_as] = ACTIONS(4461), - [anon_sym_EQ] = ACTIONS(4461), - [anon_sym_fun] = ACTIONS(4461), - [anon_sym_LBRACE] = ACTIONS(4463), - [anon_sym_RBRACE] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_where] = ACTIONS(4461), - [anon_sym_object] = ACTIONS(4461), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [anon_sym_get] = ACTIONS(4461), - [anon_sym_set] = ACTIONS(4461), - [anon_sym_this] = ACTIONS(4461), - [anon_sym_super] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [sym_label] = ACTIONS(4461), - [anon_sym_in] = ACTIONS(4461), - [anon_sym_DOT_DOT] = ACTIONS(4463), - [anon_sym_QMARK_COLON] = ACTIONS(4463), - [anon_sym_AMP_AMP] = ACTIONS(4463), - [anon_sym_PIPE_PIPE] = ACTIONS(4463), - [anon_sym_null] = ACTIONS(4461), - [anon_sym_if] = ACTIONS(4461), - [anon_sym_else] = ACTIONS(4461), - [anon_sym_when] = ACTIONS(4461), - [anon_sym_try] = ACTIONS(4461), - [anon_sym_throw] = ACTIONS(4461), - [anon_sym_return] = ACTIONS(4461), - [anon_sym_continue] = ACTIONS(4461), - [anon_sym_break] = ACTIONS(4461), - [anon_sym_COLON_COLON] = ACTIONS(4463), - [anon_sym_PLUS_EQ] = ACTIONS(4463), - [anon_sym_DASH_EQ] = ACTIONS(4463), - [anon_sym_STAR_EQ] = ACTIONS(4463), - [anon_sym_SLASH_EQ] = ACTIONS(4463), - [anon_sym_PERCENT_EQ] = ACTIONS(4463), - [anon_sym_BANG_EQ] = ACTIONS(4461), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4463), - [anon_sym_EQ_EQ] = ACTIONS(4461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4463), - [anon_sym_LT_EQ] = ACTIONS(4463), - [anon_sym_GT_EQ] = ACTIONS(4463), - [anon_sym_BANGin] = ACTIONS(4463), - [anon_sym_is] = ACTIONS(4461), - [anon_sym_BANGis] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(4461), - [anon_sym_as_QMARK] = ACTIONS(4463), - [anon_sym_PLUS_PLUS] = ACTIONS(4463), - [anon_sym_DASH_DASH] = ACTIONS(4463), - [anon_sym_BANG] = ACTIONS(4461), - [anon_sym_BANG_BANG] = ACTIONS(4463), - [anon_sym_data] = ACTIONS(4461), - [anon_sym_inner] = ACTIONS(4461), - [anon_sym_value] = ACTIONS(4461), - [anon_sym_expect] = ACTIONS(4461), - [anon_sym_actual] = ACTIONS(4461), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4463), - [anon_sym_continue_AT] = ACTIONS(4463), - [anon_sym_break_AT] = ACTIONS(4463), - [anon_sym_this_AT] = ACTIONS(4463), - [anon_sym_super_AT] = ACTIONS(4463), - [sym_real_literal] = ACTIONS(4463), - [sym_integer_literal] = ACTIONS(4461), - [sym_hex_literal] = ACTIONS(4463), - [sym_bin_literal] = ACTIONS(4463), - [anon_sym_true] = ACTIONS(4461), - [anon_sym_false] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym__backtick_identifier] = ACTIONS(4463), - [sym__automatic_semicolon] = ACTIONS(4463), - [sym_safe_nav] = ACTIONS(4463), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4463), + [3263] = { + [sym__alpha_identifier] = ACTIONS(4922), + [anon_sym_AT] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_as] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4922), + [anon_sym_where] = ACTIONS(4922), + [anon_sym_object] = ACTIONS(4922), + [anon_sym_fun] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_get] = ACTIONS(4922), + [anon_sym_set] = ACTIONS(4922), + [anon_sym_this] = ACTIONS(4922), + [anon_sym_super] = ACTIONS(4922), + [anon_sym_STAR] = ACTIONS(4922), + [sym_label] = ACTIONS(4922), + [anon_sym_in] = ACTIONS(4922), + [anon_sym_DOT_DOT] = ACTIONS(4924), + [anon_sym_QMARK_COLON] = ACTIONS(4924), + [anon_sym_AMP_AMP] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4924), + [anon_sym_null] = ACTIONS(4922), + [anon_sym_if] = ACTIONS(4922), + [anon_sym_else] = ACTIONS(4922), + [anon_sym_when] = ACTIONS(4922), + [anon_sym_try] = ACTIONS(4922), + [anon_sym_throw] = ACTIONS(4922), + [anon_sym_return] = ACTIONS(4922), + [anon_sym_continue] = ACTIONS(4922), + [anon_sym_break] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_PLUS_EQ] = ACTIONS(4924), + [anon_sym_DASH_EQ] = ACTIONS(4924), + [anon_sym_STAR_EQ] = ACTIONS(4924), + [anon_sym_SLASH_EQ] = ACTIONS(4924), + [anon_sym_PERCENT_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4924), + [anon_sym_EQ_EQ] = ACTIONS(4922), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4924), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4924), + [anon_sym_BANGin] = ACTIONS(4924), + [anon_sym_is] = ACTIONS(4922), + [anon_sym_BANGis] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4922), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4922), + [anon_sym_PERCENT] = ACTIONS(4922), + [anon_sym_as_QMARK] = ACTIONS(4924), + [anon_sym_PLUS_PLUS] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4922), + [anon_sym_BANG_BANG] = ACTIONS(4924), + [anon_sym_data] = ACTIONS(4922), + [anon_sym_inner] = ACTIONS(4922), + [anon_sym_value] = ACTIONS(4922), + [anon_sym_expect] = ACTIONS(4922), + [anon_sym_actual] = ACTIONS(4922), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4924), + [anon_sym_continue_AT] = ACTIONS(4924), + [anon_sym_break_AT] = ACTIONS(4924), + [anon_sym_this_AT] = ACTIONS(4924), + [anon_sym_super_AT] = ACTIONS(4924), + [sym_real_literal] = ACTIONS(4924), + [sym_integer_literal] = ACTIONS(4922), + [sym_hex_literal] = ACTIONS(4924), + [sym_bin_literal] = ACTIONS(4924), + [anon_sym_true] = ACTIONS(4922), + [anon_sym_false] = ACTIONS(4922), + [anon_sym_SQUOTE] = ACTIONS(4924), + [sym__backtick_identifier] = ACTIONS(4924), + [sym__automatic_semicolon] = ACTIONS(4924), + [sym_safe_nav] = ACTIONS(4924), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4924), }, - [3298] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4948), - [anon_sym_fun] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_GT] = ACTIONS(4381), - [anon_sym_where] = ACTIONS(4381), - [anon_sym_object] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_this] = ACTIONS(4381), - [anon_sym_super] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [sym_label] = ACTIONS(4381), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_QMARK_COLON] = ACTIONS(4383), - [anon_sym_AMP_AMP] = ACTIONS(4383), - [anon_sym_PIPE_PIPE] = ACTIONS(4383), - [anon_sym_null] = ACTIONS(4381), - [anon_sym_if] = ACTIONS(4381), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_when] = ACTIONS(4381), - [anon_sym_try] = ACTIONS(4381), - [anon_sym_throw] = ACTIONS(4381), - [anon_sym_return] = ACTIONS(4381), - [anon_sym_continue] = ACTIONS(4381), - [anon_sym_break] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4950), - [anon_sym_DASH_EQ] = ACTIONS(4950), - [anon_sym_STAR_EQ] = ACTIONS(4950), - [anon_sym_SLASH_EQ] = ACTIONS(4950), - [anon_sym_PERCENT_EQ] = ACTIONS(4950), - [anon_sym_BANG_EQ] = ACTIONS(4381), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), - [anon_sym_EQ_EQ] = ACTIONS(4381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), - [anon_sym_LT_EQ] = ACTIONS(4383), - [anon_sym_GT_EQ] = ACTIONS(4383), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_as_QMARK] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG] = ACTIONS(4381), - [anon_sym_BANG_BANG] = ACTIONS(4383), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4383), - [anon_sym_continue_AT] = ACTIONS(4383), - [anon_sym_break_AT] = ACTIONS(4383), - [anon_sym_this_AT] = ACTIONS(4383), - [anon_sym_super_AT] = ACTIONS(4383), - [sym_real_literal] = ACTIONS(4383), - [sym_integer_literal] = ACTIONS(4381), - [sym_hex_literal] = ACTIONS(4383), - [sym_bin_literal] = ACTIONS(4383), - [anon_sym_true] = ACTIONS(4381), - [anon_sym_false] = ACTIONS(4381), - [anon_sym_SQUOTE] = ACTIONS(4383), - [sym__backtick_identifier] = ACTIONS(4383), - [sym__automatic_semicolon] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4383), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4383), + [3264] = { + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [3299] = { - [sym__alpha_identifier] = ACTIONS(5255), - [anon_sym_AT] = ACTIONS(5257), - [anon_sym_LBRACK] = ACTIONS(5257), - [anon_sym_as] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5255), - [anon_sym_fun] = ACTIONS(5255), - [anon_sym_LBRACE] = ACTIONS(5257), - [anon_sym_RBRACE] = ACTIONS(5257), - [anon_sym_LPAREN] = ACTIONS(5257), - [anon_sym_COMMA] = ACTIONS(5257), - [anon_sym_LT] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5255), - [anon_sym_where] = ACTIONS(5255), - [anon_sym_object] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5255), - [anon_sym_SEMI] = ACTIONS(5257), - [anon_sym_get] = ACTIONS(5255), - [anon_sym_set] = ACTIONS(5255), - [anon_sym_this] = ACTIONS(5255), - [anon_sym_super] = ACTIONS(5255), - [anon_sym_STAR] = ACTIONS(5255), - [sym_label] = ACTIONS(5255), - [anon_sym_in] = ACTIONS(5255), - [anon_sym_DOT_DOT] = ACTIONS(5257), - [anon_sym_QMARK_COLON] = ACTIONS(5257), - [anon_sym_AMP_AMP] = ACTIONS(5257), - [anon_sym_PIPE_PIPE] = ACTIONS(5257), - [anon_sym_null] = ACTIONS(5255), - [anon_sym_if] = ACTIONS(5255), - [anon_sym_else] = ACTIONS(5255), - [anon_sym_when] = ACTIONS(5255), - [anon_sym_try] = ACTIONS(5255), - [anon_sym_throw] = ACTIONS(5255), - [anon_sym_return] = ACTIONS(5255), - [anon_sym_continue] = ACTIONS(5255), - [anon_sym_break] = ACTIONS(5255), - [anon_sym_COLON_COLON] = ACTIONS(5257), - [anon_sym_PLUS_EQ] = ACTIONS(5257), - [anon_sym_DASH_EQ] = ACTIONS(5257), - [anon_sym_STAR_EQ] = ACTIONS(5257), - [anon_sym_SLASH_EQ] = ACTIONS(5257), - [anon_sym_PERCENT_EQ] = ACTIONS(5257), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5257), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5257), - [anon_sym_LT_EQ] = ACTIONS(5257), - [anon_sym_GT_EQ] = ACTIONS(5257), - [anon_sym_BANGin] = ACTIONS(5257), - [anon_sym_is] = ACTIONS(5255), - [anon_sym_BANGis] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_SLASH] = ACTIONS(5255), - [anon_sym_PERCENT] = ACTIONS(5255), - [anon_sym_as_QMARK] = ACTIONS(5257), - [anon_sym_PLUS_PLUS] = ACTIONS(5257), - [anon_sym_DASH_DASH] = ACTIONS(5257), - [anon_sym_BANG] = ACTIONS(5255), - [anon_sym_BANG_BANG] = ACTIONS(5257), - [anon_sym_data] = ACTIONS(5255), - [anon_sym_inner] = ACTIONS(5255), - [anon_sym_value] = ACTIONS(5255), - [anon_sym_expect] = ACTIONS(5255), - [anon_sym_actual] = ACTIONS(5255), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5257), - [anon_sym_continue_AT] = ACTIONS(5257), - [anon_sym_break_AT] = ACTIONS(5257), - [anon_sym_this_AT] = ACTIONS(5257), - [anon_sym_super_AT] = ACTIONS(5257), - [sym_real_literal] = ACTIONS(5257), - [sym_integer_literal] = ACTIONS(5255), - [sym_hex_literal] = ACTIONS(5257), - [sym_bin_literal] = ACTIONS(5257), - [anon_sym_true] = ACTIONS(5255), - [anon_sym_false] = ACTIONS(5255), - [anon_sym_SQUOTE] = ACTIONS(5257), - [sym__backtick_identifier] = ACTIONS(5257), - [sym__automatic_semicolon] = ACTIONS(5257), - [sym_safe_nav] = ACTIONS(5257), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5257), + [3265] = { + [sym__alpha_identifier] = ACTIONS(5031), + [anon_sym_AT] = ACTIONS(5033), + [anon_sym_LBRACK] = ACTIONS(5033), + [anon_sym_as] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5033), + [anon_sym_RBRACE] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(5033), + [anon_sym_COMMA] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5031), + [anon_sym_GT] = ACTIONS(5031), + [anon_sym_where] = ACTIONS(5031), + [anon_sym_object] = ACTIONS(5031), + [anon_sym_fun] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_get] = ACTIONS(5031), + [anon_sym_set] = ACTIONS(5031), + [anon_sym_this] = ACTIONS(5031), + [anon_sym_super] = ACTIONS(5031), + [anon_sym_STAR] = ACTIONS(5031), + [sym_label] = ACTIONS(5031), + [anon_sym_in] = ACTIONS(5031), + [anon_sym_DOT_DOT] = ACTIONS(5033), + [anon_sym_QMARK_COLON] = ACTIONS(5033), + [anon_sym_AMP_AMP] = ACTIONS(5033), + [anon_sym_PIPE_PIPE] = ACTIONS(5033), + [anon_sym_null] = ACTIONS(5031), + [anon_sym_if] = ACTIONS(5031), + [anon_sym_else] = ACTIONS(5031), + [anon_sym_when] = ACTIONS(5031), + [anon_sym_try] = ACTIONS(5031), + [anon_sym_throw] = ACTIONS(5031), + [anon_sym_return] = ACTIONS(5031), + [anon_sym_continue] = ACTIONS(5031), + [anon_sym_break] = ACTIONS(5031), + [anon_sym_COLON_COLON] = ACTIONS(5033), + [anon_sym_PLUS_EQ] = ACTIONS(5033), + [anon_sym_DASH_EQ] = ACTIONS(5033), + [anon_sym_STAR_EQ] = ACTIONS(5033), + [anon_sym_SLASH_EQ] = ACTIONS(5033), + [anon_sym_PERCENT_EQ] = ACTIONS(5033), + [anon_sym_BANG_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5033), + [anon_sym_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5033), + [anon_sym_LT_EQ] = ACTIONS(5033), + [anon_sym_GT_EQ] = ACTIONS(5033), + [anon_sym_BANGin] = ACTIONS(5033), + [anon_sym_is] = ACTIONS(5031), + [anon_sym_BANGis] = ACTIONS(5033), + [anon_sym_PLUS] = ACTIONS(5031), + [anon_sym_DASH] = ACTIONS(5031), + [anon_sym_SLASH] = ACTIONS(5031), + [anon_sym_PERCENT] = ACTIONS(5031), + [anon_sym_as_QMARK] = ACTIONS(5033), + [anon_sym_PLUS_PLUS] = ACTIONS(5033), + [anon_sym_DASH_DASH] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5031), + [anon_sym_BANG_BANG] = ACTIONS(5033), + [anon_sym_data] = ACTIONS(5031), + [anon_sym_inner] = ACTIONS(5031), + [anon_sym_value] = ACTIONS(5031), + [anon_sym_expect] = ACTIONS(5031), + [anon_sym_actual] = ACTIONS(5031), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5033), + [anon_sym_continue_AT] = ACTIONS(5033), + [anon_sym_break_AT] = ACTIONS(5033), + [anon_sym_this_AT] = ACTIONS(5033), + [anon_sym_super_AT] = ACTIONS(5033), + [sym_real_literal] = ACTIONS(5033), + [sym_integer_literal] = ACTIONS(5031), + [sym_hex_literal] = ACTIONS(5033), + [sym_bin_literal] = ACTIONS(5033), + [anon_sym_true] = ACTIONS(5031), + [anon_sym_false] = ACTIONS(5031), + [anon_sym_SQUOTE] = ACTIONS(5033), + [sym__backtick_identifier] = ACTIONS(5033), + [sym__automatic_semicolon] = ACTIONS(5033), + [sym_safe_nav] = ACTIONS(5033), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5033), }, - [3300] = { - [aux_sym_type_constraints_repeat1] = STATE(3342), - [sym__alpha_identifier] = ACTIONS(4506), - [anon_sym_AT] = ACTIONS(4508), - [anon_sym_LBRACK] = ACTIONS(4508), - [anon_sym_RBRACK] = ACTIONS(4508), - [anon_sym_as] = ACTIONS(4506), - [anon_sym_EQ] = ACTIONS(4506), - [anon_sym_LBRACE] = ACTIONS(4508), - [anon_sym_RBRACE] = ACTIONS(4508), - [anon_sym_LPAREN] = ACTIONS(4508), - [anon_sym_COMMA] = ACTIONS(6768), - [anon_sym_RPAREN] = ACTIONS(4508), - [anon_sym_by] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4506), - [anon_sym_GT] = ACTIONS(4506), - [anon_sym_where] = ACTIONS(4506), - [anon_sym_DOT] = ACTIONS(4506), - [anon_sym_SEMI] = ACTIONS(4508), - [anon_sym_get] = ACTIONS(4506), - [anon_sym_set] = ACTIONS(4506), - [anon_sym_STAR] = ACTIONS(4506), - [anon_sym_DASH_GT] = ACTIONS(4508), - [sym_label] = ACTIONS(4508), - [anon_sym_in] = ACTIONS(4506), - [anon_sym_while] = ACTIONS(4506), - [anon_sym_DOT_DOT] = ACTIONS(4508), - [anon_sym_QMARK_COLON] = ACTIONS(4508), - [anon_sym_AMP_AMP] = ACTIONS(4508), - [anon_sym_PIPE_PIPE] = ACTIONS(4508), - [anon_sym_else] = ACTIONS(4506), - [anon_sym_COLON_COLON] = ACTIONS(4508), - [anon_sym_PLUS_EQ] = ACTIONS(4508), - [anon_sym_DASH_EQ] = ACTIONS(4508), - [anon_sym_STAR_EQ] = ACTIONS(4508), - [anon_sym_SLASH_EQ] = ACTIONS(4508), - [anon_sym_PERCENT_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ] = ACTIONS(4506), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4508), - [anon_sym_LT_EQ] = ACTIONS(4508), - [anon_sym_GT_EQ] = ACTIONS(4508), - [anon_sym_BANGin] = ACTIONS(4508), - [anon_sym_is] = ACTIONS(4506), - [anon_sym_BANGis] = ACTIONS(4508), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_DASH] = ACTIONS(4506), - [anon_sym_SLASH] = ACTIONS(4506), - [anon_sym_PERCENT] = ACTIONS(4506), - [anon_sym_as_QMARK] = ACTIONS(4508), - [anon_sym_PLUS_PLUS] = ACTIONS(4508), - [anon_sym_DASH_DASH] = ACTIONS(4508), - [anon_sym_BANG_BANG] = ACTIONS(4508), - [anon_sym_suspend] = ACTIONS(4506), - [anon_sym_sealed] = ACTIONS(4506), - [anon_sym_annotation] = ACTIONS(4506), - [anon_sym_data] = ACTIONS(4506), - [anon_sym_inner] = ACTIONS(4506), - [anon_sym_value] = ACTIONS(4506), - [anon_sym_override] = ACTIONS(4506), - [anon_sym_lateinit] = ACTIONS(4506), - [anon_sym_public] = ACTIONS(4506), - [anon_sym_private] = ACTIONS(4506), - [anon_sym_internal] = ACTIONS(4506), - [anon_sym_protected] = ACTIONS(4506), - [anon_sym_tailrec] = ACTIONS(4506), - [anon_sym_operator] = ACTIONS(4506), - [anon_sym_infix] = ACTIONS(4506), - [anon_sym_inline] = ACTIONS(4506), - [anon_sym_external] = ACTIONS(4506), - [sym_property_modifier] = ACTIONS(4506), - [anon_sym_abstract] = ACTIONS(4506), - [anon_sym_final] = ACTIONS(4506), - [anon_sym_open] = ACTIONS(4506), - [anon_sym_vararg] = ACTIONS(4506), - [anon_sym_noinline] = ACTIONS(4506), - [anon_sym_crossinline] = ACTIONS(4506), - [anon_sym_expect] = ACTIONS(4506), - [anon_sym_actual] = ACTIONS(4506), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4508), - [sym_safe_nav] = ACTIONS(4508), + [3266] = { + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(4449), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), + }, + [3267] = { + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [3268] = { + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [3269] = { + [sym__alpha_identifier] = ACTIONS(5145), + [anon_sym_AT] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_as] = ACTIONS(5145), + [anon_sym_EQ] = ACTIONS(5145), + [anon_sym_LBRACE] = ACTIONS(5147), + [anon_sym_RBRACE] = ACTIONS(5147), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_where] = ACTIONS(5145), + [anon_sym_object] = ACTIONS(5145), + [anon_sym_fun] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5145), + [anon_sym_SEMI] = ACTIONS(5147), + [anon_sym_get] = ACTIONS(5145), + [anon_sym_set] = ACTIONS(5145), + [anon_sym_this] = ACTIONS(5145), + [anon_sym_super] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [sym_label] = ACTIONS(5145), + [anon_sym_in] = ACTIONS(5145), + [anon_sym_DOT_DOT] = ACTIONS(5147), + [anon_sym_QMARK_COLON] = ACTIONS(5147), + [anon_sym_AMP_AMP] = ACTIONS(5147), + [anon_sym_PIPE_PIPE] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(5145), + [anon_sym_if] = ACTIONS(5145), + [anon_sym_else] = ACTIONS(5145), + [anon_sym_when] = ACTIONS(5145), + [anon_sym_try] = ACTIONS(5145), + [anon_sym_throw] = ACTIONS(5145), + [anon_sym_return] = ACTIONS(5145), + [anon_sym_continue] = ACTIONS(5145), + [anon_sym_break] = ACTIONS(5145), + [anon_sym_COLON_COLON] = ACTIONS(5147), + [anon_sym_PLUS_EQ] = ACTIONS(5147), + [anon_sym_DASH_EQ] = ACTIONS(5147), + [anon_sym_STAR_EQ] = ACTIONS(5147), + [anon_sym_SLASH_EQ] = ACTIONS(5147), + [anon_sym_PERCENT_EQ] = ACTIONS(5147), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5147), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5147), + [anon_sym_LT_EQ] = ACTIONS(5147), + [anon_sym_GT_EQ] = ACTIONS(5147), + [anon_sym_BANGin] = ACTIONS(5147), + [anon_sym_is] = ACTIONS(5145), + [anon_sym_BANGis] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_as_QMARK] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5147), + [anon_sym_DASH_DASH] = ACTIONS(5147), + [anon_sym_BANG] = ACTIONS(5145), + [anon_sym_BANG_BANG] = ACTIONS(5147), + [anon_sym_data] = ACTIONS(5145), + [anon_sym_inner] = ACTIONS(5145), + [anon_sym_value] = ACTIONS(5145), + [anon_sym_expect] = ACTIONS(5145), + [anon_sym_actual] = ACTIONS(5145), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5147), + [anon_sym_continue_AT] = ACTIONS(5147), + [anon_sym_break_AT] = ACTIONS(5147), + [anon_sym_this_AT] = ACTIONS(5147), + [anon_sym_super_AT] = ACTIONS(5147), + [sym_real_literal] = ACTIONS(5147), + [sym_integer_literal] = ACTIONS(5145), + [sym_hex_literal] = ACTIONS(5147), + [sym_bin_literal] = ACTIONS(5147), + [anon_sym_true] = ACTIONS(5145), + [anon_sym_false] = ACTIONS(5145), + [anon_sym_SQUOTE] = ACTIONS(5147), + [sym__backtick_identifier] = ACTIONS(5147), + [sym__automatic_semicolon] = ACTIONS(5147), + [sym_safe_nav] = ACTIONS(5147), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5147), }, - [3301] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_RBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_RPAREN] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_GT] = ACTIONS(4381), - [anon_sym_where] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [anon_sym_DASH_GT] = ACTIONS(4383), - [sym_label] = ACTIONS(4383), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_while] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_QMARK_COLON] = ACTIONS(4383), - [anon_sym_AMP_AMP] = ACTIONS(4383), - [anon_sym_PIPE_PIPE] = ACTIONS(4383), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_catch] = ACTIONS(4381), - [anon_sym_finally] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4383), - [anon_sym_DASH_EQ] = ACTIONS(4383), - [anon_sym_STAR_EQ] = ACTIONS(4383), - [anon_sym_SLASH_EQ] = ACTIONS(4383), - [anon_sym_PERCENT_EQ] = ACTIONS(4383), - [anon_sym_BANG_EQ] = ACTIONS(4381), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), - [anon_sym_EQ_EQ] = ACTIONS(4381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), - [anon_sym_LT_EQ] = ACTIONS(4383), - [anon_sym_GT_EQ] = ACTIONS(4383), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_as_QMARK] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG_BANG] = ACTIONS(4383), - [anon_sym_suspend] = ACTIONS(4381), - [anon_sym_sealed] = ACTIONS(4381), - [anon_sym_annotation] = ACTIONS(4381), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_override] = ACTIONS(4381), - [anon_sym_lateinit] = ACTIONS(4381), - [anon_sym_public] = ACTIONS(4381), - [anon_sym_private] = ACTIONS(4381), - [anon_sym_internal] = ACTIONS(4381), - [anon_sym_protected] = ACTIONS(4381), - [anon_sym_tailrec] = ACTIONS(4381), - [anon_sym_operator] = ACTIONS(4381), - [anon_sym_infix] = ACTIONS(4381), - [anon_sym_inline] = ACTIONS(4381), - [anon_sym_external] = ACTIONS(4381), - [sym_property_modifier] = ACTIONS(4381), - [anon_sym_abstract] = ACTIONS(4381), - [anon_sym_final] = ACTIONS(4381), - [anon_sym_open] = ACTIONS(4381), - [anon_sym_vararg] = ACTIONS(4381), - [anon_sym_noinline] = ACTIONS(4381), - [anon_sym_crossinline] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4383), + [3270] = { + [sym__alpha_identifier] = ACTIONS(5153), + [anon_sym_AT] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_object] = ACTIONS(5153), + [anon_sym_fun] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5153), + [anon_sym_SEMI] = ACTIONS(5155), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_this] = ACTIONS(5153), + [anon_sym_super] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [sym_label] = ACTIONS(5153), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5155), + [anon_sym_QMARK_COLON] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5155), + [anon_sym_null] = ACTIONS(5153), + [anon_sym_if] = ACTIONS(5153), + [anon_sym_else] = ACTIONS(5153), + [anon_sym_when] = ACTIONS(5153), + [anon_sym_try] = ACTIONS(5153), + [anon_sym_throw] = ACTIONS(5153), + [anon_sym_return] = ACTIONS(5153), + [anon_sym_continue] = ACTIONS(5153), + [anon_sym_break] = ACTIONS(5153), + [anon_sym_COLON_COLON] = ACTIONS(5155), + [anon_sym_PLUS_EQ] = ACTIONS(5155), + [anon_sym_DASH_EQ] = ACTIONS(5155), + [anon_sym_STAR_EQ] = ACTIONS(5155), + [anon_sym_SLASH_EQ] = ACTIONS(5155), + [anon_sym_PERCENT_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), + [anon_sym_LT_EQ] = ACTIONS(5155), + [anon_sym_GT_EQ] = ACTIONS(5155), + [anon_sym_BANGin] = ACTIONS(5155), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_BANGis] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_as_QMARK] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_BANG] = ACTIONS(5153), + [anon_sym_BANG_BANG] = ACTIONS(5155), + [anon_sym_data] = ACTIONS(5153), + [anon_sym_inner] = ACTIONS(5153), + [anon_sym_value] = ACTIONS(5153), + [anon_sym_expect] = ACTIONS(5153), + [anon_sym_actual] = ACTIONS(5153), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5155), + [anon_sym_continue_AT] = ACTIONS(5155), + [anon_sym_break_AT] = ACTIONS(5155), + [anon_sym_this_AT] = ACTIONS(5155), + [anon_sym_super_AT] = ACTIONS(5155), + [sym_real_literal] = ACTIONS(5155), + [sym_integer_literal] = ACTIONS(5153), + [sym_hex_literal] = ACTIONS(5155), + [sym_bin_literal] = ACTIONS(5155), + [anon_sym_true] = ACTIONS(5153), + [anon_sym_false] = ACTIONS(5153), + [anon_sym_SQUOTE] = ACTIONS(5155), + [sym__backtick_identifier] = ACTIONS(5155), + [sym__automatic_semicolon] = ACTIONS(5155), + [sym_safe_nav] = ACTIONS(5155), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5155), + }, + [3271] = { + [sym_function_body] = STATE(3265), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), + }, + [3272] = { + [sym__alpha_identifier] = ACTIONS(5149), + [anon_sym_AT] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_EQ] = ACTIONS(5149), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_where] = ACTIONS(5149), + [anon_sym_object] = ACTIONS(5149), + [anon_sym_fun] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5149), + [anon_sym_SEMI] = ACTIONS(5151), + [anon_sym_get] = ACTIONS(5149), + [anon_sym_set] = ACTIONS(5149), + [anon_sym_this] = ACTIONS(5149), + [anon_sym_super] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [sym_label] = ACTIONS(5149), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5151), + [anon_sym_AMP_AMP] = ACTIONS(5151), + [anon_sym_PIPE_PIPE] = ACTIONS(5151), + [anon_sym_null] = ACTIONS(5149), + [anon_sym_if] = ACTIONS(5149), + [anon_sym_else] = ACTIONS(5149), + [anon_sym_when] = ACTIONS(5149), + [anon_sym_try] = ACTIONS(5149), + [anon_sym_throw] = ACTIONS(5149), + [anon_sym_return] = ACTIONS(5149), + [anon_sym_continue] = ACTIONS(5149), + [anon_sym_break] = ACTIONS(5149), + [anon_sym_COLON_COLON] = ACTIONS(5151), + [anon_sym_PLUS_EQ] = ACTIONS(5151), + [anon_sym_DASH_EQ] = ACTIONS(5151), + [anon_sym_STAR_EQ] = ACTIONS(5151), + [anon_sym_SLASH_EQ] = ACTIONS(5151), + [anon_sym_PERCENT_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), + [anon_sym_LT_EQ] = ACTIONS(5151), + [anon_sym_GT_EQ] = ACTIONS(5151), + [anon_sym_BANGin] = ACTIONS(5151), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_BANGis] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_as_QMARK] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_BANG] = ACTIONS(5149), + [anon_sym_BANG_BANG] = ACTIONS(5151), + [anon_sym_data] = ACTIONS(5149), + [anon_sym_inner] = ACTIONS(5149), + [anon_sym_value] = ACTIONS(5149), + [anon_sym_expect] = ACTIONS(5149), + [anon_sym_actual] = ACTIONS(5149), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5151), + [anon_sym_continue_AT] = ACTIONS(5151), + [anon_sym_break_AT] = ACTIONS(5151), + [anon_sym_this_AT] = ACTIONS(5151), + [anon_sym_super_AT] = ACTIONS(5151), + [sym_real_literal] = ACTIONS(5151), + [sym_integer_literal] = ACTIONS(5149), + [sym_hex_literal] = ACTIONS(5151), + [sym_bin_literal] = ACTIONS(5151), + [anon_sym_true] = ACTIONS(5149), + [anon_sym_false] = ACTIONS(5149), + [anon_sym_SQUOTE] = ACTIONS(5151), + [sym__backtick_identifier] = ACTIONS(5151), + [sym__automatic_semicolon] = ACTIONS(5151), + [sym_safe_nav] = ACTIONS(5151), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5151), }, - [3302] = { - [sym__alpha_identifier] = ACTIONS(5193), - [anon_sym_AT] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_as] = ACTIONS(5193), - [anon_sym_EQ] = ACTIONS(5193), - [anon_sym_fun] = ACTIONS(5193), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_RBRACE] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_where] = ACTIONS(5193), - [anon_sym_object] = ACTIONS(5193), - [anon_sym_DOT] = ACTIONS(5193), - [anon_sym_SEMI] = ACTIONS(5195), - [anon_sym_get] = ACTIONS(5193), - [anon_sym_set] = ACTIONS(5193), - [anon_sym_this] = ACTIONS(5193), - [anon_sym_super] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [sym_label] = ACTIONS(5193), - [anon_sym_in] = ACTIONS(5193), - [anon_sym_DOT_DOT] = ACTIONS(5195), - [anon_sym_QMARK_COLON] = ACTIONS(5195), - [anon_sym_AMP_AMP] = ACTIONS(5195), - [anon_sym_PIPE_PIPE] = ACTIONS(5195), - [anon_sym_null] = ACTIONS(5193), - [anon_sym_if] = ACTIONS(5193), - [anon_sym_else] = ACTIONS(5193), - [anon_sym_when] = ACTIONS(5193), - [anon_sym_try] = ACTIONS(5193), - [anon_sym_throw] = ACTIONS(5193), - [anon_sym_return] = ACTIONS(5193), - [anon_sym_continue] = ACTIONS(5193), - [anon_sym_break] = ACTIONS(5193), - [anon_sym_COLON_COLON] = ACTIONS(5195), - [anon_sym_PLUS_EQ] = ACTIONS(5195), - [anon_sym_DASH_EQ] = ACTIONS(5195), - [anon_sym_STAR_EQ] = ACTIONS(5195), - [anon_sym_SLASH_EQ] = ACTIONS(5195), - [anon_sym_PERCENT_EQ] = ACTIONS(5195), - [anon_sym_BANG_EQ] = ACTIONS(5193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5195), - [anon_sym_EQ_EQ] = ACTIONS(5193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5195), - [anon_sym_LT_EQ] = ACTIONS(5195), - [anon_sym_GT_EQ] = ACTIONS(5195), - [anon_sym_BANGin] = ACTIONS(5195), - [anon_sym_is] = ACTIONS(5193), - [anon_sym_BANGis] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_PERCENT] = ACTIONS(5193), - [anon_sym_as_QMARK] = ACTIONS(5195), - [anon_sym_PLUS_PLUS] = ACTIONS(5195), - [anon_sym_DASH_DASH] = ACTIONS(5195), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_BANG_BANG] = ACTIONS(5195), - [anon_sym_data] = ACTIONS(5193), - [anon_sym_inner] = ACTIONS(5193), - [anon_sym_value] = ACTIONS(5193), - [anon_sym_expect] = ACTIONS(5193), - [anon_sym_actual] = ACTIONS(5193), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5195), - [anon_sym_continue_AT] = ACTIONS(5195), - [anon_sym_break_AT] = ACTIONS(5195), - [anon_sym_this_AT] = ACTIONS(5195), - [anon_sym_super_AT] = ACTIONS(5195), - [sym_real_literal] = ACTIONS(5195), - [sym_integer_literal] = ACTIONS(5193), - [sym_hex_literal] = ACTIONS(5195), - [sym_bin_literal] = ACTIONS(5195), - [anon_sym_true] = ACTIONS(5193), - [anon_sym_false] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5195), - [sym__backtick_identifier] = ACTIONS(5195), - [sym__automatic_semicolon] = ACTIONS(5195), - [sym_safe_nav] = ACTIONS(5195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5195), + [3273] = { + [sym_type_constraints] = STATE(3646), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(6704), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [3303] = { - [sym__alpha_identifier] = ACTIONS(5215), - [anon_sym_AT] = ACTIONS(5217), - [anon_sym_LBRACK] = ACTIONS(5217), - [anon_sym_as] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_fun] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5217), - [anon_sym_RBRACE] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5217), - [anon_sym_COMMA] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5215), - [anon_sym_GT] = ACTIONS(5215), - [anon_sym_where] = ACTIONS(5215), - [anon_sym_object] = ACTIONS(5215), - [anon_sym_DOT] = ACTIONS(5215), - [anon_sym_SEMI] = ACTIONS(5217), - [anon_sym_get] = ACTIONS(5215), - [anon_sym_set] = ACTIONS(5215), - [anon_sym_this] = ACTIONS(5215), - [anon_sym_super] = ACTIONS(5215), - [anon_sym_STAR] = ACTIONS(5215), - [sym_label] = ACTIONS(5215), - [anon_sym_in] = ACTIONS(5215), - [anon_sym_DOT_DOT] = ACTIONS(5217), - [anon_sym_QMARK_COLON] = ACTIONS(5217), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [anon_sym_null] = ACTIONS(5215), - [anon_sym_if] = ACTIONS(5215), - [anon_sym_else] = ACTIONS(5215), - [anon_sym_when] = ACTIONS(5215), - [anon_sym_try] = ACTIONS(5215), - [anon_sym_throw] = ACTIONS(5215), - [anon_sym_return] = ACTIONS(5215), - [anon_sym_continue] = ACTIONS(5215), - [anon_sym_break] = ACTIONS(5215), - [anon_sym_COLON_COLON] = ACTIONS(5217), - [anon_sym_PLUS_EQ] = ACTIONS(5217), - [anon_sym_DASH_EQ] = ACTIONS(5217), - [anon_sym_STAR_EQ] = ACTIONS(5217), - [anon_sym_SLASH_EQ] = ACTIONS(5217), - [anon_sym_PERCENT_EQ] = ACTIONS(5217), - [anon_sym_BANG_EQ] = ACTIONS(5215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5217), - [anon_sym_EQ_EQ] = ACTIONS(5215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5217), - [anon_sym_LT_EQ] = ACTIONS(5217), - [anon_sym_GT_EQ] = ACTIONS(5217), - [anon_sym_BANGin] = ACTIONS(5217), - [anon_sym_is] = ACTIONS(5215), - [anon_sym_BANGis] = ACTIONS(5217), - [anon_sym_PLUS] = ACTIONS(5215), - [anon_sym_DASH] = ACTIONS(5215), - [anon_sym_SLASH] = ACTIONS(5215), - [anon_sym_PERCENT] = ACTIONS(5215), - [anon_sym_as_QMARK] = ACTIONS(5217), - [anon_sym_PLUS_PLUS] = ACTIONS(5217), - [anon_sym_DASH_DASH] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5215), - [anon_sym_BANG_BANG] = ACTIONS(5217), - [anon_sym_data] = ACTIONS(5215), - [anon_sym_inner] = ACTIONS(5215), - [anon_sym_value] = ACTIONS(5215), - [anon_sym_expect] = ACTIONS(5215), - [anon_sym_actual] = ACTIONS(5215), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5217), - [anon_sym_continue_AT] = ACTIONS(5217), - [anon_sym_break_AT] = ACTIONS(5217), - [anon_sym_this_AT] = ACTIONS(5217), - [anon_sym_super_AT] = ACTIONS(5217), - [sym_real_literal] = ACTIONS(5217), - [sym_integer_literal] = ACTIONS(5215), - [sym_hex_literal] = ACTIONS(5217), - [sym_bin_literal] = ACTIONS(5217), - [anon_sym_true] = ACTIONS(5215), - [anon_sym_false] = ACTIONS(5215), - [anon_sym_SQUOTE] = ACTIONS(5217), - [sym__backtick_identifier] = ACTIONS(5217), - [sym__automatic_semicolon] = ACTIONS(5217), - [sym_safe_nav] = ACTIONS(5217), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5217), + [3274] = { + [sym_type_constraints] = STATE(3645), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, - [3304] = { - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [3275] = { + [sym_type_constraints] = STATE(3656), + [sym_function_body] = STATE(3866), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6710), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), }, - [3305] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_constructor] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4010), - [anon_sym_set] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4015), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_while] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4010), - [anon_sym_sealed] = ACTIONS(4010), - [anon_sym_annotation] = ACTIONS(4010), - [anon_sym_data] = ACTIONS(4010), - [anon_sym_inner] = ACTIONS(4010), - [anon_sym_value] = ACTIONS(4010), - [anon_sym_override] = ACTIONS(4010), - [anon_sym_lateinit] = ACTIONS(4010), - [anon_sym_public] = ACTIONS(4010), - [anon_sym_private] = ACTIONS(4010), - [anon_sym_internal] = ACTIONS(4010), - [anon_sym_protected] = ACTIONS(4010), - [anon_sym_tailrec] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_infix] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym_external] = ACTIONS(4010), - [sym_property_modifier] = ACTIONS(4010), - [anon_sym_abstract] = ACTIONS(4010), - [anon_sym_final] = ACTIONS(4010), - [anon_sym_open] = ACTIONS(4010), - [anon_sym_vararg] = ACTIONS(4010), - [anon_sym_noinline] = ACTIONS(4010), - [anon_sym_crossinline] = ACTIONS(4010), - [anon_sym_expect] = ACTIONS(4010), - [anon_sym_actual] = ACTIONS(4010), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), + [3276] = { + [sym__alpha_identifier] = ACTIONS(4581), + [anon_sym_AT] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4581), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_RBRACK] = ACTIONS(4583), + [anon_sym_as] = ACTIONS(4581), + [anon_sym_EQ] = ACTIONS(4581), + [anon_sym_LBRACE] = ACTIONS(4583), + [anon_sym_RBRACE] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_COMMA] = ACTIONS(4583), + [anon_sym_RPAREN] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4581), + [anon_sym_GT] = ACTIONS(4581), + [anon_sym_where] = ACTIONS(4581), + [anon_sym_DOT] = ACTIONS(4581), + [anon_sym_SEMI] = ACTIONS(4583), + [anon_sym_get] = ACTIONS(4581), + [anon_sym_set] = ACTIONS(4581), + [anon_sym_STAR] = ACTIONS(4581), + [anon_sym_DASH_GT] = ACTIONS(4583), + [sym_label] = ACTIONS(4583), + [anon_sym_in] = ACTIONS(4581), + [anon_sym_while] = ACTIONS(4581), + [anon_sym_DOT_DOT] = ACTIONS(4583), + [anon_sym_QMARK_COLON] = ACTIONS(4583), + [anon_sym_AMP_AMP] = ACTIONS(4583), + [anon_sym_PIPE_PIPE] = ACTIONS(4583), + [anon_sym_else] = ACTIONS(4581), + [anon_sym_COLON_COLON] = ACTIONS(4583), + [anon_sym_PLUS_EQ] = ACTIONS(4583), + [anon_sym_DASH_EQ] = ACTIONS(4583), + [anon_sym_STAR_EQ] = ACTIONS(4583), + [anon_sym_SLASH_EQ] = ACTIONS(4583), + [anon_sym_PERCENT_EQ] = ACTIONS(4583), + [anon_sym_BANG_EQ] = ACTIONS(4581), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4581), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4583), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4583), + [anon_sym_BANGin] = ACTIONS(4583), + [anon_sym_is] = ACTIONS(4581), + [anon_sym_BANGis] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4581), + [anon_sym_DASH] = ACTIONS(4581), + [anon_sym_SLASH] = ACTIONS(4581), + [anon_sym_PERCENT] = ACTIONS(4581), + [anon_sym_as_QMARK] = ACTIONS(4583), + [anon_sym_PLUS_PLUS] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4583), + [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_suspend] = ACTIONS(4581), + [anon_sym_sealed] = ACTIONS(4581), + [anon_sym_annotation] = ACTIONS(4581), + [anon_sym_data] = ACTIONS(4581), + [anon_sym_inner] = ACTIONS(4581), + [anon_sym_value] = ACTIONS(4581), + [anon_sym_override] = ACTIONS(4581), + [anon_sym_lateinit] = ACTIONS(4581), + [anon_sym_public] = ACTIONS(4581), + [anon_sym_private] = ACTIONS(4581), + [anon_sym_internal] = ACTIONS(4581), + [anon_sym_protected] = ACTIONS(4581), + [anon_sym_tailrec] = ACTIONS(4581), + [anon_sym_operator] = ACTIONS(4581), + [anon_sym_infix] = ACTIONS(4581), + [anon_sym_inline] = ACTIONS(4581), + [anon_sym_external] = ACTIONS(4581), + [sym_property_modifier] = ACTIONS(4581), + [anon_sym_abstract] = ACTIONS(4581), + [anon_sym_final] = ACTIONS(4581), + [anon_sym_open] = ACTIONS(4581), + [anon_sym_vararg] = ACTIONS(4581), + [anon_sym_noinline] = ACTIONS(4581), + [anon_sym_crossinline] = ACTIONS(4581), + [anon_sym_expect] = ACTIONS(4581), + [anon_sym_actual] = ACTIONS(4581), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4583), + [sym_safe_nav] = ACTIONS(4583), [sym_multiline_comment] = ACTIONS(3), }, - [3306] = { - [sym__alpha_identifier] = ACTIONS(4487), - [anon_sym_AT] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [anon_sym_RBRACK] = ACTIONS(4489), - [anon_sym_as] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_RBRACE] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_COMMA] = ACTIONS(4489), - [anon_sym_RPAREN] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_where] = ACTIONS(4487), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_SEMI] = ACTIONS(4489), - [anon_sym_get] = ACTIONS(4487), - [anon_sym_set] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [anon_sym_DASH_GT] = ACTIONS(4489), - [sym_label] = ACTIONS(4489), - [anon_sym_in] = ACTIONS(4487), - [anon_sym_while] = ACTIONS(4487), - [anon_sym_DOT_DOT] = ACTIONS(4489), - [anon_sym_QMARK_COLON] = ACTIONS(4489), - [anon_sym_AMP_AMP] = ACTIONS(4489), - [anon_sym_PIPE_PIPE] = ACTIONS(4489), - [anon_sym_else] = ACTIONS(4487), - [anon_sym_COLON_COLON] = ACTIONS(4489), - [anon_sym_PLUS_EQ] = ACTIONS(4489), - [anon_sym_DASH_EQ] = ACTIONS(4489), - [anon_sym_STAR_EQ] = ACTIONS(4489), - [anon_sym_SLASH_EQ] = ACTIONS(4489), - [anon_sym_PERCENT_EQ] = ACTIONS(4489), - [anon_sym_BANG_EQ] = ACTIONS(4487), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4489), - [anon_sym_EQ_EQ] = ACTIONS(4487), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4489), - [anon_sym_LT_EQ] = ACTIONS(4489), - [anon_sym_GT_EQ] = ACTIONS(4489), - [anon_sym_BANGin] = ACTIONS(4489), - [anon_sym_is] = ACTIONS(4487), - [anon_sym_BANGis] = ACTIONS(4489), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_PERCENT] = ACTIONS(4487), - [anon_sym_as_QMARK] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_BANG_BANG] = ACTIONS(4489), - [anon_sym_suspend] = ACTIONS(4487), - [anon_sym_sealed] = ACTIONS(4487), - [anon_sym_annotation] = ACTIONS(4487), - [anon_sym_data] = ACTIONS(4487), - [anon_sym_inner] = ACTIONS(4487), - [anon_sym_value] = ACTIONS(4487), - [anon_sym_override] = ACTIONS(4487), - [anon_sym_lateinit] = ACTIONS(4487), - [anon_sym_public] = ACTIONS(4487), - [anon_sym_private] = ACTIONS(4487), - [anon_sym_internal] = ACTIONS(4487), - [anon_sym_protected] = ACTIONS(4487), - [anon_sym_tailrec] = ACTIONS(4487), - [anon_sym_operator] = ACTIONS(4487), - [anon_sym_infix] = ACTIONS(4487), - [anon_sym_inline] = ACTIONS(4487), - [anon_sym_external] = ACTIONS(4487), - [sym_property_modifier] = ACTIONS(4487), - [anon_sym_abstract] = ACTIONS(4487), - [anon_sym_final] = ACTIONS(4487), - [anon_sym_open] = ACTIONS(4487), - [anon_sym_vararg] = ACTIONS(4487), - [anon_sym_noinline] = ACTIONS(4487), - [anon_sym_crossinline] = ACTIONS(4487), - [anon_sym_expect] = ACTIONS(4487), - [anon_sym_actual] = ACTIONS(4487), - [sym_line_comment] = ACTIONS(3), - [aux_sym_unsigned_literal_token1] = ACTIONS(6787), - [anon_sym_L] = ACTIONS(6789), - [sym__backtick_identifier] = ACTIONS(4489), - [sym_safe_nav] = ACTIONS(4489), + [3277] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3115), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [3307] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(6744), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), + [3278] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3090), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), }, - [3308] = { - [sym__alpha_identifier] = ACTIONS(5004), - [anon_sym_AT] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_as] = ACTIONS(5004), - [anon_sym_EQ] = ACTIONS(5004), - [anon_sym_fun] = ACTIONS(5004), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_LT] = ACTIONS(5004), - [anon_sym_GT] = ACTIONS(5004), - [anon_sym_where] = ACTIONS(5004), - [anon_sym_object] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5004), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym_get] = ACTIONS(5004), - [anon_sym_set] = ACTIONS(5004), - [anon_sym_this] = ACTIONS(5004), - [anon_sym_super] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5004), - [sym_label] = ACTIONS(5004), - [anon_sym_in] = ACTIONS(5004), - [anon_sym_DOT_DOT] = ACTIONS(5006), - [anon_sym_QMARK_COLON] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_null] = ACTIONS(5004), - [anon_sym_if] = ACTIONS(5004), - [anon_sym_else] = ACTIONS(5004), - [anon_sym_when] = ACTIONS(5004), - [anon_sym_try] = ACTIONS(5004), - [anon_sym_throw] = ACTIONS(5004), - [anon_sym_return] = ACTIONS(5004), - [anon_sym_continue] = ACTIONS(5004), - [anon_sym_break] = ACTIONS(5004), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym_PLUS_EQ] = ACTIONS(5006), - [anon_sym_DASH_EQ] = ACTIONS(5006), - [anon_sym_STAR_EQ] = ACTIONS(5006), - [anon_sym_SLASH_EQ] = ACTIONS(5006), - [anon_sym_PERCENT_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5004), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5006), - [anon_sym_EQ_EQ] = ACTIONS(5004), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5006), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_BANGin] = ACTIONS(5006), - [anon_sym_is] = ACTIONS(5004), - [anon_sym_BANGis] = ACTIONS(5006), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_SLASH] = ACTIONS(5004), - [anon_sym_PERCENT] = ACTIONS(5004), - [anon_sym_as_QMARK] = ACTIONS(5006), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_BANG] = ACTIONS(5004), - [anon_sym_BANG_BANG] = ACTIONS(5006), - [anon_sym_data] = ACTIONS(5004), - [anon_sym_inner] = ACTIONS(5004), - [anon_sym_value] = ACTIONS(5004), - [anon_sym_expect] = ACTIONS(5004), - [anon_sym_actual] = ACTIONS(5004), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5006), - [anon_sym_continue_AT] = ACTIONS(5006), - [anon_sym_break_AT] = ACTIONS(5006), - [anon_sym_this_AT] = ACTIONS(5006), - [anon_sym_super_AT] = ACTIONS(5006), - [sym_real_literal] = ACTIONS(5006), - [sym_integer_literal] = ACTIONS(5004), - [sym_hex_literal] = ACTIONS(5006), - [sym_bin_literal] = ACTIONS(5006), - [anon_sym_true] = ACTIONS(5004), - [anon_sym_false] = ACTIONS(5004), - [anon_sym_SQUOTE] = ACTIONS(5006), - [sym__backtick_identifier] = ACTIONS(5006), - [sym__automatic_semicolon] = ACTIONS(5006), - [sym_safe_nav] = ACTIONS(5006), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5006), + [3279] = { + [aux_sym_user_type_repeat1] = STATE(3319), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6760), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4193), + [sym__quest] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [sym_label] = ACTIONS(4195), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), }, - [3309] = { - [sym_file_annotation] = STATE(3309), - [aux_sym_source_file_repeat1] = STATE(3309), - [ts_builtin_sym_end] = ACTIONS(6791), - [sym__alpha_identifier] = ACTIONS(6793), - [anon_sym_AT] = ACTIONS(6795), - [anon_sym_LBRACK] = ACTIONS(6791), - [anon_sym_package] = ACTIONS(6793), - [anon_sym_import] = ACTIONS(6793), - [anon_sym_typealias] = ACTIONS(6793), - [anon_sym_class] = ACTIONS(6793), - [anon_sym_fun] = ACTIONS(6793), - [anon_sym_interface] = ACTIONS(6793), - [anon_sym_enum] = ACTIONS(6793), - [anon_sym_LBRACE] = ACTIONS(6791), - [anon_sym_LPAREN] = ACTIONS(6791), - [anon_sym_val] = ACTIONS(6793), - [anon_sym_var] = ACTIONS(6793), - [anon_sym_object] = ACTIONS(6793), - [anon_sym_get] = ACTIONS(6793), - [anon_sym_set] = ACTIONS(6793), - [anon_sym_this] = ACTIONS(6793), - [anon_sym_super] = ACTIONS(6793), - [anon_sym_STAR] = ACTIONS(6791), - [sym_label] = ACTIONS(6793), - [anon_sym_for] = ACTIONS(6793), - [anon_sym_while] = ACTIONS(6793), - [anon_sym_do] = ACTIONS(6793), - [anon_sym_null] = ACTIONS(6793), - [anon_sym_if] = ACTIONS(6793), - [anon_sym_when] = ACTIONS(6793), - [anon_sym_try] = ACTIONS(6793), - [anon_sym_throw] = ACTIONS(6793), - [anon_sym_return] = ACTIONS(6793), - [anon_sym_continue] = ACTIONS(6793), - [anon_sym_break] = ACTIONS(6793), - [anon_sym_COLON_COLON] = ACTIONS(6791), - [anon_sym_PLUS] = ACTIONS(6793), - [anon_sym_DASH] = ACTIONS(6793), - [anon_sym_PLUS_PLUS] = ACTIONS(6791), - [anon_sym_DASH_DASH] = ACTIONS(6791), - [anon_sym_BANG] = ACTIONS(6791), - [anon_sym_suspend] = ACTIONS(6793), - [anon_sym_sealed] = ACTIONS(6793), - [anon_sym_annotation] = ACTIONS(6793), - [anon_sym_data] = ACTIONS(6793), - [anon_sym_inner] = ACTIONS(6793), - [anon_sym_value] = ACTIONS(6793), - [anon_sym_override] = ACTIONS(6793), - [anon_sym_lateinit] = ACTIONS(6793), - [anon_sym_public] = ACTIONS(6793), - [anon_sym_private] = ACTIONS(6793), - [anon_sym_internal] = ACTIONS(6793), - [anon_sym_protected] = ACTIONS(6793), - [anon_sym_tailrec] = ACTIONS(6793), - [anon_sym_operator] = ACTIONS(6793), - [anon_sym_infix] = ACTIONS(6793), - [anon_sym_inline] = ACTIONS(6793), - [anon_sym_external] = ACTIONS(6793), - [sym_property_modifier] = ACTIONS(6793), - [anon_sym_abstract] = ACTIONS(6793), - [anon_sym_final] = ACTIONS(6793), - [anon_sym_open] = ACTIONS(6793), - [anon_sym_vararg] = ACTIONS(6793), - [anon_sym_noinline] = ACTIONS(6793), - [anon_sym_crossinline] = ACTIONS(6793), - [anon_sym_expect] = ACTIONS(6793), - [anon_sym_actual] = ACTIONS(6793), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6791), - [anon_sym_continue_AT] = ACTIONS(6791), - [anon_sym_break_AT] = ACTIONS(6791), - [anon_sym_this_AT] = ACTIONS(6791), - [anon_sym_super_AT] = ACTIONS(6791), - [sym_real_literal] = ACTIONS(6791), - [sym_integer_literal] = ACTIONS(6793), - [sym_hex_literal] = ACTIONS(6791), - [sym_bin_literal] = ACTIONS(6791), - [anon_sym_true] = ACTIONS(6793), - [anon_sym_false] = ACTIONS(6793), - [anon_sym_SQUOTE] = ACTIONS(6791), - [sym__backtick_identifier] = ACTIONS(6791), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6791), + [3280] = { + [sym_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), }, - [3310] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(6733), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), + [3281] = { + [sym__alpha_identifier] = ACTIONS(4571), + [anon_sym_AT] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [anon_sym_RBRACK] = ACTIONS(4573), + [anon_sym_as] = ACTIONS(4571), + [anon_sym_EQ] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_COMMA] = ACTIONS(4573), + [anon_sym_RPAREN] = ACTIONS(4573), + [anon_sym_by] = ACTIONS(4571), + [anon_sym_LT] = ACTIONS(4571), + [anon_sym_GT] = ACTIONS(4571), + [anon_sym_where] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_get] = ACTIONS(4571), + [anon_sym_set] = ACTIONS(4571), + [anon_sym_STAR] = ACTIONS(4571), + [anon_sym_DASH_GT] = ACTIONS(4573), + [sym_label] = ACTIONS(4573), + [anon_sym_in] = ACTIONS(4571), + [anon_sym_while] = ACTIONS(4571), + [anon_sym_DOT_DOT] = ACTIONS(4573), + [anon_sym_QMARK_COLON] = ACTIONS(4573), + [anon_sym_AMP_AMP] = ACTIONS(4573), + [anon_sym_PIPE_PIPE] = ACTIONS(4573), + [anon_sym_else] = ACTIONS(4571), + [anon_sym_COLON_COLON] = ACTIONS(4573), + [anon_sym_PLUS_EQ] = ACTIONS(4573), + [anon_sym_DASH_EQ] = ACTIONS(4573), + [anon_sym_STAR_EQ] = ACTIONS(4573), + [anon_sym_SLASH_EQ] = ACTIONS(4573), + [anon_sym_PERCENT_EQ] = ACTIONS(4573), + [anon_sym_BANG_EQ] = ACTIONS(4571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4573), + [anon_sym_EQ_EQ] = ACTIONS(4571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4573), + [anon_sym_LT_EQ] = ACTIONS(4573), + [anon_sym_GT_EQ] = ACTIONS(4573), + [anon_sym_BANGin] = ACTIONS(4573), + [anon_sym_is] = ACTIONS(4571), + [anon_sym_BANGis] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4571), + [anon_sym_PERCENT] = ACTIONS(4571), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4573), + [anon_sym_DASH_DASH] = ACTIONS(4573), + [anon_sym_BANG_BANG] = ACTIONS(4573), + [anon_sym_suspend] = ACTIONS(4571), + [anon_sym_sealed] = ACTIONS(4571), + [anon_sym_annotation] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(4571), + [anon_sym_inner] = ACTIONS(4571), + [anon_sym_value] = ACTIONS(4571), + [anon_sym_override] = ACTIONS(4571), + [anon_sym_lateinit] = ACTIONS(4571), + [anon_sym_public] = ACTIONS(4571), + [anon_sym_private] = ACTIONS(4571), + [anon_sym_internal] = ACTIONS(4571), + [anon_sym_protected] = ACTIONS(4571), + [anon_sym_tailrec] = ACTIONS(4571), + [anon_sym_operator] = ACTIONS(4571), + [anon_sym_infix] = ACTIONS(4571), + [anon_sym_inline] = ACTIONS(4571), + [anon_sym_external] = ACTIONS(4571), + [sym_property_modifier] = ACTIONS(4571), + [anon_sym_abstract] = ACTIONS(4571), + [anon_sym_final] = ACTIONS(4571), + [anon_sym_open] = ACTIONS(4571), + [anon_sym_vararg] = ACTIONS(4571), + [anon_sym_noinline] = ACTIONS(4571), + [anon_sym_crossinline] = ACTIONS(4571), + [anon_sym_expect] = ACTIONS(4571), + [anon_sym_actual] = ACTIONS(4571), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4573), + [sym_safe_nav] = ACTIONS(4573), + [sym_multiline_comment] = ACTIONS(3), }, - [3311] = { - [sym__alpha_identifier] = ACTIONS(4972), - [anon_sym_AT] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_as] = ACTIONS(4972), - [anon_sym_EQ] = ACTIONS(4972), - [anon_sym_fun] = ACTIONS(4972), - [anon_sym_LBRACE] = ACTIONS(4974), - [anon_sym_RBRACE] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4974), - [anon_sym_COMMA] = ACTIONS(4974), - [anon_sym_LT] = ACTIONS(4972), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_where] = ACTIONS(4972), - [anon_sym_object] = ACTIONS(4972), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_SEMI] = ACTIONS(4974), - [anon_sym_get] = ACTIONS(4972), - [anon_sym_set] = ACTIONS(4972), - [anon_sym_this] = ACTIONS(4972), - [anon_sym_super] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4972), - [sym_label] = ACTIONS(4972), - [anon_sym_in] = ACTIONS(4972), - [anon_sym_DOT_DOT] = ACTIONS(4974), - [anon_sym_QMARK_COLON] = ACTIONS(4974), - [anon_sym_AMP_AMP] = ACTIONS(4974), - [anon_sym_PIPE_PIPE] = ACTIONS(4974), - [anon_sym_null] = ACTIONS(4972), - [anon_sym_if] = ACTIONS(4972), - [anon_sym_else] = ACTIONS(4972), - [anon_sym_when] = ACTIONS(4972), - [anon_sym_try] = ACTIONS(4972), - [anon_sym_throw] = ACTIONS(4972), - [anon_sym_return] = ACTIONS(4972), - [anon_sym_continue] = ACTIONS(4972), - [anon_sym_break] = ACTIONS(4972), - [anon_sym_COLON_COLON] = ACTIONS(4974), - [anon_sym_PLUS_EQ] = ACTIONS(4974), - [anon_sym_DASH_EQ] = ACTIONS(4974), - [anon_sym_STAR_EQ] = ACTIONS(4974), - [anon_sym_SLASH_EQ] = ACTIONS(4974), - [anon_sym_PERCENT_EQ] = ACTIONS(4974), - [anon_sym_BANG_EQ] = ACTIONS(4972), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4972), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4974), - [anon_sym_LT_EQ] = ACTIONS(4974), - [anon_sym_GT_EQ] = ACTIONS(4974), - [anon_sym_BANGin] = ACTIONS(4974), - [anon_sym_is] = ACTIONS(4972), - [anon_sym_BANGis] = ACTIONS(4974), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4972), - [anon_sym_as_QMARK] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_BANG] = ACTIONS(4972), - [anon_sym_BANG_BANG] = ACTIONS(4974), - [anon_sym_data] = ACTIONS(4972), - [anon_sym_inner] = ACTIONS(4972), - [anon_sym_value] = ACTIONS(4972), - [anon_sym_expect] = ACTIONS(4972), - [anon_sym_actual] = ACTIONS(4972), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4974), - [anon_sym_continue_AT] = ACTIONS(4974), - [anon_sym_break_AT] = ACTIONS(4974), - [anon_sym_this_AT] = ACTIONS(4974), - [anon_sym_super_AT] = ACTIONS(4974), - [sym_real_literal] = ACTIONS(4974), - [sym_integer_literal] = ACTIONS(4972), - [sym_hex_literal] = ACTIONS(4974), - [sym_bin_literal] = ACTIONS(4974), - [anon_sym_true] = ACTIONS(4972), - [anon_sym_false] = ACTIONS(4972), - [anon_sym_SQUOTE] = ACTIONS(4974), - [sym__backtick_identifier] = ACTIONS(4974), - [sym__automatic_semicolon] = ACTIONS(4974), - [sym_safe_nav] = ACTIONS(4974), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4974), + [3282] = { + [sym__alpha_identifier] = ACTIONS(4660), + [anon_sym_AT] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_RBRACK] = ACTIONS(4662), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_RPAREN] = ACTIONS(4662), + [anon_sym_by] = ACTIONS(4660), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_where] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_get] = ACTIONS(4660), + [anon_sym_set] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [anon_sym_DASH_GT] = ACTIONS(4662), + [sym_label] = ACTIONS(4662), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_while] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4662), + [anon_sym_QMARK_COLON] = ACTIONS(4662), + [anon_sym_AMP_AMP] = ACTIONS(4662), + [anon_sym_PIPE_PIPE] = ACTIONS(4662), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_PLUS_EQ] = ACTIONS(4662), + [anon_sym_DASH_EQ] = ACTIONS(4662), + [anon_sym_STAR_EQ] = ACTIONS(4662), + [anon_sym_SLASH_EQ] = ACTIONS(4662), + [anon_sym_PERCENT_EQ] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4662), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4662), + [anon_sym_LT_EQ] = ACTIONS(4662), + [anon_sym_GT_EQ] = ACTIONS(4662), + [anon_sym_BANGin] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_BANGis] = ACTIONS(4662), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_as_QMARK] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_BANG_BANG] = ACTIONS(4662), + [anon_sym_suspend] = ACTIONS(4660), + [anon_sym_sealed] = ACTIONS(4660), + [anon_sym_annotation] = ACTIONS(4660), + [anon_sym_data] = ACTIONS(4660), + [anon_sym_inner] = ACTIONS(4660), + [anon_sym_value] = ACTIONS(4660), + [anon_sym_override] = ACTIONS(4660), + [anon_sym_lateinit] = ACTIONS(4660), + [anon_sym_public] = ACTIONS(4660), + [anon_sym_private] = ACTIONS(4660), + [anon_sym_internal] = ACTIONS(4660), + [anon_sym_protected] = ACTIONS(4660), + [anon_sym_tailrec] = ACTIONS(4660), + [anon_sym_operator] = ACTIONS(4660), + [anon_sym_infix] = ACTIONS(4660), + [anon_sym_inline] = ACTIONS(4660), + [anon_sym_external] = ACTIONS(4660), + [sym_property_modifier] = ACTIONS(4660), + [anon_sym_abstract] = ACTIONS(4660), + [anon_sym_final] = ACTIONS(4660), + [anon_sym_open] = ACTIONS(4660), + [anon_sym_vararg] = ACTIONS(4660), + [anon_sym_noinline] = ACTIONS(4660), + [anon_sym_crossinline] = ACTIONS(4660), + [anon_sym_expect] = ACTIONS(4660), + [anon_sym_actual] = ACTIONS(4660), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4662), + [sym_safe_nav] = ACTIONS(4662), + [sym_multiline_comment] = ACTIONS(3), }, - [3312] = { - [sym__alpha_identifier] = ACTIONS(4940), - [anon_sym_AT] = ACTIONS(4942), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_as] = ACTIONS(4940), - [anon_sym_EQ] = ACTIONS(4940), - [anon_sym_fun] = ACTIONS(4940), - [anon_sym_LBRACE] = ACTIONS(4942), - [anon_sym_RBRACE] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4942), - [anon_sym_LT] = ACTIONS(4940), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_where] = ACTIONS(4940), - [anon_sym_object] = ACTIONS(4940), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_SEMI] = ACTIONS(4942), - [anon_sym_get] = ACTIONS(4940), - [anon_sym_set] = ACTIONS(4940), - [anon_sym_this] = ACTIONS(4940), - [anon_sym_super] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4940), - [sym_label] = ACTIONS(4940), - [anon_sym_in] = ACTIONS(4940), - [anon_sym_DOT_DOT] = ACTIONS(4942), - [anon_sym_QMARK_COLON] = ACTIONS(4942), - [anon_sym_AMP_AMP] = ACTIONS(4942), - [anon_sym_PIPE_PIPE] = ACTIONS(4942), - [anon_sym_null] = ACTIONS(4940), - [anon_sym_if] = ACTIONS(4940), - [anon_sym_else] = ACTIONS(4940), - [anon_sym_when] = ACTIONS(4940), - [anon_sym_try] = ACTIONS(4940), - [anon_sym_throw] = ACTIONS(4940), - [anon_sym_return] = ACTIONS(4940), - [anon_sym_continue] = ACTIONS(4940), - [anon_sym_break] = ACTIONS(4940), - [anon_sym_COLON_COLON] = ACTIONS(4942), - [anon_sym_PLUS_EQ] = ACTIONS(4942), - [anon_sym_DASH_EQ] = ACTIONS(4942), - [anon_sym_STAR_EQ] = ACTIONS(4942), - [anon_sym_SLASH_EQ] = ACTIONS(4942), - [anon_sym_PERCENT_EQ] = ACTIONS(4942), - [anon_sym_BANG_EQ] = ACTIONS(4940), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4940), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), - [anon_sym_LT_EQ] = ACTIONS(4942), - [anon_sym_GT_EQ] = ACTIONS(4942), - [anon_sym_BANGin] = ACTIONS(4942), - [anon_sym_is] = ACTIONS(4940), - [anon_sym_BANGis] = ACTIONS(4942), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_as_QMARK] = ACTIONS(4942), - [anon_sym_PLUS_PLUS] = ACTIONS(4942), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_BANG] = ACTIONS(4940), - [anon_sym_BANG_BANG] = ACTIONS(4942), - [anon_sym_data] = ACTIONS(4940), - [anon_sym_inner] = ACTIONS(4940), - [anon_sym_value] = ACTIONS(4940), - [anon_sym_expect] = ACTIONS(4940), - [anon_sym_actual] = ACTIONS(4940), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4942), - [anon_sym_continue_AT] = ACTIONS(4942), - [anon_sym_break_AT] = ACTIONS(4942), - [anon_sym_this_AT] = ACTIONS(4942), - [anon_sym_super_AT] = ACTIONS(4942), - [sym_real_literal] = ACTIONS(4942), - [sym_integer_literal] = ACTIONS(4940), - [sym_hex_literal] = ACTIONS(4942), - [sym_bin_literal] = ACTIONS(4942), - [anon_sym_true] = ACTIONS(4940), - [anon_sym_false] = ACTIONS(4940), - [anon_sym_SQUOTE] = ACTIONS(4942), - [sym__backtick_identifier] = ACTIONS(4942), - [sym__automatic_semicolon] = ACTIONS(4942), - [sym_safe_nav] = ACTIONS(4942), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4942), + [3283] = { + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_RBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(4432), + [anon_sym_RPAREN] = ACTIONS(4432), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [anon_sym_DASH_GT] = ACTIONS(4432), + [sym_label] = ACTIONS(4432), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_while] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), }, - [3313] = { - [sym_function_body] = STATE(3354), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [3284] = { + [sym_enum_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), }, - [3314] = { - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4156), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(4154), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [3285] = { + [sym__alpha_identifier] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_RBRACK] = ACTIONS(4724), + [anon_sym_as] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_LBRACE] = ACTIONS(4724), + [anon_sym_RBRACE] = ACTIONS(4724), + [anon_sym_LPAREN] = ACTIONS(4724), + [anon_sym_COMMA] = ACTIONS(4724), + [anon_sym_RPAREN] = ACTIONS(4724), + [anon_sym_by] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_where] = ACTIONS(4722), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym_get] = ACTIONS(4722), + [anon_sym_set] = ACTIONS(4722), + [anon_sym_STAR] = ACTIONS(4722), + [anon_sym_DASH_GT] = ACTIONS(4724), + [sym_label] = ACTIONS(4724), + [anon_sym_in] = ACTIONS(4722), + [anon_sym_while] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4724), + [anon_sym_QMARK_COLON] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_PLUS_EQ] = ACTIONS(4724), + [anon_sym_DASH_EQ] = ACTIONS(4724), + [anon_sym_STAR_EQ] = ACTIONS(4724), + [anon_sym_SLASH_EQ] = ACTIONS(4724), + [anon_sym_PERCENT_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), + [anon_sym_LT_EQ] = ACTIONS(4724), + [anon_sym_GT_EQ] = ACTIONS(4724), + [anon_sym_BANGin] = ACTIONS(4724), + [anon_sym_is] = ACTIONS(4722), + [anon_sym_BANGis] = ACTIONS(4724), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_SLASH] = ACTIONS(4722), + [anon_sym_PERCENT] = ACTIONS(4722), + [anon_sym_as_QMARK] = ACTIONS(4724), + [anon_sym_PLUS_PLUS] = ACTIONS(4724), + [anon_sym_DASH_DASH] = ACTIONS(4724), + [anon_sym_BANG_BANG] = ACTIONS(4724), + [anon_sym_suspend] = ACTIONS(4722), + [anon_sym_sealed] = ACTIONS(4722), + [anon_sym_annotation] = ACTIONS(4722), + [anon_sym_data] = ACTIONS(4722), + [anon_sym_inner] = ACTIONS(4722), + [anon_sym_value] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_lateinit] = ACTIONS(4722), + [anon_sym_public] = ACTIONS(4722), + [anon_sym_private] = ACTIONS(4722), + [anon_sym_internal] = ACTIONS(4722), + [anon_sym_protected] = ACTIONS(4722), + [anon_sym_tailrec] = ACTIONS(4722), + [anon_sym_operator] = ACTIONS(4722), + [anon_sym_infix] = ACTIONS(4722), + [anon_sym_inline] = ACTIONS(4722), + [anon_sym_external] = ACTIONS(4722), + [sym_property_modifier] = ACTIONS(4722), + [anon_sym_abstract] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_open] = ACTIONS(4722), + [anon_sym_vararg] = ACTIONS(4722), + [anon_sym_noinline] = ACTIONS(4722), + [anon_sym_crossinline] = ACTIONS(4722), + [anon_sym_expect] = ACTIONS(4722), + [anon_sym_actual] = ACTIONS(4722), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4724), + [sym_safe_nav] = ACTIONS(4724), + [sym_multiline_comment] = ACTIONS(3), }, - [3315] = { - [sym_class_body] = STATE(3497), - [sym_type_constraints] = STATE(3443), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_RBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), - [anon_sym_DASH_GT] = ACTIONS(4277), - [sym_label] = ACTIONS(4277), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_while] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_PLUS_EQ] = ACTIONS(4277), - [anon_sym_DASH_EQ] = ACTIONS(4277), - [anon_sym_STAR_EQ] = ACTIONS(4277), - [anon_sym_SLASH_EQ] = ACTIONS(4277), - [anon_sym_PERCENT_EQ] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_suspend] = ACTIONS(4275), - [anon_sym_sealed] = ACTIONS(4275), - [anon_sym_annotation] = ACTIONS(4275), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_override] = ACTIONS(4275), - [anon_sym_lateinit] = ACTIONS(4275), - [anon_sym_public] = ACTIONS(4275), - [anon_sym_private] = ACTIONS(4275), - [anon_sym_internal] = ACTIONS(4275), - [anon_sym_protected] = ACTIONS(4275), - [anon_sym_tailrec] = ACTIONS(4275), - [anon_sym_operator] = ACTIONS(4275), - [anon_sym_infix] = ACTIONS(4275), - [anon_sym_inline] = ACTIONS(4275), - [anon_sym_external] = ACTIONS(4275), - [sym_property_modifier] = ACTIONS(4275), - [anon_sym_abstract] = ACTIONS(4275), - [anon_sym_final] = ACTIONS(4275), - [anon_sym_open] = ACTIONS(4275), - [anon_sym_vararg] = ACTIONS(4275), - [anon_sym_noinline] = ACTIONS(4275), - [anon_sym_crossinline] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), + [3286] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3184), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [3316] = { - [sym__alpha_identifier] = ACTIONS(4934), - [anon_sym_AT] = ACTIONS(4936), - [anon_sym_LBRACK] = ACTIONS(4936), - [anon_sym_as] = ACTIONS(4934), - [anon_sym_EQ] = ACTIONS(4934), - [anon_sym_fun] = ACTIONS(4934), - [anon_sym_LBRACE] = ACTIONS(4936), - [anon_sym_RBRACE] = ACTIONS(4936), - [anon_sym_LPAREN] = ACTIONS(4936), - [anon_sym_COMMA] = ACTIONS(4936), - [anon_sym_LT] = ACTIONS(4934), - [anon_sym_GT] = ACTIONS(4934), - [anon_sym_where] = ACTIONS(4934), - [anon_sym_object] = ACTIONS(4934), - [anon_sym_DOT] = ACTIONS(4934), - [anon_sym_SEMI] = ACTIONS(4936), - [anon_sym_get] = ACTIONS(4934), - [anon_sym_set] = ACTIONS(4934), - [anon_sym_this] = ACTIONS(4934), - [anon_sym_super] = ACTIONS(4934), - [anon_sym_STAR] = ACTIONS(4934), - [sym_label] = ACTIONS(4934), - [anon_sym_in] = ACTIONS(4934), - [anon_sym_DOT_DOT] = ACTIONS(4936), - [anon_sym_QMARK_COLON] = ACTIONS(4936), - [anon_sym_AMP_AMP] = ACTIONS(4936), - [anon_sym_PIPE_PIPE] = ACTIONS(4936), - [anon_sym_null] = ACTIONS(4934), - [anon_sym_if] = ACTIONS(4934), - [anon_sym_else] = ACTIONS(4934), - [anon_sym_when] = ACTIONS(4934), - [anon_sym_try] = ACTIONS(4934), - [anon_sym_throw] = ACTIONS(4934), - [anon_sym_return] = ACTIONS(4934), - [anon_sym_continue] = ACTIONS(4934), - [anon_sym_break] = ACTIONS(4934), - [anon_sym_COLON_COLON] = ACTIONS(4936), - [anon_sym_PLUS_EQ] = ACTIONS(4936), - [anon_sym_DASH_EQ] = ACTIONS(4936), - [anon_sym_STAR_EQ] = ACTIONS(4936), - [anon_sym_SLASH_EQ] = ACTIONS(4936), - [anon_sym_PERCENT_EQ] = ACTIONS(4936), - [anon_sym_BANG_EQ] = ACTIONS(4934), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4936), - [anon_sym_EQ_EQ] = ACTIONS(4934), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4936), - [anon_sym_LT_EQ] = ACTIONS(4936), - [anon_sym_GT_EQ] = ACTIONS(4936), - [anon_sym_BANGin] = ACTIONS(4936), - [anon_sym_is] = ACTIONS(4934), - [anon_sym_BANGis] = ACTIONS(4936), - [anon_sym_PLUS] = ACTIONS(4934), - [anon_sym_DASH] = ACTIONS(4934), - [anon_sym_SLASH] = ACTIONS(4934), - [anon_sym_PERCENT] = ACTIONS(4934), - [anon_sym_as_QMARK] = ACTIONS(4936), - [anon_sym_PLUS_PLUS] = ACTIONS(4936), - [anon_sym_DASH_DASH] = ACTIONS(4936), - [anon_sym_BANG] = ACTIONS(4934), - [anon_sym_BANG_BANG] = ACTIONS(4936), - [anon_sym_data] = ACTIONS(4934), - [anon_sym_inner] = ACTIONS(4934), - [anon_sym_value] = ACTIONS(4934), - [anon_sym_expect] = ACTIONS(4934), - [anon_sym_actual] = ACTIONS(4934), + [3287] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6763), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [3288] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3123), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_RPAREN] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3123), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3123), + [anon_sym_STAR_EQ] = ACTIONS(3123), + [anon_sym_SLASH_EQ] = ACTIONS(3123), + [anon_sym_PERCENT_EQ] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4936), - [anon_sym_continue_AT] = ACTIONS(4936), - [anon_sym_break_AT] = ACTIONS(4936), - [anon_sym_this_AT] = ACTIONS(4936), - [anon_sym_super_AT] = ACTIONS(4936), - [sym_real_literal] = ACTIONS(4936), - [sym_integer_literal] = ACTIONS(4934), - [sym_hex_literal] = ACTIONS(4936), - [sym_bin_literal] = ACTIONS(4936), - [anon_sym_true] = ACTIONS(4934), - [anon_sym_false] = ACTIONS(4934), - [anon_sym_SQUOTE] = ACTIONS(4936), - [sym__backtick_identifier] = ACTIONS(4936), - [sym__automatic_semicolon] = ACTIONS(4936), - [sym_safe_nav] = ACTIONS(4936), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4936), }, - [3317] = { - [sym__alpha_identifier] = ACTIONS(5219), - [anon_sym_AT] = ACTIONS(5221), - [anon_sym_LBRACK] = ACTIONS(5221), - [anon_sym_as] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_fun] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5221), - [anon_sym_RBRACE] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5221), - [anon_sym_COMMA] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5219), - [anon_sym_GT] = ACTIONS(5219), - [anon_sym_where] = ACTIONS(5219), - [anon_sym_object] = ACTIONS(5219), - [anon_sym_DOT] = ACTIONS(5219), - [anon_sym_SEMI] = ACTIONS(5221), - [anon_sym_get] = ACTIONS(5219), - [anon_sym_set] = ACTIONS(5219), - [anon_sym_this] = ACTIONS(5219), - [anon_sym_super] = ACTIONS(5219), - [anon_sym_STAR] = ACTIONS(5219), - [sym_label] = ACTIONS(5219), - [anon_sym_in] = ACTIONS(5219), - [anon_sym_DOT_DOT] = ACTIONS(5221), - [anon_sym_QMARK_COLON] = ACTIONS(5221), - [anon_sym_AMP_AMP] = ACTIONS(5221), - [anon_sym_PIPE_PIPE] = ACTIONS(5221), - [anon_sym_null] = ACTIONS(5219), - [anon_sym_if] = ACTIONS(5219), - [anon_sym_else] = ACTIONS(5219), - [anon_sym_when] = ACTIONS(5219), - [anon_sym_try] = ACTIONS(5219), - [anon_sym_throw] = ACTIONS(5219), - [anon_sym_return] = ACTIONS(5219), - [anon_sym_continue] = ACTIONS(5219), - [anon_sym_break] = ACTIONS(5219), - [anon_sym_COLON_COLON] = ACTIONS(5221), - [anon_sym_PLUS_EQ] = ACTIONS(5221), - [anon_sym_DASH_EQ] = ACTIONS(5221), - [anon_sym_STAR_EQ] = ACTIONS(5221), - [anon_sym_SLASH_EQ] = ACTIONS(5221), - [anon_sym_PERCENT_EQ] = ACTIONS(5221), - [anon_sym_BANG_EQ] = ACTIONS(5219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), - [anon_sym_EQ_EQ] = ACTIONS(5219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), - [anon_sym_LT_EQ] = ACTIONS(5221), - [anon_sym_GT_EQ] = ACTIONS(5221), - [anon_sym_BANGin] = ACTIONS(5221), - [anon_sym_is] = ACTIONS(5219), - [anon_sym_BANGis] = ACTIONS(5221), - [anon_sym_PLUS] = ACTIONS(5219), - [anon_sym_DASH] = ACTIONS(5219), - [anon_sym_SLASH] = ACTIONS(5219), - [anon_sym_PERCENT] = ACTIONS(5219), - [anon_sym_as_QMARK] = ACTIONS(5221), - [anon_sym_PLUS_PLUS] = ACTIONS(5221), - [anon_sym_DASH_DASH] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5219), - [anon_sym_BANG_BANG] = ACTIONS(5221), - [anon_sym_data] = ACTIONS(5219), - [anon_sym_inner] = ACTIONS(5219), - [anon_sym_value] = ACTIONS(5219), - [anon_sym_expect] = ACTIONS(5219), - [anon_sym_actual] = ACTIONS(5219), + [3289] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3169), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5221), - [anon_sym_continue_AT] = ACTIONS(5221), - [anon_sym_break_AT] = ACTIONS(5221), - [anon_sym_this_AT] = ACTIONS(5221), - [anon_sym_super_AT] = ACTIONS(5221), - [sym_real_literal] = ACTIONS(5221), - [sym_integer_literal] = ACTIONS(5219), - [sym_hex_literal] = ACTIONS(5221), - [sym_bin_literal] = ACTIONS(5221), - [anon_sym_true] = ACTIONS(5219), - [anon_sym_false] = ACTIONS(5219), - [anon_sym_SQUOTE] = ACTIONS(5221), - [sym__backtick_identifier] = ACTIONS(5221), - [sym__automatic_semicolon] = ACTIONS(5221), - [sym_safe_nav] = ACTIONS(5221), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5221), }, - [3318] = { - [aux_sym_user_type_repeat1] = STATE(3024), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_RBRACK] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_COMMA] = ACTIONS(4227), - [anon_sym_RPAREN] = ACTIONS(4227), - [anon_sym_by] = ACTIONS(4225), - [anon_sym_LT] = ACTIONS(4225), - [anon_sym_GT] = ACTIONS(4225), - [anon_sym_where] = ACTIONS(4225), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [anon_sym_STAR] = ACTIONS(4225), - [anon_sym_DASH_GT] = ACTIONS(4227), - [sym_label] = ACTIONS(4227), - [anon_sym_in] = ACTIONS(4225), - [anon_sym_while] = ACTIONS(4225), - [anon_sym_DOT_DOT] = ACTIONS(4227), - [anon_sym_QMARK_COLON] = ACTIONS(4227), - [anon_sym_AMP_AMP] = ACTIONS(4227), - [anon_sym_PIPE_PIPE] = ACTIONS(4227), - [anon_sym_else] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_PLUS_EQ] = ACTIONS(4227), - [anon_sym_DASH_EQ] = ACTIONS(4227), - [anon_sym_STAR_EQ] = ACTIONS(4227), - [anon_sym_SLASH_EQ] = ACTIONS(4227), - [anon_sym_PERCENT_EQ] = ACTIONS(4227), - [anon_sym_BANG_EQ] = ACTIONS(4225), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4227), - [anon_sym_EQ_EQ] = ACTIONS(4225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4227), - [anon_sym_LT_EQ] = ACTIONS(4227), - [anon_sym_GT_EQ] = ACTIONS(4227), - [anon_sym_BANGin] = ACTIONS(4227), - [anon_sym_is] = ACTIONS(4225), - [anon_sym_BANGis] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_SLASH] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_as_QMARK] = ACTIONS(4227), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG_BANG] = ACTIONS(4227), - [anon_sym_suspend] = ACTIONS(4225), - [anon_sym_sealed] = ACTIONS(4225), - [anon_sym_annotation] = ACTIONS(4225), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_override] = ACTIONS(4225), - [anon_sym_lateinit] = ACTIONS(4225), - [anon_sym_public] = ACTIONS(4225), - [anon_sym_private] = ACTIONS(4225), - [anon_sym_internal] = ACTIONS(4225), - [anon_sym_protected] = ACTIONS(4225), - [anon_sym_tailrec] = ACTIONS(4225), - [anon_sym_operator] = ACTIONS(4225), - [anon_sym_infix] = ACTIONS(4225), - [anon_sym_inline] = ACTIONS(4225), - [anon_sym_external] = ACTIONS(4225), - [sym_property_modifier] = ACTIONS(4225), - [anon_sym_abstract] = ACTIONS(4225), - [anon_sym_final] = ACTIONS(4225), - [anon_sym_open] = ACTIONS(4225), - [anon_sym_vararg] = ACTIONS(4225), - [anon_sym_noinline] = ACTIONS(4225), - [anon_sym_crossinline] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4227), - [sym_safe_nav] = ACTIONS(4227), + [3290] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6767), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [3291] = { + [sym__alpha_identifier] = ACTIONS(4559), + [anon_sym_AT] = ACTIONS(4561), + [anon_sym_COLON] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4561), + [anon_sym_RBRACK] = ACTIONS(4561), + [anon_sym_as] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4559), + [anon_sym_LBRACE] = ACTIONS(4561), + [anon_sym_RBRACE] = ACTIONS(4561), + [anon_sym_LPAREN] = ACTIONS(4561), + [anon_sym_COMMA] = ACTIONS(4561), + [anon_sym_RPAREN] = ACTIONS(4561), + [anon_sym_LT] = ACTIONS(4559), + [anon_sym_GT] = ACTIONS(4559), + [anon_sym_where] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_SEMI] = ACTIONS(4561), + [anon_sym_get] = ACTIONS(4559), + [anon_sym_set] = ACTIONS(4559), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_DASH_GT] = ACTIONS(4561), + [sym_label] = ACTIONS(4561), + [anon_sym_in] = ACTIONS(4559), + [anon_sym_while] = ACTIONS(4559), + [anon_sym_DOT_DOT] = ACTIONS(4561), + [anon_sym_QMARK_COLON] = ACTIONS(4561), + [anon_sym_AMP_AMP] = ACTIONS(4561), + [anon_sym_PIPE_PIPE] = ACTIONS(4561), + [anon_sym_else] = ACTIONS(4559), + [anon_sym_COLON_COLON] = ACTIONS(4561), + [anon_sym_PLUS_EQ] = ACTIONS(4561), + [anon_sym_DASH_EQ] = ACTIONS(4561), + [anon_sym_STAR_EQ] = ACTIONS(4561), + [anon_sym_SLASH_EQ] = ACTIONS(4561), + [anon_sym_PERCENT_EQ] = ACTIONS(4561), + [anon_sym_BANG_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4561), + [anon_sym_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4561), + [anon_sym_LT_EQ] = ACTIONS(4561), + [anon_sym_GT_EQ] = ACTIONS(4561), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4559), + [anon_sym_BANGis] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_DASH] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4559), + [anon_sym_as_QMARK] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(4561), + [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_BANG_BANG] = ACTIONS(4561), + [anon_sym_suspend] = ACTIONS(4559), + [anon_sym_sealed] = ACTIONS(4559), + [anon_sym_annotation] = ACTIONS(4559), + [anon_sym_data] = ACTIONS(4559), + [anon_sym_inner] = ACTIONS(4559), + [anon_sym_value] = ACTIONS(4559), + [anon_sym_override] = ACTIONS(4559), + [anon_sym_lateinit] = ACTIONS(4559), + [anon_sym_public] = ACTIONS(4559), + [anon_sym_private] = ACTIONS(4559), + [anon_sym_internal] = ACTIONS(4559), + [anon_sym_protected] = ACTIONS(4559), + [anon_sym_tailrec] = ACTIONS(4559), + [anon_sym_operator] = ACTIONS(4559), + [anon_sym_infix] = ACTIONS(4559), + [anon_sym_inline] = ACTIONS(4559), + [anon_sym_external] = ACTIONS(4559), + [sym_property_modifier] = ACTIONS(4559), + [anon_sym_abstract] = ACTIONS(4559), + [anon_sym_final] = ACTIONS(4559), + [anon_sym_open] = ACTIONS(4559), + [anon_sym_vararg] = ACTIONS(4559), + [anon_sym_noinline] = ACTIONS(4559), + [anon_sym_crossinline] = ACTIONS(4559), + [anon_sym_expect] = ACTIONS(4559), + [anon_sym_actual] = ACTIONS(4559), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4561), + [sym_safe_nav] = ACTIONS(4561), [sym_multiline_comment] = ACTIONS(3), }, - [3319] = { - [sym__alpha_identifier] = ACTIONS(5095), - [anon_sym_AT] = ACTIONS(5097), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_as] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_fun] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5097), - [anon_sym_RBRACE] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5097), - [anon_sym_COMMA] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5095), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_where] = ACTIONS(5095), - [anon_sym_object] = ACTIONS(5095), - [anon_sym_DOT] = ACTIONS(5095), - [anon_sym_SEMI] = ACTIONS(5097), - [anon_sym_get] = ACTIONS(5095), - [anon_sym_set] = ACTIONS(5095), - [anon_sym_this] = ACTIONS(5095), - [anon_sym_super] = ACTIONS(5095), - [anon_sym_STAR] = ACTIONS(5095), - [sym_label] = ACTIONS(5095), - [anon_sym_in] = ACTIONS(5095), - [anon_sym_DOT_DOT] = ACTIONS(5097), - [anon_sym_QMARK_COLON] = ACTIONS(5097), - [anon_sym_AMP_AMP] = ACTIONS(5097), - [anon_sym_PIPE_PIPE] = ACTIONS(5097), - [anon_sym_null] = ACTIONS(5095), - [anon_sym_if] = ACTIONS(5095), - [anon_sym_else] = ACTIONS(5095), - [anon_sym_when] = ACTIONS(5095), - [anon_sym_try] = ACTIONS(5095), - [anon_sym_throw] = ACTIONS(5095), - [anon_sym_return] = ACTIONS(5095), - [anon_sym_continue] = ACTIONS(5095), - [anon_sym_break] = ACTIONS(5095), - [anon_sym_COLON_COLON] = ACTIONS(5097), - [anon_sym_PLUS_EQ] = ACTIONS(5097), - [anon_sym_DASH_EQ] = ACTIONS(5097), - [anon_sym_STAR_EQ] = ACTIONS(5097), - [anon_sym_SLASH_EQ] = ACTIONS(5097), - [anon_sym_PERCENT_EQ] = ACTIONS(5097), - [anon_sym_BANG_EQ] = ACTIONS(5095), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5097), - [anon_sym_EQ_EQ] = ACTIONS(5095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5097), - [anon_sym_LT_EQ] = ACTIONS(5097), - [anon_sym_GT_EQ] = ACTIONS(5097), - [anon_sym_BANGin] = ACTIONS(5097), - [anon_sym_is] = ACTIONS(5095), - [anon_sym_BANGis] = ACTIONS(5097), - [anon_sym_PLUS] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5095), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_as_QMARK] = ACTIONS(5097), - [anon_sym_PLUS_PLUS] = ACTIONS(5097), - [anon_sym_DASH_DASH] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5095), - [anon_sym_BANG_BANG] = ACTIONS(5097), - [anon_sym_data] = ACTIONS(5095), - [anon_sym_inner] = ACTIONS(5095), - [anon_sym_value] = ACTIONS(5095), - [anon_sym_expect] = ACTIONS(5095), - [anon_sym_actual] = ACTIONS(5095), + [3292] = { + [sym__alpha_identifier] = ACTIONS(4728), + [anon_sym_AT] = ACTIONS(4730), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_RBRACK] = ACTIONS(4730), + [anon_sym_as] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4730), + [anon_sym_RBRACE] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4730), + [anon_sym_COMMA] = ACTIONS(4730), + [anon_sym_RPAREN] = ACTIONS(4730), + [anon_sym_by] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_where] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_get] = ACTIONS(4728), + [anon_sym_set] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_DASH_GT] = ACTIONS(4730), + [sym_label] = ACTIONS(4730), + [anon_sym_in] = ACTIONS(4728), + [anon_sym_while] = ACTIONS(4728), + [anon_sym_DOT_DOT] = ACTIONS(4730), + [anon_sym_QMARK_COLON] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_else] = ACTIONS(4728), + [anon_sym_COLON_COLON] = ACTIONS(4730), + [anon_sym_PLUS_EQ] = ACTIONS(4730), + [anon_sym_DASH_EQ] = ACTIONS(4730), + [anon_sym_STAR_EQ] = ACTIONS(4730), + [anon_sym_SLASH_EQ] = ACTIONS(4730), + [anon_sym_PERCENT_EQ] = ACTIONS(4730), + [anon_sym_BANG_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4730), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4730), + [anon_sym_LT_EQ] = ACTIONS(4730), + [anon_sym_GT_EQ] = ACTIONS(4730), + [anon_sym_BANGin] = ACTIONS(4730), + [anon_sym_is] = ACTIONS(4728), + [anon_sym_BANGis] = ACTIONS(4730), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4728), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4730), + [anon_sym_PLUS_PLUS] = ACTIONS(4730), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_BANG_BANG] = ACTIONS(4730), + [anon_sym_suspend] = ACTIONS(4728), + [anon_sym_sealed] = ACTIONS(4728), + [anon_sym_annotation] = ACTIONS(4728), + [anon_sym_data] = ACTIONS(4728), + [anon_sym_inner] = ACTIONS(4728), + [anon_sym_value] = ACTIONS(4728), + [anon_sym_override] = ACTIONS(4728), + [anon_sym_lateinit] = ACTIONS(4728), + [anon_sym_public] = ACTIONS(4728), + [anon_sym_private] = ACTIONS(4728), + [anon_sym_internal] = ACTIONS(4728), + [anon_sym_protected] = ACTIONS(4728), + [anon_sym_tailrec] = ACTIONS(4728), + [anon_sym_operator] = ACTIONS(4728), + [anon_sym_infix] = ACTIONS(4728), + [anon_sym_inline] = ACTIONS(4728), + [anon_sym_external] = ACTIONS(4728), + [sym_property_modifier] = ACTIONS(4728), + [anon_sym_abstract] = ACTIONS(4728), + [anon_sym_final] = ACTIONS(4728), + [anon_sym_open] = ACTIONS(4728), + [anon_sym_vararg] = ACTIONS(4728), + [anon_sym_noinline] = ACTIONS(4728), + [anon_sym_crossinline] = ACTIONS(4728), + [anon_sym_expect] = ACTIONS(4728), + [anon_sym_actual] = ACTIONS(4728), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4730), + [sym_safe_nav] = ACTIONS(4730), + [sym_multiline_comment] = ACTIONS(3), + }, + [3293] = { + [sym__alpha_identifier] = ACTIONS(4563), + [anon_sym_AT] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_RBRACK] = ACTIONS(4565), + [anon_sym_as] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_RPAREN] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4563), + [anon_sym_GT] = ACTIONS(4563), + [anon_sym_where] = ACTIONS(4563), + [anon_sym_DOT] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_get] = ACTIONS(4563), + [anon_sym_set] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_DASH_GT] = ACTIONS(4565), + [sym_label] = ACTIONS(4565), + [anon_sym_in] = ACTIONS(4563), + [anon_sym_while] = ACTIONS(4563), + [anon_sym_DOT_DOT] = ACTIONS(4565), + [anon_sym_QMARK_COLON] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4565), + [anon_sym_PIPE_PIPE] = ACTIONS(4565), + [anon_sym_else] = ACTIONS(4563), + [anon_sym_COLON_COLON] = ACTIONS(4565), + [anon_sym_PLUS_EQ] = ACTIONS(4565), + [anon_sym_DASH_EQ] = ACTIONS(4565), + [anon_sym_STAR_EQ] = ACTIONS(4565), + [anon_sym_SLASH_EQ] = ACTIONS(4565), + [anon_sym_PERCENT_EQ] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4565), + [anon_sym_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4565), + [anon_sym_LT_EQ] = ACTIONS(4565), + [anon_sym_GT_EQ] = ACTIONS(4565), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_as_QMARK] = ACTIONS(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(4565), + [anon_sym_DASH_DASH] = ACTIONS(4565), + [anon_sym_BANG_BANG] = ACTIONS(4565), + [anon_sym_suspend] = ACTIONS(4563), + [anon_sym_sealed] = ACTIONS(4563), + [anon_sym_annotation] = ACTIONS(4563), + [anon_sym_data] = ACTIONS(4563), + [anon_sym_inner] = ACTIONS(4563), + [anon_sym_value] = ACTIONS(4563), + [anon_sym_override] = ACTIONS(4563), + [anon_sym_lateinit] = ACTIONS(4563), + [anon_sym_public] = ACTIONS(4563), + [anon_sym_private] = ACTIONS(4563), + [anon_sym_internal] = ACTIONS(4563), + [anon_sym_protected] = ACTIONS(4563), + [anon_sym_tailrec] = ACTIONS(4563), + [anon_sym_operator] = ACTIONS(4563), + [anon_sym_infix] = ACTIONS(4563), + [anon_sym_inline] = ACTIONS(4563), + [anon_sym_external] = ACTIONS(4563), + [sym_property_modifier] = ACTIONS(4563), + [anon_sym_abstract] = ACTIONS(4563), + [anon_sym_final] = ACTIONS(4563), + [anon_sym_open] = ACTIONS(4563), + [anon_sym_vararg] = ACTIONS(4563), + [anon_sym_noinline] = ACTIONS(4563), + [anon_sym_crossinline] = ACTIONS(4563), + [anon_sym_expect] = ACTIONS(4563), + [anon_sym_actual] = ACTIONS(4563), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(4565), + [sym_multiline_comment] = ACTIONS(3), + }, + [3294] = { + [sym_type_arguments] = STATE(6538), + [sym__alpha_identifier] = ACTIONS(4122), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_COLON] = ACTIONS(6771), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_as] = ACTIONS(4122), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_RBRACE] = ACTIONS(4124), + [anon_sym_LPAREN] = ACTIONS(4124), + [anon_sym_COMMA] = ACTIONS(4124), + [anon_sym_by] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4122), + [anon_sym_where] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym_get] = ACTIONS(4122), + [anon_sym_set] = ACTIONS(4122), + [sym__quest] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4124), + [anon_sym_in] = ACTIONS(4122), + [anon_sym_DOT_DOT] = ACTIONS(4124), + [anon_sym_QMARK_COLON] = ACTIONS(4124), + [anon_sym_AMP_AMP] = ACTIONS(4124), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_else] = ACTIONS(4122), + [anon_sym_COLON_COLON] = ACTIONS(4124), + [anon_sym_PLUS_EQ] = ACTIONS(4124), + [anon_sym_DASH_EQ] = ACTIONS(4124), + [anon_sym_STAR_EQ] = ACTIONS(4124), + [anon_sym_SLASH_EQ] = ACTIONS(4124), + [anon_sym_PERCENT_EQ] = ACTIONS(4124), + [anon_sym_BANG_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), + [anon_sym_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), + [anon_sym_LT_EQ] = ACTIONS(4124), + [anon_sym_GT_EQ] = ACTIONS(4124), + [anon_sym_BANGin] = ACTIONS(4124), + [anon_sym_is] = ACTIONS(4122), + [anon_sym_BANGis] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_SLASH] = ACTIONS(4122), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4124), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_BANG_BANG] = ACTIONS(4124), + [anon_sym_suspend] = ACTIONS(4122), + [anon_sym_sealed] = ACTIONS(4122), + [anon_sym_annotation] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4122), + [anon_sym_inner] = ACTIONS(4122), + [anon_sym_value] = ACTIONS(4122), + [anon_sym_override] = ACTIONS(4122), + [anon_sym_lateinit] = ACTIONS(4122), + [anon_sym_public] = ACTIONS(4122), + [anon_sym_private] = ACTIONS(4122), + [anon_sym_internal] = ACTIONS(4122), + [anon_sym_protected] = ACTIONS(4122), + [anon_sym_tailrec] = ACTIONS(4122), + [anon_sym_operator] = ACTIONS(4122), + [anon_sym_infix] = ACTIONS(4122), + [anon_sym_inline] = ACTIONS(4122), + [anon_sym_external] = ACTIONS(4122), + [sym_property_modifier] = ACTIONS(4122), + [anon_sym_abstract] = ACTIONS(4122), + [anon_sym_final] = ACTIONS(4122), + [anon_sym_open] = ACTIONS(4122), + [anon_sym_vararg] = ACTIONS(4122), + [anon_sym_noinline] = ACTIONS(4122), + [anon_sym_crossinline] = ACTIONS(4122), + [anon_sym_expect] = ACTIONS(4122), + [anon_sym_actual] = ACTIONS(4122), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4124), + [sym__automatic_semicolon] = ACTIONS(4124), + [sym_safe_nav] = ACTIONS(4124), + [sym_multiline_comment] = ACTIONS(3), + }, + [3295] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3295), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_RBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(6773), + [anon_sym_RPAREN] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [anon_sym_DASH_GT] = ACTIONS(4635), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_while] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + }, + [3296] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3134), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5097), - [anon_sym_continue_AT] = ACTIONS(5097), - [anon_sym_break_AT] = ACTIONS(5097), - [anon_sym_this_AT] = ACTIONS(5097), - [anon_sym_super_AT] = ACTIONS(5097), - [sym_real_literal] = ACTIONS(5097), - [sym_integer_literal] = ACTIONS(5095), - [sym_hex_literal] = ACTIONS(5097), - [sym_bin_literal] = ACTIONS(5097), - [anon_sym_true] = ACTIONS(5095), - [anon_sym_false] = ACTIONS(5095), - [anon_sym_SQUOTE] = ACTIONS(5097), - [sym__backtick_identifier] = ACTIONS(5097), - [sym__automatic_semicolon] = ACTIONS(5097), - [sym_safe_nav] = ACTIONS(5097), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5097), }, - [3320] = { - [sym_function_body] = STATE(3520), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_where] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4453), - [anon_sym_DASH_GT] = ACTIONS(4455), - [sym_label] = ACTIONS(4455), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_while] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_PLUS_EQ] = ACTIONS(4455), - [anon_sym_DASH_EQ] = ACTIONS(4455), - [anon_sym_STAR_EQ] = ACTIONS(4455), - [anon_sym_SLASH_EQ] = ACTIONS(4455), - [anon_sym_PERCENT_EQ] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4453), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_suspend] = ACTIONS(4453), - [anon_sym_sealed] = ACTIONS(4453), - [anon_sym_annotation] = ACTIONS(4453), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4453), - [anon_sym_lateinit] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_internal] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_tailrec] = ACTIONS(4453), - [anon_sym_operator] = ACTIONS(4453), - [anon_sym_infix] = ACTIONS(4453), - [anon_sym_inline] = ACTIONS(4453), - [anon_sym_external] = ACTIONS(4453), - [sym_property_modifier] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_open] = ACTIONS(4453), - [anon_sym_vararg] = ACTIONS(4453), - [anon_sym_noinline] = ACTIONS(4453), - [anon_sym_crossinline] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), + [3297] = { + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_RBRACK] = ACTIONS(4765), + [anon_sym_as] = ACTIONS(4762), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4765), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_by] = ACTIONS(4762), + [anon_sym_LT] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [anon_sym_DASH_GT] = ACTIONS(4765), + [sym_label] = ACTIONS(4765), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_while] = ACTIONS(4762), + [anon_sym_DOT_DOT] = ACTIONS(4765), + [anon_sym_QMARK_COLON] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4765), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_BANGin] = ACTIONS(4765), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4765), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_SLASH] = ACTIONS(4762), + [anon_sym_PERCENT] = ACTIONS(4762), + [anon_sym_as_QMARK] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_BANG_BANG] = ACTIONS(4765), + [anon_sym_suspend] = ACTIONS(4762), + [anon_sym_sealed] = ACTIONS(4762), + [anon_sym_annotation] = ACTIONS(4762), + [anon_sym_data] = ACTIONS(4762), + [anon_sym_inner] = ACTIONS(4762), + [anon_sym_value] = ACTIONS(4762), + [anon_sym_override] = ACTIONS(4762), + [anon_sym_lateinit] = ACTIONS(4762), + [anon_sym_public] = ACTIONS(4762), + [anon_sym_private] = ACTIONS(4762), + [anon_sym_internal] = ACTIONS(4762), + [anon_sym_protected] = ACTIONS(4762), + [anon_sym_tailrec] = ACTIONS(4762), + [anon_sym_operator] = ACTIONS(4762), + [anon_sym_infix] = ACTIONS(4762), + [anon_sym_inline] = ACTIONS(4762), + [anon_sym_external] = ACTIONS(4762), + [sym_property_modifier] = ACTIONS(4762), + [anon_sym_abstract] = ACTIONS(4762), + [anon_sym_final] = ACTIONS(4762), + [anon_sym_open] = ACTIONS(4762), + [anon_sym_vararg] = ACTIONS(4762), + [anon_sym_noinline] = ACTIONS(4762), + [anon_sym_crossinline] = ACTIONS(4762), + [anon_sym_expect] = ACTIONS(4762), + [anon_sym_actual] = ACTIONS(4762), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4765), + [sym_safe_nav] = ACTIONS(4765), [sym_multiline_comment] = ACTIONS(3), }, - [3321] = { - [sym_function_body] = STATE(3536), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_RBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [anon_sym_DASH_GT] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_while] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [3298] = { + [sym__alpha_identifier] = ACTIONS(4551), + [anon_sym_AT] = ACTIONS(4553), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_RBRACK] = ACTIONS(4553), + [anon_sym_as] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4553), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_where] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4553), + [anon_sym_get] = ACTIONS(4551), + [anon_sym_set] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_DASH_GT] = ACTIONS(4553), + [sym_label] = ACTIONS(4553), + [anon_sym_in] = ACTIONS(4551), + [anon_sym_while] = ACTIONS(4551), + [anon_sym_DOT_DOT] = ACTIONS(4553), + [anon_sym_QMARK_COLON] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_else] = ACTIONS(4551), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(4553), + [anon_sym_DASH_EQ] = ACTIONS(4553), + [anon_sym_STAR_EQ] = ACTIONS(4553), + [anon_sym_SLASH_EQ] = ACTIONS(4553), + [anon_sym_PERCENT_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4553), + [anon_sym_is] = ACTIONS(4551), + [anon_sym_BANGis] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_as_QMARK] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_BANG_BANG] = ACTIONS(4553), + [anon_sym_suspend] = ACTIONS(4551), + [anon_sym_sealed] = ACTIONS(4551), + [anon_sym_annotation] = ACTIONS(4551), + [anon_sym_data] = ACTIONS(4551), + [anon_sym_inner] = ACTIONS(4551), + [anon_sym_value] = ACTIONS(4551), + [anon_sym_override] = ACTIONS(4551), + [anon_sym_lateinit] = ACTIONS(4551), + [anon_sym_public] = ACTIONS(4551), + [anon_sym_private] = ACTIONS(4551), + [anon_sym_internal] = ACTIONS(4551), + [anon_sym_protected] = ACTIONS(4551), + [anon_sym_tailrec] = ACTIONS(4551), + [anon_sym_operator] = ACTIONS(4551), + [anon_sym_infix] = ACTIONS(4551), + [anon_sym_inline] = ACTIONS(4551), + [anon_sym_external] = ACTIONS(4551), + [sym_property_modifier] = ACTIONS(4551), + [anon_sym_abstract] = ACTIONS(4551), + [anon_sym_final] = ACTIONS(4551), + [anon_sym_open] = ACTIONS(4551), + [anon_sym_vararg] = ACTIONS(4551), + [anon_sym_noinline] = ACTIONS(4551), + [anon_sym_crossinline] = ACTIONS(4551), + [anon_sym_expect] = ACTIONS(4551), + [anon_sym_actual] = ACTIONS(4551), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4553), + [sym_safe_nav] = ACTIONS(4553), [sym_multiline_comment] = ACTIONS(3), }, - [3322] = { - [sym_function_body] = STATE(3554), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_RBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_RPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4293), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), + [3299] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3103), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3103), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [3323] = { + [3300] = { + [sym__alpha_identifier] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4672), + [anon_sym_RBRACK] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4672), + [anon_sym_RBRACE] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4672), + [anon_sym_COMMA] = ACTIONS(4672), + [anon_sym_RPAREN] = ACTIONS(4672), + [anon_sym_by] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4670), + [anon_sym_where] = ACTIONS(4670), + [anon_sym_DOT] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4672), + [anon_sym_get] = ACTIONS(4670), + [anon_sym_set] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4670), + [anon_sym_DASH_GT] = ACTIONS(4672), + [sym_label] = ACTIONS(4672), + [anon_sym_in] = ACTIONS(4670), + [anon_sym_while] = ACTIONS(4670), + [anon_sym_DOT_DOT] = ACTIONS(4672), + [anon_sym_QMARK_COLON] = ACTIONS(4672), + [anon_sym_AMP_AMP] = ACTIONS(4672), + [anon_sym_PIPE_PIPE] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_PLUS_EQ] = ACTIONS(4672), + [anon_sym_DASH_EQ] = ACTIONS(4672), + [anon_sym_STAR_EQ] = ACTIONS(4672), + [anon_sym_SLASH_EQ] = ACTIONS(4672), + [anon_sym_PERCENT_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4672), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4672), + [anon_sym_BANGin] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(4670), + [anon_sym_BANGis] = ACTIONS(4672), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_SLASH] = ACTIONS(4670), + [anon_sym_PERCENT] = ACTIONS(4670), + [anon_sym_as_QMARK] = ACTIONS(4672), + [anon_sym_PLUS_PLUS] = ACTIONS(4672), + [anon_sym_DASH_DASH] = ACTIONS(4672), + [anon_sym_BANG_BANG] = ACTIONS(4672), + [anon_sym_suspend] = ACTIONS(4670), + [anon_sym_sealed] = ACTIONS(4670), + [anon_sym_annotation] = ACTIONS(4670), + [anon_sym_data] = ACTIONS(4670), + [anon_sym_inner] = ACTIONS(4670), + [anon_sym_value] = ACTIONS(4670), + [anon_sym_override] = ACTIONS(4670), + [anon_sym_lateinit] = ACTIONS(4670), + [anon_sym_public] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4670), + [anon_sym_internal] = ACTIONS(4670), + [anon_sym_protected] = ACTIONS(4670), + [anon_sym_tailrec] = ACTIONS(4670), + [anon_sym_operator] = ACTIONS(4670), + [anon_sym_infix] = ACTIONS(4670), + [anon_sym_inline] = ACTIONS(4670), + [anon_sym_external] = ACTIONS(4670), + [sym_property_modifier] = ACTIONS(4670), + [anon_sym_abstract] = ACTIONS(4670), + [anon_sym_final] = ACTIONS(4670), + [anon_sym_open] = ACTIONS(4670), + [anon_sym_vararg] = ACTIONS(4670), + [anon_sym_noinline] = ACTIONS(4670), + [anon_sym_crossinline] = ACTIONS(4670), + [anon_sym_expect] = ACTIONS(4670), + [anon_sym_actual] = ACTIONS(4670), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4672), + [sym_safe_nav] = ACTIONS(4672), + [sym_multiline_comment] = ACTIONS(3), + }, + [3301] = { + [sym__alpha_identifier] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4760), + [anon_sym_COLON] = ACTIONS(4758), + [anon_sym_LBRACK] = ACTIONS(4760), + [anon_sym_RBRACK] = ACTIONS(4760), + [anon_sym_as] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4760), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4760), + [anon_sym_COMMA] = ACTIONS(4760), + [anon_sym_RPAREN] = ACTIONS(4760), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_where] = ACTIONS(4758), + [anon_sym_DOT] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4760), + [anon_sym_get] = ACTIONS(4758), + [anon_sym_set] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4758), + [anon_sym_DASH_GT] = ACTIONS(4760), + [sym_label] = ACTIONS(4760), + [anon_sym_in] = ACTIONS(4758), + [anon_sym_while] = ACTIONS(4758), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_QMARK_COLON] = ACTIONS(4760), + [anon_sym_AMP_AMP] = ACTIONS(4760), + [anon_sym_PIPE_PIPE] = ACTIONS(4760), + [anon_sym_else] = ACTIONS(4758), + [anon_sym_COLON_COLON] = ACTIONS(4760), + [anon_sym_PLUS_EQ] = ACTIONS(4760), + [anon_sym_DASH_EQ] = ACTIONS(4760), + [anon_sym_STAR_EQ] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(4760), + [anon_sym_PERCENT_EQ] = ACTIONS(4760), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4760), + [anon_sym_BANGin] = ACTIONS(4760), + [anon_sym_is] = ACTIONS(4758), + [anon_sym_BANGis] = ACTIONS(4760), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_SLASH] = ACTIONS(4758), + [anon_sym_PERCENT] = ACTIONS(4758), + [anon_sym_as_QMARK] = ACTIONS(4760), + [anon_sym_PLUS_PLUS] = ACTIONS(4760), + [anon_sym_DASH_DASH] = ACTIONS(4760), + [anon_sym_BANG_BANG] = ACTIONS(4760), + [anon_sym_suspend] = ACTIONS(4758), + [anon_sym_sealed] = ACTIONS(4758), + [anon_sym_annotation] = ACTIONS(4758), + [anon_sym_data] = ACTIONS(4758), + [anon_sym_inner] = ACTIONS(4758), + [anon_sym_value] = ACTIONS(4758), + [anon_sym_override] = ACTIONS(4758), + [anon_sym_lateinit] = ACTIONS(4758), + [anon_sym_public] = ACTIONS(4758), + [anon_sym_private] = ACTIONS(4758), + [anon_sym_internal] = ACTIONS(4758), + [anon_sym_protected] = ACTIONS(4758), + [anon_sym_tailrec] = ACTIONS(4758), + [anon_sym_operator] = ACTIONS(4758), + [anon_sym_infix] = ACTIONS(4758), + [anon_sym_inline] = ACTIONS(4758), + [anon_sym_external] = ACTIONS(4758), + [sym_property_modifier] = ACTIONS(4758), + [anon_sym_abstract] = ACTIONS(4758), + [anon_sym_final] = ACTIONS(4758), + [anon_sym_open] = ACTIONS(4758), + [anon_sym_vararg] = ACTIONS(4758), + [anon_sym_noinline] = ACTIONS(4758), + [anon_sym_crossinline] = ACTIONS(4758), + [anon_sym_expect] = ACTIONS(4758), + [anon_sym_actual] = ACTIONS(4758), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4760), + [sym_safe_nav] = ACTIONS(4760), + [sym_multiline_comment] = ACTIONS(3), + }, + [3302] = { + [sym_class_body] = STATE(3495), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_RBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [anon_sym_DASH_GT] = ACTIONS(4495), + [sym_label] = ACTIONS(4495), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_while] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), + }, + [3303] = { + [sym_enum_class_body] = STATE(3494), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_RBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_RPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [anon_sym_DASH_GT] = ACTIONS(4465), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_while] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + }, + [3304] = { + [sym__alpha_identifier] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_RBRACK] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(4674), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(4676), + [anon_sym_by] = ACTIONS(4674), + [anon_sym_LT] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4674), + [anon_sym_where] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_get] = ACTIONS(4674), + [anon_sym_set] = ACTIONS(4674), + [anon_sym_STAR] = ACTIONS(4674), + [anon_sym_DASH_GT] = ACTIONS(4676), + [sym_label] = ACTIONS(4676), + [anon_sym_in] = ACTIONS(4674), + [anon_sym_while] = ACTIONS(4674), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_QMARK_COLON] = ACTIONS(4676), + [anon_sym_AMP_AMP] = ACTIONS(4676), + [anon_sym_PIPE_PIPE] = ACTIONS(4676), + [anon_sym_else] = ACTIONS(4674), + [anon_sym_COLON_COLON] = ACTIONS(4676), + [anon_sym_PLUS_EQ] = ACTIONS(4676), + [anon_sym_DASH_EQ] = ACTIONS(4676), + [anon_sym_STAR_EQ] = ACTIONS(4676), + [anon_sym_SLASH_EQ] = ACTIONS(4676), + [anon_sym_PERCENT_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_BANGin] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_BANGis] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4674), + [anon_sym_SLASH] = ACTIONS(4674), + [anon_sym_PERCENT] = ACTIONS(4674), + [anon_sym_as_QMARK] = ACTIONS(4676), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_BANG_BANG] = ACTIONS(4676), + [anon_sym_suspend] = ACTIONS(4674), + [anon_sym_sealed] = ACTIONS(4674), + [anon_sym_annotation] = ACTIONS(4674), + [anon_sym_data] = ACTIONS(4674), + [anon_sym_inner] = ACTIONS(4674), + [anon_sym_value] = ACTIONS(4674), + [anon_sym_override] = ACTIONS(4674), + [anon_sym_lateinit] = ACTIONS(4674), + [anon_sym_public] = ACTIONS(4674), + [anon_sym_private] = ACTIONS(4674), + [anon_sym_internal] = ACTIONS(4674), + [anon_sym_protected] = ACTIONS(4674), + [anon_sym_tailrec] = ACTIONS(4674), + [anon_sym_operator] = ACTIONS(4674), + [anon_sym_infix] = ACTIONS(4674), + [anon_sym_inline] = ACTIONS(4674), + [anon_sym_external] = ACTIONS(4674), + [sym_property_modifier] = ACTIONS(4674), + [anon_sym_abstract] = ACTIONS(4674), + [anon_sym_final] = ACTIONS(4674), + [anon_sym_open] = ACTIONS(4674), + [anon_sym_vararg] = ACTIONS(4674), + [anon_sym_noinline] = ACTIONS(4674), + [anon_sym_crossinline] = ACTIONS(4674), + [anon_sym_expect] = ACTIONS(4674), + [anon_sym_actual] = ACTIONS(4674), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4676), + [sym_safe_nav] = ACTIONS(4676), + [sym_multiline_comment] = ACTIONS(3), + }, + [3305] = { + [sym_type_constraints] = STATE(3654), + [sym_function_body] = STATE(3195), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6776), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), + }, + [3306] = { + [aux_sym_user_type_repeat1] = STATE(3306), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(6778), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4168), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + }, + [3307] = { + [sym__alpha_identifier] = ACTIONS(4696), + [anon_sym_AT] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_RBRACK] = ACTIONS(4698), + [anon_sym_as] = ACTIONS(4696), + [anon_sym_EQ] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_RPAREN] = ACTIONS(4698), + [anon_sym_by] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4696), + [anon_sym_where] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4696), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_get] = ACTIONS(4696), + [anon_sym_set] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4696), + [anon_sym_DASH_GT] = ACTIONS(4698), + [sym_label] = ACTIONS(4698), + [anon_sym_in] = ACTIONS(4696), + [anon_sym_while] = ACTIONS(4696), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_QMARK_COLON] = ACTIONS(4698), + [anon_sym_AMP_AMP] = ACTIONS(4698), + [anon_sym_PIPE_PIPE] = ACTIONS(4698), + [anon_sym_else] = ACTIONS(4696), + [anon_sym_COLON_COLON] = ACTIONS(4698), + [anon_sym_PLUS_EQ] = ACTIONS(4698), + [anon_sym_DASH_EQ] = ACTIONS(4698), + [anon_sym_STAR_EQ] = ACTIONS(4698), + [anon_sym_SLASH_EQ] = ACTIONS(4698), + [anon_sym_PERCENT_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4698), + [anon_sym_BANGin] = ACTIONS(4698), + [anon_sym_is] = ACTIONS(4696), + [anon_sym_BANGis] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4696), + [anon_sym_SLASH] = ACTIONS(4696), + [anon_sym_PERCENT] = ACTIONS(4696), + [anon_sym_as_QMARK] = ACTIONS(4698), + [anon_sym_PLUS_PLUS] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4698), + [anon_sym_BANG_BANG] = ACTIONS(4698), + [anon_sym_suspend] = ACTIONS(4696), + [anon_sym_sealed] = ACTIONS(4696), + [anon_sym_annotation] = ACTIONS(4696), + [anon_sym_data] = ACTIONS(4696), + [anon_sym_inner] = ACTIONS(4696), + [anon_sym_value] = ACTIONS(4696), + [anon_sym_override] = ACTIONS(4696), + [anon_sym_lateinit] = ACTIONS(4696), + [anon_sym_public] = ACTIONS(4696), + [anon_sym_private] = ACTIONS(4696), + [anon_sym_internal] = ACTIONS(4696), + [anon_sym_protected] = ACTIONS(4696), + [anon_sym_tailrec] = ACTIONS(4696), + [anon_sym_operator] = ACTIONS(4696), + [anon_sym_infix] = ACTIONS(4696), + [anon_sym_inline] = ACTIONS(4696), + [anon_sym_external] = ACTIONS(4696), + [sym_property_modifier] = ACTIONS(4696), + [anon_sym_abstract] = ACTIONS(4696), + [anon_sym_final] = ACTIONS(4696), + [anon_sym_open] = ACTIONS(4696), + [anon_sym_vararg] = ACTIONS(4696), + [anon_sym_noinline] = ACTIONS(4696), + [anon_sym_crossinline] = ACTIONS(4696), + [anon_sym_expect] = ACTIONS(4696), + [anon_sym_actual] = ACTIONS(4696), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4698), + [sym_safe_nav] = ACTIONS(4698), + [sym_multiline_comment] = ACTIONS(3), + }, + [3308] = { + [sym_type_arguments] = STATE(3550), + [sym__alpha_identifier] = ACTIONS(4128), + [anon_sym_AT] = ACTIONS(4189), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_as] = ACTIONS(4128), + [anon_sym_EQ] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_RBRACE] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_COMMA] = ACTIONS(4189), + [anon_sym_by] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(6781), + [anon_sym_GT] = ACTIONS(4128), + [anon_sym_where] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4189), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4128), + [sym__quest] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4128), + [sym_label] = ACTIONS(4189), + [anon_sym_in] = ACTIONS(4128), + [anon_sym_DOT_DOT] = ACTIONS(4189), + [anon_sym_QMARK_COLON] = ACTIONS(4189), + [anon_sym_AMP_AMP] = ACTIONS(4189), + [anon_sym_PIPE_PIPE] = ACTIONS(4189), + [anon_sym_else] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4189), + [anon_sym_PLUS_EQ] = ACTIONS(4189), + [anon_sym_DASH_EQ] = ACTIONS(4189), + [anon_sym_STAR_EQ] = ACTIONS(4189), + [anon_sym_SLASH_EQ] = ACTIONS(4189), + [anon_sym_PERCENT_EQ] = ACTIONS(4189), + [anon_sym_BANG_EQ] = ACTIONS(4128), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), + [anon_sym_EQ_EQ] = ACTIONS(4128), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), + [anon_sym_LT_EQ] = ACTIONS(4189), + [anon_sym_GT_EQ] = ACTIONS(4189), + [anon_sym_BANGin] = ACTIONS(4189), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4189), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_SLASH] = ACTIONS(4128), + [anon_sym_PERCENT] = ACTIONS(4128), + [anon_sym_as_QMARK] = ACTIONS(4189), + [anon_sym_PLUS_PLUS] = ACTIONS(4189), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_BANG_BANG] = ACTIONS(4189), + [anon_sym_suspend] = ACTIONS(4128), + [anon_sym_sealed] = ACTIONS(4128), + [anon_sym_annotation] = ACTIONS(4128), + [anon_sym_data] = ACTIONS(4128), + [anon_sym_inner] = ACTIONS(4128), + [anon_sym_value] = ACTIONS(4128), + [anon_sym_override] = ACTIONS(4128), + [anon_sym_lateinit] = ACTIONS(4128), + [anon_sym_public] = ACTIONS(4128), + [anon_sym_private] = ACTIONS(4128), + [anon_sym_internal] = ACTIONS(4128), + [anon_sym_protected] = ACTIONS(4128), + [anon_sym_tailrec] = ACTIONS(4128), + [anon_sym_operator] = ACTIONS(4128), + [anon_sym_infix] = ACTIONS(4128), + [anon_sym_inline] = ACTIONS(4128), + [anon_sym_external] = ACTIONS(4128), + [sym_property_modifier] = ACTIONS(4128), + [anon_sym_abstract] = ACTIONS(4128), + [anon_sym_final] = ACTIONS(4128), + [anon_sym_open] = ACTIONS(4128), + [anon_sym_vararg] = ACTIONS(4128), + [anon_sym_noinline] = ACTIONS(4128), + [anon_sym_crossinline] = ACTIONS(4128), + [anon_sym_expect] = ACTIONS(4128), + [anon_sym_actual] = ACTIONS(4128), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4189), + [sym__automatic_semicolon] = ACTIONS(4189), + [sym_safe_nav] = ACTIONS(4189), + [sym_multiline_comment] = ACTIONS(3), + }, + [3309] = { + [sym__alpha_identifier] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_RBRACK] = ACTIONS(4708), + [anon_sym_as] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(4706), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_RPAREN] = ACTIONS(4708), + [anon_sym_by] = ACTIONS(4706), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_where] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(4706), + [anon_sym_set] = ACTIONS(4706), + [anon_sym_STAR] = ACTIONS(4706), + [anon_sym_DASH_GT] = ACTIONS(4708), + [sym_label] = ACTIONS(4708), + [anon_sym_in] = ACTIONS(4706), + [anon_sym_while] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4708), + [anon_sym_QMARK_COLON] = ACTIONS(4708), + [anon_sym_AMP_AMP] = ACTIONS(4708), + [anon_sym_PIPE_PIPE] = ACTIONS(4708), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4708), + [anon_sym_PLUS_EQ] = ACTIONS(4708), + [anon_sym_DASH_EQ] = ACTIONS(4708), + [anon_sym_STAR_EQ] = ACTIONS(4708), + [anon_sym_SLASH_EQ] = ACTIONS(4708), + [anon_sym_PERCENT_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4708), + [anon_sym_EQ_EQ] = ACTIONS(4706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4708), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_BANGin] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4706), + [anon_sym_BANGis] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4706), + [anon_sym_PERCENT] = ACTIONS(4706), + [anon_sym_as_QMARK] = ACTIONS(4708), + [anon_sym_PLUS_PLUS] = ACTIONS(4708), + [anon_sym_DASH_DASH] = ACTIONS(4708), + [anon_sym_BANG_BANG] = ACTIONS(4708), + [anon_sym_suspend] = ACTIONS(4706), + [anon_sym_sealed] = ACTIONS(4706), + [anon_sym_annotation] = ACTIONS(4706), + [anon_sym_data] = ACTIONS(4706), + [anon_sym_inner] = ACTIONS(4706), + [anon_sym_value] = ACTIONS(4706), + [anon_sym_override] = ACTIONS(4706), + [anon_sym_lateinit] = ACTIONS(4706), + [anon_sym_public] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4706), + [anon_sym_internal] = ACTIONS(4706), + [anon_sym_protected] = ACTIONS(4706), + [anon_sym_tailrec] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(4706), + [anon_sym_infix] = ACTIONS(4706), + [anon_sym_inline] = ACTIONS(4706), + [anon_sym_external] = ACTIONS(4706), + [sym_property_modifier] = ACTIONS(4706), + [anon_sym_abstract] = ACTIONS(4706), + [anon_sym_final] = ACTIONS(4706), + [anon_sym_open] = ACTIONS(4706), + [anon_sym_vararg] = ACTIONS(4706), + [anon_sym_noinline] = ACTIONS(4706), + [anon_sym_crossinline] = ACTIONS(4706), + [anon_sym_expect] = ACTIONS(4706), + [anon_sym_actual] = ACTIONS(4706), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4708), + [sym_safe_nav] = ACTIONS(4708), + [sym_multiline_comment] = ACTIONS(3), + }, + [3310] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3177), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3177), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3311] = { + [sym_enum_class_body] = STATE(3539), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [3312] = { + [sym_class_body] = STATE(3533), + [sym__alpha_identifier] = ACTIONS(4555), + [anon_sym_AT] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4557), + [anon_sym_RBRACK] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4555), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_LPAREN] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_RPAREN] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_where] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_SEMI] = ACTIONS(4557), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [anon_sym_DASH_GT] = ACTIONS(4557), + [sym_label] = ACTIONS(4557), + [anon_sym_in] = ACTIONS(4555), + [anon_sym_while] = ACTIONS(4555), + [anon_sym_DOT_DOT] = ACTIONS(4557), + [anon_sym_QMARK_COLON] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_else] = ACTIONS(4555), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(4557), + [anon_sym_DASH_EQ] = ACTIONS(4557), + [anon_sym_STAR_EQ] = ACTIONS(4557), + [anon_sym_SLASH_EQ] = ACTIONS(4557), + [anon_sym_PERCENT_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_BANGin] = ACTIONS(4557), + [anon_sym_is] = ACTIONS(4555), + [anon_sym_BANGis] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_as_QMARK] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_BANG_BANG] = ACTIONS(4557), + [anon_sym_suspend] = ACTIONS(4555), + [anon_sym_sealed] = ACTIONS(4555), + [anon_sym_annotation] = ACTIONS(4555), + [anon_sym_data] = ACTIONS(4555), + [anon_sym_inner] = ACTIONS(4555), + [anon_sym_value] = ACTIONS(4555), + [anon_sym_override] = ACTIONS(4555), + [anon_sym_lateinit] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_internal] = ACTIONS(4555), + [anon_sym_protected] = ACTIONS(4555), + [anon_sym_tailrec] = ACTIONS(4555), + [anon_sym_operator] = ACTIONS(4555), + [anon_sym_infix] = ACTIONS(4555), + [anon_sym_inline] = ACTIONS(4555), + [anon_sym_external] = ACTIONS(4555), + [sym_property_modifier] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_open] = ACTIONS(4555), + [anon_sym_vararg] = ACTIONS(4555), + [anon_sym_noinline] = ACTIONS(4555), + [anon_sym_crossinline] = ACTIONS(4555), + [anon_sym_expect] = ACTIONS(4555), + [anon_sym_actual] = ACTIONS(4555), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4557), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + }, + [3313] = { + [sym_type_constraints] = STATE(3748), + [sym_function_body] = STATE(3552), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6783), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_RPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_while] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + }, + [3314] = { + [sym_type_constraints] = STATE(3749), + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6787), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + }, + [3315] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3295), [sym__alpha_identifier] = ACTIONS(4736), [anon_sym_AT] = ACTIONS(4738), [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_RBRACK] = ACTIONS(4738), [anon_sym_as] = ACTIONS(4736), [anon_sym_EQ] = ACTIONS(4736), - [anon_sym_fun] = ACTIONS(4736), [anon_sym_LBRACE] = ACTIONS(4738), [anon_sym_RBRACE] = ACTIONS(4738), [anon_sym_LPAREN] = ACTIONS(4738), [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_RPAREN] = ACTIONS(4738), [anon_sym_LT] = ACTIONS(4736), [anon_sym_GT] = ACTIONS(4736), [anon_sym_where] = ACTIONS(4736), - [anon_sym_object] = ACTIONS(4736), [anon_sym_DOT] = ACTIONS(4736), [anon_sym_SEMI] = ACTIONS(4738), [anon_sym_get] = ACTIONS(4736), [anon_sym_set] = ACTIONS(4736), - [anon_sym_this] = ACTIONS(4736), - [anon_sym_super] = ACTIONS(4736), [anon_sym_STAR] = ACTIONS(4736), - [sym_label] = ACTIONS(4736), + [anon_sym_DASH_GT] = ACTIONS(4738), + [sym_label] = ACTIONS(4738), [anon_sym_in] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), [anon_sym_DOT_DOT] = ACTIONS(4738), [anon_sym_QMARK_COLON] = ACTIONS(4738), [anon_sym_AMP_AMP] = ACTIONS(4738), [anon_sym_PIPE_PIPE] = ACTIONS(4738), - [anon_sym_null] = ACTIONS(4736), - [anon_sym_if] = ACTIONS(4736), [anon_sym_else] = ACTIONS(4736), - [anon_sym_when] = ACTIONS(4736), - [anon_sym_try] = ACTIONS(4736), - [anon_sym_throw] = ACTIONS(4736), - [anon_sym_return] = ACTIONS(4736), - [anon_sym_continue] = ACTIONS(4736), - [anon_sym_break] = ACTIONS(4736), [anon_sym_COLON_COLON] = ACTIONS(4738), [anon_sym_PLUS_EQ] = ACTIONS(4738), [anon_sym_DASH_EQ] = ACTIONS(4738), @@ -391542,225 +388729,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(4738), [anon_sym_PLUS_PLUS] = ACTIONS(4738), [anon_sym_DASH_DASH] = ACTIONS(4738), - [anon_sym_BANG] = ACTIONS(4736), [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), [anon_sym_data] = ACTIONS(4736), [anon_sym_inner] = ACTIONS(4736), [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), [anon_sym_expect] = ACTIONS(4736), [anon_sym_actual] = ACTIONS(4736), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4738), - [anon_sym_continue_AT] = ACTIONS(4738), - [anon_sym_break_AT] = ACTIONS(4738), - [anon_sym_this_AT] = ACTIONS(4738), - [anon_sym_super_AT] = ACTIONS(4738), - [sym_real_literal] = ACTIONS(4738), - [sym_integer_literal] = ACTIONS(4736), - [sym_hex_literal] = ACTIONS(4738), - [sym_bin_literal] = ACTIONS(4738), - [anon_sym_true] = ACTIONS(4736), - [anon_sym_false] = ACTIONS(4736), - [anon_sym_SQUOTE] = ACTIONS(4738), [sym__backtick_identifier] = ACTIONS(4738), - [sym__automatic_semicolon] = ACTIONS(4738), [sym_safe_nav] = ACTIONS(4738), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4738), }, - [3324] = { - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(1816), - [anon_sym_set] = ACTIONS(1816), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_data] = ACTIONS(1816), - [anon_sym_inner] = ACTIONS(1816), - [anon_sym_value] = ACTIONS(1816), - [anon_sym_expect] = ACTIONS(1816), - [anon_sym_actual] = ACTIONS(1816), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [3316] = { + [sym_type_constraints] = STATE(3750), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(6789), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), }, - [3325] = { - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_fun] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_object] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_this] = ACTIONS(4705), - [anon_sym_super] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4705), - [sym_label] = ACTIONS(4705), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_null] = ACTIONS(4705), - [anon_sym_if] = ACTIONS(4705), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_when] = ACTIONS(4705), - [anon_sym_try] = ACTIONS(4705), - [anon_sym_throw] = ACTIONS(4705), - [anon_sym_return] = ACTIONS(4705), - [anon_sym_continue] = ACTIONS(4705), - [anon_sym_break] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_PLUS_EQ] = ACTIONS(4707), - [anon_sym_DASH_EQ] = ACTIONS(4707), - [anon_sym_STAR_EQ] = ACTIONS(4707), - [anon_sym_SLASH_EQ] = ACTIONS(4707), - [anon_sym_PERCENT_EQ] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4705), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4705), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4707), - [anon_sym_continue_AT] = ACTIONS(4707), - [anon_sym_break_AT] = ACTIONS(4707), - [anon_sym_this_AT] = ACTIONS(4707), - [anon_sym_super_AT] = ACTIONS(4707), - [sym_real_literal] = ACTIONS(4707), - [sym_integer_literal] = ACTIONS(4705), - [sym_hex_literal] = ACTIONS(4707), - [sym_bin_literal] = ACTIONS(4707), - [anon_sym_true] = ACTIONS(4705), - [anon_sym_false] = ACTIONS(4705), - [anon_sym_SQUOTE] = ACTIONS(4707), - [sym__backtick_identifier] = ACTIONS(4707), - [sym__automatic_semicolon] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4707), + [3317] = { + [sym_type_constraints] = STATE(3710), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6791), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), }, - [3326] = { - [sym_function_body] = STATE(3667), - [sym__block] = STATE(3620), + [3318] = { + [sym_type_constraints] = STATE(3751), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(6793), [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_RBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), [anon_sym_RPAREN] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), [anon_sym_set] = ACTIONS(4183), [anon_sym_STAR] = ACTIONS(4183), - [anon_sym_DASH_GT] = ACTIONS(4185), [sym_label] = ACTIONS(4185), [anon_sym_in] = ACTIONS(4183), [anon_sym_while] = ACTIONS(4183), @@ -391823,2390 +389013,2361 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, - [3327] = { - [sym__alpha_identifier] = ACTIONS(5197), - [anon_sym_AT] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_as] = ACTIONS(5197), - [anon_sym_EQ] = ACTIONS(5197), - [anon_sym_fun] = ACTIONS(5197), - [anon_sym_LBRACE] = ACTIONS(5199), - [anon_sym_RBRACE] = ACTIONS(5199), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_where] = ACTIONS(5197), - [anon_sym_object] = ACTIONS(5197), - [anon_sym_DOT] = ACTIONS(5197), - [anon_sym_SEMI] = ACTIONS(5199), - [anon_sym_get] = ACTIONS(5197), - [anon_sym_set] = ACTIONS(5197), - [anon_sym_this] = ACTIONS(5197), - [anon_sym_super] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [sym_label] = ACTIONS(5197), - [anon_sym_in] = ACTIONS(5197), - [anon_sym_DOT_DOT] = ACTIONS(5199), - [anon_sym_QMARK_COLON] = ACTIONS(5199), - [anon_sym_AMP_AMP] = ACTIONS(5199), - [anon_sym_PIPE_PIPE] = ACTIONS(5199), - [anon_sym_null] = ACTIONS(5197), - [anon_sym_if] = ACTIONS(5197), - [anon_sym_else] = ACTIONS(5197), - [anon_sym_when] = ACTIONS(5197), - [anon_sym_try] = ACTIONS(5197), - [anon_sym_throw] = ACTIONS(5197), - [anon_sym_return] = ACTIONS(5197), - [anon_sym_continue] = ACTIONS(5197), - [anon_sym_break] = ACTIONS(5197), - [anon_sym_COLON_COLON] = ACTIONS(5199), - [anon_sym_PLUS_EQ] = ACTIONS(5199), - [anon_sym_DASH_EQ] = ACTIONS(5199), - [anon_sym_STAR_EQ] = ACTIONS(5199), - [anon_sym_SLASH_EQ] = ACTIONS(5199), - [anon_sym_PERCENT_EQ] = ACTIONS(5199), - [anon_sym_BANG_EQ] = ACTIONS(5197), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5199), - [anon_sym_EQ_EQ] = ACTIONS(5197), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5199), - [anon_sym_LT_EQ] = ACTIONS(5199), - [anon_sym_GT_EQ] = ACTIONS(5199), - [anon_sym_BANGin] = ACTIONS(5199), - [anon_sym_is] = ACTIONS(5197), - [anon_sym_BANGis] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_PERCENT] = ACTIONS(5197), - [anon_sym_as_QMARK] = ACTIONS(5199), - [anon_sym_PLUS_PLUS] = ACTIONS(5199), - [anon_sym_DASH_DASH] = ACTIONS(5199), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_BANG_BANG] = ACTIONS(5199), - [anon_sym_data] = ACTIONS(5197), - [anon_sym_inner] = ACTIONS(5197), - [anon_sym_value] = ACTIONS(5197), - [anon_sym_expect] = ACTIONS(5197), - [anon_sym_actual] = ACTIONS(5197), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5199), - [anon_sym_continue_AT] = ACTIONS(5199), - [anon_sym_break_AT] = ACTIONS(5199), - [anon_sym_this_AT] = ACTIONS(5199), - [anon_sym_super_AT] = ACTIONS(5199), - [sym_real_literal] = ACTIONS(5199), - [sym_integer_literal] = ACTIONS(5197), - [sym_hex_literal] = ACTIONS(5199), - [sym_bin_literal] = ACTIONS(5199), - [anon_sym_true] = ACTIONS(5197), - [anon_sym_false] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5199), - [sym__backtick_identifier] = ACTIONS(5199), - [sym__automatic_semicolon] = ACTIONS(5199), - [sym_safe_nav] = ACTIONS(5199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5199), - }, - [3328] = { - [sym__alpha_identifier] = ACTIONS(5187), - [anon_sym_AT] = ACTIONS(5189), - [anon_sym_LBRACK] = ACTIONS(5189), - [anon_sym_as] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_fun] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5189), - [anon_sym_RBRACE] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5189), - [anon_sym_COMMA] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5187), - [anon_sym_GT] = ACTIONS(5187), - [anon_sym_where] = ACTIONS(5187), - [anon_sym_object] = ACTIONS(5187), - [anon_sym_DOT] = ACTIONS(5187), - [anon_sym_SEMI] = ACTIONS(5189), - [anon_sym_get] = ACTIONS(5187), - [anon_sym_set] = ACTIONS(5187), - [anon_sym_this] = ACTIONS(5187), - [anon_sym_super] = ACTIONS(5187), - [anon_sym_STAR] = ACTIONS(5187), - [sym_label] = ACTIONS(5187), - [anon_sym_in] = ACTIONS(5187), - [anon_sym_DOT_DOT] = ACTIONS(5189), - [anon_sym_QMARK_COLON] = ACTIONS(5189), - [anon_sym_AMP_AMP] = ACTIONS(5189), - [anon_sym_PIPE_PIPE] = ACTIONS(5189), - [anon_sym_null] = ACTIONS(5187), - [anon_sym_if] = ACTIONS(5187), - [anon_sym_else] = ACTIONS(5187), - [anon_sym_when] = ACTIONS(5187), - [anon_sym_try] = ACTIONS(5187), - [anon_sym_throw] = ACTIONS(5187), - [anon_sym_return] = ACTIONS(5187), - [anon_sym_continue] = ACTIONS(5187), - [anon_sym_break] = ACTIONS(5187), - [anon_sym_COLON_COLON] = ACTIONS(5189), - [anon_sym_PLUS_EQ] = ACTIONS(5189), - [anon_sym_DASH_EQ] = ACTIONS(5189), - [anon_sym_STAR_EQ] = ACTIONS(5189), - [anon_sym_SLASH_EQ] = ACTIONS(5189), - [anon_sym_PERCENT_EQ] = ACTIONS(5189), - [anon_sym_BANG_EQ] = ACTIONS(5187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5189), - [anon_sym_EQ_EQ] = ACTIONS(5187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5189), - [anon_sym_LT_EQ] = ACTIONS(5189), - [anon_sym_GT_EQ] = ACTIONS(5189), - [anon_sym_BANGin] = ACTIONS(5189), - [anon_sym_is] = ACTIONS(5187), - [anon_sym_BANGis] = ACTIONS(5189), - [anon_sym_PLUS] = ACTIONS(5187), - [anon_sym_DASH] = ACTIONS(5187), - [anon_sym_SLASH] = ACTIONS(5187), - [anon_sym_PERCENT] = ACTIONS(5187), - [anon_sym_as_QMARK] = ACTIONS(5189), - [anon_sym_PLUS_PLUS] = ACTIONS(5189), - [anon_sym_DASH_DASH] = ACTIONS(5189), - [anon_sym_BANG] = ACTIONS(5187), - [anon_sym_BANG_BANG] = ACTIONS(5189), - [anon_sym_data] = ACTIONS(5187), - [anon_sym_inner] = ACTIONS(5187), - [anon_sym_value] = ACTIONS(5187), - [anon_sym_expect] = ACTIONS(5187), - [anon_sym_actual] = ACTIONS(5187), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5189), - [anon_sym_continue_AT] = ACTIONS(5189), - [anon_sym_break_AT] = ACTIONS(5189), - [anon_sym_this_AT] = ACTIONS(5189), - [anon_sym_super_AT] = ACTIONS(5189), - [sym_real_literal] = ACTIONS(5189), - [sym_integer_literal] = ACTIONS(5187), - [sym_hex_literal] = ACTIONS(5189), - [sym_bin_literal] = ACTIONS(5189), - [anon_sym_true] = ACTIONS(5187), - [anon_sym_false] = ACTIONS(5187), - [anon_sym_SQUOTE] = ACTIONS(5189), - [sym__backtick_identifier] = ACTIONS(5189), - [sym__automatic_semicolon] = ACTIONS(5189), - [sym_safe_nav] = ACTIONS(5189), + [3319] = { + [aux_sym_user_type_repeat1] = STATE(3306), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_by] = ACTIONS(4153), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(4153), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4153), + [sym__quest] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4153), + [sym_label] = ACTIONS(4155), + [anon_sym_in] = ACTIONS(4153), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_QMARK_COLON] = ACTIONS(4155), + [anon_sym_AMP_AMP] = ACTIONS(4155), + [anon_sym_PIPE_PIPE] = ACTIONS(4155), + [anon_sym_else] = ACTIONS(4153), + [anon_sym_COLON_COLON] = ACTIONS(4155), + [anon_sym_PLUS_EQ] = ACTIONS(4155), + [anon_sym_DASH_EQ] = ACTIONS(4155), + [anon_sym_STAR_EQ] = ACTIONS(4155), + [anon_sym_SLASH_EQ] = ACTIONS(4155), + [anon_sym_PERCENT_EQ] = ACTIONS(4155), + [anon_sym_BANG_EQ] = ACTIONS(4153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4155), + [anon_sym_EQ_EQ] = ACTIONS(4153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4155), + [anon_sym_LT_EQ] = ACTIONS(4155), + [anon_sym_GT_EQ] = ACTIONS(4155), + [anon_sym_BANGin] = ACTIONS(4155), + [anon_sym_is] = ACTIONS(4153), + [anon_sym_BANGis] = ACTIONS(4155), + [anon_sym_PLUS] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_SLASH] = ACTIONS(4153), + [anon_sym_PERCENT] = ACTIONS(4153), + [anon_sym_as_QMARK] = ACTIONS(4155), + [anon_sym_PLUS_PLUS] = ACTIONS(4155), + [anon_sym_DASH_DASH] = ACTIONS(4155), + [anon_sym_BANG_BANG] = ACTIONS(4155), + [anon_sym_suspend] = ACTIONS(4153), + [anon_sym_sealed] = ACTIONS(4153), + [anon_sym_annotation] = ACTIONS(4153), + [anon_sym_data] = ACTIONS(4153), + [anon_sym_inner] = ACTIONS(4153), + [anon_sym_value] = ACTIONS(4153), + [anon_sym_override] = ACTIONS(4153), + [anon_sym_lateinit] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4153), + [anon_sym_private] = ACTIONS(4153), + [anon_sym_internal] = ACTIONS(4153), + [anon_sym_protected] = ACTIONS(4153), + [anon_sym_tailrec] = ACTIONS(4153), + [anon_sym_operator] = ACTIONS(4153), + [anon_sym_infix] = ACTIONS(4153), + [anon_sym_inline] = ACTIONS(4153), + [anon_sym_external] = ACTIONS(4153), + [sym_property_modifier] = ACTIONS(4153), + [anon_sym_abstract] = ACTIONS(4153), + [anon_sym_final] = ACTIONS(4153), + [anon_sym_open] = ACTIONS(4153), + [anon_sym_vararg] = ACTIONS(4153), + [anon_sym_noinline] = ACTIONS(4153), + [anon_sym_crossinline] = ACTIONS(4153), + [anon_sym_expect] = ACTIONS(4153), + [anon_sym_actual] = ACTIONS(4153), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4155), + [sym__automatic_semicolon] = ACTIONS(4155), + [sym_safe_nav] = ACTIONS(4155), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5189), }, - [3329] = { - [sym__alpha_identifier] = ACTIONS(5183), - [anon_sym_AT] = ACTIONS(5185), - [anon_sym_LBRACK] = ACTIONS(5185), - [anon_sym_as] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_fun] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5185), - [anon_sym_RBRACE] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5185), - [anon_sym_COMMA] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5183), - [anon_sym_GT] = ACTIONS(5183), - [anon_sym_where] = ACTIONS(5183), - [anon_sym_object] = ACTIONS(5183), - [anon_sym_DOT] = ACTIONS(5183), - [anon_sym_SEMI] = ACTIONS(5185), - [anon_sym_get] = ACTIONS(5183), - [anon_sym_set] = ACTIONS(5183), - [anon_sym_this] = ACTIONS(5183), - [anon_sym_super] = ACTIONS(5183), - [anon_sym_STAR] = ACTIONS(5183), - [sym_label] = ACTIONS(5183), - [anon_sym_in] = ACTIONS(5183), - [anon_sym_DOT_DOT] = ACTIONS(5185), - [anon_sym_QMARK_COLON] = ACTIONS(5185), - [anon_sym_AMP_AMP] = ACTIONS(5185), - [anon_sym_PIPE_PIPE] = ACTIONS(5185), - [anon_sym_null] = ACTIONS(5183), - [anon_sym_if] = ACTIONS(5183), - [anon_sym_else] = ACTIONS(5183), - [anon_sym_when] = ACTIONS(5183), - [anon_sym_try] = ACTIONS(5183), - [anon_sym_throw] = ACTIONS(5183), - [anon_sym_return] = ACTIONS(5183), - [anon_sym_continue] = ACTIONS(5183), - [anon_sym_break] = ACTIONS(5183), - [anon_sym_COLON_COLON] = ACTIONS(5185), - [anon_sym_PLUS_EQ] = ACTIONS(5185), - [anon_sym_DASH_EQ] = ACTIONS(5185), - [anon_sym_STAR_EQ] = ACTIONS(5185), - [anon_sym_SLASH_EQ] = ACTIONS(5185), - [anon_sym_PERCENT_EQ] = ACTIONS(5185), - [anon_sym_BANG_EQ] = ACTIONS(5183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5185), - [anon_sym_EQ_EQ] = ACTIONS(5183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5185), - [anon_sym_LT_EQ] = ACTIONS(5185), - [anon_sym_GT_EQ] = ACTIONS(5185), - [anon_sym_BANGin] = ACTIONS(5185), - [anon_sym_is] = ACTIONS(5183), - [anon_sym_BANGis] = ACTIONS(5185), - [anon_sym_PLUS] = ACTIONS(5183), - [anon_sym_DASH] = ACTIONS(5183), - [anon_sym_SLASH] = ACTIONS(5183), - [anon_sym_PERCENT] = ACTIONS(5183), - [anon_sym_as_QMARK] = ACTIONS(5185), - [anon_sym_PLUS_PLUS] = ACTIONS(5185), - [anon_sym_DASH_DASH] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5183), - [anon_sym_BANG_BANG] = ACTIONS(5185), - [anon_sym_data] = ACTIONS(5183), - [anon_sym_inner] = ACTIONS(5183), - [anon_sym_value] = ACTIONS(5183), - [anon_sym_expect] = ACTIONS(5183), - [anon_sym_actual] = ACTIONS(5183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5185), - [anon_sym_continue_AT] = ACTIONS(5185), - [anon_sym_break_AT] = ACTIONS(5185), - [anon_sym_this_AT] = ACTIONS(5185), - [anon_sym_super_AT] = ACTIONS(5185), - [sym_real_literal] = ACTIONS(5185), - [sym_integer_literal] = ACTIONS(5183), - [sym_hex_literal] = ACTIONS(5185), - [sym_bin_literal] = ACTIONS(5185), - [anon_sym_true] = ACTIONS(5183), - [anon_sym_false] = ACTIONS(5183), - [anon_sym_SQUOTE] = ACTIONS(5185), - [sym__backtick_identifier] = ACTIONS(5185), - [sym__automatic_semicolon] = ACTIONS(5185), - [sym_safe_nav] = ACTIONS(5185), + [3320] = { + [sym__alpha_identifier] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4681), + [anon_sym_LBRACK] = ACTIONS(4681), + [anon_sym_RBRACK] = ACTIONS(4681), + [anon_sym_as] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_LBRACE] = ACTIONS(4681), + [anon_sym_RBRACE] = ACTIONS(4681), + [anon_sym_LPAREN] = ACTIONS(4681), + [anon_sym_COMMA] = ACTIONS(4681), + [anon_sym_RPAREN] = ACTIONS(4681), + [anon_sym_by] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_where] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4681), + [anon_sym_get] = ACTIONS(4678), + [anon_sym_set] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(4681), + [sym_label] = ACTIONS(4681), + [anon_sym_in] = ACTIONS(4678), + [anon_sym_while] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4681), + [anon_sym_QMARK_COLON] = ACTIONS(4681), + [anon_sym_AMP_AMP] = ACTIONS(4681), + [anon_sym_PIPE_PIPE] = ACTIONS(4681), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4681), + [anon_sym_PLUS_EQ] = ACTIONS(4681), + [anon_sym_DASH_EQ] = ACTIONS(4681), + [anon_sym_STAR_EQ] = ACTIONS(4681), + [anon_sym_SLASH_EQ] = ACTIONS(4681), + [anon_sym_PERCENT_EQ] = ACTIONS(4681), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4681), + [anon_sym_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4681), + [anon_sym_LT_EQ] = ACTIONS(4681), + [anon_sym_GT_EQ] = ACTIONS(4681), + [anon_sym_BANGin] = ACTIONS(4681), + [anon_sym_is] = ACTIONS(4678), + [anon_sym_BANGis] = ACTIONS(4681), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_as_QMARK] = ACTIONS(4681), + [anon_sym_PLUS_PLUS] = ACTIONS(4681), + [anon_sym_DASH_DASH] = ACTIONS(4681), + [anon_sym_BANG_BANG] = ACTIONS(4681), + [anon_sym_suspend] = ACTIONS(4678), + [anon_sym_sealed] = ACTIONS(4678), + [anon_sym_annotation] = ACTIONS(4678), + [anon_sym_data] = ACTIONS(4678), + [anon_sym_inner] = ACTIONS(4678), + [anon_sym_value] = ACTIONS(4678), + [anon_sym_override] = ACTIONS(4678), + [anon_sym_lateinit] = ACTIONS(4678), + [anon_sym_public] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4678), + [anon_sym_internal] = ACTIONS(4678), + [anon_sym_protected] = ACTIONS(4678), + [anon_sym_tailrec] = ACTIONS(4678), + [anon_sym_operator] = ACTIONS(4678), + [anon_sym_infix] = ACTIONS(4678), + [anon_sym_inline] = ACTIONS(4678), + [anon_sym_external] = ACTIONS(4678), + [sym_property_modifier] = ACTIONS(4678), + [anon_sym_abstract] = ACTIONS(4678), + [anon_sym_final] = ACTIONS(4678), + [anon_sym_open] = ACTIONS(4678), + [anon_sym_vararg] = ACTIONS(4678), + [anon_sym_noinline] = ACTIONS(4678), + [anon_sym_crossinline] = ACTIONS(4678), + [anon_sym_expect] = ACTIONS(4678), + [anon_sym_actual] = ACTIONS(4678), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4681), + [sym_safe_nav] = ACTIONS(4681), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5185), }, - [3330] = { - [sym__alpha_identifier] = ACTIONS(4219), - [anon_sym_AT] = ACTIONS(4221), - [anon_sym_COLON] = ACTIONS(6677), - [anon_sym_LBRACK] = ACTIONS(4221), - [anon_sym_RBRACK] = ACTIONS(4221), - [anon_sym_as] = ACTIONS(4219), - [anon_sym_EQ] = ACTIONS(4219), - [anon_sym_LBRACE] = ACTIONS(4221), - [anon_sym_RBRACE] = ACTIONS(4221), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_COMMA] = ACTIONS(4221), - [anon_sym_RPAREN] = ACTIONS(4221), - [anon_sym_by] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4219), - [anon_sym_GT] = ACTIONS(4219), - [anon_sym_where] = ACTIONS(4219), - [anon_sym_DOT] = ACTIONS(4219), - [anon_sym_SEMI] = ACTIONS(4221), - [anon_sym_get] = ACTIONS(4219), - [anon_sym_set] = ACTIONS(4219), - [anon_sym_STAR] = ACTIONS(4219), - [anon_sym_DASH_GT] = ACTIONS(4221), - [sym_label] = ACTIONS(4221), - [anon_sym_in] = ACTIONS(4219), - [anon_sym_while] = ACTIONS(4219), - [anon_sym_DOT_DOT] = ACTIONS(4221), - [anon_sym_QMARK_COLON] = ACTIONS(4221), - [anon_sym_AMP_AMP] = ACTIONS(4221), - [anon_sym_PIPE_PIPE] = ACTIONS(4221), - [anon_sym_else] = ACTIONS(4219), - [anon_sym_COLON_COLON] = ACTIONS(4221), - [anon_sym_PLUS_EQ] = ACTIONS(4221), - [anon_sym_DASH_EQ] = ACTIONS(4221), - [anon_sym_STAR_EQ] = ACTIONS(4221), - [anon_sym_SLASH_EQ] = ACTIONS(4221), - [anon_sym_PERCENT_EQ] = ACTIONS(4221), - [anon_sym_BANG_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4221), - [anon_sym_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4221), - [anon_sym_LT_EQ] = ACTIONS(4221), - [anon_sym_GT_EQ] = ACTIONS(4221), - [anon_sym_BANGin] = ACTIONS(4221), - [anon_sym_is] = ACTIONS(4219), - [anon_sym_BANGis] = ACTIONS(4221), - [anon_sym_PLUS] = ACTIONS(4219), - [anon_sym_DASH] = ACTIONS(4219), - [anon_sym_SLASH] = ACTIONS(4219), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4221), - [anon_sym_PLUS_PLUS] = ACTIONS(4221), - [anon_sym_DASH_DASH] = ACTIONS(4221), - [anon_sym_BANG_BANG] = ACTIONS(4221), - [anon_sym_suspend] = ACTIONS(4219), - [anon_sym_sealed] = ACTIONS(4219), - [anon_sym_annotation] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4219), - [anon_sym_inner] = ACTIONS(4219), - [anon_sym_value] = ACTIONS(4219), - [anon_sym_override] = ACTIONS(4219), - [anon_sym_lateinit] = ACTIONS(4219), - [anon_sym_public] = ACTIONS(4219), - [anon_sym_private] = ACTIONS(4219), - [anon_sym_internal] = ACTIONS(4219), - [anon_sym_protected] = ACTIONS(4219), - [anon_sym_tailrec] = ACTIONS(4219), - [anon_sym_operator] = ACTIONS(4219), - [anon_sym_infix] = ACTIONS(4219), - [anon_sym_inline] = ACTIONS(4219), - [anon_sym_external] = ACTIONS(4219), - [sym_property_modifier] = ACTIONS(4219), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_final] = ACTIONS(4219), - [anon_sym_open] = ACTIONS(4219), - [anon_sym_vararg] = ACTIONS(4219), - [anon_sym_noinline] = ACTIONS(4219), - [anon_sym_crossinline] = ACTIONS(4219), - [anon_sym_expect] = ACTIONS(4219), - [anon_sym_actual] = ACTIONS(4219), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4221), - [sym_safe_nav] = ACTIONS(4221), + [3321] = { + [sym__alpha_identifier] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4748), + [anon_sym_COLON] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4748), + [anon_sym_RBRACK] = ACTIONS(4748), + [anon_sym_as] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4748), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4748), + [anon_sym_COMMA] = ACTIONS(4748), + [anon_sym_RPAREN] = ACTIONS(4748), + [anon_sym_LT] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4746), + [anon_sym_where] = ACTIONS(4746), + [anon_sym_DOT] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4748), + [anon_sym_get] = ACTIONS(4746), + [anon_sym_set] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4746), + [anon_sym_DASH_GT] = ACTIONS(4748), + [sym_label] = ACTIONS(4748), + [anon_sym_in] = ACTIONS(4746), + [anon_sym_while] = ACTIONS(4746), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_QMARK_COLON] = ACTIONS(4748), + [anon_sym_AMP_AMP] = ACTIONS(4748), + [anon_sym_PIPE_PIPE] = ACTIONS(4748), + [anon_sym_else] = ACTIONS(4746), + [anon_sym_COLON_COLON] = ACTIONS(4748), + [anon_sym_PLUS_EQ] = ACTIONS(4748), + [anon_sym_DASH_EQ] = ACTIONS(4748), + [anon_sym_STAR_EQ] = ACTIONS(4748), + [anon_sym_SLASH_EQ] = ACTIONS(4748), + [anon_sym_PERCENT_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4748), + [anon_sym_BANGin] = ACTIONS(4748), + [anon_sym_is] = ACTIONS(4746), + [anon_sym_BANGis] = ACTIONS(4748), + [anon_sym_PLUS] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_SLASH] = ACTIONS(4746), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(4748), + [anon_sym_PLUS_PLUS] = ACTIONS(4748), + [anon_sym_DASH_DASH] = ACTIONS(4748), + [anon_sym_BANG_BANG] = ACTIONS(4748), + [anon_sym_suspend] = ACTIONS(4746), + [anon_sym_sealed] = ACTIONS(4746), + [anon_sym_annotation] = ACTIONS(4746), + [anon_sym_data] = ACTIONS(4746), + [anon_sym_inner] = ACTIONS(4746), + [anon_sym_value] = ACTIONS(4746), + [anon_sym_override] = ACTIONS(4746), + [anon_sym_lateinit] = ACTIONS(4746), + [anon_sym_public] = ACTIONS(4746), + [anon_sym_private] = ACTIONS(4746), + [anon_sym_internal] = ACTIONS(4746), + [anon_sym_protected] = ACTIONS(4746), + [anon_sym_tailrec] = ACTIONS(4746), + [anon_sym_operator] = ACTIONS(4746), + [anon_sym_infix] = ACTIONS(4746), + [anon_sym_inline] = ACTIONS(4746), + [anon_sym_external] = ACTIONS(4746), + [sym_property_modifier] = ACTIONS(4746), + [anon_sym_abstract] = ACTIONS(4746), + [anon_sym_final] = ACTIONS(4746), + [anon_sym_open] = ACTIONS(4746), + [anon_sym_vararg] = ACTIONS(4746), + [anon_sym_noinline] = ACTIONS(4746), + [anon_sym_crossinline] = ACTIONS(4746), + [anon_sym_expect] = ACTIONS(4746), + [anon_sym_actual] = ACTIONS(4746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4748), + [sym_safe_nav] = ACTIONS(4748), [sym_multiline_comment] = ACTIONS(3), }, - [3331] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(6801), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), + [3322] = { + [sym_type_constraints] = STATE(3652), + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, - [3332] = { - [sym__alpha_identifier] = ACTIONS(5145), - [anon_sym_AT] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5147), - [anon_sym_as] = ACTIONS(5145), - [anon_sym_EQ] = ACTIONS(5145), - [anon_sym_fun] = ACTIONS(5145), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_RBRACE] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5145), - [anon_sym_where] = ACTIONS(5145), - [anon_sym_object] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_SEMI] = ACTIONS(5147), - [anon_sym_get] = ACTIONS(5145), - [anon_sym_set] = ACTIONS(5145), - [anon_sym_this] = ACTIONS(5145), - [anon_sym_super] = ACTIONS(5145), - [anon_sym_STAR] = ACTIONS(5145), - [sym_label] = ACTIONS(5145), - [anon_sym_in] = ACTIONS(5145), - [anon_sym_DOT_DOT] = ACTIONS(5147), - [anon_sym_QMARK_COLON] = ACTIONS(5147), - [anon_sym_AMP_AMP] = ACTIONS(5147), - [anon_sym_PIPE_PIPE] = ACTIONS(5147), - [anon_sym_null] = ACTIONS(5145), - [anon_sym_if] = ACTIONS(5145), - [anon_sym_else] = ACTIONS(5145), - [anon_sym_when] = ACTIONS(5145), - [anon_sym_try] = ACTIONS(5145), - [anon_sym_throw] = ACTIONS(5145), - [anon_sym_return] = ACTIONS(5145), - [anon_sym_continue] = ACTIONS(5145), - [anon_sym_break] = ACTIONS(5145), - [anon_sym_COLON_COLON] = ACTIONS(5147), - [anon_sym_PLUS_EQ] = ACTIONS(5147), - [anon_sym_DASH_EQ] = ACTIONS(5147), - [anon_sym_STAR_EQ] = ACTIONS(5147), - [anon_sym_SLASH_EQ] = ACTIONS(5147), - [anon_sym_PERCENT_EQ] = ACTIONS(5147), - [anon_sym_BANG_EQ] = ACTIONS(5145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5147), - [anon_sym_EQ_EQ] = ACTIONS(5145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5147), - [anon_sym_LT_EQ] = ACTIONS(5147), - [anon_sym_GT_EQ] = ACTIONS(5147), - [anon_sym_BANGin] = ACTIONS(5147), - [anon_sym_is] = ACTIONS(5145), - [anon_sym_BANGis] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5145), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5145), - [anon_sym_PERCENT] = ACTIONS(5145), - [anon_sym_as_QMARK] = ACTIONS(5147), - [anon_sym_PLUS_PLUS] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5145), - [anon_sym_BANG_BANG] = ACTIONS(5147), - [anon_sym_data] = ACTIONS(5145), - [anon_sym_inner] = ACTIONS(5145), - [anon_sym_value] = ACTIONS(5145), - [anon_sym_expect] = ACTIONS(5145), - [anon_sym_actual] = ACTIONS(5145), + [3323] = { + [sym_type_constraints] = STATE(3641), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5147), - [anon_sym_continue_AT] = ACTIONS(5147), - [anon_sym_break_AT] = ACTIONS(5147), - [anon_sym_this_AT] = ACTIONS(5147), - [anon_sym_super_AT] = ACTIONS(5147), - [sym_real_literal] = ACTIONS(5147), - [sym_integer_literal] = ACTIONS(5145), - [sym_hex_literal] = ACTIONS(5147), - [sym_bin_literal] = ACTIONS(5147), - [anon_sym_true] = ACTIONS(5145), - [anon_sym_false] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5147), - [sym__backtick_identifier] = ACTIONS(5147), - [sym__automatic_semicolon] = ACTIONS(5147), - [sym_safe_nav] = ACTIONS(5147), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5147), + [sym__string_start] = ACTIONS(4185), }, - [3333] = { - [sym_function_body] = STATE(3608), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_RBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [anon_sym_DASH_GT] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), + [3324] = { + [sym_class_body] = STATE(3494), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_RBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_RPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [anon_sym_DASH_GT] = ACTIONS(4465), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_while] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), [sym_multiline_comment] = ACTIONS(3), }, - [3334] = { - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), - }, - [3335] = { - [sym__alpha_identifier] = ACTIONS(4976), - [anon_sym_AT] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [anon_sym_as] = ACTIONS(4976), - [anon_sym_EQ] = ACTIONS(4976), - [anon_sym_fun] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(4978), - [anon_sym_LPAREN] = ACTIONS(4978), - [anon_sym_COMMA] = ACTIONS(4978), - [anon_sym_LT] = ACTIONS(4976), - [anon_sym_GT] = ACTIONS(4976), - [anon_sym_where] = ACTIONS(4976), - [anon_sym_object] = ACTIONS(4976), - [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_SEMI] = ACTIONS(4978), - [anon_sym_get] = ACTIONS(4976), - [anon_sym_set] = ACTIONS(4976), - [anon_sym_this] = ACTIONS(4976), - [anon_sym_super] = ACTIONS(4976), - [anon_sym_STAR] = ACTIONS(4976), - [sym_label] = ACTIONS(4976), - [anon_sym_in] = ACTIONS(4976), - [anon_sym_DOT_DOT] = ACTIONS(4978), - [anon_sym_QMARK_COLON] = ACTIONS(4978), - [anon_sym_AMP_AMP] = ACTIONS(4978), - [anon_sym_PIPE_PIPE] = ACTIONS(4978), - [anon_sym_null] = ACTIONS(4976), - [anon_sym_if] = ACTIONS(4976), - [anon_sym_else] = ACTIONS(4976), - [anon_sym_when] = ACTIONS(4976), - [anon_sym_try] = ACTIONS(4976), - [anon_sym_throw] = ACTIONS(4976), - [anon_sym_return] = ACTIONS(4976), - [anon_sym_continue] = ACTIONS(4976), - [anon_sym_break] = ACTIONS(4976), - [anon_sym_COLON_COLON] = ACTIONS(4978), - [anon_sym_PLUS_EQ] = ACTIONS(4978), - [anon_sym_DASH_EQ] = ACTIONS(4978), - [anon_sym_STAR_EQ] = ACTIONS(4978), - [anon_sym_SLASH_EQ] = ACTIONS(4978), - [anon_sym_PERCENT_EQ] = ACTIONS(4978), - [anon_sym_BANG_EQ] = ACTIONS(4976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4978), - [anon_sym_EQ_EQ] = ACTIONS(4976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4978), - [anon_sym_LT_EQ] = ACTIONS(4978), - [anon_sym_GT_EQ] = ACTIONS(4978), - [anon_sym_BANGin] = ACTIONS(4978), - [anon_sym_is] = ACTIONS(4976), - [anon_sym_BANGis] = ACTIONS(4978), - [anon_sym_PLUS] = ACTIONS(4976), - [anon_sym_DASH] = ACTIONS(4976), - [anon_sym_SLASH] = ACTIONS(4976), - [anon_sym_PERCENT] = ACTIONS(4976), - [anon_sym_as_QMARK] = ACTIONS(4978), - [anon_sym_PLUS_PLUS] = ACTIONS(4978), - [anon_sym_DASH_DASH] = ACTIONS(4978), - [anon_sym_BANG] = ACTIONS(4976), - [anon_sym_BANG_BANG] = ACTIONS(4978), - [anon_sym_data] = ACTIONS(4976), - [anon_sym_inner] = ACTIONS(4976), - [anon_sym_value] = ACTIONS(4976), - [anon_sym_expect] = ACTIONS(4976), - [anon_sym_actual] = ACTIONS(4976), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4978), - [anon_sym_continue_AT] = ACTIONS(4978), - [anon_sym_break_AT] = ACTIONS(4978), - [anon_sym_this_AT] = ACTIONS(4978), - [anon_sym_super_AT] = ACTIONS(4978), - [sym_real_literal] = ACTIONS(4978), - [sym_integer_literal] = ACTIONS(4976), - [sym_hex_literal] = ACTIONS(4978), - [sym_bin_literal] = ACTIONS(4978), - [anon_sym_true] = ACTIONS(4976), - [anon_sym_false] = ACTIONS(4976), - [anon_sym_SQUOTE] = ACTIONS(4978), - [sym__backtick_identifier] = ACTIONS(4978), - [sym__automatic_semicolon] = ACTIONS(4978), - [sym_safe_nav] = ACTIONS(4978), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4978), + [3325] = { + [sym_enum_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), }, - [3336] = { - [sym__alpha_identifier] = ACTIONS(4215), - [anon_sym_AT] = ACTIONS(4217), - [anon_sym_COLON] = ACTIONS(4215), - [anon_sym_LBRACK] = ACTIONS(4217), - [anon_sym_RBRACK] = ACTIONS(4217), - [anon_sym_as] = ACTIONS(4215), - [anon_sym_EQ] = ACTIONS(4215), - [anon_sym_constructor] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4217), - [anon_sym_COMMA] = ACTIONS(4217), - [anon_sym_RPAREN] = ACTIONS(4217), - [anon_sym_LT] = ACTIONS(4215), - [anon_sym_GT] = ACTIONS(4215), - [anon_sym_where] = ACTIONS(4215), - [anon_sym_DOT] = ACTIONS(4215), - [anon_sym_SEMI] = ACTIONS(4217), - [anon_sym_get] = ACTIONS(4215), - [anon_sym_set] = ACTIONS(4215), - [anon_sym_STAR] = ACTIONS(4215), - [anon_sym_DASH_GT] = ACTIONS(4217), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4215), - [anon_sym_while] = ACTIONS(4215), - [anon_sym_DOT_DOT] = ACTIONS(4217), - [anon_sym_QMARK_COLON] = ACTIONS(4217), - [anon_sym_AMP_AMP] = ACTIONS(4217), - [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4215), - [anon_sym_COLON_COLON] = ACTIONS(4217), - [anon_sym_PLUS_EQ] = ACTIONS(4217), - [anon_sym_DASH_EQ] = ACTIONS(4217), - [anon_sym_STAR_EQ] = ACTIONS(4217), - [anon_sym_SLASH_EQ] = ACTIONS(4217), - [anon_sym_PERCENT_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ] = ACTIONS(4215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ] = ACTIONS(4215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), - [anon_sym_LT_EQ] = ACTIONS(4217), - [anon_sym_GT_EQ] = ACTIONS(4217), - [anon_sym_BANGin] = ACTIONS(4217), - [anon_sym_is] = ACTIONS(4215), - [anon_sym_BANGis] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4215), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_SLASH] = ACTIONS(4215), - [anon_sym_PERCENT] = ACTIONS(4215), - [anon_sym_as_QMARK] = ACTIONS(4217), - [anon_sym_PLUS_PLUS] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4217), - [anon_sym_suspend] = ACTIONS(4215), - [anon_sym_sealed] = ACTIONS(4215), - [anon_sym_annotation] = ACTIONS(4215), - [anon_sym_data] = ACTIONS(4215), - [anon_sym_inner] = ACTIONS(4215), - [anon_sym_value] = ACTIONS(4215), - [anon_sym_override] = ACTIONS(4215), - [anon_sym_lateinit] = ACTIONS(4215), - [anon_sym_public] = ACTIONS(4215), - [anon_sym_private] = ACTIONS(4215), - [anon_sym_internal] = ACTIONS(4215), - [anon_sym_protected] = ACTIONS(4215), - [anon_sym_tailrec] = ACTIONS(4215), - [anon_sym_operator] = ACTIONS(4215), - [anon_sym_infix] = ACTIONS(4215), - [anon_sym_inline] = ACTIONS(4215), - [anon_sym_external] = ACTIONS(4215), - [sym_property_modifier] = ACTIONS(4215), - [anon_sym_abstract] = ACTIONS(4215), - [anon_sym_final] = ACTIONS(4215), - [anon_sym_open] = ACTIONS(4215), - [anon_sym_vararg] = ACTIONS(4215), - [anon_sym_noinline] = ACTIONS(4215), - [anon_sym_crossinline] = ACTIONS(4215), - [anon_sym_expect] = ACTIONS(4215), - [anon_sym_actual] = ACTIONS(4215), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4217), - [sym_safe_nav] = ACTIONS(4217), + [3326] = { + [sym__alpha_identifier] = ACTIONS(4740), + [anon_sym_AT] = ACTIONS(4742), + [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_RBRACK] = ACTIONS(4742), + [anon_sym_as] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(4740), + [anon_sym_LBRACE] = ACTIONS(4742), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_COMMA] = ACTIONS(4742), + [anon_sym_RPAREN] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4740), + [anon_sym_GT] = ACTIONS(4740), + [anon_sym_where] = ACTIONS(4740), + [anon_sym_DOT] = ACTIONS(4740), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_get] = ACTIONS(4740), + [anon_sym_set] = ACTIONS(4740), + [anon_sym_STAR] = ACTIONS(4740), + [anon_sym_DASH_GT] = ACTIONS(4742), + [sym_label] = ACTIONS(4742), + [anon_sym_in] = ACTIONS(4740), + [anon_sym_while] = ACTIONS(4740), + [anon_sym_DOT_DOT] = ACTIONS(4742), + [anon_sym_QMARK_COLON] = ACTIONS(4742), + [anon_sym_AMP_AMP] = ACTIONS(4742), + [anon_sym_PIPE_PIPE] = ACTIONS(4742), + [anon_sym_else] = ACTIONS(4740), + [anon_sym_COLON_COLON] = ACTIONS(4742), + [anon_sym_PLUS_EQ] = ACTIONS(4742), + [anon_sym_DASH_EQ] = ACTIONS(4742), + [anon_sym_STAR_EQ] = ACTIONS(4742), + [anon_sym_SLASH_EQ] = ACTIONS(4742), + [anon_sym_PERCENT_EQ] = ACTIONS(4742), + [anon_sym_BANG_EQ] = ACTIONS(4740), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), + [anon_sym_EQ_EQ] = ACTIONS(4740), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), + [anon_sym_LT_EQ] = ACTIONS(4742), + [anon_sym_GT_EQ] = ACTIONS(4742), + [anon_sym_BANGin] = ACTIONS(4742), + [anon_sym_is] = ACTIONS(4740), + [anon_sym_BANGis] = ACTIONS(4742), + [anon_sym_PLUS] = ACTIONS(4740), + [anon_sym_DASH] = ACTIONS(4740), + [anon_sym_SLASH] = ACTIONS(4740), + [anon_sym_PERCENT] = ACTIONS(4740), + [anon_sym_as_QMARK] = ACTIONS(4742), + [anon_sym_PLUS_PLUS] = ACTIONS(4742), + [anon_sym_DASH_DASH] = ACTIONS(4742), + [anon_sym_BANG_BANG] = ACTIONS(4742), + [anon_sym_suspend] = ACTIONS(4740), + [anon_sym_sealed] = ACTIONS(4740), + [anon_sym_annotation] = ACTIONS(4740), + [anon_sym_data] = ACTIONS(4740), + [anon_sym_inner] = ACTIONS(4740), + [anon_sym_value] = ACTIONS(4740), + [anon_sym_override] = ACTIONS(4740), + [anon_sym_lateinit] = ACTIONS(4740), + [anon_sym_public] = ACTIONS(4740), + [anon_sym_private] = ACTIONS(4740), + [anon_sym_internal] = ACTIONS(4740), + [anon_sym_protected] = ACTIONS(4740), + [anon_sym_tailrec] = ACTIONS(4740), + [anon_sym_operator] = ACTIONS(4740), + [anon_sym_infix] = ACTIONS(4740), + [anon_sym_inline] = ACTIONS(4740), + [anon_sym_external] = ACTIONS(4740), + [sym_property_modifier] = ACTIONS(4740), + [anon_sym_abstract] = ACTIONS(4740), + [anon_sym_final] = ACTIONS(4740), + [anon_sym_open] = ACTIONS(4740), + [anon_sym_vararg] = ACTIONS(4740), + [anon_sym_noinline] = ACTIONS(4740), + [anon_sym_crossinline] = ACTIONS(4740), + [anon_sym_expect] = ACTIONS(4740), + [anon_sym_actual] = ACTIONS(4740), + [sym_line_comment] = ACTIONS(3), + [anon_sym_L] = ACTIONS(6802), + [sym__backtick_identifier] = ACTIONS(4742), + [sym_safe_nav] = ACTIONS(4742), [sym_multiline_comment] = ACTIONS(3), }, - [3337] = { - [sym__alpha_identifier] = ACTIONS(5020), - [anon_sym_AT] = ACTIONS(5022), - [anon_sym_LBRACK] = ACTIONS(5022), - [anon_sym_as] = ACTIONS(5020), - [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_fun] = ACTIONS(5020), - [anon_sym_LBRACE] = ACTIONS(5022), - [anon_sym_RBRACE] = ACTIONS(5022), - [anon_sym_LPAREN] = ACTIONS(5022), - [anon_sym_COMMA] = ACTIONS(5022), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_where] = ACTIONS(5020), - [anon_sym_object] = ACTIONS(5020), - [anon_sym_DOT] = ACTIONS(5020), - [anon_sym_SEMI] = ACTIONS(5022), - [anon_sym_get] = ACTIONS(5020), - [anon_sym_set] = ACTIONS(5020), - [anon_sym_this] = ACTIONS(5020), - [anon_sym_super] = ACTIONS(5020), - [anon_sym_STAR] = ACTIONS(5020), - [sym_label] = ACTIONS(5020), - [anon_sym_in] = ACTIONS(5020), - [anon_sym_DOT_DOT] = ACTIONS(5022), - [anon_sym_QMARK_COLON] = ACTIONS(5022), - [anon_sym_AMP_AMP] = ACTIONS(5022), - [anon_sym_PIPE_PIPE] = ACTIONS(5022), - [anon_sym_null] = ACTIONS(5020), - [anon_sym_if] = ACTIONS(5020), - [anon_sym_else] = ACTIONS(5020), - [anon_sym_when] = ACTIONS(5020), - [anon_sym_try] = ACTIONS(5020), - [anon_sym_throw] = ACTIONS(5020), - [anon_sym_return] = ACTIONS(5020), - [anon_sym_continue] = ACTIONS(5020), - [anon_sym_break] = ACTIONS(5020), - [anon_sym_COLON_COLON] = ACTIONS(5022), - [anon_sym_PLUS_EQ] = ACTIONS(5022), - [anon_sym_DASH_EQ] = ACTIONS(5022), - [anon_sym_STAR_EQ] = ACTIONS(5022), - [anon_sym_SLASH_EQ] = ACTIONS(5022), - [anon_sym_PERCENT_EQ] = ACTIONS(5022), - [anon_sym_BANG_EQ] = ACTIONS(5020), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5022), - [anon_sym_EQ_EQ] = ACTIONS(5020), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5022), - [anon_sym_LT_EQ] = ACTIONS(5022), - [anon_sym_GT_EQ] = ACTIONS(5022), - [anon_sym_BANGin] = ACTIONS(5022), - [anon_sym_is] = ACTIONS(5020), - [anon_sym_BANGis] = ACTIONS(5022), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_PERCENT] = ACTIONS(5020), - [anon_sym_as_QMARK] = ACTIONS(5022), - [anon_sym_PLUS_PLUS] = ACTIONS(5022), - [anon_sym_DASH_DASH] = ACTIONS(5022), - [anon_sym_BANG] = ACTIONS(5020), - [anon_sym_BANG_BANG] = ACTIONS(5022), - [anon_sym_data] = ACTIONS(5020), - [anon_sym_inner] = ACTIONS(5020), - [anon_sym_value] = ACTIONS(5020), - [anon_sym_expect] = ACTIONS(5020), - [anon_sym_actual] = ACTIONS(5020), + [3327] = { + [sym_enum_class_body] = STATE(3406), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_RBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [anon_sym_DASH_GT] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5022), - [anon_sym_continue_AT] = ACTIONS(5022), - [anon_sym_break_AT] = ACTIONS(5022), - [anon_sym_this_AT] = ACTIONS(5022), - [anon_sym_super_AT] = ACTIONS(5022), - [sym_real_literal] = ACTIONS(5022), - [sym_integer_literal] = ACTIONS(5020), - [sym_hex_literal] = ACTIONS(5022), - [sym_bin_literal] = ACTIONS(5022), - [anon_sym_true] = ACTIONS(5020), - [anon_sym_false] = ACTIONS(5020), - [anon_sym_SQUOTE] = ACTIONS(5022), - [sym__backtick_identifier] = ACTIONS(5022), - [sym__automatic_semicolon] = ACTIONS(5022), - [sym_safe_nav] = ACTIONS(5022), + [sym__backtick_identifier] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + }, + [3328] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3127), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3127), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3329] = { + [sym_class_body] = STATE(3543), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_RBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [anon_sym_DASH_GT] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + }, + [3330] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3096), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3331] = { + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_RBRACK] = ACTIONS(4712), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_RPAREN] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [anon_sym_DASH_GT] = ACTIONS(4712), + [sym_label] = ACTIONS(4712), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_while] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_suspend] = ACTIONS(4710), + [anon_sym_sealed] = ACTIONS(4710), + [anon_sym_annotation] = ACTIONS(4710), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_lateinit] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4710), + [anon_sym_internal] = ACTIONS(4710), + [anon_sym_protected] = ACTIONS(4710), + [anon_sym_tailrec] = ACTIONS(4710), + [anon_sym_operator] = ACTIONS(4710), + [anon_sym_infix] = ACTIONS(4710), + [anon_sym_inline] = ACTIONS(4710), + [anon_sym_external] = ACTIONS(4710), + [sym_property_modifier] = ACTIONS(4710), + [anon_sym_abstract] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_open] = ACTIONS(4710), + [anon_sym_vararg] = ACTIONS(4710), + [anon_sym_noinline] = ACTIONS(4710), + [anon_sym_crossinline] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [anon_sym_AT2] = ACTIONS(6804), + [sym__backtick_identifier] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), + [sym_multiline_comment] = ACTIONS(3), + }, + [3332] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_by] = ACTIONS(4004), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4004), + [sym__quest] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + }, + [3333] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3119), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3119), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3334] = { + [sym__alpha_identifier] = ACTIONS(4750), + [anon_sym_AT] = ACTIONS(4752), + [anon_sym_COLON] = ACTIONS(4750), + [anon_sym_LBRACK] = ACTIONS(4752), + [anon_sym_RBRACK] = ACTIONS(4752), + [anon_sym_as] = ACTIONS(4750), + [anon_sym_EQ] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4752), + [anon_sym_RBRACE] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4752), + [anon_sym_COMMA] = ACTIONS(4752), + [anon_sym_RPAREN] = ACTIONS(4752), + [anon_sym_LT] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4750), + [anon_sym_where] = ACTIONS(4750), + [anon_sym_DOT] = ACTIONS(4750), + [anon_sym_SEMI] = ACTIONS(4752), + [anon_sym_get] = ACTIONS(4750), + [anon_sym_set] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4750), + [anon_sym_DASH_GT] = ACTIONS(4752), + [sym_label] = ACTIONS(4752), + [anon_sym_in] = ACTIONS(4750), + [anon_sym_while] = ACTIONS(4750), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4752), + [anon_sym_PIPE_PIPE] = ACTIONS(4752), + [anon_sym_else] = ACTIONS(4750), + [anon_sym_COLON_COLON] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4752), + [anon_sym_DASH_EQ] = ACTIONS(4752), + [anon_sym_STAR_EQ] = ACTIONS(4752), + [anon_sym_SLASH_EQ] = ACTIONS(4752), + [anon_sym_PERCENT_EQ] = ACTIONS(4752), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4752), + [anon_sym_BANGin] = ACTIONS(4752), + [anon_sym_is] = ACTIONS(4750), + [anon_sym_BANGis] = ACTIONS(4752), + [anon_sym_PLUS] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_SLASH] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4750), + [anon_sym_as_QMARK] = ACTIONS(4752), + [anon_sym_PLUS_PLUS] = ACTIONS(4752), + [anon_sym_DASH_DASH] = ACTIONS(4752), + [anon_sym_BANG_BANG] = ACTIONS(4752), + [anon_sym_suspend] = ACTIONS(4750), + [anon_sym_sealed] = ACTIONS(4750), + [anon_sym_annotation] = ACTIONS(4750), + [anon_sym_data] = ACTIONS(4750), + [anon_sym_inner] = ACTIONS(4750), + [anon_sym_value] = ACTIONS(4750), + [anon_sym_override] = ACTIONS(4750), + [anon_sym_lateinit] = ACTIONS(4750), + [anon_sym_public] = ACTIONS(4750), + [anon_sym_private] = ACTIONS(4750), + [anon_sym_internal] = ACTIONS(4750), + [anon_sym_protected] = ACTIONS(4750), + [anon_sym_tailrec] = ACTIONS(4750), + [anon_sym_operator] = ACTIONS(4750), + [anon_sym_infix] = ACTIONS(4750), + [anon_sym_inline] = ACTIONS(4750), + [anon_sym_external] = ACTIONS(4750), + [sym_property_modifier] = ACTIONS(4750), + [anon_sym_abstract] = ACTIONS(4750), + [anon_sym_final] = ACTIONS(4750), + [anon_sym_open] = ACTIONS(4750), + [anon_sym_vararg] = ACTIONS(4750), + [anon_sym_noinline] = ACTIONS(4750), + [anon_sym_crossinline] = ACTIONS(4750), + [anon_sym_expect] = ACTIONS(4750), + [anon_sym_actual] = ACTIONS(4750), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4752), + [sym_safe_nav] = ACTIONS(4752), + [sym_multiline_comment] = ACTIONS(3), + }, + [3335] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3138), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3138), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3336] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3142), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3337] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3146), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5022), }, [3338] = { - [sym_function_body] = STATE(3584), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_RBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_RPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_DASH_GT] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_while] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3162), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3339] = { - [sym__alpha_identifier] = ACTIONS(5111), - [anon_sym_AT] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_as] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_fun] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5113), - [anon_sym_COMMA] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5111), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_where] = ACTIONS(5111), - [anon_sym_object] = ACTIONS(5111), - [anon_sym_DOT] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5113), - [anon_sym_get] = ACTIONS(5111), - [anon_sym_set] = ACTIONS(5111), - [anon_sym_this] = ACTIONS(5111), - [anon_sym_super] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [sym_label] = ACTIONS(5111), - [anon_sym_in] = ACTIONS(5111), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_QMARK_COLON] = ACTIONS(5113), - [anon_sym_AMP_AMP] = ACTIONS(5113), - [anon_sym_PIPE_PIPE] = ACTIONS(5113), - [anon_sym_null] = ACTIONS(5111), - [anon_sym_if] = ACTIONS(5111), - [anon_sym_else] = ACTIONS(5111), - [anon_sym_when] = ACTIONS(5111), - [anon_sym_try] = ACTIONS(5111), - [anon_sym_throw] = ACTIONS(5111), - [anon_sym_return] = ACTIONS(5111), - [anon_sym_continue] = ACTIONS(5111), - [anon_sym_break] = ACTIONS(5111), - [anon_sym_COLON_COLON] = ACTIONS(5113), - [anon_sym_PLUS_EQ] = ACTIONS(5113), - [anon_sym_DASH_EQ] = ACTIONS(5113), - [anon_sym_STAR_EQ] = ACTIONS(5113), - [anon_sym_SLASH_EQ] = ACTIONS(5113), - [anon_sym_PERCENT_EQ] = ACTIONS(5113), - [anon_sym_BANG_EQ] = ACTIONS(5111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5113), - [anon_sym_EQ_EQ] = ACTIONS(5111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5113), - [anon_sym_LT_EQ] = ACTIONS(5113), - [anon_sym_GT_EQ] = ACTIONS(5113), - [anon_sym_BANGin] = ACTIONS(5113), - [anon_sym_is] = ACTIONS(5111), - [anon_sym_BANGis] = ACTIONS(5113), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5111), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_as_QMARK] = ACTIONS(5113), - [anon_sym_PLUS_PLUS] = ACTIONS(5113), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_BANG] = ACTIONS(5111), - [anon_sym_BANG_BANG] = ACTIONS(5113), - [anon_sym_data] = ACTIONS(5111), - [anon_sym_inner] = ACTIONS(5111), - [anon_sym_value] = ACTIONS(5111), - [anon_sym_expect] = ACTIONS(5111), - [anon_sym_actual] = ACTIONS(5111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5113), - [anon_sym_continue_AT] = ACTIONS(5113), - [anon_sym_break_AT] = ACTIONS(5113), - [anon_sym_this_AT] = ACTIONS(5113), - [anon_sym_super_AT] = ACTIONS(5113), - [sym_real_literal] = ACTIONS(5113), - [sym_integer_literal] = ACTIONS(5111), - [sym_hex_literal] = ACTIONS(5113), - [sym_bin_literal] = ACTIONS(5113), - [anon_sym_true] = ACTIONS(5111), - [anon_sym_false] = ACTIONS(5111), - [anon_sym_SQUOTE] = ACTIONS(5113), - [sym__backtick_identifier] = ACTIONS(5113), - [sym__automatic_semicolon] = ACTIONS(5113), - [sym_safe_nav] = ACTIONS(5113), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5113), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3195), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3195), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [3340] = { - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_fun] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4471), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(4469), - [anon_sym_object] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_super] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [sym_label] = ACTIONS(4469), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_null] = ACTIONS(4469), - [anon_sym_if] = ACTIONS(4469), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_when] = ACTIONS(4469), - [anon_sym_try] = ACTIONS(4469), - [anon_sym_throw] = ACTIONS(4469), - [anon_sym_return] = ACTIONS(4469), - [anon_sym_continue] = ACTIONS(4469), - [anon_sym_break] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_value] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4471), - [anon_sym_continue_AT] = ACTIONS(4471), - [anon_sym_break_AT] = ACTIONS(4471), - [anon_sym_this_AT] = ACTIONS(4471), - [anon_sym_super_AT] = ACTIONS(4471), - [sym_real_literal] = ACTIONS(4471), - [sym_integer_literal] = ACTIONS(4469), - [sym_hex_literal] = ACTIONS(4471), - [sym_bin_literal] = ACTIONS(4471), - [anon_sym_true] = ACTIONS(4469), - [anon_sym_false] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4471), - [sym__backtick_identifier] = ACTIONS(4471), - [sym__automatic_semicolon] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4471), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_DASH_GT] = ACTIONS(3188), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [3341] = { - [sym_function_body] = STATE(3582), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_RBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_RPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [anon_sym_DASH_GT] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [sym_class_body] = STATE(3483), + [sym__alpha_identifier] = ACTIONS(4547), + [anon_sym_AT] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(4549), + [anon_sym_RBRACK] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4549), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_RPAREN] = ACTIONS(4549), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_where] = ACTIONS(4547), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_SEMI] = ACTIONS(4549), + [anon_sym_get] = ACTIONS(4547), + [anon_sym_set] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4547), + [anon_sym_DASH_GT] = ACTIONS(4549), + [sym_label] = ACTIONS(4549), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_while] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_else] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ] = ACTIONS(4547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_EQ] = ACTIONS(4549), + [anon_sym_BANGin] = ACTIONS(4549), + [anon_sym_is] = ACTIONS(4547), + [anon_sym_BANGis] = ACTIONS(4549), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_as_QMARK] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_BANG_BANG] = ACTIONS(4549), + [anon_sym_suspend] = ACTIONS(4547), + [anon_sym_sealed] = ACTIONS(4547), + [anon_sym_annotation] = ACTIONS(4547), + [anon_sym_data] = ACTIONS(4547), + [anon_sym_inner] = ACTIONS(4547), + [anon_sym_value] = ACTIONS(4547), + [anon_sym_override] = ACTIONS(4547), + [anon_sym_lateinit] = ACTIONS(4547), + [anon_sym_public] = ACTIONS(4547), + [anon_sym_private] = ACTIONS(4547), + [anon_sym_internal] = ACTIONS(4547), + [anon_sym_protected] = ACTIONS(4547), + [anon_sym_tailrec] = ACTIONS(4547), + [anon_sym_operator] = ACTIONS(4547), + [anon_sym_infix] = ACTIONS(4547), + [anon_sym_inline] = ACTIONS(4547), + [anon_sym_external] = ACTIONS(4547), + [sym_property_modifier] = ACTIONS(4547), + [anon_sym_abstract] = ACTIONS(4547), + [anon_sym_final] = ACTIONS(4547), + [anon_sym_open] = ACTIONS(4547), + [anon_sym_vararg] = ACTIONS(4547), + [anon_sym_noinline] = ACTIONS(4547), + [anon_sym_crossinline] = ACTIONS(4547), + [anon_sym_expect] = ACTIONS(4547), + [anon_sym_actual] = ACTIONS(4547), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4549), + [sym_safe_nav] = ACTIONS(4549), [sym_multiline_comment] = ACTIONS(3), }, [3342] = { - [aux_sym_type_constraints_repeat1] = STATE(3342), - [sym__alpha_identifier] = ACTIONS(4495), - [anon_sym_AT] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_RBRACK] = ACTIONS(4497), - [anon_sym_as] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4495), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_COMMA] = ACTIONS(6805), - [anon_sym_RPAREN] = ACTIONS(4497), - [anon_sym_by] = ACTIONS(4495), - [anon_sym_LT] = ACTIONS(4495), - [anon_sym_GT] = ACTIONS(4495), - [anon_sym_where] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4495), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_get] = ACTIONS(4495), - [anon_sym_set] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [anon_sym_DASH_GT] = ACTIONS(4497), - [sym_label] = ACTIONS(4497), - [anon_sym_in] = ACTIONS(4495), - [anon_sym_while] = ACTIONS(4495), - [anon_sym_DOT_DOT] = ACTIONS(4497), - [anon_sym_QMARK_COLON] = ACTIONS(4497), - [anon_sym_AMP_AMP] = ACTIONS(4497), - [anon_sym_PIPE_PIPE] = ACTIONS(4497), - [anon_sym_else] = ACTIONS(4495), - [anon_sym_COLON_COLON] = ACTIONS(4497), - [anon_sym_PLUS_EQ] = ACTIONS(4497), - [anon_sym_DASH_EQ] = ACTIONS(4497), - [anon_sym_STAR_EQ] = ACTIONS(4497), - [anon_sym_SLASH_EQ] = ACTIONS(4497), - [anon_sym_PERCENT_EQ] = ACTIONS(4497), - [anon_sym_BANG_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4497), - [anon_sym_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4497), - [anon_sym_LT_EQ] = ACTIONS(4497), - [anon_sym_GT_EQ] = ACTIONS(4497), - [anon_sym_BANGin] = ACTIONS(4497), - [anon_sym_is] = ACTIONS(4495), - [anon_sym_BANGis] = ACTIONS(4497), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_SLASH] = ACTIONS(4495), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4497), - [anon_sym_PLUS_PLUS] = ACTIONS(4497), - [anon_sym_DASH_DASH] = ACTIONS(4497), - [anon_sym_BANG_BANG] = ACTIONS(4497), - [anon_sym_suspend] = ACTIONS(4495), - [anon_sym_sealed] = ACTIONS(4495), - [anon_sym_annotation] = ACTIONS(4495), - [anon_sym_data] = ACTIONS(4495), - [anon_sym_inner] = ACTIONS(4495), - [anon_sym_value] = ACTIONS(4495), - [anon_sym_override] = ACTIONS(4495), - [anon_sym_lateinit] = ACTIONS(4495), - [anon_sym_public] = ACTIONS(4495), - [anon_sym_private] = ACTIONS(4495), - [anon_sym_internal] = ACTIONS(4495), - [anon_sym_protected] = ACTIONS(4495), - [anon_sym_tailrec] = ACTIONS(4495), - [anon_sym_operator] = ACTIONS(4495), - [anon_sym_infix] = ACTIONS(4495), - [anon_sym_inline] = ACTIONS(4495), - [anon_sym_external] = ACTIONS(4495), - [sym_property_modifier] = ACTIONS(4495), - [anon_sym_abstract] = ACTIONS(4495), - [anon_sym_final] = ACTIONS(4495), - [anon_sym_open] = ACTIONS(4495), - [anon_sym_vararg] = ACTIONS(4495), - [anon_sym_noinline] = ACTIONS(4495), - [anon_sym_crossinline] = ACTIONS(4495), - [anon_sym_expect] = ACTIONS(4495), - [anon_sym_actual] = ACTIONS(4495), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4497), - [sym_safe_nav] = ACTIONS(4497), + [sym_class_body] = STATE(3565), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, [3343] = { - [aux_sym_nullable_type_repeat1] = STATE(3266), - [sym__alpha_identifier] = ACTIONS(4250), - [anon_sym_AT] = ACTIONS(4252), - [anon_sym_LBRACK] = ACTIONS(4252), - [anon_sym_EQ] = ACTIONS(4252), - [anon_sym_fun] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4252), - [anon_sym_RBRACE] = ACTIONS(4252), - [anon_sym_LPAREN] = ACTIONS(4252), - [anon_sym_COMMA] = ACTIONS(4252), - [anon_sym_by] = ACTIONS(4250), - [anon_sym_where] = ACTIONS(4250), - [anon_sym_object] = ACTIONS(4250), - [anon_sym_SEMI] = ACTIONS(4252), - [anon_sym_get] = ACTIONS(4250), - [anon_sym_set] = ACTIONS(4250), - [anon_sym_this] = ACTIONS(4250), - [anon_sym_super] = ACTIONS(4250), - [sym__quest] = ACTIONS(6776), - [anon_sym_STAR] = ACTIONS(4252), - [sym_label] = ACTIONS(4250), - [anon_sym_in] = ACTIONS(4250), - [anon_sym_null] = ACTIONS(4250), - [anon_sym_if] = ACTIONS(4250), - [anon_sym_else] = ACTIONS(4250), - [anon_sym_when] = ACTIONS(4250), - [anon_sym_try] = ACTIONS(4250), - [anon_sym_throw] = ACTIONS(4250), - [anon_sym_return] = ACTIONS(4250), - [anon_sym_continue] = ACTIONS(4250), - [anon_sym_break] = ACTIONS(4250), - [anon_sym_COLON_COLON] = ACTIONS(4252), - [anon_sym_BANGin] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4250), - [anon_sym_BANGis] = ACTIONS(4252), - [anon_sym_PLUS] = ACTIONS(4250), - [anon_sym_DASH] = ACTIONS(4250), - [anon_sym_PLUS_PLUS] = ACTIONS(4252), - [anon_sym_DASH_DASH] = ACTIONS(4252), - [anon_sym_BANG] = ACTIONS(4250), - [anon_sym_suspend] = ACTIONS(4250), - [anon_sym_sealed] = ACTIONS(4250), - [anon_sym_annotation] = ACTIONS(4250), - [anon_sym_data] = ACTIONS(4250), - [anon_sym_inner] = ACTIONS(4250), - [anon_sym_value] = ACTIONS(4250), - [anon_sym_override] = ACTIONS(4250), - [anon_sym_lateinit] = ACTIONS(4250), - [anon_sym_public] = ACTIONS(4250), - [anon_sym_private] = ACTIONS(4250), - [anon_sym_internal] = ACTIONS(4250), - [anon_sym_protected] = ACTIONS(4250), - [anon_sym_tailrec] = ACTIONS(4250), - [anon_sym_operator] = ACTIONS(4250), - [anon_sym_infix] = ACTIONS(4250), - [anon_sym_inline] = ACTIONS(4250), - [anon_sym_external] = ACTIONS(4250), - [sym_property_modifier] = ACTIONS(4250), - [anon_sym_abstract] = ACTIONS(4250), - [anon_sym_final] = ACTIONS(4250), - [anon_sym_open] = ACTIONS(4250), - [anon_sym_vararg] = ACTIONS(4250), - [anon_sym_noinline] = ACTIONS(4250), - [anon_sym_crossinline] = ACTIONS(4250), - [anon_sym_expect] = ACTIONS(4250), - [anon_sym_actual] = ACTIONS(4250), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4252), - [anon_sym_continue_AT] = ACTIONS(4252), - [anon_sym_break_AT] = ACTIONS(4252), - [anon_sym_this_AT] = ACTIONS(4252), - [anon_sym_super_AT] = ACTIONS(4252), - [sym_real_literal] = ACTIONS(4252), - [sym_integer_literal] = ACTIONS(4250), - [sym_hex_literal] = ACTIONS(4252), - [sym_bin_literal] = ACTIONS(4252), - [anon_sym_true] = ACTIONS(4250), - [anon_sym_false] = ACTIONS(4250), - [anon_sym_SQUOTE] = ACTIONS(4252), - [sym__backtick_identifier] = ACTIONS(4252), - [sym__automatic_semicolon] = ACTIONS(4252), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4252), + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_COLON] = ACTIONS(4754), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_RBRACK] = ACTIONS(4756), + [anon_sym_as] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_RPAREN] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_where] = ACTIONS(4754), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_get] = ACTIONS(4754), + [anon_sym_set] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [anon_sym_DASH_GT] = ACTIONS(4756), + [sym_label] = ACTIONS(4756), + [anon_sym_in] = ACTIONS(4754), + [anon_sym_while] = ACTIONS(4754), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_QMARK_COLON] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4756), + [anon_sym_SLASH_EQ] = ACTIONS(4756), + [anon_sym_PERCENT_EQ] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4756), + [anon_sym_BANGin] = ACTIONS(4756), + [anon_sym_is] = ACTIONS(4754), + [anon_sym_BANGis] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4754), + [anon_sym_as_QMARK] = ACTIONS(4756), + [anon_sym_PLUS_PLUS] = ACTIONS(4756), + [anon_sym_DASH_DASH] = ACTIONS(4756), + [anon_sym_BANG_BANG] = ACTIONS(4756), + [anon_sym_suspend] = ACTIONS(4754), + [anon_sym_sealed] = ACTIONS(4754), + [anon_sym_annotation] = ACTIONS(4754), + [anon_sym_data] = ACTIONS(4754), + [anon_sym_inner] = ACTIONS(4754), + [anon_sym_value] = ACTIONS(4754), + [anon_sym_override] = ACTIONS(4754), + [anon_sym_lateinit] = ACTIONS(4754), + [anon_sym_public] = ACTIONS(4754), + [anon_sym_private] = ACTIONS(4754), + [anon_sym_internal] = ACTIONS(4754), + [anon_sym_protected] = ACTIONS(4754), + [anon_sym_tailrec] = ACTIONS(4754), + [anon_sym_operator] = ACTIONS(4754), + [anon_sym_infix] = ACTIONS(4754), + [anon_sym_inline] = ACTIONS(4754), + [anon_sym_external] = ACTIONS(4754), + [sym_property_modifier] = ACTIONS(4754), + [anon_sym_abstract] = ACTIONS(4754), + [anon_sym_final] = ACTIONS(4754), + [anon_sym_open] = ACTIONS(4754), + [anon_sym_vararg] = ACTIONS(4754), + [anon_sym_noinline] = ACTIONS(4754), + [anon_sym_crossinline] = ACTIONS(4754), + [anon_sym_expect] = ACTIONS(4754), + [anon_sym_actual] = ACTIONS(4754), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4756), + [sym_safe_nav] = ACTIONS(4756), + [sym_multiline_comment] = ACTIONS(3), }, [3344] = { - [sym__alpha_identifier] = ACTIONS(5061), - [anon_sym_AT] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_as] = ACTIONS(5061), - [anon_sym_EQ] = ACTIONS(5061), - [anon_sym_fun] = ACTIONS(5061), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_RBRACE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_where] = ACTIONS(5061), - [anon_sym_object] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_get] = ACTIONS(5061), - [anon_sym_set] = ACTIONS(5061), - [anon_sym_this] = ACTIONS(5061), - [anon_sym_super] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [sym_label] = ACTIONS(5061), - [anon_sym_in] = ACTIONS(5061), - [anon_sym_DOT_DOT] = ACTIONS(5063), - [anon_sym_QMARK_COLON] = ACTIONS(5063), - [anon_sym_AMP_AMP] = ACTIONS(5063), - [anon_sym_PIPE_PIPE] = ACTIONS(5063), - [anon_sym_null] = ACTIONS(5061), - [anon_sym_if] = ACTIONS(5061), - [anon_sym_else] = ACTIONS(5061), - [anon_sym_when] = ACTIONS(5061), - [anon_sym_try] = ACTIONS(5061), - [anon_sym_throw] = ACTIONS(5061), - [anon_sym_return] = ACTIONS(5061), - [anon_sym_continue] = ACTIONS(5061), - [anon_sym_break] = ACTIONS(5061), - [anon_sym_COLON_COLON] = ACTIONS(5063), - [anon_sym_PLUS_EQ] = ACTIONS(5063), - [anon_sym_DASH_EQ] = ACTIONS(5063), - [anon_sym_STAR_EQ] = ACTIONS(5063), - [anon_sym_SLASH_EQ] = ACTIONS(5063), - [anon_sym_PERCENT_EQ] = ACTIONS(5063), - [anon_sym_BANG_EQ] = ACTIONS(5061), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5063), - [anon_sym_EQ_EQ] = ACTIONS(5061), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5063), - [anon_sym_LT_EQ] = ACTIONS(5063), - [anon_sym_GT_EQ] = ACTIONS(5063), - [anon_sym_BANGin] = ACTIONS(5063), - [anon_sym_is] = ACTIONS(5061), - [anon_sym_BANGis] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_PERCENT] = ACTIONS(5061), - [anon_sym_as_QMARK] = ACTIONS(5063), - [anon_sym_PLUS_PLUS] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5063), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_BANG_BANG] = ACTIONS(5063), - [anon_sym_data] = ACTIONS(5061), - [anon_sym_inner] = ACTIONS(5061), - [anon_sym_value] = ACTIONS(5061), - [anon_sym_expect] = ACTIONS(5061), - [anon_sym_actual] = ACTIONS(5061), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5063), - [anon_sym_continue_AT] = ACTIONS(5063), - [anon_sym_break_AT] = ACTIONS(5063), - [anon_sym_this_AT] = ACTIONS(5063), - [anon_sym_super_AT] = ACTIONS(5063), - [sym_real_literal] = ACTIONS(5063), - [sym_integer_literal] = ACTIONS(5061), - [sym_hex_literal] = ACTIONS(5063), - [sym_bin_literal] = ACTIONS(5063), - [anon_sym_true] = ACTIONS(5061), - [anon_sym_false] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5063), - [sym__backtick_identifier] = ACTIONS(5063), - [sym__automatic_semicolon] = ACTIONS(5063), - [sym_safe_nav] = ACTIONS(5063), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5063), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3158), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [3345] = { - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4425), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), - }, - [3346] = { - [sym__alpha_identifier] = ACTIONS(4297), - [anon_sym_AT] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_RBRACE] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_by] = ACTIONS(4297), - [anon_sym_where] = ACTIONS(4297), - [anon_sym_object] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_get] = ACTIONS(4297), - [anon_sym_set] = ACTIONS(4297), - [anon_sym_this] = ACTIONS(4297), - [anon_sym_super] = ACTIONS(4297), - [anon_sym_AMP] = ACTIONS(6808), - [sym__quest] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4297), - [anon_sym_in] = ACTIONS(4297), - [anon_sym_null] = ACTIONS(4297), - [anon_sym_if] = ACTIONS(4297), - [anon_sym_else] = ACTIONS(4297), - [anon_sym_when] = ACTIONS(4297), - [anon_sym_try] = ACTIONS(4297), - [anon_sym_throw] = ACTIONS(4297), - [anon_sym_return] = ACTIONS(4297), - [anon_sym_continue] = ACTIONS(4297), - [anon_sym_break] = ACTIONS(4297), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym_BANGin] = ACTIONS(4299), - [anon_sym_is] = ACTIONS(4297), - [anon_sym_BANGis] = ACTIONS(4299), - [anon_sym_PLUS] = ACTIONS(4297), - [anon_sym_DASH] = ACTIONS(4297), - [anon_sym_PLUS_PLUS] = ACTIONS(4299), - [anon_sym_DASH_DASH] = ACTIONS(4299), - [anon_sym_BANG] = ACTIONS(4297), - [anon_sym_suspend] = ACTIONS(4297), - [anon_sym_sealed] = ACTIONS(4297), - [anon_sym_annotation] = ACTIONS(4297), - [anon_sym_data] = ACTIONS(4297), - [anon_sym_inner] = ACTIONS(4297), - [anon_sym_value] = ACTIONS(4297), - [anon_sym_override] = ACTIONS(4297), - [anon_sym_lateinit] = ACTIONS(4297), - [anon_sym_public] = ACTIONS(4297), - [anon_sym_private] = ACTIONS(4297), - [anon_sym_internal] = ACTIONS(4297), - [anon_sym_protected] = ACTIONS(4297), - [anon_sym_tailrec] = ACTIONS(4297), - [anon_sym_operator] = ACTIONS(4297), - [anon_sym_infix] = ACTIONS(4297), - [anon_sym_inline] = ACTIONS(4297), - [anon_sym_external] = ACTIONS(4297), - [sym_property_modifier] = ACTIONS(4297), - [anon_sym_abstract] = ACTIONS(4297), - [anon_sym_final] = ACTIONS(4297), - [anon_sym_open] = ACTIONS(4297), - [anon_sym_vararg] = ACTIONS(4297), - [anon_sym_noinline] = ACTIONS(4297), - [anon_sym_crossinline] = ACTIONS(4297), - [anon_sym_expect] = ACTIONS(4297), - [anon_sym_actual] = ACTIONS(4297), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4299), - [anon_sym_continue_AT] = ACTIONS(4299), - [anon_sym_break_AT] = ACTIONS(4299), - [anon_sym_this_AT] = ACTIONS(4299), - [anon_sym_super_AT] = ACTIONS(4299), - [sym_real_literal] = ACTIONS(4299), - [sym_integer_literal] = ACTIONS(4297), - [sym_hex_literal] = ACTIONS(4299), - [sym_bin_literal] = ACTIONS(4299), - [anon_sym_true] = ACTIONS(4297), - [anon_sym_false] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym__backtick_identifier] = ACTIONS(4299), - [sym__automatic_semicolon] = ACTIONS(4299), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4299), - }, - [3347] = { - [sym_function_body] = STATE(3676), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_RBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_COMMA] = ACTIONS(4520), - [anon_sym_RPAREN] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_where] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4518), - [anon_sym_DASH_GT] = ACTIONS(4520), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_while] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_PLUS_EQ] = ACTIONS(4520), - [anon_sym_DASH_EQ] = ACTIONS(4520), - [anon_sym_STAR_EQ] = ACTIONS(4520), - [anon_sym_SLASH_EQ] = ACTIONS(4520), - [anon_sym_PERCENT_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4518), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_suspend] = ACTIONS(4518), - [anon_sym_sealed] = ACTIONS(4518), - [anon_sym_annotation] = ACTIONS(4518), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_override] = ACTIONS(4518), - [anon_sym_lateinit] = ACTIONS(4518), - [anon_sym_public] = ACTIONS(4518), - [anon_sym_private] = ACTIONS(4518), - [anon_sym_internal] = ACTIONS(4518), - [anon_sym_protected] = ACTIONS(4518), - [anon_sym_tailrec] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_infix] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym_external] = ACTIONS(4518), - [sym_property_modifier] = ACTIONS(4518), - [anon_sym_abstract] = ACTIONS(4518), - [anon_sym_final] = ACTIONS(4518), - [anon_sym_open] = ACTIONS(4518), - [anon_sym_vararg] = ACTIONS(4518), - [anon_sym_noinline] = ACTIONS(4518), - [anon_sym_crossinline] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), + [sym_enum_class_body] = STATE(3460), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_RBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_RPAREN] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [anon_sym_DASH_GT] = ACTIONS(4569), + [sym_label] = ACTIONS(4569), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_while] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_suspend] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_annotation] = ACTIONS(4567), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_lateinit] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_tailrec] = ACTIONS(4567), + [anon_sym_operator] = ACTIONS(4567), + [anon_sym_infix] = ACTIONS(4567), + [anon_sym_inline] = ACTIONS(4567), + [anon_sym_external] = ACTIONS(4567), + [sym_property_modifier] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_final] = ACTIONS(4567), + [anon_sym_open] = ACTIONS(4567), + [anon_sym_vararg] = ACTIONS(4567), + [anon_sym_noinline] = ACTIONS(4567), + [anon_sym_crossinline] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), [sym_multiline_comment] = ACTIONS(3), }, - [3348] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), + [3346] = { + [sym_class_body] = STATE(3517), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_RBRACK] = ACTIONS(4357), [anon_sym_as] = ACTIONS(4355), [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(6810), - [anon_sym_COMMA] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_RPAREN] = ACTIONS(4357), [anon_sym_LT] = ACTIONS(4355), [anon_sym_GT] = ACTIONS(4355), [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [anon_sym_DASH_GT] = ACTIONS(4357), + [sym_label] = ACTIONS(4357), [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), + [anon_sym_while] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), [anon_sym_SLASH] = ACTIONS(4355), [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [3349] = { - [sym_function_body] = STATE(3606), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_RBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_RPAREN] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_where] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [anon_sym_DASH_GT] = ACTIONS(4532), - [sym_label] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_while] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4530), - [anon_sym_sealed] = ACTIONS(4530), - [anon_sym_annotation] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_override] = ACTIONS(4530), - [anon_sym_lateinit] = ACTIONS(4530), - [anon_sym_public] = ACTIONS(4530), - [anon_sym_private] = ACTIONS(4530), - [anon_sym_internal] = ACTIONS(4530), - [anon_sym_protected] = ACTIONS(4530), - [anon_sym_tailrec] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_infix] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym_external] = ACTIONS(4530), - [sym_property_modifier] = ACTIONS(4530), - [anon_sym_abstract] = ACTIONS(4530), - [anon_sym_final] = ACTIONS(4530), - [anon_sym_open] = ACTIONS(4530), - [anon_sym_vararg] = ACTIONS(4530), - [anon_sym_noinline] = ACTIONS(4530), - [anon_sym_crossinline] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - }, - [3350] = { - [sym_function_body] = STATE(3502), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_RBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_RPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [anon_sym_DASH_GT] = ACTIONS(4341), - [sym_label] = ACTIONS(4341), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_while] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_PLUS_EQ] = ACTIONS(4341), - [anon_sym_DASH_EQ] = ACTIONS(4341), - [anon_sym_STAR_EQ] = ACTIONS(4341), - [anon_sym_SLASH_EQ] = ACTIONS(4341), - [anon_sym_PERCENT_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4339), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - }, - [3351] = { - [sym__alpha_identifier] = ACTIONS(4502), - [anon_sym_AT] = ACTIONS(4504), - [anon_sym_COLON] = ACTIONS(4502), - [anon_sym_LBRACK] = ACTIONS(4504), - [anon_sym_RBRACK] = ACTIONS(4504), - [anon_sym_as] = ACTIONS(4502), - [anon_sym_EQ] = ACTIONS(4502), - [anon_sym_constructor] = ACTIONS(4502), - [anon_sym_LBRACE] = ACTIONS(4504), - [anon_sym_RBRACE] = ACTIONS(4504), - [anon_sym_LPAREN] = ACTIONS(4504), - [anon_sym_COMMA] = ACTIONS(4504), - [anon_sym_RPAREN] = ACTIONS(4504), - [anon_sym_LT] = ACTIONS(4502), - [anon_sym_GT] = ACTIONS(4502), - [anon_sym_where] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4502), - [anon_sym_SEMI] = ACTIONS(4504), - [anon_sym_get] = ACTIONS(4502), - [anon_sym_set] = ACTIONS(4502), - [anon_sym_STAR] = ACTIONS(4502), - [anon_sym_DASH_GT] = ACTIONS(4504), - [sym_label] = ACTIONS(4504), - [anon_sym_in] = ACTIONS(4502), - [anon_sym_while] = ACTIONS(4502), - [anon_sym_DOT_DOT] = ACTIONS(4504), - [anon_sym_QMARK_COLON] = ACTIONS(4504), - [anon_sym_AMP_AMP] = ACTIONS(4504), - [anon_sym_PIPE_PIPE] = ACTIONS(4504), - [anon_sym_else] = ACTIONS(4502), - [anon_sym_COLON_COLON] = ACTIONS(4504), - [anon_sym_PLUS_EQ] = ACTIONS(4504), - [anon_sym_DASH_EQ] = ACTIONS(4504), - [anon_sym_STAR_EQ] = ACTIONS(4504), - [anon_sym_SLASH_EQ] = ACTIONS(4504), - [anon_sym_PERCENT_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ] = ACTIONS(4502), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ] = ACTIONS(4502), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), - [anon_sym_LT_EQ] = ACTIONS(4504), - [anon_sym_GT_EQ] = ACTIONS(4504), - [anon_sym_BANGin] = ACTIONS(4504), - [anon_sym_is] = ACTIONS(4502), - [anon_sym_BANGis] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4502), - [anon_sym_DASH] = ACTIONS(4502), - [anon_sym_SLASH] = ACTIONS(4502), - [anon_sym_PERCENT] = ACTIONS(4502), - [anon_sym_as_QMARK] = ACTIONS(4504), - [anon_sym_PLUS_PLUS] = ACTIONS(4504), - [anon_sym_DASH_DASH] = ACTIONS(4504), - [anon_sym_BANG_BANG] = ACTIONS(4504), - [anon_sym_suspend] = ACTIONS(4502), - [anon_sym_sealed] = ACTIONS(4502), - [anon_sym_annotation] = ACTIONS(4502), - [anon_sym_data] = ACTIONS(4502), - [anon_sym_inner] = ACTIONS(4502), - [anon_sym_value] = ACTIONS(4502), - [anon_sym_override] = ACTIONS(4502), - [anon_sym_lateinit] = ACTIONS(4502), - [anon_sym_public] = ACTIONS(4502), - [anon_sym_private] = ACTIONS(4502), - [anon_sym_internal] = ACTIONS(4502), - [anon_sym_protected] = ACTIONS(4502), - [anon_sym_tailrec] = ACTIONS(4502), - [anon_sym_operator] = ACTIONS(4502), - [anon_sym_infix] = ACTIONS(4502), - [anon_sym_inline] = ACTIONS(4502), - [anon_sym_external] = ACTIONS(4502), - [sym_property_modifier] = ACTIONS(4502), - [anon_sym_abstract] = ACTIONS(4502), - [anon_sym_final] = ACTIONS(4502), - [anon_sym_open] = ACTIONS(4502), - [anon_sym_vararg] = ACTIONS(4502), - [anon_sym_noinline] = ACTIONS(4502), - [anon_sym_crossinline] = ACTIONS(4502), - [anon_sym_expect] = ACTIONS(4502), - [anon_sym_actual] = ACTIONS(4502), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4504), - [sym_safe_nav] = ACTIONS(4504), + [sym__backtick_identifier] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), [sym_multiline_comment] = ACTIONS(3), }, - [3352] = { - [aux_sym_user_type_repeat1] = STATE(2959), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_EQ] = ACTIONS(4227), - [anon_sym_fun] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_COMMA] = ACTIONS(4227), - [anon_sym_by] = ACTIONS(4225), - [anon_sym_where] = ACTIONS(4225), - [anon_sym_object] = ACTIONS(4225), - [anon_sym_DOT] = ACTIONS(6622), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [anon_sym_this] = ACTIONS(4225), - [anon_sym_super] = ACTIONS(4225), - [anon_sym_STAR] = ACTIONS(4227), - [sym_label] = ACTIONS(4225), - [anon_sym_in] = ACTIONS(4225), - [anon_sym_null] = ACTIONS(4225), - [anon_sym_if] = ACTIONS(4225), - [anon_sym_else] = ACTIONS(4225), - [anon_sym_when] = ACTIONS(4225), - [anon_sym_try] = ACTIONS(4225), - [anon_sym_throw] = ACTIONS(4225), - [anon_sym_return] = ACTIONS(4225), - [anon_sym_continue] = ACTIONS(4225), - [anon_sym_break] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_BANGin] = ACTIONS(4227), - [anon_sym_is] = ACTIONS(4225), - [anon_sym_BANGis] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG] = ACTIONS(4225), - [anon_sym_suspend] = ACTIONS(4225), - [anon_sym_sealed] = ACTIONS(4225), - [anon_sym_annotation] = ACTIONS(4225), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_override] = ACTIONS(4225), - [anon_sym_lateinit] = ACTIONS(4225), - [anon_sym_public] = ACTIONS(4225), - [anon_sym_private] = ACTIONS(4225), - [anon_sym_internal] = ACTIONS(4225), - [anon_sym_protected] = ACTIONS(4225), - [anon_sym_tailrec] = ACTIONS(4225), - [anon_sym_operator] = ACTIONS(4225), - [anon_sym_infix] = ACTIONS(4225), - [anon_sym_inline] = ACTIONS(4225), - [anon_sym_external] = ACTIONS(4225), - [sym_property_modifier] = ACTIONS(4225), - [anon_sym_abstract] = ACTIONS(4225), - [anon_sym_final] = ACTIONS(4225), - [anon_sym_open] = ACTIONS(4225), - [anon_sym_vararg] = ACTIONS(4225), - [anon_sym_noinline] = ACTIONS(4225), - [anon_sym_crossinline] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4227), - [anon_sym_continue_AT] = ACTIONS(4227), - [anon_sym_break_AT] = ACTIONS(4227), - [anon_sym_this_AT] = ACTIONS(4227), - [anon_sym_super_AT] = ACTIONS(4227), - [sym_real_literal] = ACTIONS(4227), - [sym_integer_literal] = ACTIONS(4225), - [sym_hex_literal] = ACTIONS(4227), - [sym_bin_literal] = ACTIONS(4227), - [anon_sym_true] = ACTIONS(4225), - [anon_sym_false] = ACTIONS(4225), - [anon_sym_SQUOTE] = ACTIONS(4227), - [sym__backtick_identifier] = ACTIONS(4227), - [sym__automatic_semicolon] = ACTIONS(4227), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4227), - }, - [3353] = { - [sym_function_body] = STATE(3192), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), - }, - [3354] = { - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(4164), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4166), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(4164), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), - }, - [3355] = { - [sym_catch_block] = STATE(3446), - [sym_finally_block] = STATE(4069), - [aux_sym_try_expression_repeat1] = STATE(3446), + [3347] = { + [sym_catch_block] = STATE(3347), + [aux_sym_try_expression_repeat1] = STATE(3347), [sym__alpha_identifier] = ACTIONS(4130), [anon_sym_AT] = ACTIONS(4132), [anon_sym_LBRACK] = ACTIONS(4132), @@ -394231,8 +391392,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(4132), [anon_sym_PIPE_PIPE] = ACTIONS(4132), [anon_sym_else] = ACTIONS(4130), - [anon_sym_catch] = ACTIONS(6814), - [anon_sym_finally] = ACTIONS(6816), + [anon_sym_catch] = ACTIONS(6806), + [anon_sym_finally] = ACTIONS(4130), [anon_sym_COLON_COLON] = ACTIONS(4132), [anon_sym_PLUS_EQ] = ACTIONS(4132), [anon_sym_DASH_EQ] = ACTIONS(4132), @@ -394288,103 +391449,2115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4132), [sym_multiline_comment] = ACTIONS(3), }, + [3348] = { + [sym__alpha_identifier] = ACTIONS(4702), + [anon_sym_AT] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_RBRACK] = ACTIONS(4704), + [anon_sym_as] = ACTIONS(4702), + [anon_sym_EQ] = ACTIONS(4702), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [anon_sym_by] = ACTIONS(4702), + [anon_sym_LT] = ACTIONS(4702), + [anon_sym_GT] = ACTIONS(4702), + [anon_sym_where] = ACTIONS(4702), + [anon_sym_DOT] = ACTIONS(4702), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_get] = ACTIONS(4702), + [anon_sym_set] = ACTIONS(4702), + [anon_sym_STAR] = ACTIONS(4702), + [anon_sym_DASH_GT] = ACTIONS(4704), + [sym_label] = ACTIONS(4704), + [anon_sym_in] = ACTIONS(4702), + [anon_sym_while] = ACTIONS(4702), + [anon_sym_DOT_DOT] = ACTIONS(4704), + [anon_sym_QMARK_COLON] = ACTIONS(4704), + [anon_sym_AMP_AMP] = ACTIONS(4704), + [anon_sym_PIPE_PIPE] = ACTIONS(4704), + [anon_sym_else] = ACTIONS(4702), + [anon_sym_COLON_COLON] = ACTIONS(4704), + [anon_sym_PLUS_EQ] = ACTIONS(4704), + [anon_sym_DASH_EQ] = ACTIONS(4704), + [anon_sym_STAR_EQ] = ACTIONS(4704), + [anon_sym_SLASH_EQ] = ACTIONS(4704), + [anon_sym_PERCENT_EQ] = ACTIONS(4704), + [anon_sym_BANG_EQ] = ACTIONS(4702), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4704), + [anon_sym_EQ_EQ] = ACTIONS(4702), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4704), + [anon_sym_LT_EQ] = ACTIONS(4704), + [anon_sym_GT_EQ] = ACTIONS(4704), + [anon_sym_BANGin] = ACTIONS(4704), + [anon_sym_is] = ACTIONS(4702), + [anon_sym_BANGis] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4702), + [anon_sym_DASH] = ACTIONS(4702), + [anon_sym_SLASH] = ACTIONS(4702), + [anon_sym_PERCENT] = ACTIONS(4702), + [anon_sym_as_QMARK] = ACTIONS(4704), + [anon_sym_PLUS_PLUS] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4704), + [anon_sym_BANG_BANG] = ACTIONS(4704), + [anon_sym_suspend] = ACTIONS(4702), + [anon_sym_sealed] = ACTIONS(4702), + [anon_sym_annotation] = ACTIONS(4702), + [anon_sym_data] = ACTIONS(4702), + [anon_sym_inner] = ACTIONS(4702), + [anon_sym_value] = ACTIONS(4702), + [anon_sym_override] = ACTIONS(4702), + [anon_sym_lateinit] = ACTIONS(4702), + [anon_sym_public] = ACTIONS(4702), + [anon_sym_private] = ACTIONS(4702), + [anon_sym_internal] = ACTIONS(4702), + [anon_sym_protected] = ACTIONS(4702), + [anon_sym_tailrec] = ACTIONS(4702), + [anon_sym_operator] = ACTIONS(4702), + [anon_sym_infix] = ACTIONS(4702), + [anon_sym_inline] = ACTIONS(4702), + [anon_sym_external] = ACTIONS(4702), + [sym_property_modifier] = ACTIONS(4702), + [anon_sym_abstract] = ACTIONS(4702), + [anon_sym_final] = ACTIONS(4702), + [anon_sym_open] = ACTIONS(4702), + [anon_sym_vararg] = ACTIONS(4702), + [anon_sym_noinline] = ACTIONS(4702), + [anon_sym_crossinline] = ACTIONS(4702), + [anon_sym_expect] = ACTIONS(4702), + [anon_sym_actual] = ACTIONS(4702), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4704), + [sym_safe_nav] = ACTIONS(4704), + [sym_multiline_comment] = ACTIONS(3), + }, + [3349] = { + [sym_type_constraints] = STATE(3633), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, + [3350] = { + [sym_type_constraints] = STATE(3647), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6811), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [3351] = { + [sym_enum_class_body] = STATE(3466), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_RBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_RPAREN] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [anon_sym_DASH_GT] = ACTIONS(4483), + [sym_label] = ACTIONS(4483), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_while] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), + [sym_multiline_comment] = ACTIONS(3), + }, + [3352] = { + [sym_class_body] = STATE(3539), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [3353] = { + [sym__alpha_identifier] = ACTIONS(4543), + [anon_sym_AT] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_RBRACK] = ACTIONS(4545), + [anon_sym_as] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_RPAREN] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_where] = ACTIONS(4543), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4545), + [anon_sym_get] = ACTIONS(4543), + [anon_sym_set] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [anon_sym_DASH_GT] = ACTIONS(4545), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4543), + [anon_sym_while] = ACTIONS(4543), + [anon_sym_DOT_DOT] = ACTIONS(4545), + [anon_sym_QMARK_COLON] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_else] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4545), + [anon_sym_EQ_EQ] = ACTIONS(4543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_BANGin] = ACTIONS(4545), + [anon_sym_is] = ACTIONS(4543), + [anon_sym_BANGis] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_BANG_BANG] = ACTIONS(4545), + [anon_sym_suspend] = ACTIONS(4543), + [anon_sym_sealed] = ACTIONS(4543), + [anon_sym_annotation] = ACTIONS(4543), + [anon_sym_data] = ACTIONS(4543), + [anon_sym_inner] = ACTIONS(4543), + [anon_sym_value] = ACTIONS(4543), + [anon_sym_override] = ACTIONS(4543), + [anon_sym_lateinit] = ACTIONS(4543), + [anon_sym_public] = ACTIONS(4543), + [anon_sym_private] = ACTIONS(4543), + [anon_sym_internal] = ACTIONS(4543), + [anon_sym_protected] = ACTIONS(4543), + [anon_sym_tailrec] = ACTIONS(4543), + [anon_sym_operator] = ACTIONS(4543), + [anon_sym_infix] = ACTIONS(4543), + [anon_sym_inline] = ACTIONS(4543), + [anon_sym_external] = ACTIONS(4543), + [sym_property_modifier] = ACTIONS(4543), + [anon_sym_abstract] = ACTIONS(4543), + [anon_sym_final] = ACTIONS(4543), + [anon_sym_open] = ACTIONS(4543), + [anon_sym_vararg] = ACTIONS(4543), + [anon_sym_noinline] = ACTIONS(4543), + [anon_sym_crossinline] = ACTIONS(4543), + [anon_sym_expect] = ACTIONS(4543), + [anon_sym_actual] = ACTIONS(4543), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4545), + [sym_safe_nav] = ACTIONS(4545), + [sym_multiline_comment] = ACTIONS(3), + }, + [3354] = { + [sym_class_body] = STATE(3470), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_RBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_RPAREN] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [anon_sym_DASH_GT] = ACTIONS(4654), + [sym_label] = ACTIONS(4654), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + }, + [3355] = { + [sym_type_constraints] = STATE(3649), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + }, [3356] = { - [sym_enum_class_body] = STATE(3666), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_RBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_RPAREN] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [anon_sym_DASH_GT] = ACTIONS(4467), - [sym_label] = ACTIONS(4467), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_while] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_suspend] = ACTIONS(4465), - [anon_sym_sealed] = ACTIONS(4465), - [anon_sym_annotation] = ACTIONS(4465), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_override] = ACTIONS(4465), - [anon_sym_lateinit] = ACTIONS(4465), - [anon_sym_public] = ACTIONS(4465), - [anon_sym_private] = ACTIONS(4465), - [anon_sym_internal] = ACTIONS(4465), - [anon_sym_protected] = ACTIONS(4465), - [anon_sym_tailrec] = ACTIONS(4465), - [anon_sym_operator] = ACTIONS(4465), - [anon_sym_infix] = ACTIONS(4465), - [anon_sym_inline] = ACTIONS(4465), - [anon_sym_external] = ACTIONS(4465), - [sym_property_modifier] = ACTIONS(4465), - [anon_sym_abstract] = ACTIONS(4465), - [anon_sym_final] = ACTIONS(4465), - [anon_sym_open] = ACTIONS(4465), - [anon_sym_vararg] = ACTIONS(4465), - [anon_sym_noinline] = ACTIONS(4465), - [anon_sym_crossinline] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), + [sym_enum_class_body] = STATE(3470), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_RBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_RPAREN] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [anon_sym_DASH_GT] = ACTIONS(4654), + [sym_label] = ACTIONS(4654), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), [sym_multiline_comment] = ACTIONS(3), }, [3357] = { - [sym_class_body] = STATE(3497), + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_RBRACK] = ACTIONS(4734), + [anon_sym_as] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_COMMA] = ACTIONS(4734), + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_by] = ACTIONS(4732), + [anon_sym_LT] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), + [anon_sym_set] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [anon_sym_DASH_GT] = ACTIONS(4734), + [sym_label] = ACTIONS(4734), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_while] = ACTIONS(4732), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_QMARK_COLON] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4734), + [anon_sym_DASH_EQ] = ACTIONS(4734), + [anon_sym_STAR_EQ] = ACTIONS(4734), + [anon_sym_SLASH_EQ] = ACTIONS(4734), + [anon_sym_PERCENT_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_as_QMARK] = ACTIONS(4734), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG_BANG] = ACTIONS(4734), + [anon_sym_suspend] = ACTIONS(4732), + [anon_sym_sealed] = ACTIONS(4732), + [anon_sym_annotation] = ACTIONS(4732), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_override] = ACTIONS(4732), + [anon_sym_lateinit] = ACTIONS(4732), + [anon_sym_public] = ACTIONS(4732), + [anon_sym_private] = ACTIONS(4732), + [anon_sym_internal] = ACTIONS(4732), + [anon_sym_protected] = ACTIONS(4732), + [anon_sym_tailrec] = ACTIONS(4732), + [anon_sym_operator] = ACTIONS(4732), + [anon_sym_infix] = ACTIONS(4732), + [anon_sym_inline] = ACTIONS(4732), + [anon_sym_external] = ACTIONS(4732), + [sym_property_modifier] = ACTIONS(4732), + [anon_sym_abstract] = ACTIONS(4732), + [anon_sym_final] = ACTIONS(4732), + [anon_sym_open] = ACTIONS(4732), + [anon_sym_vararg] = ACTIONS(4732), + [anon_sym_noinline] = ACTIONS(4732), + [anon_sym_crossinline] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4734), + [sym_safe_nav] = ACTIONS(4734), + [sym_multiline_comment] = ACTIONS(3), + }, + [3358] = { + [sym_type_constraints] = STATE(3653), + [sym_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6815), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + }, + [3359] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_RBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_RPAREN] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_DASH_GT] = ACTIONS(4206), + [sym_label] = ACTIONS(4206), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + }, + [3360] = { + [sym__alpha_identifier] = ACTIONS(4716), + [anon_sym_AT] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4718), + [anon_sym_RBRACK] = ACTIONS(4718), + [anon_sym_as] = ACTIONS(4716), + [anon_sym_EQ] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_RPAREN] = ACTIONS(4718), + [anon_sym_by] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_where] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4716), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_get] = ACTIONS(4716), + [anon_sym_set] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4716), + [anon_sym_DASH_GT] = ACTIONS(4718), + [sym_label] = ACTIONS(4718), + [anon_sym_in] = ACTIONS(4716), + [anon_sym_while] = ACTIONS(4716), + [anon_sym_DOT_DOT] = ACTIONS(4718), + [anon_sym_QMARK_COLON] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_else] = ACTIONS(4716), + [anon_sym_COLON_COLON] = ACTIONS(4718), + [anon_sym_PLUS_EQ] = ACTIONS(4718), + [anon_sym_DASH_EQ] = ACTIONS(4718), + [anon_sym_STAR_EQ] = ACTIONS(4718), + [anon_sym_SLASH_EQ] = ACTIONS(4718), + [anon_sym_PERCENT_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ] = ACTIONS(4716), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ] = ACTIONS(4716), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4718), + [anon_sym_LT_EQ] = ACTIONS(4718), + [anon_sym_GT_EQ] = ACTIONS(4718), + [anon_sym_BANGin] = ACTIONS(4718), + [anon_sym_is] = ACTIONS(4716), + [anon_sym_BANGis] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_SLASH] = ACTIONS(4716), + [anon_sym_PERCENT] = ACTIONS(4716), + [anon_sym_as_QMARK] = ACTIONS(4718), + [anon_sym_PLUS_PLUS] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4718), + [anon_sym_BANG_BANG] = ACTIONS(4718), + [anon_sym_suspend] = ACTIONS(4716), + [anon_sym_sealed] = ACTIONS(4716), + [anon_sym_annotation] = ACTIONS(4716), + [anon_sym_data] = ACTIONS(4716), + [anon_sym_inner] = ACTIONS(4716), + [anon_sym_value] = ACTIONS(4716), + [anon_sym_override] = ACTIONS(4716), + [anon_sym_lateinit] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(4716), + [anon_sym_private] = ACTIONS(4716), + [anon_sym_internal] = ACTIONS(4716), + [anon_sym_protected] = ACTIONS(4716), + [anon_sym_tailrec] = ACTIONS(4716), + [anon_sym_operator] = ACTIONS(4716), + [anon_sym_infix] = ACTIONS(4716), + [anon_sym_inline] = ACTIONS(4716), + [anon_sym_external] = ACTIONS(4716), + [sym_property_modifier] = ACTIONS(4716), + [anon_sym_abstract] = ACTIONS(4716), + [anon_sym_final] = ACTIONS(4716), + [anon_sym_open] = ACTIONS(4716), + [anon_sym_vararg] = ACTIONS(4716), + [anon_sym_noinline] = ACTIONS(4716), + [anon_sym_crossinline] = ACTIONS(4716), + [anon_sym_expect] = ACTIONS(4716), + [anon_sym_actual] = ACTIONS(4716), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4718), + [sym_safe_nav] = ACTIONS(4718), + [sym_multiline_comment] = ACTIONS(3), + }, + [3361] = { + [sym_enum_class_body] = STATE(3472), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_DASH_GT] = ACTIONS(4469), + [sym_label] = ACTIONS(4469), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_while] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), + [sym_multiline_comment] = ACTIONS(3), + }, + [3362] = { + [sym_class_body] = STATE(3478), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_while] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + }, + [3363] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_RBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(6623), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [anon_sym_DASH_GT] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_while] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + }, + [3364] = { + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_by] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_AMP] = ACTIONS(4179), + [sym__quest] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4181), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_QMARK_COLON] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS_EQ] = ACTIONS(4181), + [anon_sym_DASH_EQ] = ACTIONS(4181), + [anon_sym_STAR_EQ] = ACTIONS(4181), + [anon_sym_SLASH_EQ] = ACTIONS(4181), + [anon_sym_PERCENT_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_as_QMARK] = ACTIONS(4181), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG_BANG] = ACTIONS(4181), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4181), + [sym__automatic_semicolon] = ACTIONS(4181), + [sym_safe_nav] = ACTIONS(4181), + [sym_multiline_comment] = ACTIONS(3), + }, + [3365] = { + [sym__alpha_identifier] = ACTIONS(4577), + [anon_sym_AT] = ACTIONS(4579), + [anon_sym_COLON] = ACTIONS(4577), + [anon_sym_LBRACK] = ACTIONS(4579), + [anon_sym_RBRACK] = ACTIONS(4579), + [anon_sym_as] = ACTIONS(4577), + [anon_sym_EQ] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [anon_sym_RBRACE] = ACTIONS(4579), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym_COMMA] = ACTIONS(4579), + [anon_sym_RPAREN] = ACTIONS(4579), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4577), + [anon_sym_where] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SEMI] = ACTIONS(4579), + [anon_sym_get] = ACTIONS(4577), + [anon_sym_set] = ACTIONS(4577), + [anon_sym_STAR] = ACTIONS(4577), + [anon_sym_DASH_GT] = ACTIONS(4579), + [sym_label] = ACTIONS(4579), + [anon_sym_in] = ACTIONS(4577), + [anon_sym_while] = ACTIONS(4577), + [anon_sym_DOT_DOT] = ACTIONS(4579), + [anon_sym_QMARK_COLON] = ACTIONS(4579), + [anon_sym_AMP_AMP] = ACTIONS(4579), + [anon_sym_PIPE_PIPE] = ACTIONS(4579), + [anon_sym_else] = ACTIONS(4577), + [anon_sym_COLON_COLON] = ACTIONS(4579), + [anon_sym_PLUS_EQ] = ACTIONS(4579), + [anon_sym_DASH_EQ] = ACTIONS(4579), + [anon_sym_STAR_EQ] = ACTIONS(4579), + [anon_sym_SLASH_EQ] = ACTIONS(4579), + [anon_sym_PERCENT_EQ] = ACTIONS(4579), + [anon_sym_BANG_EQ] = ACTIONS(4577), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4579), + [anon_sym_EQ_EQ] = ACTIONS(4577), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4579), + [anon_sym_LT_EQ] = ACTIONS(4579), + [anon_sym_GT_EQ] = ACTIONS(4579), + [anon_sym_BANGin] = ACTIONS(4579), + [anon_sym_is] = ACTIONS(4577), + [anon_sym_BANGis] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4577), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4577), + [anon_sym_PERCENT] = ACTIONS(4577), + [anon_sym_as_QMARK] = ACTIONS(4579), + [anon_sym_PLUS_PLUS] = ACTIONS(4579), + [anon_sym_DASH_DASH] = ACTIONS(4579), + [anon_sym_BANG_BANG] = ACTIONS(4579), + [anon_sym_suspend] = ACTIONS(4577), + [anon_sym_sealed] = ACTIONS(4577), + [anon_sym_annotation] = ACTIONS(4577), + [anon_sym_data] = ACTIONS(4577), + [anon_sym_inner] = ACTIONS(4577), + [anon_sym_value] = ACTIONS(4577), + [anon_sym_override] = ACTIONS(4577), + [anon_sym_lateinit] = ACTIONS(4577), + [anon_sym_public] = ACTIONS(4577), + [anon_sym_private] = ACTIONS(4577), + [anon_sym_internal] = ACTIONS(4577), + [anon_sym_protected] = ACTIONS(4577), + [anon_sym_tailrec] = ACTIONS(4577), + [anon_sym_operator] = ACTIONS(4577), + [anon_sym_infix] = ACTIONS(4577), + [anon_sym_inline] = ACTIONS(4577), + [anon_sym_external] = ACTIONS(4577), + [sym_property_modifier] = ACTIONS(4577), + [anon_sym_abstract] = ACTIONS(4577), + [anon_sym_final] = ACTIONS(4577), + [anon_sym_open] = ACTIONS(4577), + [anon_sym_vararg] = ACTIONS(4577), + [anon_sym_noinline] = ACTIONS(4577), + [anon_sym_crossinline] = ACTIONS(4577), + [anon_sym_expect] = ACTIONS(4577), + [anon_sym_actual] = ACTIONS(4577), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4579), + [sym_safe_nav] = ACTIONS(4579), + [sym_multiline_comment] = ACTIONS(3), + }, + [3366] = { + [sym_enum_class_body] = STATE(3478), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_while] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + }, + [3367] = { + [sym__alpha_identifier] = ACTIONS(4585), + [anon_sym_AT] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4587), + [anon_sym_RBRACK] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4585), + [anon_sym_EQ] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_RBRACE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4585), + [anon_sym_where] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_get] = ACTIONS(4585), + [anon_sym_set] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(4585), + [anon_sym_DASH_GT] = ACTIONS(4587), + [sym_label] = ACTIONS(4587), + [anon_sym_in] = ACTIONS(4585), + [anon_sym_while] = ACTIONS(4585), + [anon_sym_DOT_DOT] = ACTIONS(4587), + [anon_sym_QMARK_COLON] = ACTIONS(4587), + [anon_sym_AMP_AMP] = ACTIONS(4587), + [anon_sym_PIPE_PIPE] = ACTIONS(4587), + [anon_sym_else] = ACTIONS(4585), + [anon_sym_COLON_COLON] = ACTIONS(4587), + [anon_sym_PLUS_EQ] = ACTIONS(4587), + [anon_sym_DASH_EQ] = ACTIONS(4587), + [anon_sym_STAR_EQ] = ACTIONS(4587), + [anon_sym_SLASH_EQ] = ACTIONS(4587), + [anon_sym_PERCENT_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4587), + [anon_sym_LT_EQ] = ACTIONS(4587), + [anon_sym_GT_EQ] = ACTIONS(4587), + [anon_sym_BANGin] = ACTIONS(4587), + [anon_sym_is] = ACTIONS(4585), + [anon_sym_BANGis] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4585), + [anon_sym_SLASH] = ACTIONS(4585), + [anon_sym_PERCENT] = ACTIONS(4585), + [anon_sym_as_QMARK] = ACTIONS(4587), + [anon_sym_PLUS_PLUS] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4587), + [anon_sym_BANG_BANG] = ACTIONS(4587), + [anon_sym_suspend] = ACTIONS(4585), + [anon_sym_sealed] = ACTIONS(4585), + [anon_sym_annotation] = ACTIONS(4585), + [anon_sym_data] = ACTIONS(4585), + [anon_sym_inner] = ACTIONS(4585), + [anon_sym_value] = ACTIONS(4585), + [anon_sym_override] = ACTIONS(4585), + [anon_sym_lateinit] = ACTIONS(4585), + [anon_sym_public] = ACTIONS(4585), + [anon_sym_private] = ACTIONS(4585), + [anon_sym_internal] = ACTIONS(4585), + [anon_sym_protected] = ACTIONS(4585), + [anon_sym_tailrec] = ACTIONS(4585), + [anon_sym_operator] = ACTIONS(4585), + [anon_sym_infix] = ACTIONS(4585), + [anon_sym_inline] = ACTIONS(4585), + [anon_sym_external] = ACTIONS(4585), + [sym_property_modifier] = ACTIONS(4585), + [anon_sym_abstract] = ACTIONS(4585), + [anon_sym_final] = ACTIONS(4585), + [anon_sym_open] = ACTIONS(4585), + [anon_sym_vararg] = ACTIONS(4585), + [anon_sym_noinline] = ACTIONS(4585), + [anon_sym_crossinline] = ACTIONS(4585), + [anon_sym_expect] = ACTIONS(4585), + [anon_sym_actual] = ACTIONS(4585), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4587), + [sym_safe_nav] = ACTIONS(4587), + [sym_multiline_comment] = ACTIONS(3), + }, + [3368] = { + [sym_class_body] = STATE(3480), + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_RBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_DASH_GT] = ACTIONS(4646), + [sym_label] = ACTIONS(4646), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_while] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_suspend] = ACTIONS(4644), + [anon_sym_sealed] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4644), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_override] = ACTIONS(4644), + [anon_sym_lateinit] = ACTIONS(4644), + [anon_sym_public] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4644), + [anon_sym_internal] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4644), + [anon_sym_tailrec] = ACTIONS(4644), + [anon_sym_operator] = ACTIONS(4644), + [anon_sym_infix] = ACTIONS(4644), + [anon_sym_inline] = ACTIONS(4644), + [anon_sym_external] = ACTIONS(4644), + [sym_property_modifier] = ACTIONS(4644), + [anon_sym_abstract] = ACTIONS(4644), + [anon_sym_final] = ACTIONS(4644), + [anon_sym_open] = ACTIONS(4644), + [anon_sym_vararg] = ACTIONS(4644), + [anon_sym_noinline] = ACTIONS(4644), + [anon_sym_crossinline] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), + [sym_multiline_comment] = ACTIONS(3), + }, + [3369] = { + [sym_type_constraints] = STATE(3750), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + }, + [3370] = { + [sym__alpha_identifier] = ACTIONS(4854), + [anon_sym_AT] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4856), + [anon_sym_RBRACK] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4854), + [anon_sym_EQ] = ACTIONS(4854), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_RPAREN] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4854), + [anon_sym_where] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_get] = ACTIONS(4854), + [anon_sym_set] = ACTIONS(4854), + [anon_sym_STAR] = ACTIONS(4854), + [anon_sym_DASH_GT] = ACTIONS(4856), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4854), + [anon_sym_while] = ACTIONS(4854), + [anon_sym_DOT_DOT] = ACTIONS(4856), + [anon_sym_QMARK_COLON] = ACTIONS(4856), + [anon_sym_AMP_AMP] = ACTIONS(4856), + [anon_sym_PIPE_PIPE] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(4854), + [anon_sym_COLON_COLON] = ACTIONS(4856), + [anon_sym_PLUS_EQ] = ACTIONS(4856), + [anon_sym_DASH_EQ] = ACTIONS(4856), + [anon_sym_STAR_EQ] = ACTIONS(4856), + [anon_sym_SLASH_EQ] = ACTIONS(4856), + [anon_sym_PERCENT_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ] = ACTIONS(4854), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ] = ACTIONS(4854), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4856), + [anon_sym_LT_EQ] = ACTIONS(4856), + [anon_sym_GT_EQ] = ACTIONS(4856), + [anon_sym_BANGin] = ACTIONS(4856), + [anon_sym_is] = ACTIONS(4854), + [anon_sym_BANGis] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4854), + [anon_sym_PERCENT] = ACTIONS(4854), + [anon_sym_as_QMARK] = ACTIONS(4856), + [anon_sym_PLUS_PLUS] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4856), + [anon_sym_suspend] = ACTIONS(4854), + [anon_sym_sealed] = ACTIONS(4854), + [anon_sym_annotation] = ACTIONS(4854), + [anon_sym_data] = ACTIONS(4854), + [anon_sym_inner] = ACTIONS(4854), + [anon_sym_value] = ACTIONS(4854), + [anon_sym_override] = ACTIONS(4854), + [anon_sym_lateinit] = ACTIONS(4854), + [anon_sym_public] = ACTIONS(4854), + [anon_sym_private] = ACTIONS(4854), + [anon_sym_internal] = ACTIONS(4854), + [anon_sym_protected] = ACTIONS(4854), + [anon_sym_tailrec] = ACTIONS(4854), + [anon_sym_operator] = ACTIONS(4854), + [anon_sym_infix] = ACTIONS(4854), + [anon_sym_inline] = ACTIONS(4854), + [anon_sym_external] = ACTIONS(4854), + [sym_property_modifier] = ACTIONS(4854), + [anon_sym_abstract] = ACTIONS(4854), + [anon_sym_final] = ACTIONS(4854), + [anon_sym_open] = ACTIONS(4854), + [anon_sym_vararg] = ACTIONS(4854), + [anon_sym_noinline] = ACTIONS(4854), + [anon_sym_crossinline] = ACTIONS(4854), + [anon_sym_expect] = ACTIONS(4854), + [anon_sym_actual] = ACTIONS(4854), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4856), + [sym_safe_nav] = ACTIONS(4856), + [sym_multiline_comment] = ACTIONS(3), + }, + [3371] = { + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6817), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [sym_label] = ACTIONS(4239), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4239), + [sym__automatic_semicolon] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), + [sym_multiline_comment] = ACTIONS(3), + }, + [3372] = { + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(6819), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + }, + [3373] = { + [sym_function_body] = STATE(3900), + [sym__block] = STATE(3882), [sym__alpha_identifier] = ACTIONS(4275), [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(6821), [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_RBRACK] = ACTIONS(4277), [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(5590), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), [anon_sym_RBRACE] = ACTIONS(4277), [anon_sym_LPAREN] = ACTIONS(4277), [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4277), [anon_sym_LT] = ACTIONS(4275), [anon_sym_GT] = ACTIONS(4275), [anon_sym_where] = ACTIONS(4275), @@ -394393,10 +393566,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(4275), [anon_sym_set] = ACTIONS(4275), [anon_sym_STAR] = ACTIONS(4275), - [anon_sym_DASH_GT] = ACTIONS(4277), [sym_label] = ACTIONS(4277), [anon_sym_in] = ACTIONS(4275), - [anon_sym_while] = ACTIONS(4275), [anon_sym_DOT_DOT] = ACTIONS(4277), [anon_sym_QMARK_COLON] = ACTIONS(4277), [anon_sym_AMP_AMP] = ACTIONS(4277), @@ -394453,1640 +393624,549 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4275), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), }, - [3358] = { - [sym__alpha_identifier] = ACTIONS(4718), - [anon_sym_AT] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4720), - [anon_sym_RBRACK] = ACTIONS(4720), - [anon_sym_as] = ACTIONS(4718), - [anon_sym_EQ] = ACTIONS(4718), - [anon_sym_LBRACE] = ACTIONS(4720), - [anon_sym_RBRACE] = ACTIONS(4720), - [anon_sym_LPAREN] = ACTIONS(4720), - [anon_sym_COMMA] = ACTIONS(4720), - [anon_sym_RPAREN] = ACTIONS(4720), - [anon_sym_by] = ACTIONS(4718), - [anon_sym_LT] = ACTIONS(4718), - [anon_sym_GT] = ACTIONS(4718), - [anon_sym_where] = ACTIONS(4718), - [anon_sym_DOT] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_get] = ACTIONS(4718), - [anon_sym_set] = ACTIONS(4718), - [anon_sym_STAR] = ACTIONS(4718), - [anon_sym_DASH_GT] = ACTIONS(4720), - [sym_label] = ACTIONS(4720), - [anon_sym_in] = ACTIONS(4718), - [anon_sym_while] = ACTIONS(4718), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_QMARK_COLON] = ACTIONS(4720), - [anon_sym_AMP_AMP] = ACTIONS(4720), - [anon_sym_PIPE_PIPE] = ACTIONS(4720), - [anon_sym_else] = ACTIONS(4718), - [anon_sym_COLON_COLON] = ACTIONS(4720), - [anon_sym_PLUS_EQ] = ACTIONS(4720), - [anon_sym_DASH_EQ] = ACTIONS(4720), - [anon_sym_STAR_EQ] = ACTIONS(4720), - [anon_sym_SLASH_EQ] = ACTIONS(4720), - [anon_sym_PERCENT_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4718), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), - [anon_sym_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4720), - [anon_sym_BANGin] = ACTIONS(4720), - [anon_sym_is] = ACTIONS(4718), - [anon_sym_BANGis] = ACTIONS(4720), - [anon_sym_PLUS] = ACTIONS(4718), - [anon_sym_DASH] = ACTIONS(4718), - [anon_sym_SLASH] = ACTIONS(4718), - [anon_sym_PERCENT] = ACTIONS(4718), - [anon_sym_as_QMARK] = ACTIONS(4720), - [anon_sym_PLUS_PLUS] = ACTIONS(4720), - [anon_sym_DASH_DASH] = ACTIONS(4720), - [anon_sym_BANG_BANG] = ACTIONS(4720), - [anon_sym_suspend] = ACTIONS(4718), - [anon_sym_sealed] = ACTIONS(4718), - [anon_sym_annotation] = ACTIONS(4718), - [anon_sym_data] = ACTIONS(4718), - [anon_sym_inner] = ACTIONS(4718), - [anon_sym_value] = ACTIONS(4718), - [anon_sym_override] = ACTIONS(4718), - [anon_sym_lateinit] = ACTIONS(4718), - [anon_sym_public] = ACTIONS(4718), - [anon_sym_private] = ACTIONS(4718), - [anon_sym_internal] = ACTIONS(4718), - [anon_sym_protected] = ACTIONS(4718), - [anon_sym_tailrec] = ACTIONS(4718), - [anon_sym_operator] = ACTIONS(4718), - [anon_sym_infix] = ACTIONS(4718), - [anon_sym_inline] = ACTIONS(4718), - [anon_sym_external] = ACTIONS(4718), - [sym_property_modifier] = ACTIONS(4718), - [anon_sym_abstract] = ACTIONS(4718), - [anon_sym_final] = ACTIONS(4718), - [anon_sym_open] = ACTIONS(4718), - [anon_sym_vararg] = ACTIONS(4718), - [anon_sym_noinline] = ACTIONS(4718), - [anon_sym_crossinline] = ACTIONS(4718), - [anon_sym_expect] = ACTIONS(4718), - [anon_sym_actual] = ACTIONS(4718), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4720), - [sym_safe_nav] = ACTIONS(4720), - [sym_multiline_comment] = ACTIONS(3), - }, - [3359] = { - [sym__alpha_identifier] = ACTIONS(4641), - [anon_sym_AT] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_RBRACK] = ACTIONS(4643), - [anon_sym_as] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4643), - [anon_sym_RBRACE] = ACTIONS(4643), - [anon_sym_LPAREN] = ACTIONS(4643), - [anon_sym_COMMA] = ACTIONS(4643), - [anon_sym_RPAREN] = ACTIONS(4643), - [anon_sym_LT] = ACTIONS(4641), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_where] = ACTIONS(4641), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4643), - [anon_sym_get] = ACTIONS(4641), - [anon_sym_set] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [anon_sym_DASH_GT] = ACTIONS(4643), - [sym_label] = ACTIONS(4643), - [anon_sym_in] = ACTIONS(4641), - [anon_sym_while] = ACTIONS(4641), - [anon_sym_DOT_DOT] = ACTIONS(4643), - [anon_sym_QMARK_COLON] = ACTIONS(4643), - [anon_sym_AMP_AMP] = ACTIONS(4643), - [anon_sym_PIPE_PIPE] = ACTIONS(4643), - [anon_sym_else] = ACTIONS(4641), - [anon_sym_COLON_COLON] = ACTIONS(4643), - [anon_sym_PLUS_EQ] = ACTIONS(4643), - [anon_sym_DASH_EQ] = ACTIONS(4643), - [anon_sym_STAR_EQ] = ACTIONS(4643), - [anon_sym_SLASH_EQ] = ACTIONS(4643), - [anon_sym_PERCENT_EQ] = ACTIONS(4643), - [anon_sym_BANG_EQ] = ACTIONS(4641), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4643), - [anon_sym_EQ_EQ] = ACTIONS(4641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4643), - [anon_sym_LT_EQ] = ACTIONS(4643), - [anon_sym_GT_EQ] = ACTIONS(4643), - [anon_sym_BANGin] = ACTIONS(4643), - [anon_sym_is] = ACTIONS(4641), - [anon_sym_BANGis] = ACTIONS(4643), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4641), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_as_QMARK] = ACTIONS(4643), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_suspend] = ACTIONS(4641), - [anon_sym_sealed] = ACTIONS(4641), - [anon_sym_annotation] = ACTIONS(4641), - [anon_sym_data] = ACTIONS(4641), - [anon_sym_inner] = ACTIONS(4641), - [anon_sym_value] = ACTIONS(4641), - [anon_sym_override] = ACTIONS(4641), - [anon_sym_lateinit] = ACTIONS(4641), - [anon_sym_public] = ACTIONS(4641), - [anon_sym_private] = ACTIONS(4641), - [anon_sym_internal] = ACTIONS(4641), - [anon_sym_protected] = ACTIONS(4641), - [anon_sym_tailrec] = ACTIONS(4641), - [anon_sym_operator] = ACTIONS(4641), - [anon_sym_infix] = ACTIONS(4641), - [anon_sym_inline] = ACTIONS(4641), - [anon_sym_external] = ACTIONS(4641), - [sym_property_modifier] = ACTIONS(4641), - [anon_sym_abstract] = ACTIONS(4641), - [anon_sym_final] = ACTIONS(4641), - [anon_sym_open] = ACTIONS(4641), - [anon_sym_vararg] = ACTIONS(4641), - [anon_sym_noinline] = ACTIONS(4641), - [anon_sym_crossinline] = ACTIONS(4641), - [anon_sym_expect] = ACTIONS(4641), - [anon_sym_actual] = ACTIONS(4641), - [sym_line_comment] = ACTIONS(3), - [anon_sym_AT2] = ACTIONS(6818), - [sym__backtick_identifier] = ACTIONS(4643), - [sym_safe_nav] = ACTIONS(4643), - [sym_multiline_comment] = ACTIONS(3), - }, - [3360] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3445), - [sym__alpha_identifier] = ACTIONS(4740), - [anon_sym_AT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_RBRACK] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_where] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4740), - [anon_sym_set] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4742), - [sym_label] = ACTIONS(4742), - [anon_sym_in] = ACTIONS(4740), - [anon_sym_while] = ACTIONS(4740), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [anon_sym_QMARK_COLON] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_COLON_COLON] = ACTIONS(4742), - [anon_sym_PLUS_EQ] = ACTIONS(4742), - [anon_sym_DASH_EQ] = ACTIONS(4742), - [anon_sym_STAR_EQ] = ACTIONS(4742), - [anon_sym_SLASH_EQ] = ACTIONS(4742), - [anon_sym_PERCENT_EQ] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT_EQ] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_BANGin] = ACTIONS(4742), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_BANGis] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4740), - [anon_sym_as_QMARK] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4742), - [anon_sym_BANG_BANG] = ACTIONS(4742), - [anon_sym_suspend] = ACTIONS(4740), - [anon_sym_sealed] = ACTIONS(4740), - [anon_sym_annotation] = ACTIONS(4740), - [anon_sym_data] = ACTIONS(4740), - [anon_sym_inner] = ACTIONS(4740), - [anon_sym_value] = ACTIONS(4740), - [anon_sym_override] = ACTIONS(4740), - [anon_sym_lateinit] = ACTIONS(4740), - [anon_sym_public] = ACTIONS(4740), - [anon_sym_private] = ACTIONS(4740), - [anon_sym_internal] = ACTIONS(4740), - [anon_sym_protected] = ACTIONS(4740), - [anon_sym_tailrec] = ACTIONS(4740), - [anon_sym_operator] = ACTIONS(4740), - [anon_sym_infix] = ACTIONS(4740), - [anon_sym_inline] = ACTIONS(4740), - [anon_sym_external] = ACTIONS(4740), - [sym_property_modifier] = ACTIONS(4740), - [anon_sym_abstract] = ACTIONS(4740), - [anon_sym_final] = ACTIONS(4740), - [anon_sym_open] = ACTIONS(4740), - [anon_sym_vararg] = ACTIONS(4740), - [anon_sym_noinline] = ACTIONS(4740), - [anon_sym_crossinline] = ACTIONS(4740), - [anon_sym_expect] = ACTIONS(4740), - [anon_sym_actual] = ACTIONS(4740), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), - [sym_multiline_comment] = ACTIONS(3), - }, - [3361] = { - [sym_type_constraints] = STATE(3921), - [sym_function_body] = STATE(3582), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6820), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_RPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - }, - [3362] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3132), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_RPAREN] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3132), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(6836), - [anon_sym_QMARK_COLON] = ACTIONS(6838), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [3363] = { - [sym_type_constraints] = STATE(3907), - [sym_function_body] = STATE(3461), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(6848), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_RPAREN] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4209), - [sym_label] = ACTIONS(4211), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_while] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_PLUS_EQ] = ACTIONS(4211), - [anon_sym_DASH_EQ] = ACTIONS(4211), - [anon_sym_STAR_EQ] = ACTIONS(4211), - [anon_sym_SLASH_EQ] = ACTIONS(4211), - [anon_sym_PERCENT_EQ] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4209), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_suspend] = ACTIONS(4209), - [anon_sym_sealed] = ACTIONS(4209), - [anon_sym_annotation] = ACTIONS(4209), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_override] = ACTIONS(4209), - [anon_sym_lateinit] = ACTIONS(4209), - [anon_sym_public] = ACTIONS(4209), - [anon_sym_private] = ACTIONS(4209), - [anon_sym_internal] = ACTIONS(4209), - [anon_sym_protected] = ACTIONS(4209), - [anon_sym_tailrec] = ACTIONS(4209), - [anon_sym_operator] = ACTIONS(4209), - [anon_sym_infix] = ACTIONS(4209), - [anon_sym_inline] = ACTIONS(4209), - [anon_sym_external] = ACTIONS(4209), - [sym_property_modifier] = ACTIONS(4209), - [anon_sym_abstract] = ACTIONS(4209), - [anon_sym_final] = ACTIONS(4209), - [anon_sym_open] = ACTIONS(4209), - [anon_sym_vararg] = ACTIONS(4209), - [anon_sym_noinline] = ACTIONS(4209), - [anon_sym_crossinline] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), - [sym_multiline_comment] = ACTIONS(3), - }, - [3364] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3125), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_RPAREN] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3125), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_STAR_EQ] = ACTIONS(3125), - [anon_sym_SLASH_EQ] = ACTIONS(3125), - [anon_sym_PERCENT_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [3365] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_where] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [3366] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_by] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4010), - [anon_sym_set] = ACTIONS(4010), - [anon_sym_AMP] = ACTIONS(4010), - [sym__quest] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4010), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4010), - [anon_sym_sealed] = ACTIONS(4010), - [anon_sym_annotation] = ACTIONS(4010), - [anon_sym_data] = ACTIONS(4010), - [anon_sym_inner] = ACTIONS(4010), - [anon_sym_value] = ACTIONS(4010), - [anon_sym_override] = ACTIONS(4010), - [anon_sym_lateinit] = ACTIONS(4010), - [anon_sym_public] = ACTIONS(4010), - [anon_sym_private] = ACTIONS(4010), - [anon_sym_internal] = ACTIONS(4010), - [anon_sym_protected] = ACTIONS(4010), - [anon_sym_tailrec] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_infix] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym_external] = ACTIONS(4010), - [sym_property_modifier] = ACTIONS(4010), - [anon_sym_abstract] = ACTIONS(4010), - [anon_sym_final] = ACTIONS(4010), - [anon_sym_open] = ACTIONS(4010), - [anon_sym_vararg] = ACTIONS(4010), - [anon_sym_noinline] = ACTIONS(4010), - [anon_sym_crossinline] = ACTIONS(4010), - [anon_sym_expect] = ACTIONS(4010), - [anon_sym_actual] = ACTIONS(4010), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4015), - [sym__automatic_semicolon] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - }, - [3367] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3111), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(6836), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [3368] = { - [sym_type_constraints] = STATE(3759), - [sym_function_body] = STATE(4129), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(6850), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_COMMA] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4209), - [sym_label] = ACTIONS(4211), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_PLUS_EQ] = ACTIONS(4211), - [anon_sym_DASH_EQ] = ACTIONS(4211), - [anon_sym_STAR_EQ] = ACTIONS(4211), - [anon_sym_SLASH_EQ] = ACTIONS(4211), - [anon_sym_PERCENT_EQ] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4209), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_suspend] = ACTIONS(4209), - [anon_sym_sealed] = ACTIONS(4209), - [anon_sym_annotation] = ACTIONS(4209), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_override] = ACTIONS(4209), - [anon_sym_lateinit] = ACTIONS(4209), - [anon_sym_public] = ACTIONS(4209), - [anon_sym_private] = ACTIONS(4209), - [anon_sym_internal] = ACTIONS(4209), - [anon_sym_protected] = ACTIONS(4209), - [anon_sym_tailrec] = ACTIONS(4209), - [anon_sym_operator] = ACTIONS(4209), - [anon_sym_infix] = ACTIONS(4209), - [anon_sym_inline] = ACTIONS(4209), - [anon_sym_external] = ACTIONS(4209), - [sym_property_modifier] = ACTIONS(4209), - [anon_sym_abstract] = ACTIONS(4209), - [anon_sym_final] = ACTIONS(4209), - [anon_sym_open] = ACTIONS(4209), - [anon_sym_vararg] = ACTIONS(4209), - [anon_sym_noinline] = ACTIONS(4209), - [anon_sym_crossinline] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4211), - [sym__automatic_semicolon] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), - [sym_multiline_comment] = ACTIONS(3), - }, - [3369] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3099), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_where] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3099), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(6858), - [anon_sym_while] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(6836), - [anon_sym_QMARK_COLON] = ACTIONS(6838), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(6860), - [anon_sym_GT_EQ] = ACTIONS(6860), - [anon_sym_BANGin] = ACTIONS(6862), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [3370] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3143), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(6858), - [anon_sym_while] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(6836), - [anon_sym_QMARK_COLON] = ACTIONS(6838), - [anon_sym_AMP_AMP] = ACTIONS(6868), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(6870), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6872), - [anon_sym_EQ_EQ] = ACTIONS(6870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6872), - [anon_sym_LT_EQ] = ACTIONS(6860), - [anon_sym_GT_EQ] = ACTIONS(6860), - [anon_sym_BANGin] = ACTIONS(6862), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [3374] = { + [sym_type_constraints] = STATE(3791), + [sym_enum_class_body] = STATE(3952), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [3371] = { - [sym_type_constraints] = STATE(3751), - [sym_function_body] = STATE(4139), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6874), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, - [3372] = { - [sym_enum_class_body] = STATE(3521), - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_RBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_RPAREN] = ACTIONS(4597), - [anon_sym_LT] = ACTIONS(4595), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_where] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_DASH_GT] = ACTIONS(4597), - [sym_label] = ACTIONS(4597), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_while] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_suspend] = ACTIONS(4595), - [anon_sym_sealed] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4595), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_override] = ACTIONS(4595), - [anon_sym_lateinit] = ACTIONS(4595), - [anon_sym_public] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4595), - [anon_sym_internal] = ACTIONS(4595), - [anon_sym_protected] = ACTIONS(4595), - [anon_sym_tailrec] = ACTIONS(4595), - [anon_sym_operator] = ACTIONS(4595), - [anon_sym_infix] = ACTIONS(4595), - [anon_sym_inline] = ACTIONS(4595), - [anon_sym_external] = ACTIONS(4595), - [sym_property_modifier] = ACTIONS(4595), - [anon_sym_abstract] = ACTIONS(4595), - [anon_sym_final] = ACTIONS(4595), - [anon_sym_open] = ACTIONS(4595), - [anon_sym_vararg] = ACTIONS(4595), - [anon_sym_noinline] = ACTIONS(4595), - [anon_sym_crossinline] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4597), - [sym_safe_nav] = ACTIONS(4597), + [3375] = { + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(5914), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, - [3373] = { - [sym_class_body] = STATE(3521), - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_RBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_RPAREN] = ACTIONS(4597), - [anon_sym_LT] = ACTIONS(4595), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_where] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_DASH_GT] = ACTIONS(4597), - [sym_label] = ACTIONS(4597), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_while] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_suspend] = ACTIONS(4595), - [anon_sym_sealed] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4595), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_override] = ACTIONS(4595), - [anon_sym_lateinit] = ACTIONS(4595), - [anon_sym_public] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4595), - [anon_sym_internal] = ACTIONS(4595), - [anon_sym_protected] = ACTIONS(4595), - [anon_sym_tailrec] = ACTIONS(4595), - [anon_sym_operator] = ACTIONS(4595), - [anon_sym_infix] = ACTIONS(4595), - [anon_sym_inline] = ACTIONS(4595), - [anon_sym_external] = ACTIONS(4595), - [sym_property_modifier] = ACTIONS(4595), - [anon_sym_abstract] = ACTIONS(4595), - [anon_sym_final] = ACTIONS(4595), - [anon_sym_open] = ACTIONS(4595), - [anon_sym_vararg] = ACTIONS(4595), - [anon_sym_noinline] = ACTIONS(4595), - [anon_sym_crossinline] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4597), - [sym_safe_nav] = ACTIONS(4597), + [3376] = { + [sym_class_body] = STATE(3861), + [sym_type_constraints] = STATE(3816), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6825), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, - [3374] = { - [sym_type_constraints] = STATE(3746), - [sym_function_body] = STATE(4127), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(6876), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [3377] = { + [sym_type_constraints] = STATE(3820), + [sym_enum_class_body] = STATE(3861), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6827), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, - [3375] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_RPAREN] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_where] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3147), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(6858), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_DOT_DOT] = ACTIONS(6836), - [anon_sym_QMARK_COLON] = ACTIONS(6838), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(6870), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6872), - [anon_sym_EQ_EQ] = ACTIONS(6870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6872), - [anon_sym_LT_EQ] = ACTIONS(6860), - [anon_sym_GT_EQ] = ACTIONS(6860), - [anon_sym_BANGin] = ACTIONS(6862), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), + [3378] = { + [sym_type_constraints] = STATE(3621), + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), }, - [3376] = { - [sym_type_constraints] = STATE(3743), - [sym_function_body] = STATE(4106), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(6878), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), + [3379] = { + [sym_type_constraints] = STATE(3640), + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, - [3377] = { - [sym_type_constraints] = STATE(3736), - [sym_function_body] = STATE(4087), - [sym__block] = STATE(4073), + [3380] = { + [sym_type_constraints] = STATE(3641), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(6880), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_COMMA] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5812), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4183), - [sym_label] = ACTIONS(4185), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), [anon_sym_in] = ACTIONS(4183), [anon_sym_DOT_DOT] = ACTIONS(4185), [anon_sym_QMARK_COLON] = ACTIONS(4185), [anon_sym_AMP_AMP] = ACTIONS(4185), [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_PLUS_EQ] = ACTIONS(4185), - [anon_sym_DASH_EQ] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4185), - [anon_sym_SLASH_EQ] = ACTIONS(4185), - [anon_sym_PERCENT_EQ] = ACTIONS(4185), [anon_sym_BANG_EQ] = ACTIONS(4183), [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), [anon_sym_EQ_EQ] = ACTIONS(4183), @@ -396099,1320 +394179,633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4183), [anon_sym_DASH] = ACTIONS(4183), [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), [anon_sym_as_QMARK] = ACTIONS(4185), [anon_sym_PLUS_PLUS] = ACTIONS(4185), [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), [anon_sym_data] = ACTIONS(4183), [anon_sym_inner] = ACTIONS(4183), [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), [anon_sym_expect] = ACTIONS(4183), [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [3378] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3186), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3186), - [anon_sym_RPAREN] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_where] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3186), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(6858), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_DOT_DOT] = ACTIONS(6836), - [anon_sym_QMARK_COLON] = ACTIONS(6838), - [anon_sym_AMP_AMP] = ACTIONS(6868), - [anon_sym_PIPE_PIPE] = ACTIONS(6882), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3186), - [anon_sym_DASH_EQ] = ACTIONS(3186), - [anon_sym_STAR_EQ] = ACTIONS(3186), - [anon_sym_SLASH_EQ] = ACTIONS(3186), - [anon_sym_PERCENT_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ] = ACTIONS(6870), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6872), - [anon_sym_EQ_EQ] = ACTIONS(6870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6872), - [anon_sym_LT_EQ] = ACTIONS(6860), - [anon_sym_GT_EQ] = ACTIONS(6860), - [anon_sym_BANGin] = ACTIONS(6862), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [3381] = { + [sym_class_body] = STATE(3953), + [sym_type_constraints] = STATE(3786), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(5912), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [3379] = { - [sym_enum_class_body] = STATE(3537), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_RBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_RPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [anon_sym_DASH_GT] = ACTIONS(4387), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_while] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - }, - [3380] = { - [sym_class_body] = STATE(3537), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_RBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_RPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [anon_sym_DASH_GT] = ACTIONS(4387), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_while] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - }, - [3381] = { - [sym__alpha_identifier] = ACTIONS(4736), - [anon_sym_AT] = ACTIONS(4738), - [anon_sym_LBRACK] = ACTIONS(4738), - [anon_sym_RBRACK] = ACTIONS(4738), - [anon_sym_as] = ACTIONS(4736), - [anon_sym_EQ] = ACTIONS(4736), - [anon_sym_LBRACE] = ACTIONS(4738), - [anon_sym_RBRACE] = ACTIONS(4738), - [anon_sym_LPAREN] = ACTIONS(4738), - [anon_sym_COMMA] = ACTIONS(4738), - [anon_sym_RPAREN] = ACTIONS(4738), - [anon_sym_by] = ACTIONS(4736), - [anon_sym_LT] = ACTIONS(4736), - [anon_sym_GT] = ACTIONS(4736), - [anon_sym_where] = ACTIONS(4736), - [anon_sym_DOT] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4738), - [anon_sym_get] = ACTIONS(4736), - [anon_sym_set] = ACTIONS(4736), - [anon_sym_STAR] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [sym_label] = ACTIONS(4738), - [anon_sym_in] = ACTIONS(4736), - [anon_sym_while] = ACTIONS(4736), - [anon_sym_DOT_DOT] = ACTIONS(4738), - [anon_sym_QMARK_COLON] = ACTIONS(4738), - [anon_sym_AMP_AMP] = ACTIONS(4738), - [anon_sym_PIPE_PIPE] = ACTIONS(4738), - [anon_sym_else] = ACTIONS(4736), - [anon_sym_COLON_COLON] = ACTIONS(4738), - [anon_sym_PLUS_EQ] = ACTIONS(4738), - [anon_sym_DASH_EQ] = ACTIONS(4738), - [anon_sym_STAR_EQ] = ACTIONS(4738), - [anon_sym_SLASH_EQ] = ACTIONS(4738), - [anon_sym_PERCENT_EQ] = ACTIONS(4738), - [anon_sym_BANG_EQ] = ACTIONS(4736), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), - [anon_sym_EQ_EQ] = ACTIONS(4736), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), - [anon_sym_LT_EQ] = ACTIONS(4738), - [anon_sym_GT_EQ] = ACTIONS(4738), - [anon_sym_BANGin] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_BANGis] = ACTIONS(4738), - [anon_sym_PLUS] = ACTIONS(4736), - [anon_sym_DASH] = ACTIONS(4736), - [anon_sym_SLASH] = ACTIONS(4736), - [anon_sym_PERCENT] = ACTIONS(4736), - [anon_sym_as_QMARK] = ACTIONS(4738), - [anon_sym_PLUS_PLUS] = ACTIONS(4738), - [anon_sym_DASH_DASH] = ACTIONS(4738), - [anon_sym_BANG_BANG] = ACTIONS(4738), - [anon_sym_suspend] = ACTIONS(4736), - [anon_sym_sealed] = ACTIONS(4736), - [anon_sym_annotation] = ACTIONS(4736), - [anon_sym_data] = ACTIONS(4736), - [anon_sym_inner] = ACTIONS(4736), - [anon_sym_value] = ACTIONS(4736), - [anon_sym_override] = ACTIONS(4736), - [anon_sym_lateinit] = ACTIONS(4736), - [anon_sym_public] = ACTIONS(4736), - [anon_sym_private] = ACTIONS(4736), - [anon_sym_internal] = ACTIONS(4736), - [anon_sym_protected] = ACTIONS(4736), - [anon_sym_tailrec] = ACTIONS(4736), - [anon_sym_operator] = ACTIONS(4736), - [anon_sym_infix] = ACTIONS(4736), - [anon_sym_inline] = ACTIONS(4736), - [anon_sym_external] = ACTIONS(4736), - [sym_property_modifier] = ACTIONS(4736), - [anon_sym_abstract] = ACTIONS(4736), - [anon_sym_final] = ACTIONS(4736), - [anon_sym_open] = ACTIONS(4736), - [anon_sym_vararg] = ACTIONS(4736), - [anon_sym_noinline] = ACTIONS(4736), - [anon_sym_crossinline] = ACTIONS(4736), - [anon_sym_expect] = ACTIONS(4736), - [anon_sym_actual] = ACTIONS(4736), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4738), - [sym_safe_nav] = ACTIONS(4738), - [sym_multiline_comment] = ACTIONS(3), - }, - [3382] = { - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_RBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_RPAREN] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(6742), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_DASH_GT] = ACTIONS(4437), - [sym_label] = ACTIONS(4437), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_while] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_PLUS_EQ] = ACTIONS(4437), - [anon_sym_DASH_EQ] = ACTIONS(4437), - [anon_sym_STAR_EQ] = ACTIONS(4437), - [anon_sym_SLASH_EQ] = ACTIONS(4437), - [anon_sym_PERCENT_EQ] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4435), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_suspend] = ACTIONS(4435), - [anon_sym_sealed] = ACTIONS(4435), - [anon_sym_annotation] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_override] = ACTIONS(4435), - [anon_sym_lateinit] = ACTIONS(4435), - [anon_sym_public] = ACTIONS(4435), - [anon_sym_private] = ACTIONS(4435), - [anon_sym_internal] = ACTIONS(4435), - [anon_sym_protected] = ACTIONS(4435), - [anon_sym_tailrec] = ACTIONS(4435), - [anon_sym_operator] = ACTIONS(4435), - [anon_sym_infix] = ACTIONS(4435), - [anon_sym_inline] = ACTIONS(4435), - [anon_sym_external] = ACTIONS(4435), - [sym_property_modifier] = ACTIONS(4435), - [anon_sym_abstract] = ACTIONS(4435), - [anon_sym_final] = ACTIONS(4435), - [anon_sym_open] = ACTIONS(4435), - [anon_sym_vararg] = ACTIONS(4435), - [anon_sym_noinline] = ACTIONS(4435), - [anon_sym_crossinline] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), + [3382] = { + [sym_type_constraints] = STATE(3645), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, [3383] = { - [sym__alpha_identifier] = ACTIONS(4215), - [anon_sym_AT] = ACTIONS(4217), - [anon_sym_COLON] = ACTIONS(4215), - [anon_sym_LBRACK] = ACTIONS(4217), - [anon_sym_as] = ACTIONS(4215), - [anon_sym_EQ] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4217), - [anon_sym_COMMA] = ACTIONS(4217), - [anon_sym_by] = ACTIONS(4215), - [anon_sym_LT] = ACTIONS(4215), - [anon_sym_GT] = ACTIONS(4215), - [anon_sym_where] = ACTIONS(4215), - [anon_sym_DOT] = ACTIONS(4215), - [anon_sym_SEMI] = ACTIONS(4217), - [anon_sym_get] = ACTIONS(4215), - [anon_sym_set] = ACTIONS(4215), - [anon_sym_AMP] = ACTIONS(4215), - [sym__quest] = ACTIONS(4215), - [anon_sym_STAR] = ACTIONS(4215), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4215), - [anon_sym_DOT_DOT] = ACTIONS(4217), - [anon_sym_QMARK_COLON] = ACTIONS(4217), - [anon_sym_AMP_AMP] = ACTIONS(4217), - [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4215), - [anon_sym_COLON_COLON] = ACTIONS(4217), - [anon_sym_PLUS_EQ] = ACTIONS(4217), - [anon_sym_DASH_EQ] = ACTIONS(4217), - [anon_sym_STAR_EQ] = ACTIONS(4217), - [anon_sym_SLASH_EQ] = ACTIONS(4217), - [anon_sym_PERCENT_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ] = ACTIONS(4215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ] = ACTIONS(4215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), - [anon_sym_LT_EQ] = ACTIONS(4217), - [anon_sym_GT_EQ] = ACTIONS(4217), - [anon_sym_BANGin] = ACTIONS(4217), - [anon_sym_is] = ACTIONS(4215), - [anon_sym_BANGis] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4215), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_SLASH] = ACTIONS(4215), - [anon_sym_PERCENT] = ACTIONS(4215), - [anon_sym_as_QMARK] = ACTIONS(4217), - [anon_sym_PLUS_PLUS] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4217), - [anon_sym_suspend] = ACTIONS(4215), - [anon_sym_sealed] = ACTIONS(4215), - [anon_sym_annotation] = ACTIONS(4215), - [anon_sym_data] = ACTIONS(4215), - [anon_sym_inner] = ACTIONS(4215), - [anon_sym_value] = ACTIONS(4215), - [anon_sym_override] = ACTIONS(4215), - [anon_sym_lateinit] = ACTIONS(4215), - [anon_sym_public] = ACTIONS(4215), - [anon_sym_private] = ACTIONS(4215), - [anon_sym_internal] = ACTIONS(4215), - [anon_sym_protected] = ACTIONS(4215), - [anon_sym_tailrec] = ACTIONS(4215), - [anon_sym_operator] = ACTIONS(4215), - [anon_sym_infix] = ACTIONS(4215), - [anon_sym_inline] = ACTIONS(4215), - [anon_sym_external] = ACTIONS(4215), - [sym_property_modifier] = ACTIONS(4215), - [anon_sym_abstract] = ACTIONS(4215), - [anon_sym_final] = ACTIONS(4215), - [anon_sym_open] = ACTIONS(4215), - [anon_sym_vararg] = ACTIONS(4215), - [anon_sym_noinline] = ACTIONS(4215), - [anon_sym_crossinline] = ACTIONS(4215), - [anon_sym_expect] = ACTIONS(4215), - [anon_sym_actual] = ACTIONS(4215), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4217), - [sym__automatic_semicolon] = ACTIONS(4217), - [sym_safe_nav] = ACTIONS(4217), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3646), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [3384] = { - [aux_sym_user_type_repeat1] = STATE(3429), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_COMMA] = ACTIONS(4227), - [anon_sym_by] = ACTIONS(4225), - [anon_sym_LT] = ACTIONS(4225), - [anon_sym_GT] = ACTIONS(4225), - [anon_sym_where] = ACTIONS(4225), - [anon_sym_DOT] = ACTIONS(6884), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [anon_sym_AMP] = ACTIONS(4225), - [sym__quest] = ACTIONS(4225), - [anon_sym_STAR] = ACTIONS(4225), - [sym_label] = ACTIONS(4227), - [anon_sym_in] = ACTIONS(4225), - [anon_sym_DOT_DOT] = ACTIONS(4227), - [anon_sym_QMARK_COLON] = ACTIONS(4227), - [anon_sym_AMP_AMP] = ACTIONS(4227), - [anon_sym_PIPE_PIPE] = ACTIONS(4227), - [anon_sym_else] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_PLUS_EQ] = ACTIONS(4227), - [anon_sym_DASH_EQ] = ACTIONS(4227), - [anon_sym_STAR_EQ] = ACTIONS(4227), - [anon_sym_SLASH_EQ] = ACTIONS(4227), - [anon_sym_PERCENT_EQ] = ACTIONS(4227), - [anon_sym_BANG_EQ] = ACTIONS(4225), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4227), - [anon_sym_EQ_EQ] = ACTIONS(4225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4227), - [anon_sym_LT_EQ] = ACTIONS(4227), - [anon_sym_GT_EQ] = ACTIONS(4227), - [anon_sym_BANGin] = ACTIONS(4227), - [anon_sym_is] = ACTIONS(4225), - [anon_sym_BANGis] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_SLASH] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_as_QMARK] = ACTIONS(4227), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG_BANG] = ACTIONS(4227), - [anon_sym_suspend] = ACTIONS(4225), - [anon_sym_sealed] = ACTIONS(4225), - [anon_sym_annotation] = ACTIONS(4225), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_override] = ACTIONS(4225), - [anon_sym_lateinit] = ACTIONS(4225), - [anon_sym_public] = ACTIONS(4225), - [anon_sym_private] = ACTIONS(4225), - [anon_sym_internal] = ACTIONS(4225), - [anon_sym_protected] = ACTIONS(4225), - [anon_sym_tailrec] = ACTIONS(4225), - [anon_sym_operator] = ACTIONS(4225), - [anon_sym_infix] = ACTIONS(4225), - [anon_sym_inline] = ACTIONS(4225), - [anon_sym_external] = ACTIONS(4225), - [sym_property_modifier] = ACTIONS(4225), - [anon_sym_abstract] = ACTIONS(4225), - [anon_sym_final] = ACTIONS(4225), - [anon_sym_open] = ACTIONS(4225), - [anon_sym_vararg] = ACTIONS(4225), - [anon_sym_noinline] = ACTIONS(4225), - [anon_sym_crossinline] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4227), - [sym__automatic_semicolon] = ACTIONS(4227), - [sym_safe_nav] = ACTIONS(4227), + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [3385] = { - [sym_enum_class_body] = STATE(3559), - [sym__alpha_identifier] = ACTIONS(4772), - [anon_sym_AT] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_RBRACK] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4772), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4772), - [anon_sym_GT] = ACTIONS(4772), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4772), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_get] = ACTIONS(4772), - [anon_sym_set] = ACTIONS(4772), - [anon_sym_STAR] = ACTIONS(4772), - [anon_sym_DASH_GT] = ACTIONS(4774), - [sym_label] = ACTIONS(4774), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_while] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_QMARK_COLON] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_else] = ACTIONS(4772), - [anon_sym_COLON_COLON] = ACTIONS(4774), - [anon_sym_PLUS_EQ] = ACTIONS(4774), - [anon_sym_DASH_EQ] = ACTIONS(4774), - [anon_sym_STAR_EQ] = ACTIONS(4774), - [anon_sym_SLASH_EQ] = ACTIONS(4774), - [anon_sym_PERCENT_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4772), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_BANGin] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4772), - [anon_sym_BANGis] = ACTIONS(4774), - [anon_sym_PLUS] = ACTIONS(4772), - [anon_sym_DASH] = ACTIONS(4772), - [anon_sym_SLASH] = ACTIONS(4772), - [anon_sym_PERCENT] = ACTIONS(4772), - [anon_sym_as_QMARK] = ACTIONS(4774), - [anon_sym_PLUS_PLUS] = ACTIONS(4774), - [anon_sym_DASH_DASH] = ACTIONS(4774), - [anon_sym_BANG_BANG] = ACTIONS(4774), - [anon_sym_suspend] = ACTIONS(4772), - [anon_sym_sealed] = ACTIONS(4772), - [anon_sym_annotation] = ACTIONS(4772), - [anon_sym_data] = ACTIONS(4772), - [anon_sym_inner] = ACTIONS(4772), - [anon_sym_value] = ACTIONS(4772), - [anon_sym_override] = ACTIONS(4772), - [anon_sym_lateinit] = ACTIONS(4772), - [anon_sym_public] = ACTIONS(4772), - [anon_sym_private] = ACTIONS(4772), - [anon_sym_internal] = ACTIONS(4772), - [anon_sym_protected] = ACTIONS(4772), - [anon_sym_tailrec] = ACTIONS(4772), - [anon_sym_operator] = ACTIONS(4772), - [anon_sym_infix] = ACTIONS(4772), - [anon_sym_inline] = ACTIONS(4772), - [anon_sym_external] = ACTIONS(4772), - [sym_property_modifier] = ACTIONS(4772), - [anon_sym_abstract] = ACTIONS(4772), - [anon_sym_final] = ACTIONS(4772), - [anon_sym_open] = ACTIONS(4772), - [anon_sym_vararg] = ACTIONS(4772), - [anon_sym_noinline] = ACTIONS(4772), - [anon_sym_crossinline] = ACTIONS(4772), - [anon_sym_expect] = ACTIONS(4772), - [anon_sym_actual] = ACTIONS(4772), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4774), - [sym_safe_nav] = ACTIONS(4774), + [sym_type_constraints] = STATE(3759), + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3386] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3090), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3090), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(6836), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_type_constraints] = STATE(3752), + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [3387] = { - [sym__alpha_identifier] = ACTIONS(4800), - [anon_sym_AT] = ACTIONS(4802), - [anon_sym_LBRACK] = ACTIONS(4802), - [anon_sym_RBRACK] = ACTIONS(4802), - [anon_sym_as] = ACTIONS(4800), - [anon_sym_EQ] = ACTIONS(4800), - [anon_sym_LBRACE] = ACTIONS(4802), - [anon_sym_RBRACE] = ACTIONS(4802), - [anon_sym_LPAREN] = ACTIONS(4802), - [anon_sym_COMMA] = ACTIONS(4802), - [anon_sym_RPAREN] = ACTIONS(4802), - [anon_sym_by] = ACTIONS(4800), - [anon_sym_LT] = ACTIONS(4800), - [anon_sym_GT] = ACTIONS(4800), - [anon_sym_where] = ACTIONS(4800), - [anon_sym_DOT] = ACTIONS(4800), - [anon_sym_SEMI] = ACTIONS(4802), - [anon_sym_get] = ACTIONS(4800), - [anon_sym_set] = ACTIONS(4800), - [anon_sym_STAR] = ACTIONS(4800), - [anon_sym_DASH_GT] = ACTIONS(4802), - [sym_label] = ACTIONS(4802), - [anon_sym_in] = ACTIONS(4800), - [anon_sym_while] = ACTIONS(4800), - [anon_sym_DOT_DOT] = ACTIONS(4802), - [anon_sym_QMARK_COLON] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_else] = ACTIONS(4800), - [anon_sym_COLON_COLON] = ACTIONS(4802), - [anon_sym_PLUS_EQ] = ACTIONS(4802), - [anon_sym_DASH_EQ] = ACTIONS(4802), - [anon_sym_STAR_EQ] = ACTIONS(4802), - [anon_sym_SLASH_EQ] = ACTIONS(4802), - [anon_sym_PERCENT_EQ] = ACTIONS(4802), - [anon_sym_BANG_EQ] = ACTIONS(4800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4802), - [anon_sym_EQ_EQ] = ACTIONS(4800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4802), - [anon_sym_LT_EQ] = ACTIONS(4802), - [anon_sym_GT_EQ] = ACTIONS(4802), - [anon_sym_BANGin] = ACTIONS(4802), - [anon_sym_is] = ACTIONS(4800), - [anon_sym_BANGis] = ACTIONS(4802), - [anon_sym_PLUS] = ACTIONS(4800), - [anon_sym_DASH] = ACTIONS(4800), - [anon_sym_SLASH] = ACTIONS(4800), - [anon_sym_PERCENT] = ACTIONS(4800), - [anon_sym_as_QMARK] = ACTIONS(4802), - [anon_sym_PLUS_PLUS] = ACTIONS(4802), - [anon_sym_DASH_DASH] = ACTIONS(4802), - [anon_sym_BANG_BANG] = ACTIONS(4802), - [anon_sym_suspend] = ACTIONS(4800), - [anon_sym_sealed] = ACTIONS(4800), - [anon_sym_annotation] = ACTIONS(4800), - [anon_sym_data] = ACTIONS(4800), - [anon_sym_inner] = ACTIONS(4800), - [anon_sym_value] = ACTIONS(4800), - [anon_sym_override] = ACTIONS(4800), - [anon_sym_lateinit] = ACTIONS(4800), - [anon_sym_public] = ACTIONS(4800), - [anon_sym_private] = ACTIONS(4800), - [anon_sym_internal] = ACTIONS(4800), - [anon_sym_protected] = ACTIONS(4800), - [anon_sym_tailrec] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(4800), - [anon_sym_infix] = ACTIONS(4800), - [anon_sym_inline] = ACTIONS(4800), - [anon_sym_external] = ACTIONS(4800), - [sym_property_modifier] = ACTIONS(4800), - [anon_sym_abstract] = ACTIONS(4800), - [anon_sym_final] = ACTIONS(4800), - [anon_sym_open] = ACTIONS(4800), - [anon_sym_vararg] = ACTIONS(4800), - [anon_sym_noinline] = ACTIONS(4800), - [anon_sym_crossinline] = ACTIONS(4800), - [anon_sym_expect] = ACTIONS(4800), - [anon_sym_actual] = ACTIONS(4800), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4802), - [sym_safe_nav] = ACTIONS(4802), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), [sym_multiline_comment] = ACTIONS(3), }, [3388] = { - [sym_class_body] = STATE(3559), - [sym__alpha_identifier] = ACTIONS(4772), - [anon_sym_AT] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_RBRACK] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4772), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4772), - [anon_sym_GT] = ACTIONS(4772), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4772), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_get] = ACTIONS(4772), - [anon_sym_set] = ACTIONS(4772), - [anon_sym_STAR] = ACTIONS(4772), - [anon_sym_DASH_GT] = ACTIONS(4774), - [sym_label] = ACTIONS(4774), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_while] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_QMARK_COLON] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_else] = ACTIONS(4772), - [anon_sym_COLON_COLON] = ACTIONS(4774), - [anon_sym_PLUS_EQ] = ACTIONS(4774), - [anon_sym_DASH_EQ] = ACTIONS(4774), - [anon_sym_STAR_EQ] = ACTIONS(4774), - [anon_sym_SLASH_EQ] = ACTIONS(4774), - [anon_sym_PERCENT_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4772), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_BANGin] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4772), - [anon_sym_BANGis] = ACTIONS(4774), - [anon_sym_PLUS] = ACTIONS(4772), - [anon_sym_DASH] = ACTIONS(4772), - [anon_sym_SLASH] = ACTIONS(4772), - [anon_sym_PERCENT] = ACTIONS(4772), - [anon_sym_as_QMARK] = ACTIONS(4774), - [anon_sym_PLUS_PLUS] = ACTIONS(4774), - [anon_sym_DASH_DASH] = ACTIONS(4774), - [anon_sym_BANG_BANG] = ACTIONS(4774), - [anon_sym_suspend] = ACTIONS(4772), - [anon_sym_sealed] = ACTIONS(4772), - [anon_sym_annotation] = ACTIONS(4772), - [anon_sym_data] = ACTIONS(4772), - [anon_sym_inner] = ACTIONS(4772), - [anon_sym_value] = ACTIONS(4772), - [anon_sym_override] = ACTIONS(4772), - [anon_sym_lateinit] = ACTIONS(4772), - [anon_sym_public] = ACTIONS(4772), - [anon_sym_private] = ACTIONS(4772), - [anon_sym_internal] = ACTIONS(4772), - [anon_sym_protected] = ACTIONS(4772), - [anon_sym_tailrec] = ACTIONS(4772), - [anon_sym_operator] = ACTIONS(4772), - [anon_sym_infix] = ACTIONS(4772), - [anon_sym_inline] = ACTIONS(4772), - [anon_sym_external] = ACTIONS(4772), - [sym_property_modifier] = ACTIONS(4772), - [anon_sym_abstract] = ACTIONS(4772), - [anon_sym_final] = ACTIONS(4772), - [anon_sym_open] = ACTIONS(4772), - [anon_sym_vararg] = ACTIONS(4772), - [anon_sym_noinline] = ACTIONS(4772), - [anon_sym_crossinline] = ACTIONS(4772), - [anon_sym_expect] = ACTIONS(4772), - [anon_sym_actual] = ACTIONS(4772), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4774), - [sym_safe_nav] = ACTIONS(4774), - [sym_multiline_comment] = ACTIONS(3), - }, - [3389] = { - [sym__alpha_identifier] = ACTIONS(4647), - [anon_sym_AT] = ACTIONS(4649), - [anon_sym_LBRACK] = ACTIONS(4649), - [anon_sym_RBRACK] = ACTIONS(4649), - [anon_sym_as] = ACTIONS(4647), - [anon_sym_EQ] = ACTIONS(4647), - [anon_sym_LBRACE] = ACTIONS(4649), - [anon_sym_RBRACE] = ACTIONS(4649), - [anon_sym_LPAREN] = ACTIONS(4649), - [anon_sym_COMMA] = ACTIONS(4649), - [anon_sym_RPAREN] = ACTIONS(4649), - [anon_sym_by] = ACTIONS(4647), - [anon_sym_LT] = ACTIONS(4647), - [anon_sym_GT] = ACTIONS(4647), - [anon_sym_where] = ACTIONS(4647), - [anon_sym_DOT] = ACTIONS(4647), - [anon_sym_SEMI] = ACTIONS(4649), - [anon_sym_get] = ACTIONS(4647), - [anon_sym_set] = ACTIONS(4647), - [anon_sym_STAR] = ACTIONS(4647), - [anon_sym_DASH_GT] = ACTIONS(4649), - [sym_label] = ACTIONS(4649), - [anon_sym_in] = ACTIONS(4647), - [anon_sym_while] = ACTIONS(4647), - [anon_sym_DOT_DOT] = ACTIONS(4649), - [anon_sym_QMARK_COLON] = ACTIONS(4649), - [anon_sym_AMP_AMP] = ACTIONS(4649), - [anon_sym_PIPE_PIPE] = ACTIONS(4649), - [anon_sym_else] = ACTIONS(4647), - [anon_sym_COLON_COLON] = ACTIONS(4649), - [anon_sym_PLUS_EQ] = ACTIONS(4649), - [anon_sym_DASH_EQ] = ACTIONS(4649), - [anon_sym_STAR_EQ] = ACTIONS(4649), - [anon_sym_SLASH_EQ] = ACTIONS(4649), - [anon_sym_PERCENT_EQ] = ACTIONS(4649), - [anon_sym_BANG_EQ] = ACTIONS(4647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4649), - [anon_sym_EQ_EQ] = ACTIONS(4647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4649), - [anon_sym_LT_EQ] = ACTIONS(4649), - [anon_sym_GT_EQ] = ACTIONS(4649), - [anon_sym_BANGin] = ACTIONS(4649), - [anon_sym_is] = ACTIONS(4647), - [anon_sym_BANGis] = ACTIONS(4649), - [anon_sym_PLUS] = ACTIONS(4647), - [anon_sym_DASH] = ACTIONS(4647), - [anon_sym_SLASH] = ACTIONS(4647), - [anon_sym_PERCENT] = ACTIONS(4647), - [anon_sym_as_QMARK] = ACTIONS(4649), - [anon_sym_PLUS_PLUS] = ACTIONS(4649), - [anon_sym_DASH_DASH] = ACTIONS(4649), - [anon_sym_BANG_BANG] = ACTIONS(4649), - [anon_sym_suspend] = ACTIONS(4647), - [anon_sym_sealed] = ACTIONS(4647), - [anon_sym_annotation] = ACTIONS(4647), - [anon_sym_data] = ACTIONS(4647), - [anon_sym_inner] = ACTIONS(4647), - [anon_sym_value] = ACTIONS(4647), - [anon_sym_override] = ACTIONS(4647), - [anon_sym_lateinit] = ACTIONS(4647), - [anon_sym_public] = ACTIONS(4647), - [anon_sym_private] = ACTIONS(4647), - [anon_sym_internal] = ACTIONS(4647), - [anon_sym_protected] = ACTIONS(4647), - [anon_sym_tailrec] = ACTIONS(4647), - [anon_sym_operator] = ACTIONS(4647), - [anon_sym_infix] = ACTIONS(4647), - [anon_sym_inline] = ACTIONS(4647), - [anon_sym_external] = ACTIONS(4647), - [sym_property_modifier] = ACTIONS(4647), - [anon_sym_abstract] = ACTIONS(4647), - [anon_sym_final] = ACTIONS(4647), - [anon_sym_open] = ACTIONS(4647), - [anon_sym_vararg] = ACTIONS(4647), - [anon_sym_noinline] = ACTIONS(4647), - [anon_sym_crossinline] = ACTIONS(4647), - [anon_sym_expect] = ACTIONS(4647), - [anon_sym_actual] = ACTIONS(4647), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4649), - [sym_safe_nav] = ACTIONS(4649), - [sym_multiline_comment] = ACTIONS(3), - }, - [3390] = { - [sym__alpha_identifier] = ACTIONS(4653), - [anon_sym_AT] = ACTIONS(4655), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_RBRACK] = ACTIONS(4655), - [anon_sym_as] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4655), - [anon_sym_RBRACE] = ACTIONS(4655), - [anon_sym_LPAREN] = ACTIONS(4655), - [anon_sym_COMMA] = ACTIONS(4655), - [anon_sym_RPAREN] = ACTIONS(4655), - [anon_sym_LT] = ACTIONS(4653), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_where] = ACTIONS(4653), - [anon_sym_DOT] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4655), - [anon_sym_get] = ACTIONS(4653), - [anon_sym_set] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_DASH_GT] = ACTIONS(4655), - [sym_label] = ACTIONS(4655), - [anon_sym_in] = ACTIONS(4653), - [anon_sym_while] = ACTIONS(4653), - [anon_sym_DOT_DOT] = ACTIONS(4655), - [anon_sym_QMARK_COLON] = ACTIONS(4655), - [anon_sym_AMP_AMP] = ACTIONS(4655), - [anon_sym_PIPE_PIPE] = ACTIONS(4655), - [anon_sym_else] = ACTIONS(4653), - [anon_sym_COLON_COLON] = ACTIONS(4655), - [anon_sym_PLUS_EQ] = ACTIONS(4655), - [anon_sym_DASH_EQ] = ACTIONS(4655), - [anon_sym_STAR_EQ] = ACTIONS(4655), - [anon_sym_SLASH_EQ] = ACTIONS(4655), - [anon_sym_PERCENT_EQ] = ACTIONS(4655), - [anon_sym_BANG_EQ] = ACTIONS(4653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4655), - [anon_sym_EQ_EQ] = ACTIONS(4653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4655), - [anon_sym_LT_EQ] = ACTIONS(4655), - [anon_sym_GT_EQ] = ACTIONS(4655), - [anon_sym_BANGin] = ACTIONS(4655), - [anon_sym_is] = ACTIONS(4653), - [anon_sym_BANGis] = ACTIONS(4655), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_as_QMARK] = ACTIONS(4655), - [anon_sym_PLUS_PLUS] = ACTIONS(4655), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_BANG_BANG] = ACTIONS(4655), - [anon_sym_suspend] = ACTIONS(4653), - [anon_sym_sealed] = ACTIONS(4653), - [anon_sym_annotation] = ACTIONS(4653), - [anon_sym_data] = ACTIONS(4653), - [anon_sym_inner] = ACTIONS(4653), - [anon_sym_value] = ACTIONS(4653), - [anon_sym_override] = ACTIONS(4653), - [anon_sym_lateinit] = ACTIONS(4653), - [anon_sym_public] = ACTIONS(4653), - [anon_sym_private] = ACTIONS(4653), - [anon_sym_internal] = ACTIONS(4653), - [anon_sym_protected] = ACTIONS(4653), - [anon_sym_tailrec] = ACTIONS(4653), - [anon_sym_operator] = ACTIONS(4653), - [anon_sym_infix] = ACTIONS(4653), - [anon_sym_inline] = ACTIONS(4653), - [anon_sym_external] = ACTIONS(4653), - [sym_property_modifier] = ACTIONS(4653), - [anon_sym_abstract] = ACTIONS(4653), - [anon_sym_final] = ACTIONS(4653), - [anon_sym_open] = ACTIONS(4653), - [anon_sym_vararg] = ACTIONS(4653), - [anon_sym_noinline] = ACTIONS(4653), - [anon_sym_crossinline] = ACTIONS(4653), - [anon_sym_expect] = ACTIONS(4653), - [anon_sym_actual] = ACTIONS(4653), - [sym_line_comment] = ACTIONS(3), - [anon_sym_L] = ACTIONS(6887), - [sym__backtick_identifier] = ACTIONS(4655), - [sym_safe_nav] = ACTIONS(4655), - [sym_multiline_comment] = ACTIONS(3), - }, - [3391] = { - [sym__alpha_identifier] = ACTIONS(4780), - [anon_sym_AT] = ACTIONS(4782), - [anon_sym_LBRACK] = ACTIONS(4782), - [anon_sym_RBRACK] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(4780), - [anon_sym_EQ] = ACTIONS(4780), - [anon_sym_LBRACE] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(4782), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_RPAREN] = ACTIONS(4782), - [anon_sym_by] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_where] = ACTIONS(4780), - [anon_sym_DOT] = ACTIONS(4780), - [anon_sym_SEMI] = ACTIONS(4782), - [anon_sym_get] = ACTIONS(4780), - [anon_sym_set] = ACTIONS(4780), - [anon_sym_STAR] = ACTIONS(4780), - [anon_sym_DASH_GT] = ACTIONS(4782), - [sym_label] = ACTIONS(4782), - [anon_sym_in] = ACTIONS(4780), - [anon_sym_while] = ACTIONS(4780), - [anon_sym_DOT_DOT] = ACTIONS(4782), - [anon_sym_QMARK_COLON] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4782), - [anon_sym_PIPE_PIPE] = ACTIONS(4782), - [anon_sym_else] = ACTIONS(4780), - [anon_sym_COLON_COLON] = ACTIONS(4782), - [anon_sym_PLUS_EQ] = ACTIONS(4782), - [anon_sym_DASH_EQ] = ACTIONS(4782), - [anon_sym_STAR_EQ] = ACTIONS(4782), - [anon_sym_SLASH_EQ] = ACTIONS(4782), - [anon_sym_PERCENT_EQ] = ACTIONS(4782), - [anon_sym_BANG_EQ] = ACTIONS(4780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4782), - [anon_sym_EQ_EQ] = ACTIONS(4780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4782), - [anon_sym_LT_EQ] = ACTIONS(4782), - [anon_sym_GT_EQ] = ACTIONS(4782), - [anon_sym_BANGin] = ACTIONS(4782), - [anon_sym_is] = ACTIONS(4780), - [anon_sym_BANGis] = ACTIONS(4782), - [anon_sym_PLUS] = ACTIONS(4780), - [anon_sym_DASH] = ACTIONS(4780), - [anon_sym_SLASH] = ACTIONS(4780), - [anon_sym_PERCENT] = ACTIONS(4780), - [anon_sym_as_QMARK] = ACTIONS(4782), - [anon_sym_PLUS_PLUS] = ACTIONS(4782), - [anon_sym_DASH_DASH] = ACTIONS(4782), - [anon_sym_BANG_BANG] = ACTIONS(4782), - [anon_sym_suspend] = ACTIONS(4780), - [anon_sym_sealed] = ACTIONS(4780), - [anon_sym_annotation] = ACTIONS(4780), - [anon_sym_data] = ACTIONS(4780), - [anon_sym_inner] = ACTIONS(4780), - [anon_sym_value] = ACTIONS(4780), - [anon_sym_override] = ACTIONS(4780), - [anon_sym_lateinit] = ACTIONS(4780), - [anon_sym_public] = ACTIONS(4780), - [anon_sym_private] = ACTIONS(4780), - [anon_sym_internal] = ACTIONS(4780), - [anon_sym_protected] = ACTIONS(4780), - [anon_sym_tailrec] = ACTIONS(4780), - [anon_sym_operator] = ACTIONS(4780), - [anon_sym_infix] = ACTIONS(4780), - [anon_sym_inline] = ACTIONS(4780), - [anon_sym_external] = ACTIONS(4780), - [sym_property_modifier] = ACTIONS(4780), - [anon_sym_abstract] = ACTIONS(4780), - [anon_sym_final] = ACTIONS(4780), - [anon_sym_open] = ACTIONS(4780), - [anon_sym_vararg] = ACTIONS(4780), - [anon_sym_noinline] = ACTIONS(4780), - [anon_sym_crossinline] = ACTIONS(4780), - [anon_sym_expect] = ACTIONS(4780), - [anon_sym_actual] = ACTIONS(4780), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4782), - [sym_safe_nav] = ACTIONS(4782), - [sym_multiline_comment] = ACTIONS(3), - }, - [3392] = { - [sym_enum_class_body] = STATE(3605), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_RBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_RPAREN] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_DASH_GT] = ACTIONS(4459), - [sym_label] = ACTIONS(4459), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_while] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_suspend] = ACTIONS(4457), - [anon_sym_sealed] = ACTIONS(4457), - [anon_sym_annotation] = ACTIONS(4457), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_override] = ACTIONS(4457), - [anon_sym_lateinit] = ACTIONS(4457), - [anon_sym_public] = ACTIONS(4457), - [anon_sym_private] = ACTIONS(4457), - [anon_sym_internal] = ACTIONS(4457), - [anon_sym_protected] = ACTIONS(4457), - [anon_sym_tailrec] = ACTIONS(4457), - [anon_sym_operator] = ACTIONS(4457), - [anon_sym_infix] = ACTIONS(4457), - [anon_sym_inline] = ACTIONS(4457), - [anon_sym_external] = ACTIONS(4457), - [sym_property_modifier] = ACTIONS(4457), - [anon_sym_abstract] = ACTIONS(4457), - [anon_sym_final] = ACTIONS(4457), - [anon_sym_open] = ACTIONS(4457), - [anon_sym_vararg] = ACTIONS(4457), - [anon_sym_noinline] = ACTIONS(4457), - [anon_sym_crossinline] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), - [sym_multiline_comment] = ACTIONS(3), - }, - [3393] = { - [sym_type_constraints] = STATE(3917), - [sym_function_body] = STATE(3667), - [sym__block] = STATE(3620), + [sym_type_constraints] = STATE(3751), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(6889), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_RPAREN] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5594), + [anon_sym_where] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), @@ -397480,1235 +394873,1884 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, + [3389] = { + [sym_type_constraints] = STATE(3710), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [3390] = { + [sym_class_body] = STATE(3884), + [sym_type_constraints] = STATE(3739), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + }, + [3391] = { + [sym_function_body] = STATE(3252), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), + }, + [3392] = { + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6833), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [sym_label] = ACTIONS(4239), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4239), + [sym__automatic_semicolon] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), + [sym_multiline_comment] = ACTIONS(3), + }, + [3393] = { + [aux_sym_nullable_type_repeat1] = STATE(3597), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_by] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [sym__quest] = ACTIONS(6835), + [anon_sym_STAR] = ACTIONS(4303), + [sym_label] = ACTIONS(4305), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_DOT_DOT] = ACTIONS(4305), + [anon_sym_QMARK_COLON] = ACTIONS(4305), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4305), + [anon_sym_else] = ACTIONS(4303), + [anon_sym_COLON_COLON] = ACTIONS(4305), + [anon_sym_PLUS_EQ] = ACTIONS(4305), + [anon_sym_DASH_EQ] = ACTIONS(4305), + [anon_sym_STAR_EQ] = ACTIONS(4305), + [anon_sym_SLASH_EQ] = ACTIONS(4305), + [anon_sym_PERCENT_EQ] = ACTIONS(4305), + [anon_sym_BANG_EQ] = ACTIONS(4303), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4305), + [anon_sym_EQ_EQ] = ACTIONS(4303), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4305), + [anon_sym_LT_EQ] = ACTIONS(4305), + [anon_sym_GT_EQ] = ACTIONS(4305), + [anon_sym_BANGin] = ACTIONS(4305), + [anon_sym_is] = ACTIONS(4303), + [anon_sym_BANGis] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_as_QMARK] = ACTIONS(4305), + [anon_sym_PLUS_PLUS] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_BANG_BANG] = ACTIONS(4305), + [anon_sym_suspend] = ACTIONS(4303), + [anon_sym_sealed] = ACTIONS(4303), + [anon_sym_annotation] = ACTIONS(4303), + [anon_sym_data] = ACTIONS(4303), + [anon_sym_inner] = ACTIONS(4303), + [anon_sym_value] = ACTIONS(4303), + [anon_sym_override] = ACTIONS(4303), + [anon_sym_lateinit] = ACTIONS(4303), + [anon_sym_public] = ACTIONS(4303), + [anon_sym_private] = ACTIONS(4303), + [anon_sym_internal] = ACTIONS(4303), + [anon_sym_protected] = ACTIONS(4303), + [anon_sym_tailrec] = ACTIONS(4303), + [anon_sym_operator] = ACTIONS(4303), + [anon_sym_infix] = ACTIONS(4303), + [anon_sym_inline] = ACTIONS(4303), + [anon_sym_external] = ACTIONS(4303), + [sym_property_modifier] = ACTIONS(4303), + [anon_sym_abstract] = ACTIONS(4303), + [anon_sym_final] = ACTIONS(4303), + [anon_sym_open] = ACTIONS(4303), + [anon_sym_vararg] = ACTIONS(4303), + [anon_sym_noinline] = ACTIONS(4303), + [anon_sym_crossinline] = ACTIONS(4303), + [anon_sym_expect] = ACTIONS(4303), + [anon_sym_actual] = ACTIONS(4303), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), + [sym_multiline_comment] = ACTIONS(3), + }, [3394] = { - [sym_class_body] = STATE(3605), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_RBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_RPAREN] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_DASH_GT] = ACTIONS(4459), - [sym_label] = ACTIONS(4459), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_while] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_suspend] = ACTIONS(4457), - [anon_sym_sealed] = ACTIONS(4457), - [anon_sym_annotation] = ACTIONS(4457), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_override] = ACTIONS(4457), - [anon_sym_lateinit] = ACTIONS(4457), - [anon_sym_public] = ACTIONS(4457), - [anon_sym_private] = ACTIONS(4457), - [anon_sym_internal] = ACTIONS(4457), - [anon_sym_protected] = ACTIONS(4457), - [anon_sym_tailrec] = ACTIONS(4457), - [anon_sym_operator] = ACTIONS(4457), - [anon_sym_infix] = ACTIONS(4457), - [anon_sym_inline] = ACTIONS(4457), - [anon_sym_external] = ACTIONS(4457), - [sym_property_modifier] = ACTIONS(4457), - [anon_sym_abstract] = ACTIONS(4457), - [anon_sym_final] = ACTIONS(4457), - [anon_sym_open] = ACTIONS(4457), - [anon_sym_vararg] = ACTIONS(4457), - [anon_sym_noinline] = ACTIONS(4457), - [anon_sym_crossinline] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), + [sym_class_body] = STATE(3956), + [sym_type_constraints] = STATE(3721), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(5870), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, [3395] = { - [sym_type_arguments] = STATE(6730), - [sym__alpha_identifier] = ACTIONS(4219), - [anon_sym_AT] = ACTIONS(4221), - [anon_sym_COLON] = ACTIONS(6891), - [anon_sym_LBRACK] = ACTIONS(4221), - [anon_sym_as] = ACTIONS(4219), - [anon_sym_EQ] = ACTIONS(4219), - [anon_sym_LBRACE] = ACTIONS(4221), - [anon_sym_RBRACE] = ACTIONS(4221), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_COMMA] = ACTIONS(4221), - [anon_sym_by] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4219), - [anon_sym_GT] = ACTIONS(4219), - [anon_sym_where] = ACTIONS(4219), - [anon_sym_DOT] = ACTIONS(4219), - [anon_sym_SEMI] = ACTIONS(4221), - [anon_sym_get] = ACTIONS(4219), - [anon_sym_set] = ACTIONS(4219), - [sym__quest] = ACTIONS(4177), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4221), - [anon_sym_in] = ACTIONS(4219), - [anon_sym_DOT_DOT] = ACTIONS(4221), - [anon_sym_QMARK_COLON] = ACTIONS(4221), - [anon_sym_AMP_AMP] = ACTIONS(4221), - [anon_sym_PIPE_PIPE] = ACTIONS(4221), - [anon_sym_else] = ACTIONS(4219), - [anon_sym_COLON_COLON] = ACTIONS(4221), - [anon_sym_PLUS_EQ] = ACTIONS(4221), - [anon_sym_DASH_EQ] = ACTIONS(4221), - [anon_sym_STAR_EQ] = ACTIONS(4221), - [anon_sym_SLASH_EQ] = ACTIONS(4221), - [anon_sym_PERCENT_EQ] = ACTIONS(4221), - [anon_sym_BANG_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4221), - [anon_sym_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4221), - [anon_sym_LT_EQ] = ACTIONS(4221), - [anon_sym_GT_EQ] = ACTIONS(4221), - [anon_sym_BANGin] = ACTIONS(4221), - [anon_sym_is] = ACTIONS(4219), - [anon_sym_BANGis] = ACTIONS(4221), - [anon_sym_PLUS] = ACTIONS(4219), - [anon_sym_DASH] = ACTIONS(4219), - [anon_sym_SLASH] = ACTIONS(4219), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4221), - [anon_sym_PLUS_PLUS] = ACTIONS(4221), - [anon_sym_DASH_DASH] = ACTIONS(4221), - [anon_sym_BANG_BANG] = ACTIONS(4221), - [anon_sym_suspend] = ACTIONS(4219), - [anon_sym_sealed] = ACTIONS(4219), - [anon_sym_annotation] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4219), - [anon_sym_inner] = ACTIONS(4219), - [anon_sym_value] = ACTIONS(4219), - [anon_sym_override] = ACTIONS(4219), - [anon_sym_lateinit] = ACTIONS(4219), - [anon_sym_public] = ACTIONS(4219), - [anon_sym_private] = ACTIONS(4219), - [anon_sym_internal] = ACTIONS(4219), - [anon_sym_protected] = ACTIONS(4219), - [anon_sym_tailrec] = ACTIONS(4219), - [anon_sym_operator] = ACTIONS(4219), - [anon_sym_infix] = ACTIONS(4219), - [anon_sym_inline] = ACTIONS(4219), - [anon_sym_external] = ACTIONS(4219), - [sym_property_modifier] = ACTIONS(4219), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_final] = ACTIONS(4219), - [anon_sym_open] = ACTIONS(4219), - [anon_sym_vararg] = ACTIONS(4219), - [anon_sym_noinline] = ACTIONS(4219), - [anon_sym_crossinline] = ACTIONS(4219), - [anon_sym_expect] = ACTIONS(4219), - [anon_sym_actual] = ACTIONS(4219), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4221), - [sym__automatic_semicolon] = ACTIONS(4221), - [sym_safe_nav] = ACTIONS(4221), + [sym__alpha_identifier] = ACTIONS(5024), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_RBRACK] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_RPAREN] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_get] = ACTIONS(5024), + [anon_sym_set] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5026), + [sym_label] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_while] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_QMARK_COLON] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(6837), + [anon_sym_PLUS_EQ] = ACTIONS(5057), + [anon_sym_DASH_EQ] = ACTIONS(5057), + [anon_sym_STAR_EQ] = ACTIONS(5057), + [anon_sym_SLASH_EQ] = ACTIONS(5057), + [anon_sym_PERCENT_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_BANGin] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_BANGis] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_as_QMARK] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_BANG_BANG] = ACTIONS(5026), + [anon_sym_suspend] = ACTIONS(5024), + [anon_sym_sealed] = ACTIONS(5024), + [anon_sym_annotation] = ACTIONS(5024), + [anon_sym_data] = ACTIONS(5024), + [anon_sym_inner] = ACTIONS(5024), + [anon_sym_value] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_lateinit] = ACTIONS(5024), + [anon_sym_public] = ACTIONS(5024), + [anon_sym_private] = ACTIONS(5024), + [anon_sym_internal] = ACTIONS(5024), + [anon_sym_protected] = ACTIONS(5024), + [anon_sym_tailrec] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5024), + [anon_sym_infix] = ACTIONS(5024), + [anon_sym_inline] = ACTIONS(5024), + [anon_sym_external] = ACTIONS(5024), + [sym_property_modifier] = ACTIONS(5024), + [anon_sym_abstract] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_open] = ACTIONS(5024), + [anon_sym_vararg] = ACTIONS(5024), + [anon_sym_noinline] = ACTIONS(5024), + [anon_sym_crossinline] = ACTIONS(5024), + [anon_sym_expect] = ACTIONS(5024), + [anon_sym_actual] = ACTIONS(5024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5026), + [sym_safe_nav] = ACTIONS(5026), [sym_multiline_comment] = ACTIONS(3), }, [3396] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_where] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3151), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_while] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(6840), + [sym__alpha_identifier] = ACTIONS(4922), + [anon_sym_AT] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_RBRACK] = ACTIONS(4924), + [anon_sym_as] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4922), + [anon_sym_where] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_get] = ACTIONS(4922), + [anon_sym_set] = ACTIONS(4922), + [anon_sym_STAR] = ACTIONS(4922), + [anon_sym_DASH_GT] = ACTIONS(4924), + [sym_label] = ACTIONS(4924), + [anon_sym_in] = ACTIONS(4922), + [anon_sym_while] = ACTIONS(4922), + [anon_sym_DOT_DOT] = ACTIONS(4924), + [anon_sym_QMARK_COLON] = ACTIONS(4924), + [anon_sym_AMP_AMP] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4924), + [anon_sym_else] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_PLUS_EQ] = ACTIONS(4924), + [anon_sym_DASH_EQ] = ACTIONS(4924), + [anon_sym_STAR_EQ] = ACTIONS(4924), + [anon_sym_SLASH_EQ] = ACTIONS(4924), + [anon_sym_PERCENT_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4924), + [anon_sym_EQ_EQ] = ACTIONS(4922), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4924), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4924), + [anon_sym_BANGin] = ACTIONS(4924), + [anon_sym_is] = ACTIONS(4922), + [anon_sym_BANGis] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4922), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4922), + [anon_sym_PERCENT] = ACTIONS(4922), + [anon_sym_as_QMARK] = ACTIONS(4924), + [anon_sym_PLUS_PLUS] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4924), + [anon_sym_BANG_BANG] = ACTIONS(4924), + [anon_sym_suspend] = ACTIONS(4922), + [anon_sym_sealed] = ACTIONS(4922), + [anon_sym_annotation] = ACTIONS(4922), + [anon_sym_data] = ACTIONS(4922), + [anon_sym_inner] = ACTIONS(4922), + [anon_sym_value] = ACTIONS(4922), + [anon_sym_override] = ACTIONS(4922), + [anon_sym_lateinit] = ACTIONS(4922), + [anon_sym_public] = ACTIONS(4922), + [anon_sym_private] = ACTIONS(4922), + [anon_sym_internal] = ACTIONS(4922), + [anon_sym_protected] = ACTIONS(4922), + [anon_sym_tailrec] = ACTIONS(4922), + [anon_sym_operator] = ACTIONS(4922), + [anon_sym_infix] = ACTIONS(4922), + [anon_sym_inline] = ACTIONS(4922), + [anon_sym_external] = ACTIONS(4922), + [sym_property_modifier] = ACTIONS(4922), + [anon_sym_abstract] = ACTIONS(4922), + [anon_sym_final] = ACTIONS(4922), + [anon_sym_open] = ACTIONS(4922), + [anon_sym_vararg] = ACTIONS(4922), + [anon_sym_noinline] = ACTIONS(4922), + [anon_sym_crossinline] = ACTIONS(4922), + [anon_sym_expect] = ACTIONS(4922), + [anon_sym_actual] = ACTIONS(4922), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4924), + [sym_safe_nav] = ACTIONS(4924), [sym_multiline_comment] = ACTIONS(3), }, [3397] = { - [sym__alpha_identifier] = ACTIONS(4677), - [anon_sym_AT] = ACTIONS(4679), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_RBRACK] = ACTIONS(4679), - [anon_sym_as] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4679), - [anon_sym_RBRACE] = ACTIONS(4679), - [anon_sym_LPAREN] = ACTIONS(4679), - [anon_sym_COMMA] = ACTIONS(4679), - [anon_sym_RPAREN] = ACTIONS(4679), - [anon_sym_LT] = ACTIONS(4677), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_where] = ACTIONS(4677), - [anon_sym_DOT] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4679), - [anon_sym_get] = ACTIONS(4677), - [anon_sym_set] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_DASH_GT] = ACTIONS(4679), - [sym_label] = ACTIONS(4679), - [anon_sym_in] = ACTIONS(4677), - [anon_sym_while] = ACTIONS(4677), - [anon_sym_DOT_DOT] = ACTIONS(4679), - [anon_sym_QMARK_COLON] = ACTIONS(4679), - [anon_sym_AMP_AMP] = ACTIONS(4679), - [anon_sym_PIPE_PIPE] = ACTIONS(4679), - [anon_sym_else] = ACTIONS(4677), - [anon_sym_COLON_COLON] = ACTIONS(4679), - [anon_sym_PLUS_EQ] = ACTIONS(4679), - [anon_sym_DASH_EQ] = ACTIONS(4679), - [anon_sym_STAR_EQ] = ACTIONS(4679), - [anon_sym_SLASH_EQ] = ACTIONS(4679), - [anon_sym_PERCENT_EQ] = ACTIONS(4679), - [anon_sym_BANG_EQ] = ACTIONS(4677), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4679), - [anon_sym_EQ_EQ] = ACTIONS(4677), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4679), - [anon_sym_LT_EQ] = ACTIONS(4679), - [anon_sym_GT_EQ] = ACTIONS(4679), - [anon_sym_BANGin] = ACTIONS(4679), - [anon_sym_is] = ACTIONS(4677), - [anon_sym_BANGis] = ACTIONS(4679), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_as_QMARK] = ACTIONS(4679), - [anon_sym_PLUS_PLUS] = ACTIONS(4679), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_BANG_BANG] = ACTIONS(4679), - [anon_sym_suspend] = ACTIONS(4677), - [anon_sym_sealed] = ACTIONS(4677), - [anon_sym_annotation] = ACTIONS(4677), - [anon_sym_data] = ACTIONS(4677), - [anon_sym_inner] = ACTIONS(4677), - [anon_sym_value] = ACTIONS(4677), - [anon_sym_override] = ACTIONS(4677), - [anon_sym_lateinit] = ACTIONS(4677), - [anon_sym_public] = ACTIONS(4677), - [anon_sym_private] = ACTIONS(4677), - [anon_sym_internal] = ACTIONS(4677), - [anon_sym_protected] = ACTIONS(4677), - [anon_sym_tailrec] = ACTIONS(4677), - [anon_sym_operator] = ACTIONS(4677), - [anon_sym_infix] = ACTIONS(4677), - [anon_sym_inline] = ACTIONS(4677), - [anon_sym_external] = ACTIONS(4677), - [sym_property_modifier] = ACTIONS(4677), - [anon_sym_abstract] = ACTIONS(4677), - [anon_sym_final] = ACTIONS(4677), - [anon_sym_open] = ACTIONS(4677), - [anon_sym_vararg] = ACTIONS(4677), - [anon_sym_noinline] = ACTIONS(4677), - [anon_sym_crossinline] = ACTIONS(4677), - [anon_sym_expect] = ACTIONS(4677), - [anon_sym_actual] = ACTIONS(4677), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4679), - [sym_safe_nav] = ACTIONS(4679), + [sym__alpha_identifier] = ACTIONS(5031), + [anon_sym_AT] = ACTIONS(5033), + [anon_sym_LBRACK] = ACTIONS(5033), + [anon_sym_RBRACK] = ACTIONS(5033), + [anon_sym_as] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5033), + [anon_sym_RBRACE] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(5033), + [anon_sym_COMMA] = ACTIONS(5033), + [anon_sym_RPAREN] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5031), + [anon_sym_GT] = ACTIONS(5031), + [anon_sym_where] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_get] = ACTIONS(5031), + [anon_sym_set] = ACTIONS(5031), + [anon_sym_STAR] = ACTIONS(5031), + [anon_sym_DASH_GT] = ACTIONS(5033), + [sym_label] = ACTIONS(5033), + [anon_sym_in] = ACTIONS(5031), + [anon_sym_while] = ACTIONS(5031), + [anon_sym_DOT_DOT] = ACTIONS(5033), + [anon_sym_QMARK_COLON] = ACTIONS(5033), + [anon_sym_AMP_AMP] = ACTIONS(5033), + [anon_sym_PIPE_PIPE] = ACTIONS(5033), + [anon_sym_else] = ACTIONS(5031), + [anon_sym_COLON_COLON] = ACTIONS(5033), + [anon_sym_PLUS_EQ] = ACTIONS(5033), + [anon_sym_DASH_EQ] = ACTIONS(5033), + [anon_sym_STAR_EQ] = ACTIONS(5033), + [anon_sym_SLASH_EQ] = ACTIONS(5033), + [anon_sym_PERCENT_EQ] = ACTIONS(5033), + [anon_sym_BANG_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5033), + [anon_sym_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5033), + [anon_sym_LT_EQ] = ACTIONS(5033), + [anon_sym_GT_EQ] = ACTIONS(5033), + [anon_sym_BANGin] = ACTIONS(5033), + [anon_sym_is] = ACTIONS(5031), + [anon_sym_BANGis] = ACTIONS(5033), + [anon_sym_PLUS] = ACTIONS(5031), + [anon_sym_DASH] = ACTIONS(5031), + [anon_sym_SLASH] = ACTIONS(5031), + [anon_sym_PERCENT] = ACTIONS(5031), + [anon_sym_as_QMARK] = ACTIONS(5033), + [anon_sym_PLUS_PLUS] = ACTIONS(5033), + [anon_sym_DASH_DASH] = ACTIONS(5033), + [anon_sym_BANG_BANG] = ACTIONS(5033), + [anon_sym_suspend] = ACTIONS(5031), + [anon_sym_sealed] = ACTIONS(5031), + [anon_sym_annotation] = ACTIONS(5031), + [anon_sym_data] = ACTIONS(5031), + [anon_sym_inner] = ACTIONS(5031), + [anon_sym_value] = ACTIONS(5031), + [anon_sym_override] = ACTIONS(5031), + [anon_sym_lateinit] = ACTIONS(5031), + [anon_sym_public] = ACTIONS(5031), + [anon_sym_private] = ACTIONS(5031), + [anon_sym_internal] = ACTIONS(5031), + [anon_sym_protected] = ACTIONS(5031), + [anon_sym_tailrec] = ACTIONS(5031), + [anon_sym_operator] = ACTIONS(5031), + [anon_sym_infix] = ACTIONS(5031), + [anon_sym_inline] = ACTIONS(5031), + [anon_sym_external] = ACTIONS(5031), + [sym_property_modifier] = ACTIONS(5031), + [anon_sym_abstract] = ACTIONS(5031), + [anon_sym_final] = ACTIONS(5031), + [anon_sym_open] = ACTIONS(5031), + [anon_sym_vararg] = ACTIONS(5031), + [anon_sym_noinline] = ACTIONS(5031), + [anon_sym_crossinline] = ACTIONS(5031), + [anon_sym_expect] = ACTIONS(5031), + [anon_sym_actual] = ACTIONS(5031), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5033), + [sym_safe_nav] = ACTIONS(5033), [sym_multiline_comment] = ACTIONS(3), }, [3398] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3158), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_RPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3158), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(6858), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_DOT_DOT] = ACTIONS(6836), - [anon_sym_QMARK_COLON] = ACTIONS(6838), - [anon_sym_AMP_AMP] = ACTIONS(6868), - [anon_sym_PIPE_PIPE] = ACTIONS(6882), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_STAR_EQ] = ACTIONS(3158), - [anon_sym_SLASH_EQ] = ACTIONS(3158), - [anon_sym_PERCENT_EQ] = ACTIONS(3158), - [anon_sym_BANG_EQ] = ACTIONS(6870), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6872), - [anon_sym_EQ_EQ] = ACTIONS(6870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6872), - [anon_sym_LT_EQ] = ACTIONS(6860), - [anon_sym_GT_EQ] = ACTIONS(6860), - [anon_sym_BANGin] = ACTIONS(6862), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_RBRACK] = ACTIONS(5049), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5049), + [anon_sym_COMMA] = ACTIONS(5049), + [anon_sym_RPAREN] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_where] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_SEMI] = ACTIONS(5049), + [anon_sym_get] = ACTIONS(5047), + [anon_sym_set] = ACTIONS(5047), + [anon_sym_STAR] = ACTIONS(5047), + [anon_sym_DASH_GT] = ACTIONS(5049), + [sym_label] = ACTIONS(5049), + [anon_sym_in] = ACTIONS(5047), + [anon_sym_while] = ACTIONS(5047), + [anon_sym_DOT_DOT] = ACTIONS(5049), + [anon_sym_QMARK_COLON] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5049), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_else] = ACTIONS(5047), + [anon_sym_COLON_COLON] = ACTIONS(5049), + [anon_sym_PLUS_EQ] = ACTIONS(5049), + [anon_sym_DASH_EQ] = ACTIONS(5049), + [anon_sym_STAR_EQ] = ACTIONS(5049), + [anon_sym_SLASH_EQ] = ACTIONS(5049), + [anon_sym_PERCENT_EQ] = ACTIONS(5049), + [anon_sym_BANG_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5049), + [anon_sym_EQ_EQ] = ACTIONS(5047), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5049), + [anon_sym_LT_EQ] = ACTIONS(5049), + [anon_sym_GT_EQ] = ACTIONS(5049), + [anon_sym_BANGin] = ACTIONS(5049), + [anon_sym_is] = ACTIONS(5047), + [anon_sym_BANGis] = ACTIONS(5049), + [anon_sym_PLUS] = ACTIONS(5047), + [anon_sym_DASH] = ACTIONS(5047), + [anon_sym_SLASH] = ACTIONS(5047), + [anon_sym_PERCENT] = ACTIONS(5047), + [anon_sym_as_QMARK] = ACTIONS(5049), + [anon_sym_PLUS_PLUS] = ACTIONS(5049), + [anon_sym_DASH_DASH] = ACTIONS(5049), + [anon_sym_BANG_BANG] = ACTIONS(5049), + [anon_sym_suspend] = ACTIONS(5047), + [anon_sym_sealed] = ACTIONS(5047), + [anon_sym_annotation] = ACTIONS(5047), + [anon_sym_data] = ACTIONS(5047), + [anon_sym_inner] = ACTIONS(5047), + [anon_sym_value] = ACTIONS(5047), + [anon_sym_override] = ACTIONS(5047), + [anon_sym_lateinit] = ACTIONS(5047), + [anon_sym_public] = ACTIONS(5047), + [anon_sym_private] = ACTIONS(5047), + [anon_sym_internal] = ACTIONS(5047), + [anon_sym_protected] = ACTIONS(5047), + [anon_sym_tailrec] = ACTIONS(5047), + [anon_sym_operator] = ACTIONS(5047), + [anon_sym_infix] = ACTIONS(5047), + [anon_sym_inline] = ACTIONS(5047), + [anon_sym_external] = ACTIONS(5047), + [sym_property_modifier] = ACTIONS(5047), + [anon_sym_abstract] = ACTIONS(5047), + [anon_sym_final] = ACTIONS(5047), + [anon_sym_open] = ACTIONS(5047), + [anon_sym_vararg] = ACTIONS(5047), + [anon_sym_noinline] = ACTIONS(5047), + [anon_sym_crossinline] = ACTIONS(5047), + [anon_sym_expect] = ACTIONS(5047), + [anon_sym_actual] = ACTIONS(5047), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5049), + [sym_safe_nav] = ACTIONS(5049), [sym_multiline_comment] = ACTIONS(3), }, [3399] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_where] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3107), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(6858), - [anon_sym_while] = ACTIONS(3105), - [anon_sym_DOT_DOT] = ACTIONS(6836), - [anon_sym_QMARK_COLON] = ACTIONS(6838), - [anon_sym_AMP_AMP] = ACTIONS(6868), - [anon_sym_PIPE_PIPE] = ACTIONS(6882), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(6870), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6872), - [anon_sym_EQ_EQ] = ACTIONS(6870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6872), - [anon_sym_LT_EQ] = ACTIONS(6860), - [anon_sym_GT_EQ] = ACTIONS(6860), - [anon_sym_BANGin] = ACTIONS(6862), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4122), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_COLON] = ACTIONS(6550), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_EQ] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_RBRACE] = ACTIONS(4124), + [anon_sym_LPAREN] = ACTIONS(4124), + [anon_sym_by] = ACTIONS(4122), + [anon_sym_where] = ACTIONS(4122), + [anon_sym_object] = ACTIONS(4122), + [anon_sym_fun] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym_get] = ACTIONS(4122), + [anon_sym_set] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_super] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4124), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4122), + [anon_sym_if] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4122), + [anon_sym_when] = ACTIONS(4122), + [anon_sym_try] = ACTIONS(4122), + [anon_sym_throw] = ACTIONS(4122), + [anon_sym_return] = ACTIONS(4122), + [anon_sym_continue] = ACTIONS(4122), + [anon_sym_break] = ACTIONS(4122), + [anon_sym_COLON_COLON] = ACTIONS(4124), + [anon_sym_BANGin] = ACTIONS(4124), + [anon_sym_is] = ACTIONS(4122), + [anon_sym_BANGis] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4122), + [anon_sym_sealed] = ACTIONS(4122), + [anon_sym_annotation] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4122), + [anon_sym_inner] = ACTIONS(4122), + [anon_sym_value] = ACTIONS(4122), + [anon_sym_override] = ACTIONS(4122), + [anon_sym_lateinit] = ACTIONS(4122), + [anon_sym_public] = ACTIONS(4122), + [anon_sym_private] = ACTIONS(4122), + [anon_sym_internal] = ACTIONS(4122), + [anon_sym_protected] = ACTIONS(4122), + [anon_sym_tailrec] = ACTIONS(4122), + [anon_sym_operator] = ACTIONS(4122), + [anon_sym_infix] = ACTIONS(4122), + [anon_sym_inline] = ACTIONS(4122), + [anon_sym_external] = ACTIONS(4122), + [sym_property_modifier] = ACTIONS(4122), + [anon_sym_abstract] = ACTIONS(4122), + [anon_sym_final] = ACTIONS(4122), + [anon_sym_open] = ACTIONS(4122), + [anon_sym_vararg] = ACTIONS(4122), + [anon_sym_noinline] = ACTIONS(4122), + [anon_sym_crossinline] = ACTIONS(4122), + [anon_sym_expect] = ACTIONS(4122), + [anon_sym_actual] = ACTIONS(4122), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4124), + [anon_sym_continue_AT] = ACTIONS(4124), + [anon_sym_break_AT] = ACTIONS(4124), + [anon_sym_this_AT] = ACTIONS(4124), + [anon_sym_super_AT] = ACTIONS(4124), + [sym_real_literal] = ACTIONS(4124), + [sym_integer_literal] = ACTIONS(4122), + [sym_hex_literal] = ACTIONS(4124), + [sym_bin_literal] = ACTIONS(4124), + [anon_sym_true] = ACTIONS(4122), + [anon_sym_false] = ACTIONS(4122), + [anon_sym_SQUOTE] = ACTIONS(4124), + [sym__backtick_identifier] = ACTIONS(4124), + [sym__automatic_semicolon] = ACTIONS(4124), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4124), }, [3400] = { - [sym_type_arguments] = STATE(3600), - [sym__alpha_identifier] = ACTIONS(4177), - [anon_sym_AT] = ACTIONS(4179), - [anon_sym_LBRACK] = ACTIONS(4179), - [anon_sym_as] = ACTIONS(4177), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4179), - [anon_sym_RBRACE] = ACTIONS(4179), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_COMMA] = ACTIONS(4179), - [anon_sym_by] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(6893), - [anon_sym_GT] = ACTIONS(4177), - [anon_sym_where] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4177), - [anon_sym_SEMI] = ACTIONS(4179), - [anon_sym_get] = ACTIONS(4177), - [anon_sym_set] = ACTIONS(4177), - [anon_sym_AMP] = ACTIONS(4177), - [sym__quest] = ACTIONS(4177), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4177), - [anon_sym_DOT_DOT] = ACTIONS(4179), - [anon_sym_QMARK_COLON] = ACTIONS(4179), - [anon_sym_AMP_AMP] = ACTIONS(4179), - [anon_sym_PIPE_PIPE] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4177), - [anon_sym_COLON_COLON] = ACTIONS(4179), - [anon_sym_PLUS_EQ] = ACTIONS(4179), - [anon_sym_DASH_EQ] = ACTIONS(4179), - [anon_sym_STAR_EQ] = ACTIONS(4179), - [anon_sym_SLASH_EQ] = ACTIONS(4179), - [anon_sym_PERCENT_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), - [anon_sym_LT_EQ] = ACTIONS(4179), - [anon_sym_GT_EQ] = ACTIONS(4179), - [anon_sym_BANGin] = ACTIONS(4179), - [anon_sym_is] = ACTIONS(4177), - [anon_sym_BANGis] = ACTIONS(4179), - [anon_sym_PLUS] = ACTIONS(4177), - [anon_sym_DASH] = ACTIONS(4177), - [anon_sym_SLASH] = ACTIONS(4177), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4179), - [anon_sym_PLUS_PLUS] = ACTIONS(4179), - [anon_sym_DASH_DASH] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4179), - [anon_sym_suspend] = ACTIONS(4177), - [anon_sym_sealed] = ACTIONS(4177), - [anon_sym_annotation] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4177), - [anon_sym_inner] = ACTIONS(4177), - [anon_sym_value] = ACTIONS(4177), - [anon_sym_override] = ACTIONS(4177), - [anon_sym_lateinit] = ACTIONS(4177), - [anon_sym_public] = ACTIONS(4177), - [anon_sym_private] = ACTIONS(4177), - [anon_sym_internal] = ACTIONS(4177), - [anon_sym_protected] = ACTIONS(4177), - [anon_sym_tailrec] = ACTIONS(4177), - [anon_sym_operator] = ACTIONS(4177), - [anon_sym_infix] = ACTIONS(4177), - [anon_sym_inline] = ACTIONS(4177), - [anon_sym_external] = ACTIONS(4177), - [sym_property_modifier] = ACTIONS(4177), - [anon_sym_abstract] = ACTIONS(4177), - [anon_sym_final] = ACTIONS(4177), - [anon_sym_open] = ACTIONS(4177), - [anon_sym_vararg] = ACTIONS(4177), - [anon_sym_noinline] = ACTIONS(4177), - [anon_sym_crossinline] = ACTIONS(4177), - [anon_sym_expect] = ACTIONS(4177), - [anon_sym_actual] = ACTIONS(4177), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4179), - [sym__automatic_semicolon] = ACTIONS(4179), - [sym_safe_nav] = ACTIONS(4179), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(4449), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_DASH_GT] = ACTIONS(4449), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, [3401] = { - [sym_class_body] = STATE(3666), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_RBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_RPAREN] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [anon_sym_DASH_GT] = ACTIONS(4467), - [sym_label] = ACTIONS(4467), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_while] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_suspend] = ACTIONS(4465), - [anon_sym_sealed] = ACTIONS(4465), - [anon_sym_annotation] = ACTIONS(4465), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_override] = ACTIONS(4465), - [anon_sym_lateinit] = ACTIONS(4465), - [anon_sym_public] = ACTIONS(4465), - [anon_sym_private] = ACTIONS(4465), - [anon_sym_internal] = ACTIONS(4465), - [anon_sym_protected] = ACTIONS(4465), - [anon_sym_tailrec] = ACTIONS(4465), - [anon_sym_operator] = ACTIONS(4465), - [anon_sym_infix] = ACTIONS(4465), - [anon_sym_inline] = ACTIONS(4465), - [anon_sym_external] = ACTIONS(4465), - [sym_property_modifier] = ACTIONS(4465), - [anon_sym_abstract] = ACTIONS(4465), - [anon_sym_final] = ACTIONS(4465), - [anon_sym_open] = ACTIONS(4465), - [anon_sym_vararg] = ACTIONS(4465), - [anon_sym_noinline] = ACTIONS(4465), - [anon_sym_crossinline] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), + [sym__alpha_identifier] = ACTIONS(4846), + [anon_sym_AT] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_RBRACK] = ACTIONS(4848), + [anon_sym_as] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_where] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_get] = ACTIONS(4846), + [anon_sym_set] = ACTIONS(4846), + [anon_sym_STAR] = ACTIONS(4846), + [anon_sym_DASH_GT] = ACTIONS(4848), + [sym_label] = ACTIONS(4848), + [anon_sym_in] = ACTIONS(4846), + [anon_sym_while] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4848), + [anon_sym_QMARK_COLON] = ACTIONS(4848), + [anon_sym_AMP_AMP] = ACTIONS(4848), + [anon_sym_PIPE_PIPE] = ACTIONS(4848), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_COLON_COLON] = ACTIONS(4848), + [anon_sym_PLUS_EQ] = ACTIONS(4848), + [anon_sym_DASH_EQ] = ACTIONS(4848), + [anon_sym_STAR_EQ] = ACTIONS(4848), + [anon_sym_SLASH_EQ] = ACTIONS(4848), + [anon_sym_PERCENT_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4848), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_BANGin] = ACTIONS(4848), + [anon_sym_is] = ACTIONS(4846), + [anon_sym_BANGis] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4846), + [anon_sym_PERCENT] = ACTIONS(4846), + [anon_sym_as_QMARK] = ACTIONS(4848), + [anon_sym_PLUS_PLUS] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_BANG_BANG] = ACTIONS(4848), + [anon_sym_suspend] = ACTIONS(4846), + [anon_sym_sealed] = ACTIONS(4846), + [anon_sym_annotation] = ACTIONS(4846), + [anon_sym_data] = ACTIONS(4846), + [anon_sym_inner] = ACTIONS(4846), + [anon_sym_value] = ACTIONS(4846), + [anon_sym_override] = ACTIONS(4846), + [anon_sym_lateinit] = ACTIONS(4846), + [anon_sym_public] = ACTIONS(4846), + [anon_sym_private] = ACTIONS(4846), + [anon_sym_internal] = ACTIONS(4846), + [anon_sym_protected] = ACTIONS(4846), + [anon_sym_tailrec] = ACTIONS(4846), + [anon_sym_operator] = ACTIONS(4846), + [anon_sym_infix] = ACTIONS(4846), + [anon_sym_inline] = ACTIONS(4846), + [anon_sym_external] = ACTIONS(4846), + [sym_property_modifier] = ACTIONS(4846), + [anon_sym_abstract] = ACTIONS(4846), + [anon_sym_final] = ACTIONS(4846), + [anon_sym_open] = ACTIONS(4846), + [anon_sym_vararg] = ACTIONS(4846), + [anon_sym_noinline] = ACTIONS(4846), + [anon_sym_crossinline] = ACTIONS(4846), + [anon_sym_expect] = ACTIONS(4846), + [anon_sym_actual] = ACTIONS(4846), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4848), + [sym_safe_nav] = ACTIONS(4848), [sym_multiline_comment] = ACTIONS(3), }, [3402] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_where] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3103), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(6858), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_DOT_DOT] = ACTIONS(6836), - [anon_sym_QMARK_COLON] = ACTIONS(6838), - [anon_sym_AMP_AMP] = ACTIONS(6868), - [anon_sym_PIPE_PIPE] = ACTIONS(6882), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(6870), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6872), - [anon_sym_EQ_EQ] = ACTIONS(6870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6872), - [anon_sym_LT_EQ] = ACTIONS(6860), - [anon_sym_GT_EQ] = ACTIONS(6860), - [anon_sym_BANGin] = ACTIONS(6862), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym__alpha_identifier] = ACTIONS(5095), + [anon_sym_AT] = ACTIONS(5097), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5097), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_RPAREN] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_where] = ACTIONS(5095), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_SEMI] = ACTIONS(5097), + [anon_sym_get] = ACTIONS(5095), + [anon_sym_set] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5095), + [anon_sym_DASH_GT] = ACTIONS(5097), + [sym_label] = ACTIONS(5097), + [anon_sym_in] = ACTIONS(5095), + [anon_sym_while] = ACTIONS(5095), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_QMARK_COLON] = ACTIONS(5097), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_else] = ACTIONS(5095), + [anon_sym_COLON_COLON] = ACTIONS(5097), + [anon_sym_PLUS_EQ] = ACTIONS(5097), + [anon_sym_DASH_EQ] = ACTIONS(5097), + [anon_sym_STAR_EQ] = ACTIONS(5097), + [anon_sym_SLASH_EQ] = ACTIONS(5097), + [anon_sym_PERCENT_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_BANGin] = ACTIONS(5097), + [anon_sym_is] = ACTIONS(5095), + [anon_sym_BANGis] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5095), + [anon_sym_as_QMARK] = ACTIONS(5097), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_BANG_BANG] = ACTIONS(5097), + [anon_sym_suspend] = ACTIONS(5095), + [anon_sym_sealed] = ACTIONS(5095), + [anon_sym_annotation] = ACTIONS(5095), + [anon_sym_data] = ACTIONS(5095), + [anon_sym_inner] = ACTIONS(5095), + [anon_sym_value] = ACTIONS(5095), + [anon_sym_override] = ACTIONS(5095), + [anon_sym_lateinit] = ACTIONS(5095), + [anon_sym_public] = ACTIONS(5095), + [anon_sym_private] = ACTIONS(5095), + [anon_sym_internal] = ACTIONS(5095), + [anon_sym_protected] = ACTIONS(5095), + [anon_sym_tailrec] = ACTIONS(5095), + [anon_sym_operator] = ACTIONS(5095), + [anon_sym_infix] = ACTIONS(5095), + [anon_sym_inline] = ACTIONS(5095), + [anon_sym_external] = ACTIONS(5095), + [sym_property_modifier] = ACTIONS(5095), + [anon_sym_abstract] = ACTIONS(5095), + [anon_sym_final] = ACTIONS(5095), + [anon_sym_open] = ACTIONS(5095), + [anon_sym_vararg] = ACTIONS(5095), + [anon_sym_noinline] = ACTIONS(5095), + [anon_sym_crossinline] = ACTIONS(5095), + [anon_sym_expect] = ACTIONS(5095), + [anon_sym_actual] = ACTIONS(5095), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym__backtick_identifier] = ACTIONS(5097), + [sym_safe_nav] = ACTIONS(5097), [sym_multiline_comment] = ACTIONS(3), }, [3403] = { - [sym_class_body] = STATE(3665), - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_RBRACK] = ACTIONS(4639), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_RPAREN] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_DASH_GT] = ACTIONS(4639), - [sym_label] = ACTIONS(4639), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_while] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_suspend] = ACTIONS(4637), - [anon_sym_sealed] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4637), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_override] = ACTIONS(4637), - [anon_sym_lateinit] = ACTIONS(4637), - [anon_sym_public] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4637), - [anon_sym_internal] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4637), - [anon_sym_tailrec] = ACTIONS(4637), - [anon_sym_operator] = ACTIONS(4637), - [anon_sym_infix] = ACTIONS(4637), - [anon_sym_inline] = ACTIONS(4637), - [anon_sym_external] = ACTIONS(4637), - [sym_property_modifier] = ACTIONS(4637), - [anon_sym_abstract] = ACTIONS(4637), - [anon_sym_final] = ACTIONS(4637), - [anon_sym_open] = ACTIONS(4637), - [anon_sym_vararg] = ACTIONS(4637), - [anon_sym_noinline] = ACTIONS(4637), - [anon_sym_crossinline] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), [sym_multiline_comment] = ACTIONS(3), }, [3404] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(6895), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_while] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4242), + [sym__alpha_identifier] = ACTIONS(4826), + [anon_sym_AT] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_RBRACK] = ACTIONS(4828), + [anon_sym_as] = ACTIONS(4826), + [anon_sym_EQ] = ACTIONS(4826), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_RPAREN] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_where] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_get] = ACTIONS(4826), + [anon_sym_set] = ACTIONS(4826), + [anon_sym_STAR] = ACTIONS(4826), + [anon_sym_DASH_GT] = ACTIONS(4828), + [sym_label] = ACTIONS(4828), + [anon_sym_in] = ACTIONS(4826), + [anon_sym_while] = ACTIONS(4826), + [anon_sym_DOT_DOT] = ACTIONS(4828), + [anon_sym_QMARK_COLON] = ACTIONS(4828), + [anon_sym_AMP_AMP] = ACTIONS(4828), + [anon_sym_PIPE_PIPE] = ACTIONS(4828), + [anon_sym_else] = ACTIONS(4826), + [anon_sym_COLON_COLON] = ACTIONS(4828), + [anon_sym_PLUS_EQ] = ACTIONS(4828), + [anon_sym_DASH_EQ] = ACTIONS(4828), + [anon_sym_STAR_EQ] = ACTIONS(4828), + [anon_sym_SLASH_EQ] = ACTIONS(4828), + [anon_sym_PERCENT_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ] = ACTIONS(4826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4828), + [anon_sym_EQ_EQ] = ACTIONS(4826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4828), + [anon_sym_LT_EQ] = ACTIONS(4828), + [anon_sym_GT_EQ] = ACTIONS(4828), + [anon_sym_BANGin] = ACTIONS(4828), + [anon_sym_is] = ACTIONS(4826), + [anon_sym_BANGis] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4826), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4826), + [anon_sym_PERCENT] = ACTIONS(4826), + [anon_sym_as_QMARK] = ACTIONS(4828), + [anon_sym_PLUS_PLUS] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4828), + [anon_sym_BANG_BANG] = ACTIONS(4828), + [anon_sym_suspend] = ACTIONS(4826), + [anon_sym_sealed] = ACTIONS(4826), + [anon_sym_annotation] = ACTIONS(4826), + [anon_sym_data] = ACTIONS(4826), + [anon_sym_inner] = ACTIONS(4826), + [anon_sym_value] = ACTIONS(4826), + [anon_sym_override] = ACTIONS(4826), + [anon_sym_lateinit] = ACTIONS(4826), + [anon_sym_public] = ACTIONS(4826), + [anon_sym_private] = ACTIONS(4826), + [anon_sym_internal] = ACTIONS(4826), + [anon_sym_protected] = ACTIONS(4826), + [anon_sym_tailrec] = ACTIONS(4826), + [anon_sym_operator] = ACTIONS(4826), + [anon_sym_infix] = ACTIONS(4826), + [anon_sym_inline] = ACTIONS(4826), + [anon_sym_external] = ACTIONS(4826), + [sym_property_modifier] = ACTIONS(4826), + [anon_sym_abstract] = ACTIONS(4826), + [anon_sym_final] = ACTIONS(4826), + [anon_sym_open] = ACTIONS(4826), + [anon_sym_vararg] = ACTIONS(4826), + [anon_sym_noinline] = ACTIONS(4826), + [anon_sym_crossinline] = ACTIONS(4826), + [anon_sym_expect] = ACTIONS(4826), + [anon_sym_actual] = ACTIONS(4826), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4828), + [sym_safe_nav] = ACTIONS(4828), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), }, [3405] = { - [sym__alpha_identifier] = ACTIONS(4591), - [anon_sym_AT] = ACTIONS(4593), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_RBRACK] = ACTIONS(4593), - [anon_sym_as] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4593), - [anon_sym_RBRACE] = ACTIONS(4593), - [anon_sym_LPAREN] = ACTIONS(4593), - [anon_sym_COMMA] = ACTIONS(4593), - [anon_sym_RPAREN] = ACTIONS(4593), - [anon_sym_LT] = ACTIONS(4591), - [anon_sym_GT] = ACTIONS(4591), - [anon_sym_where] = ACTIONS(4591), - [anon_sym_DOT] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4593), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), - [anon_sym_STAR] = ACTIONS(4591), - [anon_sym_DASH_GT] = ACTIONS(4593), - [sym_label] = ACTIONS(4593), - [anon_sym_in] = ACTIONS(4591), - [anon_sym_while] = ACTIONS(4591), - [anon_sym_DOT_DOT] = ACTIONS(4593), - [anon_sym_QMARK_COLON] = ACTIONS(4593), - [anon_sym_AMP_AMP] = ACTIONS(4593), - [anon_sym_PIPE_PIPE] = ACTIONS(4593), - [anon_sym_else] = ACTIONS(4591), - [anon_sym_COLON_COLON] = ACTIONS(4593), - [anon_sym_PLUS_EQ] = ACTIONS(4593), - [anon_sym_DASH_EQ] = ACTIONS(4593), - [anon_sym_STAR_EQ] = ACTIONS(4593), - [anon_sym_SLASH_EQ] = ACTIONS(4593), - [anon_sym_PERCENT_EQ] = ACTIONS(4593), - [anon_sym_BANG_EQ] = ACTIONS(4591), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4593), - [anon_sym_EQ_EQ] = ACTIONS(4591), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4593), - [anon_sym_LT_EQ] = ACTIONS(4593), - [anon_sym_GT_EQ] = ACTIONS(4593), - [anon_sym_BANGin] = ACTIONS(4593), - [anon_sym_is] = ACTIONS(4591), - [anon_sym_BANGis] = ACTIONS(4593), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4591), - [anon_sym_SLASH] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_as_QMARK] = ACTIONS(4593), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), - [anon_sym_BANG_BANG] = ACTIONS(4593), - [anon_sym_suspend] = ACTIONS(4591), - [anon_sym_sealed] = ACTIONS(4591), - [anon_sym_annotation] = ACTIONS(4591), - [anon_sym_data] = ACTIONS(4591), - [anon_sym_inner] = ACTIONS(4591), - [anon_sym_value] = ACTIONS(4591), - [anon_sym_override] = ACTIONS(4591), - [anon_sym_lateinit] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_internal] = ACTIONS(4591), - [anon_sym_protected] = ACTIONS(4591), - [anon_sym_tailrec] = ACTIONS(4591), - [anon_sym_operator] = ACTIONS(4591), - [anon_sym_infix] = ACTIONS(4591), - [anon_sym_inline] = ACTIONS(4591), - [anon_sym_external] = ACTIONS(4591), - [sym_property_modifier] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_open] = ACTIONS(4591), - [anon_sym_vararg] = ACTIONS(4591), - [anon_sym_noinline] = ACTIONS(4591), - [anon_sym_crossinline] = ACTIONS(4591), - [anon_sym_expect] = ACTIONS(4591), - [anon_sym_actual] = ACTIONS(4591), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4593), - [sym_safe_nav] = ACTIONS(4593), - [sym_multiline_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(6840), + [sym__alpha_identifier] = ACTIONS(6842), + [anon_sym_AT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(6840), + [anon_sym_package] = ACTIONS(6842), + [anon_sym_import] = ACTIONS(6842), + [anon_sym_typealias] = ACTIONS(6842), + [anon_sym_class] = ACTIONS(6842), + [anon_sym_interface] = ACTIONS(6842), + [anon_sym_enum] = ACTIONS(6842), + [anon_sym_LBRACE] = ACTIONS(6840), + [anon_sym_LPAREN] = ACTIONS(6840), + [anon_sym_val] = ACTIONS(6842), + [anon_sym_var] = ACTIONS(6842), + [anon_sym_object] = ACTIONS(6842), + [anon_sym_fun] = ACTIONS(6842), + [anon_sym_get] = ACTIONS(6842), + [anon_sym_set] = ACTIONS(6842), + [anon_sym_this] = ACTIONS(6842), + [anon_sym_super] = ACTIONS(6842), + [anon_sym_STAR] = ACTIONS(6840), + [sym_label] = ACTIONS(6842), + [anon_sym_for] = ACTIONS(6842), + [anon_sym_while] = ACTIONS(6842), + [anon_sym_do] = ACTIONS(6842), + [anon_sym_null] = ACTIONS(6842), + [anon_sym_if] = ACTIONS(6842), + [anon_sym_when] = ACTIONS(6842), + [anon_sym_try] = ACTIONS(6842), + [anon_sym_throw] = ACTIONS(6842), + [anon_sym_return] = ACTIONS(6842), + [anon_sym_continue] = ACTIONS(6842), + [anon_sym_break] = ACTIONS(6842), + [anon_sym_COLON_COLON] = ACTIONS(6840), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6842), + [anon_sym_PLUS_PLUS] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(6840), + [anon_sym_BANG] = ACTIONS(6840), + [anon_sym_suspend] = ACTIONS(6842), + [anon_sym_sealed] = ACTIONS(6842), + [anon_sym_annotation] = ACTIONS(6842), + [anon_sym_data] = ACTIONS(6842), + [anon_sym_inner] = ACTIONS(6842), + [anon_sym_value] = ACTIONS(6842), + [anon_sym_override] = ACTIONS(6842), + [anon_sym_lateinit] = ACTIONS(6842), + [anon_sym_public] = ACTIONS(6842), + [anon_sym_private] = ACTIONS(6842), + [anon_sym_internal] = ACTIONS(6842), + [anon_sym_protected] = ACTIONS(6842), + [anon_sym_tailrec] = ACTIONS(6842), + [anon_sym_operator] = ACTIONS(6842), + [anon_sym_infix] = ACTIONS(6842), + [anon_sym_inline] = ACTIONS(6842), + [anon_sym_external] = ACTIONS(6842), + [sym_property_modifier] = ACTIONS(6842), + [anon_sym_abstract] = ACTIONS(6842), + [anon_sym_final] = ACTIONS(6842), + [anon_sym_open] = ACTIONS(6842), + [anon_sym_vararg] = ACTIONS(6842), + [anon_sym_noinline] = ACTIONS(6842), + [anon_sym_crossinline] = ACTIONS(6842), + [anon_sym_expect] = ACTIONS(6842), + [anon_sym_actual] = ACTIONS(6842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6840), + [anon_sym_continue_AT] = ACTIONS(6840), + [anon_sym_break_AT] = ACTIONS(6840), + [anon_sym_this_AT] = ACTIONS(6840), + [anon_sym_super_AT] = ACTIONS(6840), + [sym_real_literal] = ACTIONS(6840), + [sym_integer_literal] = ACTIONS(6842), + [sym_hex_literal] = ACTIONS(6840), + [sym_bin_literal] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(6842), + [anon_sym_false] = ACTIONS(6842), + [anon_sym_SQUOTE] = ACTIONS(6840), + [sym__backtick_identifier] = ACTIONS(6840), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6840), }, [3406] = { - [sym__alpha_identifier] = ACTIONS(4495), - [anon_sym_AT] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_RBRACK] = ACTIONS(4497), - [anon_sym_as] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4495), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_COMMA] = ACTIONS(4497), - [anon_sym_RPAREN] = ACTIONS(4497), - [anon_sym_by] = ACTIONS(4495), - [anon_sym_LT] = ACTIONS(4495), - [anon_sym_GT] = ACTIONS(4495), - [anon_sym_where] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4495), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_get] = ACTIONS(4495), - [anon_sym_set] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [anon_sym_DASH_GT] = ACTIONS(4497), - [sym_label] = ACTIONS(4497), - [anon_sym_in] = ACTIONS(4495), - [anon_sym_while] = ACTIONS(4495), - [anon_sym_DOT_DOT] = ACTIONS(4497), - [anon_sym_QMARK_COLON] = ACTIONS(4497), - [anon_sym_AMP_AMP] = ACTIONS(4497), - [anon_sym_PIPE_PIPE] = ACTIONS(4497), - [anon_sym_else] = ACTIONS(4495), - [anon_sym_COLON_COLON] = ACTIONS(4497), - [anon_sym_PLUS_EQ] = ACTIONS(4497), - [anon_sym_DASH_EQ] = ACTIONS(4497), - [anon_sym_STAR_EQ] = ACTIONS(4497), - [anon_sym_SLASH_EQ] = ACTIONS(4497), - [anon_sym_PERCENT_EQ] = ACTIONS(4497), - [anon_sym_BANG_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4497), - [anon_sym_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4497), - [anon_sym_LT_EQ] = ACTIONS(4497), - [anon_sym_GT_EQ] = ACTIONS(4497), - [anon_sym_BANGin] = ACTIONS(4497), - [anon_sym_is] = ACTIONS(4495), - [anon_sym_BANGis] = ACTIONS(4497), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_SLASH] = ACTIONS(4495), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4497), - [anon_sym_PLUS_PLUS] = ACTIONS(4497), - [anon_sym_DASH_DASH] = ACTIONS(4497), - [anon_sym_BANG_BANG] = ACTIONS(4497), - [anon_sym_suspend] = ACTIONS(4495), - [anon_sym_sealed] = ACTIONS(4495), - [anon_sym_annotation] = ACTIONS(4495), - [anon_sym_data] = ACTIONS(4495), - [anon_sym_inner] = ACTIONS(4495), - [anon_sym_value] = ACTIONS(4495), - [anon_sym_override] = ACTIONS(4495), - [anon_sym_lateinit] = ACTIONS(4495), - [anon_sym_public] = ACTIONS(4495), - [anon_sym_private] = ACTIONS(4495), - [anon_sym_internal] = ACTIONS(4495), - [anon_sym_protected] = ACTIONS(4495), - [anon_sym_tailrec] = ACTIONS(4495), - [anon_sym_operator] = ACTIONS(4495), - [anon_sym_infix] = ACTIONS(4495), - [anon_sym_inline] = ACTIONS(4495), - [anon_sym_external] = ACTIONS(4495), - [sym_property_modifier] = ACTIONS(4495), - [anon_sym_abstract] = ACTIONS(4495), - [anon_sym_final] = ACTIONS(4495), - [anon_sym_open] = ACTIONS(4495), - [anon_sym_vararg] = ACTIONS(4495), - [anon_sym_noinline] = ACTIONS(4495), - [anon_sym_crossinline] = ACTIONS(4495), - [anon_sym_expect] = ACTIONS(4495), - [anon_sym_actual] = ACTIONS(4495), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4497), - [sym_safe_nav] = ACTIONS(4497), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_DASH_GT] = ACTIONS(4469), + [sym_label] = ACTIONS(4469), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_while] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), [sym_multiline_comment] = ACTIONS(3), }, [3407] = { - [sym__alpha_identifier] = ACTIONS(4685), - [anon_sym_AT] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_RBRACK] = ACTIONS(4687), - [anon_sym_as] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_RBRACE] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_COMMA] = ACTIONS(4687), - [anon_sym_RPAREN] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4685), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_where] = ACTIONS(4685), - [anon_sym_DOT] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_get] = ACTIONS(4685), - [anon_sym_set] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [anon_sym_DASH_GT] = ACTIONS(4687), - [sym_label] = ACTIONS(4687), - [anon_sym_in] = ACTIONS(4685), - [anon_sym_while] = ACTIONS(4685), - [anon_sym_DOT_DOT] = ACTIONS(4687), - [anon_sym_QMARK_COLON] = ACTIONS(4687), - [anon_sym_AMP_AMP] = ACTIONS(4687), - [anon_sym_PIPE_PIPE] = ACTIONS(4687), - [anon_sym_else] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4687), - [anon_sym_PLUS_EQ] = ACTIONS(4687), - [anon_sym_DASH_EQ] = ACTIONS(4687), - [anon_sym_STAR_EQ] = ACTIONS(4687), - [anon_sym_SLASH_EQ] = ACTIONS(4687), - [anon_sym_PERCENT_EQ] = ACTIONS(4687), - [anon_sym_BANG_EQ] = ACTIONS(4685), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4687), - [anon_sym_EQ_EQ] = ACTIONS(4685), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4687), - [anon_sym_LT_EQ] = ACTIONS(4687), - [anon_sym_GT_EQ] = ACTIONS(4687), - [anon_sym_BANGin] = ACTIONS(4687), - [anon_sym_is] = ACTIONS(4685), - [anon_sym_BANGis] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_as_QMARK] = ACTIONS(4687), - [anon_sym_PLUS_PLUS] = ACTIONS(4687), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_BANG_BANG] = ACTIONS(4687), - [anon_sym_suspend] = ACTIONS(4685), - [anon_sym_sealed] = ACTIONS(4685), - [anon_sym_annotation] = ACTIONS(4685), - [anon_sym_data] = ACTIONS(4685), - [anon_sym_inner] = ACTIONS(4685), - [anon_sym_value] = ACTIONS(4685), - [anon_sym_override] = ACTIONS(4685), - [anon_sym_lateinit] = ACTIONS(4685), - [anon_sym_public] = ACTIONS(4685), - [anon_sym_private] = ACTIONS(4685), - [anon_sym_internal] = ACTIONS(4685), - [anon_sym_protected] = ACTIONS(4685), - [anon_sym_tailrec] = ACTIONS(4685), - [anon_sym_operator] = ACTIONS(4685), - [anon_sym_infix] = ACTIONS(4685), - [anon_sym_inline] = ACTIONS(4685), - [anon_sym_external] = ACTIONS(4685), - [sym_property_modifier] = ACTIONS(4685), - [anon_sym_abstract] = ACTIONS(4685), - [anon_sym_final] = ACTIONS(4685), - [anon_sym_open] = ACTIONS(4685), - [anon_sym_vararg] = ACTIONS(4685), - [anon_sym_noinline] = ACTIONS(4685), - [anon_sym_crossinline] = ACTIONS(4685), - [anon_sym_expect] = ACTIONS(4685), - [anon_sym_actual] = ACTIONS(4685), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4687), - [sym_safe_nav] = ACTIONS(4687), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4206), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4206), + [anon_sym_continue_AT] = ACTIONS(4206), + [anon_sym_break_AT] = ACTIONS(4206), + [anon_sym_this_AT] = ACTIONS(4206), + [anon_sym_super_AT] = ACTIONS(4206), + [sym_real_literal] = ACTIONS(4206), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4206), + [sym_bin_literal] = ACTIONS(4206), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4206), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4206), }, [3408] = { - [sym_enum_class_body] = STATE(3652), + [aux_sym_type_constraints_repeat1] = STATE(3417), + [sym__alpha_identifier] = ACTIONS(4339), + [anon_sym_AT] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [anon_sym_EQ] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym_COMMA] = ACTIONS(6844), + [anon_sym_by] = ACTIONS(4339), + [anon_sym_object] = ACTIONS(4339), + [anon_sym_fun] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym_get] = ACTIONS(4339), + [anon_sym_set] = ACTIONS(4339), + [anon_sym_this] = ACTIONS(4339), + [anon_sym_super] = ACTIONS(4339), + [anon_sym_STAR] = ACTIONS(4341), + [sym_label] = ACTIONS(4339), + [anon_sym_in] = ACTIONS(4339), + [anon_sym_null] = ACTIONS(4339), + [anon_sym_if] = ACTIONS(4339), + [anon_sym_else] = ACTIONS(4339), + [anon_sym_when] = ACTIONS(4339), + [anon_sym_try] = ACTIONS(4339), + [anon_sym_throw] = ACTIONS(4339), + [anon_sym_return] = ACTIONS(4339), + [anon_sym_continue] = ACTIONS(4339), + [anon_sym_break] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(4339), + [anon_sym_BANGis] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4339), + [anon_sym_suspend] = ACTIONS(4339), + [anon_sym_sealed] = ACTIONS(4339), + [anon_sym_annotation] = ACTIONS(4339), + [anon_sym_data] = ACTIONS(4339), + [anon_sym_inner] = ACTIONS(4339), + [anon_sym_value] = ACTIONS(4339), + [anon_sym_override] = ACTIONS(4339), + [anon_sym_lateinit] = ACTIONS(4339), + [anon_sym_public] = ACTIONS(4339), + [anon_sym_private] = ACTIONS(4339), + [anon_sym_internal] = ACTIONS(4339), + [anon_sym_protected] = ACTIONS(4339), + [anon_sym_tailrec] = ACTIONS(4339), + [anon_sym_operator] = ACTIONS(4339), + [anon_sym_infix] = ACTIONS(4339), + [anon_sym_inline] = ACTIONS(4339), + [anon_sym_external] = ACTIONS(4339), + [sym_property_modifier] = ACTIONS(4339), + [anon_sym_abstract] = ACTIONS(4339), + [anon_sym_final] = ACTIONS(4339), + [anon_sym_open] = ACTIONS(4339), + [anon_sym_vararg] = ACTIONS(4339), + [anon_sym_noinline] = ACTIONS(4339), + [anon_sym_crossinline] = ACTIONS(4339), + [anon_sym_expect] = ACTIONS(4339), + [anon_sym_actual] = ACTIONS(4339), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4341), + [anon_sym_continue_AT] = ACTIONS(4341), + [anon_sym_break_AT] = ACTIONS(4341), + [anon_sym_this_AT] = ACTIONS(4341), + [anon_sym_super_AT] = ACTIONS(4341), + [sym_real_literal] = ACTIONS(4341), + [sym_integer_literal] = ACTIONS(4339), + [sym_hex_literal] = ACTIONS(4341), + [sym_bin_literal] = ACTIONS(4341), + [anon_sym_true] = ACTIONS(4339), + [anon_sym_false] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4341), + [sym__backtick_identifier] = ACTIONS(4341), + [sym__automatic_semicolon] = ACTIONS(4341), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4341), + }, + [3409] = { + [sym_function_body] = STATE(3258), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(6846), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4277), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4277), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), + }, + [3410] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_DASH_GT] = ACTIONS(4262), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_while] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + }, + [3411] = { [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_RBRACK] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4284), [anon_sym_as] = ACTIONS(4281), [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_RPAREN] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_RPAREN] = ACTIONS(4284), [anon_sym_LT] = ACTIONS(4281), [anon_sym_GT] = ACTIONS(4281), [anon_sym_where] = ACTIONS(4281), [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4284), [anon_sym_get] = ACTIONS(4281), [anon_sym_set] = ACTIONS(4281), [anon_sym_STAR] = ACTIONS(4281), - [anon_sym_DASH_GT] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), + [anon_sym_DASH_GT] = ACTIONS(4284), + [sym_label] = ACTIONS(4284), [anon_sym_in] = ACTIONS(4281), [anon_sym_while] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4284), [anon_sym_PLUS] = ACTIONS(4281), [anon_sym_DASH] = ACTIONS(4281), [anon_sym_SLASH] = ACTIONS(4281), [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), [anon_sym_suspend] = ACTIONS(4281), [anon_sym_sealed] = ACTIONS(4281), [anon_sym_annotation] = ACTIONS(4281), @@ -398736,63 +396778,560 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(4281), [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), }, - [3409] = { - [sym_class_body] = STATE(3652), + [3412] = { + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(6848), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [3413] = { + [sym__alpha_identifier] = ACTIONS(4884), + [anon_sym_AT] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_RBRACK] = ACTIONS(4886), + [anon_sym_as] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4886), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4886), + [anon_sym_COMMA] = ACTIONS(4886), + [anon_sym_RPAREN] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_where] = ACTIONS(4884), + [anon_sym_DOT] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4886), + [anon_sym_get] = ACTIONS(4884), + [anon_sym_set] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(4886), + [sym_label] = ACTIONS(4886), + [anon_sym_in] = ACTIONS(4884), + [anon_sym_while] = ACTIONS(4884), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_QMARK_COLON] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_PIPE_PIPE] = ACTIONS(4886), + [anon_sym_else] = ACTIONS(4884), + [anon_sym_COLON_COLON] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4886), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(4884), + [anon_sym_BANGis] = ACTIONS(4886), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_as_QMARK] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4886), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_BANG_BANG] = ACTIONS(4886), + [anon_sym_suspend] = ACTIONS(4884), + [anon_sym_sealed] = ACTIONS(4884), + [anon_sym_annotation] = ACTIONS(4884), + [anon_sym_data] = ACTIONS(4884), + [anon_sym_inner] = ACTIONS(4884), + [anon_sym_value] = ACTIONS(4884), + [anon_sym_override] = ACTIONS(4884), + [anon_sym_lateinit] = ACTIONS(4884), + [anon_sym_public] = ACTIONS(4884), + [anon_sym_private] = ACTIONS(4884), + [anon_sym_internal] = ACTIONS(4884), + [anon_sym_protected] = ACTIONS(4884), + [anon_sym_tailrec] = ACTIONS(4884), + [anon_sym_operator] = ACTIONS(4884), + [anon_sym_infix] = ACTIONS(4884), + [anon_sym_inline] = ACTIONS(4884), + [anon_sym_external] = ACTIONS(4884), + [sym_property_modifier] = ACTIONS(4884), + [anon_sym_abstract] = ACTIONS(4884), + [anon_sym_final] = ACTIONS(4884), + [anon_sym_open] = ACTIONS(4884), + [anon_sym_vararg] = ACTIONS(4884), + [anon_sym_noinline] = ACTIONS(4884), + [anon_sym_crossinline] = ACTIONS(4884), + [anon_sym_expect] = ACTIONS(4884), + [anon_sym_actual] = ACTIONS(4884), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4886), + [sym_safe_nav] = ACTIONS(4886), + [sym_multiline_comment] = ACTIONS(3), + }, + [3414] = { + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [anon_sym_DASH_GT] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + }, + [3415] = { + [sym__alpha_identifier] = ACTIONS(5063), + [anon_sym_AT] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [anon_sym_RBRACK] = ACTIONS(5065), + [anon_sym_as] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5065), + [anon_sym_RBRACE] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5065), + [anon_sym_COMMA] = ACTIONS(5065), + [anon_sym_RPAREN] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5063), + [anon_sym_GT] = ACTIONS(5063), + [anon_sym_where] = ACTIONS(5063), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5063), + [anon_sym_STAR] = ACTIONS(5063), + [anon_sym_DASH_GT] = ACTIONS(5065), + [sym_label] = ACTIONS(5065), + [anon_sym_in] = ACTIONS(5063), + [anon_sym_while] = ACTIONS(5063), + [anon_sym_DOT_DOT] = ACTIONS(5065), + [anon_sym_QMARK_COLON] = ACTIONS(5065), + [anon_sym_AMP_AMP] = ACTIONS(5065), + [anon_sym_PIPE_PIPE] = ACTIONS(5065), + [anon_sym_else] = ACTIONS(5063), + [anon_sym_COLON_COLON] = ACTIONS(5065), + [anon_sym_PLUS_EQ] = ACTIONS(5065), + [anon_sym_DASH_EQ] = ACTIONS(5065), + [anon_sym_STAR_EQ] = ACTIONS(5065), + [anon_sym_SLASH_EQ] = ACTIONS(5065), + [anon_sym_PERCENT_EQ] = ACTIONS(5065), + [anon_sym_BANG_EQ] = ACTIONS(5063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5065), + [anon_sym_EQ_EQ] = ACTIONS(5063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5065), + [anon_sym_LT_EQ] = ACTIONS(5065), + [anon_sym_GT_EQ] = ACTIONS(5065), + [anon_sym_BANGin] = ACTIONS(5065), + [anon_sym_is] = ACTIONS(5063), + [anon_sym_BANGis] = ACTIONS(5065), + [anon_sym_PLUS] = ACTIONS(5063), + [anon_sym_DASH] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5063), + [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_as_QMARK] = ACTIONS(5065), + [anon_sym_PLUS_PLUS] = ACTIONS(5065), + [anon_sym_DASH_DASH] = ACTIONS(5065), + [anon_sym_BANG_BANG] = ACTIONS(5065), + [anon_sym_suspend] = ACTIONS(5063), + [anon_sym_sealed] = ACTIONS(5063), + [anon_sym_annotation] = ACTIONS(5063), + [anon_sym_data] = ACTIONS(5063), + [anon_sym_inner] = ACTIONS(5063), + [anon_sym_value] = ACTIONS(5063), + [anon_sym_override] = ACTIONS(5063), + [anon_sym_lateinit] = ACTIONS(5063), + [anon_sym_public] = ACTIONS(5063), + [anon_sym_private] = ACTIONS(5063), + [anon_sym_internal] = ACTIONS(5063), + [anon_sym_protected] = ACTIONS(5063), + [anon_sym_tailrec] = ACTIONS(5063), + [anon_sym_operator] = ACTIONS(5063), + [anon_sym_infix] = ACTIONS(5063), + [anon_sym_inline] = ACTIONS(5063), + [anon_sym_external] = ACTIONS(5063), + [sym_property_modifier] = ACTIONS(5063), + [anon_sym_abstract] = ACTIONS(5063), + [anon_sym_final] = ACTIONS(5063), + [anon_sym_open] = ACTIONS(5063), + [anon_sym_vararg] = ACTIONS(5063), + [anon_sym_noinline] = ACTIONS(5063), + [anon_sym_crossinline] = ACTIONS(5063), + [anon_sym_expect] = ACTIONS(5063), + [anon_sym_actual] = ACTIONS(5063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5065), + [sym_safe_nav] = ACTIONS(5065), + [sym_multiline_comment] = ACTIONS(3), + }, + [3416] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(5564), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_DASH_GT] = ACTIONS(4262), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_while] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + }, + [3417] = { + [aux_sym_type_constraints_repeat1] = STATE(3529), + [sym__alpha_identifier] = ACTIONS(4424), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_EQ] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(6844), + [anon_sym_by] = ACTIONS(4424), + [anon_sym_object] = ACTIONS(4424), + [anon_sym_fun] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym_get] = ACTIONS(4424), + [anon_sym_set] = ACTIONS(4424), + [anon_sym_this] = ACTIONS(4424), + [anon_sym_super] = ACTIONS(4424), + [anon_sym_STAR] = ACTIONS(4426), + [sym_label] = ACTIONS(4424), + [anon_sym_in] = ACTIONS(4424), + [anon_sym_null] = ACTIONS(4424), + [anon_sym_if] = ACTIONS(4424), + [anon_sym_else] = ACTIONS(4424), + [anon_sym_when] = ACTIONS(4424), + [anon_sym_try] = ACTIONS(4424), + [anon_sym_throw] = ACTIONS(4424), + [anon_sym_return] = ACTIONS(4424), + [anon_sym_continue] = ACTIONS(4424), + [anon_sym_break] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_BANGin] = ACTIONS(4426), + [anon_sym_is] = ACTIONS(4424), + [anon_sym_BANGis] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_PLUS_PLUS] = ACTIONS(4426), + [anon_sym_DASH_DASH] = ACTIONS(4426), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_suspend] = ACTIONS(4424), + [anon_sym_sealed] = ACTIONS(4424), + [anon_sym_annotation] = ACTIONS(4424), + [anon_sym_data] = ACTIONS(4424), + [anon_sym_inner] = ACTIONS(4424), + [anon_sym_value] = ACTIONS(4424), + [anon_sym_override] = ACTIONS(4424), + [anon_sym_lateinit] = ACTIONS(4424), + [anon_sym_public] = ACTIONS(4424), + [anon_sym_private] = ACTIONS(4424), + [anon_sym_internal] = ACTIONS(4424), + [anon_sym_protected] = ACTIONS(4424), + [anon_sym_tailrec] = ACTIONS(4424), + [anon_sym_operator] = ACTIONS(4424), + [anon_sym_infix] = ACTIONS(4424), + [anon_sym_inline] = ACTIONS(4424), + [anon_sym_external] = ACTIONS(4424), + [sym_property_modifier] = ACTIONS(4424), + [anon_sym_abstract] = ACTIONS(4424), + [anon_sym_final] = ACTIONS(4424), + [anon_sym_open] = ACTIONS(4424), + [anon_sym_vararg] = ACTIONS(4424), + [anon_sym_noinline] = ACTIONS(4424), + [anon_sym_crossinline] = ACTIONS(4424), + [anon_sym_expect] = ACTIONS(4424), + [anon_sym_actual] = ACTIONS(4424), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4426), + [anon_sym_continue_AT] = ACTIONS(4426), + [anon_sym_break_AT] = ACTIONS(4426), + [anon_sym_this_AT] = ACTIONS(4426), + [anon_sym_super_AT] = ACTIONS(4426), + [sym_real_literal] = ACTIONS(4426), + [sym_integer_literal] = ACTIONS(4424), + [sym_hex_literal] = ACTIONS(4426), + [sym_bin_literal] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4424), + [anon_sym_false] = ACTIONS(4424), + [anon_sym_SQUOTE] = ACTIONS(4426), + [sym__backtick_identifier] = ACTIONS(4426), + [sym__automatic_semicolon] = ACTIONS(4426), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4426), + }, + [3418] = { [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_RBRACK] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4284), [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_RPAREN] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5556), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_RPAREN] = ACTIONS(4284), [anon_sym_LT] = ACTIONS(4281), [anon_sym_GT] = ACTIONS(4281), [anon_sym_where] = ACTIONS(4281), [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4284), [anon_sym_get] = ACTIONS(4281), [anon_sym_set] = ACTIONS(4281), [anon_sym_STAR] = ACTIONS(4281), - [anon_sym_DASH_GT] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), + [anon_sym_DASH_GT] = ACTIONS(4284), + [sym_label] = ACTIONS(4284), [anon_sym_in] = ACTIONS(4281), [anon_sym_while] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4284), [anon_sym_PLUS] = ACTIONS(4281), [anon_sym_DASH] = ACTIONS(4281), [anon_sym_SLASH] = ACTIONS(4281), [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), [anon_sym_suspend] = ACTIONS(4281), [anon_sym_sealed] = ACTIONS(4281), [anon_sym_annotation] = ACTIONS(4281), @@ -398820,1564 +397359,1040 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(4281), [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - }, - [3410] = { - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_RBRACK] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(4327), - [anon_sym_LBRACE] = ACTIONS(4329), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_RPAREN] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4327), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [anon_sym_DASH_GT] = ACTIONS(4329), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_while] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - }, - [3411] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(6899), - [anon_sym_RPAREN] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_while] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [3412] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3170), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3170), - [anon_sym_RPAREN] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_where] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3170), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(6858), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_DOT_DOT] = ACTIONS(6836), - [anon_sym_QMARK_COLON] = ACTIONS(6838), - [anon_sym_AMP_AMP] = ACTIONS(6868), - [anon_sym_PIPE_PIPE] = ACTIONS(6882), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3170), - [anon_sym_DASH_EQ] = ACTIONS(3170), - [anon_sym_STAR_EQ] = ACTIONS(3170), - [anon_sym_SLASH_EQ] = ACTIONS(3170), - [anon_sym_PERCENT_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(6870), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6872), - [anon_sym_EQ_EQ] = ACTIONS(6870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6872), - [anon_sym_LT_EQ] = ACTIONS(6860), - [anon_sym_GT_EQ] = ACTIONS(6860), - [anon_sym_BANGin] = ACTIONS(6862), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [3413] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3194), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3194), - [anon_sym_RPAREN] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_where] = ACTIONS(3192), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3194), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(6858), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_DOT_DOT] = ACTIONS(6836), - [anon_sym_QMARK_COLON] = ACTIONS(6838), - [anon_sym_AMP_AMP] = ACTIONS(6868), - [anon_sym_PIPE_PIPE] = ACTIONS(6882), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3194), - [anon_sym_DASH_EQ] = ACTIONS(3194), - [anon_sym_STAR_EQ] = ACTIONS(3194), - [anon_sym_SLASH_EQ] = ACTIONS(3194), - [anon_sym_PERCENT_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ] = ACTIONS(6870), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6872), - [anon_sym_EQ_EQ] = ACTIONS(6870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6872), - [anon_sym_LT_EQ] = ACTIONS(6860), - [anon_sym_GT_EQ] = ACTIONS(6860), - [anon_sym_BANGin] = ACTIONS(6862), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), }, - [3414] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(6858), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(6836), - [anon_sym_QMARK_COLON] = ACTIONS(6838), - [anon_sym_AMP_AMP] = ACTIONS(6868), - [anon_sym_PIPE_PIPE] = ACTIONS(6882), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(6870), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6872), - [anon_sym_EQ_EQ] = ACTIONS(6870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6872), - [anon_sym_LT_EQ] = ACTIONS(6860), - [anon_sym_GT_EQ] = ACTIONS(6860), - [anon_sym_BANGin] = ACTIONS(6862), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [3419] = { + [sym__alpha_identifier] = ACTIONS(5139), + [anon_sym_AT] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_RBRACK] = ACTIONS(5141), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(5139), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_RPAREN] = ACTIONS(5141), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_where] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5139), + [anon_sym_SEMI] = ACTIONS(5141), + [anon_sym_get] = ACTIONS(5139), + [anon_sym_set] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [anon_sym_DASH_GT] = ACTIONS(5141), + [sym_label] = ACTIONS(5141), + [anon_sym_in] = ACTIONS(5139), + [anon_sym_while] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5141), + [anon_sym_QMARK_COLON] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_else] = ACTIONS(5139), + [anon_sym_COLON_COLON] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5141), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_BANGin] = ACTIONS(5141), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_BANGis] = ACTIONS(5141), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_as_QMARK] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_BANG_BANG] = ACTIONS(5141), + [anon_sym_suspend] = ACTIONS(5139), + [anon_sym_sealed] = ACTIONS(5139), + [anon_sym_annotation] = ACTIONS(5139), + [anon_sym_data] = ACTIONS(5139), + [anon_sym_inner] = ACTIONS(5139), + [anon_sym_value] = ACTIONS(5139), + [anon_sym_override] = ACTIONS(5139), + [anon_sym_lateinit] = ACTIONS(5139), + [anon_sym_public] = ACTIONS(5139), + [anon_sym_private] = ACTIONS(5139), + [anon_sym_internal] = ACTIONS(5139), + [anon_sym_protected] = ACTIONS(5139), + [anon_sym_tailrec] = ACTIONS(5139), + [anon_sym_operator] = ACTIONS(5139), + [anon_sym_infix] = ACTIONS(5139), + [anon_sym_inline] = ACTIONS(5139), + [anon_sym_external] = ACTIONS(5139), + [sym_property_modifier] = ACTIONS(5139), + [anon_sym_abstract] = ACTIONS(5139), + [anon_sym_final] = ACTIONS(5139), + [anon_sym_open] = ACTIONS(5139), + [anon_sym_vararg] = ACTIONS(5139), + [anon_sym_noinline] = ACTIONS(5139), + [anon_sym_crossinline] = ACTIONS(5139), + [anon_sym_expect] = ACTIONS(5139), + [anon_sym_actual] = ACTIONS(5139), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5141), + [sym_safe_nav] = ACTIONS(5141), [sym_multiline_comment] = ACTIONS(3), }, - [3415] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_where] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(6858), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_DOT_DOT] = ACTIONS(6836), - [anon_sym_QMARK_COLON] = ACTIONS(6838), - [anon_sym_AMP_AMP] = ACTIONS(6868), - [anon_sym_PIPE_PIPE] = ACTIONS(6882), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(6870), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6872), - [anon_sym_EQ_EQ] = ACTIONS(6870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6872), - [anon_sym_LT_EQ] = ACTIONS(6860), - [anon_sym_GT_EQ] = ACTIONS(6860), - [anon_sym_BANGin] = ACTIONS(6862), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [3420] = { + [sym__alpha_identifier] = ACTIONS(5073), + [anon_sym_AT] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_RBRACK] = ACTIONS(5075), + [anon_sym_as] = ACTIONS(5073), + [anon_sym_EQ] = ACTIONS(5073), + [anon_sym_LBRACE] = ACTIONS(5075), + [anon_sym_RBRACE] = ACTIONS(5075), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_RPAREN] = ACTIONS(5075), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_where] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_SEMI] = ACTIONS(5075), + [anon_sym_get] = ACTIONS(5073), + [anon_sym_set] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_DASH_GT] = ACTIONS(5075), + [sym_label] = ACTIONS(5075), + [anon_sym_in] = ACTIONS(5073), + [anon_sym_while] = ACTIONS(5073), + [anon_sym_DOT_DOT] = ACTIONS(5075), + [anon_sym_QMARK_COLON] = ACTIONS(5075), + [anon_sym_AMP_AMP] = ACTIONS(5075), + [anon_sym_PIPE_PIPE] = ACTIONS(5075), + [anon_sym_else] = ACTIONS(5073), + [anon_sym_COLON_COLON] = ACTIONS(5075), + [anon_sym_PLUS_EQ] = ACTIONS(5075), + [anon_sym_DASH_EQ] = ACTIONS(5075), + [anon_sym_STAR_EQ] = ACTIONS(5075), + [anon_sym_SLASH_EQ] = ACTIONS(5075), + [anon_sym_PERCENT_EQ] = ACTIONS(5075), + [anon_sym_BANG_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5075), + [anon_sym_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5075), + [anon_sym_LT_EQ] = ACTIONS(5075), + [anon_sym_GT_EQ] = ACTIONS(5075), + [anon_sym_BANGin] = ACTIONS(5075), + [anon_sym_is] = ACTIONS(5073), + [anon_sym_BANGis] = ACTIONS(5075), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5075), + [anon_sym_PLUS_PLUS] = ACTIONS(5075), + [anon_sym_DASH_DASH] = ACTIONS(5075), + [anon_sym_BANG_BANG] = ACTIONS(5075), + [anon_sym_suspend] = ACTIONS(5073), + [anon_sym_sealed] = ACTIONS(5073), + [anon_sym_annotation] = ACTIONS(5073), + [anon_sym_data] = ACTIONS(5073), + [anon_sym_inner] = ACTIONS(5073), + [anon_sym_value] = ACTIONS(5073), + [anon_sym_override] = ACTIONS(5073), + [anon_sym_lateinit] = ACTIONS(5073), + [anon_sym_public] = ACTIONS(5073), + [anon_sym_private] = ACTIONS(5073), + [anon_sym_internal] = ACTIONS(5073), + [anon_sym_protected] = ACTIONS(5073), + [anon_sym_tailrec] = ACTIONS(5073), + [anon_sym_operator] = ACTIONS(5073), + [anon_sym_infix] = ACTIONS(5073), + [anon_sym_inline] = ACTIONS(5073), + [anon_sym_external] = ACTIONS(5073), + [sym_property_modifier] = ACTIONS(5073), + [anon_sym_abstract] = ACTIONS(5073), + [anon_sym_final] = ACTIONS(5073), + [anon_sym_open] = ACTIONS(5073), + [anon_sym_vararg] = ACTIONS(5073), + [anon_sym_noinline] = ACTIONS(5073), + [anon_sym_crossinline] = ACTIONS(5073), + [anon_sym_expect] = ACTIONS(5073), + [anon_sym_actual] = ACTIONS(5073), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5075), + [sym_safe_nav] = ACTIONS(5075), [sym_multiline_comment] = ACTIONS(3), }, - [3416] = { - [sym_enum_class_body] = STATE(3604), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_RPAREN] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_DASH_GT] = ACTIONS(4425), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_while] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), + [3421] = { + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_RBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_RPAREN] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(6850), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [anon_sym_DASH_GT] = ACTIONS(5053), + [sym_label] = ACTIONS(5053), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_while] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_suspend] = ACTIONS(5051), + [anon_sym_sealed] = ACTIONS(5051), + [anon_sym_annotation] = ACTIONS(5051), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_override] = ACTIONS(5051), + [anon_sym_lateinit] = ACTIONS(5051), + [anon_sym_public] = ACTIONS(5051), + [anon_sym_private] = ACTIONS(5051), + [anon_sym_internal] = ACTIONS(5051), + [anon_sym_protected] = ACTIONS(5051), + [anon_sym_tailrec] = ACTIONS(5051), + [anon_sym_operator] = ACTIONS(5051), + [anon_sym_infix] = ACTIONS(5051), + [anon_sym_inline] = ACTIONS(5051), + [anon_sym_external] = ACTIONS(5051), + [sym_property_modifier] = ACTIONS(5051), + [anon_sym_abstract] = ACTIONS(5051), + [anon_sym_final] = ACTIONS(5051), + [anon_sym_open] = ACTIONS(5051), + [anon_sym_vararg] = ACTIONS(5051), + [anon_sym_noinline] = ACTIONS(5051), + [anon_sym_crossinline] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), [sym_multiline_comment] = ACTIONS(3), }, - [3417] = { - [aux_sym_user_type_repeat1] = STATE(3417), - [sym__alpha_identifier] = ACTIONS(4189), - [anon_sym_AT] = ACTIONS(4191), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_as] = ACTIONS(4189), - [anon_sym_EQ] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_by] = ACTIONS(4189), - [anon_sym_LT] = ACTIONS(4189), - [anon_sym_GT] = ACTIONS(4189), - [anon_sym_where] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(6903), - [anon_sym_SEMI] = ACTIONS(4191), - [anon_sym_get] = ACTIONS(4189), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [sym__quest] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [sym_label] = ACTIONS(4191), - [anon_sym_in] = ACTIONS(4189), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_QMARK_COLON] = ACTIONS(4191), - [anon_sym_AMP_AMP] = ACTIONS(4191), - [anon_sym_PIPE_PIPE] = ACTIONS(4191), - [anon_sym_else] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(4191), - [anon_sym_PLUS_EQ] = ACTIONS(4191), - [anon_sym_DASH_EQ] = ACTIONS(4191), - [anon_sym_STAR_EQ] = ACTIONS(4191), - [anon_sym_SLASH_EQ] = ACTIONS(4191), - [anon_sym_PERCENT_EQ] = ACTIONS(4191), - [anon_sym_BANG_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4191), - [anon_sym_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4191), - [anon_sym_LT_EQ] = ACTIONS(4191), - [anon_sym_GT_EQ] = ACTIONS(4191), - [anon_sym_BANGin] = ACTIONS(4191), - [anon_sym_is] = ACTIONS(4189), - [anon_sym_BANGis] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_SLASH] = ACTIONS(4189), - [anon_sym_PERCENT] = ACTIONS(4189), - [anon_sym_as_QMARK] = ACTIONS(4191), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_BANG_BANG] = ACTIONS(4191), - [anon_sym_suspend] = ACTIONS(4189), - [anon_sym_sealed] = ACTIONS(4189), - [anon_sym_annotation] = ACTIONS(4189), - [anon_sym_data] = ACTIONS(4189), - [anon_sym_inner] = ACTIONS(4189), - [anon_sym_value] = ACTIONS(4189), - [anon_sym_override] = ACTIONS(4189), - [anon_sym_lateinit] = ACTIONS(4189), - [anon_sym_public] = ACTIONS(4189), - [anon_sym_private] = ACTIONS(4189), - [anon_sym_internal] = ACTIONS(4189), - [anon_sym_protected] = ACTIONS(4189), - [anon_sym_tailrec] = ACTIONS(4189), - [anon_sym_operator] = ACTIONS(4189), - [anon_sym_infix] = ACTIONS(4189), - [anon_sym_inline] = ACTIONS(4189), - [anon_sym_external] = ACTIONS(4189), - [sym_property_modifier] = ACTIONS(4189), - [anon_sym_abstract] = ACTIONS(4189), - [anon_sym_final] = ACTIONS(4189), - [anon_sym_open] = ACTIONS(4189), - [anon_sym_vararg] = ACTIONS(4189), - [anon_sym_noinline] = ACTIONS(4189), - [anon_sym_crossinline] = ACTIONS(4189), - [anon_sym_expect] = ACTIONS(4189), - [anon_sym_actual] = ACTIONS(4189), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4191), - [sym__automatic_semicolon] = ACTIONS(4191), - [sym_safe_nav] = ACTIONS(4191), + [3422] = { + [sym__alpha_identifier] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1584), + [anon_sym_set] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_DASH_GT] = ACTIONS(1582), + [sym_label] = ACTIONS(1582), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_COLON_COLON] = ACTIONS(1582), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1584), + [anon_sym_inner] = ACTIONS(1584), + [anon_sym_value] = ACTIONS(1584), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1584), + [anon_sym_actual] = ACTIONS(1584), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), [sym_multiline_comment] = ACTIONS(3), }, - [3418] = { - [sym__alpha_identifier] = ACTIONS(4667), - [anon_sym_AT] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4669), - [anon_sym_RBRACK] = ACTIONS(4669), - [anon_sym_as] = ACTIONS(4667), - [anon_sym_EQ] = ACTIONS(4667), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_RBRACE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [anon_sym_by] = ACTIONS(4667), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4667), - [anon_sym_where] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_get] = ACTIONS(4667), - [anon_sym_set] = ACTIONS(4667), - [anon_sym_STAR] = ACTIONS(4667), - [anon_sym_DASH_GT] = ACTIONS(4669), - [sym_label] = ACTIONS(4669), - [anon_sym_in] = ACTIONS(4667), - [anon_sym_while] = ACTIONS(4667), - [anon_sym_DOT_DOT] = ACTIONS(4669), - [anon_sym_QMARK_COLON] = ACTIONS(4669), - [anon_sym_AMP_AMP] = ACTIONS(4669), - [anon_sym_PIPE_PIPE] = ACTIONS(4669), - [anon_sym_else] = ACTIONS(4667), - [anon_sym_COLON_COLON] = ACTIONS(4669), - [anon_sym_PLUS_EQ] = ACTIONS(4669), - [anon_sym_DASH_EQ] = ACTIONS(4669), - [anon_sym_STAR_EQ] = ACTIONS(4669), - [anon_sym_SLASH_EQ] = ACTIONS(4669), - [anon_sym_PERCENT_EQ] = ACTIONS(4669), - [anon_sym_BANG_EQ] = ACTIONS(4667), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4669), - [anon_sym_EQ_EQ] = ACTIONS(4667), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4669), - [anon_sym_LT_EQ] = ACTIONS(4669), - [anon_sym_GT_EQ] = ACTIONS(4669), - [anon_sym_BANGin] = ACTIONS(4669), - [anon_sym_is] = ACTIONS(4667), - [anon_sym_BANGis] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4667), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4667), - [anon_sym_PERCENT] = ACTIONS(4667), - [anon_sym_as_QMARK] = ACTIONS(4669), - [anon_sym_PLUS_PLUS] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4669), - [anon_sym_BANG_BANG] = ACTIONS(4669), - [anon_sym_suspend] = ACTIONS(4667), - [anon_sym_sealed] = ACTIONS(4667), - [anon_sym_annotation] = ACTIONS(4667), - [anon_sym_data] = ACTIONS(4667), - [anon_sym_inner] = ACTIONS(4667), - [anon_sym_value] = ACTIONS(4667), - [anon_sym_override] = ACTIONS(4667), - [anon_sym_lateinit] = ACTIONS(4667), - [anon_sym_public] = ACTIONS(4667), - [anon_sym_private] = ACTIONS(4667), - [anon_sym_internal] = ACTIONS(4667), - [anon_sym_protected] = ACTIONS(4667), - [anon_sym_tailrec] = ACTIONS(4667), - [anon_sym_operator] = ACTIONS(4667), - [anon_sym_infix] = ACTIONS(4667), - [anon_sym_inline] = ACTIONS(4667), - [anon_sym_external] = ACTIONS(4667), - [sym_property_modifier] = ACTIONS(4667), - [anon_sym_abstract] = ACTIONS(4667), - [anon_sym_final] = ACTIONS(4667), - [anon_sym_open] = ACTIONS(4667), - [anon_sym_vararg] = ACTIONS(4667), - [anon_sym_noinline] = ACTIONS(4667), - [anon_sym_crossinline] = ACTIONS(4667), - [anon_sym_expect] = ACTIONS(4667), - [anon_sym_actual] = ACTIONS(4667), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4669), - [sym_safe_nav] = ACTIONS(4669), + [3423] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_RBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_RPAREN] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [anon_sym_DASH_GT] = ACTIONS(4479), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_while] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), }, - [3419] = { - [sym_class_body] = STATE(3604), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_RPAREN] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_DASH_GT] = ACTIONS(4425), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_while] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), + [3424] = { + [sym__alpha_identifier] = ACTIONS(5125), + [anon_sym_AT] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5127), + [anon_sym_RBRACK] = ACTIONS(5127), + [anon_sym_as] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5127), + [anon_sym_RBRACE] = ACTIONS(5127), + [anon_sym_LPAREN] = ACTIONS(5127), + [anon_sym_COMMA] = ACTIONS(5127), + [anon_sym_RPAREN] = ACTIONS(5127), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_where] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_SEMI] = ACTIONS(5127), + [anon_sym_get] = ACTIONS(5125), + [anon_sym_set] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5125), + [anon_sym_DASH_GT] = ACTIONS(5127), + [sym_label] = ACTIONS(5127), + [anon_sym_in] = ACTIONS(5125), + [anon_sym_while] = ACTIONS(5125), + [anon_sym_DOT_DOT] = ACTIONS(5127), + [anon_sym_QMARK_COLON] = ACTIONS(5127), + [anon_sym_AMP_AMP] = ACTIONS(5127), + [anon_sym_PIPE_PIPE] = ACTIONS(5127), + [anon_sym_else] = ACTIONS(5125), + [anon_sym_COLON_COLON] = ACTIONS(5127), + [anon_sym_PLUS_EQ] = ACTIONS(5127), + [anon_sym_DASH_EQ] = ACTIONS(5127), + [anon_sym_STAR_EQ] = ACTIONS(5127), + [anon_sym_SLASH_EQ] = ACTIONS(5127), + [anon_sym_PERCENT_EQ] = ACTIONS(5127), + [anon_sym_BANG_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5127), + [anon_sym_EQ_EQ] = ACTIONS(5125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5127), + [anon_sym_LT_EQ] = ACTIONS(5127), + [anon_sym_GT_EQ] = ACTIONS(5127), + [anon_sym_BANGin] = ACTIONS(5127), + [anon_sym_is] = ACTIONS(5125), + [anon_sym_BANGis] = ACTIONS(5127), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_as_QMARK] = ACTIONS(5127), + [anon_sym_PLUS_PLUS] = ACTIONS(5127), + [anon_sym_DASH_DASH] = ACTIONS(5127), + [anon_sym_BANG_BANG] = ACTIONS(5127), + [anon_sym_suspend] = ACTIONS(5125), + [anon_sym_sealed] = ACTIONS(5125), + [anon_sym_annotation] = ACTIONS(5125), + [anon_sym_data] = ACTIONS(5125), + [anon_sym_inner] = ACTIONS(5125), + [anon_sym_value] = ACTIONS(5125), + [anon_sym_override] = ACTIONS(5125), + [anon_sym_lateinit] = ACTIONS(5125), + [anon_sym_public] = ACTIONS(5125), + [anon_sym_private] = ACTIONS(5125), + [anon_sym_internal] = ACTIONS(5125), + [anon_sym_protected] = ACTIONS(5125), + [anon_sym_tailrec] = ACTIONS(5125), + [anon_sym_operator] = ACTIONS(5125), + [anon_sym_infix] = ACTIONS(5125), + [anon_sym_inline] = ACTIONS(5125), + [anon_sym_external] = ACTIONS(5125), + [sym_property_modifier] = ACTIONS(5125), + [anon_sym_abstract] = ACTIONS(5125), + [anon_sym_final] = ACTIONS(5125), + [anon_sym_open] = ACTIONS(5125), + [anon_sym_vararg] = ACTIONS(5125), + [anon_sym_noinline] = ACTIONS(5125), + [anon_sym_crossinline] = ACTIONS(5125), + [anon_sym_expect] = ACTIONS(5125), + [anon_sym_actual] = ACTIONS(5125), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5127), + [sym_safe_nav] = ACTIONS(5127), [sym_multiline_comment] = ACTIONS(3), }, - [3420] = { - [sym__alpha_identifier] = ACTIONS(4691), - [anon_sym_AT] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_as] = ACTIONS(4691), - [anon_sym_EQ] = ACTIONS(4691), - [anon_sym_LBRACE] = ACTIONS(4693), - [anon_sym_RBRACE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_where] = ACTIONS(4691), - [anon_sym_DOT] = ACTIONS(4691), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_get] = ACTIONS(4691), - [anon_sym_set] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_DASH_GT] = ACTIONS(4693), - [sym_label] = ACTIONS(4693), - [anon_sym_in] = ACTIONS(4691), - [anon_sym_while] = ACTIONS(4691), - [anon_sym_DOT_DOT] = ACTIONS(4693), - [anon_sym_QMARK_COLON] = ACTIONS(4693), - [anon_sym_AMP_AMP] = ACTIONS(4693), - [anon_sym_PIPE_PIPE] = ACTIONS(4693), - [anon_sym_else] = ACTIONS(4691), - [anon_sym_COLON_COLON] = ACTIONS(4693), - [anon_sym_PLUS_EQ] = ACTIONS(4693), - [anon_sym_DASH_EQ] = ACTIONS(4693), - [anon_sym_STAR_EQ] = ACTIONS(4693), - [anon_sym_SLASH_EQ] = ACTIONS(4693), - [anon_sym_PERCENT_EQ] = ACTIONS(4693), - [anon_sym_BANG_EQ] = ACTIONS(4691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4693), - [anon_sym_EQ_EQ] = ACTIONS(4691), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4693), - [anon_sym_LT_EQ] = ACTIONS(4693), - [anon_sym_GT_EQ] = ACTIONS(4693), - [anon_sym_BANGin] = ACTIONS(4693), - [anon_sym_is] = ACTIONS(4691), - [anon_sym_BANGis] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_PERCENT] = ACTIONS(4691), - [anon_sym_as_QMARK] = ACTIONS(4693), - [anon_sym_PLUS_PLUS] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4693), - [anon_sym_BANG_BANG] = ACTIONS(4693), - [anon_sym_suspend] = ACTIONS(4691), - [anon_sym_sealed] = ACTIONS(4691), - [anon_sym_annotation] = ACTIONS(4691), - [anon_sym_data] = ACTIONS(4691), - [anon_sym_inner] = ACTIONS(4691), - [anon_sym_value] = ACTIONS(4691), - [anon_sym_override] = ACTIONS(4691), - [anon_sym_lateinit] = ACTIONS(4691), - [anon_sym_public] = ACTIONS(4691), - [anon_sym_private] = ACTIONS(4691), - [anon_sym_internal] = ACTIONS(4691), - [anon_sym_protected] = ACTIONS(4691), - [anon_sym_tailrec] = ACTIONS(4691), - [anon_sym_operator] = ACTIONS(4691), - [anon_sym_infix] = ACTIONS(4691), - [anon_sym_inline] = ACTIONS(4691), - [anon_sym_external] = ACTIONS(4691), - [sym_property_modifier] = ACTIONS(4691), - [anon_sym_abstract] = ACTIONS(4691), - [anon_sym_final] = ACTIONS(4691), - [anon_sym_open] = ACTIONS(4691), - [anon_sym_vararg] = ACTIONS(4691), - [anon_sym_noinline] = ACTIONS(4691), - [anon_sym_crossinline] = ACTIONS(4691), - [anon_sym_expect] = ACTIONS(4691), - [anon_sym_actual] = ACTIONS(4691), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4693), - [sym_safe_nav] = ACTIONS(4693), + [3425] = { + [sym_type_constraints] = STATE(3649), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, - [3421] = { - [sym_class_body] = STATE(3603), - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_RBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_RPAREN] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [anon_sym_DASH_GT] = ACTIONS(4471), - [sym_label] = ACTIONS(4471), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_while] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_suspend] = ACTIONS(4469), - [anon_sym_sealed] = ACTIONS(4469), - [anon_sym_annotation] = ACTIONS(4469), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_value] = ACTIONS(4469), - [anon_sym_override] = ACTIONS(4469), - [anon_sym_lateinit] = ACTIONS(4469), - [anon_sym_public] = ACTIONS(4469), - [anon_sym_private] = ACTIONS(4469), - [anon_sym_internal] = ACTIONS(4469), - [anon_sym_protected] = ACTIONS(4469), - [anon_sym_tailrec] = ACTIONS(4469), - [anon_sym_operator] = ACTIONS(4469), - [anon_sym_infix] = ACTIONS(4469), - [anon_sym_inline] = ACTIONS(4469), - [anon_sym_external] = ACTIONS(4469), - [sym_property_modifier] = ACTIONS(4469), - [anon_sym_abstract] = ACTIONS(4469), - [anon_sym_final] = ACTIONS(4469), - [anon_sym_open] = ACTIONS(4469), - [anon_sym_vararg] = ACTIONS(4469), - [anon_sym_noinline] = ACTIONS(4469), - [anon_sym_crossinline] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), + [3426] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_RBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_RPAREN] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [anon_sym_DASH_GT] = ACTIONS(4479), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_while] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), }, - [3422] = { - [sym__alpha_identifier] = ACTIONS(4714), - [anon_sym_AT] = ACTIONS(4716), - [anon_sym_COLON] = ACTIONS(4714), - [anon_sym_LBRACK] = ACTIONS(4716), - [anon_sym_RBRACK] = ACTIONS(4716), - [anon_sym_as] = ACTIONS(4714), - [anon_sym_EQ] = ACTIONS(4714), - [anon_sym_LBRACE] = ACTIONS(4716), - [anon_sym_RBRACE] = ACTIONS(4716), - [anon_sym_LPAREN] = ACTIONS(4716), - [anon_sym_COMMA] = ACTIONS(4716), - [anon_sym_RPAREN] = ACTIONS(4716), - [anon_sym_LT] = ACTIONS(4714), - [anon_sym_GT] = ACTIONS(4714), - [anon_sym_where] = ACTIONS(4714), - [anon_sym_DOT] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_get] = ACTIONS(4714), - [anon_sym_set] = ACTIONS(4714), - [anon_sym_STAR] = ACTIONS(4714), - [anon_sym_DASH_GT] = ACTIONS(4716), - [sym_label] = ACTIONS(4716), - [anon_sym_in] = ACTIONS(4714), - [anon_sym_while] = ACTIONS(4714), - [anon_sym_DOT_DOT] = ACTIONS(4716), - [anon_sym_QMARK_COLON] = ACTIONS(4716), - [anon_sym_AMP_AMP] = ACTIONS(4716), - [anon_sym_PIPE_PIPE] = ACTIONS(4716), - [anon_sym_else] = ACTIONS(4714), - [anon_sym_COLON_COLON] = ACTIONS(4716), - [anon_sym_PLUS_EQ] = ACTIONS(4716), - [anon_sym_DASH_EQ] = ACTIONS(4716), - [anon_sym_STAR_EQ] = ACTIONS(4716), - [anon_sym_SLASH_EQ] = ACTIONS(4716), - [anon_sym_PERCENT_EQ] = ACTIONS(4716), - [anon_sym_BANG_EQ] = ACTIONS(4714), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4716), - [anon_sym_EQ_EQ] = ACTIONS(4714), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4716), - [anon_sym_LT_EQ] = ACTIONS(4716), - [anon_sym_GT_EQ] = ACTIONS(4716), - [anon_sym_BANGin] = ACTIONS(4716), - [anon_sym_is] = ACTIONS(4714), - [anon_sym_BANGis] = ACTIONS(4716), - [anon_sym_PLUS] = ACTIONS(4714), - [anon_sym_DASH] = ACTIONS(4714), - [anon_sym_SLASH] = ACTIONS(4714), - [anon_sym_PERCENT] = ACTIONS(4714), - [anon_sym_as_QMARK] = ACTIONS(4716), - [anon_sym_PLUS_PLUS] = ACTIONS(4716), - [anon_sym_DASH_DASH] = ACTIONS(4716), - [anon_sym_BANG_BANG] = ACTIONS(4716), - [anon_sym_suspend] = ACTIONS(4714), - [anon_sym_sealed] = ACTIONS(4714), - [anon_sym_annotation] = ACTIONS(4714), - [anon_sym_data] = ACTIONS(4714), - [anon_sym_inner] = ACTIONS(4714), - [anon_sym_value] = ACTIONS(4714), - [anon_sym_override] = ACTIONS(4714), - [anon_sym_lateinit] = ACTIONS(4714), - [anon_sym_public] = ACTIONS(4714), - [anon_sym_private] = ACTIONS(4714), - [anon_sym_internal] = ACTIONS(4714), - [anon_sym_protected] = ACTIONS(4714), - [anon_sym_tailrec] = ACTIONS(4714), - [anon_sym_operator] = ACTIONS(4714), - [anon_sym_infix] = ACTIONS(4714), - [anon_sym_inline] = ACTIONS(4714), - [anon_sym_external] = ACTIONS(4714), - [sym_property_modifier] = ACTIONS(4714), - [anon_sym_abstract] = ACTIONS(4714), - [anon_sym_final] = ACTIONS(4714), - [anon_sym_open] = ACTIONS(4714), - [anon_sym_vararg] = ACTIONS(4714), - [anon_sym_noinline] = ACTIONS(4714), - [anon_sym_crossinline] = ACTIONS(4714), - [anon_sym_expect] = ACTIONS(4714), - [anon_sym_actual] = ACTIONS(4714), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4716), - [sym_safe_nav] = ACTIONS(4716), + [3427] = { + [sym_type_constraints] = STATE(3647), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, - [3423] = { - [sym__alpha_identifier] = ACTIONS(4587), - [anon_sym_AT] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4589), - [anon_sym_as] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4589), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_LPAREN] = ACTIONS(4589), - [anon_sym_COMMA] = ACTIONS(4589), - [anon_sym_RPAREN] = ACTIONS(4589), - [anon_sym_by] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4587), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_where] = ACTIONS(4587), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [anon_sym_get] = ACTIONS(4587), - [anon_sym_set] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [anon_sym_DASH_GT] = ACTIONS(4589), - [sym_label] = ACTIONS(4589), - [anon_sym_in] = ACTIONS(4587), - [anon_sym_while] = ACTIONS(4587), - [anon_sym_DOT_DOT] = ACTIONS(4589), - [anon_sym_QMARK_COLON] = ACTIONS(4589), - [anon_sym_AMP_AMP] = ACTIONS(4589), - [anon_sym_PIPE_PIPE] = ACTIONS(4589), - [anon_sym_else] = ACTIONS(4587), - [anon_sym_COLON_COLON] = ACTIONS(4589), - [anon_sym_PLUS_EQ] = ACTIONS(4589), - [anon_sym_DASH_EQ] = ACTIONS(4589), - [anon_sym_STAR_EQ] = ACTIONS(4589), - [anon_sym_SLASH_EQ] = ACTIONS(4589), - [anon_sym_PERCENT_EQ] = ACTIONS(4589), - [anon_sym_BANG_EQ] = ACTIONS(4587), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), - [anon_sym_EQ_EQ] = ACTIONS(4587), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), - [anon_sym_LT_EQ] = ACTIONS(4589), - [anon_sym_GT_EQ] = ACTIONS(4589), - [anon_sym_BANGin] = ACTIONS(4589), - [anon_sym_is] = ACTIONS(4587), - [anon_sym_BANGis] = ACTIONS(4589), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_as_QMARK] = ACTIONS(4589), - [anon_sym_PLUS_PLUS] = ACTIONS(4589), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_BANG_BANG] = ACTIONS(4589), - [anon_sym_suspend] = ACTIONS(4587), - [anon_sym_sealed] = ACTIONS(4587), - [anon_sym_annotation] = ACTIONS(4587), - [anon_sym_data] = ACTIONS(4587), - [anon_sym_inner] = ACTIONS(4587), - [anon_sym_value] = ACTIONS(4587), - [anon_sym_override] = ACTIONS(4587), - [anon_sym_lateinit] = ACTIONS(4587), - [anon_sym_public] = ACTIONS(4587), - [anon_sym_private] = ACTIONS(4587), - [anon_sym_internal] = ACTIONS(4587), - [anon_sym_protected] = ACTIONS(4587), - [anon_sym_tailrec] = ACTIONS(4587), - [anon_sym_operator] = ACTIONS(4587), - [anon_sym_infix] = ACTIONS(4587), - [anon_sym_inline] = ACTIONS(4587), - [anon_sym_external] = ACTIONS(4587), - [sym_property_modifier] = ACTIONS(4587), - [anon_sym_abstract] = ACTIONS(4587), - [anon_sym_final] = ACTIONS(4587), - [anon_sym_open] = ACTIONS(4587), - [anon_sym_vararg] = ACTIONS(4587), - [anon_sym_noinline] = ACTIONS(4587), - [anon_sym_crossinline] = ACTIONS(4587), - [anon_sym_expect] = ACTIONS(4587), - [anon_sym_actual] = ACTIONS(4587), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4589), - [sym_safe_nav] = ACTIONS(4589), + [3428] = { + [sym__alpha_identifier] = ACTIONS(4866), + [anon_sym_AT] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_RBRACK] = ACTIONS(4868), + [anon_sym_as] = ACTIONS(4866), + [anon_sym_EQ] = ACTIONS(4866), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_RPAREN] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4866), + [anon_sym_where] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_get] = ACTIONS(4866), + [anon_sym_set] = ACTIONS(4866), + [anon_sym_STAR] = ACTIONS(4866), + [anon_sym_DASH_GT] = ACTIONS(4868), + [sym_label] = ACTIONS(4868), + [anon_sym_in] = ACTIONS(4866), + [anon_sym_while] = ACTIONS(4866), + [anon_sym_DOT_DOT] = ACTIONS(4868), + [anon_sym_QMARK_COLON] = ACTIONS(4868), + [anon_sym_AMP_AMP] = ACTIONS(4868), + [anon_sym_PIPE_PIPE] = ACTIONS(4868), + [anon_sym_else] = ACTIONS(4866), + [anon_sym_COLON_COLON] = ACTIONS(4868), + [anon_sym_PLUS_EQ] = ACTIONS(4868), + [anon_sym_DASH_EQ] = ACTIONS(4868), + [anon_sym_STAR_EQ] = ACTIONS(4868), + [anon_sym_SLASH_EQ] = ACTIONS(4868), + [anon_sym_PERCENT_EQ] = ACTIONS(4868), + [anon_sym_BANG_EQ] = ACTIONS(4866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4868), + [anon_sym_EQ_EQ] = ACTIONS(4866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4868), + [anon_sym_LT_EQ] = ACTIONS(4868), + [anon_sym_GT_EQ] = ACTIONS(4868), + [anon_sym_BANGin] = ACTIONS(4868), + [anon_sym_is] = ACTIONS(4866), + [anon_sym_BANGis] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4866), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4866), + [anon_sym_PERCENT] = ACTIONS(4866), + [anon_sym_as_QMARK] = ACTIONS(4868), + [anon_sym_PLUS_PLUS] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4868), + [anon_sym_BANG_BANG] = ACTIONS(4868), + [anon_sym_suspend] = ACTIONS(4866), + [anon_sym_sealed] = ACTIONS(4866), + [anon_sym_annotation] = ACTIONS(4866), + [anon_sym_data] = ACTIONS(4866), + [anon_sym_inner] = ACTIONS(4866), + [anon_sym_value] = ACTIONS(4866), + [anon_sym_override] = ACTIONS(4866), + [anon_sym_lateinit] = ACTIONS(4866), + [anon_sym_public] = ACTIONS(4866), + [anon_sym_private] = ACTIONS(4866), + [anon_sym_internal] = ACTIONS(4866), + [anon_sym_protected] = ACTIONS(4866), + [anon_sym_tailrec] = ACTIONS(4866), + [anon_sym_operator] = ACTIONS(4866), + [anon_sym_infix] = ACTIONS(4866), + [anon_sym_inline] = ACTIONS(4866), + [anon_sym_external] = ACTIONS(4866), + [sym_property_modifier] = ACTIONS(4866), + [anon_sym_abstract] = ACTIONS(4866), + [anon_sym_final] = ACTIONS(4866), + [anon_sym_open] = ACTIONS(4866), + [anon_sym_vararg] = ACTIONS(4866), + [anon_sym_noinline] = ACTIONS(4866), + [anon_sym_crossinline] = ACTIONS(4866), + [anon_sym_expect] = ACTIONS(4866), + [anon_sym_actual] = ACTIONS(4866), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4868), + [sym_safe_nav] = ACTIONS(4868), [sym_multiline_comment] = ACTIONS(3), }, - [3424] = { - [sym__alpha_identifier] = ACTIONS(4681), - [anon_sym_AT] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_RBRACK] = ACTIONS(4683), - [anon_sym_as] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4683), - [anon_sym_RBRACE] = ACTIONS(4683), - [anon_sym_LPAREN] = ACTIONS(4683), - [anon_sym_COMMA] = ACTIONS(4683), - [anon_sym_RPAREN] = ACTIONS(4683), - [anon_sym_by] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4681), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_where] = ACTIONS(4681), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_get] = ACTIONS(4681), - [anon_sym_set] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_DASH_GT] = ACTIONS(4683), - [sym_label] = ACTIONS(4683), - [anon_sym_in] = ACTIONS(4681), - [anon_sym_while] = ACTIONS(4681), - [anon_sym_DOT_DOT] = ACTIONS(4683), - [anon_sym_QMARK_COLON] = ACTIONS(4683), - [anon_sym_AMP_AMP] = ACTIONS(4683), - [anon_sym_PIPE_PIPE] = ACTIONS(4683), - [anon_sym_else] = ACTIONS(4681), - [anon_sym_COLON_COLON] = ACTIONS(4683), - [anon_sym_PLUS_EQ] = ACTIONS(4683), - [anon_sym_DASH_EQ] = ACTIONS(4683), - [anon_sym_STAR_EQ] = ACTIONS(4683), - [anon_sym_SLASH_EQ] = ACTIONS(4683), - [anon_sym_PERCENT_EQ] = ACTIONS(4683), - [anon_sym_BANG_EQ] = ACTIONS(4681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4683), - [anon_sym_EQ_EQ] = ACTIONS(4681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4683), - [anon_sym_LT_EQ] = ACTIONS(4683), - [anon_sym_GT_EQ] = ACTIONS(4683), - [anon_sym_BANGin] = ACTIONS(4683), - [anon_sym_is] = ACTIONS(4681), - [anon_sym_BANGis] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4681), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_as_QMARK] = ACTIONS(4683), - [anon_sym_PLUS_PLUS] = ACTIONS(4683), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_BANG_BANG] = ACTIONS(4683), - [anon_sym_suspend] = ACTIONS(4681), - [anon_sym_sealed] = ACTIONS(4681), - [anon_sym_annotation] = ACTIONS(4681), - [anon_sym_data] = ACTIONS(4681), - [anon_sym_inner] = ACTIONS(4681), - [anon_sym_value] = ACTIONS(4681), - [anon_sym_override] = ACTIONS(4681), - [anon_sym_lateinit] = ACTIONS(4681), - [anon_sym_public] = ACTIONS(4681), - [anon_sym_private] = ACTIONS(4681), - [anon_sym_internal] = ACTIONS(4681), - [anon_sym_protected] = ACTIONS(4681), - [anon_sym_tailrec] = ACTIONS(4681), - [anon_sym_operator] = ACTIONS(4681), - [anon_sym_infix] = ACTIONS(4681), - [anon_sym_inline] = ACTIONS(4681), - [anon_sym_external] = ACTIONS(4681), - [sym_property_modifier] = ACTIONS(4681), - [anon_sym_abstract] = ACTIONS(4681), - [anon_sym_final] = ACTIONS(4681), - [anon_sym_open] = ACTIONS(4681), - [anon_sym_vararg] = ACTIONS(4681), - [anon_sym_noinline] = ACTIONS(4681), - [anon_sym_crossinline] = ACTIONS(4681), - [anon_sym_expect] = ACTIONS(4681), - [anon_sym_actual] = ACTIONS(4681), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4683), - [sym_safe_nav] = ACTIONS(4683), + [3429] = { + [sym_function_body] = STATE(4010), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(6852), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), [sym_multiline_comment] = ACTIONS(3), }, - [3425] = { - [sym_class_body] = STATE(3598), - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_RBRACK] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4756), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_RPAREN] = ACTIONS(4756), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_where] = ACTIONS(4754), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [anon_sym_DASH_GT] = ACTIONS(4756), - [sym_label] = ACTIONS(4756), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_while] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_suspend] = ACTIONS(4754), - [anon_sym_sealed] = ACTIONS(4754), - [anon_sym_annotation] = ACTIONS(4754), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_override] = ACTIONS(4754), - [anon_sym_lateinit] = ACTIONS(4754), - [anon_sym_public] = ACTIONS(4754), - [anon_sym_private] = ACTIONS(4754), - [anon_sym_internal] = ACTIONS(4754), - [anon_sym_protected] = ACTIONS(4754), - [anon_sym_tailrec] = ACTIONS(4754), - [anon_sym_operator] = ACTIONS(4754), - [anon_sym_infix] = ACTIONS(4754), - [anon_sym_inline] = ACTIONS(4754), - [anon_sym_external] = ACTIONS(4754), - [sym_property_modifier] = ACTIONS(4754), - [anon_sym_abstract] = ACTIONS(4754), - [anon_sym_final] = ACTIONS(4754), - [anon_sym_open] = ACTIONS(4754), - [anon_sym_vararg] = ACTIONS(4754), - [anon_sym_noinline] = ACTIONS(4754), - [anon_sym_crossinline] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), + [3430] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_RBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [anon_sym_DASH_GT] = ACTIONS(4277), + [sym_label] = ACTIONS(4277), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), - [sym_multiline_comment] = ACTIONS(3), - }, - [3426] = { - [sym_enum_class_body] = STATE(3597), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_DASH_GT] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [3427] = { - [sym_class_body] = STATE(3597), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_DASH_GT] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym__backtick_identifier] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), }, - [3428] = { - [sym_type_constraints] = STATE(3749), - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3335), + [3431] = { + [sym_type_constraints] = STATE(3633), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(6906), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(6547), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_COMMA] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), [anon_sym_in] = ACTIONS(4183), [anon_sym_DOT_DOT] = ACTIONS(4185), [anon_sym_QMARK_COLON] = ACTIONS(4185), [anon_sym_AMP_AMP] = ACTIONS(4185), [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), [anon_sym_BANG_EQ] = ACTIONS(4183), [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), [anon_sym_EQ_EQ] = ACTIONS(4183), @@ -400390,3302 +398405,3281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4183), [anon_sym_DASH] = ACTIONS(4183), [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_PERCENT] = ACTIONS(4183), [anon_sym_as_QMARK] = ACTIONS(4185), [anon_sym_PLUS_PLUS] = ACTIONS(4185), [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), [anon_sym_data] = ACTIONS(4183), [anon_sym_inner] = ACTIONS(4183), [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), [anon_sym_expect] = ACTIONS(4183), [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), - }, - [3429] = { - [aux_sym_user_type_repeat1] = STATE(3417), - [sym__alpha_identifier] = ACTIONS(4202), - [anon_sym_AT] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_as] = ACTIONS(4202), - [anon_sym_EQ] = ACTIONS(4202), - [anon_sym_LBRACE] = ACTIONS(4204), - [anon_sym_RBRACE] = ACTIONS(4204), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym_COMMA] = ACTIONS(4204), - [anon_sym_by] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4202), - [anon_sym_GT] = ACTIONS(4202), - [anon_sym_where] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(6910), - [anon_sym_SEMI] = ACTIONS(4204), - [anon_sym_get] = ACTIONS(4202), - [anon_sym_set] = ACTIONS(4202), - [anon_sym_AMP] = ACTIONS(4202), - [sym__quest] = ACTIONS(4202), - [anon_sym_STAR] = ACTIONS(4202), - [sym_label] = ACTIONS(4204), - [anon_sym_in] = ACTIONS(4202), - [anon_sym_DOT_DOT] = ACTIONS(4204), - [anon_sym_QMARK_COLON] = ACTIONS(4204), - [anon_sym_AMP_AMP] = ACTIONS(4204), - [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_else] = ACTIONS(4202), - [anon_sym_COLON_COLON] = ACTIONS(4204), - [anon_sym_PLUS_EQ] = ACTIONS(4204), - [anon_sym_DASH_EQ] = ACTIONS(4204), - [anon_sym_STAR_EQ] = ACTIONS(4204), - [anon_sym_SLASH_EQ] = ACTIONS(4204), - [anon_sym_PERCENT_EQ] = ACTIONS(4204), - [anon_sym_BANG_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), - [anon_sym_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), - [anon_sym_LT_EQ] = ACTIONS(4204), - [anon_sym_GT_EQ] = ACTIONS(4204), - [anon_sym_BANGin] = ACTIONS(4204), - [anon_sym_is] = ACTIONS(4202), - [anon_sym_BANGis] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4202), - [anon_sym_DASH] = ACTIONS(4202), - [anon_sym_SLASH] = ACTIONS(4202), - [anon_sym_PERCENT] = ACTIONS(4202), - [anon_sym_as_QMARK] = ACTIONS(4204), - [anon_sym_PLUS_PLUS] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4204), - [anon_sym_BANG_BANG] = ACTIONS(4204), - [anon_sym_suspend] = ACTIONS(4202), - [anon_sym_sealed] = ACTIONS(4202), - [anon_sym_annotation] = ACTIONS(4202), - [anon_sym_data] = ACTIONS(4202), - [anon_sym_inner] = ACTIONS(4202), - [anon_sym_value] = ACTIONS(4202), - [anon_sym_override] = ACTIONS(4202), - [anon_sym_lateinit] = ACTIONS(4202), - [anon_sym_public] = ACTIONS(4202), - [anon_sym_private] = ACTIONS(4202), - [anon_sym_internal] = ACTIONS(4202), - [anon_sym_protected] = ACTIONS(4202), - [anon_sym_tailrec] = ACTIONS(4202), - [anon_sym_operator] = ACTIONS(4202), - [anon_sym_infix] = ACTIONS(4202), - [anon_sym_inline] = ACTIONS(4202), - [anon_sym_external] = ACTIONS(4202), - [sym_property_modifier] = ACTIONS(4202), - [anon_sym_abstract] = ACTIONS(4202), - [anon_sym_final] = ACTIONS(4202), - [anon_sym_open] = ACTIONS(4202), - [anon_sym_vararg] = ACTIONS(4202), - [anon_sym_noinline] = ACTIONS(4202), - [anon_sym_crossinline] = ACTIONS(4202), - [anon_sym_expect] = ACTIONS(4202), - [anon_sym_actual] = ACTIONS(4202), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4204), - [sym__automatic_semicolon] = ACTIONS(4204), - [sym_safe_nav] = ACTIONS(4204), - [sym_multiline_comment] = ACTIONS(3), - }, - [3430] = { - [sym__alpha_identifier] = ACTIONS(4699), - [anon_sym_AT] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_RBRACK] = ACTIONS(4701), - [anon_sym_as] = ACTIONS(4699), - [anon_sym_EQ] = ACTIONS(4699), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_RBRACE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_where] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_get] = ACTIONS(4699), - [anon_sym_set] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_DASH_GT] = ACTIONS(4701), - [sym_label] = ACTIONS(4701), - [anon_sym_in] = ACTIONS(4699), - [anon_sym_while] = ACTIONS(4699), - [anon_sym_DOT_DOT] = ACTIONS(4701), - [anon_sym_QMARK_COLON] = ACTIONS(4701), - [anon_sym_AMP_AMP] = ACTIONS(4701), - [anon_sym_PIPE_PIPE] = ACTIONS(4701), - [anon_sym_else] = ACTIONS(4699), - [anon_sym_COLON_COLON] = ACTIONS(4701), - [anon_sym_PLUS_EQ] = ACTIONS(4701), - [anon_sym_DASH_EQ] = ACTIONS(4701), - [anon_sym_STAR_EQ] = ACTIONS(4701), - [anon_sym_SLASH_EQ] = ACTIONS(4701), - [anon_sym_PERCENT_EQ] = ACTIONS(4701), - [anon_sym_BANG_EQ] = ACTIONS(4699), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4701), - [anon_sym_EQ_EQ] = ACTIONS(4699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4701), - [anon_sym_LT_EQ] = ACTIONS(4701), - [anon_sym_GT_EQ] = ACTIONS(4701), - [anon_sym_BANGin] = ACTIONS(4701), - [anon_sym_is] = ACTIONS(4699), - [anon_sym_BANGis] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_PERCENT] = ACTIONS(4699), - [anon_sym_as_QMARK] = ACTIONS(4701), - [anon_sym_PLUS_PLUS] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4701), - [anon_sym_BANG_BANG] = ACTIONS(4701), - [anon_sym_suspend] = ACTIONS(4699), - [anon_sym_sealed] = ACTIONS(4699), - [anon_sym_annotation] = ACTIONS(4699), - [anon_sym_data] = ACTIONS(4699), - [anon_sym_inner] = ACTIONS(4699), - [anon_sym_value] = ACTIONS(4699), - [anon_sym_override] = ACTIONS(4699), - [anon_sym_lateinit] = ACTIONS(4699), - [anon_sym_public] = ACTIONS(4699), - [anon_sym_private] = ACTIONS(4699), - [anon_sym_internal] = ACTIONS(4699), - [anon_sym_protected] = ACTIONS(4699), - [anon_sym_tailrec] = ACTIONS(4699), - [anon_sym_operator] = ACTIONS(4699), - [anon_sym_infix] = ACTIONS(4699), - [anon_sym_inline] = ACTIONS(4699), - [anon_sym_external] = ACTIONS(4699), - [sym_property_modifier] = ACTIONS(4699), - [anon_sym_abstract] = ACTIONS(4699), - [anon_sym_final] = ACTIONS(4699), - [anon_sym_open] = ACTIONS(4699), - [anon_sym_vararg] = ACTIONS(4699), - [anon_sym_noinline] = ACTIONS(4699), - [anon_sym_crossinline] = ACTIONS(4699), - [anon_sym_expect] = ACTIONS(4699), - [anon_sym_actual] = ACTIONS(4699), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4701), - [sym_safe_nav] = ACTIONS(4701), - [sym_multiline_comment] = ACTIONS(3), - }, - [3431] = { - [sym__alpha_identifier] = ACTIONS(4726), - [anon_sym_AT] = ACTIONS(4728), - [anon_sym_LBRACK] = ACTIONS(4728), - [anon_sym_RBRACK] = ACTIONS(4728), - [anon_sym_as] = ACTIONS(4726), - [anon_sym_EQ] = ACTIONS(4726), - [anon_sym_LBRACE] = ACTIONS(4728), - [anon_sym_RBRACE] = ACTIONS(4728), - [anon_sym_LPAREN] = ACTIONS(4728), - [anon_sym_COMMA] = ACTIONS(4728), - [anon_sym_RPAREN] = ACTIONS(4728), - [anon_sym_by] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4726), - [anon_sym_GT] = ACTIONS(4726), - [anon_sym_where] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4726), - [anon_sym_SEMI] = ACTIONS(4728), - [anon_sym_get] = ACTIONS(4726), - [anon_sym_set] = ACTIONS(4726), - [anon_sym_STAR] = ACTIONS(4726), - [anon_sym_DASH_GT] = ACTIONS(4728), - [sym_label] = ACTIONS(4728), - [anon_sym_in] = ACTIONS(4726), - [anon_sym_while] = ACTIONS(4726), - [anon_sym_DOT_DOT] = ACTIONS(4728), - [anon_sym_QMARK_COLON] = ACTIONS(4728), - [anon_sym_AMP_AMP] = ACTIONS(4728), - [anon_sym_PIPE_PIPE] = ACTIONS(4728), - [anon_sym_else] = ACTIONS(4726), - [anon_sym_COLON_COLON] = ACTIONS(4728), - [anon_sym_PLUS_EQ] = ACTIONS(4728), - [anon_sym_DASH_EQ] = ACTIONS(4728), - [anon_sym_STAR_EQ] = ACTIONS(4728), - [anon_sym_SLASH_EQ] = ACTIONS(4728), - [anon_sym_PERCENT_EQ] = ACTIONS(4728), - [anon_sym_BANG_EQ] = ACTIONS(4726), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), - [anon_sym_EQ_EQ] = ACTIONS(4726), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_GT_EQ] = ACTIONS(4728), - [anon_sym_BANGin] = ACTIONS(4728), - [anon_sym_is] = ACTIONS(4726), - [anon_sym_BANGis] = ACTIONS(4728), - [anon_sym_PLUS] = ACTIONS(4726), - [anon_sym_DASH] = ACTIONS(4726), - [anon_sym_SLASH] = ACTIONS(4726), - [anon_sym_PERCENT] = ACTIONS(4726), - [anon_sym_as_QMARK] = ACTIONS(4728), - [anon_sym_PLUS_PLUS] = ACTIONS(4728), - [anon_sym_DASH_DASH] = ACTIONS(4728), - [anon_sym_BANG_BANG] = ACTIONS(4728), - [anon_sym_suspend] = ACTIONS(4726), - [anon_sym_sealed] = ACTIONS(4726), - [anon_sym_annotation] = ACTIONS(4726), - [anon_sym_data] = ACTIONS(4726), - [anon_sym_inner] = ACTIONS(4726), - [anon_sym_value] = ACTIONS(4726), - [anon_sym_override] = ACTIONS(4726), - [anon_sym_lateinit] = ACTIONS(4726), - [anon_sym_public] = ACTIONS(4726), - [anon_sym_private] = ACTIONS(4726), - [anon_sym_internal] = ACTIONS(4726), - [anon_sym_protected] = ACTIONS(4726), - [anon_sym_tailrec] = ACTIONS(4726), - [anon_sym_operator] = ACTIONS(4726), - [anon_sym_infix] = ACTIONS(4726), - [anon_sym_inline] = ACTIONS(4726), - [anon_sym_external] = ACTIONS(4726), - [sym_property_modifier] = ACTIONS(4726), - [anon_sym_abstract] = ACTIONS(4726), - [anon_sym_final] = ACTIONS(4726), - [anon_sym_open] = ACTIONS(4726), - [anon_sym_vararg] = ACTIONS(4726), - [anon_sym_noinline] = ACTIONS(4726), - [anon_sym_crossinline] = ACTIONS(4726), - [anon_sym_expect] = ACTIONS(4726), - [anon_sym_actual] = ACTIONS(4726), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4728), - [sym_safe_nav] = ACTIONS(4728), - [sym_multiline_comment] = ACTIONS(3), }, [3432] = { - [sym__alpha_identifier] = ACTIONS(4730), - [anon_sym_AT] = ACTIONS(4733), - [anon_sym_LBRACK] = ACTIONS(4733), - [anon_sym_RBRACK] = ACTIONS(4733), - [anon_sym_as] = ACTIONS(4730), - [anon_sym_EQ] = ACTIONS(4730), - [anon_sym_LBRACE] = ACTIONS(4733), - [anon_sym_RBRACE] = ACTIONS(4733), - [anon_sym_LPAREN] = ACTIONS(4733), - [anon_sym_COMMA] = ACTIONS(4733), - [anon_sym_RPAREN] = ACTIONS(4733), - [anon_sym_by] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4730), - [anon_sym_GT] = ACTIONS(4730), - [anon_sym_where] = ACTIONS(4730), - [anon_sym_DOT] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4733), - [anon_sym_get] = ACTIONS(4730), - [anon_sym_set] = ACTIONS(4730), - [anon_sym_STAR] = ACTIONS(4730), - [anon_sym_DASH_GT] = ACTIONS(4733), - [sym_label] = ACTIONS(4733), - [anon_sym_in] = ACTIONS(4730), - [anon_sym_while] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4733), - [anon_sym_QMARK_COLON] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_else] = ACTIONS(4730), - [anon_sym_COLON_COLON] = ACTIONS(4733), - [anon_sym_PLUS_EQ] = ACTIONS(4733), - [anon_sym_DASH_EQ] = ACTIONS(4733), - [anon_sym_STAR_EQ] = ACTIONS(4733), - [anon_sym_SLASH_EQ] = ACTIONS(4733), - [anon_sym_PERCENT_EQ] = ACTIONS(4733), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4733), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4733), - [anon_sym_LT_EQ] = ACTIONS(4733), - [anon_sym_GT_EQ] = ACTIONS(4733), - [anon_sym_BANGin] = ACTIONS(4733), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_BANGis] = ACTIONS(4733), - [anon_sym_PLUS] = ACTIONS(4730), - [anon_sym_DASH] = ACTIONS(4730), - [anon_sym_SLASH] = ACTIONS(4730), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_as_QMARK] = ACTIONS(4733), - [anon_sym_PLUS_PLUS] = ACTIONS(4733), - [anon_sym_DASH_DASH] = ACTIONS(4733), - [anon_sym_BANG_BANG] = ACTIONS(4733), - [anon_sym_suspend] = ACTIONS(4730), - [anon_sym_sealed] = ACTIONS(4730), - [anon_sym_annotation] = ACTIONS(4730), - [anon_sym_data] = ACTIONS(4730), - [anon_sym_inner] = ACTIONS(4730), - [anon_sym_value] = ACTIONS(4730), - [anon_sym_override] = ACTIONS(4730), - [anon_sym_lateinit] = ACTIONS(4730), - [anon_sym_public] = ACTIONS(4730), - [anon_sym_private] = ACTIONS(4730), - [anon_sym_internal] = ACTIONS(4730), - [anon_sym_protected] = ACTIONS(4730), - [anon_sym_tailrec] = ACTIONS(4730), - [anon_sym_operator] = ACTIONS(4730), - [anon_sym_infix] = ACTIONS(4730), - [anon_sym_inline] = ACTIONS(4730), - [anon_sym_external] = ACTIONS(4730), - [sym_property_modifier] = ACTIONS(4730), - [anon_sym_abstract] = ACTIONS(4730), - [anon_sym_final] = ACTIONS(4730), - [anon_sym_open] = ACTIONS(4730), - [anon_sym_vararg] = ACTIONS(4730), - [anon_sym_noinline] = ACTIONS(4730), - [anon_sym_crossinline] = ACTIONS(4730), - [anon_sym_expect] = ACTIONS(4730), - [anon_sym_actual] = ACTIONS(4730), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4733), - [sym_safe_nav] = ACTIONS(4733), + [sym_type_constraints] = STATE(3631), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [3433] = { - [sym_type_constraints] = STATE(3760), - [sym_function_body] = STATE(3192), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(6913), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6854), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), }, [3434] = { - [sym__alpha_identifier] = ACTIONS(4748), - [anon_sym_AT] = ACTIONS(4750), - [anon_sym_LBRACK] = ACTIONS(4750), - [anon_sym_RBRACK] = ACTIONS(4750), - [anon_sym_as] = ACTIONS(4748), - [anon_sym_EQ] = ACTIONS(4748), - [anon_sym_LBRACE] = ACTIONS(4750), - [anon_sym_RBRACE] = ACTIONS(4750), - [anon_sym_LPAREN] = ACTIONS(4750), - [anon_sym_COMMA] = ACTIONS(4750), - [anon_sym_RPAREN] = ACTIONS(4750), - [anon_sym_by] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4748), - [anon_sym_GT] = ACTIONS(4748), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_DOT] = ACTIONS(4748), - [anon_sym_SEMI] = ACTIONS(4750), - [anon_sym_get] = ACTIONS(4748), - [anon_sym_set] = ACTIONS(4748), - [anon_sym_STAR] = ACTIONS(4748), - [anon_sym_DASH_GT] = ACTIONS(4750), - [sym_label] = ACTIONS(4750), - [anon_sym_in] = ACTIONS(4748), - [anon_sym_while] = ACTIONS(4748), - [anon_sym_DOT_DOT] = ACTIONS(4750), - [anon_sym_QMARK_COLON] = ACTIONS(4750), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4750), - [anon_sym_else] = ACTIONS(4748), - [anon_sym_COLON_COLON] = ACTIONS(4750), - [anon_sym_PLUS_EQ] = ACTIONS(4750), - [anon_sym_DASH_EQ] = ACTIONS(4750), - [anon_sym_STAR_EQ] = ACTIONS(4750), - [anon_sym_SLASH_EQ] = ACTIONS(4750), - [anon_sym_PERCENT_EQ] = ACTIONS(4750), - [anon_sym_BANG_EQ] = ACTIONS(4748), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4750), - [anon_sym_EQ_EQ] = ACTIONS(4748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4750), - [anon_sym_LT_EQ] = ACTIONS(4750), - [anon_sym_GT_EQ] = ACTIONS(4750), - [anon_sym_BANGin] = ACTIONS(4750), - [anon_sym_is] = ACTIONS(4748), - [anon_sym_BANGis] = ACTIONS(4750), - [anon_sym_PLUS] = ACTIONS(4748), - [anon_sym_DASH] = ACTIONS(4748), - [anon_sym_SLASH] = ACTIONS(4748), - [anon_sym_PERCENT] = ACTIONS(4748), - [anon_sym_as_QMARK] = ACTIONS(4750), - [anon_sym_PLUS_PLUS] = ACTIONS(4750), - [anon_sym_DASH_DASH] = ACTIONS(4750), - [anon_sym_BANG_BANG] = ACTIONS(4750), - [anon_sym_suspend] = ACTIONS(4748), - [anon_sym_sealed] = ACTIONS(4748), - [anon_sym_annotation] = ACTIONS(4748), - [anon_sym_data] = ACTIONS(4748), - [anon_sym_inner] = ACTIONS(4748), - [anon_sym_value] = ACTIONS(4748), - [anon_sym_override] = ACTIONS(4748), - [anon_sym_lateinit] = ACTIONS(4748), - [anon_sym_public] = ACTIONS(4748), - [anon_sym_private] = ACTIONS(4748), - [anon_sym_internal] = ACTIONS(4748), - [anon_sym_protected] = ACTIONS(4748), - [anon_sym_tailrec] = ACTIONS(4748), - [anon_sym_operator] = ACTIONS(4748), - [anon_sym_infix] = ACTIONS(4748), - [anon_sym_inline] = ACTIONS(4748), - [anon_sym_external] = ACTIONS(4748), - [sym_property_modifier] = ACTIONS(4748), - [anon_sym_abstract] = ACTIONS(4748), - [anon_sym_final] = ACTIONS(4748), - [anon_sym_open] = ACTIONS(4748), - [anon_sym_vararg] = ACTIONS(4748), - [anon_sym_noinline] = ACTIONS(4748), - [anon_sym_crossinline] = ACTIONS(4748), - [anon_sym_expect] = ACTIONS(4748), - [anon_sym_actual] = ACTIONS(4748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4750), - [sym_safe_nav] = ACTIONS(4750), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6856), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), }, [3435] = { - [sym_enum_class_body] = STATE(3574), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_RBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [anon_sym_DASH_GT] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym__alpha_identifier] = ACTIONS(4946), + [anon_sym_AT] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4948), + [anon_sym_RBRACK] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4946), + [anon_sym_EQ] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_RBRACE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_RPAREN] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4946), + [anon_sym_where] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_get] = ACTIONS(4946), + [anon_sym_set] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4946), + [anon_sym_DASH_GT] = ACTIONS(4948), + [sym_label] = ACTIONS(4948), + [anon_sym_in] = ACTIONS(4946), + [anon_sym_while] = ACTIONS(4946), + [anon_sym_DOT_DOT] = ACTIONS(4948), + [anon_sym_QMARK_COLON] = ACTIONS(4948), + [anon_sym_AMP_AMP] = ACTIONS(4948), + [anon_sym_PIPE_PIPE] = ACTIONS(4948), + [anon_sym_else] = ACTIONS(4946), + [anon_sym_COLON_COLON] = ACTIONS(4948), + [anon_sym_PLUS_EQ] = ACTIONS(4948), + [anon_sym_DASH_EQ] = ACTIONS(4948), + [anon_sym_STAR_EQ] = ACTIONS(4948), + [anon_sym_SLASH_EQ] = ACTIONS(4948), + [anon_sym_PERCENT_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ] = ACTIONS(4946), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4948), + [anon_sym_LT_EQ] = ACTIONS(4948), + [anon_sym_GT_EQ] = ACTIONS(4948), + [anon_sym_BANGin] = ACTIONS(4948), + [anon_sym_is] = ACTIONS(4946), + [anon_sym_BANGis] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4946), + [anon_sym_PERCENT] = ACTIONS(4946), + [anon_sym_as_QMARK] = ACTIONS(4948), + [anon_sym_PLUS_PLUS] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4948), + [anon_sym_BANG_BANG] = ACTIONS(4948), + [anon_sym_suspend] = ACTIONS(4946), + [anon_sym_sealed] = ACTIONS(4946), + [anon_sym_annotation] = ACTIONS(4946), + [anon_sym_data] = ACTIONS(4946), + [anon_sym_inner] = ACTIONS(4946), + [anon_sym_value] = ACTIONS(4946), + [anon_sym_override] = ACTIONS(4946), + [anon_sym_lateinit] = ACTIONS(4946), + [anon_sym_public] = ACTIONS(4946), + [anon_sym_private] = ACTIONS(4946), + [anon_sym_internal] = ACTIONS(4946), + [anon_sym_protected] = ACTIONS(4946), + [anon_sym_tailrec] = ACTIONS(4946), + [anon_sym_operator] = ACTIONS(4946), + [anon_sym_infix] = ACTIONS(4946), + [anon_sym_inline] = ACTIONS(4946), + [anon_sym_external] = ACTIONS(4946), + [sym_property_modifier] = ACTIONS(4946), + [anon_sym_abstract] = ACTIONS(4946), + [anon_sym_final] = ACTIONS(4946), + [anon_sym_open] = ACTIONS(4946), + [anon_sym_vararg] = ACTIONS(4946), + [anon_sym_noinline] = ACTIONS(4946), + [anon_sym_crossinline] = ACTIONS(4946), + [anon_sym_expect] = ACTIONS(4946), + [anon_sym_actual] = ACTIONS(4946), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4948), + [sym_safe_nav] = ACTIONS(4948), [sym_multiline_comment] = ACTIONS(3), }, [3436] = { - [sym__alpha_identifier] = ACTIONS(4766), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_RBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_EQ] = ACTIONS(4766), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(4769), - [anon_sym_COMMA] = ACTIONS(4769), - [anon_sym_RPAREN] = ACTIONS(4769), - [anon_sym_by] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4766), - [anon_sym_set] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4769), - [sym_label] = ACTIONS(4769), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_while] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_else] = ACTIONS(4766), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_STAR_EQ] = ACTIONS(4769), - [anon_sym_SLASH_EQ] = ACTIONS(4769), - [anon_sym_PERCENT_EQ] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_suspend] = ACTIONS(4766), - [anon_sym_sealed] = ACTIONS(4766), - [anon_sym_annotation] = ACTIONS(4766), - [anon_sym_data] = ACTIONS(4766), - [anon_sym_inner] = ACTIONS(4766), - [anon_sym_value] = ACTIONS(4766), - [anon_sym_override] = ACTIONS(4766), - [anon_sym_lateinit] = ACTIONS(4766), - [anon_sym_public] = ACTIONS(4766), - [anon_sym_private] = ACTIONS(4766), - [anon_sym_internal] = ACTIONS(4766), - [anon_sym_protected] = ACTIONS(4766), - [anon_sym_tailrec] = ACTIONS(4766), - [anon_sym_operator] = ACTIONS(4766), - [anon_sym_infix] = ACTIONS(4766), - [anon_sym_inline] = ACTIONS(4766), - [anon_sym_external] = ACTIONS(4766), - [sym_property_modifier] = ACTIONS(4766), - [anon_sym_abstract] = ACTIONS(4766), - [anon_sym_final] = ACTIONS(4766), - [anon_sym_open] = ACTIONS(4766), - [anon_sym_vararg] = ACTIONS(4766), - [anon_sym_noinline] = ACTIONS(4766), - [anon_sym_crossinline] = ACTIONS(4766), - [anon_sym_expect] = ACTIONS(4766), - [anon_sym_actual] = ACTIONS(4766), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), + [sym__alpha_identifier] = ACTIONS(5167), + [anon_sym_AT] = ACTIONS(5169), + [anon_sym_LBRACK] = ACTIONS(5169), + [anon_sym_RBRACK] = ACTIONS(5169), + [anon_sym_as] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5169), + [anon_sym_RBRACE] = ACTIONS(5169), + [anon_sym_LPAREN] = ACTIONS(5169), + [anon_sym_COMMA] = ACTIONS(5169), + [anon_sym_RPAREN] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5167), + [anon_sym_GT] = ACTIONS(5167), + [anon_sym_where] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5167), + [anon_sym_SEMI] = ACTIONS(5169), + [anon_sym_get] = ACTIONS(5167), + [anon_sym_set] = ACTIONS(5167), + [anon_sym_STAR] = ACTIONS(5167), + [anon_sym_DASH_GT] = ACTIONS(5169), + [sym_label] = ACTIONS(5169), + [anon_sym_in] = ACTIONS(5167), + [anon_sym_while] = ACTIONS(5167), + [anon_sym_DOT_DOT] = ACTIONS(5169), + [anon_sym_QMARK_COLON] = ACTIONS(5169), + [anon_sym_AMP_AMP] = ACTIONS(5169), + [anon_sym_PIPE_PIPE] = ACTIONS(5169), + [anon_sym_else] = ACTIONS(5167), + [anon_sym_COLON_COLON] = ACTIONS(5169), + [anon_sym_PLUS_EQ] = ACTIONS(5169), + [anon_sym_DASH_EQ] = ACTIONS(5169), + [anon_sym_STAR_EQ] = ACTIONS(5169), + [anon_sym_SLASH_EQ] = ACTIONS(5169), + [anon_sym_PERCENT_EQ] = ACTIONS(5169), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5169), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5169), + [anon_sym_LT_EQ] = ACTIONS(5169), + [anon_sym_GT_EQ] = ACTIONS(5169), + [anon_sym_BANGin] = ACTIONS(5169), + [anon_sym_is] = ACTIONS(5167), + [anon_sym_BANGis] = ACTIONS(5169), + [anon_sym_PLUS] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5167), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(5169), + [anon_sym_PLUS_PLUS] = ACTIONS(5169), + [anon_sym_DASH_DASH] = ACTIONS(5169), + [anon_sym_BANG_BANG] = ACTIONS(5169), + [anon_sym_suspend] = ACTIONS(5167), + [anon_sym_sealed] = ACTIONS(5167), + [anon_sym_annotation] = ACTIONS(5167), + [anon_sym_data] = ACTIONS(5167), + [anon_sym_inner] = ACTIONS(5167), + [anon_sym_value] = ACTIONS(5167), + [anon_sym_override] = ACTIONS(5167), + [anon_sym_lateinit] = ACTIONS(5167), + [anon_sym_public] = ACTIONS(5167), + [anon_sym_private] = ACTIONS(5167), + [anon_sym_internal] = ACTIONS(5167), + [anon_sym_protected] = ACTIONS(5167), + [anon_sym_tailrec] = ACTIONS(5167), + [anon_sym_operator] = ACTIONS(5167), + [anon_sym_infix] = ACTIONS(5167), + [anon_sym_inline] = ACTIONS(5167), + [anon_sym_external] = ACTIONS(5167), + [sym_property_modifier] = ACTIONS(5167), + [anon_sym_abstract] = ACTIONS(5167), + [anon_sym_final] = ACTIONS(5167), + [anon_sym_open] = ACTIONS(5167), + [anon_sym_vararg] = ACTIONS(5167), + [anon_sym_noinline] = ACTIONS(5167), + [anon_sym_crossinline] = ACTIONS(5167), + [anon_sym_expect] = ACTIONS(5167), + [anon_sym_actual] = ACTIONS(5167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5169), + [sym_safe_nav] = ACTIONS(5169), [sym_multiline_comment] = ACTIONS(3), }, [3437] = { - [sym_type_constraints] = STATE(3770), - [sym_function_body] = STATE(3354), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(6915), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [sym__alpha_identifier] = ACTIONS(4954), + [anon_sym_AT] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4956), + [anon_sym_RBRACK] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4954), + [anon_sym_EQ] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4954), + [anon_sym_where] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_get] = ACTIONS(4954), + [anon_sym_set] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4954), + [anon_sym_DASH_GT] = ACTIONS(4956), + [sym_label] = ACTIONS(4956), + [anon_sym_in] = ACTIONS(4954), + [anon_sym_while] = ACTIONS(4954), + [anon_sym_DOT_DOT] = ACTIONS(4956), + [anon_sym_QMARK_COLON] = ACTIONS(4956), + [anon_sym_AMP_AMP] = ACTIONS(4956), + [anon_sym_PIPE_PIPE] = ACTIONS(4956), + [anon_sym_else] = ACTIONS(4954), + [anon_sym_COLON_COLON] = ACTIONS(4956), + [anon_sym_PLUS_EQ] = ACTIONS(4956), + [anon_sym_DASH_EQ] = ACTIONS(4956), + [anon_sym_STAR_EQ] = ACTIONS(4956), + [anon_sym_SLASH_EQ] = ACTIONS(4956), + [anon_sym_PERCENT_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4956), + [anon_sym_LT_EQ] = ACTIONS(4956), + [anon_sym_GT_EQ] = ACTIONS(4956), + [anon_sym_BANGin] = ACTIONS(4956), + [anon_sym_is] = ACTIONS(4954), + [anon_sym_BANGis] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4954), + [anon_sym_as_QMARK] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_BANG_BANG] = ACTIONS(4956), + [anon_sym_suspend] = ACTIONS(4954), + [anon_sym_sealed] = ACTIONS(4954), + [anon_sym_annotation] = ACTIONS(4954), + [anon_sym_data] = ACTIONS(4954), + [anon_sym_inner] = ACTIONS(4954), + [anon_sym_value] = ACTIONS(4954), + [anon_sym_override] = ACTIONS(4954), + [anon_sym_lateinit] = ACTIONS(4954), + [anon_sym_public] = ACTIONS(4954), + [anon_sym_private] = ACTIONS(4954), + [anon_sym_internal] = ACTIONS(4954), + [anon_sym_protected] = ACTIONS(4954), + [anon_sym_tailrec] = ACTIONS(4954), + [anon_sym_operator] = ACTIONS(4954), + [anon_sym_infix] = ACTIONS(4954), + [anon_sym_inline] = ACTIONS(4954), + [anon_sym_external] = ACTIONS(4954), + [sym_property_modifier] = ACTIONS(4954), + [anon_sym_abstract] = ACTIONS(4954), + [anon_sym_final] = ACTIONS(4954), + [anon_sym_open] = ACTIONS(4954), + [anon_sym_vararg] = ACTIONS(4954), + [anon_sym_noinline] = ACTIONS(4954), + [anon_sym_crossinline] = ACTIONS(4954), + [anon_sym_expect] = ACTIONS(4954), + [anon_sym_actual] = ACTIONS(4954), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4956), + [sym_safe_nav] = ACTIONS(4956), + [sym_multiline_comment] = ACTIONS(3), }, [3438] = { - [sym_type_constraints] = STATE(3783), - [sym_function_body] = STATE(3314), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6917), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [sym__alpha_identifier] = ACTIONS(4950), + [anon_sym_AT] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_RBRACK] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4950), + [anon_sym_EQ] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4950), + [anon_sym_where] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_get] = ACTIONS(4950), + [anon_sym_set] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4950), + [anon_sym_DASH_GT] = ACTIONS(4952), + [sym_label] = ACTIONS(4952), + [anon_sym_in] = ACTIONS(4950), + [anon_sym_while] = ACTIONS(4950), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_QMARK_COLON] = ACTIONS(4952), + [anon_sym_AMP_AMP] = ACTIONS(4952), + [anon_sym_PIPE_PIPE] = ACTIONS(4952), + [anon_sym_else] = ACTIONS(4950), + [anon_sym_COLON_COLON] = ACTIONS(4952), + [anon_sym_PLUS_EQ] = ACTIONS(4952), + [anon_sym_DASH_EQ] = ACTIONS(4952), + [anon_sym_STAR_EQ] = ACTIONS(4952), + [anon_sym_SLASH_EQ] = ACTIONS(4952), + [anon_sym_PERCENT_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4952), + [anon_sym_BANGin] = ACTIONS(4952), + [anon_sym_is] = ACTIONS(4950), + [anon_sym_BANGis] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4950), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4950), + [anon_sym_PERCENT] = ACTIONS(4950), + [anon_sym_as_QMARK] = ACTIONS(4952), + [anon_sym_PLUS_PLUS] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_BANG_BANG] = ACTIONS(4952), + [anon_sym_suspend] = ACTIONS(4950), + [anon_sym_sealed] = ACTIONS(4950), + [anon_sym_annotation] = ACTIONS(4950), + [anon_sym_data] = ACTIONS(4950), + [anon_sym_inner] = ACTIONS(4950), + [anon_sym_value] = ACTIONS(4950), + [anon_sym_override] = ACTIONS(4950), + [anon_sym_lateinit] = ACTIONS(4950), + [anon_sym_public] = ACTIONS(4950), + [anon_sym_private] = ACTIONS(4950), + [anon_sym_internal] = ACTIONS(4950), + [anon_sym_protected] = ACTIONS(4950), + [anon_sym_tailrec] = ACTIONS(4950), + [anon_sym_operator] = ACTIONS(4950), + [anon_sym_infix] = ACTIONS(4950), + [anon_sym_inline] = ACTIONS(4950), + [anon_sym_external] = ACTIONS(4950), + [sym_property_modifier] = ACTIONS(4950), + [anon_sym_abstract] = ACTIONS(4950), + [anon_sym_final] = ACTIONS(4950), + [anon_sym_open] = ACTIONS(4950), + [anon_sym_vararg] = ACTIONS(4950), + [anon_sym_noinline] = ACTIONS(4950), + [anon_sym_crossinline] = ACTIONS(4950), + [anon_sym_expect] = ACTIONS(4950), + [anon_sym_actual] = ACTIONS(4950), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4952), + [sym_safe_nav] = ACTIONS(4952), + [sym_multiline_comment] = ACTIONS(3), }, [3439] = { - [sym_class_body] = STATE(3574), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_RBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [anon_sym_DASH_GT] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym__alpha_identifier] = ACTIONS(5131), + [anon_sym_AT] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_RBRACK] = ACTIONS(5133), + [anon_sym_as] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_RPAREN] = ACTIONS(5133), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_where] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_SEMI] = ACTIONS(5133), + [anon_sym_get] = ACTIONS(5131), + [anon_sym_set] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_DASH_GT] = ACTIONS(5133), + [sym_label] = ACTIONS(5133), + [anon_sym_in] = ACTIONS(5131), + [anon_sym_while] = ACTIONS(5131), + [anon_sym_DOT_DOT] = ACTIONS(5133), + [anon_sym_QMARK_COLON] = ACTIONS(5133), + [anon_sym_AMP_AMP] = ACTIONS(5133), + [anon_sym_PIPE_PIPE] = ACTIONS(5133), + [anon_sym_else] = ACTIONS(5131), + [anon_sym_COLON_COLON] = ACTIONS(5133), + [anon_sym_PLUS_EQ] = ACTIONS(5133), + [anon_sym_DASH_EQ] = ACTIONS(5133), + [anon_sym_STAR_EQ] = ACTIONS(5133), + [anon_sym_SLASH_EQ] = ACTIONS(5133), + [anon_sym_PERCENT_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5133), + [anon_sym_LT_EQ] = ACTIONS(5133), + [anon_sym_GT_EQ] = ACTIONS(5133), + [anon_sym_BANGin] = ACTIONS(5133), + [anon_sym_is] = ACTIONS(5131), + [anon_sym_BANGis] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5131), + [anon_sym_as_QMARK] = ACTIONS(5133), + [anon_sym_PLUS_PLUS] = ACTIONS(5133), + [anon_sym_DASH_DASH] = ACTIONS(5133), + [anon_sym_BANG_BANG] = ACTIONS(5133), + [anon_sym_suspend] = ACTIONS(5131), + [anon_sym_sealed] = ACTIONS(5131), + [anon_sym_annotation] = ACTIONS(5131), + [anon_sym_data] = ACTIONS(5131), + [anon_sym_inner] = ACTIONS(5131), + [anon_sym_value] = ACTIONS(5131), + [anon_sym_override] = ACTIONS(5131), + [anon_sym_lateinit] = ACTIONS(5131), + [anon_sym_public] = ACTIONS(5131), + [anon_sym_private] = ACTIONS(5131), + [anon_sym_internal] = ACTIONS(5131), + [anon_sym_protected] = ACTIONS(5131), + [anon_sym_tailrec] = ACTIONS(5131), + [anon_sym_operator] = ACTIONS(5131), + [anon_sym_infix] = ACTIONS(5131), + [anon_sym_inline] = ACTIONS(5131), + [anon_sym_external] = ACTIONS(5131), + [sym_property_modifier] = ACTIONS(5131), + [anon_sym_abstract] = ACTIONS(5131), + [anon_sym_final] = ACTIONS(5131), + [anon_sym_open] = ACTIONS(5131), + [anon_sym_vararg] = ACTIONS(5131), + [anon_sym_noinline] = ACTIONS(5131), + [anon_sym_crossinline] = ACTIONS(5131), + [anon_sym_expect] = ACTIONS(5131), + [anon_sym_actual] = ACTIONS(5131), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5133), + [sym_safe_nav] = ACTIONS(5133), [sym_multiline_comment] = ACTIONS(3), }, [3440] = { - [sym_type_constraints] = STATE(3792), - [sym_function_body] = STATE(3278), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(6919), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_COMMA] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4209), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_this] = ACTIONS(4209), - [anon_sym_super] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4211), - [sym_label] = ACTIONS(4209), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_if] = ACTIONS(4209), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_when] = ACTIONS(4209), - [anon_sym_try] = ACTIONS(4209), - [anon_sym_throw] = ACTIONS(4209), - [anon_sym_return] = ACTIONS(4209), - [anon_sym_continue] = ACTIONS(4209), - [anon_sym_break] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4211), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG] = ACTIONS(4209), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4211), - [anon_sym_continue_AT] = ACTIONS(4211), - [anon_sym_break_AT] = ACTIONS(4211), - [anon_sym_this_AT] = ACTIONS(4211), - [anon_sym_super_AT] = ACTIONS(4211), - [sym_real_literal] = ACTIONS(4211), - [sym_integer_literal] = ACTIONS(4209), - [sym_hex_literal] = ACTIONS(4211), - [sym_bin_literal] = ACTIONS(4211), - [anon_sym_true] = ACTIONS(4209), - [anon_sym_false] = ACTIONS(4209), - [anon_sym_SQUOTE] = ACTIONS(4211), - [sym__backtick_identifier] = ACTIONS(4211), - [sym__automatic_semicolon] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4211), + [sym__alpha_identifier] = ACTIONS(5135), + [anon_sym_AT] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_RBRACK] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_EQ] = ACTIONS(5135), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_RPAREN] = ACTIONS(5137), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_where] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(5137), + [anon_sym_get] = ACTIONS(5135), + [anon_sym_set] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [anon_sym_DASH_GT] = ACTIONS(5137), + [sym_label] = ACTIONS(5137), + [anon_sym_in] = ACTIONS(5135), + [anon_sym_while] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5137), + [anon_sym_QMARK_COLON] = ACTIONS(5137), + [anon_sym_AMP_AMP] = ACTIONS(5137), + [anon_sym_PIPE_PIPE] = ACTIONS(5137), + [anon_sym_else] = ACTIONS(5135), + [anon_sym_COLON_COLON] = ACTIONS(5137), + [anon_sym_PLUS_EQ] = ACTIONS(5137), + [anon_sym_DASH_EQ] = ACTIONS(5137), + [anon_sym_STAR_EQ] = ACTIONS(5137), + [anon_sym_SLASH_EQ] = ACTIONS(5137), + [anon_sym_PERCENT_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5137), + [anon_sym_LT_EQ] = ACTIONS(5137), + [anon_sym_GT_EQ] = ACTIONS(5137), + [anon_sym_BANGin] = ACTIONS(5137), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_BANGis] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_as_QMARK] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5137), + [anon_sym_DASH_DASH] = ACTIONS(5137), + [anon_sym_BANG_BANG] = ACTIONS(5137), + [anon_sym_suspend] = ACTIONS(5135), + [anon_sym_sealed] = ACTIONS(5135), + [anon_sym_annotation] = ACTIONS(5135), + [anon_sym_data] = ACTIONS(5135), + [anon_sym_inner] = ACTIONS(5135), + [anon_sym_value] = ACTIONS(5135), + [anon_sym_override] = ACTIONS(5135), + [anon_sym_lateinit] = ACTIONS(5135), + [anon_sym_public] = ACTIONS(5135), + [anon_sym_private] = ACTIONS(5135), + [anon_sym_internal] = ACTIONS(5135), + [anon_sym_protected] = ACTIONS(5135), + [anon_sym_tailrec] = ACTIONS(5135), + [anon_sym_operator] = ACTIONS(5135), + [anon_sym_infix] = ACTIONS(5135), + [anon_sym_inline] = ACTIONS(5135), + [anon_sym_external] = ACTIONS(5135), + [sym_property_modifier] = ACTIONS(5135), + [anon_sym_abstract] = ACTIONS(5135), + [anon_sym_final] = ACTIONS(5135), + [anon_sym_open] = ACTIONS(5135), + [anon_sym_vararg] = ACTIONS(5135), + [anon_sym_noinline] = ACTIONS(5135), + [anon_sym_crossinline] = ACTIONS(5135), + [anon_sym_expect] = ACTIONS(5135), + [anon_sym_actual] = ACTIONS(5135), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5137), + [sym_safe_nav] = ACTIONS(5137), + [sym_multiline_comment] = ACTIONS(3), }, [3441] = { - [sym__alpha_identifier] = ACTIONS(4744), - [anon_sym_AT] = ACTIONS(4746), - [anon_sym_COLON] = ACTIONS(4744), - [anon_sym_LBRACK] = ACTIONS(4746), - [anon_sym_RBRACK] = ACTIONS(4746), - [anon_sym_as] = ACTIONS(4744), - [anon_sym_EQ] = ACTIONS(4744), - [anon_sym_LBRACE] = ACTIONS(4746), - [anon_sym_RBRACE] = ACTIONS(4746), - [anon_sym_LPAREN] = ACTIONS(4746), - [anon_sym_COMMA] = ACTIONS(4746), - [anon_sym_RPAREN] = ACTIONS(4746), - [anon_sym_LT] = ACTIONS(4744), - [anon_sym_GT] = ACTIONS(4744), - [anon_sym_where] = ACTIONS(4744), - [anon_sym_DOT] = ACTIONS(4744), - [anon_sym_SEMI] = ACTIONS(4746), - [anon_sym_get] = ACTIONS(4744), - [anon_sym_set] = ACTIONS(4744), - [anon_sym_STAR] = ACTIONS(4744), - [anon_sym_DASH_GT] = ACTIONS(4746), - [sym_label] = ACTIONS(4746), - [anon_sym_in] = ACTIONS(4744), - [anon_sym_while] = ACTIONS(4744), - [anon_sym_DOT_DOT] = ACTIONS(4746), - [anon_sym_QMARK_COLON] = ACTIONS(4746), - [anon_sym_AMP_AMP] = ACTIONS(4746), - [anon_sym_PIPE_PIPE] = ACTIONS(4746), - [anon_sym_else] = ACTIONS(4744), - [anon_sym_COLON_COLON] = ACTIONS(4746), - [anon_sym_PLUS_EQ] = ACTIONS(4746), - [anon_sym_DASH_EQ] = ACTIONS(4746), - [anon_sym_STAR_EQ] = ACTIONS(4746), - [anon_sym_SLASH_EQ] = ACTIONS(4746), - [anon_sym_PERCENT_EQ] = ACTIONS(4746), - [anon_sym_BANG_EQ] = ACTIONS(4744), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4746), - [anon_sym_EQ_EQ] = ACTIONS(4744), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4746), - [anon_sym_LT_EQ] = ACTIONS(4746), - [anon_sym_GT_EQ] = ACTIONS(4746), - [anon_sym_BANGin] = ACTIONS(4746), - [anon_sym_is] = ACTIONS(4744), - [anon_sym_BANGis] = ACTIONS(4746), - [anon_sym_PLUS] = ACTIONS(4744), - [anon_sym_DASH] = ACTIONS(4744), - [anon_sym_SLASH] = ACTIONS(4744), - [anon_sym_PERCENT] = ACTIONS(4744), - [anon_sym_as_QMARK] = ACTIONS(4746), - [anon_sym_PLUS_PLUS] = ACTIONS(4746), - [anon_sym_DASH_DASH] = ACTIONS(4746), - [anon_sym_BANG_BANG] = ACTIONS(4746), - [anon_sym_suspend] = ACTIONS(4744), - [anon_sym_sealed] = ACTIONS(4744), - [anon_sym_annotation] = ACTIONS(4744), - [anon_sym_data] = ACTIONS(4744), - [anon_sym_inner] = ACTIONS(4744), - [anon_sym_value] = ACTIONS(4744), - [anon_sym_override] = ACTIONS(4744), - [anon_sym_lateinit] = ACTIONS(4744), - [anon_sym_public] = ACTIONS(4744), - [anon_sym_private] = ACTIONS(4744), - [anon_sym_internal] = ACTIONS(4744), - [anon_sym_protected] = ACTIONS(4744), - [anon_sym_tailrec] = ACTIONS(4744), - [anon_sym_operator] = ACTIONS(4744), - [anon_sym_infix] = ACTIONS(4744), - [anon_sym_inline] = ACTIONS(4744), - [anon_sym_external] = ACTIONS(4744), - [sym_property_modifier] = ACTIONS(4744), - [anon_sym_abstract] = ACTIONS(4744), - [anon_sym_final] = ACTIONS(4744), - [anon_sym_open] = ACTIONS(4744), - [anon_sym_vararg] = ACTIONS(4744), - [anon_sym_noinline] = ACTIONS(4744), - [anon_sym_crossinline] = ACTIONS(4744), - [anon_sym_expect] = ACTIONS(4744), - [anon_sym_actual] = ACTIONS(4744), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4746), - [sym_safe_nav] = ACTIONS(4746), + [sym__alpha_identifier] = ACTIONS(5195), + [anon_sym_AT] = ACTIONS(5197), + [anon_sym_LBRACK] = ACTIONS(5197), + [anon_sym_RBRACK] = ACTIONS(5197), + [anon_sym_as] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5197), + [anon_sym_RBRACE] = ACTIONS(5197), + [anon_sym_LPAREN] = ACTIONS(5197), + [anon_sym_COMMA] = ACTIONS(5197), + [anon_sym_RPAREN] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5195), + [anon_sym_GT] = ACTIONS(5195), + [anon_sym_where] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5195), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym_get] = ACTIONS(5195), + [anon_sym_set] = ACTIONS(5195), + [anon_sym_STAR] = ACTIONS(5195), + [anon_sym_DASH_GT] = ACTIONS(5197), + [sym_label] = ACTIONS(5197), + [anon_sym_in] = ACTIONS(5195), + [anon_sym_while] = ACTIONS(5195), + [anon_sym_DOT_DOT] = ACTIONS(5197), + [anon_sym_QMARK_COLON] = ACTIONS(5197), + [anon_sym_AMP_AMP] = ACTIONS(5197), + [anon_sym_PIPE_PIPE] = ACTIONS(5197), + [anon_sym_else] = ACTIONS(5195), + [anon_sym_COLON_COLON] = ACTIONS(5197), + [anon_sym_PLUS_EQ] = ACTIONS(5197), + [anon_sym_DASH_EQ] = ACTIONS(5197), + [anon_sym_STAR_EQ] = ACTIONS(5197), + [anon_sym_SLASH_EQ] = ACTIONS(5197), + [anon_sym_PERCENT_EQ] = ACTIONS(5197), + [anon_sym_BANG_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5197), + [anon_sym_EQ_EQ] = ACTIONS(5195), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5197), + [anon_sym_LT_EQ] = ACTIONS(5197), + [anon_sym_GT_EQ] = ACTIONS(5197), + [anon_sym_BANGin] = ACTIONS(5197), + [anon_sym_is] = ACTIONS(5195), + [anon_sym_BANGis] = ACTIONS(5197), + [anon_sym_PLUS] = ACTIONS(5195), + [anon_sym_DASH] = ACTIONS(5195), + [anon_sym_SLASH] = ACTIONS(5195), + [anon_sym_PERCENT] = ACTIONS(5195), + [anon_sym_as_QMARK] = ACTIONS(5197), + [anon_sym_PLUS_PLUS] = ACTIONS(5197), + [anon_sym_DASH_DASH] = ACTIONS(5197), + [anon_sym_BANG_BANG] = ACTIONS(5197), + [anon_sym_suspend] = ACTIONS(5195), + [anon_sym_sealed] = ACTIONS(5195), + [anon_sym_annotation] = ACTIONS(5195), + [anon_sym_data] = ACTIONS(5195), + [anon_sym_inner] = ACTIONS(5195), + [anon_sym_value] = ACTIONS(5195), + [anon_sym_override] = ACTIONS(5195), + [anon_sym_lateinit] = ACTIONS(5195), + [anon_sym_public] = ACTIONS(5195), + [anon_sym_private] = ACTIONS(5195), + [anon_sym_internal] = ACTIONS(5195), + [anon_sym_protected] = ACTIONS(5195), + [anon_sym_tailrec] = ACTIONS(5195), + [anon_sym_operator] = ACTIONS(5195), + [anon_sym_infix] = ACTIONS(5195), + [anon_sym_inline] = ACTIONS(5195), + [anon_sym_external] = ACTIONS(5195), + [sym_property_modifier] = ACTIONS(5195), + [anon_sym_abstract] = ACTIONS(5195), + [anon_sym_final] = ACTIONS(5195), + [anon_sym_open] = ACTIONS(5195), + [anon_sym_vararg] = ACTIONS(5195), + [anon_sym_noinline] = ACTIONS(5195), + [anon_sym_crossinline] = ACTIONS(5195), + [anon_sym_expect] = ACTIONS(5195), + [anon_sym_actual] = ACTIONS(5195), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5197), + [sym_safe_nav] = ACTIONS(5197), [sym_multiline_comment] = ACTIONS(3), }, [3442] = { - [sym__alpha_identifier] = ACTIONS(4758), - [anon_sym_AT] = ACTIONS(4760), - [anon_sym_COLON] = ACTIONS(4758), - [anon_sym_LBRACK] = ACTIONS(4760), - [anon_sym_RBRACK] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4758), - [anon_sym_EQ] = ACTIONS(4758), - [anon_sym_LBRACE] = ACTIONS(4760), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_RPAREN] = ACTIONS(4760), - [anon_sym_LT] = ACTIONS(4758), - [anon_sym_GT] = ACTIONS(4758), - [anon_sym_where] = ACTIONS(4758), - [anon_sym_DOT] = ACTIONS(4758), - [anon_sym_SEMI] = ACTIONS(4760), - [anon_sym_get] = ACTIONS(4758), - [anon_sym_set] = ACTIONS(4758), - [anon_sym_STAR] = ACTIONS(4758), - [anon_sym_DASH_GT] = ACTIONS(4760), - [sym_label] = ACTIONS(4760), - [anon_sym_in] = ACTIONS(4758), - [anon_sym_while] = ACTIONS(4758), - [anon_sym_DOT_DOT] = ACTIONS(4760), - [anon_sym_QMARK_COLON] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [anon_sym_else] = ACTIONS(4758), - [anon_sym_COLON_COLON] = ACTIONS(4760), - [anon_sym_PLUS_EQ] = ACTIONS(4760), - [anon_sym_DASH_EQ] = ACTIONS(4760), - [anon_sym_STAR_EQ] = ACTIONS(4760), - [anon_sym_SLASH_EQ] = ACTIONS(4760), - [anon_sym_PERCENT_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4758), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_BANGin] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4758), - [anon_sym_BANGis] = ACTIONS(4760), - [anon_sym_PLUS] = ACTIONS(4758), - [anon_sym_DASH] = ACTIONS(4758), - [anon_sym_SLASH] = ACTIONS(4758), - [anon_sym_PERCENT] = ACTIONS(4758), - [anon_sym_as_QMARK] = ACTIONS(4760), - [anon_sym_PLUS_PLUS] = ACTIONS(4760), - [anon_sym_DASH_DASH] = ACTIONS(4760), - [anon_sym_BANG_BANG] = ACTIONS(4760), - [anon_sym_suspend] = ACTIONS(4758), - [anon_sym_sealed] = ACTIONS(4758), - [anon_sym_annotation] = ACTIONS(4758), - [anon_sym_data] = ACTIONS(4758), - [anon_sym_inner] = ACTIONS(4758), - [anon_sym_value] = ACTIONS(4758), - [anon_sym_override] = ACTIONS(4758), - [anon_sym_lateinit] = ACTIONS(4758), - [anon_sym_public] = ACTIONS(4758), - [anon_sym_private] = ACTIONS(4758), - [anon_sym_internal] = ACTIONS(4758), - [anon_sym_protected] = ACTIONS(4758), - [anon_sym_tailrec] = ACTIONS(4758), - [anon_sym_operator] = ACTIONS(4758), - [anon_sym_infix] = ACTIONS(4758), - [anon_sym_inline] = ACTIONS(4758), - [anon_sym_external] = ACTIONS(4758), - [sym_property_modifier] = ACTIONS(4758), - [anon_sym_abstract] = ACTIONS(4758), - [anon_sym_final] = ACTIONS(4758), - [anon_sym_open] = ACTIONS(4758), - [anon_sym_vararg] = ACTIONS(4758), - [anon_sym_noinline] = ACTIONS(4758), - [anon_sym_crossinline] = ACTIONS(4758), - [anon_sym_expect] = ACTIONS(4758), - [anon_sym_actual] = ACTIONS(4758), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4760), - [sym_safe_nav] = ACTIONS(4760), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_RBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(6858), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_DASH_GT] = ACTIONS(4894), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_while] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), [sym_multiline_comment] = ACTIONS(3), }, [3443] = { - [sym_class_body] = STATE(3573), - [sym__alpha_identifier] = ACTIONS(4461), - [anon_sym_AT] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_RBRACK] = ACTIONS(4463), - [anon_sym_as] = ACTIONS(4461), - [anon_sym_EQ] = ACTIONS(4461), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_RPAREN] = ACTIONS(4463), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_where] = ACTIONS(4461), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [anon_sym_get] = ACTIONS(4461), - [anon_sym_set] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [anon_sym_DASH_GT] = ACTIONS(4463), - [sym_label] = ACTIONS(4463), - [anon_sym_in] = ACTIONS(4461), - [anon_sym_while] = ACTIONS(4461), - [anon_sym_DOT_DOT] = ACTIONS(4463), - [anon_sym_QMARK_COLON] = ACTIONS(4463), - [anon_sym_AMP_AMP] = ACTIONS(4463), - [anon_sym_PIPE_PIPE] = ACTIONS(4463), - [anon_sym_else] = ACTIONS(4461), - [anon_sym_COLON_COLON] = ACTIONS(4463), - [anon_sym_PLUS_EQ] = ACTIONS(4463), - [anon_sym_DASH_EQ] = ACTIONS(4463), - [anon_sym_STAR_EQ] = ACTIONS(4463), - [anon_sym_SLASH_EQ] = ACTIONS(4463), - [anon_sym_PERCENT_EQ] = ACTIONS(4463), - [anon_sym_BANG_EQ] = ACTIONS(4461), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4463), - [anon_sym_EQ_EQ] = ACTIONS(4461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4463), - [anon_sym_LT_EQ] = ACTIONS(4463), - [anon_sym_GT_EQ] = ACTIONS(4463), - [anon_sym_BANGin] = ACTIONS(4463), - [anon_sym_is] = ACTIONS(4461), - [anon_sym_BANGis] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(4461), - [anon_sym_as_QMARK] = ACTIONS(4463), - [anon_sym_PLUS_PLUS] = ACTIONS(4463), - [anon_sym_DASH_DASH] = ACTIONS(4463), - [anon_sym_BANG_BANG] = ACTIONS(4463), - [anon_sym_suspend] = ACTIONS(4461), - [anon_sym_sealed] = ACTIONS(4461), - [anon_sym_annotation] = ACTIONS(4461), - [anon_sym_data] = ACTIONS(4461), - [anon_sym_inner] = ACTIONS(4461), - [anon_sym_value] = ACTIONS(4461), - [anon_sym_override] = ACTIONS(4461), - [anon_sym_lateinit] = ACTIONS(4461), - [anon_sym_public] = ACTIONS(4461), - [anon_sym_private] = ACTIONS(4461), - [anon_sym_internal] = ACTIONS(4461), - [anon_sym_protected] = ACTIONS(4461), - [anon_sym_tailrec] = ACTIONS(4461), - [anon_sym_operator] = ACTIONS(4461), - [anon_sym_infix] = ACTIONS(4461), - [anon_sym_inline] = ACTIONS(4461), - [anon_sym_external] = ACTIONS(4461), - [sym_property_modifier] = ACTIONS(4461), - [anon_sym_abstract] = ACTIONS(4461), - [anon_sym_final] = ACTIONS(4461), - [anon_sym_open] = ACTIONS(4461), - [anon_sym_vararg] = ACTIONS(4461), - [anon_sym_noinline] = ACTIONS(4461), - [anon_sym_crossinline] = ACTIONS(4461), - [anon_sym_expect] = ACTIONS(4461), - [anon_sym_actual] = ACTIONS(4461), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4463), - [sym_safe_nav] = ACTIONS(4463), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(6860), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), }, [3444] = { - [sym__alpha_identifier] = ACTIONS(4776), - [anon_sym_AT] = ACTIONS(4778), - [anon_sym_LBRACK] = ACTIONS(4778), - [anon_sym_RBRACK] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(4776), - [anon_sym_EQ] = ACTIONS(4776), - [anon_sym_LBRACE] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(4778), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_RPAREN] = ACTIONS(4778), - [anon_sym_by] = ACTIONS(4776), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_where] = ACTIONS(4776), - [anon_sym_DOT] = ACTIONS(4776), - [anon_sym_SEMI] = ACTIONS(4778), - [anon_sym_get] = ACTIONS(4776), - [anon_sym_set] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4776), - [anon_sym_DASH_GT] = ACTIONS(4778), - [sym_label] = ACTIONS(4778), - [anon_sym_in] = ACTIONS(4776), - [anon_sym_while] = ACTIONS(4776), - [anon_sym_DOT_DOT] = ACTIONS(4778), - [anon_sym_QMARK_COLON] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4778), - [anon_sym_PIPE_PIPE] = ACTIONS(4778), - [anon_sym_else] = ACTIONS(4776), - [anon_sym_COLON_COLON] = ACTIONS(4778), - [anon_sym_PLUS_EQ] = ACTIONS(4778), - [anon_sym_DASH_EQ] = ACTIONS(4778), - [anon_sym_STAR_EQ] = ACTIONS(4778), - [anon_sym_SLASH_EQ] = ACTIONS(4778), - [anon_sym_PERCENT_EQ] = ACTIONS(4778), - [anon_sym_BANG_EQ] = ACTIONS(4776), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4778), - [anon_sym_EQ_EQ] = ACTIONS(4776), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4778), - [anon_sym_LT_EQ] = ACTIONS(4778), - [anon_sym_GT_EQ] = ACTIONS(4778), - [anon_sym_BANGin] = ACTIONS(4778), - [anon_sym_is] = ACTIONS(4776), - [anon_sym_BANGis] = ACTIONS(4778), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4776), - [anon_sym_as_QMARK] = ACTIONS(4778), - [anon_sym_PLUS_PLUS] = ACTIONS(4778), - [anon_sym_DASH_DASH] = ACTIONS(4778), - [anon_sym_BANG_BANG] = ACTIONS(4778), - [anon_sym_suspend] = ACTIONS(4776), - [anon_sym_sealed] = ACTIONS(4776), - [anon_sym_annotation] = ACTIONS(4776), - [anon_sym_data] = ACTIONS(4776), - [anon_sym_inner] = ACTIONS(4776), - [anon_sym_value] = ACTIONS(4776), - [anon_sym_override] = ACTIONS(4776), - [anon_sym_lateinit] = ACTIONS(4776), - [anon_sym_public] = ACTIONS(4776), - [anon_sym_private] = ACTIONS(4776), - [anon_sym_internal] = ACTIONS(4776), - [anon_sym_protected] = ACTIONS(4776), - [anon_sym_tailrec] = ACTIONS(4776), - [anon_sym_operator] = ACTIONS(4776), - [anon_sym_infix] = ACTIONS(4776), - [anon_sym_inline] = ACTIONS(4776), - [anon_sym_external] = ACTIONS(4776), - [sym_property_modifier] = ACTIONS(4776), - [anon_sym_abstract] = ACTIONS(4776), - [anon_sym_final] = ACTIONS(4776), - [anon_sym_open] = ACTIONS(4776), - [anon_sym_vararg] = ACTIONS(4776), - [anon_sym_noinline] = ACTIONS(4776), - [anon_sym_crossinline] = ACTIONS(4776), - [anon_sym_expect] = ACTIONS(4776), - [anon_sym_actual] = ACTIONS(4776), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4778), - [sym_safe_nav] = ACTIONS(4778), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_EQ] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_by] = ACTIONS(4706), + [anon_sym_where] = ACTIONS(4706), + [anon_sym_object] = ACTIONS(4706), + [anon_sym_fun] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(4706), + [anon_sym_set] = ACTIONS(4706), + [anon_sym_this] = ACTIONS(4706), + [anon_sym_super] = ACTIONS(4706), + [anon_sym_STAR] = ACTIONS(4708), + [sym_label] = ACTIONS(4706), + [anon_sym_in] = ACTIONS(4706), + [anon_sym_null] = ACTIONS(4706), + [anon_sym_if] = ACTIONS(4706), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_when] = ACTIONS(4706), + [anon_sym_try] = ACTIONS(4706), + [anon_sym_throw] = ACTIONS(4706), + [anon_sym_return] = ACTIONS(4706), + [anon_sym_continue] = ACTIONS(4706), + [anon_sym_break] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4708), + [anon_sym_BANGin] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4706), + [anon_sym_BANGis] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_PLUS_PLUS] = ACTIONS(4708), + [anon_sym_DASH_DASH] = ACTIONS(4708), + [anon_sym_BANG] = ACTIONS(4706), + [anon_sym_suspend] = ACTIONS(4706), + [anon_sym_sealed] = ACTIONS(4706), + [anon_sym_annotation] = ACTIONS(4706), + [anon_sym_data] = ACTIONS(4706), + [anon_sym_inner] = ACTIONS(4706), + [anon_sym_value] = ACTIONS(4706), + [anon_sym_override] = ACTIONS(4706), + [anon_sym_lateinit] = ACTIONS(4706), + [anon_sym_public] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4706), + [anon_sym_internal] = ACTIONS(4706), + [anon_sym_protected] = ACTIONS(4706), + [anon_sym_tailrec] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(4706), + [anon_sym_infix] = ACTIONS(4706), + [anon_sym_inline] = ACTIONS(4706), + [anon_sym_external] = ACTIONS(4706), + [sym_property_modifier] = ACTIONS(4706), + [anon_sym_abstract] = ACTIONS(4706), + [anon_sym_final] = ACTIONS(4706), + [anon_sym_open] = ACTIONS(4706), + [anon_sym_vararg] = ACTIONS(4706), + [anon_sym_noinline] = ACTIONS(4706), + [anon_sym_crossinline] = ACTIONS(4706), + [anon_sym_expect] = ACTIONS(4706), + [anon_sym_actual] = ACTIONS(4706), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4708), + [anon_sym_continue_AT] = ACTIONS(4708), + [anon_sym_break_AT] = ACTIONS(4708), + [anon_sym_this_AT] = ACTIONS(4708), + [anon_sym_super_AT] = ACTIONS(4708), + [sym_real_literal] = ACTIONS(4708), + [sym_integer_literal] = ACTIONS(4706), + [sym_hex_literal] = ACTIONS(4708), + [sym_bin_literal] = ACTIONS(4708), + [anon_sym_true] = ACTIONS(4706), + [anon_sym_false] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4708), + [sym__backtick_identifier] = ACTIONS(4708), + [sym__automatic_semicolon] = ACTIONS(4708), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4708), }, [3445] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3445), - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_RBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(6921), - [anon_sym_RPAREN] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4705), - [anon_sym_DASH_GT] = ACTIONS(4707), - [sym_label] = ACTIONS(4707), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_while] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_PLUS_EQ] = ACTIONS(4707), - [anon_sym_DASH_EQ] = ACTIONS(4707), - [anon_sym_STAR_EQ] = ACTIONS(4707), - [anon_sym_SLASH_EQ] = ACTIONS(4707), - [anon_sym_PERCENT_EQ] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4705), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_suspend] = ACTIONS(4705), - [anon_sym_sealed] = ACTIONS(4705), - [anon_sym_annotation] = ACTIONS(4705), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_override] = ACTIONS(4705), - [anon_sym_lateinit] = ACTIONS(4705), - [anon_sym_public] = ACTIONS(4705), - [anon_sym_private] = ACTIONS(4705), - [anon_sym_internal] = ACTIONS(4705), - [anon_sym_protected] = ACTIONS(4705), - [anon_sym_tailrec] = ACTIONS(4705), - [anon_sym_operator] = ACTIONS(4705), - [anon_sym_infix] = ACTIONS(4705), - [anon_sym_inline] = ACTIONS(4705), - [anon_sym_external] = ACTIONS(4705), - [sym_property_modifier] = ACTIONS(4705), - [anon_sym_abstract] = ACTIONS(4705), - [anon_sym_final] = ACTIONS(4705), - [anon_sym_open] = ACTIONS(4705), - [anon_sym_vararg] = ACTIONS(4705), - [anon_sym_noinline] = ACTIONS(4705), - [anon_sym_crossinline] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4696), + [anon_sym_AT] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_by] = ACTIONS(4696), + [anon_sym_where] = ACTIONS(4696), + [anon_sym_object] = ACTIONS(4696), + [anon_sym_fun] = ACTIONS(4696), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_get] = ACTIONS(4696), + [anon_sym_set] = ACTIONS(4696), + [anon_sym_this] = ACTIONS(4696), + [anon_sym_super] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4698), + [sym_label] = ACTIONS(4696), + [anon_sym_in] = ACTIONS(4696), + [anon_sym_null] = ACTIONS(4696), + [anon_sym_if] = ACTIONS(4696), + [anon_sym_else] = ACTIONS(4696), + [anon_sym_when] = ACTIONS(4696), + [anon_sym_try] = ACTIONS(4696), + [anon_sym_throw] = ACTIONS(4696), + [anon_sym_return] = ACTIONS(4696), + [anon_sym_continue] = ACTIONS(4696), + [anon_sym_break] = ACTIONS(4696), + [anon_sym_COLON_COLON] = ACTIONS(4698), + [anon_sym_BANGin] = ACTIONS(4698), + [anon_sym_is] = ACTIONS(4696), + [anon_sym_BANGis] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4696), + [anon_sym_suspend] = ACTIONS(4696), + [anon_sym_sealed] = ACTIONS(4696), + [anon_sym_annotation] = ACTIONS(4696), + [anon_sym_data] = ACTIONS(4696), + [anon_sym_inner] = ACTIONS(4696), + [anon_sym_value] = ACTIONS(4696), + [anon_sym_override] = ACTIONS(4696), + [anon_sym_lateinit] = ACTIONS(4696), + [anon_sym_public] = ACTIONS(4696), + [anon_sym_private] = ACTIONS(4696), + [anon_sym_internal] = ACTIONS(4696), + [anon_sym_protected] = ACTIONS(4696), + [anon_sym_tailrec] = ACTIONS(4696), + [anon_sym_operator] = ACTIONS(4696), + [anon_sym_infix] = ACTIONS(4696), + [anon_sym_inline] = ACTIONS(4696), + [anon_sym_external] = ACTIONS(4696), + [sym_property_modifier] = ACTIONS(4696), + [anon_sym_abstract] = ACTIONS(4696), + [anon_sym_final] = ACTIONS(4696), + [anon_sym_open] = ACTIONS(4696), + [anon_sym_vararg] = ACTIONS(4696), + [anon_sym_noinline] = ACTIONS(4696), + [anon_sym_crossinline] = ACTIONS(4696), + [anon_sym_expect] = ACTIONS(4696), + [anon_sym_actual] = ACTIONS(4696), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4698), + [anon_sym_continue_AT] = ACTIONS(4698), + [anon_sym_break_AT] = ACTIONS(4698), + [anon_sym_this_AT] = ACTIONS(4698), + [anon_sym_super_AT] = ACTIONS(4698), + [sym_real_literal] = ACTIONS(4698), + [sym_integer_literal] = ACTIONS(4696), + [sym_hex_literal] = ACTIONS(4698), + [sym_bin_literal] = ACTIONS(4698), + [anon_sym_true] = ACTIONS(4696), + [anon_sym_false] = ACTIONS(4696), + [anon_sym_SQUOTE] = ACTIONS(4698), + [sym__backtick_identifier] = ACTIONS(4698), + [sym__automatic_semicolon] = ACTIONS(4698), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4698), }, [3446] = { - [sym_catch_block] = STATE(3446), - [aux_sym_try_expression_repeat1] = STATE(3446), - [sym__alpha_identifier] = ACTIONS(4170), - [anon_sym_AT] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_as] = ACTIONS(4170), - [anon_sym_EQ] = ACTIONS(4170), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4172), - [anon_sym_LPAREN] = ACTIONS(4172), - [anon_sym_COMMA] = ACTIONS(4172), - [anon_sym_LT] = ACTIONS(4170), - [anon_sym_GT] = ACTIONS(4170), - [anon_sym_where] = ACTIONS(4170), - [anon_sym_DOT] = ACTIONS(4170), - [anon_sym_SEMI] = ACTIONS(4172), - [anon_sym_get] = ACTIONS(4170), - [anon_sym_set] = ACTIONS(4170), - [anon_sym_STAR] = ACTIONS(4170), - [sym_label] = ACTIONS(4172), - [anon_sym_in] = ACTIONS(4170), - [anon_sym_DOT_DOT] = ACTIONS(4172), - [anon_sym_QMARK_COLON] = ACTIONS(4172), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [anon_sym_else] = ACTIONS(4170), - [anon_sym_catch] = ACTIONS(6924), - [anon_sym_finally] = ACTIONS(4170), - [anon_sym_COLON_COLON] = ACTIONS(4172), - [anon_sym_PLUS_EQ] = ACTIONS(4172), - [anon_sym_DASH_EQ] = ACTIONS(4172), - [anon_sym_STAR_EQ] = ACTIONS(4172), - [anon_sym_SLASH_EQ] = ACTIONS(4172), - [anon_sym_PERCENT_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ] = ACTIONS(4170), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ] = ACTIONS(4170), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), - [anon_sym_LT_EQ] = ACTIONS(4172), - [anon_sym_GT_EQ] = ACTIONS(4172), - [anon_sym_BANGin] = ACTIONS(4172), - [anon_sym_is] = ACTIONS(4170), - [anon_sym_BANGis] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4170), - [anon_sym_DASH] = ACTIONS(4170), - [anon_sym_SLASH] = ACTIONS(4170), - [anon_sym_PERCENT] = ACTIONS(4170), - [anon_sym_as_QMARK] = ACTIONS(4172), - [anon_sym_PLUS_PLUS] = ACTIONS(4172), - [anon_sym_DASH_DASH] = ACTIONS(4172), - [anon_sym_BANG_BANG] = ACTIONS(4172), - [anon_sym_suspend] = ACTIONS(4170), - [anon_sym_sealed] = ACTIONS(4170), - [anon_sym_annotation] = ACTIONS(4170), - [anon_sym_data] = ACTIONS(4170), - [anon_sym_inner] = ACTIONS(4170), - [anon_sym_value] = ACTIONS(4170), - [anon_sym_override] = ACTIONS(4170), - [anon_sym_lateinit] = ACTIONS(4170), - [anon_sym_public] = ACTIONS(4170), - [anon_sym_private] = ACTIONS(4170), - [anon_sym_internal] = ACTIONS(4170), - [anon_sym_protected] = ACTIONS(4170), - [anon_sym_tailrec] = ACTIONS(4170), - [anon_sym_operator] = ACTIONS(4170), - [anon_sym_infix] = ACTIONS(4170), - [anon_sym_inline] = ACTIONS(4170), - [anon_sym_external] = ACTIONS(4170), - [sym_property_modifier] = ACTIONS(4170), - [anon_sym_abstract] = ACTIONS(4170), - [anon_sym_final] = ACTIONS(4170), - [anon_sym_open] = ACTIONS(4170), - [anon_sym_vararg] = ACTIONS(4170), - [anon_sym_noinline] = ACTIONS(4170), - [anon_sym_crossinline] = ACTIONS(4170), - [anon_sym_expect] = ACTIONS(4170), - [anon_sym_actual] = ACTIONS(4170), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4172), - [sym__automatic_semicolon] = ACTIONS(4172), - [sym_safe_nav] = ACTIONS(4172), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(4676), + [anon_sym_by] = ACTIONS(4674), + [anon_sym_where] = ACTIONS(4674), + [anon_sym_object] = ACTIONS(4674), + [anon_sym_fun] = ACTIONS(4674), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_get] = ACTIONS(4674), + [anon_sym_set] = ACTIONS(4674), + [anon_sym_this] = ACTIONS(4674), + [anon_sym_super] = ACTIONS(4674), + [anon_sym_STAR] = ACTIONS(4676), + [sym_label] = ACTIONS(4674), + [anon_sym_in] = ACTIONS(4674), + [anon_sym_null] = ACTIONS(4674), + [anon_sym_if] = ACTIONS(4674), + [anon_sym_else] = ACTIONS(4674), + [anon_sym_when] = ACTIONS(4674), + [anon_sym_try] = ACTIONS(4674), + [anon_sym_throw] = ACTIONS(4674), + [anon_sym_return] = ACTIONS(4674), + [anon_sym_continue] = ACTIONS(4674), + [anon_sym_break] = ACTIONS(4674), + [anon_sym_COLON_COLON] = ACTIONS(4676), + [anon_sym_BANGin] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_BANGis] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_BANG] = ACTIONS(4674), + [anon_sym_suspend] = ACTIONS(4674), + [anon_sym_sealed] = ACTIONS(4674), + [anon_sym_annotation] = ACTIONS(4674), + [anon_sym_data] = ACTIONS(4674), + [anon_sym_inner] = ACTIONS(4674), + [anon_sym_value] = ACTIONS(4674), + [anon_sym_override] = ACTIONS(4674), + [anon_sym_lateinit] = ACTIONS(4674), + [anon_sym_public] = ACTIONS(4674), + [anon_sym_private] = ACTIONS(4674), + [anon_sym_internal] = ACTIONS(4674), + [anon_sym_protected] = ACTIONS(4674), + [anon_sym_tailrec] = ACTIONS(4674), + [anon_sym_operator] = ACTIONS(4674), + [anon_sym_infix] = ACTIONS(4674), + [anon_sym_inline] = ACTIONS(4674), + [anon_sym_external] = ACTIONS(4674), + [sym_property_modifier] = ACTIONS(4674), + [anon_sym_abstract] = ACTIONS(4674), + [anon_sym_final] = ACTIONS(4674), + [anon_sym_open] = ACTIONS(4674), + [anon_sym_vararg] = ACTIONS(4674), + [anon_sym_noinline] = ACTIONS(4674), + [anon_sym_crossinline] = ACTIONS(4674), + [anon_sym_expect] = ACTIONS(4674), + [anon_sym_actual] = ACTIONS(4674), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4676), + [anon_sym_continue_AT] = ACTIONS(4676), + [anon_sym_break_AT] = ACTIONS(4676), + [anon_sym_this_AT] = ACTIONS(4676), + [anon_sym_super_AT] = ACTIONS(4676), + [sym_real_literal] = ACTIONS(4676), + [sym_integer_literal] = ACTIONS(4674), + [sym_hex_literal] = ACTIONS(4676), + [sym_bin_literal] = ACTIONS(4676), + [anon_sym_true] = ACTIONS(4674), + [anon_sym_false] = ACTIONS(4674), + [anon_sym_SQUOTE] = ACTIONS(4676), + [sym__backtick_identifier] = ACTIONS(4676), + [sym__automatic_semicolon] = ACTIONS(4676), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4676), }, [3447] = { - [sym__alpha_identifier] = ACTIONS(4786), - [anon_sym_AT] = ACTIONS(4788), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_LBRACK] = ACTIONS(4788), - [anon_sym_RBRACK] = ACTIONS(4788), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_EQ] = ACTIONS(4786), - [anon_sym_LBRACE] = ACTIONS(4788), - [anon_sym_RBRACE] = ACTIONS(4788), - [anon_sym_LPAREN] = ACTIONS(4788), - [anon_sym_COMMA] = ACTIONS(4788), - [anon_sym_RPAREN] = ACTIONS(4788), - [anon_sym_LT] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4786), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4786), - [anon_sym_SEMI] = ACTIONS(4788), - [anon_sym_get] = ACTIONS(4786), - [anon_sym_set] = ACTIONS(4786), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4788), - [sym_label] = ACTIONS(4788), - [anon_sym_in] = ACTIONS(4786), - [anon_sym_while] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4788), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4788), - [anon_sym_PIPE_PIPE] = ACTIONS(4788), - [anon_sym_else] = ACTIONS(4786), - [anon_sym_COLON_COLON] = ACTIONS(4788), - [anon_sym_PLUS_EQ] = ACTIONS(4788), - [anon_sym_DASH_EQ] = ACTIONS(4788), - [anon_sym_STAR_EQ] = ACTIONS(4788), - [anon_sym_SLASH_EQ] = ACTIONS(4788), - [anon_sym_PERCENT_EQ] = ACTIONS(4788), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4788), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4788), - [anon_sym_LT_EQ] = ACTIONS(4788), - [anon_sym_GT_EQ] = ACTIONS(4788), - [anon_sym_BANGin] = ACTIONS(4788), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_BANGis] = ACTIONS(4788), - [anon_sym_PLUS] = ACTIONS(4786), - [anon_sym_DASH] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4786), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_as_QMARK] = ACTIONS(4788), - [anon_sym_PLUS_PLUS] = ACTIONS(4788), - [anon_sym_DASH_DASH] = ACTIONS(4788), - [anon_sym_BANG_BANG] = ACTIONS(4788), - [anon_sym_suspend] = ACTIONS(4786), - [anon_sym_sealed] = ACTIONS(4786), - [anon_sym_annotation] = ACTIONS(4786), - [anon_sym_data] = ACTIONS(4786), - [anon_sym_inner] = ACTIONS(4786), - [anon_sym_value] = ACTIONS(4786), - [anon_sym_override] = ACTIONS(4786), - [anon_sym_lateinit] = ACTIONS(4786), - [anon_sym_public] = ACTIONS(4786), - [anon_sym_private] = ACTIONS(4786), - [anon_sym_internal] = ACTIONS(4786), - [anon_sym_protected] = ACTIONS(4786), - [anon_sym_tailrec] = ACTIONS(4786), - [anon_sym_operator] = ACTIONS(4786), - [anon_sym_infix] = ACTIONS(4786), - [anon_sym_inline] = ACTIONS(4786), - [anon_sym_external] = ACTIONS(4786), - [sym_property_modifier] = ACTIONS(4786), - [anon_sym_abstract] = ACTIONS(4786), - [anon_sym_final] = ACTIONS(4786), - [anon_sym_open] = ACTIONS(4786), - [anon_sym_vararg] = ACTIONS(4786), - [anon_sym_noinline] = ACTIONS(4786), - [anon_sym_crossinline] = ACTIONS(4786), - [anon_sym_expect] = ACTIONS(4786), - [anon_sym_actual] = ACTIONS(4786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4788), - [sym_safe_nav] = ACTIONS(4788), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(6862), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), }, [3448] = { - [sym_class_body] = STATE(3540), - [sym__alpha_identifier] = ACTIONS(4722), - [anon_sym_AT] = ACTIONS(4724), - [anon_sym_LBRACK] = ACTIONS(4724), - [anon_sym_RBRACK] = ACTIONS(4724), - [anon_sym_as] = ACTIONS(4722), - [anon_sym_EQ] = ACTIONS(4722), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4724), - [anon_sym_LPAREN] = ACTIONS(4724), - [anon_sym_COMMA] = ACTIONS(4724), - [anon_sym_RPAREN] = ACTIONS(4724), - [anon_sym_LT] = ACTIONS(4722), - [anon_sym_GT] = ACTIONS(4722), - [anon_sym_where] = ACTIONS(4722), - [anon_sym_DOT] = ACTIONS(4722), - [anon_sym_SEMI] = ACTIONS(4724), - [anon_sym_get] = ACTIONS(4722), - [anon_sym_set] = ACTIONS(4722), - [anon_sym_STAR] = ACTIONS(4722), - [anon_sym_DASH_GT] = ACTIONS(4724), - [sym_label] = ACTIONS(4724), - [anon_sym_in] = ACTIONS(4722), - [anon_sym_while] = ACTIONS(4722), - [anon_sym_DOT_DOT] = ACTIONS(4724), - [anon_sym_QMARK_COLON] = ACTIONS(4724), - [anon_sym_AMP_AMP] = ACTIONS(4724), - [anon_sym_PIPE_PIPE] = ACTIONS(4724), - [anon_sym_else] = ACTIONS(4722), - [anon_sym_COLON_COLON] = ACTIONS(4724), - [anon_sym_PLUS_EQ] = ACTIONS(4724), - [anon_sym_DASH_EQ] = ACTIONS(4724), - [anon_sym_STAR_EQ] = ACTIONS(4724), - [anon_sym_SLASH_EQ] = ACTIONS(4724), - [anon_sym_PERCENT_EQ] = ACTIONS(4724), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_BANGin] = ACTIONS(4724), - [anon_sym_is] = ACTIONS(4722), - [anon_sym_BANGis] = ACTIONS(4724), - [anon_sym_PLUS] = ACTIONS(4722), - [anon_sym_DASH] = ACTIONS(4722), - [anon_sym_SLASH] = ACTIONS(4722), - [anon_sym_PERCENT] = ACTIONS(4722), - [anon_sym_as_QMARK] = ACTIONS(4724), - [anon_sym_PLUS_PLUS] = ACTIONS(4724), - [anon_sym_DASH_DASH] = ACTIONS(4724), - [anon_sym_BANG_BANG] = ACTIONS(4724), - [anon_sym_suspend] = ACTIONS(4722), - [anon_sym_sealed] = ACTIONS(4722), - [anon_sym_annotation] = ACTIONS(4722), - [anon_sym_data] = ACTIONS(4722), - [anon_sym_inner] = ACTIONS(4722), - [anon_sym_value] = ACTIONS(4722), - [anon_sym_override] = ACTIONS(4722), - [anon_sym_lateinit] = ACTIONS(4722), - [anon_sym_public] = ACTIONS(4722), - [anon_sym_private] = ACTIONS(4722), - [anon_sym_internal] = ACTIONS(4722), - [anon_sym_protected] = ACTIONS(4722), - [anon_sym_tailrec] = ACTIONS(4722), - [anon_sym_operator] = ACTIONS(4722), - [anon_sym_infix] = ACTIONS(4722), - [anon_sym_inline] = ACTIONS(4722), - [anon_sym_external] = ACTIONS(4722), - [sym_property_modifier] = ACTIONS(4722), - [anon_sym_abstract] = ACTIONS(4722), - [anon_sym_final] = ACTIONS(4722), - [anon_sym_open] = ACTIONS(4722), - [anon_sym_vararg] = ACTIONS(4722), - [anon_sym_noinline] = ACTIONS(4722), - [anon_sym_crossinline] = ACTIONS(4722), - [anon_sym_expect] = ACTIONS(4722), - [anon_sym_actual] = ACTIONS(4722), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4724), - [sym_safe_nav] = ACTIONS(4724), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_RBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(6864), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [anon_sym_DASH_GT] = ACTIONS(4876), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_while] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), [sym_multiline_comment] = ACTIONS(3), }, [3449] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_RBRACK] = ACTIONS(4792), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_EQ] = ACTIONS(4790), - [anon_sym_LBRACE] = ACTIONS(4792), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4792), - [anon_sym_COMMA] = ACTIONS(4792), - [anon_sym_RPAREN] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4792), - [sym_label] = ACTIONS(4792), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_while] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4792), - [anon_sym_QMARK_COLON] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(4790), - [anon_sym_COLON_COLON] = ACTIONS(4792), - [anon_sym_PLUS_EQ] = ACTIONS(4792), - [anon_sym_DASH_EQ] = ACTIONS(4792), - [anon_sym_STAR_EQ] = ACTIONS(4792), - [anon_sym_SLASH_EQ] = ACTIONS(4792), - [anon_sym_PERCENT_EQ] = ACTIONS(4792), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4792), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4792), - [anon_sym_LT_EQ] = ACTIONS(4792), - [anon_sym_GT_EQ] = ACTIONS(4792), - [anon_sym_BANGin] = ACTIONS(4792), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_BANGis] = ACTIONS(4792), - [anon_sym_PLUS] = ACTIONS(4790), - [anon_sym_DASH] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4790), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_as_QMARK] = ACTIONS(4792), - [anon_sym_PLUS_PLUS] = ACTIONS(4792), - [anon_sym_DASH_DASH] = ACTIONS(4792), - [anon_sym_BANG_BANG] = ACTIONS(4792), - [anon_sym_suspend] = ACTIONS(4790), - [anon_sym_sealed] = ACTIONS(4790), - [anon_sym_annotation] = ACTIONS(4790), - [anon_sym_data] = ACTIONS(4790), - [anon_sym_inner] = ACTIONS(4790), - [anon_sym_value] = ACTIONS(4790), - [anon_sym_override] = ACTIONS(4790), - [anon_sym_lateinit] = ACTIONS(4790), - [anon_sym_public] = ACTIONS(4790), - [anon_sym_private] = ACTIONS(4790), - [anon_sym_internal] = ACTIONS(4790), - [anon_sym_protected] = ACTIONS(4790), - [anon_sym_tailrec] = ACTIONS(4790), - [anon_sym_operator] = ACTIONS(4790), - [anon_sym_infix] = ACTIONS(4790), - [anon_sym_inline] = ACTIONS(4790), - [anon_sym_external] = ACTIONS(4790), - [sym_property_modifier] = ACTIONS(4790), - [anon_sym_abstract] = ACTIONS(4790), - [anon_sym_final] = ACTIONS(4790), - [anon_sym_open] = ACTIONS(4790), - [anon_sym_vararg] = ACTIONS(4790), - [anon_sym_noinline] = ACTIONS(4790), - [anon_sym_crossinline] = ACTIONS(4790), - [anon_sym_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_RBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6866), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [anon_sym_DASH_GT] = ACTIONS(4287), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), }, [3450] = { - [sym_enum_class_body] = STATE(3500), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_DASH_GT] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_RBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6868), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [anon_sym_DASH_GT] = ACTIONS(4265), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), [sym_multiline_comment] = ACTIONS(3), }, [3451] = { - [sym_type_constraints] = STATE(3930), - [sym_function_body] = STATE(3608), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(6927), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), + [sym__alpha_identifier] = ACTIONS(5089), + [anon_sym_AT] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_RBRACK] = ACTIONS(5091), + [anon_sym_as] = ACTIONS(5089), + [anon_sym_EQ] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_RBRACE] = ACTIONS(5091), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_RPAREN] = ACTIONS(5091), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_where] = ACTIONS(5089), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_SEMI] = ACTIONS(5091), + [anon_sym_get] = ACTIONS(5089), + [anon_sym_set] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [anon_sym_DASH_GT] = ACTIONS(5091), + [sym_label] = ACTIONS(5091), + [anon_sym_in] = ACTIONS(5089), + [anon_sym_while] = ACTIONS(5089), + [anon_sym_DOT_DOT] = ACTIONS(5091), + [anon_sym_QMARK_COLON] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_else] = ACTIONS(5089), + [anon_sym_COLON_COLON] = ACTIONS(5091), + [anon_sym_PLUS_EQ] = ACTIONS(5091), + [anon_sym_DASH_EQ] = ACTIONS(5091), + [anon_sym_STAR_EQ] = ACTIONS(5091), + [anon_sym_SLASH_EQ] = ACTIONS(5091), + [anon_sym_PERCENT_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5091), + [anon_sym_EQ_EQ] = ACTIONS(5089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5091), + [anon_sym_LT_EQ] = ACTIONS(5091), + [anon_sym_GT_EQ] = ACTIONS(5091), + [anon_sym_BANGin] = ACTIONS(5091), + [anon_sym_is] = ACTIONS(5089), + [anon_sym_BANGis] = ACTIONS(5091), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_as_QMARK] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_BANG_BANG] = ACTIONS(5091), + [anon_sym_suspend] = ACTIONS(5089), + [anon_sym_sealed] = ACTIONS(5089), + [anon_sym_annotation] = ACTIONS(5089), + [anon_sym_data] = ACTIONS(5089), + [anon_sym_inner] = ACTIONS(5089), + [anon_sym_value] = ACTIONS(5089), + [anon_sym_override] = ACTIONS(5089), + [anon_sym_lateinit] = ACTIONS(5089), + [anon_sym_public] = ACTIONS(5089), + [anon_sym_private] = ACTIONS(5089), + [anon_sym_internal] = ACTIONS(5089), + [anon_sym_protected] = ACTIONS(5089), + [anon_sym_tailrec] = ACTIONS(5089), + [anon_sym_operator] = ACTIONS(5089), + [anon_sym_infix] = ACTIONS(5089), + [anon_sym_inline] = ACTIONS(5089), + [anon_sym_external] = ACTIONS(5089), + [sym_property_modifier] = ACTIONS(5089), + [anon_sym_abstract] = ACTIONS(5089), + [anon_sym_final] = ACTIONS(5089), + [anon_sym_open] = ACTIONS(5089), + [anon_sym_vararg] = ACTIONS(5089), + [anon_sym_noinline] = ACTIONS(5089), + [anon_sym_crossinline] = ACTIONS(5089), + [anon_sym_expect] = ACTIONS(5089), + [anon_sym_actual] = ACTIONS(5089), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5091), + [sym_safe_nav] = ACTIONS(5091), [sym_multiline_comment] = ACTIONS(3), }, [3452] = { - [sym_class_body] = STATE(3466), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__alpha_identifier] = ACTIONS(4914), + [anon_sym_AT] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_RBRACK] = ACTIONS(4916), + [anon_sym_as] = ACTIONS(4914), + [anon_sym_EQ] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_RBRACE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4914), + [anon_sym_where] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_get] = ACTIONS(4914), + [anon_sym_set] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4914), + [anon_sym_DASH_GT] = ACTIONS(4916), + [sym_label] = ACTIONS(4916), + [anon_sym_in] = ACTIONS(4914), + [anon_sym_while] = ACTIONS(4914), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_QMARK_COLON] = ACTIONS(4916), + [anon_sym_AMP_AMP] = ACTIONS(4916), + [anon_sym_PIPE_PIPE] = ACTIONS(4916), + [anon_sym_else] = ACTIONS(4914), + [anon_sym_COLON_COLON] = ACTIONS(4916), + [anon_sym_PLUS_EQ] = ACTIONS(4916), + [anon_sym_DASH_EQ] = ACTIONS(4916), + [anon_sym_STAR_EQ] = ACTIONS(4916), + [anon_sym_SLASH_EQ] = ACTIONS(4916), + [anon_sym_PERCENT_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4916), + [anon_sym_EQ_EQ] = ACTIONS(4914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4916), + [anon_sym_LT_EQ] = ACTIONS(4916), + [anon_sym_GT_EQ] = ACTIONS(4916), + [anon_sym_BANGin] = ACTIONS(4916), + [anon_sym_is] = ACTIONS(4914), + [anon_sym_BANGis] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4914), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4914), + [anon_sym_PERCENT] = ACTIONS(4914), + [anon_sym_as_QMARK] = ACTIONS(4916), + [anon_sym_PLUS_PLUS] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4916), + [anon_sym_BANG_BANG] = ACTIONS(4916), + [anon_sym_suspend] = ACTIONS(4914), + [anon_sym_sealed] = ACTIONS(4914), + [anon_sym_annotation] = ACTIONS(4914), + [anon_sym_data] = ACTIONS(4914), + [anon_sym_inner] = ACTIONS(4914), + [anon_sym_value] = ACTIONS(4914), + [anon_sym_override] = ACTIONS(4914), + [anon_sym_lateinit] = ACTIONS(4914), + [anon_sym_public] = ACTIONS(4914), + [anon_sym_private] = ACTIONS(4914), + [anon_sym_internal] = ACTIONS(4914), + [anon_sym_protected] = ACTIONS(4914), + [anon_sym_tailrec] = ACTIONS(4914), + [anon_sym_operator] = ACTIONS(4914), + [anon_sym_infix] = ACTIONS(4914), + [anon_sym_inline] = ACTIONS(4914), + [anon_sym_external] = ACTIONS(4914), + [sym_property_modifier] = ACTIONS(4914), + [anon_sym_abstract] = ACTIONS(4914), + [anon_sym_final] = ACTIONS(4914), + [anon_sym_open] = ACTIONS(4914), + [anon_sym_vararg] = ACTIONS(4914), + [anon_sym_noinline] = ACTIONS(4914), + [anon_sym_crossinline] = ACTIONS(4914), + [anon_sym_expect] = ACTIONS(4914), + [anon_sym_actual] = ACTIONS(4914), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4916), + [sym_safe_nav] = ACTIONS(4916), [sym_multiline_comment] = ACTIONS(3), }, [3453] = { - [sym__alpha_identifier] = ACTIONS(4695), - [anon_sym_AT] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_as] = ACTIONS(4695), - [anon_sym_EQ] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4697), - [anon_sym_RBRACE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_where] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_get] = ACTIONS(4695), - [anon_sym_set] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_DASH_GT] = ACTIONS(4697), - [sym_label] = ACTIONS(4697), - [anon_sym_in] = ACTIONS(4695), - [anon_sym_while] = ACTIONS(4695), - [anon_sym_DOT_DOT] = ACTIONS(4697), - [anon_sym_QMARK_COLON] = ACTIONS(4697), - [anon_sym_AMP_AMP] = ACTIONS(4697), - [anon_sym_PIPE_PIPE] = ACTIONS(4697), - [anon_sym_else] = ACTIONS(4695), - [anon_sym_COLON_COLON] = ACTIONS(4697), - [anon_sym_PLUS_EQ] = ACTIONS(4697), - [anon_sym_DASH_EQ] = ACTIONS(4697), - [anon_sym_STAR_EQ] = ACTIONS(4697), - [anon_sym_SLASH_EQ] = ACTIONS(4697), - [anon_sym_PERCENT_EQ] = ACTIONS(4697), - [anon_sym_BANG_EQ] = ACTIONS(4695), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4697), - [anon_sym_EQ_EQ] = ACTIONS(4695), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4697), - [anon_sym_LT_EQ] = ACTIONS(4697), - [anon_sym_GT_EQ] = ACTIONS(4697), - [anon_sym_BANGin] = ACTIONS(4697), - [anon_sym_is] = ACTIONS(4695), - [anon_sym_BANGis] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_PERCENT] = ACTIONS(4695), - [anon_sym_as_QMARK] = ACTIONS(4697), - [anon_sym_PLUS_PLUS] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4697), - [anon_sym_BANG_BANG] = ACTIONS(4697), - [anon_sym_suspend] = ACTIONS(4695), - [anon_sym_sealed] = ACTIONS(4695), - [anon_sym_annotation] = ACTIONS(4695), - [anon_sym_data] = ACTIONS(4695), - [anon_sym_inner] = ACTIONS(4695), - [anon_sym_value] = ACTIONS(4695), - [anon_sym_override] = ACTIONS(4695), - [anon_sym_lateinit] = ACTIONS(4695), - [anon_sym_public] = ACTIONS(4695), - [anon_sym_private] = ACTIONS(4695), - [anon_sym_internal] = ACTIONS(4695), - [anon_sym_protected] = ACTIONS(4695), - [anon_sym_tailrec] = ACTIONS(4695), - [anon_sym_operator] = ACTIONS(4695), - [anon_sym_infix] = ACTIONS(4695), - [anon_sym_inline] = ACTIONS(4695), - [anon_sym_external] = ACTIONS(4695), - [sym_property_modifier] = ACTIONS(4695), - [anon_sym_abstract] = ACTIONS(4695), - [anon_sym_final] = ACTIONS(4695), - [anon_sym_open] = ACTIONS(4695), - [anon_sym_vararg] = ACTIONS(4695), - [anon_sym_noinline] = ACTIONS(4695), - [anon_sym_crossinline] = ACTIONS(4695), - [anon_sym_expect] = ACTIONS(4695), - [anon_sym_actual] = ACTIONS(4695), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4697), - [sym_safe_nav] = ACTIONS(4697), + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_RBRACK] = ACTIONS(4780), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_RPAREN] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [anon_sym_DASH_GT] = ACTIONS(4780), + [sym_label] = ACTIONS(4780), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_while] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), [sym_multiline_comment] = ACTIONS(3), }, [3454] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1861), - [sym__comparison_operator] = STATE(1863), - [sym__in_operator] = STATE(1865), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1867), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1868), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_where] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(6832), - [anon_sym_DASH_GT] = ACTIONS(3139), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(6858), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_DOT_DOT] = ACTIONS(6836), - [anon_sym_QMARK_COLON] = ACTIONS(6838), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(6862), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6832), - [anon_sym_PERCENT] = ACTIONS(6832), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym__alpha_identifier] = ACTIONS(5059), + [anon_sym_AT] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [anon_sym_RBRACK] = ACTIONS(5061), + [anon_sym_as] = ACTIONS(5059), + [anon_sym_EQ] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5061), + [anon_sym_RBRACE] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5061), + [anon_sym_COMMA] = ACTIONS(5061), + [anon_sym_RPAREN] = ACTIONS(5061), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_where] = ACTIONS(5059), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [anon_sym_get] = ACTIONS(5059), + [anon_sym_set] = ACTIONS(5059), + [anon_sym_STAR] = ACTIONS(5059), + [anon_sym_DASH_GT] = ACTIONS(5061), + [sym_label] = ACTIONS(5061), + [anon_sym_in] = ACTIONS(5059), + [anon_sym_while] = ACTIONS(5059), + [anon_sym_DOT_DOT] = ACTIONS(5061), + [anon_sym_QMARK_COLON] = ACTIONS(5061), + [anon_sym_AMP_AMP] = ACTIONS(5061), + [anon_sym_PIPE_PIPE] = ACTIONS(5061), + [anon_sym_else] = ACTIONS(5059), + [anon_sym_COLON_COLON] = ACTIONS(5061), + [anon_sym_PLUS_EQ] = ACTIONS(5061), + [anon_sym_DASH_EQ] = ACTIONS(5061), + [anon_sym_STAR_EQ] = ACTIONS(5061), + [anon_sym_SLASH_EQ] = ACTIONS(5061), + [anon_sym_PERCENT_EQ] = ACTIONS(5061), + [anon_sym_BANG_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5061), + [anon_sym_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5061), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_BANGin] = ACTIONS(5061), + [anon_sym_is] = ACTIONS(5059), + [anon_sym_BANGis] = ACTIONS(5061), + [anon_sym_PLUS] = ACTIONS(5059), + [anon_sym_DASH] = ACTIONS(5059), + [anon_sym_SLASH] = ACTIONS(5059), + [anon_sym_PERCENT] = ACTIONS(5059), + [anon_sym_as_QMARK] = ACTIONS(5061), + [anon_sym_PLUS_PLUS] = ACTIONS(5061), + [anon_sym_DASH_DASH] = ACTIONS(5061), + [anon_sym_BANG_BANG] = ACTIONS(5061), + [anon_sym_suspend] = ACTIONS(5059), + [anon_sym_sealed] = ACTIONS(5059), + [anon_sym_annotation] = ACTIONS(5059), + [anon_sym_data] = ACTIONS(5059), + [anon_sym_inner] = ACTIONS(5059), + [anon_sym_value] = ACTIONS(5059), + [anon_sym_override] = ACTIONS(5059), + [anon_sym_lateinit] = ACTIONS(5059), + [anon_sym_public] = ACTIONS(5059), + [anon_sym_private] = ACTIONS(5059), + [anon_sym_internal] = ACTIONS(5059), + [anon_sym_protected] = ACTIONS(5059), + [anon_sym_tailrec] = ACTIONS(5059), + [anon_sym_operator] = ACTIONS(5059), + [anon_sym_infix] = ACTIONS(5059), + [anon_sym_inline] = ACTIONS(5059), + [anon_sym_external] = ACTIONS(5059), + [sym_property_modifier] = ACTIONS(5059), + [anon_sym_abstract] = ACTIONS(5059), + [anon_sym_final] = ACTIONS(5059), + [anon_sym_open] = ACTIONS(5059), + [anon_sym_vararg] = ACTIONS(5059), + [anon_sym_noinline] = ACTIONS(5059), + [anon_sym_crossinline] = ACTIONS(5059), + [anon_sym_expect] = ACTIONS(5059), + [anon_sym_actual] = ACTIONS(5059), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5061), + [sym_safe_nav] = ACTIONS(5061), [sym_multiline_comment] = ACTIONS(3), }, [3455] = { - [sym_class_body] = STATE(3500), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_DASH_GT] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym_type_constraints] = STATE(3620), + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3456] = { - [sym_type_constraints] = STATE(3928), - [sym_function_body] = STATE(3584), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(6929), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_RPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_while] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [sym__alpha_identifier] = ACTIONS(5067), + [anon_sym_AT] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_RBRACK] = ACTIONS(5069), + [anon_sym_as] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(5067), + [anon_sym_LBRACE] = ACTIONS(5069), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5069), + [anon_sym_COMMA] = ACTIONS(5069), + [anon_sym_RPAREN] = ACTIONS(5069), + [anon_sym_LT] = ACTIONS(5067), + [anon_sym_GT] = ACTIONS(5067), + [anon_sym_where] = ACTIONS(5067), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [anon_sym_get] = ACTIONS(5067), + [anon_sym_set] = ACTIONS(5067), + [anon_sym_STAR] = ACTIONS(5067), + [anon_sym_DASH_GT] = ACTIONS(5069), + [sym_label] = ACTIONS(5069), + [anon_sym_in] = ACTIONS(5067), + [anon_sym_while] = ACTIONS(5067), + [anon_sym_DOT_DOT] = ACTIONS(5069), + [anon_sym_QMARK_COLON] = ACTIONS(5069), + [anon_sym_AMP_AMP] = ACTIONS(5069), + [anon_sym_PIPE_PIPE] = ACTIONS(5069), + [anon_sym_else] = ACTIONS(5067), + [anon_sym_COLON_COLON] = ACTIONS(5069), + [anon_sym_PLUS_EQ] = ACTIONS(5069), + [anon_sym_DASH_EQ] = ACTIONS(5069), + [anon_sym_STAR_EQ] = ACTIONS(5069), + [anon_sym_SLASH_EQ] = ACTIONS(5069), + [anon_sym_PERCENT_EQ] = ACTIONS(5069), + [anon_sym_BANG_EQ] = ACTIONS(5067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5069), + [anon_sym_EQ_EQ] = ACTIONS(5067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5069), + [anon_sym_LT_EQ] = ACTIONS(5069), + [anon_sym_GT_EQ] = ACTIONS(5069), + [anon_sym_BANGin] = ACTIONS(5069), + [anon_sym_is] = ACTIONS(5067), + [anon_sym_BANGis] = ACTIONS(5069), + [anon_sym_PLUS] = ACTIONS(5067), + [anon_sym_DASH] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5067), + [anon_sym_PERCENT] = ACTIONS(5067), + [anon_sym_as_QMARK] = ACTIONS(5069), + [anon_sym_PLUS_PLUS] = ACTIONS(5069), + [anon_sym_DASH_DASH] = ACTIONS(5069), + [anon_sym_BANG_BANG] = ACTIONS(5069), + [anon_sym_suspend] = ACTIONS(5067), + [anon_sym_sealed] = ACTIONS(5067), + [anon_sym_annotation] = ACTIONS(5067), + [anon_sym_data] = ACTIONS(5067), + [anon_sym_inner] = ACTIONS(5067), + [anon_sym_value] = ACTIONS(5067), + [anon_sym_override] = ACTIONS(5067), + [anon_sym_lateinit] = ACTIONS(5067), + [anon_sym_public] = ACTIONS(5067), + [anon_sym_private] = ACTIONS(5067), + [anon_sym_internal] = ACTIONS(5067), + [anon_sym_protected] = ACTIONS(5067), + [anon_sym_tailrec] = ACTIONS(5067), + [anon_sym_operator] = ACTIONS(5067), + [anon_sym_infix] = ACTIONS(5067), + [anon_sym_inline] = ACTIONS(5067), + [anon_sym_external] = ACTIONS(5067), + [sym_property_modifier] = ACTIONS(5067), + [anon_sym_abstract] = ACTIONS(5067), + [anon_sym_final] = ACTIONS(5067), + [anon_sym_open] = ACTIONS(5067), + [anon_sym_vararg] = ACTIONS(5067), + [anon_sym_noinline] = ACTIONS(5067), + [anon_sym_crossinline] = ACTIONS(5067), + [anon_sym_expect] = ACTIONS(5067), + [anon_sym_actual] = ACTIONS(5067), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5069), + [sym_safe_nav] = ACTIONS(5069), [sym_multiline_comment] = ACTIONS(3), }, [3457] = { - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_RBRACK] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_where] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4974), + [anon_sym_DASH_GT] = ACTIONS(4976), + [sym_label] = ACTIONS(4976), + [anon_sym_in] = ACTIONS(4974), + [anon_sym_while] = ACTIONS(4974), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_QMARK_COLON] = ACTIONS(4976), + [anon_sym_AMP_AMP] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4976), + [anon_sym_else] = ACTIONS(4974), + [anon_sym_COLON_COLON] = ACTIONS(4976), + [anon_sym_PLUS_EQ] = ACTIONS(4976), + [anon_sym_DASH_EQ] = ACTIONS(4976), + [anon_sym_STAR_EQ] = ACTIONS(4976), + [anon_sym_SLASH_EQ] = ACTIONS(4976), + [anon_sym_PERCENT_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4976), + [anon_sym_BANGin] = ACTIONS(4976), + [anon_sym_is] = ACTIONS(4974), + [anon_sym_BANGis] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4974), + [anon_sym_PERCENT] = ACTIONS(4974), + [anon_sym_as_QMARK] = ACTIONS(4976), + [anon_sym_PLUS_PLUS] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4976), + [anon_sym_BANG_BANG] = ACTIONS(4976), + [anon_sym_suspend] = ACTIONS(4974), + [anon_sym_sealed] = ACTIONS(4974), + [anon_sym_annotation] = ACTIONS(4974), + [anon_sym_data] = ACTIONS(4974), + [anon_sym_inner] = ACTIONS(4974), + [anon_sym_value] = ACTIONS(4974), + [anon_sym_override] = ACTIONS(4974), + [anon_sym_lateinit] = ACTIONS(4974), + [anon_sym_public] = ACTIONS(4974), + [anon_sym_private] = ACTIONS(4974), + [anon_sym_internal] = ACTIONS(4974), + [anon_sym_protected] = ACTIONS(4974), + [anon_sym_tailrec] = ACTIONS(4974), + [anon_sym_operator] = ACTIONS(4974), + [anon_sym_infix] = ACTIONS(4974), + [anon_sym_inline] = ACTIONS(4974), + [anon_sym_external] = ACTIONS(4974), + [sym_property_modifier] = ACTIONS(4974), + [anon_sym_abstract] = ACTIONS(4974), + [anon_sym_final] = ACTIONS(4974), + [anon_sym_open] = ACTIONS(4974), + [anon_sym_vararg] = ACTIONS(4974), + [anon_sym_noinline] = ACTIONS(4974), + [anon_sym_crossinline] = ACTIONS(4974), + [anon_sym_expect] = ACTIONS(4974), + [anon_sym_actual] = ACTIONS(4974), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4976), + [sym_safe_nav] = ACTIONS(4976), [sym_multiline_comment] = ACTIONS(3), }, [3458] = { - [sym__alpha_identifier] = ACTIONS(5049), - [anon_sym_AT] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_as] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5049), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_where] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_get] = ACTIONS(5049), - [anon_sym_set] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_DASH_GT] = ACTIONS(5051), - [sym_label] = ACTIONS(5051), - [anon_sym_in] = ACTIONS(5049), - [anon_sym_while] = ACTIONS(5049), - [anon_sym_DOT_DOT] = ACTIONS(5051), - [anon_sym_QMARK_COLON] = ACTIONS(5051), - [anon_sym_AMP_AMP] = ACTIONS(5051), - [anon_sym_PIPE_PIPE] = ACTIONS(5051), - [anon_sym_else] = ACTIONS(5049), - [anon_sym_COLON_COLON] = ACTIONS(5051), - [anon_sym_PLUS_EQ] = ACTIONS(5051), - [anon_sym_DASH_EQ] = ACTIONS(5051), - [anon_sym_STAR_EQ] = ACTIONS(5051), - [anon_sym_SLASH_EQ] = ACTIONS(5051), - [anon_sym_PERCENT_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), - [anon_sym_LT_EQ] = ACTIONS(5051), - [anon_sym_GT_EQ] = ACTIONS(5051), - [anon_sym_BANGin] = ACTIONS(5051), - [anon_sym_is] = ACTIONS(5049), - [anon_sym_BANGis] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5049), - [anon_sym_as_QMARK] = ACTIONS(5051), - [anon_sym_PLUS_PLUS] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5051), - [anon_sym_BANG_BANG] = ACTIONS(5051), - [anon_sym_suspend] = ACTIONS(5049), - [anon_sym_sealed] = ACTIONS(5049), - [anon_sym_annotation] = ACTIONS(5049), - [anon_sym_data] = ACTIONS(5049), - [anon_sym_inner] = ACTIONS(5049), - [anon_sym_value] = ACTIONS(5049), - [anon_sym_override] = ACTIONS(5049), - [anon_sym_lateinit] = ACTIONS(5049), - [anon_sym_public] = ACTIONS(5049), - [anon_sym_private] = ACTIONS(5049), - [anon_sym_internal] = ACTIONS(5049), - [anon_sym_protected] = ACTIONS(5049), - [anon_sym_tailrec] = ACTIONS(5049), - [anon_sym_operator] = ACTIONS(5049), - [anon_sym_infix] = ACTIONS(5049), - [anon_sym_inline] = ACTIONS(5049), - [anon_sym_external] = ACTIONS(5049), - [sym_property_modifier] = ACTIONS(5049), - [anon_sym_abstract] = ACTIONS(5049), - [anon_sym_final] = ACTIONS(5049), - [anon_sym_open] = ACTIONS(5049), - [anon_sym_vararg] = ACTIONS(5049), - [anon_sym_noinline] = ACTIONS(5049), - [anon_sym_crossinline] = ACTIONS(5049), - [anon_sym_expect] = ACTIONS(5049), - [anon_sym_actual] = ACTIONS(5049), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5051), - [sym_safe_nav] = ACTIONS(5051), + [sym__alpha_identifier] = ACTIONS(5039), + [anon_sym_AT] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_RBRACK] = ACTIONS(5041), + [anon_sym_as] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5041), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_RPAREN] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5039), + [anon_sym_GT] = ACTIONS(5039), + [anon_sym_where] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5039), + [anon_sym_SEMI] = ACTIONS(5041), + [anon_sym_get] = ACTIONS(5039), + [anon_sym_set] = ACTIONS(5039), + [anon_sym_STAR] = ACTIONS(5039), + [anon_sym_DASH_GT] = ACTIONS(5041), + [sym_label] = ACTIONS(5041), + [anon_sym_in] = ACTIONS(5039), + [anon_sym_while] = ACTIONS(5039), + [anon_sym_DOT_DOT] = ACTIONS(5041), + [anon_sym_QMARK_COLON] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5041), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_else] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5039), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5041), + [anon_sym_EQ_EQ] = ACTIONS(5039), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_BANGin] = ACTIONS(5041), + [anon_sym_is] = ACTIONS(5039), + [anon_sym_BANGis] = ACTIONS(5041), + [anon_sym_PLUS] = ACTIONS(5039), + [anon_sym_DASH] = ACTIONS(5039), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), + [anon_sym_as_QMARK] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_BANG_BANG] = ACTIONS(5041), + [anon_sym_suspend] = ACTIONS(5039), + [anon_sym_sealed] = ACTIONS(5039), + [anon_sym_annotation] = ACTIONS(5039), + [anon_sym_data] = ACTIONS(5039), + [anon_sym_inner] = ACTIONS(5039), + [anon_sym_value] = ACTIONS(5039), + [anon_sym_override] = ACTIONS(5039), + [anon_sym_lateinit] = ACTIONS(5039), + [anon_sym_public] = ACTIONS(5039), + [anon_sym_private] = ACTIONS(5039), + [anon_sym_internal] = ACTIONS(5039), + [anon_sym_protected] = ACTIONS(5039), + [anon_sym_tailrec] = ACTIONS(5039), + [anon_sym_operator] = ACTIONS(5039), + [anon_sym_infix] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym_external] = ACTIONS(5039), + [sym_property_modifier] = ACTIONS(5039), + [anon_sym_abstract] = ACTIONS(5039), + [anon_sym_final] = ACTIONS(5039), + [anon_sym_open] = ACTIONS(5039), + [anon_sym_vararg] = ACTIONS(5039), + [anon_sym_noinline] = ACTIONS(5039), + [anon_sym_crossinline] = ACTIONS(5039), + [anon_sym_expect] = ACTIONS(5039), + [anon_sym_actual] = ACTIONS(5039), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5041), + [sym_safe_nav] = ACTIONS(5041), [sym_multiline_comment] = ACTIONS(3), }, [3459] = { - [sym__alpha_identifier] = ACTIONS(5251), - [anon_sym_AT] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_RBRACK] = ACTIONS(5253), - [anon_sym_as] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5253), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_LPAREN] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5253), - [anon_sym_LT] = ACTIONS(5251), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_where] = ACTIONS(5251), - [anon_sym_DOT] = ACTIONS(5251), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_get] = ACTIONS(5251), - [anon_sym_set] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_DASH_GT] = ACTIONS(5253), - [sym_label] = ACTIONS(5253), - [anon_sym_in] = ACTIONS(5251), - [anon_sym_while] = ACTIONS(5251), - [anon_sym_DOT_DOT] = ACTIONS(5253), - [anon_sym_QMARK_COLON] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_else] = ACTIONS(5251), - [anon_sym_COLON_COLON] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5251), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5253), - [anon_sym_EQ_EQ] = ACTIONS(5251), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_BANGin] = ACTIONS(5253), - [anon_sym_is] = ACTIONS(5251), - [anon_sym_BANGis] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_PERCENT] = ACTIONS(5251), - [anon_sym_as_QMARK] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_BANG_BANG] = ACTIONS(5253), - [anon_sym_suspend] = ACTIONS(5251), - [anon_sym_sealed] = ACTIONS(5251), - [anon_sym_annotation] = ACTIONS(5251), - [anon_sym_data] = ACTIONS(5251), - [anon_sym_inner] = ACTIONS(5251), - [anon_sym_value] = ACTIONS(5251), - [anon_sym_override] = ACTIONS(5251), - [anon_sym_lateinit] = ACTIONS(5251), - [anon_sym_public] = ACTIONS(5251), - [anon_sym_private] = ACTIONS(5251), - [anon_sym_internal] = ACTIONS(5251), - [anon_sym_protected] = ACTIONS(5251), - [anon_sym_tailrec] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_infix] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym_external] = ACTIONS(5251), - [sym_property_modifier] = ACTIONS(5251), - [anon_sym_abstract] = ACTIONS(5251), - [anon_sym_final] = ACTIONS(5251), - [anon_sym_open] = ACTIONS(5251), - [anon_sym_vararg] = ACTIONS(5251), - [anon_sym_noinline] = ACTIONS(5251), - [anon_sym_crossinline] = ACTIONS(5251), - [anon_sym_expect] = ACTIONS(5251), - [anon_sym_actual] = ACTIONS(5251), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5253), - [sym_safe_nav] = ACTIONS(5253), + [sym__alpha_identifier] = ACTIONS(5035), + [anon_sym_AT] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_RBRACK] = ACTIONS(5037), + [anon_sym_as] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_RPAREN] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_where] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_SEMI] = ACTIONS(5037), + [anon_sym_get] = ACTIONS(5035), + [anon_sym_set] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [anon_sym_DASH_GT] = ACTIONS(5037), + [sym_label] = ACTIONS(5037), + [anon_sym_in] = ACTIONS(5035), + [anon_sym_while] = ACTIONS(5035), + [anon_sym_DOT_DOT] = ACTIONS(5037), + [anon_sym_QMARK_COLON] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_else] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5037), + [anon_sym_EQ_EQ] = ACTIONS(5035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_BANGin] = ACTIONS(5037), + [anon_sym_is] = ACTIONS(5035), + [anon_sym_BANGis] = ACTIONS(5037), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_as_QMARK] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_BANG_BANG] = ACTIONS(5037), + [anon_sym_suspend] = ACTIONS(5035), + [anon_sym_sealed] = ACTIONS(5035), + [anon_sym_annotation] = ACTIONS(5035), + [anon_sym_data] = ACTIONS(5035), + [anon_sym_inner] = ACTIONS(5035), + [anon_sym_value] = ACTIONS(5035), + [anon_sym_override] = ACTIONS(5035), + [anon_sym_lateinit] = ACTIONS(5035), + [anon_sym_public] = ACTIONS(5035), + [anon_sym_private] = ACTIONS(5035), + [anon_sym_internal] = ACTIONS(5035), + [anon_sym_protected] = ACTIONS(5035), + [anon_sym_tailrec] = ACTIONS(5035), + [anon_sym_operator] = ACTIONS(5035), + [anon_sym_infix] = ACTIONS(5035), + [anon_sym_inline] = ACTIONS(5035), + [anon_sym_external] = ACTIONS(5035), + [sym_property_modifier] = ACTIONS(5035), + [anon_sym_abstract] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_open] = ACTIONS(5035), + [anon_sym_vararg] = ACTIONS(5035), + [anon_sym_noinline] = ACTIONS(5035), + [anon_sym_crossinline] = ACTIONS(5035), + [anon_sym_expect] = ACTIONS(5035), + [anon_sym_actual] = ACTIONS(5035), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5037), + [sym_safe_nav] = ACTIONS(5037), [sym_multiline_comment] = ACTIONS(3), }, [3460] = { - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(1826), - [anon_sym_set] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_DASH_GT] = ACTIONS(1828), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(1826), - [anon_sym_sealed] = ACTIONS(1826), - [anon_sym_annotation] = ACTIONS(1826), - [anon_sym_data] = ACTIONS(1826), - [anon_sym_inner] = ACTIONS(1826), - [anon_sym_value] = ACTIONS(1826), - [anon_sym_override] = ACTIONS(1826), - [anon_sym_lateinit] = ACTIONS(1826), - [anon_sym_public] = ACTIONS(1826), - [anon_sym_private] = ACTIONS(1826), - [anon_sym_internal] = ACTIONS(1826), - [anon_sym_protected] = ACTIONS(1826), - [anon_sym_tailrec] = ACTIONS(1826), - [anon_sym_operator] = ACTIONS(1826), - [anon_sym_infix] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [anon_sym_external] = ACTIONS(1826), - [sym_property_modifier] = ACTIONS(1826), - [anon_sym_abstract] = ACTIONS(1826), - [anon_sym_final] = ACTIONS(1826), - [anon_sym_open] = ACTIONS(1826), - [anon_sym_vararg] = ACTIONS(1826), - [anon_sym_noinline] = ACTIONS(1826), - [anon_sym_crossinline] = ACTIONS(1826), - [anon_sym_expect] = ACTIONS(1826), - [anon_sym_actual] = ACTIONS(1826), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym__alpha_identifier] = ACTIONS(5085), + [anon_sym_AT] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_RBRACK] = ACTIONS(5087), + [anon_sym_as] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_LBRACE] = ACTIONS(5087), + [anon_sym_RBRACE] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_RPAREN] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_where] = ACTIONS(5085), + [anon_sym_DOT] = ACTIONS(5085), + [anon_sym_SEMI] = ACTIONS(5087), + [anon_sym_get] = ACTIONS(5085), + [anon_sym_set] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [anon_sym_DASH_GT] = ACTIONS(5087), + [sym_label] = ACTIONS(5087), + [anon_sym_in] = ACTIONS(5085), + [anon_sym_while] = ACTIONS(5085), + [anon_sym_DOT_DOT] = ACTIONS(5087), + [anon_sym_QMARK_COLON] = ACTIONS(5087), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_else] = ACTIONS(5085), + [anon_sym_COLON_COLON] = ACTIONS(5087), + [anon_sym_PLUS_EQ] = ACTIONS(5087), + [anon_sym_DASH_EQ] = ACTIONS(5087), + [anon_sym_STAR_EQ] = ACTIONS(5087), + [anon_sym_SLASH_EQ] = ACTIONS(5087), + [anon_sym_PERCENT_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5087), + [anon_sym_LT_EQ] = ACTIONS(5087), + [anon_sym_GT_EQ] = ACTIONS(5087), + [anon_sym_BANGin] = ACTIONS(5087), + [anon_sym_is] = ACTIONS(5085), + [anon_sym_BANGis] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_PERCENT] = ACTIONS(5085), + [anon_sym_as_QMARK] = ACTIONS(5087), + [anon_sym_PLUS_PLUS] = ACTIONS(5087), + [anon_sym_DASH_DASH] = ACTIONS(5087), + [anon_sym_BANG_BANG] = ACTIONS(5087), + [anon_sym_suspend] = ACTIONS(5085), + [anon_sym_sealed] = ACTIONS(5085), + [anon_sym_annotation] = ACTIONS(5085), + [anon_sym_data] = ACTIONS(5085), + [anon_sym_inner] = ACTIONS(5085), + [anon_sym_value] = ACTIONS(5085), + [anon_sym_override] = ACTIONS(5085), + [anon_sym_lateinit] = ACTIONS(5085), + [anon_sym_public] = ACTIONS(5085), + [anon_sym_private] = ACTIONS(5085), + [anon_sym_internal] = ACTIONS(5085), + [anon_sym_protected] = ACTIONS(5085), + [anon_sym_tailrec] = ACTIONS(5085), + [anon_sym_operator] = ACTIONS(5085), + [anon_sym_infix] = ACTIONS(5085), + [anon_sym_inline] = ACTIONS(5085), + [anon_sym_external] = ACTIONS(5085), + [sym_property_modifier] = ACTIONS(5085), + [anon_sym_abstract] = ACTIONS(5085), + [anon_sym_final] = ACTIONS(5085), + [anon_sym_open] = ACTIONS(5085), + [anon_sym_vararg] = ACTIONS(5085), + [anon_sym_noinline] = ACTIONS(5085), + [anon_sym_crossinline] = ACTIONS(5085), + [anon_sym_expect] = ACTIONS(5085), + [anon_sym_actual] = ACTIONS(5085), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5087), + [sym_safe_nav] = ACTIONS(5087), [sym_multiline_comment] = ACTIONS(3), }, [3461] = { - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_RBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_RPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [anon_sym_DASH_GT] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_RBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_LBRACE] = ACTIONS(4441), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_RPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [anon_sym_DASH_GT] = ACTIONS(4441), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_while] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), }, [3462] = { - [aux_sym_nullable_type_repeat1] = STATE(3462), - [sym__alpha_identifier] = ACTIONS(4262), - [anon_sym_AT] = ACTIONS(4264), - [anon_sym_LBRACK] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4262), - [anon_sym_EQ] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_LPAREN] = ACTIONS(4264), - [anon_sym_COMMA] = ACTIONS(4264), - [anon_sym_by] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4262), - [anon_sym_GT] = ACTIONS(4262), - [anon_sym_where] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym_get] = ACTIONS(4262), - [anon_sym_set] = ACTIONS(4262), - [sym__quest] = ACTIONS(6931), - [anon_sym_STAR] = ACTIONS(4262), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4262), - [anon_sym_DOT_DOT] = ACTIONS(4264), - [anon_sym_QMARK_COLON] = ACTIONS(4264), - [anon_sym_AMP_AMP] = ACTIONS(4264), - [anon_sym_PIPE_PIPE] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_PLUS_EQ] = ACTIONS(4264), - [anon_sym_DASH_EQ] = ACTIONS(4264), - [anon_sym_STAR_EQ] = ACTIONS(4264), - [anon_sym_SLASH_EQ] = ACTIONS(4264), - [anon_sym_PERCENT_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), - [anon_sym_LT_EQ] = ACTIONS(4264), - [anon_sym_GT_EQ] = ACTIONS(4264), - [anon_sym_BANGin] = ACTIONS(4264), - [anon_sym_is] = ACTIONS(4262), - [anon_sym_BANGis] = ACTIONS(4264), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4262), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_as_QMARK] = ACTIONS(4264), - [anon_sym_PLUS_PLUS] = ACTIONS(4264), - [anon_sym_DASH_DASH] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4264), - [anon_sym_suspend] = ACTIONS(4262), - [anon_sym_sealed] = ACTIONS(4262), - [anon_sym_annotation] = ACTIONS(4262), - [anon_sym_data] = ACTIONS(4262), - [anon_sym_inner] = ACTIONS(4262), - [anon_sym_value] = ACTIONS(4262), - [anon_sym_override] = ACTIONS(4262), - [anon_sym_lateinit] = ACTIONS(4262), - [anon_sym_public] = ACTIONS(4262), - [anon_sym_private] = ACTIONS(4262), - [anon_sym_internal] = ACTIONS(4262), - [anon_sym_protected] = ACTIONS(4262), - [anon_sym_tailrec] = ACTIONS(4262), - [anon_sym_operator] = ACTIONS(4262), - [anon_sym_infix] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym_external] = ACTIONS(4262), - [sym_property_modifier] = ACTIONS(4262), - [anon_sym_abstract] = ACTIONS(4262), - [anon_sym_final] = ACTIONS(4262), - [anon_sym_open] = ACTIONS(4262), - [anon_sym_vararg] = ACTIONS(4262), - [anon_sym_noinline] = ACTIONS(4262), - [anon_sym_crossinline] = ACTIONS(4262), - [anon_sym_expect] = ACTIONS(4262), - [anon_sym_actual] = ACTIONS(4262), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4264), - [sym__automatic_semicolon] = ACTIONS(4264), - [sym_safe_nav] = ACTIONS(4264), + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_as] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4210), + [anon_sym_GT] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [sym__quest] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_DASH_GT] = ACTIONS(4214), + [sym_label] = ACTIONS(4212), + [anon_sym_in] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(4212), + [anon_sym_QMARK_COLON] = ACTIONS(4212), + [anon_sym_AMP_AMP] = ACTIONS(4212), + [anon_sym_PIPE_PIPE] = ACTIONS(4212), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_PLUS_EQ] = ACTIONS(4212), + [anon_sym_DASH_EQ] = ACTIONS(4212), + [anon_sym_STAR_EQ] = ACTIONS(4212), + [anon_sym_SLASH_EQ] = ACTIONS(4212), + [anon_sym_PERCENT_EQ] = ACTIONS(4212), + [anon_sym_BANG_EQ] = ACTIONS(4210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4212), + [anon_sym_EQ_EQ] = ACTIONS(4210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4212), + [anon_sym_LT_EQ] = ACTIONS(4212), + [anon_sym_GT_EQ] = ACTIONS(4212), + [anon_sym_BANGin] = ACTIONS(4212), + [anon_sym_is] = ACTIONS(4210), + [anon_sym_BANGis] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_SLASH] = ACTIONS(4210), + [anon_sym_PERCENT] = ACTIONS(4210), + [anon_sym_as_QMARK] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG_BANG] = ACTIONS(4212), + [anon_sym_suspend] = ACTIONS(4210), + [anon_sym_sealed] = ACTIONS(4210), + [anon_sym_annotation] = ACTIONS(4210), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_override] = ACTIONS(4210), + [anon_sym_lateinit] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_internal] = ACTIONS(4210), + [anon_sym_protected] = ACTIONS(4210), + [anon_sym_tailrec] = ACTIONS(4210), + [anon_sym_operator] = ACTIONS(4210), + [anon_sym_infix] = ACTIONS(4210), + [anon_sym_inline] = ACTIONS(4210), + [anon_sym_external] = ACTIONS(4210), + [sym_property_modifier] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_open] = ACTIONS(4210), + [anon_sym_vararg] = ACTIONS(4210), + [anon_sym_noinline] = ACTIONS(4210), + [anon_sym_crossinline] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4212), + [sym__automatic_semicolon] = ACTIONS(4212), + [sym_safe_nav] = ACTIONS(4212), [sym_multiline_comment] = ACTIONS(3), }, [3463] = { - [ts_builtin_sym_end] = ACTIONS(6934), - [sym__alpha_identifier] = ACTIONS(6936), - [anon_sym_AT] = ACTIONS(6934), - [anon_sym_LBRACK] = ACTIONS(6934), - [anon_sym_package] = ACTIONS(6936), - [anon_sym_import] = ACTIONS(6936), - [anon_sym_typealias] = ACTIONS(6936), - [anon_sym_class] = ACTIONS(6936), - [anon_sym_fun] = ACTIONS(6936), - [anon_sym_interface] = ACTIONS(6936), - [anon_sym_enum] = ACTIONS(6936), - [anon_sym_LBRACE] = ACTIONS(6934), - [anon_sym_LPAREN] = ACTIONS(6934), - [anon_sym_val] = ACTIONS(6936), - [anon_sym_var] = ACTIONS(6936), - [anon_sym_object] = ACTIONS(6936), - [anon_sym_get] = ACTIONS(6936), - [anon_sym_set] = ACTIONS(6936), - [anon_sym_this] = ACTIONS(6936), - [anon_sym_super] = ACTIONS(6936), - [anon_sym_STAR] = ACTIONS(6934), - [sym_label] = ACTIONS(6936), - [anon_sym_for] = ACTIONS(6936), - [anon_sym_while] = ACTIONS(6936), - [anon_sym_do] = ACTIONS(6936), - [anon_sym_null] = ACTIONS(6936), - [anon_sym_if] = ACTIONS(6936), - [anon_sym_when] = ACTIONS(6936), - [anon_sym_try] = ACTIONS(6936), - [anon_sym_throw] = ACTIONS(6936), - [anon_sym_return] = ACTIONS(6936), - [anon_sym_continue] = ACTIONS(6936), - [anon_sym_break] = ACTIONS(6936), - [anon_sym_COLON_COLON] = ACTIONS(6934), - [anon_sym_PLUS] = ACTIONS(6936), - [anon_sym_DASH] = ACTIONS(6936), - [anon_sym_PLUS_PLUS] = ACTIONS(6934), - [anon_sym_DASH_DASH] = ACTIONS(6934), - [anon_sym_BANG] = ACTIONS(6934), - [anon_sym_suspend] = ACTIONS(6936), - [anon_sym_sealed] = ACTIONS(6936), - [anon_sym_annotation] = ACTIONS(6936), - [anon_sym_data] = ACTIONS(6936), - [anon_sym_inner] = ACTIONS(6936), - [anon_sym_value] = ACTIONS(6936), - [anon_sym_override] = ACTIONS(6936), - [anon_sym_lateinit] = ACTIONS(6936), - [anon_sym_public] = ACTIONS(6936), - [anon_sym_private] = ACTIONS(6936), - [anon_sym_internal] = ACTIONS(6936), - [anon_sym_protected] = ACTIONS(6936), - [anon_sym_tailrec] = ACTIONS(6936), - [anon_sym_operator] = ACTIONS(6936), - [anon_sym_infix] = ACTIONS(6936), - [anon_sym_inline] = ACTIONS(6936), - [anon_sym_external] = ACTIONS(6936), - [sym_property_modifier] = ACTIONS(6936), - [anon_sym_abstract] = ACTIONS(6936), - [anon_sym_final] = ACTIONS(6936), - [anon_sym_open] = ACTIONS(6936), - [anon_sym_vararg] = ACTIONS(6936), - [anon_sym_noinline] = ACTIONS(6936), - [anon_sym_crossinline] = ACTIONS(6936), - [anon_sym_expect] = ACTIONS(6936), - [anon_sym_actual] = ACTIONS(6936), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6934), - [anon_sym_continue_AT] = ACTIONS(6934), - [anon_sym_break_AT] = ACTIONS(6934), - [anon_sym_this_AT] = ACTIONS(6934), - [anon_sym_super_AT] = ACTIONS(6934), - [sym_real_literal] = ACTIONS(6934), - [sym_integer_literal] = ACTIONS(6936), - [sym_hex_literal] = ACTIONS(6934), - [sym_bin_literal] = ACTIONS(6934), - [anon_sym_true] = ACTIONS(6936), - [anon_sym_false] = ACTIONS(6936), - [anon_sym_SQUOTE] = ACTIONS(6934), - [sym__backtick_identifier] = ACTIONS(6934), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6934), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_RBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [anon_sym_DASH_GT] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(6870), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), }, [3464] = { - [aux_sym_nullable_type_repeat1] = STATE(3514), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(4327), - [anon_sym_LBRACE] = ACTIONS(4329), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4327), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [sym__quest] = ACTIONS(6938), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_RBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3420), + [anon_sym_set] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [anon_sym_DASH_GT] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(3420), + [anon_sym_sealed] = ACTIONS(3420), + [anon_sym_annotation] = ACTIONS(3420), + [anon_sym_data] = ACTIONS(3420), + [anon_sym_inner] = ACTIONS(3420), + [anon_sym_value] = ACTIONS(3420), + [anon_sym_override] = ACTIONS(3420), + [anon_sym_lateinit] = ACTIONS(3420), + [anon_sym_public] = ACTIONS(3420), + [anon_sym_private] = ACTIONS(3420), + [anon_sym_internal] = ACTIONS(3420), + [anon_sym_protected] = ACTIONS(3420), + [anon_sym_tailrec] = ACTIONS(3420), + [anon_sym_operator] = ACTIONS(3420), + [anon_sym_infix] = ACTIONS(3420), + [anon_sym_inline] = ACTIONS(3420), + [anon_sym_external] = ACTIONS(3420), + [sym_property_modifier] = ACTIONS(3420), + [anon_sym_abstract] = ACTIONS(3420), + [anon_sym_final] = ACTIONS(3420), + [anon_sym_open] = ACTIONS(3420), + [anon_sym_vararg] = ACTIONS(3420), + [anon_sym_noinline] = ACTIONS(3420), + [anon_sym_crossinline] = ACTIONS(3420), + [anon_sym_expect] = ACTIONS(3420), + [anon_sym_actual] = ACTIONS(3420), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, [3465] = { - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_DASH_GT] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_RBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(6872), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [anon_sym_DASH_GT] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(6870), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [3466] = { - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_RBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4277), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(4275), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), - [anon_sym_DASH_GT] = ACTIONS(4277), - [sym_label] = ACTIONS(4277), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_while] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_PLUS_EQ] = ACTIONS(4277), - [anon_sym_DASH_EQ] = ACTIONS(4277), - [anon_sym_STAR_EQ] = ACTIONS(4277), - [anon_sym_SLASH_EQ] = ACTIONS(4277), - [anon_sym_PERCENT_EQ] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_suspend] = ACTIONS(4275), - [anon_sym_sealed] = ACTIONS(4275), - [anon_sym_annotation] = ACTIONS(4275), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_override] = ACTIONS(4275), - [anon_sym_lateinit] = ACTIONS(4275), - [anon_sym_public] = ACTIONS(4275), - [anon_sym_private] = ACTIONS(4275), - [anon_sym_internal] = ACTIONS(4275), - [anon_sym_protected] = ACTIONS(4275), - [anon_sym_tailrec] = ACTIONS(4275), - [anon_sym_operator] = ACTIONS(4275), - [anon_sym_infix] = ACTIONS(4275), - [anon_sym_inline] = ACTIONS(4275), - [anon_sym_external] = ACTIONS(4275), - [sym_property_modifier] = ACTIONS(4275), - [anon_sym_abstract] = ACTIONS(4275), - [anon_sym_final] = ACTIONS(4275), - [anon_sym_open] = ACTIONS(4275), - [anon_sym_vararg] = ACTIONS(4275), - [anon_sym_noinline] = ACTIONS(4275), - [anon_sym_crossinline] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_RBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4569), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_RPAREN] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [anon_sym_DASH_GT] = ACTIONS(4569), + [sym_label] = ACTIONS(4569), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_while] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_suspend] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_annotation] = ACTIONS(4567), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_lateinit] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_tailrec] = ACTIONS(4567), + [anon_sym_operator] = ACTIONS(4567), + [anon_sym_infix] = ACTIONS(4567), + [anon_sym_inline] = ACTIONS(4567), + [anon_sym_external] = ACTIONS(4567), + [sym_property_modifier] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_final] = ACTIONS(4567), + [anon_sym_open] = ACTIONS(4567), + [anon_sym_vararg] = ACTIONS(4567), + [anon_sym_noinline] = ACTIONS(4567), + [anon_sym_crossinline] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), [sym_multiline_comment] = ACTIONS(3), }, [3467] = { - [sym__alpha_identifier] = ACTIONS(5115), - [anon_sym_AT] = ACTIONS(5117), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_RBRACK] = ACTIONS(5117), - [anon_sym_as] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5117), - [anon_sym_RBRACE] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5117), - [anon_sym_COMMA] = ACTIONS(5117), - [anon_sym_RPAREN] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5115), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_where] = ACTIONS(5115), - [anon_sym_DOT] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5117), - [anon_sym_get] = ACTIONS(5115), - [anon_sym_set] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_DASH_GT] = ACTIONS(5117), - [sym_label] = ACTIONS(5117), - [anon_sym_in] = ACTIONS(5115), - [anon_sym_while] = ACTIONS(5115), - [anon_sym_DOT_DOT] = ACTIONS(5117), - [anon_sym_QMARK_COLON] = ACTIONS(5117), - [anon_sym_AMP_AMP] = ACTIONS(5117), - [anon_sym_PIPE_PIPE] = ACTIONS(5117), - [anon_sym_else] = ACTIONS(5115), - [anon_sym_COLON_COLON] = ACTIONS(5117), - [anon_sym_PLUS_EQ] = ACTIONS(5117), - [anon_sym_DASH_EQ] = ACTIONS(5117), - [anon_sym_STAR_EQ] = ACTIONS(5117), - [anon_sym_SLASH_EQ] = ACTIONS(5117), - [anon_sym_PERCENT_EQ] = ACTIONS(5117), - [anon_sym_BANG_EQ] = ACTIONS(5115), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5117), - [anon_sym_EQ_EQ] = ACTIONS(5115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5117), - [anon_sym_LT_EQ] = ACTIONS(5117), - [anon_sym_GT_EQ] = ACTIONS(5117), - [anon_sym_BANGin] = ACTIONS(5117), - [anon_sym_is] = ACTIONS(5115), - [anon_sym_BANGis] = ACTIONS(5117), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5115), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_as_QMARK] = ACTIONS(5117), - [anon_sym_PLUS_PLUS] = ACTIONS(5117), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_BANG_BANG] = ACTIONS(5117), - [anon_sym_suspend] = ACTIONS(5115), - [anon_sym_sealed] = ACTIONS(5115), - [anon_sym_annotation] = ACTIONS(5115), - [anon_sym_data] = ACTIONS(5115), - [anon_sym_inner] = ACTIONS(5115), - [anon_sym_value] = ACTIONS(5115), - [anon_sym_override] = ACTIONS(5115), - [anon_sym_lateinit] = ACTIONS(5115), - [anon_sym_public] = ACTIONS(5115), - [anon_sym_private] = ACTIONS(5115), - [anon_sym_internal] = ACTIONS(5115), - [anon_sym_protected] = ACTIONS(5115), - [anon_sym_tailrec] = ACTIONS(5115), - [anon_sym_operator] = ACTIONS(5115), - [anon_sym_infix] = ACTIONS(5115), - [anon_sym_inline] = ACTIONS(5115), - [anon_sym_external] = ACTIONS(5115), - [sym_property_modifier] = ACTIONS(5115), - [anon_sym_abstract] = ACTIONS(5115), - [anon_sym_final] = ACTIONS(5115), - [anon_sym_open] = ACTIONS(5115), - [anon_sym_vararg] = ACTIONS(5115), - [anon_sym_noinline] = ACTIONS(5115), - [anon_sym_crossinline] = ACTIONS(5115), - [anon_sym_expect] = ACTIONS(5115), - [anon_sym_actual] = ACTIONS(5115), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5117), - [sym_safe_nav] = ACTIONS(5117), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_RBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4299), + [anon_sym_LBRACE] = ACTIONS(4301), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_DASH_GT] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3468] = { + [sym__alpha_identifier] = ACTIONS(4958), + [anon_sym_AT] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_RBRACK] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4958), + [anon_sym_EQ] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_where] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_get] = ACTIONS(4958), + [anon_sym_set] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_DASH_GT] = ACTIONS(4960), + [sym_label] = ACTIONS(4960), + [anon_sym_in] = ACTIONS(4958), + [anon_sym_while] = ACTIONS(4958), + [anon_sym_DOT_DOT] = ACTIONS(4960), + [anon_sym_QMARK_COLON] = ACTIONS(4960), + [anon_sym_AMP_AMP] = ACTIONS(4960), + [anon_sym_PIPE_PIPE] = ACTIONS(4960), + [anon_sym_else] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(4960), + [anon_sym_PLUS_EQ] = ACTIONS(4960), + [anon_sym_DASH_EQ] = ACTIONS(4960), + [anon_sym_STAR_EQ] = ACTIONS(4960), + [anon_sym_SLASH_EQ] = ACTIONS(4960), + [anon_sym_PERCENT_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4960), + [anon_sym_LT_EQ] = ACTIONS(4960), + [anon_sym_GT_EQ] = ACTIONS(4960), + [anon_sym_BANGin] = ACTIONS(4960), + [anon_sym_is] = ACTIONS(4958), + [anon_sym_BANGis] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_as_QMARK] = ACTIONS(4960), + [anon_sym_PLUS_PLUS] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4960), + [anon_sym_BANG_BANG] = ACTIONS(4960), + [anon_sym_suspend] = ACTIONS(4958), + [anon_sym_sealed] = ACTIONS(4958), + [anon_sym_annotation] = ACTIONS(4958), + [anon_sym_data] = ACTIONS(4958), + [anon_sym_inner] = ACTIONS(4958), + [anon_sym_value] = ACTIONS(4958), + [anon_sym_override] = ACTIONS(4958), + [anon_sym_lateinit] = ACTIONS(4958), + [anon_sym_public] = ACTIONS(4958), + [anon_sym_private] = ACTIONS(4958), + [anon_sym_internal] = ACTIONS(4958), + [anon_sym_protected] = ACTIONS(4958), + [anon_sym_tailrec] = ACTIONS(4958), + [anon_sym_operator] = ACTIONS(4958), + [anon_sym_infix] = ACTIONS(4958), + [anon_sym_inline] = ACTIONS(4958), + [anon_sym_external] = ACTIONS(4958), + [sym_property_modifier] = ACTIONS(4958), + [anon_sym_abstract] = ACTIONS(4958), + [anon_sym_final] = ACTIONS(4958), + [anon_sym_open] = ACTIONS(4958), + [anon_sym_vararg] = ACTIONS(4958), + [anon_sym_noinline] = ACTIONS(4958), + [anon_sym_crossinline] = ACTIONS(4958), + [anon_sym_expect] = ACTIONS(4958), + [anon_sym_actual] = ACTIONS(4958), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4960), + [sym_safe_nav] = ACTIONS(4960), + [sym_multiline_comment] = ACTIONS(3), + }, + [3469] = { + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(1814), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(1814), + [anon_sym_sealed] = ACTIONS(1814), + [anon_sym_annotation] = ACTIONS(1814), + [anon_sym_data] = ACTIONS(1814), + [anon_sym_inner] = ACTIONS(1814), + [anon_sym_value] = ACTIONS(1814), + [anon_sym_override] = ACTIONS(1814), + [anon_sym_lateinit] = ACTIONS(1814), + [anon_sym_public] = ACTIONS(1814), + [anon_sym_private] = ACTIONS(1814), + [anon_sym_internal] = ACTIONS(1814), + [anon_sym_protected] = ACTIONS(1814), + [anon_sym_tailrec] = ACTIONS(1814), + [anon_sym_operator] = ACTIONS(1814), + [anon_sym_infix] = ACTIONS(1814), + [anon_sym_inline] = ACTIONS(1814), + [anon_sym_external] = ACTIONS(1814), + [sym_property_modifier] = ACTIONS(1814), + [anon_sym_abstract] = ACTIONS(1814), + [anon_sym_final] = ACTIONS(1814), + [anon_sym_open] = ACTIONS(1814), + [anon_sym_vararg] = ACTIONS(1814), + [anon_sym_noinline] = ACTIONS(1814), + [anon_sym_crossinline] = ACTIONS(1814), + [anon_sym_expect] = ACTIONS(1814), + [anon_sym_actual] = ACTIONS(1814), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + }, + [3470] = { + [sym__alpha_identifier] = ACTIONS(4966), + [anon_sym_AT] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_RBRACK] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4966), + [anon_sym_EQ] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_RBRACE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_where] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_get] = ACTIONS(4966), + [anon_sym_set] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [anon_sym_DASH_GT] = ACTIONS(4968), + [sym_label] = ACTIONS(4968), + [anon_sym_in] = ACTIONS(4966), + [anon_sym_while] = ACTIONS(4966), + [anon_sym_DOT_DOT] = ACTIONS(4968), + [anon_sym_QMARK_COLON] = ACTIONS(4968), + [anon_sym_AMP_AMP] = ACTIONS(4968), + [anon_sym_PIPE_PIPE] = ACTIONS(4968), + [anon_sym_else] = ACTIONS(4966), + [anon_sym_COLON_COLON] = ACTIONS(4968), + [anon_sym_PLUS_EQ] = ACTIONS(4968), + [anon_sym_DASH_EQ] = ACTIONS(4968), + [anon_sym_STAR_EQ] = ACTIONS(4968), + [anon_sym_SLASH_EQ] = ACTIONS(4968), + [anon_sym_PERCENT_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4968), + [anon_sym_LT_EQ] = ACTIONS(4968), + [anon_sym_GT_EQ] = ACTIONS(4968), + [anon_sym_BANGin] = ACTIONS(4968), + [anon_sym_is] = ACTIONS(4966), + [anon_sym_BANGis] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_PERCENT] = ACTIONS(4966), + [anon_sym_as_QMARK] = ACTIONS(4968), + [anon_sym_PLUS_PLUS] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4968), + [anon_sym_BANG_BANG] = ACTIONS(4968), + [anon_sym_suspend] = ACTIONS(4966), + [anon_sym_sealed] = ACTIONS(4966), + [anon_sym_annotation] = ACTIONS(4966), + [anon_sym_data] = ACTIONS(4966), + [anon_sym_inner] = ACTIONS(4966), + [anon_sym_value] = ACTIONS(4966), + [anon_sym_override] = ACTIONS(4966), + [anon_sym_lateinit] = ACTIONS(4966), + [anon_sym_public] = ACTIONS(4966), + [anon_sym_private] = ACTIONS(4966), + [anon_sym_internal] = ACTIONS(4966), + [anon_sym_protected] = ACTIONS(4966), + [anon_sym_tailrec] = ACTIONS(4966), + [anon_sym_operator] = ACTIONS(4966), + [anon_sym_infix] = ACTIONS(4966), + [anon_sym_inline] = ACTIONS(4966), + [anon_sym_external] = ACTIONS(4966), + [sym_property_modifier] = ACTIONS(4966), + [anon_sym_abstract] = ACTIONS(4966), + [anon_sym_final] = ACTIONS(4966), + [anon_sym_open] = ACTIONS(4966), + [anon_sym_vararg] = ACTIONS(4966), + [anon_sym_noinline] = ACTIONS(4966), + [anon_sym_crossinline] = ACTIONS(4966), + [anon_sym_expect] = ACTIONS(4966), + [anon_sym_actual] = ACTIONS(4966), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4968), + [sym_safe_nav] = ACTIONS(4968), + [sym_multiline_comment] = ACTIONS(3), + }, + [3471] = { [sym__alpha_identifier] = ACTIONS(5099), [anon_sym_AT] = ACTIONS(5101), [anon_sym_LBRACK] = ACTIONS(5101), @@ -403768,1120 +401762,782 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5101), [sym_multiline_comment] = ACTIONS(3), }, - [3469] = { - [sym_type_constraints] = STATE(3917), - [sym_function_body] = STATE(3667), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_RPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4183), - [sym_label] = ACTIONS(4185), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_while] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_PLUS_EQ] = ACTIONS(4185), - [anon_sym_DASH_EQ] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4185), - [anon_sym_SLASH_EQ] = ACTIONS(4185), - [anon_sym_PERCENT_EQ] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4183), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), - [sym_multiline_comment] = ACTIONS(3), - }, - [3470] = { - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_RBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_RPAREN] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_DASH_GT] = ACTIONS(4437), - [sym_label] = ACTIONS(4437), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_while] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_PLUS_EQ] = ACTIONS(4437), - [anon_sym_DASH_EQ] = ACTIONS(4437), - [anon_sym_STAR_EQ] = ACTIONS(4437), - [anon_sym_SLASH_EQ] = ACTIONS(4437), - [anon_sym_PERCENT_EQ] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4435), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_suspend] = ACTIONS(4435), - [anon_sym_sealed] = ACTIONS(4435), - [anon_sym_annotation] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_override] = ACTIONS(4435), - [anon_sym_lateinit] = ACTIONS(4435), - [anon_sym_public] = ACTIONS(4435), - [anon_sym_private] = ACTIONS(4435), - [anon_sym_internal] = ACTIONS(4435), - [anon_sym_protected] = ACTIONS(4435), - [anon_sym_tailrec] = ACTIONS(4435), - [anon_sym_operator] = ACTIONS(4435), - [anon_sym_infix] = ACTIONS(4435), - [anon_sym_inline] = ACTIONS(4435), - [anon_sym_external] = ACTIONS(4435), - [sym_property_modifier] = ACTIONS(4435), - [anon_sym_abstract] = ACTIONS(4435), - [anon_sym_final] = ACTIONS(4435), - [anon_sym_open] = ACTIONS(4435), - [anon_sym_vararg] = ACTIONS(4435), - [anon_sym_noinline] = ACTIONS(4435), - [anon_sym_crossinline] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), + [3472] = { + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_RBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4483), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_RPAREN] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [anon_sym_DASH_GT] = ACTIONS(4483), + [sym_label] = ACTIONS(4483), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_while] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), [sym_multiline_comment] = ACTIONS(3), }, - [3471] = { - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_DASH_GT] = ACTIONS(3346), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(3344), - [anon_sym_sealed] = ACTIONS(3344), - [anon_sym_annotation] = ACTIONS(3344), - [anon_sym_data] = ACTIONS(3344), - [anon_sym_inner] = ACTIONS(3344), - [anon_sym_value] = ACTIONS(3344), - [anon_sym_override] = ACTIONS(3344), - [anon_sym_lateinit] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_internal] = ACTIONS(3344), - [anon_sym_protected] = ACTIONS(3344), - [anon_sym_tailrec] = ACTIONS(3344), - [anon_sym_operator] = ACTIONS(3344), - [anon_sym_infix] = ACTIONS(3344), - [anon_sym_inline] = ACTIONS(3344), - [anon_sym_external] = ACTIONS(3344), - [sym_property_modifier] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_final] = ACTIONS(3344), - [anon_sym_open] = ACTIONS(3344), - [anon_sym_vararg] = ACTIONS(3344), - [anon_sym_noinline] = ACTIONS(3344), - [anon_sym_crossinline] = ACTIONS(3344), - [anon_sym_expect] = ACTIONS(3344), - [anon_sym_actual] = ACTIONS(3344), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), - [sym_multiline_comment] = ACTIONS(3), - }, - [3472] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(6940), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_typealias] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4010), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_interface] = ACTIONS(4010), - [anon_sym_enum] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_val] = ACTIONS(4010), - [anon_sym_var] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4015), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_get] = ACTIONS(4010), - [anon_sym_set] = ACTIONS(4010), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4015), - [sym_label] = ACTIONS(4010), - [anon_sym_for] = ACTIONS(4010), - [anon_sym_while] = ACTIONS(4010), - [anon_sym_do] = ACTIONS(4010), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4010), - [anon_sym_sealed] = ACTIONS(4010), - [anon_sym_annotation] = ACTIONS(4010), - [anon_sym_data] = ACTIONS(4010), - [anon_sym_inner] = ACTIONS(4010), - [anon_sym_value] = ACTIONS(4010), - [anon_sym_override] = ACTIONS(4010), - [anon_sym_lateinit] = ACTIONS(4010), - [anon_sym_public] = ACTIONS(4010), - [anon_sym_private] = ACTIONS(4010), - [anon_sym_internal] = ACTIONS(4010), - [anon_sym_protected] = ACTIONS(4010), - [anon_sym_tailrec] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_infix] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym_external] = ACTIONS(4010), - [sym_property_modifier] = ACTIONS(4010), - [anon_sym_abstract] = ACTIONS(4010), - [anon_sym_final] = ACTIONS(4010), - [anon_sym_open] = ACTIONS(4010), - [anon_sym_vararg] = ACTIONS(4010), - [anon_sym_noinline] = ACTIONS(4010), - [anon_sym_crossinline] = ACTIONS(4010), - [anon_sym_expect] = ACTIONS(4010), - [anon_sym_actual] = ACTIONS(4010), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, [3473] = { - [sym__alpha_identifier] = ACTIONS(4840), - [anon_sym_AT] = ACTIONS(4842), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_RBRACK] = ACTIONS(4842), - [anon_sym_as] = ACTIONS(4840), - [anon_sym_EQ] = ACTIONS(4840), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_LPAREN] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym_GT] = ACTIONS(4840), - [anon_sym_where] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4840), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_get] = ACTIONS(4840), - [anon_sym_set] = ACTIONS(4840), - [anon_sym_STAR] = ACTIONS(4840), - [anon_sym_DASH_GT] = ACTIONS(4842), - [sym_label] = ACTIONS(4842), - [anon_sym_in] = ACTIONS(4840), - [anon_sym_while] = ACTIONS(4840), - [anon_sym_DOT_DOT] = ACTIONS(4842), - [anon_sym_QMARK_COLON] = ACTIONS(4842), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_else] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(4842), - [anon_sym_PLUS_EQ] = ACTIONS(4842), - [anon_sym_DASH_EQ] = ACTIONS(4842), - [anon_sym_STAR_EQ] = ACTIONS(4842), - [anon_sym_SLASH_EQ] = ACTIONS(4842), - [anon_sym_PERCENT_EQ] = ACTIONS(4842), - [anon_sym_BANG_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), - [anon_sym_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), - [anon_sym_LT_EQ] = ACTIONS(4842), - [anon_sym_GT_EQ] = ACTIONS(4842), - [anon_sym_BANGin] = ACTIONS(4842), - [anon_sym_is] = ACTIONS(4840), - [anon_sym_BANGis] = ACTIONS(4842), - [anon_sym_PLUS] = ACTIONS(4840), - [anon_sym_DASH] = ACTIONS(4840), - [anon_sym_SLASH] = ACTIONS(4840), - [anon_sym_PERCENT] = ACTIONS(4840), - [anon_sym_as_QMARK] = ACTIONS(4842), - [anon_sym_PLUS_PLUS] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_BANG_BANG] = ACTIONS(4842), - [anon_sym_suspend] = ACTIONS(4840), - [anon_sym_sealed] = ACTIONS(4840), - [anon_sym_annotation] = ACTIONS(4840), - [anon_sym_data] = ACTIONS(4840), - [anon_sym_inner] = ACTIONS(4840), - [anon_sym_value] = ACTIONS(4840), - [anon_sym_override] = ACTIONS(4840), - [anon_sym_lateinit] = ACTIONS(4840), - [anon_sym_public] = ACTIONS(4840), - [anon_sym_private] = ACTIONS(4840), - [anon_sym_internal] = ACTIONS(4840), - [anon_sym_protected] = ACTIONS(4840), - [anon_sym_tailrec] = ACTIONS(4840), - [anon_sym_operator] = ACTIONS(4840), - [anon_sym_infix] = ACTIONS(4840), - [anon_sym_inline] = ACTIONS(4840), - [anon_sym_external] = ACTIONS(4840), - [sym_property_modifier] = ACTIONS(4840), - [anon_sym_abstract] = ACTIONS(4840), - [anon_sym_final] = ACTIONS(4840), - [anon_sym_open] = ACTIONS(4840), - [anon_sym_vararg] = ACTIONS(4840), - [anon_sym_noinline] = ACTIONS(4840), - [anon_sym_crossinline] = ACTIONS(4840), - [anon_sym_expect] = ACTIONS(4840), - [anon_sym_actual] = ACTIONS(4840), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4842), - [sym_safe_nav] = ACTIONS(4842), + [sym__alpha_identifier] = ACTIONS(4898), + [anon_sym_AT] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_RBRACK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_get] = ACTIONS(4898), + [anon_sym_set] = ACTIONS(4898), + [anon_sym_STAR] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4900), + [sym_label] = ACTIONS(4900), + [anon_sym_in] = ACTIONS(4898), + [anon_sym_while] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4900), + [anon_sym_QMARK_COLON] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_else] = ACTIONS(4898), + [anon_sym_COLON_COLON] = ACTIONS(4900), + [anon_sym_PLUS_EQ] = ACTIONS(4900), + [anon_sym_DASH_EQ] = ACTIONS(4900), + [anon_sym_STAR_EQ] = ACTIONS(4900), + [anon_sym_SLASH_EQ] = ACTIONS(4900), + [anon_sym_PERCENT_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4900), + [anon_sym_LT_EQ] = ACTIONS(4900), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_BANGin] = ACTIONS(4900), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_BANGis] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_PERCENT] = ACTIONS(4898), + [anon_sym_as_QMARK] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4900), + [anon_sym_BANG_BANG] = ACTIONS(4900), + [anon_sym_suspend] = ACTIONS(4898), + [anon_sym_sealed] = ACTIONS(4898), + [anon_sym_annotation] = ACTIONS(4898), + [anon_sym_data] = ACTIONS(4898), + [anon_sym_inner] = ACTIONS(4898), + [anon_sym_value] = ACTIONS(4898), + [anon_sym_override] = ACTIONS(4898), + [anon_sym_lateinit] = ACTIONS(4898), + [anon_sym_public] = ACTIONS(4898), + [anon_sym_private] = ACTIONS(4898), + [anon_sym_internal] = ACTIONS(4898), + [anon_sym_protected] = ACTIONS(4898), + [anon_sym_tailrec] = ACTIONS(4898), + [anon_sym_operator] = ACTIONS(4898), + [anon_sym_infix] = ACTIONS(4898), + [anon_sym_inline] = ACTIONS(4898), + [anon_sym_external] = ACTIONS(4898), + [sym_property_modifier] = ACTIONS(4898), + [anon_sym_abstract] = ACTIONS(4898), + [anon_sym_final] = ACTIONS(4898), + [anon_sym_open] = ACTIONS(4898), + [anon_sym_vararg] = ACTIONS(4898), + [anon_sym_noinline] = ACTIONS(4898), + [anon_sym_crossinline] = ACTIONS(4898), + [anon_sym_expect] = ACTIONS(4898), + [anon_sym_actual] = ACTIONS(4898), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4900), + [sym_safe_nav] = ACTIONS(4900), [sym_multiline_comment] = ACTIONS(3), }, [3474] = { - [sym__alpha_identifier] = ACTIONS(3156), - [anon_sym_AT] = ACTIONS(3158), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_RBRACK] = ACTIONS(3158), - [anon_sym_as] = ACTIONS(3156), - [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_RPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3156), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3156), - [anon_sym_set] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3156), - [anon_sym_DASH_GT] = ACTIONS(3158), - [sym_label] = ACTIONS(3158), - [anon_sym_in] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_DOT_DOT] = ACTIONS(3158), - [anon_sym_QMARK_COLON] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3158), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_STAR_EQ] = ACTIONS(3158), - [anon_sym_SLASH_EQ] = ACTIONS(3158), - [anon_sym_PERCENT_EQ] = ACTIONS(3158), - [anon_sym_BANG_EQ] = ACTIONS(3156), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3158), - [anon_sym_EQ_EQ] = ACTIONS(3156), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3158), - [anon_sym_LT_EQ] = ACTIONS(3158), - [anon_sym_GT_EQ] = ACTIONS(3158), - [anon_sym_BANGin] = ACTIONS(3158), - [anon_sym_is] = ACTIONS(3156), - [anon_sym_BANGis] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3156), - [anon_sym_PERCENT] = ACTIONS(3156), - [anon_sym_as_QMARK] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [anon_sym_BANG_BANG] = ACTIONS(3158), - [anon_sym_suspend] = ACTIONS(3156), - [anon_sym_sealed] = ACTIONS(3156), - [anon_sym_annotation] = ACTIONS(3156), - [anon_sym_data] = ACTIONS(3156), - [anon_sym_inner] = ACTIONS(3156), - [anon_sym_value] = ACTIONS(3156), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_lateinit] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_internal] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_tailrec] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_infix] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym_external] = ACTIONS(3156), - [sym_property_modifier] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_final] = ACTIONS(3156), - [anon_sym_open] = ACTIONS(3156), - [anon_sym_vararg] = ACTIONS(3156), - [anon_sym_noinline] = ACTIONS(3156), - [anon_sym_crossinline] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3156), - [anon_sym_actual] = ACTIONS(3156), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(3158), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3162), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [anon_sym_DASH_GT] = ACTIONS(3162), + [sym_label] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3162), + [anon_sym_QMARK_COLON] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_BANG_BANG] = ACTIONS(3162), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3160), + [anon_sym_inner] = ACTIONS(3160), + [anon_sym_value] = ACTIONS(3160), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3160), + [anon_sym_actual] = ACTIONS(3160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3162), [sym_multiline_comment] = ACTIONS(3), }, [3475] = { - [sym__alpha_identifier] = ACTIONS(5065), - [anon_sym_AT] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_RBRACK] = ACTIONS(5067), - [anon_sym_as] = ACTIONS(5065), - [anon_sym_EQ] = ACTIONS(5065), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_RBRACE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_where] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_get] = ACTIONS(5065), - [anon_sym_set] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_DASH_GT] = ACTIONS(5067), - [sym_label] = ACTIONS(5067), - [anon_sym_in] = ACTIONS(5065), - [anon_sym_while] = ACTIONS(5065), - [anon_sym_DOT_DOT] = ACTIONS(5067), - [anon_sym_QMARK_COLON] = ACTIONS(5067), - [anon_sym_AMP_AMP] = ACTIONS(5067), - [anon_sym_PIPE_PIPE] = ACTIONS(5067), - [anon_sym_else] = ACTIONS(5065), - [anon_sym_COLON_COLON] = ACTIONS(5067), - [anon_sym_PLUS_EQ] = ACTIONS(5067), - [anon_sym_DASH_EQ] = ACTIONS(5067), - [anon_sym_STAR_EQ] = ACTIONS(5067), - [anon_sym_SLASH_EQ] = ACTIONS(5067), - [anon_sym_PERCENT_EQ] = ACTIONS(5067), - [anon_sym_BANG_EQ] = ACTIONS(5065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5067), - [anon_sym_EQ_EQ] = ACTIONS(5065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5067), - [anon_sym_LT_EQ] = ACTIONS(5067), - [anon_sym_GT_EQ] = ACTIONS(5067), - [anon_sym_BANGin] = ACTIONS(5067), - [anon_sym_is] = ACTIONS(5065), - [anon_sym_BANGis] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_PERCENT] = ACTIONS(5065), - [anon_sym_as_QMARK] = ACTIONS(5067), - [anon_sym_PLUS_PLUS] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5067), - [anon_sym_BANG_BANG] = ACTIONS(5067), - [anon_sym_suspend] = ACTIONS(5065), - [anon_sym_sealed] = ACTIONS(5065), - [anon_sym_annotation] = ACTIONS(5065), - [anon_sym_data] = ACTIONS(5065), - [anon_sym_inner] = ACTIONS(5065), - [anon_sym_value] = ACTIONS(5065), - [anon_sym_override] = ACTIONS(5065), - [anon_sym_lateinit] = ACTIONS(5065), - [anon_sym_public] = ACTIONS(5065), - [anon_sym_private] = ACTIONS(5065), - [anon_sym_internal] = ACTIONS(5065), - [anon_sym_protected] = ACTIONS(5065), - [anon_sym_tailrec] = ACTIONS(5065), - [anon_sym_operator] = ACTIONS(5065), - [anon_sym_infix] = ACTIONS(5065), - [anon_sym_inline] = ACTIONS(5065), - [anon_sym_external] = ACTIONS(5065), - [sym_property_modifier] = ACTIONS(5065), - [anon_sym_abstract] = ACTIONS(5065), - [anon_sym_final] = ACTIONS(5065), - [anon_sym_open] = ACTIONS(5065), - [anon_sym_vararg] = ACTIONS(5065), - [anon_sym_noinline] = ACTIONS(5065), - [anon_sym_crossinline] = ACTIONS(5065), - [anon_sym_expect] = ACTIONS(5065), - [anon_sym_actual] = ACTIONS(5065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5067), - [sym_safe_nav] = ACTIONS(5067), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_RBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4295), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_DASH_GT] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [3476] = { - [sym_type_constraints] = STATE(3928), - [sym_function_body] = STATE(3584), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_RPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_while] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_DASH_GT] = ACTIONS(4002), + [sym_label] = ACTIONS(4002), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_while] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), [sym_multiline_comment] = ACTIONS(3), }, [3477] = { - [sym__alpha_identifier] = ACTIONS(4836), - [anon_sym_AT] = ACTIONS(4838), - [anon_sym_LBRACK] = ACTIONS(4838), - [anon_sym_RBRACK] = ACTIONS(4838), - [anon_sym_as] = ACTIONS(4836), - [anon_sym_EQ] = ACTIONS(4836), - [anon_sym_LBRACE] = ACTIONS(4838), - [anon_sym_RBRACE] = ACTIONS(4838), - [anon_sym_LPAREN] = ACTIONS(4838), - [anon_sym_COMMA] = ACTIONS(4838), - [anon_sym_RPAREN] = ACTIONS(4838), - [anon_sym_LT] = ACTIONS(4836), - [anon_sym_GT] = ACTIONS(4836), - [anon_sym_where] = ACTIONS(4836), - [anon_sym_DOT] = ACTIONS(4836), - [anon_sym_SEMI] = ACTIONS(4838), - [anon_sym_get] = ACTIONS(4836), - [anon_sym_set] = ACTIONS(4836), - [anon_sym_STAR] = ACTIONS(4836), - [anon_sym_DASH_GT] = ACTIONS(4838), - [sym_label] = ACTIONS(4838), - [anon_sym_in] = ACTIONS(4836), - [anon_sym_while] = ACTIONS(4836), - [anon_sym_DOT_DOT] = ACTIONS(4838), - [anon_sym_QMARK_COLON] = ACTIONS(4838), - [anon_sym_AMP_AMP] = ACTIONS(4838), - [anon_sym_PIPE_PIPE] = ACTIONS(4838), - [anon_sym_else] = ACTIONS(4836), - [anon_sym_COLON_COLON] = ACTIONS(4838), - [anon_sym_PLUS_EQ] = ACTIONS(4838), - [anon_sym_DASH_EQ] = ACTIONS(4838), - [anon_sym_STAR_EQ] = ACTIONS(4838), - [anon_sym_SLASH_EQ] = ACTIONS(4838), - [anon_sym_PERCENT_EQ] = ACTIONS(4838), - [anon_sym_BANG_EQ] = ACTIONS(4836), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4838), - [anon_sym_EQ_EQ] = ACTIONS(4836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4838), - [anon_sym_LT_EQ] = ACTIONS(4838), - [anon_sym_GT_EQ] = ACTIONS(4838), - [anon_sym_BANGin] = ACTIONS(4838), - [anon_sym_is] = ACTIONS(4836), - [anon_sym_BANGis] = ACTIONS(4838), - [anon_sym_PLUS] = ACTIONS(4836), - [anon_sym_DASH] = ACTIONS(4836), - [anon_sym_SLASH] = ACTIONS(4836), - [anon_sym_PERCENT] = ACTIONS(4836), - [anon_sym_as_QMARK] = ACTIONS(4838), - [anon_sym_PLUS_PLUS] = ACTIONS(4838), - [anon_sym_DASH_DASH] = ACTIONS(4838), - [anon_sym_BANG_BANG] = ACTIONS(4838), - [anon_sym_suspend] = ACTIONS(4836), - [anon_sym_sealed] = ACTIONS(4836), - [anon_sym_annotation] = ACTIONS(4836), - [anon_sym_data] = ACTIONS(4836), - [anon_sym_inner] = ACTIONS(4836), - [anon_sym_value] = ACTIONS(4836), - [anon_sym_override] = ACTIONS(4836), - [anon_sym_lateinit] = ACTIONS(4836), - [anon_sym_public] = ACTIONS(4836), - [anon_sym_private] = ACTIONS(4836), - [anon_sym_internal] = ACTIONS(4836), - [anon_sym_protected] = ACTIONS(4836), - [anon_sym_tailrec] = ACTIONS(4836), - [anon_sym_operator] = ACTIONS(4836), - [anon_sym_infix] = ACTIONS(4836), - [anon_sym_inline] = ACTIONS(4836), - [anon_sym_external] = ACTIONS(4836), - [sym_property_modifier] = ACTIONS(4836), - [anon_sym_abstract] = ACTIONS(4836), - [anon_sym_final] = ACTIONS(4836), - [anon_sym_open] = ACTIONS(4836), - [anon_sym_vararg] = ACTIONS(4836), - [anon_sym_noinline] = ACTIONS(4836), - [anon_sym_crossinline] = ACTIONS(4836), - [anon_sym_expect] = ACTIONS(4836), - [anon_sym_actual] = ACTIONS(4836), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4838), - [sym_safe_nav] = ACTIONS(4838), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(1808), + [anon_sym_set] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(1808), + [anon_sym_sealed] = ACTIONS(1808), + [anon_sym_annotation] = ACTIONS(1808), + [anon_sym_data] = ACTIONS(1808), + [anon_sym_inner] = ACTIONS(1808), + [anon_sym_value] = ACTIONS(1808), + [anon_sym_override] = ACTIONS(1808), + [anon_sym_lateinit] = ACTIONS(1808), + [anon_sym_public] = ACTIONS(1808), + [anon_sym_private] = ACTIONS(1808), + [anon_sym_internal] = ACTIONS(1808), + [anon_sym_protected] = ACTIONS(1808), + [anon_sym_tailrec] = ACTIONS(1808), + [anon_sym_operator] = ACTIONS(1808), + [anon_sym_infix] = ACTIONS(1808), + [anon_sym_inline] = ACTIONS(1808), + [anon_sym_external] = ACTIONS(1808), + [sym_property_modifier] = ACTIONS(1808), + [anon_sym_abstract] = ACTIONS(1808), + [anon_sym_final] = ACTIONS(1808), + [anon_sym_open] = ACTIONS(1808), + [anon_sym_vararg] = ACTIONS(1808), + [anon_sym_noinline] = ACTIONS(1808), + [anon_sym_crossinline] = ACTIONS(1808), + [anon_sym_expect] = ACTIONS(1808), + [anon_sym_actual] = ACTIONS(1808), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, [3478] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(6942), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_this] = ACTIONS(4355), - [anon_sym_super] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4355), - [sym_label] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [anon_sym_if] = ACTIONS(4355), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4355), - [anon_sym_try] = ACTIONS(4355), - [anon_sym_throw] = ACTIONS(4355), - [anon_sym_return] = ACTIONS(4355), - [anon_sym_continue] = ACTIONS(4355), - [anon_sym_break] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4353), - [anon_sym_continue_AT] = ACTIONS(4353), - [anon_sym_break_AT] = ACTIONS(4353), - [anon_sym_this_AT] = ACTIONS(4353), - [anon_sym_super_AT] = ACTIONS(4353), - [sym_real_literal] = ACTIONS(4353), - [sym_integer_literal] = ACTIONS(4355), - [sym_hex_literal] = ACTIONS(4353), - [sym_bin_literal] = ACTIONS(4353), - [anon_sym_true] = ACTIONS(4355), - [anon_sym_false] = ACTIONS(4355), - [anon_sym_SQUOTE] = ACTIONS(4353), - [sym__backtick_identifier] = ACTIONS(4353), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_RBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_RPAREN] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [anon_sym_DASH_GT] = ACTIONS(4654), + [sym_label] = ACTIONS(4654), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4353), }, [3479] = { - [sym_type_arguments] = STATE(3881), - [sym__alpha_identifier] = ACTIONS(4177), - [anon_sym_AT] = ACTIONS(4179), - [anon_sym_LBRACK] = ACTIONS(4179), - [anon_sym_typealias] = ACTIONS(4177), - [anon_sym_class] = ACTIONS(4177), - [anon_sym_fun] = ACTIONS(4177), - [anon_sym_interface] = ACTIONS(4177), - [anon_sym_enum] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4179), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_val] = ACTIONS(4177), - [anon_sym_var] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(6944), - [anon_sym_object] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4177), - [anon_sym_set] = ACTIONS(4177), - [anon_sym_this] = ACTIONS(4177), - [anon_sym_super] = ACTIONS(4177), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4177), - [anon_sym_for] = ACTIONS(4177), - [anon_sym_while] = ACTIONS(4177), - [anon_sym_do] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4177), - [anon_sym_if] = ACTIONS(4177), - [anon_sym_when] = ACTIONS(4177), - [anon_sym_try] = ACTIONS(4177), - [anon_sym_throw] = ACTIONS(4177), - [anon_sym_return] = ACTIONS(4177), - [anon_sym_continue] = ACTIONS(4177), - [anon_sym_break] = ACTIONS(4177), - [anon_sym_COLON_COLON] = ACTIONS(4179), - [anon_sym_PLUS] = ACTIONS(4177), - [anon_sym_DASH] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4179), - [anon_sym_DASH_DASH] = ACTIONS(4179), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_suspend] = ACTIONS(4177), - [anon_sym_sealed] = ACTIONS(4177), - [anon_sym_annotation] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4177), - [anon_sym_inner] = ACTIONS(4177), - [anon_sym_value] = ACTIONS(4177), - [anon_sym_override] = ACTIONS(4177), - [anon_sym_lateinit] = ACTIONS(4177), - [anon_sym_public] = ACTIONS(4177), - [anon_sym_private] = ACTIONS(4177), - [anon_sym_internal] = ACTIONS(4177), - [anon_sym_protected] = ACTIONS(4177), - [anon_sym_tailrec] = ACTIONS(4177), - [anon_sym_operator] = ACTIONS(4177), - [anon_sym_infix] = ACTIONS(4177), - [anon_sym_inline] = ACTIONS(4177), - [anon_sym_external] = ACTIONS(4177), - [sym_property_modifier] = ACTIONS(4177), - [anon_sym_abstract] = ACTIONS(4177), - [anon_sym_final] = ACTIONS(4177), - [anon_sym_open] = ACTIONS(4177), - [anon_sym_vararg] = ACTIONS(4177), - [anon_sym_noinline] = ACTIONS(4177), - [anon_sym_crossinline] = ACTIONS(4177), - [anon_sym_expect] = ACTIONS(4177), - [anon_sym_actual] = ACTIONS(4177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4179), - [anon_sym_continue_AT] = ACTIONS(4179), - [anon_sym_break_AT] = ACTIONS(4179), - [anon_sym_this_AT] = ACTIONS(4179), - [anon_sym_super_AT] = ACTIONS(4179), - [sym_real_literal] = ACTIONS(4179), - [sym_integer_literal] = ACTIONS(4177), - [sym_hex_literal] = ACTIONS(4179), - [sym_bin_literal] = ACTIONS(4179), - [anon_sym_true] = ACTIONS(4177), - [anon_sym_false] = ACTIONS(4177), - [anon_sym_SQUOTE] = ACTIONS(4179), - [sym__backtick_identifier] = ACTIONS(4179), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4179), + [sym__alpha_identifier] = ACTIONS(4902), + [anon_sym_AT] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_RBRACK] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4902), + [anon_sym_where] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_get] = ACTIONS(4902), + [anon_sym_set] = ACTIONS(4902), + [anon_sym_STAR] = ACTIONS(4902), + [anon_sym_DASH_GT] = ACTIONS(4904), + [sym_label] = ACTIONS(4904), + [anon_sym_in] = ACTIONS(4902), + [anon_sym_while] = ACTIONS(4902), + [anon_sym_DOT_DOT] = ACTIONS(4904), + [anon_sym_QMARK_COLON] = ACTIONS(4904), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_PIPE_PIPE] = ACTIONS(4904), + [anon_sym_else] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_PLUS_EQ] = ACTIONS(4904), + [anon_sym_DASH_EQ] = ACTIONS(4904), + [anon_sym_STAR_EQ] = ACTIONS(4904), + [anon_sym_SLASH_EQ] = ACTIONS(4904), + [anon_sym_PERCENT_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4904), + [anon_sym_EQ_EQ] = ACTIONS(4902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4904), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_BANGin] = ACTIONS(4904), + [anon_sym_is] = ACTIONS(4902), + [anon_sym_BANGis] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4902), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4902), + [anon_sym_PERCENT] = ACTIONS(4902), + [anon_sym_as_QMARK] = ACTIONS(4904), + [anon_sym_PLUS_PLUS] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4904), + [anon_sym_BANG_BANG] = ACTIONS(4904), + [anon_sym_suspend] = ACTIONS(4902), + [anon_sym_sealed] = ACTIONS(4902), + [anon_sym_annotation] = ACTIONS(4902), + [anon_sym_data] = ACTIONS(4902), + [anon_sym_inner] = ACTIONS(4902), + [anon_sym_value] = ACTIONS(4902), + [anon_sym_override] = ACTIONS(4902), + [anon_sym_lateinit] = ACTIONS(4902), + [anon_sym_public] = ACTIONS(4902), + [anon_sym_private] = ACTIONS(4902), + [anon_sym_internal] = ACTIONS(4902), + [anon_sym_protected] = ACTIONS(4902), + [anon_sym_tailrec] = ACTIONS(4902), + [anon_sym_operator] = ACTIONS(4902), + [anon_sym_infix] = ACTIONS(4902), + [anon_sym_inline] = ACTIONS(4902), + [anon_sym_external] = ACTIONS(4902), + [sym_property_modifier] = ACTIONS(4902), + [anon_sym_abstract] = ACTIONS(4902), + [anon_sym_final] = ACTIONS(4902), + [anon_sym_open] = ACTIONS(4902), + [anon_sym_vararg] = ACTIONS(4902), + [anon_sym_noinline] = ACTIONS(4902), + [anon_sym_crossinline] = ACTIONS(4902), + [anon_sym_expect] = ACTIONS(4902), + [anon_sym_actual] = ACTIONS(4902), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4904), + [sym_safe_nav] = ACTIONS(4904), + [sym_multiline_comment] = ACTIONS(3), }, [3480] = { - [sym_type_constraints] = STATE(3916), - [sym_function_body] = STATE(3554), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_RPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), + [sym__alpha_identifier] = ACTIONS(4906), + [anon_sym_AT] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_RBRACK] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_where] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_get] = ACTIONS(4906), + [anon_sym_set] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4906), + [anon_sym_DASH_GT] = ACTIONS(4908), + [sym_label] = ACTIONS(4908), + [anon_sym_in] = ACTIONS(4906), + [anon_sym_while] = ACTIONS(4906), + [anon_sym_DOT_DOT] = ACTIONS(4908), + [anon_sym_QMARK_COLON] = ACTIONS(4908), + [anon_sym_AMP_AMP] = ACTIONS(4908), + [anon_sym_PIPE_PIPE] = ACTIONS(4908), + [anon_sym_else] = ACTIONS(4906), + [anon_sym_COLON_COLON] = ACTIONS(4908), + [anon_sym_PLUS_EQ] = ACTIONS(4908), + [anon_sym_DASH_EQ] = ACTIONS(4908), + [anon_sym_STAR_EQ] = ACTIONS(4908), + [anon_sym_SLASH_EQ] = ACTIONS(4908), + [anon_sym_PERCENT_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4906), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4908), + [anon_sym_EQ_EQ] = ACTIONS(4906), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4908), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_BANGin] = ACTIONS(4908), + [anon_sym_is] = ACTIONS(4906), + [anon_sym_BANGis] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_PERCENT] = ACTIONS(4906), + [anon_sym_as_QMARK] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_BANG_BANG] = ACTIONS(4908), + [anon_sym_suspend] = ACTIONS(4906), + [anon_sym_sealed] = ACTIONS(4906), + [anon_sym_annotation] = ACTIONS(4906), + [anon_sym_data] = ACTIONS(4906), + [anon_sym_inner] = ACTIONS(4906), + [anon_sym_value] = ACTIONS(4906), + [anon_sym_override] = ACTIONS(4906), + [anon_sym_lateinit] = ACTIONS(4906), + [anon_sym_public] = ACTIONS(4906), + [anon_sym_private] = ACTIONS(4906), + [anon_sym_internal] = ACTIONS(4906), + [anon_sym_protected] = ACTIONS(4906), + [anon_sym_tailrec] = ACTIONS(4906), + [anon_sym_operator] = ACTIONS(4906), + [anon_sym_infix] = ACTIONS(4906), + [anon_sym_inline] = ACTIONS(4906), + [anon_sym_external] = ACTIONS(4906), + [sym_property_modifier] = ACTIONS(4906), + [anon_sym_abstract] = ACTIONS(4906), + [anon_sym_final] = ACTIONS(4906), + [anon_sym_open] = ACTIONS(4906), + [anon_sym_vararg] = ACTIONS(4906), + [anon_sym_noinline] = ACTIONS(4906), + [anon_sym_crossinline] = ACTIONS(4906), + [anon_sym_expect] = ACTIONS(4906), + [anon_sym_actual] = ACTIONS(4906), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4908), + [sym_safe_nav] = ACTIONS(4908), [sym_multiline_comment] = ACTIONS(3), }, [3481] = { - [sym_type_constraints] = STATE(3909), - [sym_function_body] = STATE(3536), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_while] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - }, - [3482] = { [sym__alpha_identifier] = ACTIONS(5171), [anon_sym_AT] = ACTIONS(5173), [anon_sym_LBRACK] = ACTIONS(5173), + [anon_sym_RBRACK] = ACTIONS(5173), [anon_sym_as] = ACTIONS(5171), [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_fun] = ACTIONS(5171), [anon_sym_LBRACE] = ACTIONS(5173), [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(6946), + [anon_sym_LPAREN] = ACTIONS(5173), + [anon_sym_COMMA] = ACTIONS(5173), + [anon_sym_RPAREN] = ACTIONS(5173), [anon_sym_LT] = ACTIONS(5171), [anon_sym_GT] = ACTIONS(5171), - [anon_sym_object] = ACTIONS(5171), + [anon_sym_where] = ACTIONS(5171), [anon_sym_DOT] = ACTIONS(5171), [anon_sym_SEMI] = ACTIONS(5173), [anon_sym_get] = ACTIONS(5171), [anon_sym_set] = ACTIONS(5171), - [anon_sym_this] = ACTIONS(5171), - [anon_sym_super] = ACTIONS(5171), [anon_sym_STAR] = ACTIONS(5171), - [sym_label] = ACTIONS(5171), + [anon_sym_DASH_GT] = ACTIONS(5173), + [sym_label] = ACTIONS(5173), [anon_sym_in] = ACTIONS(5171), + [anon_sym_while] = ACTIONS(5171), [anon_sym_DOT_DOT] = ACTIONS(5173), [anon_sym_QMARK_COLON] = ACTIONS(5173), [anon_sym_AMP_AMP] = ACTIONS(5173), [anon_sym_PIPE_PIPE] = ACTIONS(5173), - [anon_sym_null] = ACTIONS(5171), - [anon_sym_if] = ACTIONS(5171), [anon_sym_else] = ACTIONS(5171), - [anon_sym_when] = ACTIONS(5171), - [anon_sym_try] = ACTIONS(5171), - [anon_sym_throw] = ACTIONS(5171), - [anon_sym_return] = ACTIONS(5171), - [anon_sym_continue] = ACTIONS(5171), - [anon_sym_break] = ACTIONS(5171), [anon_sym_COLON_COLON] = ACTIONS(5173), [anon_sym_PLUS_EQ] = ACTIONS(5173), [anon_sym_DASH_EQ] = ACTIONS(5173), @@ -404904,322 +402560,1650 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(5173), [anon_sym_PLUS_PLUS] = ACTIONS(5173), [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_BANG] = ACTIONS(5171), [anon_sym_BANG_BANG] = ACTIONS(5173), + [anon_sym_suspend] = ACTIONS(5171), + [anon_sym_sealed] = ACTIONS(5171), + [anon_sym_annotation] = ACTIONS(5171), [anon_sym_data] = ACTIONS(5171), [anon_sym_inner] = ACTIONS(5171), [anon_sym_value] = ACTIONS(5171), + [anon_sym_override] = ACTIONS(5171), + [anon_sym_lateinit] = ACTIONS(5171), + [anon_sym_public] = ACTIONS(5171), + [anon_sym_private] = ACTIONS(5171), + [anon_sym_internal] = ACTIONS(5171), + [anon_sym_protected] = ACTIONS(5171), + [anon_sym_tailrec] = ACTIONS(5171), + [anon_sym_operator] = ACTIONS(5171), + [anon_sym_infix] = ACTIONS(5171), + [anon_sym_inline] = ACTIONS(5171), + [anon_sym_external] = ACTIONS(5171), + [sym_property_modifier] = ACTIONS(5171), + [anon_sym_abstract] = ACTIONS(5171), + [anon_sym_final] = ACTIONS(5171), + [anon_sym_open] = ACTIONS(5171), + [anon_sym_vararg] = ACTIONS(5171), + [anon_sym_noinline] = ACTIONS(5171), + [anon_sym_crossinline] = ACTIONS(5171), [anon_sym_expect] = ACTIONS(5171), [anon_sym_actual] = ACTIONS(5171), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5173), - [anon_sym_continue_AT] = ACTIONS(5173), - [anon_sym_break_AT] = ACTIONS(5173), - [anon_sym_this_AT] = ACTIONS(5173), - [anon_sym_super_AT] = ACTIONS(5173), - [sym_real_literal] = ACTIONS(5173), - [sym_integer_literal] = ACTIONS(5171), - [sym_hex_literal] = ACTIONS(5173), - [sym_bin_literal] = ACTIONS(5173), - [anon_sym_true] = ACTIONS(5171), - [anon_sym_false] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5173), [sym__backtick_identifier] = ACTIONS(5173), - [sym__automatic_semicolon] = ACTIONS(5173), [sym_safe_nav] = ACTIONS(5173), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5173), + }, + [3482] = { + [sym__alpha_identifier] = ACTIONS(4782), + [anon_sym_AT] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4784), + [anon_sym_RBRACK] = ACTIONS(4784), + [anon_sym_as] = ACTIONS(4782), + [anon_sym_EQ] = ACTIONS(4782), + [anon_sym_LBRACE] = ACTIONS(4784), + [anon_sym_RBRACE] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4784), + [anon_sym_COMMA] = ACTIONS(4784), + [anon_sym_RPAREN] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4782), + [anon_sym_where] = ACTIONS(4782), + [anon_sym_DOT] = ACTIONS(4782), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_get] = ACTIONS(4782), + [anon_sym_set] = ACTIONS(4782), + [anon_sym_STAR] = ACTIONS(4782), + [anon_sym_DASH_GT] = ACTIONS(4784), + [sym_label] = ACTIONS(4784), + [anon_sym_in] = ACTIONS(4782), + [anon_sym_while] = ACTIONS(4782), + [anon_sym_DOT_DOT] = ACTIONS(4784), + [anon_sym_QMARK_COLON] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_else] = ACTIONS(4782), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_PLUS_EQ] = ACTIONS(4784), + [anon_sym_DASH_EQ] = ACTIONS(4784), + [anon_sym_STAR_EQ] = ACTIONS(4784), + [anon_sym_SLASH_EQ] = ACTIONS(4784), + [anon_sym_PERCENT_EQ] = ACTIONS(4784), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4784), + [anon_sym_LT_EQ] = ACTIONS(4784), + [anon_sym_GT_EQ] = ACTIONS(4784), + [anon_sym_BANGin] = ACTIONS(4784), + [anon_sym_is] = ACTIONS(4782), + [anon_sym_BANGis] = ACTIONS(4784), + [anon_sym_PLUS] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4782), + [anon_sym_SLASH] = ACTIONS(4782), + [anon_sym_PERCENT] = ACTIONS(4782), + [anon_sym_as_QMARK] = ACTIONS(4784), + [anon_sym_PLUS_PLUS] = ACTIONS(4784), + [anon_sym_DASH_DASH] = ACTIONS(4784), + [anon_sym_BANG_BANG] = ACTIONS(4784), + [anon_sym_suspend] = ACTIONS(4782), + [anon_sym_sealed] = ACTIONS(4782), + [anon_sym_annotation] = ACTIONS(4782), + [anon_sym_data] = ACTIONS(4782), + [anon_sym_inner] = ACTIONS(4782), + [anon_sym_value] = ACTIONS(4782), + [anon_sym_override] = ACTIONS(4782), + [anon_sym_lateinit] = ACTIONS(4782), + [anon_sym_public] = ACTIONS(4782), + [anon_sym_private] = ACTIONS(4782), + [anon_sym_internal] = ACTIONS(4782), + [anon_sym_protected] = ACTIONS(4782), + [anon_sym_tailrec] = ACTIONS(4782), + [anon_sym_operator] = ACTIONS(4782), + [anon_sym_infix] = ACTIONS(4782), + [anon_sym_inline] = ACTIONS(4782), + [anon_sym_external] = ACTIONS(4782), + [sym_property_modifier] = ACTIONS(4782), + [anon_sym_abstract] = ACTIONS(4782), + [anon_sym_final] = ACTIONS(4782), + [anon_sym_open] = ACTIONS(4782), + [anon_sym_vararg] = ACTIONS(4782), + [anon_sym_noinline] = ACTIONS(4782), + [anon_sym_crossinline] = ACTIONS(4782), + [anon_sym_expect] = ACTIONS(4782), + [anon_sym_actual] = ACTIONS(4782), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4784), + [sym_safe_nav] = ACTIONS(4784), + [sym_multiline_comment] = ACTIONS(3), }, [3483] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_fun] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(6948), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_object] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_this] = ACTIONS(5177), - [anon_sym_super] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [sym_label] = ACTIONS(5177), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_null] = ACTIONS(5177), - [anon_sym_if] = ACTIONS(5177), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_when] = ACTIONS(5177), - [anon_sym_try] = ACTIONS(5177), - [anon_sym_throw] = ACTIONS(5177), - [anon_sym_return] = ACTIONS(5177), - [anon_sym_continue] = ACTIONS(5177), - [anon_sym_break] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_PLUS_EQ] = ACTIONS(5179), - [anon_sym_DASH_EQ] = ACTIONS(5179), - [anon_sym_STAR_EQ] = ACTIONS(5179), - [anon_sym_SLASH_EQ] = ACTIONS(5179), - [anon_sym_PERCENT_EQ] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5177), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5179), - [anon_sym_continue_AT] = ACTIONS(5179), - [anon_sym_break_AT] = ACTIONS(5179), - [anon_sym_this_AT] = ACTIONS(5179), - [anon_sym_super_AT] = ACTIONS(5179), - [sym_real_literal] = ACTIONS(5179), - [sym_integer_literal] = ACTIONS(5177), - [sym_hex_literal] = ACTIONS(5179), - [sym_bin_literal] = ACTIONS(5179), - [anon_sym_true] = ACTIONS(5177), - [anon_sym_false] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5179), - [sym__backtick_identifier] = ACTIONS(5179), - [sym__automatic_semicolon] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5179), + [sym__alpha_identifier] = ACTIONS(5121), + [anon_sym_AT] = ACTIONS(5123), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_RBRACK] = ACTIONS(5123), + [anon_sym_as] = ACTIONS(5121), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_RBRACE] = ACTIONS(5123), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5121), + [anon_sym_GT] = ACTIONS(5121), + [anon_sym_where] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5121), + [anon_sym_SEMI] = ACTIONS(5123), + [anon_sym_get] = ACTIONS(5121), + [anon_sym_set] = ACTIONS(5121), + [anon_sym_STAR] = ACTIONS(5121), + [anon_sym_DASH_GT] = ACTIONS(5123), + [sym_label] = ACTIONS(5123), + [anon_sym_in] = ACTIONS(5121), + [anon_sym_while] = ACTIONS(5121), + [anon_sym_DOT_DOT] = ACTIONS(5123), + [anon_sym_QMARK_COLON] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_else] = ACTIONS(5121), + [anon_sym_COLON_COLON] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5123), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_BANGin] = ACTIONS(5123), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_BANGis] = ACTIONS(5123), + [anon_sym_PLUS] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5121), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_as_QMARK] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_BANG_BANG] = ACTIONS(5123), + [anon_sym_suspend] = ACTIONS(5121), + [anon_sym_sealed] = ACTIONS(5121), + [anon_sym_annotation] = ACTIONS(5121), + [anon_sym_data] = ACTIONS(5121), + [anon_sym_inner] = ACTIONS(5121), + [anon_sym_value] = ACTIONS(5121), + [anon_sym_override] = ACTIONS(5121), + [anon_sym_lateinit] = ACTIONS(5121), + [anon_sym_public] = ACTIONS(5121), + [anon_sym_private] = ACTIONS(5121), + [anon_sym_internal] = ACTIONS(5121), + [anon_sym_protected] = ACTIONS(5121), + [anon_sym_tailrec] = ACTIONS(5121), + [anon_sym_operator] = ACTIONS(5121), + [anon_sym_infix] = ACTIONS(5121), + [anon_sym_inline] = ACTIONS(5121), + [anon_sym_external] = ACTIONS(5121), + [sym_property_modifier] = ACTIONS(5121), + [anon_sym_abstract] = ACTIONS(5121), + [anon_sym_final] = ACTIONS(5121), + [anon_sym_open] = ACTIONS(5121), + [anon_sym_vararg] = ACTIONS(5121), + [anon_sym_noinline] = ACTIONS(5121), + [anon_sym_crossinline] = ACTIONS(5121), + [anon_sym_expect] = ACTIONS(5121), + [anon_sym_actual] = ACTIONS(5121), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5123), + [sym_safe_nav] = ACTIONS(5123), + [sym_multiline_comment] = ACTIONS(3), }, [3484] = { - [sym__alpha_identifier] = ACTIONS(5028), - [anon_sym_AT] = ACTIONS(5030), - [anon_sym_LBRACK] = ACTIONS(5030), - [anon_sym_RBRACK] = ACTIONS(5030), - [anon_sym_as] = ACTIONS(5028), - [anon_sym_EQ] = ACTIONS(5028), - [anon_sym_LBRACE] = ACTIONS(5030), - [anon_sym_RBRACE] = ACTIONS(5030), - [anon_sym_LPAREN] = ACTIONS(5030), - [anon_sym_COMMA] = ACTIONS(5030), - [anon_sym_RPAREN] = ACTIONS(5030), - [anon_sym_LT] = ACTIONS(5028), - [anon_sym_GT] = ACTIONS(5028), - [anon_sym_where] = ACTIONS(5028), - [anon_sym_DOT] = ACTIONS(5028), - [anon_sym_SEMI] = ACTIONS(5030), - [anon_sym_get] = ACTIONS(5028), - [anon_sym_set] = ACTIONS(5028), - [anon_sym_STAR] = ACTIONS(5028), - [anon_sym_DASH_GT] = ACTIONS(5030), - [sym_label] = ACTIONS(5030), - [anon_sym_in] = ACTIONS(5028), - [anon_sym_while] = ACTIONS(5028), - [anon_sym_DOT_DOT] = ACTIONS(5030), - [anon_sym_QMARK_COLON] = ACTIONS(5030), - [anon_sym_AMP_AMP] = ACTIONS(5030), - [anon_sym_PIPE_PIPE] = ACTIONS(5030), - [anon_sym_else] = ACTIONS(5028), - [anon_sym_COLON_COLON] = ACTIONS(5030), - [anon_sym_PLUS_EQ] = ACTIONS(5030), - [anon_sym_DASH_EQ] = ACTIONS(5030), - [anon_sym_STAR_EQ] = ACTIONS(5030), - [anon_sym_SLASH_EQ] = ACTIONS(5030), - [anon_sym_PERCENT_EQ] = ACTIONS(5030), - [anon_sym_BANG_EQ] = ACTIONS(5028), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5030), - [anon_sym_EQ_EQ] = ACTIONS(5028), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5030), - [anon_sym_LT_EQ] = ACTIONS(5030), - [anon_sym_GT_EQ] = ACTIONS(5030), - [anon_sym_BANGin] = ACTIONS(5030), - [anon_sym_is] = ACTIONS(5028), - [anon_sym_BANGis] = ACTIONS(5030), - [anon_sym_PLUS] = ACTIONS(5028), - [anon_sym_DASH] = ACTIONS(5028), - [anon_sym_SLASH] = ACTIONS(5028), - [anon_sym_PERCENT] = ACTIONS(5028), - [anon_sym_as_QMARK] = ACTIONS(5030), - [anon_sym_PLUS_PLUS] = ACTIONS(5030), - [anon_sym_DASH_DASH] = ACTIONS(5030), - [anon_sym_BANG_BANG] = ACTIONS(5030), - [anon_sym_suspend] = ACTIONS(5028), - [anon_sym_sealed] = ACTIONS(5028), - [anon_sym_annotation] = ACTIONS(5028), - [anon_sym_data] = ACTIONS(5028), - [anon_sym_inner] = ACTIONS(5028), - [anon_sym_value] = ACTIONS(5028), - [anon_sym_override] = ACTIONS(5028), - [anon_sym_lateinit] = ACTIONS(5028), - [anon_sym_public] = ACTIONS(5028), - [anon_sym_private] = ACTIONS(5028), - [anon_sym_internal] = ACTIONS(5028), - [anon_sym_protected] = ACTIONS(5028), - [anon_sym_tailrec] = ACTIONS(5028), - [anon_sym_operator] = ACTIONS(5028), - [anon_sym_infix] = ACTIONS(5028), - [anon_sym_inline] = ACTIONS(5028), - [anon_sym_external] = ACTIONS(5028), - [sym_property_modifier] = ACTIONS(5028), - [anon_sym_abstract] = ACTIONS(5028), - [anon_sym_final] = ACTIONS(5028), - [anon_sym_open] = ACTIONS(5028), - [anon_sym_vararg] = ACTIONS(5028), - [anon_sym_noinline] = ACTIONS(5028), - [anon_sym_crossinline] = ACTIONS(5028), - [anon_sym_expect] = ACTIONS(5028), - [anon_sym_actual] = ACTIONS(5028), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5030), - [sym_safe_nav] = ACTIONS(5030), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4571), + [anon_sym_AT] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [anon_sym_EQ] = ACTIONS(4573), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_COMMA] = ACTIONS(4573), + [anon_sym_by] = ACTIONS(4571), + [anon_sym_where] = ACTIONS(4571), + [anon_sym_object] = ACTIONS(4571), + [anon_sym_fun] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_get] = ACTIONS(4571), + [anon_sym_set] = ACTIONS(4571), + [anon_sym_this] = ACTIONS(4571), + [anon_sym_super] = ACTIONS(4571), + [anon_sym_STAR] = ACTIONS(4573), + [sym_label] = ACTIONS(4571), + [anon_sym_in] = ACTIONS(4571), + [anon_sym_null] = ACTIONS(4571), + [anon_sym_if] = ACTIONS(4571), + [anon_sym_else] = ACTIONS(4571), + [anon_sym_when] = ACTIONS(4571), + [anon_sym_try] = ACTIONS(4571), + [anon_sym_throw] = ACTIONS(4571), + [anon_sym_return] = ACTIONS(4571), + [anon_sym_continue] = ACTIONS(4571), + [anon_sym_break] = ACTIONS(4571), + [anon_sym_COLON_COLON] = ACTIONS(4573), + [anon_sym_BANGin] = ACTIONS(4573), + [anon_sym_is] = ACTIONS(4571), + [anon_sym_BANGis] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_PLUS_PLUS] = ACTIONS(4573), + [anon_sym_DASH_DASH] = ACTIONS(4573), + [anon_sym_BANG] = ACTIONS(4571), + [anon_sym_suspend] = ACTIONS(4571), + [anon_sym_sealed] = ACTIONS(4571), + [anon_sym_annotation] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(4571), + [anon_sym_inner] = ACTIONS(4571), + [anon_sym_value] = ACTIONS(4571), + [anon_sym_override] = ACTIONS(4571), + [anon_sym_lateinit] = ACTIONS(4571), + [anon_sym_public] = ACTIONS(4571), + [anon_sym_private] = ACTIONS(4571), + [anon_sym_internal] = ACTIONS(4571), + [anon_sym_protected] = ACTIONS(4571), + [anon_sym_tailrec] = ACTIONS(4571), + [anon_sym_operator] = ACTIONS(4571), + [anon_sym_infix] = ACTIONS(4571), + [anon_sym_inline] = ACTIONS(4571), + [anon_sym_external] = ACTIONS(4571), + [sym_property_modifier] = ACTIONS(4571), + [anon_sym_abstract] = ACTIONS(4571), + [anon_sym_final] = ACTIONS(4571), + [anon_sym_open] = ACTIONS(4571), + [anon_sym_vararg] = ACTIONS(4571), + [anon_sym_noinline] = ACTIONS(4571), + [anon_sym_crossinline] = ACTIONS(4571), + [anon_sym_expect] = ACTIONS(4571), + [anon_sym_actual] = ACTIONS(4571), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4573), + [anon_sym_continue_AT] = ACTIONS(4573), + [anon_sym_break_AT] = ACTIONS(4573), + [anon_sym_this_AT] = ACTIONS(4573), + [anon_sym_super_AT] = ACTIONS(4573), + [sym_real_literal] = ACTIONS(4573), + [sym_integer_literal] = ACTIONS(4571), + [sym_hex_literal] = ACTIONS(4573), + [sym_bin_literal] = ACTIONS(4573), + [anon_sym_true] = ACTIONS(4571), + [anon_sym_false] = ACTIONS(4571), + [anon_sym_SQUOTE] = ACTIONS(4573), + [sym__backtick_identifier] = ACTIONS(4573), + [sym__automatic_semicolon] = ACTIONS(4573), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4573), }, [3485] = { - [sym__alpha_identifier] = ACTIONS(5057), - [anon_sym_AT] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(5057), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_where] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_get] = ACTIONS(5057), - [anon_sym_set] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_DASH_GT] = ACTIONS(5059), - [sym_label] = ACTIONS(5059), - [anon_sym_in] = ACTIONS(5057), - [anon_sym_while] = ACTIONS(5057), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_QMARK_COLON] = ACTIONS(5059), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_else] = ACTIONS(5057), - [anon_sym_COLON_COLON] = ACTIONS(5059), - [anon_sym_PLUS_EQ] = ACTIONS(5059), - [anon_sym_DASH_EQ] = ACTIONS(5059), - [anon_sym_STAR_EQ] = ACTIONS(5059), - [anon_sym_SLASH_EQ] = ACTIONS(5059), - [anon_sym_PERCENT_EQ] = ACTIONS(5059), - [anon_sym_BANG_EQ] = ACTIONS(5057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5059), - [anon_sym_EQ_EQ] = ACTIONS(5057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5059), - [anon_sym_LT_EQ] = ACTIONS(5059), - [anon_sym_GT_EQ] = ACTIONS(5059), - [anon_sym_BANGin] = ACTIONS(5059), - [anon_sym_is] = ACTIONS(5057), - [anon_sym_BANGis] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_PERCENT] = ACTIONS(5057), - [anon_sym_as_QMARK] = ACTIONS(5059), - [anon_sym_PLUS_PLUS] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5059), - [anon_sym_BANG_BANG] = ACTIONS(5059), - [anon_sym_suspend] = ACTIONS(5057), - [anon_sym_sealed] = ACTIONS(5057), - [anon_sym_annotation] = ACTIONS(5057), - [anon_sym_data] = ACTIONS(5057), - [anon_sym_inner] = ACTIONS(5057), - [anon_sym_value] = ACTIONS(5057), - [anon_sym_override] = ACTIONS(5057), - [anon_sym_lateinit] = ACTIONS(5057), - [anon_sym_public] = ACTIONS(5057), - [anon_sym_private] = ACTIONS(5057), - [anon_sym_internal] = ACTIONS(5057), - [anon_sym_protected] = ACTIONS(5057), - [anon_sym_tailrec] = ACTIONS(5057), - [anon_sym_operator] = ACTIONS(5057), - [anon_sym_infix] = ACTIONS(5057), - [anon_sym_inline] = ACTIONS(5057), - [anon_sym_external] = ACTIONS(5057), - [sym_property_modifier] = ACTIONS(5057), - [anon_sym_abstract] = ACTIONS(5057), - [anon_sym_final] = ACTIONS(5057), - [anon_sym_open] = ACTIONS(5057), - [anon_sym_vararg] = ACTIONS(5057), - [anon_sym_noinline] = ACTIONS(5057), - [anon_sym_crossinline] = ACTIONS(5057), - [anon_sym_expect] = ACTIONS(5057), - [anon_sym_actual] = ACTIONS(5057), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5059), - [sym_safe_nav] = ACTIONS(5059), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4030), + [anon_sym_RBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4030), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_while] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4030), + [anon_sym_PLUS_EQ] = ACTIONS(4030), + [anon_sym_DASH_EQ] = ACTIONS(4030), + [anon_sym_STAR_EQ] = ACTIONS(4030), + [anon_sym_SLASH_EQ] = ACTIONS(4030), + [anon_sym_PERCENT_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4030), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4030), [sym_multiline_comment] = ACTIONS(3), }, [3486] = { - [sym_function_body] = STATE(3245), - [sym__block] = STATE(3335), + [sym__alpha_identifier] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4681), + [anon_sym_LBRACK] = ACTIONS(4681), + [anon_sym_EQ] = ACTIONS(4681), + [anon_sym_LBRACE] = ACTIONS(4681), + [anon_sym_RBRACE] = ACTIONS(4681), + [anon_sym_LPAREN] = ACTIONS(4681), + [anon_sym_COMMA] = ACTIONS(4681), + [anon_sym_by] = ACTIONS(4678), + [anon_sym_where] = ACTIONS(4678), + [anon_sym_object] = ACTIONS(4678), + [anon_sym_fun] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4681), + [anon_sym_get] = ACTIONS(4678), + [anon_sym_set] = ACTIONS(4678), + [anon_sym_this] = ACTIONS(4678), + [anon_sym_super] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4681), + [sym_label] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4678), + [anon_sym_null] = ACTIONS(4678), + [anon_sym_if] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_when] = ACTIONS(4678), + [anon_sym_try] = ACTIONS(4678), + [anon_sym_throw] = ACTIONS(4678), + [anon_sym_return] = ACTIONS(4678), + [anon_sym_continue] = ACTIONS(4678), + [anon_sym_break] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4681), + [anon_sym_BANGin] = ACTIONS(4681), + [anon_sym_is] = ACTIONS(4678), + [anon_sym_BANGis] = ACTIONS(4681), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_PLUS_PLUS] = ACTIONS(4681), + [anon_sym_DASH_DASH] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(4678), + [anon_sym_suspend] = ACTIONS(4678), + [anon_sym_sealed] = ACTIONS(4678), + [anon_sym_annotation] = ACTIONS(4678), + [anon_sym_data] = ACTIONS(4678), + [anon_sym_inner] = ACTIONS(4678), + [anon_sym_value] = ACTIONS(4678), + [anon_sym_override] = ACTIONS(4678), + [anon_sym_lateinit] = ACTIONS(4678), + [anon_sym_public] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4678), + [anon_sym_internal] = ACTIONS(4678), + [anon_sym_protected] = ACTIONS(4678), + [anon_sym_tailrec] = ACTIONS(4678), + [anon_sym_operator] = ACTIONS(4678), + [anon_sym_infix] = ACTIONS(4678), + [anon_sym_inline] = ACTIONS(4678), + [anon_sym_external] = ACTIONS(4678), + [sym_property_modifier] = ACTIONS(4678), + [anon_sym_abstract] = ACTIONS(4678), + [anon_sym_final] = ACTIONS(4678), + [anon_sym_open] = ACTIONS(4678), + [anon_sym_vararg] = ACTIONS(4678), + [anon_sym_noinline] = ACTIONS(4678), + [anon_sym_crossinline] = ACTIONS(4678), + [anon_sym_expect] = ACTIONS(4678), + [anon_sym_actual] = ACTIONS(4678), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4681), + [anon_sym_continue_AT] = ACTIONS(4681), + [anon_sym_break_AT] = ACTIONS(4681), + [anon_sym_this_AT] = ACTIONS(4681), + [anon_sym_super_AT] = ACTIONS(4681), + [sym_real_literal] = ACTIONS(4681), + [sym_integer_literal] = ACTIONS(4678), + [sym_hex_literal] = ACTIONS(4681), + [sym_bin_literal] = ACTIONS(4681), + [anon_sym_true] = ACTIONS(4678), + [anon_sym_false] = ACTIONS(4678), + [anon_sym_SQUOTE] = ACTIONS(4681), + [sym__backtick_identifier] = ACTIONS(4681), + [sym__automatic_semicolon] = ACTIONS(4681), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4681), + }, + [3487] = { + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_as] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(123), + [anon_sym_DASH_GT] = ACTIONS(121), + [sym_label] = ACTIONS(121), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_else] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(121), + [anon_sym_DASH_DASH] = ACTIONS(121), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(123), + [anon_sym_sealed] = ACTIONS(123), + [anon_sym_annotation] = ACTIONS(123), + [anon_sym_data] = ACTIONS(123), + [anon_sym_inner] = ACTIONS(123), + [anon_sym_value] = ACTIONS(123), + [anon_sym_override] = ACTIONS(123), + [anon_sym_lateinit] = ACTIONS(123), + [anon_sym_public] = ACTIONS(123), + [anon_sym_private] = ACTIONS(123), + [anon_sym_internal] = ACTIONS(123), + [anon_sym_protected] = ACTIONS(123), + [anon_sym_tailrec] = ACTIONS(123), + [anon_sym_operator] = ACTIONS(123), + [anon_sym_infix] = ACTIONS(123), + [anon_sym_inline] = ACTIONS(123), + [anon_sym_external] = ACTIONS(123), + [sym_property_modifier] = ACTIONS(123), + [anon_sym_abstract] = ACTIONS(123), + [anon_sym_final] = ACTIONS(123), + [anon_sym_open] = ACTIONS(123), + [anon_sym_vararg] = ACTIONS(123), + [anon_sym_noinline] = ACTIONS(123), + [anon_sym_crossinline] = ACTIONS(123), + [anon_sym_expect] = ACTIONS(123), + [anon_sym_actual] = ACTIONS(123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + }, + [3488] = { + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_RBRACK] = ACTIONS(4776), + [anon_sym_as] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4776), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_COMMA] = ACTIONS(4776), + [anon_sym_RPAREN] = ACTIONS(4776), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_where] = ACTIONS(4774), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4776), + [anon_sym_get] = ACTIONS(4774), + [anon_sym_set] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [anon_sym_DASH_GT] = ACTIONS(4776), + [sym_label] = ACTIONS(4776), + [anon_sym_in] = ACTIONS(4774), + [anon_sym_while] = ACTIONS(4774), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_QMARK_COLON] = ACTIONS(4776), + [anon_sym_AMP_AMP] = ACTIONS(4776), + [anon_sym_PIPE_PIPE] = ACTIONS(4776), + [anon_sym_else] = ACTIONS(4774), + [anon_sym_COLON_COLON] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4776), + [anon_sym_DASH_EQ] = ACTIONS(4776), + [anon_sym_STAR_EQ] = ACTIONS(4776), + [anon_sym_SLASH_EQ] = ACTIONS(4776), + [anon_sym_PERCENT_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4776), + [anon_sym_BANGin] = ACTIONS(4776), + [anon_sym_is] = ACTIONS(4774), + [anon_sym_BANGis] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_as_QMARK] = ACTIONS(4776), + [anon_sym_PLUS_PLUS] = ACTIONS(4776), + [anon_sym_DASH_DASH] = ACTIONS(4776), + [anon_sym_BANG_BANG] = ACTIONS(4776), + [anon_sym_suspend] = ACTIONS(4774), + [anon_sym_sealed] = ACTIONS(4774), + [anon_sym_annotation] = ACTIONS(4774), + [anon_sym_data] = ACTIONS(4774), + [anon_sym_inner] = ACTIONS(4774), + [anon_sym_value] = ACTIONS(4774), + [anon_sym_override] = ACTIONS(4774), + [anon_sym_lateinit] = ACTIONS(4774), + [anon_sym_public] = ACTIONS(4774), + [anon_sym_private] = ACTIONS(4774), + [anon_sym_internal] = ACTIONS(4774), + [anon_sym_protected] = ACTIONS(4774), + [anon_sym_tailrec] = ACTIONS(4774), + [anon_sym_operator] = ACTIONS(4774), + [anon_sym_infix] = ACTIONS(4774), + [anon_sym_inline] = ACTIONS(4774), + [anon_sym_external] = ACTIONS(4774), + [sym_property_modifier] = ACTIONS(4774), + [anon_sym_abstract] = ACTIONS(4774), + [anon_sym_final] = ACTIONS(4774), + [anon_sym_open] = ACTIONS(4774), + [anon_sym_vararg] = ACTIONS(4774), + [anon_sym_noinline] = ACTIONS(4774), + [anon_sym_crossinline] = ACTIONS(4774), + [anon_sym_expect] = ACTIONS(4774), + [anon_sym_actual] = ACTIONS(4774), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4776), + [sym_safe_nav] = ACTIONS(4776), + [sym_multiline_comment] = ACTIONS(3), + }, + [3489] = { + [sym__alpha_identifier] = ACTIONS(4786), + [anon_sym_AT] = ACTIONS(4788), + [anon_sym_LBRACK] = ACTIONS(4788), + [anon_sym_RBRACK] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4786), + [anon_sym_EQ] = ACTIONS(4786), + [anon_sym_LBRACE] = ACTIONS(4788), + [anon_sym_RBRACE] = ACTIONS(4788), + [anon_sym_LPAREN] = ACTIONS(4788), + [anon_sym_COMMA] = ACTIONS(4788), + [anon_sym_RPAREN] = ACTIONS(4788), + [anon_sym_LT] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4786), + [anon_sym_where] = ACTIONS(4786), + [anon_sym_DOT] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4788), + [anon_sym_get] = ACTIONS(4786), + [anon_sym_set] = ACTIONS(4786), + [anon_sym_STAR] = ACTIONS(4786), + [anon_sym_DASH_GT] = ACTIONS(4788), + [sym_label] = ACTIONS(4788), + [anon_sym_in] = ACTIONS(4786), + [anon_sym_while] = ACTIONS(4786), + [anon_sym_DOT_DOT] = ACTIONS(4788), + [anon_sym_QMARK_COLON] = ACTIONS(4788), + [anon_sym_AMP_AMP] = ACTIONS(4788), + [anon_sym_PIPE_PIPE] = ACTIONS(4788), + [anon_sym_else] = ACTIONS(4786), + [anon_sym_COLON_COLON] = ACTIONS(4788), + [anon_sym_PLUS_EQ] = ACTIONS(4788), + [anon_sym_DASH_EQ] = ACTIONS(4788), + [anon_sym_STAR_EQ] = ACTIONS(4788), + [anon_sym_SLASH_EQ] = ACTIONS(4788), + [anon_sym_PERCENT_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ] = ACTIONS(4786), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4788), + [anon_sym_LT_EQ] = ACTIONS(4788), + [anon_sym_GT_EQ] = ACTIONS(4788), + [anon_sym_BANGin] = ACTIONS(4788), + [anon_sym_is] = ACTIONS(4786), + [anon_sym_BANGis] = ACTIONS(4788), + [anon_sym_PLUS] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4786), + [anon_sym_SLASH] = ACTIONS(4786), + [anon_sym_PERCENT] = ACTIONS(4786), + [anon_sym_as_QMARK] = ACTIONS(4788), + [anon_sym_PLUS_PLUS] = ACTIONS(4788), + [anon_sym_DASH_DASH] = ACTIONS(4788), + [anon_sym_BANG_BANG] = ACTIONS(4788), + [anon_sym_suspend] = ACTIONS(4786), + [anon_sym_sealed] = ACTIONS(4786), + [anon_sym_annotation] = ACTIONS(4786), + [anon_sym_data] = ACTIONS(4786), + [anon_sym_inner] = ACTIONS(4786), + [anon_sym_value] = ACTIONS(4786), + [anon_sym_override] = ACTIONS(4786), + [anon_sym_lateinit] = ACTIONS(4786), + [anon_sym_public] = ACTIONS(4786), + [anon_sym_private] = ACTIONS(4786), + [anon_sym_internal] = ACTIONS(4786), + [anon_sym_protected] = ACTIONS(4786), + [anon_sym_tailrec] = ACTIONS(4786), + [anon_sym_operator] = ACTIONS(4786), + [anon_sym_infix] = ACTIONS(4786), + [anon_sym_inline] = ACTIONS(4786), + [anon_sym_external] = ACTIONS(4786), + [sym_property_modifier] = ACTIONS(4786), + [anon_sym_abstract] = ACTIONS(4786), + [anon_sym_final] = ACTIONS(4786), + [anon_sym_open] = ACTIONS(4786), + [anon_sym_vararg] = ACTIONS(4786), + [anon_sym_noinline] = ACTIONS(4786), + [anon_sym_crossinline] = ACTIONS(4786), + [anon_sym_expect] = ACTIONS(4786), + [anon_sym_actual] = ACTIONS(4786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4788), + [sym_safe_nav] = ACTIONS(4788), + [sym_multiline_comment] = ACTIONS(3), + }, + [3490] = { + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4183), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [anon_sym_DASH_GT] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, + [3491] = { + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_RBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_RPAREN] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_DASH_GT] = ACTIONS(4096), + [sym_label] = ACTIONS(4096), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_while] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_suspend] = ACTIONS(4094), + [anon_sym_sealed] = ACTIONS(4094), + [anon_sym_annotation] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_override] = ACTIONS(4094), + [anon_sym_lateinit] = ACTIONS(4094), + [anon_sym_public] = ACTIONS(4094), + [anon_sym_private] = ACTIONS(4094), + [anon_sym_internal] = ACTIONS(4094), + [anon_sym_protected] = ACTIONS(4094), + [anon_sym_tailrec] = ACTIONS(4094), + [anon_sym_operator] = ACTIONS(4094), + [anon_sym_infix] = ACTIONS(4094), + [anon_sym_inline] = ACTIONS(4094), + [anon_sym_external] = ACTIONS(4094), + [sym_property_modifier] = ACTIONS(4094), + [anon_sym_abstract] = ACTIONS(4094), + [anon_sym_final] = ACTIONS(4094), + [anon_sym_open] = ACTIONS(4094), + [anon_sym_vararg] = ACTIONS(4094), + [anon_sym_noinline] = ACTIONS(4094), + [anon_sym_crossinline] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), + [sym_multiline_comment] = ACTIONS(3), + }, + [3492] = { + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(1732), + [anon_sym_sealed] = ACTIONS(1732), + [anon_sym_annotation] = ACTIONS(1732), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(1732), + [anon_sym_lateinit] = ACTIONS(1732), + [anon_sym_public] = ACTIONS(1732), + [anon_sym_private] = ACTIONS(1732), + [anon_sym_internal] = ACTIONS(1732), + [anon_sym_protected] = ACTIONS(1732), + [anon_sym_tailrec] = ACTIONS(1732), + [anon_sym_operator] = ACTIONS(1732), + [anon_sym_infix] = ACTIONS(1732), + [anon_sym_inline] = ACTIONS(1732), + [anon_sym_external] = ACTIONS(1732), + [sym_property_modifier] = ACTIONS(1732), + [anon_sym_abstract] = ACTIONS(1732), + [anon_sym_final] = ACTIONS(1732), + [anon_sym_open] = ACTIONS(1732), + [anon_sym_vararg] = ACTIONS(1732), + [anon_sym_noinline] = ACTIONS(1732), + [anon_sym_crossinline] = ACTIONS(1732), + [anon_sym_expect] = ACTIONS(1732), + [anon_sym_actual] = ACTIONS(1732), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + }, + [3493] = { + [sym__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_RBRACK] = ACTIONS(5079), + [anon_sym_as] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_RPAREN] = ACTIONS(5079), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_where] = ACTIONS(5077), + [anon_sym_DOT] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5079), + [anon_sym_get] = ACTIONS(5077), + [anon_sym_set] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [anon_sym_DASH_GT] = ACTIONS(5079), + [sym_label] = ACTIONS(5079), + [anon_sym_in] = ACTIONS(5077), + [anon_sym_while] = ACTIONS(5077), + [anon_sym_DOT_DOT] = ACTIONS(5079), + [anon_sym_QMARK_COLON] = ACTIONS(5079), + [anon_sym_AMP_AMP] = ACTIONS(5079), + [anon_sym_PIPE_PIPE] = ACTIONS(5079), + [anon_sym_else] = ACTIONS(5077), + [anon_sym_COLON_COLON] = ACTIONS(5079), + [anon_sym_PLUS_EQ] = ACTIONS(5079), + [anon_sym_DASH_EQ] = ACTIONS(5079), + [anon_sym_STAR_EQ] = ACTIONS(5079), + [anon_sym_SLASH_EQ] = ACTIONS(5079), + [anon_sym_PERCENT_EQ] = ACTIONS(5079), + [anon_sym_BANG_EQ] = ACTIONS(5077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5079), + [anon_sym_EQ_EQ] = ACTIONS(5077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5079), + [anon_sym_LT_EQ] = ACTIONS(5079), + [anon_sym_GT_EQ] = ACTIONS(5079), + [anon_sym_BANGin] = ACTIONS(5079), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_BANGis] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_as_QMARK] = ACTIONS(5079), + [anon_sym_PLUS_PLUS] = ACTIONS(5079), + [anon_sym_DASH_DASH] = ACTIONS(5079), + [anon_sym_BANG_BANG] = ACTIONS(5079), + [anon_sym_suspend] = ACTIONS(5077), + [anon_sym_sealed] = ACTIONS(5077), + [anon_sym_annotation] = ACTIONS(5077), + [anon_sym_data] = ACTIONS(5077), + [anon_sym_inner] = ACTIONS(5077), + [anon_sym_value] = ACTIONS(5077), + [anon_sym_override] = ACTIONS(5077), + [anon_sym_lateinit] = ACTIONS(5077), + [anon_sym_public] = ACTIONS(5077), + [anon_sym_private] = ACTIONS(5077), + [anon_sym_internal] = ACTIONS(5077), + [anon_sym_protected] = ACTIONS(5077), + [anon_sym_tailrec] = ACTIONS(5077), + [anon_sym_operator] = ACTIONS(5077), + [anon_sym_infix] = ACTIONS(5077), + [anon_sym_inline] = ACTIONS(5077), + [anon_sym_external] = ACTIONS(5077), + [sym_property_modifier] = ACTIONS(5077), + [anon_sym_abstract] = ACTIONS(5077), + [anon_sym_final] = ACTIONS(5077), + [anon_sym_open] = ACTIONS(5077), + [anon_sym_vararg] = ACTIONS(5077), + [anon_sym_noinline] = ACTIONS(5077), + [anon_sym_crossinline] = ACTIONS(5077), + [anon_sym_expect] = ACTIONS(5077), + [anon_sym_actual] = ACTIONS(5077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5079), + [sym_safe_nav] = ACTIONS(5079), + [sym_multiline_comment] = ACTIONS(3), + }, + [3494] = { + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_while] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + }, + [3495] = { + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_RBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_DASH_GT] = ACTIONS(4646), + [sym_label] = ACTIONS(4646), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_while] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_suspend] = ACTIONS(4644), + [anon_sym_sealed] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4644), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_override] = ACTIONS(4644), + [anon_sym_lateinit] = ACTIONS(4644), + [anon_sym_public] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4644), + [anon_sym_internal] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4644), + [anon_sym_tailrec] = ACTIONS(4644), + [anon_sym_operator] = ACTIONS(4644), + [anon_sym_infix] = ACTIONS(4644), + [anon_sym_inline] = ACTIONS(4644), + [anon_sym_external] = ACTIONS(4644), + [sym_property_modifier] = ACTIONS(4644), + [anon_sym_abstract] = ACTIONS(4644), + [anon_sym_final] = ACTIONS(4644), + [anon_sym_open] = ACTIONS(4644), + [anon_sym_vararg] = ACTIONS(4644), + [anon_sym_noinline] = ACTIONS(4644), + [anon_sym_crossinline] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), + [sym_multiline_comment] = ACTIONS(3), + }, + [3496] = { + [sym__alpha_identifier] = ACTIONS(4790), + [anon_sym_AT] = ACTIONS(4792), + [anon_sym_LBRACK] = ACTIONS(4792), + [anon_sym_RBRACK] = ACTIONS(4792), + [anon_sym_as] = ACTIONS(4790), + [anon_sym_EQ] = ACTIONS(4790), + [anon_sym_LBRACE] = ACTIONS(4792), + [anon_sym_RBRACE] = ACTIONS(4792), + [anon_sym_LPAREN] = ACTIONS(4792), + [anon_sym_COMMA] = ACTIONS(4792), + [anon_sym_RPAREN] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4790), + [anon_sym_GT] = ACTIONS(4790), + [anon_sym_where] = ACTIONS(4790), + [anon_sym_DOT] = ACTIONS(4790), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_get] = ACTIONS(4790), + [anon_sym_set] = ACTIONS(4790), + [anon_sym_STAR] = ACTIONS(4790), + [anon_sym_DASH_GT] = ACTIONS(4792), + [sym_label] = ACTIONS(4792), + [anon_sym_in] = ACTIONS(4790), + [anon_sym_while] = ACTIONS(4790), + [anon_sym_DOT_DOT] = ACTIONS(4792), + [anon_sym_QMARK_COLON] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_else] = ACTIONS(4790), + [anon_sym_COLON_COLON] = ACTIONS(4792), + [anon_sym_PLUS_EQ] = ACTIONS(4792), + [anon_sym_DASH_EQ] = ACTIONS(4792), + [anon_sym_STAR_EQ] = ACTIONS(4792), + [anon_sym_SLASH_EQ] = ACTIONS(4792), + [anon_sym_PERCENT_EQ] = ACTIONS(4792), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4792), + [anon_sym_LT_EQ] = ACTIONS(4792), + [anon_sym_GT_EQ] = ACTIONS(4792), + [anon_sym_BANGin] = ACTIONS(4792), + [anon_sym_is] = ACTIONS(4790), + [anon_sym_BANGis] = ACTIONS(4792), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4790), + [anon_sym_SLASH] = ACTIONS(4790), + [anon_sym_PERCENT] = ACTIONS(4790), + [anon_sym_as_QMARK] = ACTIONS(4792), + [anon_sym_PLUS_PLUS] = ACTIONS(4792), + [anon_sym_DASH_DASH] = ACTIONS(4792), + [anon_sym_BANG_BANG] = ACTIONS(4792), + [anon_sym_suspend] = ACTIONS(4790), + [anon_sym_sealed] = ACTIONS(4790), + [anon_sym_annotation] = ACTIONS(4790), + [anon_sym_data] = ACTIONS(4790), + [anon_sym_inner] = ACTIONS(4790), + [anon_sym_value] = ACTIONS(4790), + [anon_sym_override] = ACTIONS(4790), + [anon_sym_lateinit] = ACTIONS(4790), + [anon_sym_public] = ACTIONS(4790), + [anon_sym_private] = ACTIONS(4790), + [anon_sym_internal] = ACTIONS(4790), + [anon_sym_protected] = ACTIONS(4790), + [anon_sym_tailrec] = ACTIONS(4790), + [anon_sym_operator] = ACTIONS(4790), + [anon_sym_infix] = ACTIONS(4790), + [anon_sym_inline] = ACTIONS(4790), + [anon_sym_external] = ACTIONS(4790), + [sym_property_modifier] = ACTIONS(4790), + [anon_sym_abstract] = ACTIONS(4790), + [anon_sym_final] = ACTIONS(4790), + [anon_sym_open] = ACTIONS(4790), + [anon_sym_vararg] = ACTIONS(4790), + [anon_sym_noinline] = ACTIONS(4790), + [anon_sym_crossinline] = ACTIONS(4790), + [anon_sym_expect] = ACTIONS(4790), + [anon_sym_actual] = ACTIONS(4790), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4792), + [sym_safe_nav] = ACTIONS(4792), + [sym_multiline_comment] = ACTIONS(3), + }, + [3497] = { + [sym__alpha_identifier] = ACTIONS(5117), + [anon_sym_AT] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [anon_sym_RBRACK] = ACTIONS(5119), + [anon_sym_as] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5119), + [anon_sym_RBRACE] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5119), + [anon_sym_COMMA] = ACTIONS(5119), + [anon_sym_RPAREN] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5117), + [anon_sym_GT] = ACTIONS(5117), + [anon_sym_where] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5117), + [anon_sym_SEMI] = ACTIONS(5119), + [anon_sym_get] = ACTIONS(5117), + [anon_sym_set] = ACTIONS(5117), + [anon_sym_STAR] = ACTIONS(5117), + [anon_sym_DASH_GT] = ACTIONS(5119), + [sym_label] = ACTIONS(5119), + [anon_sym_in] = ACTIONS(5117), + [anon_sym_while] = ACTIONS(5117), + [anon_sym_DOT_DOT] = ACTIONS(5119), + [anon_sym_QMARK_COLON] = ACTIONS(5119), + [anon_sym_AMP_AMP] = ACTIONS(5119), + [anon_sym_PIPE_PIPE] = ACTIONS(5119), + [anon_sym_else] = ACTIONS(5117), + [anon_sym_COLON_COLON] = ACTIONS(5119), + [anon_sym_PLUS_EQ] = ACTIONS(5119), + [anon_sym_DASH_EQ] = ACTIONS(5119), + [anon_sym_STAR_EQ] = ACTIONS(5119), + [anon_sym_SLASH_EQ] = ACTIONS(5119), + [anon_sym_PERCENT_EQ] = ACTIONS(5119), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5119), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5119), + [anon_sym_LT_EQ] = ACTIONS(5119), + [anon_sym_GT_EQ] = ACTIONS(5119), + [anon_sym_BANGin] = ACTIONS(5119), + [anon_sym_is] = ACTIONS(5117), + [anon_sym_BANGis] = ACTIONS(5119), + [anon_sym_PLUS] = ACTIONS(5117), + [anon_sym_DASH] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5117), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_as_QMARK] = ACTIONS(5119), + [anon_sym_PLUS_PLUS] = ACTIONS(5119), + [anon_sym_DASH_DASH] = ACTIONS(5119), + [anon_sym_BANG_BANG] = ACTIONS(5119), + [anon_sym_suspend] = ACTIONS(5117), + [anon_sym_sealed] = ACTIONS(5117), + [anon_sym_annotation] = ACTIONS(5117), + [anon_sym_data] = ACTIONS(5117), + [anon_sym_inner] = ACTIONS(5117), + [anon_sym_value] = ACTIONS(5117), + [anon_sym_override] = ACTIONS(5117), + [anon_sym_lateinit] = ACTIONS(5117), + [anon_sym_public] = ACTIONS(5117), + [anon_sym_private] = ACTIONS(5117), + [anon_sym_internal] = ACTIONS(5117), + [anon_sym_protected] = ACTIONS(5117), + [anon_sym_tailrec] = ACTIONS(5117), + [anon_sym_operator] = ACTIONS(5117), + [anon_sym_infix] = ACTIONS(5117), + [anon_sym_inline] = ACTIONS(5117), + [anon_sym_external] = ACTIONS(5117), + [sym_property_modifier] = ACTIONS(5117), + [anon_sym_abstract] = ACTIONS(5117), + [anon_sym_final] = ACTIONS(5117), + [anon_sym_open] = ACTIONS(5117), + [anon_sym_vararg] = ACTIONS(5117), + [anon_sym_noinline] = ACTIONS(5117), + [anon_sym_crossinline] = ACTIONS(5117), + [anon_sym_expect] = ACTIONS(5117), + [anon_sym_actual] = ACTIONS(5117), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5119), + [sym_safe_nav] = ACTIONS(5119), + [sym_multiline_comment] = ACTIONS(3), + }, + [3498] = { + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(1796), + [anon_sym_set] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(1796), + [anon_sym_sealed] = ACTIONS(1796), + [anon_sym_annotation] = ACTIONS(1796), + [anon_sym_data] = ACTIONS(1796), + [anon_sym_inner] = ACTIONS(1796), + [anon_sym_value] = ACTIONS(1796), + [anon_sym_override] = ACTIONS(1796), + [anon_sym_lateinit] = ACTIONS(1796), + [anon_sym_public] = ACTIONS(1796), + [anon_sym_private] = ACTIONS(1796), + [anon_sym_internal] = ACTIONS(1796), + [anon_sym_protected] = ACTIONS(1796), + [anon_sym_tailrec] = ACTIONS(1796), + [anon_sym_operator] = ACTIONS(1796), + [anon_sym_infix] = ACTIONS(1796), + [anon_sym_inline] = ACTIONS(1796), + [anon_sym_external] = ACTIONS(1796), + [sym_property_modifier] = ACTIONS(1796), + [anon_sym_abstract] = ACTIONS(1796), + [anon_sym_final] = ACTIONS(1796), + [anon_sym_open] = ACTIONS(1796), + [anon_sym_vararg] = ACTIONS(1796), + [anon_sym_noinline] = ACTIONS(1796), + [anon_sym_crossinline] = ACTIONS(1796), + [anon_sym_expect] = ACTIONS(1796), + [anon_sym_actual] = ACTIONS(1796), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [3499] = { + [sym__alpha_identifier] = ACTIONS(4794), + [anon_sym_AT] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_RBRACK] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_RBRACE] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4796), + [anon_sym_COMMA] = ACTIONS(4796), + [anon_sym_RPAREN] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4794), + [anon_sym_where] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_get] = ACTIONS(4794), + [anon_sym_set] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4794), + [anon_sym_DASH_GT] = ACTIONS(4796), + [sym_label] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4794), + [anon_sym_while] = ACTIONS(4794), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_QMARK_COLON] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(4794), + [anon_sym_COLON_COLON] = ACTIONS(4796), + [anon_sym_PLUS_EQ] = ACTIONS(4796), + [anon_sym_DASH_EQ] = ACTIONS(4796), + [anon_sym_STAR_EQ] = ACTIONS(4796), + [anon_sym_SLASH_EQ] = ACTIONS(4796), + [anon_sym_PERCENT_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4796), + [anon_sym_BANGin] = ACTIONS(4796), + [anon_sym_is] = ACTIONS(4794), + [anon_sym_BANGis] = ACTIONS(4796), + [anon_sym_PLUS] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_SLASH] = ACTIONS(4794), + [anon_sym_PERCENT] = ACTIONS(4794), + [anon_sym_as_QMARK] = ACTIONS(4796), + [anon_sym_PLUS_PLUS] = ACTIONS(4796), + [anon_sym_DASH_DASH] = ACTIONS(4796), + [anon_sym_BANG_BANG] = ACTIONS(4796), + [anon_sym_suspend] = ACTIONS(4794), + [anon_sym_sealed] = ACTIONS(4794), + [anon_sym_annotation] = ACTIONS(4794), + [anon_sym_data] = ACTIONS(4794), + [anon_sym_inner] = ACTIONS(4794), + [anon_sym_value] = ACTIONS(4794), + [anon_sym_override] = ACTIONS(4794), + [anon_sym_lateinit] = ACTIONS(4794), + [anon_sym_public] = ACTIONS(4794), + [anon_sym_private] = ACTIONS(4794), + [anon_sym_internal] = ACTIONS(4794), + [anon_sym_protected] = ACTIONS(4794), + [anon_sym_tailrec] = ACTIONS(4794), + [anon_sym_operator] = ACTIONS(4794), + [anon_sym_infix] = ACTIONS(4794), + [anon_sym_inline] = ACTIONS(4794), + [anon_sym_external] = ACTIONS(4794), + [sym_property_modifier] = ACTIONS(4794), + [anon_sym_abstract] = ACTIONS(4794), + [anon_sym_final] = ACTIONS(4794), + [anon_sym_open] = ACTIONS(4794), + [anon_sym_vararg] = ACTIONS(4794), + [anon_sym_noinline] = ACTIONS(4794), + [anon_sym_crossinline] = ACTIONS(4794), + [anon_sym_expect] = ACTIONS(4794), + [anon_sym_actual] = ACTIONS(4794), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4796), + [sym_safe_nav] = ACTIONS(4796), + [sym_multiline_comment] = ACTIONS(3), + }, + [3500] = { + [sym__alpha_identifier] = ACTIONS(4804), + [anon_sym_AT] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_RBRACK] = ACTIONS(4806), + [anon_sym_as] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4804), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4806), + [anon_sym_RPAREN] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_where] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4806), + [anon_sym_get] = ACTIONS(4804), + [anon_sym_set] = ACTIONS(4804), + [anon_sym_STAR] = ACTIONS(4804), + [anon_sym_DASH_GT] = ACTIONS(4806), + [sym_label] = ACTIONS(4806), + [anon_sym_in] = ACTIONS(4804), + [anon_sym_while] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4806), + [anon_sym_QMARK_COLON] = ACTIONS(4806), + [anon_sym_AMP_AMP] = ACTIONS(4806), + [anon_sym_PIPE_PIPE] = ACTIONS(4806), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_COLON_COLON] = ACTIONS(4806), + [anon_sym_PLUS_EQ] = ACTIONS(4806), + [anon_sym_DASH_EQ] = ACTIONS(4806), + [anon_sym_STAR_EQ] = ACTIONS(4806), + [anon_sym_SLASH_EQ] = ACTIONS(4806), + [anon_sym_PERCENT_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4806), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_BANGin] = ACTIONS(4806), + [anon_sym_is] = ACTIONS(4804), + [anon_sym_BANGis] = ACTIONS(4806), + [anon_sym_PLUS] = ACTIONS(4804), + [anon_sym_DASH] = ACTIONS(4804), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_PERCENT] = ACTIONS(4804), + [anon_sym_as_QMARK] = ACTIONS(4806), + [anon_sym_PLUS_PLUS] = ACTIONS(4806), + [anon_sym_DASH_DASH] = ACTIONS(4806), + [anon_sym_BANG_BANG] = ACTIONS(4806), + [anon_sym_suspend] = ACTIONS(4804), + [anon_sym_sealed] = ACTIONS(4804), + [anon_sym_annotation] = ACTIONS(4804), + [anon_sym_data] = ACTIONS(4804), + [anon_sym_inner] = ACTIONS(4804), + [anon_sym_value] = ACTIONS(4804), + [anon_sym_override] = ACTIONS(4804), + [anon_sym_lateinit] = ACTIONS(4804), + [anon_sym_public] = ACTIONS(4804), + [anon_sym_private] = ACTIONS(4804), + [anon_sym_internal] = ACTIONS(4804), + [anon_sym_protected] = ACTIONS(4804), + [anon_sym_tailrec] = ACTIONS(4804), + [anon_sym_operator] = ACTIONS(4804), + [anon_sym_infix] = ACTIONS(4804), + [anon_sym_inline] = ACTIONS(4804), + [anon_sym_external] = ACTIONS(4804), + [sym_property_modifier] = ACTIONS(4804), + [anon_sym_abstract] = ACTIONS(4804), + [anon_sym_final] = ACTIONS(4804), + [anon_sym_open] = ACTIONS(4804), + [anon_sym_vararg] = ACTIONS(4804), + [anon_sym_noinline] = ACTIONS(4804), + [anon_sym_crossinline] = ACTIONS(4804), + [anon_sym_expect] = ACTIONS(4804), + [anon_sym_actual] = ACTIONS(4804), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4806), + [sym_safe_nav] = ACTIONS(4806), + [sym_multiline_comment] = ACTIONS(3), + }, + [3501] = { [sym__alpha_identifier] = ACTIONS(4321), [anon_sym_AT] = ACTIONS(4323), - [anon_sym_COLON] = ACTIONS(6950), [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_RBRACK] = ACTIONS(4323), [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(6547), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), [anon_sym_RBRACE] = ACTIONS(4323), [anon_sym_LPAREN] = ACTIONS(4323), [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4323), [anon_sym_LT] = ACTIONS(4321), [anon_sym_GT] = ACTIONS(4321), [anon_sym_where] = ACTIONS(4321), - [anon_sym_object] = ACTIONS(4321), [anon_sym_DOT] = ACTIONS(4321), [anon_sym_SEMI] = ACTIONS(4323), [anon_sym_get] = ACTIONS(4321), [anon_sym_set] = ACTIONS(4321), - [anon_sym_this] = ACTIONS(4321), - [anon_sym_super] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4323), - [sym_label] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [anon_sym_DASH_GT] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), [anon_sym_in] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), [anon_sym_DOT_DOT] = ACTIONS(4323), [anon_sym_QMARK_COLON] = ACTIONS(4323), [anon_sym_AMP_AMP] = ACTIONS(4323), [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_null] = ACTIONS(4321), - [anon_sym_if] = ACTIONS(4321), [anon_sym_else] = ACTIONS(4321), - [anon_sym_when] = ACTIONS(4321), - [anon_sym_try] = ACTIONS(4321), - [anon_sym_throw] = ACTIONS(4321), - [anon_sym_return] = ACTIONS(4321), - [anon_sym_continue] = ACTIONS(4321), - [anon_sym_break] = ACTIONS(4321), [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), [anon_sym_BANG_EQ] = ACTIONS(4321), [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), [anon_sym_EQ_EQ] = ACTIONS(4321), @@ -405232,701 +404216,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4321), [anon_sym_DASH] = ACTIONS(4321), [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_PERCENT] = ACTIONS(4321), [anon_sym_as_QMARK] = ACTIONS(4323), [anon_sym_PLUS_PLUS] = ACTIONS(4323), [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG] = ACTIONS(4321), [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), [anon_sym_data] = ACTIONS(4321), [anon_sym_inner] = ACTIONS(4321), [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), [anon_sym_expect] = ACTIONS(4321), [anon_sym_actual] = ACTIONS(4321), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4323), - [anon_sym_continue_AT] = ACTIONS(4323), - [anon_sym_break_AT] = ACTIONS(4323), - [anon_sym_this_AT] = ACTIONS(4323), - [anon_sym_super_AT] = ACTIONS(4323), - [sym_real_literal] = ACTIONS(4323), - [sym_integer_literal] = ACTIONS(4321), - [sym_hex_literal] = ACTIONS(4323), - [sym_bin_literal] = ACTIONS(4323), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [anon_sym_SQUOTE] = ACTIONS(4323), [sym__backtick_identifier] = ACTIONS(4323), - [sym__automatic_semicolon] = ACTIONS(4323), [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4323), - }, - [3487] = { - [sym__alpha_identifier] = ACTIONS(5069), - [anon_sym_AT] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_as] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5069), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_RBRACE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_where] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_get] = ACTIONS(5069), - [anon_sym_set] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_DASH_GT] = ACTIONS(5071), - [sym_label] = ACTIONS(5071), - [anon_sym_in] = ACTIONS(5069), - [anon_sym_while] = ACTIONS(5069), - [anon_sym_DOT_DOT] = ACTIONS(5071), - [anon_sym_QMARK_COLON] = ACTIONS(5071), - [anon_sym_AMP_AMP] = ACTIONS(5071), - [anon_sym_PIPE_PIPE] = ACTIONS(5071), - [anon_sym_else] = ACTIONS(5069), - [anon_sym_COLON_COLON] = ACTIONS(5071), - [anon_sym_PLUS_EQ] = ACTIONS(5071), - [anon_sym_DASH_EQ] = ACTIONS(5071), - [anon_sym_STAR_EQ] = ACTIONS(5071), - [anon_sym_SLASH_EQ] = ACTIONS(5071), - [anon_sym_PERCENT_EQ] = ACTIONS(5071), - [anon_sym_BANG_EQ] = ACTIONS(5069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5071), - [anon_sym_EQ_EQ] = ACTIONS(5069), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5071), - [anon_sym_LT_EQ] = ACTIONS(5071), - [anon_sym_GT_EQ] = ACTIONS(5071), - [anon_sym_BANGin] = ACTIONS(5071), - [anon_sym_is] = ACTIONS(5069), - [anon_sym_BANGis] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_PERCENT] = ACTIONS(5069), - [anon_sym_as_QMARK] = ACTIONS(5071), - [anon_sym_PLUS_PLUS] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5071), - [anon_sym_BANG_BANG] = ACTIONS(5071), - [anon_sym_suspend] = ACTIONS(5069), - [anon_sym_sealed] = ACTIONS(5069), - [anon_sym_annotation] = ACTIONS(5069), - [anon_sym_data] = ACTIONS(5069), - [anon_sym_inner] = ACTIONS(5069), - [anon_sym_value] = ACTIONS(5069), - [anon_sym_override] = ACTIONS(5069), - [anon_sym_lateinit] = ACTIONS(5069), - [anon_sym_public] = ACTIONS(5069), - [anon_sym_private] = ACTIONS(5069), - [anon_sym_internal] = ACTIONS(5069), - [anon_sym_protected] = ACTIONS(5069), - [anon_sym_tailrec] = ACTIONS(5069), - [anon_sym_operator] = ACTIONS(5069), - [anon_sym_infix] = ACTIONS(5069), - [anon_sym_inline] = ACTIONS(5069), - [anon_sym_external] = ACTIONS(5069), - [sym_property_modifier] = ACTIONS(5069), - [anon_sym_abstract] = ACTIONS(5069), - [anon_sym_final] = ACTIONS(5069), - [anon_sym_open] = ACTIONS(5069), - [anon_sym_vararg] = ACTIONS(5069), - [anon_sym_noinline] = ACTIONS(5069), - [anon_sym_crossinline] = ACTIONS(5069), - [anon_sym_expect] = ACTIONS(5069), - [anon_sym_actual] = ACTIONS(5069), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5071), - [sym_safe_nav] = ACTIONS(5071), - [sym_multiline_comment] = ACTIONS(3), - }, - [3488] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_RBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(5032), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_RPAREN] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [anon_sym_DASH_GT] = ACTIONS(4379), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_while] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(5034), - [anon_sym_DASH_EQ] = ACTIONS(5034), - [anon_sym_STAR_EQ] = ACTIONS(5034), - [anon_sym_SLASH_EQ] = ACTIONS(5034), - [anon_sym_PERCENT_EQ] = ACTIONS(5034), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), }, - [3489] = { - [sym_function_body] = STATE(3238), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(6952), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4339), - [anon_sym_object] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_this] = ACTIONS(4339), - [anon_sym_super] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [sym_label] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [anon_sym_try] = ACTIONS(4339), - [anon_sym_throw] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4341), - [anon_sym_continue_AT] = ACTIONS(4341), - [anon_sym_break_AT] = ACTIONS(4341), - [anon_sym_this_AT] = ACTIONS(4341), - [anon_sym_super_AT] = ACTIONS(4341), - [sym_real_literal] = ACTIONS(4341), - [sym_integer_literal] = ACTIONS(4339), - [sym_hex_literal] = ACTIONS(4341), - [sym_bin_literal] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4339), - [anon_sym_false] = ACTIONS(4339), - [anon_sym_SQUOTE] = ACTIONS(4341), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4341), - }, - [3490] = { - [sym_type_constraints] = STATE(3392), - [sym_enum_class_body] = STATE(3652), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(6954), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_RPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_while] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - }, - [3491] = { - [sym_class_body] = STATE(3652), - [sym_type_constraints] = STATE(3394), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(6956), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_RPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_while] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - }, - [3492] = { - [sym_type_constraints] = STATE(3408), - [sym_enum_class_body] = STATE(3597), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [3493] = { - [sym__alpha_identifier] = ACTIONS(5079), - [anon_sym_AT] = ACTIONS(5081), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_RBRACK] = ACTIONS(5081), - [anon_sym_as] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5081), - [anon_sym_RBRACE] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5081), - [anon_sym_COMMA] = ACTIONS(5081), - [anon_sym_RPAREN] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5079), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_where] = ACTIONS(5079), - [anon_sym_DOT] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5081), - [anon_sym_get] = ACTIONS(5079), - [anon_sym_set] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [anon_sym_DASH_GT] = ACTIONS(5081), - [sym_label] = ACTIONS(5081), - [anon_sym_in] = ACTIONS(5079), - [anon_sym_while] = ACTIONS(5079), - [anon_sym_DOT_DOT] = ACTIONS(5081), - [anon_sym_QMARK_COLON] = ACTIONS(5081), - [anon_sym_AMP_AMP] = ACTIONS(5081), - [anon_sym_PIPE_PIPE] = ACTIONS(5081), - [anon_sym_else] = ACTIONS(5079), - [anon_sym_COLON_COLON] = ACTIONS(5081), - [anon_sym_PLUS_EQ] = ACTIONS(5081), - [anon_sym_DASH_EQ] = ACTIONS(5081), - [anon_sym_STAR_EQ] = ACTIONS(5081), - [anon_sym_SLASH_EQ] = ACTIONS(5081), - [anon_sym_PERCENT_EQ] = ACTIONS(5081), - [anon_sym_BANG_EQ] = ACTIONS(5079), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5081), - [anon_sym_EQ_EQ] = ACTIONS(5079), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5081), - [anon_sym_LT_EQ] = ACTIONS(5081), - [anon_sym_GT_EQ] = ACTIONS(5081), - [anon_sym_BANGin] = ACTIONS(5081), - [anon_sym_is] = ACTIONS(5079), - [anon_sym_BANGis] = ACTIONS(5081), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5079), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_as_QMARK] = ACTIONS(5081), - [anon_sym_PLUS_PLUS] = ACTIONS(5081), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_BANG_BANG] = ACTIONS(5081), - [anon_sym_suspend] = ACTIONS(5079), - [anon_sym_sealed] = ACTIONS(5079), - [anon_sym_annotation] = ACTIONS(5079), - [anon_sym_data] = ACTIONS(5079), - [anon_sym_inner] = ACTIONS(5079), - [anon_sym_value] = ACTIONS(5079), - [anon_sym_override] = ACTIONS(5079), - [anon_sym_lateinit] = ACTIONS(5079), - [anon_sym_public] = ACTIONS(5079), - [anon_sym_private] = ACTIONS(5079), - [anon_sym_internal] = ACTIONS(5079), - [anon_sym_protected] = ACTIONS(5079), - [anon_sym_tailrec] = ACTIONS(5079), - [anon_sym_operator] = ACTIONS(5079), - [anon_sym_infix] = ACTIONS(5079), - [anon_sym_inline] = ACTIONS(5079), - [anon_sym_external] = ACTIONS(5079), - [sym_property_modifier] = ACTIONS(5079), - [anon_sym_abstract] = ACTIONS(5079), - [anon_sym_final] = ACTIONS(5079), - [anon_sym_open] = ACTIONS(5079), - [anon_sym_vararg] = ACTIONS(5079), - [anon_sym_noinline] = ACTIONS(5079), - [anon_sym_crossinline] = ACTIONS(5079), - [anon_sym_expect] = ACTIONS(5079), - [anon_sym_actual] = ACTIONS(5079), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5081), - [sym_safe_nav] = ACTIONS(5081), - [sym_multiline_comment] = ACTIONS(3), - }, - [3494] = { - [sym_class_body] = STATE(3597), - [sym_type_constraints] = STATE(3409), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(5962), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [3495] = { + [3502] = { [sym__alpha_identifier] = ACTIONS(5145), [anon_sym_AT] = ACTIONS(5147), [anon_sym_LBRACK] = ACTIONS(5147), @@ -406009,1252 +404335,1750 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5147), [sym_multiline_comment] = ACTIONS(3), }, - [3496] = { - [sym__alpha_identifier] = ACTIONS(5235), - [anon_sym_AT] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_RBRACK] = ACTIONS(5237), - [anon_sym_as] = ACTIONS(5235), - [anon_sym_EQ] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5237), - [anon_sym_RBRACE] = ACTIONS(5237), - [anon_sym_LPAREN] = ACTIONS(5237), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_RPAREN] = ACTIONS(5237), - [anon_sym_LT] = ACTIONS(5235), - [anon_sym_GT] = ACTIONS(5235), - [anon_sym_where] = ACTIONS(5235), - [anon_sym_DOT] = ACTIONS(5235), - [anon_sym_SEMI] = ACTIONS(5237), - [anon_sym_get] = ACTIONS(5235), - [anon_sym_set] = ACTIONS(5235), - [anon_sym_STAR] = ACTIONS(5235), - [anon_sym_DASH_GT] = ACTIONS(5237), - [sym_label] = ACTIONS(5237), - [anon_sym_in] = ACTIONS(5235), - [anon_sym_while] = ACTIONS(5235), - [anon_sym_DOT_DOT] = ACTIONS(5237), - [anon_sym_QMARK_COLON] = ACTIONS(5237), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5237), - [anon_sym_else] = ACTIONS(5235), - [anon_sym_COLON_COLON] = ACTIONS(5237), - [anon_sym_PLUS_EQ] = ACTIONS(5237), - [anon_sym_DASH_EQ] = ACTIONS(5237), - [anon_sym_STAR_EQ] = ACTIONS(5237), - [anon_sym_SLASH_EQ] = ACTIONS(5237), - [anon_sym_PERCENT_EQ] = ACTIONS(5237), - [anon_sym_BANG_EQ] = ACTIONS(5235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5237), - [anon_sym_EQ_EQ] = ACTIONS(5235), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5237), - [anon_sym_LT_EQ] = ACTIONS(5237), - [anon_sym_GT_EQ] = ACTIONS(5237), - [anon_sym_BANGin] = ACTIONS(5237), - [anon_sym_is] = ACTIONS(5235), - [anon_sym_BANGis] = ACTIONS(5237), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_SLASH] = ACTIONS(5235), - [anon_sym_PERCENT] = ACTIONS(5235), - [anon_sym_as_QMARK] = ACTIONS(5237), - [anon_sym_PLUS_PLUS] = ACTIONS(5237), - [anon_sym_DASH_DASH] = ACTIONS(5237), - [anon_sym_BANG_BANG] = ACTIONS(5237), - [anon_sym_suspend] = ACTIONS(5235), - [anon_sym_sealed] = ACTIONS(5235), - [anon_sym_annotation] = ACTIONS(5235), - [anon_sym_data] = ACTIONS(5235), - [anon_sym_inner] = ACTIONS(5235), - [anon_sym_value] = ACTIONS(5235), - [anon_sym_override] = ACTIONS(5235), - [anon_sym_lateinit] = ACTIONS(5235), - [anon_sym_public] = ACTIONS(5235), - [anon_sym_private] = ACTIONS(5235), - [anon_sym_internal] = ACTIONS(5235), - [anon_sym_protected] = ACTIONS(5235), - [anon_sym_tailrec] = ACTIONS(5235), - [anon_sym_operator] = ACTIONS(5235), - [anon_sym_infix] = ACTIONS(5235), - [anon_sym_inline] = ACTIONS(5235), - [anon_sym_external] = ACTIONS(5235), - [sym_property_modifier] = ACTIONS(5235), - [anon_sym_abstract] = ACTIONS(5235), - [anon_sym_final] = ACTIONS(5235), - [anon_sym_open] = ACTIONS(5235), - [anon_sym_vararg] = ACTIONS(5235), - [anon_sym_noinline] = ACTIONS(5235), - [anon_sym_crossinline] = ACTIONS(5235), - [anon_sym_expect] = ACTIONS(5235), - [anon_sym_actual] = ACTIONS(5235), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5237), - [sym_safe_nav] = ACTIONS(5237), + [3503] = { + [sym__alpha_identifier] = ACTIONS(4812), + [anon_sym_AT] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_RBRACK] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_RPAREN] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_where] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4814), + [anon_sym_get] = ACTIONS(4812), + [anon_sym_set] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [anon_sym_DASH_GT] = ACTIONS(4814), + [sym_label] = ACTIONS(4814), + [anon_sym_in] = ACTIONS(4812), + [anon_sym_while] = ACTIONS(4812), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_QMARK_COLON] = ACTIONS(4814), + [anon_sym_AMP_AMP] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4814), + [anon_sym_else] = ACTIONS(4812), + [anon_sym_COLON_COLON] = ACTIONS(4814), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4814), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_BANGin] = ACTIONS(4814), + [anon_sym_is] = ACTIONS(4812), + [anon_sym_BANGis] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4812), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_as_QMARK] = ACTIONS(4814), + [anon_sym_PLUS_PLUS] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_BANG_BANG] = ACTIONS(4814), + [anon_sym_suspend] = ACTIONS(4812), + [anon_sym_sealed] = ACTIONS(4812), + [anon_sym_annotation] = ACTIONS(4812), + [anon_sym_data] = ACTIONS(4812), + [anon_sym_inner] = ACTIONS(4812), + [anon_sym_value] = ACTIONS(4812), + [anon_sym_override] = ACTIONS(4812), + [anon_sym_lateinit] = ACTIONS(4812), + [anon_sym_public] = ACTIONS(4812), + [anon_sym_private] = ACTIONS(4812), + [anon_sym_internal] = ACTIONS(4812), + [anon_sym_protected] = ACTIONS(4812), + [anon_sym_tailrec] = ACTIONS(4812), + [anon_sym_operator] = ACTIONS(4812), + [anon_sym_infix] = ACTIONS(4812), + [anon_sym_inline] = ACTIONS(4812), + [anon_sym_external] = ACTIONS(4812), + [sym_property_modifier] = ACTIONS(4812), + [anon_sym_abstract] = ACTIONS(4812), + [anon_sym_final] = ACTIONS(4812), + [anon_sym_open] = ACTIONS(4812), + [anon_sym_vararg] = ACTIONS(4812), + [anon_sym_noinline] = ACTIONS(4812), + [anon_sym_crossinline] = ACTIONS(4812), + [anon_sym_expect] = ACTIONS(4812), + [anon_sym_actual] = ACTIONS(4812), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4814), + [sym_safe_nav] = ACTIONS(4814), [sym_multiline_comment] = ACTIONS(3), }, - [3497] = { - [sym__alpha_identifier] = ACTIONS(4461), - [anon_sym_AT] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_RBRACK] = ACTIONS(4463), - [anon_sym_as] = ACTIONS(4461), - [anon_sym_EQ] = ACTIONS(4461), - [anon_sym_LBRACE] = ACTIONS(4463), - [anon_sym_RBRACE] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_RPAREN] = ACTIONS(4463), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_where] = ACTIONS(4461), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [anon_sym_get] = ACTIONS(4461), - [anon_sym_set] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [anon_sym_DASH_GT] = ACTIONS(4463), - [sym_label] = ACTIONS(4463), - [anon_sym_in] = ACTIONS(4461), - [anon_sym_while] = ACTIONS(4461), - [anon_sym_DOT_DOT] = ACTIONS(4463), - [anon_sym_QMARK_COLON] = ACTIONS(4463), - [anon_sym_AMP_AMP] = ACTIONS(4463), - [anon_sym_PIPE_PIPE] = ACTIONS(4463), - [anon_sym_else] = ACTIONS(4461), - [anon_sym_COLON_COLON] = ACTIONS(4463), - [anon_sym_PLUS_EQ] = ACTIONS(4463), - [anon_sym_DASH_EQ] = ACTIONS(4463), - [anon_sym_STAR_EQ] = ACTIONS(4463), - [anon_sym_SLASH_EQ] = ACTIONS(4463), - [anon_sym_PERCENT_EQ] = ACTIONS(4463), - [anon_sym_BANG_EQ] = ACTIONS(4461), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4463), - [anon_sym_EQ_EQ] = ACTIONS(4461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4463), - [anon_sym_LT_EQ] = ACTIONS(4463), - [anon_sym_GT_EQ] = ACTIONS(4463), - [anon_sym_BANGin] = ACTIONS(4463), - [anon_sym_is] = ACTIONS(4461), - [anon_sym_BANGis] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(4461), - [anon_sym_as_QMARK] = ACTIONS(4463), - [anon_sym_PLUS_PLUS] = ACTIONS(4463), - [anon_sym_DASH_DASH] = ACTIONS(4463), - [anon_sym_BANG_BANG] = ACTIONS(4463), - [anon_sym_suspend] = ACTIONS(4461), - [anon_sym_sealed] = ACTIONS(4461), - [anon_sym_annotation] = ACTIONS(4461), - [anon_sym_data] = ACTIONS(4461), - [anon_sym_inner] = ACTIONS(4461), - [anon_sym_value] = ACTIONS(4461), - [anon_sym_override] = ACTIONS(4461), - [anon_sym_lateinit] = ACTIONS(4461), - [anon_sym_public] = ACTIONS(4461), - [anon_sym_private] = ACTIONS(4461), - [anon_sym_internal] = ACTIONS(4461), - [anon_sym_protected] = ACTIONS(4461), - [anon_sym_tailrec] = ACTIONS(4461), - [anon_sym_operator] = ACTIONS(4461), - [anon_sym_infix] = ACTIONS(4461), - [anon_sym_inline] = ACTIONS(4461), - [anon_sym_external] = ACTIONS(4461), - [sym_property_modifier] = ACTIONS(4461), - [anon_sym_abstract] = ACTIONS(4461), - [anon_sym_final] = ACTIONS(4461), - [anon_sym_open] = ACTIONS(4461), - [anon_sym_vararg] = ACTIONS(4461), - [anon_sym_noinline] = ACTIONS(4461), - [anon_sym_crossinline] = ACTIONS(4461), - [anon_sym_expect] = ACTIONS(4461), - [anon_sym_actual] = ACTIONS(4461), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4463), - [sym_safe_nav] = ACTIONS(4463), + [3504] = { + [sym__alpha_identifier] = ACTIONS(5149), + [anon_sym_AT] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_RBRACK] = ACTIONS(5151), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_EQ] = ACTIONS(5149), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_RPAREN] = ACTIONS(5151), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_where] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5149), + [anon_sym_SEMI] = ACTIONS(5151), + [anon_sym_get] = ACTIONS(5149), + [anon_sym_set] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_DASH_GT] = ACTIONS(5151), + [sym_label] = ACTIONS(5151), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_while] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5151), + [anon_sym_AMP_AMP] = ACTIONS(5151), + [anon_sym_PIPE_PIPE] = ACTIONS(5151), + [anon_sym_else] = ACTIONS(5149), + [anon_sym_COLON_COLON] = ACTIONS(5151), + [anon_sym_PLUS_EQ] = ACTIONS(5151), + [anon_sym_DASH_EQ] = ACTIONS(5151), + [anon_sym_STAR_EQ] = ACTIONS(5151), + [anon_sym_SLASH_EQ] = ACTIONS(5151), + [anon_sym_PERCENT_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), + [anon_sym_LT_EQ] = ACTIONS(5151), + [anon_sym_GT_EQ] = ACTIONS(5151), + [anon_sym_BANGin] = ACTIONS(5151), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_BANGis] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_as_QMARK] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_BANG_BANG] = ACTIONS(5151), + [anon_sym_suspend] = ACTIONS(5149), + [anon_sym_sealed] = ACTIONS(5149), + [anon_sym_annotation] = ACTIONS(5149), + [anon_sym_data] = ACTIONS(5149), + [anon_sym_inner] = ACTIONS(5149), + [anon_sym_value] = ACTIONS(5149), + [anon_sym_override] = ACTIONS(5149), + [anon_sym_lateinit] = ACTIONS(5149), + [anon_sym_public] = ACTIONS(5149), + [anon_sym_private] = ACTIONS(5149), + [anon_sym_internal] = ACTIONS(5149), + [anon_sym_protected] = ACTIONS(5149), + [anon_sym_tailrec] = ACTIONS(5149), + [anon_sym_operator] = ACTIONS(5149), + [anon_sym_infix] = ACTIONS(5149), + [anon_sym_inline] = ACTIONS(5149), + [anon_sym_external] = ACTIONS(5149), + [sym_property_modifier] = ACTIONS(5149), + [anon_sym_abstract] = ACTIONS(5149), + [anon_sym_final] = ACTIONS(5149), + [anon_sym_open] = ACTIONS(5149), + [anon_sym_vararg] = ACTIONS(5149), + [anon_sym_noinline] = ACTIONS(5149), + [anon_sym_crossinline] = ACTIONS(5149), + [anon_sym_expect] = ACTIONS(5149), + [anon_sym_actual] = ACTIONS(5149), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5151), + [sym_safe_nav] = ACTIONS(5151), [sym_multiline_comment] = ACTIONS(3), }, - [3498] = { - [sym_type_constraints] = STATE(3416), - [sym_enum_class_body] = STATE(3574), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6958), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [3505] = { + [sym__alpha_identifier] = ACTIONS(5153), + [anon_sym_AT] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_RBRACK] = ACTIONS(5155), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_RPAREN] = ACTIONS(5155), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5153), + [anon_sym_SEMI] = ACTIONS(5155), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_DASH_GT] = ACTIONS(5155), + [sym_label] = ACTIONS(5155), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_while] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5155), + [anon_sym_QMARK_COLON] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5155), + [anon_sym_else] = ACTIONS(5153), + [anon_sym_COLON_COLON] = ACTIONS(5155), + [anon_sym_PLUS_EQ] = ACTIONS(5155), + [anon_sym_DASH_EQ] = ACTIONS(5155), + [anon_sym_STAR_EQ] = ACTIONS(5155), + [anon_sym_SLASH_EQ] = ACTIONS(5155), + [anon_sym_PERCENT_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), + [anon_sym_LT_EQ] = ACTIONS(5155), + [anon_sym_GT_EQ] = ACTIONS(5155), + [anon_sym_BANGin] = ACTIONS(5155), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_BANGis] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_as_QMARK] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_BANG_BANG] = ACTIONS(5155), + [anon_sym_suspend] = ACTIONS(5153), + [anon_sym_sealed] = ACTIONS(5153), + [anon_sym_annotation] = ACTIONS(5153), + [anon_sym_data] = ACTIONS(5153), + [anon_sym_inner] = ACTIONS(5153), + [anon_sym_value] = ACTIONS(5153), + [anon_sym_override] = ACTIONS(5153), + [anon_sym_lateinit] = ACTIONS(5153), + [anon_sym_public] = ACTIONS(5153), + [anon_sym_private] = ACTIONS(5153), + [anon_sym_internal] = ACTIONS(5153), + [anon_sym_protected] = ACTIONS(5153), + [anon_sym_tailrec] = ACTIONS(5153), + [anon_sym_operator] = ACTIONS(5153), + [anon_sym_infix] = ACTIONS(5153), + [anon_sym_inline] = ACTIONS(5153), + [anon_sym_external] = ACTIONS(5153), + [sym_property_modifier] = ACTIONS(5153), + [anon_sym_abstract] = ACTIONS(5153), + [anon_sym_final] = ACTIONS(5153), + [anon_sym_open] = ACTIONS(5153), + [anon_sym_vararg] = ACTIONS(5153), + [anon_sym_noinline] = ACTIONS(5153), + [anon_sym_crossinline] = ACTIONS(5153), + [anon_sym_expect] = ACTIONS(5153), + [anon_sym_actual] = ACTIONS(5153), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5155), + [sym_safe_nav] = ACTIONS(5155), [sym_multiline_comment] = ACTIONS(3), }, - [3499] = { - [sym_class_body] = STATE(3574), - [sym_type_constraints] = STATE(3419), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6960), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [3506] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6874), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [3507] = { + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, - [3500] = { - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_RBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [anon_sym_DASH_GT] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [3508] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, - [3501] = { - [sym__alpha_identifier] = ACTIONS(5083), - [anon_sym_AT] = ACTIONS(5085), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_RBRACK] = ACTIONS(5085), - [anon_sym_as] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5085), - [anon_sym_RBRACE] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5085), - [anon_sym_COMMA] = ACTIONS(5085), - [anon_sym_RPAREN] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5083), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_where] = ACTIONS(5083), - [anon_sym_DOT] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5085), - [anon_sym_get] = ACTIONS(5083), - [anon_sym_set] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [anon_sym_DASH_GT] = ACTIONS(5085), - [sym_label] = ACTIONS(5085), - [anon_sym_in] = ACTIONS(5083), - [anon_sym_while] = ACTIONS(5083), - [anon_sym_DOT_DOT] = ACTIONS(5085), - [anon_sym_QMARK_COLON] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5085), - [anon_sym_PIPE_PIPE] = ACTIONS(5085), - [anon_sym_else] = ACTIONS(5083), - [anon_sym_COLON_COLON] = ACTIONS(5085), - [anon_sym_PLUS_EQ] = ACTIONS(5085), - [anon_sym_DASH_EQ] = ACTIONS(5085), - [anon_sym_STAR_EQ] = ACTIONS(5085), - [anon_sym_SLASH_EQ] = ACTIONS(5085), - [anon_sym_PERCENT_EQ] = ACTIONS(5085), - [anon_sym_BANG_EQ] = ACTIONS(5083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5085), - [anon_sym_EQ_EQ] = ACTIONS(5083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5085), - [anon_sym_LT_EQ] = ACTIONS(5085), - [anon_sym_GT_EQ] = ACTIONS(5085), - [anon_sym_BANGin] = ACTIONS(5085), - [anon_sym_is] = ACTIONS(5083), - [anon_sym_BANGis] = ACTIONS(5085), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_as_QMARK] = ACTIONS(5085), - [anon_sym_PLUS_PLUS] = ACTIONS(5085), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_BANG_BANG] = ACTIONS(5085), - [anon_sym_suspend] = ACTIONS(5083), - [anon_sym_sealed] = ACTIONS(5083), - [anon_sym_annotation] = ACTIONS(5083), - [anon_sym_data] = ACTIONS(5083), - [anon_sym_inner] = ACTIONS(5083), - [anon_sym_value] = ACTIONS(5083), - [anon_sym_override] = ACTIONS(5083), - [anon_sym_lateinit] = ACTIONS(5083), - [anon_sym_public] = ACTIONS(5083), - [anon_sym_private] = ACTIONS(5083), - [anon_sym_internal] = ACTIONS(5083), - [anon_sym_protected] = ACTIONS(5083), - [anon_sym_tailrec] = ACTIONS(5083), - [anon_sym_operator] = ACTIONS(5083), - [anon_sym_infix] = ACTIONS(5083), - [anon_sym_inline] = ACTIONS(5083), - [anon_sym_external] = ACTIONS(5083), - [sym_property_modifier] = ACTIONS(5083), - [anon_sym_abstract] = ACTIONS(5083), - [anon_sym_final] = ACTIONS(5083), - [anon_sym_open] = ACTIONS(5083), - [anon_sym_vararg] = ACTIONS(5083), - [anon_sym_noinline] = ACTIONS(5083), - [anon_sym_crossinline] = ACTIONS(5083), - [anon_sym_expect] = ACTIONS(5083), - [anon_sym_actual] = ACTIONS(5083), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5085), - [sym_safe_nav] = ACTIONS(5085), + [3509] = { + [sym__alpha_identifier] = ACTIONS(4834), + [anon_sym_AT] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4836), + [anon_sym_as] = ACTIONS(4834), + [anon_sym_EQ] = ACTIONS(4834), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_RBRACE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4834), + [anon_sym_where] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_get] = ACTIONS(4834), + [anon_sym_set] = ACTIONS(4834), + [anon_sym_STAR] = ACTIONS(4834), + [anon_sym_DASH_GT] = ACTIONS(4836), + [sym_label] = ACTIONS(4836), + [anon_sym_in] = ACTIONS(4834), + [anon_sym_while] = ACTIONS(4834), + [anon_sym_DOT_DOT] = ACTIONS(4836), + [anon_sym_QMARK_COLON] = ACTIONS(4836), + [anon_sym_AMP_AMP] = ACTIONS(4836), + [anon_sym_PIPE_PIPE] = ACTIONS(4836), + [anon_sym_else] = ACTIONS(4834), + [anon_sym_COLON_COLON] = ACTIONS(4836), + [anon_sym_PLUS_EQ] = ACTIONS(4836), + [anon_sym_DASH_EQ] = ACTIONS(4836), + [anon_sym_STAR_EQ] = ACTIONS(4836), + [anon_sym_SLASH_EQ] = ACTIONS(4836), + [anon_sym_PERCENT_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4836), + [anon_sym_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4836), + [anon_sym_LT_EQ] = ACTIONS(4836), + [anon_sym_GT_EQ] = ACTIONS(4836), + [anon_sym_BANGin] = ACTIONS(4836), + [anon_sym_is] = ACTIONS(4834), + [anon_sym_BANGis] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4834), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4834), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(4836), + [anon_sym_PLUS_PLUS] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4836), + [anon_sym_BANG_BANG] = ACTIONS(4836), + [anon_sym_suspend] = ACTIONS(4834), + [anon_sym_sealed] = ACTIONS(4834), + [anon_sym_annotation] = ACTIONS(4834), + [anon_sym_data] = ACTIONS(4834), + [anon_sym_inner] = ACTIONS(4834), + [anon_sym_value] = ACTIONS(4834), + [anon_sym_override] = ACTIONS(4834), + [anon_sym_lateinit] = ACTIONS(4834), + [anon_sym_public] = ACTIONS(4834), + [anon_sym_private] = ACTIONS(4834), + [anon_sym_internal] = ACTIONS(4834), + [anon_sym_protected] = ACTIONS(4834), + [anon_sym_tailrec] = ACTIONS(4834), + [anon_sym_operator] = ACTIONS(4834), + [anon_sym_infix] = ACTIONS(4834), + [anon_sym_inline] = ACTIONS(4834), + [anon_sym_external] = ACTIONS(4834), + [sym_property_modifier] = ACTIONS(4834), + [anon_sym_abstract] = ACTIONS(4834), + [anon_sym_final] = ACTIONS(4834), + [anon_sym_open] = ACTIONS(4834), + [anon_sym_vararg] = ACTIONS(4834), + [anon_sym_noinline] = ACTIONS(4834), + [anon_sym_crossinline] = ACTIONS(4834), + [anon_sym_expect] = ACTIONS(4834), + [anon_sym_actual] = ACTIONS(4834), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4836), + [sym_safe_nav] = ACTIONS(4836), [sym_multiline_comment] = ACTIONS(3), }, - [3502] = { - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_RBRACK] = ACTIONS(4323), - [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(4323), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_COMMA] = ACTIONS(4323), - [anon_sym_RPAREN] = ACTIONS(4323), - [anon_sym_LT] = ACTIONS(4321), - [anon_sym_GT] = ACTIONS(4321), - [anon_sym_where] = ACTIONS(4321), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_get] = ACTIONS(4321), - [anon_sym_set] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4321), - [anon_sym_DASH_GT] = ACTIONS(4323), - [sym_label] = ACTIONS(4323), - [anon_sym_in] = ACTIONS(4321), - [anon_sym_while] = ACTIONS(4321), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_QMARK_COLON] = ACTIONS(4323), - [anon_sym_AMP_AMP] = ACTIONS(4323), - [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_else] = ACTIONS(4321), - [anon_sym_COLON_COLON] = ACTIONS(4323), - [anon_sym_PLUS_EQ] = ACTIONS(4323), - [anon_sym_DASH_EQ] = ACTIONS(4323), - [anon_sym_STAR_EQ] = ACTIONS(4323), - [anon_sym_SLASH_EQ] = ACTIONS(4323), - [anon_sym_PERCENT_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), - [anon_sym_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4323), - [anon_sym_BANGin] = ACTIONS(4323), - [anon_sym_is] = ACTIONS(4321), - [anon_sym_BANGis] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4321), - [anon_sym_as_QMARK] = ACTIONS(4323), - [anon_sym_PLUS_PLUS] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG_BANG] = ACTIONS(4323), - [anon_sym_suspend] = ACTIONS(4321), - [anon_sym_sealed] = ACTIONS(4321), - [anon_sym_annotation] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4321), - [anon_sym_inner] = ACTIONS(4321), - [anon_sym_value] = ACTIONS(4321), - [anon_sym_override] = ACTIONS(4321), - [anon_sym_lateinit] = ACTIONS(4321), - [anon_sym_public] = ACTIONS(4321), - [anon_sym_private] = ACTIONS(4321), - [anon_sym_internal] = ACTIONS(4321), - [anon_sym_protected] = ACTIONS(4321), - [anon_sym_tailrec] = ACTIONS(4321), - [anon_sym_operator] = ACTIONS(4321), - [anon_sym_infix] = ACTIONS(4321), - [anon_sym_inline] = ACTIONS(4321), - [anon_sym_external] = ACTIONS(4321), - [sym_property_modifier] = ACTIONS(4321), - [anon_sym_abstract] = ACTIONS(4321), - [anon_sym_final] = ACTIONS(4321), - [anon_sym_open] = ACTIONS(4321), - [anon_sym_vararg] = ACTIONS(4321), - [anon_sym_noinline] = ACTIONS(4321), - [anon_sym_crossinline] = ACTIONS(4321), - [anon_sym_expect] = ACTIONS(4321), - [anon_sym_actual] = ACTIONS(4321), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), + [3510] = { + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(1802), + [anon_sym_sealed] = ACTIONS(1802), + [anon_sym_annotation] = ACTIONS(1802), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_override] = ACTIONS(1802), + [anon_sym_lateinit] = ACTIONS(1802), + [anon_sym_public] = ACTIONS(1802), + [anon_sym_private] = ACTIONS(1802), + [anon_sym_internal] = ACTIONS(1802), + [anon_sym_protected] = ACTIONS(1802), + [anon_sym_tailrec] = ACTIONS(1802), + [anon_sym_operator] = ACTIONS(1802), + [anon_sym_infix] = ACTIONS(1802), + [anon_sym_inline] = ACTIONS(1802), + [anon_sym_external] = ACTIONS(1802), + [sym_property_modifier] = ACTIONS(1802), + [anon_sym_abstract] = ACTIONS(1802), + [anon_sym_final] = ACTIONS(1802), + [anon_sym_open] = ACTIONS(1802), + [anon_sym_vararg] = ACTIONS(1802), + [anon_sym_noinline] = ACTIONS(1802), + [anon_sym_crossinline] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [3503] = { - [sym__alpha_identifier] = ACTIONS(5161), - [anon_sym_AT] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5163), - [anon_sym_RBRACK] = ACTIONS(5163), - [anon_sym_as] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_RBRACE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5161), - [anon_sym_where] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_get] = ACTIONS(5161), - [anon_sym_set] = ACTIONS(5161), - [anon_sym_STAR] = ACTIONS(5161), - [anon_sym_DASH_GT] = ACTIONS(5163), - [sym_label] = ACTIONS(5163), - [anon_sym_in] = ACTIONS(5161), - [anon_sym_while] = ACTIONS(5161), - [anon_sym_DOT_DOT] = ACTIONS(5163), - [anon_sym_QMARK_COLON] = ACTIONS(5163), - [anon_sym_AMP_AMP] = ACTIONS(5163), - [anon_sym_PIPE_PIPE] = ACTIONS(5163), - [anon_sym_else] = ACTIONS(5161), - [anon_sym_COLON_COLON] = ACTIONS(5163), - [anon_sym_PLUS_EQ] = ACTIONS(5163), - [anon_sym_DASH_EQ] = ACTIONS(5163), - [anon_sym_STAR_EQ] = ACTIONS(5163), - [anon_sym_SLASH_EQ] = ACTIONS(5163), - [anon_sym_PERCENT_EQ] = ACTIONS(5163), - [anon_sym_BANG_EQ] = ACTIONS(5161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5163), - [anon_sym_EQ_EQ] = ACTIONS(5161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5163), - [anon_sym_LT_EQ] = ACTIONS(5163), - [anon_sym_GT_EQ] = ACTIONS(5163), - [anon_sym_BANGin] = ACTIONS(5163), - [anon_sym_is] = ACTIONS(5161), - [anon_sym_BANGis] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5161), - [anon_sym_PERCENT] = ACTIONS(5161), - [anon_sym_as_QMARK] = ACTIONS(5163), - [anon_sym_PLUS_PLUS] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5163), - [anon_sym_BANG_BANG] = ACTIONS(5163), - [anon_sym_suspend] = ACTIONS(5161), - [anon_sym_sealed] = ACTIONS(5161), - [anon_sym_annotation] = ACTIONS(5161), - [anon_sym_data] = ACTIONS(5161), - [anon_sym_inner] = ACTIONS(5161), - [anon_sym_value] = ACTIONS(5161), - [anon_sym_override] = ACTIONS(5161), - [anon_sym_lateinit] = ACTIONS(5161), - [anon_sym_public] = ACTIONS(5161), - [anon_sym_private] = ACTIONS(5161), - [anon_sym_internal] = ACTIONS(5161), - [anon_sym_protected] = ACTIONS(5161), - [anon_sym_tailrec] = ACTIONS(5161), - [anon_sym_operator] = ACTIONS(5161), - [anon_sym_infix] = ACTIONS(5161), - [anon_sym_inline] = ACTIONS(5161), - [anon_sym_external] = ACTIONS(5161), - [sym_property_modifier] = ACTIONS(5161), - [anon_sym_abstract] = ACTIONS(5161), - [anon_sym_final] = ACTIONS(5161), - [anon_sym_open] = ACTIONS(5161), - [anon_sym_vararg] = ACTIONS(5161), - [anon_sym_noinline] = ACTIONS(5161), - [anon_sym_crossinline] = ACTIONS(5161), - [anon_sym_expect] = ACTIONS(5161), - [anon_sym_actual] = ACTIONS(5161), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5163), - [sym_safe_nav] = ACTIONS(5163), + [3511] = { + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_RBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_RPAREN] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5051), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [anon_sym_DASH_GT] = ACTIONS(5053), + [sym_label] = ACTIONS(5053), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_while] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_suspend] = ACTIONS(5051), + [anon_sym_sealed] = ACTIONS(5051), + [anon_sym_annotation] = ACTIONS(5051), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_override] = ACTIONS(5051), + [anon_sym_lateinit] = ACTIONS(5051), + [anon_sym_public] = ACTIONS(5051), + [anon_sym_private] = ACTIONS(5051), + [anon_sym_internal] = ACTIONS(5051), + [anon_sym_protected] = ACTIONS(5051), + [anon_sym_tailrec] = ACTIONS(5051), + [anon_sym_operator] = ACTIONS(5051), + [anon_sym_infix] = ACTIONS(5051), + [anon_sym_inline] = ACTIONS(5051), + [anon_sym_external] = ACTIONS(5051), + [sym_property_modifier] = ACTIONS(5051), + [anon_sym_abstract] = ACTIONS(5051), + [anon_sym_final] = ACTIONS(5051), + [anon_sym_open] = ACTIONS(5051), + [anon_sym_vararg] = ACTIONS(5051), + [anon_sym_noinline] = ACTIONS(5051), + [anon_sym_crossinline] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), [sym_multiline_comment] = ACTIONS(3), }, - [3504] = { - [sym__alpha_identifier] = ACTIONS(5020), - [anon_sym_AT] = ACTIONS(5022), - [anon_sym_LBRACK] = ACTIONS(5022), - [anon_sym_RBRACK] = ACTIONS(5022), - [anon_sym_as] = ACTIONS(5020), - [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_LBRACE] = ACTIONS(5022), - [anon_sym_RBRACE] = ACTIONS(5022), - [anon_sym_LPAREN] = ACTIONS(5022), - [anon_sym_COMMA] = ACTIONS(5022), - [anon_sym_RPAREN] = ACTIONS(5022), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_where] = ACTIONS(5020), - [anon_sym_DOT] = ACTIONS(5020), - [anon_sym_SEMI] = ACTIONS(5022), - [anon_sym_get] = ACTIONS(5020), - [anon_sym_set] = ACTIONS(5020), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_DASH_GT] = ACTIONS(5022), - [sym_label] = ACTIONS(5022), - [anon_sym_in] = ACTIONS(5020), - [anon_sym_while] = ACTIONS(5020), - [anon_sym_DOT_DOT] = ACTIONS(5022), - [anon_sym_QMARK_COLON] = ACTIONS(5022), - [anon_sym_AMP_AMP] = ACTIONS(5022), - [anon_sym_PIPE_PIPE] = ACTIONS(5022), - [anon_sym_else] = ACTIONS(5020), - [anon_sym_COLON_COLON] = ACTIONS(5022), - [anon_sym_PLUS_EQ] = ACTIONS(5022), - [anon_sym_DASH_EQ] = ACTIONS(5022), - [anon_sym_STAR_EQ] = ACTIONS(5022), - [anon_sym_SLASH_EQ] = ACTIONS(5022), - [anon_sym_PERCENT_EQ] = ACTIONS(5022), - [anon_sym_BANG_EQ] = ACTIONS(5020), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5022), - [anon_sym_EQ_EQ] = ACTIONS(5020), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5022), - [anon_sym_LT_EQ] = ACTIONS(5022), - [anon_sym_GT_EQ] = ACTIONS(5022), - [anon_sym_BANGin] = ACTIONS(5022), - [anon_sym_is] = ACTIONS(5020), - [anon_sym_BANGis] = ACTIONS(5022), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_PERCENT] = ACTIONS(5020), - [anon_sym_as_QMARK] = ACTIONS(5022), - [anon_sym_PLUS_PLUS] = ACTIONS(5022), - [anon_sym_DASH_DASH] = ACTIONS(5022), - [anon_sym_BANG_BANG] = ACTIONS(5022), - [anon_sym_suspend] = ACTIONS(5020), - [anon_sym_sealed] = ACTIONS(5020), - [anon_sym_annotation] = ACTIONS(5020), - [anon_sym_data] = ACTIONS(5020), - [anon_sym_inner] = ACTIONS(5020), - [anon_sym_value] = ACTIONS(5020), - [anon_sym_override] = ACTIONS(5020), - [anon_sym_lateinit] = ACTIONS(5020), - [anon_sym_public] = ACTIONS(5020), - [anon_sym_private] = ACTIONS(5020), - [anon_sym_internal] = ACTIONS(5020), - [anon_sym_protected] = ACTIONS(5020), - [anon_sym_tailrec] = ACTIONS(5020), - [anon_sym_operator] = ACTIONS(5020), - [anon_sym_infix] = ACTIONS(5020), - [anon_sym_inline] = ACTIONS(5020), - [anon_sym_external] = ACTIONS(5020), - [sym_property_modifier] = ACTIONS(5020), - [anon_sym_abstract] = ACTIONS(5020), - [anon_sym_final] = ACTIONS(5020), - [anon_sym_open] = ACTIONS(5020), - [anon_sym_vararg] = ACTIONS(5020), - [anon_sym_noinline] = ACTIONS(5020), - [anon_sym_crossinline] = ACTIONS(5020), - [anon_sym_expect] = ACTIONS(5020), - [anon_sym_actual] = ACTIONS(5020), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5022), - [sym_safe_nav] = ACTIONS(5022), + [3512] = { + [sym__alpha_identifier] = ACTIONS(5175), + [anon_sym_AT] = ACTIONS(5177), + [anon_sym_LBRACK] = ACTIONS(5177), + [anon_sym_RBRACK] = ACTIONS(5177), + [anon_sym_as] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5177), + [anon_sym_COMMA] = ACTIONS(5177), + [anon_sym_RPAREN] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5175), + [anon_sym_GT] = ACTIONS(5175), + [anon_sym_where] = ACTIONS(5175), + [anon_sym_DOT] = ACTIONS(5175), + [anon_sym_SEMI] = ACTIONS(5177), + [anon_sym_get] = ACTIONS(5175), + [anon_sym_set] = ACTIONS(5175), + [anon_sym_STAR] = ACTIONS(5175), + [anon_sym_DASH_GT] = ACTIONS(5177), + [sym_label] = ACTIONS(5177), + [anon_sym_in] = ACTIONS(5175), + [anon_sym_while] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5177), + [anon_sym_QMARK_COLON] = ACTIONS(5177), + [anon_sym_AMP_AMP] = ACTIONS(5177), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_else] = ACTIONS(5175), + [anon_sym_COLON_COLON] = ACTIONS(5177), + [anon_sym_PLUS_EQ] = ACTIONS(5177), + [anon_sym_DASH_EQ] = ACTIONS(5177), + [anon_sym_STAR_EQ] = ACTIONS(5177), + [anon_sym_SLASH_EQ] = ACTIONS(5177), + [anon_sym_PERCENT_EQ] = ACTIONS(5177), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5177), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5177), + [anon_sym_LT_EQ] = ACTIONS(5177), + [anon_sym_GT_EQ] = ACTIONS(5177), + [anon_sym_BANGin] = ACTIONS(5177), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_BANGis] = ACTIONS(5177), + [anon_sym_PLUS] = ACTIONS(5175), + [anon_sym_DASH] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5175), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_as_QMARK] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5177), + [anon_sym_DASH_DASH] = ACTIONS(5177), + [anon_sym_BANG_BANG] = ACTIONS(5177), + [anon_sym_suspend] = ACTIONS(5175), + [anon_sym_sealed] = ACTIONS(5175), + [anon_sym_annotation] = ACTIONS(5175), + [anon_sym_data] = ACTIONS(5175), + [anon_sym_inner] = ACTIONS(5175), + [anon_sym_value] = ACTIONS(5175), + [anon_sym_override] = ACTIONS(5175), + [anon_sym_lateinit] = ACTIONS(5175), + [anon_sym_public] = ACTIONS(5175), + [anon_sym_private] = ACTIONS(5175), + [anon_sym_internal] = ACTIONS(5175), + [anon_sym_protected] = ACTIONS(5175), + [anon_sym_tailrec] = ACTIONS(5175), + [anon_sym_operator] = ACTIONS(5175), + [anon_sym_infix] = ACTIONS(5175), + [anon_sym_inline] = ACTIONS(5175), + [anon_sym_external] = ACTIONS(5175), + [sym_property_modifier] = ACTIONS(5175), + [anon_sym_abstract] = ACTIONS(5175), + [anon_sym_final] = ACTIONS(5175), + [anon_sym_open] = ACTIONS(5175), + [anon_sym_vararg] = ACTIONS(5175), + [anon_sym_noinline] = ACTIONS(5175), + [anon_sym_crossinline] = ACTIONS(5175), + [anon_sym_expect] = ACTIONS(5175), + [anon_sym_actual] = ACTIONS(5175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5177), + [sym_safe_nav] = ACTIONS(5177), [sym_multiline_comment] = ACTIONS(3), }, - [3505] = { - [sym_type_constraints] = STATE(3435), - [sym_enum_class_body] = STATE(3500), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(5982), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [3513] = { + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_RBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(4465), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_RPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [anon_sym_DASH_GT] = ACTIONS(4465), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_while] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), [sym_multiline_comment] = ACTIONS(3), }, - [3506] = { - [sym_class_body] = STATE(3500), - [sym_type_constraints] = STATE(3439), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(5986), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [3514] = { + [sym__alpha_identifier] = ACTIONS(5043), + [anon_sym_AT] = ACTIONS(5045), + [anon_sym_LBRACK] = ACTIONS(5045), + [anon_sym_RBRACK] = ACTIONS(5045), + [anon_sym_as] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5045), + [anon_sym_RBRACE] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5045), + [anon_sym_COMMA] = ACTIONS(5045), + [anon_sym_RPAREN] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5043), + [anon_sym_GT] = ACTIONS(5043), + [anon_sym_where] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5043), + [anon_sym_SEMI] = ACTIONS(5045), + [anon_sym_get] = ACTIONS(5043), + [anon_sym_set] = ACTIONS(5043), + [anon_sym_STAR] = ACTIONS(5043), + [anon_sym_DASH_GT] = ACTIONS(5045), + [sym_label] = ACTIONS(5045), + [anon_sym_in] = ACTIONS(5043), + [anon_sym_while] = ACTIONS(5043), + [anon_sym_DOT_DOT] = ACTIONS(5045), + [anon_sym_QMARK_COLON] = ACTIONS(5045), + [anon_sym_AMP_AMP] = ACTIONS(5045), + [anon_sym_PIPE_PIPE] = ACTIONS(5045), + [anon_sym_else] = ACTIONS(5043), + [anon_sym_COLON_COLON] = ACTIONS(5045), + [anon_sym_PLUS_EQ] = ACTIONS(5045), + [anon_sym_DASH_EQ] = ACTIONS(5045), + [anon_sym_STAR_EQ] = ACTIONS(5045), + [anon_sym_SLASH_EQ] = ACTIONS(5045), + [anon_sym_PERCENT_EQ] = ACTIONS(5045), + [anon_sym_BANG_EQ] = ACTIONS(5043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5045), + [anon_sym_EQ_EQ] = ACTIONS(5043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5045), + [anon_sym_LT_EQ] = ACTIONS(5045), + [anon_sym_GT_EQ] = ACTIONS(5045), + [anon_sym_BANGin] = ACTIONS(5045), + [anon_sym_is] = ACTIONS(5043), + [anon_sym_BANGis] = ACTIONS(5045), + [anon_sym_PLUS] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5043), + [anon_sym_PERCENT] = ACTIONS(5043), + [anon_sym_as_QMARK] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5045), + [anon_sym_DASH_DASH] = ACTIONS(5045), + [anon_sym_BANG_BANG] = ACTIONS(5045), + [anon_sym_suspend] = ACTIONS(5043), + [anon_sym_sealed] = ACTIONS(5043), + [anon_sym_annotation] = ACTIONS(5043), + [anon_sym_data] = ACTIONS(5043), + [anon_sym_inner] = ACTIONS(5043), + [anon_sym_value] = ACTIONS(5043), + [anon_sym_override] = ACTIONS(5043), + [anon_sym_lateinit] = ACTIONS(5043), + [anon_sym_public] = ACTIONS(5043), + [anon_sym_private] = ACTIONS(5043), + [anon_sym_internal] = ACTIONS(5043), + [anon_sym_protected] = ACTIONS(5043), + [anon_sym_tailrec] = ACTIONS(5043), + [anon_sym_operator] = ACTIONS(5043), + [anon_sym_infix] = ACTIONS(5043), + [anon_sym_inline] = ACTIONS(5043), + [anon_sym_external] = ACTIONS(5043), + [sym_property_modifier] = ACTIONS(5043), + [anon_sym_abstract] = ACTIONS(5043), + [anon_sym_final] = ACTIONS(5043), + [anon_sym_open] = ACTIONS(5043), + [anon_sym_vararg] = ACTIONS(5043), + [anon_sym_noinline] = ACTIONS(5043), + [anon_sym_crossinline] = ACTIONS(5043), + [anon_sym_expect] = ACTIONS(5043), + [anon_sym_actual] = ACTIONS(5043), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5045), + [sym_safe_nav] = ACTIONS(5045), [sym_multiline_comment] = ACTIONS(3), }, - [3507] = { - [sym_class_body] = STATE(3497), - [sym_type_constraints] = STATE(3443), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(6962), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), - [sym_label] = ACTIONS(4277), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_while] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_PLUS_EQ] = ACTIONS(4277), - [anon_sym_DASH_EQ] = ACTIONS(4277), - [anon_sym_STAR_EQ] = ACTIONS(4277), - [anon_sym_SLASH_EQ] = ACTIONS(4277), - [anon_sym_PERCENT_EQ] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_suspend] = ACTIONS(4275), - [anon_sym_sealed] = ACTIONS(4275), - [anon_sym_annotation] = ACTIONS(4275), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_override] = ACTIONS(4275), - [anon_sym_lateinit] = ACTIONS(4275), - [anon_sym_public] = ACTIONS(4275), - [anon_sym_private] = ACTIONS(4275), - [anon_sym_internal] = ACTIONS(4275), - [anon_sym_protected] = ACTIONS(4275), - [anon_sym_tailrec] = ACTIONS(4275), - [anon_sym_operator] = ACTIONS(4275), - [anon_sym_infix] = ACTIONS(4275), - [anon_sym_inline] = ACTIONS(4275), - [anon_sym_external] = ACTIONS(4275), - [sym_property_modifier] = ACTIONS(4275), - [anon_sym_abstract] = ACTIONS(4275), - [anon_sym_final] = ACTIONS(4275), - [anon_sym_open] = ACTIONS(4275), - [anon_sym_vararg] = ACTIONS(4275), - [anon_sym_noinline] = ACTIONS(4275), - [anon_sym_crossinline] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), + [3515] = { + [ts_builtin_sym_end] = ACTIONS(6882), + [sym__alpha_identifier] = ACTIONS(6884), + [anon_sym_AT] = ACTIONS(6882), + [anon_sym_LBRACK] = ACTIONS(6882), + [anon_sym_package] = ACTIONS(6884), + [anon_sym_import] = ACTIONS(6884), + [anon_sym_typealias] = ACTIONS(6884), + [anon_sym_class] = ACTIONS(6884), + [anon_sym_interface] = ACTIONS(6884), + [anon_sym_enum] = ACTIONS(6884), + [anon_sym_LBRACE] = ACTIONS(6882), + [anon_sym_LPAREN] = ACTIONS(6882), + [anon_sym_val] = ACTIONS(6884), + [anon_sym_var] = ACTIONS(6884), + [anon_sym_object] = ACTIONS(6884), + [anon_sym_fun] = ACTIONS(6884), + [anon_sym_get] = ACTIONS(6884), + [anon_sym_set] = ACTIONS(6884), + [anon_sym_this] = ACTIONS(6884), + [anon_sym_super] = ACTIONS(6884), + [anon_sym_STAR] = ACTIONS(6882), + [sym_label] = ACTIONS(6884), + [anon_sym_for] = ACTIONS(6884), + [anon_sym_while] = ACTIONS(6884), + [anon_sym_do] = ACTIONS(6884), + [anon_sym_null] = ACTIONS(6884), + [anon_sym_if] = ACTIONS(6884), + [anon_sym_when] = ACTIONS(6884), + [anon_sym_try] = ACTIONS(6884), + [anon_sym_throw] = ACTIONS(6884), + [anon_sym_return] = ACTIONS(6884), + [anon_sym_continue] = ACTIONS(6884), + [anon_sym_break] = ACTIONS(6884), + [anon_sym_COLON_COLON] = ACTIONS(6882), + [anon_sym_PLUS] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6882), + [anon_sym_DASH_DASH] = ACTIONS(6882), + [anon_sym_BANG] = ACTIONS(6882), + [anon_sym_suspend] = ACTIONS(6884), + [anon_sym_sealed] = ACTIONS(6884), + [anon_sym_annotation] = ACTIONS(6884), + [anon_sym_data] = ACTIONS(6884), + [anon_sym_inner] = ACTIONS(6884), + [anon_sym_value] = ACTIONS(6884), + [anon_sym_override] = ACTIONS(6884), + [anon_sym_lateinit] = ACTIONS(6884), + [anon_sym_public] = ACTIONS(6884), + [anon_sym_private] = ACTIONS(6884), + [anon_sym_internal] = ACTIONS(6884), + [anon_sym_protected] = ACTIONS(6884), + [anon_sym_tailrec] = ACTIONS(6884), + [anon_sym_operator] = ACTIONS(6884), + [anon_sym_infix] = ACTIONS(6884), + [anon_sym_inline] = ACTIONS(6884), + [anon_sym_external] = ACTIONS(6884), + [sym_property_modifier] = ACTIONS(6884), + [anon_sym_abstract] = ACTIONS(6884), + [anon_sym_final] = ACTIONS(6884), + [anon_sym_open] = ACTIONS(6884), + [anon_sym_vararg] = ACTIONS(6884), + [anon_sym_noinline] = ACTIONS(6884), + [anon_sym_crossinline] = ACTIONS(6884), + [anon_sym_expect] = ACTIONS(6884), + [anon_sym_actual] = ACTIONS(6884), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6882), + [anon_sym_continue_AT] = ACTIONS(6882), + [anon_sym_break_AT] = ACTIONS(6882), + [anon_sym_this_AT] = ACTIONS(6882), + [anon_sym_super_AT] = ACTIONS(6882), + [sym_real_literal] = ACTIONS(6882), + [sym_integer_literal] = ACTIONS(6884), + [sym_hex_literal] = ACTIONS(6882), + [sym_bin_literal] = ACTIONS(6882), + [anon_sym_true] = ACTIONS(6884), + [anon_sym_false] = ACTIONS(6884), + [anon_sym_SQUOTE] = ACTIONS(6882), + [sym__backtick_identifier] = ACTIONS(6882), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6882), + }, + [3516] = { + [sym__alpha_identifier] = ACTIONS(5024), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_RBRACK] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_RPAREN] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_get] = ACTIONS(5024), + [anon_sym_set] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5026), + [sym_label] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_while] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_QMARK_COLON] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(6837), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_PERCENT_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_BANGin] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_BANGis] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_as_QMARK] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_BANG_BANG] = ACTIONS(5026), + [anon_sym_suspend] = ACTIONS(5024), + [anon_sym_sealed] = ACTIONS(5024), + [anon_sym_annotation] = ACTIONS(5024), + [anon_sym_data] = ACTIONS(5024), + [anon_sym_inner] = ACTIONS(5024), + [anon_sym_value] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_lateinit] = ACTIONS(5024), + [anon_sym_public] = ACTIONS(5024), + [anon_sym_private] = ACTIONS(5024), + [anon_sym_internal] = ACTIONS(5024), + [anon_sym_protected] = ACTIONS(5024), + [anon_sym_tailrec] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5024), + [anon_sym_infix] = ACTIONS(5024), + [anon_sym_inline] = ACTIONS(5024), + [anon_sym_external] = ACTIONS(5024), + [sym_property_modifier] = ACTIONS(5024), + [anon_sym_abstract] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_open] = ACTIONS(5024), + [anon_sym_vararg] = ACTIONS(5024), + [anon_sym_noinline] = ACTIONS(5024), + [anon_sym_crossinline] = ACTIONS(5024), + [anon_sym_expect] = ACTIONS(5024), + [anon_sym_actual] = ACTIONS(5024), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(5026), + [sym_safe_nav] = ACTIONS(5026), [sym_multiline_comment] = ACTIONS(3), }, - [3508] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(6964), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), + [3517] = { + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_RBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [anon_sym_DASH_GT] = ACTIONS(4495), + [sym_label] = ACTIONS(4495), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_while] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), }, - [3509] = { - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_EQ] = ACTIONS(4329), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_LBRACE] = ACTIONS(4329), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), + [3518] = { + [sym__alpha_identifier] = ACTIONS(4728), + [anon_sym_AT] = ACTIONS(4730), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_EQ] = ACTIONS(4730), + [anon_sym_LBRACE] = ACTIONS(4730), + [anon_sym_RBRACE] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4730), + [anon_sym_COMMA] = ACTIONS(4730), + [anon_sym_by] = ACTIONS(4728), + [anon_sym_where] = ACTIONS(4728), + [anon_sym_object] = ACTIONS(4728), + [anon_sym_fun] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_get] = ACTIONS(4728), + [anon_sym_set] = ACTIONS(4728), + [anon_sym_this] = ACTIONS(4728), + [anon_sym_super] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4730), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4728), + [anon_sym_null] = ACTIONS(4728), + [anon_sym_if] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4728), + [anon_sym_when] = ACTIONS(4728), + [anon_sym_try] = ACTIONS(4728), + [anon_sym_throw] = ACTIONS(4728), + [anon_sym_return] = ACTIONS(4728), + [anon_sym_continue] = ACTIONS(4728), + [anon_sym_break] = ACTIONS(4728), + [anon_sym_COLON_COLON] = ACTIONS(4730), + [anon_sym_BANGin] = ACTIONS(4730), + [anon_sym_is] = ACTIONS(4728), + [anon_sym_BANGis] = ACTIONS(4730), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4730), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4728), + [anon_sym_sealed] = ACTIONS(4728), + [anon_sym_annotation] = ACTIONS(4728), + [anon_sym_data] = ACTIONS(4728), + [anon_sym_inner] = ACTIONS(4728), + [anon_sym_value] = ACTIONS(4728), + [anon_sym_override] = ACTIONS(4728), + [anon_sym_lateinit] = ACTIONS(4728), + [anon_sym_public] = ACTIONS(4728), + [anon_sym_private] = ACTIONS(4728), + [anon_sym_internal] = ACTIONS(4728), + [anon_sym_protected] = ACTIONS(4728), + [anon_sym_tailrec] = ACTIONS(4728), + [anon_sym_operator] = ACTIONS(4728), + [anon_sym_infix] = ACTIONS(4728), + [anon_sym_inline] = ACTIONS(4728), + [anon_sym_external] = ACTIONS(4728), + [sym_property_modifier] = ACTIONS(4728), + [anon_sym_abstract] = ACTIONS(4728), + [anon_sym_final] = ACTIONS(4728), + [anon_sym_open] = ACTIONS(4728), + [anon_sym_vararg] = ACTIONS(4728), + [anon_sym_noinline] = ACTIONS(4728), + [anon_sym_crossinline] = ACTIONS(4728), + [anon_sym_expect] = ACTIONS(4728), + [anon_sym_actual] = ACTIONS(4728), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4730), + [anon_sym_continue_AT] = ACTIONS(4730), + [anon_sym_break_AT] = ACTIONS(4730), + [anon_sym_this_AT] = ACTIONS(4730), + [anon_sym_super_AT] = ACTIONS(4730), + [sym_real_literal] = ACTIONS(4730), + [sym_integer_literal] = ACTIONS(4728), + [sym_hex_literal] = ACTIONS(4730), + [sym_bin_literal] = ACTIONS(4730), + [anon_sym_true] = ACTIONS(4728), + [anon_sym_false] = ACTIONS(4728), + [anon_sym_SQUOTE] = ACTIONS(4730), + [sym__backtick_identifier] = ACTIONS(4730), + [sym__automatic_semicolon] = ACTIONS(4730), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4730), + }, + [3519] = { + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4765), + [anon_sym_LBRACE] = ACTIONS(4765), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_by] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_object] = ACTIONS(4762), + [anon_sym_fun] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_this] = ACTIONS(4762), + [anon_sym_super] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4765), + [sym_label] = ACTIONS(4762), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(4762), + [anon_sym_if] = ACTIONS(4762), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_when] = ACTIONS(4762), + [anon_sym_try] = ACTIONS(4762), + [anon_sym_throw] = ACTIONS(4762), + [anon_sym_return] = ACTIONS(4762), + [anon_sym_continue] = ACTIONS(4762), + [anon_sym_break] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4765), + [anon_sym_BANGin] = ACTIONS(4765), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4765), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_BANG] = ACTIONS(4762), + [anon_sym_suspend] = ACTIONS(4762), + [anon_sym_sealed] = ACTIONS(4762), + [anon_sym_annotation] = ACTIONS(4762), + [anon_sym_data] = ACTIONS(4762), + [anon_sym_inner] = ACTIONS(4762), + [anon_sym_value] = ACTIONS(4762), + [anon_sym_override] = ACTIONS(4762), + [anon_sym_lateinit] = ACTIONS(4762), + [anon_sym_public] = ACTIONS(4762), + [anon_sym_private] = ACTIONS(4762), + [anon_sym_internal] = ACTIONS(4762), + [anon_sym_protected] = ACTIONS(4762), + [anon_sym_tailrec] = ACTIONS(4762), + [anon_sym_operator] = ACTIONS(4762), + [anon_sym_infix] = ACTIONS(4762), + [anon_sym_inline] = ACTIONS(4762), + [anon_sym_external] = ACTIONS(4762), + [sym_property_modifier] = ACTIONS(4762), + [anon_sym_abstract] = ACTIONS(4762), + [anon_sym_final] = ACTIONS(4762), + [anon_sym_open] = ACTIONS(4762), + [anon_sym_vararg] = ACTIONS(4762), + [anon_sym_noinline] = ACTIONS(4762), + [anon_sym_crossinline] = ACTIONS(4762), + [anon_sym_expect] = ACTIONS(4762), + [anon_sym_actual] = ACTIONS(4762), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4765), + [anon_sym_continue_AT] = ACTIONS(4765), + [anon_sym_break_AT] = ACTIONS(4765), + [anon_sym_this_AT] = ACTIONS(4765), + [anon_sym_super_AT] = ACTIONS(4765), + [sym_real_literal] = ACTIONS(4765), + [sym_integer_literal] = ACTIONS(4762), + [sym_hex_literal] = ACTIONS(4765), + [sym_bin_literal] = ACTIONS(4765), + [anon_sym_true] = ACTIONS(4762), + [anon_sym_false] = ACTIONS(4762), + [anon_sym_SQUOTE] = ACTIONS(4765), + [sym__backtick_identifier] = ACTIONS(4765), + [sym__automatic_semicolon] = ACTIONS(4765), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4765), + }, + [3520] = { + [sym__alpha_identifier] = ACTIONS(5191), + [anon_sym_AT] = ACTIONS(5193), + [anon_sym_LBRACK] = ACTIONS(5193), + [anon_sym_RBRACK] = ACTIONS(5193), + [anon_sym_as] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(5193), + [anon_sym_RBRACE] = ACTIONS(5193), + [anon_sym_LPAREN] = ACTIONS(5193), + [anon_sym_COMMA] = ACTIONS(5193), + [anon_sym_RPAREN] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5191), + [anon_sym_GT] = ACTIONS(5191), + [anon_sym_where] = ACTIONS(5191), + [anon_sym_DOT] = ACTIONS(5191), + [anon_sym_SEMI] = ACTIONS(5193), + [anon_sym_get] = ACTIONS(5191), + [anon_sym_set] = ACTIONS(5191), + [anon_sym_STAR] = ACTIONS(5191), + [anon_sym_DASH_GT] = ACTIONS(5193), + [sym_label] = ACTIONS(5193), + [anon_sym_in] = ACTIONS(5191), + [anon_sym_while] = ACTIONS(5191), + [anon_sym_DOT_DOT] = ACTIONS(5193), + [anon_sym_QMARK_COLON] = ACTIONS(5193), + [anon_sym_AMP_AMP] = ACTIONS(5193), + [anon_sym_PIPE_PIPE] = ACTIONS(5193), + [anon_sym_else] = ACTIONS(5191), + [anon_sym_COLON_COLON] = ACTIONS(5193), + [anon_sym_PLUS_EQ] = ACTIONS(5193), + [anon_sym_DASH_EQ] = ACTIONS(5193), + [anon_sym_STAR_EQ] = ACTIONS(5193), + [anon_sym_SLASH_EQ] = ACTIONS(5193), + [anon_sym_PERCENT_EQ] = ACTIONS(5193), + [anon_sym_BANG_EQ] = ACTIONS(5191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5193), + [anon_sym_EQ_EQ] = ACTIONS(5191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5193), + [anon_sym_LT_EQ] = ACTIONS(5193), + [anon_sym_GT_EQ] = ACTIONS(5193), + [anon_sym_BANGin] = ACTIONS(5193), + [anon_sym_is] = ACTIONS(5191), + [anon_sym_BANGis] = ACTIONS(5193), + [anon_sym_PLUS] = ACTIONS(5191), + [anon_sym_DASH] = ACTIONS(5191), + [anon_sym_SLASH] = ACTIONS(5191), + [anon_sym_PERCENT] = ACTIONS(5191), + [anon_sym_as_QMARK] = ACTIONS(5193), + [anon_sym_PLUS_PLUS] = ACTIONS(5193), + [anon_sym_DASH_DASH] = ACTIONS(5193), + [anon_sym_BANG_BANG] = ACTIONS(5193), + [anon_sym_suspend] = ACTIONS(5191), + [anon_sym_sealed] = ACTIONS(5191), + [anon_sym_annotation] = ACTIONS(5191), + [anon_sym_data] = ACTIONS(5191), + [anon_sym_inner] = ACTIONS(5191), + [anon_sym_value] = ACTIONS(5191), + [anon_sym_override] = ACTIONS(5191), + [anon_sym_lateinit] = ACTIONS(5191), + [anon_sym_public] = ACTIONS(5191), + [anon_sym_private] = ACTIONS(5191), + [anon_sym_internal] = ACTIONS(5191), + [anon_sym_protected] = ACTIONS(5191), + [anon_sym_tailrec] = ACTIONS(5191), + [anon_sym_operator] = ACTIONS(5191), + [anon_sym_infix] = ACTIONS(5191), + [anon_sym_inline] = ACTIONS(5191), + [anon_sym_external] = ACTIONS(5191), + [sym_property_modifier] = ACTIONS(5191), + [anon_sym_abstract] = ACTIONS(5191), + [anon_sym_final] = ACTIONS(5191), + [anon_sym_open] = ACTIONS(5191), + [anon_sym_vararg] = ACTIONS(5191), + [anon_sym_noinline] = ACTIONS(5191), + [anon_sym_crossinline] = ACTIONS(5191), + [anon_sym_expect] = ACTIONS(5191), + [anon_sym_actual] = ACTIONS(5191), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5193), + [sym_safe_nav] = ACTIONS(5193), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), }, - [3510] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(6968), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [3521] = { + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), }, - [3511] = { + [3522] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(6886), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), + }, + [3523] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(6888), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(6886), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), + }, + [3524] = { [sym__alpha_identifier] = ACTIONS(5205), [anon_sym_AT] = ACTIONS(5207), [anon_sym_LBRACK] = ACTIONS(5207), @@ -407337,256 +406161,671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5207), [sym_multiline_comment] = ACTIONS(3), }, - [3512] = { - [sym_type_constraints] = STATE(3930), - [sym_function_body] = STATE(3608), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), + [3525] = { + [sym__alpha_identifier] = ACTIONS(5020), + [anon_sym_AT] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_RBRACK] = ACTIONS(5022), + [anon_sym_as] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5022), + [anon_sym_RBRACE] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5022), + [anon_sym_COMMA] = ACTIONS(5022), + [anon_sym_RPAREN] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_where] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5022), + [anon_sym_get] = ACTIONS(5020), + [anon_sym_set] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5022), + [sym_label] = ACTIONS(5022), + [anon_sym_in] = ACTIONS(5020), + [anon_sym_while] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5022), + [anon_sym_QMARK_COLON] = ACTIONS(5022), + [anon_sym_AMP_AMP] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5022), + [anon_sym_else] = ACTIONS(5020), + [anon_sym_COLON_COLON] = ACTIONS(5022), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5022), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_BANGin] = ACTIONS(5022), + [anon_sym_is] = ACTIONS(5020), + [anon_sym_BANGis] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_as_QMARK] = ACTIONS(5022), + [anon_sym_PLUS_PLUS] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_BANG_BANG] = ACTIONS(5022), + [anon_sym_suspend] = ACTIONS(5020), + [anon_sym_sealed] = ACTIONS(5020), + [anon_sym_annotation] = ACTIONS(5020), + [anon_sym_data] = ACTIONS(5020), + [anon_sym_inner] = ACTIONS(5020), + [anon_sym_value] = ACTIONS(5020), + [anon_sym_override] = ACTIONS(5020), + [anon_sym_lateinit] = ACTIONS(5020), + [anon_sym_public] = ACTIONS(5020), + [anon_sym_private] = ACTIONS(5020), + [anon_sym_internal] = ACTIONS(5020), + [anon_sym_protected] = ACTIONS(5020), + [anon_sym_tailrec] = ACTIONS(5020), + [anon_sym_operator] = ACTIONS(5020), + [anon_sym_infix] = ACTIONS(5020), + [anon_sym_inline] = ACTIONS(5020), + [anon_sym_external] = ACTIONS(5020), + [sym_property_modifier] = ACTIONS(5020), + [anon_sym_abstract] = ACTIONS(5020), + [anon_sym_final] = ACTIONS(5020), + [anon_sym_open] = ACTIONS(5020), + [anon_sym_vararg] = ACTIONS(5020), + [anon_sym_noinline] = ACTIONS(5020), + [anon_sym_crossinline] = ACTIONS(5020), + [anon_sym_expect] = ACTIONS(5020), + [anon_sym_actual] = ACTIONS(5020), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5022), + [sym_safe_nav] = ACTIONS(5022), [sym_multiline_comment] = ACTIONS(3), }, - [3513] = { - [sym_class_body] = STATE(3466), - [sym_type_constraints] = STATE(3357), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(5990), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [3526] = { + [sym__alpha_identifier] = ACTIONS(4970), + [anon_sym_AT] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_RBRACK] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4970), + [anon_sym_EQ] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_RBRACE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_where] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_get] = ACTIONS(4970), + [anon_sym_set] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [anon_sym_DASH_GT] = ACTIONS(4972), + [sym_label] = ACTIONS(4972), + [anon_sym_in] = ACTIONS(4970), + [anon_sym_while] = ACTIONS(4970), + [anon_sym_DOT_DOT] = ACTIONS(4972), + [anon_sym_QMARK_COLON] = ACTIONS(4972), + [anon_sym_AMP_AMP] = ACTIONS(4972), + [anon_sym_PIPE_PIPE] = ACTIONS(4972), + [anon_sym_else] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_PLUS_EQ] = ACTIONS(4972), + [anon_sym_DASH_EQ] = ACTIONS(4972), + [anon_sym_STAR_EQ] = ACTIONS(4972), + [anon_sym_SLASH_EQ] = ACTIONS(4972), + [anon_sym_PERCENT_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4972), + [anon_sym_GT_EQ] = ACTIONS(4972), + [anon_sym_BANGin] = ACTIONS(4972), + [anon_sym_is] = ACTIONS(4970), + [anon_sym_BANGis] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4970), + [anon_sym_as_QMARK] = ACTIONS(4972), + [anon_sym_PLUS_PLUS] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4972), + [anon_sym_BANG_BANG] = ACTIONS(4972), + [anon_sym_suspend] = ACTIONS(4970), + [anon_sym_sealed] = ACTIONS(4970), + [anon_sym_annotation] = ACTIONS(4970), + [anon_sym_data] = ACTIONS(4970), + [anon_sym_inner] = ACTIONS(4970), + [anon_sym_value] = ACTIONS(4970), + [anon_sym_override] = ACTIONS(4970), + [anon_sym_lateinit] = ACTIONS(4970), + [anon_sym_public] = ACTIONS(4970), + [anon_sym_private] = ACTIONS(4970), + [anon_sym_internal] = ACTIONS(4970), + [anon_sym_protected] = ACTIONS(4970), + [anon_sym_tailrec] = ACTIONS(4970), + [anon_sym_operator] = ACTIONS(4970), + [anon_sym_infix] = ACTIONS(4970), + [anon_sym_inline] = ACTIONS(4970), + [anon_sym_external] = ACTIONS(4970), + [sym_property_modifier] = ACTIONS(4970), + [anon_sym_abstract] = ACTIONS(4970), + [anon_sym_final] = ACTIONS(4970), + [anon_sym_open] = ACTIONS(4970), + [anon_sym_vararg] = ACTIONS(4970), + [anon_sym_noinline] = ACTIONS(4970), + [anon_sym_crossinline] = ACTIONS(4970), + [anon_sym_expect] = ACTIONS(4970), + [anon_sym_actual] = ACTIONS(4970), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4972), + [sym_safe_nav] = ACTIONS(4972), [sym_multiline_comment] = ACTIONS(3), }, - [3514] = { - [aux_sym_nullable_type_repeat1] = STATE(3462), - [sym__alpha_identifier] = ACTIONS(4363), - [anon_sym_AT] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_as] = ACTIONS(4363), - [anon_sym_EQ] = ACTIONS(4363), - [anon_sym_LBRACE] = ACTIONS(4365), - [anon_sym_RBRACE] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_COMMA] = ACTIONS(4365), - [anon_sym_by] = ACTIONS(4363), - [anon_sym_LT] = ACTIONS(4363), - [anon_sym_GT] = ACTIONS(4363), - [anon_sym_where] = ACTIONS(4363), - [anon_sym_DOT] = ACTIONS(4363), - [anon_sym_SEMI] = ACTIONS(4365), - [anon_sym_get] = ACTIONS(4363), - [anon_sym_set] = ACTIONS(4363), - [sym__quest] = ACTIONS(6972), - [anon_sym_STAR] = ACTIONS(4363), - [sym_label] = ACTIONS(4365), - [anon_sym_in] = ACTIONS(4363), - [anon_sym_DOT_DOT] = ACTIONS(4365), - [anon_sym_QMARK_COLON] = ACTIONS(4365), - [anon_sym_AMP_AMP] = ACTIONS(4365), - [anon_sym_PIPE_PIPE] = ACTIONS(4365), - [anon_sym_else] = ACTIONS(4363), - [anon_sym_COLON_COLON] = ACTIONS(4365), - [anon_sym_PLUS_EQ] = ACTIONS(4365), - [anon_sym_DASH_EQ] = ACTIONS(4365), - [anon_sym_STAR_EQ] = ACTIONS(4365), - [anon_sym_SLASH_EQ] = ACTIONS(4365), - [anon_sym_PERCENT_EQ] = ACTIONS(4365), - [anon_sym_BANG_EQ] = ACTIONS(4363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), - [anon_sym_EQ_EQ] = ACTIONS(4363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), - [anon_sym_LT_EQ] = ACTIONS(4365), - [anon_sym_GT_EQ] = ACTIONS(4365), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(4363), - [anon_sym_BANGis] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4363), - [anon_sym_DASH] = ACTIONS(4363), - [anon_sym_SLASH] = ACTIONS(4363), - [anon_sym_PERCENT] = ACTIONS(4363), - [anon_sym_as_QMARK] = ACTIONS(4365), - [anon_sym_PLUS_PLUS] = ACTIONS(4365), - [anon_sym_DASH_DASH] = ACTIONS(4365), - [anon_sym_BANG_BANG] = ACTIONS(4365), - [anon_sym_suspend] = ACTIONS(4363), - [anon_sym_sealed] = ACTIONS(4363), - [anon_sym_annotation] = ACTIONS(4363), - [anon_sym_data] = ACTIONS(4363), - [anon_sym_inner] = ACTIONS(4363), - [anon_sym_value] = ACTIONS(4363), - [anon_sym_override] = ACTIONS(4363), - [anon_sym_lateinit] = ACTIONS(4363), - [anon_sym_public] = ACTIONS(4363), - [anon_sym_private] = ACTIONS(4363), - [anon_sym_internal] = ACTIONS(4363), - [anon_sym_protected] = ACTIONS(4363), - [anon_sym_tailrec] = ACTIONS(4363), - [anon_sym_operator] = ACTIONS(4363), - [anon_sym_infix] = ACTIONS(4363), - [anon_sym_inline] = ACTIONS(4363), - [anon_sym_external] = ACTIONS(4363), - [sym_property_modifier] = ACTIONS(4363), - [anon_sym_abstract] = ACTIONS(4363), - [anon_sym_final] = ACTIONS(4363), - [anon_sym_open] = ACTIONS(4363), - [anon_sym_vararg] = ACTIONS(4363), - [anon_sym_noinline] = ACTIONS(4363), - [anon_sym_crossinline] = ACTIONS(4363), - [anon_sym_expect] = ACTIONS(4363), - [anon_sym_actual] = ACTIONS(4363), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4365), - [sym__automatic_semicolon] = ACTIONS(4365), - [sym_safe_nav] = ACTIONS(4365), + [3527] = { + [sym__alpha_identifier] = ACTIONS(5209), + [anon_sym_AT] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_RBRACK] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5209), + [anon_sym_EQ] = ACTIONS(5209), + [anon_sym_LBRACE] = ACTIONS(5211), + [anon_sym_RBRACE] = ACTIONS(5211), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_RPAREN] = ACTIONS(5211), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_where] = ACTIONS(5209), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_SEMI] = ACTIONS(5211), + [anon_sym_get] = ACTIONS(5209), + [anon_sym_set] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5209), + [anon_sym_DASH_GT] = ACTIONS(5211), + [sym_label] = ACTIONS(5211), + [anon_sym_in] = ACTIONS(5209), + [anon_sym_while] = ACTIONS(5209), + [anon_sym_DOT_DOT] = ACTIONS(5211), + [anon_sym_QMARK_COLON] = ACTIONS(5211), + [anon_sym_AMP_AMP] = ACTIONS(5211), + [anon_sym_PIPE_PIPE] = ACTIONS(5211), + [anon_sym_else] = ACTIONS(5209), + [anon_sym_COLON_COLON] = ACTIONS(5211), + [anon_sym_PLUS_EQ] = ACTIONS(5211), + [anon_sym_DASH_EQ] = ACTIONS(5211), + [anon_sym_STAR_EQ] = ACTIONS(5211), + [anon_sym_SLASH_EQ] = ACTIONS(5211), + [anon_sym_PERCENT_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ] = ACTIONS(5209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5211), + [anon_sym_EQ_EQ] = ACTIONS(5209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5211), + [anon_sym_LT_EQ] = ACTIONS(5211), + [anon_sym_GT_EQ] = ACTIONS(5211), + [anon_sym_BANGin] = ACTIONS(5211), + [anon_sym_is] = ACTIONS(5209), + [anon_sym_BANGis] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_PERCENT] = ACTIONS(5209), + [anon_sym_as_QMARK] = ACTIONS(5211), + [anon_sym_PLUS_PLUS] = ACTIONS(5211), + [anon_sym_DASH_DASH] = ACTIONS(5211), + [anon_sym_BANG_BANG] = ACTIONS(5211), + [anon_sym_suspend] = ACTIONS(5209), + [anon_sym_sealed] = ACTIONS(5209), + [anon_sym_annotation] = ACTIONS(5209), + [anon_sym_data] = ACTIONS(5209), + [anon_sym_inner] = ACTIONS(5209), + [anon_sym_value] = ACTIONS(5209), + [anon_sym_override] = ACTIONS(5209), + [anon_sym_lateinit] = ACTIONS(5209), + [anon_sym_public] = ACTIONS(5209), + [anon_sym_private] = ACTIONS(5209), + [anon_sym_internal] = ACTIONS(5209), + [anon_sym_protected] = ACTIONS(5209), + [anon_sym_tailrec] = ACTIONS(5209), + [anon_sym_operator] = ACTIONS(5209), + [anon_sym_infix] = ACTIONS(5209), + [anon_sym_inline] = ACTIONS(5209), + [anon_sym_external] = ACTIONS(5209), + [sym_property_modifier] = ACTIONS(5209), + [anon_sym_abstract] = ACTIONS(5209), + [anon_sym_final] = ACTIONS(5209), + [anon_sym_open] = ACTIONS(5209), + [anon_sym_vararg] = ACTIONS(5209), + [anon_sym_noinline] = ACTIONS(5209), + [anon_sym_crossinline] = ACTIONS(5209), + [anon_sym_expect] = ACTIONS(5209), + [anon_sym_actual] = ACTIONS(5209), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5211), + [sym_safe_nav] = ACTIONS(5211), [sym_multiline_comment] = ACTIONS(3), }, - [3515] = { + [3528] = { + [sym__alpha_identifier] = ACTIONS(5213), + [anon_sym_AT] = ACTIONS(5215), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_RBRACK] = ACTIONS(5215), + [anon_sym_as] = ACTIONS(5213), + [anon_sym_EQ] = ACTIONS(5213), + [anon_sym_LBRACE] = ACTIONS(5215), + [anon_sym_RBRACE] = ACTIONS(5215), + [anon_sym_LPAREN] = ACTIONS(5215), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_RPAREN] = ACTIONS(5215), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_where] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(5213), + [anon_sym_SEMI] = ACTIONS(5215), + [anon_sym_get] = ACTIONS(5213), + [anon_sym_set] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5213), + [anon_sym_DASH_GT] = ACTIONS(5215), + [sym_label] = ACTIONS(5215), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_while] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5215), + [anon_sym_QMARK_COLON] = ACTIONS(5215), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(5215), + [anon_sym_else] = ACTIONS(5213), + [anon_sym_COLON_COLON] = ACTIONS(5215), + [anon_sym_PLUS_EQ] = ACTIONS(5215), + [anon_sym_DASH_EQ] = ACTIONS(5215), + [anon_sym_STAR_EQ] = ACTIONS(5215), + [anon_sym_SLASH_EQ] = ACTIONS(5215), + [anon_sym_PERCENT_EQ] = ACTIONS(5215), + [anon_sym_BANG_EQ] = ACTIONS(5213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5215), + [anon_sym_EQ_EQ] = ACTIONS(5213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5215), + [anon_sym_LT_EQ] = ACTIONS(5215), + [anon_sym_GT_EQ] = ACTIONS(5215), + [anon_sym_BANGin] = ACTIONS(5215), + [anon_sym_is] = ACTIONS(5213), + [anon_sym_BANGis] = ACTIONS(5215), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_PERCENT] = ACTIONS(5213), + [anon_sym_as_QMARK] = ACTIONS(5215), + [anon_sym_PLUS_PLUS] = ACTIONS(5215), + [anon_sym_DASH_DASH] = ACTIONS(5215), + [anon_sym_BANG_BANG] = ACTIONS(5215), + [anon_sym_suspend] = ACTIONS(5213), + [anon_sym_sealed] = ACTIONS(5213), + [anon_sym_annotation] = ACTIONS(5213), + [anon_sym_data] = ACTIONS(5213), + [anon_sym_inner] = ACTIONS(5213), + [anon_sym_value] = ACTIONS(5213), + [anon_sym_override] = ACTIONS(5213), + [anon_sym_lateinit] = ACTIONS(5213), + [anon_sym_public] = ACTIONS(5213), + [anon_sym_private] = ACTIONS(5213), + [anon_sym_internal] = ACTIONS(5213), + [anon_sym_protected] = ACTIONS(5213), + [anon_sym_tailrec] = ACTIONS(5213), + [anon_sym_operator] = ACTIONS(5213), + [anon_sym_infix] = ACTIONS(5213), + [anon_sym_inline] = ACTIONS(5213), + [anon_sym_external] = ACTIONS(5213), + [sym_property_modifier] = ACTIONS(5213), + [anon_sym_abstract] = ACTIONS(5213), + [anon_sym_final] = ACTIONS(5213), + [anon_sym_open] = ACTIONS(5213), + [anon_sym_vararg] = ACTIONS(5213), + [anon_sym_noinline] = ACTIONS(5213), + [anon_sym_crossinline] = ACTIONS(5213), + [anon_sym_expect] = ACTIONS(5213), + [anon_sym_actual] = ACTIONS(5213), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5215), + [sym_safe_nav] = ACTIONS(5215), + [sym_multiline_comment] = ACTIONS(3), + }, + [3529] = { + [aux_sym_type_constraints_repeat1] = STATE(3529), + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_EQ] = ACTIONS(4432), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(6890), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_object] = ACTIONS(4430), + [anon_sym_fun] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_this] = ACTIONS(4430), + [anon_sym_super] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4432), + [sym_label] = ACTIONS(4430), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_null] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_when] = ACTIONS(4430), + [anon_sym_try] = ACTIONS(4430), + [anon_sym_throw] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4432), + [anon_sym_continue_AT] = ACTIONS(4432), + [anon_sym_break_AT] = ACTIONS(4432), + [anon_sym_this_AT] = ACTIONS(4432), + [anon_sym_super_AT] = ACTIONS(4432), + [sym_real_literal] = ACTIONS(4432), + [sym_integer_literal] = ACTIONS(4430), + [sym_hex_literal] = ACTIONS(4432), + [sym_bin_literal] = ACTIONS(4432), + [anon_sym_true] = ACTIONS(4430), + [anon_sym_false] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4432), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4432), + }, + [3530] = { + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_RBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4147), + [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_DASH_GT] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + }, + [3531] = { + [sym__alpha_identifier] = ACTIONS(5187), + [anon_sym_AT] = ACTIONS(5189), + [anon_sym_LBRACK] = ACTIONS(5189), + [anon_sym_RBRACK] = ACTIONS(5189), + [anon_sym_as] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5189), + [anon_sym_RBRACE] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5189), + [anon_sym_COMMA] = ACTIONS(5189), + [anon_sym_RPAREN] = ACTIONS(5189), + [anon_sym_LT] = ACTIONS(5187), + [anon_sym_GT] = ACTIONS(5187), + [anon_sym_where] = ACTIONS(5187), + [anon_sym_DOT] = ACTIONS(5187), + [anon_sym_SEMI] = ACTIONS(5189), + [anon_sym_get] = ACTIONS(5187), + [anon_sym_set] = ACTIONS(5187), + [anon_sym_STAR] = ACTIONS(5187), + [anon_sym_DASH_GT] = ACTIONS(5189), + [sym_label] = ACTIONS(5189), + [anon_sym_in] = ACTIONS(5187), + [anon_sym_while] = ACTIONS(5187), + [anon_sym_DOT_DOT] = ACTIONS(5189), + [anon_sym_QMARK_COLON] = ACTIONS(5189), + [anon_sym_AMP_AMP] = ACTIONS(5189), + [anon_sym_PIPE_PIPE] = ACTIONS(5189), + [anon_sym_else] = ACTIONS(5187), + [anon_sym_COLON_COLON] = ACTIONS(5189), + [anon_sym_PLUS_EQ] = ACTIONS(5189), + [anon_sym_DASH_EQ] = ACTIONS(5189), + [anon_sym_STAR_EQ] = ACTIONS(5189), + [anon_sym_SLASH_EQ] = ACTIONS(5189), + [anon_sym_PERCENT_EQ] = ACTIONS(5189), + [anon_sym_BANG_EQ] = ACTIONS(5187), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5189), + [anon_sym_EQ_EQ] = ACTIONS(5187), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5189), + [anon_sym_LT_EQ] = ACTIONS(5189), + [anon_sym_GT_EQ] = ACTIONS(5189), + [anon_sym_BANGin] = ACTIONS(5189), + [anon_sym_is] = ACTIONS(5187), + [anon_sym_BANGis] = ACTIONS(5189), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5187), + [anon_sym_PERCENT] = ACTIONS(5187), + [anon_sym_as_QMARK] = ACTIONS(5189), + [anon_sym_PLUS_PLUS] = ACTIONS(5189), + [anon_sym_DASH_DASH] = ACTIONS(5189), + [anon_sym_BANG_BANG] = ACTIONS(5189), + [anon_sym_suspend] = ACTIONS(5187), + [anon_sym_sealed] = ACTIONS(5187), + [anon_sym_annotation] = ACTIONS(5187), + [anon_sym_data] = ACTIONS(5187), + [anon_sym_inner] = ACTIONS(5187), + [anon_sym_value] = ACTIONS(5187), + [anon_sym_override] = ACTIONS(5187), + [anon_sym_lateinit] = ACTIONS(5187), + [anon_sym_public] = ACTIONS(5187), + [anon_sym_private] = ACTIONS(5187), + [anon_sym_internal] = ACTIONS(5187), + [anon_sym_protected] = ACTIONS(5187), + [anon_sym_tailrec] = ACTIONS(5187), + [anon_sym_operator] = ACTIONS(5187), + [anon_sym_infix] = ACTIONS(5187), + [anon_sym_inline] = ACTIONS(5187), + [anon_sym_external] = ACTIONS(5187), + [sym_property_modifier] = ACTIONS(5187), + [anon_sym_abstract] = ACTIONS(5187), + [anon_sym_final] = ACTIONS(5187), + [anon_sym_open] = ACTIONS(5187), + [anon_sym_vararg] = ACTIONS(5187), + [anon_sym_noinline] = ACTIONS(5187), + [anon_sym_crossinline] = ACTIONS(5187), + [anon_sym_expect] = ACTIONS(5187), + [anon_sym_actual] = ACTIONS(5187), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5189), + [sym_safe_nav] = ACTIONS(5189), + [sym_multiline_comment] = ACTIONS(3), + }, + [3532] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(6893), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [3533] = { [sym__alpha_identifier] = ACTIONS(5219), [anon_sym_AT] = ACTIONS(5221), [anon_sym_LBRACK] = ACTIONS(5221), @@ -407669,688 +406908,1767 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5221), [sym_multiline_comment] = ACTIONS(3), }, - [3516] = { - [sym__alpha_identifier] = ACTIONS(5231), - [anon_sym_AT] = ACTIONS(5233), - [anon_sym_LBRACK] = ACTIONS(5233), - [anon_sym_RBRACK] = ACTIONS(5233), - [anon_sym_as] = ACTIONS(5231), - [anon_sym_EQ] = ACTIONS(5231), - [anon_sym_LBRACE] = ACTIONS(5233), - [anon_sym_RBRACE] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5233), - [anon_sym_COMMA] = ACTIONS(5233), - [anon_sym_RPAREN] = ACTIONS(5233), - [anon_sym_LT] = ACTIONS(5231), - [anon_sym_GT] = ACTIONS(5231), - [anon_sym_where] = ACTIONS(5231), - [anon_sym_DOT] = ACTIONS(5231), - [anon_sym_SEMI] = ACTIONS(5233), - [anon_sym_get] = ACTIONS(5231), - [anon_sym_set] = ACTIONS(5231), - [anon_sym_STAR] = ACTIONS(5231), - [anon_sym_DASH_GT] = ACTIONS(5233), - [sym_label] = ACTIONS(5233), - [anon_sym_in] = ACTIONS(5231), - [anon_sym_while] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5233), - [anon_sym_AMP_AMP] = ACTIONS(5233), - [anon_sym_PIPE_PIPE] = ACTIONS(5233), - [anon_sym_else] = ACTIONS(5231), - [anon_sym_COLON_COLON] = ACTIONS(5233), - [anon_sym_PLUS_EQ] = ACTIONS(5233), - [anon_sym_DASH_EQ] = ACTIONS(5233), - [anon_sym_STAR_EQ] = ACTIONS(5233), - [anon_sym_SLASH_EQ] = ACTIONS(5233), - [anon_sym_PERCENT_EQ] = ACTIONS(5233), - [anon_sym_BANG_EQ] = ACTIONS(5231), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5233), - [anon_sym_EQ_EQ] = ACTIONS(5231), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5233), - [anon_sym_LT_EQ] = ACTIONS(5233), - [anon_sym_GT_EQ] = ACTIONS(5233), - [anon_sym_BANGin] = ACTIONS(5233), - [anon_sym_is] = ACTIONS(5231), - [anon_sym_BANGis] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_SLASH] = ACTIONS(5231), - [anon_sym_PERCENT] = ACTIONS(5231), - [anon_sym_as_QMARK] = ACTIONS(5233), - [anon_sym_PLUS_PLUS] = ACTIONS(5233), - [anon_sym_DASH_DASH] = ACTIONS(5233), - [anon_sym_BANG_BANG] = ACTIONS(5233), - [anon_sym_suspend] = ACTIONS(5231), - [anon_sym_sealed] = ACTIONS(5231), - [anon_sym_annotation] = ACTIONS(5231), - [anon_sym_data] = ACTIONS(5231), - [anon_sym_inner] = ACTIONS(5231), - [anon_sym_value] = ACTIONS(5231), - [anon_sym_override] = ACTIONS(5231), - [anon_sym_lateinit] = ACTIONS(5231), - [anon_sym_public] = ACTIONS(5231), - [anon_sym_private] = ACTIONS(5231), - [anon_sym_internal] = ACTIONS(5231), - [anon_sym_protected] = ACTIONS(5231), - [anon_sym_tailrec] = ACTIONS(5231), - [anon_sym_operator] = ACTIONS(5231), - [anon_sym_infix] = ACTIONS(5231), - [anon_sym_inline] = ACTIONS(5231), - [anon_sym_external] = ACTIONS(5231), - [sym_property_modifier] = ACTIONS(5231), - [anon_sym_abstract] = ACTIONS(5231), - [anon_sym_final] = ACTIONS(5231), - [anon_sym_open] = ACTIONS(5231), - [anon_sym_vararg] = ACTIONS(5231), - [anon_sym_noinline] = ACTIONS(5231), - [anon_sym_crossinline] = ACTIONS(5231), - [anon_sym_expect] = ACTIONS(5231), - [anon_sym_actual] = ACTIONS(5231), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5233), - [sym_safe_nav] = ACTIONS(5233), - [sym_multiline_comment] = ACTIONS(3), - }, - [3517] = { - [sym__alpha_identifier] = ACTIONS(4876), - [anon_sym_AT] = ACTIONS(4878), - [anon_sym_LBRACK] = ACTIONS(4878), - [anon_sym_RBRACK] = ACTIONS(4878), - [anon_sym_as] = ACTIONS(4876), - [anon_sym_EQ] = ACTIONS(4876), - [anon_sym_LBRACE] = ACTIONS(4878), - [anon_sym_RBRACE] = ACTIONS(4878), - [anon_sym_LPAREN] = ACTIONS(4878), - [anon_sym_COMMA] = ACTIONS(4878), - [anon_sym_RPAREN] = ACTIONS(4878), - [anon_sym_LT] = ACTIONS(4876), - [anon_sym_GT] = ACTIONS(4876), - [anon_sym_where] = ACTIONS(4876), - [anon_sym_DOT] = ACTIONS(4876), - [anon_sym_SEMI] = ACTIONS(4878), - [anon_sym_get] = ACTIONS(4876), - [anon_sym_set] = ACTIONS(4876), - [anon_sym_STAR] = ACTIONS(4876), - [anon_sym_DASH_GT] = ACTIONS(4878), - [sym_label] = ACTIONS(4878), - [anon_sym_in] = ACTIONS(4876), - [anon_sym_while] = ACTIONS(4876), - [anon_sym_DOT_DOT] = ACTIONS(4878), - [anon_sym_QMARK_COLON] = ACTIONS(4878), - [anon_sym_AMP_AMP] = ACTIONS(4878), - [anon_sym_PIPE_PIPE] = ACTIONS(4878), - [anon_sym_else] = ACTIONS(4876), - [anon_sym_COLON_COLON] = ACTIONS(4878), - [anon_sym_PLUS_EQ] = ACTIONS(4878), - [anon_sym_DASH_EQ] = ACTIONS(4878), - [anon_sym_STAR_EQ] = ACTIONS(4878), - [anon_sym_SLASH_EQ] = ACTIONS(4878), - [anon_sym_PERCENT_EQ] = ACTIONS(4878), - [anon_sym_BANG_EQ] = ACTIONS(4876), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4878), - [anon_sym_EQ_EQ] = ACTIONS(4876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4878), - [anon_sym_LT_EQ] = ACTIONS(4878), - [anon_sym_GT_EQ] = ACTIONS(4878), - [anon_sym_BANGin] = ACTIONS(4878), - [anon_sym_is] = ACTIONS(4876), - [anon_sym_BANGis] = ACTIONS(4878), - [anon_sym_PLUS] = ACTIONS(4876), - [anon_sym_DASH] = ACTIONS(4876), - [anon_sym_SLASH] = ACTIONS(4876), - [anon_sym_PERCENT] = ACTIONS(4876), - [anon_sym_as_QMARK] = ACTIONS(4878), - [anon_sym_PLUS_PLUS] = ACTIONS(4878), - [anon_sym_DASH_DASH] = ACTIONS(4878), - [anon_sym_BANG_BANG] = ACTIONS(4878), - [anon_sym_suspend] = ACTIONS(4876), - [anon_sym_sealed] = ACTIONS(4876), - [anon_sym_annotation] = ACTIONS(4876), - [anon_sym_data] = ACTIONS(4876), - [anon_sym_inner] = ACTIONS(4876), - [anon_sym_value] = ACTIONS(4876), - [anon_sym_override] = ACTIONS(4876), - [anon_sym_lateinit] = ACTIONS(4876), - [anon_sym_public] = ACTIONS(4876), - [anon_sym_private] = ACTIONS(4876), - [anon_sym_internal] = ACTIONS(4876), - [anon_sym_protected] = ACTIONS(4876), - [anon_sym_tailrec] = ACTIONS(4876), - [anon_sym_operator] = ACTIONS(4876), - [anon_sym_infix] = ACTIONS(4876), - [anon_sym_inline] = ACTIONS(4876), - [anon_sym_external] = ACTIONS(4876), - [sym_property_modifier] = ACTIONS(4876), - [anon_sym_abstract] = ACTIONS(4876), - [anon_sym_final] = ACTIONS(4876), - [anon_sym_open] = ACTIONS(4876), - [anon_sym_vararg] = ACTIONS(4876), - [anon_sym_noinline] = ACTIONS(4876), - [anon_sym_crossinline] = ACTIONS(4876), - [anon_sym_expect] = ACTIONS(4876), - [anon_sym_actual] = ACTIONS(4876), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4878), - [sym_safe_nav] = ACTIONS(4878), - [sym_multiline_comment] = ACTIONS(3), - }, - [3518] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(6974), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), - }, - [3519] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), + [3534] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(6897), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), + }, + [3535] = { + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_RBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(4635), + [anon_sym_RPAREN] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [anon_sym_DASH_GT] = ACTIONS(4635), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_while] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + }, + [3536] = { + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(1790), + [anon_sym_sealed] = ACTIONS(1790), + [anon_sym_annotation] = ACTIONS(1790), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_override] = ACTIONS(1790), + [anon_sym_lateinit] = ACTIONS(1790), + [anon_sym_public] = ACTIONS(1790), + [anon_sym_private] = ACTIONS(1790), + [anon_sym_internal] = ACTIONS(1790), + [anon_sym_protected] = ACTIONS(1790), + [anon_sym_tailrec] = ACTIONS(1790), + [anon_sym_operator] = ACTIONS(1790), + [anon_sym_infix] = ACTIONS(1790), + [anon_sym_inline] = ACTIONS(1790), + [anon_sym_external] = ACTIONS(1790), + [sym_property_modifier] = ACTIONS(1790), + [anon_sym_abstract] = ACTIONS(1790), + [anon_sym_final] = ACTIONS(1790), + [anon_sym_open] = ACTIONS(1790), + [anon_sym_vararg] = ACTIONS(1790), + [anon_sym_noinline] = ACTIONS(1790), + [anon_sym_crossinline] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [3537] = { + [sym__alpha_identifier] = ACTIONS(5159), + [anon_sym_AT] = ACTIONS(5161), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym_RBRACK] = ACTIONS(5161), + [anon_sym_as] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5161), + [anon_sym_RBRACE] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5161), + [anon_sym_COMMA] = ACTIONS(5161), + [anon_sym_RPAREN] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5159), + [anon_sym_GT] = ACTIONS(5159), + [anon_sym_where] = ACTIONS(5159), + [anon_sym_DOT] = ACTIONS(5159), + [anon_sym_SEMI] = ACTIONS(5161), + [anon_sym_get] = ACTIONS(5159), + [anon_sym_set] = ACTIONS(5159), + [anon_sym_STAR] = ACTIONS(5159), + [anon_sym_DASH_GT] = ACTIONS(5161), + [sym_label] = ACTIONS(5161), + [anon_sym_in] = ACTIONS(5159), + [anon_sym_while] = ACTIONS(5159), + [anon_sym_DOT_DOT] = ACTIONS(5161), + [anon_sym_QMARK_COLON] = ACTIONS(5161), + [anon_sym_AMP_AMP] = ACTIONS(5161), + [anon_sym_PIPE_PIPE] = ACTIONS(5161), + [anon_sym_else] = ACTIONS(5159), + [anon_sym_COLON_COLON] = ACTIONS(5161), + [anon_sym_PLUS_EQ] = ACTIONS(5161), + [anon_sym_DASH_EQ] = ACTIONS(5161), + [anon_sym_STAR_EQ] = ACTIONS(5161), + [anon_sym_SLASH_EQ] = ACTIONS(5161), + [anon_sym_PERCENT_EQ] = ACTIONS(5161), + [anon_sym_BANG_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5161), + [anon_sym_EQ_EQ] = ACTIONS(5159), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5161), + [anon_sym_LT_EQ] = ACTIONS(5161), + [anon_sym_GT_EQ] = ACTIONS(5161), + [anon_sym_BANGin] = ACTIONS(5161), + [anon_sym_is] = ACTIONS(5159), + [anon_sym_BANGis] = ACTIONS(5161), + [anon_sym_PLUS] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5159), + [anon_sym_SLASH] = ACTIONS(5159), + [anon_sym_PERCENT] = ACTIONS(5159), + [anon_sym_as_QMARK] = ACTIONS(5161), + [anon_sym_PLUS_PLUS] = ACTIONS(5161), + [anon_sym_DASH_DASH] = ACTIONS(5161), + [anon_sym_BANG_BANG] = ACTIONS(5161), + [anon_sym_suspend] = ACTIONS(5159), + [anon_sym_sealed] = ACTIONS(5159), + [anon_sym_annotation] = ACTIONS(5159), + [anon_sym_data] = ACTIONS(5159), + [anon_sym_inner] = ACTIONS(5159), + [anon_sym_value] = ACTIONS(5159), + [anon_sym_override] = ACTIONS(5159), + [anon_sym_lateinit] = ACTIONS(5159), + [anon_sym_public] = ACTIONS(5159), + [anon_sym_private] = ACTIONS(5159), + [anon_sym_internal] = ACTIONS(5159), + [anon_sym_protected] = ACTIONS(5159), + [anon_sym_tailrec] = ACTIONS(5159), + [anon_sym_operator] = ACTIONS(5159), + [anon_sym_infix] = ACTIONS(5159), + [anon_sym_inline] = ACTIONS(5159), + [anon_sym_external] = ACTIONS(5159), + [sym_property_modifier] = ACTIONS(5159), + [anon_sym_abstract] = ACTIONS(5159), + [anon_sym_final] = ACTIONS(5159), + [anon_sym_open] = ACTIONS(5159), + [anon_sym_vararg] = ACTIONS(5159), + [anon_sym_noinline] = ACTIONS(5159), + [anon_sym_crossinline] = ACTIONS(5159), + [anon_sym_expect] = ACTIONS(5159), + [anon_sym_actual] = ACTIONS(5159), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5161), + [sym_safe_nav] = ACTIONS(5161), + [sym_multiline_comment] = ACTIONS(3), + }, + [3538] = { + [sym__alpha_identifier] = ACTIONS(4313), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_as] = ACTIONS(4313), + [anon_sym_EQ] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_RBRACE] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_COMMA] = ACTIONS(4315), + [anon_sym_by] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4313), + [anon_sym_GT] = ACTIONS(4313), + [anon_sym_where] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym_get] = ACTIONS(4313), + [anon_sym_set] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4313), + [sym__quest] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4313), + [sym_label] = ACTIONS(4315), + [anon_sym_in] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_QMARK_COLON] = ACTIONS(4315), + [anon_sym_AMP_AMP] = ACTIONS(4315), + [anon_sym_PIPE_PIPE] = ACTIONS(4315), + [anon_sym_else] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_PLUS_EQ] = ACTIONS(4315), + [anon_sym_DASH_EQ] = ACTIONS(4315), + [anon_sym_STAR_EQ] = ACTIONS(4315), + [anon_sym_SLASH_EQ] = ACTIONS(4315), + [anon_sym_PERCENT_EQ] = ACTIONS(4315), + [anon_sym_BANG_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4315), + [anon_sym_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4315), + [anon_sym_LT_EQ] = ACTIONS(4315), + [anon_sym_GT_EQ] = ACTIONS(4315), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(4313), + [anon_sym_BANGis] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_SLASH] = ACTIONS(4313), + [anon_sym_PERCENT] = ACTIONS(4313), + [anon_sym_as_QMARK] = ACTIONS(4315), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_BANG_BANG] = ACTIONS(4315), + [anon_sym_suspend] = ACTIONS(4313), + [anon_sym_sealed] = ACTIONS(4313), + [anon_sym_annotation] = ACTIONS(4313), + [anon_sym_data] = ACTIONS(4313), + [anon_sym_inner] = ACTIONS(4313), + [anon_sym_value] = ACTIONS(4313), + [anon_sym_override] = ACTIONS(4313), + [anon_sym_lateinit] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_internal] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_tailrec] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_infix] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym_external] = ACTIONS(4313), + [sym_property_modifier] = ACTIONS(4313), + [anon_sym_abstract] = ACTIONS(4313), + [anon_sym_final] = ACTIONS(4313), + [anon_sym_open] = ACTIONS(4313), + [anon_sym_vararg] = ACTIONS(4313), + [anon_sym_noinline] = ACTIONS(4313), + [anon_sym_crossinline] = ACTIONS(4313), + [anon_sym_expect] = ACTIONS(4313), + [anon_sym_actual] = ACTIONS(4313), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4315), + [sym__automatic_semicolon] = ACTIONS(4315), + [sym_safe_nav] = ACTIONS(4315), + [sym_multiline_comment] = ACTIONS(3), + }, + [3539] = { + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(4218), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + }, + [3540] = { + [sym__alpha_identifier] = ACTIONS(4918), + [anon_sym_AT] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_RBRACK] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4918), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4918), + [anon_sym_where] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_get] = ACTIONS(4918), + [anon_sym_set] = ACTIONS(4918), + [anon_sym_STAR] = ACTIONS(4918), + [anon_sym_DASH_GT] = ACTIONS(4920), + [sym_label] = ACTIONS(4920), + [anon_sym_in] = ACTIONS(4918), + [anon_sym_while] = ACTIONS(4918), + [anon_sym_DOT_DOT] = ACTIONS(4920), + [anon_sym_QMARK_COLON] = ACTIONS(4920), + [anon_sym_AMP_AMP] = ACTIONS(4920), + [anon_sym_PIPE_PIPE] = ACTIONS(4920), + [anon_sym_else] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_PLUS_EQ] = ACTIONS(4920), + [anon_sym_DASH_EQ] = ACTIONS(4920), + [anon_sym_STAR_EQ] = ACTIONS(4920), + [anon_sym_SLASH_EQ] = ACTIONS(4920), + [anon_sym_PERCENT_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4918), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ] = ACTIONS(4918), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_BANGin] = ACTIONS(4920), + [anon_sym_is] = ACTIONS(4918), + [anon_sym_BANGis] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4918), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4918), + [anon_sym_PERCENT] = ACTIONS(4918), + [anon_sym_as_QMARK] = ACTIONS(4920), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_BANG_BANG] = ACTIONS(4920), + [anon_sym_suspend] = ACTIONS(4918), + [anon_sym_sealed] = ACTIONS(4918), + [anon_sym_annotation] = ACTIONS(4918), + [anon_sym_data] = ACTIONS(4918), + [anon_sym_inner] = ACTIONS(4918), + [anon_sym_value] = ACTIONS(4918), + [anon_sym_override] = ACTIONS(4918), + [anon_sym_lateinit] = ACTIONS(4918), + [anon_sym_public] = ACTIONS(4918), + [anon_sym_private] = ACTIONS(4918), + [anon_sym_internal] = ACTIONS(4918), + [anon_sym_protected] = ACTIONS(4918), + [anon_sym_tailrec] = ACTIONS(4918), + [anon_sym_operator] = ACTIONS(4918), + [anon_sym_infix] = ACTIONS(4918), + [anon_sym_inline] = ACTIONS(4918), + [anon_sym_external] = ACTIONS(4918), + [sym_property_modifier] = ACTIONS(4918), + [anon_sym_abstract] = ACTIONS(4918), + [anon_sym_final] = ACTIONS(4918), + [anon_sym_open] = ACTIONS(4918), + [anon_sym_vararg] = ACTIONS(4918), + [anon_sym_noinline] = ACTIONS(4918), + [anon_sym_crossinline] = ACTIONS(4918), + [anon_sym_expect] = ACTIONS(4918), + [anon_sym_actual] = ACTIONS(4918), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4920), + [sym_safe_nav] = ACTIONS(4920), + [sym_multiline_comment] = ACTIONS(3), + }, + [3541] = { + [sym__alpha_identifier] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4672), + [anon_sym_RBRACE] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4672), + [anon_sym_COMMA] = ACTIONS(4672), + [anon_sym_by] = ACTIONS(4670), + [anon_sym_where] = ACTIONS(4670), + [anon_sym_object] = ACTIONS(4670), + [anon_sym_fun] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4672), + [anon_sym_get] = ACTIONS(4670), + [anon_sym_set] = ACTIONS(4670), + [anon_sym_this] = ACTIONS(4670), + [anon_sym_super] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4672), + [sym_label] = ACTIONS(4670), + [anon_sym_in] = ACTIONS(4670), + [anon_sym_null] = ACTIONS(4670), + [anon_sym_if] = ACTIONS(4670), + [anon_sym_else] = ACTIONS(4670), + [anon_sym_when] = ACTIONS(4670), + [anon_sym_try] = ACTIONS(4670), + [anon_sym_throw] = ACTIONS(4670), + [anon_sym_return] = ACTIONS(4670), + [anon_sym_continue] = ACTIONS(4670), + [anon_sym_break] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_BANGin] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(4670), + [anon_sym_BANGis] = ACTIONS(4672), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_PLUS_PLUS] = ACTIONS(4672), + [anon_sym_DASH_DASH] = ACTIONS(4672), + [anon_sym_BANG] = ACTIONS(4670), + [anon_sym_suspend] = ACTIONS(4670), + [anon_sym_sealed] = ACTIONS(4670), + [anon_sym_annotation] = ACTIONS(4670), + [anon_sym_data] = ACTIONS(4670), + [anon_sym_inner] = ACTIONS(4670), + [anon_sym_value] = ACTIONS(4670), + [anon_sym_override] = ACTIONS(4670), + [anon_sym_lateinit] = ACTIONS(4670), + [anon_sym_public] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4670), + [anon_sym_internal] = ACTIONS(4670), + [anon_sym_protected] = ACTIONS(4670), + [anon_sym_tailrec] = ACTIONS(4670), + [anon_sym_operator] = ACTIONS(4670), + [anon_sym_infix] = ACTIONS(4670), + [anon_sym_inline] = ACTIONS(4670), + [anon_sym_external] = ACTIONS(4670), + [sym_property_modifier] = ACTIONS(4670), + [anon_sym_abstract] = ACTIONS(4670), + [anon_sym_final] = ACTIONS(4670), + [anon_sym_open] = ACTIONS(4670), + [anon_sym_vararg] = ACTIONS(4670), + [anon_sym_noinline] = ACTIONS(4670), + [anon_sym_crossinline] = ACTIONS(4670), + [anon_sym_expect] = ACTIONS(4670), + [anon_sym_actual] = ACTIONS(4670), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4672), + [anon_sym_continue_AT] = ACTIONS(4672), + [anon_sym_break_AT] = ACTIONS(4672), + [anon_sym_this_AT] = ACTIONS(4672), + [anon_sym_super_AT] = ACTIONS(4672), + [sym_real_literal] = ACTIONS(4672), + [sym_integer_literal] = ACTIONS(4670), + [sym_hex_literal] = ACTIONS(4672), + [sym_bin_literal] = ACTIONS(4672), + [anon_sym_true] = ACTIONS(4670), + [anon_sym_false] = ACTIONS(4670), + [anon_sym_SQUOTE] = ACTIONS(4672), + [sym__backtick_identifier] = ACTIONS(4672), + [sym__automatic_semicolon] = ACTIONS(4672), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4672), + }, + [3542] = { + [sym__alpha_identifier] = ACTIONS(5163), + [anon_sym_AT] = ACTIONS(5165), + [anon_sym_LBRACK] = ACTIONS(5165), + [anon_sym_RBRACK] = ACTIONS(5165), + [anon_sym_as] = ACTIONS(5163), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5165), + [anon_sym_RBRACE] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5165), + [anon_sym_COMMA] = ACTIONS(5165), + [anon_sym_RPAREN] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5163), + [anon_sym_GT] = ACTIONS(5163), + [anon_sym_where] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5163), + [anon_sym_SEMI] = ACTIONS(5165), + [anon_sym_get] = ACTIONS(5163), + [anon_sym_set] = ACTIONS(5163), + [anon_sym_STAR] = ACTIONS(5163), + [anon_sym_DASH_GT] = ACTIONS(5165), + [sym_label] = ACTIONS(5165), + [anon_sym_in] = ACTIONS(5163), + [anon_sym_while] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_QMARK_COLON] = ACTIONS(5165), + [anon_sym_AMP_AMP] = ACTIONS(5165), + [anon_sym_PIPE_PIPE] = ACTIONS(5165), + [anon_sym_else] = ACTIONS(5163), + [anon_sym_COLON_COLON] = ACTIONS(5165), + [anon_sym_PLUS_EQ] = ACTIONS(5165), + [anon_sym_DASH_EQ] = ACTIONS(5165), + [anon_sym_STAR_EQ] = ACTIONS(5165), + [anon_sym_SLASH_EQ] = ACTIONS(5165), + [anon_sym_PERCENT_EQ] = ACTIONS(5165), + [anon_sym_BANG_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5165), + [anon_sym_EQ_EQ] = ACTIONS(5163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5165), + [anon_sym_LT_EQ] = ACTIONS(5165), + [anon_sym_GT_EQ] = ACTIONS(5165), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(5163), + [anon_sym_BANGis] = ACTIONS(5165), + [anon_sym_PLUS] = ACTIONS(5163), + [anon_sym_DASH] = ACTIONS(5163), + [anon_sym_SLASH] = ACTIONS(5163), + [anon_sym_PERCENT] = ACTIONS(5163), + [anon_sym_as_QMARK] = ACTIONS(5165), + [anon_sym_PLUS_PLUS] = ACTIONS(5165), + [anon_sym_DASH_DASH] = ACTIONS(5165), + [anon_sym_BANG_BANG] = ACTIONS(5165), + [anon_sym_suspend] = ACTIONS(5163), + [anon_sym_sealed] = ACTIONS(5163), + [anon_sym_annotation] = ACTIONS(5163), + [anon_sym_data] = ACTIONS(5163), + [anon_sym_inner] = ACTIONS(5163), + [anon_sym_value] = ACTIONS(5163), + [anon_sym_override] = ACTIONS(5163), + [anon_sym_lateinit] = ACTIONS(5163), + [anon_sym_public] = ACTIONS(5163), + [anon_sym_private] = ACTIONS(5163), + [anon_sym_internal] = ACTIONS(5163), + [anon_sym_protected] = ACTIONS(5163), + [anon_sym_tailrec] = ACTIONS(5163), + [anon_sym_operator] = ACTIONS(5163), + [anon_sym_infix] = ACTIONS(5163), + [anon_sym_inline] = ACTIONS(5163), + [anon_sym_external] = ACTIONS(5163), + [sym_property_modifier] = ACTIONS(5163), + [anon_sym_abstract] = ACTIONS(5163), + [anon_sym_final] = ACTIONS(5163), + [anon_sym_open] = ACTIONS(5163), + [anon_sym_vararg] = ACTIONS(5163), + [anon_sym_noinline] = ACTIONS(5163), + [anon_sym_crossinline] = ACTIONS(5163), + [anon_sym_expect] = ACTIONS(5163), + [anon_sym_actual] = ACTIONS(5163), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5165), + [sym_safe_nav] = ACTIONS(5165), + [sym_multiline_comment] = ACTIONS(3), + }, + [3543] = { + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_RBRACK] = ACTIONS(4357), [anon_sym_as] = ACTIONS(4355), [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(6978), + [anon_sym_LBRACE] = ACTIONS(4357), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_RPAREN] = ACTIONS(4357), [anon_sym_LT] = ACTIONS(4355), [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4355), [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [anon_sym_DASH_GT] = ACTIONS(4357), + [sym_label] = ACTIONS(4357), [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), + [anon_sym_while] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), [anon_sym_SLASH] = ACTIONS(4355), [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), + [sym_multiline_comment] = ACTIONS(3), }, - [3520] = { - [sym__alpha_identifier] = ACTIONS(5227), - [anon_sym_AT] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [anon_sym_RBRACK] = ACTIONS(5229), - [anon_sym_as] = ACTIONS(5227), - [anon_sym_EQ] = ACTIONS(5227), - [anon_sym_LBRACE] = ACTIONS(5229), - [anon_sym_RBRACE] = ACTIONS(5229), - [anon_sym_LPAREN] = ACTIONS(5229), - [anon_sym_COMMA] = ACTIONS(5229), - [anon_sym_RPAREN] = ACTIONS(5229), - [anon_sym_LT] = ACTIONS(5227), - [anon_sym_GT] = ACTIONS(5227), - [anon_sym_where] = ACTIONS(5227), - [anon_sym_DOT] = ACTIONS(5227), - [anon_sym_SEMI] = ACTIONS(5229), - [anon_sym_get] = ACTIONS(5227), - [anon_sym_set] = ACTIONS(5227), - [anon_sym_STAR] = ACTIONS(5227), - [anon_sym_DASH_GT] = ACTIONS(5229), - [sym_label] = ACTIONS(5229), - [anon_sym_in] = ACTIONS(5227), - [anon_sym_while] = ACTIONS(5227), - [anon_sym_DOT_DOT] = ACTIONS(5229), - [anon_sym_QMARK_COLON] = ACTIONS(5229), - [anon_sym_AMP_AMP] = ACTIONS(5229), - [anon_sym_PIPE_PIPE] = ACTIONS(5229), - [anon_sym_else] = ACTIONS(5227), - [anon_sym_COLON_COLON] = ACTIONS(5229), - [anon_sym_PLUS_EQ] = ACTIONS(5229), - [anon_sym_DASH_EQ] = ACTIONS(5229), - [anon_sym_STAR_EQ] = ACTIONS(5229), - [anon_sym_SLASH_EQ] = ACTIONS(5229), - [anon_sym_PERCENT_EQ] = ACTIONS(5229), - [anon_sym_BANG_EQ] = ACTIONS(5227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5229), - [anon_sym_EQ_EQ] = ACTIONS(5227), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5229), - [anon_sym_LT_EQ] = ACTIONS(5229), - [anon_sym_GT_EQ] = ACTIONS(5229), - [anon_sym_BANGin] = ACTIONS(5229), - [anon_sym_is] = ACTIONS(5227), - [anon_sym_BANGis] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5227), - [anon_sym_DASH] = ACTIONS(5227), - [anon_sym_SLASH] = ACTIONS(5227), - [anon_sym_PERCENT] = ACTIONS(5227), - [anon_sym_as_QMARK] = ACTIONS(5229), - [anon_sym_PLUS_PLUS] = ACTIONS(5229), - [anon_sym_DASH_DASH] = ACTIONS(5229), - [anon_sym_BANG_BANG] = ACTIONS(5229), - [anon_sym_suspend] = ACTIONS(5227), - [anon_sym_sealed] = ACTIONS(5227), - [anon_sym_annotation] = ACTIONS(5227), - [anon_sym_data] = ACTIONS(5227), - [anon_sym_inner] = ACTIONS(5227), - [anon_sym_value] = ACTIONS(5227), - [anon_sym_override] = ACTIONS(5227), - [anon_sym_lateinit] = ACTIONS(5227), - [anon_sym_public] = ACTIONS(5227), - [anon_sym_private] = ACTIONS(5227), - [anon_sym_internal] = ACTIONS(5227), - [anon_sym_protected] = ACTIONS(5227), - [anon_sym_tailrec] = ACTIONS(5227), - [anon_sym_operator] = ACTIONS(5227), - [anon_sym_infix] = ACTIONS(5227), - [anon_sym_inline] = ACTIONS(5227), - [anon_sym_external] = ACTIONS(5227), - [sym_property_modifier] = ACTIONS(5227), - [anon_sym_abstract] = ACTIONS(5227), - [anon_sym_final] = ACTIONS(5227), - [anon_sym_open] = ACTIONS(5227), - [anon_sym_vararg] = ACTIONS(5227), - [anon_sym_noinline] = ACTIONS(5227), - [anon_sym_crossinline] = ACTIONS(5227), - [anon_sym_expect] = ACTIONS(5227), - [anon_sym_actual] = ACTIONS(5227), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5229), - [sym_safe_nav] = ACTIONS(5229), + [3544] = { + [sym__alpha_identifier] = ACTIONS(5107), + [anon_sym_AT] = ACTIONS(5109), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_RBRACK] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5107), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_RBRACE] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_RPAREN] = ACTIONS(5109), + [anon_sym_LT] = ACTIONS(5107), + [anon_sym_GT] = ACTIONS(5107), + [anon_sym_where] = ACTIONS(5107), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_SEMI] = ACTIONS(5109), + [anon_sym_get] = ACTIONS(5107), + [anon_sym_set] = ACTIONS(5107), + [anon_sym_STAR] = ACTIONS(5107), + [anon_sym_DASH_GT] = ACTIONS(5109), + [sym_label] = ACTIONS(5109), + [anon_sym_in] = ACTIONS(5107), + [anon_sym_while] = ACTIONS(5107), + [anon_sym_DOT_DOT] = ACTIONS(5109), + [anon_sym_QMARK_COLON] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_else] = ACTIONS(5107), + [anon_sym_COLON_COLON] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5109), + [anon_sym_EQ_EQ] = ACTIONS(5107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_BANGin] = ACTIONS(5109), + [anon_sym_is] = ACTIONS(5107), + [anon_sym_BANGis] = ACTIONS(5109), + [anon_sym_PLUS] = ACTIONS(5107), + [anon_sym_DASH] = ACTIONS(5107), + [anon_sym_SLASH] = ACTIONS(5107), + [anon_sym_PERCENT] = ACTIONS(5107), + [anon_sym_as_QMARK] = ACTIONS(5109), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_BANG_BANG] = ACTIONS(5109), + [anon_sym_suspend] = ACTIONS(5107), + [anon_sym_sealed] = ACTIONS(5107), + [anon_sym_annotation] = ACTIONS(5107), + [anon_sym_data] = ACTIONS(5107), + [anon_sym_inner] = ACTIONS(5107), + [anon_sym_value] = ACTIONS(5107), + [anon_sym_override] = ACTIONS(5107), + [anon_sym_lateinit] = ACTIONS(5107), + [anon_sym_public] = ACTIONS(5107), + [anon_sym_private] = ACTIONS(5107), + [anon_sym_internal] = ACTIONS(5107), + [anon_sym_protected] = ACTIONS(5107), + [anon_sym_tailrec] = ACTIONS(5107), + [anon_sym_operator] = ACTIONS(5107), + [anon_sym_infix] = ACTIONS(5107), + [anon_sym_inline] = ACTIONS(5107), + [anon_sym_external] = ACTIONS(5107), + [sym_property_modifier] = ACTIONS(5107), + [anon_sym_abstract] = ACTIONS(5107), + [anon_sym_final] = ACTIONS(5107), + [anon_sym_open] = ACTIONS(5107), + [anon_sym_vararg] = ACTIONS(5107), + [anon_sym_noinline] = ACTIONS(5107), + [anon_sym_crossinline] = ACTIONS(5107), + [anon_sym_expect] = ACTIONS(5107), + [anon_sym_actual] = ACTIONS(5107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5109), + [sym_safe_nav] = ACTIONS(5109), [sym_multiline_comment] = ACTIONS(3), }, - [3521] = { - [sym__alpha_identifier] = ACTIONS(5223), - [anon_sym_AT] = ACTIONS(5225), - [anon_sym_LBRACK] = ACTIONS(5225), - [anon_sym_RBRACK] = ACTIONS(5225), - [anon_sym_as] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5225), - [anon_sym_RBRACE] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5225), - [anon_sym_COMMA] = ACTIONS(5225), - [anon_sym_RPAREN] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5223), - [anon_sym_GT] = ACTIONS(5223), - [anon_sym_where] = ACTIONS(5223), - [anon_sym_DOT] = ACTIONS(5223), - [anon_sym_SEMI] = ACTIONS(5225), - [anon_sym_get] = ACTIONS(5223), - [anon_sym_set] = ACTIONS(5223), - [anon_sym_STAR] = ACTIONS(5223), - [anon_sym_DASH_GT] = ACTIONS(5225), - [sym_label] = ACTIONS(5225), - [anon_sym_in] = ACTIONS(5223), - [anon_sym_while] = ACTIONS(5223), - [anon_sym_DOT_DOT] = ACTIONS(5225), - [anon_sym_QMARK_COLON] = ACTIONS(5225), - [anon_sym_AMP_AMP] = ACTIONS(5225), - [anon_sym_PIPE_PIPE] = ACTIONS(5225), - [anon_sym_else] = ACTIONS(5223), - [anon_sym_COLON_COLON] = ACTIONS(5225), - [anon_sym_PLUS_EQ] = ACTIONS(5225), - [anon_sym_DASH_EQ] = ACTIONS(5225), - [anon_sym_STAR_EQ] = ACTIONS(5225), - [anon_sym_SLASH_EQ] = ACTIONS(5225), - [anon_sym_PERCENT_EQ] = ACTIONS(5225), - [anon_sym_BANG_EQ] = ACTIONS(5223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5225), - [anon_sym_EQ_EQ] = ACTIONS(5223), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5225), - [anon_sym_LT_EQ] = ACTIONS(5225), - [anon_sym_GT_EQ] = ACTIONS(5225), - [anon_sym_BANGin] = ACTIONS(5225), - [anon_sym_is] = ACTIONS(5223), - [anon_sym_BANGis] = ACTIONS(5225), - [anon_sym_PLUS] = ACTIONS(5223), - [anon_sym_DASH] = ACTIONS(5223), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(5225), - [anon_sym_PLUS_PLUS] = ACTIONS(5225), - [anon_sym_DASH_DASH] = ACTIONS(5225), - [anon_sym_BANG_BANG] = ACTIONS(5225), - [anon_sym_suspend] = ACTIONS(5223), - [anon_sym_sealed] = ACTIONS(5223), - [anon_sym_annotation] = ACTIONS(5223), - [anon_sym_data] = ACTIONS(5223), - [anon_sym_inner] = ACTIONS(5223), - [anon_sym_value] = ACTIONS(5223), - [anon_sym_override] = ACTIONS(5223), - [anon_sym_lateinit] = ACTIONS(5223), - [anon_sym_public] = ACTIONS(5223), - [anon_sym_private] = ACTIONS(5223), - [anon_sym_internal] = ACTIONS(5223), - [anon_sym_protected] = ACTIONS(5223), - [anon_sym_tailrec] = ACTIONS(5223), - [anon_sym_operator] = ACTIONS(5223), - [anon_sym_infix] = ACTIONS(5223), - [anon_sym_inline] = ACTIONS(5223), - [anon_sym_external] = ACTIONS(5223), - [sym_property_modifier] = ACTIONS(5223), - [anon_sym_abstract] = ACTIONS(5223), - [anon_sym_final] = ACTIONS(5223), - [anon_sym_open] = ACTIONS(5223), - [anon_sym_vararg] = ACTIONS(5223), - [anon_sym_noinline] = ACTIONS(5223), - [anon_sym_crossinline] = ACTIONS(5223), - [anon_sym_expect] = ACTIONS(5223), - [anon_sym_actual] = ACTIONS(5223), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5225), - [sym_safe_nav] = ACTIONS(5225), + [3545] = { + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_by] = ACTIONS(4317), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(4317), + [sym__quest] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4317), + [sym_label] = ACTIONS(4319), + [anon_sym_in] = ACTIONS(4317), + [anon_sym_DOT_DOT] = ACTIONS(4319), + [anon_sym_QMARK_COLON] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_PIPE_PIPE] = ACTIONS(4319), + [anon_sym_else] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_PLUS_EQ] = ACTIONS(4319), + [anon_sym_DASH_EQ] = ACTIONS(4319), + [anon_sym_STAR_EQ] = ACTIONS(4319), + [anon_sym_SLASH_EQ] = ACTIONS(4319), + [anon_sym_PERCENT_EQ] = ACTIONS(4319), + [anon_sym_BANG_EQ] = ACTIONS(4317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4319), + [anon_sym_EQ_EQ] = ACTIONS(4317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4319), + [anon_sym_LT_EQ] = ACTIONS(4319), + [anon_sym_GT_EQ] = ACTIONS(4319), + [anon_sym_BANGin] = ACTIONS(4319), + [anon_sym_is] = ACTIONS(4317), + [anon_sym_BANGis] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4317), + [anon_sym_PERCENT] = ACTIONS(4317), + [anon_sym_as_QMARK] = ACTIONS(4319), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [anon_sym_BANG_BANG] = ACTIONS(4319), + [anon_sym_suspend] = ACTIONS(4317), + [anon_sym_sealed] = ACTIONS(4317), + [anon_sym_annotation] = ACTIONS(4317), + [anon_sym_data] = ACTIONS(4317), + [anon_sym_inner] = ACTIONS(4317), + [anon_sym_value] = ACTIONS(4317), + [anon_sym_override] = ACTIONS(4317), + [anon_sym_lateinit] = ACTIONS(4317), + [anon_sym_public] = ACTIONS(4317), + [anon_sym_private] = ACTIONS(4317), + [anon_sym_internal] = ACTIONS(4317), + [anon_sym_protected] = ACTIONS(4317), + [anon_sym_tailrec] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_infix] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym_external] = ACTIONS(4317), + [sym_property_modifier] = ACTIONS(4317), + [anon_sym_abstract] = ACTIONS(4317), + [anon_sym_final] = ACTIONS(4317), + [anon_sym_open] = ACTIONS(4317), + [anon_sym_vararg] = ACTIONS(4317), + [anon_sym_noinline] = ACTIONS(4317), + [anon_sym_crossinline] = ACTIONS(4317), + [anon_sym_expect] = ACTIONS(4317), + [anon_sym_actual] = ACTIONS(4317), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4319), + [sym__automatic_semicolon] = ACTIONS(4319), + [sym_safe_nav] = ACTIONS(4319), [sym_multiline_comment] = ACTIONS(3), }, - [3522] = { - [sym_type_constraints] = STATE(3770), - [sym_function_body] = STATE(3354), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [3546] = { + [sym__alpha_identifier] = ACTIONS(5103), + [anon_sym_AT] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_RBRACK] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5105), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_RPAREN] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5103), + [anon_sym_GT] = ACTIONS(5103), + [anon_sym_where] = ACTIONS(5103), + [anon_sym_DOT] = ACTIONS(5103), + [anon_sym_SEMI] = ACTIONS(5105), + [anon_sym_get] = ACTIONS(5103), + [anon_sym_set] = ACTIONS(5103), + [anon_sym_STAR] = ACTIONS(5103), + [anon_sym_DASH_GT] = ACTIONS(5105), + [sym_label] = ACTIONS(5105), + [anon_sym_in] = ACTIONS(5103), + [anon_sym_while] = ACTIONS(5103), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_QMARK_COLON] = ACTIONS(5105), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_else] = ACTIONS(5103), + [anon_sym_COLON_COLON] = ACTIONS(5105), + [anon_sym_PLUS_EQ] = ACTIONS(5105), + [anon_sym_DASH_EQ] = ACTIONS(5105), + [anon_sym_STAR_EQ] = ACTIONS(5105), + [anon_sym_SLASH_EQ] = ACTIONS(5105), + [anon_sym_PERCENT_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_BANGin] = ACTIONS(5105), + [anon_sym_is] = ACTIONS(5103), + [anon_sym_BANGis] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5103), + [anon_sym_DASH] = ACTIONS(5103), + [anon_sym_SLASH] = ACTIONS(5103), + [anon_sym_PERCENT] = ACTIONS(5103), + [anon_sym_as_QMARK] = ACTIONS(5105), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_BANG_BANG] = ACTIONS(5105), + [anon_sym_suspend] = ACTIONS(5103), + [anon_sym_sealed] = ACTIONS(5103), + [anon_sym_annotation] = ACTIONS(5103), + [anon_sym_data] = ACTIONS(5103), + [anon_sym_inner] = ACTIONS(5103), + [anon_sym_value] = ACTIONS(5103), + [anon_sym_override] = ACTIONS(5103), + [anon_sym_lateinit] = ACTIONS(5103), + [anon_sym_public] = ACTIONS(5103), + [anon_sym_private] = ACTIONS(5103), + [anon_sym_internal] = ACTIONS(5103), + [anon_sym_protected] = ACTIONS(5103), + [anon_sym_tailrec] = ACTIONS(5103), + [anon_sym_operator] = ACTIONS(5103), + [anon_sym_infix] = ACTIONS(5103), + [anon_sym_inline] = ACTIONS(5103), + [anon_sym_external] = ACTIONS(5103), + [sym_property_modifier] = ACTIONS(5103), + [anon_sym_abstract] = ACTIONS(5103), + [anon_sym_final] = ACTIONS(5103), + [anon_sym_open] = ACTIONS(5103), + [anon_sym_vararg] = ACTIONS(5103), + [anon_sym_noinline] = ACTIONS(5103), + [anon_sym_crossinline] = ACTIONS(5103), + [anon_sym_expect] = ACTIONS(5103), + [anon_sym_actual] = ACTIONS(5103), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5105), + [sym_safe_nav] = ACTIONS(5105), + [sym_multiline_comment] = ACTIONS(3), }, - [3523] = { - [sym_function_body] = STATE(3960), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(6982), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [sym_label] = ACTIONS(4341), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_PLUS_EQ] = ACTIONS(4341), - [anon_sym_DASH_EQ] = ACTIONS(4341), - [anon_sym_STAR_EQ] = ACTIONS(4341), - [anon_sym_SLASH_EQ] = ACTIONS(4341), - [anon_sym_PERCENT_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4339), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), + [3547] = { + [sym__alpha_identifier] = ACTIONS(5179), + [anon_sym_AT] = ACTIONS(5181), + [anon_sym_LBRACK] = ACTIONS(5181), + [anon_sym_RBRACK] = ACTIONS(5181), + [anon_sym_as] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5181), + [anon_sym_RBRACE] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5181), + [anon_sym_COMMA] = ACTIONS(5181), + [anon_sym_RPAREN] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5179), + [anon_sym_GT] = ACTIONS(5179), + [anon_sym_where] = ACTIONS(5179), + [anon_sym_DOT] = ACTIONS(5179), + [anon_sym_SEMI] = ACTIONS(5181), + [anon_sym_get] = ACTIONS(5179), + [anon_sym_set] = ACTIONS(5179), + [anon_sym_STAR] = ACTIONS(5179), + [anon_sym_DASH_GT] = ACTIONS(5181), + [sym_label] = ACTIONS(5181), + [anon_sym_in] = ACTIONS(5179), + [anon_sym_while] = ACTIONS(5179), + [anon_sym_DOT_DOT] = ACTIONS(5181), + [anon_sym_QMARK_COLON] = ACTIONS(5181), + [anon_sym_AMP_AMP] = ACTIONS(5181), + [anon_sym_PIPE_PIPE] = ACTIONS(5181), + [anon_sym_else] = ACTIONS(5179), + [anon_sym_COLON_COLON] = ACTIONS(5181), + [anon_sym_PLUS_EQ] = ACTIONS(5181), + [anon_sym_DASH_EQ] = ACTIONS(5181), + [anon_sym_STAR_EQ] = ACTIONS(5181), + [anon_sym_SLASH_EQ] = ACTIONS(5181), + [anon_sym_PERCENT_EQ] = ACTIONS(5181), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5181), + [anon_sym_GT_EQ] = ACTIONS(5181), + [anon_sym_BANGin] = ACTIONS(5181), + [anon_sym_is] = ACTIONS(5179), + [anon_sym_BANGis] = ACTIONS(5181), + [anon_sym_PLUS] = ACTIONS(5179), + [anon_sym_DASH] = ACTIONS(5179), + [anon_sym_SLASH] = ACTIONS(5179), + [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_as_QMARK] = ACTIONS(5181), + [anon_sym_PLUS_PLUS] = ACTIONS(5181), + [anon_sym_DASH_DASH] = ACTIONS(5181), + [anon_sym_BANG_BANG] = ACTIONS(5181), + [anon_sym_suspend] = ACTIONS(5179), + [anon_sym_sealed] = ACTIONS(5179), + [anon_sym_annotation] = ACTIONS(5179), + [anon_sym_data] = ACTIONS(5179), + [anon_sym_inner] = ACTIONS(5179), + [anon_sym_value] = ACTIONS(5179), + [anon_sym_override] = ACTIONS(5179), + [anon_sym_lateinit] = ACTIONS(5179), + [anon_sym_public] = ACTIONS(5179), + [anon_sym_private] = ACTIONS(5179), + [anon_sym_internal] = ACTIONS(5179), + [anon_sym_protected] = ACTIONS(5179), + [anon_sym_tailrec] = ACTIONS(5179), + [anon_sym_operator] = ACTIONS(5179), + [anon_sym_infix] = ACTIONS(5179), + [anon_sym_inline] = ACTIONS(5179), + [anon_sym_external] = ACTIONS(5179), + [sym_property_modifier] = ACTIONS(5179), + [anon_sym_abstract] = ACTIONS(5179), + [anon_sym_final] = ACTIONS(5179), + [anon_sym_open] = ACTIONS(5179), + [anon_sym_vararg] = ACTIONS(5179), + [anon_sym_noinline] = ACTIONS(5179), + [anon_sym_crossinline] = ACTIONS(5179), + [anon_sym_expect] = ACTIONS(5179), + [anon_sym_actual] = ACTIONS(5179), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5181), + [sym_safe_nav] = ACTIONS(5181), + [sym_multiline_comment] = ACTIONS(3), + }, + [3548] = { + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4168), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + }, + [3549] = { + [sym__alpha_identifier] = ACTIONS(5183), + [anon_sym_AT] = ACTIONS(5185), + [anon_sym_LBRACK] = ACTIONS(5185), + [anon_sym_RBRACK] = ACTIONS(5185), + [anon_sym_as] = ACTIONS(5183), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5185), + [anon_sym_RBRACE] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5185), + [anon_sym_COMMA] = ACTIONS(5185), + [anon_sym_RPAREN] = ACTIONS(5185), + [anon_sym_LT] = ACTIONS(5183), + [anon_sym_GT] = ACTIONS(5183), + [anon_sym_where] = ACTIONS(5183), + [anon_sym_DOT] = ACTIONS(5183), + [anon_sym_SEMI] = ACTIONS(5185), + [anon_sym_get] = ACTIONS(5183), + [anon_sym_set] = ACTIONS(5183), + [anon_sym_STAR] = ACTIONS(5183), + [anon_sym_DASH_GT] = ACTIONS(5185), + [sym_label] = ACTIONS(5185), + [anon_sym_in] = ACTIONS(5183), + [anon_sym_while] = ACTIONS(5183), + [anon_sym_DOT_DOT] = ACTIONS(5185), + [anon_sym_QMARK_COLON] = ACTIONS(5185), + [anon_sym_AMP_AMP] = ACTIONS(5185), + [anon_sym_PIPE_PIPE] = ACTIONS(5185), + [anon_sym_else] = ACTIONS(5183), + [anon_sym_COLON_COLON] = ACTIONS(5185), + [anon_sym_PLUS_EQ] = ACTIONS(5185), + [anon_sym_DASH_EQ] = ACTIONS(5185), + [anon_sym_STAR_EQ] = ACTIONS(5185), + [anon_sym_SLASH_EQ] = ACTIONS(5185), + [anon_sym_PERCENT_EQ] = ACTIONS(5185), + [anon_sym_BANG_EQ] = ACTIONS(5183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5185), + [anon_sym_EQ_EQ] = ACTIONS(5183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5185), + [anon_sym_LT_EQ] = ACTIONS(5185), + [anon_sym_GT_EQ] = ACTIONS(5185), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(5183), + [anon_sym_BANGis] = ACTIONS(5185), + [anon_sym_PLUS] = ACTIONS(5183), + [anon_sym_DASH] = ACTIONS(5183), + [anon_sym_SLASH] = ACTIONS(5183), + [anon_sym_PERCENT] = ACTIONS(5183), + [anon_sym_as_QMARK] = ACTIONS(5185), + [anon_sym_PLUS_PLUS] = ACTIONS(5185), + [anon_sym_DASH_DASH] = ACTIONS(5185), + [anon_sym_BANG_BANG] = ACTIONS(5185), + [anon_sym_suspend] = ACTIONS(5183), + [anon_sym_sealed] = ACTIONS(5183), + [anon_sym_annotation] = ACTIONS(5183), + [anon_sym_data] = ACTIONS(5183), + [anon_sym_inner] = ACTIONS(5183), + [anon_sym_value] = ACTIONS(5183), + [anon_sym_override] = ACTIONS(5183), + [anon_sym_lateinit] = ACTIONS(5183), + [anon_sym_public] = ACTIONS(5183), + [anon_sym_private] = ACTIONS(5183), + [anon_sym_internal] = ACTIONS(5183), + [anon_sym_protected] = ACTIONS(5183), + [anon_sym_tailrec] = ACTIONS(5183), + [anon_sym_operator] = ACTIONS(5183), + [anon_sym_infix] = ACTIONS(5183), + [anon_sym_inline] = ACTIONS(5183), + [anon_sym_external] = ACTIONS(5183), + [sym_property_modifier] = ACTIONS(5183), + [anon_sym_abstract] = ACTIONS(5183), + [anon_sym_final] = ACTIONS(5183), + [anon_sym_open] = ACTIONS(5183), + [anon_sym_vararg] = ACTIONS(5183), + [anon_sym_noinline] = ACTIONS(5183), + [anon_sym_crossinline] = ACTIONS(5183), + [anon_sym_expect] = ACTIONS(5183), + [anon_sym_actual] = ACTIONS(5183), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), + [sym__backtick_identifier] = ACTIONS(5185), + [sym_safe_nav] = ACTIONS(5185), [sym_multiline_comment] = ACTIONS(3), }, - [3524] = { - [sym_type_constraints] = STATE(4024), - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3335), + [3550] = { + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_by] = ACTIONS(4335), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(4335), + [sym__quest] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4337), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + }, + [3551] = { + [sym__alpha_identifier] = ACTIONS(4962), + [anon_sym_AT] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_RBRACK] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4962), + [anon_sym_EQ] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_RBRACE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4962), + [anon_sym_where] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_get] = ACTIONS(4962), + [anon_sym_set] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [anon_sym_DASH_GT] = ACTIONS(4964), + [sym_label] = ACTIONS(4964), + [anon_sym_in] = ACTIONS(4962), + [anon_sym_while] = ACTIONS(4962), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_QMARK_COLON] = ACTIONS(4964), + [anon_sym_AMP_AMP] = ACTIONS(4964), + [anon_sym_PIPE_PIPE] = ACTIONS(4964), + [anon_sym_else] = ACTIONS(4962), + [anon_sym_COLON_COLON] = ACTIONS(4964), + [anon_sym_PLUS_EQ] = ACTIONS(4964), + [anon_sym_DASH_EQ] = ACTIONS(4964), + [anon_sym_STAR_EQ] = ACTIONS(4964), + [anon_sym_SLASH_EQ] = ACTIONS(4964), + [anon_sym_PERCENT_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4964), + [anon_sym_LT_EQ] = ACTIONS(4964), + [anon_sym_GT_EQ] = ACTIONS(4964), + [anon_sym_BANGin] = ACTIONS(4964), + [anon_sym_is] = ACTIONS(4962), + [anon_sym_BANGis] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_PERCENT] = ACTIONS(4962), + [anon_sym_as_QMARK] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_BANG_BANG] = ACTIONS(4964), + [anon_sym_suspend] = ACTIONS(4962), + [anon_sym_sealed] = ACTIONS(4962), + [anon_sym_annotation] = ACTIONS(4962), + [anon_sym_data] = ACTIONS(4962), + [anon_sym_inner] = ACTIONS(4962), + [anon_sym_value] = ACTIONS(4962), + [anon_sym_override] = ACTIONS(4962), + [anon_sym_lateinit] = ACTIONS(4962), + [anon_sym_public] = ACTIONS(4962), + [anon_sym_private] = ACTIONS(4962), + [anon_sym_internal] = ACTIONS(4962), + [anon_sym_protected] = ACTIONS(4962), + [anon_sym_tailrec] = ACTIONS(4962), + [anon_sym_operator] = ACTIONS(4962), + [anon_sym_infix] = ACTIONS(4962), + [anon_sym_inline] = ACTIONS(4962), + [anon_sym_external] = ACTIONS(4962), + [sym_property_modifier] = ACTIONS(4962), + [anon_sym_abstract] = ACTIONS(4962), + [anon_sym_final] = ACTIONS(4962), + [anon_sym_open] = ACTIONS(4962), + [anon_sym_vararg] = ACTIONS(4962), + [anon_sym_noinline] = ACTIONS(4962), + [anon_sym_crossinline] = ACTIONS(4962), + [anon_sym_expect] = ACTIONS(4962), + [anon_sym_actual] = ACTIONS(4962), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4964), + [sym_safe_nav] = ACTIONS(4964), + [sym_multiline_comment] = ACTIONS(3), + }, + [3552] = { + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_RBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4137), + [anon_sym_LBRACE] = ACTIONS(4139), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + }, + [3553] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_RBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_RPAREN] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [anon_sym_DASH_GT] = ACTIONS(4479), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_while] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + }, + [3554] = { + [sym_type_arguments] = STATE(3778), + [sym__alpha_identifier] = ACTIONS(4128), + [anon_sym_AT] = ACTIONS(4189), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_typealias] = ACTIONS(4128), + [anon_sym_class] = ACTIONS(4128), + [anon_sym_interface] = ACTIONS(4128), + [anon_sym_enum] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_val] = ACTIONS(4128), + [anon_sym_var] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(6901), + [anon_sym_object] = ACTIONS(4128), + [anon_sym_fun] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4128), + [anon_sym_this] = ACTIONS(4128), + [anon_sym_super] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4189), + [sym_label] = ACTIONS(4128), + [anon_sym_for] = ACTIONS(4128), + [anon_sym_while] = ACTIONS(4128), + [anon_sym_do] = ACTIONS(4128), + [anon_sym_null] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(4128), + [anon_sym_when] = ACTIONS(4128), + [anon_sym_try] = ACTIONS(4128), + [anon_sym_throw] = ACTIONS(4128), + [anon_sym_return] = ACTIONS(4128), + [anon_sym_continue] = ACTIONS(4128), + [anon_sym_break] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4189), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_PLUS_PLUS] = ACTIONS(4189), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_suspend] = ACTIONS(4128), + [anon_sym_sealed] = ACTIONS(4128), + [anon_sym_annotation] = ACTIONS(4128), + [anon_sym_data] = ACTIONS(4128), + [anon_sym_inner] = ACTIONS(4128), + [anon_sym_value] = ACTIONS(4128), + [anon_sym_override] = ACTIONS(4128), + [anon_sym_lateinit] = ACTIONS(4128), + [anon_sym_public] = ACTIONS(4128), + [anon_sym_private] = ACTIONS(4128), + [anon_sym_internal] = ACTIONS(4128), + [anon_sym_protected] = ACTIONS(4128), + [anon_sym_tailrec] = ACTIONS(4128), + [anon_sym_operator] = ACTIONS(4128), + [anon_sym_infix] = ACTIONS(4128), + [anon_sym_inline] = ACTIONS(4128), + [anon_sym_external] = ACTIONS(4128), + [sym_property_modifier] = ACTIONS(4128), + [anon_sym_abstract] = ACTIONS(4128), + [anon_sym_final] = ACTIONS(4128), + [anon_sym_open] = ACTIONS(4128), + [anon_sym_vararg] = ACTIONS(4128), + [anon_sym_noinline] = ACTIONS(4128), + [anon_sym_crossinline] = ACTIONS(4128), + [anon_sym_expect] = ACTIONS(4128), + [anon_sym_actual] = ACTIONS(4128), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4189), + [anon_sym_continue_AT] = ACTIONS(4189), + [anon_sym_break_AT] = ACTIONS(4189), + [anon_sym_this_AT] = ACTIONS(4189), + [anon_sym_super_AT] = ACTIONS(4189), + [sym_real_literal] = ACTIONS(4189), + [sym_integer_literal] = ACTIONS(4128), + [sym_hex_literal] = ACTIONS(4189), + [sym_bin_literal] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4189), + [sym__backtick_identifier] = ACTIONS(4189), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4189), + }, + [3555] = { + [sym_type_constraints] = STATE(3908), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(6984), + [anon_sym_COLON] = ACTIONS(6903), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(6547), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(3260), + [anon_sym_where] = ACTIONS(3256), [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), @@ -408416,1541 +408734,1368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4185), }, - [3525] = { - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(1816), - [anon_sym_set] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(1816), - [anon_sym_sealed] = ACTIONS(1816), - [anon_sym_annotation] = ACTIONS(1816), - [anon_sym_data] = ACTIONS(1816), - [anon_sym_inner] = ACTIONS(1816), - [anon_sym_value] = ACTIONS(1816), - [anon_sym_override] = ACTIONS(1816), - [anon_sym_lateinit] = ACTIONS(1816), - [anon_sym_public] = ACTIONS(1816), - [anon_sym_private] = ACTIONS(1816), - [anon_sym_internal] = ACTIONS(1816), - [anon_sym_protected] = ACTIONS(1816), - [anon_sym_tailrec] = ACTIONS(1816), - [anon_sym_operator] = ACTIONS(1816), - [anon_sym_infix] = ACTIONS(1816), - [anon_sym_inline] = ACTIONS(1816), - [anon_sym_external] = ACTIONS(1816), - [sym_property_modifier] = ACTIONS(1816), - [anon_sym_abstract] = ACTIONS(1816), - [anon_sym_final] = ACTIONS(1816), - [anon_sym_open] = ACTIONS(1816), - [anon_sym_vararg] = ACTIONS(1816), - [anon_sym_noinline] = ACTIONS(1816), - [anon_sym_crossinline] = ACTIONS(1816), - [anon_sym_expect] = ACTIONS(1816), - [anon_sym_actual] = ACTIONS(1816), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [3556] = { + [aux_sym_nullable_type_repeat1] = STATE(3556), + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_RBRACE] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4222), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [sym__quest] = ACTIONS(6907), + [anon_sym_STAR] = ACTIONS(4222), + [sym_label] = ACTIONS(4224), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4224), + [anon_sym_QMARK_COLON] = ACTIONS(4224), + [anon_sym_AMP_AMP] = ACTIONS(4224), + [anon_sym_PIPE_PIPE] = ACTIONS(4224), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4224), + [anon_sym_PLUS_EQ] = ACTIONS(4224), + [anon_sym_DASH_EQ] = ACTIONS(4224), + [anon_sym_STAR_EQ] = ACTIONS(4224), + [anon_sym_SLASH_EQ] = ACTIONS(4224), + [anon_sym_PERCENT_EQ] = ACTIONS(4224), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4224), + [anon_sym_LT_EQ] = ACTIONS(4224), + [anon_sym_GT_EQ] = ACTIONS(4224), + [anon_sym_BANGin] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4224), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4224), + [anon_sym_DASH_DASH] = ACTIONS(4224), + [anon_sym_BANG_BANG] = ACTIONS(4224), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4224), + [sym__automatic_semicolon] = ACTIONS(4224), + [sym_safe_nav] = ACTIONS(4224), [sym_multiline_comment] = ACTIONS(3), }, - [3526] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_RBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4948), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_RPAREN] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_GT] = ACTIONS(4381), - [anon_sym_where] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [anon_sym_DASH_GT] = ACTIONS(4383), - [sym_label] = ACTIONS(4383), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_while] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_QMARK_COLON] = ACTIONS(4383), - [anon_sym_AMP_AMP] = ACTIONS(4383), - [anon_sym_PIPE_PIPE] = ACTIONS(4383), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4950), - [anon_sym_DASH_EQ] = ACTIONS(4950), - [anon_sym_STAR_EQ] = ACTIONS(4950), - [anon_sym_SLASH_EQ] = ACTIONS(4950), - [anon_sym_PERCENT_EQ] = ACTIONS(4950), - [anon_sym_BANG_EQ] = ACTIONS(4381), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), - [anon_sym_EQ_EQ] = ACTIONS(4381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), - [anon_sym_LT_EQ] = ACTIONS(4383), - [anon_sym_GT_EQ] = ACTIONS(4383), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_as_QMARK] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG_BANG] = ACTIONS(4383), - [anon_sym_suspend] = ACTIONS(4381), - [anon_sym_sealed] = ACTIONS(4381), - [anon_sym_annotation] = ACTIONS(4381), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_override] = ACTIONS(4381), - [anon_sym_lateinit] = ACTIONS(4381), - [anon_sym_public] = ACTIONS(4381), - [anon_sym_private] = ACTIONS(4381), - [anon_sym_internal] = ACTIONS(4381), - [anon_sym_protected] = ACTIONS(4381), - [anon_sym_tailrec] = ACTIONS(4381), - [anon_sym_operator] = ACTIONS(4381), - [anon_sym_infix] = ACTIONS(4381), - [anon_sym_inline] = ACTIONS(4381), - [anon_sym_external] = ACTIONS(4381), - [sym_property_modifier] = ACTIONS(4381), - [anon_sym_abstract] = ACTIONS(4381), - [anon_sym_final] = ACTIONS(4381), - [anon_sym_open] = ACTIONS(4381), - [anon_sym_vararg] = ACTIONS(4381), - [anon_sym_noinline] = ACTIONS(4381), - [anon_sym_crossinline] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4383), + [3557] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), [sym_multiline_comment] = ACTIONS(3), }, - [3527] = { - [sym_function_body] = STATE(4010), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_COLON] = ACTIONS(6988), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_COMMA] = ACTIONS(4323), - [anon_sym_LT] = ACTIONS(4321), - [anon_sym_GT] = ACTIONS(4321), - [anon_sym_where] = ACTIONS(4321), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_get] = ACTIONS(4321), - [anon_sym_set] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4323), - [anon_sym_in] = ACTIONS(4321), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_QMARK_COLON] = ACTIONS(4323), - [anon_sym_AMP_AMP] = ACTIONS(4323), - [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_else] = ACTIONS(4321), - [anon_sym_COLON_COLON] = ACTIONS(4323), - [anon_sym_PLUS_EQ] = ACTIONS(4323), - [anon_sym_DASH_EQ] = ACTIONS(4323), - [anon_sym_STAR_EQ] = ACTIONS(4323), - [anon_sym_SLASH_EQ] = ACTIONS(4323), - [anon_sym_PERCENT_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), - [anon_sym_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4323), - [anon_sym_BANGin] = ACTIONS(4323), - [anon_sym_is] = ACTIONS(4321), - [anon_sym_BANGis] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4321), - [anon_sym_as_QMARK] = ACTIONS(4323), - [anon_sym_PLUS_PLUS] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG_BANG] = ACTIONS(4323), - [anon_sym_suspend] = ACTIONS(4321), - [anon_sym_sealed] = ACTIONS(4321), - [anon_sym_annotation] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4321), - [anon_sym_inner] = ACTIONS(4321), - [anon_sym_value] = ACTIONS(4321), - [anon_sym_override] = ACTIONS(4321), - [anon_sym_lateinit] = ACTIONS(4321), - [anon_sym_public] = ACTIONS(4321), - [anon_sym_private] = ACTIONS(4321), - [anon_sym_internal] = ACTIONS(4321), - [anon_sym_protected] = ACTIONS(4321), - [anon_sym_tailrec] = ACTIONS(4321), - [anon_sym_operator] = ACTIONS(4321), - [anon_sym_infix] = ACTIONS(4321), - [anon_sym_inline] = ACTIONS(4321), - [anon_sym_external] = ACTIONS(4321), - [sym_property_modifier] = ACTIONS(4321), - [anon_sym_abstract] = ACTIONS(4321), - [anon_sym_final] = ACTIONS(4321), - [anon_sym_open] = ACTIONS(4321), - [anon_sym_vararg] = ACTIONS(4321), - [anon_sym_noinline] = ACTIONS(4321), - [anon_sym_crossinline] = ACTIONS(4321), - [anon_sym_expect] = ACTIONS(4321), - [anon_sym_actual] = ACTIONS(4321), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4323), - [sym__automatic_semicolon] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), + [3558] = { + [aux_sym_nullable_type_repeat1] = STATE(3597), + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [sym__quest] = ACTIONS(6835), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4206), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), [sym_multiline_comment] = ACTIONS(3), }, - [3528] = { - [sym_type_constraints] = STATE(4025), - [sym_function_body] = STATE(3192), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(6990), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), - }, - [3529] = { - [sym_type_constraints] = STATE(4026), - [sym_function_body] = STATE(3354), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(6992), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [3559] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(6874), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, - [3530] = { - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3438), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_RBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_RPAREN] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(3436), - [anon_sym_set] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3436), - [anon_sym_DASH_GT] = ACTIONS(3438), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3436), - [anon_sym_sealed] = ACTIONS(3436), - [anon_sym_annotation] = ACTIONS(3436), - [anon_sym_data] = ACTIONS(3436), - [anon_sym_inner] = ACTIONS(3436), - [anon_sym_value] = ACTIONS(3436), - [anon_sym_override] = ACTIONS(3436), - [anon_sym_lateinit] = ACTIONS(3436), - [anon_sym_public] = ACTIONS(3436), - [anon_sym_private] = ACTIONS(3436), - [anon_sym_internal] = ACTIONS(3436), - [anon_sym_protected] = ACTIONS(3436), - [anon_sym_tailrec] = ACTIONS(3436), - [anon_sym_operator] = ACTIONS(3436), - [anon_sym_infix] = ACTIONS(3436), - [anon_sym_inline] = ACTIONS(3436), - [anon_sym_external] = ACTIONS(3436), - [sym_property_modifier] = ACTIONS(3436), - [anon_sym_abstract] = ACTIONS(3436), - [anon_sym_final] = ACTIONS(3436), - [anon_sym_open] = ACTIONS(3436), - [anon_sym_vararg] = ACTIONS(3436), - [anon_sym_noinline] = ACTIONS(3436), - [anon_sym_crossinline] = ACTIONS(3436), - [anon_sym_expect] = ACTIONS(3436), - [anon_sym_actual] = ACTIONS(3436), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), + [3560] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, - [3531] = { - [sym_type_constraints] = STATE(3760), - [sym_function_body] = STATE(3192), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), + [3561] = { + [sym_type_constraints] = STATE(3868), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6910), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, - [3532] = { - [sym_type_constraints] = STATE(4027), - [sym_function_body] = STATE(3314), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6994), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [3562] = { + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), }, - [3533] = { - [sym_type_constraints] = STATE(4030), - [sym_function_body] = STATE(3278), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(6996), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4209), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_this] = ACTIONS(4209), - [anon_sym_super] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4211), - [sym_label] = ACTIONS(4209), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_if] = ACTIONS(4209), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_when] = ACTIONS(4209), - [anon_sym_try] = ACTIONS(4209), - [anon_sym_throw] = ACTIONS(4209), - [anon_sym_return] = ACTIONS(4209), - [anon_sym_continue] = ACTIONS(4209), - [anon_sym_break] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4211), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG] = ACTIONS(4209), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4211), - [anon_sym_continue_AT] = ACTIONS(4211), - [anon_sym_break_AT] = ACTIONS(4211), - [anon_sym_this_AT] = ACTIONS(4211), - [anon_sym_super_AT] = ACTIONS(4211), - [sym_real_literal] = ACTIONS(4211), - [sym_integer_literal] = ACTIONS(4209), - [sym_hex_literal] = ACTIONS(4211), - [sym_bin_literal] = ACTIONS(4211), - [anon_sym_true] = ACTIONS(4209), - [anon_sym_false] = ACTIONS(4209), - [anon_sym_SQUOTE] = ACTIONS(4211), - [sym__backtick_identifier] = ACTIONS(4211), - [sym__automatic_semicolon] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4211), + [3563] = { + [sym_type_constraints] = STATE(4020), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(6912), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [3534] = { - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_RBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4532), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_RPAREN] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_where] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [anon_sym_DASH_GT] = ACTIONS(4532), - [sym_label] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_while] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4530), - [anon_sym_sealed] = ACTIONS(4530), - [anon_sym_annotation] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_override] = ACTIONS(4530), - [anon_sym_lateinit] = ACTIONS(4530), - [anon_sym_public] = ACTIONS(4530), - [anon_sym_private] = ACTIONS(4530), - [anon_sym_internal] = ACTIONS(4530), - [anon_sym_protected] = ACTIONS(4530), - [anon_sym_tailrec] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_infix] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym_external] = ACTIONS(4530), - [sym_property_modifier] = ACTIONS(4530), - [anon_sym_abstract] = ACTIONS(4530), - [anon_sym_final] = ACTIONS(4530), - [anon_sym_open] = ACTIONS(4530), - [anon_sym_vararg] = ACTIONS(4530), - [anon_sym_noinline] = ACTIONS(4530), - [anon_sym_crossinline] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), + [3564] = { + [sym_type_constraints] = STATE(3857), + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, - [3535] = { - [sym__alpha_identifier] = ACTIONS(4872), - [anon_sym_AT] = ACTIONS(4874), - [anon_sym_LBRACK] = ACTIONS(4874), - [anon_sym_RBRACK] = ACTIONS(4874), - [anon_sym_as] = ACTIONS(4872), - [anon_sym_EQ] = ACTIONS(4872), - [anon_sym_LBRACE] = ACTIONS(4874), - [anon_sym_RBRACE] = ACTIONS(4874), - [anon_sym_LPAREN] = ACTIONS(4874), - [anon_sym_COMMA] = ACTIONS(4874), - [anon_sym_RPAREN] = ACTIONS(4874), - [anon_sym_LT] = ACTIONS(4872), - [anon_sym_GT] = ACTIONS(4872), - [anon_sym_where] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4872), - [anon_sym_SEMI] = ACTIONS(4874), - [anon_sym_get] = ACTIONS(4872), - [anon_sym_set] = ACTIONS(4872), - [anon_sym_STAR] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4874), - [sym_label] = ACTIONS(4874), - [anon_sym_in] = ACTIONS(4872), - [anon_sym_while] = ACTIONS(4872), - [anon_sym_DOT_DOT] = ACTIONS(4874), - [anon_sym_QMARK_COLON] = ACTIONS(4874), - [anon_sym_AMP_AMP] = ACTIONS(4874), - [anon_sym_PIPE_PIPE] = ACTIONS(4874), - [anon_sym_else] = ACTIONS(4872), - [anon_sym_COLON_COLON] = ACTIONS(4874), - [anon_sym_PLUS_EQ] = ACTIONS(4874), - [anon_sym_DASH_EQ] = ACTIONS(4874), - [anon_sym_STAR_EQ] = ACTIONS(4874), - [anon_sym_SLASH_EQ] = ACTIONS(4874), - [anon_sym_PERCENT_EQ] = ACTIONS(4874), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4874), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4874), - [anon_sym_LT_EQ] = ACTIONS(4874), - [anon_sym_GT_EQ] = ACTIONS(4874), - [anon_sym_BANGin] = ACTIONS(4874), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_BANGis] = ACTIONS(4874), - [anon_sym_PLUS] = ACTIONS(4872), - [anon_sym_DASH] = ACTIONS(4872), - [anon_sym_SLASH] = ACTIONS(4872), - [anon_sym_PERCENT] = ACTIONS(4872), - [anon_sym_as_QMARK] = ACTIONS(4874), - [anon_sym_PLUS_PLUS] = ACTIONS(4874), - [anon_sym_DASH_DASH] = ACTIONS(4874), - [anon_sym_BANG_BANG] = ACTIONS(4874), - [anon_sym_suspend] = ACTIONS(4872), - [anon_sym_sealed] = ACTIONS(4872), - [anon_sym_annotation] = ACTIONS(4872), - [anon_sym_data] = ACTIONS(4872), - [anon_sym_inner] = ACTIONS(4872), - [anon_sym_value] = ACTIONS(4872), - [anon_sym_override] = ACTIONS(4872), - [anon_sym_lateinit] = ACTIONS(4872), - [anon_sym_public] = ACTIONS(4872), - [anon_sym_private] = ACTIONS(4872), - [anon_sym_internal] = ACTIONS(4872), - [anon_sym_protected] = ACTIONS(4872), - [anon_sym_tailrec] = ACTIONS(4872), - [anon_sym_operator] = ACTIONS(4872), - [anon_sym_infix] = ACTIONS(4872), - [anon_sym_inline] = ACTIONS(4872), - [anon_sym_external] = ACTIONS(4872), - [sym_property_modifier] = ACTIONS(4872), - [anon_sym_abstract] = ACTIONS(4872), - [anon_sym_final] = ACTIONS(4872), - [anon_sym_open] = ACTIONS(4872), - [anon_sym_vararg] = ACTIONS(4872), - [anon_sym_noinline] = ACTIONS(4872), - [anon_sym_crossinline] = ACTIONS(4872), - [anon_sym_expect] = ACTIONS(4872), - [anon_sym_actual] = ACTIONS(4872), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4874), - [sym_safe_nav] = ACTIONS(4874), + [3565] = { + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_RBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [anon_sym_DASH_GT] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), }, - [3536] = { - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(4453), - [anon_sym_LBRACE] = ACTIONS(4455), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_where] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4453), - [anon_sym_DASH_GT] = ACTIONS(4455), - [sym_label] = ACTIONS(4455), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_while] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_PLUS_EQ] = ACTIONS(4455), - [anon_sym_DASH_EQ] = ACTIONS(4455), - [anon_sym_STAR_EQ] = ACTIONS(4455), - [anon_sym_SLASH_EQ] = ACTIONS(4455), - [anon_sym_PERCENT_EQ] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4453), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_suspend] = ACTIONS(4453), - [anon_sym_sealed] = ACTIONS(4453), - [anon_sym_annotation] = ACTIONS(4453), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4453), - [anon_sym_lateinit] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_internal] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_tailrec] = ACTIONS(4453), - [anon_sym_operator] = ACTIONS(4453), - [anon_sym_infix] = ACTIONS(4453), - [anon_sym_inline] = ACTIONS(4453), - [anon_sym_external] = ACTIONS(4453), - [sym_property_modifier] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_open] = ACTIONS(4453), - [anon_sym_vararg] = ACTIONS(4453), - [anon_sym_noinline] = ACTIONS(4453), - [anon_sym_crossinline] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), - [sym_multiline_comment] = ACTIONS(3), + [3566] = { + [sym_type_constraints] = STATE(3864), + [sym_function_body] = STATE(3195), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6916), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), }, - [3537] = { - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_RBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(4597), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_RPAREN] = ACTIONS(4597), - [anon_sym_LT] = ACTIONS(4595), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_where] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_DASH_GT] = ACTIONS(4597), - [sym_label] = ACTIONS(4597), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_while] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_suspend] = ACTIONS(4595), - [anon_sym_sealed] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4595), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_override] = ACTIONS(4595), - [anon_sym_lateinit] = ACTIONS(4595), - [anon_sym_public] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4595), - [anon_sym_internal] = ACTIONS(4595), - [anon_sym_protected] = ACTIONS(4595), - [anon_sym_tailrec] = ACTIONS(4595), - [anon_sym_operator] = ACTIONS(4595), - [anon_sym_infix] = ACTIONS(4595), - [anon_sym_inline] = ACTIONS(4595), - [anon_sym_external] = ACTIONS(4595), - [sym_property_modifier] = ACTIONS(4595), - [anon_sym_abstract] = ACTIONS(4595), - [anon_sym_final] = ACTIONS(4595), - [anon_sym_open] = ACTIONS(4595), - [anon_sym_vararg] = ACTIONS(4595), - [anon_sym_noinline] = ACTIONS(4595), - [anon_sym_crossinline] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4597), - [sym_safe_nav] = ACTIONS(4597), + [3567] = { + [sym__alpha_identifier] = ACTIONS(5199), + [anon_sym_AT] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(5201), + [anon_sym_RBRACK] = ACTIONS(5201), + [anon_sym_as] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_LBRACE] = ACTIONS(5201), + [anon_sym_RBRACE] = ACTIONS(5201), + [anon_sym_LPAREN] = ACTIONS(5201), + [anon_sym_COMMA] = ACTIONS(5201), + [anon_sym_RPAREN] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5199), + [anon_sym_GT] = ACTIONS(5199), + [anon_sym_where] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5199), + [anon_sym_SEMI] = ACTIONS(5201), + [anon_sym_get] = ACTIONS(5199), + [anon_sym_set] = ACTIONS(5199), + [anon_sym_STAR] = ACTIONS(5199), + [anon_sym_DASH_GT] = ACTIONS(5201), + [sym_label] = ACTIONS(5201), + [anon_sym_in] = ACTIONS(5199), + [anon_sym_while] = ACTIONS(5199), + [anon_sym_DOT_DOT] = ACTIONS(5201), + [anon_sym_QMARK_COLON] = ACTIONS(5201), + [anon_sym_AMP_AMP] = ACTIONS(5201), + [anon_sym_PIPE_PIPE] = ACTIONS(5201), + [anon_sym_else] = ACTIONS(5199), + [anon_sym_COLON_COLON] = ACTIONS(5201), + [anon_sym_PLUS_EQ] = ACTIONS(5201), + [anon_sym_DASH_EQ] = ACTIONS(5201), + [anon_sym_STAR_EQ] = ACTIONS(5201), + [anon_sym_SLASH_EQ] = ACTIONS(5201), + [anon_sym_PERCENT_EQ] = ACTIONS(5201), + [anon_sym_BANG_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5201), + [anon_sym_EQ_EQ] = ACTIONS(5199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5201), + [anon_sym_LT_EQ] = ACTIONS(5201), + [anon_sym_GT_EQ] = ACTIONS(5201), + [anon_sym_BANGin] = ACTIONS(5201), + [anon_sym_is] = ACTIONS(5199), + [anon_sym_BANGis] = ACTIONS(5201), + [anon_sym_PLUS] = ACTIONS(5199), + [anon_sym_DASH] = ACTIONS(5199), + [anon_sym_SLASH] = ACTIONS(5199), + [anon_sym_PERCENT] = ACTIONS(5199), + [anon_sym_as_QMARK] = ACTIONS(5201), + [anon_sym_PLUS_PLUS] = ACTIONS(5201), + [anon_sym_DASH_DASH] = ACTIONS(5201), + [anon_sym_BANG_BANG] = ACTIONS(5201), + [anon_sym_suspend] = ACTIONS(5199), + [anon_sym_sealed] = ACTIONS(5199), + [anon_sym_annotation] = ACTIONS(5199), + [anon_sym_data] = ACTIONS(5199), + [anon_sym_inner] = ACTIONS(5199), + [anon_sym_value] = ACTIONS(5199), + [anon_sym_override] = ACTIONS(5199), + [anon_sym_lateinit] = ACTIONS(5199), + [anon_sym_public] = ACTIONS(5199), + [anon_sym_private] = ACTIONS(5199), + [anon_sym_internal] = ACTIONS(5199), + [anon_sym_protected] = ACTIONS(5199), + [anon_sym_tailrec] = ACTIONS(5199), + [anon_sym_operator] = ACTIONS(5199), + [anon_sym_infix] = ACTIONS(5199), + [anon_sym_inline] = ACTIONS(5199), + [anon_sym_external] = ACTIONS(5199), + [sym_property_modifier] = ACTIONS(5199), + [anon_sym_abstract] = ACTIONS(5199), + [anon_sym_final] = ACTIONS(5199), + [anon_sym_open] = ACTIONS(5199), + [anon_sym_vararg] = ACTIONS(5199), + [anon_sym_noinline] = ACTIONS(5199), + [anon_sym_crossinline] = ACTIONS(5199), + [anon_sym_expect] = ACTIONS(5199), + [anon_sym_actual] = ACTIONS(5199), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5201), + [sym_safe_nav] = ACTIONS(5201), [sym_multiline_comment] = ACTIONS(3), }, - [3538] = { - [sym__alpha_identifier] = ACTIONS(4902), - [anon_sym_AT] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(4904), - [anon_sym_RBRACK] = ACTIONS(4904), - [anon_sym_as] = ACTIONS(4902), - [anon_sym_EQ] = ACTIONS(4902), - [anon_sym_LBRACE] = ACTIONS(4904), - [anon_sym_RBRACE] = ACTIONS(4904), - [anon_sym_LPAREN] = ACTIONS(4904), - [anon_sym_COMMA] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4904), - [anon_sym_LT] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4902), - [anon_sym_where] = ACTIONS(4902), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_get] = ACTIONS(4902), - [anon_sym_set] = ACTIONS(4902), - [anon_sym_STAR] = ACTIONS(4902), - [anon_sym_DASH_GT] = ACTIONS(4904), - [sym_label] = ACTIONS(4904), - [anon_sym_in] = ACTIONS(4902), - [anon_sym_while] = ACTIONS(4902), - [anon_sym_DOT_DOT] = ACTIONS(4904), - [anon_sym_QMARK_COLON] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_else] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_PLUS_EQ] = ACTIONS(4904), - [anon_sym_DASH_EQ] = ACTIONS(4904), - [anon_sym_STAR_EQ] = ACTIONS(4904), - [anon_sym_SLASH_EQ] = ACTIONS(4904), - [anon_sym_PERCENT_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4902), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4904), - [anon_sym_EQ_EQ] = ACTIONS(4902), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ] = ACTIONS(4904), - [anon_sym_GT_EQ] = ACTIONS(4904), - [anon_sym_BANGin] = ACTIONS(4904), - [anon_sym_is] = ACTIONS(4902), - [anon_sym_BANGis] = ACTIONS(4904), - [anon_sym_PLUS] = ACTIONS(4902), - [anon_sym_DASH] = ACTIONS(4902), - [anon_sym_SLASH] = ACTIONS(4902), - [anon_sym_PERCENT] = ACTIONS(4902), - [anon_sym_as_QMARK] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_BANG_BANG] = ACTIONS(4904), - [anon_sym_suspend] = ACTIONS(4902), - [anon_sym_sealed] = ACTIONS(4902), - [anon_sym_annotation] = ACTIONS(4902), - [anon_sym_data] = ACTIONS(4902), - [anon_sym_inner] = ACTIONS(4902), - [anon_sym_value] = ACTIONS(4902), - [anon_sym_override] = ACTIONS(4902), - [anon_sym_lateinit] = ACTIONS(4902), - [anon_sym_public] = ACTIONS(4902), - [anon_sym_private] = ACTIONS(4902), - [anon_sym_internal] = ACTIONS(4902), - [anon_sym_protected] = ACTIONS(4902), - [anon_sym_tailrec] = ACTIONS(4902), - [anon_sym_operator] = ACTIONS(4902), - [anon_sym_infix] = ACTIONS(4902), - [anon_sym_inline] = ACTIONS(4902), - [anon_sym_external] = ACTIONS(4902), - [sym_property_modifier] = ACTIONS(4902), - [anon_sym_abstract] = ACTIONS(4902), - [anon_sym_final] = ACTIONS(4902), - [anon_sym_open] = ACTIONS(4902), - [anon_sym_vararg] = ACTIONS(4902), - [anon_sym_noinline] = ACTIONS(4902), - [anon_sym_crossinline] = ACTIONS(4902), - [anon_sym_expect] = ACTIONS(4902), - [anon_sym_actual] = ACTIONS(4902), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4904), - [sym_safe_nav] = ACTIONS(4904), - [sym_multiline_comment] = ACTIONS(3), + [3568] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(6918), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_typealias] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4004), + [anon_sym_interface] = ACTIONS(4004), + [anon_sym_enum] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4004), + [anon_sym_var] = ACTIONS(4004), + [anon_sym_LT] = ACTIONS(4009), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4009), + [sym_label] = ACTIONS(4004), + [anon_sym_for] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_do] = ACTIONS(4004), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [3539] = { - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_RBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(4707), - [anon_sym_RPAREN] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4705), - [anon_sym_DASH_GT] = ACTIONS(4707), - [sym_label] = ACTIONS(4707), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_while] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_PLUS_EQ] = ACTIONS(4707), - [anon_sym_DASH_EQ] = ACTIONS(4707), - [anon_sym_STAR_EQ] = ACTIONS(4707), - [anon_sym_SLASH_EQ] = ACTIONS(4707), - [anon_sym_PERCENT_EQ] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4705), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_suspend] = ACTIONS(4705), - [anon_sym_sealed] = ACTIONS(4705), - [anon_sym_annotation] = ACTIONS(4705), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_override] = ACTIONS(4705), - [anon_sym_lateinit] = ACTIONS(4705), - [anon_sym_public] = ACTIONS(4705), - [anon_sym_private] = ACTIONS(4705), - [anon_sym_internal] = ACTIONS(4705), - [anon_sym_protected] = ACTIONS(4705), - [anon_sym_tailrec] = ACTIONS(4705), - [anon_sym_operator] = ACTIONS(4705), - [anon_sym_infix] = ACTIONS(4705), - [anon_sym_inline] = ACTIONS(4705), - [anon_sym_external] = ACTIONS(4705), - [sym_property_modifier] = ACTIONS(4705), - [anon_sym_abstract] = ACTIONS(4705), - [anon_sym_final] = ACTIONS(4705), - [anon_sym_open] = ACTIONS(4705), - [anon_sym_vararg] = ACTIONS(4705), - [anon_sym_noinline] = ACTIONS(4705), - [anon_sym_crossinline] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), - [sym_multiline_comment] = ACTIONS(3), + [3569] = { + [ts_builtin_sym_end] = ACTIONS(6920), + [sym__alpha_identifier] = ACTIONS(6922), + [anon_sym_AT] = ACTIONS(6920), + [anon_sym_LBRACK] = ACTIONS(6920), + [anon_sym_package] = ACTIONS(6922), + [anon_sym_import] = ACTIONS(6922), + [anon_sym_typealias] = ACTIONS(6922), + [anon_sym_class] = ACTIONS(6922), + [anon_sym_interface] = ACTIONS(6922), + [anon_sym_enum] = ACTIONS(6922), + [anon_sym_LBRACE] = ACTIONS(6920), + [anon_sym_LPAREN] = ACTIONS(6920), + [anon_sym_val] = ACTIONS(6922), + [anon_sym_var] = ACTIONS(6922), + [anon_sym_object] = ACTIONS(6922), + [anon_sym_fun] = ACTIONS(6922), + [anon_sym_get] = ACTIONS(6922), + [anon_sym_set] = ACTIONS(6922), + [anon_sym_this] = ACTIONS(6922), + [anon_sym_super] = ACTIONS(6922), + [anon_sym_STAR] = ACTIONS(6920), + [sym_label] = ACTIONS(6922), + [anon_sym_for] = ACTIONS(6922), + [anon_sym_while] = ACTIONS(6922), + [anon_sym_do] = ACTIONS(6922), + [anon_sym_null] = ACTIONS(6922), + [anon_sym_if] = ACTIONS(6922), + [anon_sym_when] = ACTIONS(6922), + [anon_sym_try] = ACTIONS(6922), + [anon_sym_throw] = ACTIONS(6922), + [anon_sym_return] = ACTIONS(6922), + [anon_sym_continue] = ACTIONS(6922), + [anon_sym_break] = ACTIONS(6922), + [anon_sym_COLON_COLON] = ACTIONS(6920), + [anon_sym_PLUS] = ACTIONS(6922), + [anon_sym_DASH] = ACTIONS(6922), + [anon_sym_PLUS_PLUS] = ACTIONS(6920), + [anon_sym_DASH_DASH] = ACTIONS(6920), + [anon_sym_BANG] = ACTIONS(6920), + [anon_sym_suspend] = ACTIONS(6922), + [anon_sym_sealed] = ACTIONS(6922), + [anon_sym_annotation] = ACTIONS(6922), + [anon_sym_data] = ACTIONS(6922), + [anon_sym_inner] = ACTIONS(6922), + [anon_sym_value] = ACTIONS(6922), + [anon_sym_override] = ACTIONS(6922), + [anon_sym_lateinit] = ACTIONS(6922), + [anon_sym_public] = ACTIONS(6922), + [anon_sym_private] = ACTIONS(6922), + [anon_sym_internal] = ACTIONS(6922), + [anon_sym_protected] = ACTIONS(6922), + [anon_sym_tailrec] = ACTIONS(6922), + [anon_sym_operator] = ACTIONS(6922), + [anon_sym_infix] = ACTIONS(6922), + [anon_sym_inline] = ACTIONS(6922), + [anon_sym_external] = ACTIONS(6922), + [sym_property_modifier] = ACTIONS(6922), + [anon_sym_abstract] = ACTIONS(6922), + [anon_sym_final] = ACTIONS(6922), + [anon_sym_open] = ACTIONS(6922), + [anon_sym_vararg] = ACTIONS(6922), + [anon_sym_noinline] = ACTIONS(6922), + [anon_sym_crossinline] = ACTIONS(6922), + [anon_sym_expect] = ACTIONS(6922), + [anon_sym_actual] = ACTIONS(6922), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6920), + [anon_sym_continue_AT] = ACTIONS(6920), + [anon_sym_break_AT] = ACTIONS(6920), + [anon_sym_this_AT] = ACTIONS(6920), + [anon_sym_super_AT] = ACTIONS(6920), + [sym_real_literal] = ACTIONS(6920), + [sym_integer_literal] = ACTIONS(6922), + [sym_hex_literal] = ACTIONS(6920), + [sym_bin_literal] = ACTIONS(6920), + [anon_sym_true] = ACTIONS(6922), + [anon_sym_false] = ACTIONS(6922), + [anon_sym_SQUOTE] = ACTIONS(6920), + [sym__backtick_identifier] = ACTIONS(6920), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6920), }, - [3540] = { - [sym__alpha_identifier] = ACTIONS(5197), - [anon_sym_AT] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_as] = ACTIONS(5197), - [anon_sym_EQ] = ACTIONS(5197), - [anon_sym_LBRACE] = ACTIONS(5199), - [anon_sym_RBRACE] = ACTIONS(5199), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_where] = ACTIONS(5197), - [anon_sym_DOT] = ACTIONS(5197), - [anon_sym_SEMI] = ACTIONS(5199), - [anon_sym_get] = ACTIONS(5197), - [anon_sym_set] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_DASH_GT] = ACTIONS(5199), - [sym_label] = ACTIONS(5199), - [anon_sym_in] = ACTIONS(5197), - [anon_sym_while] = ACTIONS(5197), - [anon_sym_DOT_DOT] = ACTIONS(5199), - [anon_sym_QMARK_COLON] = ACTIONS(5199), - [anon_sym_AMP_AMP] = ACTIONS(5199), - [anon_sym_PIPE_PIPE] = ACTIONS(5199), - [anon_sym_else] = ACTIONS(5197), - [anon_sym_COLON_COLON] = ACTIONS(5199), - [anon_sym_PLUS_EQ] = ACTIONS(5199), - [anon_sym_DASH_EQ] = ACTIONS(5199), - [anon_sym_STAR_EQ] = ACTIONS(5199), - [anon_sym_SLASH_EQ] = ACTIONS(5199), - [anon_sym_PERCENT_EQ] = ACTIONS(5199), - [anon_sym_BANG_EQ] = ACTIONS(5197), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5199), - [anon_sym_EQ_EQ] = ACTIONS(5197), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5199), - [anon_sym_LT_EQ] = ACTIONS(5199), - [anon_sym_GT_EQ] = ACTIONS(5199), - [anon_sym_BANGin] = ACTIONS(5199), - [anon_sym_is] = ACTIONS(5197), - [anon_sym_BANGis] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_PERCENT] = ACTIONS(5197), - [anon_sym_as_QMARK] = ACTIONS(5199), - [anon_sym_PLUS_PLUS] = ACTIONS(5199), - [anon_sym_DASH_DASH] = ACTIONS(5199), - [anon_sym_BANG_BANG] = ACTIONS(5199), - [anon_sym_suspend] = ACTIONS(5197), - [anon_sym_sealed] = ACTIONS(5197), - [anon_sym_annotation] = ACTIONS(5197), - [anon_sym_data] = ACTIONS(5197), - [anon_sym_inner] = ACTIONS(5197), - [anon_sym_value] = ACTIONS(5197), - [anon_sym_override] = ACTIONS(5197), - [anon_sym_lateinit] = ACTIONS(5197), - [anon_sym_public] = ACTIONS(5197), - [anon_sym_private] = ACTIONS(5197), - [anon_sym_internal] = ACTIONS(5197), - [anon_sym_protected] = ACTIONS(5197), - [anon_sym_tailrec] = ACTIONS(5197), - [anon_sym_operator] = ACTIONS(5197), - [anon_sym_infix] = ACTIONS(5197), - [anon_sym_inline] = ACTIONS(5197), - [anon_sym_external] = ACTIONS(5197), - [sym_property_modifier] = ACTIONS(5197), - [anon_sym_abstract] = ACTIONS(5197), - [anon_sym_final] = ACTIONS(5197), - [anon_sym_open] = ACTIONS(5197), - [anon_sym_vararg] = ACTIONS(5197), - [anon_sym_noinline] = ACTIONS(5197), - [anon_sym_crossinline] = ACTIONS(5197), - [anon_sym_expect] = ACTIONS(5197), - [anon_sym_actual] = ACTIONS(5197), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5199), - [sym_safe_nav] = ACTIONS(5199), - [sym_multiline_comment] = ACTIONS(3), + [3570] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6924), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [3541] = { - [sym__alpha_identifier] = ACTIONS(5187), - [anon_sym_AT] = ACTIONS(5189), - [anon_sym_LBRACK] = ACTIONS(5189), - [anon_sym_RBRACK] = ACTIONS(5189), - [anon_sym_as] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5189), - [anon_sym_RBRACE] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5189), - [anon_sym_COMMA] = ACTIONS(5189), - [anon_sym_RPAREN] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5187), - [anon_sym_GT] = ACTIONS(5187), - [anon_sym_where] = ACTIONS(5187), - [anon_sym_DOT] = ACTIONS(5187), - [anon_sym_SEMI] = ACTIONS(5189), - [anon_sym_get] = ACTIONS(5187), - [anon_sym_set] = ACTIONS(5187), - [anon_sym_STAR] = ACTIONS(5187), - [anon_sym_DASH_GT] = ACTIONS(5189), - [sym_label] = ACTIONS(5189), - [anon_sym_in] = ACTIONS(5187), - [anon_sym_while] = ACTIONS(5187), - [anon_sym_DOT_DOT] = ACTIONS(5189), - [anon_sym_QMARK_COLON] = ACTIONS(5189), - [anon_sym_AMP_AMP] = ACTIONS(5189), - [anon_sym_PIPE_PIPE] = ACTIONS(5189), - [anon_sym_else] = ACTIONS(5187), - [anon_sym_COLON_COLON] = ACTIONS(5189), - [anon_sym_PLUS_EQ] = ACTIONS(5189), - [anon_sym_DASH_EQ] = ACTIONS(5189), - [anon_sym_STAR_EQ] = ACTIONS(5189), - [anon_sym_SLASH_EQ] = ACTIONS(5189), - [anon_sym_PERCENT_EQ] = ACTIONS(5189), - [anon_sym_BANG_EQ] = ACTIONS(5187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5189), - [anon_sym_EQ_EQ] = ACTIONS(5187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5189), - [anon_sym_LT_EQ] = ACTIONS(5189), - [anon_sym_GT_EQ] = ACTIONS(5189), - [anon_sym_BANGin] = ACTIONS(5189), - [anon_sym_is] = ACTIONS(5187), - [anon_sym_BANGis] = ACTIONS(5189), - [anon_sym_PLUS] = ACTIONS(5187), - [anon_sym_DASH] = ACTIONS(5187), - [anon_sym_SLASH] = ACTIONS(5187), - [anon_sym_PERCENT] = ACTIONS(5187), - [anon_sym_as_QMARK] = ACTIONS(5189), - [anon_sym_PLUS_PLUS] = ACTIONS(5189), - [anon_sym_DASH_DASH] = ACTIONS(5189), - [anon_sym_BANG_BANG] = ACTIONS(5189), - [anon_sym_suspend] = ACTIONS(5187), - [anon_sym_sealed] = ACTIONS(5187), - [anon_sym_annotation] = ACTIONS(5187), - [anon_sym_data] = ACTIONS(5187), - [anon_sym_inner] = ACTIONS(5187), - [anon_sym_value] = ACTIONS(5187), - [anon_sym_override] = ACTIONS(5187), - [anon_sym_lateinit] = ACTIONS(5187), - [anon_sym_public] = ACTIONS(5187), - [anon_sym_private] = ACTIONS(5187), - [anon_sym_internal] = ACTIONS(5187), - [anon_sym_protected] = ACTIONS(5187), - [anon_sym_tailrec] = ACTIONS(5187), - [anon_sym_operator] = ACTIONS(5187), - [anon_sym_infix] = ACTIONS(5187), - [anon_sym_inline] = ACTIONS(5187), - [anon_sym_external] = ACTIONS(5187), - [sym_property_modifier] = ACTIONS(5187), - [anon_sym_abstract] = ACTIONS(5187), - [anon_sym_final] = ACTIONS(5187), - [anon_sym_open] = ACTIONS(5187), - [anon_sym_vararg] = ACTIONS(5187), - [anon_sym_noinline] = ACTIONS(5187), - [anon_sym_crossinline] = ACTIONS(5187), - [anon_sym_expect] = ACTIONS(5187), - [anon_sym_actual] = ACTIONS(5187), + [3571] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6928), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5189), - [sym_safe_nav] = ACTIONS(5189), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [3542] = { - [sym__alpha_identifier] = ACTIONS(5239), - [anon_sym_AT] = ACTIONS(5241), - [anon_sym_LBRACK] = ACTIONS(5241), - [anon_sym_RBRACK] = ACTIONS(5241), - [anon_sym_as] = ACTIONS(5239), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5241), - [anon_sym_RBRACE] = ACTIONS(5241), - [anon_sym_LPAREN] = ACTIONS(5241), - [anon_sym_COMMA] = ACTIONS(5241), - [anon_sym_RPAREN] = ACTIONS(5241), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_where] = ACTIONS(5239), - [anon_sym_DOT] = ACTIONS(5239), - [anon_sym_SEMI] = ACTIONS(5241), - [anon_sym_get] = ACTIONS(5239), - [anon_sym_set] = ACTIONS(5239), - [anon_sym_STAR] = ACTIONS(5239), - [anon_sym_DASH_GT] = ACTIONS(5241), - [sym_label] = ACTIONS(5241), - [anon_sym_in] = ACTIONS(5239), - [anon_sym_while] = ACTIONS(5239), - [anon_sym_DOT_DOT] = ACTIONS(5241), - [anon_sym_QMARK_COLON] = ACTIONS(5241), - [anon_sym_AMP_AMP] = ACTIONS(5241), - [anon_sym_PIPE_PIPE] = ACTIONS(5241), - [anon_sym_else] = ACTIONS(5239), - [anon_sym_COLON_COLON] = ACTIONS(5241), - [anon_sym_PLUS_EQ] = ACTIONS(5241), - [anon_sym_DASH_EQ] = ACTIONS(5241), - [anon_sym_STAR_EQ] = ACTIONS(5241), - [anon_sym_SLASH_EQ] = ACTIONS(5241), - [anon_sym_PERCENT_EQ] = ACTIONS(5241), - [anon_sym_BANG_EQ] = ACTIONS(5239), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5241), - [anon_sym_EQ_EQ] = ACTIONS(5239), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5241), - [anon_sym_LT_EQ] = ACTIONS(5241), - [anon_sym_GT_EQ] = ACTIONS(5241), - [anon_sym_BANGin] = ACTIONS(5241), - [anon_sym_is] = ACTIONS(5239), - [anon_sym_BANGis] = ACTIONS(5241), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_PERCENT] = ACTIONS(5239), - [anon_sym_as_QMARK] = ACTIONS(5241), - [anon_sym_PLUS_PLUS] = ACTIONS(5241), - [anon_sym_DASH_DASH] = ACTIONS(5241), - [anon_sym_BANG_BANG] = ACTIONS(5241), - [anon_sym_suspend] = ACTIONS(5239), - [anon_sym_sealed] = ACTIONS(5239), - [anon_sym_annotation] = ACTIONS(5239), - [anon_sym_data] = ACTIONS(5239), - [anon_sym_inner] = ACTIONS(5239), - [anon_sym_value] = ACTIONS(5239), - [anon_sym_override] = ACTIONS(5239), - [anon_sym_lateinit] = ACTIONS(5239), - [anon_sym_public] = ACTIONS(5239), - [anon_sym_private] = ACTIONS(5239), - [anon_sym_internal] = ACTIONS(5239), - [anon_sym_protected] = ACTIONS(5239), - [anon_sym_tailrec] = ACTIONS(5239), - [anon_sym_operator] = ACTIONS(5239), - [anon_sym_infix] = ACTIONS(5239), - [anon_sym_inline] = ACTIONS(5239), - [anon_sym_external] = ACTIONS(5239), - [sym_property_modifier] = ACTIONS(5239), - [anon_sym_abstract] = ACTIONS(5239), - [anon_sym_final] = ACTIONS(5239), - [anon_sym_open] = ACTIONS(5239), - [anon_sym_vararg] = ACTIONS(5239), - [anon_sym_noinline] = ACTIONS(5239), - [anon_sym_crossinline] = ACTIONS(5239), - [anon_sym_expect] = ACTIONS(5239), - [anon_sym_actual] = ACTIONS(5239), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5241), - [sym_safe_nav] = ACTIONS(5241), - [sym_multiline_comment] = ACTIONS(3), - }, - [3543] = { - [sym_type_constraints] = STATE(3749), - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3335), + [3572] = { + [sym_type_constraints] = STATE(3937), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(6932), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(6547), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), [anon_sym_in] = ACTIONS(4183), [anon_sym_DOT_DOT] = ACTIONS(4185), [anon_sym_QMARK_COLON] = ACTIONS(4185), [anon_sym_AMP_AMP] = ACTIONS(4185), [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), [anon_sym_BANG_EQ] = ACTIONS(4183), [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), [anon_sym_EQ_EQ] = ACTIONS(4183), @@ -409963,1531 +410108,1040 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4183), [anon_sym_DASH] = ACTIONS(4183), [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_PERCENT] = ACTIONS(4183), [anon_sym_as_QMARK] = ACTIONS(4185), [anon_sym_PLUS_PLUS] = ACTIONS(4185), [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), [anon_sym_data] = ACTIONS(4183), [anon_sym_inner] = ACTIONS(4183), [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), [anon_sym_expect] = ACTIONS(4183), [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), - }, - [3544] = { - [sym__alpha_identifier] = ACTIONS(4667), - [anon_sym_AT] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_fun] = ACTIONS(4667), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_RBRACE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_by] = ACTIONS(4667), - [anon_sym_where] = ACTIONS(4667), - [anon_sym_object] = ACTIONS(4667), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_get] = ACTIONS(4667), - [anon_sym_set] = ACTIONS(4667), - [anon_sym_this] = ACTIONS(4667), - [anon_sym_super] = ACTIONS(4667), - [anon_sym_STAR] = ACTIONS(4669), - [sym_label] = ACTIONS(4667), - [anon_sym_in] = ACTIONS(4667), - [anon_sym_null] = ACTIONS(4667), - [anon_sym_if] = ACTIONS(4667), - [anon_sym_else] = ACTIONS(4667), - [anon_sym_when] = ACTIONS(4667), - [anon_sym_try] = ACTIONS(4667), - [anon_sym_throw] = ACTIONS(4667), - [anon_sym_return] = ACTIONS(4667), - [anon_sym_continue] = ACTIONS(4667), - [anon_sym_break] = ACTIONS(4667), - [anon_sym_COLON_COLON] = ACTIONS(4669), - [anon_sym_BANGin] = ACTIONS(4669), - [anon_sym_is] = ACTIONS(4667), - [anon_sym_BANGis] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4667), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_PLUS_PLUS] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4667), - [anon_sym_suspend] = ACTIONS(4667), - [anon_sym_sealed] = ACTIONS(4667), - [anon_sym_annotation] = ACTIONS(4667), - [anon_sym_data] = ACTIONS(4667), - [anon_sym_inner] = ACTIONS(4667), - [anon_sym_value] = ACTIONS(4667), - [anon_sym_override] = ACTIONS(4667), - [anon_sym_lateinit] = ACTIONS(4667), - [anon_sym_public] = ACTIONS(4667), - [anon_sym_private] = ACTIONS(4667), - [anon_sym_internal] = ACTIONS(4667), - [anon_sym_protected] = ACTIONS(4667), - [anon_sym_tailrec] = ACTIONS(4667), - [anon_sym_operator] = ACTIONS(4667), - [anon_sym_infix] = ACTIONS(4667), - [anon_sym_inline] = ACTIONS(4667), - [anon_sym_external] = ACTIONS(4667), - [sym_property_modifier] = ACTIONS(4667), - [anon_sym_abstract] = ACTIONS(4667), - [anon_sym_final] = ACTIONS(4667), - [anon_sym_open] = ACTIONS(4667), - [anon_sym_vararg] = ACTIONS(4667), - [anon_sym_noinline] = ACTIONS(4667), - [anon_sym_crossinline] = ACTIONS(4667), - [anon_sym_expect] = ACTIONS(4667), - [anon_sym_actual] = ACTIONS(4667), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4669), - [anon_sym_continue_AT] = ACTIONS(4669), - [anon_sym_break_AT] = ACTIONS(4669), - [anon_sym_this_AT] = ACTIONS(4669), - [anon_sym_super_AT] = ACTIONS(4669), - [sym_real_literal] = ACTIONS(4669), - [sym_integer_literal] = ACTIONS(4667), - [sym_hex_literal] = ACTIONS(4669), - [sym_bin_literal] = ACTIONS(4669), - [anon_sym_true] = ACTIONS(4667), - [anon_sym_false] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4669), - [sym__backtick_identifier] = ACTIONS(4669), - [sym__automatic_semicolon] = ACTIONS(4669), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4669), }, - [3545] = { - [sym__alpha_identifier] = ACTIONS(5183), - [anon_sym_AT] = ACTIONS(5185), - [anon_sym_LBRACK] = ACTIONS(5185), - [anon_sym_RBRACK] = ACTIONS(5185), - [anon_sym_as] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5185), - [anon_sym_RBRACE] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5185), - [anon_sym_COMMA] = ACTIONS(5185), - [anon_sym_RPAREN] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5183), - [anon_sym_GT] = ACTIONS(5183), - [anon_sym_where] = ACTIONS(5183), - [anon_sym_DOT] = ACTIONS(5183), - [anon_sym_SEMI] = ACTIONS(5185), - [anon_sym_get] = ACTIONS(5183), - [anon_sym_set] = ACTIONS(5183), - [anon_sym_STAR] = ACTIONS(5183), - [anon_sym_DASH_GT] = ACTIONS(5185), - [sym_label] = ACTIONS(5185), - [anon_sym_in] = ACTIONS(5183), - [anon_sym_while] = ACTIONS(5183), - [anon_sym_DOT_DOT] = ACTIONS(5185), - [anon_sym_QMARK_COLON] = ACTIONS(5185), - [anon_sym_AMP_AMP] = ACTIONS(5185), - [anon_sym_PIPE_PIPE] = ACTIONS(5185), - [anon_sym_else] = ACTIONS(5183), - [anon_sym_COLON_COLON] = ACTIONS(5185), - [anon_sym_PLUS_EQ] = ACTIONS(5185), - [anon_sym_DASH_EQ] = ACTIONS(5185), - [anon_sym_STAR_EQ] = ACTIONS(5185), - [anon_sym_SLASH_EQ] = ACTIONS(5185), - [anon_sym_PERCENT_EQ] = ACTIONS(5185), - [anon_sym_BANG_EQ] = ACTIONS(5183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5185), - [anon_sym_EQ_EQ] = ACTIONS(5183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5185), - [anon_sym_LT_EQ] = ACTIONS(5185), - [anon_sym_GT_EQ] = ACTIONS(5185), - [anon_sym_BANGin] = ACTIONS(5185), - [anon_sym_is] = ACTIONS(5183), - [anon_sym_BANGis] = ACTIONS(5185), - [anon_sym_PLUS] = ACTIONS(5183), - [anon_sym_DASH] = ACTIONS(5183), - [anon_sym_SLASH] = ACTIONS(5183), - [anon_sym_PERCENT] = ACTIONS(5183), - [anon_sym_as_QMARK] = ACTIONS(5185), - [anon_sym_PLUS_PLUS] = ACTIONS(5185), - [anon_sym_DASH_DASH] = ACTIONS(5185), - [anon_sym_BANG_BANG] = ACTIONS(5185), - [anon_sym_suspend] = ACTIONS(5183), - [anon_sym_sealed] = ACTIONS(5183), - [anon_sym_annotation] = ACTIONS(5183), - [anon_sym_data] = ACTIONS(5183), - [anon_sym_inner] = ACTIONS(5183), - [anon_sym_value] = ACTIONS(5183), - [anon_sym_override] = ACTIONS(5183), - [anon_sym_lateinit] = ACTIONS(5183), - [anon_sym_public] = ACTIONS(5183), - [anon_sym_private] = ACTIONS(5183), - [anon_sym_internal] = ACTIONS(5183), - [anon_sym_protected] = ACTIONS(5183), - [anon_sym_tailrec] = ACTIONS(5183), - [anon_sym_operator] = ACTIONS(5183), - [anon_sym_infix] = ACTIONS(5183), - [anon_sym_inline] = ACTIONS(5183), - [anon_sym_external] = ACTIONS(5183), - [sym_property_modifier] = ACTIONS(5183), - [anon_sym_abstract] = ACTIONS(5183), - [anon_sym_final] = ACTIONS(5183), - [anon_sym_open] = ACTIONS(5183), - [anon_sym_vararg] = ACTIONS(5183), - [anon_sym_noinline] = ACTIONS(5183), - [anon_sym_crossinline] = ACTIONS(5183), - [anon_sym_expect] = ACTIONS(5183), - [anon_sym_actual] = ACTIONS(5183), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5185), - [sym_safe_nav] = ACTIONS(5185), + [3573] = { + [sym_class_body] = STATE(3565), + [sym_type_constraints] = STATE(3329), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(5934), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [3546] = { - [sym__alpha_identifier] = ACTIONS(4587), - [anon_sym_AT] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_EQ] = ACTIONS(4589), - [anon_sym_fun] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4589), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_LPAREN] = ACTIONS(4589), - [anon_sym_COMMA] = ACTIONS(4589), - [anon_sym_by] = ACTIONS(4587), - [anon_sym_where] = ACTIONS(4587), - [anon_sym_object] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [anon_sym_get] = ACTIONS(4587), - [anon_sym_set] = ACTIONS(4587), - [anon_sym_this] = ACTIONS(4587), - [anon_sym_super] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4589), - [sym_label] = ACTIONS(4587), - [anon_sym_in] = ACTIONS(4587), - [anon_sym_null] = ACTIONS(4587), - [anon_sym_if] = ACTIONS(4587), - [anon_sym_else] = ACTIONS(4587), - [anon_sym_when] = ACTIONS(4587), - [anon_sym_try] = ACTIONS(4587), - [anon_sym_throw] = ACTIONS(4587), - [anon_sym_return] = ACTIONS(4587), - [anon_sym_continue] = ACTIONS(4587), - [anon_sym_break] = ACTIONS(4587), - [anon_sym_COLON_COLON] = ACTIONS(4589), - [anon_sym_BANGin] = ACTIONS(4589), - [anon_sym_is] = ACTIONS(4587), - [anon_sym_BANGis] = ACTIONS(4589), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_PLUS_PLUS] = ACTIONS(4589), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_suspend] = ACTIONS(4587), - [anon_sym_sealed] = ACTIONS(4587), - [anon_sym_annotation] = ACTIONS(4587), - [anon_sym_data] = ACTIONS(4587), - [anon_sym_inner] = ACTIONS(4587), - [anon_sym_value] = ACTIONS(4587), - [anon_sym_override] = ACTIONS(4587), - [anon_sym_lateinit] = ACTIONS(4587), - [anon_sym_public] = ACTIONS(4587), - [anon_sym_private] = ACTIONS(4587), - [anon_sym_internal] = ACTIONS(4587), - [anon_sym_protected] = ACTIONS(4587), - [anon_sym_tailrec] = ACTIONS(4587), - [anon_sym_operator] = ACTIONS(4587), - [anon_sym_infix] = ACTIONS(4587), - [anon_sym_inline] = ACTIONS(4587), - [anon_sym_external] = ACTIONS(4587), - [sym_property_modifier] = ACTIONS(4587), - [anon_sym_abstract] = ACTIONS(4587), - [anon_sym_final] = ACTIONS(4587), - [anon_sym_open] = ACTIONS(4587), - [anon_sym_vararg] = ACTIONS(4587), - [anon_sym_noinline] = ACTIONS(4587), - [anon_sym_crossinline] = ACTIONS(4587), - [anon_sym_expect] = ACTIONS(4587), - [anon_sym_actual] = ACTIONS(4587), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4589), - [anon_sym_continue_AT] = ACTIONS(4589), - [anon_sym_break_AT] = ACTIONS(4589), - [anon_sym_this_AT] = ACTIONS(4589), - [anon_sym_super_AT] = ACTIONS(4589), - [sym_real_literal] = ACTIONS(4589), - [sym_integer_literal] = ACTIONS(4587), - [sym_hex_literal] = ACTIONS(4589), - [sym_bin_literal] = ACTIONS(4589), - [anon_sym_true] = ACTIONS(4587), - [anon_sym_false] = ACTIONS(4587), - [anon_sym_SQUOTE] = ACTIONS(4589), - [sym__backtick_identifier] = ACTIONS(4589), - [sym__automatic_semicolon] = ACTIONS(4589), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4589), - }, - [3547] = { - [sym__alpha_identifier] = ACTIONS(4681), - [anon_sym_AT] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_EQ] = ACTIONS(4683), - [anon_sym_fun] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4683), - [anon_sym_RBRACE] = ACTIONS(4683), - [anon_sym_LPAREN] = ACTIONS(4683), - [anon_sym_COMMA] = ACTIONS(4683), - [anon_sym_by] = ACTIONS(4681), - [anon_sym_where] = ACTIONS(4681), - [anon_sym_object] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_get] = ACTIONS(4681), - [anon_sym_set] = ACTIONS(4681), - [anon_sym_this] = ACTIONS(4681), - [anon_sym_super] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4683), - [sym_label] = ACTIONS(4681), - [anon_sym_in] = ACTIONS(4681), - [anon_sym_null] = ACTIONS(4681), - [anon_sym_if] = ACTIONS(4681), - [anon_sym_else] = ACTIONS(4681), - [anon_sym_when] = ACTIONS(4681), - [anon_sym_try] = ACTIONS(4681), - [anon_sym_throw] = ACTIONS(4681), - [anon_sym_return] = ACTIONS(4681), - [anon_sym_continue] = ACTIONS(4681), - [anon_sym_break] = ACTIONS(4681), - [anon_sym_COLON_COLON] = ACTIONS(4683), - [anon_sym_BANGin] = ACTIONS(4683), - [anon_sym_is] = ACTIONS(4681), - [anon_sym_BANGis] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4681), - [anon_sym_PLUS_PLUS] = ACTIONS(4683), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_suspend] = ACTIONS(4681), - [anon_sym_sealed] = ACTIONS(4681), - [anon_sym_annotation] = ACTIONS(4681), - [anon_sym_data] = ACTIONS(4681), - [anon_sym_inner] = ACTIONS(4681), - [anon_sym_value] = ACTIONS(4681), - [anon_sym_override] = ACTIONS(4681), - [anon_sym_lateinit] = ACTIONS(4681), - [anon_sym_public] = ACTIONS(4681), - [anon_sym_private] = ACTIONS(4681), - [anon_sym_internal] = ACTIONS(4681), - [anon_sym_protected] = ACTIONS(4681), - [anon_sym_tailrec] = ACTIONS(4681), - [anon_sym_operator] = ACTIONS(4681), - [anon_sym_infix] = ACTIONS(4681), - [anon_sym_inline] = ACTIONS(4681), - [anon_sym_external] = ACTIONS(4681), - [sym_property_modifier] = ACTIONS(4681), - [anon_sym_abstract] = ACTIONS(4681), - [anon_sym_final] = ACTIONS(4681), - [anon_sym_open] = ACTIONS(4681), - [anon_sym_vararg] = ACTIONS(4681), - [anon_sym_noinline] = ACTIONS(4681), - [anon_sym_crossinline] = ACTIONS(4681), - [anon_sym_expect] = ACTIONS(4681), - [anon_sym_actual] = ACTIONS(4681), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4683), - [anon_sym_continue_AT] = ACTIONS(4683), - [anon_sym_break_AT] = ACTIONS(4683), - [anon_sym_this_AT] = ACTIONS(4683), - [anon_sym_super_AT] = ACTIONS(4683), - [sym_real_literal] = ACTIONS(4683), - [sym_integer_literal] = ACTIONS(4681), - [sym_hex_literal] = ACTIONS(4683), - [sym_bin_literal] = ACTIONS(4683), - [anon_sym_true] = ACTIONS(4681), - [anon_sym_false] = ACTIONS(4681), - [anon_sym_SQUOTE] = ACTIONS(4683), - [sym__backtick_identifier] = ACTIONS(4683), - [sym__automatic_semicolon] = ACTIONS(4683), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4683), - }, - [3548] = { - [sym__alpha_identifier] = ACTIONS(4888), - [anon_sym_AT] = ACTIONS(4890), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_RBRACK] = ACTIONS(4890), - [anon_sym_as] = ACTIONS(4888), - [anon_sym_EQ] = ACTIONS(4888), - [anon_sym_LBRACE] = ACTIONS(4890), - [anon_sym_RBRACE] = ACTIONS(4890), - [anon_sym_LPAREN] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_where] = ACTIONS(4888), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_get] = ACTIONS(4888), - [anon_sym_set] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(4890), - [sym_label] = ACTIONS(4890), - [anon_sym_in] = ACTIONS(4888), - [anon_sym_while] = ACTIONS(4888), - [anon_sym_DOT_DOT] = ACTIONS(4890), - [anon_sym_QMARK_COLON] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_else] = ACTIONS(4888), - [anon_sym_COLON_COLON] = ACTIONS(4890), - [anon_sym_PLUS_EQ] = ACTIONS(4890), - [anon_sym_DASH_EQ] = ACTIONS(4890), - [anon_sym_STAR_EQ] = ACTIONS(4890), - [anon_sym_SLASH_EQ] = ACTIONS(4890), - [anon_sym_PERCENT_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4888), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4890), - [anon_sym_EQ_EQ] = ACTIONS(4888), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ] = ACTIONS(4890), - [anon_sym_GT_EQ] = ACTIONS(4890), - [anon_sym_BANGin] = ACTIONS(4890), - [anon_sym_is] = ACTIONS(4888), - [anon_sym_BANGis] = ACTIONS(4890), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4888), - [anon_sym_as_QMARK] = ACTIONS(4890), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_BANG_BANG] = ACTIONS(4890), - [anon_sym_suspend] = ACTIONS(4888), - [anon_sym_sealed] = ACTIONS(4888), - [anon_sym_annotation] = ACTIONS(4888), - [anon_sym_data] = ACTIONS(4888), - [anon_sym_inner] = ACTIONS(4888), - [anon_sym_value] = ACTIONS(4888), - [anon_sym_override] = ACTIONS(4888), - [anon_sym_lateinit] = ACTIONS(4888), - [anon_sym_public] = ACTIONS(4888), - [anon_sym_private] = ACTIONS(4888), - [anon_sym_internal] = ACTIONS(4888), - [anon_sym_protected] = ACTIONS(4888), - [anon_sym_tailrec] = ACTIONS(4888), - [anon_sym_operator] = ACTIONS(4888), - [anon_sym_infix] = ACTIONS(4888), - [anon_sym_inline] = ACTIONS(4888), - [anon_sym_external] = ACTIONS(4888), - [sym_property_modifier] = ACTIONS(4888), - [anon_sym_abstract] = ACTIONS(4888), - [anon_sym_final] = ACTIONS(4888), - [anon_sym_open] = ACTIONS(4888), - [anon_sym_vararg] = ACTIONS(4888), - [anon_sym_noinline] = ACTIONS(4888), - [anon_sym_crossinline] = ACTIONS(4888), - [anon_sym_expect] = ACTIONS(4888), - [anon_sym_actual] = ACTIONS(4888), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4890), - [sym_safe_nav] = ACTIONS(4890), + [3574] = { + [sym_type_constraints] = STATE(3913), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6936), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, - [3549] = { - [sym__alpha_identifier] = ACTIONS(5141), - [anon_sym_AT] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_RBRACK] = ACTIONS(5143), - [anon_sym_as] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_RBRACE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5141), - [anon_sym_where] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_get] = ACTIONS(5141), - [anon_sym_set] = ACTIONS(5141), - [anon_sym_STAR] = ACTIONS(5141), - [anon_sym_DASH_GT] = ACTIONS(5143), - [sym_label] = ACTIONS(5143), - [anon_sym_in] = ACTIONS(5141), - [anon_sym_while] = ACTIONS(5141), - [anon_sym_DOT_DOT] = ACTIONS(5143), - [anon_sym_QMARK_COLON] = ACTIONS(5143), - [anon_sym_AMP_AMP] = ACTIONS(5143), - [anon_sym_PIPE_PIPE] = ACTIONS(5143), - [anon_sym_else] = ACTIONS(5141), - [anon_sym_COLON_COLON] = ACTIONS(5143), - [anon_sym_PLUS_EQ] = ACTIONS(5143), - [anon_sym_DASH_EQ] = ACTIONS(5143), - [anon_sym_STAR_EQ] = ACTIONS(5143), - [anon_sym_SLASH_EQ] = ACTIONS(5143), - [anon_sym_PERCENT_EQ] = ACTIONS(5143), - [anon_sym_BANG_EQ] = ACTIONS(5141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5143), - [anon_sym_EQ_EQ] = ACTIONS(5141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5143), - [anon_sym_LT_EQ] = ACTIONS(5143), - [anon_sym_GT_EQ] = ACTIONS(5143), - [anon_sym_BANGin] = ACTIONS(5143), - [anon_sym_is] = ACTIONS(5141), - [anon_sym_BANGis] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5141), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5141), - [anon_sym_PERCENT] = ACTIONS(5141), - [anon_sym_as_QMARK] = ACTIONS(5143), - [anon_sym_PLUS_PLUS] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5143), - [anon_sym_BANG_BANG] = ACTIONS(5143), - [anon_sym_suspend] = ACTIONS(5141), - [anon_sym_sealed] = ACTIONS(5141), - [anon_sym_annotation] = ACTIONS(5141), - [anon_sym_data] = ACTIONS(5141), - [anon_sym_inner] = ACTIONS(5141), - [anon_sym_value] = ACTIONS(5141), - [anon_sym_override] = ACTIONS(5141), - [anon_sym_lateinit] = ACTIONS(5141), - [anon_sym_public] = ACTIONS(5141), - [anon_sym_private] = ACTIONS(5141), - [anon_sym_internal] = ACTIONS(5141), - [anon_sym_protected] = ACTIONS(5141), - [anon_sym_tailrec] = ACTIONS(5141), - [anon_sym_operator] = ACTIONS(5141), - [anon_sym_infix] = ACTIONS(5141), - [anon_sym_inline] = ACTIONS(5141), - [anon_sym_external] = ACTIONS(5141), - [sym_property_modifier] = ACTIONS(5141), - [anon_sym_abstract] = ACTIONS(5141), - [anon_sym_final] = ACTIONS(5141), - [anon_sym_open] = ACTIONS(5141), - [anon_sym_vararg] = ACTIONS(5141), - [anon_sym_noinline] = ACTIONS(5141), - [anon_sym_crossinline] = ACTIONS(5141), - [anon_sym_expect] = ACTIONS(5141), - [anon_sym_actual] = ACTIONS(5141), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5143), - [sym_safe_nav] = ACTIONS(5143), + [3575] = { + [sym_class_body] = STATE(3543), + [sym_type_constraints] = STATE(3346), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(6938), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), }, - [3550] = { - [sym__alpha_identifier] = ACTIONS(5243), - [anon_sym_AT] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_RBRACK] = ACTIONS(5245), - [anon_sym_as] = ACTIONS(5243), - [anon_sym_EQ] = ACTIONS(5243), - [anon_sym_LBRACE] = ACTIONS(5245), - [anon_sym_RBRACE] = ACTIONS(5245), - [anon_sym_LPAREN] = ACTIONS(5245), - [anon_sym_COMMA] = ACTIONS(5245), - [anon_sym_RPAREN] = ACTIONS(5245), - [anon_sym_LT] = ACTIONS(5243), - [anon_sym_GT] = ACTIONS(5243), - [anon_sym_where] = ACTIONS(5243), - [anon_sym_DOT] = ACTIONS(5243), - [anon_sym_SEMI] = ACTIONS(5245), - [anon_sym_get] = ACTIONS(5243), - [anon_sym_set] = ACTIONS(5243), - [anon_sym_STAR] = ACTIONS(5243), - [anon_sym_DASH_GT] = ACTIONS(5245), - [sym_label] = ACTIONS(5245), - [anon_sym_in] = ACTIONS(5243), - [anon_sym_while] = ACTIONS(5243), - [anon_sym_DOT_DOT] = ACTIONS(5245), - [anon_sym_QMARK_COLON] = ACTIONS(5245), - [anon_sym_AMP_AMP] = ACTIONS(5245), - [anon_sym_PIPE_PIPE] = ACTIONS(5245), - [anon_sym_else] = ACTIONS(5243), - [anon_sym_COLON_COLON] = ACTIONS(5245), - [anon_sym_PLUS_EQ] = ACTIONS(5245), - [anon_sym_DASH_EQ] = ACTIONS(5245), - [anon_sym_STAR_EQ] = ACTIONS(5245), - [anon_sym_SLASH_EQ] = ACTIONS(5245), - [anon_sym_PERCENT_EQ] = ACTIONS(5245), - [anon_sym_BANG_EQ] = ACTIONS(5243), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5245), - [anon_sym_EQ_EQ] = ACTIONS(5243), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5245), - [anon_sym_LT_EQ] = ACTIONS(5245), - [anon_sym_GT_EQ] = ACTIONS(5245), - [anon_sym_BANGin] = ACTIONS(5245), - [anon_sym_is] = ACTIONS(5243), - [anon_sym_BANGis] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5243), - [anon_sym_DASH] = ACTIONS(5243), - [anon_sym_SLASH] = ACTIONS(5243), - [anon_sym_PERCENT] = ACTIONS(5243), - [anon_sym_as_QMARK] = ACTIONS(5245), - [anon_sym_PLUS_PLUS] = ACTIONS(5245), - [anon_sym_DASH_DASH] = ACTIONS(5245), - [anon_sym_BANG_BANG] = ACTIONS(5245), - [anon_sym_suspend] = ACTIONS(5243), - [anon_sym_sealed] = ACTIONS(5243), - [anon_sym_annotation] = ACTIONS(5243), - [anon_sym_data] = ACTIONS(5243), - [anon_sym_inner] = ACTIONS(5243), - [anon_sym_value] = ACTIONS(5243), - [anon_sym_override] = ACTIONS(5243), - [anon_sym_lateinit] = ACTIONS(5243), - [anon_sym_public] = ACTIONS(5243), - [anon_sym_private] = ACTIONS(5243), - [anon_sym_internal] = ACTIONS(5243), - [anon_sym_protected] = ACTIONS(5243), - [anon_sym_tailrec] = ACTIONS(5243), - [anon_sym_operator] = ACTIONS(5243), - [anon_sym_infix] = ACTIONS(5243), - [anon_sym_inline] = ACTIONS(5243), - [anon_sym_external] = ACTIONS(5243), - [sym_property_modifier] = ACTIONS(5243), - [anon_sym_abstract] = ACTIONS(5243), - [anon_sym_final] = ACTIONS(5243), - [anon_sym_open] = ACTIONS(5243), - [anon_sym_vararg] = ACTIONS(5243), - [anon_sym_noinline] = ACTIONS(5243), - [anon_sym_crossinline] = ACTIONS(5243), - [anon_sym_expect] = ACTIONS(5243), - [anon_sym_actual] = ACTIONS(5243), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5245), - [sym_safe_nav] = ACTIONS(5245), + [3576] = { + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [3551] = { - [aux_sym_type_constraints_repeat1] = STATE(3551), - [sym__alpha_identifier] = ACTIONS(4495), - [anon_sym_AT] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_EQ] = ACTIONS(4497), - [anon_sym_fun] = ACTIONS(4495), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_COMMA] = ACTIONS(6998), - [anon_sym_by] = ACTIONS(4495), - [anon_sym_object] = ACTIONS(4495), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_get] = ACTIONS(4495), - [anon_sym_set] = ACTIONS(4495), - [anon_sym_this] = ACTIONS(4495), - [anon_sym_super] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4497), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4495), - [anon_sym_null] = ACTIONS(4495), - [anon_sym_if] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4495), - [anon_sym_when] = ACTIONS(4495), - [anon_sym_try] = ACTIONS(4495), - [anon_sym_throw] = ACTIONS(4495), - [anon_sym_return] = ACTIONS(4495), - [anon_sym_continue] = ACTIONS(4495), - [anon_sym_break] = ACTIONS(4495), - [anon_sym_COLON_COLON] = ACTIONS(4497), - [anon_sym_BANGin] = ACTIONS(4497), - [anon_sym_is] = ACTIONS(4495), - [anon_sym_BANGis] = ACTIONS(4497), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4497), - [anon_sym_DASH_DASH] = ACTIONS(4497), - [anon_sym_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4495), - [anon_sym_sealed] = ACTIONS(4495), - [anon_sym_annotation] = ACTIONS(4495), - [anon_sym_data] = ACTIONS(4495), - [anon_sym_inner] = ACTIONS(4495), - [anon_sym_value] = ACTIONS(4495), - [anon_sym_override] = ACTIONS(4495), - [anon_sym_lateinit] = ACTIONS(4495), - [anon_sym_public] = ACTIONS(4495), - [anon_sym_private] = ACTIONS(4495), - [anon_sym_internal] = ACTIONS(4495), - [anon_sym_protected] = ACTIONS(4495), - [anon_sym_tailrec] = ACTIONS(4495), - [anon_sym_operator] = ACTIONS(4495), - [anon_sym_infix] = ACTIONS(4495), - [anon_sym_inline] = ACTIONS(4495), - [anon_sym_external] = ACTIONS(4495), - [sym_property_modifier] = ACTIONS(4495), - [anon_sym_abstract] = ACTIONS(4495), - [anon_sym_final] = ACTIONS(4495), - [anon_sym_open] = ACTIONS(4495), - [anon_sym_vararg] = ACTIONS(4495), - [anon_sym_noinline] = ACTIONS(4495), - [anon_sym_crossinline] = ACTIONS(4495), - [anon_sym_expect] = ACTIONS(4495), - [anon_sym_actual] = ACTIONS(4495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4497), - [anon_sym_continue_AT] = ACTIONS(4497), - [anon_sym_break_AT] = ACTIONS(4497), - [anon_sym_this_AT] = ACTIONS(4497), - [anon_sym_super_AT] = ACTIONS(4497), - [sym_real_literal] = ACTIONS(4497), - [sym_integer_literal] = ACTIONS(4495), - [sym_hex_literal] = ACTIONS(4497), - [sym_bin_literal] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4495), - [anon_sym_false] = ACTIONS(4495), - [anon_sym_SQUOTE] = ACTIONS(4497), - [sym__backtick_identifier] = ACTIONS(4497), - [sym__automatic_semicolon] = ACTIONS(4497), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4497), - }, - [3552] = { - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_RBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(1800), - [anon_sym_set] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_DASH_GT] = ACTIONS(1802), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_suspend] = ACTIONS(1800), - [anon_sym_sealed] = ACTIONS(1800), - [anon_sym_annotation] = ACTIONS(1800), - [anon_sym_data] = ACTIONS(1800), - [anon_sym_inner] = ACTIONS(1800), - [anon_sym_value] = ACTIONS(1800), - [anon_sym_override] = ACTIONS(1800), - [anon_sym_lateinit] = ACTIONS(1800), - [anon_sym_public] = ACTIONS(1800), - [anon_sym_private] = ACTIONS(1800), - [anon_sym_internal] = ACTIONS(1800), - [anon_sym_protected] = ACTIONS(1800), - [anon_sym_tailrec] = ACTIONS(1800), - [anon_sym_operator] = ACTIONS(1800), - [anon_sym_infix] = ACTIONS(1800), - [anon_sym_inline] = ACTIONS(1800), - [anon_sym_external] = ACTIONS(1800), - [sym_property_modifier] = ACTIONS(1800), - [anon_sym_abstract] = ACTIONS(1800), - [anon_sym_final] = ACTIONS(1800), - [anon_sym_open] = ACTIONS(1800), - [anon_sym_vararg] = ACTIONS(1800), - [anon_sym_noinline] = ACTIONS(1800), - [anon_sym_crossinline] = ACTIONS(1800), - [anon_sym_expect] = ACTIONS(1800), - [anon_sym_actual] = ACTIONS(1800), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), + [3577] = { + [sym_class_body] = STATE(3539), + [sym_type_constraints] = STATE(3280), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(5856), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [3553] = { - [sym_type_constraints] = STATE(3748), - [sym_function_body] = STATE(3221), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), - }, - [3554] = { - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_RBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [anon_sym_DASH_GT] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_while] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [3578] = { + [sym_type_constraints] = STATE(3905), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(6940), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, - [3555] = { - [sym__alpha_identifier] = ACTIONS(3130), - [anon_sym_AT] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_RBRACK] = ACTIONS(3132), - [anon_sym_as] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_RPAREN] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3130), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3130), - [anon_sym_set] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3130), - [anon_sym_DASH_GT] = ACTIONS(3132), - [sym_label] = ACTIONS(3132), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(3132), - [anon_sym_QMARK_COLON] = ACTIONS(3132), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_SLASH] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_as_QMARK] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), - [anon_sym_BANG_BANG] = ACTIONS(3132), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_annotation] = ACTIONS(3130), - [anon_sym_data] = ACTIONS(3130), - [anon_sym_inner] = ACTIONS(3130), - [anon_sym_value] = ACTIONS(3130), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_lateinit] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_tailrec] = ACTIONS(3130), - [anon_sym_operator] = ACTIONS(3130), - [anon_sym_infix] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_external] = ACTIONS(3130), - [sym_property_modifier] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3130), - [anon_sym_noinline] = ACTIONS(3130), - [anon_sym_crossinline] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3130), - [anon_sym_actual] = ACTIONS(3130), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(3132), + [3579] = { + [sym_type_constraints] = STATE(3303), + [sym_enum_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6942), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, - [3556] = { - [sym_type_constraints] = STATE(3746), - [sym_function_body] = STATE(4127), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [3580] = { + [sym_class_body] = STATE(3513), + [sym_type_constraints] = STATE(3324), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6944), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, - [3557] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_object] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), - }, - [3558] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), + [3581] = { + [sym_type_constraints] = STATE(3897), + [sym_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6946), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), }, - [3559] = { - [sym__alpha_identifier] = ACTIONS(5209), - [anon_sym_AT] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_RBRACK] = ACTIONS(5211), - [anon_sym_as] = ACTIONS(5209), - [anon_sym_EQ] = ACTIONS(5209), - [anon_sym_LBRACE] = ACTIONS(5211), - [anon_sym_RBRACE] = ACTIONS(5211), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_RPAREN] = ACTIONS(5211), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_where] = ACTIONS(5209), - [anon_sym_DOT] = ACTIONS(5209), - [anon_sym_SEMI] = ACTIONS(5211), - [anon_sym_get] = ACTIONS(5209), - [anon_sym_set] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_DASH_GT] = ACTIONS(5211), - [sym_label] = ACTIONS(5211), - [anon_sym_in] = ACTIONS(5209), - [anon_sym_while] = ACTIONS(5209), - [anon_sym_DOT_DOT] = ACTIONS(5211), - [anon_sym_QMARK_COLON] = ACTIONS(5211), - [anon_sym_AMP_AMP] = ACTIONS(5211), - [anon_sym_PIPE_PIPE] = ACTIONS(5211), - [anon_sym_else] = ACTIONS(5209), - [anon_sym_COLON_COLON] = ACTIONS(5211), - [anon_sym_PLUS_EQ] = ACTIONS(5211), - [anon_sym_DASH_EQ] = ACTIONS(5211), - [anon_sym_STAR_EQ] = ACTIONS(5211), - [anon_sym_SLASH_EQ] = ACTIONS(5211), - [anon_sym_PERCENT_EQ] = ACTIONS(5211), - [anon_sym_BANG_EQ] = ACTIONS(5209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5211), - [anon_sym_EQ_EQ] = ACTIONS(5209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5211), - [anon_sym_LT_EQ] = ACTIONS(5211), - [anon_sym_GT_EQ] = ACTIONS(5211), - [anon_sym_BANGin] = ACTIONS(5211), - [anon_sym_is] = ACTIONS(5209), - [anon_sym_BANGis] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_PERCENT] = ACTIONS(5209), - [anon_sym_as_QMARK] = ACTIONS(5211), - [anon_sym_PLUS_PLUS] = ACTIONS(5211), - [anon_sym_DASH_DASH] = ACTIONS(5211), - [anon_sym_BANG_BANG] = ACTIONS(5211), - [anon_sym_suspend] = ACTIONS(5209), - [anon_sym_sealed] = ACTIONS(5209), - [anon_sym_annotation] = ACTIONS(5209), - [anon_sym_data] = ACTIONS(5209), - [anon_sym_inner] = ACTIONS(5209), - [anon_sym_value] = ACTIONS(5209), - [anon_sym_override] = ACTIONS(5209), - [anon_sym_lateinit] = ACTIONS(5209), - [anon_sym_public] = ACTIONS(5209), - [anon_sym_private] = ACTIONS(5209), - [anon_sym_internal] = ACTIONS(5209), - [anon_sym_protected] = ACTIONS(5209), - [anon_sym_tailrec] = ACTIONS(5209), - [anon_sym_operator] = ACTIONS(5209), - [anon_sym_infix] = ACTIONS(5209), - [anon_sym_inline] = ACTIONS(5209), - [anon_sym_external] = ACTIONS(5209), - [sym_property_modifier] = ACTIONS(5209), - [anon_sym_abstract] = ACTIONS(5209), - [anon_sym_final] = ACTIONS(5209), - [anon_sym_open] = ACTIONS(5209), - [anon_sym_vararg] = ACTIONS(5209), - [anon_sym_noinline] = ACTIONS(5209), - [anon_sym_crossinline] = ACTIONS(5209), - [anon_sym_expect] = ACTIONS(5209), - [anon_sym_actual] = ACTIONS(5209), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5211), - [sym_safe_nav] = ACTIONS(5211), + [3582] = { + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, - [3560] = { - [sym_type_constraints] = STATE(3743), - [sym_function_body] = STATE(4106), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), + [3583] = { + [sym__alpha_identifier] = ACTIONS(4942), + [anon_sym_AT] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4944), + [anon_sym_RBRACK] = ACTIONS(4944), + [anon_sym_as] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_RBRACE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4942), + [anon_sym_where] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_get] = ACTIONS(4942), + [anon_sym_set] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4942), + [anon_sym_DASH_GT] = ACTIONS(4944), + [sym_label] = ACTIONS(4944), + [anon_sym_in] = ACTIONS(4942), + [anon_sym_while] = ACTIONS(4942), + [anon_sym_DOT_DOT] = ACTIONS(4944), + [anon_sym_QMARK_COLON] = ACTIONS(4944), + [anon_sym_AMP_AMP] = ACTIONS(4944), + [anon_sym_PIPE_PIPE] = ACTIONS(4944), + [anon_sym_else] = ACTIONS(4942), + [anon_sym_COLON_COLON] = ACTIONS(4944), + [anon_sym_PLUS_EQ] = ACTIONS(4944), + [anon_sym_DASH_EQ] = ACTIONS(4944), + [anon_sym_STAR_EQ] = ACTIONS(4944), + [anon_sym_SLASH_EQ] = ACTIONS(4944), + [anon_sym_PERCENT_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4944), + [anon_sym_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4944), + [anon_sym_LT_EQ] = ACTIONS(4944), + [anon_sym_GT_EQ] = ACTIONS(4944), + [anon_sym_BANGin] = ACTIONS(4944), + [anon_sym_is] = ACTIONS(4942), + [anon_sym_BANGis] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4942), + [anon_sym_PERCENT] = ACTIONS(4942), + [anon_sym_as_QMARK] = ACTIONS(4944), + [anon_sym_PLUS_PLUS] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4944), + [anon_sym_BANG_BANG] = ACTIONS(4944), + [anon_sym_suspend] = ACTIONS(4942), + [anon_sym_sealed] = ACTIONS(4942), + [anon_sym_annotation] = ACTIONS(4942), + [anon_sym_data] = ACTIONS(4942), + [anon_sym_inner] = ACTIONS(4942), + [anon_sym_value] = ACTIONS(4942), + [anon_sym_override] = ACTIONS(4942), + [anon_sym_lateinit] = ACTIONS(4942), + [anon_sym_public] = ACTIONS(4942), + [anon_sym_private] = ACTIONS(4942), + [anon_sym_internal] = ACTIONS(4942), + [anon_sym_protected] = ACTIONS(4942), + [anon_sym_tailrec] = ACTIONS(4942), + [anon_sym_operator] = ACTIONS(4942), + [anon_sym_infix] = ACTIONS(4942), + [anon_sym_inline] = ACTIONS(4942), + [anon_sym_external] = ACTIONS(4942), + [sym_property_modifier] = ACTIONS(4942), + [anon_sym_abstract] = ACTIONS(4942), + [anon_sym_final] = ACTIONS(4942), + [anon_sym_open] = ACTIONS(4942), + [anon_sym_vararg] = ACTIONS(4942), + [anon_sym_noinline] = ACTIONS(4942), + [anon_sym_crossinline] = ACTIONS(4942), + [anon_sym_expect] = ACTIONS(4942), + [anon_sym_actual] = ACTIONS(4942), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4944), + [sym_safe_nav] = ACTIONS(4944), [sym_multiline_comment] = ACTIONS(3), }, - [3561] = { - [sym__alpha_identifier] = ACTIONS(5131), - [anon_sym_AT] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_as] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_LBRACE] = ACTIONS(5133), - [anon_sym_RBRACE] = ACTIONS(5133), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_RPAREN] = ACTIONS(5133), - [anon_sym_LT] = ACTIONS(5131), - [anon_sym_GT] = ACTIONS(5131), - [anon_sym_where] = ACTIONS(5131), - [anon_sym_DOT] = ACTIONS(5131), - [anon_sym_SEMI] = ACTIONS(5133), - [anon_sym_get] = ACTIONS(5131), - [anon_sym_set] = ACTIONS(5131), - [anon_sym_STAR] = ACTIONS(5131), - [anon_sym_DASH_GT] = ACTIONS(5133), - [sym_label] = ACTIONS(5133), - [anon_sym_in] = ACTIONS(5131), - [anon_sym_while] = ACTIONS(5131), - [anon_sym_DOT_DOT] = ACTIONS(5133), - [anon_sym_QMARK_COLON] = ACTIONS(5133), - [anon_sym_AMP_AMP] = ACTIONS(5133), - [anon_sym_PIPE_PIPE] = ACTIONS(5133), - [anon_sym_else] = ACTIONS(5131), - [anon_sym_COLON_COLON] = ACTIONS(5133), - [anon_sym_PLUS_EQ] = ACTIONS(5133), - [anon_sym_DASH_EQ] = ACTIONS(5133), - [anon_sym_STAR_EQ] = ACTIONS(5133), - [anon_sym_SLASH_EQ] = ACTIONS(5133), - [anon_sym_PERCENT_EQ] = ACTIONS(5133), - [anon_sym_BANG_EQ] = ACTIONS(5131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5133), - [anon_sym_EQ_EQ] = ACTIONS(5131), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5133), - [anon_sym_LT_EQ] = ACTIONS(5133), - [anon_sym_GT_EQ] = ACTIONS(5133), - [anon_sym_BANGin] = ACTIONS(5133), - [anon_sym_is] = ACTIONS(5131), - [anon_sym_BANGis] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5131), - [anon_sym_SLASH] = ACTIONS(5131), - [anon_sym_PERCENT] = ACTIONS(5131), - [anon_sym_as_QMARK] = ACTIONS(5133), - [anon_sym_PLUS_PLUS] = ACTIONS(5133), - [anon_sym_DASH_DASH] = ACTIONS(5133), - [anon_sym_BANG_BANG] = ACTIONS(5133), - [anon_sym_suspend] = ACTIONS(5131), - [anon_sym_sealed] = ACTIONS(5131), - [anon_sym_annotation] = ACTIONS(5131), - [anon_sym_data] = ACTIONS(5131), - [anon_sym_inner] = ACTIONS(5131), - [anon_sym_value] = ACTIONS(5131), - [anon_sym_override] = ACTIONS(5131), - [anon_sym_lateinit] = ACTIONS(5131), - [anon_sym_public] = ACTIONS(5131), - [anon_sym_private] = ACTIONS(5131), - [anon_sym_internal] = ACTIONS(5131), - [anon_sym_protected] = ACTIONS(5131), - [anon_sym_tailrec] = ACTIONS(5131), - [anon_sym_operator] = ACTIONS(5131), - [anon_sym_infix] = ACTIONS(5131), - [anon_sym_inline] = ACTIONS(5131), - [anon_sym_external] = ACTIONS(5131), - [sym_property_modifier] = ACTIONS(5131), - [anon_sym_abstract] = ACTIONS(5131), - [anon_sym_final] = ACTIONS(5131), - [anon_sym_open] = ACTIONS(5131), - [anon_sym_vararg] = ACTIONS(5131), - [anon_sym_noinline] = ACTIONS(5131), - [anon_sym_crossinline] = ACTIONS(5131), - [anon_sym_expect] = ACTIONS(5131), - [anon_sym_actual] = ACTIONS(5131), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5133), - [sym_safe_nav] = ACTIONS(5133), + [3584] = { + [sym__alpha_identifier] = ACTIONS(4938), + [anon_sym_AT] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4940), + [anon_sym_RBRACK] = ACTIONS(4940), + [anon_sym_as] = ACTIONS(4938), + [anon_sym_EQ] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_RBRACE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4938), + [anon_sym_where] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_get] = ACTIONS(4938), + [anon_sym_set] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4938), + [anon_sym_DASH_GT] = ACTIONS(4940), + [sym_label] = ACTIONS(4940), + [anon_sym_in] = ACTIONS(4938), + [anon_sym_while] = ACTIONS(4938), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_QMARK_COLON] = ACTIONS(4940), + [anon_sym_AMP_AMP] = ACTIONS(4940), + [anon_sym_PIPE_PIPE] = ACTIONS(4940), + [anon_sym_else] = ACTIONS(4938), + [anon_sym_COLON_COLON] = ACTIONS(4940), + [anon_sym_PLUS_EQ] = ACTIONS(4940), + [anon_sym_DASH_EQ] = ACTIONS(4940), + [anon_sym_STAR_EQ] = ACTIONS(4940), + [anon_sym_SLASH_EQ] = ACTIONS(4940), + [anon_sym_PERCENT_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4940), + [anon_sym_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4940), + [anon_sym_GT_EQ] = ACTIONS(4940), + [anon_sym_BANGin] = ACTIONS(4940), + [anon_sym_is] = ACTIONS(4938), + [anon_sym_BANGis] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4938), + [anon_sym_PERCENT] = ACTIONS(4938), + [anon_sym_as_QMARK] = ACTIONS(4940), + [anon_sym_PLUS_PLUS] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4940), + [anon_sym_BANG_BANG] = ACTIONS(4940), + [anon_sym_suspend] = ACTIONS(4938), + [anon_sym_sealed] = ACTIONS(4938), + [anon_sym_annotation] = ACTIONS(4938), + [anon_sym_data] = ACTIONS(4938), + [anon_sym_inner] = ACTIONS(4938), + [anon_sym_value] = ACTIONS(4938), + [anon_sym_override] = ACTIONS(4938), + [anon_sym_lateinit] = ACTIONS(4938), + [anon_sym_public] = ACTIONS(4938), + [anon_sym_private] = ACTIONS(4938), + [anon_sym_internal] = ACTIONS(4938), + [anon_sym_protected] = ACTIONS(4938), + [anon_sym_tailrec] = ACTIONS(4938), + [anon_sym_operator] = ACTIONS(4938), + [anon_sym_infix] = ACTIONS(4938), + [anon_sym_inline] = ACTIONS(4938), + [anon_sym_external] = ACTIONS(4938), + [sym_property_modifier] = ACTIONS(4938), + [anon_sym_abstract] = ACTIONS(4938), + [anon_sym_final] = ACTIONS(4938), + [anon_sym_open] = ACTIONS(4938), + [anon_sym_vararg] = ACTIONS(4938), + [anon_sym_noinline] = ACTIONS(4938), + [anon_sym_crossinline] = ACTIONS(4938), + [anon_sym_expect] = ACTIONS(4938), + [anon_sym_actual] = ACTIONS(4938), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4940), + [sym_safe_nav] = ACTIONS(4940), [sym_multiline_comment] = ACTIONS(3), }, - [3562] = { + [3585] = { [sym__alpha_identifier] = ACTIONS(4934), [anon_sym_AT] = ACTIONS(4936), [anon_sym_LBRACK] = ACTIONS(4936), @@ -411570,3825 +411224,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4936), [sym_multiline_comment] = ACTIONS(3), }, - [3563] = { - [sym_type_constraints] = STATE(3736), - [sym_function_body] = STATE(4087), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4183), - [sym_label] = ACTIONS(4185), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_PLUS_EQ] = ACTIONS(4185), - [anon_sym_DASH_EQ] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4185), - [anon_sym_SLASH_EQ] = ACTIONS(4185), - [anon_sym_PERCENT_EQ] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4183), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), + [3586] = { + [sym_type_constraints] = STATE(3361), + [sym_enum_class_body] = STATE(3406), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(6948), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, - [3564] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(7009), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RPAREN] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4355), - [anon_sym_DASH_GT] = ACTIONS(4353), - [sym_label] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_while] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), + [3587] = { + [sym__alpha_identifier] = ACTIONS(4930), + [anon_sym_AT] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_RBRACK] = ACTIONS(4932), + [anon_sym_as] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_where] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_get] = ACTIONS(4930), + [anon_sym_set] = ACTIONS(4930), + [anon_sym_STAR] = ACTIONS(4930), + [anon_sym_DASH_GT] = ACTIONS(4932), + [sym_label] = ACTIONS(4932), + [anon_sym_in] = ACTIONS(4930), + [anon_sym_while] = ACTIONS(4930), + [anon_sym_DOT_DOT] = ACTIONS(4932), + [anon_sym_QMARK_COLON] = ACTIONS(4932), + [anon_sym_AMP_AMP] = ACTIONS(4932), + [anon_sym_PIPE_PIPE] = ACTIONS(4932), + [anon_sym_else] = ACTIONS(4930), + [anon_sym_COLON_COLON] = ACTIONS(4932), + [anon_sym_PLUS_EQ] = ACTIONS(4932), + [anon_sym_DASH_EQ] = ACTIONS(4932), + [anon_sym_STAR_EQ] = ACTIONS(4932), + [anon_sym_SLASH_EQ] = ACTIONS(4932), + [anon_sym_PERCENT_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4932), + [anon_sym_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4932), + [anon_sym_LT_EQ] = ACTIONS(4932), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_BANGin] = ACTIONS(4932), + [anon_sym_is] = ACTIONS(4930), + [anon_sym_BANGis] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4930), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4930), + [anon_sym_PERCENT] = ACTIONS(4930), + [anon_sym_as_QMARK] = ACTIONS(4932), + [anon_sym_PLUS_PLUS] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4932), + [anon_sym_BANG_BANG] = ACTIONS(4932), + [anon_sym_suspend] = ACTIONS(4930), + [anon_sym_sealed] = ACTIONS(4930), + [anon_sym_annotation] = ACTIONS(4930), + [anon_sym_data] = ACTIONS(4930), + [anon_sym_inner] = ACTIONS(4930), + [anon_sym_value] = ACTIONS(4930), + [anon_sym_override] = ACTIONS(4930), + [anon_sym_lateinit] = ACTIONS(4930), + [anon_sym_public] = ACTIONS(4930), + [anon_sym_private] = ACTIONS(4930), + [anon_sym_internal] = ACTIONS(4930), + [anon_sym_protected] = ACTIONS(4930), + [anon_sym_tailrec] = ACTIONS(4930), + [anon_sym_operator] = ACTIONS(4930), + [anon_sym_infix] = ACTIONS(4930), + [anon_sym_inline] = ACTIONS(4930), + [anon_sym_external] = ACTIONS(4930), + [sym_property_modifier] = ACTIONS(4930), + [anon_sym_abstract] = ACTIONS(4930), + [anon_sym_final] = ACTIONS(4930), + [anon_sym_open] = ACTIONS(4930), + [anon_sym_vararg] = ACTIONS(4930), + [anon_sym_noinline] = ACTIONS(4930), + [anon_sym_crossinline] = ACTIONS(4930), + [anon_sym_expect] = ACTIONS(4930), + [anon_sym_actual] = ACTIONS(4930), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4932), + [sym_safe_nav] = ACTIONS(4932), [sym_multiline_comment] = ACTIONS(3), }, - [3565] = { - [sym__alpha_identifier] = ACTIONS(4335), - [anon_sym_AT] = ACTIONS(4337), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_as] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_RBRACE] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_COMMA] = ACTIONS(4337), - [anon_sym_by] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4335), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_where] = ACTIONS(4335), - [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4337), - [anon_sym_get] = ACTIONS(4335), - [anon_sym_set] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4335), - [sym__quest] = ACTIONS(4335), - [anon_sym_STAR] = ACTIONS(4335), - [sym_label] = ACTIONS(4337), - [anon_sym_in] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(4337), - [anon_sym_QMARK_COLON] = ACTIONS(4337), - [anon_sym_AMP_AMP] = ACTIONS(4337), - [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [anon_sym_else] = ACTIONS(4335), - [anon_sym_COLON_COLON] = ACTIONS(4337), - [anon_sym_PLUS_EQ] = ACTIONS(4337), - [anon_sym_DASH_EQ] = ACTIONS(4337), - [anon_sym_STAR_EQ] = ACTIONS(4337), - [anon_sym_SLASH_EQ] = ACTIONS(4337), - [anon_sym_PERCENT_EQ] = ACTIONS(4337), - [anon_sym_BANG_EQ] = ACTIONS(4335), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), - [anon_sym_EQ_EQ] = ACTIONS(4335), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), - [anon_sym_LT_EQ] = ACTIONS(4337), - [anon_sym_GT_EQ] = ACTIONS(4337), - [anon_sym_BANGin] = ACTIONS(4337), - [anon_sym_is] = ACTIONS(4335), - [anon_sym_BANGis] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_as_QMARK] = ACTIONS(4337), - [anon_sym_PLUS_PLUS] = ACTIONS(4337), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_BANG_BANG] = ACTIONS(4337), - [anon_sym_suspend] = ACTIONS(4335), - [anon_sym_sealed] = ACTIONS(4335), - [anon_sym_annotation] = ACTIONS(4335), - [anon_sym_data] = ACTIONS(4335), - [anon_sym_inner] = ACTIONS(4335), - [anon_sym_value] = ACTIONS(4335), - [anon_sym_override] = ACTIONS(4335), - [anon_sym_lateinit] = ACTIONS(4335), - [anon_sym_public] = ACTIONS(4335), - [anon_sym_private] = ACTIONS(4335), - [anon_sym_internal] = ACTIONS(4335), - [anon_sym_protected] = ACTIONS(4335), - [anon_sym_tailrec] = ACTIONS(4335), - [anon_sym_operator] = ACTIONS(4335), - [anon_sym_infix] = ACTIONS(4335), - [anon_sym_inline] = ACTIONS(4335), - [anon_sym_external] = ACTIONS(4335), - [sym_property_modifier] = ACTIONS(4335), - [anon_sym_abstract] = ACTIONS(4335), - [anon_sym_final] = ACTIONS(4335), - [anon_sym_open] = ACTIONS(4335), - [anon_sym_vararg] = ACTIONS(4335), - [anon_sym_noinline] = ACTIONS(4335), - [anon_sym_crossinline] = ACTIONS(4335), - [anon_sym_expect] = ACTIONS(4335), - [anon_sym_actual] = ACTIONS(4335), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4337), - [sym__automatic_semicolon] = ACTIONS(4337), - [sym_safe_nav] = ACTIONS(4337), - [sym_multiline_comment] = ACTIONS(3), - }, - [3566] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_RBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7011), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_while] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), - }, - [3567] = { - [sym__alpha_identifier] = ACTIONS(4940), - [anon_sym_AT] = ACTIONS(4942), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_RBRACK] = ACTIONS(4942), - [anon_sym_as] = ACTIONS(4940), - [anon_sym_EQ] = ACTIONS(4940), - [anon_sym_LBRACE] = ACTIONS(4942), - [anon_sym_RBRACE] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4942), - [anon_sym_RPAREN] = ACTIONS(4942), - [anon_sym_LT] = ACTIONS(4940), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_where] = ACTIONS(4940), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_SEMI] = ACTIONS(4942), - [anon_sym_get] = ACTIONS(4940), - [anon_sym_set] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4940), - [anon_sym_DASH_GT] = ACTIONS(4942), - [sym_label] = ACTIONS(4942), - [anon_sym_in] = ACTIONS(4940), - [anon_sym_while] = ACTIONS(4940), - [anon_sym_DOT_DOT] = ACTIONS(4942), - [anon_sym_QMARK_COLON] = ACTIONS(4942), - [anon_sym_AMP_AMP] = ACTIONS(4942), - [anon_sym_PIPE_PIPE] = ACTIONS(4942), - [anon_sym_else] = ACTIONS(4940), - [anon_sym_COLON_COLON] = ACTIONS(4942), - [anon_sym_PLUS_EQ] = ACTIONS(4942), - [anon_sym_DASH_EQ] = ACTIONS(4942), - [anon_sym_STAR_EQ] = ACTIONS(4942), - [anon_sym_SLASH_EQ] = ACTIONS(4942), - [anon_sym_PERCENT_EQ] = ACTIONS(4942), - [anon_sym_BANG_EQ] = ACTIONS(4940), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4940), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), - [anon_sym_LT_EQ] = ACTIONS(4942), - [anon_sym_GT_EQ] = ACTIONS(4942), - [anon_sym_BANGin] = ACTIONS(4942), - [anon_sym_is] = ACTIONS(4940), - [anon_sym_BANGis] = ACTIONS(4942), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_as_QMARK] = ACTIONS(4942), - [anon_sym_PLUS_PLUS] = ACTIONS(4942), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_BANG_BANG] = ACTIONS(4942), - [anon_sym_suspend] = ACTIONS(4940), - [anon_sym_sealed] = ACTIONS(4940), - [anon_sym_annotation] = ACTIONS(4940), - [anon_sym_data] = ACTIONS(4940), - [anon_sym_inner] = ACTIONS(4940), - [anon_sym_value] = ACTIONS(4940), - [anon_sym_override] = ACTIONS(4940), - [anon_sym_lateinit] = ACTIONS(4940), - [anon_sym_public] = ACTIONS(4940), - [anon_sym_private] = ACTIONS(4940), - [anon_sym_internal] = ACTIONS(4940), - [anon_sym_protected] = ACTIONS(4940), - [anon_sym_tailrec] = ACTIONS(4940), - [anon_sym_operator] = ACTIONS(4940), - [anon_sym_infix] = ACTIONS(4940), - [anon_sym_inline] = ACTIONS(4940), - [anon_sym_external] = ACTIONS(4940), - [sym_property_modifier] = ACTIONS(4940), - [anon_sym_abstract] = ACTIONS(4940), - [anon_sym_final] = ACTIONS(4940), - [anon_sym_open] = ACTIONS(4940), - [anon_sym_vararg] = ACTIONS(4940), - [anon_sym_noinline] = ACTIONS(4940), - [anon_sym_crossinline] = ACTIONS(4940), - [anon_sym_expect] = ACTIONS(4940), - [anon_sym_actual] = ACTIONS(4940), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4942), - [sym_safe_nav] = ACTIONS(4942), - [sym_multiline_comment] = ACTIONS(3), - }, - [3568] = { - [sym__alpha_identifier] = ACTIONS(5171), - [anon_sym_AT] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(7013), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_where] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5173), - [anon_sym_get] = ACTIONS(5171), - [anon_sym_set] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_DASH_GT] = ACTIONS(5173), - [sym_label] = ACTIONS(5173), - [anon_sym_in] = ACTIONS(5171), - [anon_sym_while] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5173), - [anon_sym_QMARK_COLON] = ACTIONS(5173), - [anon_sym_AMP_AMP] = ACTIONS(5173), - [anon_sym_PIPE_PIPE] = ACTIONS(5173), - [anon_sym_else] = ACTIONS(5171), - [anon_sym_COLON_COLON] = ACTIONS(5173), - [anon_sym_PLUS_EQ] = ACTIONS(5173), - [anon_sym_DASH_EQ] = ACTIONS(5173), - [anon_sym_STAR_EQ] = ACTIONS(5173), - [anon_sym_SLASH_EQ] = ACTIONS(5173), - [anon_sym_PERCENT_EQ] = ACTIONS(5173), - [anon_sym_BANG_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), - [anon_sym_LT_EQ] = ACTIONS(5173), - [anon_sym_GT_EQ] = ACTIONS(5173), - [anon_sym_BANGin] = ACTIONS(5173), - [anon_sym_is] = ACTIONS(5171), - [anon_sym_BANGis] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_as_QMARK] = ACTIONS(5173), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_BANG_BANG] = ACTIONS(5173), - [anon_sym_suspend] = ACTIONS(5171), - [anon_sym_sealed] = ACTIONS(5171), - [anon_sym_annotation] = ACTIONS(5171), - [anon_sym_data] = ACTIONS(5171), - [anon_sym_inner] = ACTIONS(5171), - [anon_sym_value] = ACTIONS(5171), - [anon_sym_override] = ACTIONS(5171), - [anon_sym_lateinit] = ACTIONS(5171), - [anon_sym_public] = ACTIONS(5171), - [anon_sym_private] = ACTIONS(5171), - [anon_sym_internal] = ACTIONS(5171), - [anon_sym_protected] = ACTIONS(5171), - [anon_sym_tailrec] = ACTIONS(5171), - [anon_sym_operator] = ACTIONS(5171), - [anon_sym_infix] = ACTIONS(5171), - [anon_sym_inline] = ACTIONS(5171), - [anon_sym_external] = ACTIONS(5171), - [sym_property_modifier] = ACTIONS(5171), - [anon_sym_abstract] = ACTIONS(5171), - [anon_sym_final] = ACTIONS(5171), - [anon_sym_open] = ACTIONS(5171), - [anon_sym_vararg] = ACTIONS(5171), - [anon_sym_noinline] = ACTIONS(5171), - [anon_sym_crossinline] = ACTIONS(5171), - [anon_sym_expect] = ACTIONS(5171), - [anon_sym_actual] = ACTIONS(5171), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5173), - [sym_safe_nav] = ACTIONS(5173), - [sym_multiline_comment] = ACTIONS(3), - }, - [3569] = { - [sym__alpha_identifier] = ACTIONS(5201), - [anon_sym_AT] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_as] = ACTIONS(5201), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(5203), - [anon_sym_RBRACE] = ACTIONS(5203), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_where] = ACTIONS(5201), - [anon_sym_DOT] = ACTIONS(5201), - [anon_sym_SEMI] = ACTIONS(5203), - [anon_sym_get] = ACTIONS(5201), - [anon_sym_set] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_DASH_GT] = ACTIONS(5203), - [sym_label] = ACTIONS(5203), - [anon_sym_in] = ACTIONS(5201), - [anon_sym_while] = ACTIONS(5201), - [anon_sym_DOT_DOT] = ACTIONS(5203), - [anon_sym_QMARK_COLON] = ACTIONS(5203), - [anon_sym_AMP_AMP] = ACTIONS(5203), - [anon_sym_PIPE_PIPE] = ACTIONS(5203), - [anon_sym_else] = ACTIONS(5201), - [anon_sym_COLON_COLON] = ACTIONS(5203), - [anon_sym_PLUS_EQ] = ACTIONS(5203), - [anon_sym_DASH_EQ] = ACTIONS(5203), - [anon_sym_STAR_EQ] = ACTIONS(5203), - [anon_sym_SLASH_EQ] = ACTIONS(5203), - [anon_sym_PERCENT_EQ] = ACTIONS(5203), - [anon_sym_BANG_EQ] = ACTIONS(5201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5203), - [anon_sym_EQ_EQ] = ACTIONS(5201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5203), - [anon_sym_LT_EQ] = ACTIONS(5203), - [anon_sym_GT_EQ] = ACTIONS(5203), - [anon_sym_BANGin] = ACTIONS(5203), - [anon_sym_is] = ACTIONS(5201), - [anon_sym_BANGis] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_PERCENT] = ACTIONS(5201), - [anon_sym_as_QMARK] = ACTIONS(5203), - [anon_sym_PLUS_PLUS] = ACTIONS(5203), - [anon_sym_DASH_DASH] = ACTIONS(5203), - [anon_sym_BANG_BANG] = ACTIONS(5203), - [anon_sym_suspend] = ACTIONS(5201), - [anon_sym_sealed] = ACTIONS(5201), - [anon_sym_annotation] = ACTIONS(5201), - [anon_sym_data] = ACTIONS(5201), - [anon_sym_inner] = ACTIONS(5201), - [anon_sym_value] = ACTIONS(5201), - [anon_sym_override] = ACTIONS(5201), - [anon_sym_lateinit] = ACTIONS(5201), - [anon_sym_public] = ACTIONS(5201), - [anon_sym_private] = ACTIONS(5201), - [anon_sym_internal] = ACTIONS(5201), - [anon_sym_protected] = ACTIONS(5201), - [anon_sym_tailrec] = ACTIONS(5201), - [anon_sym_operator] = ACTIONS(5201), - [anon_sym_infix] = ACTIONS(5201), - [anon_sym_inline] = ACTIONS(5201), - [anon_sym_external] = ACTIONS(5201), - [sym_property_modifier] = ACTIONS(5201), - [anon_sym_abstract] = ACTIONS(5201), - [anon_sym_final] = ACTIONS(5201), - [anon_sym_open] = ACTIONS(5201), - [anon_sym_vararg] = ACTIONS(5201), - [anon_sym_noinline] = ACTIONS(5201), - [anon_sym_crossinline] = ACTIONS(5201), - [anon_sym_expect] = ACTIONS(5201), - [anon_sym_actual] = ACTIONS(5201), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5203), - [sym_safe_nav] = ACTIONS(5203), - [sym_multiline_comment] = ACTIONS(3), - }, - [3570] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_RBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(7015), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_where] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [anon_sym_DASH_GT] = ACTIONS(5179), - [sym_label] = ACTIONS(5179), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_while] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_PLUS_EQ] = ACTIONS(5179), - [anon_sym_DASH_EQ] = ACTIONS(5179), - [anon_sym_STAR_EQ] = ACTIONS(5179), - [anon_sym_SLASH_EQ] = ACTIONS(5179), - [anon_sym_PERCENT_EQ] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5177), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_suspend] = ACTIONS(5177), - [anon_sym_sealed] = ACTIONS(5177), - [anon_sym_annotation] = ACTIONS(5177), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_override] = ACTIONS(5177), - [anon_sym_lateinit] = ACTIONS(5177), - [anon_sym_public] = ACTIONS(5177), - [anon_sym_private] = ACTIONS(5177), - [anon_sym_internal] = ACTIONS(5177), - [anon_sym_protected] = ACTIONS(5177), - [anon_sym_tailrec] = ACTIONS(5177), - [anon_sym_operator] = ACTIONS(5177), - [anon_sym_infix] = ACTIONS(5177), - [anon_sym_inline] = ACTIONS(5177), - [anon_sym_external] = ACTIONS(5177), - [sym_property_modifier] = ACTIONS(5177), - [anon_sym_abstract] = ACTIONS(5177), - [anon_sym_final] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(5177), - [anon_sym_vararg] = ACTIONS(5177), - [anon_sym_noinline] = ACTIONS(5177), - [anon_sym_crossinline] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), - [sym_multiline_comment] = ACTIONS(3), - }, - [3571] = { - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_DASH_GT] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [3572] = { - [sym__alpha_identifier] = ACTIONS(5111), - [anon_sym_AT] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_RBRACK] = ACTIONS(5113), - [anon_sym_as] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5113), - [anon_sym_COMMA] = ACTIONS(5113), - [anon_sym_RPAREN] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5111), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_where] = ACTIONS(5111), - [anon_sym_DOT] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5113), - [anon_sym_get] = ACTIONS(5111), - [anon_sym_set] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_DASH_GT] = ACTIONS(5113), - [sym_label] = ACTIONS(5113), - [anon_sym_in] = ACTIONS(5111), - [anon_sym_while] = ACTIONS(5111), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_QMARK_COLON] = ACTIONS(5113), - [anon_sym_AMP_AMP] = ACTIONS(5113), - [anon_sym_PIPE_PIPE] = ACTIONS(5113), - [anon_sym_else] = ACTIONS(5111), - [anon_sym_COLON_COLON] = ACTIONS(5113), - [anon_sym_PLUS_EQ] = ACTIONS(5113), - [anon_sym_DASH_EQ] = ACTIONS(5113), - [anon_sym_STAR_EQ] = ACTIONS(5113), - [anon_sym_SLASH_EQ] = ACTIONS(5113), - [anon_sym_PERCENT_EQ] = ACTIONS(5113), - [anon_sym_BANG_EQ] = ACTIONS(5111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5113), - [anon_sym_EQ_EQ] = ACTIONS(5111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5113), - [anon_sym_LT_EQ] = ACTIONS(5113), - [anon_sym_GT_EQ] = ACTIONS(5113), - [anon_sym_BANGin] = ACTIONS(5113), - [anon_sym_is] = ACTIONS(5111), - [anon_sym_BANGis] = ACTIONS(5113), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5111), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_as_QMARK] = ACTIONS(5113), - [anon_sym_PLUS_PLUS] = ACTIONS(5113), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_BANG_BANG] = ACTIONS(5113), - [anon_sym_suspend] = ACTIONS(5111), - [anon_sym_sealed] = ACTIONS(5111), - [anon_sym_annotation] = ACTIONS(5111), - [anon_sym_data] = ACTIONS(5111), - [anon_sym_inner] = ACTIONS(5111), - [anon_sym_value] = ACTIONS(5111), - [anon_sym_override] = ACTIONS(5111), - [anon_sym_lateinit] = ACTIONS(5111), - [anon_sym_public] = ACTIONS(5111), - [anon_sym_private] = ACTIONS(5111), - [anon_sym_internal] = ACTIONS(5111), - [anon_sym_protected] = ACTIONS(5111), - [anon_sym_tailrec] = ACTIONS(5111), - [anon_sym_operator] = ACTIONS(5111), - [anon_sym_infix] = ACTIONS(5111), - [anon_sym_inline] = ACTIONS(5111), - [anon_sym_external] = ACTIONS(5111), - [sym_property_modifier] = ACTIONS(5111), - [anon_sym_abstract] = ACTIONS(5111), - [anon_sym_final] = ACTIONS(5111), - [anon_sym_open] = ACTIONS(5111), - [anon_sym_vararg] = ACTIONS(5111), - [anon_sym_noinline] = ACTIONS(5111), - [anon_sym_crossinline] = ACTIONS(5111), - [anon_sym_expect] = ACTIONS(5111), - [anon_sym_actual] = ACTIONS(5111), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5113), - [sym_safe_nav] = ACTIONS(5113), - [sym_multiline_comment] = ACTIONS(3), - }, - [3573] = { - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_RBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4471), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_RPAREN] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [anon_sym_DASH_GT] = ACTIONS(4471), - [sym_label] = ACTIONS(4471), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_while] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_suspend] = ACTIONS(4469), - [anon_sym_sealed] = ACTIONS(4469), - [anon_sym_annotation] = ACTIONS(4469), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_value] = ACTIONS(4469), - [anon_sym_override] = ACTIONS(4469), - [anon_sym_lateinit] = ACTIONS(4469), - [anon_sym_public] = ACTIONS(4469), - [anon_sym_private] = ACTIONS(4469), - [anon_sym_internal] = ACTIONS(4469), - [anon_sym_protected] = ACTIONS(4469), - [anon_sym_tailrec] = ACTIONS(4469), - [anon_sym_operator] = ACTIONS(4469), - [anon_sym_infix] = ACTIONS(4469), - [anon_sym_inline] = ACTIONS(4469), - [anon_sym_external] = ACTIONS(4469), - [sym_property_modifier] = ACTIONS(4469), - [anon_sym_abstract] = ACTIONS(4469), - [anon_sym_final] = ACTIONS(4469), - [anon_sym_open] = ACTIONS(4469), - [anon_sym_vararg] = ACTIONS(4469), - [anon_sym_noinline] = ACTIONS(4469), - [anon_sym_crossinline] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), - [sym_multiline_comment] = ACTIONS(3), - }, - [3574] = { - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4425), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_RPAREN] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_DASH_GT] = ACTIONS(4425), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_while] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - }, - [3575] = { - [sym__alpha_identifier] = ACTIONS(4232), - [anon_sym_AT] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4232), - [anon_sym_EQ] = ACTIONS(4232), - [anon_sym_LBRACE] = ACTIONS(4234), - [anon_sym_RBRACE] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_COMMA] = ACTIONS(4234), - [anon_sym_by] = ACTIONS(4232), - [anon_sym_LT] = ACTIONS(4232), - [anon_sym_GT] = ACTIONS(4232), - [anon_sym_where] = ACTIONS(4232), - [anon_sym_DOT] = ACTIONS(4232), - [anon_sym_SEMI] = ACTIONS(4234), - [anon_sym_get] = ACTIONS(4232), - [anon_sym_set] = ACTIONS(4232), - [anon_sym_AMP] = ACTIONS(4232), - [sym__quest] = ACTIONS(4232), - [anon_sym_STAR] = ACTIONS(4232), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4232), - [anon_sym_DOT_DOT] = ACTIONS(4234), - [anon_sym_QMARK_COLON] = ACTIONS(4234), - [anon_sym_AMP_AMP] = ACTIONS(4234), - [anon_sym_PIPE_PIPE] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4232), - [anon_sym_COLON_COLON] = ACTIONS(4234), - [anon_sym_PLUS_EQ] = ACTIONS(4234), - [anon_sym_DASH_EQ] = ACTIONS(4234), - [anon_sym_STAR_EQ] = ACTIONS(4234), - [anon_sym_SLASH_EQ] = ACTIONS(4234), - [anon_sym_PERCENT_EQ] = ACTIONS(4234), - [anon_sym_BANG_EQ] = ACTIONS(4232), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), - [anon_sym_EQ_EQ] = ACTIONS(4232), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), - [anon_sym_LT_EQ] = ACTIONS(4234), - [anon_sym_GT_EQ] = ACTIONS(4234), - [anon_sym_BANGin] = ACTIONS(4234), - [anon_sym_is] = ACTIONS(4232), - [anon_sym_BANGis] = ACTIONS(4234), - [anon_sym_PLUS] = ACTIONS(4232), - [anon_sym_DASH] = ACTIONS(4232), - [anon_sym_SLASH] = ACTIONS(4232), - [anon_sym_PERCENT] = ACTIONS(4232), - [anon_sym_as_QMARK] = ACTIONS(4234), - [anon_sym_PLUS_PLUS] = ACTIONS(4234), - [anon_sym_DASH_DASH] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4234), - [anon_sym_suspend] = ACTIONS(4232), - [anon_sym_sealed] = ACTIONS(4232), - [anon_sym_annotation] = ACTIONS(4232), - [anon_sym_data] = ACTIONS(4232), - [anon_sym_inner] = ACTIONS(4232), - [anon_sym_value] = ACTIONS(4232), - [anon_sym_override] = ACTIONS(4232), - [anon_sym_lateinit] = ACTIONS(4232), - [anon_sym_public] = ACTIONS(4232), - [anon_sym_private] = ACTIONS(4232), - [anon_sym_internal] = ACTIONS(4232), - [anon_sym_protected] = ACTIONS(4232), - [anon_sym_tailrec] = ACTIONS(4232), - [anon_sym_operator] = ACTIONS(4232), - [anon_sym_infix] = ACTIONS(4232), - [anon_sym_inline] = ACTIONS(4232), - [anon_sym_external] = ACTIONS(4232), - [sym_property_modifier] = ACTIONS(4232), - [anon_sym_abstract] = ACTIONS(4232), - [anon_sym_final] = ACTIONS(4232), - [anon_sym_open] = ACTIONS(4232), - [anon_sym_vararg] = ACTIONS(4232), - [anon_sym_noinline] = ACTIONS(4232), - [anon_sym_crossinline] = ACTIONS(4232), - [anon_sym_expect] = ACTIONS(4232), - [anon_sym_actual] = ACTIONS(4232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4234), - [sym__automatic_semicolon] = ACTIONS(4234), - [sym_safe_nav] = ACTIONS(4234), - [sym_multiline_comment] = ACTIONS(3), - }, - [3576] = { - [sym__alpha_identifier] = ACTIONS(4972), - [anon_sym_AT] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_RBRACK] = ACTIONS(4974), - [anon_sym_as] = ACTIONS(4972), - [anon_sym_EQ] = ACTIONS(4972), - [anon_sym_LBRACE] = ACTIONS(4974), - [anon_sym_RBRACE] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4974), - [anon_sym_COMMA] = ACTIONS(4974), - [anon_sym_RPAREN] = ACTIONS(4974), - [anon_sym_LT] = ACTIONS(4972), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_where] = ACTIONS(4972), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_SEMI] = ACTIONS(4974), - [anon_sym_get] = ACTIONS(4972), - [anon_sym_set] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4972), - [anon_sym_DASH_GT] = ACTIONS(4974), - [sym_label] = ACTIONS(4974), - [anon_sym_in] = ACTIONS(4972), - [anon_sym_while] = ACTIONS(4972), - [anon_sym_DOT_DOT] = ACTIONS(4974), - [anon_sym_QMARK_COLON] = ACTIONS(4974), - [anon_sym_AMP_AMP] = ACTIONS(4974), - [anon_sym_PIPE_PIPE] = ACTIONS(4974), - [anon_sym_else] = ACTIONS(4972), - [anon_sym_COLON_COLON] = ACTIONS(4974), - [anon_sym_PLUS_EQ] = ACTIONS(4974), - [anon_sym_DASH_EQ] = ACTIONS(4974), - [anon_sym_STAR_EQ] = ACTIONS(4974), - [anon_sym_SLASH_EQ] = ACTIONS(4974), - [anon_sym_PERCENT_EQ] = ACTIONS(4974), - [anon_sym_BANG_EQ] = ACTIONS(4972), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4972), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4974), - [anon_sym_LT_EQ] = ACTIONS(4974), - [anon_sym_GT_EQ] = ACTIONS(4974), - [anon_sym_BANGin] = ACTIONS(4974), - [anon_sym_is] = ACTIONS(4972), - [anon_sym_BANGis] = ACTIONS(4974), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4972), - [anon_sym_as_QMARK] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_BANG_BANG] = ACTIONS(4974), - [anon_sym_suspend] = ACTIONS(4972), - [anon_sym_sealed] = ACTIONS(4972), - [anon_sym_annotation] = ACTIONS(4972), - [anon_sym_data] = ACTIONS(4972), - [anon_sym_inner] = ACTIONS(4972), - [anon_sym_value] = ACTIONS(4972), - [anon_sym_override] = ACTIONS(4972), - [anon_sym_lateinit] = ACTIONS(4972), - [anon_sym_public] = ACTIONS(4972), - [anon_sym_private] = ACTIONS(4972), - [anon_sym_internal] = ACTIONS(4972), - [anon_sym_protected] = ACTIONS(4972), - [anon_sym_tailrec] = ACTIONS(4972), - [anon_sym_operator] = ACTIONS(4972), - [anon_sym_infix] = ACTIONS(4972), - [anon_sym_inline] = ACTIONS(4972), - [anon_sym_external] = ACTIONS(4972), - [sym_property_modifier] = ACTIONS(4972), - [anon_sym_abstract] = ACTIONS(4972), - [anon_sym_final] = ACTIONS(4972), - [anon_sym_open] = ACTIONS(4972), - [anon_sym_vararg] = ACTIONS(4972), - [anon_sym_noinline] = ACTIONS(4972), - [anon_sym_crossinline] = ACTIONS(4972), - [anon_sym_expect] = ACTIONS(4972), - [anon_sym_actual] = ACTIONS(4972), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4974), - [sym_safe_nav] = ACTIONS(4974), - [sym_multiline_comment] = ACTIONS(3), - }, - [3577] = { - [sym_type_constraints] = STATE(3735), - [sym_function_body] = STATE(4049), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - }, - [3578] = { - [sym_type_constraints] = STATE(3732), - [sym_function_body] = STATE(3262), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), - }, - [3579] = { - [sym_type_constraints] = STATE(3731), - [sym_function_body] = STATE(4037), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - }, - [3580] = { - [aux_sym_type_constraints_repeat1] = STATE(3551), - [sym__alpha_identifier] = ACTIONS(4506), - [anon_sym_AT] = ACTIONS(4508), - [anon_sym_LBRACK] = ACTIONS(4508), - [anon_sym_EQ] = ACTIONS(4508), - [anon_sym_fun] = ACTIONS(4506), - [anon_sym_LBRACE] = ACTIONS(4508), - [anon_sym_RBRACE] = ACTIONS(4508), - [anon_sym_LPAREN] = ACTIONS(4508), - [anon_sym_COMMA] = ACTIONS(7017), - [anon_sym_by] = ACTIONS(4506), - [anon_sym_object] = ACTIONS(4506), - [anon_sym_SEMI] = ACTIONS(4508), - [anon_sym_get] = ACTIONS(4506), - [anon_sym_set] = ACTIONS(4506), - [anon_sym_this] = ACTIONS(4506), - [anon_sym_super] = ACTIONS(4506), - [anon_sym_STAR] = ACTIONS(4508), - [sym_label] = ACTIONS(4506), - [anon_sym_in] = ACTIONS(4506), - [anon_sym_null] = ACTIONS(4506), - [anon_sym_if] = ACTIONS(4506), - [anon_sym_else] = ACTIONS(4506), - [anon_sym_when] = ACTIONS(4506), - [anon_sym_try] = ACTIONS(4506), - [anon_sym_throw] = ACTIONS(4506), - [anon_sym_return] = ACTIONS(4506), - [anon_sym_continue] = ACTIONS(4506), - [anon_sym_break] = ACTIONS(4506), - [anon_sym_COLON_COLON] = ACTIONS(4508), - [anon_sym_BANGin] = ACTIONS(4508), - [anon_sym_is] = ACTIONS(4506), - [anon_sym_BANGis] = ACTIONS(4508), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_DASH] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4508), - [anon_sym_DASH_DASH] = ACTIONS(4508), - [anon_sym_BANG] = ACTIONS(4506), - [anon_sym_suspend] = ACTIONS(4506), - [anon_sym_sealed] = ACTIONS(4506), - [anon_sym_annotation] = ACTIONS(4506), - [anon_sym_data] = ACTIONS(4506), - [anon_sym_inner] = ACTIONS(4506), - [anon_sym_value] = ACTIONS(4506), - [anon_sym_override] = ACTIONS(4506), - [anon_sym_lateinit] = ACTIONS(4506), - [anon_sym_public] = ACTIONS(4506), - [anon_sym_private] = ACTIONS(4506), - [anon_sym_internal] = ACTIONS(4506), - [anon_sym_protected] = ACTIONS(4506), - [anon_sym_tailrec] = ACTIONS(4506), - [anon_sym_operator] = ACTIONS(4506), - [anon_sym_infix] = ACTIONS(4506), - [anon_sym_inline] = ACTIONS(4506), - [anon_sym_external] = ACTIONS(4506), - [sym_property_modifier] = ACTIONS(4506), - [anon_sym_abstract] = ACTIONS(4506), - [anon_sym_final] = ACTIONS(4506), - [anon_sym_open] = ACTIONS(4506), - [anon_sym_vararg] = ACTIONS(4506), - [anon_sym_noinline] = ACTIONS(4506), - [anon_sym_crossinline] = ACTIONS(4506), - [anon_sym_expect] = ACTIONS(4506), - [anon_sym_actual] = ACTIONS(4506), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4508), - [anon_sym_continue_AT] = ACTIONS(4508), - [anon_sym_break_AT] = ACTIONS(4508), - [anon_sym_this_AT] = ACTIONS(4508), - [anon_sym_super_AT] = ACTIONS(4508), - [sym_real_literal] = ACTIONS(4508), - [sym_integer_literal] = ACTIONS(4506), - [sym_hex_literal] = ACTIONS(4508), - [sym_bin_literal] = ACTIONS(4508), - [anon_sym_true] = ACTIONS(4506), - [anon_sym_false] = ACTIONS(4506), - [anon_sym_SQUOTE] = ACTIONS(4508), - [sym__backtick_identifier] = ACTIONS(4508), - [sym__automatic_semicolon] = ACTIONS(4508), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4508), - }, - [3581] = { - [sym__alpha_identifier] = ACTIONS(4082), - [anon_sym_AT] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_RBRACK] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(4082), - [anon_sym_EQ] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_RPAREN] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_where] = ACTIONS(4082), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_get] = ACTIONS(4082), - [anon_sym_set] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_DASH_GT] = ACTIONS(4084), - [sym_label] = ACTIONS(4084), - [anon_sym_in] = ACTIONS(4082), - [anon_sym_while] = ACTIONS(4082), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_QMARK_COLON] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_else] = ACTIONS(4082), - [anon_sym_COLON_COLON] = ACTIONS(4084), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_STAR_EQ] = ACTIONS(4084), - [anon_sym_SLASH_EQ] = ACTIONS(4084), - [anon_sym_PERCENT_EQ] = ACTIONS(4084), - [anon_sym_BANG_EQ] = ACTIONS(4082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_BANGin] = ACTIONS(4084), - [anon_sym_is] = ACTIONS(4082), - [anon_sym_BANGis] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_SLASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4082), - [anon_sym_as_QMARK] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_BANG_BANG] = ACTIONS(4084), - [anon_sym_suspend] = ACTIONS(4082), - [anon_sym_sealed] = ACTIONS(4082), - [anon_sym_annotation] = ACTIONS(4082), - [anon_sym_data] = ACTIONS(4082), - [anon_sym_inner] = ACTIONS(4082), - [anon_sym_value] = ACTIONS(4082), - [anon_sym_override] = ACTIONS(4082), - [anon_sym_lateinit] = ACTIONS(4082), - [anon_sym_public] = ACTIONS(4082), - [anon_sym_private] = ACTIONS(4082), - [anon_sym_internal] = ACTIONS(4082), - [anon_sym_protected] = ACTIONS(4082), - [anon_sym_tailrec] = ACTIONS(4082), - [anon_sym_operator] = ACTIONS(4082), - [anon_sym_infix] = ACTIONS(4082), - [anon_sym_inline] = ACTIONS(4082), - [anon_sym_external] = ACTIONS(4082), - [sym_property_modifier] = ACTIONS(4082), - [anon_sym_abstract] = ACTIONS(4082), - [anon_sym_final] = ACTIONS(4082), - [anon_sym_open] = ACTIONS(4082), - [anon_sym_vararg] = ACTIONS(4082), - [anon_sym_noinline] = ACTIONS(4082), - [anon_sym_crossinline] = ACTIONS(4082), - [anon_sym_expect] = ACTIONS(4082), - [anon_sym_actual] = ACTIONS(4082), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4084), - [sym_safe_nav] = ACTIONS(4084), - [sym_multiline_comment] = ACTIONS(3), - }, - [3582] = { - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_RBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4156), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_RPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_DASH_GT] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_while] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - }, - [3583] = { - [sym_function_body] = STATE(3979), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(7019), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_where] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4269), - [sym_label] = ACTIONS(4271), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_PLUS_EQ] = ACTIONS(4271), - [anon_sym_DASH_EQ] = ACTIONS(4271), - [anon_sym_STAR_EQ] = ACTIONS(4271), - [anon_sym_SLASH_EQ] = ACTIONS(4271), - [anon_sym_PERCENT_EQ] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4269), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_suspend] = ACTIONS(4269), - [anon_sym_sealed] = ACTIONS(4269), - [anon_sym_annotation] = ACTIONS(4269), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_override] = ACTIONS(4269), - [anon_sym_lateinit] = ACTIONS(4269), - [anon_sym_public] = ACTIONS(4269), - [anon_sym_private] = ACTIONS(4269), - [anon_sym_internal] = ACTIONS(4269), - [anon_sym_protected] = ACTIONS(4269), - [anon_sym_tailrec] = ACTIONS(4269), - [anon_sym_operator] = ACTIONS(4269), - [anon_sym_infix] = ACTIONS(4269), - [anon_sym_inline] = ACTIONS(4269), - [anon_sym_external] = ACTIONS(4269), - [sym_property_modifier] = ACTIONS(4269), - [anon_sym_abstract] = ACTIONS(4269), - [anon_sym_final] = ACTIONS(4269), - [anon_sym_open] = ACTIONS(4269), - [anon_sym_vararg] = ACTIONS(4269), - [anon_sym_noinline] = ACTIONS(4269), - [anon_sym_crossinline] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4271), - [sym__automatic_semicolon] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), - [sym_multiline_comment] = ACTIONS(3), - }, - [3584] = { - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_RBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4166), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [anon_sym_DASH_GT] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - }, - [3585] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_RBRACK] = ACTIONS(4854), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4852), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [anon_sym_DASH_GT] = ACTIONS(4854), - [sym_label] = ACTIONS(4854), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_while] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_suspend] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_annotation] = ACTIONS(4852), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_lateinit] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_tailrec] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_infix] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_external] = ACTIONS(4852), - [sym_property_modifier] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_open] = ACTIONS(4852), - [anon_sym_vararg] = ACTIONS(4852), - [anon_sym_noinline] = ACTIONS(4852), - [anon_sym_crossinline] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), - [sym_multiline_comment] = ACTIONS(3), - }, - [3586] = { - [sym__alpha_identifier] = ACTIONS(5193), - [anon_sym_AT] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_as] = ACTIONS(5193), - [anon_sym_EQ] = ACTIONS(5193), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_RBRACE] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_where] = ACTIONS(5193), - [anon_sym_DOT] = ACTIONS(5193), - [anon_sym_SEMI] = ACTIONS(5195), - [anon_sym_get] = ACTIONS(5193), - [anon_sym_set] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_DASH_GT] = ACTIONS(5195), - [sym_label] = ACTIONS(5195), - [anon_sym_in] = ACTIONS(5193), - [anon_sym_while] = ACTIONS(5193), - [anon_sym_DOT_DOT] = ACTIONS(5195), - [anon_sym_QMARK_COLON] = ACTIONS(5195), - [anon_sym_AMP_AMP] = ACTIONS(5195), - [anon_sym_PIPE_PIPE] = ACTIONS(5195), - [anon_sym_else] = ACTIONS(5193), - [anon_sym_COLON_COLON] = ACTIONS(5195), - [anon_sym_PLUS_EQ] = ACTIONS(5195), - [anon_sym_DASH_EQ] = ACTIONS(5195), - [anon_sym_STAR_EQ] = ACTIONS(5195), - [anon_sym_SLASH_EQ] = ACTIONS(5195), - [anon_sym_PERCENT_EQ] = ACTIONS(5195), - [anon_sym_BANG_EQ] = ACTIONS(5193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5195), - [anon_sym_EQ_EQ] = ACTIONS(5193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5195), - [anon_sym_LT_EQ] = ACTIONS(5195), - [anon_sym_GT_EQ] = ACTIONS(5195), - [anon_sym_BANGin] = ACTIONS(5195), - [anon_sym_is] = ACTIONS(5193), - [anon_sym_BANGis] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_PERCENT] = ACTIONS(5193), - [anon_sym_as_QMARK] = ACTIONS(5195), - [anon_sym_PLUS_PLUS] = ACTIONS(5195), - [anon_sym_DASH_DASH] = ACTIONS(5195), - [anon_sym_BANG_BANG] = ACTIONS(5195), - [anon_sym_suspend] = ACTIONS(5193), - [anon_sym_sealed] = ACTIONS(5193), - [anon_sym_annotation] = ACTIONS(5193), - [anon_sym_data] = ACTIONS(5193), - [anon_sym_inner] = ACTIONS(5193), - [anon_sym_value] = ACTIONS(5193), - [anon_sym_override] = ACTIONS(5193), - [anon_sym_lateinit] = ACTIONS(5193), - [anon_sym_public] = ACTIONS(5193), - [anon_sym_private] = ACTIONS(5193), - [anon_sym_internal] = ACTIONS(5193), - [anon_sym_protected] = ACTIONS(5193), - [anon_sym_tailrec] = ACTIONS(5193), - [anon_sym_operator] = ACTIONS(5193), - [anon_sym_infix] = ACTIONS(5193), - [anon_sym_inline] = ACTIONS(5193), - [anon_sym_external] = ACTIONS(5193), - [sym_property_modifier] = ACTIONS(5193), - [anon_sym_abstract] = ACTIONS(5193), - [anon_sym_final] = ACTIONS(5193), - [anon_sym_open] = ACTIONS(5193), - [anon_sym_vararg] = ACTIONS(5193), - [anon_sym_noinline] = ACTIONS(5193), - [anon_sym_crossinline] = ACTIONS(5193), - [anon_sym_expect] = ACTIONS(5193), - [anon_sym_actual] = ACTIONS(5193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5195), - [sym_safe_nav] = ACTIONS(5195), - [sym_multiline_comment] = ACTIONS(3), - }, - [3587] = { - [sym__alpha_identifier] = ACTIONS(4726), - [anon_sym_AT] = ACTIONS(4728), - [anon_sym_LBRACK] = ACTIONS(4728), - [anon_sym_EQ] = ACTIONS(4728), - [anon_sym_fun] = ACTIONS(4726), - [anon_sym_LBRACE] = ACTIONS(4728), - [anon_sym_RBRACE] = ACTIONS(4728), - [anon_sym_LPAREN] = ACTIONS(4728), - [anon_sym_COMMA] = ACTIONS(4728), - [anon_sym_by] = ACTIONS(4726), - [anon_sym_where] = ACTIONS(4726), - [anon_sym_object] = ACTIONS(4726), - [anon_sym_SEMI] = ACTIONS(4728), - [anon_sym_get] = ACTIONS(4726), - [anon_sym_set] = ACTIONS(4726), - [anon_sym_this] = ACTIONS(4726), - [anon_sym_super] = ACTIONS(4726), - [anon_sym_STAR] = ACTIONS(4728), - [sym_label] = ACTIONS(4726), - [anon_sym_in] = ACTIONS(4726), - [anon_sym_null] = ACTIONS(4726), - [anon_sym_if] = ACTIONS(4726), - [anon_sym_else] = ACTIONS(4726), - [anon_sym_when] = ACTIONS(4726), - [anon_sym_try] = ACTIONS(4726), - [anon_sym_throw] = ACTIONS(4726), - [anon_sym_return] = ACTIONS(4726), - [anon_sym_continue] = ACTIONS(4726), - [anon_sym_break] = ACTIONS(4726), - [anon_sym_COLON_COLON] = ACTIONS(4728), - [anon_sym_BANGin] = ACTIONS(4728), - [anon_sym_is] = ACTIONS(4726), - [anon_sym_BANGis] = ACTIONS(4728), - [anon_sym_PLUS] = ACTIONS(4726), - [anon_sym_DASH] = ACTIONS(4726), - [anon_sym_PLUS_PLUS] = ACTIONS(4728), - [anon_sym_DASH_DASH] = ACTIONS(4728), - [anon_sym_BANG] = ACTIONS(4726), - [anon_sym_suspend] = ACTIONS(4726), - [anon_sym_sealed] = ACTIONS(4726), - [anon_sym_annotation] = ACTIONS(4726), - [anon_sym_data] = ACTIONS(4726), - [anon_sym_inner] = ACTIONS(4726), - [anon_sym_value] = ACTIONS(4726), - [anon_sym_override] = ACTIONS(4726), - [anon_sym_lateinit] = ACTIONS(4726), - [anon_sym_public] = ACTIONS(4726), - [anon_sym_private] = ACTIONS(4726), - [anon_sym_internal] = ACTIONS(4726), - [anon_sym_protected] = ACTIONS(4726), - [anon_sym_tailrec] = ACTIONS(4726), - [anon_sym_operator] = ACTIONS(4726), - [anon_sym_infix] = ACTIONS(4726), - [anon_sym_inline] = ACTIONS(4726), - [anon_sym_external] = ACTIONS(4726), - [sym_property_modifier] = ACTIONS(4726), - [anon_sym_abstract] = ACTIONS(4726), - [anon_sym_final] = ACTIONS(4726), - [anon_sym_open] = ACTIONS(4726), - [anon_sym_vararg] = ACTIONS(4726), - [anon_sym_noinline] = ACTIONS(4726), - [anon_sym_crossinline] = ACTIONS(4726), - [anon_sym_expect] = ACTIONS(4726), - [anon_sym_actual] = ACTIONS(4726), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4728), - [anon_sym_continue_AT] = ACTIONS(4728), - [anon_sym_break_AT] = ACTIONS(4728), - [anon_sym_this_AT] = ACTIONS(4728), - [anon_sym_super_AT] = ACTIONS(4728), - [sym_real_literal] = ACTIONS(4728), - [sym_integer_literal] = ACTIONS(4726), - [sym_hex_literal] = ACTIONS(4728), - [sym_bin_literal] = ACTIONS(4728), - [anon_sym_true] = ACTIONS(4726), - [anon_sym_false] = ACTIONS(4726), - [anon_sym_SQUOTE] = ACTIONS(4728), - [sym__backtick_identifier] = ACTIONS(4728), - [sym__automatic_semicolon] = ACTIONS(4728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4728), - }, [3588] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_RBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_RPAREN] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_GT] = ACTIONS(4381), - [anon_sym_where] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [anon_sym_DASH_GT] = ACTIONS(4383), - [sym_label] = ACTIONS(4383), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_while] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_QMARK_COLON] = ACTIONS(4383), - [anon_sym_AMP_AMP] = ACTIONS(4383), - [anon_sym_PIPE_PIPE] = ACTIONS(4383), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4383), - [anon_sym_DASH_EQ] = ACTIONS(4383), - [anon_sym_STAR_EQ] = ACTIONS(4383), - [anon_sym_SLASH_EQ] = ACTIONS(4383), - [anon_sym_PERCENT_EQ] = ACTIONS(4383), - [anon_sym_BANG_EQ] = ACTIONS(4381), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), - [anon_sym_EQ_EQ] = ACTIONS(4381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), - [anon_sym_LT_EQ] = ACTIONS(4383), - [anon_sym_GT_EQ] = ACTIONS(4383), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_as_QMARK] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG_BANG] = ACTIONS(4383), - [anon_sym_suspend] = ACTIONS(4381), - [anon_sym_sealed] = ACTIONS(4381), - [anon_sym_annotation] = ACTIONS(4381), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_override] = ACTIONS(4381), - [anon_sym_lateinit] = ACTIONS(4381), - [anon_sym_public] = ACTIONS(4381), - [anon_sym_private] = ACTIONS(4381), - [anon_sym_internal] = ACTIONS(4381), - [anon_sym_protected] = ACTIONS(4381), - [anon_sym_tailrec] = ACTIONS(4381), - [anon_sym_operator] = ACTIONS(4381), - [anon_sym_infix] = ACTIONS(4381), - [anon_sym_inline] = ACTIONS(4381), - [anon_sym_external] = ACTIONS(4381), - [sym_property_modifier] = ACTIONS(4381), - [anon_sym_abstract] = ACTIONS(4381), - [anon_sym_final] = ACTIONS(4381), - [anon_sym_open] = ACTIONS(4381), - [anon_sym_vararg] = ACTIONS(4381), - [anon_sym_noinline] = ACTIONS(4381), - [anon_sym_crossinline] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4383), + [sym__alpha_identifier] = ACTIONS(4798), + [anon_sym_AT] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_RBRACK] = ACTIONS(4800), + [anon_sym_as] = ACTIONS(4798), + [anon_sym_EQ] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4800), + [anon_sym_RBRACE] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4800), + [anon_sym_COMMA] = ACTIONS(4800), + [anon_sym_RPAREN] = ACTIONS(4800), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_where] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_get] = ACTIONS(4798), + [anon_sym_set] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4798), + [anon_sym_DASH_GT] = ACTIONS(4800), + [sym_label] = ACTIONS(4800), + [anon_sym_in] = ACTIONS(4798), + [anon_sym_while] = ACTIONS(4798), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_QMARK_COLON] = ACTIONS(4800), + [anon_sym_AMP_AMP] = ACTIONS(4800), + [anon_sym_PIPE_PIPE] = ACTIONS(4800), + [anon_sym_else] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_PLUS_EQ] = ACTIONS(4800), + [anon_sym_DASH_EQ] = ACTIONS(4800), + [anon_sym_STAR_EQ] = ACTIONS(4800), + [anon_sym_SLASH_EQ] = ACTIONS(4800), + [anon_sym_PERCENT_EQ] = ACTIONS(4800), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4800), + [anon_sym_BANGin] = ACTIONS(4800), + [anon_sym_is] = ACTIONS(4798), + [anon_sym_BANGis] = ACTIONS(4800), + [anon_sym_PLUS] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_SLASH] = ACTIONS(4798), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4800), + [anon_sym_PLUS_PLUS] = ACTIONS(4800), + [anon_sym_DASH_DASH] = ACTIONS(4800), + [anon_sym_BANG_BANG] = ACTIONS(4800), + [anon_sym_suspend] = ACTIONS(4798), + [anon_sym_sealed] = ACTIONS(4798), + [anon_sym_annotation] = ACTIONS(4798), + [anon_sym_data] = ACTIONS(4798), + [anon_sym_inner] = ACTIONS(4798), + [anon_sym_value] = ACTIONS(4798), + [anon_sym_override] = ACTIONS(4798), + [anon_sym_lateinit] = ACTIONS(4798), + [anon_sym_public] = ACTIONS(4798), + [anon_sym_private] = ACTIONS(4798), + [anon_sym_internal] = ACTIONS(4798), + [anon_sym_protected] = ACTIONS(4798), + [anon_sym_tailrec] = ACTIONS(4798), + [anon_sym_operator] = ACTIONS(4798), + [anon_sym_infix] = ACTIONS(4798), + [anon_sym_inline] = ACTIONS(4798), + [anon_sym_external] = ACTIONS(4798), + [sym_property_modifier] = ACTIONS(4798), + [anon_sym_abstract] = ACTIONS(4798), + [anon_sym_final] = ACTIONS(4798), + [anon_sym_open] = ACTIONS(4798), + [anon_sym_vararg] = ACTIONS(4798), + [anon_sym_noinline] = ACTIONS(4798), + [anon_sym_crossinline] = ACTIONS(4798), + [anon_sym_expect] = ACTIONS(4798), + [anon_sym_actual] = ACTIONS(4798), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4800), + [sym_safe_nav] = ACTIONS(4800), [sym_multiline_comment] = ACTIONS(3), }, [3589] = { - [sym__alpha_identifier] = ACTIONS(4730), - [anon_sym_AT] = ACTIONS(4733), - [anon_sym_LBRACK] = ACTIONS(4733), - [anon_sym_EQ] = ACTIONS(4733), - [anon_sym_fun] = ACTIONS(4730), - [anon_sym_LBRACE] = ACTIONS(4733), - [anon_sym_RBRACE] = ACTIONS(4733), - [anon_sym_LPAREN] = ACTIONS(4733), - [anon_sym_COMMA] = ACTIONS(4733), - [anon_sym_by] = ACTIONS(4730), - [anon_sym_where] = ACTIONS(4730), - [anon_sym_object] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4733), - [anon_sym_get] = ACTIONS(4730), - [anon_sym_set] = ACTIONS(4730), - [anon_sym_this] = ACTIONS(4730), - [anon_sym_super] = ACTIONS(4730), - [anon_sym_STAR] = ACTIONS(4733), - [sym_label] = ACTIONS(4730), - [anon_sym_in] = ACTIONS(4730), - [anon_sym_null] = ACTIONS(4730), - [anon_sym_if] = ACTIONS(4730), - [anon_sym_else] = ACTIONS(4730), - [anon_sym_when] = ACTIONS(4730), - [anon_sym_try] = ACTIONS(4730), - [anon_sym_throw] = ACTIONS(4730), - [anon_sym_return] = ACTIONS(4730), - [anon_sym_continue] = ACTIONS(4730), - [anon_sym_break] = ACTIONS(4730), - [anon_sym_COLON_COLON] = ACTIONS(4733), - [anon_sym_BANGin] = ACTIONS(4733), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_BANGis] = ACTIONS(4733), - [anon_sym_PLUS] = ACTIONS(4730), - [anon_sym_DASH] = ACTIONS(4730), - [anon_sym_PLUS_PLUS] = ACTIONS(4733), - [anon_sym_DASH_DASH] = ACTIONS(4733), - [anon_sym_BANG] = ACTIONS(4730), - [anon_sym_suspend] = ACTIONS(4730), - [anon_sym_sealed] = ACTIONS(4730), - [anon_sym_annotation] = ACTIONS(4730), - [anon_sym_data] = ACTIONS(4730), - [anon_sym_inner] = ACTIONS(4730), - [anon_sym_value] = ACTIONS(4730), - [anon_sym_override] = ACTIONS(4730), - [anon_sym_lateinit] = ACTIONS(4730), - [anon_sym_public] = ACTIONS(4730), - [anon_sym_private] = ACTIONS(4730), - [anon_sym_internal] = ACTIONS(4730), - [anon_sym_protected] = ACTIONS(4730), - [anon_sym_tailrec] = ACTIONS(4730), - [anon_sym_operator] = ACTIONS(4730), - [anon_sym_infix] = ACTIONS(4730), - [anon_sym_inline] = ACTIONS(4730), - [anon_sym_external] = ACTIONS(4730), - [sym_property_modifier] = ACTIONS(4730), - [anon_sym_abstract] = ACTIONS(4730), - [anon_sym_final] = ACTIONS(4730), - [anon_sym_open] = ACTIONS(4730), - [anon_sym_vararg] = ACTIONS(4730), - [anon_sym_noinline] = ACTIONS(4730), - [anon_sym_crossinline] = ACTIONS(4730), - [anon_sym_expect] = ACTIONS(4730), - [anon_sym_actual] = ACTIONS(4730), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4733), - [anon_sym_continue_AT] = ACTIONS(4733), - [anon_sym_break_AT] = ACTIONS(4733), - [anon_sym_this_AT] = ACTIONS(4733), - [anon_sym_super_AT] = ACTIONS(4733), - [sym_real_literal] = ACTIONS(4733), - [sym_integer_literal] = ACTIONS(4730), - [sym_hex_literal] = ACTIONS(4733), - [sym_bin_literal] = ACTIONS(4733), - [anon_sym_true] = ACTIONS(4730), - [anon_sym_false] = ACTIONS(4730), - [anon_sym_SQUOTE] = ACTIONS(4733), - [sym__backtick_identifier] = ACTIONS(4733), - [sym__automatic_semicolon] = ACTIONS(4733), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4733), + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_RBRACK] = ACTIONS(4852), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [anon_sym_DASH_GT] = ACTIONS(4852), + [sym_label] = ACTIONS(4852), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_while] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), }, [3590] = { - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(1732), - [anon_sym_set] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_DASH_GT] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(1732), - [anon_sym_sealed] = ACTIONS(1732), - [anon_sym_annotation] = ACTIONS(1732), - [anon_sym_data] = ACTIONS(1732), - [anon_sym_inner] = ACTIONS(1732), - [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(1732), - [anon_sym_lateinit] = ACTIONS(1732), - [anon_sym_public] = ACTIONS(1732), - [anon_sym_private] = ACTIONS(1732), - [anon_sym_internal] = ACTIONS(1732), - [anon_sym_protected] = ACTIONS(1732), - [anon_sym_tailrec] = ACTIONS(1732), - [anon_sym_operator] = ACTIONS(1732), - [anon_sym_infix] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym_external] = ACTIONS(1732), - [sym_property_modifier] = ACTIONS(1732), - [anon_sym_abstract] = ACTIONS(1732), - [anon_sym_final] = ACTIONS(1732), - [anon_sym_open] = ACTIONS(1732), - [anon_sym_vararg] = ACTIONS(1732), - [anon_sym_noinline] = ACTIONS(1732), - [anon_sym_crossinline] = ACTIONS(1732), - [anon_sym_expect] = ACTIONS(1732), - [anon_sym_actual] = ACTIONS(1732), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__alpha_identifier] = ACTIONS(4842), + [anon_sym_AT] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_RBRACK] = ACTIONS(4844), + [anon_sym_as] = ACTIONS(4842), + [anon_sym_EQ] = ACTIONS(4842), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_where] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_get] = ACTIONS(4842), + [anon_sym_set] = ACTIONS(4842), + [anon_sym_STAR] = ACTIONS(4842), + [anon_sym_DASH_GT] = ACTIONS(4844), + [sym_label] = ACTIONS(4844), + [anon_sym_in] = ACTIONS(4842), + [anon_sym_while] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4844), + [anon_sym_QMARK_COLON] = ACTIONS(4844), + [anon_sym_AMP_AMP] = ACTIONS(4844), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(4842), + [anon_sym_COLON_COLON] = ACTIONS(4844), + [anon_sym_PLUS_EQ] = ACTIONS(4844), + [anon_sym_DASH_EQ] = ACTIONS(4844), + [anon_sym_STAR_EQ] = ACTIONS(4844), + [anon_sym_SLASH_EQ] = ACTIONS(4844), + [anon_sym_PERCENT_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4844), + [anon_sym_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4844), + [anon_sym_LT_EQ] = ACTIONS(4844), + [anon_sym_GT_EQ] = ACTIONS(4844), + [anon_sym_BANGin] = ACTIONS(4844), + [anon_sym_is] = ACTIONS(4842), + [anon_sym_BANGis] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4842), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_as_QMARK] = ACTIONS(4844), + [anon_sym_PLUS_PLUS] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4844), + [anon_sym_BANG_BANG] = ACTIONS(4844), + [anon_sym_suspend] = ACTIONS(4842), + [anon_sym_sealed] = ACTIONS(4842), + [anon_sym_annotation] = ACTIONS(4842), + [anon_sym_data] = ACTIONS(4842), + [anon_sym_inner] = ACTIONS(4842), + [anon_sym_value] = ACTIONS(4842), + [anon_sym_override] = ACTIONS(4842), + [anon_sym_lateinit] = ACTIONS(4842), + [anon_sym_public] = ACTIONS(4842), + [anon_sym_private] = ACTIONS(4842), + [anon_sym_internal] = ACTIONS(4842), + [anon_sym_protected] = ACTIONS(4842), + [anon_sym_tailrec] = ACTIONS(4842), + [anon_sym_operator] = ACTIONS(4842), + [anon_sym_infix] = ACTIONS(4842), + [anon_sym_inline] = ACTIONS(4842), + [anon_sym_external] = ACTIONS(4842), + [sym_property_modifier] = ACTIONS(4842), + [anon_sym_abstract] = ACTIONS(4842), + [anon_sym_final] = ACTIONS(4842), + [anon_sym_open] = ACTIONS(4842), + [anon_sym_vararg] = ACTIONS(4842), + [anon_sym_noinline] = ACTIONS(4842), + [anon_sym_crossinline] = ACTIONS(4842), + [anon_sym_expect] = ACTIONS(4842), + [anon_sym_actual] = ACTIONS(4842), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4844), + [sym_safe_nav] = ACTIONS(4844), [sym_multiline_comment] = ACTIONS(3), }, [3591] = { - [sym__alpha_identifier] = ACTIONS(4189), - [anon_sym_AT] = ACTIONS(4191), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_as] = ACTIONS(4189), - [anon_sym_EQ] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_by] = ACTIONS(4189), - [anon_sym_LT] = ACTIONS(4189), - [anon_sym_GT] = ACTIONS(4189), - [anon_sym_where] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_SEMI] = ACTIONS(4191), - [anon_sym_get] = ACTIONS(4189), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [sym__quest] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [sym_label] = ACTIONS(4191), - [anon_sym_in] = ACTIONS(4189), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_QMARK_COLON] = ACTIONS(4191), - [anon_sym_AMP_AMP] = ACTIONS(4191), - [anon_sym_PIPE_PIPE] = ACTIONS(4191), - [anon_sym_else] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(4191), - [anon_sym_PLUS_EQ] = ACTIONS(4191), - [anon_sym_DASH_EQ] = ACTIONS(4191), - [anon_sym_STAR_EQ] = ACTIONS(4191), - [anon_sym_SLASH_EQ] = ACTIONS(4191), - [anon_sym_PERCENT_EQ] = ACTIONS(4191), - [anon_sym_BANG_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4191), - [anon_sym_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4191), - [anon_sym_LT_EQ] = ACTIONS(4191), - [anon_sym_GT_EQ] = ACTIONS(4191), - [anon_sym_BANGin] = ACTIONS(4191), - [anon_sym_is] = ACTIONS(4189), - [anon_sym_BANGis] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_SLASH] = ACTIONS(4189), - [anon_sym_PERCENT] = ACTIONS(4189), - [anon_sym_as_QMARK] = ACTIONS(4191), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_BANG_BANG] = ACTIONS(4191), - [anon_sym_suspend] = ACTIONS(4189), - [anon_sym_sealed] = ACTIONS(4189), - [anon_sym_annotation] = ACTIONS(4189), - [anon_sym_data] = ACTIONS(4189), - [anon_sym_inner] = ACTIONS(4189), - [anon_sym_value] = ACTIONS(4189), - [anon_sym_override] = ACTIONS(4189), - [anon_sym_lateinit] = ACTIONS(4189), - [anon_sym_public] = ACTIONS(4189), - [anon_sym_private] = ACTIONS(4189), - [anon_sym_internal] = ACTIONS(4189), - [anon_sym_protected] = ACTIONS(4189), - [anon_sym_tailrec] = ACTIONS(4189), - [anon_sym_operator] = ACTIONS(4189), - [anon_sym_infix] = ACTIONS(4189), - [anon_sym_inline] = ACTIONS(4189), - [anon_sym_external] = ACTIONS(4189), - [sym_property_modifier] = ACTIONS(4189), - [anon_sym_abstract] = ACTIONS(4189), - [anon_sym_final] = ACTIONS(4189), - [anon_sym_open] = ACTIONS(4189), - [anon_sym_vararg] = ACTIONS(4189), - [anon_sym_noinline] = ACTIONS(4189), - [anon_sym_crossinline] = ACTIONS(4189), - [anon_sym_expect] = ACTIONS(4189), - [anon_sym_actual] = ACTIONS(4189), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4191), - [sym__automatic_semicolon] = ACTIONS(4191), - [sym_safe_nav] = ACTIONS(4191), - [sym_multiline_comment] = ACTIONS(3), - }, - [3592] = { - [sym__alpha_identifier] = ACTIONS(5255), - [anon_sym_AT] = ACTIONS(5257), - [anon_sym_LBRACK] = ACTIONS(5257), - [anon_sym_RBRACK] = ACTIONS(5257), - [anon_sym_as] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5255), - [anon_sym_LBRACE] = ACTIONS(5257), - [anon_sym_RBRACE] = ACTIONS(5257), - [anon_sym_LPAREN] = ACTIONS(5257), - [anon_sym_COMMA] = ACTIONS(5257), - [anon_sym_RPAREN] = ACTIONS(5257), - [anon_sym_LT] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5255), - [anon_sym_where] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5255), - [anon_sym_SEMI] = ACTIONS(5257), - [anon_sym_get] = ACTIONS(5255), - [anon_sym_set] = ACTIONS(5255), - [anon_sym_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5257), - [sym_label] = ACTIONS(5257), - [anon_sym_in] = ACTIONS(5255), - [anon_sym_while] = ACTIONS(5255), - [anon_sym_DOT_DOT] = ACTIONS(5257), - [anon_sym_QMARK_COLON] = ACTIONS(5257), - [anon_sym_AMP_AMP] = ACTIONS(5257), - [anon_sym_PIPE_PIPE] = ACTIONS(5257), - [anon_sym_else] = ACTIONS(5255), - [anon_sym_COLON_COLON] = ACTIONS(5257), - [anon_sym_PLUS_EQ] = ACTIONS(5257), - [anon_sym_DASH_EQ] = ACTIONS(5257), - [anon_sym_STAR_EQ] = ACTIONS(5257), - [anon_sym_SLASH_EQ] = ACTIONS(5257), - [anon_sym_PERCENT_EQ] = ACTIONS(5257), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5257), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5257), - [anon_sym_LT_EQ] = ACTIONS(5257), - [anon_sym_GT_EQ] = ACTIONS(5257), - [anon_sym_BANGin] = ACTIONS(5257), - [anon_sym_is] = ACTIONS(5255), - [anon_sym_BANGis] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_SLASH] = ACTIONS(5255), - [anon_sym_PERCENT] = ACTIONS(5255), - [anon_sym_as_QMARK] = ACTIONS(5257), - [anon_sym_PLUS_PLUS] = ACTIONS(5257), - [anon_sym_DASH_DASH] = ACTIONS(5257), - [anon_sym_BANG_BANG] = ACTIONS(5257), - [anon_sym_suspend] = ACTIONS(5255), - [anon_sym_sealed] = ACTIONS(5255), - [anon_sym_annotation] = ACTIONS(5255), - [anon_sym_data] = ACTIONS(5255), - [anon_sym_inner] = ACTIONS(5255), - [anon_sym_value] = ACTIONS(5255), - [anon_sym_override] = ACTIONS(5255), - [anon_sym_lateinit] = ACTIONS(5255), - [anon_sym_public] = ACTIONS(5255), - [anon_sym_private] = ACTIONS(5255), - [anon_sym_internal] = ACTIONS(5255), - [anon_sym_protected] = ACTIONS(5255), - [anon_sym_tailrec] = ACTIONS(5255), - [anon_sym_operator] = ACTIONS(5255), - [anon_sym_infix] = ACTIONS(5255), - [anon_sym_inline] = ACTIONS(5255), - [anon_sym_external] = ACTIONS(5255), - [sym_property_modifier] = ACTIONS(5255), - [anon_sym_abstract] = ACTIONS(5255), - [anon_sym_final] = ACTIONS(5255), - [anon_sym_open] = ACTIONS(5255), - [anon_sym_vararg] = ACTIONS(5255), - [anon_sym_noinline] = ACTIONS(5255), - [anon_sym_crossinline] = ACTIONS(5255), - [anon_sym_expect] = ACTIONS(5255), - [anon_sym_actual] = ACTIONS(5255), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5257), - [sym_safe_nav] = ACTIONS(5257), - [sym_multiline_comment] = ACTIONS(3), - }, - [3593] = { - [sym__alpha_identifier] = ACTIONS(4856), - [anon_sym_AT] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_RBRACK] = ACTIONS(4858), - [anon_sym_as] = ACTIONS(4856), - [anon_sym_EQ] = ACTIONS(4856), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_RBRACE] = ACTIONS(4858), - [anon_sym_LPAREN] = ACTIONS(4858), - [anon_sym_COMMA] = ACTIONS(4858), - [anon_sym_RPAREN] = ACTIONS(4858), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_where] = ACTIONS(4856), - [anon_sym_DOT] = ACTIONS(4856), - [anon_sym_SEMI] = ACTIONS(4858), - [anon_sym_get] = ACTIONS(4856), - [anon_sym_set] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4856), - [anon_sym_DASH_GT] = ACTIONS(4858), - [sym_label] = ACTIONS(4858), - [anon_sym_in] = ACTIONS(4856), - [anon_sym_while] = ACTIONS(4856), - [anon_sym_DOT_DOT] = ACTIONS(4858), - [anon_sym_QMARK_COLON] = ACTIONS(4858), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_else] = ACTIONS(4856), - [anon_sym_COLON_COLON] = ACTIONS(4858), - [anon_sym_PLUS_EQ] = ACTIONS(4858), - [anon_sym_DASH_EQ] = ACTIONS(4858), - [anon_sym_STAR_EQ] = ACTIONS(4858), - [anon_sym_SLASH_EQ] = ACTIONS(4858), - [anon_sym_PERCENT_EQ] = ACTIONS(4858), - [anon_sym_BANG_EQ] = ACTIONS(4856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), - [anon_sym_EQ_EQ] = ACTIONS(4856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), - [anon_sym_LT_EQ] = ACTIONS(4858), - [anon_sym_GT_EQ] = ACTIONS(4858), - [anon_sym_BANGin] = ACTIONS(4858), - [anon_sym_is] = ACTIONS(4856), - [anon_sym_BANGis] = ACTIONS(4858), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4856), - [anon_sym_as_QMARK] = ACTIONS(4858), - [anon_sym_PLUS_PLUS] = ACTIONS(4858), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_BANG_BANG] = ACTIONS(4858), - [anon_sym_suspend] = ACTIONS(4856), - [anon_sym_sealed] = ACTIONS(4856), - [anon_sym_annotation] = ACTIONS(4856), - [anon_sym_data] = ACTIONS(4856), - [anon_sym_inner] = ACTIONS(4856), - [anon_sym_value] = ACTIONS(4856), - [anon_sym_override] = ACTIONS(4856), - [anon_sym_lateinit] = ACTIONS(4856), - [anon_sym_public] = ACTIONS(4856), - [anon_sym_private] = ACTIONS(4856), - [anon_sym_internal] = ACTIONS(4856), - [anon_sym_protected] = ACTIONS(4856), - [anon_sym_tailrec] = ACTIONS(4856), - [anon_sym_operator] = ACTIONS(4856), - [anon_sym_infix] = ACTIONS(4856), - [anon_sym_inline] = ACTIONS(4856), - [anon_sym_external] = ACTIONS(4856), - [sym_property_modifier] = ACTIONS(4856), - [anon_sym_abstract] = ACTIONS(4856), - [anon_sym_final] = ACTIONS(4856), - [anon_sym_open] = ACTIONS(4856), - [anon_sym_vararg] = ACTIONS(4856), - [anon_sym_noinline] = ACTIONS(4856), - [anon_sym_crossinline] = ACTIONS(4856), - [anon_sym_expect] = ACTIONS(4856), - [anon_sym_actual] = ACTIONS(4856), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4858), - [sym_safe_nav] = ACTIONS(4858), - [sym_multiline_comment] = ACTIONS(3), - }, - [3594] = { - [sym__alpha_identifier] = ACTIONS(5004), - [anon_sym_AT] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_RBRACK] = ACTIONS(5006), - [anon_sym_as] = ACTIONS(5004), - [anon_sym_EQ] = ACTIONS(5004), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_RPAREN] = ACTIONS(5006), - [anon_sym_LT] = ACTIONS(5004), - [anon_sym_GT] = ACTIONS(5004), - [anon_sym_where] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5004), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym_get] = ACTIONS(5004), - [anon_sym_set] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5004), - [anon_sym_DASH_GT] = ACTIONS(5006), - [sym_label] = ACTIONS(5006), - [anon_sym_in] = ACTIONS(5004), - [anon_sym_while] = ACTIONS(5004), - [anon_sym_DOT_DOT] = ACTIONS(5006), - [anon_sym_QMARK_COLON] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_else] = ACTIONS(5004), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym_PLUS_EQ] = ACTIONS(5006), - [anon_sym_DASH_EQ] = ACTIONS(5006), - [anon_sym_STAR_EQ] = ACTIONS(5006), - [anon_sym_SLASH_EQ] = ACTIONS(5006), - [anon_sym_PERCENT_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5004), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5006), - [anon_sym_EQ_EQ] = ACTIONS(5004), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5006), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_BANGin] = ACTIONS(5006), - [anon_sym_is] = ACTIONS(5004), - [anon_sym_BANGis] = ACTIONS(5006), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_SLASH] = ACTIONS(5004), - [anon_sym_PERCENT] = ACTIONS(5004), - [anon_sym_as_QMARK] = ACTIONS(5006), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_BANG_BANG] = ACTIONS(5006), - [anon_sym_suspend] = ACTIONS(5004), - [anon_sym_sealed] = ACTIONS(5004), - [anon_sym_annotation] = ACTIONS(5004), - [anon_sym_data] = ACTIONS(5004), - [anon_sym_inner] = ACTIONS(5004), - [anon_sym_value] = ACTIONS(5004), - [anon_sym_override] = ACTIONS(5004), - [anon_sym_lateinit] = ACTIONS(5004), - [anon_sym_public] = ACTIONS(5004), - [anon_sym_private] = ACTIONS(5004), - [anon_sym_internal] = ACTIONS(5004), - [anon_sym_protected] = ACTIONS(5004), - [anon_sym_tailrec] = ACTIONS(5004), - [anon_sym_operator] = ACTIONS(5004), - [anon_sym_infix] = ACTIONS(5004), - [anon_sym_inline] = ACTIONS(5004), - [anon_sym_external] = ACTIONS(5004), - [sym_property_modifier] = ACTIONS(5004), - [anon_sym_abstract] = ACTIONS(5004), - [anon_sym_final] = ACTIONS(5004), - [anon_sym_open] = ACTIONS(5004), - [anon_sym_vararg] = ACTIONS(5004), - [anon_sym_noinline] = ACTIONS(5004), - [anon_sym_crossinline] = ACTIONS(5004), - [anon_sym_expect] = ACTIONS(5004), - [anon_sym_actual] = ACTIONS(5004), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5006), - [sym_safe_nav] = ACTIONS(5006), - [sym_multiline_comment] = ACTIONS(3), - }, - [3595] = { - [sym__alpha_identifier] = ACTIONS(4860), - [anon_sym_AT] = ACTIONS(4862), - [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_RBRACK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_EQ] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4862), - [anon_sym_RBRACE] = ACTIONS(4862), - [anon_sym_LPAREN] = ACTIONS(4862), - [anon_sym_COMMA] = ACTIONS(4862), - [anon_sym_RPAREN] = ACTIONS(4862), - [anon_sym_LT] = ACTIONS(4860), - [anon_sym_GT] = ACTIONS(4860), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4860), - [anon_sym_SEMI] = ACTIONS(4862), - [anon_sym_get] = ACTIONS(4860), - [anon_sym_set] = ACTIONS(4860), - [anon_sym_STAR] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4862), - [sym_label] = ACTIONS(4862), - [anon_sym_in] = ACTIONS(4860), - [anon_sym_while] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4862), - [anon_sym_QMARK_COLON] = ACTIONS(4862), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE_PIPE] = ACTIONS(4862), - [anon_sym_else] = ACTIONS(4860), - [anon_sym_COLON_COLON] = ACTIONS(4862), - [anon_sym_PLUS_EQ] = ACTIONS(4862), - [anon_sym_DASH_EQ] = ACTIONS(4862), - [anon_sym_STAR_EQ] = ACTIONS(4862), - [anon_sym_SLASH_EQ] = ACTIONS(4862), - [anon_sym_PERCENT_EQ] = ACTIONS(4862), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4862), - [anon_sym_LT_EQ] = ACTIONS(4862), - [anon_sym_GT_EQ] = ACTIONS(4862), - [anon_sym_BANGin] = ACTIONS(4862), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_BANGis] = ACTIONS(4862), - [anon_sym_PLUS] = ACTIONS(4860), - [anon_sym_DASH] = ACTIONS(4860), - [anon_sym_SLASH] = ACTIONS(4860), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_as_QMARK] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4862), - [anon_sym_DASH_DASH] = ACTIONS(4862), - [anon_sym_BANG_BANG] = ACTIONS(4862), - [anon_sym_suspend] = ACTIONS(4860), - [anon_sym_sealed] = ACTIONS(4860), - [anon_sym_annotation] = ACTIONS(4860), - [anon_sym_data] = ACTIONS(4860), - [anon_sym_inner] = ACTIONS(4860), - [anon_sym_value] = ACTIONS(4860), - [anon_sym_override] = ACTIONS(4860), - [anon_sym_lateinit] = ACTIONS(4860), - [anon_sym_public] = ACTIONS(4860), - [anon_sym_private] = ACTIONS(4860), - [anon_sym_internal] = ACTIONS(4860), - [anon_sym_protected] = ACTIONS(4860), - [anon_sym_tailrec] = ACTIONS(4860), - [anon_sym_operator] = ACTIONS(4860), - [anon_sym_infix] = ACTIONS(4860), - [anon_sym_inline] = ACTIONS(4860), - [anon_sym_external] = ACTIONS(4860), - [sym_property_modifier] = ACTIONS(4860), - [anon_sym_abstract] = ACTIONS(4860), - [anon_sym_final] = ACTIONS(4860), - [anon_sym_open] = ACTIONS(4860), - [anon_sym_vararg] = ACTIONS(4860), - [anon_sym_noinline] = ACTIONS(4860), - [anon_sym_crossinline] = ACTIONS(4860), - [anon_sym_expect] = ACTIONS(4860), - [anon_sym_actual] = ACTIONS(4860), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4862), - [sym_safe_nav] = ACTIONS(4862), - [sym_multiline_comment] = ACTIONS(3), - }, - [3596] = { - [sym__alpha_identifier] = ACTIONS(4868), - [anon_sym_AT] = ACTIONS(4870), - [anon_sym_LBRACK] = ACTIONS(4870), - [anon_sym_RBRACK] = ACTIONS(4870), - [anon_sym_as] = ACTIONS(4868), - [anon_sym_EQ] = ACTIONS(4868), - [anon_sym_LBRACE] = ACTIONS(4870), - [anon_sym_RBRACE] = ACTIONS(4870), - [anon_sym_LPAREN] = ACTIONS(4870), - [anon_sym_COMMA] = ACTIONS(4870), - [anon_sym_RPAREN] = ACTIONS(4870), - [anon_sym_LT] = ACTIONS(4868), - [anon_sym_GT] = ACTIONS(4868), - [anon_sym_where] = ACTIONS(4868), - [anon_sym_DOT] = ACTIONS(4868), - [anon_sym_SEMI] = ACTIONS(4870), - [anon_sym_get] = ACTIONS(4868), - [anon_sym_set] = ACTIONS(4868), - [anon_sym_STAR] = ACTIONS(4868), - [anon_sym_DASH_GT] = ACTIONS(4870), - [sym_label] = ACTIONS(4870), - [anon_sym_in] = ACTIONS(4868), - [anon_sym_while] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4870), - [anon_sym_QMARK_COLON] = ACTIONS(4870), - [anon_sym_AMP_AMP] = ACTIONS(4870), - [anon_sym_PIPE_PIPE] = ACTIONS(4870), - [anon_sym_else] = ACTIONS(4868), - [anon_sym_COLON_COLON] = ACTIONS(4870), - [anon_sym_PLUS_EQ] = ACTIONS(4870), - [anon_sym_DASH_EQ] = ACTIONS(4870), - [anon_sym_STAR_EQ] = ACTIONS(4870), - [anon_sym_SLASH_EQ] = ACTIONS(4870), - [anon_sym_PERCENT_EQ] = ACTIONS(4870), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4870), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4870), - [anon_sym_LT_EQ] = ACTIONS(4870), - [anon_sym_GT_EQ] = ACTIONS(4870), - [anon_sym_BANGin] = ACTIONS(4870), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_BANGis] = ACTIONS(4870), - [anon_sym_PLUS] = ACTIONS(4868), - [anon_sym_DASH] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4868), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_as_QMARK] = ACTIONS(4870), - [anon_sym_PLUS_PLUS] = ACTIONS(4870), - [anon_sym_DASH_DASH] = ACTIONS(4870), - [anon_sym_BANG_BANG] = ACTIONS(4870), - [anon_sym_suspend] = ACTIONS(4868), - [anon_sym_sealed] = ACTIONS(4868), - [anon_sym_annotation] = ACTIONS(4868), - [anon_sym_data] = ACTIONS(4868), - [anon_sym_inner] = ACTIONS(4868), - [anon_sym_value] = ACTIONS(4868), - [anon_sym_override] = ACTIONS(4868), - [anon_sym_lateinit] = ACTIONS(4868), - [anon_sym_public] = ACTIONS(4868), - [anon_sym_private] = ACTIONS(4868), - [anon_sym_internal] = ACTIONS(4868), - [anon_sym_protected] = ACTIONS(4868), - [anon_sym_tailrec] = ACTIONS(4868), - [anon_sym_operator] = ACTIONS(4868), - [anon_sym_infix] = ACTIONS(4868), - [anon_sym_inline] = ACTIONS(4868), - [anon_sym_external] = ACTIONS(4868), - [sym_property_modifier] = ACTIONS(4868), - [anon_sym_abstract] = ACTIONS(4868), - [anon_sym_final] = ACTIONS(4868), - [anon_sym_open] = ACTIONS(4868), - [anon_sym_vararg] = ACTIONS(4868), - [anon_sym_noinline] = ACTIONS(4868), - [anon_sym_crossinline] = ACTIONS(4868), - [anon_sym_expect] = ACTIONS(4868), - [anon_sym_actual] = ACTIONS(4868), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4870), - [sym_safe_nav] = ACTIONS(4870), - [sym_multiline_comment] = ACTIONS(3), - }, - [3597] = { - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_RBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(4283), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_RPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [anon_sym_DASH_GT] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_while] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - }, - [3598] = { - [sym__alpha_identifier] = ACTIONS(4918), - [anon_sym_AT] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(4920), - [anon_sym_RBRACK] = ACTIONS(4920), - [anon_sym_as] = ACTIONS(4918), - [anon_sym_EQ] = ACTIONS(4918), - [anon_sym_LBRACE] = ACTIONS(4920), - [anon_sym_RBRACE] = ACTIONS(4920), - [anon_sym_LPAREN] = ACTIONS(4920), - [anon_sym_COMMA] = ACTIONS(4920), - [anon_sym_RPAREN] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4918), - [anon_sym_GT] = ACTIONS(4918), - [anon_sym_where] = ACTIONS(4918), - [anon_sym_DOT] = ACTIONS(4918), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_get] = ACTIONS(4918), - [anon_sym_set] = ACTIONS(4918), - [anon_sym_STAR] = ACTIONS(4918), - [anon_sym_DASH_GT] = ACTIONS(4920), - [sym_label] = ACTIONS(4920), - [anon_sym_in] = ACTIONS(4918), - [anon_sym_while] = ACTIONS(4918), - [anon_sym_DOT_DOT] = ACTIONS(4920), - [anon_sym_QMARK_COLON] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [anon_sym_else] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_PLUS_EQ] = ACTIONS(4920), - [anon_sym_DASH_EQ] = ACTIONS(4920), - [anon_sym_STAR_EQ] = ACTIONS(4920), - [anon_sym_SLASH_EQ] = ACTIONS(4920), - [anon_sym_PERCENT_EQ] = ACTIONS(4920), - [anon_sym_BANG_EQ] = ACTIONS(4918), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4920), - [anon_sym_EQ_EQ] = ACTIONS(4918), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4920), - [anon_sym_LT_EQ] = ACTIONS(4920), - [anon_sym_GT_EQ] = ACTIONS(4920), - [anon_sym_BANGin] = ACTIONS(4920), - [anon_sym_is] = ACTIONS(4918), - [anon_sym_BANGis] = ACTIONS(4920), - [anon_sym_PLUS] = ACTIONS(4918), - [anon_sym_DASH] = ACTIONS(4918), - [anon_sym_SLASH] = ACTIONS(4918), - [anon_sym_PERCENT] = ACTIONS(4918), - [anon_sym_as_QMARK] = ACTIONS(4920), - [anon_sym_PLUS_PLUS] = ACTIONS(4920), - [anon_sym_DASH_DASH] = ACTIONS(4920), - [anon_sym_BANG_BANG] = ACTIONS(4920), - [anon_sym_suspend] = ACTIONS(4918), - [anon_sym_sealed] = ACTIONS(4918), - [anon_sym_annotation] = ACTIONS(4918), - [anon_sym_data] = ACTIONS(4918), - [anon_sym_inner] = ACTIONS(4918), - [anon_sym_value] = ACTIONS(4918), - [anon_sym_override] = ACTIONS(4918), - [anon_sym_lateinit] = ACTIONS(4918), - [anon_sym_public] = ACTIONS(4918), - [anon_sym_private] = ACTIONS(4918), - [anon_sym_internal] = ACTIONS(4918), - [anon_sym_protected] = ACTIONS(4918), - [anon_sym_tailrec] = ACTIONS(4918), - [anon_sym_operator] = ACTIONS(4918), - [anon_sym_infix] = ACTIONS(4918), - [anon_sym_inline] = ACTIONS(4918), - [anon_sym_external] = ACTIONS(4918), - [sym_property_modifier] = ACTIONS(4918), - [anon_sym_abstract] = ACTIONS(4918), - [anon_sym_final] = ACTIONS(4918), - [anon_sym_open] = ACTIONS(4918), - [anon_sym_vararg] = ACTIONS(4918), - [anon_sym_noinline] = ACTIONS(4918), - [anon_sym_crossinline] = ACTIONS(4918), - [anon_sym_expect] = ACTIONS(4918), - [anon_sym_actual] = ACTIONS(4918), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4920), - [sym_safe_nav] = ACTIONS(4920), - [sym_multiline_comment] = ACTIONS(3), - }, - [3599] = { - [sym_type_constraints] = STATE(4048), - [sym_function_body] = STATE(4087), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(7021), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4183), - [sym_label] = ACTIONS(4185), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_PLUS_EQ] = ACTIONS(4185), - [anon_sym_DASH_EQ] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4185), - [anon_sym_SLASH_EQ] = ACTIONS(4185), - [anon_sym_PERCENT_EQ] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4183), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), - [sym_multiline_comment] = ACTIONS(3), - }, - [3600] = { - [sym__alpha_identifier] = ACTIONS(4317), - [anon_sym_AT] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [anon_sym_as] = ACTIONS(4317), - [anon_sym_EQ] = ACTIONS(4317), - [anon_sym_LBRACE] = ACTIONS(4319), - [anon_sym_RBRACE] = ACTIONS(4319), - [anon_sym_LPAREN] = ACTIONS(4319), - [anon_sym_COMMA] = ACTIONS(4319), - [anon_sym_by] = ACTIONS(4317), - [anon_sym_LT] = ACTIONS(4317), - [anon_sym_GT] = ACTIONS(4317), - [anon_sym_where] = ACTIONS(4317), - [anon_sym_DOT] = ACTIONS(4317), - [anon_sym_SEMI] = ACTIONS(4319), - [anon_sym_get] = ACTIONS(4317), - [anon_sym_set] = ACTIONS(4317), - [anon_sym_AMP] = ACTIONS(4317), - [sym__quest] = ACTIONS(4317), - [anon_sym_STAR] = ACTIONS(4317), - [sym_label] = ACTIONS(4319), - [anon_sym_in] = ACTIONS(4317), - [anon_sym_DOT_DOT] = ACTIONS(4319), - [anon_sym_QMARK_COLON] = ACTIONS(4319), - [anon_sym_AMP_AMP] = ACTIONS(4319), - [anon_sym_PIPE_PIPE] = ACTIONS(4319), - [anon_sym_else] = ACTIONS(4317), - [anon_sym_COLON_COLON] = ACTIONS(4319), - [anon_sym_PLUS_EQ] = ACTIONS(4319), - [anon_sym_DASH_EQ] = ACTIONS(4319), - [anon_sym_STAR_EQ] = ACTIONS(4319), - [anon_sym_SLASH_EQ] = ACTIONS(4319), - [anon_sym_PERCENT_EQ] = ACTIONS(4319), - [anon_sym_BANG_EQ] = ACTIONS(4317), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4319), - [anon_sym_EQ_EQ] = ACTIONS(4317), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4319), - [anon_sym_LT_EQ] = ACTIONS(4319), - [anon_sym_GT_EQ] = ACTIONS(4319), - [anon_sym_BANGin] = ACTIONS(4319), - [anon_sym_is] = ACTIONS(4317), - [anon_sym_BANGis] = ACTIONS(4319), - [anon_sym_PLUS] = ACTIONS(4317), - [anon_sym_DASH] = ACTIONS(4317), - [anon_sym_SLASH] = ACTIONS(4317), - [anon_sym_PERCENT] = ACTIONS(4317), - [anon_sym_as_QMARK] = ACTIONS(4319), - [anon_sym_PLUS_PLUS] = ACTIONS(4319), - [anon_sym_DASH_DASH] = ACTIONS(4319), - [anon_sym_BANG_BANG] = ACTIONS(4319), - [anon_sym_suspend] = ACTIONS(4317), - [anon_sym_sealed] = ACTIONS(4317), - [anon_sym_annotation] = ACTIONS(4317), - [anon_sym_data] = ACTIONS(4317), - [anon_sym_inner] = ACTIONS(4317), - [anon_sym_value] = ACTIONS(4317), - [anon_sym_override] = ACTIONS(4317), - [anon_sym_lateinit] = ACTIONS(4317), - [anon_sym_public] = ACTIONS(4317), - [anon_sym_private] = ACTIONS(4317), - [anon_sym_internal] = ACTIONS(4317), - [anon_sym_protected] = ACTIONS(4317), - [anon_sym_tailrec] = ACTIONS(4317), - [anon_sym_operator] = ACTIONS(4317), - [anon_sym_infix] = ACTIONS(4317), - [anon_sym_inline] = ACTIONS(4317), - [anon_sym_external] = ACTIONS(4317), - [sym_property_modifier] = ACTIONS(4317), - [anon_sym_abstract] = ACTIONS(4317), - [anon_sym_final] = ACTIONS(4317), - [anon_sym_open] = ACTIONS(4317), - [anon_sym_vararg] = ACTIONS(4317), - [anon_sym_noinline] = ACTIONS(4317), - [anon_sym_crossinline] = ACTIONS(4317), - [anon_sym_expect] = ACTIONS(4317), - [anon_sym_actual] = ACTIONS(4317), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4319), - [sym__automatic_semicolon] = ACTIONS(4319), - [sym_safe_nav] = ACTIONS(4319), - [sym_multiline_comment] = ACTIONS(3), - }, - [3601] = { - [sym__alpha_identifier] = ACTIONS(4922), - [anon_sym_AT] = ACTIONS(4924), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_RBRACK] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4922), - [anon_sym_EQ] = ACTIONS(4922), - [anon_sym_LBRACE] = ACTIONS(4924), - [anon_sym_RBRACE] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4924), - [anon_sym_RPAREN] = ACTIONS(4924), - [anon_sym_LT] = ACTIONS(4922), - [anon_sym_GT] = ACTIONS(4922), - [anon_sym_where] = ACTIONS(4922), - [anon_sym_DOT] = ACTIONS(4922), - [anon_sym_SEMI] = ACTIONS(4924), - [anon_sym_get] = ACTIONS(4922), - [anon_sym_set] = ACTIONS(4922), - [anon_sym_STAR] = ACTIONS(4922), - [anon_sym_DASH_GT] = ACTIONS(4924), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4922), - [anon_sym_while] = ACTIONS(4922), - [anon_sym_DOT_DOT] = ACTIONS(4924), - [anon_sym_QMARK_COLON] = ACTIONS(4924), - [anon_sym_AMP_AMP] = ACTIONS(4924), - [anon_sym_PIPE_PIPE] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(4922), - [anon_sym_COLON_COLON] = ACTIONS(4924), - [anon_sym_PLUS_EQ] = ACTIONS(4924), - [anon_sym_DASH_EQ] = ACTIONS(4924), - [anon_sym_STAR_EQ] = ACTIONS(4924), - [anon_sym_SLASH_EQ] = ACTIONS(4924), - [anon_sym_PERCENT_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ] = ACTIONS(4922), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4924), - [anon_sym_LT_EQ] = ACTIONS(4924), - [anon_sym_GT_EQ] = ACTIONS(4924), - [anon_sym_BANGin] = ACTIONS(4924), - [anon_sym_is] = ACTIONS(4922), - [anon_sym_BANGis] = ACTIONS(4924), - [anon_sym_PLUS] = ACTIONS(4922), - [anon_sym_DASH] = ACTIONS(4922), - [anon_sym_SLASH] = ACTIONS(4922), - [anon_sym_PERCENT] = ACTIONS(4922), - [anon_sym_as_QMARK] = ACTIONS(4924), - [anon_sym_PLUS_PLUS] = ACTIONS(4924), - [anon_sym_DASH_DASH] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4924), - [anon_sym_suspend] = ACTIONS(4922), - [anon_sym_sealed] = ACTIONS(4922), - [anon_sym_annotation] = ACTIONS(4922), - [anon_sym_data] = ACTIONS(4922), - [anon_sym_inner] = ACTIONS(4922), - [anon_sym_value] = ACTIONS(4922), - [anon_sym_override] = ACTIONS(4922), - [anon_sym_lateinit] = ACTIONS(4922), - [anon_sym_public] = ACTIONS(4922), - [anon_sym_private] = ACTIONS(4922), - [anon_sym_internal] = ACTIONS(4922), - [anon_sym_protected] = ACTIONS(4922), - [anon_sym_tailrec] = ACTIONS(4922), - [anon_sym_operator] = ACTIONS(4922), - [anon_sym_infix] = ACTIONS(4922), - [anon_sym_inline] = ACTIONS(4922), - [anon_sym_external] = ACTIONS(4922), - [sym_property_modifier] = ACTIONS(4922), - [anon_sym_abstract] = ACTIONS(4922), - [anon_sym_final] = ACTIONS(4922), - [anon_sym_open] = ACTIONS(4922), - [anon_sym_vararg] = ACTIONS(4922), - [anon_sym_noinline] = ACTIONS(4922), - [anon_sym_crossinline] = ACTIONS(4922), - [anon_sym_expect] = ACTIONS(4922), - [anon_sym_actual] = ACTIONS(4922), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4924), - [sym_safe_nav] = ACTIONS(4924), - [sym_multiline_comment] = ACTIONS(3), - }, - [3602] = { - [aux_sym_type_constraints_repeat1] = STATE(3580), - [sym__alpha_identifier] = ACTIONS(4541), - [anon_sym_AT] = ACTIONS(4543), - [anon_sym_LBRACK] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(4543), - [anon_sym_fun] = ACTIONS(4541), - [anon_sym_LBRACE] = ACTIONS(4543), - [anon_sym_RBRACE] = ACTIONS(4543), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_COMMA] = ACTIONS(7017), - [anon_sym_by] = ACTIONS(4541), - [anon_sym_object] = ACTIONS(4541), - [anon_sym_SEMI] = ACTIONS(4543), - [anon_sym_get] = ACTIONS(4541), - [anon_sym_set] = ACTIONS(4541), - [anon_sym_this] = ACTIONS(4541), - [anon_sym_super] = ACTIONS(4541), - [anon_sym_STAR] = ACTIONS(4543), - [sym_label] = ACTIONS(4541), - [anon_sym_in] = ACTIONS(4541), - [anon_sym_null] = ACTIONS(4541), - [anon_sym_if] = ACTIONS(4541), - [anon_sym_else] = ACTIONS(4541), - [anon_sym_when] = ACTIONS(4541), - [anon_sym_try] = ACTIONS(4541), - [anon_sym_throw] = ACTIONS(4541), - [anon_sym_return] = ACTIONS(4541), - [anon_sym_continue] = ACTIONS(4541), - [anon_sym_break] = ACTIONS(4541), - [anon_sym_COLON_COLON] = ACTIONS(4543), - [anon_sym_BANGin] = ACTIONS(4543), - [anon_sym_is] = ACTIONS(4541), - [anon_sym_BANGis] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4541), - [anon_sym_DASH] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_BANG] = ACTIONS(4541), - [anon_sym_suspend] = ACTIONS(4541), - [anon_sym_sealed] = ACTIONS(4541), - [anon_sym_annotation] = ACTIONS(4541), - [anon_sym_data] = ACTIONS(4541), - [anon_sym_inner] = ACTIONS(4541), - [anon_sym_value] = ACTIONS(4541), - [anon_sym_override] = ACTIONS(4541), - [anon_sym_lateinit] = ACTIONS(4541), - [anon_sym_public] = ACTIONS(4541), - [anon_sym_private] = ACTIONS(4541), - [anon_sym_internal] = ACTIONS(4541), - [anon_sym_protected] = ACTIONS(4541), - [anon_sym_tailrec] = ACTIONS(4541), - [anon_sym_operator] = ACTIONS(4541), - [anon_sym_infix] = ACTIONS(4541), - [anon_sym_inline] = ACTIONS(4541), - [anon_sym_external] = ACTIONS(4541), - [sym_property_modifier] = ACTIONS(4541), - [anon_sym_abstract] = ACTIONS(4541), - [anon_sym_final] = ACTIONS(4541), - [anon_sym_open] = ACTIONS(4541), - [anon_sym_vararg] = ACTIONS(4541), - [anon_sym_noinline] = ACTIONS(4541), - [anon_sym_crossinline] = ACTIONS(4541), - [anon_sym_expect] = ACTIONS(4541), - [anon_sym_actual] = ACTIONS(4541), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4543), - [anon_sym_continue_AT] = ACTIONS(4543), - [anon_sym_break_AT] = ACTIONS(4543), - [anon_sym_this_AT] = ACTIONS(4543), - [anon_sym_super_AT] = ACTIONS(4543), - [sym_real_literal] = ACTIONS(4543), - [sym_integer_literal] = ACTIONS(4541), - [sym_hex_literal] = ACTIONS(4543), - [sym_bin_literal] = ACTIONS(4543), - [anon_sym_true] = ACTIONS(4541), - [anon_sym_false] = ACTIONS(4541), - [anon_sym_SQUOTE] = ACTIONS(4543), - [sym__backtick_identifier] = ACTIONS(4543), - [sym__automatic_semicolon] = ACTIONS(4543), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4543), - }, - [3603] = { - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_RBRACK] = ACTIONS(4639), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_RPAREN] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_DASH_GT] = ACTIONS(4639), - [sym_label] = ACTIONS(4639), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_while] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_suspend] = ACTIONS(4637), - [anon_sym_sealed] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4637), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_override] = ACTIONS(4637), - [anon_sym_lateinit] = ACTIONS(4637), - [anon_sym_public] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4637), - [anon_sym_internal] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4637), - [anon_sym_tailrec] = ACTIONS(4637), - [anon_sym_operator] = ACTIONS(4637), - [anon_sym_infix] = ACTIONS(4637), - [anon_sym_inline] = ACTIONS(4637), - [anon_sym_external] = ACTIONS(4637), - [sym_property_modifier] = ACTIONS(4637), - [anon_sym_abstract] = ACTIONS(4637), - [anon_sym_final] = ACTIONS(4637), - [anon_sym_open] = ACTIONS(4637), - [anon_sym_vararg] = ACTIONS(4637), - [anon_sym_noinline] = ACTIONS(4637), - [anon_sym_crossinline] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), - [sym_multiline_comment] = ACTIONS(3), - }, - [3604] = { - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_RBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(4467), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_RPAREN] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [anon_sym_DASH_GT] = ACTIONS(4467), - [sym_label] = ACTIONS(4467), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_while] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_suspend] = ACTIONS(4465), - [anon_sym_sealed] = ACTIONS(4465), - [anon_sym_annotation] = ACTIONS(4465), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_override] = ACTIONS(4465), - [anon_sym_lateinit] = ACTIONS(4465), - [anon_sym_public] = ACTIONS(4465), - [anon_sym_private] = ACTIONS(4465), - [anon_sym_internal] = ACTIONS(4465), - [anon_sym_protected] = ACTIONS(4465), - [anon_sym_tailrec] = ACTIONS(4465), - [anon_sym_operator] = ACTIONS(4465), - [anon_sym_infix] = ACTIONS(4465), - [anon_sym_inline] = ACTIONS(4465), - [anon_sym_external] = ACTIONS(4465), - [sym_property_modifier] = ACTIONS(4465), - [anon_sym_abstract] = ACTIONS(4465), - [anon_sym_final] = ACTIONS(4465), - [anon_sym_open] = ACTIONS(4465), - [anon_sym_vararg] = ACTIONS(4465), - [anon_sym_noinline] = ACTIONS(4465), - [anon_sym_crossinline] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), - [sym_multiline_comment] = ACTIONS(3), - }, - [3605] = { - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_RBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_RPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [anon_sym_DASH_GT] = ACTIONS(4387), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_while] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - }, - [3606] = { - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_RBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(4520), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_COMMA] = ACTIONS(4520), - [anon_sym_RPAREN] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_where] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4518), - [anon_sym_DASH_GT] = ACTIONS(4520), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_while] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_PLUS_EQ] = ACTIONS(4520), - [anon_sym_DASH_EQ] = ACTIONS(4520), - [anon_sym_STAR_EQ] = ACTIONS(4520), - [anon_sym_SLASH_EQ] = ACTIONS(4520), - [anon_sym_PERCENT_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4518), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_suspend] = ACTIONS(4518), - [anon_sym_sealed] = ACTIONS(4518), - [anon_sym_annotation] = ACTIONS(4518), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_override] = ACTIONS(4518), - [anon_sym_lateinit] = ACTIONS(4518), - [anon_sym_public] = ACTIONS(4518), - [anon_sym_private] = ACTIONS(4518), - [anon_sym_internal] = ACTIONS(4518), - [anon_sym_protected] = ACTIONS(4518), - [anon_sym_tailrec] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_infix] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym_external] = ACTIONS(4518), - [sym_property_modifier] = ACTIONS(4518), - [anon_sym_abstract] = ACTIONS(4518), - [anon_sym_final] = ACTIONS(4518), - [anon_sym_open] = ACTIONS(4518), - [anon_sym_vararg] = ACTIONS(4518), - [anon_sym_noinline] = ACTIONS(4518), - [anon_sym_crossinline] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), - [sym_multiline_comment] = ACTIONS(3), - }, - [3607] = { - [ts_builtin_sym_end] = ACTIONS(7025), - [sym__alpha_identifier] = ACTIONS(7027), - [anon_sym_AT] = ACTIONS(7025), - [anon_sym_LBRACK] = ACTIONS(7025), - [anon_sym_package] = ACTIONS(7027), - [anon_sym_import] = ACTIONS(7027), - [anon_sym_typealias] = ACTIONS(7027), - [anon_sym_class] = ACTIONS(7027), - [anon_sym_fun] = ACTIONS(7027), - [anon_sym_interface] = ACTIONS(7027), - [anon_sym_enum] = ACTIONS(7027), - [anon_sym_LBRACE] = ACTIONS(7025), - [anon_sym_LPAREN] = ACTIONS(7025), - [anon_sym_val] = ACTIONS(7027), - [anon_sym_var] = ACTIONS(7027), - [anon_sym_object] = ACTIONS(7027), - [anon_sym_get] = ACTIONS(7027), - [anon_sym_set] = ACTIONS(7027), - [anon_sym_this] = ACTIONS(7027), - [anon_sym_super] = ACTIONS(7027), - [anon_sym_STAR] = ACTIONS(7025), - [sym_label] = ACTIONS(7027), - [anon_sym_for] = ACTIONS(7027), - [anon_sym_while] = ACTIONS(7027), - [anon_sym_do] = ACTIONS(7027), - [anon_sym_null] = ACTIONS(7027), - [anon_sym_if] = ACTIONS(7027), - [anon_sym_when] = ACTIONS(7027), - [anon_sym_try] = ACTIONS(7027), - [anon_sym_throw] = ACTIONS(7027), - [anon_sym_return] = ACTIONS(7027), - [anon_sym_continue] = ACTIONS(7027), - [anon_sym_break] = ACTIONS(7027), - [anon_sym_COLON_COLON] = ACTIONS(7025), - [anon_sym_PLUS] = ACTIONS(7027), - [anon_sym_DASH] = ACTIONS(7027), - [anon_sym_PLUS_PLUS] = ACTIONS(7025), - [anon_sym_DASH_DASH] = ACTIONS(7025), - [anon_sym_BANG] = ACTIONS(7025), - [anon_sym_suspend] = ACTIONS(7027), - [anon_sym_sealed] = ACTIONS(7027), - [anon_sym_annotation] = ACTIONS(7027), - [anon_sym_data] = ACTIONS(7027), - [anon_sym_inner] = ACTIONS(7027), - [anon_sym_value] = ACTIONS(7027), - [anon_sym_override] = ACTIONS(7027), - [anon_sym_lateinit] = ACTIONS(7027), - [anon_sym_public] = ACTIONS(7027), - [anon_sym_private] = ACTIONS(7027), - [anon_sym_internal] = ACTIONS(7027), - [anon_sym_protected] = ACTIONS(7027), - [anon_sym_tailrec] = ACTIONS(7027), - [anon_sym_operator] = ACTIONS(7027), - [anon_sym_infix] = ACTIONS(7027), - [anon_sym_inline] = ACTIONS(7027), - [anon_sym_external] = ACTIONS(7027), - [sym_property_modifier] = ACTIONS(7027), - [anon_sym_abstract] = ACTIONS(7027), - [anon_sym_final] = ACTIONS(7027), - [anon_sym_open] = ACTIONS(7027), - [anon_sym_vararg] = ACTIONS(7027), - [anon_sym_noinline] = ACTIONS(7027), - [anon_sym_crossinline] = ACTIONS(7027), - [anon_sym_expect] = ACTIONS(7027), - [anon_sym_actual] = ACTIONS(7027), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7025), - [anon_sym_continue_AT] = ACTIONS(7025), - [anon_sym_break_AT] = ACTIONS(7025), - [anon_sym_this_AT] = ACTIONS(7025), - [anon_sym_super_AT] = ACTIONS(7025), - [sym_real_literal] = ACTIONS(7025), - [sym_integer_literal] = ACTIONS(7027), - [sym_hex_literal] = ACTIONS(7025), - [sym_bin_literal] = ACTIONS(7025), - [anon_sym_true] = ACTIONS(7027), - [anon_sym_false] = ACTIONS(7027), - [anon_sym_SQUOTE] = ACTIONS(7025), - [sym__backtick_identifier] = ACTIONS(7025), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7025), - }, - [3608] = { - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_RBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4185), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), - [anon_sym_RPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4183), - [anon_sym_DASH_GT] = ACTIONS(4185), - [sym_label] = ACTIONS(4185), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_while] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_PLUS_EQ] = ACTIONS(4185), - [anon_sym_DASH_EQ] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4185), - [anon_sym_SLASH_EQ] = ACTIONS(4185), - [anon_sym_PERCENT_EQ] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4183), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), - [sym_multiline_comment] = ACTIONS(3), - }, - [3609] = { [sym__alpha_identifier] = ACTIONS(4926), [anon_sym_AT] = ACTIONS(4928), [anon_sym_LBRACK] = ACTIONS(4928), @@ -415416,7 +411667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4928), [anon_sym_AMP_AMP] = ACTIONS(4928), [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7029), + [anon_sym_else] = ACTIONS(4926), [anon_sym_COLON_COLON] = ACTIONS(4928), [anon_sym_PLUS_EQ] = ACTIONS(4928), [anon_sym_DASH_EQ] = ACTIONS(4928), @@ -415471,6911 +411722,8397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4928), [sym_multiline_comment] = ACTIONS(3), }, - [3610] = { - [sym__alpha_identifier] = ACTIONS(5215), - [anon_sym_AT] = ACTIONS(5217), - [anon_sym_LBRACK] = ACTIONS(5217), - [anon_sym_RBRACK] = ACTIONS(5217), - [anon_sym_as] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5217), - [anon_sym_RBRACE] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5217), - [anon_sym_COMMA] = ACTIONS(5217), - [anon_sym_RPAREN] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5215), - [anon_sym_GT] = ACTIONS(5215), - [anon_sym_where] = ACTIONS(5215), - [anon_sym_DOT] = ACTIONS(5215), - [anon_sym_SEMI] = ACTIONS(5217), - [anon_sym_get] = ACTIONS(5215), - [anon_sym_set] = ACTIONS(5215), - [anon_sym_STAR] = ACTIONS(5215), - [anon_sym_DASH_GT] = ACTIONS(5217), - [sym_label] = ACTIONS(5217), - [anon_sym_in] = ACTIONS(5215), - [anon_sym_while] = ACTIONS(5215), - [anon_sym_DOT_DOT] = ACTIONS(5217), - [anon_sym_QMARK_COLON] = ACTIONS(5217), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [anon_sym_else] = ACTIONS(5215), - [anon_sym_COLON_COLON] = ACTIONS(5217), - [anon_sym_PLUS_EQ] = ACTIONS(5217), - [anon_sym_DASH_EQ] = ACTIONS(5217), - [anon_sym_STAR_EQ] = ACTIONS(5217), - [anon_sym_SLASH_EQ] = ACTIONS(5217), - [anon_sym_PERCENT_EQ] = ACTIONS(5217), - [anon_sym_BANG_EQ] = ACTIONS(5215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5217), - [anon_sym_EQ_EQ] = ACTIONS(5215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5217), - [anon_sym_LT_EQ] = ACTIONS(5217), - [anon_sym_GT_EQ] = ACTIONS(5217), - [anon_sym_BANGin] = ACTIONS(5217), - [anon_sym_is] = ACTIONS(5215), - [anon_sym_BANGis] = ACTIONS(5217), - [anon_sym_PLUS] = ACTIONS(5215), - [anon_sym_DASH] = ACTIONS(5215), - [anon_sym_SLASH] = ACTIONS(5215), - [anon_sym_PERCENT] = ACTIONS(5215), - [anon_sym_as_QMARK] = ACTIONS(5217), - [anon_sym_PLUS_PLUS] = ACTIONS(5217), - [anon_sym_DASH_DASH] = ACTIONS(5217), - [anon_sym_BANG_BANG] = ACTIONS(5217), - [anon_sym_suspend] = ACTIONS(5215), - [anon_sym_sealed] = ACTIONS(5215), - [anon_sym_annotation] = ACTIONS(5215), - [anon_sym_data] = ACTIONS(5215), - [anon_sym_inner] = ACTIONS(5215), - [anon_sym_value] = ACTIONS(5215), - [anon_sym_override] = ACTIONS(5215), - [anon_sym_lateinit] = ACTIONS(5215), - [anon_sym_public] = ACTIONS(5215), - [anon_sym_private] = ACTIONS(5215), - [anon_sym_internal] = ACTIONS(5215), - [anon_sym_protected] = ACTIONS(5215), - [anon_sym_tailrec] = ACTIONS(5215), - [anon_sym_operator] = ACTIONS(5215), - [anon_sym_infix] = ACTIONS(5215), - [anon_sym_inline] = ACTIONS(5215), - [anon_sym_external] = ACTIONS(5215), - [sym_property_modifier] = ACTIONS(5215), - [anon_sym_abstract] = ACTIONS(5215), - [anon_sym_final] = ACTIONS(5215), - [anon_sym_open] = ACTIONS(5215), - [anon_sym_vararg] = ACTIONS(5215), - [anon_sym_noinline] = ACTIONS(5215), - [anon_sym_crossinline] = ACTIONS(5215), - [anon_sym_expect] = ACTIONS(5215), - [anon_sym_actual] = ACTIONS(5215), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5217), - [sym_safe_nav] = ACTIONS(5217), + [3592] = { + [sym__alpha_identifier] = ACTIONS(4910), + [anon_sym_AT] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_RBRACK] = ACTIONS(4912), + [anon_sym_as] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_RBRACE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_where] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_get] = ACTIONS(4910), + [anon_sym_set] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4910), + [anon_sym_DASH_GT] = ACTIONS(4912), + [sym_label] = ACTIONS(4912), + [anon_sym_in] = ACTIONS(4910), + [anon_sym_while] = ACTIONS(4910), + [anon_sym_DOT_DOT] = ACTIONS(4912), + [anon_sym_QMARK_COLON] = ACTIONS(4912), + [anon_sym_AMP_AMP] = ACTIONS(4912), + [anon_sym_PIPE_PIPE] = ACTIONS(4912), + [anon_sym_else] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_PLUS_EQ] = ACTIONS(4912), + [anon_sym_DASH_EQ] = ACTIONS(4912), + [anon_sym_STAR_EQ] = ACTIONS(4912), + [anon_sym_SLASH_EQ] = ACTIONS(4912), + [anon_sym_PERCENT_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ] = ACTIONS(4910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4912), + [anon_sym_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4912), + [anon_sym_LT_EQ] = ACTIONS(4912), + [anon_sym_GT_EQ] = ACTIONS(4912), + [anon_sym_BANGin] = ACTIONS(4912), + [anon_sym_is] = ACTIONS(4910), + [anon_sym_BANGis] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_PERCENT] = ACTIONS(4910), + [anon_sym_as_QMARK] = ACTIONS(4912), + [anon_sym_PLUS_PLUS] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4912), + [anon_sym_BANG_BANG] = ACTIONS(4912), + [anon_sym_suspend] = ACTIONS(4910), + [anon_sym_sealed] = ACTIONS(4910), + [anon_sym_annotation] = ACTIONS(4910), + [anon_sym_data] = ACTIONS(4910), + [anon_sym_inner] = ACTIONS(4910), + [anon_sym_value] = ACTIONS(4910), + [anon_sym_override] = ACTIONS(4910), + [anon_sym_lateinit] = ACTIONS(4910), + [anon_sym_public] = ACTIONS(4910), + [anon_sym_private] = ACTIONS(4910), + [anon_sym_internal] = ACTIONS(4910), + [anon_sym_protected] = ACTIONS(4910), + [anon_sym_tailrec] = ACTIONS(4910), + [anon_sym_operator] = ACTIONS(4910), + [anon_sym_infix] = ACTIONS(4910), + [anon_sym_inline] = ACTIONS(4910), + [anon_sym_external] = ACTIONS(4910), + [sym_property_modifier] = ACTIONS(4910), + [anon_sym_abstract] = ACTIONS(4910), + [anon_sym_final] = ACTIONS(4910), + [anon_sym_open] = ACTIONS(4910), + [anon_sym_vararg] = ACTIONS(4910), + [anon_sym_noinline] = ACTIONS(4910), + [anon_sym_crossinline] = ACTIONS(4910), + [anon_sym_expect] = ACTIONS(4910), + [anon_sym_actual] = ACTIONS(4910), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4912), + [sym_safe_nav] = ACTIONS(4912), [sym_multiline_comment] = ACTIONS(3), }, - [3611] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_RBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_COMMA] = ACTIONS(4928), - [anon_sym_RPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(7031), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4926), - [anon_sym_DASH_GT] = ACTIONS(4928), - [sym_label] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_while] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7029), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_PLUS_EQ] = ACTIONS(4928), - [anon_sym_DASH_EQ] = ACTIONS(4928), - [anon_sym_STAR_EQ] = ACTIONS(4928), - [anon_sym_SLASH_EQ] = ACTIONS(4928), - [anon_sym_PERCENT_EQ] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [3593] = { + [sym__alpha_identifier] = ACTIONS(4888), + [anon_sym_AT] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_RBRACK] = ACTIONS(4890), + [anon_sym_as] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4890), + [anon_sym_RBRACE] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4890), + [anon_sym_COMMA] = ACTIONS(4890), + [anon_sym_RPAREN] = ACTIONS(4890), + [anon_sym_LT] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_where] = ACTIONS(4888), + [anon_sym_DOT] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4890), + [anon_sym_get] = ACTIONS(4888), + [anon_sym_set] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [anon_sym_DASH_GT] = ACTIONS(4890), + [sym_label] = ACTIONS(4890), + [anon_sym_in] = ACTIONS(4888), + [anon_sym_while] = ACTIONS(4888), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_QMARK_COLON] = ACTIONS(4890), + [anon_sym_AMP_AMP] = ACTIONS(4890), + [anon_sym_PIPE_PIPE] = ACTIONS(4890), + [anon_sym_else] = ACTIONS(4888), + [anon_sym_COLON_COLON] = ACTIONS(4890), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4890), + [anon_sym_BANGin] = ACTIONS(4890), + [anon_sym_is] = ACTIONS(4888), + [anon_sym_BANGis] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_as_QMARK] = ACTIONS(4890), + [anon_sym_PLUS_PLUS] = ACTIONS(4890), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_BANG_BANG] = ACTIONS(4890), + [anon_sym_suspend] = ACTIONS(4888), + [anon_sym_sealed] = ACTIONS(4888), + [anon_sym_annotation] = ACTIONS(4888), + [anon_sym_data] = ACTIONS(4888), + [anon_sym_inner] = ACTIONS(4888), + [anon_sym_value] = ACTIONS(4888), + [anon_sym_override] = ACTIONS(4888), + [anon_sym_lateinit] = ACTIONS(4888), + [anon_sym_public] = ACTIONS(4888), + [anon_sym_private] = ACTIONS(4888), + [anon_sym_internal] = ACTIONS(4888), + [anon_sym_protected] = ACTIONS(4888), + [anon_sym_tailrec] = ACTIONS(4888), + [anon_sym_operator] = ACTIONS(4888), + [anon_sym_infix] = ACTIONS(4888), + [anon_sym_inline] = ACTIONS(4888), + [anon_sym_external] = ACTIONS(4888), + [sym_property_modifier] = ACTIONS(4888), + [anon_sym_abstract] = ACTIONS(4888), + [anon_sym_final] = ACTIONS(4888), + [anon_sym_open] = ACTIONS(4888), + [anon_sym_vararg] = ACTIONS(4888), + [anon_sym_noinline] = ACTIONS(4888), + [anon_sym_crossinline] = ACTIONS(4888), + [anon_sym_expect] = ACTIONS(4888), + [anon_sym_actual] = ACTIONS(4888), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(4890), + [sym_safe_nav] = ACTIONS(4890), [sym_multiline_comment] = ACTIONS(3), }, - [3612] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_RBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_RPAREN] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [anon_sym_DASH_GT] = ACTIONS(4379), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_while] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), + [3594] = { + [sym__alpha_identifier] = ACTIONS(4880), + [anon_sym_AT] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_RBRACK] = ACTIONS(4882), + [anon_sym_as] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_COMMA] = ACTIONS(4882), + [anon_sym_RPAREN] = ACTIONS(4882), + [anon_sym_LT] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4882), + [anon_sym_get] = ACTIONS(4880), + [anon_sym_set] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_DASH_GT] = ACTIONS(4882), + [sym_label] = ACTIONS(4882), + [anon_sym_in] = ACTIONS(4880), + [anon_sym_while] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_QMARK_COLON] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_PIPE_PIPE] = ACTIONS(4882), + [anon_sym_else] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_PLUS_EQ] = ACTIONS(4882), + [anon_sym_DASH_EQ] = ACTIONS(4882), + [anon_sym_STAR_EQ] = ACTIONS(4882), + [anon_sym_SLASH_EQ] = ACTIONS(4882), + [anon_sym_PERCENT_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4882), + [anon_sym_BANGin] = ACTIONS(4882), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_BANGis] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_as_QMARK] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4882), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_BANG_BANG] = ACTIONS(4882), + [anon_sym_suspend] = ACTIONS(4880), + [anon_sym_sealed] = ACTIONS(4880), + [anon_sym_annotation] = ACTIONS(4880), + [anon_sym_data] = ACTIONS(4880), + [anon_sym_inner] = ACTIONS(4880), + [anon_sym_value] = ACTIONS(4880), + [anon_sym_override] = ACTIONS(4880), + [anon_sym_lateinit] = ACTIONS(4880), + [anon_sym_public] = ACTIONS(4880), + [anon_sym_private] = ACTIONS(4880), + [anon_sym_internal] = ACTIONS(4880), + [anon_sym_protected] = ACTIONS(4880), + [anon_sym_tailrec] = ACTIONS(4880), + [anon_sym_operator] = ACTIONS(4880), + [anon_sym_infix] = ACTIONS(4880), + [anon_sym_inline] = ACTIONS(4880), + [anon_sym_external] = ACTIONS(4880), + [sym_property_modifier] = ACTIONS(4880), + [anon_sym_abstract] = ACTIONS(4880), + [anon_sym_final] = ACTIONS(4880), + [anon_sym_open] = ACTIONS(4880), + [anon_sym_vararg] = ACTIONS(4880), + [anon_sym_noinline] = ACTIONS(4880), + [anon_sym_crossinline] = ACTIONS(4880), + [anon_sym_expect] = ACTIONS(4880), + [anon_sym_actual] = ACTIONS(4880), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4882), + [sym_safe_nav] = ACTIONS(4882), [sym_multiline_comment] = ACTIONS(3), }, - [3613] = { - [sym__alpha_identifier] = ACTIONS(5087), - [anon_sym_AT] = ACTIONS(5089), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_RBRACK] = ACTIONS(5089), - [anon_sym_as] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5089), - [anon_sym_RBRACE] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5089), - [anon_sym_COMMA] = ACTIONS(5089), - [anon_sym_RPAREN] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5087), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_where] = ACTIONS(5087), - [anon_sym_DOT] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5089), - [anon_sym_get] = ACTIONS(5087), - [anon_sym_set] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [anon_sym_DASH_GT] = ACTIONS(5089), - [sym_label] = ACTIONS(5089), - [anon_sym_in] = ACTIONS(5087), - [anon_sym_while] = ACTIONS(5087), - [anon_sym_DOT_DOT] = ACTIONS(5089), - [anon_sym_QMARK_COLON] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5089), - [anon_sym_PIPE_PIPE] = ACTIONS(5089), - [anon_sym_else] = ACTIONS(5087), - [anon_sym_COLON_COLON] = ACTIONS(5089), - [anon_sym_PLUS_EQ] = ACTIONS(5089), - [anon_sym_DASH_EQ] = ACTIONS(5089), - [anon_sym_STAR_EQ] = ACTIONS(5089), - [anon_sym_SLASH_EQ] = ACTIONS(5089), - [anon_sym_PERCENT_EQ] = ACTIONS(5089), - [anon_sym_BANG_EQ] = ACTIONS(5087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5089), - [anon_sym_EQ_EQ] = ACTIONS(5087), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5089), - [anon_sym_LT_EQ] = ACTIONS(5089), - [anon_sym_GT_EQ] = ACTIONS(5089), - [anon_sym_BANGin] = ACTIONS(5089), - [anon_sym_is] = ACTIONS(5087), - [anon_sym_BANGis] = ACTIONS(5089), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5087), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_as_QMARK] = ACTIONS(5089), - [anon_sym_PLUS_PLUS] = ACTIONS(5089), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_BANG_BANG] = ACTIONS(5089), - [anon_sym_suspend] = ACTIONS(5087), - [anon_sym_sealed] = ACTIONS(5087), - [anon_sym_annotation] = ACTIONS(5087), - [anon_sym_data] = ACTIONS(5087), - [anon_sym_inner] = ACTIONS(5087), - [anon_sym_value] = ACTIONS(5087), - [anon_sym_override] = ACTIONS(5087), - [anon_sym_lateinit] = ACTIONS(5087), - [anon_sym_public] = ACTIONS(5087), - [anon_sym_private] = ACTIONS(5087), - [anon_sym_internal] = ACTIONS(5087), - [anon_sym_protected] = ACTIONS(5087), - [anon_sym_tailrec] = ACTIONS(5087), - [anon_sym_operator] = ACTIONS(5087), - [anon_sym_infix] = ACTIONS(5087), - [anon_sym_inline] = ACTIONS(5087), - [anon_sym_external] = ACTIONS(5087), - [sym_property_modifier] = ACTIONS(5087), - [anon_sym_abstract] = ACTIONS(5087), - [anon_sym_final] = ACTIONS(5087), - [anon_sym_open] = ACTIONS(5087), - [anon_sym_vararg] = ACTIONS(5087), - [anon_sym_noinline] = ACTIONS(5087), - [anon_sym_crossinline] = ACTIONS(5087), - [anon_sym_expect] = ACTIONS(5087), - [anon_sym_actual] = ACTIONS(5087), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5089), - [sym_safe_nav] = ACTIONS(5089), + [3595] = { + [sym_type_constraints] = STATE(3896), + [sym_function_body] = STATE(3866), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6950), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), [sym_multiline_comment] = ACTIONS(3), }, - [3614] = { - [sym__alpha_identifier] = ACTIONS(4894), - [anon_sym_AT] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(4896), - [anon_sym_RBRACK] = ACTIONS(4896), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_RPAREN] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_get] = ACTIONS(4894), - [anon_sym_set] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4894), - [anon_sym_DASH_GT] = ACTIONS(4896), - [sym_label] = ACTIONS(4896), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_while] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_QMARK_COLON] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_else] = ACTIONS(4894), - [anon_sym_COLON_COLON] = ACTIONS(4896), - [anon_sym_PLUS_EQ] = ACTIONS(4896), - [anon_sym_DASH_EQ] = ACTIONS(4896), - [anon_sym_STAR_EQ] = ACTIONS(4896), - [anon_sym_SLASH_EQ] = ACTIONS(4896), - [anon_sym_PERCENT_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_BANGin] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_BANGis] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_as_QMARK] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4896), - [anon_sym_DASH_DASH] = ACTIONS(4896), - [anon_sym_BANG_BANG] = ACTIONS(4896), - [anon_sym_suspend] = ACTIONS(4894), - [anon_sym_sealed] = ACTIONS(4894), - [anon_sym_annotation] = ACTIONS(4894), - [anon_sym_data] = ACTIONS(4894), - [anon_sym_inner] = ACTIONS(4894), - [anon_sym_value] = ACTIONS(4894), - [anon_sym_override] = ACTIONS(4894), - [anon_sym_lateinit] = ACTIONS(4894), - [anon_sym_public] = ACTIONS(4894), - [anon_sym_private] = ACTIONS(4894), - [anon_sym_internal] = ACTIONS(4894), - [anon_sym_protected] = ACTIONS(4894), - [anon_sym_tailrec] = ACTIONS(4894), - [anon_sym_operator] = ACTIONS(4894), - [anon_sym_infix] = ACTIONS(4894), - [anon_sym_inline] = ACTIONS(4894), - [anon_sym_external] = ACTIONS(4894), - [sym_property_modifier] = ACTIONS(4894), - [anon_sym_abstract] = ACTIONS(4894), - [anon_sym_final] = ACTIONS(4894), - [anon_sym_open] = ACTIONS(4894), - [anon_sym_vararg] = ACTIONS(4894), - [anon_sym_noinline] = ACTIONS(4894), - [anon_sym_crossinline] = ACTIONS(4894), - [anon_sym_expect] = ACTIONS(4894), - [anon_sym_actual] = ACTIONS(4894), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4896), - [sym_safe_nav] = ACTIONS(4896), + [3596] = { + [sym__alpha_identifier] = ACTIONS(4870), + [anon_sym_AT] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_RBRACK] = ACTIONS(4872), + [anon_sym_as] = ACTIONS(4870), + [anon_sym_EQ] = ACTIONS(4870), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_RBRACE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_RPAREN] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4870), + [anon_sym_where] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_get] = ACTIONS(4870), + [anon_sym_set] = ACTIONS(4870), + [anon_sym_STAR] = ACTIONS(4870), + [anon_sym_DASH_GT] = ACTIONS(4872), + [sym_label] = ACTIONS(4872), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_while] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4872), + [anon_sym_AMP_AMP] = ACTIONS(4872), + [anon_sym_PIPE_PIPE] = ACTIONS(4872), + [anon_sym_else] = ACTIONS(4870), + [anon_sym_COLON_COLON] = ACTIONS(4872), + [anon_sym_PLUS_EQ] = ACTIONS(4872), + [anon_sym_DASH_EQ] = ACTIONS(4872), + [anon_sym_STAR_EQ] = ACTIONS(4872), + [anon_sym_SLASH_EQ] = ACTIONS(4872), + [anon_sym_PERCENT_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ] = ACTIONS(4870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4872), + [anon_sym_EQ_EQ] = ACTIONS(4870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4872), + [anon_sym_LT_EQ] = ACTIONS(4872), + [anon_sym_GT_EQ] = ACTIONS(4872), + [anon_sym_BANGin] = ACTIONS(4872), + [anon_sym_is] = ACTIONS(4870), + [anon_sym_BANGis] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4870), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4870), + [anon_sym_PERCENT] = ACTIONS(4870), + [anon_sym_as_QMARK] = ACTIONS(4872), + [anon_sym_PLUS_PLUS] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4872), + [anon_sym_BANG_BANG] = ACTIONS(4872), + [anon_sym_suspend] = ACTIONS(4870), + [anon_sym_sealed] = ACTIONS(4870), + [anon_sym_annotation] = ACTIONS(4870), + [anon_sym_data] = ACTIONS(4870), + [anon_sym_inner] = ACTIONS(4870), + [anon_sym_value] = ACTIONS(4870), + [anon_sym_override] = ACTIONS(4870), + [anon_sym_lateinit] = ACTIONS(4870), + [anon_sym_public] = ACTIONS(4870), + [anon_sym_private] = ACTIONS(4870), + [anon_sym_internal] = ACTIONS(4870), + [anon_sym_protected] = ACTIONS(4870), + [anon_sym_tailrec] = ACTIONS(4870), + [anon_sym_operator] = ACTIONS(4870), + [anon_sym_infix] = ACTIONS(4870), + [anon_sym_inline] = ACTIONS(4870), + [anon_sym_external] = ACTIONS(4870), + [sym_property_modifier] = ACTIONS(4870), + [anon_sym_abstract] = ACTIONS(4870), + [anon_sym_final] = ACTIONS(4870), + [anon_sym_open] = ACTIONS(4870), + [anon_sym_vararg] = ACTIONS(4870), + [anon_sym_noinline] = ACTIONS(4870), + [anon_sym_crossinline] = ACTIONS(4870), + [anon_sym_expect] = ACTIONS(4870), + [anon_sym_actual] = ACTIONS(4870), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4872), + [sym_safe_nav] = ACTIONS(4872), [sym_multiline_comment] = ACTIONS(3), }, - [3615] = { - [sym__alpha_identifier] = ACTIONS(5095), - [anon_sym_AT] = ACTIONS(5097), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_RBRACK] = ACTIONS(5097), - [anon_sym_as] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5097), - [anon_sym_RBRACE] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5097), - [anon_sym_COMMA] = ACTIONS(5097), - [anon_sym_RPAREN] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5095), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_where] = ACTIONS(5095), - [anon_sym_DOT] = ACTIONS(5095), - [anon_sym_SEMI] = ACTIONS(5097), - [anon_sym_get] = ACTIONS(5095), - [anon_sym_set] = ACTIONS(5095), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_DASH_GT] = ACTIONS(5097), - [sym_label] = ACTIONS(5097), - [anon_sym_in] = ACTIONS(5095), - [anon_sym_while] = ACTIONS(5095), - [anon_sym_DOT_DOT] = ACTIONS(5097), - [anon_sym_QMARK_COLON] = ACTIONS(5097), - [anon_sym_AMP_AMP] = ACTIONS(5097), - [anon_sym_PIPE_PIPE] = ACTIONS(5097), - [anon_sym_else] = ACTIONS(5095), - [anon_sym_COLON_COLON] = ACTIONS(5097), - [anon_sym_PLUS_EQ] = ACTIONS(5097), - [anon_sym_DASH_EQ] = ACTIONS(5097), - [anon_sym_STAR_EQ] = ACTIONS(5097), - [anon_sym_SLASH_EQ] = ACTIONS(5097), - [anon_sym_PERCENT_EQ] = ACTIONS(5097), - [anon_sym_BANG_EQ] = ACTIONS(5095), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5097), - [anon_sym_EQ_EQ] = ACTIONS(5095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5097), - [anon_sym_LT_EQ] = ACTIONS(5097), - [anon_sym_GT_EQ] = ACTIONS(5097), - [anon_sym_BANGin] = ACTIONS(5097), - [anon_sym_is] = ACTIONS(5095), - [anon_sym_BANGis] = ACTIONS(5097), - [anon_sym_PLUS] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5095), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_as_QMARK] = ACTIONS(5097), - [anon_sym_PLUS_PLUS] = ACTIONS(5097), - [anon_sym_DASH_DASH] = ACTIONS(5097), - [anon_sym_BANG_BANG] = ACTIONS(5097), - [anon_sym_suspend] = ACTIONS(5095), - [anon_sym_sealed] = ACTIONS(5095), - [anon_sym_annotation] = ACTIONS(5095), - [anon_sym_data] = ACTIONS(5095), - [anon_sym_inner] = ACTIONS(5095), - [anon_sym_value] = ACTIONS(5095), - [anon_sym_override] = ACTIONS(5095), - [anon_sym_lateinit] = ACTIONS(5095), - [anon_sym_public] = ACTIONS(5095), - [anon_sym_private] = ACTIONS(5095), - [anon_sym_internal] = ACTIONS(5095), - [anon_sym_protected] = ACTIONS(5095), - [anon_sym_tailrec] = ACTIONS(5095), - [anon_sym_operator] = ACTIONS(5095), - [anon_sym_infix] = ACTIONS(5095), - [anon_sym_inline] = ACTIONS(5095), - [anon_sym_external] = ACTIONS(5095), - [sym_property_modifier] = ACTIONS(5095), - [anon_sym_abstract] = ACTIONS(5095), - [anon_sym_final] = ACTIONS(5095), - [anon_sym_open] = ACTIONS(5095), - [anon_sym_vararg] = ACTIONS(5095), - [anon_sym_noinline] = ACTIONS(5095), - [anon_sym_crossinline] = ACTIONS(5095), - [anon_sym_expect] = ACTIONS(5095), - [anon_sym_actual] = ACTIONS(5095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5097), - [sym_safe_nav] = ACTIONS(5097), + [3597] = { + [aux_sym_nullable_type_repeat1] = STATE(3556), + [sym__alpha_identifier] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_as] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_RBRACE] = ACTIONS(4249), + [anon_sym_LPAREN] = ACTIONS(4249), + [anon_sym_COMMA] = ACTIONS(4249), + [anon_sym_by] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4247), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_where] = ACTIONS(4247), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4249), + [anon_sym_get] = ACTIONS(4247), + [anon_sym_set] = ACTIONS(4247), + [sym__quest] = ACTIONS(6952), + [anon_sym_STAR] = ACTIONS(4247), + [sym_label] = ACTIONS(4249), + [anon_sym_in] = ACTIONS(4247), + [anon_sym_DOT_DOT] = ACTIONS(4249), + [anon_sym_QMARK_COLON] = ACTIONS(4249), + [anon_sym_AMP_AMP] = ACTIONS(4249), + [anon_sym_PIPE_PIPE] = ACTIONS(4249), + [anon_sym_else] = ACTIONS(4247), + [anon_sym_COLON_COLON] = ACTIONS(4249), + [anon_sym_PLUS_EQ] = ACTIONS(4249), + [anon_sym_DASH_EQ] = ACTIONS(4249), + [anon_sym_STAR_EQ] = ACTIONS(4249), + [anon_sym_SLASH_EQ] = ACTIONS(4249), + [anon_sym_PERCENT_EQ] = ACTIONS(4249), + [anon_sym_BANG_EQ] = ACTIONS(4247), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4249), + [anon_sym_EQ_EQ] = ACTIONS(4247), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4249), + [anon_sym_LT_EQ] = ACTIONS(4249), + [anon_sym_GT_EQ] = ACTIONS(4249), + [anon_sym_BANGin] = ACTIONS(4249), + [anon_sym_is] = ACTIONS(4247), + [anon_sym_BANGis] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_as_QMARK] = ACTIONS(4249), + [anon_sym_PLUS_PLUS] = ACTIONS(4249), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_BANG_BANG] = ACTIONS(4249), + [anon_sym_suspend] = ACTIONS(4247), + [anon_sym_sealed] = ACTIONS(4247), + [anon_sym_annotation] = ACTIONS(4247), + [anon_sym_data] = ACTIONS(4247), + [anon_sym_inner] = ACTIONS(4247), + [anon_sym_value] = ACTIONS(4247), + [anon_sym_override] = ACTIONS(4247), + [anon_sym_lateinit] = ACTIONS(4247), + [anon_sym_public] = ACTIONS(4247), + [anon_sym_private] = ACTIONS(4247), + [anon_sym_internal] = ACTIONS(4247), + [anon_sym_protected] = ACTIONS(4247), + [anon_sym_tailrec] = ACTIONS(4247), + [anon_sym_operator] = ACTIONS(4247), + [anon_sym_infix] = ACTIONS(4247), + [anon_sym_inline] = ACTIONS(4247), + [anon_sym_external] = ACTIONS(4247), + [sym_property_modifier] = ACTIONS(4247), + [anon_sym_abstract] = ACTIONS(4247), + [anon_sym_final] = ACTIONS(4247), + [anon_sym_open] = ACTIONS(4247), + [anon_sym_vararg] = ACTIONS(4247), + [anon_sym_noinline] = ACTIONS(4247), + [anon_sym_crossinline] = ACTIONS(4247), + [anon_sym_expect] = ACTIONS(4247), + [anon_sym_actual] = ACTIONS(4247), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4249), + [sym__automatic_semicolon] = ACTIONS(4249), + [sym_safe_nav] = ACTIONS(4249), [sym_multiline_comment] = ACTIONS(3), }, - [3616] = { - [sym_type_constraints] = STATE(4055), - [sym_function_body] = STATE(4106), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(7033), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), + [3598] = { + [sym__alpha_identifier] = ACTIONS(4838), + [anon_sym_AT] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_RBRACK] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4838), + [anon_sym_EQ] = ACTIONS(4838), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4838), + [anon_sym_where] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_get] = ACTIONS(4838), + [anon_sym_set] = ACTIONS(4838), + [anon_sym_STAR] = ACTIONS(4838), + [anon_sym_DASH_GT] = ACTIONS(4840), + [sym_label] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4838), + [anon_sym_while] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4840), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4840), + [anon_sym_PIPE_PIPE] = ACTIONS(4840), + [anon_sym_else] = ACTIONS(4838), + [anon_sym_COLON_COLON] = ACTIONS(4840), + [anon_sym_PLUS_EQ] = ACTIONS(4840), + [anon_sym_DASH_EQ] = ACTIONS(4840), + [anon_sym_STAR_EQ] = ACTIONS(4840), + [anon_sym_SLASH_EQ] = ACTIONS(4840), + [anon_sym_PERCENT_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ] = ACTIONS(4838), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4840), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_BANGin] = ACTIONS(4840), + [anon_sym_is] = ACTIONS(4838), + [anon_sym_BANGis] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4838), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4838), + [anon_sym_PERCENT] = ACTIONS(4838), + [anon_sym_as_QMARK] = ACTIONS(4840), + [anon_sym_PLUS_PLUS] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4840), + [anon_sym_BANG_BANG] = ACTIONS(4840), + [anon_sym_suspend] = ACTIONS(4838), + [anon_sym_sealed] = ACTIONS(4838), + [anon_sym_annotation] = ACTIONS(4838), + [anon_sym_data] = ACTIONS(4838), + [anon_sym_inner] = ACTIONS(4838), + [anon_sym_value] = ACTIONS(4838), + [anon_sym_override] = ACTIONS(4838), + [anon_sym_lateinit] = ACTIONS(4838), + [anon_sym_public] = ACTIONS(4838), + [anon_sym_private] = ACTIONS(4838), + [anon_sym_internal] = ACTIONS(4838), + [anon_sym_protected] = ACTIONS(4838), + [anon_sym_tailrec] = ACTIONS(4838), + [anon_sym_operator] = ACTIONS(4838), + [anon_sym_infix] = ACTIONS(4838), + [anon_sym_inline] = ACTIONS(4838), + [anon_sym_external] = ACTIONS(4838), + [sym_property_modifier] = ACTIONS(4838), + [anon_sym_abstract] = ACTIONS(4838), + [anon_sym_final] = ACTIONS(4838), + [anon_sym_open] = ACTIONS(4838), + [anon_sym_vararg] = ACTIONS(4838), + [anon_sym_noinline] = ACTIONS(4838), + [anon_sym_crossinline] = ACTIONS(4838), + [anon_sym_expect] = ACTIONS(4838), + [anon_sym_actual] = ACTIONS(4838), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4840), + [sym_safe_nav] = ACTIONS(4840), [sym_multiline_comment] = ACTIONS(3), }, - [3617] = { - [sym__alpha_identifier] = ACTIONS(5149), - [anon_sym_AT] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_RBRACK] = ACTIONS(5151), - [anon_sym_as] = ACTIONS(5149), - [anon_sym_EQ] = ACTIONS(5149), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_RBRACE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5149), - [anon_sym_where] = ACTIONS(5149), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_get] = ACTIONS(5149), - [anon_sym_set] = ACTIONS(5149), - [anon_sym_STAR] = ACTIONS(5149), - [anon_sym_DASH_GT] = ACTIONS(5151), - [sym_label] = ACTIONS(5151), - [anon_sym_in] = ACTIONS(5149), - [anon_sym_while] = ACTIONS(5149), - [anon_sym_DOT_DOT] = ACTIONS(5151), - [anon_sym_QMARK_COLON] = ACTIONS(5151), - [anon_sym_AMP_AMP] = ACTIONS(5151), - [anon_sym_PIPE_PIPE] = ACTIONS(5151), - [anon_sym_else] = ACTIONS(5149), - [anon_sym_COLON_COLON] = ACTIONS(5151), - [anon_sym_PLUS_EQ] = ACTIONS(5151), - [anon_sym_DASH_EQ] = ACTIONS(5151), - [anon_sym_STAR_EQ] = ACTIONS(5151), - [anon_sym_SLASH_EQ] = ACTIONS(5151), - [anon_sym_PERCENT_EQ] = ACTIONS(5151), - [anon_sym_BANG_EQ] = ACTIONS(5149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), - [anon_sym_EQ_EQ] = ACTIONS(5149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), - [anon_sym_LT_EQ] = ACTIONS(5151), - [anon_sym_GT_EQ] = ACTIONS(5151), - [anon_sym_BANGin] = ACTIONS(5151), - [anon_sym_is] = ACTIONS(5149), - [anon_sym_BANGis] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5149), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5149), - [anon_sym_PERCENT] = ACTIONS(5149), - [anon_sym_as_QMARK] = ACTIONS(5151), - [anon_sym_PLUS_PLUS] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5151), - [anon_sym_BANG_BANG] = ACTIONS(5151), - [anon_sym_suspend] = ACTIONS(5149), - [anon_sym_sealed] = ACTIONS(5149), - [anon_sym_annotation] = ACTIONS(5149), - [anon_sym_data] = ACTIONS(5149), - [anon_sym_inner] = ACTIONS(5149), - [anon_sym_value] = ACTIONS(5149), - [anon_sym_override] = ACTIONS(5149), - [anon_sym_lateinit] = ACTIONS(5149), - [anon_sym_public] = ACTIONS(5149), - [anon_sym_private] = ACTIONS(5149), - [anon_sym_internal] = ACTIONS(5149), - [anon_sym_protected] = ACTIONS(5149), - [anon_sym_tailrec] = ACTIONS(5149), - [anon_sym_operator] = ACTIONS(5149), - [anon_sym_infix] = ACTIONS(5149), - [anon_sym_inline] = ACTIONS(5149), - [anon_sym_external] = ACTIONS(5149), - [sym_property_modifier] = ACTIONS(5149), - [anon_sym_abstract] = ACTIONS(5149), - [anon_sym_final] = ACTIONS(5149), - [anon_sym_open] = ACTIONS(5149), - [anon_sym_vararg] = ACTIONS(5149), - [anon_sym_noinline] = ACTIONS(5149), - [anon_sym_crossinline] = ACTIONS(5149), - [anon_sym_expect] = ACTIONS(5149), - [anon_sym_actual] = ACTIONS(5149), + [3599] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_RBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [anon_sym_DASH_GT] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_while] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + }, + [3600] = { + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3344), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(3344), + [anon_sym_sealed] = ACTIONS(3344), + [anon_sym_annotation] = ACTIONS(3344), + [anon_sym_data] = ACTIONS(3344), + [anon_sym_inner] = ACTIONS(3344), + [anon_sym_value] = ACTIONS(3344), + [anon_sym_override] = ACTIONS(3344), + [anon_sym_lateinit] = ACTIONS(3344), + [anon_sym_public] = ACTIONS(3344), + [anon_sym_private] = ACTIONS(3344), + [anon_sym_internal] = ACTIONS(3344), + [anon_sym_protected] = ACTIONS(3344), + [anon_sym_tailrec] = ACTIONS(3344), + [anon_sym_operator] = ACTIONS(3344), + [anon_sym_infix] = ACTIONS(3344), + [anon_sym_inline] = ACTIONS(3344), + [anon_sym_external] = ACTIONS(3344), + [sym_property_modifier] = ACTIONS(3344), + [anon_sym_abstract] = ACTIONS(3344), + [anon_sym_final] = ACTIONS(3344), + [anon_sym_open] = ACTIONS(3344), + [anon_sym_vararg] = ACTIONS(3344), + [anon_sym_noinline] = ACTIONS(3344), + [anon_sym_crossinline] = ACTIONS(3344), + [anon_sym_expect] = ACTIONS(3344), + [anon_sym_actual] = ACTIONS(3344), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5151), - [sym_safe_nav] = ACTIONS(5151), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [3618] = { - [sym_type_constraints] = STATE(4056), - [sym_function_body] = STATE(4127), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(7035), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [3601] = { + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_RBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_DASH_GT] = ACTIONS(3994), + [sym_label] = ACTIONS(3994), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_while] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + }, + [3602] = { + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [3603] = { + [sym__alpha_identifier] = ACTIONS(3113), + [anon_sym_AT] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_RBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3113), + [anon_sym_GT] = ACTIONS(3113), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3113), + [anon_sym_set] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_DASH_GT] = ACTIONS(3115), + [sym_label] = ACTIONS(3115), + [anon_sym_in] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_QMARK_COLON] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3115), + [anon_sym_LT_EQ] = ACTIONS(3115), + [anon_sym_GT_EQ] = ACTIONS(3115), + [anon_sym_BANGin] = ACTIONS(3115), + [anon_sym_is] = ACTIONS(3113), + [anon_sym_BANGis] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_SLASH] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_as_QMARK] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_BANG_BANG] = ACTIONS(3115), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3113), + [anon_sym_inner] = ACTIONS(3113), + [anon_sym_value] = ACTIONS(3113), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3113), + [anon_sym_actual] = ACTIONS(3113), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3115), + [sym_multiline_comment] = ACTIONS(3), + }, + [3604] = { + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [3605] = { + [sym_class_body] = STATE(3884), + [sym_type_constraints] = STATE(3739), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + }, + [3606] = { + [sym__alpha_identifier] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_EQ] = ACTIONS(4724), + [anon_sym_LBRACE] = ACTIONS(4724), + [anon_sym_RBRACE] = ACTIONS(4724), + [anon_sym_LPAREN] = ACTIONS(4724), + [anon_sym_COMMA] = ACTIONS(4724), + [anon_sym_by] = ACTIONS(4722), + [anon_sym_object] = ACTIONS(4722), + [anon_sym_fun] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym_get] = ACTIONS(4722), + [anon_sym_set] = ACTIONS(4722), + [anon_sym_this] = ACTIONS(4722), + [anon_sym_super] = ACTIONS(4722), + [anon_sym_STAR] = ACTIONS(4724), + [sym_label] = ACTIONS(4722), + [anon_sym_in] = ACTIONS(4722), + [anon_sym_null] = ACTIONS(4722), + [anon_sym_if] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_when] = ACTIONS(4722), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_throw] = ACTIONS(4722), + [anon_sym_return] = ACTIONS(4722), + [anon_sym_continue] = ACTIONS(4722), + [anon_sym_break] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_BANGin] = ACTIONS(4724), + [anon_sym_is] = ACTIONS(4722), + [anon_sym_BANGis] = ACTIONS(4724), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_PLUS_PLUS] = ACTIONS(4724), + [anon_sym_DASH_DASH] = ACTIONS(4724), + [anon_sym_BANG] = ACTIONS(4722), + [anon_sym_suspend] = ACTIONS(4722), + [anon_sym_sealed] = ACTIONS(4722), + [anon_sym_annotation] = ACTIONS(4722), + [anon_sym_data] = ACTIONS(4722), + [anon_sym_inner] = ACTIONS(4722), + [anon_sym_value] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_lateinit] = ACTIONS(4722), + [anon_sym_public] = ACTIONS(4722), + [anon_sym_private] = ACTIONS(4722), + [anon_sym_internal] = ACTIONS(4722), + [anon_sym_protected] = ACTIONS(4722), + [anon_sym_tailrec] = ACTIONS(4722), + [anon_sym_operator] = ACTIONS(4722), + [anon_sym_infix] = ACTIONS(4722), + [anon_sym_inline] = ACTIONS(4722), + [anon_sym_external] = ACTIONS(4722), + [sym_property_modifier] = ACTIONS(4722), + [anon_sym_abstract] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_open] = ACTIONS(4722), + [anon_sym_vararg] = ACTIONS(4722), + [anon_sym_noinline] = ACTIONS(4722), + [anon_sym_crossinline] = ACTIONS(4722), + [anon_sym_expect] = ACTIONS(4722), + [anon_sym_actual] = ACTIONS(4722), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4724), + [anon_sym_continue_AT] = ACTIONS(4724), + [anon_sym_break_AT] = ACTIONS(4724), + [anon_sym_this_AT] = ACTIONS(4724), + [anon_sym_super_AT] = ACTIONS(4724), + [sym_real_literal] = ACTIONS(4724), + [sym_integer_literal] = ACTIONS(4722), + [sym_hex_literal] = ACTIONS(4724), + [sym_bin_literal] = ACTIONS(4724), + [anon_sym_true] = ACTIONS(4722), + [anon_sym_false] = ACTIONS(4722), + [anon_sym_SQUOTE] = ACTIONS(4724), + [sym__backtick_identifier] = ACTIONS(4724), + [sym__automatic_semicolon] = ACTIONS(4724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4724), + }, + [3607] = { + [sym_type_constraints] = STATE(3791), + [sym_enum_class_body] = STATE(3952), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + }, + [3608] = { + [sym_type_constraints] = STATE(3810), + [sym_enum_class_body] = STATE(3832), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + }, + [3609] = { + [sym_value_arguments] = STATE(3993), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(6954), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + }, + [3610] = { + [sym_class_body] = STATE(3833), + [sym_type_constraints] = STATE(3822), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4495), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), + }, + [3611] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_catch] = ACTIONS(4477), + [anon_sym_finally] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + }, + [3612] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(5022), + [anon_sym_QMARK_COLON] = ACTIONS(5022), + [anon_sym_AMP_AMP] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5022), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5022), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_as_QMARK] = ACTIONS(5022), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(5022), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(5022), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [3613] = { + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + }, + [3614] = { + [sym_type_constraints] = STATE(3782), + [sym_enum_class_body] = STATE(3967), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + }, + [3615] = { + [sym_function_body] = STATE(3972), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + }, + [3616] = { + [sym_function_body] = STATE(3873), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, + [3617] = { + [sym__alpha_identifier] = ACTIONS(4660), + [anon_sym_AT] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_EQ] = ACTIONS(4662), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_by] = ACTIONS(4660), + [anon_sym_object] = ACTIONS(4660), + [anon_sym_fun] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_get] = ACTIONS(4660), + [anon_sym_set] = ACTIONS(4660), + [anon_sym_this] = ACTIONS(4660), + [anon_sym_super] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4662), + [sym_label] = ACTIONS(4660), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_null] = ACTIONS(4660), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_when] = ACTIONS(4660), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_throw] = ACTIONS(4660), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_BANGin] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_BANGis] = ACTIONS(4662), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(4660), + [anon_sym_suspend] = ACTIONS(4660), + [anon_sym_sealed] = ACTIONS(4660), + [anon_sym_annotation] = ACTIONS(4660), + [anon_sym_data] = ACTIONS(4660), + [anon_sym_inner] = ACTIONS(4660), + [anon_sym_value] = ACTIONS(4660), + [anon_sym_override] = ACTIONS(4660), + [anon_sym_lateinit] = ACTIONS(4660), + [anon_sym_public] = ACTIONS(4660), + [anon_sym_private] = ACTIONS(4660), + [anon_sym_internal] = ACTIONS(4660), + [anon_sym_protected] = ACTIONS(4660), + [anon_sym_tailrec] = ACTIONS(4660), + [anon_sym_operator] = ACTIONS(4660), + [anon_sym_infix] = ACTIONS(4660), + [anon_sym_inline] = ACTIONS(4660), + [anon_sym_external] = ACTIONS(4660), + [sym_property_modifier] = ACTIONS(4660), + [anon_sym_abstract] = ACTIONS(4660), + [anon_sym_final] = ACTIONS(4660), + [anon_sym_open] = ACTIONS(4660), + [anon_sym_vararg] = ACTIONS(4660), + [anon_sym_noinline] = ACTIONS(4660), + [anon_sym_crossinline] = ACTIONS(4660), + [anon_sym_expect] = ACTIONS(4660), + [anon_sym_actual] = ACTIONS(4660), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4662), + [anon_sym_continue_AT] = ACTIONS(4662), + [anon_sym_break_AT] = ACTIONS(4662), + [anon_sym_this_AT] = ACTIONS(4662), + [anon_sym_super_AT] = ACTIONS(4662), + [sym_real_literal] = ACTIONS(4662), + [sym_integer_literal] = ACTIONS(4660), + [sym_hex_literal] = ACTIONS(4662), + [sym_bin_literal] = ACTIONS(4662), + [anon_sym_true] = ACTIONS(4660), + [anon_sym_false] = ACTIONS(4660), + [anon_sym_SQUOTE] = ACTIONS(4662), + [sym__backtick_identifier] = ACTIONS(4662), + [sym__automatic_semicolon] = ACTIONS(4662), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4662), + }, + [3618] = { + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_EQ] = ACTIONS(4432), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(4432), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_object] = ACTIONS(4430), + [anon_sym_fun] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_this] = ACTIONS(4430), + [anon_sym_super] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4432), + [sym_label] = ACTIONS(4430), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_null] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_when] = ACTIONS(4430), + [anon_sym_try] = ACTIONS(4430), + [anon_sym_throw] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4432), + [anon_sym_continue_AT] = ACTIONS(4432), + [anon_sym_break_AT] = ACTIONS(4432), + [anon_sym_this_AT] = ACTIONS(4432), + [anon_sym_super_AT] = ACTIONS(4432), + [sym_real_literal] = ACTIONS(4432), + [sym_integer_literal] = ACTIONS(4430), + [sym_hex_literal] = ACTIONS(4432), + [sym_bin_literal] = ACTIONS(4432), + [anon_sym_true] = ACTIONS(4430), + [anon_sym_false] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4432), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4432), + }, [3619] = { - [sym__alpha_identifier] = ACTIONS(4219), - [anon_sym_AT] = ACTIONS(4221), - [anon_sym_COLON] = ACTIONS(6636), - [anon_sym_LBRACK] = ACTIONS(4221), - [anon_sym_EQ] = ACTIONS(4221), - [anon_sym_fun] = ACTIONS(4219), - [anon_sym_LBRACE] = ACTIONS(4221), - [anon_sym_RBRACE] = ACTIONS(4221), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_by] = ACTIONS(4219), - [anon_sym_where] = ACTIONS(4219), - [anon_sym_object] = ACTIONS(4219), - [anon_sym_SEMI] = ACTIONS(4221), - [anon_sym_get] = ACTIONS(4219), - [anon_sym_set] = ACTIONS(4219), - [anon_sym_this] = ACTIONS(4219), - [anon_sym_super] = ACTIONS(4219), - [anon_sym_STAR] = ACTIONS(4221), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4219), - [anon_sym_if] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4219), - [anon_sym_when] = ACTIONS(4219), - [anon_sym_try] = ACTIONS(4219), - [anon_sym_throw] = ACTIONS(4219), - [anon_sym_return] = ACTIONS(4219), - [anon_sym_continue] = ACTIONS(4219), - [anon_sym_break] = ACTIONS(4219), - [anon_sym_COLON_COLON] = ACTIONS(4221), - [anon_sym_BANGin] = ACTIONS(4221), - [anon_sym_is] = ACTIONS(4219), - [anon_sym_BANGis] = ACTIONS(4221), - [anon_sym_PLUS] = ACTIONS(4219), - [anon_sym_DASH] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4221), - [anon_sym_DASH_DASH] = ACTIONS(4221), - [anon_sym_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4219), - [anon_sym_sealed] = ACTIONS(4219), - [anon_sym_annotation] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4219), - [anon_sym_inner] = ACTIONS(4219), - [anon_sym_value] = ACTIONS(4219), - [anon_sym_override] = ACTIONS(4219), - [anon_sym_lateinit] = ACTIONS(4219), - [anon_sym_public] = ACTIONS(4219), - [anon_sym_private] = ACTIONS(4219), - [anon_sym_internal] = ACTIONS(4219), - [anon_sym_protected] = ACTIONS(4219), - [anon_sym_tailrec] = ACTIONS(4219), - [anon_sym_operator] = ACTIONS(4219), - [anon_sym_infix] = ACTIONS(4219), - [anon_sym_inline] = ACTIONS(4219), - [anon_sym_external] = ACTIONS(4219), - [sym_property_modifier] = ACTIONS(4219), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_final] = ACTIONS(4219), - [anon_sym_open] = ACTIONS(4219), - [anon_sym_vararg] = ACTIONS(4219), - [anon_sym_noinline] = ACTIONS(4219), - [anon_sym_crossinline] = ACTIONS(4219), - [anon_sym_expect] = ACTIONS(4219), - [anon_sym_actual] = ACTIONS(4219), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4221), - [anon_sym_continue_AT] = ACTIONS(4221), - [anon_sym_break_AT] = ACTIONS(4221), - [anon_sym_this_AT] = ACTIONS(4221), - [anon_sym_super_AT] = ACTIONS(4221), - [sym_real_literal] = ACTIONS(4221), - [sym_integer_literal] = ACTIONS(4219), - [sym_hex_literal] = ACTIONS(4221), - [sym_bin_literal] = ACTIONS(4221), - [anon_sym_true] = ACTIONS(4219), - [anon_sym_false] = ACTIONS(4219), - [anon_sym_SQUOTE] = ACTIONS(4221), - [sym__backtick_identifier] = ACTIONS(4221), - [sym__automatic_semicolon] = ACTIONS(4221), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4221), + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_typealias] = ACTIONS(4179), + [anon_sym_class] = ACTIONS(4179), + [anon_sym_interface] = ACTIONS(4179), + [anon_sym_enum] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_val] = ACTIONS(4179), + [anon_sym_var] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4181), + [anon_sym_object] = ACTIONS(4179), + [anon_sym_fun] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_this] = ACTIONS(4179), + [anon_sym_super] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4181), + [sym_label] = ACTIONS(4179), + [anon_sym_for] = ACTIONS(4179), + [anon_sym_while] = ACTIONS(4179), + [anon_sym_do] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_throw] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4181), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4181), + [anon_sym_continue_AT] = ACTIONS(4181), + [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [anon_sym_SQUOTE] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4181), }, [3620] = { - [sym__alpha_identifier] = ACTIONS(4976), - [anon_sym_AT] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [anon_sym_RBRACK] = ACTIONS(4978), - [anon_sym_as] = ACTIONS(4976), - [anon_sym_EQ] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(4978), - [anon_sym_LPAREN] = ACTIONS(4978), - [anon_sym_COMMA] = ACTIONS(4978), - [anon_sym_RPAREN] = ACTIONS(4978), - [anon_sym_LT] = ACTIONS(4976), - [anon_sym_GT] = ACTIONS(4976), - [anon_sym_where] = ACTIONS(4976), - [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_SEMI] = ACTIONS(4978), - [anon_sym_get] = ACTIONS(4976), - [anon_sym_set] = ACTIONS(4976), - [anon_sym_STAR] = ACTIONS(4976), - [anon_sym_DASH_GT] = ACTIONS(4978), - [sym_label] = ACTIONS(4978), - [anon_sym_in] = ACTIONS(4976), - [anon_sym_while] = ACTIONS(4976), - [anon_sym_DOT_DOT] = ACTIONS(4978), - [anon_sym_QMARK_COLON] = ACTIONS(4978), - [anon_sym_AMP_AMP] = ACTIONS(4978), - [anon_sym_PIPE_PIPE] = ACTIONS(4978), - [anon_sym_else] = ACTIONS(4976), - [anon_sym_COLON_COLON] = ACTIONS(4978), - [anon_sym_PLUS_EQ] = ACTIONS(4978), - [anon_sym_DASH_EQ] = ACTIONS(4978), - [anon_sym_STAR_EQ] = ACTIONS(4978), - [anon_sym_SLASH_EQ] = ACTIONS(4978), - [anon_sym_PERCENT_EQ] = ACTIONS(4978), - [anon_sym_BANG_EQ] = ACTIONS(4976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4978), - [anon_sym_EQ_EQ] = ACTIONS(4976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4978), - [anon_sym_LT_EQ] = ACTIONS(4978), - [anon_sym_GT_EQ] = ACTIONS(4978), - [anon_sym_BANGin] = ACTIONS(4978), - [anon_sym_is] = ACTIONS(4976), - [anon_sym_BANGis] = ACTIONS(4978), - [anon_sym_PLUS] = ACTIONS(4976), - [anon_sym_DASH] = ACTIONS(4976), - [anon_sym_SLASH] = ACTIONS(4976), - [anon_sym_PERCENT] = ACTIONS(4976), - [anon_sym_as_QMARK] = ACTIONS(4978), - [anon_sym_PLUS_PLUS] = ACTIONS(4978), - [anon_sym_DASH_DASH] = ACTIONS(4978), - [anon_sym_BANG_BANG] = ACTIONS(4978), - [anon_sym_suspend] = ACTIONS(4976), - [anon_sym_sealed] = ACTIONS(4976), - [anon_sym_annotation] = ACTIONS(4976), - [anon_sym_data] = ACTIONS(4976), - [anon_sym_inner] = ACTIONS(4976), - [anon_sym_value] = ACTIONS(4976), - [anon_sym_override] = ACTIONS(4976), - [anon_sym_lateinit] = ACTIONS(4976), - [anon_sym_public] = ACTIONS(4976), - [anon_sym_private] = ACTIONS(4976), - [anon_sym_internal] = ACTIONS(4976), - [anon_sym_protected] = ACTIONS(4976), - [anon_sym_tailrec] = ACTIONS(4976), - [anon_sym_operator] = ACTIONS(4976), - [anon_sym_infix] = ACTIONS(4976), - [anon_sym_inline] = ACTIONS(4976), - [anon_sym_external] = ACTIONS(4976), - [sym_property_modifier] = ACTIONS(4976), - [anon_sym_abstract] = ACTIONS(4976), - [anon_sym_final] = ACTIONS(4976), - [anon_sym_open] = ACTIONS(4976), - [anon_sym_vararg] = ACTIONS(4976), - [anon_sym_noinline] = ACTIONS(4976), - [anon_sym_crossinline] = ACTIONS(4976), - [anon_sym_expect] = ACTIONS(4976), - [anon_sym_actual] = ACTIONS(4976), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4978), - [sym_safe_nav] = ACTIONS(4978), + [sym_function_body] = STATE(3995), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), }, [3621] = { - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(1808), - [anon_sym_set] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(1808), - [anon_sym_sealed] = ACTIONS(1808), - [anon_sym_annotation] = ACTIONS(1808), - [anon_sym_data] = ACTIONS(1808), - [anon_sym_inner] = ACTIONS(1808), - [anon_sym_value] = ACTIONS(1808), - [anon_sym_override] = ACTIONS(1808), - [anon_sym_lateinit] = ACTIONS(1808), - [anon_sym_public] = ACTIONS(1808), - [anon_sym_private] = ACTIONS(1808), - [anon_sym_internal] = ACTIONS(1808), - [anon_sym_protected] = ACTIONS(1808), - [anon_sym_tailrec] = ACTIONS(1808), - [anon_sym_operator] = ACTIONS(1808), - [anon_sym_infix] = ACTIONS(1808), - [anon_sym_inline] = ACTIONS(1808), - [anon_sym_external] = ACTIONS(1808), - [sym_property_modifier] = ACTIONS(1808), - [anon_sym_abstract] = ACTIONS(1808), - [anon_sym_final] = ACTIONS(1808), - [anon_sym_open] = ACTIONS(1808), - [anon_sym_vararg] = ACTIONS(1808), - [anon_sym_noinline] = ACTIONS(1808), - [anon_sym_crossinline] = ACTIONS(1808), - [anon_sym_expect] = ACTIONS(1808), - [anon_sym_actual] = ACTIONS(1808), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3110), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), }, [3622] = { - [ts_builtin_sym_end] = ACTIONS(7037), - [sym__alpha_identifier] = ACTIONS(7039), - [anon_sym_AT] = ACTIONS(7037), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_package] = ACTIONS(7039), - [anon_sym_import] = ACTIONS(7039), - [anon_sym_typealias] = ACTIONS(7039), - [anon_sym_class] = ACTIONS(7039), - [anon_sym_fun] = ACTIONS(7039), - [anon_sym_interface] = ACTIONS(7039), - [anon_sym_enum] = ACTIONS(7039), - [anon_sym_LBRACE] = ACTIONS(7037), - [anon_sym_LPAREN] = ACTIONS(7037), - [anon_sym_val] = ACTIONS(7039), - [anon_sym_var] = ACTIONS(7039), - [anon_sym_object] = ACTIONS(7039), - [anon_sym_get] = ACTIONS(7039), - [anon_sym_set] = ACTIONS(7039), - [anon_sym_this] = ACTIONS(7039), - [anon_sym_super] = ACTIONS(7039), - [anon_sym_STAR] = ACTIONS(7037), - [sym_label] = ACTIONS(7039), - [anon_sym_for] = ACTIONS(7039), - [anon_sym_while] = ACTIONS(7039), - [anon_sym_do] = ACTIONS(7039), - [anon_sym_null] = ACTIONS(7039), - [anon_sym_if] = ACTIONS(7039), - [anon_sym_when] = ACTIONS(7039), - [anon_sym_try] = ACTIONS(7039), - [anon_sym_throw] = ACTIONS(7039), - [anon_sym_return] = ACTIONS(7039), - [anon_sym_continue] = ACTIONS(7039), - [anon_sym_break] = ACTIONS(7039), - [anon_sym_COLON_COLON] = ACTIONS(7037), - [anon_sym_PLUS] = ACTIONS(7039), - [anon_sym_DASH] = ACTIONS(7039), - [anon_sym_PLUS_PLUS] = ACTIONS(7037), - [anon_sym_DASH_DASH] = ACTIONS(7037), - [anon_sym_BANG] = ACTIONS(7037), - [anon_sym_suspend] = ACTIONS(7039), - [anon_sym_sealed] = ACTIONS(7039), - [anon_sym_annotation] = ACTIONS(7039), - [anon_sym_data] = ACTIONS(7039), - [anon_sym_inner] = ACTIONS(7039), - [anon_sym_value] = ACTIONS(7039), - [anon_sym_override] = ACTIONS(7039), - [anon_sym_lateinit] = ACTIONS(7039), - [anon_sym_public] = ACTIONS(7039), - [anon_sym_private] = ACTIONS(7039), - [anon_sym_internal] = ACTIONS(7039), - [anon_sym_protected] = ACTIONS(7039), - [anon_sym_tailrec] = ACTIONS(7039), - [anon_sym_operator] = ACTIONS(7039), - [anon_sym_infix] = ACTIONS(7039), - [anon_sym_inline] = ACTIONS(7039), - [anon_sym_external] = ACTIONS(7039), - [sym_property_modifier] = ACTIONS(7039), - [anon_sym_abstract] = ACTIONS(7039), - [anon_sym_final] = ACTIONS(7039), - [anon_sym_open] = ACTIONS(7039), - [anon_sym_vararg] = ACTIONS(7039), - [anon_sym_noinline] = ACTIONS(7039), - [anon_sym_crossinline] = ACTIONS(7039), - [anon_sym_expect] = ACTIONS(7039), - [anon_sym_actual] = ACTIONS(7039), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7037), - [anon_sym_continue_AT] = ACTIONS(7037), - [anon_sym_break_AT] = ACTIONS(7037), - [anon_sym_this_AT] = ACTIONS(7037), - [anon_sym_super_AT] = ACTIONS(7037), - [sym_real_literal] = ACTIONS(7037), - [sym_integer_literal] = ACTIONS(7039), - [sym_hex_literal] = ACTIONS(7037), - [sym_bin_literal] = ACTIONS(7037), - [anon_sym_true] = ACTIONS(7039), - [anon_sym_false] = ACTIONS(7039), - [anon_sym_SQUOTE] = ACTIONS(7037), - [sym__backtick_identifier] = ACTIONS(7037), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7037), + [sym_class_body] = STATE(3967), + [sym_type_constraints] = STATE(3775), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), }, [3623] = { - [sym__alpha_identifier] = ACTIONS(4748), - [anon_sym_AT] = ACTIONS(4750), - [anon_sym_LBRACK] = ACTIONS(4750), - [anon_sym_EQ] = ACTIONS(4750), - [anon_sym_fun] = ACTIONS(4748), - [anon_sym_LBRACE] = ACTIONS(4750), - [anon_sym_RBRACE] = ACTIONS(4750), - [anon_sym_LPAREN] = ACTIONS(4750), - [anon_sym_COMMA] = ACTIONS(4750), - [anon_sym_by] = ACTIONS(4748), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_object] = ACTIONS(4748), - [anon_sym_SEMI] = ACTIONS(4750), - [anon_sym_get] = ACTIONS(4748), - [anon_sym_set] = ACTIONS(4748), - [anon_sym_this] = ACTIONS(4748), - [anon_sym_super] = ACTIONS(4748), - [anon_sym_STAR] = ACTIONS(4750), - [sym_label] = ACTIONS(4748), - [anon_sym_in] = ACTIONS(4748), - [anon_sym_null] = ACTIONS(4748), - [anon_sym_if] = ACTIONS(4748), - [anon_sym_else] = ACTIONS(4748), - [anon_sym_when] = ACTIONS(4748), - [anon_sym_try] = ACTIONS(4748), - [anon_sym_throw] = ACTIONS(4748), - [anon_sym_return] = ACTIONS(4748), - [anon_sym_continue] = ACTIONS(4748), - [anon_sym_break] = ACTIONS(4748), - [anon_sym_COLON_COLON] = ACTIONS(4750), - [anon_sym_BANGin] = ACTIONS(4750), - [anon_sym_is] = ACTIONS(4748), - [anon_sym_BANGis] = ACTIONS(4750), - [anon_sym_PLUS] = ACTIONS(4748), - [anon_sym_DASH] = ACTIONS(4748), - [anon_sym_PLUS_PLUS] = ACTIONS(4750), - [anon_sym_DASH_DASH] = ACTIONS(4750), - [anon_sym_BANG] = ACTIONS(4748), - [anon_sym_suspend] = ACTIONS(4748), - [anon_sym_sealed] = ACTIONS(4748), - [anon_sym_annotation] = ACTIONS(4748), - [anon_sym_data] = ACTIONS(4748), - [anon_sym_inner] = ACTIONS(4748), - [anon_sym_value] = ACTIONS(4748), - [anon_sym_override] = ACTIONS(4748), - [anon_sym_lateinit] = ACTIONS(4748), - [anon_sym_public] = ACTIONS(4748), - [anon_sym_private] = ACTIONS(4748), - [anon_sym_internal] = ACTIONS(4748), - [anon_sym_protected] = ACTIONS(4748), - [anon_sym_tailrec] = ACTIONS(4748), - [anon_sym_operator] = ACTIONS(4748), - [anon_sym_infix] = ACTIONS(4748), - [anon_sym_inline] = ACTIONS(4748), - [anon_sym_external] = ACTIONS(4748), - [sym_property_modifier] = ACTIONS(4748), - [anon_sym_abstract] = ACTIONS(4748), - [anon_sym_final] = ACTIONS(4748), - [anon_sym_open] = ACTIONS(4748), - [anon_sym_vararg] = ACTIONS(4748), - [anon_sym_noinline] = ACTIONS(4748), - [anon_sym_crossinline] = ACTIONS(4748), - [anon_sym_expect] = ACTIONS(4748), - [anon_sym_actual] = ACTIONS(4748), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4750), - [anon_sym_continue_AT] = ACTIONS(4750), - [anon_sym_break_AT] = ACTIONS(4750), - [anon_sym_this_AT] = ACTIONS(4750), - [anon_sym_super_AT] = ACTIONS(4750), - [sym_real_literal] = ACTIONS(4750), - [sym_integer_literal] = ACTIONS(4748), - [sym_hex_literal] = ACTIONS(4750), - [sym_bin_literal] = ACTIONS(4750), - [anon_sym_true] = ACTIONS(4748), - [anon_sym_false] = ACTIONS(4748), - [anon_sym_SQUOTE] = ACTIONS(4750), - [sym__backtick_identifier] = ACTIONS(4750), - [sym__automatic_semicolon] = ACTIONS(4750), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4750), + [aux_sym_type_constraints_repeat1] = STATE(3638), + [sym__alpha_identifier] = ACTIONS(4339), + [anon_sym_AT] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [anon_sym_as] = ACTIONS(4339), + [anon_sym_EQ] = ACTIONS(4339), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym_COMMA] = ACTIONS(6956), + [anon_sym_by] = ACTIONS(4339), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym_get] = ACTIONS(4339), + [anon_sym_set] = ACTIONS(4339), + [anon_sym_STAR] = ACTIONS(4339), + [sym_label] = ACTIONS(4341), + [anon_sym_in] = ACTIONS(4339), + [anon_sym_DOT_DOT] = ACTIONS(4341), + [anon_sym_QMARK_COLON] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_PIPE_PIPE] = ACTIONS(4341), + [anon_sym_else] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_PLUS_EQ] = ACTIONS(4341), + [anon_sym_DASH_EQ] = ACTIONS(4341), + [anon_sym_STAR_EQ] = ACTIONS(4341), + [anon_sym_SLASH_EQ] = ACTIONS(4341), + [anon_sym_PERCENT_EQ] = ACTIONS(4341), + [anon_sym_BANG_EQ] = ACTIONS(4339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), + [anon_sym_EQ_EQ] = ACTIONS(4339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), + [anon_sym_LT_EQ] = ACTIONS(4341), + [anon_sym_GT_EQ] = ACTIONS(4341), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(4339), + [anon_sym_BANGis] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4339), + [anon_sym_PERCENT] = ACTIONS(4339), + [anon_sym_as_QMARK] = ACTIONS(4341), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_BANG_BANG] = ACTIONS(4341), + [anon_sym_suspend] = ACTIONS(4339), + [anon_sym_sealed] = ACTIONS(4339), + [anon_sym_annotation] = ACTIONS(4339), + [anon_sym_data] = ACTIONS(4339), + [anon_sym_inner] = ACTIONS(4339), + [anon_sym_value] = ACTIONS(4339), + [anon_sym_override] = ACTIONS(4339), + [anon_sym_lateinit] = ACTIONS(4339), + [anon_sym_public] = ACTIONS(4339), + [anon_sym_private] = ACTIONS(4339), + [anon_sym_internal] = ACTIONS(4339), + [anon_sym_protected] = ACTIONS(4339), + [anon_sym_tailrec] = ACTIONS(4339), + [anon_sym_operator] = ACTIONS(4339), + [anon_sym_infix] = ACTIONS(4339), + [anon_sym_inline] = ACTIONS(4339), + [anon_sym_external] = ACTIONS(4339), + [sym_property_modifier] = ACTIONS(4339), + [anon_sym_abstract] = ACTIONS(4339), + [anon_sym_final] = ACTIONS(4339), + [anon_sym_open] = ACTIONS(4339), + [anon_sym_vararg] = ACTIONS(4339), + [anon_sym_noinline] = ACTIONS(4339), + [anon_sym_crossinline] = ACTIONS(4339), + [anon_sym_expect] = ACTIONS(4339), + [anon_sym_actual] = ACTIONS(4339), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4341), + [sym__automatic_semicolon] = ACTIONS(4341), + [sym_safe_nav] = ACTIONS(4341), + [sym_multiline_comment] = ACTIONS(3), }, [3624] = { - [sym__alpha_identifier] = ACTIONS(4766), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_EQ] = ACTIONS(4769), - [anon_sym_fun] = ACTIONS(4766), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(4769), - [anon_sym_COMMA] = ACTIONS(4769), - [anon_sym_by] = ACTIONS(4766), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_object] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4766), - [anon_sym_set] = ACTIONS(4766), - [anon_sym_this] = ACTIONS(4766), - [anon_sym_super] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4769), - [sym_label] = ACTIONS(4766), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_null] = ACTIONS(4766), - [anon_sym_if] = ACTIONS(4766), - [anon_sym_else] = ACTIONS(4766), - [anon_sym_when] = ACTIONS(4766), - [anon_sym_try] = ACTIONS(4766), - [anon_sym_throw] = ACTIONS(4766), - [anon_sym_return] = ACTIONS(4766), - [anon_sym_continue] = ACTIONS(4766), - [anon_sym_break] = ACTIONS(4766), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4766), - [anon_sym_suspend] = ACTIONS(4766), - [anon_sym_sealed] = ACTIONS(4766), - [anon_sym_annotation] = ACTIONS(4766), - [anon_sym_data] = ACTIONS(4766), - [anon_sym_inner] = ACTIONS(4766), - [anon_sym_value] = ACTIONS(4766), - [anon_sym_override] = ACTIONS(4766), - [anon_sym_lateinit] = ACTIONS(4766), - [anon_sym_public] = ACTIONS(4766), - [anon_sym_private] = ACTIONS(4766), - [anon_sym_internal] = ACTIONS(4766), - [anon_sym_protected] = ACTIONS(4766), - [anon_sym_tailrec] = ACTIONS(4766), - [anon_sym_operator] = ACTIONS(4766), - [anon_sym_infix] = ACTIONS(4766), - [anon_sym_inline] = ACTIONS(4766), - [anon_sym_external] = ACTIONS(4766), - [sym_property_modifier] = ACTIONS(4766), - [anon_sym_abstract] = ACTIONS(4766), - [anon_sym_final] = ACTIONS(4766), - [anon_sym_open] = ACTIONS(4766), - [anon_sym_vararg] = ACTIONS(4766), - [anon_sym_noinline] = ACTIONS(4766), - [anon_sym_crossinline] = ACTIONS(4766), - [anon_sym_expect] = ACTIONS(4766), - [anon_sym_actual] = ACTIONS(4766), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4769), - [anon_sym_continue_AT] = ACTIONS(4769), - [anon_sym_break_AT] = ACTIONS(4769), - [anon_sym_this_AT] = ACTIONS(4769), - [anon_sym_super_AT] = ACTIONS(4769), - [sym_real_literal] = ACTIONS(4769), - [sym_integer_literal] = ACTIONS(4766), - [sym_hex_literal] = ACTIONS(4769), - [sym_bin_literal] = ACTIONS(4769), - [anon_sym_true] = ACTIONS(4766), - [anon_sym_false] = ACTIONS(4766), - [anon_sym_SQUOTE] = ACTIONS(4769), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4769), + [sym_type_constraints] = STATE(3772), + [sym_enum_class_body] = STATE(4002), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4469), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), + [sym_multiline_comment] = ACTIONS(3), }, [3625] = { - [sym__alpha_identifier] = ACTIONS(5075), - [anon_sym_AT] = ACTIONS(5077), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_RBRACK] = ACTIONS(5077), - [anon_sym_as] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5077), - [anon_sym_RBRACE] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5077), - [anon_sym_COMMA] = ACTIONS(5077), - [anon_sym_RPAREN] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_where] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_get] = ACTIONS(5075), - [anon_sym_set] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_DASH_GT] = ACTIONS(5077), - [sym_label] = ACTIONS(5077), - [anon_sym_in] = ACTIONS(5075), - [anon_sym_while] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5077), - [anon_sym_QMARK_COLON] = ACTIONS(5077), - [anon_sym_AMP_AMP] = ACTIONS(5077), - [anon_sym_PIPE_PIPE] = ACTIONS(5077), - [anon_sym_else] = ACTIONS(5075), - [anon_sym_COLON_COLON] = ACTIONS(5077), - [anon_sym_PLUS_EQ] = ACTIONS(5077), - [anon_sym_DASH_EQ] = ACTIONS(5077), - [anon_sym_STAR_EQ] = ACTIONS(5077), - [anon_sym_SLASH_EQ] = ACTIONS(5077), - [anon_sym_PERCENT_EQ] = ACTIONS(5077), - [anon_sym_BANG_EQ] = ACTIONS(5075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5077), - [anon_sym_EQ_EQ] = ACTIONS(5075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5077), - [anon_sym_LT_EQ] = ACTIONS(5077), - [anon_sym_GT_EQ] = ACTIONS(5077), - [anon_sym_BANGin] = ACTIONS(5077), - [anon_sym_is] = ACTIONS(5075), - [anon_sym_BANGis] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_as_QMARK] = ACTIONS(5077), - [anon_sym_PLUS_PLUS] = ACTIONS(5077), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_BANG_BANG] = ACTIONS(5077), - [anon_sym_suspend] = ACTIONS(5075), - [anon_sym_sealed] = ACTIONS(5075), - [anon_sym_annotation] = ACTIONS(5075), - [anon_sym_data] = ACTIONS(5075), - [anon_sym_inner] = ACTIONS(5075), - [anon_sym_value] = ACTIONS(5075), - [anon_sym_override] = ACTIONS(5075), - [anon_sym_lateinit] = ACTIONS(5075), - [anon_sym_public] = ACTIONS(5075), - [anon_sym_private] = ACTIONS(5075), - [anon_sym_internal] = ACTIONS(5075), - [anon_sym_protected] = ACTIONS(5075), - [anon_sym_tailrec] = ACTIONS(5075), - [anon_sym_operator] = ACTIONS(5075), - [anon_sym_infix] = ACTIONS(5075), - [anon_sym_inline] = ACTIONS(5075), - [anon_sym_external] = ACTIONS(5075), - [sym_property_modifier] = ACTIONS(5075), - [anon_sym_abstract] = ACTIONS(5075), - [anon_sym_final] = ACTIONS(5075), - [anon_sym_open] = ACTIONS(5075), - [anon_sym_vararg] = ACTIONS(5075), - [anon_sym_noinline] = ACTIONS(5075), - [anon_sym_crossinline] = ACTIONS(5075), - [anon_sym_expect] = ACTIONS(5075), - [anon_sym_actual] = ACTIONS(5075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5077), - [sym_safe_nav] = ACTIONS(5077), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4734), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_by] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_object] = ACTIONS(4732), + [anon_sym_fun] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), + [anon_sym_set] = ACTIONS(4732), + [anon_sym_this] = ACTIONS(4732), + [anon_sym_super] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4734), + [sym_label] = ACTIONS(4732), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_null] = ACTIONS(4732), + [anon_sym_if] = ACTIONS(4732), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_when] = ACTIONS(4732), + [anon_sym_try] = ACTIONS(4732), + [anon_sym_throw] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4732), + [anon_sym_continue] = ACTIONS(4732), + [anon_sym_break] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG] = ACTIONS(4732), + [anon_sym_suspend] = ACTIONS(4732), + [anon_sym_sealed] = ACTIONS(4732), + [anon_sym_annotation] = ACTIONS(4732), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_override] = ACTIONS(4732), + [anon_sym_lateinit] = ACTIONS(4732), + [anon_sym_public] = ACTIONS(4732), + [anon_sym_private] = ACTIONS(4732), + [anon_sym_internal] = ACTIONS(4732), + [anon_sym_protected] = ACTIONS(4732), + [anon_sym_tailrec] = ACTIONS(4732), + [anon_sym_operator] = ACTIONS(4732), + [anon_sym_infix] = ACTIONS(4732), + [anon_sym_inline] = ACTIONS(4732), + [anon_sym_external] = ACTIONS(4732), + [sym_property_modifier] = ACTIONS(4732), + [anon_sym_abstract] = ACTIONS(4732), + [anon_sym_final] = ACTIONS(4732), + [anon_sym_open] = ACTIONS(4732), + [anon_sym_vararg] = ACTIONS(4732), + [anon_sym_noinline] = ACTIONS(4732), + [anon_sym_crossinline] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4734), + [anon_sym_continue_AT] = ACTIONS(4734), + [anon_sym_break_AT] = ACTIONS(4734), + [anon_sym_this_AT] = ACTIONS(4734), + [anon_sym_super_AT] = ACTIONS(4734), + [sym_real_literal] = ACTIONS(4734), + [sym_integer_literal] = ACTIONS(4732), + [sym_hex_literal] = ACTIONS(4734), + [sym_bin_literal] = ACTIONS(4734), + [anon_sym_true] = ACTIONS(4732), + [anon_sym_false] = ACTIONS(4732), + [anon_sym_SQUOTE] = ACTIONS(4734), + [sym__backtick_identifier] = ACTIONS(4734), + [sym__automatic_semicolon] = ACTIONS(4734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4734), }, [3626] = { - [sym__alpha_identifier] = ACTIONS(5049), - [anon_sym_AT] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_as] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5049), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(7041), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_where] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_get] = ACTIONS(5049), - [anon_sym_set] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_DASH_GT] = ACTIONS(5051), - [sym_label] = ACTIONS(5051), - [anon_sym_in] = ACTIONS(5049), - [anon_sym_while] = ACTIONS(5049), - [anon_sym_DOT_DOT] = ACTIONS(5051), - [anon_sym_QMARK_COLON] = ACTIONS(5051), - [anon_sym_AMP_AMP] = ACTIONS(5051), - [anon_sym_PIPE_PIPE] = ACTIONS(5051), - [anon_sym_else] = ACTIONS(5049), - [anon_sym_COLON_COLON] = ACTIONS(5051), - [anon_sym_PLUS_EQ] = ACTIONS(5051), - [anon_sym_DASH_EQ] = ACTIONS(5051), - [anon_sym_STAR_EQ] = ACTIONS(5051), - [anon_sym_SLASH_EQ] = ACTIONS(5051), - [anon_sym_PERCENT_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), - [anon_sym_LT_EQ] = ACTIONS(5051), - [anon_sym_GT_EQ] = ACTIONS(5051), - [anon_sym_BANGin] = ACTIONS(5051), - [anon_sym_is] = ACTIONS(5049), - [anon_sym_BANGis] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5049), - [anon_sym_as_QMARK] = ACTIONS(5051), - [anon_sym_PLUS_PLUS] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5051), - [anon_sym_BANG_BANG] = ACTIONS(5051), - [anon_sym_suspend] = ACTIONS(5049), - [anon_sym_sealed] = ACTIONS(5049), - [anon_sym_annotation] = ACTIONS(5049), - [anon_sym_data] = ACTIONS(5049), - [anon_sym_inner] = ACTIONS(5049), - [anon_sym_value] = ACTIONS(5049), - [anon_sym_override] = ACTIONS(5049), - [anon_sym_lateinit] = ACTIONS(5049), - [anon_sym_public] = ACTIONS(5049), - [anon_sym_private] = ACTIONS(5049), - [anon_sym_internal] = ACTIONS(5049), - [anon_sym_protected] = ACTIONS(5049), - [anon_sym_tailrec] = ACTIONS(5049), - [anon_sym_operator] = ACTIONS(5049), - [anon_sym_infix] = ACTIONS(5049), - [anon_sym_inline] = ACTIONS(5049), - [anon_sym_external] = ACTIONS(5049), - [sym_property_modifier] = ACTIONS(5049), - [anon_sym_abstract] = ACTIONS(5049), - [anon_sym_final] = ACTIONS(5049), - [anon_sym_open] = ACTIONS(5049), - [anon_sym_vararg] = ACTIONS(5049), - [anon_sym_noinline] = ACTIONS(5049), - [anon_sym_crossinline] = ACTIONS(5049), - [anon_sym_expect] = ACTIONS(5049), - [anon_sym_actual] = ACTIONS(5049), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5051), - [sym_safe_nav] = ACTIONS(5051), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4716), + [anon_sym_AT] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_by] = ACTIONS(4716), + [anon_sym_where] = ACTIONS(4716), + [anon_sym_object] = ACTIONS(4716), + [anon_sym_fun] = ACTIONS(4716), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_get] = ACTIONS(4716), + [anon_sym_set] = ACTIONS(4716), + [anon_sym_this] = ACTIONS(4716), + [anon_sym_super] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4718), + [sym_label] = ACTIONS(4716), + [anon_sym_in] = ACTIONS(4716), + [anon_sym_null] = ACTIONS(4716), + [anon_sym_if] = ACTIONS(4716), + [anon_sym_else] = ACTIONS(4716), + [anon_sym_when] = ACTIONS(4716), + [anon_sym_try] = ACTIONS(4716), + [anon_sym_throw] = ACTIONS(4716), + [anon_sym_return] = ACTIONS(4716), + [anon_sym_continue] = ACTIONS(4716), + [anon_sym_break] = ACTIONS(4716), + [anon_sym_COLON_COLON] = ACTIONS(4718), + [anon_sym_BANGin] = ACTIONS(4718), + [anon_sym_is] = ACTIONS(4716), + [anon_sym_BANGis] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_PLUS_PLUS] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4716), + [anon_sym_suspend] = ACTIONS(4716), + [anon_sym_sealed] = ACTIONS(4716), + [anon_sym_annotation] = ACTIONS(4716), + [anon_sym_data] = ACTIONS(4716), + [anon_sym_inner] = ACTIONS(4716), + [anon_sym_value] = ACTIONS(4716), + [anon_sym_override] = ACTIONS(4716), + [anon_sym_lateinit] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(4716), + [anon_sym_private] = ACTIONS(4716), + [anon_sym_internal] = ACTIONS(4716), + [anon_sym_protected] = ACTIONS(4716), + [anon_sym_tailrec] = ACTIONS(4716), + [anon_sym_operator] = ACTIONS(4716), + [anon_sym_infix] = ACTIONS(4716), + [anon_sym_inline] = ACTIONS(4716), + [anon_sym_external] = ACTIONS(4716), + [sym_property_modifier] = ACTIONS(4716), + [anon_sym_abstract] = ACTIONS(4716), + [anon_sym_final] = ACTIONS(4716), + [anon_sym_open] = ACTIONS(4716), + [anon_sym_vararg] = ACTIONS(4716), + [anon_sym_noinline] = ACTIONS(4716), + [anon_sym_crossinline] = ACTIONS(4716), + [anon_sym_expect] = ACTIONS(4716), + [anon_sym_actual] = ACTIONS(4716), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4718), + [anon_sym_continue_AT] = ACTIONS(4718), + [anon_sym_break_AT] = ACTIONS(4718), + [anon_sym_this_AT] = ACTIONS(4718), + [anon_sym_super_AT] = ACTIONS(4718), + [sym_real_literal] = ACTIONS(4718), + [sym_integer_literal] = ACTIONS(4716), + [sym_hex_literal] = ACTIONS(4718), + [sym_bin_literal] = ACTIONS(4718), + [anon_sym_true] = ACTIONS(4716), + [anon_sym_false] = ACTIONS(4716), + [anon_sym_SQUOTE] = ACTIONS(4718), + [sym__backtick_identifier] = ACTIONS(4718), + [sym__automatic_semicolon] = ACTIONS(4718), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4718), }, [3627] = { - [sym__alpha_identifier] = ACTIONS(1622), - [anon_sym_AT] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_RBRACK] = ACTIONS(1620), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1622), - [anon_sym_set] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1622), - [anon_sym_DASH_GT] = ACTIONS(1620), - [sym_label] = ACTIONS(1620), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1620), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1622), - [anon_sym_DASH] = ACTIONS(1622), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_suspend] = ACTIONS(1622), - [anon_sym_sealed] = ACTIONS(1622), - [anon_sym_annotation] = ACTIONS(1622), - [anon_sym_data] = ACTIONS(1622), - [anon_sym_inner] = ACTIONS(1622), - [anon_sym_value] = ACTIONS(1622), - [anon_sym_override] = ACTIONS(1622), - [anon_sym_lateinit] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_internal] = ACTIONS(1622), - [anon_sym_protected] = ACTIONS(1622), - [anon_sym_tailrec] = ACTIONS(1622), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_infix] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_external] = ACTIONS(1622), - [sym_property_modifier] = ACTIONS(1622), - [anon_sym_abstract] = ACTIONS(1622), - [anon_sym_final] = ACTIONS(1622), - [anon_sym_open] = ACTIONS(1622), - [anon_sym_vararg] = ACTIONS(1622), - [anon_sym_noinline] = ACTIONS(1622), - [anon_sym_crossinline] = ACTIONS(1622), - [anon_sym_expect] = ACTIONS(1622), - [anon_sym_actual] = ACTIONS(1622), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), + [sym__alpha_identifier] = ACTIONS(4489), + [anon_sym_AT] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4489), + [anon_sym_constructor] = ACTIONS(4489), + [anon_sym_LBRACE] = ACTIONS(4491), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_LPAREN] = ACTIONS(4491), + [anon_sym_COMMA] = ACTIONS(4491), + [anon_sym_LT] = ACTIONS(4489), + [anon_sym_GT] = ACTIONS(4489), + [anon_sym_where] = ACTIONS(4489), + [anon_sym_DOT] = ACTIONS(4489), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_get] = ACTIONS(4489), + [anon_sym_set] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4489), + [sym_label] = ACTIONS(4491), + [anon_sym_in] = ACTIONS(4489), + [anon_sym_DOT_DOT] = ACTIONS(4491), + [anon_sym_QMARK_COLON] = ACTIONS(4491), + [anon_sym_AMP_AMP] = ACTIONS(4491), + [anon_sym_PIPE_PIPE] = ACTIONS(4491), + [anon_sym_else] = ACTIONS(4489), + [anon_sym_COLON_COLON] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ] = ACTIONS(4489), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ] = ACTIONS(4489), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4491), + [anon_sym_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_EQ] = ACTIONS(4491), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4489), + [anon_sym_BANGis] = ACTIONS(4491), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4489), + [anon_sym_PERCENT] = ACTIONS(4489), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4491), + [anon_sym_DASH_DASH] = ACTIONS(4491), + [anon_sym_BANG_BANG] = ACTIONS(4491), + [anon_sym_suspend] = ACTIONS(4489), + [anon_sym_sealed] = ACTIONS(4489), + [anon_sym_annotation] = ACTIONS(4489), + [anon_sym_data] = ACTIONS(4489), + [anon_sym_inner] = ACTIONS(4489), + [anon_sym_value] = ACTIONS(4489), + [anon_sym_override] = ACTIONS(4489), + [anon_sym_lateinit] = ACTIONS(4489), + [anon_sym_public] = ACTIONS(4489), + [anon_sym_private] = ACTIONS(4489), + [anon_sym_internal] = ACTIONS(4489), + [anon_sym_protected] = ACTIONS(4489), + [anon_sym_tailrec] = ACTIONS(4489), + [anon_sym_operator] = ACTIONS(4489), + [anon_sym_infix] = ACTIONS(4489), + [anon_sym_inline] = ACTIONS(4489), + [anon_sym_external] = ACTIONS(4489), + [sym_property_modifier] = ACTIONS(4489), + [anon_sym_abstract] = ACTIONS(4489), + [anon_sym_final] = ACTIONS(4489), + [anon_sym_open] = ACTIONS(4489), + [anon_sym_vararg] = ACTIONS(4489), + [anon_sym_noinline] = ACTIONS(4489), + [anon_sym_crossinline] = ACTIONS(4489), + [anon_sym_expect] = ACTIONS(4489), + [anon_sym_actual] = ACTIONS(4489), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4491), + [sym__automatic_semicolon] = ACTIONS(4491), + [sym_safe_nav] = ACTIONS(4491), [sym_multiline_comment] = ACTIONS(3), }, [3628] = { - [sym__alpha_identifier] = ACTIONS(4898), - [anon_sym_AT] = ACTIONS(4900), - [anon_sym_LBRACK] = ACTIONS(4900), - [anon_sym_RBRACK] = ACTIONS(4900), - [anon_sym_as] = ACTIONS(4898), - [anon_sym_EQ] = ACTIONS(4898), - [anon_sym_LBRACE] = ACTIONS(4900), - [anon_sym_RBRACE] = ACTIONS(4900), - [anon_sym_LPAREN] = ACTIONS(4900), - [anon_sym_COMMA] = ACTIONS(4900), - [anon_sym_RPAREN] = ACTIONS(4900), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_where] = ACTIONS(4898), - [anon_sym_DOT] = ACTIONS(4898), - [anon_sym_SEMI] = ACTIONS(4900), - [anon_sym_get] = ACTIONS(4898), - [anon_sym_set] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4898), - [anon_sym_DASH_GT] = ACTIONS(4900), - [sym_label] = ACTIONS(4900), - [anon_sym_in] = ACTIONS(4898), - [anon_sym_while] = ACTIONS(4898), - [anon_sym_DOT_DOT] = ACTIONS(4900), - [anon_sym_QMARK_COLON] = ACTIONS(4900), - [anon_sym_AMP_AMP] = ACTIONS(4900), - [anon_sym_PIPE_PIPE] = ACTIONS(4900), - [anon_sym_else] = ACTIONS(4898), - [anon_sym_COLON_COLON] = ACTIONS(4900), - [anon_sym_PLUS_EQ] = ACTIONS(4900), - [anon_sym_DASH_EQ] = ACTIONS(4900), - [anon_sym_STAR_EQ] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(4900), - [anon_sym_PERCENT_EQ] = ACTIONS(4900), - [anon_sym_BANG_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4900), - [anon_sym_EQ_EQ] = ACTIONS(4898), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4900), - [anon_sym_LT_EQ] = ACTIONS(4900), - [anon_sym_GT_EQ] = ACTIONS(4900), - [anon_sym_BANGin] = ACTIONS(4900), - [anon_sym_is] = ACTIONS(4898), - [anon_sym_BANGis] = ACTIONS(4900), - [anon_sym_PLUS] = ACTIONS(4898), - [anon_sym_DASH] = ACTIONS(4898), - [anon_sym_SLASH] = ACTIONS(4898), - [anon_sym_PERCENT] = ACTIONS(4898), - [anon_sym_as_QMARK] = ACTIONS(4900), - [anon_sym_PLUS_PLUS] = ACTIONS(4900), - [anon_sym_DASH_DASH] = ACTIONS(4900), - [anon_sym_BANG_BANG] = ACTIONS(4900), - [anon_sym_suspend] = ACTIONS(4898), - [anon_sym_sealed] = ACTIONS(4898), - [anon_sym_annotation] = ACTIONS(4898), - [anon_sym_data] = ACTIONS(4898), - [anon_sym_inner] = ACTIONS(4898), - [anon_sym_value] = ACTIONS(4898), - [anon_sym_override] = ACTIONS(4898), - [anon_sym_lateinit] = ACTIONS(4898), - [anon_sym_public] = ACTIONS(4898), - [anon_sym_private] = ACTIONS(4898), - [anon_sym_internal] = ACTIONS(4898), - [anon_sym_protected] = ACTIONS(4898), - [anon_sym_tailrec] = ACTIONS(4898), - [anon_sym_operator] = ACTIONS(4898), - [anon_sym_infix] = ACTIONS(4898), - [anon_sym_inline] = ACTIONS(4898), - [anon_sym_external] = ACTIONS(4898), - [sym_property_modifier] = ACTIONS(4898), - [anon_sym_abstract] = ACTIONS(4898), - [anon_sym_final] = ACTIONS(4898), - [anon_sym_open] = ACTIONS(4898), - [anon_sym_vararg] = ACTIONS(4898), - [anon_sym_noinline] = ACTIONS(4898), - [anon_sym_crossinline] = ACTIONS(4898), - [anon_sym_expect] = ACTIONS(4898), - [anon_sym_actual] = ACTIONS(4898), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4900), - [sym_safe_nav] = ACTIONS(4900), - [sym_multiline_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(6958), + [sym__alpha_identifier] = ACTIONS(6960), + [anon_sym_AT] = ACTIONS(6958), + [anon_sym_LBRACK] = ACTIONS(6958), + [anon_sym_import] = ACTIONS(6960), + [anon_sym_typealias] = ACTIONS(6960), + [anon_sym_class] = ACTIONS(6960), + [anon_sym_interface] = ACTIONS(6960), + [anon_sym_enum] = ACTIONS(6960), + [anon_sym_LBRACE] = ACTIONS(6958), + [anon_sym_LPAREN] = ACTIONS(6958), + [anon_sym_val] = ACTIONS(6960), + [anon_sym_var] = ACTIONS(6960), + [anon_sym_object] = ACTIONS(6960), + [anon_sym_fun] = ACTIONS(6960), + [anon_sym_get] = ACTIONS(6960), + [anon_sym_set] = ACTIONS(6960), + [anon_sym_this] = ACTIONS(6960), + [anon_sym_super] = ACTIONS(6960), + [anon_sym_STAR] = ACTIONS(6958), + [sym_label] = ACTIONS(6960), + [anon_sym_for] = ACTIONS(6960), + [anon_sym_while] = ACTIONS(6960), + [anon_sym_do] = ACTIONS(6960), + [anon_sym_null] = ACTIONS(6960), + [anon_sym_if] = ACTIONS(6960), + [anon_sym_when] = ACTIONS(6960), + [anon_sym_try] = ACTIONS(6960), + [anon_sym_throw] = ACTIONS(6960), + [anon_sym_return] = ACTIONS(6960), + [anon_sym_continue] = ACTIONS(6960), + [anon_sym_break] = ACTIONS(6960), + [anon_sym_COLON_COLON] = ACTIONS(6958), + [anon_sym_PLUS] = ACTIONS(6960), + [anon_sym_DASH] = ACTIONS(6960), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_BANG] = ACTIONS(6958), + [anon_sym_suspend] = ACTIONS(6960), + [anon_sym_sealed] = ACTIONS(6960), + [anon_sym_annotation] = ACTIONS(6960), + [anon_sym_data] = ACTIONS(6960), + [anon_sym_inner] = ACTIONS(6960), + [anon_sym_value] = ACTIONS(6960), + [anon_sym_override] = ACTIONS(6960), + [anon_sym_lateinit] = ACTIONS(6960), + [anon_sym_public] = ACTIONS(6960), + [anon_sym_private] = ACTIONS(6960), + [anon_sym_internal] = ACTIONS(6960), + [anon_sym_protected] = ACTIONS(6960), + [anon_sym_tailrec] = ACTIONS(6960), + [anon_sym_operator] = ACTIONS(6960), + [anon_sym_infix] = ACTIONS(6960), + [anon_sym_inline] = ACTIONS(6960), + [anon_sym_external] = ACTIONS(6960), + [sym_property_modifier] = ACTIONS(6960), + [anon_sym_abstract] = ACTIONS(6960), + [anon_sym_final] = ACTIONS(6960), + [anon_sym_open] = ACTIONS(6960), + [anon_sym_vararg] = ACTIONS(6960), + [anon_sym_noinline] = ACTIONS(6960), + [anon_sym_crossinline] = ACTIONS(6960), + [anon_sym_expect] = ACTIONS(6960), + [anon_sym_actual] = ACTIONS(6960), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6958), + [anon_sym_continue_AT] = ACTIONS(6958), + [anon_sym_break_AT] = ACTIONS(6958), + [anon_sym_this_AT] = ACTIONS(6958), + [anon_sym_super_AT] = ACTIONS(6958), + [sym_real_literal] = ACTIONS(6958), + [sym_integer_literal] = ACTIONS(6960), + [sym_hex_literal] = ACTIONS(6958), + [sym_bin_literal] = ACTIONS(6958), + [anon_sym_true] = ACTIONS(6960), + [anon_sym_false] = ACTIONS(6960), + [anon_sym_SQUOTE] = ACTIONS(6958), + [sym__backtick_identifier] = ACTIONS(6958), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6958), }, [3629] = { - [sym__alpha_identifier] = ACTIONS(4034), - [anon_sym_AT] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_RBRACK] = ACTIONS(4036), - [anon_sym_as] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_COMMA] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_where] = ACTIONS(4034), - [anon_sym_DOT] = ACTIONS(4034), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_get] = ACTIONS(4034), - [anon_sym_set] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4034), - [anon_sym_DASH_GT] = ACTIONS(4036), - [sym_label] = ACTIONS(4036), - [anon_sym_in] = ACTIONS(4034), - [anon_sym_while] = ACTIONS(4034), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_QMARK_COLON] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_else] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4036), - [anon_sym_PLUS_EQ] = ACTIONS(4036), - [anon_sym_DASH_EQ] = ACTIONS(4036), - [anon_sym_STAR_EQ] = ACTIONS(4036), - [anon_sym_SLASH_EQ] = ACTIONS(4036), - [anon_sym_PERCENT_EQ] = ACTIONS(4036), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT_EQ] = ACTIONS(4036), - [anon_sym_GT_EQ] = ACTIONS(4036), - [anon_sym_BANGin] = ACTIONS(4036), - [anon_sym_is] = ACTIONS(4034), - [anon_sym_BANGis] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_SLASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_as_QMARK] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4036), - [anon_sym_DASH_DASH] = ACTIONS(4036), - [anon_sym_BANG_BANG] = ACTIONS(4036), - [anon_sym_suspend] = ACTIONS(4034), - [anon_sym_sealed] = ACTIONS(4034), - [anon_sym_annotation] = ACTIONS(4034), - [anon_sym_data] = ACTIONS(4034), - [anon_sym_inner] = ACTIONS(4034), - [anon_sym_value] = ACTIONS(4034), - [anon_sym_override] = ACTIONS(4034), - [anon_sym_lateinit] = ACTIONS(4034), - [anon_sym_public] = ACTIONS(4034), - [anon_sym_private] = ACTIONS(4034), - [anon_sym_internal] = ACTIONS(4034), - [anon_sym_protected] = ACTIONS(4034), - [anon_sym_tailrec] = ACTIONS(4034), - [anon_sym_operator] = ACTIONS(4034), - [anon_sym_infix] = ACTIONS(4034), - [anon_sym_inline] = ACTIONS(4034), - [anon_sym_external] = ACTIONS(4034), - [sym_property_modifier] = ACTIONS(4034), - [anon_sym_abstract] = ACTIONS(4034), - [anon_sym_final] = ACTIONS(4034), - [anon_sym_open] = ACTIONS(4034), - [anon_sym_vararg] = ACTIONS(4034), - [anon_sym_noinline] = ACTIONS(4034), - [anon_sym_crossinline] = ACTIONS(4034), - [anon_sym_expect] = ACTIONS(4034), - [anon_sym_actual] = ACTIONS(4034), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4036), - [sym_safe_nav] = ACTIONS(4036), + [aux_sym__delegation_specifiers_repeat1] = STATE(3639), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_EQ] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(6962), + [anon_sym_RPAREN] = ACTIONS(4686), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4684), + [sym_label] = ACTIONS(4686), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_while] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_PLUS_EQ] = ACTIONS(4686), + [anon_sym_DASH_EQ] = ACTIONS(4686), + [anon_sym_STAR_EQ] = ACTIONS(4686), + [anon_sym_SLASH_EQ] = ACTIONS(4686), + [anon_sym_PERCENT_EQ] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4684), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_suspend] = ACTIONS(4684), + [anon_sym_sealed] = ACTIONS(4684), + [anon_sym_annotation] = ACTIONS(4684), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_override] = ACTIONS(4684), + [anon_sym_lateinit] = ACTIONS(4684), + [anon_sym_public] = ACTIONS(4684), + [anon_sym_private] = ACTIONS(4684), + [anon_sym_internal] = ACTIONS(4684), + [anon_sym_protected] = ACTIONS(4684), + [anon_sym_tailrec] = ACTIONS(4684), + [anon_sym_operator] = ACTIONS(4684), + [anon_sym_infix] = ACTIONS(4684), + [anon_sym_inline] = ACTIONS(4684), + [anon_sym_external] = ACTIONS(4684), + [sym_property_modifier] = ACTIONS(4684), + [anon_sym_abstract] = ACTIONS(4684), + [anon_sym_final] = ACTIONS(4684), + [anon_sym_open] = ACTIONS(4684), + [anon_sym_vararg] = ACTIONS(4684), + [anon_sym_noinline] = ACTIONS(4684), + [anon_sym_crossinline] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), [sym_multiline_comment] = ACTIONS(3), }, [3630] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_RBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_RPAREN] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_GT] = ACTIONS(4381), - [anon_sym_where] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [anon_sym_DASH_GT] = ACTIONS(4383), - [sym_label] = ACTIONS(4383), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_while] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_QMARK_COLON] = ACTIONS(4383), - [anon_sym_AMP_AMP] = ACTIONS(4383), - [anon_sym_PIPE_PIPE] = ACTIONS(4383), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4383), - [anon_sym_DASH_EQ] = ACTIONS(4383), - [anon_sym_STAR_EQ] = ACTIONS(4383), - [anon_sym_SLASH_EQ] = ACTIONS(4383), - [anon_sym_PERCENT_EQ] = ACTIONS(4383), - [anon_sym_BANG_EQ] = ACTIONS(4381), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), - [anon_sym_EQ_EQ] = ACTIONS(4381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), - [anon_sym_LT_EQ] = ACTIONS(4383), - [anon_sym_GT_EQ] = ACTIONS(4383), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_as_QMARK] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG_BANG] = ACTIONS(4383), - [anon_sym_suspend] = ACTIONS(4381), - [anon_sym_sealed] = ACTIONS(4381), - [anon_sym_annotation] = ACTIONS(4381), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_override] = ACTIONS(4381), - [anon_sym_lateinit] = ACTIONS(4381), - [anon_sym_public] = ACTIONS(4381), - [anon_sym_private] = ACTIONS(4381), - [anon_sym_internal] = ACTIONS(4381), - [anon_sym_protected] = ACTIONS(4381), - [anon_sym_tailrec] = ACTIONS(4381), - [anon_sym_operator] = ACTIONS(4381), - [anon_sym_infix] = ACTIONS(4381), - [anon_sym_inline] = ACTIONS(4381), - [anon_sym_external] = ACTIONS(4381), - [sym_property_modifier] = ACTIONS(4381), - [anon_sym_abstract] = ACTIONS(4381), - [anon_sym_final] = ACTIONS(4381), - [anon_sym_open] = ACTIONS(4381), - [anon_sym_vararg] = ACTIONS(4381), - [anon_sym_noinline] = ACTIONS(4381), - [anon_sym_crossinline] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4383), + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_constructor] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), [sym_multiline_comment] = ACTIONS(3), }, [3631] = { - [sym__alpha_identifier] = ACTIONS(5091), - [anon_sym_AT] = ACTIONS(5093), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_RBRACK] = ACTIONS(5093), - [anon_sym_as] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5093), - [anon_sym_RBRACE] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5093), - [anon_sym_COMMA] = ACTIONS(5093), - [anon_sym_RPAREN] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5091), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_where] = ACTIONS(5091), - [anon_sym_DOT] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5093), - [anon_sym_get] = ACTIONS(5091), - [anon_sym_set] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_DASH_GT] = ACTIONS(5093), - [sym_label] = ACTIONS(5093), - [anon_sym_in] = ACTIONS(5091), - [anon_sym_while] = ACTIONS(5091), - [anon_sym_DOT_DOT] = ACTIONS(5093), - [anon_sym_QMARK_COLON] = ACTIONS(5093), - [anon_sym_AMP_AMP] = ACTIONS(5093), - [anon_sym_PIPE_PIPE] = ACTIONS(5093), - [anon_sym_else] = ACTIONS(5091), - [anon_sym_COLON_COLON] = ACTIONS(5093), - [anon_sym_PLUS_EQ] = ACTIONS(5093), - [anon_sym_DASH_EQ] = ACTIONS(5093), - [anon_sym_STAR_EQ] = ACTIONS(5093), - [anon_sym_SLASH_EQ] = ACTIONS(5093), - [anon_sym_PERCENT_EQ] = ACTIONS(5093), - [anon_sym_BANG_EQ] = ACTIONS(5091), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5093), - [anon_sym_EQ_EQ] = ACTIONS(5091), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5093), - [anon_sym_LT_EQ] = ACTIONS(5093), - [anon_sym_GT_EQ] = ACTIONS(5093), - [anon_sym_BANGin] = ACTIONS(5093), - [anon_sym_is] = ACTIONS(5091), - [anon_sym_BANGis] = ACTIONS(5093), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5091), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_as_QMARK] = ACTIONS(5093), - [anon_sym_PLUS_PLUS] = ACTIONS(5093), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_BANG_BANG] = ACTIONS(5093), - [anon_sym_suspend] = ACTIONS(5091), - [anon_sym_sealed] = ACTIONS(5091), - [anon_sym_annotation] = ACTIONS(5091), - [anon_sym_data] = ACTIONS(5091), - [anon_sym_inner] = ACTIONS(5091), - [anon_sym_value] = ACTIONS(5091), - [anon_sym_override] = ACTIONS(5091), - [anon_sym_lateinit] = ACTIONS(5091), - [anon_sym_public] = ACTIONS(5091), - [anon_sym_private] = ACTIONS(5091), - [anon_sym_internal] = ACTIONS(5091), - [anon_sym_protected] = ACTIONS(5091), - [anon_sym_tailrec] = ACTIONS(5091), - [anon_sym_operator] = ACTIONS(5091), - [anon_sym_infix] = ACTIONS(5091), - [anon_sym_inline] = ACTIONS(5091), - [anon_sym_external] = ACTIONS(5091), - [sym_property_modifier] = ACTIONS(5091), - [anon_sym_abstract] = ACTIONS(5091), - [anon_sym_final] = ACTIONS(5091), - [anon_sym_open] = ACTIONS(5091), - [anon_sym_vararg] = ACTIONS(5091), - [anon_sym_noinline] = ACTIONS(5091), - [anon_sym_crossinline] = ACTIONS(5091), - [anon_sym_expect] = ACTIONS(5091), - [anon_sym_actual] = ACTIONS(5091), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5093), - [sym_safe_nav] = ACTIONS(5093), + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3632] = { - [sym__alpha_identifier] = ACTIONS(5247), - [anon_sym_AT] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(5249), - [anon_sym_RBRACK] = ACTIONS(5249), - [anon_sym_as] = ACTIONS(5247), - [anon_sym_EQ] = ACTIONS(5247), - [anon_sym_LBRACE] = ACTIONS(5249), - [anon_sym_RBRACE] = ACTIONS(5249), - [anon_sym_LPAREN] = ACTIONS(5249), - [anon_sym_COMMA] = ACTIONS(5249), - [anon_sym_RPAREN] = ACTIONS(5249), - [anon_sym_LT] = ACTIONS(5247), - [anon_sym_GT] = ACTIONS(5247), - [anon_sym_where] = ACTIONS(5247), - [anon_sym_DOT] = ACTIONS(5247), - [anon_sym_SEMI] = ACTIONS(5249), - [anon_sym_get] = ACTIONS(5247), - [anon_sym_set] = ACTIONS(5247), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_DASH_GT] = ACTIONS(5249), - [sym_label] = ACTIONS(5249), - [anon_sym_in] = ACTIONS(5247), - [anon_sym_while] = ACTIONS(5247), - [anon_sym_DOT_DOT] = ACTIONS(5249), - [anon_sym_QMARK_COLON] = ACTIONS(5249), - [anon_sym_AMP_AMP] = ACTIONS(5249), - [anon_sym_PIPE_PIPE] = ACTIONS(5249), - [anon_sym_else] = ACTIONS(5247), - [anon_sym_COLON_COLON] = ACTIONS(5249), - [anon_sym_PLUS_EQ] = ACTIONS(5249), - [anon_sym_DASH_EQ] = ACTIONS(5249), - [anon_sym_STAR_EQ] = ACTIONS(5249), - [anon_sym_SLASH_EQ] = ACTIONS(5249), - [anon_sym_PERCENT_EQ] = ACTIONS(5249), - [anon_sym_BANG_EQ] = ACTIONS(5247), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5249), - [anon_sym_EQ_EQ] = ACTIONS(5247), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5249), - [anon_sym_LT_EQ] = ACTIONS(5249), - [anon_sym_GT_EQ] = ACTIONS(5249), - [anon_sym_BANGin] = ACTIONS(5249), - [anon_sym_is] = ACTIONS(5247), - [anon_sym_BANGis] = ACTIONS(5249), - [anon_sym_PLUS] = ACTIONS(5247), - [anon_sym_DASH] = ACTIONS(5247), - [anon_sym_SLASH] = ACTIONS(5247), - [anon_sym_PERCENT] = ACTIONS(5247), - [anon_sym_as_QMARK] = ACTIONS(5249), - [anon_sym_PLUS_PLUS] = ACTIONS(5249), - [anon_sym_DASH_DASH] = ACTIONS(5249), - [anon_sym_BANG_BANG] = ACTIONS(5249), - [anon_sym_suspend] = ACTIONS(5247), - [anon_sym_sealed] = ACTIONS(5247), - [anon_sym_annotation] = ACTIONS(5247), - [anon_sym_data] = ACTIONS(5247), - [anon_sym_inner] = ACTIONS(5247), - [anon_sym_value] = ACTIONS(5247), - [anon_sym_override] = ACTIONS(5247), - [anon_sym_lateinit] = ACTIONS(5247), - [anon_sym_public] = ACTIONS(5247), - [anon_sym_private] = ACTIONS(5247), - [anon_sym_internal] = ACTIONS(5247), - [anon_sym_protected] = ACTIONS(5247), - [anon_sym_tailrec] = ACTIONS(5247), - [anon_sym_operator] = ACTIONS(5247), - [anon_sym_infix] = ACTIONS(5247), - [anon_sym_inline] = ACTIONS(5247), - [anon_sym_external] = ACTIONS(5247), - [sym_property_modifier] = ACTIONS(5247), - [anon_sym_abstract] = ACTIONS(5247), - [anon_sym_final] = ACTIONS(5247), - [anon_sym_open] = ACTIONS(5247), - [anon_sym_vararg] = ACTIONS(5247), - [anon_sym_noinline] = ACTIONS(5247), - [anon_sym_crossinline] = ACTIONS(5247), - [anon_sym_expect] = ACTIONS(5247), - [anon_sym_actual] = ACTIONS(5247), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5249), - [sym_safe_nav] = ACTIONS(5249), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_user_type_repeat1] = STATE(3676), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_typealias] = ACTIONS(4153), + [anon_sym_class] = ACTIONS(4153), + [anon_sym_interface] = ACTIONS(4153), + [anon_sym_enum] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_val] = ACTIONS(4153), + [anon_sym_var] = ACTIONS(4153), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_fun] = ACTIONS(4153), + [anon_sym_DOT] = ACTIONS(6964), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_this] = ACTIONS(4153), + [anon_sym_super] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4155), + [sym_label] = ACTIONS(4153), + [anon_sym_for] = ACTIONS(4153), + [anon_sym_while] = ACTIONS(4153), + [anon_sym_do] = ACTIONS(4153), + [anon_sym_null] = ACTIONS(4153), + [anon_sym_if] = ACTIONS(4153), + [anon_sym_when] = ACTIONS(4153), + [anon_sym_try] = ACTIONS(4153), + [anon_sym_throw] = ACTIONS(4153), + [anon_sym_return] = ACTIONS(4153), + [anon_sym_continue] = ACTIONS(4153), + [anon_sym_break] = ACTIONS(4153), + [anon_sym_COLON_COLON] = ACTIONS(4155), + [anon_sym_PLUS] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_PLUS_PLUS] = ACTIONS(4155), + [anon_sym_DASH_DASH] = ACTIONS(4155), + [anon_sym_BANG] = ACTIONS(4155), + [anon_sym_suspend] = ACTIONS(4153), + [anon_sym_sealed] = ACTIONS(4153), + [anon_sym_annotation] = ACTIONS(4153), + [anon_sym_data] = ACTIONS(4153), + [anon_sym_inner] = ACTIONS(4153), + [anon_sym_value] = ACTIONS(4153), + [anon_sym_override] = ACTIONS(4153), + [anon_sym_lateinit] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4153), + [anon_sym_private] = ACTIONS(4153), + [anon_sym_internal] = ACTIONS(4153), + [anon_sym_protected] = ACTIONS(4153), + [anon_sym_tailrec] = ACTIONS(4153), + [anon_sym_operator] = ACTIONS(4153), + [anon_sym_infix] = ACTIONS(4153), + [anon_sym_inline] = ACTIONS(4153), + [anon_sym_external] = ACTIONS(4153), + [sym_property_modifier] = ACTIONS(4153), + [anon_sym_abstract] = ACTIONS(4153), + [anon_sym_final] = ACTIONS(4153), + [anon_sym_open] = ACTIONS(4153), + [anon_sym_vararg] = ACTIONS(4153), + [anon_sym_noinline] = ACTIONS(4153), + [anon_sym_crossinline] = ACTIONS(4153), + [anon_sym_expect] = ACTIONS(4153), + [anon_sym_actual] = ACTIONS(4153), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4155), + [anon_sym_continue_AT] = ACTIONS(4155), + [anon_sym_break_AT] = ACTIONS(4155), + [anon_sym_this_AT] = ACTIONS(4155), + [anon_sym_super_AT] = ACTIONS(4155), + [sym_real_literal] = ACTIONS(4155), + [sym_integer_literal] = ACTIONS(4153), + [sym_hex_literal] = ACTIONS(4155), + [sym_bin_literal] = ACTIONS(4155), + [anon_sym_true] = ACTIONS(4153), + [anon_sym_false] = ACTIONS(4153), + [anon_sym_SQUOTE] = ACTIONS(4155), + [sym__backtick_identifier] = ACTIONS(4155), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4155), }, [3633] = { - [sym__alpha_identifier] = ACTIONS(5045), - [anon_sym_AT] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(5045), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_where] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_get] = ACTIONS(5045), - [anon_sym_set] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [anon_sym_DASH_GT] = ACTIONS(5047), - [sym_label] = ACTIONS(5047), - [anon_sym_in] = ACTIONS(5045), - [anon_sym_while] = ACTIONS(5045), - [anon_sym_DOT_DOT] = ACTIONS(5047), - [anon_sym_QMARK_COLON] = ACTIONS(5047), - [anon_sym_AMP_AMP] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_else] = ACTIONS(5045), - [anon_sym_COLON_COLON] = ACTIONS(5047), - [anon_sym_PLUS_EQ] = ACTIONS(5047), - [anon_sym_DASH_EQ] = ACTIONS(5047), - [anon_sym_STAR_EQ] = ACTIONS(5047), - [anon_sym_SLASH_EQ] = ACTIONS(5047), - [anon_sym_PERCENT_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_BANGin] = ACTIONS(5047), - [anon_sym_is] = ACTIONS(5045), - [anon_sym_BANGis] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_PERCENT] = ACTIONS(5045), - [anon_sym_as_QMARK] = ACTIONS(5047), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_BANG_BANG] = ACTIONS(5047), - [anon_sym_suspend] = ACTIONS(5045), - [anon_sym_sealed] = ACTIONS(5045), - [anon_sym_annotation] = ACTIONS(5045), - [anon_sym_data] = ACTIONS(5045), - [anon_sym_inner] = ACTIONS(5045), - [anon_sym_value] = ACTIONS(5045), - [anon_sym_override] = ACTIONS(5045), - [anon_sym_lateinit] = ACTIONS(5045), - [anon_sym_public] = ACTIONS(5045), - [anon_sym_private] = ACTIONS(5045), - [anon_sym_internal] = ACTIONS(5045), - [anon_sym_protected] = ACTIONS(5045), - [anon_sym_tailrec] = ACTIONS(5045), - [anon_sym_operator] = ACTIONS(5045), - [anon_sym_infix] = ACTIONS(5045), - [anon_sym_inline] = ACTIONS(5045), - [anon_sym_external] = ACTIONS(5045), - [sym_property_modifier] = ACTIONS(5045), - [anon_sym_abstract] = ACTIONS(5045), - [anon_sym_final] = ACTIONS(5045), - [anon_sym_open] = ACTIONS(5045), - [anon_sym_vararg] = ACTIONS(5045), - [anon_sym_noinline] = ACTIONS(5045), - [anon_sym_crossinline] = ACTIONS(5045), - [anon_sym_expect] = ACTIONS(5045), - [anon_sym_actual] = ACTIONS(5045), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5047), - [sym_safe_nav] = ACTIONS(5047), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [3634] = { - [sym__alpha_identifier] = ACTIONS(5038), - [anon_sym_AT] = ACTIONS(5040), - [anon_sym_LBRACK] = ACTIONS(5040), - [anon_sym_RBRACK] = ACTIONS(5040), - [anon_sym_as] = ACTIONS(5038), - [anon_sym_EQ] = ACTIONS(5038), - [anon_sym_LBRACE] = ACTIONS(5040), - [anon_sym_RBRACE] = ACTIONS(5040), - [anon_sym_LPAREN] = ACTIONS(5040), - [anon_sym_COMMA] = ACTIONS(5040), - [anon_sym_RPAREN] = ACTIONS(5040), - [anon_sym_LT] = ACTIONS(5038), - [anon_sym_GT] = ACTIONS(5038), - [anon_sym_where] = ACTIONS(5038), - [anon_sym_DOT] = ACTIONS(5038), - [anon_sym_SEMI] = ACTIONS(5040), - [anon_sym_get] = ACTIONS(5038), - [anon_sym_set] = ACTIONS(5038), - [anon_sym_STAR] = ACTIONS(5038), - [anon_sym_DASH_GT] = ACTIONS(5040), - [sym_label] = ACTIONS(5040), - [anon_sym_in] = ACTIONS(5038), - [anon_sym_while] = ACTIONS(5038), - [anon_sym_DOT_DOT] = ACTIONS(5040), - [anon_sym_QMARK_COLON] = ACTIONS(5040), - [anon_sym_AMP_AMP] = ACTIONS(5040), - [anon_sym_PIPE_PIPE] = ACTIONS(5040), - [anon_sym_else] = ACTIONS(5038), - [anon_sym_COLON_COLON] = ACTIONS(7043), - [anon_sym_PLUS_EQ] = ACTIONS(5040), - [anon_sym_DASH_EQ] = ACTIONS(5040), - [anon_sym_STAR_EQ] = ACTIONS(5040), - [anon_sym_SLASH_EQ] = ACTIONS(5040), - [anon_sym_PERCENT_EQ] = ACTIONS(5040), - [anon_sym_BANG_EQ] = ACTIONS(5038), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5040), - [anon_sym_EQ_EQ] = ACTIONS(5038), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5040), - [anon_sym_LT_EQ] = ACTIONS(5040), - [anon_sym_GT_EQ] = ACTIONS(5040), - [anon_sym_BANGin] = ACTIONS(5040), - [anon_sym_is] = ACTIONS(5038), - [anon_sym_BANGis] = ACTIONS(5040), - [anon_sym_PLUS] = ACTIONS(5038), - [anon_sym_DASH] = ACTIONS(5038), - [anon_sym_SLASH] = ACTIONS(5038), - [anon_sym_PERCENT] = ACTIONS(5038), - [anon_sym_as_QMARK] = ACTIONS(5040), - [anon_sym_PLUS_PLUS] = ACTIONS(5040), - [anon_sym_DASH_DASH] = ACTIONS(5040), - [anon_sym_BANG_BANG] = ACTIONS(5040), - [anon_sym_suspend] = ACTIONS(5038), - [anon_sym_sealed] = ACTIONS(5038), - [anon_sym_annotation] = ACTIONS(5038), - [anon_sym_data] = ACTIONS(5038), - [anon_sym_inner] = ACTIONS(5038), - [anon_sym_value] = ACTIONS(5038), - [anon_sym_override] = ACTIONS(5038), - [anon_sym_lateinit] = ACTIONS(5038), - [anon_sym_public] = ACTIONS(5038), - [anon_sym_private] = ACTIONS(5038), - [anon_sym_internal] = ACTIONS(5038), - [anon_sym_protected] = ACTIONS(5038), - [anon_sym_tailrec] = ACTIONS(5038), - [anon_sym_operator] = ACTIONS(5038), - [anon_sym_infix] = ACTIONS(5038), - [anon_sym_inline] = ACTIONS(5038), - [anon_sym_external] = ACTIONS(5038), - [sym_property_modifier] = ACTIONS(5038), - [anon_sym_abstract] = ACTIONS(5038), - [anon_sym_final] = ACTIONS(5038), - [anon_sym_open] = ACTIONS(5038), - [anon_sym_vararg] = ACTIONS(5038), - [anon_sym_noinline] = ACTIONS(5038), - [anon_sym_crossinline] = ACTIONS(5038), - [anon_sym_expect] = ACTIONS(5038), - [anon_sym_actual] = ACTIONS(5038), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5040), - [sym_safe_nav] = ACTIONS(5040), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4812), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_QMARK_COLON] = ACTIONS(4814), + [anon_sym_AMP_AMP] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4814), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4814), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_as_QMARK] = ACTIONS(4814), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4814), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4814), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), }, [3635] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_RBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_RPAREN] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [anon_sym_DASH_GT] = ACTIONS(4379), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_while] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), + [sym_class_body] = STATE(3861), + [sym_type_constraints] = STATE(3816), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [3636] = { - [sym__alpha_identifier] = ACTIONS(5032), - [anon_sym_AT] = ACTIONS(5034), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_RBRACK] = ACTIONS(5034), - [anon_sym_as] = ACTIONS(5032), - [anon_sym_EQ] = ACTIONS(5032), - [anon_sym_LBRACE] = ACTIONS(5034), - [anon_sym_RBRACE] = ACTIONS(5034), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_COMMA] = ACTIONS(5034), - [anon_sym_RPAREN] = ACTIONS(5034), - [anon_sym_LT] = ACTIONS(5032), - [anon_sym_GT] = ACTIONS(5032), - [anon_sym_where] = ACTIONS(5032), - [anon_sym_DOT] = ACTIONS(5032), - [anon_sym_SEMI] = ACTIONS(5034), - [anon_sym_get] = ACTIONS(5032), - [anon_sym_set] = ACTIONS(5032), - [anon_sym_STAR] = ACTIONS(5032), - [anon_sym_DASH_GT] = ACTIONS(5034), - [sym_label] = ACTIONS(5034), - [anon_sym_in] = ACTIONS(5032), - [anon_sym_while] = ACTIONS(5032), - [anon_sym_DOT_DOT] = ACTIONS(5034), - [anon_sym_QMARK_COLON] = ACTIONS(5034), - [anon_sym_AMP_AMP] = ACTIONS(5034), - [anon_sym_PIPE_PIPE] = ACTIONS(5034), - [anon_sym_else] = ACTIONS(5032), - [anon_sym_COLON_COLON] = ACTIONS(5034), - [anon_sym_PLUS_EQ] = ACTIONS(5034), - [anon_sym_DASH_EQ] = ACTIONS(5034), - [anon_sym_STAR_EQ] = ACTIONS(5034), - [anon_sym_SLASH_EQ] = ACTIONS(5034), - [anon_sym_PERCENT_EQ] = ACTIONS(5034), - [anon_sym_BANG_EQ] = ACTIONS(5032), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5034), - [anon_sym_EQ_EQ] = ACTIONS(5032), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5034), - [anon_sym_LT_EQ] = ACTIONS(5034), - [anon_sym_GT_EQ] = ACTIONS(5034), - [anon_sym_BANGin] = ACTIONS(5034), - [anon_sym_is] = ACTIONS(5032), - [anon_sym_BANGis] = ACTIONS(5034), - [anon_sym_PLUS] = ACTIONS(5032), - [anon_sym_DASH] = ACTIONS(5032), - [anon_sym_SLASH] = ACTIONS(5032), - [anon_sym_PERCENT] = ACTIONS(5032), - [anon_sym_as_QMARK] = ACTIONS(5034), - [anon_sym_PLUS_PLUS] = ACTIONS(5034), - [anon_sym_DASH_DASH] = ACTIONS(5034), - [anon_sym_BANG_BANG] = ACTIONS(5034), - [anon_sym_suspend] = ACTIONS(5032), - [anon_sym_sealed] = ACTIONS(5032), - [anon_sym_annotation] = ACTIONS(5032), - [anon_sym_data] = ACTIONS(5032), - [anon_sym_inner] = ACTIONS(5032), - [anon_sym_value] = ACTIONS(5032), - [anon_sym_override] = ACTIONS(5032), - [anon_sym_lateinit] = ACTIONS(5032), - [anon_sym_public] = ACTIONS(5032), - [anon_sym_private] = ACTIONS(5032), - [anon_sym_internal] = ACTIONS(5032), - [anon_sym_protected] = ACTIONS(5032), - [anon_sym_tailrec] = ACTIONS(5032), - [anon_sym_operator] = ACTIONS(5032), - [anon_sym_infix] = ACTIONS(5032), - [anon_sym_inline] = ACTIONS(5032), - [anon_sym_external] = ACTIONS(5032), - [sym_property_modifier] = ACTIONS(5032), - [anon_sym_abstract] = ACTIONS(5032), - [anon_sym_final] = ACTIONS(5032), - [anon_sym_open] = ACTIONS(5032), - [anon_sym_vararg] = ACTIONS(5032), - [anon_sym_noinline] = ACTIONS(5032), - [anon_sym_crossinline] = ACTIONS(5032), - [anon_sym_expect] = ACTIONS(5032), - [anon_sym_actual] = ACTIONS(5032), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5034), - [sym_safe_nav] = ACTIONS(5034), + [aux_sym_user_type_repeat1] = STATE(3319), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6966), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [sym_label] = ACTIONS(4195), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), [sym_multiline_comment] = ACTIONS(3), }, [3637] = { - [sym__alpha_identifier] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_as] = ACTIONS(209), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_where] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(209), - [anon_sym_set] = ACTIONS(209), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_DASH_GT] = ACTIONS(207), - [sym_label] = ACTIONS(207), - [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(207), - [anon_sym_QMARK_COLON] = ACTIONS(207), - [anon_sym_AMP_AMP] = ACTIONS(207), - [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_else] = ACTIONS(209), - [anon_sym_COLON_COLON] = ACTIONS(207), - [anon_sym_PLUS_EQ] = ACTIONS(207), - [anon_sym_DASH_EQ] = ACTIONS(207), - [anon_sym_STAR_EQ] = ACTIONS(207), - [anon_sym_SLASH_EQ] = ACTIONS(207), - [anon_sym_PERCENT_EQ] = ACTIONS(207), - [anon_sym_BANG_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(207), - [anon_sym_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(207), - [anon_sym_LT_EQ] = ACTIONS(207), - [anon_sym_GT_EQ] = ACTIONS(207), - [anon_sym_BANGin] = ACTIONS(207), - [anon_sym_is] = ACTIONS(209), - [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(209), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(207), - [anon_sym_DASH_DASH] = ACTIONS(207), - [anon_sym_BANG_BANG] = ACTIONS(207), - [anon_sym_suspend] = ACTIONS(209), - [anon_sym_sealed] = ACTIONS(209), - [anon_sym_annotation] = ACTIONS(209), - [anon_sym_data] = ACTIONS(209), - [anon_sym_inner] = ACTIONS(209), - [anon_sym_value] = ACTIONS(209), - [anon_sym_override] = ACTIONS(209), - [anon_sym_lateinit] = ACTIONS(209), - [anon_sym_public] = ACTIONS(209), - [anon_sym_private] = ACTIONS(209), - [anon_sym_internal] = ACTIONS(209), - [anon_sym_protected] = ACTIONS(209), - [anon_sym_tailrec] = ACTIONS(209), - [anon_sym_operator] = ACTIONS(209), - [anon_sym_infix] = ACTIONS(209), - [anon_sym_inline] = ACTIONS(209), - [anon_sym_external] = ACTIONS(209), - [sym_property_modifier] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_final] = ACTIONS(209), - [anon_sym_open] = ACTIONS(209), - [anon_sym_vararg] = ACTIONS(209), - [anon_sym_noinline] = ACTIONS(209), - [anon_sym_crossinline] = ACTIONS(209), - [anon_sym_expect] = ACTIONS(209), - [anon_sym_actual] = ACTIONS(209), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(207), - [sym_safe_nav] = ACTIONS(207), - [sym_multiline_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(6969), + [sym__alpha_identifier] = ACTIONS(6971), + [anon_sym_AT] = ACTIONS(6969), + [anon_sym_LBRACK] = ACTIONS(6969), + [anon_sym_import] = ACTIONS(6971), + [anon_sym_typealias] = ACTIONS(6971), + [anon_sym_class] = ACTIONS(6971), + [anon_sym_interface] = ACTIONS(6971), + [anon_sym_enum] = ACTIONS(6971), + [anon_sym_LBRACE] = ACTIONS(6969), + [anon_sym_LPAREN] = ACTIONS(6969), + [anon_sym_val] = ACTIONS(6971), + [anon_sym_var] = ACTIONS(6971), + [anon_sym_object] = ACTIONS(6971), + [anon_sym_fun] = ACTIONS(6971), + [anon_sym_get] = ACTIONS(6971), + [anon_sym_set] = ACTIONS(6971), + [anon_sym_this] = ACTIONS(6971), + [anon_sym_super] = ACTIONS(6971), + [anon_sym_STAR] = ACTIONS(6969), + [sym_label] = ACTIONS(6971), + [anon_sym_for] = ACTIONS(6971), + [anon_sym_while] = ACTIONS(6971), + [anon_sym_do] = ACTIONS(6971), + [anon_sym_null] = ACTIONS(6971), + [anon_sym_if] = ACTIONS(6971), + [anon_sym_when] = ACTIONS(6971), + [anon_sym_try] = ACTIONS(6971), + [anon_sym_throw] = ACTIONS(6971), + [anon_sym_return] = ACTIONS(6971), + [anon_sym_continue] = ACTIONS(6971), + [anon_sym_break] = ACTIONS(6971), + [anon_sym_COLON_COLON] = ACTIONS(6969), + [anon_sym_PLUS] = ACTIONS(6971), + [anon_sym_DASH] = ACTIONS(6971), + [anon_sym_PLUS_PLUS] = ACTIONS(6969), + [anon_sym_DASH_DASH] = ACTIONS(6969), + [anon_sym_BANG] = ACTIONS(6969), + [anon_sym_suspend] = ACTIONS(6971), + [anon_sym_sealed] = ACTIONS(6971), + [anon_sym_annotation] = ACTIONS(6971), + [anon_sym_data] = ACTIONS(6971), + [anon_sym_inner] = ACTIONS(6971), + [anon_sym_value] = ACTIONS(6971), + [anon_sym_override] = ACTIONS(6971), + [anon_sym_lateinit] = ACTIONS(6971), + [anon_sym_public] = ACTIONS(6971), + [anon_sym_private] = ACTIONS(6971), + [anon_sym_internal] = ACTIONS(6971), + [anon_sym_protected] = ACTIONS(6971), + [anon_sym_tailrec] = ACTIONS(6971), + [anon_sym_operator] = ACTIONS(6971), + [anon_sym_infix] = ACTIONS(6971), + [anon_sym_inline] = ACTIONS(6971), + [anon_sym_external] = ACTIONS(6971), + [sym_property_modifier] = ACTIONS(6971), + [anon_sym_abstract] = ACTIONS(6971), + [anon_sym_final] = ACTIONS(6971), + [anon_sym_open] = ACTIONS(6971), + [anon_sym_vararg] = ACTIONS(6971), + [anon_sym_noinline] = ACTIONS(6971), + [anon_sym_crossinline] = ACTIONS(6971), + [anon_sym_expect] = ACTIONS(6971), + [anon_sym_actual] = ACTIONS(6971), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6969), + [anon_sym_continue_AT] = ACTIONS(6969), + [anon_sym_break_AT] = ACTIONS(6969), + [anon_sym_this_AT] = ACTIONS(6969), + [anon_sym_super_AT] = ACTIONS(6969), + [sym_real_literal] = ACTIONS(6969), + [sym_integer_literal] = ACTIONS(6971), + [sym_hex_literal] = ACTIONS(6969), + [sym_bin_literal] = ACTIONS(6969), + [anon_sym_true] = ACTIONS(6971), + [anon_sym_false] = ACTIONS(6971), + [anon_sym_SQUOTE] = ACTIONS(6969), + [sym__backtick_identifier] = ACTIONS(6969), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6969), }, [3638] = { - [sym__alpha_identifier] = ACTIONS(5024), - [anon_sym_AT] = ACTIONS(5026), - [anon_sym_LBRACK] = ACTIONS(5026), - [anon_sym_RBRACK] = ACTIONS(5026), - [anon_sym_as] = ACTIONS(5024), - [anon_sym_EQ] = ACTIONS(5024), - [anon_sym_LBRACE] = ACTIONS(5026), - [anon_sym_RBRACE] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(5026), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_RPAREN] = ACTIONS(5026), - [anon_sym_LT] = ACTIONS(5024), - [anon_sym_GT] = ACTIONS(5024), - [anon_sym_where] = ACTIONS(5024), - [anon_sym_DOT] = ACTIONS(5024), - [anon_sym_SEMI] = ACTIONS(5026), - [anon_sym_get] = ACTIONS(5024), - [anon_sym_set] = ACTIONS(5024), - [anon_sym_STAR] = ACTIONS(5024), - [anon_sym_DASH_GT] = ACTIONS(5026), - [sym_label] = ACTIONS(5026), - [anon_sym_in] = ACTIONS(5024), - [anon_sym_while] = ACTIONS(5024), - [anon_sym_DOT_DOT] = ACTIONS(5026), - [anon_sym_QMARK_COLON] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5026), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_else] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5026), - [anon_sym_PLUS_EQ] = ACTIONS(5026), - [anon_sym_DASH_EQ] = ACTIONS(5026), - [anon_sym_STAR_EQ] = ACTIONS(5026), - [anon_sym_SLASH_EQ] = ACTIONS(5026), - [anon_sym_PERCENT_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5024), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), - [anon_sym_EQ_EQ] = ACTIONS(5024), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), - [anon_sym_LT_EQ] = ACTIONS(5026), - [anon_sym_GT_EQ] = ACTIONS(5026), - [anon_sym_BANGin] = ACTIONS(5026), - [anon_sym_is] = ACTIONS(5024), - [anon_sym_BANGis] = ACTIONS(5026), - [anon_sym_PLUS] = ACTIONS(5024), - [anon_sym_DASH] = ACTIONS(5024), - [anon_sym_SLASH] = ACTIONS(5024), - [anon_sym_PERCENT] = ACTIONS(5024), - [anon_sym_as_QMARK] = ACTIONS(5026), - [anon_sym_PLUS_PLUS] = ACTIONS(5026), - [anon_sym_DASH_DASH] = ACTIONS(5026), - [anon_sym_BANG_BANG] = ACTIONS(5026), - [anon_sym_suspend] = ACTIONS(5024), - [anon_sym_sealed] = ACTIONS(5024), - [anon_sym_annotation] = ACTIONS(5024), - [anon_sym_data] = ACTIONS(5024), - [anon_sym_inner] = ACTIONS(5024), - [anon_sym_value] = ACTIONS(5024), - [anon_sym_override] = ACTIONS(5024), - [anon_sym_lateinit] = ACTIONS(5024), - [anon_sym_public] = ACTIONS(5024), - [anon_sym_private] = ACTIONS(5024), - [anon_sym_internal] = ACTIONS(5024), - [anon_sym_protected] = ACTIONS(5024), - [anon_sym_tailrec] = ACTIONS(5024), - [anon_sym_operator] = ACTIONS(5024), - [anon_sym_infix] = ACTIONS(5024), - [anon_sym_inline] = ACTIONS(5024), - [anon_sym_external] = ACTIONS(5024), - [sym_property_modifier] = ACTIONS(5024), - [anon_sym_abstract] = ACTIONS(5024), - [anon_sym_final] = ACTIONS(5024), - [anon_sym_open] = ACTIONS(5024), - [anon_sym_vararg] = ACTIONS(5024), - [anon_sym_noinline] = ACTIONS(5024), - [anon_sym_crossinline] = ACTIONS(5024), - [anon_sym_expect] = ACTIONS(5024), - [anon_sym_actual] = ACTIONS(5024), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5026), - [sym_safe_nav] = ACTIONS(5026), + [aux_sym_type_constraints_repeat1] = STATE(3651), + [sym__alpha_identifier] = ACTIONS(4424), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_as] = ACTIONS(4424), + [anon_sym_EQ] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(6956), + [anon_sym_by] = ACTIONS(4424), + [anon_sym_LT] = ACTIONS(4424), + [anon_sym_GT] = ACTIONS(4424), + [anon_sym_where] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym_get] = ACTIONS(4424), + [anon_sym_set] = ACTIONS(4424), + [anon_sym_STAR] = ACTIONS(4424), + [sym_label] = ACTIONS(4426), + [anon_sym_in] = ACTIONS(4424), + [anon_sym_DOT_DOT] = ACTIONS(4426), + [anon_sym_QMARK_COLON] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_PIPE_PIPE] = ACTIONS(4426), + [anon_sym_else] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_PERCENT_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4424), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4426), + [anon_sym_EQ_EQ] = ACTIONS(4424), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4426), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_BANGin] = ACTIONS(4426), + [anon_sym_is] = ACTIONS(4424), + [anon_sym_BANGis] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_SLASH] = ACTIONS(4424), + [anon_sym_PERCENT] = ACTIONS(4424), + [anon_sym_as_QMARK] = ACTIONS(4426), + [anon_sym_PLUS_PLUS] = ACTIONS(4426), + [anon_sym_DASH_DASH] = ACTIONS(4426), + [anon_sym_BANG_BANG] = ACTIONS(4426), + [anon_sym_suspend] = ACTIONS(4424), + [anon_sym_sealed] = ACTIONS(4424), + [anon_sym_annotation] = ACTIONS(4424), + [anon_sym_data] = ACTIONS(4424), + [anon_sym_inner] = ACTIONS(4424), + [anon_sym_value] = ACTIONS(4424), + [anon_sym_override] = ACTIONS(4424), + [anon_sym_lateinit] = ACTIONS(4424), + [anon_sym_public] = ACTIONS(4424), + [anon_sym_private] = ACTIONS(4424), + [anon_sym_internal] = ACTIONS(4424), + [anon_sym_protected] = ACTIONS(4424), + [anon_sym_tailrec] = ACTIONS(4424), + [anon_sym_operator] = ACTIONS(4424), + [anon_sym_infix] = ACTIONS(4424), + [anon_sym_inline] = ACTIONS(4424), + [anon_sym_external] = ACTIONS(4424), + [sym_property_modifier] = ACTIONS(4424), + [anon_sym_abstract] = ACTIONS(4424), + [anon_sym_final] = ACTIONS(4424), + [anon_sym_open] = ACTIONS(4424), + [anon_sym_vararg] = ACTIONS(4424), + [anon_sym_noinline] = ACTIONS(4424), + [anon_sym_crossinline] = ACTIONS(4424), + [anon_sym_expect] = ACTIONS(4424), + [anon_sym_actual] = ACTIONS(4424), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4426), + [sym__automatic_semicolon] = ACTIONS(4426), + [sym_safe_nav] = ACTIONS(4426), [sym_multiline_comment] = ACTIONS(3), }, [3639] = { - [sym_function_body] = STATE(3185), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(7046), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_where] = ACTIONS(4269), - [anon_sym_object] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_this] = ACTIONS(4269), - [anon_sym_super] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4271), - [sym_label] = ACTIONS(4269), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_null] = ACTIONS(4269), - [anon_sym_if] = ACTIONS(4269), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_when] = ACTIONS(4269), - [anon_sym_try] = ACTIONS(4269), - [anon_sym_throw] = ACTIONS(4269), - [anon_sym_return] = ACTIONS(4269), - [anon_sym_continue] = ACTIONS(4269), - [anon_sym_break] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4269), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4271), - [anon_sym_continue_AT] = ACTIONS(4271), - [anon_sym_break_AT] = ACTIONS(4271), - [anon_sym_this_AT] = ACTIONS(4271), - [anon_sym_super_AT] = ACTIONS(4271), - [sym_real_literal] = ACTIONS(4271), - [sym_integer_literal] = ACTIONS(4269), - [sym_hex_literal] = ACTIONS(4271), - [sym_bin_literal] = ACTIONS(4271), - [anon_sym_true] = ACTIONS(4269), - [anon_sym_false] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4271), - [sym__backtick_identifier] = ACTIONS(4271), - [sym__automatic_semicolon] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4271), + [aux_sym__delegation_specifiers_repeat1] = STATE(3295), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(6962), + [anon_sym_RPAREN] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), }, [3640] = { - [sym__alpha_identifier] = ACTIONS(5016), - [anon_sym_AT] = ACTIONS(5018), - [anon_sym_LBRACK] = ACTIONS(5018), - [anon_sym_RBRACK] = ACTIONS(5018), - [anon_sym_as] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(5016), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_RBRACE] = ACTIONS(5018), - [anon_sym_LPAREN] = ACTIONS(5018), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_RPAREN] = ACTIONS(5018), - [anon_sym_LT] = ACTIONS(5016), - [anon_sym_GT] = ACTIONS(5016), - [anon_sym_where] = ACTIONS(5016), - [anon_sym_DOT] = ACTIONS(5016), - [anon_sym_SEMI] = ACTIONS(5018), - [anon_sym_get] = ACTIONS(5016), - [anon_sym_set] = ACTIONS(5016), - [anon_sym_STAR] = ACTIONS(5016), - [anon_sym_DASH_GT] = ACTIONS(5018), - [sym_label] = ACTIONS(5018), - [anon_sym_in] = ACTIONS(5016), - [anon_sym_while] = ACTIONS(5016), - [anon_sym_DOT_DOT] = ACTIONS(5018), - [anon_sym_QMARK_COLON] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_else] = ACTIONS(5016), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym_PLUS_EQ] = ACTIONS(5018), - [anon_sym_DASH_EQ] = ACTIONS(5018), - [anon_sym_STAR_EQ] = ACTIONS(5018), - [anon_sym_SLASH_EQ] = ACTIONS(5018), - [anon_sym_PERCENT_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5018), - [anon_sym_EQ_EQ] = ACTIONS(5016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5018), - [anon_sym_GT_EQ] = ACTIONS(5018), - [anon_sym_BANGin] = ACTIONS(5018), - [anon_sym_is] = ACTIONS(5016), - [anon_sym_BANGis] = ACTIONS(5018), - [anon_sym_PLUS] = ACTIONS(5016), - [anon_sym_DASH] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5016), - [anon_sym_PERCENT] = ACTIONS(5016), - [anon_sym_as_QMARK] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_BANG_BANG] = ACTIONS(5018), - [anon_sym_suspend] = ACTIONS(5016), - [anon_sym_sealed] = ACTIONS(5016), - [anon_sym_annotation] = ACTIONS(5016), - [anon_sym_data] = ACTIONS(5016), - [anon_sym_inner] = ACTIONS(5016), - [anon_sym_value] = ACTIONS(5016), - [anon_sym_override] = ACTIONS(5016), - [anon_sym_lateinit] = ACTIONS(5016), - [anon_sym_public] = ACTIONS(5016), - [anon_sym_private] = ACTIONS(5016), - [anon_sym_internal] = ACTIONS(5016), - [anon_sym_protected] = ACTIONS(5016), - [anon_sym_tailrec] = ACTIONS(5016), - [anon_sym_operator] = ACTIONS(5016), - [anon_sym_infix] = ACTIONS(5016), - [anon_sym_inline] = ACTIONS(5016), - [anon_sym_external] = ACTIONS(5016), - [sym_property_modifier] = ACTIONS(5016), - [anon_sym_abstract] = ACTIONS(5016), - [anon_sym_final] = ACTIONS(5016), - [anon_sym_open] = ACTIONS(5016), - [anon_sym_vararg] = ACTIONS(5016), - [anon_sym_noinline] = ACTIONS(5016), - [anon_sym_crossinline] = ACTIONS(5016), - [anon_sym_expect] = ACTIONS(5016), - [anon_sym_actual] = ACTIONS(5016), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5018), - [sym_safe_nav] = ACTIONS(5018), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), }, [3641] = { - [sym__alpha_identifier] = ACTIONS(5012), - [anon_sym_AT] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5014), - [anon_sym_RBRACK] = ACTIONS(5014), - [anon_sym_as] = ACTIONS(5012), - [anon_sym_EQ] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5014), - [anon_sym_RBRACE] = ACTIONS(5014), - [anon_sym_LPAREN] = ACTIONS(5014), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_RPAREN] = ACTIONS(5014), - [anon_sym_LT] = ACTIONS(5012), - [anon_sym_GT] = ACTIONS(5012), - [anon_sym_where] = ACTIONS(5012), - [anon_sym_DOT] = ACTIONS(5012), - [anon_sym_SEMI] = ACTIONS(5014), - [anon_sym_get] = ACTIONS(5012), - [anon_sym_set] = ACTIONS(5012), - [anon_sym_STAR] = ACTIONS(5012), - [anon_sym_DASH_GT] = ACTIONS(5014), - [sym_label] = ACTIONS(5014), - [anon_sym_in] = ACTIONS(5012), - [anon_sym_while] = ACTIONS(5012), - [anon_sym_DOT_DOT] = ACTIONS(5014), - [anon_sym_QMARK_COLON] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5014), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_else] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5014), - [anon_sym_PLUS_EQ] = ACTIONS(5014), - [anon_sym_DASH_EQ] = ACTIONS(5014), - [anon_sym_STAR_EQ] = ACTIONS(5014), - [anon_sym_SLASH_EQ] = ACTIONS(5014), - [anon_sym_PERCENT_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5012), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5014), - [anon_sym_EQ_EQ] = ACTIONS(5012), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5014), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_BANGin] = ACTIONS(5014), - [anon_sym_is] = ACTIONS(5012), - [anon_sym_BANGis] = ACTIONS(5014), - [anon_sym_PLUS] = ACTIONS(5012), - [anon_sym_DASH] = ACTIONS(5012), - [anon_sym_SLASH] = ACTIONS(5012), - [anon_sym_PERCENT] = ACTIONS(5012), - [anon_sym_as_QMARK] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_BANG_BANG] = ACTIONS(5014), - [anon_sym_suspend] = ACTIONS(5012), - [anon_sym_sealed] = ACTIONS(5012), - [anon_sym_annotation] = ACTIONS(5012), - [anon_sym_data] = ACTIONS(5012), - [anon_sym_inner] = ACTIONS(5012), - [anon_sym_value] = ACTIONS(5012), - [anon_sym_override] = ACTIONS(5012), - [anon_sym_lateinit] = ACTIONS(5012), - [anon_sym_public] = ACTIONS(5012), - [anon_sym_private] = ACTIONS(5012), - [anon_sym_internal] = ACTIONS(5012), - [anon_sym_protected] = ACTIONS(5012), - [anon_sym_tailrec] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), - [anon_sym_infix] = ACTIONS(5012), - [anon_sym_inline] = ACTIONS(5012), - [anon_sym_external] = ACTIONS(5012), - [sym_property_modifier] = ACTIONS(5012), - [anon_sym_abstract] = ACTIONS(5012), - [anon_sym_final] = ACTIONS(5012), - [anon_sym_open] = ACTIONS(5012), - [anon_sym_vararg] = ACTIONS(5012), - [anon_sym_noinline] = ACTIONS(5012), - [anon_sym_crossinline] = ACTIONS(5012), - [anon_sym_expect] = ACTIONS(5012), - [anon_sym_actual] = ACTIONS(5012), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5014), - [sym_safe_nav] = ACTIONS(5014), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, [3642] = { - [sym_class_body] = STATE(4091), + [sym__alpha_identifier] = ACTIONS(4702), + [anon_sym_AT] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_by] = ACTIONS(4702), + [anon_sym_where] = ACTIONS(4702), + [anon_sym_object] = ACTIONS(4702), + [anon_sym_fun] = ACTIONS(4702), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_get] = ACTIONS(4702), + [anon_sym_set] = ACTIONS(4702), + [anon_sym_this] = ACTIONS(4702), + [anon_sym_super] = ACTIONS(4702), + [anon_sym_STAR] = ACTIONS(4704), + [sym_label] = ACTIONS(4702), + [anon_sym_in] = ACTIONS(4702), + [anon_sym_null] = ACTIONS(4702), + [anon_sym_if] = ACTIONS(4702), + [anon_sym_else] = ACTIONS(4702), + [anon_sym_when] = ACTIONS(4702), + [anon_sym_try] = ACTIONS(4702), + [anon_sym_throw] = ACTIONS(4702), + [anon_sym_return] = ACTIONS(4702), + [anon_sym_continue] = ACTIONS(4702), + [anon_sym_break] = ACTIONS(4702), + [anon_sym_COLON_COLON] = ACTIONS(4704), + [anon_sym_BANGin] = ACTIONS(4704), + [anon_sym_is] = ACTIONS(4702), + [anon_sym_BANGis] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4702), + [anon_sym_DASH] = ACTIONS(4702), + [anon_sym_PLUS_PLUS] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4704), + [anon_sym_BANG] = ACTIONS(4702), + [anon_sym_suspend] = ACTIONS(4702), + [anon_sym_sealed] = ACTIONS(4702), + [anon_sym_annotation] = ACTIONS(4702), + [anon_sym_data] = ACTIONS(4702), + [anon_sym_inner] = ACTIONS(4702), + [anon_sym_value] = ACTIONS(4702), + [anon_sym_override] = ACTIONS(4702), + [anon_sym_lateinit] = ACTIONS(4702), + [anon_sym_public] = ACTIONS(4702), + [anon_sym_private] = ACTIONS(4702), + [anon_sym_internal] = ACTIONS(4702), + [anon_sym_protected] = ACTIONS(4702), + [anon_sym_tailrec] = ACTIONS(4702), + [anon_sym_operator] = ACTIONS(4702), + [anon_sym_infix] = ACTIONS(4702), + [anon_sym_inline] = ACTIONS(4702), + [anon_sym_external] = ACTIONS(4702), + [sym_property_modifier] = ACTIONS(4702), + [anon_sym_abstract] = ACTIONS(4702), + [anon_sym_final] = ACTIONS(4702), + [anon_sym_open] = ACTIONS(4702), + [anon_sym_vararg] = ACTIONS(4702), + [anon_sym_noinline] = ACTIONS(4702), + [anon_sym_crossinline] = ACTIONS(4702), + [anon_sym_expect] = ACTIONS(4702), + [anon_sym_actual] = ACTIONS(4702), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4704), + [anon_sym_continue_AT] = ACTIONS(4704), + [anon_sym_break_AT] = ACTIONS(4704), + [anon_sym_this_AT] = ACTIONS(4704), + [anon_sym_super_AT] = ACTIONS(4704), + [sym_real_literal] = ACTIONS(4704), + [sym_integer_literal] = ACTIONS(4702), + [sym_hex_literal] = ACTIONS(4704), + [sym_bin_literal] = ACTIONS(4704), + [anon_sym_true] = ACTIONS(4702), + [anon_sym_false] = ACTIONS(4702), + [anon_sym_SQUOTE] = ACTIONS(4704), + [sym__backtick_identifier] = ACTIONS(4704), + [sym__automatic_semicolon] = ACTIONS(4704), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4704), + }, + [3643] = { [sym_type_constraints] = STATE(3905), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7048), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - }, - [3643] = { - [sym_type_constraints] = STATE(3894), - [sym_enum_class_body] = STATE(4114), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(6012), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [3644] = { - [sym__alpha_identifier] = ACTIONS(5008), - [anon_sym_AT] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5010), - [anon_sym_RBRACK] = ACTIONS(5010), - [anon_sym_as] = ACTIONS(5008), - [anon_sym_EQ] = ACTIONS(5008), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_RBRACE] = ACTIONS(5010), - [anon_sym_LPAREN] = ACTIONS(5010), - [anon_sym_COMMA] = ACTIONS(5010), - [anon_sym_RPAREN] = ACTIONS(5010), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_where] = ACTIONS(5008), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_SEMI] = ACTIONS(5010), - [anon_sym_get] = ACTIONS(5008), - [anon_sym_set] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [anon_sym_DASH_GT] = ACTIONS(5010), - [sym_label] = ACTIONS(5010), - [anon_sym_in] = ACTIONS(5008), - [anon_sym_while] = ACTIONS(5008), - [anon_sym_DOT_DOT] = ACTIONS(5010), - [anon_sym_QMARK_COLON] = ACTIONS(5010), - [anon_sym_AMP_AMP] = ACTIONS(5010), - [anon_sym_PIPE_PIPE] = ACTIONS(5010), - [anon_sym_else] = ACTIONS(5008), - [anon_sym_COLON_COLON] = ACTIONS(5010), - [anon_sym_PLUS_EQ] = ACTIONS(5010), - [anon_sym_DASH_EQ] = ACTIONS(5010), - [anon_sym_STAR_EQ] = ACTIONS(5010), - [anon_sym_SLASH_EQ] = ACTIONS(5010), - [anon_sym_PERCENT_EQ] = ACTIONS(5010), - [anon_sym_BANG_EQ] = ACTIONS(5008), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5010), - [anon_sym_EQ_EQ] = ACTIONS(5008), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5010), - [anon_sym_LT_EQ] = ACTIONS(5010), - [anon_sym_GT_EQ] = ACTIONS(5010), - [anon_sym_BANGin] = ACTIONS(5010), - [anon_sym_is] = ACTIONS(5008), - [anon_sym_BANGis] = ACTIONS(5010), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_as_QMARK] = ACTIONS(5010), - [anon_sym_PLUS_PLUS] = ACTIONS(5010), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_BANG_BANG] = ACTIONS(5010), - [anon_sym_suspend] = ACTIONS(5008), - [anon_sym_sealed] = ACTIONS(5008), - [anon_sym_annotation] = ACTIONS(5008), - [anon_sym_data] = ACTIONS(5008), - [anon_sym_inner] = ACTIONS(5008), - [anon_sym_value] = ACTIONS(5008), - [anon_sym_override] = ACTIONS(5008), - [anon_sym_lateinit] = ACTIONS(5008), - [anon_sym_public] = ACTIONS(5008), - [anon_sym_private] = ACTIONS(5008), - [anon_sym_internal] = ACTIONS(5008), - [anon_sym_protected] = ACTIONS(5008), - [anon_sym_tailrec] = ACTIONS(5008), - [anon_sym_operator] = ACTIONS(5008), - [anon_sym_infix] = ACTIONS(5008), - [anon_sym_inline] = ACTIONS(5008), - [anon_sym_external] = ACTIONS(5008), - [sym_property_modifier] = ACTIONS(5008), - [anon_sym_abstract] = ACTIONS(5008), - [anon_sym_final] = ACTIONS(5008), - [anon_sym_open] = ACTIONS(5008), - [anon_sym_vararg] = ACTIONS(5008), - [anon_sym_noinline] = ACTIONS(5008), - [anon_sym_crossinline] = ACTIONS(5008), - [anon_sym_expect] = ACTIONS(5008), - [anon_sym_actual] = ACTIONS(5008), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5010), - [sym_safe_nav] = ACTIONS(5010), + [sym__alpha_identifier] = ACTIONS(4471), + [anon_sym_AT] = ACTIONS(4473), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4471), + [anon_sym_EQ] = ACTIONS(4471), + [anon_sym_constructor] = ACTIONS(4471), + [anon_sym_LBRACE] = ACTIONS(4473), + [anon_sym_RBRACE] = ACTIONS(4473), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_where] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4471), + [anon_sym_SEMI] = ACTIONS(4473), + [anon_sym_get] = ACTIONS(4471), + [anon_sym_set] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [sym_label] = ACTIONS(4473), + [anon_sym_in] = ACTIONS(4471), + [anon_sym_DOT_DOT] = ACTIONS(4473), + [anon_sym_QMARK_COLON] = ACTIONS(4473), + [anon_sym_AMP_AMP] = ACTIONS(4473), + [anon_sym_PIPE_PIPE] = ACTIONS(4473), + [anon_sym_else] = ACTIONS(4471), + [anon_sym_COLON_COLON] = ACTIONS(4473), + [anon_sym_PLUS_EQ] = ACTIONS(4473), + [anon_sym_DASH_EQ] = ACTIONS(4473), + [anon_sym_STAR_EQ] = ACTIONS(4473), + [anon_sym_SLASH_EQ] = ACTIONS(4473), + [anon_sym_PERCENT_EQ] = ACTIONS(4473), + [anon_sym_BANG_EQ] = ACTIONS(4471), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4473), + [anon_sym_EQ_EQ] = ACTIONS(4471), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4473), + [anon_sym_LT_EQ] = ACTIONS(4473), + [anon_sym_GT_EQ] = ACTIONS(4473), + [anon_sym_BANGin] = ACTIONS(4473), + [anon_sym_is] = ACTIONS(4471), + [anon_sym_BANGis] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_PERCENT] = ACTIONS(4471), + [anon_sym_as_QMARK] = ACTIONS(4473), + [anon_sym_PLUS_PLUS] = ACTIONS(4473), + [anon_sym_DASH_DASH] = ACTIONS(4473), + [anon_sym_BANG_BANG] = ACTIONS(4473), + [anon_sym_suspend] = ACTIONS(4471), + [anon_sym_sealed] = ACTIONS(4471), + [anon_sym_annotation] = ACTIONS(4471), + [anon_sym_data] = ACTIONS(4471), + [anon_sym_inner] = ACTIONS(4471), + [anon_sym_value] = ACTIONS(4471), + [anon_sym_override] = ACTIONS(4471), + [anon_sym_lateinit] = ACTIONS(4471), + [anon_sym_public] = ACTIONS(4471), + [anon_sym_private] = ACTIONS(4471), + [anon_sym_internal] = ACTIONS(4471), + [anon_sym_protected] = ACTIONS(4471), + [anon_sym_tailrec] = ACTIONS(4471), + [anon_sym_operator] = ACTIONS(4471), + [anon_sym_infix] = ACTIONS(4471), + [anon_sym_inline] = ACTIONS(4471), + [anon_sym_external] = ACTIONS(4471), + [sym_property_modifier] = ACTIONS(4471), + [anon_sym_abstract] = ACTIONS(4471), + [anon_sym_final] = ACTIONS(4471), + [anon_sym_open] = ACTIONS(4471), + [anon_sym_vararg] = ACTIONS(4471), + [anon_sym_noinline] = ACTIONS(4471), + [anon_sym_crossinline] = ACTIONS(4471), + [anon_sym_expect] = ACTIONS(4471), + [anon_sym_actual] = ACTIONS(4471), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4473), + [sym__automatic_semicolon] = ACTIONS(4473), + [sym_safe_nav] = ACTIONS(4473), [sym_multiline_comment] = ACTIONS(3), }, [3645] = { - [sym__alpha_identifier] = ACTIONS(5061), - [anon_sym_AT] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_as] = ACTIONS(5061), - [anon_sym_EQ] = ACTIONS(5061), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_RBRACE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_where] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_get] = ACTIONS(5061), - [anon_sym_set] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_DASH_GT] = ACTIONS(5063), - [sym_label] = ACTIONS(5063), - [anon_sym_in] = ACTIONS(5061), - [anon_sym_while] = ACTIONS(5061), - [anon_sym_DOT_DOT] = ACTIONS(5063), - [anon_sym_QMARK_COLON] = ACTIONS(5063), - [anon_sym_AMP_AMP] = ACTIONS(5063), - [anon_sym_PIPE_PIPE] = ACTIONS(5063), - [anon_sym_else] = ACTIONS(5061), - [anon_sym_COLON_COLON] = ACTIONS(5063), - [anon_sym_PLUS_EQ] = ACTIONS(5063), - [anon_sym_DASH_EQ] = ACTIONS(5063), - [anon_sym_STAR_EQ] = ACTIONS(5063), - [anon_sym_SLASH_EQ] = ACTIONS(5063), - [anon_sym_PERCENT_EQ] = ACTIONS(5063), - [anon_sym_BANG_EQ] = ACTIONS(5061), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5063), - [anon_sym_EQ_EQ] = ACTIONS(5061), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5063), - [anon_sym_LT_EQ] = ACTIONS(5063), - [anon_sym_GT_EQ] = ACTIONS(5063), - [anon_sym_BANGin] = ACTIONS(5063), - [anon_sym_is] = ACTIONS(5061), - [anon_sym_BANGis] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_PERCENT] = ACTIONS(5061), - [anon_sym_as_QMARK] = ACTIONS(5063), - [anon_sym_PLUS_PLUS] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5063), - [anon_sym_BANG_BANG] = ACTIONS(5063), - [anon_sym_suspend] = ACTIONS(5061), - [anon_sym_sealed] = ACTIONS(5061), - [anon_sym_annotation] = ACTIONS(5061), - [anon_sym_data] = ACTIONS(5061), - [anon_sym_inner] = ACTIONS(5061), - [anon_sym_value] = ACTIONS(5061), - [anon_sym_override] = ACTIONS(5061), - [anon_sym_lateinit] = ACTIONS(5061), - [anon_sym_public] = ACTIONS(5061), - [anon_sym_private] = ACTIONS(5061), - [anon_sym_internal] = ACTIONS(5061), - [anon_sym_protected] = ACTIONS(5061), - [anon_sym_tailrec] = ACTIONS(5061), - [anon_sym_operator] = ACTIONS(5061), - [anon_sym_infix] = ACTIONS(5061), - [anon_sym_inline] = ACTIONS(5061), - [anon_sym_external] = ACTIONS(5061), - [sym_property_modifier] = ACTIONS(5061), - [anon_sym_abstract] = ACTIONS(5061), - [anon_sym_final] = ACTIONS(5061), - [anon_sym_open] = ACTIONS(5061), - [anon_sym_vararg] = ACTIONS(5061), - [anon_sym_noinline] = ACTIONS(5061), - [anon_sym_crossinline] = ACTIONS(5061), - [anon_sym_expect] = ACTIONS(5061), - [anon_sym_actual] = ACTIONS(5061), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5063), - [sym_safe_nav] = ACTIONS(5063), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, [3646] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4347), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(6978), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_object] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4350), - [anon_sym_DASH_EQ] = ACTIONS(4350), - [anon_sym_STAR_EQ] = ACTIONS(4350), - [anon_sym_SLASH_EQ] = ACTIONS(4350), - [anon_sym_PERCENT_EQ] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, [3647] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4236), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(6974), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4239), - [anon_sym_DASH_EQ] = ACTIONS(4239), - [anon_sym_STAR_EQ] = ACTIONS(4239), - [anon_sym_SLASH_EQ] = ACTIONS(4239), - [anon_sym_PERCENT_EQ] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), }, [3648] = { - [sym__alpha_identifier] = ACTIONS(4776), - [anon_sym_AT] = ACTIONS(4778), - [anon_sym_LBRACK] = ACTIONS(4778), - [anon_sym_EQ] = ACTIONS(4778), - [anon_sym_fun] = ACTIONS(4776), - [anon_sym_LBRACE] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(4778), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_by] = ACTIONS(4776), - [anon_sym_where] = ACTIONS(4776), - [anon_sym_object] = ACTIONS(4776), - [anon_sym_SEMI] = ACTIONS(4778), - [anon_sym_get] = ACTIONS(4776), - [anon_sym_set] = ACTIONS(4776), - [anon_sym_this] = ACTIONS(4776), - [anon_sym_super] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4778), - [sym_label] = ACTIONS(4776), - [anon_sym_in] = ACTIONS(4776), - [anon_sym_null] = ACTIONS(4776), - [anon_sym_if] = ACTIONS(4776), - [anon_sym_else] = ACTIONS(4776), - [anon_sym_when] = ACTIONS(4776), - [anon_sym_try] = ACTIONS(4776), - [anon_sym_throw] = ACTIONS(4776), - [anon_sym_return] = ACTIONS(4776), - [anon_sym_continue] = ACTIONS(4776), - [anon_sym_break] = ACTIONS(4776), - [anon_sym_COLON_COLON] = ACTIONS(4778), - [anon_sym_BANGin] = ACTIONS(4778), - [anon_sym_is] = ACTIONS(4776), - [anon_sym_BANGis] = ACTIONS(4778), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_PLUS_PLUS] = ACTIONS(4778), - [anon_sym_DASH_DASH] = ACTIONS(4778), - [anon_sym_BANG] = ACTIONS(4776), - [anon_sym_suspend] = ACTIONS(4776), - [anon_sym_sealed] = ACTIONS(4776), - [anon_sym_annotation] = ACTIONS(4776), - [anon_sym_data] = ACTIONS(4776), - [anon_sym_inner] = ACTIONS(4776), - [anon_sym_value] = ACTIONS(4776), - [anon_sym_override] = ACTIONS(4776), - [anon_sym_lateinit] = ACTIONS(4776), - [anon_sym_public] = ACTIONS(4776), - [anon_sym_private] = ACTIONS(4776), - [anon_sym_internal] = ACTIONS(4776), - [anon_sym_protected] = ACTIONS(4776), - [anon_sym_tailrec] = ACTIONS(4776), - [anon_sym_operator] = ACTIONS(4776), - [anon_sym_infix] = ACTIONS(4776), - [anon_sym_inline] = ACTIONS(4776), - [anon_sym_external] = ACTIONS(4776), - [sym_property_modifier] = ACTIONS(4776), - [anon_sym_abstract] = ACTIONS(4776), - [anon_sym_final] = ACTIONS(4776), - [anon_sym_open] = ACTIONS(4776), - [anon_sym_vararg] = ACTIONS(4776), - [anon_sym_noinline] = ACTIONS(4776), - [anon_sym_crossinline] = ACTIONS(4776), - [anon_sym_expect] = ACTIONS(4776), - [anon_sym_actual] = ACTIONS(4776), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4778), - [anon_sym_continue_AT] = ACTIONS(4778), - [anon_sym_break_AT] = ACTIONS(4778), - [anon_sym_this_AT] = ACTIONS(4778), - [anon_sym_super_AT] = ACTIONS(4778), - [sym_real_literal] = ACTIONS(4778), - [sym_integer_literal] = ACTIONS(4776), - [sym_hex_literal] = ACTIONS(4778), - [sym_bin_literal] = ACTIONS(4778), - [anon_sym_true] = ACTIONS(4776), - [anon_sym_false] = ACTIONS(4776), - [anon_sym_SQUOTE] = ACTIONS(4778), - [sym__backtick_identifier] = ACTIONS(4778), - [sym__automatic_semicolon] = ACTIONS(4778), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4778), + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_typealias] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4004), + [anon_sym_interface] = ACTIONS(4004), + [anon_sym_enum] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4004), + [anon_sym_var] = ACTIONS(4004), + [anon_sym_LT] = ACTIONS(4009), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4009), + [sym_label] = ACTIONS(4004), + [anon_sym_for] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_do] = ACTIONS(4004), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [3649] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_object] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(7050), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_this] = ACTIONS(4926), - [anon_sym_super] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_if] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7052), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4926), - [anon_sym_throw] = ACTIONS(4926), - [anon_sym_return] = ACTIONS(4926), - [anon_sym_continue] = ACTIONS(4926), - [anon_sym_break] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_PLUS_EQ] = ACTIONS(4928), - [anon_sym_DASH_EQ] = ACTIONS(4928), - [anon_sym_STAR_EQ] = ACTIONS(4928), - [anon_sym_SLASH_EQ] = ACTIONS(4928), - [anon_sym_PERCENT_EQ] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4928), - [anon_sym_continue_AT] = ACTIONS(4928), - [anon_sym_break_AT] = ACTIONS(4928), - [anon_sym_this_AT] = ACTIONS(4928), - [anon_sym_super_AT] = ACTIONS(4928), - [sym_real_literal] = ACTIONS(4928), - [sym_integer_literal] = ACTIONS(4926), - [sym_hex_literal] = ACTIONS(4928), - [sym_bin_literal] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [anon_sym_SQUOTE] = ACTIONS(4928), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), }, [3650] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_object] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_this] = ACTIONS(4926), - [anon_sym_super] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_if] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7052), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4926), - [anon_sym_throw] = ACTIONS(4926), - [anon_sym_return] = ACTIONS(4926), - [anon_sym_continue] = ACTIONS(4926), - [anon_sym_break] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_PLUS_EQ] = ACTIONS(4928), - [anon_sym_DASH_EQ] = ACTIONS(4928), - [anon_sym_STAR_EQ] = ACTIONS(4928), - [anon_sym_SLASH_EQ] = ACTIONS(4928), - [anon_sym_PERCENT_EQ] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4928), - [anon_sym_continue_AT] = ACTIONS(4928), - [anon_sym_break_AT] = ACTIONS(4928), - [anon_sym_this_AT] = ACTIONS(4928), - [anon_sym_super_AT] = ACTIONS(4928), - [sym_real_literal] = ACTIONS(4928), - [sym_integer_literal] = ACTIONS(4926), - [sym_hex_literal] = ACTIONS(4928), - [sym_bin_literal] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [anon_sym_SQUOTE] = ACTIONS(4928), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym_type_constraints] = STATE(3717), + [sym_enum_class_body] = STATE(3831), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4483), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), }, [3651] = { - [sym_class_body] = STATE(4114), - [sym_type_constraints] = STATE(3893), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(6010), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [aux_sym_type_constraints_repeat1] = STATE(3651), + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(6973), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [sym_label] = ACTIONS(4432), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), [sym_multiline_comment] = ACTIONS(3), }, [3652] = { - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_RBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(4459), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_RPAREN] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_DASH_GT] = ACTIONS(4459), - [sym_label] = ACTIONS(4459), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_while] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_suspend] = ACTIONS(4457), - [anon_sym_sealed] = ACTIONS(4457), - [anon_sym_annotation] = ACTIONS(4457), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_override] = ACTIONS(4457), - [anon_sym_lateinit] = ACTIONS(4457), - [anon_sym_public] = ACTIONS(4457), - [anon_sym_private] = ACTIONS(4457), - [anon_sym_internal] = ACTIONS(4457), - [anon_sym_protected] = ACTIONS(4457), - [anon_sym_tailrec] = ACTIONS(4457), - [anon_sym_operator] = ACTIONS(4457), - [anon_sym_infix] = ACTIONS(4457), - [anon_sym_inline] = ACTIONS(4457), - [anon_sym_external] = ACTIONS(4457), - [sym_property_modifier] = ACTIONS(4457), - [anon_sym_abstract] = ACTIONS(4457), - [anon_sym_final] = ACTIONS(4457), - [anon_sym_open] = ACTIONS(4457), - [anon_sym_vararg] = ACTIONS(4457), - [anon_sym_noinline] = ACTIONS(4457), - [anon_sym_crossinline] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [3653] = { - [sym__alpha_identifier] = ACTIONS(5000), - [anon_sym_AT] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5002), - [anon_sym_RBRACK] = ACTIONS(5002), - [anon_sym_as] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_LPAREN] = ACTIONS(5002), - [anon_sym_COMMA] = ACTIONS(5002), - [anon_sym_RPAREN] = ACTIONS(5002), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_where] = ACTIONS(5000), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5002), - [anon_sym_get] = ACTIONS(5000), - [anon_sym_set] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(5000), - [anon_sym_DASH_GT] = ACTIONS(5002), - [sym_label] = ACTIONS(5002), - [anon_sym_in] = ACTIONS(5000), - [anon_sym_while] = ACTIONS(5000), - [anon_sym_DOT_DOT] = ACTIONS(5002), - [anon_sym_QMARK_COLON] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_PIPE_PIPE] = ACTIONS(5002), - [anon_sym_else] = ACTIONS(5000), - [anon_sym_COLON_COLON] = ACTIONS(5002), - [anon_sym_PLUS_EQ] = ACTIONS(5002), - [anon_sym_DASH_EQ] = ACTIONS(5002), - [anon_sym_STAR_EQ] = ACTIONS(5002), - [anon_sym_SLASH_EQ] = ACTIONS(5002), - [anon_sym_PERCENT_EQ] = ACTIONS(5002), - [anon_sym_BANG_EQ] = ACTIONS(5000), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5002), - [anon_sym_EQ_EQ] = ACTIONS(5000), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5002), - [anon_sym_LT_EQ] = ACTIONS(5002), - [anon_sym_GT_EQ] = ACTIONS(5002), - [anon_sym_BANGin] = ACTIONS(5002), - [anon_sym_is] = ACTIONS(5000), - [anon_sym_BANGis] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(5000), - [anon_sym_as_QMARK] = ACTIONS(5002), - [anon_sym_PLUS_PLUS] = ACTIONS(5002), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_BANG_BANG] = ACTIONS(5002), - [anon_sym_suspend] = ACTIONS(5000), - [anon_sym_sealed] = ACTIONS(5000), - [anon_sym_annotation] = ACTIONS(5000), - [anon_sym_data] = ACTIONS(5000), - [anon_sym_inner] = ACTIONS(5000), - [anon_sym_value] = ACTIONS(5000), - [anon_sym_override] = ACTIONS(5000), - [anon_sym_lateinit] = ACTIONS(5000), - [anon_sym_public] = ACTIONS(5000), - [anon_sym_private] = ACTIONS(5000), - [anon_sym_internal] = ACTIONS(5000), - [anon_sym_protected] = ACTIONS(5000), - [anon_sym_tailrec] = ACTIONS(5000), - [anon_sym_operator] = ACTIONS(5000), - [anon_sym_infix] = ACTIONS(5000), - [anon_sym_inline] = ACTIONS(5000), - [anon_sym_external] = ACTIONS(5000), - [sym_property_modifier] = ACTIONS(5000), - [anon_sym_abstract] = ACTIONS(5000), - [anon_sym_final] = ACTIONS(5000), - [anon_sym_open] = ACTIONS(5000), - [anon_sym_vararg] = ACTIONS(5000), - [anon_sym_noinline] = ACTIONS(5000), - [anon_sym_crossinline] = ACTIONS(5000), - [anon_sym_expect] = ACTIONS(5000), - [anon_sym_actual] = ACTIONS(5000), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5002), - [sym_safe_nav] = ACTIONS(5002), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [3654] = { - [sym__alpha_identifier] = ACTIONS(4996), - [anon_sym_AT] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_RBRACK] = ACTIONS(4998), - [anon_sym_as] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LPAREN] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_where] = ACTIONS(4996), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_get] = ACTIONS(4996), - [anon_sym_set] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_DASH_GT] = ACTIONS(4998), - [sym_label] = ACTIONS(4998), - [anon_sym_in] = ACTIONS(4996), - [anon_sym_while] = ACTIONS(4996), - [anon_sym_DOT_DOT] = ACTIONS(4998), - [anon_sym_QMARK_COLON] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_else] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4996), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4998), - [anon_sym_EQ_EQ] = ACTIONS(4996), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_BANGin] = ACTIONS(4998), - [anon_sym_is] = ACTIONS(4996), - [anon_sym_BANGis] = ACTIONS(4998), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_as_QMARK] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_BANG_BANG] = ACTIONS(4998), - [anon_sym_suspend] = ACTIONS(4996), - [anon_sym_sealed] = ACTIONS(4996), - [anon_sym_annotation] = ACTIONS(4996), - [anon_sym_data] = ACTIONS(4996), - [anon_sym_inner] = ACTIONS(4996), - [anon_sym_value] = ACTIONS(4996), - [anon_sym_override] = ACTIONS(4996), - [anon_sym_lateinit] = ACTIONS(4996), - [anon_sym_public] = ACTIONS(4996), - [anon_sym_private] = ACTIONS(4996), - [anon_sym_internal] = ACTIONS(4996), - [anon_sym_protected] = ACTIONS(4996), - [anon_sym_tailrec] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), - [anon_sym_infix] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym_external] = ACTIONS(4996), - [sym_property_modifier] = ACTIONS(4996), - [anon_sym_abstract] = ACTIONS(4996), - [anon_sym_final] = ACTIONS(4996), - [anon_sym_open] = ACTIONS(4996), - [anon_sym_vararg] = ACTIONS(4996), - [anon_sym_noinline] = ACTIONS(4996), - [anon_sym_crossinline] = ACTIONS(4996), - [anon_sym_expect] = ACTIONS(4996), - [anon_sym_actual] = ACTIONS(4996), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4998), - [sym_safe_nav] = ACTIONS(4998), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, [3655] = { - [sym_type_constraints] = STATE(3891), - [sym_enum_class_body] = STATE(4152), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7054), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym_type_constraints] = STATE(3913), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [3656] = { - [sym__alpha_identifier] = ACTIONS(5119), - [anon_sym_AT] = ACTIONS(5121), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_RBRACK] = ACTIONS(5121), - [anon_sym_as] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5121), - [anon_sym_RBRACE] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5121), - [anon_sym_COMMA] = ACTIONS(5121), - [anon_sym_RPAREN] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5119), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5121), - [anon_sym_get] = ACTIONS(5119), - [anon_sym_set] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_DASH_GT] = ACTIONS(5121), - [sym_label] = ACTIONS(5121), - [anon_sym_in] = ACTIONS(5119), - [anon_sym_while] = ACTIONS(5119), - [anon_sym_DOT_DOT] = ACTIONS(5121), - [anon_sym_QMARK_COLON] = ACTIONS(5121), - [anon_sym_AMP_AMP] = ACTIONS(5121), - [anon_sym_PIPE_PIPE] = ACTIONS(5121), - [anon_sym_else] = ACTIONS(5119), - [anon_sym_COLON_COLON] = ACTIONS(5121), - [anon_sym_PLUS_EQ] = ACTIONS(5121), - [anon_sym_DASH_EQ] = ACTIONS(5121), - [anon_sym_STAR_EQ] = ACTIONS(5121), - [anon_sym_SLASH_EQ] = ACTIONS(5121), - [anon_sym_PERCENT_EQ] = ACTIONS(5121), - [anon_sym_BANG_EQ] = ACTIONS(5119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5121), - [anon_sym_EQ_EQ] = ACTIONS(5119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5121), - [anon_sym_LT_EQ] = ACTIONS(5121), - [anon_sym_GT_EQ] = ACTIONS(5121), - [anon_sym_BANGin] = ACTIONS(5121), - [anon_sym_is] = ACTIONS(5119), - [anon_sym_BANGis] = ACTIONS(5121), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_as_QMARK] = ACTIONS(5121), - [anon_sym_PLUS_PLUS] = ACTIONS(5121), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_BANG_BANG] = ACTIONS(5121), - [anon_sym_suspend] = ACTIONS(5119), - [anon_sym_sealed] = ACTIONS(5119), - [anon_sym_annotation] = ACTIONS(5119), - [anon_sym_data] = ACTIONS(5119), - [anon_sym_inner] = ACTIONS(5119), - [anon_sym_value] = ACTIONS(5119), - [anon_sym_override] = ACTIONS(5119), - [anon_sym_lateinit] = ACTIONS(5119), - [anon_sym_public] = ACTIONS(5119), - [anon_sym_private] = ACTIONS(5119), - [anon_sym_internal] = ACTIONS(5119), - [anon_sym_protected] = ACTIONS(5119), - [anon_sym_tailrec] = ACTIONS(5119), - [anon_sym_operator] = ACTIONS(5119), - [anon_sym_infix] = ACTIONS(5119), - [anon_sym_inline] = ACTIONS(5119), - [anon_sym_external] = ACTIONS(5119), - [sym_property_modifier] = ACTIONS(5119), - [anon_sym_abstract] = ACTIONS(5119), - [anon_sym_final] = ACTIONS(5119), - [anon_sym_open] = ACTIONS(5119), - [anon_sym_vararg] = ACTIONS(5119), - [anon_sym_noinline] = ACTIONS(5119), - [anon_sym_crossinline] = ACTIONS(5119), - [anon_sym_expect] = ACTIONS(5119), - [anon_sym_actual] = ACTIONS(5119), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5121), - [sym_safe_nav] = ACTIONS(5121), + [sym_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, [3657] = { - [sym__alpha_identifier] = ACTIONS(4992), - [anon_sym_AT] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_RBRACK] = ACTIONS(4994), - [anon_sym_as] = ACTIONS(4992), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_where] = ACTIONS(4992), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym_get] = ACTIONS(4992), - [anon_sym_set] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [anon_sym_DASH_GT] = ACTIONS(4994), - [sym_label] = ACTIONS(4994), - [anon_sym_in] = ACTIONS(4992), - [anon_sym_while] = ACTIONS(4992), - [anon_sym_DOT_DOT] = ACTIONS(4994), - [anon_sym_QMARK_COLON] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_else] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), - [anon_sym_EQ_EQ] = ACTIONS(4992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_BANGin] = ACTIONS(4994), - [anon_sym_is] = ACTIONS(4992), - [anon_sym_BANGis] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_as_QMARK] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_BANG_BANG] = ACTIONS(4994), - [anon_sym_suspend] = ACTIONS(4992), - [anon_sym_sealed] = ACTIONS(4992), - [anon_sym_annotation] = ACTIONS(4992), - [anon_sym_data] = ACTIONS(4992), - [anon_sym_inner] = ACTIONS(4992), - [anon_sym_value] = ACTIONS(4992), - [anon_sym_override] = ACTIONS(4992), - [anon_sym_lateinit] = ACTIONS(4992), - [anon_sym_public] = ACTIONS(4992), - [anon_sym_private] = ACTIONS(4992), - [anon_sym_internal] = ACTIONS(4992), - [anon_sym_protected] = ACTIONS(4992), - [anon_sym_tailrec] = ACTIONS(4992), - [anon_sym_operator] = ACTIONS(4992), - [anon_sym_infix] = ACTIONS(4992), - [anon_sym_inline] = ACTIONS(4992), - [anon_sym_external] = ACTIONS(4992), - [sym_property_modifier] = ACTIONS(4992), - [anon_sym_abstract] = ACTIONS(4992), - [anon_sym_final] = ACTIONS(4992), - [anon_sym_open] = ACTIONS(4992), - [anon_sym_vararg] = ACTIONS(4992), - [anon_sym_noinline] = ACTIONS(4992), - [anon_sym_crossinline] = ACTIONS(4992), - [anon_sym_expect] = ACTIONS(4992), - [anon_sym_actual] = ACTIONS(4992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4994), - [sym_safe_nav] = ACTIONS(4994), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_constructor] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4181), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_object] = ACTIONS(4179), + [anon_sym_fun] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_this] = ACTIONS(4179), + [anon_sym_super] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4181), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_throw] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4181), + [anon_sym_continue_AT] = ACTIONS(4181), + [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [anon_sym_SQUOTE] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4181), + [sym__automatic_semicolon] = ACTIONS(4181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4181), }, [3658] = { - [sym__alpha_identifier] = ACTIONS(4988), - [anon_sym_AT] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_RBRACK] = ACTIONS(4990), - [anon_sym_as] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_LPAREN] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_where] = ACTIONS(4988), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_SEMI] = ACTIONS(4990), - [anon_sym_get] = ACTIONS(4988), - [anon_sym_set] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_DASH_GT] = ACTIONS(4990), - [sym_label] = ACTIONS(4990), - [anon_sym_in] = ACTIONS(4988), - [anon_sym_while] = ACTIONS(4988), - [anon_sym_DOT_DOT] = ACTIONS(4990), - [anon_sym_QMARK_COLON] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_else] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4988), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4990), - [anon_sym_EQ_EQ] = ACTIONS(4988), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_BANGin] = ACTIONS(4990), - [anon_sym_is] = ACTIONS(4988), - [anon_sym_BANGis] = ACTIONS(4990), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_as_QMARK] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_BANG_BANG] = ACTIONS(4990), - [anon_sym_suspend] = ACTIONS(4988), - [anon_sym_sealed] = ACTIONS(4988), - [anon_sym_annotation] = ACTIONS(4988), - [anon_sym_data] = ACTIONS(4988), - [anon_sym_inner] = ACTIONS(4988), - [anon_sym_value] = ACTIONS(4988), - [anon_sym_override] = ACTIONS(4988), - [anon_sym_lateinit] = ACTIONS(4988), - [anon_sym_public] = ACTIONS(4988), - [anon_sym_private] = ACTIONS(4988), - [anon_sym_internal] = ACTIONS(4988), - [anon_sym_protected] = ACTIONS(4988), - [anon_sym_tailrec] = ACTIONS(4988), - [anon_sym_operator] = ACTIONS(4988), - [anon_sym_infix] = ACTIONS(4988), - [anon_sym_inline] = ACTIONS(4988), - [anon_sym_external] = ACTIONS(4988), - [sym_property_modifier] = ACTIONS(4988), - [anon_sym_abstract] = ACTIONS(4988), - [anon_sym_final] = ACTIONS(4988), - [anon_sym_open] = ACTIONS(4988), - [anon_sym_vararg] = ACTIONS(4988), - [anon_sym_noinline] = ACTIONS(4988), - [anon_sym_crossinline] = ACTIONS(4988), - [anon_sym_expect] = ACTIONS(4988), - [anon_sym_actual] = ACTIONS(4988), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4990), - [sym_safe_nav] = ACTIONS(4990), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6976), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [anon_sym_DASH_GT] = ACTIONS(4265), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [3659] = { - [sym__alpha_identifier] = ACTIONS(4984), - [anon_sym_AT] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4986), - [anon_sym_RBRACK] = ACTIONS(4986), - [anon_sym_as] = ACTIONS(4984), - [anon_sym_EQ] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4986), - [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_LPAREN] = ACTIONS(4986), - [anon_sym_COMMA] = ACTIONS(4986), - [anon_sym_RPAREN] = ACTIONS(4986), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_GT] = ACTIONS(4984), - [anon_sym_where] = ACTIONS(4984), - [anon_sym_DOT] = ACTIONS(4984), - [anon_sym_SEMI] = ACTIONS(4986), - [anon_sym_get] = ACTIONS(4984), - [anon_sym_set] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4984), - [anon_sym_DASH_GT] = ACTIONS(4986), - [sym_label] = ACTIONS(4986), - [anon_sym_in] = ACTIONS(4984), - [anon_sym_while] = ACTIONS(4984), - [anon_sym_DOT_DOT] = ACTIONS(4986), - [anon_sym_QMARK_COLON] = ACTIONS(4986), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_else] = ACTIONS(4984), - [anon_sym_COLON_COLON] = ACTIONS(4986), - [anon_sym_PLUS_EQ] = ACTIONS(4986), - [anon_sym_DASH_EQ] = ACTIONS(4986), - [anon_sym_STAR_EQ] = ACTIONS(4986), - [anon_sym_SLASH_EQ] = ACTIONS(4986), - [anon_sym_PERCENT_EQ] = ACTIONS(4986), - [anon_sym_BANG_EQ] = ACTIONS(4984), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4986), - [anon_sym_EQ_EQ] = ACTIONS(4984), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4986), - [anon_sym_LT_EQ] = ACTIONS(4986), - [anon_sym_GT_EQ] = ACTIONS(4986), - [anon_sym_BANGin] = ACTIONS(4986), - [anon_sym_is] = ACTIONS(4984), - [anon_sym_BANGis] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4984), - [anon_sym_as_QMARK] = ACTIONS(4986), - [anon_sym_PLUS_PLUS] = ACTIONS(4986), - [anon_sym_DASH_DASH] = ACTIONS(4986), - [anon_sym_BANG_BANG] = ACTIONS(4986), - [anon_sym_suspend] = ACTIONS(4984), - [anon_sym_sealed] = ACTIONS(4984), - [anon_sym_annotation] = ACTIONS(4984), - [anon_sym_data] = ACTIONS(4984), - [anon_sym_inner] = ACTIONS(4984), - [anon_sym_value] = ACTIONS(4984), - [anon_sym_override] = ACTIONS(4984), - [anon_sym_lateinit] = ACTIONS(4984), - [anon_sym_public] = ACTIONS(4984), - [anon_sym_private] = ACTIONS(4984), - [anon_sym_internal] = ACTIONS(4984), - [anon_sym_protected] = ACTIONS(4984), - [anon_sym_tailrec] = ACTIONS(4984), - [anon_sym_operator] = ACTIONS(4984), - [anon_sym_infix] = ACTIONS(4984), - [anon_sym_inline] = ACTIONS(4984), - [anon_sym_external] = ACTIONS(4984), - [sym_property_modifier] = ACTIONS(4984), - [anon_sym_abstract] = ACTIONS(4984), - [anon_sym_final] = ACTIONS(4984), - [anon_sym_open] = ACTIONS(4984), - [anon_sym_vararg] = ACTIONS(4984), - [anon_sym_noinline] = ACTIONS(4984), - [anon_sym_crossinline] = ACTIONS(4984), - [anon_sym_expect] = ACTIONS(4984), - [anon_sym_actual] = ACTIONS(4984), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4986), - [sym_safe_nav] = ACTIONS(4986), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6980), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [anon_sym_DASH_GT] = ACTIONS(4287), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [3660] = { - [sym__alpha_identifier] = ACTIONS(4980), - [anon_sym_AT] = ACTIONS(4982), - [anon_sym_LBRACK] = ACTIONS(4982), - [anon_sym_RBRACK] = ACTIONS(4982), - [anon_sym_as] = ACTIONS(4980), - [anon_sym_EQ] = ACTIONS(4980), - [anon_sym_LBRACE] = ACTIONS(4982), - [anon_sym_RBRACE] = ACTIONS(4982), - [anon_sym_LPAREN] = ACTIONS(4982), - [anon_sym_COMMA] = ACTIONS(4982), - [anon_sym_RPAREN] = ACTIONS(4982), - [anon_sym_LT] = ACTIONS(4980), - [anon_sym_GT] = ACTIONS(4980), - [anon_sym_where] = ACTIONS(4980), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_SEMI] = ACTIONS(4982), - [anon_sym_get] = ACTIONS(4980), - [anon_sym_set] = ACTIONS(4980), - [anon_sym_STAR] = ACTIONS(4980), - [anon_sym_DASH_GT] = ACTIONS(4982), - [sym_label] = ACTIONS(4982), - [anon_sym_in] = ACTIONS(4980), - [anon_sym_while] = ACTIONS(4980), - [anon_sym_DOT_DOT] = ACTIONS(4982), - [anon_sym_QMARK_COLON] = ACTIONS(4982), - [anon_sym_AMP_AMP] = ACTIONS(4982), - [anon_sym_PIPE_PIPE] = ACTIONS(4982), - [anon_sym_else] = ACTIONS(4980), - [anon_sym_COLON_COLON] = ACTIONS(4982), - [anon_sym_PLUS_EQ] = ACTIONS(4982), - [anon_sym_DASH_EQ] = ACTIONS(4982), - [anon_sym_STAR_EQ] = ACTIONS(4982), - [anon_sym_SLASH_EQ] = ACTIONS(4982), - [anon_sym_PERCENT_EQ] = ACTIONS(4982), - [anon_sym_BANG_EQ] = ACTIONS(4980), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4982), - [anon_sym_EQ_EQ] = ACTIONS(4980), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4982), - [anon_sym_LT_EQ] = ACTIONS(4982), - [anon_sym_GT_EQ] = ACTIONS(4982), - [anon_sym_BANGin] = ACTIONS(4982), - [anon_sym_is] = ACTIONS(4980), - [anon_sym_BANGis] = ACTIONS(4982), - [anon_sym_PLUS] = ACTIONS(4980), - [anon_sym_DASH] = ACTIONS(4980), - [anon_sym_SLASH] = ACTIONS(4980), - [anon_sym_PERCENT] = ACTIONS(4980), - [anon_sym_as_QMARK] = ACTIONS(4982), - [anon_sym_PLUS_PLUS] = ACTIONS(4982), - [anon_sym_DASH_DASH] = ACTIONS(4982), - [anon_sym_BANG_BANG] = ACTIONS(4982), - [anon_sym_suspend] = ACTIONS(4980), - [anon_sym_sealed] = ACTIONS(4980), - [anon_sym_annotation] = ACTIONS(4980), - [anon_sym_data] = ACTIONS(4980), - [anon_sym_inner] = ACTIONS(4980), - [anon_sym_value] = ACTIONS(4980), - [anon_sym_override] = ACTIONS(4980), - [anon_sym_lateinit] = ACTIONS(4980), - [anon_sym_public] = ACTIONS(4980), - [anon_sym_private] = ACTIONS(4980), - [anon_sym_internal] = ACTIONS(4980), - [anon_sym_protected] = ACTIONS(4980), - [anon_sym_tailrec] = ACTIONS(4980), - [anon_sym_operator] = ACTIONS(4980), - [anon_sym_infix] = ACTIONS(4980), - [anon_sym_inline] = ACTIONS(4980), - [anon_sym_external] = ACTIONS(4980), - [sym_property_modifier] = ACTIONS(4980), - [anon_sym_abstract] = ACTIONS(4980), - [anon_sym_final] = ACTIONS(4980), - [anon_sym_open] = ACTIONS(4980), - [anon_sym_vararg] = ACTIONS(4980), - [anon_sym_noinline] = ACTIONS(4980), - [anon_sym_crossinline] = ACTIONS(4980), - [anon_sym_expect] = ACTIONS(4980), - [anon_sym_actual] = ACTIONS(4980), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4982), - [sym_safe_nav] = ACTIONS(4982), + [sym_class_body] = STATE(3832), + [sym_type_constraints] = STATE(3794), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), [sym_multiline_comment] = ACTIONS(3), }, [3661] = { - [sym__alpha_identifier] = ACTIONS(4311), - [anon_sym_AT] = ACTIONS(4313), - [anon_sym_LBRACK] = ACTIONS(4313), - [anon_sym_as] = ACTIONS(4311), - [anon_sym_EQ] = ACTIONS(4311), - [anon_sym_LBRACE] = ACTIONS(4313), - [anon_sym_RBRACE] = ACTIONS(4313), - [anon_sym_LPAREN] = ACTIONS(4313), - [anon_sym_COMMA] = ACTIONS(4313), - [anon_sym_by] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_where] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4311), - [anon_sym_SEMI] = ACTIONS(4313), - [anon_sym_get] = ACTIONS(4311), - [anon_sym_set] = ACTIONS(4311), - [sym__quest] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_DASH_GT] = ACTIONS(4315), - [sym_label] = ACTIONS(4313), - [anon_sym_in] = ACTIONS(4311), - [anon_sym_DOT_DOT] = ACTIONS(4313), - [anon_sym_QMARK_COLON] = ACTIONS(4313), - [anon_sym_AMP_AMP] = ACTIONS(4313), - [anon_sym_PIPE_PIPE] = ACTIONS(4313), - [anon_sym_else] = ACTIONS(4311), - [anon_sym_COLON_COLON] = ACTIONS(4313), - [anon_sym_PLUS_EQ] = ACTIONS(4313), - [anon_sym_DASH_EQ] = ACTIONS(4313), - [anon_sym_STAR_EQ] = ACTIONS(4313), - [anon_sym_SLASH_EQ] = ACTIONS(4313), - [anon_sym_PERCENT_EQ] = ACTIONS(4313), - [anon_sym_BANG_EQ] = ACTIONS(4311), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), - [anon_sym_EQ_EQ] = ACTIONS(4311), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), - [anon_sym_LT_EQ] = ACTIONS(4313), - [anon_sym_GT_EQ] = ACTIONS(4313), - [anon_sym_BANGin] = ACTIONS(4313), - [anon_sym_is] = ACTIONS(4311), - [anon_sym_BANGis] = ACTIONS(4313), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_PERCENT] = ACTIONS(4311), - [anon_sym_as_QMARK] = ACTIONS(4313), - [anon_sym_PLUS_PLUS] = ACTIONS(4313), - [anon_sym_DASH_DASH] = ACTIONS(4313), - [anon_sym_BANG_BANG] = ACTIONS(4313), - [anon_sym_suspend] = ACTIONS(4311), - [anon_sym_sealed] = ACTIONS(4311), - [anon_sym_annotation] = ACTIONS(4311), - [anon_sym_data] = ACTIONS(4311), - [anon_sym_inner] = ACTIONS(4311), - [anon_sym_value] = ACTIONS(4311), - [anon_sym_override] = ACTIONS(4311), - [anon_sym_lateinit] = ACTIONS(4311), - [anon_sym_public] = ACTIONS(4311), - [anon_sym_private] = ACTIONS(4311), - [anon_sym_internal] = ACTIONS(4311), - [anon_sym_protected] = ACTIONS(4311), - [anon_sym_tailrec] = ACTIONS(4311), - [anon_sym_operator] = ACTIONS(4311), - [anon_sym_infix] = ACTIONS(4311), - [anon_sym_inline] = ACTIONS(4311), - [anon_sym_external] = ACTIONS(4311), - [sym_property_modifier] = ACTIONS(4311), - [anon_sym_abstract] = ACTIONS(4311), - [anon_sym_final] = ACTIONS(4311), - [anon_sym_open] = ACTIONS(4311), - [anon_sym_vararg] = ACTIONS(4311), - [anon_sym_noinline] = ACTIONS(4311), - [anon_sym_crossinline] = ACTIONS(4311), - [anon_sym_expect] = ACTIONS(4311), - [anon_sym_actual] = ACTIONS(4311), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4313), - [sym__automatic_semicolon] = ACTIONS(4313), - [sym_safe_nav] = ACTIONS(4313), + [sym_type_constraints] = STATE(3820), + [sym_enum_class_body] = STATE(3861), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [3662] = { - [sym_class_body] = STATE(4152), - [sym_type_constraints] = STATE(3890), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7056), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3924), + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), }, [3663] = { - [sym_type_constraints] = STATE(3879), - [sym_enum_class_body] = STATE(4138), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(6008), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym_type_constraints] = STATE(3937), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [3664] = { - [sym_class_body] = STATE(4138), - [sym_type_constraints] = STATE(3878), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(6006), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__alpha_identifier] = ACTIONS(4485), + [anon_sym_AT] = ACTIONS(4487), + [anon_sym_LBRACK] = ACTIONS(4487), + [anon_sym_as] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_LBRACE] = ACTIONS(4487), + [anon_sym_RBRACE] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4487), + [anon_sym_COMMA] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_where] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_get] = ACTIONS(4485), + [anon_sym_set] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4485), + [sym_label] = ACTIONS(4487), + [anon_sym_in] = ACTIONS(4485), + [anon_sym_DOT_DOT] = ACTIONS(4487), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4487), + [anon_sym_PIPE_PIPE] = ACTIONS(4487), + [anon_sym_else] = ACTIONS(4485), + [anon_sym_catch] = ACTIONS(4485), + [anon_sym_finally] = ACTIONS(4485), + [anon_sym_COLON_COLON] = ACTIONS(4487), + [anon_sym_PLUS_EQ] = ACTIONS(4487), + [anon_sym_DASH_EQ] = ACTIONS(4487), + [anon_sym_STAR_EQ] = ACTIONS(4487), + [anon_sym_SLASH_EQ] = ACTIONS(4487), + [anon_sym_PERCENT_EQ] = ACTIONS(4487), + [anon_sym_BANG_EQ] = ACTIONS(4485), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4487), + [anon_sym_EQ_EQ] = ACTIONS(4485), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4487), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_BANGin] = ACTIONS(4487), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4485), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_SLASH] = ACTIONS(4485), + [anon_sym_PERCENT] = ACTIONS(4485), + [anon_sym_as_QMARK] = ACTIONS(4487), + [anon_sym_PLUS_PLUS] = ACTIONS(4487), + [anon_sym_DASH_DASH] = ACTIONS(4487), + [anon_sym_BANG_BANG] = ACTIONS(4487), + [anon_sym_suspend] = ACTIONS(4485), + [anon_sym_sealed] = ACTIONS(4485), + [anon_sym_annotation] = ACTIONS(4485), + [anon_sym_data] = ACTIONS(4485), + [anon_sym_inner] = ACTIONS(4485), + [anon_sym_value] = ACTIONS(4485), + [anon_sym_override] = ACTIONS(4485), + [anon_sym_lateinit] = ACTIONS(4485), + [anon_sym_public] = ACTIONS(4485), + [anon_sym_private] = ACTIONS(4485), + [anon_sym_internal] = ACTIONS(4485), + [anon_sym_protected] = ACTIONS(4485), + [anon_sym_tailrec] = ACTIONS(4485), + [anon_sym_operator] = ACTIONS(4485), + [anon_sym_infix] = ACTIONS(4485), + [anon_sym_inline] = ACTIONS(4485), + [anon_sym_external] = ACTIONS(4485), + [sym_property_modifier] = ACTIONS(4485), + [anon_sym_abstract] = ACTIONS(4485), + [anon_sym_final] = ACTIONS(4485), + [anon_sym_open] = ACTIONS(4485), + [anon_sym_vararg] = ACTIONS(4485), + [anon_sym_noinline] = ACTIONS(4485), + [anon_sym_crossinline] = ACTIONS(4485), + [anon_sym_expect] = ACTIONS(4485), + [anon_sym_actual] = ACTIONS(4485), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4487), + [sym__automatic_semicolon] = ACTIONS(4487), + [sym_safe_nav] = ACTIONS(4487), [sym_multiline_comment] = ACTIONS(3), }, [3665] = { - [sym__alpha_identifier] = ACTIONS(5123), - [anon_sym_AT] = ACTIONS(5125), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_RBRACK] = ACTIONS(5125), - [anon_sym_as] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5125), - [anon_sym_RBRACE] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5125), - [anon_sym_COMMA] = ACTIONS(5125), - [anon_sym_RPAREN] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5123), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_where] = ACTIONS(5123), - [anon_sym_DOT] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5125), - [anon_sym_get] = ACTIONS(5123), - [anon_sym_set] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_DASH_GT] = ACTIONS(5125), - [sym_label] = ACTIONS(5125), - [anon_sym_in] = ACTIONS(5123), - [anon_sym_while] = ACTIONS(5123), - [anon_sym_DOT_DOT] = ACTIONS(5125), - [anon_sym_QMARK_COLON] = ACTIONS(5125), - [anon_sym_AMP_AMP] = ACTIONS(5125), - [anon_sym_PIPE_PIPE] = ACTIONS(5125), - [anon_sym_else] = ACTIONS(5123), - [anon_sym_COLON_COLON] = ACTIONS(5125), - [anon_sym_PLUS_EQ] = ACTIONS(5125), - [anon_sym_DASH_EQ] = ACTIONS(5125), - [anon_sym_STAR_EQ] = ACTIONS(5125), - [anon_sym_SLASH_EQ] = ACTIONS(5125), - [anon_sym_PERCENT_EQ] = ACTIONS(5125), - [anon_sym_BANG_EQ] = ACTIONS(5123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5125), - [anon_sym_EQ_EQ] = ACTIONS(5123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5125), - [anon_sym_LT_EQ] = ACTIONS(5125), - [anon_sym_GT_EQ] = ACTIONS(5125), - [anon_sym_BANGin] = ACTIONS(5125), - [anon_sym_is] = ACTIONS(5123), - [anon_sym_BANGis] = ACTIONS(5125), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5123), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(5125), - [anon_sym_PLUS_PLUS] = ACTIONS(5125), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_BANG_BANG] = ACTIONS(5125), - [anon_sym_suspend] = ACTIONS(5123), - [anon_sym_sealed] = ACTIONS(5123), - [anon_sym_annotation] = ACTIONS(5123), - [anon_sym_data] = ACTIONS(5123), - [anon_sym_inner] = ACTIONS(5123), - [anon_sym_value] = ACTIONS(5123), - [anon_sym_override] = ACTIONS(5123), - [anon_sym_lateinit] = ACTIONS(5123), - [anon_sym_public] = ACTIONS(5123), - [anon_sym_private] = ACTIONS(5123), - [anon_sym_internal] = ACTIONS(5123), - [anon_sym_protected] = ACTIONS(5123), - [anon_sym_tailrec] = ACTIONS(5123), - [anon_sym_operator] = ACTIONS(5123), - [anon_sym_infix] = ACTIONS(5123), - [anon_sym_inline] = ACTIONS(5123), - [anon_sym_external] = ACTIONS(5123), - [sym_property_modifier] = ACTIONS(5123), - [anon_sym_abstract] = ACTIONS(5123), - [anon_sym_final] = ACTIONS(5123), - [anon_sym_open] = ACTIONS(5123), - [anon_sym_vararg] = ACTIONS(5123), - [anon_sym_noinline] = ACTIONS(5123), - [anon_sym_crossinline] = ACTIONS(5123), - [anon_sym_expect] = ACTIONS(5123), - [anon_sym_actual] = ACTIONS(5123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5125), - [sym_safe_nav] = ACTIONS(5125), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3917), + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, [3666] = { - [sym__alpha_identifier] = ACTIONS(4772), - [anon_sym_AT] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_RBRACK] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4772), - [anon_sym_LBRACE] = ACTIONS(4774), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4772), - [anon_sym_GT] = ACTIONS(4772), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4772), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_get] = ACTIONS(4772), - [anon_sym_set] = ACTIONS(4772), - [anon_sym_STAR] = ACTIONS(4772), - [anon_sym_DASH_GT] = ACTIONS(4774), - [sym_label] = ACTIONS(4774), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_while] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_QMARK_COLON] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_else] = ACTIONS(4772), - [anon_sym_COLON_COLON] = ACTIONS(4774), - [anon_sym_PLUS_EQ] = ACTIONS(4774), - [anon_sym_DASH_EQ] = ACTIONS(4774), - [anon_sym_STAR_EQ] = ACTIONS(4774), - [anon_sym_SLASH_EQ] = ACTIONS(4774), - [anon_sym_PERCENT_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4772), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_BANGin] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4772), - [anon_sym_BANGis] = ACTIONS(4774), - [anon_sym_PLUS] = ACTIONS(4772), - [anon_sym_DASH] = ACTIONS(4772), - [anon_sym_SLASH] = ACTIONS(4772), - [anon_sym_PERCENT] = ACTIONS(4772), - [anon_sym_as_QMARK] = ACTIONS(4774), - [anon_sym_PLUS_PLUS] = ACTIONS(4774), - [anon_sym_DASH_DASH] = ACTIONS(4774), - [anon_sym_BANG_BANG] = ACTIONS(4774), - [anon_sym_suspend] = ACTIONS(4772), - [anon_sym_sealed] = ACTIONS(4772), - [anon_sym_annotation] = ACTIONS(4772), - [anon_sym_data] = ACTIONS(4772), - [anon_sym_inner] = ACTIONS(4772), - [anon_sym_value] = ACTIONS(4772), - [anon_sym_override] = ACTIONS(4772), - [anon_sym_lateinit] = ACTIONS(4772), - [anon_sym_public] = ACTIONS(4772), - [anon_sym_private] = ACTIONS(4772), - [anon_sym_internal] = ACTIONS(4772), - [anon_sym_protected] = ACTIONS(4772), - [anon_sym_tailrec] = ACTIONS(4772), - [anon_sym_operator] = ACTIONS(4772), - [anon_sym_infix] = ACTIONS(4772), - [anon_sym_inline] = ACTIONS(4772), - [anon_sym_external] = ACTIONS(4772), - [sym_property_modifier] = ACTIONS(4772), - [anon_sym_abstract] = ACTIONS(4772), - [anon_sym_final] = ACTIONS(4772), - [anon_sym_open] = ACTIONS(4772), - [anon_sym_vararg] = ACTIONS(4772), - [anon_sym_noinline] = ACTIONS(4772), - [anon_sym_crossinline] = ACTIONS(4772), - [anon_sym_expect] = ACTIONS(4772), - [anon_sym_actual] = ACTIONS(4772), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4774), - [sym_safe_nav] = ACTIONS(4774), + [sym_class_body] = STATE(3909), + [sym_type_constraints] = STATE(3813), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4357), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), [sym_multiline_comment] = ACTIONS(3), }, [3667] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_RBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4293), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_RPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4293), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), + [sym_class_body] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(6984), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), [sym_multiline_comment] = ACTIONS(3), }, [3668] = { - [sym__alpha_identifier] = ACTIONS(4297), - [anon_sym_AT] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4297), - [anon_sym_EQ] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_RBRACE] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_by] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_where] = ACTIONS(4297), - [anon_sym_DOT] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_get] = ACTIONS(4297), - [anon_sym_set] = ACTIONS(4297), - [anon_sym_AMP] = ACTIONS(7058), - [sym__quest] = ACTIONS(4297), - [anon_sym_STAR] = ACTIONS(4297), - [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4297), - [anon_sym_DOT_DOT] = ACTIONS(4299), - [anon_sym_QMARK_COLON] = ACTIONS(4299), - [anon_sym_AMP_AMP] = ACTIONS(4299), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4297), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym_PLUS_EQ] = ACTIONS(4299), - [anon_sym_DASH_EQ] = ACTIONS(4299), - [anon_sym_STAR_EQ] = ACTIONS(4299), - [anon_sym_SLASH_EQ] = ACTIONS(4299), - [anon_sym_PERCENT_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ] = ACTIONS(4297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ] = ACTIONS(4297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ] = ACTIONS(4299), - [anon_sym_GT_EQ] = ACTIONS(4299), - [anon_sym_BANGin] = ACTIONS(4299), - [anon_sym_is] = ACTIONS(4297), - [anon_sym_BANGis] = ACTIONS(4299), - [anon_sym_PLUS] = ACTIONS(4297), - [anon_sym_DASH] = ACTIONS(4297), - [anon_sym_SLASH] = ACTIONS(4297), - [anon_sym_PERCENT] = ACTIONS(4297), - [anon_sym_as_QMARK] = ACTIONS(4299), - [anon_sym_PLUS_PLUS] = ACTIONS(4299), - [anon_sym_DASH_DASH] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4299), - [anon_sym_suspend] = ACTIONS(4297), - [anon_sym_sealed] = ACTIONS(4297), - [anon_sym_annotation] = ACTIONS(4297), - [anon_sym_data] = ACTIONS(4297), - [anon_sym_inner] = ACTIONS(4297), - [anon_sym_value] = ACTIONS(4297), - [anon_sym_override] = ACTIONS(4297), - [anon_sym_lateinit] = ACTIONS(4297), - [anon_sym_public] = ACTIONS(4297), - [anon_sym_private] = ACTIONS(4297), - [anon_sym_internal] = ACTIONS(4297), - [anon_sym_protected] = ACTIONS(4297), - [anon_sym_tailrec] = ACTIONS(4297), - [anon_sym_operator] = ACTIONS(4297), - [anon_sym_infix] = ACTIONS(4297), - [anon_sym_inline] = ACTIONS(4297), - [anon_sym_external] = ACTIONS(4297), - [sym_property_modifier] = ACTIONS(4297), - [anon_sym_abstract] = ACTIONS(4297), - [anon_sym_final] = ACTIONS(4297), - [anon_sym_open] = ACTIONS(4297), - [anon_sym_vararg] = ACTIONS(4297), - [anon_sym_noinline] = ACTIONS(4297), - [anon_sym_crossinline] = ACTIONS(4297), - [anon_sym_expect] = ACTIONS(4297), - [anon_sym_actual] = ACTIONS(4297), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4299), - [sym__automatic_semicolon] = ACTIONS(4299), - [sym_safe_nav] = ACTIONS(4299), + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [sym_label] = ACTIONS(4457), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_suspend] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_annotation] = ACTIONS(4455), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_lateinit] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_tailrec] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_infix] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_external] = ACTIONS(4455), + [sym_property_modifier] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_final] = ACTIONS(4455), + [anon_sym_open] = ACTIONS(4455), + [anon_sym_vararg] = ACTIONS(4455), + [anon_sym_noinline] = ACTIONS(4455), + [anon_sym_crossinline] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [aux_sym_unsigned_literal_token1] = ACTIONS(6986), + [anon_sym_L] = ACTIONS(6988), + [sym__backtick_identifier] = ACTIONS(4457), + [sym__automatic_semicolon] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), [sym_multiline_comment] = ACTIONS(3), }, [3669] = { - [sym__alpha_identifier] = ACTIONS(4030), - [anon_sym_AT] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_RBRACK] = ACTIONS(4032), - [anon_sym_as] = ACTIONS(4030), - [anon_sym_EQ] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_RBRACE] = ACTIONS(4032), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_COMMA] = ACTIONS(4032), - [anon_sym_RPAREN] = ACTIONS(4032), - [anon_sym_LT] = ACTIONS(4030), - [anon_sym_GT] = ACTIONS(4030), - [anon_sym_where] = ACTIONS(4030), - [anon_sym_DOT] = ACTIONS(4030), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym_get] = ACTIONS(4030), - [anon_sym_set] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4030), - [anon_sym_DASH_GT] = ACTIONS(4032), - [sym_label] = ACTIONS(4032), - [anon_sym_in] = ACTIONS(4030), - [anon_sym_while] = ACTIONS(4030), - [anon_sym_DOT_DOT] = ACTIONS(4032), - [anon_sym_QMARK_COLON] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4032), - [anon_sym_else] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(4032), - [anon_sym_PLUS_EQ] = ACTIONS(4032), - [anon_sym_DASH_EQ] = ACTIONS(4032), - [anon_sym_STAR_EQ] = ACTIONS(4032), - [anon_sym_SLASH_EQ] = ACTIONS(4032), - [anon_sym_PERCENT_EQ] = ACTIONS(4032), - [anon_sym_BANG_EQ] = ACTIONS(4030), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4032), - [anon_sym_EQ_EQ] = ACTIONS(4030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4032), - [anon_sym_LT_EQ] = ACTIONS(4032), - [anon_sym_GT_EQ] = ACTIONS(4032), - [anon_sym_BANGin] = ACTIONS(4032), - [anon_sym_is] = ACTIONS(4030), - [anon_sym_BANGis] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_SLASH] = ACTIONS(4030), - [anon_sym_PERCENT] = ACTIONS(4030), - [anon_sym_as_QMARK] = ACTIONS(4032), - [anon_sym_PLUS_PLUS] = ACTIONS(4032), - [anon_sym_DASH_DASH] = ACTIONS(4032), - [anon_sym_BANG_BANG] = ACTIONS(4032), - [anon_sym_suspend] = ACTIONS(4030), - [anon_sym_sealed] = ACTIONS(4030), - [anon_sym_annotation] = ACTIONS(4030), - [anon_sym_data] = ACTIONS(4030), - [anon_sym_inner] = ACTIONS(4030), - [anon_sym_value] = ACTIONS(4030), - [anon_sym_override] = ACTIONS(4030), - [anon_sym_lateinit] = ACTIONS(4030), - [anon_sym_public] = ACTIONS(4030), - [anon_sym_private] = ACTIONS(4030), - [anon_sym_internal] = ACTIONS(4030), - [anon_sym_protected] = ACTIONS(4030), - [anon_sym_tailrec] = ACTIONS(4030), - [anon_sym_operator] = ACTIONS(4030), - [anon_sym_infix] = ACTIONS(4030), - [anon_sym_inline] = ACTIONS(4030), - [anon_sym_external] = ACTIONS(4030), - [sym_property_modifier] = ACTIONS(4030), - [anon_sym_abstract] = ACTIONS(4030), - [anon_sym_final] = ACTIONS(4030), - [anon_sym_open] = ACTIONS(4030), - [anon_sym_vararg] = ACTIONS(4030), - [anon_sym_noinline] = ACTIONS(4030), - [anon_sym_crossinline] = ACTIONS(4030), - [anon_sym_expect] = ACTIONS(4030), - [anon_sym_actual] = ACTIONS(4030), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4032), - [sym_safe_nav] = ACTIONS(4032), + [sym_type_constraints] = STATE(3944), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [3670] = { - [sym__alpha_identifier] = ACTIONS(4968), - [anon_sym_AT] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4970), - [anon_sym_RBRACK] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(4968), - [anon_sym_EQ] = ACTIONS(4968), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(4968), - [anon_sym_GT] = ACTIONS(4968), - [anon_sym_where] = ACTIONS(4968), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym_get] = ACTIONS(4968), - [anon_sym_set] = ACTIONS(4968), - [anon_sym_STAR] = ACTIONS(4968), - [anon_sym_DASH_GT] = ACTIONS(4970), - [sym_label] = ACTIONS(4970), - [anon_sym_in] = ACTIONS(4968), - [anon_sym_while] = ACTIONS(4968), - [anon_sym_DOT_DOT] = ACTIONS(4970), - [anon_sym_QMARK_COLON] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4970), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_else] = ACTIONS(4968), - [anon_sym_COLON_COLON] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4970), - [anon_sym_DASH_EQ] = ACTIONS(4970), - [anon_sym_STAR_EQ] = ACTIONS(4970), - [anon_sym_SLASH_EQ] = ACTIONS(4970), - [anon_sym_PERCENT_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4968), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4970), - [anon_sym_EQ_EQ] = ACTIONS(4968), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4970), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_BANGin] = ACTIONS(4970), - [anon_sym_is] = ACTIONS(4968), - [anon_sym_BANGis] = ACTIONS(4970), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4968), - [anon_sym_as_QMARK] = ACTIONS(4970), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_BANG_BANG] = ACTIONS(4970), - [anon_sym_suspend] = ACTIONS(4968), - [anon_sym_sealed] = ACTIONS(4968), - [anon_sym_annotation] = ACTIONS(4968), - [anon_sym_data] = ACTIONS(4968), - [anon_sym_inner] = ACTIONS(4968), - [anon_sym_value] = ACTIONS(4968), - [anon_sym_override] = ACTIONS(4968), - [anon_sym_lateinit] = ACTIONS(4968), - [anon_sym_public] = ACTIONS(4968), - [anon_sym_private] = ACTIONS(4968), - [anon_sym_internal] = ACTIONS(4968), - [anon_sym_protected] = ACTIONS(4968), - [anon_sym_tailrec] = ACTIONS(4968), - [anon_sym_operator] = ACTIONS(4968), - [anon_sym_infix] = ACTIONS(4968), - [anon_sym_inline] = ACTIONS(4968), - [anon_sym_external] = ACTIONS(4968), - [sym_property_modifier] = ACTIONS(4968), - [anon_sym_abstract] = ACTIONS(4968), - [anon_sym_final] = ACTIONS(4968), - [anon_sym_open] = ACTIONS(4968), - [anon_sym_vararg] = ACTIONS(4968), - [anon_sym_noinline] = ACTIONS(4968), - [anon_sym_crossinline] = ACTIONS(4968), - [anon_sym_expect] = ACTIONS(4968), - [anon_sym_actual] = ACTIONS(4968), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4970), - [sym_safe_nav] = ACTIONS(4970), + [sym__alpha_identifier] = ACTIONS(4122), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_COLON] = ACTIONS(6771), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_as] = ACTIONS(4122), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_RBRACE] = ACTIONS(4124), + [anon_sym_LPAREN] = ACTIONS(4124), + [anon_sym_COMMA] = ACTIONS(4124), + [anon_sym_by] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4122), + [anon_sym_where] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym_get] = ACTIONS(4122), + [anon_sym_set] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4124), + [anon_sym_in] = ACTIONS(4122), + [anon_sym_DOT_DOT] = ACTIONS(4124), + [anon_sym_QMARK_COLON] = ACTIONS(4124), + [anon_sym_AMP_AMP] = ACTIONS(4124), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_else] = ACTIONS(4122), + [anon_sym_COLON_COLON] = ACTIONS(4124), + [anon_sym_PLUS_EQ] = ACTIONS(4124), + [anon_sym_DASH_EQ] = ACTIONS(4124), + [anon_sym_STAR_EQ] = ACTIONS(4124), + [anon_sym_SLASH_EQ] = ACTIONS(4124), + [anon_sym_PERCENT_EQ] = ACTIONS(4124), + [anon_sym_BANG_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), + [anon_sym_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), + [anon_sym_LT_EQ] = ACTIONS(4124), + [anon_sym_GT_EQ] = ACTIONS(4124), + [anon_sym_BANGin] = ACTIONS(4124), + [anon_sym_is] = ACTIONS(4122), + [anon_sym_BANGis] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_SLASH] = ACTIONS(4122), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4124), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_BANG_BANG] = ACTIONS(4124), + [anon_sym_suspend] = ACTIONS(4122), + [anon_sym_sealed] = ACTIONS(4122), + [anon_sym_annotation] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4122), + [anon_sym_inner] = ACTIONS(4122), + [anon_sym_value] = ACTIONS(4122), + [anon_sym_override] = ACTIONS(4122), + [anon_sym_lateinit] = ACTIONS(4122), + [anon_sym_public] = ACTIONS(4122), + [anon_sym_private] = ACTIONS(4122), + [anon_sym_internal] = ACTIONS(4122), + [anon_sym_protected] = ACTIONS(4122), + [anon_sym_tailrec] = ACTIONS(4122), + [anon_sym_operator] = ACTIONS(4122), + [anon_sym_infix] = ACTIONS(4122), + [anon_sym_inline] = ACTIONS(4122), + [anon_sym_external] = ACTIONS(4122), + [sym_property_modifier] = ACTIONS(4122), + [anon_sym_abstract] = ACTIONS(4122), + [anon_sym_final] = ACTIONS(4122), + [anon_sym_open] = ACTIONS(4122), + [anon_sym_vararg] = ACTIONS(4122), + [anon_sym_noinline] = ACTIONS(4122), + [anon_sym_crossinline] = ACTIONS(4122), + [anon_sym_expect] = ACTIONS(4122), + [anon_sym_actual] = ACTIONS(4122), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4124), + [sym__automatic_semicolon] = ACTIONS(4124), + [sym_safe_nav] = ACTIONS(4124), [sym_multiline_comment] = ACTIONS(3), }, [3671] = { - [sym_type_constraints] = STATE(3906), - [sym_enum_class_body] = STATE(4091), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7060), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym_function_body] = STATE(3499), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(6990), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_while] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), [sym_multiline_comment] = ACTIONS(3), }, [3672] = { - [sym__alpha_identifier] = ACTIONS(4964), - [anon_sym_AT] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_RBRACK] = ACTIONS(4966), - [anon_sym_as] = ACTIONS(4964), - [anon_sym_EQ] = ACTIONS(4964), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_RBRACE] = ACTIONS(4966), - [anon_sym_LPAREN] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_RPAREN] = ACTIONS(4966), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_where] = ACTIONS(4964), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_SEMI] = ACTIONS(4966), - [anon_sym_get] = ACTIONS(4964), - [anon_sym_set] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4966), - [sym_label] = ACTIONS(4966), - [anon_sym_in] = ACTIONS(4964), - [anon_sym_while] = ACTIONS(4964), - [anon_sym_DOT_DOT] = ACTIONS(4966), - [anon_sym_QMARK_COLON] = ACTIONS(4966), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_else] = ACTIONS(4964), - [anon_sym_COLON_COLON] = ACTIONS(4966), - [anon_sym_PLUS_EQ] = ACTIONS(4966), - [anon_sym_DASH_EQ] = ACTIONS(4966), - [anon_sym_STAR_EQ] = ACTIONS(4966), - [anon_sym_SLASH_EQ] = ACTIONS(4966), - [anon_sym_PERCENT_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4966), - [anon_sym_EQ_EQ] = ACTIONS(4964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4966), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_BANGin] = ACTIONS(4966), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_BANGis] = ACTIONS(4966), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4964), - [anon_sym_as_QMARK] = ACTIONS(4966), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_BANG_BANG] = ACTIONS(4966), - [anon_sym_suspend] = ACTIONS(4964), - [anon_sym_sealed] = ACTIONS(4964), - [anon_sym_annotation] = ACTIONS(4964), - [anon_sym_data] = ACTIONS(4964), - [anon_sym_inner] = ACTIONS(4964), - [anon_sym_value] = ACTIONS(4964), - [anon_sym_override] = ACTIONS(4964), - [anon_sym_lateinit] = ACTIONS(4964), - [anon_sym_public] = ACTIONS(4964), - [anon_sym_private] = ACTIONS(4964), - [anon_sym_internal] = ACTIONS(4964), - [anon_sym_protected] = ACTIONS(4964), - [anon_sym_tailrec] = ACTIONS(4964), - [anon_sym_operator] = ACTIONS(4964), - [anon_sym_infix] = ACTIONS(4964), - [anon_sym_inline] = ACTIONS(4964), - [anon_sym_external] = ACTIONS(4964), - [sym_property_modifier] = ACTIONS(4964), - [anon_sym_abstract] = ACTIONS(4964), - [anon_sym_final] = ACTIONS(4964), - [anon_sym_open] = ACTIONS(4964), - [anon_sym_vararg] = ACTIONS(4964), - [anon_sym_noinline] = ACTIONS(4964), - [anon_sym_crossinline] = ACTIONS(4964), - [anon_sym_expect] = ACTIONS(4964), - [anon_sym_actual] = ACTIONS(4964), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4966), - [sym_safe_nav] = ACTIONS(4966), + [sym__alpha_identifier] = ACTIONS(4345), + [anon_sym_AT] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4345), + [anon_sym_EQ] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4347), + [anon_sym_RBRACE] = ACTIONS(4347), + [anon_sym_LPAREN] = ACTIONS(4347), + [anon_sym_COMMA] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_where] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_SEMI] = ACTIONS(4347), + [anon_sym_get] = ACTIONS(4345), + [anon_sym_set] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4345), + [anon_sym_DOT_DOT] = ACTIONS(4347), + [anon_sym_QMARK_COLON] = ACTIONS(4347), + [anon_sym_AMP_AMP] = ACTIONS(4347), + [anon_sym_PIPE_PIPE] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4345), + [anon_sym_catch] = ACTIONS(4345), + [anon_sym_finally] = ACTIONS(4345), + [anon_sym_COLON_COLON] = ACTIONS(4347), + [anon_sym_PLUS_EQ] = ACTIONS(4347), + [anon_sym_DASH_EQ] = ACTIONS(4347), + [anon_sym_STAR_EQ] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [anon_sym_PERCENT_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_BANGin] = ACTIONS(4347), + [anon_sym_is] = ACTIONS(4345), + [anon_sym_BANGis] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4345), + [anon_sym_DASH] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4345), + [anon_sym_as_QMARK] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4347), + [anon_sym_DASH_DASH] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4347), + [anon_sym_suspend] = ACTIONS(4345), + [anon_sym_sealed] = ACTIONS(4345), + [anon_sym_annotation] = ACTIONS(4345), + [anon_sym_data] = ACTIONS(4345), + [anon_sym_inner] = ACTIONS(4345), + [anon_sym_value] = ACTIONS(4345), + [anon_sym_override] = ACTIONS(4345), + [anon_sym_lateinit] = ACTIONS(4345), + [anon_sym_public] = ACTIONS(4345), + [anon_sym_private] = ACTIONS(4345), + [anon_sym_internal] = ACTIONS(4345), + [anon_sym_protected] = ACTIONS(4345), + [anon_sym_tailrec] = ACTIONS(4345), + [anon_sym_operator] = ACTIONS(4345), + [anon_sym_infix] = ACTIONS(4345), + [anon_sym_inline] = ACTIONS(4345), + [anon_sym_external] = ACTIONS(4345), + [sym_property_modifier] = ACTIONS(4345), + [anon_sym_abstract] = ACTIONS(4345), + [anon_sym_final] = ACTIONS(4345), + [anon_sym_open] = ACTIONS(4345), + [anon_sym_vararg] = ACTIONS(4345), + [anon_sym_noinline] = ACTIONS(4345), + [anon_sym_crossinline] = ACTIONS(4345), + [anon_sym_expect] = ACTIONS(4345), + [anon_sym_actual] = ACTIONS(4345), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4347), + [sym__automatic_semicolon] = ACTIONS(4347), + [sym_safe_nav] = ACTIONS(4347), [sym_multiline_comment] = ACTIONS(3), }, [3673] = { - [sym__alpha_identifier] = ACTIONS(4960), - [anon_sym_AT] = ACTIONS(4962), - [anon_sym_LBRACK] = ACTIONS(4962), - [anon_sym_RBRACK] = ACTIONS(4962), - [anon_sym_as] = ACTIONS(4960), - [anon_sym_EQ] = ACTIONS(4960), - [anon_sym_LBRACE] = ACTIONS(4962), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_COMMA] = ACTIONS(4962), - [anon_sym_RPAREN] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4960), - [anon_sym_GT] = ACTIONS(4960), - [anon_sym_where] = ACTIONS(4960), - [anon_sym_DOT] = ACTIONS(4960), - [anon_sym_SEMI] = ACTIONS(4962), - [anon_sym_get] = ACTIONS(4960), - [anon_sym_set] = ACTIONS(4960), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4962), - [sym_label] = ACTIONS(4962), - [anon_sym_in] = ACTIONS(4960), - [anon_sym_while] = ACTIONS(4960), - [anon_sym_DOT_DOT] = ACTIONS(4962), - [anon_sym_QMARK_COLON] = ACTIONS(4962), - [anon_sym_AMP_AMP] = ACTIONS(4962), - [anon_sym_PIPE_PIPE] = ACTIONS(4962), - [anon_sym_else] = ACTIONS(4960), - [anon_sym_COLON_COLON] = ACTIONS(4962), - [anon_sym_PLUS_EQ] = ACTIONS(4962), - [anon_sym_DASH_EQ] = ACTIONS(4962), - [anon_sym_STAR_EQ] = ACTIONS(4962), - [anon_sym_SLASH_EQ] = ACTIONS(4962), - [anon_sym_PERCENT_EQ] = ACTIONS(4962), - [anon_sym_BANG_EQ] = ACTIONS(4960), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4962), - [anon_sym_EQ_EQ] = ACTIONS(4960), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4962), - [anon_sym_LT_EQ] = ACTIONS(4962), - [anon_sym_GT_EQ] = ACTIONS(4962), - [anon_sym_BANGin] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_BANGis] = ACTIONS(4962), - [anon_sym_PLUS] = ACTIONS(4960), - [anon_sym_DASH] = ACTIONS(4960), - [anon_sym_SLASH] = ACTIONS(4960), - [anon_sym_PERCENT] = ACTIONS(4960), - [anon_sym_as_QMARK] = ACTIONS(4962), - [anon_sym_PLUS_PLUS] = ACTIONS(4962), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_BANG_BANG] = ACTIONS(4962), - [anon_sym_suspend] = ACTIONS(4960), - [anon_sym_sealed] = ACTIONS(4960), - [anon_sym_annotation] = ACTIONS(4960), - [anon_sym_data] = ACTIONS(4960), - [anon_sym_inner] = ACTIONS(4960), - [anon_sym_value] = ACTIONS(4960), - [anon_sym_override] = ACTIONS(4960), - [anon_sym_lateinit] = ACTIONS(4960), - [anon_sym_public] = ACTIONS(4960), - [anon_sym_private] = ACTIONS(4960), - [anon_sym_internal] = ACTIONS(4960), - [anon_sym_protected] = ACTIONS(4960), - [anon_sym_tailrec] = ACTIONS(4960), - [anon_sym_operator] = ACTIONS(4960), - [anon_sym_infix] = ACTIONS(4960), - [anon_sym_inline] = ACTIONS(4960), - [anon_sym_external] = ACTIONS(4960), - [sym_property_modifier] = ACTIONS(4960), - [anon_sym_abstract] = ACTIONS(4960), - [anon_sym_final] = ACTIONS(4960), - [anon_sym_open] = ACTIONS(4960), - [anon_sym_vararg] = ACTIONS(4960), - [anon_sym_noinline] = ACTIONS(4960), - [anon_sym_crossinline] = ACTIONS(4960), - [anon_sym_expect] = ACTIONS(4960), - [anon_sym_actual] = ACTIONS(4960), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4962), - [sym_safe_nav] = ACTIONS(4962), + [sym_type_constraints] = STATE(3949), + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3674] = { - [sym_type_constraints] = STATE(4057), - [sym_function_body] = STATE(4139), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(7062), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [sym_class_body] = STATE(3881), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(6992), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), [sym_multiline_comment] = ACTIONS(3), }, [3675] = { - [sym_class_body] = STATE(4123), - [sym_type_constraints] = STATE(3870), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(5992), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym_type_constraints] = STATE(3973), + [sym_function_body] = STATE(3552), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6994), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_RBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_RPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [anon_sym_DASH_GT] = ACTIONS(4175), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_while] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), [sym_multiline_comment] = ACTIONS(3), }, [3676] = { - [sym__alpha_identifier] = ACTIONS(5107), - [anon_sym_AT] = ACTIONS(5109), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_RBRACK] = ACTIONS(5109), - [anon_sym_as] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5109), - [anon_sym_RBRACE] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_COMMA] = ACTIONS(5109), - [anon_sym_RPAREN] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5107), - [anon_sym_GT] = ACTIONS(5107), - [anon_sym_where] = ACTIONS(5107), - [anon_sym_DOT] = ACTIONS(5107), - [anon_sym_SEMI] = ACTIONS(5109), - [anon_sym_get] = ACTIONS(5107), - [anon_sym_set] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5107), - [anon_sym_DASH_GT] = ACTIONS(5109), - [sym_label] = ACTIONS(5109), - [anon_sym_in] = ACTIONS(5107), - [anon_sym_while] = ACTIONS(5107), - [anon_sym_DOT_DOT] = ACTIONS(5109), - [anon_sym_QMARK_COLON] = ACTIONS(5109), - [anon_sym_AMP_AMP] = ACTIONS(5109), - [anon_sym_PIPE_PIPE] = ACTIONS(5109), - [anon_sym_else] = ACTIONS(5107), - [anon_sym_COLON_COLON] = ACTIONS(5109), - [anon_sym_PLUS_EQ] = ACTIONS(5109), - [anon_sym_DASH_EQ] = ACTIONS(5109), - [anon_sym_STAR_EQ] = ACTIONS(5109), - [anon_sym_SLASH_EQ] = ACTIONS(5109), - [anon_sym_PERCENT_EQ] = ACTIONS(5109), - [anon_sym_BANG_EQ] = ACTIONS(5107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5109), - [anon_sym_EQ_EQ] = ACTIONS(5107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5109), - [anon_sym_LT_EQ] = ACTIONS(5109), - [anon_sym_GT_EQ] = ACTIONS(5109), - [anon_sym_BANGin] = ACTIONS(5109), - [anon_sym_is] = ACTIONS(5107), - [anon_sym_BANGis] = ACTIONS(5109), - [anon_sym_PLUS] = ACTIONS(5107), - [anon_sym_DASH] = ACTIONS(5107), - [anon_sym_SLASH] = ACTIONS(5107), - [anon_sym_PERCENT] = ACTIONS(5107), - [anon_sym_as_QMARK] = ACTIONS(5109), - [anon_sym_PLUS_PLUS] = ACTIONS(5109), - [anon_sym_DASH_DASH] = ACTIONS(5109), - [anon_sym_BANG_BANG] = ACTIONS(5109), - [anon_sym_suspend] = ACTIONS(5107), - [anon_sym_sealed] = ACTIONS(5107), - [anon_sym_annotation] = ACTIONS(5107), - [anon_sym_data] = ACTIONS(5107), - [anon_sym_inner] = ACTIONS(5107), - [anon_sym_value] = ACTIONS(5107), - [anon_sym_override] = ACTIONS(5107), - [anon_sym_lateinit] = ACTIONS(5107), - [anon_sym_public] = ACTIONS(5107), - [anon_sym_private] = ACTIONS(5107), - [anon_sym_internal] = ACTIONS(5107), - [anon_sym_protected] = ACTIONS(5107), - [anon_sym_tailrec] = ACTIONS(5107), - [anon_sym_operator] = ACTIONS(5107), - [anon_sym_infix] = ACTIONS(5107), - [anon_sym_inline] = ACTIONS(5107), - [anon_sym_external] = ACTIONS(5107), - [sym_property_modifier] = ACTIONS(5107), - [anon_sym_abstract] = ACTIONS(5107), - [anon_sym_final] = ACTIONS(5107), - [anon_sym_open] = ACTIONS(5107), - [anon_sym_vararg] = ACTIONS(5107), - [anon_sym_noinline] = ACTIONS(5107), - [anon_sym_crossinline] = ACTIONS(5107), - [anon_sym_expect] = ACTIONS(5107), - [anon_sym_actual] = ACTIONS(5107), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5109), - [sym_safe_nav] = ACTIONS(5109), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_user_type_repeat1] = STATE(3676), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_typealias] = ACTIONS(4166), + [anon_sym_class] = ACTIONS(4166), + [anon_sym_interface] = ACTIONS(4166), + [anon_sym_enum] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_val] = ACTIONS(4166), + [anon_sym_var] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(6998), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4168), + [sym_label] = ACTIONS(4166), + [anon_sym_for] = ACTIONS(4166), + [anon_sym_while] = ACTIONS(4166), + [anon_sym_do] = ACTIONS(4166), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), }, [3677] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_RBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym_COMMA] = ACTIONS(4350), - [anon_sym_RPAREN] = ACTIONS(4350), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_where] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [anon_sym_DASH_GT] = ACTIONS(4350), - [sym_label] = ACTIONS(4350), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_while] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4350), - [anon_sym_DASH_EQ] = ACTIONS(4350), - [anon_sym_STAR_EQ] = ACTIONS(4350), - [anon_sym_SLASH_EQ] = ACTIONS(4350), - [anon_sym_PERCENT_EQ] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_suspend] = ACTIONS(4347), - [anon_sym_sealed] = ACTIONS(4347), - [anon_sym_annotation] = ACTIONS(4347), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4347), - [anon_sym_lateinit] = ACTIONS(4347), - [anon_sym_public] = ACTIONS(4347), - [anon_sym_private] = ACTIONS(4347), - [anon_sym_internal] = ACTIONS(4347), - [anon_sym_protected] = ACTIONS(4347), - [anon_sym_tailrec] = ACTIONS(4347), - [anon_sym_operator] = ACTIONS(4347), - [anon_sym_infix] = ACTIONS(4347), - [anon_sym_inline] = ACTIONS(4347), - [anon_sym_external] = ACTIONS(4347), - [sym_property_modifier] = ACTIONS(4347), - [anon_sym_abstract] = ACTIONS(4347), - [anon_sym_final] = ACTIONS(4347), - [anon_sym_open] = ACTIONS(4347), - [anon_sym_vararg] = ACTIONS(4347), - [anon_sym_noinline] = ACTIONS(4347), - [anon_sym_crossinline] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), + [sym_type_constraints] = STATE(3908), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, [3678] = { - [sym__alpha_identifier] = ACTIONS(5103), - [anon_sym_AT] = ACTIONS(5105), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_RBRACK] = ACTIONS(5105), - [anon_sym_as] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5105), - [anon_sym_RBRACE] = ACTIONS(5105), - [anon_sym_LPAREN] = ACTIONS(5105), - [anon_sym_COMMA] = ACTIONS(5105), - [anon_sym_RPAREN] = ACTIONS(5105), - [anon_sym_LT] = ACTIONS(5103), - [anon_sym_GT] = ACTIONS(5103), - [anon_sym_where] = ACTIONS(5103), - [anon_sym_DOT] = ACTIONS(5103), - [anon_sym_SEMI] = ACTIONS(5105), - [anon_sym_get] = ACTIONS(5103), - [anon_sym_set] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_DASH_GT] = ACTIONS(5105), - [sym_label] = ACTIONS(5105), - [anon_sym_in] = ACTIONS(5103), - [anon_sym_while] = ACTIONS(5103), - [anon_sym_DOT_DOT] = ACTIONS(5105), - [anon_sym_QMARK_COLON] = ACTIONS(5105), - [anon_sym_AMP_AMP] = ACTIONS(5105), - [anon_sym_PIPE_PIPE] = ACTIONS(5105), - [anon_sym_else] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_PLUS_EQ] = ACTIONS(5105), - [anon_sym_DASH_EQ] = ACTIONS(5105), - [anon_sym_STAR_EQ] = ACTIONS(5105), - [anon_sym_SLASH_EQ] = ACTIONS(5105), - [anon_sym_PERCENT_EQ] = ACTIONS(5105), - [anon_sym_BANG_EQ] = ACTIONS(5103), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5105), - [anon_sym_EQ_EQ] = ACTIONS(5103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5105), - [anon_sym_LT_EQ] = ACTIONS(5105), - [anon_sym_GT_EQ] = ACTIONS(5105), - [anon_sym_BANGin] = ACTIONS(5105), - [anon_sym_is] = ACTIONS(5103), - [anon_sym_BANGis] = ACTIONS(5105), - [anon_sym_PLUS] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5103), - [anon_sym_SLASH] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_as_QMARK] = ACTIONS(5105), - [anon_sym_PLUS_PLUS] = ACTIONS(5105), - [anon_sym_DASH_DASH] = ACTIONS(5105), - [anon_sym_BANG_BANG] = ACTIONS(5105), - [anon_sym_suspend] = ACTIONS(5103), - [anon_sym_sealed] = ACTIONS(5103), - [anon_sym_annotation] = ACTIONS(5103), - [anon_sym_data] = ACTIONS(5103), - [anon_sym_inner] = ACTIONS(5103), - [anon_sym_value] = ACTIONS(5103), - [anon_sym_override] = ACTIONS(5103), - [anon_sym_lateinit] = ACTIONS(5103), - [anon_sym_public] = ACTIONS(5103), - [anon_sym_private] = ACTIONS(5103), - [anon_sym_internal] = ACTIONS(5103), - [anon_sym_protected] = ACTIONS(5103), - [anon_sym_tailrec] = ACTIONS(5103), - [anon_sym_operator] = ACTIONS(5103), - [anon_sym_infix] = ACTIONS(5103), - [anon_sym_inline] = ACTIONS(5103), - [anon_sym_external] = ACTIONS(5103), - [sym_property_modifier] = ACTIONS(5103), - [anon_sym_abstract] = ACTIONS(5103), - [anon_sym_final] = ACTIONS(5103), - [anon_sym_open] = ACTIONS(5103), - [anon_sym_vararg] = ACTIONS(5103), - [anon_sym_noinline] = ACTIONS(5103), - [anon_sym_crossinline] = ACTIONS(5103), - [anon_sym_expect] = ACTIONS(5103), - [anon_sym_actual] = ACTIONS(5103), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5105), - [sym_safe_nav] = ACTIONS(5105), + [sym_type_constraints] = STATE(3984), + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_RBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [anon_sym_DASH_GT] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, [3679] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_RBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_COMMA] = ACTIONS(4239), - [anon_sym_RPAREN] = ACTIONS(4239), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_where] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [anon_sym_DASH_GT] = ACTIONS(4239), - [sym_label] = ACTIONS(4239), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_while] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4239), - [anon_sym_DASH_EQ] = ACTIONS(4239), - [anon_sym_STAR_EQ] = ACTIONS(4239), - [anon_sym_SLASH_EQ] = ACTIONS(4239), - [anon_sym_PERCENT_EQ] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_suspend] = ACTIONS(4236), - [anon_sym_sealed] = ACTIONS(4236), - [anon_sym_annotation] = ACTIONS(4236), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4236), - [anon_sym_lateinit] = ACTIONS(4236), - [anon_sym_public] = ACTIONS(4236), - [anon_sym_private] = ACTIONS(4236), - [anon_sym_internal] = ACTIONS(4236), - [anon_sym_protected] = ACTIONS(4236), - [anon_sym_tailrec] = ACTIONS(4236), - [anon_sym_operator] = ACTIONS(4236), - [anon_sym_infix] = ACTIONS(4236), - [anon_sym_inline] = ACTIONS(4236), - [anon_sym_external] = ACTIONS(4236), - [sym_property_modifier] = ACTIONS(4236), - [anon_sym_abstract] = ACTIONS(4236), - [anon_sym_final] = ACTIONS(4236), - [anon_sym_open] = ACTIONS(4236), - [anon_sym_vararg] = ACTIONS(4236), - [anon_sym_noinline] = ACTIONS(4236), - [anon_sym_crossinline] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(7003), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, [3680] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7064), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_this] = ACTIONS(4244), - [anon_sym_super] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4244), - [anon_sym_if] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4244), - [anon_sym_try] = ACTIONS(4244), - [anon_sym_throw] = ACTIONS(4244), - [anon_sym_return] = ACTIONS(4244), - [anon_sym_continue] = ACTIONS(4244), - [anon_sym_break] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4242), - [anon_sym_continue_AT] = ACTIONS(4242), - [anon_sym_break_AT] = ACTIONS(4242), - [anon_sym_this_AT] = ACTIONS(4242), - [anon_sym_super_AT] = ACTIONS(4242), - [sym_real_literal] = ACTIONS(4242), - [sym_integer_literal] = ACTIONS(4244), - [sym_hex_literal] = ACTIONS(4242), - [sym_bin_literal] = ACTIONS(4242), - [anon_sym_true] = ACTIONS(4244), - [anon_sym_false] = ACTIONS(4244), - [anon_sym_SQUOTE] = ACTIONS(4242), - [sym__backtick_identifier] = ACTIONS(4242), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4242), + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_constructor] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_LT] = ACTIONS(4009), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4009), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [3681] = { - [sym__alpha_identifier] = ACTIONS(4297), - [anon_sym_AT] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4297), - [anon_sym_EQ] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_RBRACE] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_by] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_where] = ACTIONS(4297), - [anon_sym_DOT] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_get] = ACTIONS(4297), - [anon_sym_set] = ACTIONS(4297), - [anon_sym_AMP] = ACTIONS(7066), - [sym__quest] = ACTIONS(4297), - [anon_sym_STAR] = ACTIONS(4297), - [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4297), - [anon_sym_DOT_DOT] = ACTIONS(4299), - [anon_sym_QMARK_COLON] = ACTIONS(4299), - [anon_sym_AMP_AMP] = ACTIONS(4299), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4297), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym_PLUS_EQ] = ACTIONS(4299), - [anon_sym_DASH_EQ] = ACTIONS(4299), - [anon_sym_STAR_EQ] = ACTIONS(4299), - [anon_sym_SLASH_EQ] = ACTIONS(4299), - [anon_sym_PERCENT_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ] = ACTIONS(4297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ] = ACTIONS(4297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ] = ACTIONS(4299), - [anon_sym_GT_EQ] = ACTIONS(4299), - [anon_sym_BANGin] = ACTIONS(4299), - [anon_sym_is] = ACTIONS(4297), - [anon_sym_BANGis] = ACTIONS(4299), - [anon_sym_PLUS] = ACTIONS(4297), - [anon_sym_DASH] = ACTIONS(4297), - [anon_sym_SLASH] = ACTIONS(4297), - [anon_sym_PERCENT] = ACTIONS(4297), - [anon_sym_as_QMARK] = ACTIONS(4299), - [anon_sym_PLUS_PLUS] = ACTIONS(4299), - [anon_sym_DASH_DASH] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4299), - [anon_sym_suspend] = ACTIONS(4297), - [anon_sym_sealed] = ACTIONS(4297), - [anon_sym_annotation] = ACTIONS(4297), - [anon_sym_data] = ACTIONS(4297), - [anon_sym_inner] = ACTIONS(4297), - [anon_sym_value] = ACTIONS(4297), - [anon_sym_override] = ACTIONS(4297), - [anon_sym_lateinit] = ACTIONS(4297), - [anon_sym_public] = ACTIONS(4297), - [anon_sym_private] = ACTIONS(4297), - [anon_sym_internal] = ACTIONS(4297), - [anon_sym_protected] = ACTIONS(4297), - [anon_sym_tailrec] = ACTIONS(4297), - [anon_sym_operator] = ACTIONS(4297), - [anon_sym_infix] = ACTIONS(4297), - [anon_sym_inline] = ACTIONS(4297), - [anon_sym_external] = ACTIONS(4297), - [sym_property_modifier] = ACTIONS(4297), - [anon_sym_abstract] = ACTIONS(4297), - [anon_sym_final] = ACTIONS(4297), - [anon_sym_open] = ACTIONS(4297), - [anon_sym_vararg] = ACTIONS(4297), - [anon_sym_noinline] = ACTIONS(4297), - [anon_sym_crossinline] = ACTIONS(4297), - [anon_sym_expect] = ACTIONS(4297), - [anon_sym_actual] = ACTIONS(4297), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4299), - [sym__automatic_semicolon] = ACTIONS(4299), - [sym_safe_nav] = ACTIONS(4299), + [sym_type_constraints] = STATE(4019), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(7007), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_RBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_DASH_GT] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [3682] = { - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(1790), - [anon_sym_set] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(1790), - [anon_sym_sealed] = ACTIONS(1790), - [anon_sym_annotation] = ACTIONS(1790), - [anon_sym_data] = ACTIONS(1790), - [anon_sym_inner] = ACTIONS(1790), - [anon_sym_value] = ACTIONS(1790), - [anon_sym_override] = ACTIONS(1790), - [anon_sym_lateinit] = ACTIONS(1790), - [anon_sym_public] = ACTIONS(1790), - [anon_sym_private] = ACTIONS(1790), - [anon_sym_internal] = ACTIONS(1790), - [anon_sym_protected] = ACTIONS(1790), - [anon_sym_tailrec] = ACTIONS(1790), - [anon_sym_operator] = ACTIONS(1790), - [anon_sym_infix] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [anon_sym_external] = ACTIONS(1790), - [sym_property_modifier] = ACTIONS(1790), - [anon_sym_abstract] = ACTIONS(1790), - [anon_sym_final] = ACTIONS(1790), - [anon_sym_open] = ACTIONS(1790), - [anon_sym_vararg] = ACTIONS(1790), - [anon_sym_noinline] = ACTIONS(1790), - [anon_sym_crossinline] = ACTIONS(1790), - [anon_sym_expect] = ACTIONS(1790), - [anon_sym_actual] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4009), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, [3683] = { - [aux_sym_nullable_type_repeat1] = STATE(3514), - [sym__alpha_identifier] = ACTIONS(4250), - [anon_sym_AT] = ACTIONS(4252), - [anon_sym_LBRACK] = ACTIONS(4252), - [anon_sym_as] = ACTIONS(4250), - [anon_sym_EQ] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4252), - [anon_sym_RBRACE] = ACTIONS(4252), - [anon_sym_LPAREN] = ACTIONS(4252), - [anon_sym_COMMA] = ACTIONS(4252), - [anon_sym_by] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4250), - [anon_sym_GT] = ACTIONS(4250), - [anon_sym_where] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4250), - [anon_sym_SEMI] = ACTIONS(4252), - [anon_sym_get] = ACTIONS(4250), - [anon_sym_set] = ACTIONS(4250), - [sym__quest] = ACTIONS(6938), - [anon_sym_STAR] = ACTIONS(4250), - [sym_label] = ACTIONS(4252), - [anon_sym_in] = ACTIONS(4250), - [anon_sym_DOT_DOT] = ACTIONS(4252), - [anon_sym_QMARK_COLON] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4252), - [anon_sym_PIPE_PIPE] = ACTIONS(4252), - [anon_sym_else] = ACTIONS(4250), - [anon_sym_COLON_COLON] = ACTIONS(4252), - [anon_sym_PLUS_EQ] = ACTIONS(4252), - [anon_sym_DASH_EQ] = ACTIONS(4252), - [anon_sym_STAR_EQ] = ACTIONS(4252), - [anon_sym_SLASH_EQ] = ACTIONS(4252), - [anon_sym_PERCENT_EQ] = ACTIONS(4252), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), - [anon_sym_LT_EQ] = ACTIONS(4252), - [anon_sym_GT_EQ] = ACTIONS(4252), - [anon_sym_BANGin] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4250), - [anon_sym_BANGis] = ACTIONS(4252), - [anon_sym_PLUS] = ACTIONS(4250), - [anon_sym_DASH] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4250), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_as_QMARK] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4252), - [anon_sym_DASH_DASH] = ACTIONS(4252), - [anon_sym_BANG_BANG] = ACTIONS(4252), - [anon_sym_suspend] = ACTIONS(4250), - [anon_sym_sealed] = ACTIONS(4250), - [anon_sym_annotation] = ACTIONS(4250), - [anon_sym_data] = ACTIONS(4250), - [anon_sym_inner] = ACTIONS(4250), - [anon_sym_value] = ACTIONS(4250), - [anon_sym_override] = ACTIONS(4250), - [anon_sym_lateinit] = ACTIONS(4250), - [anon_sym_public] = ACTIONS(4250), - [anon_sym_private] = ACTIONS(4250), - [anon_sym_internal] = ACTIONS(4250), - [anon_sym_protected] = ACTIONS(4250), - [anon_sym_tailrec] = ACTIONS(4250), - [anon_sym_operator] = ACTIONS(4250), - [anon_sym_infix] = ACTIONS(4250), - [anon_sym_inline] = ACTIONS(4250), - [anon_sym_external] = ACTIONS(4250), - [sym_property_modifier] = ACTIONS(4250), - [anon_sym_abstract] = ACTIONS(4250), - [anon_sym_final] = ACTIONS(4250), - [anon_sym_open] = ACTIONS(4250), - [anon_sym_vararg] = ACTIONS(4250), - [anon_sym_noinline] = ACTIONS(4250), - [anon_sym_crossinline] = ACTIONS(4250), - [anon_sym_expect] = ACTIONS(4250), - [anon_sym_actual] = ACTIONS(4250), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4252), - [sym__automatic_semicolon] = ACTIONS(4252), - [sym_safe_nav] = ACTIONS(4252), - [sym_multiline_comment] = ACTIONS(3), - }, - [3684] = { - [sym__alpha_identifier] = ACTIONS(4956), - [anon_sym_AT] = ACTIONS(4958), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_RBRACK] = ACTIONS(4958), - [anon_sym_as] = ACTIONS(4956), - [anon_sym_EQ] = ACTIONS(4956), - [anon_sym_LBRACE] = ACTIONS(4958), - [anon_sym_RBRACE] = ACTIONS(4958), - [anon_sym_LPAREN] = ACTIONS(4958), - [anon_sym_COMMA] = ACTIONS(4958), - [anon_sym_RPAREN] = ACTIONS(4958), - [anon_sym_LT] = ACTIONS(4956), - [anon_sym_GT] = ACTIONS(4956), - [anon_sym_where] = ACTIONS(4956), - [anon_sym_DOT] = ACTIONS(4956), - [anon_sym_SEMI] = ACTIONS(4958), - [anon_sym_get] = ACTIONS(4956), - [anon_sym_set] = ACTIONS(4956), - [anon_sym_STAR] = ACTIONS(4956), - [anon_sym_DASH_GT] = ACTIONS(4958), - [sym_label] = ACTIONS(4958), - [anon_sym_in] = ACTIONS(4956), - [anon_sym_while] = ACTIONS(4956), - [anon_sym_DOT_DOT] = ACTIONS(4958), - [anon_sym_QMARK_COLON] = ACTIONS(4958), - [anon_sym_AMP_AMP] = ACTIONS(4958), - [anon_sym_PIPE_PIPE] = ACTIONS(4958), - [anon_sym_else] = ACTIONS(4956), - [anon_sym_COLON_COLON] = ACTIONS(4958), - [anon_sym_PLUS_EQ] = ACTIONS(4958), - [anon_sym_DASH_EQ] = ACTIONS(4958), - [anon_sym_STAR_EQ] = ACTIONS(4958), - [anon_sym_SLASH_EQ] = ACTIONS(4958), - [anon_sym_PERCENT_EQ] = ACTIONS(4958), - [anon_sym_BANG_EQ] = ACTIONS(4956), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4958), - [anon_sym_EQ_EQ] = ACTIONS(4956), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4958), - [anon_sym_LT_EQ] = ACTIONS(4958), - [anon_sym_GT_EQ] = ACTIONS(4958), - [anon_sym_BANGin] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4956), - [anon_sym_BANGis] = ACTIONS(4958), - [anon_sym_PLUS] = ACTIONS(4956), - [anon_sym_DASH] = ACTIONS(4956), - [anon_sym_SLASH] = ACTIONS(4956), - [anon_sym_PERCENT] = ACTIONS(4956), - [anon_sym_as_QMARK] = ACTIONS(4958), - [anon_sym_PLUS_PLUS] = ACTIONS(4958), - [anon_sym_DASH_DASH] = ACTIONS(4958), - [anon_sym_BANG_BANG] = ACTIONS(4958), - [anon_sym_suspend] = ACTIONS(4956), - [anon_sym_sealed] = ACTIONS(4956), - [anon_sym_annotation] = ACTIONS(4956), - [anon_sym_data] = ACTIONS(4956), - [anon_sym_inner] = ACTIONS(4956), - [anon_sym_value] = ACTIONS(4956), - [anon_sym_override] = ACTIONS(4956), - [anon_sym_lateinit] = ACTIONS(4956), - [anon_sym_public] = ACTIONS(4956), - [anon_sym_private] = ACTIONS(4956), - [anon_sym_internal] = ACTIONS(4956), - [anon_sym_protected] = ACTIONS(4956), - [anon_sym_tailrec] = ACTIONS(4956), - [anon_sym_operator] = ACTIONS(4956), - [anon_sym_infix] = ACTIONS(4956), - [anon_sym_inline] = ACTIONS(4956), - [anon_sym_external] = ACTIONS(4956), - [sym_property_modifier] = ACTIONS(4956), - [anon_sym_abstract] = ACTIONS(4956), - [anon_sym_final] = ACTIONS(4956), - [anon_sym_open] = ACTIONS(4956), - [anon_sym_vararg] = ACTIONS(4956), - [anon_sym_noinline] = ACTIONS(4956), - [anon_sym_crossinline] = ACTIONS(4956), - [anon_sym_expect] = ACTIONS(4956), - [anon_sym_actual] = ACTIONS(4956), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4958), - [sym_safe_nav] = ACTIONS(4958), - [sym_multiline_comment] = ACTIONS(3), - }, - [3685] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_RBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_COMMA] = ACTIONS(4350), - [anon_sym_RPAREN] = ACTIONS(4350), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_where] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [anon_sym_DASH_GT] = ACTIONS(4350), - [sym_label] = ACTIONS(4350), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_while] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_suspend] = ACTIONS(4347), - [anon_sym_sealed] = ACTIONS(4347), - [anon_sym_annotation] = ACTIONS(4347), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4347), - [anon_sym_lateinit] = ACTIONS(4347), - [anon_sym_public] = ACTIONS(4347), - [anon_sym_private] = ACTIONS(4347), - [anon_sym_internal] = ACTIONS(4347), - [anon_sym_protected] = ACTIONS(4347), - [anon_sym_tailrec] = ACTIONS(4347), - [anon_sym_operator] = ACTIONS(4347), - [anon_sym_infix] = ACTIONS(4347), - [anon_sym_inline] = ACTIONS(4347), - [anon_sym_external] = ACTIONS(4347), - [sym_property_modifier] = ACTIONS(4347), - [anon_sym_abstract] = ACTIONS(4347), - [anon_sym_final] = ACTIONS(4347), - [anon_sym_open] = ACTIONS(4347), - [anon_sym_vararg] = ACTIONS(4347), - [anon_sym_noinline] = ACTIONS(4347), - [anon_sym_crossinline] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), - [sym_multiline_comment] = ACTIONS(3), - }, - [3686] = { - [sym__alpha_identifier] = ACTIONS(4952), - [anon_sym_AT] = ACTIONS(4954), - [anon_sym_LBRACK] = ACTIONS(4954), - [anon_sym_RBRACK] = ACTIONS(4954), - [anon_sym_as] = ACTIONS(4952), - [anon_sym_EQ] = ACTIONS(4952), - [anon_sym_LBRACE] = ACTIONS(4954), - [anon_sym_RBRACE] = ACTIONS(4954), - [anon_sym_LPAREN] = ACTIONS(4954), - [anon_sym_COMMA] = ACTIONS(4954), - [anon_sym_RPAREN] = ACTIONS(4954), - [anon_sym_LT] = ACTIONS(4952), - [anon_sym_GT] = ACTIONS(4952), - [anon_sym_where] = ACTIONS(4952), - [anon_sym_DOT] = ACTIONS(4952), - [anon_sym_SEMI] = ACTIONS(4954), - [anon_sym_get] = ACTIONS(4952), - [anon_sym_set] = ACTIONS(4952), - [anon_sym_STAR] = ACTIONS(4952), - [anon_sym_DASH_GT] = ACTIONS(4954), - [sym_label] = ACTIONS(4954), - [anon_sym_in] = ACTIONS(4952), - [anon_sym_while] = ACTIONS(4952), - [anon_sym_DOT_DOT] = ACTIONS(4954), - [anon_sym_QMARK_COLON] = ACTIONS(4954), - [anon_sym_AMP_AMP] = ACTIONS(4954), - [anon_sym_PIPE_PIPE] = ACTIONS(4954), - [anon_sym_else] = ACTIONS(4952), - [anon_sym_COLON_COLON] = ACTIONS(4954), - [anon_sym_PLUS_EQ] = ACTIONS(4954), - [anon_sym_DASH_EQ] = ACTIONS(4954), - [anon_sym_STAR_EQ] = ACTIONS(4954), - [anon_sym_SLASH_EQ] = ACTIONS(4954), - [anon_sym_PERCENT_EQ] = ACTIONS(4954), - [anon_sym_BANG_EQ] = ACTIONS(4952), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4954), - [anon_sym_EQ_EQ] = ACTIONS(4952), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4954), - [anon_sym_LT_EQ] = ACTIONS(4954), - [anon_sym_GT_EQ] = ACTIONS(4954), - [anon_sym_BANGin] = ACTIONS(4954), - [anon_sym_is] = ACTIONS(4952), - [anon_sym_BANGis] = ACTIONS(4954), - [anon_sym_PLUS] = ACTIONS(4952), - [anon_sym_DASH] = ACTIONS(4952), - [anon_sym_SLASH] = ACTIONS(4952), - [anon_sym_PERCENT] = ACTIONS(4952), - [anon_sym_as_QMARK] = ACTIONS(4954), - [anon_sym_PLUS_PLUS] = ACTIONS(4954), - [anon_sym_DASH_DASH] = ACTIONS(4954), - [anon_sym_BANG_BANG] = ACTIONS(4954), - [anon_sym_suspend] = ACTIONS(4952), - [anon_sym_sealed] = ACTIONS(4952), - [anon_sym_annotation] = ACTIONS(4952), - [anon_sym_data] = ACTIONS(4952), - [anon_sym_inner] = ACTIONS(4952), - [anon_sym_value] = ACTIONS(4952), - [anon_sym_override] = ACTIONS(4952), - [anon_sym_lateinit] = ACTIONS(4952), - [anon_sym_public] = ACTIONS(4952), - [anon_sym_private] = ACTIONS(4952), - [anon_sym_internal] = ACTIONS(4952), - [anon_sym_protected] = ACTIONS(4952), - [anon_sym_tailrec] = ACTIONS(4952), - [anon_sym_operator] = ACTIONS(4952), - [anon_sym_infix] = ACTIONS(4952), - [anon_sym_inline] = ACTIONS(4952), - [anon_sym_external] = ACTIONS(4952), - [sym_property_modifier] = ACTIONS(4952), - [anon_sym_abstract] = ACTIONS(4952), - [anon_sym_final] = ACTIONS(4952), - [anon_sym_open] = ACTIONS(4952), - [anon_sym_vararg] = ACTIONS(4952), - [anon_sym_noinline] = ACTIONS(4952), - [anon_sym_crossinline] = ACTIONS(4952), - [anon_sym_expect] = ACTIONS(4952), - [anon_sym_actual] = ACTIONS(4952), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4954), - [sym_safe_nav] = ACTIONS(4954), - [sym_multiline_comment] = ACTIONS(3), - }, - [3687] = { - [sym_type_constraints] = STATE(4058), - [sym_function_body] = STATE(4129), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(7068), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4209), - [sym_label] = ACTIONS(4211), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_PLUS_EQ] = ACTIONS(4211), - [anon_sym_DASH_EQ] = ACTIONS(4211), - [anon_sym_STAR_EQ] = ACTIONS(4211), - [anon_sym_SLASH_EQ] = ACTIONS(4211), - [anon_sym_PERCENT_EQ] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4209), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_suspend] = ACTIONS(4209), - [anon_sym_sealed] = ACTIONS(4209), - [anon_sym_annotation] = ACTIONS(4209), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_override] = ACTIONS(4209), - [anon_sym_lateinit] = ACTIONS(4209), - [anon_sym_public] = ACTIONS(4209), - [anon_sym_private] = ACTIONS(4209), - [anon_sym_internal] = ACTIONS(4209), - [anon_sym_protected] = ACTIONS(4209), - [anon_sym_tailrec] = ACTIONS(4209), - [anon_sym_operator] = ACTIONS(4209), - [anon_sym_infix] = ACTIONS(4209), - [anon_sym_inline] = ACTIONS(4209), - [anon_sym_external] = ACTIONS(4209), - [sym_property_modifier] = ACTIONS(4209), - [anon_sym_abstract] = ACTIONS(4209), - [anon_sym_final] = ACTIONS(4209), - [anon_sym_open] = ACTIONS(4209), - [anon_sym_vararg] = ACTIONS(4209), - [anon_sym_noinline] = ACTIONS(4209), - [anon_sym_crossinline] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4211), - [sym__automatic_semicolon] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), - [sym_multiline_comment] = ACTIONS(3), - }, - [3688] = { - [sym__alpha_identifier] = ACTIONS(4130), - [anon_sym_AT] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_RBRACK] = ACTIONS(4132), - [anon_sym_as] = ACTIONS(4130), - [anon_sym_EQ] = ACTIONS(4130), - [anon_sym_LBRACE] = ACTIONS(4132), - [anon_sym_RBRACE] = ACTIONS(4132), - [anon_sym_LPAREN] = ACTIONS(4132), - [anon_sym_COMMA] = ACTIONS(4132), - [anon_sym_RPAREN] = ACTIONS(4132), - [anon_sym_LT] = ACTIONS(4130), - [anon_sym_GT] = ACTIONS(4130), - [anon_sym_where] = ACTIONS(4130), - [anon_sym_DOT] = ACTIONS(4130), - [anon_sym_SEMI] = ACTIONS(4132), - [anon_sym_get] = ACTIONS(4130), - [anon_sym_set] = ACTIONS(4130), - [anon_sym_STAR] = ACTIONS(4130), - [anon_sym_DASH_GT] = ACTIONS(4132), - [sym_label] = ACTIONS(4132), - [anon_sym_in] = ACTIONS(4130), - [anon_sym_while] = ACTIONS(4130), - [anon_sym_DOT_DOT] = ACTIONS(4132), - [anon_sym_QMARK_COLON] = ACTIONS(4132), - [anon_sym_AMP_AMP] = ACTIONS(4132), - [anon_sym_PIPE_PIPE] = ACTIONS(4132), - [anon_sym_else] = ACTIONS(4130), - [anon_sym_COLON_COLON] = ACTIONS(4132), - [anon_sym_PLUS_EQ] = ACTIONS(4132), - [anon_sym_DASH_EQ] = ACTIONS(4132), - [anon_sym_STAR_EQ] = ACTIONS(4132), - [anon_sym_SLASH_EQ] = ACTIONS(4132), - [anon_sym_PERCENT_EQ] = ACTIONS(4132), - [anon_sym_BANG_EQ] = ACTIONS(4130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4132), - [anon_sym_EQ_EQ] = ACTIONS(4130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4132), - [anon_sym_LT_EQ] = ACTIONS(4132), - [anon_sym_GT_EQ] = ACTIONS(4132), - [anon_sym_BANGin] = ACTIONS(4132), - [anon_sym_is] = ACTIONS(4130), - [anon_sym_BANGis] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4130), - [anon_sym_DASH] = ACTIONS(4130), - [anon_sym_SLASH] = ACTIONS(4130), - [anon_sym_PERCENT] = ACTIONS(4130), - [anon_sym_as_QMARK] = ACTIONS(4132), - [anon_sym_PLUS_PLUS] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4132), - [anon_sym_BANG_BANG] = ACTIONS(4132), - [anon_sym_suspend] = ACTIONS(4130), - [anon_sym_sealed] = ACTIONS(4130), - [anon_sym_annotation] = ACTIONS(4130), - [anon_sym_data] = ACTIONS(4130), - [anon_sym_inner] = ACTIONS(4130), - [anon_sym_value] = ACTIONS(4130), - [anon_sym_override] = ACTIONS(4130), - [anon_sym_lateinit] = ACTIONS(4130), - [anon_sym_public] = ACTIONS(4130), - [anon_sym_private] = ACTIONS(4130), - [anon_sym_internal] = ACTIONS(4130), - [anon_sym_protected] = ACTIONS(4130), - [anon_sym_tailrec] = ACTIONS(4130), - [anon_sym_operator] = ACTIONS(4130), - [anon_sym_infix] = ACTIONS(4130), - [anon_sym_inline] = ACTIONS(4130), - [anon_sym_external] = ACTIONS(4130), - [sym_property_modifier] = ACTIONS(4130), - [anon_sym_abstract] = ACTIONS(4130), - [anon_sym_final] = ACTIONS(4130), - [anon_sym_open] = ACTIONS(4130), - [anon_sym_vararg] = ACTIONS(4130), - [anon_sym_noinline] = ACTIONS(4130), - [anon_sym_crossinline] = ACTIONS(4130), - [anon_sym_expect] = ACTIONS(4130), - [anon_sym_actual] = ACTIONS(4130), + [sym_type_constraints] = STATE(3791), + [sym_enum_class_body] = STATE(3952), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(7013), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4132), - [sym_safe_nav] = ACTIONS(4132), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, - [3689] = { - [sym__alpha_identifier] = ACTIONS(5165), - [anon_sym_AT] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [anon_sym_RBRACK] = ACTIONS(5167), - [anon_sym_as] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_RBRACE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_where] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_get] = ACTIONS(5165), - [anon_sym_set] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [anon_sym_DASH_GT] = ACTIONS(5167), - [sym_label] = ACTIONS(5167), - [anon_sym_in] = ACTIONS(5165), - [anon_sym_while] = ACTIONS(5165), - [anon_sym_DOT_DOT] = ACTIONS(5167), - [anon_sym_QMARK_COLON] = ACTIONS(5167), - [anon_sym_AMP_AMP] = ACTIONS(5167), - [anon_sym_PIPE_PIPE] = ACTIONS(5167), - [anon_sym_else] = ACTIONS(5165), - [anon_sym_COLON_COLON] = ACTIONS(5167), - [anon_sym_PLUS_EQ] = ACTIONS(5167), - [anon_sym_DASH_EQ] = ACTIONS(5167), - [anon_sym_STAR_EQ] = ACTIONS(5167), - [anon_sym_SLASH_EQ] = ACTIONS(5167), - [anon_sym_PERCENT_EQ] = ACTIONS(5167), - [anon_sym_BANG_EQ] = ACTIONS(5165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5167), - [anon_sym_EQ_EQ] = ACTIONS(5165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5167), - [anon_sym_LT_EQ] = ACTIONS(5167), - [anon_sym_GT_EQ] = ACTIONS(5167), - [anon_sym_BANGin] = ACTIONS(5167), - [anon_sym_is] = ACTIONS(5165), - [anon_sym_BANGis] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_PERCENT] = ACTIONS(5165), - [anon_sym_as_QMARK] = ACTIONS(5167), - [anon_sym_PLUS_PLUS] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5167), - [anon_sym_BANG_BANG] = ACTIONS(5167), - [anon_sym_suspend] = ACTIONS(5165), - [anon_sym_sealed] = ACTIONS(5165), - [anon_sym_annotation] = ACTIONS(5165), - [anon_sym_data] = ACTIONS(5165), - [anon_sym_inner] = ACTIONS(5165), - [anon_sym_value] = ACTIONS(5165), - [anon_sym_override] = ACTIONS(5165), - [anon_sym_lateinit] = ACTIONS(5165), - [anon_sym_public] = ACTIONS(5165), - [anon_sym_private] = ACTIONS(5165), - [anon_sym_internal] = ACTIONS(5165), - [anon_sym_protected] = ACTIONS(5165), - [anon_sym_tailrec] = ACTIONS(5165), - [anon_sym_operator] = ACTIONS(5165), - [anon_sym_infix] = ACTIONS(5165), - [anon_sym_inline] = ACTIONS(5165), - [anon_sym_external] = ACTIONS(5165), - [sym_property_modifier] = ACTIONS(5165), - [anon_sym_abstract] = ACTIONS(5165), - [anon_sym_final] = ACTIONS(5165), - [anon_sym_open] = ACTIONS(5165), - [anon_sym_vararg] = ACTIONS(5165), - [anon_sym_noinline] = ACTIONS(5165), - [anon_sym_crossinline] = ACTIONS(5165), - [anon_sym_expect] = ACTIONS(5165), - [anon_sym_actual] = ACTIONS(5165), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5167), - [sym_safe_nav] = ACTIONS(5167), + [3684] = { + [sym_type_constraints] = STATE(3868), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [3685] = { + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(5988), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [3686] = { + [sym_class_body] = STATE(3861), + [sym_type_constraints] = STATE(3816), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7015), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + }, + [3687] = { + [sym_type_constraints] = STATE(4036), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(7017), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, + [3688] = { + [aux_sym_user_type_repeat1] = STATE(3632), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_typealias] = ACTIONS(4193), + [anon_sym_class] = ACTIONS(4193), + [anon_sym_interface] = ACTIONS(4193), + [anon_sym_enum] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_val] = ACTIONS(4193), + [anon_sym_var] = ACTIONS(4193), + [anon_sym_object] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6964), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_this] = ACTIONS(4193), + [anon_sym_super] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4195), + [sym_label] = ACTIONS(4193), + [anon_sym_for] = ACTIONS(4193), + [anon_sym_while] = ACTIONS(4193), + [anon_sym_do] = ACTIONS(4193), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_when] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_throw] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG] = ACTIONS(4195), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4195), + [anon_sym_continue_AT] = ACTIONS(4195), + [anon_sym_break_AT] = ACTIONS(4195), + [anon_sym_this_AT] = ACTIONS(4195), + [anon_sym_super_AT] = ACTIONS(4195), + [sym_real_literal] = ACTIONS(4195), + [sym_integer_literal] = ACTIONS(4193), + [sym_hex_literal] = ACTIONS(4195), + [sym_bin_literal] = ACTIONS(4195), + [anon_sym_true] = ACTIONS(4193), + [anon_sym_false] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4195), + [sym__backtick_identifier] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4195), + }, + [3689] = { + [sym_class_body] = STATE(3173), + [sym_type_constraints] = STATE(3039), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, [3690] = { - [sym__alpha_identifier] = ACTIONS(4906), - [anon_sym_AT] = ACTIONS(4908), - [anon_sym_LBRACK] = ACTIONS(4908), - [anon_sym_RBRACK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_EQ] = ACTIONS(4906), - [anon_sym_LBRACE] = ACTIONS(4908), - [anon_sym_RBRACE] = ACTIONS(4908), - [anon_sym_LPAREN] = ACTIONS(4908), - [anon_sym_COMMA] = ACTIONS(4908), - [anon_sym_RPAREN] = ACTIONS(4908), - [anon_sym_LT] = ACTIONS(4906), - [anon_sym_GT] = ACTIONS(4906), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4906), - [anon_sym_SEMI] = ACTIONS(4908), - [anon_sym_get] = ACTIONS(4906), - [anon_sym_set] = ACTIONS(4906), - [anon_sym_STAR] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4908), - [sym_label] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4906), - [anon_sym_while] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4908), - [anon_sym_QMARK_COLON] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_PIPE_PIPE] = ACTIONS(4908), - [anon_sym_else] = ACTIONS(4906), - [anon_sym_COLON_COLON] = ACTIONS(4908), - [anon_sym_PLUS_EQ] = ACTIONS(4908), - [anon_sym_DASH_EQ] = ACTIONS(4908), - [anon_sym_STAR_EQ] = ACTIONS(4908), - [anon_sym_SLASH_EQ] = ACTIONS(4908), - [anon_sym_PERCENT_EQ] = ACTIONS(4908), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4908), - [anon_sym_LT_EQ] = ACTIONS(4908), - [anon_sym_GT_EQ] = ACTIONS(4908), - [anon_sym_BANGin] = ACTIONS(4908), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_BANGis] = ACTIONS(4908), - [anon_sym_PLUS] = ACTIONS(4906), - [anon_sym_DASH] = ACTIONS(4906), - [anon_sym_SLASH] = ACTIONS(4906), - [anon_sym_PERCENT] = ACTIONS(4906), - [anon_sym_as_QMARK] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4908), - [anon_sym_DASH_DASH] = ACTIONS(4908), - [anon_sym_BANG_BANG] = ACTIONS(4908), - [anon_sym_suspend] = ACTIONS(4906), - [anon_sym_sealed] = ACTIONS(4906), - [anon_sym_annotation] = ACTIONS(4906), - [anon_sym_data] = ACTIONS(4906), - [anon_sym_inner] = ACTIONS(4906), - [anon_sym_value] = ACTIONS(4906), - [anon_sym_override] = ACTIONS(4906), - [anon_sym_lateinit] = ACTIONS(4906), - [anon_sym_public] = ACTIONS(4906), - [anon_sym_private] = ACTIONS(4906), - [anon_sym_internal] = ACTIONS(4906), - [anon_sym_protected] = ACTIONS(4906), - [anon_sym_tailrec] = ACTIONS(4906), - [anon_sym_operator] = ACTIONS(4906), - [anon_sym_infix] = ACTIONS(4906), - [anon_sym_inline] = ACTIONS(4906), - [anon_sym_external] = ACTIONS(4906), - [sym_property_modifier] = ACTIONS(4906), - [anon_sym_abstract] = ACTIONS(4906), - [anon_sym_final] = ACTIONS(4906), - [anon_sym_open] = ACTIONS(4906), - [anon_sym_vararg] = ACTIONS(4906), - [anon_sym_noinline] = ACTIONS(4906), - [anon_sym_crossinline] = ACTIONS(4906), - [anon_sym_expect] = ACTIONS(4906), - [anon_sym_actual] = ACTIONS(4906), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4908), - [sym_safe_nav] = ACTIONS(4908), + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(7019), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [3691] = { - [sym__alpha_identifier] = ACTIONS(4944), - [anon_sym_AT] = ACTIONS(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_RBRACK] = ACTIONS(4946), - [anon_sym_as] = ACTIONS(4944), - [anon_sym_EQ] = ACTIONS(4944), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_RPAREN] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_where] = ACTIONS(4944), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_get] = ACTIONS(4944), - [anon_sym_set] = ACTIONS(4944), - [anon_sym_STAR] = ACTIONS(4944), - [anon_sym_DASH_GT] = ACTIONS(4946), - [sym_label] = ACTIONS(4946), - [anon_sym_in] = ACTIONS(4944), - [anon_sym_while] = ACTIONS(4944), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_QMARK_COLON] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_else] = ACTIONS(4944), - [anon_sym_COLON_COLON] = ACTIONS(4946), - [anon_sym_PLUS_EQ] = ACTIONS(4946), - [anon_sym_DASH_EQ] = ACTIONS(4946), - [anon_sym_STAR_EQ] = ACTIONS(4946), - [anon_sym_SLASH_EQ] = ACTIONS(4946), - [anon_sym_PERCENT_EQ] = ACTIONS(4946), - [anon_sym_BANG_EQ] = ACTIONS(4944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_BANGin] = ACTIONS(4946), - [anon_sym_is] = ACTIONS(4944), - [anon_sym_BANGis] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4944), - [anon_sym_as_QMARK] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_BANG_BANG] = ACTIONS(4946), - [anon_sym_suspend] = ACTIONS(4944), - [anon_sym_sealed] = ACTIONS(4944), - [anon_sym_annotation] = ACTIONS(4944), - [anon_sym_data] = ACTIONS(4944), - [anon_sym_inner] = ACTIONS(4944), - [anon_sym_value] = ACTIONS(4944), - [anon_sym_override] = ACTIONS(4944), - [anon_sym_lateinit] = ACTIONS(4944), - [anon_sym_public] = ACTIONS(4944), - [anon_sym_private] = ACTIONS(4944), - [anon_sym_internal] = ACTIONS(4944), - [anon_sym_protected] = ACTIONS(4944), - [anon_sym_tailrec] = ACTIONS(4944), - [anon_sym_operator] = ACTIONS(4944), - [anon_sym_infix] = ACTIONS(4944), - [anon_sym_inline] = ACTIONS(4944), - [anon_sym_external] = ACTIONS(4944), - [sym_property_modifier] = ACTIONS(4944), - [anon_sym_abstract] = ACTIONS(4944), - [anon_sym_final] = ACTIONS(4944), - [anon_sym_open] = ACTIONS(4944), - [anon_sym_vararg] = ACTIONS(4944), - [anon_sym_noinline] = ACTIONS(4944), - [anon_sym_crossinline] = ACTIONS(4944), - [anon_sym_expect] = ACTIONS(4944), - [anon_sym_actual] = ACTIONS(4944), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4946), - [sym_safe_nav] = ACTIONS(4946), + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_constructor] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4181), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_QMARK_COLON] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS_EQ] = ACTIONS(4181), + [anon_sym_DASH_EQ] = ACTIONS(4181), + [anon_sym_STAR_EQ] = ACTIONS(4181), + [anon_sym_SLASH_EQ] = ACTIONS(4181), + [anon_sym_PERCENT_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_as_QMARK] = ACTIONS(4181), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG_BANG] = ACTIONS(4181), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4181), + [sym__automatic_semicolon] = ACTIONS(4181), + [sym_safe_nav] = ACTIONS(4181), [sym_multiline_comment] = ACTIONS(3), }, [3692] = { - [sym__alpha_identifier] = ACTIONS(4948), - [anon_sym_AT] = ACTIONS(4950), - [anon_sym_LBRACK] = ACTIONS(4950), - [anon_sym_RBRACK] = ACTIONS(4950), - [anon_sym_as] = ACTIONS(4948), - [anon_sym_EQ] = ACTIONS(4948), - [anon_sym_LBRACE] = ACTIONS(4950), - [anon_sym_RBRACE] = ACTIONS(4950), - [anon_sym_LPAREN] = ACTIONS(4950), - [anon_sym_COMMA] = ACTIONS(4950), - [anon_sym_RPAREN] = ACTIONS(4950), - [anon_sym_LT] = ACTIONS(4948), - [anon_sym_GT] = ACTIONS(4948), - [anon_sym_where] = ACTIONS(4948), - [anon_sym_DOT] = ACTIONS(4948), - [anon_sym_SEMI] = ACTIONS(4950), - [anon_sym_get] = ACTIONS(4948), - [anon_sym_set] = ACTIONS(4948), - [anon_sym_STAR] = ACTIONS(4948), - [anon_sym_DASH_GT] = ACTIONS(4950), - [sym_label] = ACTIONS(4950), - [anon_sym_in] = ACTIONS(4948), - [anon_sym_while] = ACTIONS(4948), - [anon_sym_DOT_DOT] = ACTIONS(4950), - [anon_sym_QMARK_COLON] = ACTIONS(4950), - [anon_sym_AMP_AMP] = ACTIONS(4950), - [anon_sym_PIPE_PIPE] = ACTIONS(4950), - [anon_sym_else] = ACTIONS(4948), - [anon_sym_COLON_COLON] = ACTIONS(4950), - [anon_sym_PLUS_EQ] = ACTIONS(4950), - [anon_sym_DASH_EQ] = ACTIONS(4950), - [anon_sym_STAR_EQ] = ACTIONS(4950), - [anon_sym_SLASH_EQ] = ACTIONS(4950), - [anon_sym_PERCENT_EQ] = ACTIONS(4950), - [anon_sym_BANG_EQ] = ACTIONS(4948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4950), - [anon_sym_EQ_EQ] = ACTIONS(4948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4950), - [anon_sym_LT_EQ] = ACTIONS(4950), - [anon_sym_GT_EQ] = ACTIONS(4950), - [anon_sym_BANGin] = ACTIONS(4950), - [anon_sym_is] = ACTIONS(4948), - [anon_sym_BANGis] = ACTIONS(4950), - [anon_sym_PLUS] = ACTIONS(4948), - [anon_sym_DASH] = ACTIONS(4948), - [anon_sym_SLASH] = ACTIONS(4948), - [anon_sym_PERCENT] = ACTIONS(4948), - [anon_sym_as_QMARK] = ACTIONS(4950), - [anon_sym_PLUS_PLUS] = ACTIONS(4950), - [anon_sym_DASH_DASH] = ACTIONS(4950), - [anon_sym_BANG_BANG] = ACTIONS(4950), - [anon_sym_suspend] = ACTIONS(4948), - [anon_sym_sealed] = ACTIONS(4948), - [anon_sym_annotation] = ACTIONS(4948), - [anon_sym_data] = ACTIONS(4948), - [anon_sym_inner] = ACTIONS(4948), - [anon_sym_value] = ACTIONS(4948), - [anon_sym_override] = ACTIONS(4948), - [anon_sym_lateinit] = ACTIONS(4948), - [anon_sym_public] = ACTIONS(4948), - [anon_sym_private] = ACTIONS(4948), - [anon_sym_internal] = ACTIONS(4948), - [anon_sym_protected] = ACTIONS(4948), - [anon_sym_tailrec] = ACTIONS(4948), - [anon_sym_operator] = ACTIONS(4948), - [anon_sym_infix] = ACTIONS(4948), - [anon_sym_inline] = ACTIONS(4948), - [anon_sym_external] = ACTIONS(4948), - [sym_property_modifier] = ACTIONS(4948), - [anon_sym_abstract] = ACTIONS(4948), - [anon_sym_final] = ACTIONS(4948), - [anon_sym_open] = ACTIONS(4948), - [anon_sym_vararg] = ACTIONS(4948), - [anon_sym_noinline] = ACTIONS(4948), - [anon_sym_crossinline] = ACTIONS(4948), - [anon_sym_expect] = ACTIONS(4948), - [anon_sym_actual] = ACTIONS(4948), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4950), - [sym_safe_nav] = ACTIONS(4950), + [sym_type_constraints] = STATE(3820), + [sym_enum_class_body] = STATE(3861), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7021), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [3693] = { - [sym_class_body] = STATE(4137), - [sym_type_constraints] = STATE(3874), + [sym_class_body] = STATE(3206), + [sym_type_constraints] = STATE(3024), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(7023), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), + }, + [3694] = { + [sym_function_body] = STATE(3414), + [sym__block] = STATE(3402), [sym__alpha_identifier] = ACTIONS(4275), [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(7070), + [anon_sym_COLON] = ACTIONS(7025), [anon_sym_LBRACK] = ACTIONS(4277), [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(5806), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_RBRACE] = ACTIONS(4277), [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4277), [anon_sym_LT] = ACTIONS(4275), [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(5812), [anon_sym_DOT] = ACTIONS(4275), [anon_sym_SEMI] = ACTIONS(4277), [anon_sym_get] = ACTIONS(4275), @@ -422383,6 +420120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4275), [sym_label] = ACTIONS(4277), [anon_sym_in] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), [anon_sym_DOT_DOT] = ACTIONS(4277), [anon_sym_QMARK_COLON] = ACTIONS(4277), [anon_sym_AMP_AMP] = ACTIONS(4277), @@ -422439,1439 +420177,951 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4275), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), }, - [3694] = { - [sym__alpha_identifier] = ACTIONS(5038), - [anon_sym_AT] = ACTIONS(5040), - [anon_sym_LBRACK] = ACTIONS(5040), - [anon_sym_RBRACK] = ACTIONS(5040), - [anon_sym_as] = ACTIONS(5038), - [anon_sym_EQ] = ACTIONS(5053), - [anon_sym_LBRACE] = ACTIONS(5040), - [anon_sym_RBRACE] = ACTIONS(5040), - [anon_sym_LPAREN] = ACTIONS(5040), - [anon_sym_COMMA] = ACTIONS(5040), - [anon_sym_RPAREN] = ACTIONS(5040), - [anon_sym_LT] = ACTIONS(5038), - [anon_sym_GT] = ACTIONS(5038), - [anon_sym_where] = ACTIONS(5038), - [anon_sym_DOT] = ACTIONS(5038), - [anon_sym_SEMI] = ACTIONS(5040), - [anon_sym_get] = ACTIONS(5038), - [anon_sym_set] = ACTIONS(5038), - [anon_sym_STAR] = ACTIONS(5038), - [anon_sym_DASH_GT] = ACTIONS(5040), - [sym_label] = ACTIONS(5040), - [anon_sym_in] = ACTIONS(5038), - [anon_sym_while] = ACTIONS(5038), - [anon_sym_DOT_DOT] = ACTIONS(5040), - [anon_sym_QMARK_COLON] = ACTIONS(5040), - [anon_sym_AMP_AMP] = ACTIONS(5040), - [anon_sym_PIPE_PIPE] = ACTIONS(5040), - [anon_sym_else] = ACTIONS(5038), - [anon_sym_COLON_COLON] = ACTIONS(7043), - [anon_sym_PLUS_EQ] = ACTIONS(5055), - [anon_sym_DASH_EQ] = ACTIONS(5055), - [anon_sym_STAR_EQ] = ACTIONS(5055), - [anon_sym_SLASH_EQ] = ACTIONS(5055), - [anon_sym_PERCENT_EQ] = ACTIONS(5055), - [anon_sym_BANG_EQ] = ACTIONS(5038), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5040), - [anon_sym_EQ_EQ] = ACTIONS(5038), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5040), - [anon_sym_LT_EQ] = ACTIONS(5040), - [anon_sym_GT_EQ] = ACTIONS(5040), - [anon_sym_BANGin] = ACTIONS(5040), - [anon_sym_is] = ACTIONS(5038), - [anon_sym_BANGis] = ACTIONS(5040), - [anon_sym_PLUS] = ACTIONS(5038), - [anon_sym_DASH] = ACTIONS(5038), - [anon_sym_SLASH] = ACTIONS(5038), - [anon_sym_PERCENT] = ACTIONS(5038), - [anon_sym_as_QMARK] = ACTIONS(5040), - [anon_sym_PLUS_PLUS] = ACTIONS(5040), - [anon_sym_DASH_DASH] = ACTIONS(5040), - [anon_sym_BANG_BANG] = ACTIONS(5040), - [anon_sym_suspend] = ACTIONS(5038), - [anon_sym_sealed] = ACTIONS(5038), - [anon_sym_annotation] = ACTIONS(5038), - [anon_sym_data] = ACTIONS(5038), - [anon_sym_inner] = ACTIONS(5038), - [anon_sym_value] = ACTIONS(5038), - [anon_sym_override] = ACTIONS(5038), - [anon_sym_lateinit] = ACTIONS(5038), - [anon_sym_public] = ACTIONS(5038), - [anon_sym_private] = ACTIONS(5038), - [anon_sym_internal] = ACTIONS(5038), - [anon_sym_protected] = ACTIONS(5038), - [anon_sym_tailrec] = ACTIONS(5038), - [anon_sym_operator] = ACTIONS(5038), - [anon_sym_infix] = ACTIONS(5038), - [anon_sym_inline] = ACTIONS(5038), - [anon_sym_external] = ACTIONS(5038), - [sym_property_modifier] = ACTIONS(5038), - [anon_sym_abstract] = ACTIONS(5038), - [anon_sym_final] = ACTIONS(5038), - [anon_sym_open] = ACTIONS(5038), - [anon_sym_vararg] = ACTIONS(5038), - [anon_sym_noinline] = ACTIONS(5038), - [anon_sym_crossinline] = ACTIONS(5038), - [anon_sym_expect] = ACTIONS(5038), - [anon_sym_actual] = ACTIONS(5038), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5040), - [sym_safe_nav] = ACTIONS(5040), - [sym_multiline_comment] = ACTIONS(3), - }, [3695] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_RBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(5644), - [anon_sym_COMMA] = ACTIONS(4239), - [anon_sym_RPAREN] = ACTIONS(4239), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_where] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [anon_sym_DASH_GT] = ACTIONS(4239), - [sym_label] = ACTIONS(4239), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_while] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_suspend] = ACTIONS(4236), - [anon_sym_sealed] = ACTIONS(4236), - [anon_sym_annotation] = ACTIONS(4236), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4236), - [anon_sym_lateinit] = ACTIONS(4236), - [anon_sym_public] = ACTIONS(4236), - [anon_sym_private] = ACTIONS(4236), - [anon_sym_internal] = ACTIONS(4236), - [anon_sym_protected] = ACTIONS(4236), - [anon_sym_tailrec] = ACTIONS(4236), - [anon_sym_operator] = ACTIONS(4236), - [anon_sym_infix] = ACTIONS(4236), - [anon_sym_inline] = ACTIONS(4236), - [anon_sym_external] = ACTIONS(4236), - [sym_property_modifier] = ACTIONS(4236), - [anon_sym_abstract] = ACTIONS(4236), - [anon_sym_final] = ACTIONS(4236), - [anon_sym_open] = ACTIONS(4236), - [anon_sym_vararg] = ACTIONS(4236), - [anon_sym_noinline] = ACTIONS(4236), - [anon_sym_crossinline] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [3696] = { - [aux_sym_user_type_repeat1] = STATE(3429), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_COMMA] = ACTIONS(4227), - [anon_sym_by] = ACTIONS(4225), - [anon_sym_LT] = ACTIONS(4225), - [anon_sym_GT] = ACTIONS(4225), - [anon_sym_where] = ACTIONS(4225), - [anon_sym_DOT] = ACTIONS(7072), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [anon_sym_STAR] = ACTIONS(4225), - [sym_label] = ACTIONS(4227), - [anon_sym_in] = ACTIONS(4225), - [anon_sym_DOT_DOT] = ACTIONS(4227), - [anon_sym_QMARK_COLON] = ACTIONS(4227), - [anon_sym_AMP_AMP] = ACTIONS(4227), - [anon_sym_PIPE_PIPE] = ACTIONS(4227), - [anon_sym_else] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_PLUS_EQ] = ACTIONS(4227), - [anon_sym_DASH_EQ] = ACTIONS(4227), - [anon_sym_STAR_EQ] = ACTIONS(4227), - [anon_sym_SLASH_EQ] = ACTIONS(4227), - [anon_sym_PERCENT_EQ] = ACTIONS(4227), - [anon_sym_BANG_EQ] = ACTIONS(4225), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4227), - [anon_sym_EQ_EQ] = ACTIONS(4225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4227), - [anon_sym_LT_EQ] = ACTIONS(4227), - [anon_sym_GT_EQ] = ACTIONS(4227), - [anon_sym_BANGin] = ACTIONS(4227), - [anon_sym_is] = ACTIONS(4225), - [anon_sym_BANGis] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_SLASH] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_as_QMARK] = ACTIONS(4227), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG_BANG] = ACTIONS(4227), - [anon_sym_suspend] = ACTIONS(4225), - [anon_sym_sealed] = ACTIONS(4225), - [anon_sym_annotation] = ACTIONS(4225), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_override] = ACTIONS(4225), - [anon_sym_lateinit] = ACTIONS(4225), - [anon_sym_public] = ACTIONS(4225), - [anon_sym_private] = ACTIONS(4225), - [anon_sym_internal] = ACTIONS(4225), - [anon_sym_protected] = ACTIONS(4225), - [anon_sym_tailrec] = ACTIONS(4225), - [anon_sym_operator] = ACTIONS(4225), - [anon_sym_infix] = ACTIONS(4225), - [anon_sym_inline] = ACTIONS(4225), - [anon_sym_external] = ACTIONS(4225), - [sym_property_modifier] = ACTIONS(4225), - [anon_sym_abstract] = ACTIONS(4225), - [anon_sym_final] = ACTIONS(4225), - [anon_sym_open] = ACTIONS(4225), - [anon_sym_vararg] = ACTIONS(4225), - [anon_sym_noinline] = ACTIONS(4225), - [anon_sym_crossinline] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4227), - [sym__automatic_semicolon] = ACTIONS(4227), - [sym_safe_nav] = ACTIONS(4227), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3061), + [sym_type_constraints] = STATE(3015), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [3697] = { - [sym_type_constraints] = STATE(4026), - [sym_function_body] = STATE(3354), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [sym_type_constraints] = STATE(3007), + [sym_enum_class_body] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7027), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [3698] = { - [sym_class_body] = STATE(3297), - [sym_type_constraints] = STATE(3046), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(7075), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_fun] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4275), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_this] = ACTIONS(4275), - [anon_sym_super] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4277), - [sym_label] = ACTIONS(4275), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4275), - [anon_sym_if] = ACTIONS(4275), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_when] = ACTIONS(4275), - [anon_sym_try] = ACTIONS(4275), - [anon_sym_throw] = ACTIONS(4275), - [anon_sym_return] = ACTIONS(4275), - [anon_sym_continue] = ACTIONS(4275), - [anon_sym_break] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4277), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4277), - [anon_sym_continue_AT] = ACTIONS(4277), - [anon_sym_break_AT] = ACTIONS(4277), - [anon_sym_this_AT] = ACTIONS(4277), - [anon_sym_super_AT] = ACTIONS(4277), - [sym_real_literal] = ACTIONS(4277), - [sym_integer_literal] = ACTIONS(4275), - [sym_hex_literal] = ACTIONS(4277), - [sym_bin_literal] = ACTIONS(4277), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [anon_sym_SQUOTE] = ACTIONS(4277), - [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), + [sym_class_body] = STATE(3255), + [sym_type_constraints] = STATE(3006), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7029), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [3699] = { - [sym_class_body] = STATE(3345), - [sym_type_constraints] = STATE(3121), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7077), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, [3700] = { - [sym_type_constraints] = STATE(3138), - [sym_enum_class_body] = STATE(3345), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7079), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [sym_class_body] = STATE(3953), + [sym_type_constraints] = STATE(3786), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(5990), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), }, [3701] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_catch] = ACTIONS(4377), - [anon_sym_finally] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6006), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [3702] = { - [sym_class_body] = STATE(3264), - [sym_type_constraints] = STATE(3064), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3506), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [3703] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(5032), - [anon_sym_EQ] = ACTIONS(5032), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(5032), - [anon_sym_GT] = ACTIONS(5032), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(5032), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(5034), - [anon_sym_QMARK_COLON] = ACTIONS(5034), - [anon_sym_AMP_AMP] = ACTIONS(5034), - [anon_sym_PIPE_PIPE] = ACTIONS(5034), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(5034), - [anon_sym_DASH_EQ] = ACTIONS(5034), - [anon_sym_STAR_EQ] = ACTIONS(5034), - [anon_sym_SLASH_EQ] = ACTIONS(5034), - [anon_sym_PERCENT_EQ] = ACTIONS(5034), - [anon_sym_BANG_EQ] = ACTIONS(5032), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5034), - [anon_sym_EQ_EQ] = ACTIONS(5032), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5034), - [anon_sym_LT_EQ] = ACTIONS(5034), - [anon_sym_GT_EQ] = ACTIONS(5034), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(5032), - [anon_sym_PERCENT] = ACTIONS(5032), - [anon_sym_as_QMARK] = ACTIONS(5034), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(5034), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(5034), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), - }, - [3704] = { - [sym_class_body] = STATE(3204), - [sym_type_constraints] = STATE(3107), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3522), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), - }, - [3705] = { - [sym_type_constraints] = STATE(3134), - [sym_enum_class_body] = STATE(3204), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), - }, - [3706] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(7081), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), - }, - [3707] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), + [sym_class_body] = STATE(3884), + [sym_type_constraints] = STATE(3739), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(7031), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4015), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), }, - [3708] = { - [sym_class_body] = STATE(3174), - [sym_type_constraints] = STATE(3093), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7089), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [3703] = { + [sym_type_constraints] = STATE(2996), + [sym_enum_class_body] = STATE(3200), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(7033), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), + [sym__string_start] = ACTIONS(4323), }, - [3709] = { - [sym_type_constraints] = STATE(3045), - [sym_enum_class_body] = STATE(3174), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7091), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [3704] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_catch] = ACTIONS(4451), + [anon_sym_finally] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), }, - [3710] = { - [sym__alpha_identifier] = ACTIONS(4219), - [anon_sym_AT] = ACTIONS(4221), - [anon_sym_COLON] = ACTIONS(6891), - [anon_sym_LBRACK] = ACTIONS(4221), - [anon_sym_as] = ACTIONS(4219), - [anon_sym_EQ] = ACTIONS(4219), - [anon_sym_LBRACE] = ACTIONS(4221), - [anon_sym_RBRACE] = ACTIONS(4221), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_COMMA] = ACTIONS(4221), - [anon_sym_by] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4219), - [anon_sym_GT] = ACTIONS(4219), - [anon_sym_where] = ACTIONS(4219), - [anon_sym_DOT] = ACTIONS(4219), - [anon_sym_SEMI] = ACTIONS(4221), - [anon_sym_get] = ACTIONS(4219), - [anon_sym_set] = ACTIONS(4219), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4221), - [anon_sym_in] = ACTIONS(4219), - [anon_sym_DOT_DOT] = ACTIONS(4221), - [anon_sym_QMARK_COLON] = ACTIONS(4221), - [anon_sym_AMP_AMP] = ACTIONS(4221), - [anon_sym_PIPE_PIPE] = ACTIONS(4221), - [anon_sym_else] = ACTIONS(4219), - [anon_sym_COLON_COLON] = ACTIONS(4221), - [anon_sym_PLUS_EQ] = ACTIONS(4221), - [anon_sym_DASH_EQ] = ACTIONS(4221), - [anon_sym_STAR_EQ] = ACTIONS(4221), - [anon_sym_SLASH_EQ] = ACTIONS(4221), - [anon_sym_PERCENT_EQ] = ACTIONS(4221), - [anon_sym_BANG_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4221), - [anon_sym_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4221), - [anon_sym_LT_EQ] = ACTIONS(4221), - [anon_sym_GT_EQ] = ACTIONS(4221), - [anon_sym_BANGin] = ACTIONS(4221), - [anon_sym_is] = ACTIONS(4219), - [anon_sym_BANGis] = ACTIONS(4221), - [anon_sym_PLUS] = ACTIONS(4219), - [anon_sym_DASH] = ACTIONS(4219), - [anon_sym_SLASH] = ACTIONS(4219), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4221), - [anon_sym_PLUS_PLUS] = ACTIONS(4221), - [anon_sym_DASH_DASH] = ACTIONS(4221), - [anon_sym_BANG_BANG] = ACTIONS(4221), - [anon_sym_suspend] = ACTIONS(4219), - [anon_sym_sealed] = ACTIONS(4219), - [anon_sym_annotation] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4219), - [anon_sym_inner] = ACTIONS(4219), - [anon_sym_value] = ACTIONS(4219), - [anon_sym_override] = ACTIONS(4219), - [anon_sym_lateinit] = ACTIONS(4219), - [anon_sym_public] = ACTIONS(4219), - [anon_sym_private] = ACTIONS(4219), - [anon_sym_internal] = ACTIONS(4219), - [anon_sym_protected] = ACTIONS(4219), - [anon_sym_tailrec] = ACTIONS(4219), - [anon_sym_operator] = ACTIONS(4219), - [anon_sym_infix] = ACTIONS(4219), - [anon_sym_inline] = ACTIONS(4219), - [anon_sym_external] = ACTIONS(4219), - [sym_property_modifier] = ACTIONS(4219), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_final] = ACTIONS(4219), - [anon_sym_open] = ACTIONS(4219), - [anon_sym_vararg] = ACTIONS(4219), - [anon_sym_noinline] = ACTIONS(4219), - [anon_sym_crossinline] = ACTIONS(4219), - [anon_sym_expect] = ACTIONS(4219), - [anon_sym_actual] = ACTIONS(4219), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4221), - [sym__automatic_semicolon] = ACTIONS(4221), - [sym_safe_nav] = ACTIONS(4221), - [sym_multiline_comment] = ACTIONS(3), + [3705] = { + [sym_type_constraints] = STATE(4020), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [3711] = { - [sym_class_body] = STATE(4105), + [3706] = { + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3082), [sym__alpha_identifier] = ACTIONS(4443), [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(7093), [anon_sym_LBRACK] = ACTIONS(4445), [anon_sym_as] = ACTIONS(4443), - [anon_sym_EQ] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(5806), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), [anon_sym_RBRACE] = ACTIONS(4445), [anon_sym_LPAREN] = ACTIONS(4445), [anon_sym_COMMA] = ACTIONS(4445), [anon_sym_LT] = ACTIONS(4443), [anon_sym_GT] = ACTIONS(4443), [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), [anon_sym_DOT] = ACTIONS(4443), [anon_sym_SEMI] = ACTIONS(4445), [anon_sym_get] = ACTIONS(4443), [anon_sym_set] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4443), - [sym_label] = ACTIONS(4445), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4443), [anon_sym_in] = ACTIONS(4443), [anon_sym_DOT_DOT] = ACTIONS(4445), [anon_sym_QMARK_COLON] = ACTIONS(4445), [anon_sym_AMP_AMP] = ACTIONS(4445), [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_PLUS_EQ] = ACTIONS(4445), - [anon_sym_DASH_EQ] = ACTIONS(4445), - [anon_sym_STAR_EQ] = ACTIONS(4445), - [anon_sym_SLASH_EQ] = ACTIONS(4445), - [anon_sym_PERCENT_EQ] = ACTIONS(4445), [anon_sym_BANG_EQ] = ACTIONS(4443), [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), [anon_sym_EQ_EQ] = ACTIONS(4443), @@ -423884,1306 +421134,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4443), [anon_sym_DASH] = ACTIONS(4443), [anon_sym_SLASH] = ACTIONS(4443), - [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), [anon_sym_as_QMARK] = ACTIONS(4445), [anon_sym_PLUS_PLUS] = ACTIONS(4445), [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), [anon_sym_BANG_BANG] = ACTIONS(4445), - [anon_sym_suspend] = ACTIONS(4443), - [anon_sym_sealed] = ACTIONS(4443), - [anon_sym_annotation] = ACTIONS(4443), [anon_sym_data] = ACTIONS(4443), [anon_sym_inner] = ACTIONS(4443), [anon_sym_value] = ACTIONS(4443), - [anon_sym_override] = ACTIONS(4443), - [anon_sym_lateinit] = ACTIONS(4443), - [anon_sym_public] = ACTIONS(4443), - [anon_sym_private] = ACTIONS(4443), - [anon_sym_internal] = ACTIONS(4443), - [anon_sym_protected] = ACTIONS(4443), - [anon_sym_tailrec] = ACTIONS(4443), - [anon_sym_operator] = ACTIONS(4443), - [anon_sym_infix] = ACTIONS(4443), - [anon_sym_inline] = ACTIONS(4443), - [anon_sym_external] = ACTIONS(4443), - [sym_property_modifier] = ACTIONS(4443), - [anon_sym_abstract] = ACTIONS(4443), - [anon_sym_final] = ACTIONS(4443), - [anon_sym_open] = ACTIONS(4443), - [anon_sym_vararg] = ACTIONS(4443), - [anon_sym_noinline] = ACTIONS(4443), - [anon_sym_crossinline] = ACTIONS(4443), [anon_sym_expect] = ACTIONS(4443), [anon_sym_actual] = ACTIONS(4443), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), [sym__backtick_identifier] = ACTIONS(4445), [sym__automatic_semicolon] = ACTIONS(4445), [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, - [3712] = { - [sym_value_arguments] = STATE(3978), - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(7095), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4435), - [sym_label] = ACTIONS(4437), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_PLUS_EQ] = ACTIONS(4437), - [anon_sym_DASH_EQ] = ACTIONS(4437), - [anon_sym_STAR_EQ] = ACTIONS(4437), - [anon_sym_SLASH_EQ] = ACTIONS(4437), - [anon_sym_PERCENT_EQ] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4435), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_suspend] = ACTIONS(4435), - [anon_sym_sealed] = ACTIONS(4435), - [anon_sym_annotation] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_override] = ACTIONS(4435), - [anon_sym_lateinit] = ACTIONS(4435), - [anon_sym_public] = ACTIONS(4435), - [anon_sym_private] = ACTIONS(4435), - [anon_sym_internal] = ACTIONS(4435), - [anon_sym_protected] = ACTIONS(4435), - [anon_sym_tailrec] = ACTIONS(4435), - [anon_sym_operator] = ACTIONS(4435), - [anon_sym_infix] = ACTIONS(4435), - [anon_sym_inline] = ACTIONS(4435), - [anon_sym_external] = ACTIONS(4435), - [sym_property_modifier] = ACTIONS(4435), - [anon_sym_abstract] = ACTIONS(4435), - [anon_sym_final] = ACTIONS(4435), - [anon_sym_open] = ACTIONS(4435), - [anon_sym_vararg] = ACTIONS(4435), - [anon_sym_noinline] = ACTIONS(4435), - [anon_sym_crossinline] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4437), - [sym__automatic_semicolon] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), - }, - [3713] = { - [sym_class_body] = STATE(4132), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(7097), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - }, - [3714] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_GT] = ACTIONS(4381), - [anon_sym_where] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [sym_label] = ACTIONS(4383), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_QMARK_COLON] = ACTIONS(4383), - [anon_sym_AMP_AMP] = ACTIONS(4383), - [anon_sym_PIPE_PIPE] = ACTIONS(4383), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_catch] = ACTIONS(4381), - [anon_sym_finally] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4383), - [anon_sym_DASH_EQ] = ACTIONS(4383), - [anon_sym_STAR_EQ] = ACTIONS(4383), - [anon_sym_SLASH_EQ] = ACTIONS(4383), - [anon_sym_PERCENT_EQ] = ACTIONS(4383), - [anon_sym_BANG_EQ] = ACTIONS(4381), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), - [anon_sym_EQ_EQ] = ACTIONS(4381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), - [anon_sym_LT_EQ] = ACTIONS(4383), - [anon_sym_GT_EQ] = ACTIONS(4383), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_as_QMARK] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG_BANG] = ACTIONS(4383), - [anon_sym_suspend] = ACTIONS(4381), - [anon_sym_sealed] = ACTIONS(4381), - [anon_sym_annotation] = ACTIONS(4381), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_override] = ACTIONS(4381), - [anon_sym_lateinit] = ACTIONS(4381), - [anon_sym_public] = ACTIONS(4381), - [anon_sym_private] = ACTIONS(4381), - [anon_sym_internal] = ACTIONS(4381), - [anon_sym_protected] = ACTIONS(4381), - [anon_sym_tailrec] = ACTIONS(4381), - [anon_sym_operator] = ACTIONS(4381), - [anon_sym_infix] = ACTIONS(4381), - [anon_sym_inline] = ACTIONS(4381), - [anon_sym_external] = ACTIONS(4381), - [sym_property_modifier] = ACTIONS(4381), - [anon_sym_abstract] = ACTIONS(4381), - [anon_sym_final] = ACTIONS(4381), - [anon_sym_open] = ACTIONS(4381), - [anon_sym_vararg] = ACTIONS(4381), - [anon_sym_noinline] = ACTIONS(4381), - [anon_sym_crossinline] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4383), - [sym__automatic_semicolon] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4383), - [sym_multiline_comment] = ACTIONS(3), - }, - [3715] = { - [sym__alpha_identifier] = ACTIONS(4215), - [anon_sym_AT] = ACTIONS(4217), - [anon_sym_COLON] = ACTIONS(4215), - [anon_sym_LBRACK] = ACTIONS(4217), - [anon_sym_as] = ACTIONS(4215), - [anon_sym_EQ] = ACTIONS(4215), - [anon_sym_constructor] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4217), - [anon_sym_COMMA] = ACTIONS(4217), - [anon_sym_LT] = ACTIONS(4215), - [anon_sym_GT] = ACTIONS(4215), - [anon_sym_where] = ACTIONS(4215), - [anon_sym_DOT] = ACTIONS(4215), - [anon_sym_SEMI] = ACTIONS(4217), - [anon_sym_get] = ACTIONS(4215), - [anon_sym_set] = ACTIONS(4215), - [anon_sym_STAR] = ACTIONS(4215), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4215), - [anon_sym_DOT_DOT] = ACTIONS(4217), - [anon_sym_QMARK_COLON] = ACTIONS(4217), - [anon_sym_AMP_AMP] = ACTIONS(4217), - [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4215), - [anon_sym_COLON_COLON] = ACTIONS(4217), - [anon_sym_PLUS_EQ] = ACTIONS(4217), - [anon_sym_DASH_EQ] = ACTIONS(4217), - [anon_sym_STAR_EQ] = ACTIONS(4217), - [anon_sym_SLASH_EQ] = ACTIONS(4217), - [anon_sym_PERCENT_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ] = ACTIONS(4215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ] = ACTIONS(4215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), - [anon_sym_LT_EQ] = ACTIONS(4217), - [anon_sym_GT_EQ] = ACTIONS(4217), - [anon_sym_BANGin] = ACTIONS(4217), - [anon_sym_is] = ACTIONS(4215), - [anon_sym_BANGis] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4215), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_SLASH] = ACTIONS(4215), - [anon_sym_PERCENT] = ACTIONS(4215), - [anon_sym_as_QMARK] = ACTIONS(4217), - [anon_sym_PLUS_PLUS] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4217), - [anon_sym_suspend] = ACTIONS(4215), - [anon_sym_sealed] = ACTIONS(4215), - [anon_sym_annotation] = ACTIONS(4215), - [anon_sym_data] = ACTIONS(4215), - [anon_sym_inner] = ACTIONS(4215), - [anon_sym_value] = ACTIONS(4215), - [anon_sym_override] = ACTIONS(4215), - [anon_sym_lateinit] = ACTIONS(4215), - [anon_sym_public] = ACTIONS(4215), - [anon_sym_private] = ACTIONS(4215), - [anon_sym_internal] = ACTIONS(4215), - [anon_sym_protected] = ACTIONS(4215), - [anon_sym_tailrec] = ACTIONS(4215), - [anon_sym_operator] = ACTIONS(4215), - [anon_sym_infix] = ACTIONS(4215), - [anon_sym_inline] = ACTIONS(4215), - [anon_sym_external] = ACTIONS(4215), - [sym_property_modifier] = ACTIONS(4215), - [anon_sym_abstract] = ACTIONS(4215), - [anon_sym_final] = ACTIONS(4215), - [anon_sym_open] = ACTIONS(4215), - [anon_sym_vararg] = ACTIONS(4215), - [anon_sym_noinline] = ACTIONS(4215), - [anon_sym_crossinline] = ACTIONS(4215), - [anon_sym_expect] = ACTIONS(4215), - [anon_sym_actual] = ACTIONS(4215), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4217), - [sym__automatic_semicolon] = ACTIONS(4217), - [sym_safe_nav] = ACTIONS(4217), - [sym_multiline_comment] = ACTIONS(3), - }, - [3716] = { - [sym__alpha_identifier] = ACTIONS(4487), - [anon_sym_AT] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [anon_sym_as] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_RBRACE] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_COMMA] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_where] = ACTIONS(4487), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_SEMI] = ACTIONS(4489), - [anon_sym_get] = ACTIONS(4487), - [anon_sym_set] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [sym_label] = ACTIONS(4489), - [anon_sym_in] = ACTIONS(4487), - [anon_sym_DOT_DOT] = ACTIONS(4489), - [anon_sym_QMARK_COLON] = ACTIONS(4489), - [anon_sym_AMP_AMP] = ACTIONS(4489), - [anon_sym_PIPE_PIPE] = ACTIONS(4489), - [anon_sym_else] = ACTIONS(4487), - [anon_sym_COLON_COLON] = ACTIONS(4489), - [anon_sym_PLUS_EQ] = ACTIONS(4489), - [anon_sym_DASH_EQ] = ACTIONS(4489), - [anon_sym_STAR_EQ] = ACTIONS(4489), - [anon_sym_SLASH_EQ] = ACTIONS(4489), - [anon_sym_PERCENT_EQ] = ACTIONS(4489), - [anon_sym_BANG_EQ] = ACTIONS(4487), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4489), - [anon_sym_EQ_EQ] = ACTIONS(4487), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4489), - [anon_sym_LT_EQ] = ACTIONS(4489), - [anon_sym_GT_EQ] = ACTIONS(4489), - [anon_sym_BANGin] = ACTIONS(4489), - [anon_sym_is] = ACTIONS(4487), - [anon_sym_BANGis] = ACTIONS(4489), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_PERCENT] = ACTIONS(4487), - [anon_sym_as_QMARK] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_BANG_BANG] = ACTIONS(4489), - [anon_sym_suspend] = ACTIONS(4487), - [anon_sym_sealed] = ACTIONS(4487), - [anon_sym_annotation] = ACTIONS(4487), - [anon_sym_data] = ACTIONS(4487), - [anon_sym_inner] = ACTIONS(4487), - [anon_sym_value] = ACTIONS(4487), - [anon_sym_override] = ACTIONS(4487), - [anon_sym_lateinit] = ACTIONS(4487), - [anon_sym_public] = ACTIONS(4487), - [anon_sym_private] = ACTIONS(4487), - [anon_sym_internal] = ACTIONS(4487), - [anon_sym_protected] = ACTIONS(4487), - [anon_sym_tailrec] = ACTIONS(4487), - [anon_sym_operator] = ACTIONS(4487), - [anon_sym_infix] = ACTIONS(4487), - [anon_sym_inline] = ACTIONS(4487), - [anon_sym_external] = ACTIONS(4487), - [sym_property_modifier] = ACTIONS(4487), - [anon_sym_abstract] = ACTIONS(4487), - [anon_sym_final] = ACTIONS(4487), - [anon_sym_open] = ACTIONS(4487), - [anon_sym_vararg] = ACTIONS(4487), - [anon_sym_noinline] = ACTIONS(4487), - [anon_sym_crossinline] = ACTIONS(4487), - [anon_sym_expect] = ACTIONS(4487), - [anon_sym_actual] = ACTIONS(4487), - [sym_line_comment] = ACTIONS(3), - [aux_sym_unsigned_literal_token1] = ACTIONS(7099), - [anon_sym_L] = ACTIONS(7101), - [sym__backtick_identifier] = ACTIONS(4489), - [sym__automatic_semicolon] = ACTIONS(4489), - [sym_safe_nav] = ACTIONS(4489), - [sym_multiline_comment] = ACTIONS(3), - }, - [3717] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_RBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7103), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4239), - [anon_sym_DASH_GT] = ACTIONS(4242), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_while] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [3718] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(7107), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RPAREN] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4350), - [anon_sym_DASH_GT] = ACTIONS(4353), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_while] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [3719] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4015), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_typealias] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4010), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_interface] = ACTIONS(4010), - [anon_sym_enum] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_val] = ACTIONS(4010), - [anon_sym_var] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4015), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_get] = ACTIONS(4010), - [anon_sym_set] = ACTIONS(4010), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4015), - [sym_label] = ACTIONS(4010), - [anon_sym_for] = ACTIONS(4010), - [anon_sym_while] = ACTIONS(4010), - [anon_sym_do] = ACTIONS(4010), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4010), - [anon_sym_sealed] = ACTIONS(4010), - [anon_sym_annotation] = ACTIONS(4010), - [anon_sym_data] = ACTIONS(4010), - [anon_sym_inner] = ACTIONS(4010), - [anon_sym_value] = ACTIONS(4010), - [anon_sym_override] = ACTIONS(4010), - [anon_sym_lateinit] = ACTIONS(4010), - [anon_sym_public] = ACTIONS(4010), - [anon_sym_private] = ACTIONS(4010), - [anon_sym_internal] = ACTIONS(4010), - [anon_sym_protected] = ACTIONS(4010), - [anon_sym_tailrec] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_infix] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym_external] = ACTIONS(4010), - [sym_property_modifier] = ACTIONS(4010), - [anon_sym_abstract] = ACTIONS(4010), - [anon_sym_final] = ACTIONS(4010), - [anon_sym_open] = ACTIONS(4010), - [anon_sym_vararg] = ACTIONS(4010), - [anon_sym_noinline] = ACTIONS(4010), - [anon_sym_crossinline] = ACTIONS(4010), - [anon_sym_expect] = ACTIONS(4010), - [anon_sym_actual] = ACTIONS(4010), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [3720] = { - [sym_type_constraints] = STATE(4056), - [sym_function_body] = STATE(4127), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - }, - [3721] = { - [sym__alpha_identifier] = ACTIONS(4215), - [anon_sym_AT] = ACTIONS(4217), - [anon_sym_COLON] = ACTIONS(4215), - [anon_sym_LBRACK] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4215), - [anon_sym_constructor] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4217), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(4215), - [anon_sym_object] = ACTIONS(4215), - [anon_sym_get] = ACTIONS(4215), - [anon_sym_set] = ACTIONS(4215), - [anon_sym_this] = ACTIONS(4215), - [anon_sym_super] = ACTIONS(4215), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4215), - [anon_sym_in] = ACTIONS(4215), - [anon_sym_null] = ACTIONS(4215), - [anon_sym_if] = ACTIONS(4215), - [anon_sym_else] = ACTIONS(4215), - [anon_sym_when] = ACTIONS(4215), - [anon_sym_try] = ACTIONS(4215), - [anon_sym_throw] = ACTIONS(4215), - [anon_sym_return] = ACTIONS(4215), - [anon_sym_continue] = ACTIONS(4215), - [anon_sym_break] = ACTIONS(4215), - [anon_sym_COLON_COLON] = ACTIONS(4217), - [anon_sym_BANGin] = ACTIONS(4217), - [anon_sym_is] = ACTIONS(4215), - [anon_sym_BANGis] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4215), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_PLUS_PLUS] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4217), - [anon_sym_BANG] = ACTIONS(4215), - [anon_sym_suspend] = ACTIONS(4215), - [anon_sym_sealed] = ACTIONS(4215), - [anon_sym_annotation] = ACTIONS(4215), - [anon_sym_data] = ACTIONS(4215), - [anon_sym_inner] = ACTIONS(4215), - [anon_sym_value] = ACTIONS(4215), - [anon_sym_override] = ACTIONS(4215), - [anon_sym_lateinit] = ACTIONS(4215), - [anon_sym_public] = ACTIONS(4215), - [anon_sym_private] = ACTIONS(4215), - [anon_sym_internal] = ACTIONS(4215), - [anon_sym_protected] = ACTIONS(4215), - [anon_sym_tailrec] = ACTIONS(4215), - [anon_sym_operator] = ACTIONS(4215), - [anon_sym_infix] = ACTIONS(4215), - [anon_sym_inline] = ACTIONS(4215), - [anon_sym_external] = ACTIONS(4215), - [sym_property_modifier] = ACTIONS(4215), - [anon_sym_abstract] = ACTIONS(4215), - [anon_sym_final] = ACTIONS(4215), - [anon_sym_open] = ACTIONS(4215), - [anon_sym_vararg] = ACTIONS(4215), - [anon_sym_noinline] = ACTIONS(4215), - [anon_sym_crossinline] = ACTIONS(4215), - [anon_sym_expect] = ACTIONS(4215), - [anon_sym_actual] = ACTIONS(4215), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4217), - [anon_sym_continue_AT] = ACTIONS(4217), - [anon_sym_break_AT] = ACTIONS(4217), - [anon_sym_this_AT] = ACTIONS(4217), - [anon_sym_super_AT] = ACTIONS(4217), - [sym_real_literal] = ACTIONS(4217), - [sym_integer_literal] = ACTIONS(4215), - [sym_hex_literal] = ACTIONS(4217), - [sym_bin_literal] = ACTIONS(4217), - [anon_sym_true] = ACTIONS(4215), - [anon_sym_false] = ACTIONS(4215), - [anon_sym_SQUOTE] = ACTIONS(4217), - [sym__backtick_identifier] = ACTIONS(4217), - [sym__automatic_semicolon] = ACTIONS(4217), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4217), - }, - [3722] = { - [sym__alpha_identifier] = ACTIONS(4373), - [anon_sym_AT] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_as] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_LBRACE] = ACTIONS(4375), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_where] = ACTIONS(4373), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_get] = ACTIONS(4373), - [anon_sym_set] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4373), - [sym_label] = ACTIONS(4375), - [anon_sym_in] = ACTIONS(4373), - [anon_sym_DOT_DOT] = ACTIONS(4375), - [anon_sym_QMARK_COLON] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_else] = ACTIONS(4373), - [anon_sym_catch] = ACTIONS(4373), - [anon_sym_finally] = ACTIONS(4373), - [anon_sym_COLON_COLON] = ACTIONS(4375), - [anon_sym_PLUS_EQ] = ACTIONS(4375), - [anon_sym_DASH_EQ] = ACTIONS(4375), - [anon_sym_STAR_EQ] = ACTIONS(4375), - [anon_sym_SLASH_EQ] = ACTIONS(4375), - [anon_sym_PERCENT_EQ] = ACTIONS(4375), - [anon_sym_BANG_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4375), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_BANGin] = ACTIONS(4375), - [anon_sym_is] = ACTIONS(4373), - [anon_sym_BANGis] = ACTIONS(4375), - [anon_sym_PLUS] = ACTIONS(4373), - [anon_sym_DASH] = ACTIONS(4373), - [anon_sym_SLASH] = ACTIONS(4373), - [anon_sym_PERCENT] = ACTIONS(4373), - [anon_sym_as_QMARK] = ACTIONS(4375), - [anon_sym_PLUS_PLUS] = ACTIONS(4375), - [anon_sym_DASH_DASH] = ACTIONS(4375), - [anon_sym_BANG_BANG] = ACTIONS(4375), - [anon_sym_suspend] = ACTIONS(4373), - [anon_sym_sealed] = ACTIONS(4373), - [anon_sym_annotation] = ACTIONS(4373), - [anon_sym_data] = ACTIONS(4373), - [anon_sym_inner] = ACTIONS(4373), - [anon_sym_value] = ACTIONS(4373), - [anon_sym_override] = ACTIONS(4373), - [anon_sym_lateinit] = ACTIONS(4373), - [anon_sym_public] = ACTIONS(4373), - [anon_sym_private] = ACTIONS(4373), - [anon_sym_internal] = ACTIONS(4373), - [anon_sym_protected] = ACTIONS(4373), - [anon_sym_tailrec] = ACTIONS(4373), - [anon_sym_operator] = ACTIONS(4373), - [anon_sym_infix] = ACTIONS(4373), - [anon_sym_inline] = ACTIONS(4373), - [anon_sym_external] = ACTIONS(4373), - [sym_property_modifier] = ACTIONS(4373), - [anon_sym_abstract] = ACTIONS(4373), - [anon_sym_final] = ACTIONS(4373), - [anon_sym_open] = ACTIONS(4373), - [anon_sym_vararg] = ACTIONS(4373), - [anon_sym_noinline] = ACTIONS(4373), - [anon_sym_crossinline] = ACTIONS(4373), - [anon_sym_expect] = ACTIONS(4373), - [anon_sym_actual] = ACTIONS(4373), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4375), - [sym__automatic_semicolon] = ACTIONS(4375), - [sym_safe_nav] = ACTIONS(4375), - [sym_multiline_comment] = ACTIONS(3), - }, - [3723] = { - [sym__alpha_identifier] = ACTIONS(4449), - [anon_sym_AT] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [anon_sym_as] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(4449), - [anon_sym_LBRACE] = ACTIONS(4451), - [anon_sym_RBRACE] = ACTIONS(4451), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_COMMA] = ACTIONS(4451), - [anon_sym_LT] = ACTIONS(4449), - [anon_sym_GT] = ACTIONS(4449), - [anon_sym_where] = ACTIONS(4449), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [anon_sym_get] = ACTIONS(4449), - [anon_sym_set] = ACTIONS(4449), - [anon_sym_STAR] = ACTIONS(4449), - [sym_label] = ACTIONS(4451), - [anon_sym_in] = ACTIONS(4449), - [anon_sym_DOT_DOT] = ACTIONS(4451), - [anon_sym_QMARK_COLON] = ACTIONS(4451), - [anon_sym_AMP_AMP] = ACTIONS(4451), - [anon_sym_PIPE_PIPE] = ACTIONS(4451), - [anon_sym_else] = ACTIONS(4449), - [anon_sym_catch] = ACTIONS(4449), - [anon_sym_finally] = ACTIONS(4449), - [anon_sym_COLON_COLON] = ACTIONS(4451), - [anon_sym_PLUS_EQ] = ACTIONS(4451), - [anon_sym_DASH_EQ] = ACTIONS(4451), - [anon_sym_STAR_EQ] = ACTIONS(4451), - [anon_sym_SLASH_EQ] = ACTIONS(4451), - [anon_sym_PERCENT_EQ] = ACTIONS(4451), - [anon_sym_BANG_EQ] = ACTIONS(4449), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4451), - [anon_sym_EQ_EQ] = ACTIONS(4449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4451), - [anon_sym_LT_EQ] = ACTIONS(4451), - [anon_sym_GT_EQ] = ACTIONS(4451), - [anon_sym_BANGin] = ACTIONS(4451), - [anon_sym_is] = ACTIONS(4449), - [anon_sym_BANGis] = ACTIONS(4451), - [anon_sym_PLUS] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_SLASH] = ACTIONS(4449), - [anon_sym_PERCENT] = ACTIONS(4449), - [anon_sym_as_QMARK] = ACTIONS(4451), - [anon_sym_PLUS_PLUS] = ACTIONS(4451), - [anon_sym_DASH_DASH] = ACTIONS(4451), - [anon_sym_BANG_BANG] = ACTIONS(4451), - [anon_sym_suspend] = ACTIONS(4449), - [anon_sym_sealed] = ACTIONS(4449), - [anon_sym_annotation] = ACTIONS(4449), - [anon_sym_data] = ACTIONS(4449), - [anon_sym_inner] = ACTIONS(4449), - [anon_sym_value] = ACTIONS(4449), - [anon_sym_override] = ACTIONS(4449), - [anon_sym_lateinit] = ACTIONS(4449), - [anon_sym_public] = ACTIONS(4449), - [anon_sym_private] = ACTIONS(4449), - [anon_sym_internal] = ACTIONS(4449), - [anon_sym_protected] = ACTIONS(4449), - [anon_sym_tailrec] = ACTIONS(4449), - [anon_sym_operator] = ACTIONS(4449), - [anon_sym_infix] = ACTIONS(4449), - [anon_sym_inline] = ACTIONS(4449), - [anon_sym_external] = ACTIONS(4449), - [sym_property_modifier] = ACTIONS(4449), - [anon_sym_abstract] = ACTIONS(4449), - [anon_sym_final] = ACTIONS(4449), - [anon_sym_open] = ACTIONS(4449), - [anon_sym_vararg] = ACTIONS(4449), - [anon_sym_noinline] = ACTIONS(4449), - [anon_sym_crossinline] = ACTIONS(4449), - [anon_sym_expect] = ACTIONS(4449), - [anon_sym_actual] = ACTIONS(4449), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4451), - [sym__automatic_semicolon] = ACTIONS(4451), - [sym_safe_nav] = ACTIONS(4451), - [sym_multiline_comment] = ACTIONS(3), - }, - [3724] = { - [sym_type_constraints] = STATE(4055), - [sym_function_body] = STATE(4106), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - }, - [3725] = { - [sym_function_body] = STATE(3686), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(7111), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4269), - [sym_label] = ACTIONS(4271), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_while] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_PLUS_EQ] = ACTIONS(4271), - [anon_sym_DASH_EQ] = ACTIONS(4271), - [anon_sym_STAR_EQ] = ACTIONS(4271), - [anon_sym_SLASH_EQ] = ACTIONS(4271), - [anon_sym_PERCENT_EQ] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4269), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_suspend] = ACTIONS(4269), - [anon_sym_sealed] = ACTIONS(4269), - [anon_sym_annotation] = ACTIONS(4269), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_override] = ACTIONS(4269), - [anon_sym_lateinit] = ACTIONS(4269), - [anon_sym_public] = ACTIONS(4269), - [anon_sym_private] = ACTIONS(4269), - [anon_sym_internal] = ACTIONS(4269), - [anon_sym_protected] = ACTIONS(4269), - [anon_sym_tailrec] = ACTIONS(4269), - [anon_sym_operator] = ACTIONS(4269), - [anon_sym_infix] = ACTIONS(4269), - [anon_sym_inline] = ACTIONS(4269), - [anon_sym_external] = ACTIONS(4269), - [sym_property_modifier] = ACTIONS(4269), - [anon_sym_abstract] = ACTIONS(4269), - [anon_sym_final] = ACTIONS(4269), - [anon_sym_open] = ACTIONS(4269), - [anon_sym_vararg] = ACTIONS(4269), - [anon_sym_noinline] = ACTIONS(4269), - [anon_sym_crossinline] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), - [sym_multiline_comment] = ACTIONS(3), - }, - [3726] = { - [sym_class_body] = STATE(4137), - [sym_type_constraints] = STATE(3874), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), - [sym_label] = ACTIONS(4277), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_PLUS_EQ] = ACTIONS(4277), - [anon_sym_DASH_EQ] = ACTIONS(4277), - [anon_sym_STAR_EQ] = ACTIONS(4277), - [anon_sym_SLASH_EQ] = ACTIONS(4277), - [anon_sym_PERCENT_EQ] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_suspend] = ACTIONS(4275), - [anon_sym_sealed] = ACTIONS(4275), - [anon_sym_annotation] = ACTIONS(4275), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_override] = ACTIONS(4275), - [anon_sym_lateinit] = ACTIONS(4275), - [anon_sym_public] = ACTIONS(4275), - [anon_sym_private] = ACTIONS(4275), - [anon_sym_internal] = ACTIONS(4275), - [anon_sym_protected] = ACTIONS(4275), - [anon_sym_tailrec] = ACTIONS(4275), - [anon_sym_operator] = ACTIONS(4275), - [anon_sym_infix] = ACTIONS(4275), - [anon_sym_inline] = ACTIONS(4275), - [anon_sym_external] = ACTIONS(4275), - [sym_property_modifier] = ACTIONS(4275), - [anon_sym_abstract] = ACTIONS(4275), - [anon_sym_final] = ACTIONS(4275), - [anon_sym_open] = ACTIONS(4275), - [anon_sym_vararg] = ACTIONS(4275), - [anon_sym_noinline] = ACTIONS(4275), - [anon_sym_crossinline] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), - [sym_multiline_comment] = ACTIONS(3), - }, - [3727] = { - [sym_type_constraints] = STATE(4048), - [sym_function_body] = STATE(4087), - [sym__block] = STATE(4073), + [3707] = { + [sym_type_constraints] = STATE(3954), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(7035), [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5812), + [anon_sym_where] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [anon_sym_DASH_GT] = ACTIONS(4185), [sym_label] = ACTIONS(4185), [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), [anon_sym_DOT_DOT] = ACTIONS(4185), [anon_sym_QMARK_COLON] = ACTIONS(4185), [anon_sym_AMP_AMP] = ACTIONS(4185), [anon_sym_PIPE_PIPE] = ACTIONS(4185), [anon_sym_else] = ACTIONS(4183), [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_PLUS_EQ] = ACTIONS(4185), - [anon_sym_DASH_EQ] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4185), - [anon_sym_SLASH_EQ] = ACTIONS(4185), - [anon_sym_PERCENT_EQ] = ACTIONS(4185), [anon_sym_BANG_EQ] = ACTIONS(4183), [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), [anon_sym_EQ_EQ] = ACTIONS(4183), @@ -425196,7 +421210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4183), [anon_sym_DASH] = ACTIONS(4183), [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), [anon_sym_as_QMARK] = ACTIONS(4185), [anon_sym_PLUS_PLUS] = ACTIONS(4185), [anon_sym_DASH_DASH] = ACTIONS(4185), @@ -425229,1255 +421243,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, - [3728] = { - [aux_sym_user_type_repeat1] = STATE(3728), - [sym__alpha_identifier] = ACTIONS(4189), - [anon_sym_AT] = ACTIONS(4191), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_typealias] = ACTIONS(4189), - [anon_sym_class] = ACTIONS(4189), - [anon_sym_fun] = ACTIONS(4189), - [anon_sym_interface] = ACTIONS(4189), - [anon_sym_enum] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_val] = ACTIONS(4189), - [anon_sym_var] = ACTIONS(4189), - [anon_sym_object] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(7113), - [anon_sym_get] = ACTIONS(4189), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_this] = ACTIONS(4189), - [anon_sym_super] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(4189), - [anon_sym_for] = ACTIONS(4189), - [anon_sym_while] = ACTIONS(4189), - [anon_sym_do] = ACTIONS(4189), - [anon_sym_null] = ACTIONS(4189), - [anon_sym_if] = ACTIONS(4189), - [anon_sym_when] = ACTIONS(4189), - [anon_sym_try] = ACTIONS(4189), - [anon_sym_throw] = ACTIONS(4189), - [anon_sym_return] = ACTIONS(4189), - [anon_sym_continue] = ACTIONS(4189), - [anon_sym_break] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_BANG] = ACTIONS(4191), - [anon_sym_suspend] = ACTIONS(4189), - [anon_sym_sealed] = ACTIONS(4189), - [anon_sym_annotation] = ACTIONS(4189), - [anon_sym_data] = ACTIONS(4189), - [anon_sym_inner] = ACTIONS(4189), - [anon_sym_value] = ACTIONS(4189), - [anon_sym_override] = ACTIONS(4189), - [anon_sym_lateinit] = ACTIONS(4189), - [anon_sym_public] = ACTIONS(4189), - [anon_sym_private] = ACTIONS(4189), - [anon_sym_internal] = ACTIONS(4189), - [anon_sym_protected] = ACTIONS(4189), - [anon_sym_tailrec] = ACTIONS(4189), - [anon_sym_operator] = ACTIONS(4189), - [anon_sym_infix] = ACTIONS(4189), - [anon_sym_inline] = ACTIONS(4189), - [anon_sym_external] = ACTIONS(4189), - [sym_property_modifier] = ACTIONS(4189), - [anon_sym_abstract] = ACTIONS(4189), - [anon_sym_final] = ACTIONS(4189), - [anon_sym_open] = ACTIONS(4189), - [anon_sym_vararg] = ACTIONS(4189), - [anon_sym_noinline] = ACTIONS(4189), - [anon_sym_crossinline] = ACTIONS(4189), - [anon_sym_expect] = ACTIONS(4189), - [anon_sym_actual] = ACTIONS(4189), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4191), - [anon_sym_continue_AT] = ACTIONS(4191), - [anon_sym_break_AT] = ACTIONS(4191), - [anon_sym_this_AT] = ACTIONS(4191), - [anon_sym_super_AT] = ACTIONS(4191), - [sym_real_literal] = ACTIONS(4191), - [sym_integer_literal] = ACTIONS(4189), - [sym_hex_literal] = ACTIONS(4191), - [sym_bin_literal] = ACTIONS(4191), - [anon_sym_true] = ACTIONS(4189), - [anon_sym_false] = ACTIONS(4189), - [anon_sym_SQUOTE] = ACTIONS(4191), - [sym__backtick_identifier] = ACTIONS(4191), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4191), - }, - [3729] = { - [sym__alpha_identifier] = ACTIONS(4215), - [anon_sym_AT] = ACTIONS(4217), - [anon_sym_LBRACK] = ACTIONS(4217), - [anon_sym_typealias] = ACTIONS(4215), - [anon_sym_class] = ACTIONS(4215), - [anon_sym_fun] = ACTIONS(4215), - [anon_sym_interface] = ACTIONS(4215), - [anon_sym_enum] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4217), - [anon_sym_val] = ACTIONS(4215), - [anon_sym_var] = ACTIONS(4215), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_object] = ACTIONS(4215), - [anon_sym_DOT] = ACTIONS(4215), - [anon_sym_get] = ACTIONS(4215), - [anon_sym_set] = ACTIONS(4215), - [anon_sym_this] = ACTIONS(4215), - [anon_sym_super] = ACTIONS(4215), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4215), - [anon_sym_for] = ACTIONS(4215), - [anon_sym_while] = ACTIONS(4215), - [anon_sym_do] = ACTIONS(4215), - [anon_sym_null] = ACTIONS(4215), - [anon_sym_if] = ACTIONS(4215), - [anon_sym_when] = ACTIONS(4215), - [anon_sym_try] = ACTIONS(4215), - [anon_sym_throw] = ACTIONS(4215), - [anon_sym_return] = ACTIONS(4215), - [anon_sym_continue] = ACTIONS(4215), - [anon_sym_break] = ACTIONS(4215), - [anon_sym_COLON_COLON] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4215), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_PLUS_PLUS] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4217), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_suspend] = ACTIONS(4215), - [anon_sym_sealed] = ACTIONS(4215), - [anon_sym_annotation] = ACTIONS(4215), - [anon_sym_data] = ACTIONS(4215), - [anon_sym_inner] = ACTIONS(4215), - [anon_sym_value] = ACTIONS(4215), - [anon_sym_override] = ACTIONS(4215), - [anon_sym_lateinit] = ACTIONS(4215), - [anon_sym_public] = ACTIONS(4215), - [anon_sym_private] = ACTIONS(4215), - [anon_sym_internal] = ACTIONS(4215), - [anon_sym_protected] = ACTIONS(4215), - [anon_sym_tailrec] = ACTIONS(4215), - [anon_sym_operator] = ACTIONS(4215), - [anon_sym_infix] = ACTIONS(4215), - [anon_sym_inline] = ACTIONS(4215), - [anon_sym_external] = ACTIONS(4215), - [sym_property_modifier] = ACTIONS(4215), - [anon_sym_abstract] = ACTIONS(4215), - [anon_sym_final] = ACTIONS(4215), - [anon_sym_open] = ACTIONS(4215), - [anon_sym_vararg] = ACTIONS(4215), - [anon_sym_noinline] = ACTIONS(4215), - [anon_sym_crossinline] = ACTIONS(4215), - [anon_sym_expect] = ACTIONS(4215), - [anon_sym_actual] = ACTIONS(4215), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4217), - [anon_sym_continue_AT] = ACTIONS(4217), - [anon_sym_break_AT] = ACTIONS(4217), - [anon_sym_this_AT] = ACTIONS(4217), - [anon_sym_super_AT] = ACTIONS(4217), - [sym_real_literal] = ACTIONS(4217), - [sym_integer_literal] = ACTIONS(4215), - [sym_hex_literal] = ACTIONS(4217), - [sym_bin_literal] = ACTIONS(4217), - [anon_sym_true] = ACTIONS(4215), - [anon_sym_false] = ACTIONS(4215), - [anon_sym_SQUOTE] = ACTIONS(4217), - [sym__backtick_identifier] = ACTIONS(4217), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4217), - }, - [3730] = { - [sym_type_constraints] = STATE(4047), - [sym_function_body] = STATE(4049), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - }, - [3731] = { - [sym_function_body] = STATE(3966), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_where] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4453), - [sym_label] = ACTIONS(4455), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_PLUS_EQ] = ACTIONS(4455), - [anon_sym_DASH_EQ] = ACTIONS(4455), - [anon_sym_STAR_EQ] = ACTIONS(4455), - [anon_sym_SLASH_EQ] = ACTIONS(4455), - [anon_sym_PERCENT_EQ] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4453), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_suspend] = ACTIONS(4453), - [anon_sym_sealed] = ACTIONS(4453), - [anon_sym_annotation] = ACTIONS(4453), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4453), - [anon_sym_lateinit] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_internal] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_tailrec] = ACTIONS(4453), - [anon_sym_operator] = ACTIONS(4453), - [anon_sym_infix] = ACTIONS(4453), - [anon_sym_inline] = ACTIONS(4453), - [anon_sym_external] = ACTIONS(4453), - [sym_property_modifier] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_open] = ACTIONS(4453), - [anon_sym_vararg] = ACTIONS(4453), - [anon_sym_noinline] = ACTIONS(4453), - [anon_sym_crossinline] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4455), - [sym__automatic_semicolon] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), - [sym_multiline_comment] = ACTIONS(3), - }, - [3732] = { - [sym_function_body] = STATE(3280), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4453), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_where] = ACTIONS(4453), - [anon_sym_object] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_this] = ACTIONS(4453), - [anon_sym_super] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4455), - [sym_label] = ACTIONS(4453), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_null] = ACTIONS(4453), - [anon_sym_if] = ACTIONS(4453), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_when] = ACTIONS(4453), - [anon_sym_try] = ACTIONS(4453), - [anon_sym_throw] = ACTIONS(4453), - [anon_sym_return] = ACTIONS(4453), - [anon_sym_continue] = ACTIONS(4453), - [anon_sym_break] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4455), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4453), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4455), - [anon_sym_continue_AT] = ACTIONS(4455), - [anon_sym_break_AT] = ACTIONS(4455), - [anon_sym_this_AT] = ACTIONS(4455), - [anon_sym_super_AT] = ACTIONS(4455), - [sym_real_literal] = ACTIONS(4455), - [sym_integer_literal] = ACTIONS(4453), - [sym_hex_literal] = ACTIONS(4455), - [sym_bin_literal] = ACTIONS(4455), - [anon_sym_true] = ACTIONS(4453), - [anon_sym_false] = ACTIONS(4453), - [anon_sym_SQUOTE] = ACTIONS(4455), - [sym__backtick_identifier] = ACTIONS(4455), - [sym__automatic_semicolon] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4455), - }, - [3733] = { - [sym_class_body] = STATE(4150), - [sym_type_constraints] = STATE(3888), - [sym__alpha_identifier] = ACTIONS(4461), - [anon_sym_AT] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_as] = ACTIONS(4461), - [anon_sym_EQ] = ACTIONS(4461), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [anon_sym_get] = ACTIONS(4461), - [anon_sym_set] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [sym_label] = ACTIONS(4463), - [anon_sym_in] = ACTIONS(4461), - [anon_sym_DOT_DOT] = ACTIONS(4463), - [anon_sym_QMARK_COLON] = ACTIONS(4463), - [anon_sym_AMP_AMP] = ACTIONS(4463), - [anon_sym_PIPE_PIPE] = ACTIONS(4463), - [anon_sym_else] = ACTIONS(4461), - [anon_sym_COLON_COLON] = ACTIONS(4463), - [anon_sym_PLUS_EQ] = ACTIONS(4463), - [anon_sym_DASH_EQ] = ACTIONS(4463), - [anon_sym_STAR_EQ] = ACTIONS(4463), - [anon_sym_SLASH_EQ] = ACTIONS(4463), - [anon_sym_PERCENT_EQ] = ACTIONS(4463), - [anon_sym_BANG_EQ] = ACTIONS(4461), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4463), - [anon_sym_EQ_EQ] = ACTIONS(4461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4463), - [anon_sym_LT_EQ] = ACTIONS(4463), - [anon_sym_GT_EQ] = ACTIONS(4463), - [anon_sym_BANGin] = ACTIONS(4463), - [anon_sym_is] = ACTIONS(4461), - [anon_sym_BANGis] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(4461), - [anon_sym_as_QMARK] = ACTIONS(4463), - [anon_sym_PLUS_PLUS] = ACTIONS(4463), - [anon_sym_DASH_DASH] = ACTIONS(4463), - [anon_sym_BANG_BANG] = ACTIONS(4463), - [anon_sym_suspend] = ACTIONS(4461), - [anon_sym_sealed] = ACTIONS(4461), - [anon_sym_annotation] = ACTIONS(4461), - [anon_sym_data] = ACTIONS(4461), - [anon_sym_inner] = ACTIONS(4461), - [anon_sym_value] = ACTIONS(4461), - [anon_sym_override] = ACTIONS(4461), - [anon_sym_lateinit] = ACTIONS(4461), - [anon_sym_public] = ACTIONS(4461), - [anon_sym_private] = ACTIONS(4461), - [anon_sym_internal] = ACTIONS(4461), - [anon_sym_protected] = ACTIONS(4461), - [anon_sym_tailrec] = ACTIONS(4461), - [anon_sym_operator] = ACTIONS(4461), - [anon_sym_infix] = ACTIONS(4461), - [anon_sym_inline] = ACTIONS(4461), - [anon_sym_external] = ACTIONS(4461), - [sym_property_modifier] = ACTIONS(4461), - [anon_sym_abstract] = ACTIONS(4461), - [anon_sym_final] = ACTIONS(4461), - [anon_sym_open] = ACTIONS(4461), - [anon_sym_vararg] = ACTIONS(4461), - [anon_sym_noinline] = ACTIONS(4461), - [anon_sym_crossinline] = ACTIONS(4461), - [anon_sym_expect] = ACTIONS(4461), - [anon_sym_actual] = ACTIONS(4461), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4463), - [sym__automatic_semicolon] = ACTIONS(4463), - [sym_safe_nav] = ACTIONS(4463), - [sym_multiline_comment] = ACTIONS(3), - }, - [3734] = { - [sym_type_constraints] = STATE(4046), - [sym_function_body] = STATE(4037), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - }, - [3735] = { - [sym_function_body] = STATE(4037), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - }, - [3736] = { - [sym_function_body] = STATE(4049), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - }, - [3737] = { - [sym_class_body] = STATE(4152), - [sym_type_constraints] = STATE(3890), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - }, - [3738] = { - [sym_type_constraints] = STATE(3992), - [sym_function_body] = STATE(3461), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(7116), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_RBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_COMMA] = ACTIONS(4211), - [anon_sym_RPAREN] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4211), - [anon_sym_DASH_GT] = ACTIONS(4211), - [sym_label] = ACTIONS(4211), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_while] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4211), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_suspend] = ACTIONS(4209), - [anon_sym_sealed] = ACTIONS(4209), - [anon_sym_annotation] = ACTIONS(4209), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_override] = ACTIONS(4209), - [anon_sym_lateinit] = ACTIONS(4209), - [anon_sym_public] = ACTIONS(4209), - [anon_sym_private] = ACTIONS(4209), - [anon_sym_internal] = ACTIONS(4209), - [anon_sym_protected] = ACTIONS(4209), - [anon_sym_tailrec] = ACTIONS(4209), - [anon_sym_operator] = ACTIONS(4209), - [anon_sym_infix] = ACTIONS(4209), - [anon_sym_inline] = ACTIONS(4209), - [anon_sym_external] = ACTIONS(4209), - [sym_property_modifier] = ACTIONS(4209), - [anon_sym_abstract] = ACTIONS(4209), - [anon_sym_final] = ACTIONS(4209), - [anon_sym_open] = ACTIONS(4209), - [anon_sym_vararg] = ACTIONS(4209), - [anon_sym_noinline] = ACTIONS(4209), - [anon_sym_crossinline] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), - [sym_multiline_comment] = ACTIONS(3), - }, - [3739] = { - [sym_type_constraints] = STATE(4039), - [sym_function_body] = STATE(3582), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_RBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_RPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [anon_sym_DASH_GT] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - }, - [3740] = { - [sym_type_constraints] = STATE(3891), - [sym_enum_class_body] = STATE(4152), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), + [3708] = { + [sym_function_body] = STATE(3265), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), }, - [3741] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_constructor] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_get] = ACTIONS(4010), - [anon_sym_set] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4010), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_QMARK_COLON] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_as_QMARK] = ACTIONS(4015), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4010), - [anon_sym_sealed] = ACTIONS(4010), - [anon_sym_annotation] = ACTIONS(4010), - [anon_sym_data] = ACTIONS(4010), - [anon_sym_inner] = ACTIONS(4010), - [anon_sym_value] = ACTIONS(4010), - [anon_sym_override] = ACTIONS(4010), - [anon_sym_lateinit] = ACTIONS(4010), - [anon_sym_public] = ACTIONS(4010), - [anon_sym_private] = ACTIONS(4010), - [anon_sym_internal] = ACTIONS(4010), - [anon_sym_protected] = ACTIONS(4010), - [anon_sym_tailrec] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_infix] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym_external] = ACTIONS(4010), - [sym_property_modifier] = ACTIONS(4010), - [anon_sym_abstract] = ACTIONS(4010), - [anon_sym_final] = ACTIONS(4010), - [anon_sym_open] = ACTIONS(4010), - [anon_sym_vararg] = ACTIONS(4010), - [anon_sym_noinline] = ACTIONS(4010), - [anon_sym_crossinline] = ACTIONS(4010), - [anon_sym_expect] = ACTIONS(4010), - [anon_sym_actual] = ACTIONS(4010), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4015), - [sym__automatic_semicolon] = ACTIONS(4015), - [sym_safe_nav] = ACTIONS(4015), + [3709] = { + [sym_class_body] = STATE(3956), + [sym_type_constraints] = STATE(3721), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(6024), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [3742] = { - [ts_builtin_sym_end] = ACTIONS(7122), - [sym__alpha_identifier] = ACTIONS(7124), - [anon_sym_AT] = ACTIONS(7122), - [anon_sym_LBRACK] = ACTIONS(7122), - [anon_sym_import] = ACTIONS(7124), - [anon_sym_typealias] = ACTIONS(7124), - [anon_sym_class] = ACTIONS(7124), - [anon_sym_fun] = ACTIONS(7124), - [anon_sym_interface] = ACTIONS(7124), - [anon_sym_enum] = ACTIONS(7124), - [anon_sym_LBRACE] = ACTIONS(7122), - [anon_sym_LPAREN] = ACTIONS(7122), - [anon_sym_val] = ACTIONS(7124), - [anon_sym_var] = ACTIONS(7124), - [anon_sym_object] = ACTIONS(7124), - [anon_sym_get] = ACTIONS(7124), - [anon_sym_set] = ACTIONS(7124), - [anon_sym_this] = ACTIONS(7124), - [anon_sym_super] = ACTIONS(7124), - [anon_sym_STAR] = ACTIONS(7122), - [sym_label] = ACTIONS(7124), - [anon_sym_for] = ACTIONS(7124), - [anon_sym_while] = ACTIONS(7124), - [anon_sym_do] = ACTIONS(7124), - [anon_sym_null] = ACTIONS(7124), - [anon_sym_if] = ACTIONS(7124), - [anon_sym_when] = ACTIONS(7124), - [anon_sym_try] = ACTIONS(7124), - [anon_sym_throw] = ACTIONS(7124), - [anon_sym_return] = ACTIONS(7124), - [anon_sym_continue] = ACTIONS(7124), - [anon_sym_break] = ACTIONS(7124), - [anon_sym_COLON_COLON] = ACTIONS(7122), - [anon_sym_PLUS] = ACTIONS(7124), - [anon_sym_DASH] = ACTIONS(7124), - [anon_sym_PLUS_PLUS] = ACTIONS(7122), - [anon_sym_DASH_DASH] = ACTIONS(7122), - [anon_sym_BANG] = ACTIONS(7122), - [anon_sym_suspend] = ACTIONS(7124), - [anon_sym_sealed] = ACTIONS(7124), - [anon_sym_annotation] = ACTIONS(7124), - [anon_sym_data] = ACTIONS(7124), - [anon_sym_inner] = ACTIONS(7124), - [anon_sym_value] = ACTIONS(7124), - [anon_sym_override] = ACTIONS(7124), - [anon_sym_lateinit] = ACTIONS(7124), - [anon_sym_public] = ACTIONS(7124), - [anon_sym_private] = ACTIONS(7124), - [anon_sym_internal] = ACTIONS(7124), - [anon_sym_protected] = ACTIONS(7124), - [anon_sym_tailrec] = ACTIONS(7124), - [anon_sym_operator] = ACTIONS(7124), - [anon_sym_infix] = ACTIONS(7124), - [anon_sym_inline] = ACTIONS(7124), - [anon_sym_external] = ACTIONS(7124), - [sym_property_modifier] = ACTIONS(7124), - [anon_sym_abstract] = ACTIONS(7124), - [anon_sym_final] = ACTIONS(7124), - [anon_sym_open] = ACTIONS(7124), - [anon_sym_vararg] = ACTIONS(7124), - [anon_sym_noinline] = ACTIONS(7124), - [anon_sym_crossinline] = ACTIONS(7124), - [anon_sym_expect] = ACTIONS(7124), - [anon_sym_actual] = ACTIONS(7124), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7122), - [anon_sym_continue_AT] = ACTIONS(7122), - [anon_sym_break_AT] = ACTIONS(7122), - [anon_sym_this_AT] = ACTIONS(7122), - [anon_sym_super_AT] = ACTIONS(7122), - [sym_real_literal] = ACTIONS(7122), - [sym_integer_literal] = ACTIONS(7124), - [sym_hex_literal] = ACTIONS(7122), - [sym_bin_literal] = ACTIONS(7122), - [anon_sym_true] = ACTIONS(7124), - [anon_sym_false] = ACTIONS(7124), - [anon_sym_SQUOTE] = ACTIONS(7122), - [sym__backtick_identifier] = ACTIONS(7122), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7122), - }, - [3743] = { - [sym_function_body] = STATE(4087), - [sym__block] = STATE(4073), + [3710] = { + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(4183), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), @@ -426485,6 +421431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4183), [sym_label] = ACTIONS(4185), [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), [anon_sym_DOT_DOT] = ACTIONS(4185), [anon_sym_QMARK_COLON] = ACTIONS(4185), [anon_sym_AMP_AMP] = ACTIONS(4185), @@ -426541,1095 +421488,1404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, - [3744] = { - [aux_sym_user_type_repeat1] = STATE(3728), - [sym__alpha_identifier] = ACTIONS(4202), - [anon_sym_AT] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_typealias] = ACTIONS(4202), - [anon_sym_class] = ACTIONS(4202), - [anon_sym_fun] = ACTIONS(4202), - [anon_sym_interface] = ACTIONS(4202), - [anon_sym_enum] = ACTIONS(4202), - [anon_sym_LBRACE] = ACTIONS(4204), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym_val] = ACTIONS(4202), - [anon_sym_var] = ACTIONS(4202), - [anon_sym_object] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(7126), - [anon_sym_get] = ACTIONS(4202), - [anon_sym_set] = ACTIONS(4202), - [anon_sym_this] = ACTIONS(4202), - [anon_sym_super] = ACTIONS(4202), - [anon_sym_STAR] = ACTIONS(4204), - [sym_label] = ACTIONS(4202), - [anon_sym_for] = ACTIONS(4202), - [anon_sym_while] = ACTIONS(4202), - [anon_sym_do] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4202), - [anon_sym_if] = ACTIONS(4202), - [anon_sym_when] = ACTIONS(4202), - [anon_sym_try] = ACTIONS(4202), - [anon_sym_throw] = ACTIONS(4202), - [anon_sym_return] = ACTIONS(4202), - [anon_sym_continue] = ACTIONS(4202), - [anon_sym_break] = ACTIONS(4202), - [anon_sym_COLON_COLON] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4202), - [anon_sym_DASH] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4204), - [anon_sym_BANG] = ACTIONS(4204), - [anon_sym_suspend] = ACTIONS(4202), - [anon_sym_sealed] = ACTIONS(4202), - [anon_sym_annotation] = ACTIONS(4202), - [anon_sym_data] = ACTIONS(4202), - [anon_sym_inner] = ACTIONS(4202), - [anon_sym_value] = ACTIONS(4202), - [anon_sym_override] = ACTIONS(4202), - [anon_sym_lateinit] = ACTIONS(4202), - [anon_sym_public] = ACTIONS(4202), - [anon_sym_private] = ACTIONS(4202), - [anon_sym_internal] = ACTIONS(4202), - [anon_sym_protected] = ACTIONS(4202), - [anon_sym_tailrec] = ACTIONS(4202), - [anon_sym_operator] = ACTIONS(4202), - [anon_sym_infix] = ACTIONS(4202), - [anon_sym_inline] = ACTIONS(4202), - [anon_sym_external] = ACTIONS(4202), - [sym_property_modifier] = ACTIONS(4202), - [anon_sym_abstract] = ACTIONS(4202), - [anon_sym_final] = ACTIONS(4202), - [anon_sym_open] = ACTIONS(4202), - [anon_sym_vararg] = ACTIONS(4202), - [anon_sym_noinline] = ACTIONS(4202), - [anon_sym_crossinline] = ACTIONS(4202), - [anon_sym_expect] = ACTIONS(4202), - [anon_sym_actual] = ACTIONS(4202), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4204), - [anon_sym_continue_AT] = ACTIONS(4204), - [anon_sym_break_AT] = ACTIONS(4204), - [anon_sym_this_AT] = ACTIONS(4204), - [anon_sym_super_AT] = ACTIONS(4204), - [sym_real_literal] = ACTIONS(4204), - [sym_integer_literal] = ACTIONS(4202), - [sym_hex_literal] = ACTIONS(4204), - [sym_bin_literal] = ACTIONS(4204), - [anon_sym_true] = ACTIONS(4202), - [anon_sym_false] = ACTIONS(4202), - [anon_sym_SQUOTE] = ACTIONS(4204), - [sym__backtick_identifier] = ACTIONS(4204), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4204), - }, - [3745] = { - [sym_type_constraints] = STATE(4036), - [sym_function_body] = STATE(3584), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(7128), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_RBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_RPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_DASH_GT] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_while] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [3711] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [3746] = { - [sym_function_body] = STATE(4106), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), + [3712] = { + [sym_class_body] = STATE(3956), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [3747] = { - [ts_builtin_sym_end] = ACTIONS(7130), - [sym__alpha_identifier] = ACTIONS(7132), - [anon_sym_AT] = ACTIONS(7130), - [anon_sym_LBRACK] = ACTIONS(7130), - [anon_sym_import] = ACTIONS(7132), - [anon_sym_typealias] = ACTIONS(7132), - [anon_sym_class] = ACTIONS(7132), - [anon_sym_fun] = ACTIONS(7132), - [anon_sym_interface] = ACTIONS(7132), - [anon_sym_enum] = ACTIONS(7132), - [anon_sym_LBRACE] = ACTIONS(7130), - [anon_sym_LPAREN] = ACTIONS(7130), - [anon_sym_val] = ACTIONS(7132), - [anon_sym_var] = ACTIONS(7132), - [anon_sym_object] = ACTIONS(7132), - [anon_sym_get] = ACTIONS(7132), - [anon_sym_set] = ACTIONS(7132), - [anon_sym_this] = ACTIONS(7132), - [anon_sym_super] = ACTIONS(7132), - [anon_sym_STAR] = ACTIONS(7130), - [sym_label] = ACTIONS(7132), - [anon_sym_for] = ACTIONS(7132), - [anon_sym_while] = ACTIONS(7132), - [anon_sym_do] = ACTIONS(7132), - [anon_sym_null] = ACTIONS(7132), - [anon_sym_if] = ACTIONS(7132), - [anon_sym_when] = ACTIONS(7132), - [anon_sym_try] = ACTIONS(7132), - [anon_sym_throw] = ACTIONS(7132), - [anon_sym_return] = ACTIONS(7132), - [anon_sym_continue] = ACTIONS(7132), - [anon_sym_break] = ACTIONS(7132), - [anon_sym_COLON_COLON] = ACTIONS(7130), - [anon_sym_PLUS] = ACTIONS(7132), - [anon_sym_DASH] = ACTIONS(7132), - [anon_sym_PLUS_PLUS] = ACTIONS(7130), - [anon_sym_DASH_DASH] = ACTIONS(7130), - [anon_sym_BANG] = ACTIONS(7130), - [anon_sym_suspend] = ACTIONS(7132), - [anon_sym_sealed] = ACTIONS(7132), - [anon_sym_annotation] = ACTIONS(7132), - [anon_sym_data] = ACTIONS(7132), - [anon_sym_inner] = ACTIONS(7132), - [anon_sym_value] = ACTIONS(7132), - [anon_sym_override] = ACTIONS(7132), - [anon_sym_lateinit] = ACTIONS(7132), - [anon_sym_public] = ACTIONS(7132), - [anon_sym_private] = ACTIONS(7132), - [anon_sym_internal] = ACTIONS(7132), - [anon_sym_protected] = ACTIONS(7132), - [anon_sym_tailrec] = ACTIONS(7132), - [anon_sym_operator] = ACTIONS(7132), - [anon_sym_infix] = ACTIONS(7132), - [anon_sym_inline] = ACTIONS(7132), - [anon_sym_external] = ACTIONS(7132), - [sym_property_modifier] = ACTIONS(7132), - [anon_sym_abstract] = ACTIONS(7132), - [anon_sym_final] = ACTIONS(7132), - [anon_sym_open] = ACTIONS(7132), - [anon_sym_vararg] = ACTIONS(7132), - [anon_sym_noinline] = ACTIONS(7132), - [anon_sym_crossinline] = ACTIONS(7132), - [anon_sym_expect] = ACTIONS(7132), - [anon_sym_actual] = ACTIONS(7132), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7130), - [anon_sym_continue_AT] = ACTIONS(7130), - [anon_sym_break_AT] = ACTIONS(7130), - [anon_sym_this_AT] = ACTIONS(7130), - [anon_sym_super_AT] = ACTIONS(7130), - [sym_real_literal] = ACTIONS(7130), - [sym_integer_literal] = ACTIONS(7132), - [sym_hex_literal] = ACTIONS(7130), - [sym_bin_literal] = ACTIONS(7130), - [anon_sym_true] = ACTIONS(7132), - [anon_sym_false] = ACTIONS(7132), - [anon_sym_SQUOTE] = ACTIONS(7130), - [sym__backtick_identifier] = ACTIONS(7130), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7130), + [3713] = { + [sym_type_constraints] = STATE(3859), + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_RBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [anon_sym_DASH_GT] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), }, - [3748] = { - [sym_function_body] = STATE(3262), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(4287), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), + [3714] = { + [sym__alpha_identifier] = ACTIONS(4577), + [anon_sym_AT] = ACTIONS(4579), + [anon_sym_COLON] = ACTIONS(4577), + [anon_sym_LBRACK] = ACTIONS(4579), + [anon_sym_as] = ACTIONS(4577), + [anon_sym_EQ] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [anon_sym_RBRACE] = ACTIONS(4579), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym_COMMA] = ACTIONS(4579), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4577), + [anon_sym_where] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SEMI] = ACTIONS(4579), + [anon_sym_get] = ACTIONS(4577), + [anon_sym_set] = ACTIONS(4577), + [anon_sym_STAR] = ACTIONS(4577), + [sym_label] = ACTIONS(4579), + [anon_sym_in] = ACTIONS(4577), + [anon_sym_DOT_DOT] = ACTIONS(4579), + [anon_sym_QMARK_COLON] = ACTIONS(4579), + [anon_sym_AMP_AMP] = ACTIONS(4579), + [anon_sym_PIPE_PIPE] = ACTIONS(4579), + [anon_sym_else] = ACTIONS(4577), + [anon_sym_COLON_COLON] = ACTIONS(4579), + [anon_sym_PLUS_EQ] = ACTIONS(4579), + [anon_sym_DASH_EQ] = ACTIONS(4579), + [anon_sym_STAR_EQ] = ACTIONS(4579), + [anon_sym_SLASH_EQ] = ACTIONS(4579), + [anon_sym_PERCENT_EQ] = ACTIONS(4579), + [anon_sym_BANG_EQ] = ACTIONS(4577), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4579), + [anon_sym_EQ_EQ] = ACTIONS(4577), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4579), + [anon_sym_LT_EQ] = ACTIONS(4579), + [anon_sym_GT_EQ] = ACTIONS(4579), + [anon_sym_BANGin] = ACTIONS(4579), + [anon_sym_is] = ACTIONS(4577), + [anon_sym_BANGis] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4577), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4577), + [anon_sym_PERCENT] = ACTIONS(4577), + [anon_sym_as_QMARK] = ACTIONS(4579), + [anon_sym_PLUS_PLUS] = ACTIONS(4579), + [anon_sym_DASH_DASH] = ACTIONS(4579), + [anon_sym_BANG_BANG] = ACTIONS(4579), + [anon_sym_suspend] = ACTIONS(4577), + [anon_sym_sealed] = ACTIONS(4577), + [anon_sym_annotation] = ACTIONS(4577), + [anon_sym_data] = ACTIONS(4577), + [anon_sym_inner] = ACTIONS(4577), + [anon_sym_value] = ACTIONS(4577), + [anon_sym_override] = ACTIONS(4577), + [anon_sym_lateinit] = ACTIONS(4577), + [anon_sym_public] = ACTIONS(4577), + [anon_sym_private] = ACTIONS(4577), + [anon_sym_internal] = ACTIONS(4577), + [anon_sym_protected] = ACTIONS(4577), + [anon_sym_tailrec] = ACTIONS(4577), + [anon_sym_operator] = ACTIONS(4577), + [anon_sym_infix] = ACTIONS(4577), + [anon_sym_inline] = ACTIONS(4577), + [anon_sym_external] = ACTIONS(4577), + [sym_property_modifier] = ACTIONS(4577), + [anon_sym_abstract] = ACTIONS(4577), + [anon_sym_final] = ACTIONS(4577), + [anon_sym_open] = ACTIONS(4577), + [anon_sym_vararg] = ACTIONS(4577), + [anon_sym_noinline] = ACTIONS(4577), + [anon_sym_crossinline] = ACTIONS(4577), + [anon_sym_expect] = ACTIONS(4577), + [anon_sym_actual] = ACTIONS(4577), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4579), + [sym__automatic_semicolon] = ACTIONS(4579), + [sym_safe_nav] = ACTIONS(4579), + [sym_multiline_comment] = ACTIONS(3), }, - [3749] = { - [sym_function_body] = STATE(3221), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), + [3715] = { + [sym__alpha_identifier] = ACTIONS(4585), + [anon_sym_AT] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4585), + [anon_sym_EQ] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_RBRACE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4585), + [anon_sym_where] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_get] = ACTIONS(4585), + [anon_sym_set] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(4585), + [sym_label] = ACTIONS(4587), + [anon_sym_in] = ACTIONS(4585), + [anon_sym_DOT_DOT] = ACTIONS(4587), + [anon_sym_QMARK_COLON] = ACTIONS(4587), + [anon_sym_AMP_AMP] = ACTIONS(4587), + [anon_sym_PIPE_PIPE] = ACTIONS(4587), + [anon_sym_else] = ACTIONS(4585), + [anon_sym_COLON_COLON] = ACTIONS(4587), + [anon_sym_PLUS_EQ] = ACTIONS(4587), + [anon_sym_DASH_EQ] = ACTIONS(4587), + [anon_sym_STAR_EQ] = ACTIONS(4587), + [anon_sym_SLASH_EQ] = ACTIONS(4587), + [anon_sym_PERCENT_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4587), + [anon_sym_LT_EQ] = ACTIONS(4587), + [anon_sym_GT_EQ] = ACTIONS(4587), + [anon_sym_BANGin] = ACTIONS(4587), + [anon_sym_is] = ACTIONS(4585), + [anon_sym_BANGis] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4585), + [anon_sym_SLASH] = ACTIONS(4585), + [anon_sym_PERCENT] = ACTIONS(4585), + [anon_sym_as_QMARK] = ACTIONS(4587), + [anon_sym_PLUS_PLUS] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4587), + [anon_sym_BANG_BANG] = ACTIONS(4587), + [anon_sym_suspend] = ACTIONS(4585), + [anon_sym_sealed] = ACTIONS(4585), + [anon_sym_annotation] = ACTIONS(4585), + [anon_sym_data] = ACTIONS(4585), + [anon_sym_inner] = ACTIONS(4585), + [anon_sym_value] = ACTIONS(4585), + [anon_sym_override] = ACTIONS(4585), + [anon_sym_lateinit] = ACTIONS(4585), + [anon_sym_public] = ACTIONS(4585), + [anon_sym_private] = ACTIONS(4585), + [anon_sym_internal] = ACTIONS(4585), + [anon_sym_protected] = ACTIONS(4585), + [anon_sym_tailrec] = ACTIONS(4585), + [anon_sym_operator] = ACTIONS(4585), + [anon_sym_infix] = ACTIONS(4585), + [anon_sym_inline] = ACTIONS(4585), + [anon_sym_external] = ACTIONS(4585), + [sym_property_modifier] = ACTIONS(4585), + [anon_sym_abstract] = ACTIONS(4585), + [anon_sym_final] = ACTIONS(4585), + [anon_sym_open] = ACTIONS(4585), + [anon_sym_vararg] = ACTIONS(4585), + [anon_sym_noinline] = ACTIONS(4585), + [anon_sym_crossinline] = ACTIONS(4585), + [anon_sym_expect] = ACTIONS(4585), + [anon_sym_actual] = ACTIONS(4585), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4587), + [sym__automatic_semicolon] = ACTIONS(4587), + [sym_safe_nav] = ACTIONS(4587), + [sym_multiline_comment] = ACTIONS(3), }, - [3750] = { - [sym_type_constraints] = STATE(4035), - [sym_function_body] = STATE(3608), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(7134), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_RBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_DASH_GT] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), + [3716] = { + [sym_type_constraints] = STATE(3852), + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_RBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [anon_sym_DASH_GT] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, - [3751] = { - [sym_function_body] = STATE(4127), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [3717] = { + [sym_enum_class_body] = STATE(4021), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [sym_label] = ACTIONS(4569), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_suspend] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_annotation] = ACTIONS(4567), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_lateinit] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_tailrec] = ACTIONS(4567), + [anon_sym_operator] = ACTIONS(4567), + [anon_sym_infix] = ACTIONS(4567), + [anon_sym_inline] = ACTIONS(4567), + [anon_sym_external] = ACTIONS(4567), + [sym_property_modifier] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_final] = ACTIONS(4567), + [anon_sym_open] = ACTIONS(4567), + [anon_sym_vararg] = ACTIONS(4567), + [anon_sym_noinline] = ACTIONS(4567), + [anon_sym_crossinline] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4569), + [sym__automatic_semicolon] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), [sym_multiline_comment] = ACTIONS(3), }, - [3752] = { - [sym_type_constraints] = STATE(3078), - [sym_enum_class_body] = STATE(3304), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [3718] = { + [sym_function_body] = STATE(3900), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4277), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), }, - [3753] = { - [sym__alpha_identifier] = ACTIONS(4718), - [anon_sym_AT] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(4720), - [anon_sym_fun] = ACTIONS(4718), - [anon_sym_LBRACE] = ACTIONS(4720), - [anon_sym_RBRACE] = ACTIONS(4720), - [anon_sym_LPAREN] = ACTIONS(4720), - [anon_sym_COMMA] = ACTIONS(4720), - [anon_sym_by] = ACTIONS(4718), - [anon_sym_object] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_get] = ACTIONS(4718), - [anon_sym_set] = ACTIONS(4718), - [anon_sym_this] = ACTIONS(4718), - [anon_sym_super] = ACTIONS(4718), - [anon_sym_STAR] = ACTIONS(4720), - [sym_label] = ACTIONS(4718), - [anon_sym_in] = ACTIONS(4718), - [anon_sym_null] = ACTIONS(4718), - [anon_sym_if] = ACTIONS(4718), - [anon_sym_else] = ACTIONS(4718), - [anon_sym_when] = ACTIONS(4718), - [anon_sym_try] = ACTIONS(4718), - [anon_sym_throw] = ACTIONS(4718), - [anon_sym_return] = ACTIONS(4718), - [anon_sym_continue] = ACTIONS(4718), - [anon_sym_break] = ACTIONS(4718), - [anon_sym_COLON_COLON] = ACTIONS(4720), - [anon_sym_BANGin] = ACTIONS(4720), - [anon_sym_is] = ACTIONS(4718), - [anon_sym_BANGis] = ACTIONS(4720), - [anon_sym_PLUS] = ACTIONS(4718), - [anon_sym_DASH] = ACTIONS(4718), - [anon_sym_PLUS_PLUS] = ACTIONS(4720), - [anon_sym_DASH_DASH] = ACTIONS(4720), - [anon_sym_BANG] = ACTIONS(4718), - [anon_sym_suspend] = ACTIONS(4718), - [anon_sym_sealed] = ACTIONS(4718), - [anon_sym_annotation] = ACTIONS(4718), - [anon_sym_data] = ACTIONS(4718), - [anon_sym_inner] = ACTIONS(4718), - [anon_sym_value] = ACTIONS(4718), - [anon_sym_override] = ACTIONS(4718), - [anon_sym_lateinit] = ACTIONS(4718), - [anon_sym_public] = ACTIONS(4718), - [anon_sym_private] = ACTIONS(4718), - [anon_sym_internal] = ACTIONS(4718), - [anon_sym_protected] = ACTIONS(4718), - [anon_sym_tailrec] = ACTIONS(4718), - [anon_sym_operator] = ACTIONS(4718), - [anon_sym_infix] = ACTIONS(4718), - [anon_sym_inline] = ACTIONS(4718), - [anon_sym_external] = ACTIONS(4718), - [sym_property_modifier] = ACTIONS(4718), - [anon_sym_abstract] = ACTIONS(4718), - [anon_sym_final] = ACTIONS(4718), - [anon_sym_open] = ACTIONS(4718), - [anon_sym_vararg] = ACTIONS(4718), - [anon_sym_noinline] = ACTIONS(4718), - [anon_sym_crossinline] = ACTIONS(4718), - [anon_sym_expect] = ACTIONS(4718), - [anon_sym_actual] = ACTIONS(4718), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4720), - [anon_sym_continue_AT] = ACTIONS(4720), - [anon_sym_break_AT] = ACTIONS(4720), - [anon_sym_this_AT] = ACTIONS(4720), - [anon_sym_super_AT] = ACTIONS(4720), - [sym_real_literal] = ACTIONS(4720), - [sym_integer_literal] = ACTIONS(4718), - [sym_hex_literal] = ACTIONS(4720), - [sym_bin_literal] = ACTIONS(4720), - [anon_sym_true] = ACTIONS(4718), - [anon_sym_false] = ACTIONS(4718), - [anon_sym_SQUOTE] = ACTIONS(4720), - [sym__backtick_identifier] = ACTIONS(4720), - [sym__automatic_semicolon] = ACTIONS(4720), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4720), + [3719] = { + [sym__alpha_identifier] = ACTIONS(4543), + [anon_sym_AT] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_as] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_where] = ACTIONS(4543), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4545), + [anon_sym_get] = ACTIONS(4543), + [anon_sym_set] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4543), + [anon_sym_DOT_DOT] = ACTIONS(4545), + [anon_sym_QMARK_COLON] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_else] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4545), + [anon_sym_EQ_EQ] = ACTIONS(4543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_BANGin] = ACTIONS(4545), + [anon_sym_is] = ACTIONS(4543), + [anon_sym_BANGis] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_BANG_BANG] = ACTIONS(4545), + [anon_sym_suspend] = ACTIONS(4543), + [anon_sym_sealed] = ACTIONS(4543), + [anon_sym_annotation] = ACTIONS(4543), + [anon_sym_data] = ACTIONS(4543), + [anon_sym_inner] = ACTIONS(4543), + [anon_sym_value] = ACTIONS(4543), + [anon_sym_override] = ACTIONS(4543), + [anon_sym_lateinit] = ACTIONS(4543), + [anon_sym_public] = ACTIONS(4543), + [anon_sym_private] = ACTIONS(4543), + [anon_sym_internal] = ACTIONS(4543), + [anon_sym_protected] = ACTIONS(4543), + [anon_sym_tailrec] = ACTIONS(4543), + [anon_sym_operator] = ACTIONS(4543), + [anon_sym_infix] = ACTIONS(4543), + [anon_sym_inline] = ACTIONS(4543), + [anon_sym_external] = ACTIONS(4543), + [sym_property_modifier] = ACTIONS(4543), + [anon_sym_abstract] = ACTIONS(4543), + [anon_sym_final] = ACTIONS(4543), + [anon_sym_open] = ACTIONS(4543), + [anon_sym_vararg] = ACTIONS(4543), + [anon_sym_noinline] = ACTIONS(4543), + [anon_sym_crossinline] = ACTIONS(4543), + [anon_sym_expect] = ACTIONS(4543), + [anon_sym_actual] = ACTIONS(4543), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4545), + [sym__automatic_semicolon] = ACTIONS(4545), + [sym_safe_nav] = ACTIONS(4545), + [sym_multiline_comment] = ACTIONS(3), }, - [3754] = { - [sym_class_body] = STATE(3304), - [sym_type_constraints] = STATE(3053), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), + [3720] = { + [sym_function_body] = STATE(3252), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(7083), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), }, - [3755] = { - [sym_class_body] = STATE(4111), - [sym_type_constraints] = STATE(3896), - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [sym_label] = ACTIONS(4471), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_suspend] = ACTIONS(4469), - [anon_sym_sealed] = ACTIONS(4469), - [anon_sym_annotation] = ACTIONS(4469), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_value] = ACTIONS(4469), - [anon_sym_override] = ACTIONS(4469), - [anon_sym_lateinit] = ACTIONS(4469), - [anon_sym_public] = ACTIONS(4469), - [anon_sym_private] = ACTIONS(4469), - [anon_sym_internal] = ACTIONS(4469), - [anon_sym_protected] = ACTIONS(4469), - [anon_sym_tailrec] = ACTIONS(4469), - [anon_sym_operator] = ACTIONS(4469), - [anon_sym_infix] = ACTIONS(4469), - [anon_sym_inline] = ACTIONS(4469), - [anon_sym_external] = ACTIONS(4469), - [sym_property_modifier] = ACTIONS(4469), - [anon_sym_abstract] = ACTIONS(4469), - [anon_sym_final] = ACTIONS(4469), - [anon_sym_open] = ACTIONS(4469), - [anon_sym_vararg] = ACTIONS(4469), - [anon_sym_noinline] = ACTIONS(4469), - [anon_sym_crossinline] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4471), - [sym__automatic_semicolon] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), + [3721] = { + [sym_class_body] = STATE(3884), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), }, - [3756] = { - [sym_class_body] = STATE(4110), - [sym_type_constraints] = STATE(3898), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), + [3722] = { + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, - [3757] = { - [sym_type_constraints] = STATE(4034), - [sym_function_body] = STATE(3667), - [sym__block] = STATE(3620), + [3723] = { + [sym_enum_class_body] = STATE(3953), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [3724] = { + [sym_value_arguments] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(7087), + [anon_sym_AT] = ACTIONS(7089), + [anon_sym_LBRACK] = ACTIONS(7089), + [anon_sym_typealias] = ACTIONS(7087), + [anon_sym_class] = ACTIONS(7087), + [anon_sym_interface] = ACTIONS(7087), + [anon_sym_enum] = ACTIONS(7087), + [anon_sym_LBRACE] = ACTIONS(7089), + [anon_sym_LPAREN] = ACTIONS(7091), + [anon_sym_val] = ACTIONS(7087), + [anon_sym_var] = ACTIONS(7087), + [anon_sym_object] = ACTIONS(7087), + [anon_sym_fun] = ACTIONS(7087), + [anon_sym_get] = ACTIONS(7087), + [anon_sym_set] = ACTIONS(7087), + [anon_sym_this] = ACTIONS(7087), + [anon_sym_super] = ACTIONS(7087), + [anon_sym_STAR] = ACTIONS(7089), + [sym_label] = ACTIONS(7087), + [anon_sym_for] = ACTIONS(7087), + [anon_sym_while] = ACTIONS(7087), + [anon_sym_do] = ACTIONS(7087), + [anon_sym_null] = ACTIONS(7087), + [anon_sym_if] = ACTIONS(7087), + [anon_sym_when] = ACTIONS(7087), + [anon_sym_try] = ACTIONS(7087), + [anon_sym_throw] = ACTIONS(7087), + [anon_sym_return] = ACTIONS(7087), + [anon_sym_continue] = ACTIONS(7087), + [anon_sym_break] = ACTIONS(7087), + [anon_sym_COLON_COLON] = ACTIONS(7089), + [anon_sym_PLUS] = ACTIONS(7087), + [anon_sym_DASH] = ACTIONS(7087), + [anon_sym_PLUS_PLUS] = ACTIONS(7089), + [anon_sym_DASH_DASH] = ACTIONS(7089), + [anon_sym_BANG] = ACTIONS(7089), + [anon_sym_suspend] = ACTIONS(7087), + [anon_sym_sealed] = ACTIONS(7087), + [anon_sym_annotation] = ACTIONS(7087), + [anon_sym_data] = ACTIONS(7087), + [anon_sym_inner] = ACTIONS(7087), + [anon_sym_value] = ACTIONS(7087), + [anon_sym_override] = ACTIONS(7087), + [anon_sym_lateinit] = ACTIONS(7087), + [anon_sym_public] = ACTIONS(7087), + [anon_sym_private] = ACTIONS(7087), + [anon_sym_internal] = ACTIONS(7087), + [anon_sym_protected] = ACTIONS(7087), + [anon_sym_tailrec] = ACTIONS(7087), + [anon_sym_operator] = ACTIONS(7087), + [anon_sym_infix] = ACTIONS(7087), + [anon_sym_inline] = ACTIONS(7087), + [anon_sym_external] = ACTIONS(7087), + [sym_property_modifier] = ACTIONS(7087), + [anon_sym_abstract] = ACTIONS(7087), + [anon_sym_final] = ACTIONS(7087), + [anon_sym_open] = ACTIONS(7087), + [anon_sym_vararg] = ACTIONS(7087), + [anon_sym_noinline] = ACTIONS(7087), + [anon_sym_crossinline] = ACTIONS(7087), + [anon_sym_expect] = ACTIONS(7087), + [anon_sym_actual] = ACTIONS(7087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7089), + [anon_sym_continue_AT] = ACTIONS(7089), + [anon_sym_break_AT] = ACTIONS(7089), + [anon_sym_this_AT] = ACTIONS(7089), + [anon_sym_super_AT] = ACTIONS(7089), + [sym_real_literal] = ACTIONS(7089), + [sym_integer_literal] = ACTIONS(7087), + [sym_hex_literal] = ACTIONS(7089), + [sym_bin_literal] = ACTIONS(7089), + [anon_sym_true] = ACTIONS(7087), + [anon_sym_false] = ACTIONS(7087), + [anon_sym_SQUOTE] = ACTIONS(7089), + [sym__backtick_identifier] = ACTIONS(7089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7089), + }, + [3725] = { + [sym__alpha_identifier] = ACTIONS(4489), + [anon_sym_AT] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4491), + [anon_sym_constructor] = ACTIONS(4489), + [anon_sym_LBRACE] = ACTIONS(4491), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_LPAREN] = ACTIONS(4491), + [anon_sym_where] = ACTIONS(4489), + [anon_sym_object] = ACTIONS(4489), + [anon_sym_fun] = ACTIONS(4489), + [anon_sym_get] = ACTIONS(4489), + [anon_sym_set] = ACTIONS(4489), + [anon_sym_this] = ACTIONS(4489), + [anon_sym_super] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4491), + [sym_label] = ACTIONS(4489), + [anon_sym_in] = ACTIONS(4489), + [anon_sym_null] = ACTIONS(4489), + [anon_sym_if] = ACTIONS(4489), + [anon_sym_else] = ACTIONS(4489), + [anon_sym_when] = ACTIONS(4489), + [anon_sym_try] = ACTIONS(4489), + [anon_sym_throw] = ACTIONS(4489), + [anon_sym_return] = ACTIONS(4489), + [anon_sym_continue] = ACTIONS(4489), + [anon_sym_break] = ACTIONS(4489), + [anon_sym_COLON_COLON] = ACTIONS(4491), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4489), + [anon_sym_BANGis] = ACTIONS(4491), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_PLUS_PLUS] = ACTIONS(4491), + [anon_sym_DASH_DASH] = ACTIONS(4491), + [anon_sym_BANG] = ACTIONS(4489), + [anon_sym_suspend] = ACTIONS(4489), + [anon_sym_sealed] = ACTIONS(4489), + [anon_sym_annotation] = ACTIONS(4489), + [anon_sym_data] = ACTIONS(4489), + [anon_sym_inner] = ACTIONS(4489), + [anon_sym_value] = ACTIONS(4489), + [anon_sym_override] = ACTIONS(4489), + [anon_sym_lateinit] = ACTIONS(4489), + [anon_sym_public] = ACTIONS(4489), + [anon_sym_private] = ACTIONS(4489), + [anon_sym_internal] = ACTIONS(4489), + [anon_sym_protected] = ACTIONS(4489), + [anon_sym_tailrec] = ACTIONS(4489), + [anon_sym_operator] = ACTIONS(4489), + [anon_sym_infix] = ACTIONS(4489), + [anon_sym_inline] = ACTIONS(4489), + [anon_sym_external] = ACTIONS(4489), + [sym_property_modifier] = ACTIONS(4489), + [anon_sym_abstract] = ACTIONS(4489), + [anon_sym_final] = ACTIONS(4489), + [anon_sym_open] = ACTIONS(4489), + [anon_sym_vararg] = ACTIONS(4489), + [anon_sym_noinline] = ACTIONS(4489), + [anon_sym_crossinline] = ACTIONS(4489), + [anon_sym_expect] = ACTIONS(4489), + [anon_sym_actual] = ACTIONS(4489), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4491), + [anon_sym_continue_AT] = ACTIONS(4491), + [anon_sym_break_AT] = ACTIONS(4491), + [anon_sym_this_AT] = ACTIONS(4491), + [anon_sym_super_AT] = ACTIONS(4491), + [sym_real_literal] = ACTIONS(4491), + [sym_integer_literal] = ACTIONS(4489), + [sym_hex_literal] = ACTIONS(4491), + [sym_bin_literal] = ACTIONS(4491), + [anon_sym_true] = ACTIONS(4489), + [anon_sym_false] = ACTIONS(4489), + [anon_sym_SQUOTE] = ACTIONS(4491), + [sym__backtick_identifier] = ACTIONS(4491), + [sym__automatic_semicolon] = ACTIONS(4491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4491), + }, + [3726] = { + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(7094), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_RBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [anon_sym_DASH_GT] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + }, + [3727] = { + [sym_function_body] = STATE(3397), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + }, + [3728] = { + [sym_type_constraints] = STATE(3954), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(7136), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_RBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_COMMA] = ACTIONS(4185), [anon_sym_RPAREN] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5594), + [anon_sym_where] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), @@ -427693,285 +422949,1173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, - [3758] = { - [sym_class_body] = STATE(4123), - [sym_type_constraints] = STATE(3870), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(6142), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [3729] = { + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, - [3759] = { - [sym_function_body] = STATE(4139), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [3730] = { + [sym_function_body] = STATE(4010), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(7096), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), [sym_multiline_comment] = ACTIONS(3), }, - [3760] = { - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(4183), - [anon_sym_object] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), + [3731] = { + [sym_class_body] = STATE(4022), + [sym__alpha_identifier] = ACTIONS(4555), + [anon_sym_AT] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4555), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_LPAREN] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_where] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_SEMI] = ACTIONS(4557), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [sym_label] = ACTIONS(4557), + [anon_sym_in] = ACTIONS(4555), + [anon_sym_DOT_DOT] = ACTIONS(4557), + [anon_sym_QMARK_COLON] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_else] = ACTIONS(4555), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(4557), + [anon_sym_DASH_EQ] = ACTIONS(4557), + [anon_sym_STAR_EQ] = ACTIONS(4557), + [anon_sym_SLASH_EQ] = ACTIONS(4557), + [anon_sym_PERCENT_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_BANGin] = ACTIONS(4557), + [anon_sym_is] = ACTIONS(4555), + [anon_sym_BANGis] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_as_QMARK] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_BANG_BANG] = ACTIONS(4557), + [anon_sym_suspend] = ACTIONS(4555), + [anon_sym_sealed] = ACTIONS(4555), + [anon_sym_annotation] = ACTIONS(4555), + [anon_sym_data] = ACTIONS(4555), + [anon_sym_inner] = ACTIONS(4555), + [anon_sym_value] = ACTIONS(4555), + [anon_sym_override] = ACTIONS(4555), + [anon_sym_lateinit] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_internal] = ACTIONS(4555), + [anon_sym_protected] = ACTIONS(4555), + [anon_sym_tailrec] = ACTIONS(4555), + [anon_sym_operator] = ACTIONS(4555), + [anon_sym_infix] = ACTIONS(4555), + [anon_sym_inline] = ACTIONS(4555), + [anon_sym_external] = ACTIONS(4555), + [sym_property_modifier] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_open] = ACTIONS(4555), + [anon_sym_vararg] = ACTIONS(4555), + [anon_sym_noinline] = ACTIONS(4555), + [anon_sym_crossinline] = ACTIONS(4555), + [anon_sym_expect] = ACTIONS(4555), + [anon_sym_actual] = ACTIONS(4555), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4557), + [sym__automatic_semicolon] = ACTIONS(4557), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + }, + [3732] = { + [sym_type_constraints] = STATE(4036), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [3733] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3733), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(7098), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + }, + [3734] = { + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + }, + [3735] = { + [sym_class_body] = STATE(3203), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), + }, + [3736] = { + [sym_class_body] = STATE(3157), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7103), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), + }, + [3737] = { + [sym_class_body] = STATE(3953), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [3738] = { + [sym_type_constraints] = STATE(4019), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_RBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_DASH_GT] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + }, + [3739] = { + [sym_class_body] = STATE(3909), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4357), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), }, - [3761] = { - [sym_class_body] = STATE(4137), - [sym_type_constraints] = STATE(3874), + [3740] = { + [sym__alpha_identifier] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_as] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_LBRACE] = ACTIONS(4724), + [anon_sym_RBRACE] = ACTIONS(4724), + [anon_sym_LPAREN] = ACTIONS(4724), + [anon_sym_COMMA] = ACTIONS(4724), + [anon_sym_by] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_where] = ACTIONS(4722), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym_get] = ACTIONS(4722), + [anon_sym_set] = ACTIONS(4722), + [anon_sym_STAR] = ACTIONS(4722), + [sym_label] = ACTIONS(4724), + [anon_sym_in] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4724), + [anon_sym_QMARK_COLON] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_PLUS_EQ] = ACTIONS(4724), + [anon_sym_DASH_EQ] = ACTIONS(4724), + [anon_sym_STAR_EQ] = ACTIONS(4724), + [anon_sym_SLASH_EQ] = ACTIONS(4724), + [anon_sym_PERCENT_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), + [anon_sym_LT_EQ] = ACTIONS(4724), + [anon_sym_GT_EQ] = ACTIONS(4724), + [anon_sym_BANGin] = ACTIONS(4724), + [anon_sym_is] = ACTIONS(4722), + [anon_sym_BANGis] = ACTIONS(4724), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_SLASH] = ACTIONS(4722), + [anon_sym_PERCENT] = ACTIONS(4722), + [anon_sym_as_QMARK] = ACTIONS(4724), + [anon_sym_PLUS_PLUS] = ACTIONS(4724), + [anon_sym_DASH_DASH] = ACTIONS(4724), + [anon_sym_BANG_BANG] = ACTIONS(4724), + [anon_sym_suspend] = ACTIONS(4722), + [anon_sym_sealed] = ACTIONS(4722), + [anon_sym_annotation] = ACTIONS(4722), + [anon_sym_data] = ACTIONS(4722), + [anon_sym_inner] = ACTIONS(4722), + [anon_sym_value] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_lateinit] = ACTIONS(4722), + [anon_sym_public] = ACTIONS(4722), + [anon_sym_private] = ACTIONS(4722), + [anon_sym_internal] = ACTIONS(4722), + [anon_sym_protected] = ACTIONS(4722), + [anon_sym_tailrec] = ACTIONS(4722), + [anon_sym_operator] = ACTIONS(4722), + [anon_sym_infix] = ACTIONS(4722), + [anon_sym_inline] = ACTIONS(4722), + [anon_sym_external] = ACTIONS(4722), + [sym_property_modifier] = ACTIONS(4722), + [anon_sym_abstract] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_open] = ACTIONS(4722), + [anon_sym_vararg] = ACTIONS(4722), + [anon_sym_noinline] = ACTIONS(4722), + [anon_sym_crossinline] = ACTIONS(4722), + [anon_sym_expect] = ACTIONS(4722), + [anon_sym_actual] = ACTIONS(4722), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4724), + [sym__automatic_semicolon] = ACTIONS(4724), + [sym_safe_nav] = ACTIONS(4724), + [sym_multiline_comment] = ACTIONS(3), + }, + [3741] = { + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_COLON] = ACTIONS(4754), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_as] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_where] = ACTIONS(4754), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_get] = ACTIONS(4754), + [anon_sym_set] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [sym_label] = ACTIONS(4756), + [anon_sym_in] = ACTIONS(4754), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_QMARK_COLON] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4756), + [anon_sym_SLASH_EQ] = ACTIONS(4756), + [anon_sym_PERCENT_EQ] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4756), + [anon_sym_BANGin] = ACTIONS(4756), + [anon_sym_is] = ACTIONS(4754), + [anon_sym_BANGis] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4754), + [anon_sym_as_QMARK] = ACTIONS(4756), + [anon_sym_PLUS_PLUS] = ACTIONS(4756), + [anon_sym_DASH_DASH] = ACTIONS(4756), + [anon_sym_BANG_BANG] = ACTIONS(4756), + [anon_sym_suspend] = ACTIONS(4754), + [anon_sym_sealed] = ACTIONS(4754), + [anon_sym_annotation] = ACTIONS(4754), + [anon_sym_data] = ACTIONS(4754), + [anon_sym_inner] = ACTIONS(4754), + [anon_sym_value] = ACTIONS(4754), + [anon_sym_override] = ACTIONS(4754), + [anon_sym_lateinit] = ACTIONS(4754), + [anon_sym_public] = ACTIONS(4754), + [anon_sym_private] = ACTIONS(4754), + [anon_sym_internal] = ACTIONS(4754), + [anon_sym_protected] = ACTIONS(4754), + [anon_sym_tailrec] = ACTIONS(4754), + [anon_sym_operator] = ACTIONS(4754), + [anon_sym_infix] = ACTIONS(4754), + [anon_sym_inline] = ACTIONS(4754), + [anon_sym_external] = ACTIONS(4754), + [sym_property_modifier] = ACTIONS(4754), + [anon_sym_abstract] = ACTIONS(4754), + [anon_sym_final] = ACTIONS(4754), + [anon_sym_open] = ACTIONS(4754), + [anon_sym_vararg] = ACTIONS(4754), + [anon_sym_noinline] = ACTIONS(4754), + [anon_sym_crossinline] = ACTIONS(4754), + [anon_sym_expect] = ACTIONS(4754), + [anon_sym_actual] = ACTIONS(4754), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4756), + [sym__automatic_semicolon] = ACTIONS(4756), + [sym_safe_nav] = ACTIONS(4756), + [sym_multiline_comment] = ACTIONS(3), + }, + [3742] = { + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_typealias] = ACTIONS(4166), + [anon_sym_class] = ACTIONS(4166), + [anon_sym_interface] = ACTIONS(4166), + [anon_sym_enum] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_val] = ACTIONS(4166), + [anon_sym_var] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4168), + [sym_label] = ACTIONS(4166), + [anon_sym_for] = ACTIONS(4166), + [anon_sym_while] = ACTIONS(4166), + [anon_sym_do] = ACTIONS(4166), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), + }, + [3743] = { + [sym_function_body] = STATE(3414), + [sym__block] = STATE(3402), [sym__alpha_identifier] = ACTIONS(4275), [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(7138), + [anon_sym_COLON] = ACTIONS(7105), [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_RBRACK] = ACTIONS(4277), [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(5806), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_RBRACE] = ACTIONS(4277), [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4277), [anon_sym_LT] = ACTIONS(4275), [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(5812), + [anon_sym_where] = ACTIONS(4275), [anon_sym_DOT] = ACTIONS(4275), [anon_sym_SEMI] = ACTIONS(4277), [anon_sym_get] = ACTIONS(4275), [anon_sym_set] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4277), + [anon_sym_DASH_GT] = ACTIONS(4277), [sym_label] = ACTIONS(4277), [anon_sym_in] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), [anon_sym_DOT_DOT] = ACTIONS(4277), [anon_sym_QMARK_COLON] = ACTIONS(4277), [anon_sym_AMP_AMP] = ACTIONS(4277), [anon_sym_PIPE_PIPE] = ACTIONS(4277), [anon_sym_else] = ACTIONS(4275), [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_PLUS_EQ] = ACTIONS(4277), - [anon_sym_DASH_EQ] = ACTIONS(4277), - [anon_sym_STAR_EQ] = ACTIONS(4277), - [anon_sym_SLASH_EQ] = ACTIONS(4277), - [anon_sym_PERCENT_EQ] = ACTIONS(4277), [anon_sym_BANG_EQ] = ACTIONS(4275), [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), [anon_sym_EQ_EQ] = ACTIONS(4275), @@ -427984,7 +424128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4275), [anon_sym_DASH] = ACTIONS(4275), [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4277), [anon_sym_as_QMARK] = ACTIONS(4277), [anon_sym_PLUS_PLUS] = ACTIONS(4277), [anon_sym_DASH_DASH] = ACTIONS(4277), @@ -428017,1606 +424161,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4275), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), }, - [3762] = { - [sym_class_body] = STATE(4138), - [sym_type_constraints] = STATE(3878), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(6080), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - }, - [3763] = { - [sym_type_constraints] = STATE(3879), - [sym_enum_class_body] = STATE(4138), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(6138), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - }, - [3764] = { - [sym_class_body] = STATE(4152), - [sym_type_constraints] = STATE(3890), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7140), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - }, - [3765] = { - [sym_type_constraints] = STATE(3891), - [sym_enum_class_body] = STATE(4152), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7142), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - }, - [3766] = { - [sym_class_body] = STATE(4091), - [sym_type_constraints] = STATE(3905), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - }, - [3767] = { - [sym_class_body] = STATE(4114), - [sym_type_constraints] = STATE(3893), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(6052), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [3768] = { - [sym_function_body] = STATE(3999), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_COMMA] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_where] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4518), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_PLUS_EQ] = ACTIONS(4520), - [anon_sym_DASH_EQ] = ACTIONS(4520), - [anon_sym_STAR_EQ] = ACTIONS(4520), - [anon_sym_SLASH_EQ] = ACTIONS(4520), - [anon_sym_PERCENT_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4518), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_suspend] = ACTIONS(4518), - [anon_sym_sealed] = ACTIONS(4518), - [anon_sym_annotation] = ACTIONS(4518), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_override] = ACTIONS(4518), - [anon_sym_lateinit] = ACTIONS(4518), - [anon_sym_public] = ACTIONS(4518), - [anon_sym_private] = ACTIONS(4518), - [anon_sym_internal] = ACTIONS(4518), - [anon_sym_protected] = ACTIONS(4518), - [anon_sym_tailrec] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_infix] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym_external] = ACTIONS(4518), - [sym_property_modifier] = ACTIONS(4518), - [anon_sym_abstract] = ACTIONS(4518), - [anon_sym_final] = ACTIONS(4518), - [anon_sym_open] = ACTIONS(4518), - [anon_sym_vararg] = ACTIONS(4518), - [anon_sym_noinline] = ACTIONS(4518), - [anon_sym_crossinline] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4520), - [sym__automatic_semicolon] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), - [sym_multiline_comment] = ACTIONS(3), - }, - [3769] = { - [sym__alpha_identifier] = ACTIONS(4495), - [anon_sym_AT] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), + [3744] = { + [sym_class_body] = STATE(3589), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7107), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), [anon_sym_EQ] = ACTIONS(4497), - [anon_sym_fun] = ACTIONS(4495), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_COMMA] = ACTIONS(4497), - [anon_sym_by] = ACTIONS(4495), - [anon_sym_object] = ACTIONS(4495), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_get] = ACTIONS(4495), - [anon_sym_set] = ACTIONS(4495), - [anon_sym_this] = ACTIONS(4495), - [anon_sym_super] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), [anon_sym_STAR] = ACTIONS(4497), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4495), - [anon_sym_null] = ACTIONS(4495), - [anon_sym_if] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4495), - [anon_sym_when] = ACTIONS(4495), - [anon_sym_try] = ACTIONS(4495), - [anon_sym_throw] = ACTIONS(4495), - [anon_sym_return] = ACTIONS(4495), - [anon_sym_continue] = ACTIONS(4495), - [anon_sym_break] = ACTIONS(4495), - [anon_sym_COLON_COLON] = ACTIONS(4497), - [anon_sym_BANGin] = ACTIONS(4497), - [anon_sym_is] = ACTIONS(4495), - [anon_sym_BANGis] = ACTIONS(4497), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4497), - [anon_sym_DASH_DASH] = ACTIONS(4497), - [anon_sym_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4495), - [anon_sym_sealed] = ACTIONS(4495), - [anon_sym_annotation] = ACTIONS(4495), - [anon_sym_data] = ACTIONS(4495), - [anon_sym_inner] = ACTIONS(4495), - [anon_sym_value] = ACTIONS(4495), - [anon_sym_override] = ACTIONS(4495), - [anon_sym_lateinit] = ACTIONS(4495), - [anon_sym_public] = ACTIONS(4495), - [anon_sym_private] = ACTIONS(4495), - [anon_sym_internal] = ACTIONS(4495), - [anon_sym_protected] = ACTIONS(4495), - [anon_sym_tailrec] = ACTIONS(4495), - [anon_sym_operator] = ACTIONS(4495), - [anon_sym_infix] = ACTIONS(4495), - [anon_sym_inline] = ACTIONS(4495), - [anon_sym_external] = ACTIONS(4495), - [sym_property_modifier] = ACTIONS(4495), - [anon_sym_abstract] = ACTIONS(4495), - [anon_sym_final] = ACTIONS(4495), - [anon_sym_open] = ACTIONS(4495), - [anon_sym_vararg] = ACTIONS(4495), - [anon_sym_noinline] = ACTIONS(4495), - [anon_sym_crossinline] = ACTIONS(4495), - [anon_sym_expect] = ACTIONS(4495), - [anon_sym_actual] = ACTIONS(4495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4497), - [anon_sym_continue_AT] = ACTIONS(4497), - [anon_sym_break_AT] = ACTIONS(4497), - [anon_sym_this_AT] = ACTIONS(4497), - [anon_sym_super_AT] = ACTIONS(4497), - [sym_real_literal] = ACTIONS(4497), - [sym_integer_literal] = ACTIONS(4495), - [sym_hex_literal] = ACTIONS(4497), - [sym_bin_literal] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4495), - [anon_sym_false] = ACTIONS(4495), - [anon_sym_SQUOTE] = ACTIONS(4497), - [sym__backtick_identifier] = ACTIONS(4497), - [sym__automatic_semicolon] = ACTIONS(4497), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4497), - }, - [3770] = { - [sym_function_body] = STATE(3192), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(4164), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), - }, - [3771] = { - [sym_function_body] = STATE(3969), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_where] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4530), - [anon_sym_sealed] = ACTIONS(4530), - [anon_sym_annotation] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_override] = ACTIONS(4530), - [anon_sym_lateinit] = ACTIONS(4530), - [anon_sym_public] = ACTIONS(4530), - [anon_sym_private] = ACTIONS(4530), - [anon_sym_internal] = ACTIONS(4530), - [anon_sym_protected] = ACTIONS(4530), - [anon_sym_tailrec] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_infix] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym_external] = ACTIONS(4530), - [sym_property_modifier] = ACTIONS(4530), - [anon_sym_abstract] = ACTIONS(4530), - [anon_sym_final] = ACTIONS(4530), - [anon_sym_open] = ACTIONS(4530), - [anon_sym_vararg] = ACTIONS(4530), - [anon_sym_noinline] = ACTIONS(4530), - [anon_sym_crossinline] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - }, - [3772] = { - [sym_type_constraints] = STATE(4025), - [sym_function_body] = STATE(3192), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), - }, - [3773] = { - [sym_type_constraints] = STATE(3906), - [sym_enum_class_body] = STATE(4091), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - }, - [3774] = { - [sym_type_constraints] = STATE(4024), - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), - }, - [3775] = { - [sym_type_constraints] = STATE(3894), - [sym_enum_class_body] = STATE(4114), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(6086), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [3776] = { - [sym_type_constraints] = STATE(4023), - [sym_function_body] = STATE(3221), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), - }, - [3777] = { - [sym_class_body] = STATE(4091), - [sym_type_constraints] = STATE(3905), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7144), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - }, - [3778] = { - [sym_function_body] = STATE(3960), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(6852), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [sym_label] = ACTIONS(4341), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_PLUS_EQ] = ACTIONS(4341), - [anon_sym_DASH_EQ] = ACTIONS(4341), - [anon_sym_STAR_EQ] = ACTIONS(4341), - [anon_sym_SLASH_EQ] = ACTIONS(4341), - [anon_sym_PERCENT_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4339), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_while] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), [sym_multiline_comment] = ACTIONS(3), }, - [3779] = { - [aux_sym_type_constraints_repeat1] = STATE(3794), - [sym__alpha_identifier] = ACTIONS(4541), - [anon_sym_AT] = ACTIONS(4543), - [anon_sym_LBRACK] = ACTIONS(4543), - [anon_sym_as] = ACTIONS(4541), - [anon_sym_EQ] = ACTIONS(4541), - [anon_sym_LBRACE] = ACTIONS(4543), - [anon_sym_RBRACE] = ACTIONS(4543), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_COMMA] = ACTIONS(7146), - [anon_sym_by] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4541), - [anon_sym_GT] = ACTIONS(4541), - [anon_sym_where] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4541), - [anon_sym_SEMI] = ACTIONS(4543), - [anon_sym_get] = ACTIONS(4541), - [anon_sym_set] = ACTIONS(4541), - [anon_sym_STAR] = ACTIONS(4541), - [sym_label] = ACTIONS(4543), - [anon_sym_in] = ACTIONS(4541), - [anon_sym_DOT_DOT] = ACTIONS(4543), - [anon_sym_QMARK_COLON] = ACTIONS(4543), - [anon_sym_AMP_AMP] = ACTIONS(4543), - [anon_sym_PIPE_PIPE] = ACTIONS(4543), - [anon_sym_else] = ACTIONS(4541), - [anon_sym_COLON_COLON] = ACTIONS(4543), - [anon_sym_PLUS_EQ] = ACTIONS(4543), - [anon_sym_DASH_EQ] = ACTIONS(4543), - [anon_sym_STAR_EQ] = ACTIONS(4543), - [anon_sym_SLASH_EQ] = ACTIONS(4543), - [anon_sym_PERCENT_EQ] = ACTIONS(4543), - [anon_sym_BANG_EQ] = ACTIONS(4541), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4543), - [anon_sym_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4543), - [anon_sym_LT_EQ] = ACTIONS(4543), - [anon_sym_GT_EQ] = ACTIONS(4543), - [anon_sym_BANGin] = ACTIONS(4543), - [anon_sym_is] = ACTIONS(4541), - [anon_sym_BANGis] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4541), - [anon_sym_DASH] = ACTIONS(4541), - [anon_sym_SLASH] = ACTIONS(4541), - [anon_sym_PERCENT] = ACTIONS(4541), - [anon_sym_as_QMARK] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_BANG_BANG] = ACTIONS(4543), - [anon_sym_suspend] = ACTIONS(4541), - [anon_sym_sealed] = ACTIONS(4541), - [anon_sym_annotation] = ACTIONS(4541), - [anon_sym_data] = ACTIONS(4541), - [anon_sym_inner] = ACTIONS(4541), - [anon_sym_value] = ACTIONS(4541), - [anon_sym_override] = ACTIONS(4541), - [anon_sym_lateinit] = ACTIONS(4541), - [anon_sym_public] = ACTIONS(4541), - [anon_sym_private] = ACTIONS(4541), - [anon_sym_internal] = ACTIONS(4541), - [anon_sym_protected] = ACTIONS(4541), - [anon_sym_tailrec] = ACTIONS(4541), - [anon_sym_operator] = ACTIONS(4541), - [anon_sym_infix] = ACTIONS(4541), - [anon_sym_inline] = ACTIONS(4541), - [anon_sym_external] = ACTIONS(4541), - [sym_property_modifier] = ACTIONS(4541), - [anon_sym_abstract] = ACTIONS(4541), - [anon_sym_final] = ACTIONS(4541), - [anon_sym_open] = ACTIONS(4541), - [anon_sym_vararg] = ACTIONS(4541), - [anon_sym_noinline] = ACTIONS(4541), - [anon_sym_crossinline] = ACTIONS(4541), - [anon_sym_expect] = ACTIONS(4541), - [anon_sym_actual] = ACTIONS(4541), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4543), - [sym__automatic_semicolon] = ACTIONS(4543), - [sym_safe_nav] = ACTIONS(4543), - [sym_multiline_comment] = ACTIONS(3), - }, - [3780] = { - [aux_sym_type_constraints_repeat1] = STATE(3780), - [sym__alpha_identifier] = ACTIONS(4495), - [anon_sym_AT] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_as] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4495), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_COMMA] = ACTIONS(7148), - [anon_sym_by] = ACTIONS(4495), - [anon_sym_LT] = ACTIONS(4495), - [anon_sym_GT] = ACTIONS(4495), - [anon_sym_where] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4495), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_get] = ACTIONS(4495), - [anon_sym_set] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [sym_label] = ACTIONS(4497), - [anon_sym_in] = ACTIONS(4495), - [anon_sym_DOT_DOT] = ACTIONS(4497), - [anon_sym_QMARK_COLON] = ACTIONS(4497), - [anon_sym_AMP_AMP] = ACTIONS(4497), - [anon_sym_PIPE_PIPE] = ACTIONS(4497), - [anon_sym_else] = ACTIONS(4495), - [anon_sym_COLON_COLON] = ACTIONS(4497), - [anon_sym_PLUS_EQ] = ACTIONS(4497), - [anon_sym_DASH_EQ] = ACTIONS(4497), - [anon_sym_STAR_EQ] = ACTIONS(4497), - [anon_sym_SLASH_EQ] = ACTIONS(4497), - [anon_sym_PERCENT_EQ] = ACTIONS(4497), - [anon_sym_BANG_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4497), - [anon_sym_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4497), - [anon_sym_LT_EQ] = ACTIONS(4497), - [anon_sym_GT_EQ] = ACTIONS(4497), - [anon_sym_BANGin] = ACTIONS(4497), - [anon_sym_is] = ACTIONS(4495), - [anon_sym_BANGis] = ACTIONS(4497), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_SLASH] = ACTIONS(4495), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4497), - [anon_sym_PLUS_PLUS] = ACTIONS(4497), - [anon_sym_DASH_DASH] = ACTIONS(4497), - [anon_sym_BANG_BANG] = ACTIONS(4497), - [anon_sym_suspend] = ACTIONS(4495), - [anon_sym_sealed] = ACTIONS(4495), - [anon_sym_annotation] = ACTIONS(4495), - [anon_sym_data] = ACTIONS(4495), - [anon_sym_inner] = ACTIONS(4495), - [anon_sym_value] = ACTIONS(4495), - [anon_sym_override] = ACTIONS(4495), - [anon_sym_lateinit] = ACTIONS(4495), - [anon_sym_public] = ACTIONS(4495), - [anon_sym_private] = ACTIONS(4495), - [anon_sym_internal] = ACTIONS(4495), - [anon_sym_protected] = ACTIONS(4495), - [anon_sym_tailrec] = ACTIONS(4495), - [anon_sym_operator] = ACTIONS(4495), - [anon_sym_infix] = ACTIONS(4495), - [anon_sym_inline] = ACTIONS(4495), - [anon_sym_external] = ACTIONS(4495), - [sym_property_modifier] = ACTIONS(4495), - [anon_sym_abstract] = ACTIONS(4495), - [anon_sym_final] = ACTIONS(4495), - [anon_sym_open] = ACTIONS(4495), - [anon_sym_vararg] = ACTIONS(4495), - [anon_sym_noinline] = ACTIONS(4495), - [anon_sym_crossinline] = ACTIONS(4495), - [anon_sym_expect] = ACTIONS(4495), - [anon_sym_actual] = ACTIONS(4495), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4497), - [sym__automatic_semicolon] = ACTIONS(4497), - [sym_safe_nav] = ACTIONS(4497), - [sym_multiline_comment] = ACTIONS(3), - }, - [3781] = { + [3745] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3733), [sym__alpha_identifier] = ACTIONS(4736), [anon_sym_AT] = ACTIONS(4738), [anon_sym_LBRACK] = ACTIONS(4738), - [anon_sym_EQ] = ACTIONS(4738), - [anon_sym_fun] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), [anon_sym_LBRACE] = ACTIONS(4738), [anon_sym_RBRACE] = ACTIONS(4738), [anon_sym_LPAREN] = ACTIONS(4738), [anon_sym_COMMA] = ACTIONS(4738), - [anon_sym_by] = ACTIONS(4736), - [anon_sym_object] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), [anon_sym_SEMI] = ACTIONS(4738), [anon_sym_get] = ACTIONS(4736), [anon_sym_set] = ACTIONS(4736), - [anon_sym_this] = ACTIONS(4736), - [anon_sym_super] = ACTIONS(4736), - [anon_sym_STAR] = ACTIONS(4738), - [sym_label] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4738), [anon_sym_in] = ACTIONS(4736), - [anon_sym_null] = ACTIONS(4736), - [anon_sym_if] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), [anon_sym_else] = ACTIONS(4736), - [anon_sym_when] = ACTIONS(4736), - [anon_sym_try] = ACTIONS(4736), - [anon_sym_throw] = ACTIONS(4736), - [anon_sym_return] = ACTIONS(4736), - [anon_sym_continue] = ACTIONS(4736), - [anon_sym_break] = ACTIONS(4736), [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), [anon_sym_BANGin] = ACTIONS(4738), [anon_sym_is] = ACTIONS(4736), [anon_sym_BANGis] = ACTIONS(4738), [anon_sym_PLUS] = ACTIONS(4736), [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), [anon_sym_PLUS_PLUS] = ACTIONS(4738), [anon_sym_DASH_DASH] = ACTIONS(4738), - [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), [anon_sym_suspend] = ACTIONS(4736), [anon_sym_sealed] = ACTIONS(4736), [anon_sym_annotation] = ACTIONS(4736), @@ -429644,1747 +424321,903 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(4736), [anon_sym_actual] = ACTIONS(4736), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4738), - [anon_sym_continue_AT] = ACTIONS(4738), - [anon_sym_break_AT] = ACTIONS(4738), - [anon_sym_this_AT] = ACTIONS(4738), - [anon_sym_super_AT] = ACTIONS(4738), - [sym_real_literal] = ACTIONS(4738), - [sym_integer_literal] = ACTIONS(4736), - [sym_hex_literal] = ACTIONS(4738), - [sym_bin_literal] = ACTIONS(4738), - [anon_sym_true] = ACTIONS(4736), - [anon_sym_false] = ACTIONS(4736), - [anon_sym_SQUOTE] = ACTIONS(4738), [sym__backtick_identifier] = ACTIONS(4738), [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4738), }, - [3782] = { - [sym_type_constraints] = STATE(3906), - [sym_enum_class_body] = STATE(4091), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7151), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [3746] = { + [sym__alpha_identifier] = ACTIONS(4702), + [anon_sym_AT] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_as] = ACTIONS(4702), + [anon_sym_EQ] = ACTIONS(4702), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_by] = ACTIONS(4702), + [anon_sym_LT] = ACTIONS(4702), + [anon_sym_GT] = ACTIONS(4702), + [anon_sym_where] = ACTIONS(4702), + [anon_sym_DOT] = ACTIONS(4702), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_get] = ACTIONS(4702), + [anon_sym_set] = ACTIONS(4702), + [anon_sym_STAR] = ACTIONS(4702), + [sym_label] = ACTIONS(4704), + [anon_sym_in] = ACTIONS(4702), + [anon_sym_DOT_DOT] = ACTIONS(4704), + [anon_sym_QMARK_COLON] = ACTIONS(4704), + [anon_sym_AMP_AMP] = ACTIONS(4704), + [anon_sym_PIPE_PIPE] = ACTIONS(4704), + [anon_sym_else] = ACTIONS(4702), + [anon_sym_COLON_COLON] = ACTIONS(4704), + [anon_sym_PLUS_EQ] = ACTIONS(4704), + [anon_sym_DASH_EQ] = ACTIONS(4704), + [anon_sym_STAR_EQ] = ACTIONS(4704), + [anon_sym_SLASH_EQ] = ACTIONS(4704), + [anon_sym_PERCENT_EQ] = ACTIONS(4704), + [anon_sym_BANG_EQ] = ACTIONS(4702), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4704), + [anon_sym_EQ_EQ] = ACTIONS(4702), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4704), + [anon_sym_LT_EQ] = ACTIONS(4704), + [anon_sym_GT_EQ] = ACTIONS(4704), + [anon_sym_BANGin] = ACTIONS(4704), + [anon_sym_is] = ACTIONS(4702), + [anon_sym_BANGis] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4702), + [anon_sym_DASH] = ACTIONS(4702), + [anon_sym_SLASH] = ACTIONS(4702), + [anon_sym_PERCENT] = ACTIONS(4702), + [anon_sym_as_QMARK] = ACTIONS(4704), + [anon_sym_PLUS_PLUS] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4704), + [anon_sym_BANG_BANG] = ACTIONS(4704), + [anon_sym_suspend] = ACTIONS(4702), + [anon_sym_sealed] = ACTIONS(4702), + [anon_sym_annotation] = ACTIONS(4702), + [anon_sym_data] = ACTIONS(4702), + [anon_sym_inner] = ACTIONS(4702), + [anon_sym_value] = ACTIONS(4702), + [anon_sym_override] = ACTIONS(4702), + [anon_sym_lateinit] = ACTIONS(4702), + [anon_sym_public] = ACTIONS(4702), + [anon_sym_private] = ACTIONS(4702), + [anon_sym_internal] = ACTIONS(4702), + [anon_sym_protected] = ACTIONS(4702), + [anon_sym_tailrec] = ACTIONS(4702), + [anon_sym_operator] = ACTIONS(4702), + [anon_sym_infix] = ACTIONS(4702), + [anon_sym_inline] = ACTIONS(4702), + [anon_sym_external] = ACTIONS(4702), + [sym_property_modifier] = ACTIONS(4702), + [anon_sym_abstract] = ACTIONS(4702), + [anon_sym_final] = ACTIONS(4702), + [anon_sym_open] = ACTIONS(4702), + [anon_sym_vararg] = ACTIONS(4702), + [anon_sym_noinline] = ACTIONS(4702), + [anon_sym_crossinline] = ACTIONS(4702), + [anon_sym_expect] = ACTIONS(4702), + [anon_sym_actual] = ACTIONS(4702), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4704), + [sym__automatic_semicolon] = ACTIONS(4704), + [sym_safe_nav] = ACTIONS(4704), [sym_multiline_comment] = ACTIONS(3), }, - [3783] = { - [sym_function_body] = STATE(3354), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(4154), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), - }, - [3784] = { - [sym_type_constraints] = STATE(4019), - [sym_function_body] = STATE(3262), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), - }, - [3785] = { - [sym_class_body] = STATE(4088), - [sym_type_constraints] = STATE(3910), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [sym_label] = ACTIONS(4467), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_suspend] = ACTIONS(4465), - [anon_sym_sealed] = ACTIONS(4465), - [anon_sym_annotation] = ACTIONS(4465), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_override] = ACTIONS(4465), - [anon_sym_lateinit] = ACTIONS(4465), - [anon_sym_public] = ACTIONS(4465), - [anon_sym_private] = ACTIONS(4465), - [anon_sym_internal] = ACTIONS(4465), - [anon_sym_protected] = ACTIONS(4465), - [anon_sym_tailrec] = ACTIONS(4465), - [anon_sym_operator] = ACTIONS(4465), - [anon_sym_infix] = ACTIONS(4465), - [anon_sym_inline] = ACTIONS(4465), - [anon_sym_external] = ACTIONS(4465), - [sym_property_modifier] = ACTIONS(4465), - [anon_sym_abstract] = ACTIONS(4465), - [anon_sym_final] = ACTIONS(4465), - [anon_sym_open] = ACTIONS(4465), - [anon_sym_vararg] = ACTIONS(4465), - [anon_sym_noinline] = ACTIONS(4465), - [anon_sym_crossinline] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4467), - [sym__automatic_semicolon] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), + [3747] = { + [sym__alpha_identifier] = ACTIONS(4750), + [anon_sym_AT] = ACTIONS(4752), + [anon_sym_COLON] = ACTIONS(4750), + [anon_sym_LBRACK] = ACTIONS(4752), + [anon_sym_as] = ACTIONS(4750), + [anon_sym_EQ] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4752), + [anon_sym_RBRACE] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4752), + [anon_sym_COMMA] = ACTIONS(4752), + [anon_sym_LT] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4750), + [anon_sym_where] = ACTIONS(4750), + [anon_sym_DOT] = ACTIONS(4750), + [anon_sym_SEMI] = ACTIONS(4752), + [anon_sym_get] = ACTIONS(4750), + [anon_sym_set] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4750), + [sym_label] = ACTIONS(4752), + [anon_sym_in] = ACTIONS(4750), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4752), + [anon_sym_PIPE_PIPE] = ACTIONS(4752), + [anon_sym_else] = ACTIONS(4750), + [anon_sym_COLON_COLON] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4752), + [anon_sym_DASH_EQ] = ACTIONS(4752), + [anon_sym_STAR_EQ] = ACTIONS(4752), + [anon_sym_SLASH_EQ] = ACTIONS(4752), + [anon_sym_PERCENT_EQ] = ACTIONS(4752), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4752), + [anon_sym_BANGin] = ACTIONS(4752), + [anon_sym_is] = ACTIONS(4750), + [anon_sym_BANGis] = ACTIONS(4752), + [anon_sym_PLUS] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_SLASH] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4750), + [anon_sym_as_QMARK] = ACTIONS(4752), + [anon_sym_PLUS_PLUS] = ACTIONS(4752), + [anon_sym_DASH_DASH] = ACTIONS(4752), + [anon_sym_BANG_BANG] = ACTIONS(4752), + [anon_sym_suspend] = ACTIONS(4750), + [anon_sym_sealed] = ACTIONS(4750), + [anon_sym_annotation] = ACTIONS(4750), + [anon_sym_data] = ACTIONS(4750), + [anon_sym_inner] = ACTIONS(4750), + [anon_sym_value] = ACTIONS(4750), + [anon_sym_override] = ACTIONS(4750), + [anon_sym_lateinit] = ACTIONS(4750), + [anon_sym_public] = ACTIONS(4750), + [anon_sym_private] = ACTIONS(4750), + [anon_sym_internal] = ACTIONS(4750), + [anon_sym_protected] = ACTIONS(4750), + [anon_sym_tailrec] = ACTIONS(4750), + [anon_sym_operator] = ACTIONS(4750), + [anon_sym_infix] = ACTIONS(4750), + [anon_sym_inline] = ACTIONS(4750), + [anon_sym_external] = ACTIONS(4750), + [sym_property_modifier] = ACTIONS(4750), + [anon_sym_abstract] = ACTIONS(4750), + [anon_sym_final] = ACTIONS(4750), + [anon_sym_open] = ACTIONS(4750), + [anon_sym_vararg] = ACTIONS(4750), + [anon_sym_noinline] = ACTIONS(4750), + [anon_sym_crossinline] = ACTIONS(4750), + [anon_sym_expect] = ACTIONS(4750), + [anon_sym_actual] = ACTIONS(4750), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4752), + [sym__automatic_semicolon] = ACTIONS(4752), + [sym_safe_nav] = ACTIONS(4752), [sym_multiline_comment] = ACTIONS(3), }, - [3786] = { - [sym_function_body] = STATE(3502), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(7153), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_RPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [sym_label] = ACTIONS(4341), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_while] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_PLUS_EQ] = ACTIONS(4341), - [anon_sym_DASH_EQ] = ACTIONS(4341), - [anon_sym_STAR_EQ] = ACTIONS(4341), - [anon_sym_SLASH_EQ] = ACTIONS(4341), - [anon_sym_PERCENT_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4339), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), + [3748] = { + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, - [3787] = { - [sym_type_constraints] = STATE(3911), - [sym_enum_class_body] = STATE(4088), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [sym_label] = ACTIONS(4467), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_suspend] = ACTIONS(4465), - [anon_sym_sealed] = ACTIONS(4465), - [anon_sym_annotation] = ACTIONS(4465), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_override] = ACTIONS(4465), - [anon_sym_lateinit] = ACTIONS(4465), - [anon_sym_public] = ACTIONS(4465), - [anon_sym_private] = ACTIONS(4465), - [anon_sym_internal] = ACTIONS(4465), - [anon_sym_protected] = ACTIONS(4465), - [anon_sym_tailrec] = ACTIONS(4465), - [anon_sym_operator] = ACTIONS(4465), - [anon_sym_infix] = ACTIONS(4465), - [anon_sym_inline] = ACTIONS(4465), - [anon_sym_external] = ACTIONS(4465), - [sym_property_modifier] = ACTIONS(4465), - [anon_sym_abstract] = ACTIONS(4465), - [anon_sym_final] = ACTIONS(4465), - [anon_sym_open] = ACTIONS(4465), - [anon_sym_vararg] = ACTIONS(4465), - [anon_sym_noinline] = ACTIONS(4465), - [anon_sym_crossinline] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4467), - [sym__automatic_semicolon] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), + [3749] = { + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, - [3788] = { - [sym_function_body] = STATE(3534), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_COLON] = ACTIONS(7155), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_RPAREN] = ACTIONS(4323), - [anon_sym_LT] = ACTIONS(4321), - [anon_sym_GT] = ACTIONS(4321), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_get] = ACTIONS(4321), - [anon_sym_set] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4323), - [anon_sym_in] = ACTIONS(4321), - [anon_sym_while] = ACTIONS(4321), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_QMARK_COLON] = ACTIONS(4323), - [anon_sym_AMP_AMP] = ACTIONS(4323), - [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_else] = ACTIONS(4321), - [anon_sym_COLON_COLON] = ACTIONS(4323), - [anon_sym_PLUS_EQ] = ACTIONS(4323), - [anon_sym_DASH_EQ] = ACTIONS(4323), - [anon_sym_STAR_EQ] = ACTIONS(4323), - [anon_sym_SLASH_EQ] = ACTIONS(4323), - [anon_sym_PERCENT_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), - [anon_sym_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4323), - [anon_sym_BANGin] = ACTIONS(4323), - [anon_sym_is] = ACTIONS(4321), - [anon_sym_BANGis] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4321), - [anon_sym_as_QMARK] = ACTIONS(4323), - [anon_sym_PLUS_PLUS] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG_BANG] = ACTIONS(4323), - [anon_sym_suspend] = ACTIONS(4321), - [anon_sym_sealed] = ACTIONS(4321), - [anon_sym_annotation] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4321), - [anon_sym_inner] = ACTIONS(4321), - [anon_sym_value] = ACTIONS(4321), - [anon_sym_override] = ACTIONS(4321), - [anon_sym_lateinit] = ACTIONS(4321), - [anon_sym_public] = ACTIONS(4321), - [anon_sym_private] = ACTIONS(4321), - [anon_sym_internal] = ACTIONS(4321), - [anon_sym_protected] = ACTIONS(4321), - [anon_sym_tailrec] = ACTIONS(4321), - [anon_sym_operator] = ACTIONS(4321), - [anon_sym_infix] = ACTIONS(4321), - [anon_sym_inline] = ACTIONS(4321), - [anon_sym_external] = ACTIONS(4321), - [sym_property_modifier] = ACTIONS(4321), - [anon_sym_abstract] = ACTIONS(4321), - [anon_sym_final] = ACTIONS(4321), - [anon_sym_open] = ACTIONS(4321), - [anon_sym_vararg] = ACTIONS(4321), - [anon_sym_noinline] = ACTIONS(4321), - [anon_sym_crossinline] = ACTIONS(4321), - [anon_sym_expect] = ACTIONS(4321), - [anon_sym_actual] = ACTIONS(4321), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), + [3750] = { + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, - [3789] = { - [sym_class_body] = STATE(4100), - [sym_type_constraints] = STATE(3864), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [sym_label] = ACTIONS(4459), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_suspend] = ACTIONS(4457), - [anon_sym_sealed] = ACTIONS(4457), - [anon_sym_annotation] = ACTIONS(4457), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_override] = ACTIONS(4457), - [anon_sym_lateinit] = ACTIONS(4457), - [anon_sym_public] = ACTIONS(4457), - [anon_sym_private] = ACTIONS(4457), - [anon_sym_internal] = ACTIONS(4457), - [anon_sym_protected] = ACTIONS(4457), - [anon_sym_tailrec] = ACTIONS(4457), - [anon_sym_operator] = ACTIONS(4457), - [anon_sym_infix] = ACTIONS(4457), - [anon_sym_inline] = ACTIONS(4457), - [anon_sym_external] = ACTIONS(4457), - [sym_property_modifier] = ACTIONS(4457), - [anon_sym_abstract] = ACTIONS(4457), - [anon_sym_final] = ACTIONS(4457), - [anon_sym_open] = ACTIONS(4457), - [anon_sym_vararg] = ACTIONS(4457), - [anon_sym_noinline] = ACTIONS(4457), - [anon_sym_crossinline] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4459), - [sym__automatic_semicolon] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), + [3751] = { + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, - [3790] = { - [sym__alpha_identifier] = ACTIONS(4780), - [anon_sym_AT] = ACTIONS(4782), - [anon_sym_LBRACK] = ACTIONS(4782), - [anon_sym_EQ] = ACTIONS(4782), - [anon_sym_fun] = ACTIONS(4780), - [anon_sym_LBRACE] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(4782), - [anon_sym_by] = ACTIONS(4780), - [anon_sym_where] = ACTIONS(4780), - [anon_sym_object] = ACTIONS(4780), - [anon_sym_SEMI] = ACTIONS(4782), - [anon_sym_get] = ACTIONS(4780), - [anon_sym_set] = ACTIONS(4780), - [anon_sym_this] = ACTIONS(4780), - [anon_sym_super] = ACTIONS(4780), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(4780), - [anon_sym_in] = ACTIONS(4780), - [anon_sym_null] = ACTIONS(4780), - [anon_sym_if] = ACTIONS(4780), - [anon_sym_else] = ACTIONS(4780), - [anon_sym_when] = ACTIONS(4780), - [anon_sym_try] = ACTIONS(4780), - [anon_sym_throw] = ACTIONS(4780), - [anon_sym_return] = ACTIONS(4780), - [anon_sym_continue] = ACTIONS(4780), - [anon_sym_break] = ACTIONS(4780), - [anon_sym_COLON_COLON] = ACTIONS(4782), - [anon_sym_BANGin] = ACTIONS(4782), - [anon_sym_is] = ACTIONS(4780), - [anon_sym_BANGis] = ACTIONS(4782), - [anon_sym_PLUS] = ACTIONS(4780), - [anon_sym_DASH] = ACTIONS(4780), - [anon_sym_PLUS_PLUS] = ACTIONS(4782), - [anon_sym_DASH_DASH] = ACTIONS(4782), - [anon_sym_BANG] = ACTIONS(4780), - [anon_sym_suspend] = ACTIONS(4780), - [anon_sym_sealed] = ACTIONS(4780), - [anon_sym_annotation] = ACTIONS(4780), - [anon_sym_data] = ACTIONS(4780), - [anon_sym_inner] = ACTIONS(4780), - [anon_sym_value] = ACTIONS(4780), - [anon_sym_override] = ACTIONS(4780), - [anon_sym_lateinit] = ACTIONS(4780), - [anon_sym_public] = ACTIONS(4780), - [anon_sym_private] = ACTIONS(4780), - [anon_sym_internal] = ACTIONS(4780), - [anon_sym_protected] = ACTIONS(4780), - [anon_sym_tailrec] = ACTIONS(4780), - [anon_sym_operator] = ACTIONS(4780), - [anon_sym_infix] = ACTIONS(4780), - [anon_sym_inline] = ACTIONS(4780), - [anon_sym_external] = ACTIONS(4780), - [sym_property_modifier] = ACTIONS(4780), - [anon_sym_abstract] = ACTIONS(4780), - [anon_sym_final] = ACTIONS(4780), - [anon_sym_open] = ACTIONS(4780), - [anon_sym_vararg] = ACTIONS(4780), - [anon_sym_noinline] = ACTIONS(4780), - [anon_sym_crossinline] = ACTIONS(4780), - [anon_sym_expect] = ACTIONS(4780), - [anon_sym_actual] = ACTIONS(4780), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4782), - [anon_sym_continue_AT] = ACTIONS(4782), - [anon_sym_break_AT] = ACTIONS(4782), - [anon_sym_this_AT] = ACTIONS(4782), - [anon_sym_super_AT] = ACTIONS(4782), - [sym_real_literal] = ACTIONS(4782), - [sym_integer_literal] = ACTIONS(4780), - [sym_hex_literal] = ACTIONS(4782), - [sym_bin_literal] = ACTIONS(4782), - [anon_sym_true] = ACTIONS(4780), - [anon_sym_false] = ACTIONS(4780), - [anon_sym_SQUOTE] = ACTIONS(4782), - [sym__backtick_identifier] = ACTIONS(4782), - [sym__automatic_semicolon] = ACTIONS(4782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4782), - }, - [3791] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_constructor] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_LT] = ACTIONS(4015), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_get] = ACTIONS(4010), - [anon_sym_set] = ACTIONS(4010), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4015), - [sym_label] = ACTIONS(4010), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4010), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_BANGin] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_BANGis] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_suspend] = ACTIONS(4010), - [anon_sym_sealed] = ACTIONS(4010), - [anon_sym_annotation] = ACTIONS(4010), - [anon_sym_data] = ACTIONS(4010), - [anon_sym_inner] = ACTIONS(4010), - [anon_sym_value] = ACTIONS(4010), - [anon_sym_override] = ACTIONS(4010), - [anon_sym_lateinit] = ACTIONS(4010), - [anon_sym_public] = ACTIONS(4010), - [anon_sym_private] = ACTIONS(4010), - [anon_sym_internal] = ACTIONS(4010), - [anon_sym_protected] = ACTIONS(4010), - [anon_sym_tailrec] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_infix] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym_external] = ACTIONS(4010), - [sym_property_modifier] = ACTIONS(4010), - [anon_sym_abstract] = ACTIONS(4010), - [anon_sym_final] = ACTIONS(4010), - [anon_sym_open] = ACTIONS(4010), - [anon_sym_vararg] = ACTIONS(4010), - [anon_sym_noinline] = ACTIONS(4010), - [anon_sym_crossinline] = ACTIONS(4010), - [anon_sym_expect] = ACTIONS(4010), - [anon_sym_actual] = ACTIONS(4010), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4015), - [sym__automatic_semicolon] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [3792] = { - [sym_function_body] = STATE(3314), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), - }, - [3793] = { - [sym__alpha_identifier] = ACTIONS(4473), - [anon_sym_AT] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4475), - [anon_sym_as] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_constructor] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4475), - [anon_sym_RBRACE] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4475), - [anon_sym_COMMA] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4473), - [anon_sym_GT] = ACTIONS(4473), - [anon_sym_where] = ACTIONS(4473), - [anon_sym_DOT] = ACTIONS(4473), - [anon_sym_SEMI] = ACTIONS(4475), - [anon_sym_get] = ACTIONS(4473), - [anon_sym_set] = ACTIONS(4473), - [anon_sym_STAR] = ACTIONS(4473), - [sym_label] = ACTIONS(4475), - [anon_sym_in] = ACTIONS(4473), - [anon_sym_DOT_DOT] = ACTIONS(4475), - [anon_sym_QMARK_COLON] = ACTIONS(4475), - [anon_sym_AMP_AMP] = ACTIONS(4475), - [anon_sym_PIPE_PIPE] = ACTIONS(4475), - [anon_sym_else] = ACTIONS(4473), - [anon_sym_COLON_COLON] = ACTIONS(4475), - [anon_sym_PLUS_EQ] = ACTIONS(4475), - [anon_sym_DASH_EQ] = ACTIONS(4475), - [anon_sym_STAR_EQ] = ACTIONS(4475), - [anon_sym_SLASH_EQ] = ACTIONS(4475), - [anon_sym_PERCENT_EQ] = ACTIONS(4475), - [anon_sym_BANG_EQ] = ACTIONS(4473), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4475), - [anon_sym_EQ_EQ] = ACTIONS(4473), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4475), - [anon_sym_LT_EQ] = ACTIONS(4475), - [anon_sym_GT_EQ] = ACTIONS(4475), - [anon_sym_BANGin] = ACTIONS(4475), - [anon_sym_is] = ACTIONS(4473), - [anon_sym_BANGis] = ACTIONS(4475), - [anon_sym_PLUS] = ACTIONS(4473), - [anon_sym_DASH] = ACTIONS(4473), - [anon_sym_SLASH] = ACTIONS(4473), - [anon_sym_PERCENT] = ACTIONS(4473), - [anon_sym_as_QMARK] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_BANG_BANG] = ACTIONS(4475), - [anon_sym_suspend] = ACTIONS(4473), - [anon_sym_sealed] = ACTIONS(4473), - [anon_sym_annotation] = ACTIONS(4473), - [anon_sym_data] = ACTIONS(4473), - [anon_sym_inner] = ACTIONS(4473), - [anon_sym_value] = ACTIONS(4473), - [anon_sym_override] = ACTIONS(4473), - [anon_sym_lateinit] = ACTIONS(4473), - [anon_sym_public] = ACTIONS(4473), - [anon_sym_private] = ACTIONS(4473), - [anon_sym_internal] = ACTIONS(4473), - [anon_sym_protected] = ACTIONS(4473), - [anon_sym_tailrec] = ACTIONS(4473), - [anon_sym_operator] = ACTIONS(4473), - [anon_sym_infix] = ACTIONS(4473), - [anon_sym_inline] = ACTIONS(4473), - [anon_sym_external] = ACTIONS(4473), - [sym_property_modifier] = ACTIONS(4473), - [anon_sym_abstract] = ACTIONS(4473), - [anon_sym_final] = ACTIONS(4473), - [anon_sym_open] = ACTIONS(4473), - [anon_sym_vararg] = ACTIONS(4473), - [anon_sym_noinline] = ACTIONS(4473), - [anon_sym_crossinline] = ACTIONS(4473), - [anon_sym_expect] = ACTIONS(4473), - [anon_sym_actual] = ACTIONS(4473), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4475), - [sym__automatic_semicolon] = ACTIONS(4475), - [sym_safe_nav] = ACTIONS(4475), + [3752] = { + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, - [3794] = { - [aux_sym_type_constraints_repeat1] = STATE(3780), - [sym__alpha_identifier] = ACTIONS(4506), - [anon_sym_AT] = ACTIONS(4508), - [anon_sym_LBRACK] = ACTIONS(4508), - [anon_sym_as] = ACTIONS(4506), - [anon_sym_EQ] = ACTIONS(4506), - [anon_sym_LBRACE] = ACTIONS(4508), - [anon_sym_RBRACE] = ACTIONS(4508), - [anon_sym_LPAREN] = ACTIONS(4508), - [anon_sym_COMMA] = ACTIONS(7146), - [anon_sym_by] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4506), - [anon_sym_GT] = ACTIONS(4506), - [anon_sym_where] = ACTIONS(4506), - [anon_sym_DOT] = ACTIONS(4506), - [anon_sym_SEMI] = ACTIONS(4508), - [anon_sym_get] = ACTIONS(4506), - [anon_sym_set] = ACTIONS(4506), - [anon_sym_STAR] = ACTIONS(4506), - [sym_label] = ACTIONS(4508), - [anon_sym_in] = ACTIONS(4506), - [anon_sym_DOT_DOT] = ACTIONS(4508), - [anon_sym_QMARK_COLON] = ACTIONS(4508), - [anon_sym_AMP_AMP] = ACTIONS(4508), - [anon_sym_PIPE_PIPE] = ACTIONS(4508), - [anon_sym_else] = ACTIONS(4506), - [anon_sym_COLON_COLON] = ACTIONS(4508), - [anon_sym_PLUS_EQ] = ACTIONS(4508), - [anon_sym_DASH_EQ] = ACTIONS(4508), - [anon_sym_STAR_EQ] = ACTIONS(4508), - [anon_sym_SLASH_EQ] = ACTIONS(4508), - [anon_sym_PERCENT_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ] = ACTIONS(4506), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4508), - [anon_sym_LT_EQ] = ACTIONS(4508), - [anon_sym_GT_EQ] = ACTIONS(4508), - [anon_sym_BANGin] = ACTIONS(4508), - [anon_sym_is] = ACTIONS(4506), - [anon_sym_BANGis] = ACTIONS(4508), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_DASH] = ACTIONS(4506), - [anon_sym_SLASH] = ACTIONS(4506), - [anon_sym_PERCENT] = ACTIONS(4506), - [anon_sym_as_QMARK] = ACTIONS(4508), - [anon_sym_PLUS_PLUS] = ACTIONS(4508), - [anon_sym_DASH_DASH] = ACTIONS(4508), - [anon_sym_BANG_BANG] = ACTIONS(4508), - [anon_sym_suspend] = ACTIONS(4506), - [anon_sym_sealed] = ACTIONS(4506), - [anon_sym_annotation] = ACTIONS(4506), - [anon_sym_data] = ACTIONS(4506), - [anon_sym_inner] = ACTIONS(4506), - [anon_sym_value] = ACTIONS(4506), - [anon_sym_override] = ACTIONS(4506), - [anon_sym_lateinit] = ACTIONS(4506), - [anon_sym_public] = ACTIONS(4506), - [anon_sym_private] = ACTIONS(4506), - [anon_sym_internal] = ACTIONS(4506), - [anon_sym_protected] = ACTIONS(4506), - [anon_sym_tailrec] = ACTIONS(4506), - [anon_sym_operator] = ACTIONS(4506), - [anon_sym_infix] = ACTIONS(4506), - [anon_sym_inline] = ACTIONS(4506), - [anon_sym_external] = ACTIONS(4506), - [sym_property_modifier] = ACTIONS(4506), - [anon_sym_abstract] = ACTIONS(4506), - [anon_sym_final] = ACTIONS(4506), - [anon_sym_open] = ACTIONS(4506), - [anon_sym_vararg] = ACTIONS(4506), - [anon_sym_noinline] = ACTIONS(4506), - [anon_sym_crossinline] = ACTIONS(4506), - [anon_sym_expect] = ACTIONS(4506), - [anon_sym_actual] = ACTIONS(4506), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4508), - [sym__automatic_semicolon] = ACTIONS(4508), - [sym_safe_nav] = ACTIONS(4508), + [3753] = { + [sym_enum_class_body] = STATE(3861), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, - [3795] = { - [sym_type_constraints] = STATE(3913), - [sym_enum_class_body] = STATE(4100), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [sym_label] = ACTIONS(4459), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_suspend] = ACTIONS(4457), - [anon_sym_sealed] = ACTIONS(4457), - [anon_sym_annotation] = ACTIONS(4457), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_override] = ACTIONS(4457), - [anon_sym_lateinit] = ACTIONS(4457), - [anon_sym_public] = ACTIONS(4457), - [anon_sym_private] = ACTIONS(4457), - [anon_sym_internal] = ACTIONS(4457), - [anon_sym_protected] = ACTIONS(4457), - [anon_sym_tailrec] = ACTIONS(4457), - [anon_sym_operator] = ACTIONS(4457), - [anon_sym_infix] = ACTIONS(4457), - [anon_sym_inline] = ACTIONS(4457), - [anon_sym_external] = ACTIONS(4457), - [sym_property_modifier] = ACTIONS(4457), - [anon_sym_abstract] = ACTIONS(4457), - [anon_sym_final] = ACTIONS(4457), - [anon_sym_open] = ACTIONS(4457), - [anon_sym_vararg] = ACTIONS(4457), - [anon_sym_noinline] = ACTIONS(4457), - [anon_sym_crossinline] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4459), - [sym__automatic_semicolon] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), + [3754] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3766), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_EQ] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(7109), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4684), + [sym_label] = ACTIONS(4686), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_PLUS_EQ] = ACTIONS(4686), + [anon_sym_DASH_EQ] = ACTIONS(4686), + [anon_sym_STAR_EQ] = ACTIONS(4686), + [anon_sym_SLASH_EQ] = ACTIONS(4686), + [anon_sym_PERCENT_EQ] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4684), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_suspend] = ACTIONS(4684), + [anon_sym_sealed] = ACTIONS(4684), + [anon_sym_annotation] = ACTIONS(4684), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_override] = ACTIONS(4684), + [anon_sym_lateinit] = ACTIONS(4684), + [anon_sym_public] = ACTIONS(4684), + [anon_sym_private] = ACTIONS(4684), + [anon_sym_internal] = ACTIONS(4684), + [anon_sym_protected] = ACTIONS(4684), + [anon_sym_tailrec] = ACTIONS(4684), + [anon_sym_operator] = ACTIONS(4684), + [anon_sym_infix] = ACTIONS(4684), + [anon_sym_inline] = ACTIONS(4684), + [anon_sym_external] = ACTIONS(4684), + [sym_property_modifier] = ACTIONS(4684), + [anon_sym_abstract] = ACTIONS(4684), + [anon_sym_final] = ACTIONS(4684), + [anon_sym_open] = ACTIONS(4684), + [anon_sym_vararg] = ACTIONS(4684), + [anon_sym_noinline] = ACTIONS(4684), + [anon_sym_crossinline] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4686), + [sym__automatic_semicolon] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), [sym_multiline_comment] = ACTIONS(3), }, - [3796] = { - [sym_function_body] = STATE(3238), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4339), - [anon_sym_object] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_this] = ACTIONS(4339), - [anon_sym_super] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [sym_label] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [anon_sym_try] = ACTIONS(4339), - [anon_sym_throw] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), + [3755] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3123), + [anon_sym_STAR_EQ] = ACTIONS(3123), + [anon_sym_SLASH_EQ] = ACTIONS(3123), + [anon_sym_PERCENT_EQ] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4341), - [anon_sym_continue_AT] = ACTIONS(4341), - [anon_sym_break_AT] = ACTIONS(4341), - [anon_sym_this_AT] = ACTIONS(4341), - [anon_sym_super_AT] = ACTIONS(4341), - [sym_real_literal] = ACTIONS(4341), - [sym_integer_literal] = ACTIONS(4339), - [sym_hex_literal] = ACTIONS(4341), - [sym_bin_literal] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4339), - [anon_sym_false] = ACTIONS(4339), - [anon_sym_SQUOTE] = ACTIONS(4341), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4341), - }, - [3797] = { - [sym_class_body] = STATE(4044), - [sym_type_constraints] = STATE(3920), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - }, - [3798] = { - [sym_type_constraints] = STATE(3922), - [sym_enum_class_body] = STATE(4044), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3123), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [3799] = { - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_where] = ACTIONS(4530), - [anon_sym_object] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_this] = ACTIONS(4530), - [anon_sym_super] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4532), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_null] = ACTIONS(4530), - [anon_sym_if] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_when] = ACTIONS(4530), - [anon_sym_try] = ACTIONS(4530), - [anon_sym_throw] = ACTIONS(4530), - [anon_sym_return] = ACTIONS(4530), - [anon_sym_continue] = ACTIONS(4530), - [anon_sym_break] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4532), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4532), - [anon_sym_continue_AT] = ACTIONS(4532), - [anon_sym_break_AT] = ACTIONS(4532), - [anon_sym_this_AT] = ACTIONS(4532), - [anon_sym_super_AT] = ACTIONS(4532), - [sym_real_literal] = ACTIONS(4532), - [sym_integer_literal] = ACTIONS(4530), - [sym_hex_literal] = ACTIONS(4532), - [sym_bin_literal] = ACTIONS(4532), - [anon_sym_true] = ACTIONS(4530), - [anon_sym_false] = ACTIONS(4530), - [anon_sym_SQUOTE] = ACTIONS(4532), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4532), - }, - [3800] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3803), - [sym__alpha_identifier] = ACTIONS(4671), - [anon_sym_AT] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4673), - [anon_sym_as] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_RBRACE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(7157), - [anon_sym_RPAREN] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4671), - [anon_sym_where] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_get] = ACTIONS(4671), - [anon_sym_set] = ACTIONS(4671), - [anon_sym_STAR] = ACTIONS(4671), - [sym_label] = ACTIONS(4673), - [anon_sym_in] = ACTIONS(4671), - [anon_sym_while] = ACTIONS(4671), - [anon_sym_DOT_DOT] = ACTIONS(4673), - [anon_sym_QMARK_COLON] = ACTIONS(4673), - [anon_sym_AMP_AMP] = ACTIONS(4673), - [anon_sym_PIPE_PIPE] = ACTIONS(4673), - [anon_sym_else] = ACTIONS(4671), - [anon_sym_COLON_COLON] = ACTIONS(4673), - [anon_sym_PLUS_EQ] = ACTIONS(4673), - [anon_sym_DASH_EQ] = ACTIONS(4673), - [anon_sym_STAR_EQ] = ACTIONS(4673), - [anon_sym_SLASH_EQ] = ACTIONS(4673), - [anon_sym_PERCENT_EQ] = ACTIONS(4673), - [anon_sym_BANG_EQ] = ACTIONS(4671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4673), - [anon_sym_EQ_EQ] = ACTIONS(4671), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4673), - [anon_sym_LT_EQ] = ACTIONS(4673), - [anon_sym_GT_EQ] = ACTIONS(4673), - [anon_sym_BANGin] = ACTIONS(4673), - [anon_sym_is] = ACTIONS(4671), - [anon_sym_BANGis] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4671), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4671), - [anon_sym_PERCENT] = ACTIONS(4671), - [anon_sym_as_QMARK] = ACTIONS(4673), - [anon_sym_PLUS_PLUS] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4673), - [anon_sym_BANG_BANG] = ACTIONS(4673), - [anon_sym_suspend] = ACTIONS(4671), - [anon_sym_sealed] = ACTIONS(4671), - [anon_sym_annotation] = ACTIONS(4671), - [anon_sym_data] = ACTIONS(4671), - [anon_sym_inner] = ACTIONS(4671), - [anon_sym_value] = ACTIONS(4671), - [anon_sym_override] = ACTIONS(4671), - [anon_sym_lateinit] = ACTIONS(4671), - [anon_sym_public] = ACTIONS(4671), - [anon_sym_private] = ACTIONS(4671), - [anon_sym_internal] = ACTIONS(4671), - [anon_sym_protected] = ACTIONS(4671), - [anon_sym_tailrec] = ACTIONS(4671), - [anon_sym_operator] = ACTIONS(4671), - [anon_sym_infix] = ACTIONS(4671), - [anon_sym_inline] = ACTIONS(4671), - [anon_sym_external] = ACTIONS(4671), - [sym_property_modifier] = ACTIONS(4671), - [anon_sym_abstract] = ACTIONS(4671), - [anon_sym_final] = ACTIONS(4671), - [anon_sym_open] = ACTIONS(4671), - [anon_sym_vararg] = ACTIONS(4671), - [anon_sym_noinline] = ACTIONS(4671), - [anon_sym_crossinline] = ACTIONS(4671), - [anon_sym_expect] = ACTIONS(4671), - [anon_sym_actual] = ACTIONS(4671), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4673), - [sym_safe_nav] = ACTIONS(4673), + [3756] = { + [sym__alpha_identifier] = ACTIONS(4716), + [anon_sym_AT] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4718), + [anon_sym_as] = ACTIONS(4716), + [anon_sym_EQ] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_by] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_where] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4716), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_get] = ACTIONS(4716), + [anon_sym_set] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4716), + [sym_label] = ACTIONS(4718), + [anon_sym_in] = ACTIONS(4716), + [anon_sym_DOT_DOT] = ACTIONS(4718), + [anon_sym_QMARK_COLON] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_else] = ACTIONS(4716), + [anon_sym_COLON_COLON] = ACTIONS(4718), + [anon_sym_PLUS_EQ] = ACTIONS(4718), + [anon_sym_DASH_EQ] = ACTIONS(4718), + [anon_sym_STAR_EQ] = ACTIONS(4718), + [anon_sym_SLASH_EQ] = ACTIONS(4718), + [anon_sym_PERCENT_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ] = ACTIONS(4716), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ] = ACTIONS(4716), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4718), + [anon_sym_LT_EQ] = ACTIONS(4718), + [anon_sym_GT_EQ] = ACTIONS(4718), + [anon_sym_BANGin] = ACTIONS(4718), + [anon_sym_is] = ACTIONS(4716), + [anon_sym_BANGis] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_SLASH] = ACTIONS(4716), + [anon_sym_PERCENT] = ACTIONS(4716), + [anon_sym_as_QMARK] = ACTIONS(4718), + [anon_sym_PLUS_PLUS] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4718), + [anon_sym_BANG_BANG] = ACTIONS(4718), + [anon_sym_suspend] = ACTIONS(4716), + [anon_sym_sealed] = ACTIONS(4716), + [anon_sym_annotation] = ACTIONS(4716), + [anon_sym_data] = ACTIONS(4716), + [anon_sym_inner] = ACTIONS(4716), + [anon_sym_value] = ACTIONS(4716), + [anon_sym_override] = ACTIONS(4716), + [anon_sym_lateinit] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(4716), + [anon_sym_private] = ACTIONS(4716), + [anon_sym_internal] = ACTIONS(4716), + [anon_sym_protected] = ACTIONS(4716), + [anon_sym_tailrec] = ACTIONS(4716), + [anon_sym_operator] = ACTIONS(4716), + [anon_sym_infix] = ACTIONS(4716), + [anon_sym_inline] = ACTIONS(4716), + [anon_sym_external] = ACTIONS(4716), + [sym_property_modifier] = ACTIONS(4716), + [anon_sym_abstract] = ACTIONS(4716), + [anon_sym_final] = ACTIONS(4716), + [anon_sym_open] = ACTIONS(4716), + [anon_sym_vararg] = ACTIONS(4716), + [anon_sym_noinline] = ACTIONS(4716), + [anon_sym_crossinline] = ACTIONS(4716), + [anon_sym_expect] = ACTIONS(4716), + [anon_sym_actual] = ACTIONS(4716), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4718), + [sym__automatic_semicolon] = ACTIONS(4718), + [sym_safe_nav] = ACTIONS(4718), [sym_multiline_comment] = ACTIONS(3), }, - [3801] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4948), - [anon_sym_EQ] = ACTIONS(4948), - [anon_sym_fun] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4948), - [anon_sym_GT] = ACTIONS(4948), - [anon_sym_object] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4948), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_this] = ACTIONS(4381), - [anon_sym_super] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [sym_label] = ACTIONS(4381), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4950), - [anon_sym_QMARK_COLON] = ACTIONS(4950), - [anon_sym_AMP_AMP] = ACTIONS(4950), - [anon_sym_PIPE_PIPE] = ACTIONS(4950), - [anon_sym_null] = ACTIONS(4381), - [anon_sym_if] = ACTIONS(4381), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_when] = ACTIONS(4381), - [anon_sym_try] = ACTIONS(4381), - [anon_sym_throw] = ACTIONS(4381), - [anon_sym_return] = ACTIONS(4381), - [anon_sym_continue] = ACTIONS(4381), - [anon_sym_break] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4950), - [anon_sym_DASH_EQ] = ACTIONS(4950), - [anon_sym_STAR_EQ] = ACTIONS(4950), - [anon_sym_SLASH_EQ] = ACTIONS(4950), - [anon_sym_PERCENT_EQ] = ACTIONS(4950), - [anon_sym_BANG_EQ] = ACTIONS(4948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4950), - [anon_sym_EQ_EQ] = ACTIONS(4948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4950), - [anon_sym_LT_EQ] = ACTIONS(4950), - [anon_sym_GT_EQ] = ACTIONS(4950), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4948), - [anon_sym_PERCENT] = ACTIONS(4948), - [anon_sym_as_QMARK] = ACTIONS(4950), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG] = ACTIONS(4381), - [anon_sym_BANG_BANG] = ACTIONS(4950), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4383), - [anon_sym_continue_AT] = ACTIONS(4383), - [anon_sym_break_AT] = ACTIONS(4383), - [anon_sym_this_AT] = ACTIONS(4383), - [anon_sym_super_AT] = ACTIONS(4383), - [sym_real_literal] = ACTIONS(4383), - [sym_integer_literal] = ACTIONS(4381), - [sym_hex_literal] = ACTIONS(4383), - [sym_bin_literal] = ACTIONS(4383), - [anon_sym_true] = ACTIONS(4381), - [anon_sym_false] = ACTIONS(4381), - [anon_sym_SQUOTE] = ACTIONS(4383), - [sym__backtick_identifier] = ACTIONS(4383), - [sym__automatic_semicolon] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4950), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4383), - }, - [3802] = { - [sym_function_body] = STATE(3273), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(6908), - [anon_sym_fun] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_COMMA] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_where] = ACTIONS(4518), - [anon_sym_object] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_this] = ACTIONS(4518), - [anon_sym_super] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [sym_label] = ACTIONS(4518), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_null] = ACTIONS(4518), - [anon_sym_if] = ACTIONS(4518), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_when] = ACTIONS(4518), - [anon_sym_try] = ACTIONS(4518), - [anon_sym_throw] = ACTIONS(4518), - [anon_sym_return] = ACTIONS(4518), - [anon_sym_continue] = ACTIONS(4518), - [anon_sym_break] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4518), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4520), - [anon_sym_continue_AT] = ACTIONS(4520), - [anon_sym_break_AT] = ACTIONS(4520), - [anon_sym_this_AT] = ACTIONS(4520), - [anon_sym_super_AT] = ACTIONS(4520), - [sym_real_literal] = ACTIONS(4520), - [sym_integer_literal] = ACTIONS(4518), - [sym_hex_literal] = ACTIONS(4520), - [sym_bin_literal] = ACTIONS(4520), - [anon_sym_true] = ACTIONS(4518), - [anon_sym_false] = ACTIONS(4518), - [anon_sym_SQUOTE] = ACTIONS(4520), - [sym__backtick_identifier] = ACTIONS(4520), - [sym__automatic_semicolon] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4520), - }, - [3803] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3445), + [3757] = { [sym__alpha_identifier] = ACTIONS(4740), [anon_sym_AT] = ACTIONS(4742), [anon_sym_LBRACK] = ACTIONS(4742), @@ -431393,8 +425226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(4742), [anon_sym_RBRACE] = ACTIONS(4742), [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(7157), - [anon_sym_RPAREN] = ACTIONS(4742), + [anon_sym_COMMA] = ACTIONS(4742), [anon_sym_LT] = ACTIONS(4740), [anon_sym_GT] = ACTIONS(4740), [anon_sym_where] = ACTIONS(4740), @@ -431405,7 +425237,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4740), [sym_label] = ACTIONS(4742), [anon_sym_in] = ACTIONS(4740), - [anon_sym_while] = ACTIONS(4740), [anon_sym_DOT_DOT] = ACTIONS(4742), [anon_sym_QMARK_COLON] = ACTIONS(4742), [anon_sym_AMP_AMP] = ACTIONS(4742), @@ -431461,670 +425292,1638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(4740), [anon_sym_actual] = ACTIONS(4740), [sym_line_comment] = ACTIONS(3), + [anon_sym_L] = ACTIONS(7111), [sym__backtick_identifier] = ACTIONS(4742), + [sym__automatic_semicolon] = ACTIONS(4742), [sym_safe_nav] = ACTIONS(4742), [sym_multiline_comment] = ACTIONS(3), }, - [3804] = { - [aux_sym_user_type_repeat1] = STATE(3744), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_typealias] = ACTIONS(4225), - [anon_sym_class] = ACTIONS(4225), - [anon_sym_fun] = ACTIONS(4225), - [anon_sym_interface] = ACTIONS(4225), - [anon_sym_enum] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_val] = ACTIONS(4225), - [anon_sym_var] = ACTIONS(4225), - [anon_sym_object] = ACTIONS(4225), - [anon_sym_DOT] = ACTIONS(7126), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [anon_sym_this] = ACTIONS(4225), - [anon_sym_super] = ACTIONS(4225), - [anon_sym_STAR] = ACTIONS(4227), - [sym_label] = ACTIONS(4225), - [anon_sym_for] = ACTIONS(4225), - [anon_sym_while] = ACTIONS(4225), - [anon_sym_do] = ACTIONS(4225), - [anon_sym_null] = ACTIONS(4225), - [anon_sym_if] = ACTIONS(4225), - [anon_sym_when] = ACTIONS(4225), - [anon_sym_try] = ACTIONS(4225), - [anon_sym_throw] = ACTIONS(4225), - [anon_sym_return] = ACTIONS(4225), - [anon_sym_continue] = ACTIONS(4225), - [anon_sym_break] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG] = ACTIONS(4227), - [anon_sym_suspend] = ACTIONS(4225), - [anon_sym_sealed] = ACTIONS(4225), - [anon_sym_annotation] = ACTIONS(4225), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_override] = ACTIONS(4225), - [anon_sym_lateinit] = ACTIONS(4225), - [anon_sym_public] = ACTIONS(4225), - [anon_sym_private] = ACTIONS(4225), - [anon_sym_internal] = ACTIONS(4225), - [anon_sym_protected] = ACTIONS(4225), - [anon_sym_tailrec] = ACTIONS(4225), - [anon_sym_operator] = ACTIONS(4225), - [anon_sym_infix] = ACTIONS(4225), - [anon_sym_inline] = ACTIONS(4225), - [anon_sym_external] = ACTIONS(4225), - [sym_property_modifier] = ACTIONS(4225), - [anon_sym_abstract] = ACTIONS(4225), - [anon_sym_final] = ACTIONS(4225), - [anon_sym_open] = ACTIONS(4225), - [anon_sym_vararg] = ACTIONS(4225), - [anon_sym_noinline] = ACTIONS(4225), - [anon_sym_crossinline] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4227), - [anon_sym_continue_AT] = ACTIONS(4227), - [anon_sym_break_AT] = ACTIONS(4227), - [anon_sym_this_AT] = ACTIONS(4227), - [anon_sym_super_AT] = ACTIONS(4227), - [sym_real_literal] = ACTIONS(4227), - [sym_integer_literal] = ACTIONS(4225), - [sym_hex_literal] = ACTIONS(4227), - [sym_bin_literal] = ACTIONS(4227), - [anon_sym_true] = ACTIONS(4225), - [anon_sym_false] = ACTIONS(4225), - [anon_sym_SQUOTE] = ACTIONS(4227), - [sym__backtick_identifier] = ACTIONS(4227), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4227), + [3758] = { + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [3805] = { - [sym__alpha_identifier] = ACTIONS(4647), - [anon_sym_AT] = ACTIONS(4649), - [anon_sym_LBRACK] = ACTIONS(4649), - [anon_sym_EQ] = ACTIONS(4649), - [anon_sym_fun] = ACTIONS(4647), - [anon_sym_LBRACE] = ACTIONS(4649), - [anon_sym_RBRACE] = ACTIONS(4649), - [anon_sym_LPAREN] = ACTIONS(4649), - [anon_sym_by] = ACTIONS(4647), - [anon_sym_where] = ACTIONS(4647), - [anon_sym_object] = ACTIONS(4647), - [anon_sym_SEMI] = ACTIONS(4649), - [anon_sym_get] = ACTIONS(4647), - [anon_sym_set] = ACTIONS(4647), - [anon_sym_this] = ACTIONS(4647), - [anon_sym_super] = ACTIONS(4647), - [anon_sym_STAR] = ACTIONS(4649), - [sym_label] = ACTIONS(4647), - [anon_sym_in] = ACTIONS(4647), - [anon_sym_null] = ACTIONS(4647), - [anon_sym_if] = ACTIONS(4647), - [anon_sym_else] = ACTIONS(4647), - [anon_sym_when] = ACTIONS(4647), - [anon_sym_try] = ACTIONS(4647), - [anon_sym_throw] = ACTIONS(4647), - [anon_sym_return] = ACTIONS(4647), - [anon_sym_continue] = ACTIONS(4647), - [anon_sym_break] = ACTIONS(4647), - [anon_sym_COLON_COLON] = ACTIONS(4649), - [anon_sym_BANGin] = ACTIONS(4649), - [anon_sym_is] = ACTIONS(4647), - [anon_sym_BANGis] = ACTIONS(4649), - [anon_sym_PLUS] = ACTIONS(4647), - [anon_sym_DASH] = ACTIONS(4647), - [anon_sym_PLUS_PLUS] = ACTIONS(4649), - [anon_sym_DASH_DASH] = ACTIONS(4649), - [anon_sym_BANG] = ACTIONS(4647), - [anon_sym_suspend] = ACTIONS(4647), - [anon_sym_sealed] = ACTIONS(4647), - [anon_sym_annotation] = ACTIONS(4647), - [anon_sym_data] = ACTIONS(4647), - [anon_sym_inner] = ACTIONS(4647), - [anon_sym_value] = ACTIONS(4647), - [anon_sym_override] = ACTIONS(4647), - [anon_sym_lateinit] = ACTIONS(4647), - [anon_sym_public] = ACTIONS(4647), - [anon_sym_private] = ACTIONS(4647), - [anon_sym_internal] = ACTIONS(4647), - [anon_sym_protected] = ACTIONS(4647), - [anon_sym_tailrec] = ACTIONS(4647), - [anon_sym_operator] = ACTIONS(4647), - [anon_sym_infix] = ACTIONS(4647), - [anon_sym_inline] = ACTIONS(4647), - [anon_sym_external] = ACTIONS(4647), - [sym_property_modifier] = ACTIONS(4647), - [anon_sym_abstract] = ACTIONS(4647), - [anon_sym_final] = ACTIONS(4647), - [anon_sym_open] = ACTIONS(4647), - [anon_sym_vararg] = ACTIONS(4647), - [anon_sym_noinline] = ACTIONS(4647), - [anon_sym_crossinline] = ACTIONS(4647), - [anon_sym_expect] = ACTIONS(4647), - [anon_sym_actual] = ACTIONS(4647), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4649), - [anon_sym_continue_AT] = ACTIONS(4649), - [anon_sym_break_AT] = ACTIONS(4649), - [anon_sym_this_AT] = ACTIONS(4649), - [anon_sym_super_AT] = ACTIONS(4649), - [sym_real_literal] = ACTIONS(4649), - [sym_integer_literal] = ACTIONS(4647), - [sym_hex_literal] = ACTIONS(4649), - [sym_bin_literal] = ACTIONS(4649), - [anon_sym_true] = ACTIONS(4647), - [anon_sym_false] = ACTIONS(4647), - [anon_sym_SQUOTE] = ACTIONS(4649), - [sym__backtick_identifier] = ACTIONS(4649), - [sym__automatic_semicolon] = ACTIONS(4649), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4649), + [3759] = { + [sym_function_body] = STATE(3457), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_RPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_while] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), }, - [3806] = { - [sym_type_constraints] = STATE(3901), - [sym_enum_class_body] = STATE(4110), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), + [3760] = { + [sym__alpha_identifier] = ACTIONS(4559), + [anon_sym_AT] = ACTIONS(4561), + [anon_sym_COLON] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4561), + [anon_sym_as] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4559), + [anon_sym_LBRACE] = ACTIONS(4561), + [anon_sym_RBRACE] = ACTIONS(4561), + [anon_sym_LPAREN] = ACTIONS(4561), + [anon_sym_COMMA] = ACTIONS(4561), + [anon_sym_LT] = ACTIONS(4559), + [anon_sym_GT] = ACTIONS(4559), + [anon_sym_where] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_SEMI] = ACTIONS(4561), + [anon_sym_get] = ACTIONS(4559), + [anon_sym_set] = ACTIONS(4559), + [anon_sym_STAR] = ACTIONS(4559), + [sym_label] = ACTIONS(4561), + [anon_sym_in] = ACTIONS(4559), + [anon_sym_DOT_DOT] = ACTIONS(4561), + [anon_sym_QMARK_COLON] = ACTIONS(4561), + [anon_sym_AMP_AMP] = ACTIONS(4561), + [anon_sym_PIPE_PIPE] = ACTIONS(4561), + [anon_sym_else] = ACTIONS(4559), + [anon_sym_COLON_COLON] = ACTIONS(4561), + [anon_sym_PLUS_EQ] = ACTIONS(4561), + [anon_sym_DASH_EQ] = ACTIONS(4561), + [anon_sym_STAR_EQ] = ACTIONS(4561), + [anon_sym_SLASH_EQ] = ACTIONS(4561), + [anon_sym_PERCENT_EQ] = ACTIONS(4561), + [anon_sym_BANG_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4561), + [anon_sym_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4561), + [anon_sym_LT_EQ] = ACTIONS(4561), + [anon_sym_GT_EQ] = ACTIONS(4561), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4559), + [anon_sym_BANGis] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_DASH] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4559), + [anon_sym_as_QMARK] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(4561), + [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_BANG_BANG] = ACTIONS(4561), + [anon_sym_suspend] = ACTIONS(4559), + [anon_sym_sealed] = ACTIONS(4559), + [anon_sym_annotation] = ACTIONS(4559), + [anon_sym_data] = ACTIONS(4559), + [anon_sym_inner] = ACTIONS(4559), + [anon_sym_value] = ACTIONS(4559), + [anon_sym_override] = ACTIONS(4559), + [anon_sym_lateinit] = ACTIONS(4559), + [anon_sym_public] = ACTIONS(4559), + [anon_sym_private] = ACTIONS(4559), + [anon_sym_internal] = ACTIONS(4559), + [anon_sym_protected] = ACTIONS(4559), + [anon_sym_tailrec] = ACTIONS(4559), + [anon_sym_operator] = ACTIONS(4559), + [anon_sym_infix] = ACTIONS(4559), + [anon_sym_inline] = ACTIONS(4559), + [anon_sym_external] = ACTIONS(4559), + [sym_property_modifier] = ACTIONS(4559), + [anon_sym_abstract] = ACTIONS(4559), + [anon_sym_final] = ACTIONS(4559), + [anon_sym_open] = ACTIONS(4559), + [anon_sym_vararg] = ACTIONS(4559), + [anon_sym_noinline] = ACTIONS(4559), + [anon_sym_crossinline] = ACTIONS(4559), + [anon_sym_expect] = ACTIONS(4559), + [anon_sym_actual] = ACTIONS(4559), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4561), + [sym__automatic_semicolon] = ACTIONS(4561), + [sym_safe_nav] = ACTIONS(4561), [sym_multiline_comment] = ACTIONS(3), }, - [3807] = { - [sym__alpha_identifier] = ACTIONS(4800), - [anon_sym_AT] = ACTIONS(4802), - [anon_sym_LBRACK] = ACTIONS(4802), - [anon_sym_EQ] = ACTIONS(4802), - [anon_sym_fun] = ACTIONS(4800), - [anon_sym_LBRACE] = ACTIONS(4802), - [anon_sym_RBRACE] = ACTIONS(4802), - [anon_sym_LPAREN] = ACTIONS(4802), - [anon_sym_by] = ACTIONS(4800), - [anon_sym_where] = ACTIONS(4800), - [anon_sym_object] = ACTIONS(4800), - [anon_sym_SEMI] = ACTIONS(4802), - [anon_sym_get] = ACTIONS(4800), - [anon_sym_set] = ACTIONS(4800), - [anon_sym_this] = ACTIONS(4800), - [anon_sym_super] = ACTIONS(4800), - [anon_sym_STAR] = ACTIONS(4802), - [sym_label] = ACTIONS(4800), - [anon_sym_in] = ACTIONS(4800), - [anon_sym_null] = ACTIONS(4800), - [anon_sym_if] = ACTIONS(4800), - [anon_sym_else] = ACTIONS(4800), - [anon_sym_when] = ACTIONS(4800), - [anon_sym_try] = ACTIONS(4800), - [anon_sym_throw] = ACTIONS(4800), - [anon_sym_return] = ACTIONS(4800), - [anon_sym_continue] = ACTIONS(4800), - [anon_sym_break] = ACTIONS(4800), - [anon_sym_COLON_COLON] = ACTIONS(4802), - [anon_sym_BANGin] = ACTIONS(4802), - [anon_sym_is] = ACTIONS(4800), - [anon_sym_BANGis] = ACTIONS(4802), - [anon_sym_PLUS] = ACTIONS(4800), - [anon_sym_DASH] = ACTIONS(4800), - [anon_sym_PLUS_PLUS] = ACTIONS(4802), - [anon_sym_DASH_DASH] = ACTIONS(4802), - [anon_sym_BANG] = ACTIONS(4800), - [anon_sym_suspend] = ACTIONS(4800), - [anon_sym_sealed] = ACTIONS(4800), - [anon_sym_annotation] = ACTIONS(4800), - [anon_sym_data] = ACTIONS(4800), - [anon_sym_inner] = ACTIONS(4800), - [anon_sym_value] = ACTIONS(4800), - [anon_sym_override] = ACTIONS(4800), - [anon_sym_lateinit] = ACTIONS(4800), - [anon_sym_public] = ACTIONS(4800), - [anon_sym_private] = ACTIONS(4800), - [anon_sym_internal] = ACTIONS(4800), - [anon_sym_protected] = ACTIONS(4800), - [anon_sym_tailrec] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(4800), - [anon_sym_infix] = ACTIONS(4800), - [anon_sym_inline] = ACTIONS(4800), - [anon_sym_external] = ACTIONS(4800), - [sym_property_modifier] = ACTIONS(4800), - [anon_sym_abstract] = ACTIONS(4800), - [anon_sym_final] = ACTIONS(4800), - [anon_sym_open] = ACTIONS(4800), - [anon_sym_vararg] = ACTIONS(4800), - [anon_sym_noinline] = ACTIONS(4800), - [anon_sym_crossinline] = ACTIONS(4800), - [anon_sym_expect] = ACTIONS(4800), - [anon_sym_actual] = ACTIONS(4800), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4802), - [anon_sym_continue_AT] = ACTIONS(4802), - [anon_sym_break_AT] = ACTIONS(4802), - [anon_sym_this_AT] = ACTIONS(4802), - [anon_sym_super_AT] = ACTIONS(4802), - [sym_real_literal] = ACTIONS(4802), - [sym_integer_literal] = ACTIONS(4800), - [sym_hex_literal] = ACTIONS(4802), - [sym_bin_literal] = ACTIONS(4802), - [anon_sym_true] = ACTIONS(4800), - [anon_sym_false] = ACTIONS(4800), - [anon_sym_SQUOTE] = ACTIONS(4802), - [sym__backtick_identifier] = ACTIONS(4802), - [sym__automatic_semicolon] = ACTIONS(4802), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4802), + [3761] = { + [sym__alpha_identifier] = ACTIONS(4660), + [anon_sym_AT] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_by] = ACTIONS(4660), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_where] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_get] = ACTIONS(4660), + [anon_sym_set] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [sym_label] = ACTIONS(4662), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4662), + [anon_sym_QMARK_COLON] = ACTIONS(4662), + [anon_sym_AMP_AMP] = ACTIONS(4662), + [anon_sym_PIPE_PIPE] = ACTIONS(4662), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_PLUS_EQ] = ACTIONS(4662), + [anon_sym_DASH_EQ] = ACTIONS(4662), + [anon_sym_STAR_EQ] = ACTIONS(4662), + [anon_sym_SLASH_EQ] = ACTIONS(4662), + [anon_sym_PERCENT_EQ] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4662), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4662), + [anon_sym_LT_EQ] = ACTIONS(4662), + [anon_sym_GT_EQ] = ACTIONS(4662), + [anon_sym_BANGin] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_BANGis] = ACTIONS(4662), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_as_QMARK] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_BANG_BANG] = ACTIONS(4662), + [anon_sym_suspend] = ACTIONS(4660), + [anon_sym_sealed] = ACTIONS(4660), + [anon_sym_annotation] = ACTIONS(4660), + [anon_sym_data] = ACTIONS(4660), + [anon_sym_inner] = ACTIONS(4660), + [anon_sym_value] = ACTIONS(4660), + [anon_sym_override] = ACTIONS(4660), + [anon_sym_lateinit] = ACTIONS(4660), + [anon_sym_public] = ACTIONS(4660), + [anon_sym_private] = ACTIONS(4660), + [anon_sym_internal] = ACTIONS(4660), + [anon_sym_protected] = ACTIONS(4660), + [anon_sym_tailrec] = ACTIONS(4660), + [anon_sym_operator] = ACTIONS(4660), + [anon_sym_infix] = ACTIONS(4660), + [anon_sym_inline] = ACTIONS(4660), + [anon_sym_external] = ACTIONS(4660), + [sym_property_modifier] = ACTIONS(4660), + [anon_sym_abstract] = ACTIONS(4660), + [anon_sym_final] = ACTIONS(4660), + [anon_sym_open] = ACTIONS(4660), + [anon_sym_vararg] = ACTIONS(4660), + [anon_sym_noinline] = ACTIONS(4660), + [anon_sym_crossinline] = ACTIONS(4660), + [anon_sym_expect] = ACTIONS(4660), + [anon_sym_actual] = ACTIONS(4660), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4662), + [sym__automatic_semicolon] = ACTIONS(4662), + [sym_safe_nav] = ACTIONS(4662), + [sym_multiline_comment] = ACTIONS(3), }, - [3808] = { - [sym__alpha_identifier] = ACTIONS(4502), - [anon_sym_AT] = ACTIONS(4504), - [anon_sym_COLON] = ACTIONS(4502), - [anon_sym_LBRACK] = ACTIONS(4504), - [anon_sym_as] = ACTIONS(4502), - [anon_sym_EQ] = ACTIONS(4502), - [anon_sym_constructor] = ACTIONS(4502), - [anon_sym_LBRACE] = ACTIONS(4504), - [anon_sym_RBRACE] = ACTIONS(4504), - [anon_sym_LPAREN] = ACTIONS(4504), - [anon_sym_COMMA] = ACTIONS(4504), - [anon_sym_LT] = ACTIONS(4502), - [anon_sym_GT] = ACTIONS(4502), - [anon_sym_where] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4502), - [anon_sym_SEMI] = ACTIONS(4504), - [anon_sym_get] = ACTIONS(4502), - [anon_sym_set] = ACTIONS(4502), - [anon_sym_STAR] = ACTIONS(4502), - [sym_label] = ACTIONS(4504), - [anon_sym_in] = ACTIONS(4502), - [anon_sym_DOT_DOT] = ACTIONS(4504), - [anon_sym_QMARK_COLON] = ACTIONS(4504), - [anon_sym_AMP_AMP] = ACTIONS(4504), - [anon_sym_PIPE_PIPE] = ACTIONS(4504), - [anon_sym_else] = ACTIONS(4502), - [anon_sym_COLON_COLON] = ACTIONS(4504), - [anon_sym_PLUS_EQ] = ACTIONS(4504), - [anon_sym_DASH_EQ] = ACTIONS(4504), - [anon_sym_STAR_EQ] = ACTIONS(4504), - [anon_sym_SLASH_EQ] = ACTIONS(4504), - [anon_sym_PERCENT_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ] = ACTIONS(4502), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ] = ACTIONS(4502), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), - [anon_sym_LT_EQ] = ACTIONS(4504), - [anon_sym_GT_EQ] = ACTIONS(4504), - [anon_sym_BANGin] = ACTIONS(4504), - [anon_sym_is] = ACTIONS(4502), - [anon_sym_BANGis] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4502), - [anon_sym_DASH] = ACTIONS(4502), - [anon_sym_SLASH] = ACTIONS(4502), - [anon_sym_PERCENT] = ACTIONS(4502), - [anon_sym_as_QMARK] = ACTIONS(4504), - [anon_sym_PLUS_PLUS] = ACTIONS(4504), - [anon_sym_DASH_DASH] = ACTIONS(4504), - [anon_sym_BANG_BANG] = ACTIONS(4504), - [anon_sym_suspend] = ACTIONS(4502), - [anon_sym_sealed] = ACTIONS(4502), - [anon_sym_annotation] = ACTIONS(4502), - [anon_sym_data] = ACTIONS(4502), - [anon_sym_inner] = ACTIONS(4502), - [anon_sym_value] = ACTIONS(4502), - [anon_sym_override] = ACTIONS(4502), - [anon_sym_lateinit] = ACTIONS(4502), - [anon_sym_public] = ACTIONS(4502), - [anon_sym_private] = ACTIONS(4502), - [anon_sym_internal] = ACTIONS(4502), - [anon_sym_protected] = ACTIONS(4502), - [anon_sym_tailrec] = ACTIONS(4502), - [anon_sym_operator] = ACTIONS(4502), - [anon_sym_infix] = ACTIONS(4502), - [anon_sym_inline] = ACTIONS(4502), - [anon_sym_external] = ACTIONS(4502), - [sym_property_modifier] = ACTIONS(4502), - [anon_sym_abstract] = ACTIONS(4502), - [anon_sym_final] = ACTIONS(4502), - [anon_sym_open] = ACTIONS(4502), - [anon_sym_vararg] = ACTIONS(4502), - [anon_sym_noinline] = ACTIONS(4502), - [anon_sym_crossinline] = ACTIONS(4502), - [anon_sym_expect] = ACTIONS(4502), - [anon_sym_actual] = ACTIONS(4502), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4504), - [sym__automatic_semicolon] = ACTIONS(4504), - [sym_safe_nav] = ACTIONS(4504), + [3762] = { + [sym_class_body] = STATE(3546), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7113), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_RPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_while] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), [sym_multiline_comment] = ACTIONS(3), }, - [3809] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3892), - [sym__alpha_identifier] = ACTIONS(4740), - [anon_sym_AT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(7159), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_where] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4740), - [anon_sym_set] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4740), - [sym_label] = ACTIONS(4742), - [anon_sym_in] = ACTIONS(4740), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [anon_sym_QMARK_COLON] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_COLON_COLON] = ACTIONS(4742), - [anon_sym_PLUS_EQ] = ACTIONS(4742), - [anon_sym_DASH_EQ] = ACTIONS(4742), - [anon_sym_STAR_EQ] = ACTIONS(4742), - [anon_sym_SLASH_EQ] = ACTIONS(4742), - [anon_sym_PERCENT_EQ] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT_EQ] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_BANGin] = ACTIONS(4742), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_BANGis] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4740), - [anon_sym_as_QMARK] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4742), - [anon_sym_BANG_BANG] = ACTIONS(4742), - [anon_sym_suspend] = ACTIONS(4740), - [anon_sym_sealed] = ACTIONS(4740), - [anon_sym_annotation] = ACTIONS(4740), - [anon_sym_data] = ACTIONS(4740), - [anon_sym_inner] = ACTIONS(4740), - [anon_sym_value] = ACTIONS(4740), - [anon_sym_override] = ACTIONS(4740), - [anon_sym_lateinit] = ACTIONS(4740), - [anon_sym_public] = ACTIONS(4740), - [anon_sym_private] = ACTIONS(4740), - [anon_sym_internal] = ACTIONS(4740), - [anon_sym_protected] = ACTIONS(4740), - [anon_sym_tailrec] = ACTIONS(4740), - [anon_sym_operator] = ACTIONS(4740), - [anon_sym_infix] = ACTIONS(4740), - [anon_sym_inline] = ACTIONS(4740), - [anon_sym_external] = ACTIONS(4740), - [sym_property_modifier] = ACTIONS(4740), - [anon_sym_abstract] = ACTIONS(4740), - [anon_sym_final] = ACTIONS(4740), - [anon_sym_open] = ACTIONS(4740), - [anon_sym_vararg] = ACTIONS(4740), - [anon_sym_noinline] = ACTIONS(4740), - [anon_sym_crossinline] = ACTIONS(4740), - [anon_sym_expect] = ACTIONS(4740), - [anon_sym_actual] = ACTIONS(4740), + [3763] = { + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(4432), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [sym_label] = ACTIONS(4432), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), + }, + [3764] = { + [sym_type_constraints] = STATE(3007), + [sym_enum_class_body] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7115), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [3765] = { + [sym_class_body] = STATE(3061), + [sym_type_constraints] = STATE(3015), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [3766] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3733), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(7109), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4742), - [sym__automatic_semicolon] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), [sym_multiline_comment] = ACTIONS(3), }, - [3810] = { - [sym_type_constraints] = STATE(4036), - [sym_function_body] = STATE(3584), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_RBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_RPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_DASH_GT] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_while] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [3767] = { + [sym_class_body] = STATE(3255), + [sym_type_constraints] = STATE(3006), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [3768] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [3811] = { - [sym__alpha_identifier] = ACTIONS(4718), - [anon_sym_AT] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4720), - [anon_sym_as] = ACTIONS(4718), - [anon_sym_EQ] = ACTIONS(4718), - [anon_sym_LBRACE] = ACTIONS(4720), - [anon_sym_RBRACE] = ACTIONS(4720), - [anon_sym_LPAREN] = ACTIONS(4720), - [anon_sym_COMMA] = ACTIONS(4720), - [anon_sym_by] = ACTIONS(4718), - [anon_sym_LT] = ACTIONS(4718), - [anon_sym_GT] = ACTIONS(4718), - [anon_sym_where] = ACTIONS(4718), - [anon_sym_DOT] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_get] = ACTIONS(4718), - [anon_sym_set] = ACTIONS(4718), - [anon_sym_STAR] = ACTIONS(4718), - [sym_label] = ACTIONS(4720), - [anon_sym_in] = ACTIONS(4718), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_QMARK_COLON] = ACTIONS(4720), - [anon_sym_AMP_AMP] = ACTIONS(4720), - [anon_sym_PIPE_PIPE] = ACTIONS(4720), - [anon_sym_else] = ACTIONS(4718), - [anon_sym_COLON_COLON] = ACTIONS(4720), - [anon_sym_PLUS_EQ] = ACTIONS(4720), - [anon_sym_DASH_EQ] = ACTIONS(4720), - [anon_sym_STAR_EQ] = ACTIONS(4720), - [anon_sym_SLASH_EQ] = ACTIONS(4720), - [anon_sym_PERCENT_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4718), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), - [anon_sym_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4720), - [anon_sym_BANGin] = ACTIONS(4720), - [anon_sym_is] = ACTIONS(4718), - [anon_sym_BANGis] = ACTIONS(4720), - [anon_sym_PLUS] = ACTIONS(4718), - [anon_sym_DASH] = ACTIONS(4718), - [anon_sym_SLASH] = ACTIONS(4718), - [anon_sym_PERCENT] = ACTIONS(4718), - [anon_sym_as_QMARK] = ACTIONS(4720), - [anon_sym_PLUS_PLUS] = ACTIONS(4720), - [anon_sym_DASH_DASH] = ACTIONS(4720), - [anon_sym_BANG_BANG] = ACTIONS(4720), - [anon_sym_suspend] = ACTIONS(4718), - [anon_sym_sealed] = ACTIONS(4718), - [anon_sym_annotation] = ACTIONS(4718), - [anon_sym_data] = ACTIONS(4718), - [anon_sym_inner] = ACTIONS(4718), - [anon_sym_value] = ACTIONS(4718), - [anon_sym_override] = ACTIONS(4718), - [anon_sym_lateinit] = ACTIONS(4718), - [anon_sym_public] = ACTIONS(4718), - [anon_sym_private] = ACTIONS(4718), - [anon_sym_internal] = ACTIONS(4718), - [anon_sym_protected] = ACTIONS(4718), - [anon_sym_tailrec] = ACTIONS(4718), - [anon_sym_operator] = ACTIONS(4718), - [anon_sym_infix] = ACTIONS(4718), - [anon_sym_inline] = ACTIONS(4718), - [anon_sym_external] = ACTIONS(4718), - [sym_property_modifier] = ACTIONS(4718), - [anon_sym_abstract] = ACTIONS(4718), - [anon_sym_final] = ACTIONS(4718), - [anon_sym_open] = ACTIONS(4718), - [anon_sym_vararg] = ACTIONS(4718), - [anon_sym_noinline] = ACTIONS(4718), - [anon_sym_crossinline] = ACTIONS(4718), - [anon_sym_expect] = ACTIONS(4718), - [anon_sym_actual] = ACTIONS(4718), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4720), - [sym__automatic_semicolon] = ACTIONS(4720), - [sym_safe_nav] = ACTIONS(4720), + [3769] = { + [sym__alpha_identifier] = ACTIONS(4563), + [anon_sym_AT] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_as] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4563), + [anon_sym_GT] = ACTIONS(4563), + [anon_sym_where] = ACTIONS(4563), + [anon_sym_DOT] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_get] = ACTIONS(4563), + [anon_sym_set] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [sym_label] = ACTIONS(4565), + [anon_sym_in] = ACTIONS(4563), + [anon_sym_DOT_DOT] = ACTIONS(4565), + [anon_sym_QMARK_COLON] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4565), + [anon_sym_PIPE_PIPE] = ACTIONS(4565), + [anon_sym_else] = ACTIONS(4563), + [anon_sym_COLON_COLON] = ACTIONS(4565), + [anon_sym_PLUS_EQ] = ACTIONS(4565), + [anon_sym_DASH_EQ] = ACTIONS(4565), + [anon_sym_STAR_EQ] = ACTIONS(4565), + [anon_sym_SLASH_EQ] = ACTIONS(4565), + [anon_sym_PERCENT_EQ] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4565), + [anon_sym_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4565), + [anon_sym_LT_EQ] = ACTIONS(4565), + [anon_sym_GT_EQ] = ACTIONS(4565), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_as_QMARK] = ACTIONS(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(4565), + [anon_sym_DASH_DASH] = ACTIONS(4565), + [anon_sym_BANG_BANG] = ACTIONS(4565), + [anon_sym_suspend] = ACTIONS(4563), + [anon_sym_sealed] = ACTIONS(4563), + [anon_sym_annotation] = ACTIONS(4563), + [anon_sym_data] = ACTIONS(4563), + [anon_sym_inner] = ACTIONS(4563), + [anon_sym_value] = ACTIONS(4563), + [anon_sym_override] = ACTIONS(4563), + [anon_sym_lateinit] = ACTIONS(4563), + [anon_sym_public] = ACTIONS(4563), + [anon_sym_private] = ACTIONS(4563), + [anon_sym_internal] = ACTIONS(4563), + [anon_sym_protected] = ACTIONS(4563), + [anon_sym_tailrec] = ACTIONS(4563), + [anon_sym_operator] = ACTIONS(4563), + [anon_sym_infix] = ACTIONS(4563), + [anon_sym_inline] = ACTIONS(4563), + [anon_sym_external] = ACTIONS(4563), + [sym_property_modifier] = ACTIONS(4563), + [anon_sym_abstract] = ACTIONS(4563), + [anon_sym_final] = ACTIONS(4563), + [anon_sym_open] = ACTIONS(4563), + [anon_sym_vararg] = ACTIONS(4563), + [anon_sym_noinline] = ACTIONS(4563), + [anon_sym_crossinline] = ACTIONS(4563), + [anon_sym_expect] = ACTIONS(4563), + [anon_sym_actual] = ACTIONS(4563), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(4565), [sym_multiline_comment] = ACTIONS(3), }, - [3812] = { + [3770] = { + [sym_function_body] = STATE(3499), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(7119), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_RBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [anon_sym_DASH_GT] = ACTIONS(4231), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_while] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + }, + [3771] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), + }, + [3772] = { + [sym_enum_class_body] = STATE(3831), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4483), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), + [sym_multiline_comment] = ACTIONS(3), + }, + [3773] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), + }, + [3774] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), + }, + [3775] = { + [sym_class_body] = STATE(4031), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4654), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + }, + [3776] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), + }, + [3777] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), + }, + [3778] = { [sym__alpha_identifier] = ACTIONS(4335), [anon_sym_AT] = ACTIONS(4337), [anon_sym_LBRACK] = ACTIONS(4337), [anon_sym_typealias] = ACTIONS(4335), [anon_sym_class] = ACTIONS(4335), - [anon_sym_fun] = ACTIONS(4335), [anon_sym_interface] = ACTIONS(4335), [anon_sym_enum] = ACTIONS(4335), [anon_sym_LBRACE] = ACTIONS(4337), @@ -432132,6 +426931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_val] = ACTIONS(4335), [anon_sym_var] = ACTIONS(4335), [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), [anon_sym_DOT] = ACTIONS(4335), [anon_sym_get] = ACTIONS(4335), [anon_sym_set] = ACTIONS(4335), @@ -432199,1399 +426999,1480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4337), }, - [3813] = { - [sym__alpha_identifier] = ACTIONS(4232), - [anon_sym_AT] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4234), - [anon_sym_typealias] = ACTIONS(4232), - [anon_sym_class] = ACTIONS(4232), - [anon_sym_fun] = ACTIONS(4232), - [anon_sym_interface] = ACTIONS(4232), - [anon_sym_enum] = ACTIONS(4232), - [anon_sym_LBRACE] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_val] = ACTIONS(4232), - [anon_sym_var] = ACTIONS(4232), - [anon_sym_object] = ACTIONS(4232), - [anon_sym_DOT] = ACTIONS(4232), - [anon_sym_get] = ACTIONS(4232), - [anon_sym_set] = ACTIONS(4232), - [anon_sym_this] = ACTIONS(4232), - [anon_sym_super] = ACTIONS(4232), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4232), - [anon_sym_for] = ACTIONS(4232), - [anon_sym_while] = ACTIONS(4232), - [anon_sym_do] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4232), - [anon_sym_if] = ACTIONS(4232), - [anon_sym_when] = ACTIONS(4232), - [anon_sym_try] = ACTIONS(4232), - [anon_sym_throw] = ACTIONS(4232), - [anon_sym_return] = ACTIONS(4232), - [anon_sym_continue] = ACTIONS(4232), - [anon_sym_break] = ACTIONS(4232), - [anon_sym_COLON_COLON] = ACTIONS(4234), - [anon_sym_PLUS] = ACTIONS(4232), - [anon_sym_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4234), - [anon_sym_DASH_DASH] = ACTIONS(4234), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_suspend] = ACTIONS(4232), - [anon_sym_sealed] = ACTIONS(4232), - [anon_sym_annotation] = ACTIONS(4232), - [anon_sym_data] = ACTIONS(4232), - [anon_sym_inner] = ACTIONS(4232), - [anon_sym_value] = ACTIONS(4232), - [anon_sym_override] = ACTIONS(4232), - [anon_sym_lateinit] = ACTIONS(4232), - [anon_sym_public] = ACTIONS(4232), - [anon_sym_private] = ACTIONS(4232), - [anon_sym_internal] = ACTIONS(4232), - [anon_sym_protected] = ACTIONS(4232), - [anon_sym_tailrec] = ACTIONS(4232), - [anon_sym_operator] = ACTIONS(4232), - [anon_sym_infix] = ACTIONS(4232), - [anon_sym_inline] = ACTIONS(4232), - [anon_sym_external] = ACTIONS(4232), - [sym_property_modifier] = ACTIONS(4232), - [anon_sym_abstract] = ACTIONS(4232), - [anon_sym_final] = ACTIONS(4232), - [anon_sym_open] = ACTIONS(4232), - [anon_sym_vararg] = ACTIONS(4232), - [anon_sym_noinline] = ACTIONS(4232), - [anon_sym_crossinline] = ACTIONS(4232), - [anon_sym_expect] = ACTIONS(4232), - [anon_sym_actual] = ACTIONS(4232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4234), - [anon_sym_continue_AT] = ACTIONS(4234), - [anon_sym_break_AT] = ACTIONS(4234), - [anon_sym_this_AT] = ACTIONS(4234), - [anon_sym_super_AT] = ACTIONS(4234), - [sym_real_literal] = ACTIONS(4234), - [sym_integer_literal] = ACTIONS(4232), - [sym_hex_literal] = ACTIONS(4234), - [sym_bin_literal] = ACTIONS(4234), - [anon_sym_true] = ACTIONS(4232), - [anon_sym_false] = ACTIONS(4232), - [anon_sym_SQUOTE] = ACTIONS(4234), - [sym__backtick_identifier] = ACTIONS(4234), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4234), - }, - [3814] = { - [sym_type_constraints] = STATE(4032), - [sym_function_body] = STATE(3536), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_RBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [anon_sym_DASH_GT] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_while] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [3779] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [3815] = { - [sym_type_constraints] = STATE(4033), - [sym_function_body] = STATE(3554), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_RBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_RPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [anon_sym_DASH_GT] = ACTIONS(4293), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), + [3780] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [3816] = { - [sym_type_constraints] = STATE(4034), - [sym_function_body] = STATE(3667), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_RBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), - [anon_sym_RPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [anon_sym_DASH_GT] = ACTIONS(4185), - [sym_label] = ACTIONS(4185), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_while] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [3781] = { + [sym__alpha_identifier] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4748), + [anon_sym_COLON] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4748), + [anon_sym_as] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4748), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4748), + [anon_sym_COMMA] = ACTIONS(4748), + [anon_sym_LT] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4746), + [anon_sym_where] = ACTIONS(4746), + [anon_sym_DOT] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4748), + [anon_sym_get] = ACTIONS(4746), + [anon_sym_set] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(4748), + [anon_sym_in] = ACTIONS(4746), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_QMARK_COLON] = ACTIONS(4748), + [anon_sym_AMP_AMP] = ACTIONS(4748), + [anon_sym_PIPE_PIPE] = ACTIONS(4748), + [anon_sym_else] = ACTIONS(4746), + [anon_sym_COLON_COLON] = ACTIONS(4748), + [anon_sym_PLUS_EQ] = ACTIONS(4748), + [anon_sym_DASH_EQ] = ACTIONS(4748), + [anon_sym_STAR_EQ] = ACTIONS(4748), + [anon_sym_SLASH_EQ] = ACTIONS(4748), + [anon_sym_PERCENT_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4748), + [anon_sym_BANGin] = ACTIONS(4748), + [anon_sym_is] = ACTIONS(4746), + [anon_sym_BANGis] = ACTIONS(4748), + [anon_sym_PLUS] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_SLASH] = ACTIONS(4746), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(4748), + [anon_sym_PLUS_PLUS] = ACTIONS(4748), + [anon_sym_DASH_DASH] = ACTIONS(4748), + [anon_sym_BANG_BANG] = ACTIONS(4748), + [anon_sym_suspend] = ACTIONS(4746), + [anon_sym_sealed] = ACTIONS(4746), + [anon_sym_annotation] = ACTIONS(4746), + [anon_sym_data] = ACTIONS(4746), + [anon_sym_inner] = ACTIONS(4746), + [anon_sym_value] = ACTIONS(4746), + [anon_sym_override] = ACTIONS(4746), + [anon_sym_lateinit] = ACTIONS(4746), + [anon_sym_public] = ACTIONS(4746), + [anon_sym_private] = ACTIONS(4746), + [anon_sym_internal] = ACTIONS(4746), + [anon_sym_protected] = ACTIONS(4746), + [anon_sym_tailrec] = ACTIONS(4746), + [anon_sym_operator] = ACTIONS(4746), + [anon_sym_infix] = ACTIONS(4746), + [anon_sym_inline] = ACTIONS(4746), + [anon_sym_external] = ACTIONS(4746), + [sym_property_modifier] = ACTIONS(4746), + [anon_sym_abstract] = ACTIONS(4746), + [anon_sym_final] = ACTIONS(4746), + [anon_sym_open] = ACTIONS(4746), + [anon_sym_vararg] = ACTIONS(4746), + [anon_sym_noinline] = ACTIONS(4746), + [anon_sym_crossinline] = ACTIONS(4746), + [anon_sym_expect] = ACTIONS(4746), + [anon_sym_actual] = ACTIONS(4746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4748), + [sym__automatic_semicolon] = ACTIONS(4748), + [sym_safe_nav] = ACTIONS(4748), [sym_multiline_comment] = ACTIONS(3), }, - [3817] = { - [sym_type_constraints] = STATE(4035), - [sym_function_body] = STATE(3608), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_RBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_DASH_GT] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), + [3782] = { + [sym_enum_class_body] = STATE(4031), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4654), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), [sym_multiline_comment] = ACTIONS(3), }, - [3818] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [3783] = { + [sym_class_body] = STATE(3173), + [sym_type_constraints] = STATE(3039), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [3784] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3142), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7167), - [anon_sym_where] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7175), - [anon_sym_DOT_DOT] = ACTIONS(7177), - [anon_sym_QMARK_COLON] = ACTIONS(7179), - [anon_sym_AMP_AMP] = ACTIONS(7181), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3170), - [anon_sym_DASH_EQ] = ACTIONS(3170), - [anon_sym_STAR_EQ] = ACTIONS(3170), - [anon_sym_SLASH_EQ] = ACTIONS(3170), - [anon_sym_PERCENT_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(7187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7189), - [anon_sym_EQ_EQ] = ACTIONS(7187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7189), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7191), - [anon_sym_BANGin] = ACTIONS(7193), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), - [sym_safe_nav] = ACTIONS(7185), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [3819] = { - [sym__alpha_identifier] = ACTIONS(4736), - [anon_sym_AT] = ACTIONS(4738), - [anon_sym_LBRACK] = ACTIONS(4738), - [anon_sym_as] = ACTIONS(4736), - [anon_sym_EQ] = ACTIONS(4736), - [anon_sym_LBRACE] = ACTIONS(4738), - [anon_sym_RBRACE] = ACTIONS(4738), - [anon_sym_LPAREN] = ACTIONS(4738), - [anon_sym_COMMA] = ACTIONS(4738), - [anon_sym_by] = ACTIONS(4736), - [anon_sym_LT] = ACTIONS(4736), - [anon_sym_GT] = ACTIONS(4736), - [anon_sym_where] = ACTIONS(4736), - [anon_sym_DOT] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4738), - [anon_sym_get] = ACTIONS(4736), - [anon_sym_set] = ACTIONS(4736), - [anon_sym_STAR] = ACTIONS(4736), - [sym_label] = ACTIONS(4738), - [anon_sym_in] = ACTIONS(4736), - [anon_sym_DOT_DOT] = ACTIONS(4738), - [anon_sym_QMARK_COLON] = ACTIONS(4738), - [anon_sym_AMP_AMP] = ACTIONS(4738), - [anon_sym_PIPE_PIPE] = ACTIONS(4738), - [anon_sym_else] = ACTIONS(4736), - [anon_sym_COLON_COLON] = ACTIONS(4738), - [anon_sym_PLUS_EQ] = ACTIONS(4738), - [anon_sym_DASH_EQ] = ACTIONS(4738), - [anon_sym_STAR_EQ] = ACTIONS(4738), - [anon_sym_SLASH_EQ] = ACTIONS(4738), - [anon_sym_PERCENT_EQ] = ACTIONS(4738), - [anon_sym_BANG_EQ] = ACTIONS(4736), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), - [anon_sym_EQ_EQ] = ACTIONS(4736), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), - [anon_sym_LT_EQ] = ACTIONS(4738), - [anon_sym_GT_EQ] = ACTIONS(4738), - [anon_sym_BANGin] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_BANGis] = ACTIONS(4738), - [anon_sym_PLUS] = ACTIONS(4736), - [anon_sym_DASH] = ACTIONS(4736), - [anon_sym_SLASH] = ACTIONS(4736), - [anon_sym_PERCENT] = ACTIONS(4736), - [anon_sym_as_QMARK] = ACTIONS(4738), - [anon_sym_PLUS_PLUS] = ACTIONS(4738), - [anon_sym_DASH_DASH] = ACTIONS(4738), - [anon_sym_BANG_BANG] = ACTIONS(4738), - [anon_sym_suspend] = ACTIONS(4736), - [anon_sym_sealed] = ACTIONS(4736), - [anon_sym_annotation] = ACTIONS(4736), - [anon_sym_data] = ACTIONS(4736), - [anon_sym_inner] = ACTIONS(4736), - [anon_sym_value] = ACTIONS(4736), - [anon_sym_override] = ACTIONS(4736), - [anon_sym_lateinit] = ACTIONS(4736), - [anon_sym_public] = ACTIONS(4736), - [anon_sym_private] = ACTIONS(4736), - [anon_sym_internal] = ACTIONS(4736), - [anon_sym_protected] = ACTIONS(4736), - [anon_sym_tailrec] = ACTIONS(4736), - [anon_sym_operator] = ACTIONS(4736), - [anon_sym_infix] = ACTIONS(4736), - [anon_sym_inline] = ACTIONS(4736), - [anon_sym_external] = ACTIONS(4736), - [sym_property_modifier] = ACTIONS(4736), - [anon_sym_abstract] = ACTIONS(4736), - [anon_sym_final] = ACTIONS(4736), - [anon_sym_open] = ACTIONS(4736), - [anon_sym_vararg] = ACTIONS(4736), - [anon_sym_noinline] = ACTIONS(4736), - [anon_sym_crossinline] = ACTIONS(4736), - [anon_sym_expect] = ACTIONS(4736), - [anon_sym_actual] = ACTIONS(4736), + [3785] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4738), - [sym__automatic_semicolon] = ACTIONS(4738), - [sym_safe_nav] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [3820] = { - [sym_function_body] = STATE(3979), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(7205), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4269), - [sym_label] = ACTIONS(4271), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_PLUS_EQ] = ACTIONS(4271), - [anon_sym_DASH_EQ] = ACTIONS(4271), - [anon_sym_STAR_EQ] = ACTIONS(4271), - [anon_sym_SLASH_EQ] = ACTIONS(4271), - [anon_sym_PERCENT_EQ] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4269), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_suspend] = ACTIONS(4269), - [anon_sym_sealed] = ACTIONS(4269), - [anon_sym_annotation] = ACTIONS(4269), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_override] = ACTIONS(4269), - [anon_sym_lateinit] = ACTIONS(4269), - [anon_sym_public] = ACTIONS(4269), - [anon_sym_private] = ACTIONS(4269), - [anon_sym_internal] = ACTIONS(4269), - [anon_sym_protected] = ACTIONS(4269), - [anon_sym_tailrec] = ACTIONS(4269), - [anon_sym_operator] = ACTIONS(4269), - [anon_sym_infix] = ACTIONS(4269), - [anon_sym_inline] = ACTIONS(4269), - [anon_sym_external] = ACTIONS(4269), - [sym_property_modifier] = ACTIONS(4269), - [anon_sym_abstract] = ACTIONS(4269), - [anon_sym_final] = ACTIONS(4269), - [anon_sym_open] = ACTIONS(4269), - [anon_sym_vararg] = ACTIONS(4269), - [anon_sym_noinline] = ACTIONS(4269), - [anon_sym_crossinline] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4271), - [sym__automatic_semicolon] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), + [3786] = { + [sym_class_body] = STATE(3861), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, - [3821] = { - [sym_function_body] = STATE(3686), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(7207), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_RBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_where] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4271), - [anon_sym_DASH_GT] = ACTIONS(4271), - [sym_label] = ACTIONS(4271), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_while] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_suspend] = ACTIONS(4269), - [anon_sym_sealed] = ACTIONS(4269), - [anon_sym_annotation] = ACTIONS(4269), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_override] = ACTIONS(4269), - [anon_sym_lateinit] = ACTIONS(4269), - [anon_sym_public] = ACTIONS(4269), - [anon_sym_private] = ACTIONS(4269), - [anon_sym_internal] = ACTIONS(4269), - [anon_sym_protected] = ACTIONS(4269), - [anon_sym_tailrec] = ACTIONS(4269), - [anon_sym_operator] = ACTIONS(4269), - [anon_sym_infix] = ACTIONS(4269), - [anon_sym_inline] = ACTIONS(4269), - [anon_sym_external] = ACTIONS(4269), - [sym_property_modifier] = ACTIONS(4269), - [anon_sym_abstract] = ACTIONS(4269), - [anon_sym_final] = ACTIONS(4269), - [anon_sym_open] = ACTIONS(4269), - [anon_sym_vararg] = ACTIONS(4269), - [anon_sym_noinline] = ACTIONS(4269), - [anon_sym_crossinline] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), + [3787] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [3822] = { - [sym_function_body] = STATE(3185), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(7209), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_object] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_this] = ACTIONS(4269), - [anon_sym_super] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4271), - [sym_label] = ACTIONS(4269), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_null] = ACTIONS(4269), - [anon_sym_if] = ACTIONS(4269), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_when] = ACTIONS(4269), - [anon_sym_try] = ACTIONS(4269), - [anon_sym_throw] = ACTIONS(4269), - [anon_sym_return] = ACTIONS(4269), - [anon_sym_continue] = ACTIONS(4269), - [anon_sym_break] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4269), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4271), - [anon_sym_continue_AT] = ACTIONS(4271), - [anon_sym_break_AT] = ACTIONS(4271), - [anon_sym_this_AT] = ACTIONS(4271), - [anon_sym_super_AT] = ACTIONS(4271), - [sym_real_literal] = ACTIONS(4271), - [sym_integer_literal] = ACTIONS(4269), - [sym_hex_literal] = ACTIONS(4271), - [sym_bin_literal] = ACTIONS(4271), - [anon_sym_true] = ACTIONS(4269), - [anon_sym_false] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4271), - [sym__backtick_identifier] = ACTIONS(4271), - [sym__automatic_semicolon] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4271), + [3788] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), }, - [3823] = { - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(7095), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4435), - [sym_label] = ACTIONS(4437), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_PLUS_EQ] = ACTIONS(4437), - [anon_sym_DASH_EQ] = ACTIONS(4437), - [anon_sym_STAR_EQ] = ACTIONS(4437), - [anon_sym_SLASH_EQ] = ACTIONS(4437), - [anon_sym_PERCENT_EQ] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4435), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_suspend] = ACTIONS(4435), - [anon_sym_sealed] = ACTIONS(4435), - [anon_sym_annotation] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_override] = ACTIONS(4435), - [anon_sym_lateinit] = ACTIONS(4435), - [anon_sym_public] = ACTIONS(4435), - [anon_sym_private] = ACTIONS(4435), - [anon_sym_internal] = ACTIONS(4435), - [anon_sym_protected] = ACTIONS(4435), - [anon_sym_tailrec] = ACTIONS(4435), - [anon_sym_operator] = ACTIONS(4435), - [anon_sym_infix] = ACTIONS(4435), - [anon_sym_inline] = ACTIONS(4435), - [anon_sym_external] = ACTIONS(4435), - [sym_property_modifier] = ACTIONS(4435), - [anon_sym_abstract] = ACTIONS(4435), - [anon_sym_final] = ACTIONS(4435), - [anon_sym_open] = ACTIONS(4435), - [anon_sym_vararg] = ACTIONS(4435), - [anon_sym_noinline] = ACTIONS(4435), - [anon_sym_crossinline] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4437), - [sym__automatic_semicolon] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), + [3789] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [3824] = { - [sym_value_arguments] = STATE(3337), - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_fun] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(7211), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_object] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_this] = ACTIONS(4435), - [anon_sym_super] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4437), - [sym_label] = ACTIONS(4435), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_null] = ACTIONS(4435), - [anon_sym_if] = ACTIONS(4435), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_when] = ACTIONS(4435), - [anon_sym_try] = ACTIONS(4435), - [anon_sym_throw] = ACTIONS(4435), - [anon_sym_return] = ACTIONS(4435), - [anon_sym_continue] = ACTIONS(4435), - [anon_sym_break] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4437), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4435), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4437), - [anon_sym_continue_AT] = ACTIONS(4437), - [anon_sym_break_AT] = ACTIONS(4437), - [anon_sym_this_AT] = ACTIONS(4437), - [anon_sym_super_AT] = ACTIONS(4437), - [sym_real_literal] = ACTIONS(4437), - [sym_integer_literal] = ACTIONS(4435), - [sym_hex_literal] = ACTIONS(4437), - [sym_bin_literal] = ACTIONS(4437), - [anon_sym_true] = ACTIONS(4435), - [anon_sym_false] = ACTIONS(4435), - [anon_sym_SQUOTE] = ACTIONS(4437), - [sym__backtick_identifier] = ACTIONS(4437), - [sym__automatic_semicolon] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4437), + [3790] = { + [ts_builtin_sym_end] = ACTIONS(1415), + [sym__alpha_identifier] = ACTIONS(7121), + [anon_sym_AT] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_typealias] = ACTIONS(7121), + [anon_sym_class] = ACTIONS(7121), + [anon_sym_interface] = ACTIONS(7121), + [anon_sym_enum] = ACTIONS(7121), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_val] = ACTIONS(7121), + [anon_sym_var] = ACTIONS(7121), + [anon_sym_object] = ACTIONS(7121), + [anon_sym_fun] = ACTIONS(7121), + [anon_sym_get] = ACTIONS(7121), + [anon_sym_set] = ACTIONS(7121), + [anon_sym_this] = ACTIONS(7121), + [anon_sym_super] = ACTIONS(7121), + [anon_sym_STAR] = ACTIONS(1415), + [sym_label] = ACTIONS(7121), + [anon_sym_for] = ACTIONS(7121), + [anon_sym_while] = ACTIONS(7121), + [anon_sym_do] = ACTIONS(7121), + [anon_sym_null] = ACTIONS(7121), + [anon_sym_if] = ACTIONS(7121), + [anon_sym_when] = ACTIONS(7121), + [anon_sym_try] = ACTIONS(7121), + [anon_sym_throw] = ACTIONS(7121), + [anon_sym_return] = ACTIONS(7121), + [anon_sym_continue] = ACTIONS(7121), + [anon_sym_break] = ACTIONS(7121), + [anon_sym_COLON_COLON] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(7121), + [anon_sym_DASH] = ACTIONS(7121), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_suspend] = ACTIONS(7121), + [anon_sym_sealed] = ACTIONS(7121), + [anon_sym_annotation] = ACTIONS(7121), + [anon_sym_data] = ACTIONS(7121), + [anon_sym_inner] = ACTIONS(7121), + [anon_sym_value] = ACTIONS(7121), + [anon_sym_override] = ACTIONS(7121), + [anon_sym_lateinit] = ACTIONS(7121), + [anon_sym_public] = ACTIONS(7121), + [anon_sym_private] = ACTIONS(7121), + [anon_sym_internal] = ACTIONS(7121), + [anon_sym_protected] = ACTIONS(7121), + [anon_sym_tailrec] = ACTIONS(7121), + [anon_sym_operator] = ACTIONS(7121), + [anon_sym_infix] = ACTIONS(7121), + [anon_sym_inline] = ACTIONS(7121), + [anon_sym_external] = ACTIONS(7121), + [sym_property_modifier] = ACTIONS(7121), + [anon_sym_abstract] = ACTIONS(7121), + [anon_sym_final] = ACTIONS(7121), + [anon_sym_open] = ACTIONS(7121), + [anon_sym_vararg] = ACTIONS(7121), + [anon_sym_noinline] = ACTIONS(7121), + [anon_sym_crossinline] = ACTIONS(7121), + [anon_sym_expect] = ACTIONS(7121), + [anon_sym_actual] = ACTIONS(7121), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1415), + [anon_sym_continue_AT] = ACTIONS(1415), + [anon_sym_break_AT] = ACTIONS(1415), + [anon_sym_this_AT] = ACTIONS(1415), + [anon_sym_super_AT] = ACTIONS(1415), + [sym_real_literal] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(7121), + [sym_hex_literal] = ACTIONS(1415), + [sym_bin_literal] = ACTIONS(1415), + [anon_sym_true] = ACTIONS(7121), + [anon_sym_false] = ACTIONS(7121), + [anon_sym_SQUOTE] = ACTIONS(1415), + [sym__backtick_identifier] = ACTIONS(1415), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1415), }, - [3825] = { - [sym_class_body] = STATE(3251), - [sym__alpha_identifier] = ACTIONS(4443), - [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(7213), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_as] = ACTIONS(4443), - [anon_sym_fun] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4443), - [anon_sym_GT] = ACTIONS(4443), - [anon_sym_where] = ACTIONS(4443), - [anon_sym_object] = ACTIONS(4443), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4445), - [anon_sym_get] = ACTIONS(4443), - [anon_sym_set] = ACTIONS(4443), - [anon_sym_this] = ACTIONS(4443), - [anon_sym_super] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4445), - [sym_label] = ACTIONS(4443), - [anon_sym_in] = ACTIONS(4443), - [anon_sym_DOT_DOT] = ACTIONS(4445), - [anon_sym_QMARK_COLON] = ACTIONS(4445), - [anon_sym_AMP_AMP] = ACTIONS(4445), - [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), - [anon_sym_if] = ACTIONS(4443), - [anon_sym_else] = ACTIONS(4443), - [anon_sym_when] = ACTIONS(4443), - [anon_sym_try] = ACTIONS(4443), - [anon_sym_throw] = ACTIONS(4443), - [anon_sym_return] = ACTIONS(4443), - [anon_sym_continue] = ACTIONS(4443), - [anon_sym_break] = ACTIONS(4443), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_BANG_EQ] = ACTIONS(4443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), - [anon_sym_EQ_EQ] = ACTIONS(4443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), - [anon_sym_LT_EQ] = ACTIONS(4445), - [anon_sym_GT_EQ] = ACTIONS(4445), - [anon_sym_BANGin] = ACTIONS(4445), - [anon_sym_is] = ACTIONS(4443), - [anon_sym_BANGis] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_SLASH] = ACTIONS(4443), - [anon_sym_PERCENT] = ACTIONS(4445), - [anon_sym_as_QMARK] = ACTIONS(4445), - [anon_sym_PLUS_PLUS] = ACTIONS(4445), - [anon_sym_DASH_DASH] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4443), - [anon_sym_BANG_BANG] = ACTIONS(4445), - [anon_sym_data] = ACTIONS(4443), - [anon_sym_inner] = ACTIONS(4443), - [anon_sym_value] = ACTIONS(4443), - [anon_sym_expect] = ACTIONS(4443), - [anon_sym_actual] = ACTIONS(4443), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4445), - [anon_sym_continue_AT] = ACTIONS(4445), - [anon_sym_break_AT] = ACTIONS(4445), - [anon_sym_this_AT] = ACTIONS(4445), - [anon_sym_super_AT] = ACTIONS(4445), - [sym_real_literal] = ACTIONS(4445), - [sym_integer_literal] = ACTIONS(4443), - [sym_hex_literal] = ACTIONS(4445), - [sym_bin_literal] = ACTIONS(4445), - [anon_sym_true] = ACTIONS(4443), - [anon_sym_false] = ACTIONS(4443), - [anon_sym_SQUOTE] = ACTIONS(4445), - [sym__backtick_identifier] = ACTIONS(4445), - [sym__automatic_semicolon] = ACTIONS(4445), - [sym_safe_nav] = ACTIONS(4445), + [3791] = { + [sym_enum_class_body] = STATE(4002), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4469), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4445), }, - [3826] = { - [sym__alpha_identifier] = ACTIONS(4495), - [anon_sym_AT] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_as] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4495), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_COMMA] = ACTIONS(4497), - [anon_sym_by] = ACTIONS(4495), - [anon_sym_LT] = ACTIONS(4495), - [anon_sym_GT] = ACTIONS(4495), - [anon_sym_where] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4495), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_get] = ACTIONS(4495), - [anon_sym_set] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [sym_label] = ACTIONS(4497), - [anon_sym_in] = ACTIONS(4495), - [anon_sym_DOT_DOT] = ACTIONS(4497), - [anon_sym_QMARK_COLON] = ACTIONS(4497), - [anon_sym_AMP_AMP] = ACTIONS(4497), - [anon_sym_PIPE_PIPE] = ACTIONS(4497), - [anon_sym_else] = ACTIONS(4495), - [anon_sym_COLON_COLON] = ACTIONS(4497), - [anon_sym_PLUS_EQ] = ACTIONS(4497), - [anon_sym_DASH_EQ] = ACTIONS(4497), - [anon_sym_STAR_EQ] = ACTIONS(4497), - [anon_sym_SLASH_EQ] = ACTIONS(4497), - [anon_sym_PERCENT_EQ] = ACTIONS(4497), - [anon_sym_BANG_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4497), - [anon_sym_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4497), - [anon_sym_LT_EQ] = ACTIONS(4497), - [anon_sym_GT_EQ] = ACTIONS(4497), - [anon_sym_BANGin] = ACTIONS(4497), - [anon_sym_is] = ACTIONS(4495), - [anon_sym_BANGis] = ACTIONS(4497), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_SLASH] = ACTIONS(4495), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4497), - [anon_sym_PLUS_PLUS] = ACTIONS(4497), - [anon_sym_DASH_DASH] = ACTIONS(4497), - [anon_sym_BANG_BANG] = ACTIONS(4497), - [anon_sym_suspend] = ACTIONS(4495), - [anon_sym_sealed] = ACTIONS(4495), - [anon_sym_annotation] = ACTIONS(4495), - [anon_sym_data] = ACTIONS(4495), - [anon_sym_inner] = ACTIONS(4495), - [anon_sym_value] = ACTIONS(4495), - [anon_sym_override] = ACTIONS(4495), - [anon_sym_lateinit] = ACTIONS(4495), - [anon_sym_public] = ACTIONS(4495), - [anon_sym_private] = ACTIONS(4495), - [anon_sym_internal] = ACTIONS(4495), - [anon_sym_protected] = ACTIONS(4495), - [anon_sym_tailrec] = ACTIONS(4495), - [anon_sym_operator] = ACTIONS(4495), - [anon_sym_infix] = ACTIONS(4495), - [anon_sym_inline] = ACTIONS(4495), - [anon_sym_external] = ACTIONS(4495), - [sym_property_modifier] = ACTIONS(4495), - [anon_sym_abstract] = ACTIONS(4495), - [anon_sym_final] = ACTIONS(4495), - [anon_sym_open] = ACTIONS(4495), - [anon_sym_vararg] = ACTIONS(4495), - [anon_sym_noinline] = ACTIONS(4495), - [anon_sym_crossinline] = ACTIONS(4495), - [anon_sym_expect] = ACTIONS(4495), - [anon_sym_actual] = ACTIONS(4495), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4497), - [sym__automatic_semicolon] = ACTIONS(4497), - [sym_safe_nav] = ACTIONS(4497), + [3792] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [3827] = { - [sym_class_body] = STATE(3294), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(7215), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), + [3793] = { + [sym__alpha_identifier] = ACTIONS(4571), + [anon_sym_AT] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [anon_sym_as] = ACTIONS(4571), + [anon_sym_EQ] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_COMMA] = ACTIONS(4573), + [anon_sym_by] = ACTIONS(4571), + [anon_sym_LT] = ACTIONS(4571), + [anon_sym_GT] = ACTIONS(4571), + [anon_sym_where] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_get] = ACTIONS(4571), + [anon_sym_set] = ACTIONS(4571), + [anon_sym_STAR] = ACTIONS(4571), + [sym_label] = ACTIONS(4573), + [anon_sym_in] = ACTIONS(4571), + [anon_sym_DOT_DOT] = ACTIONS(4573), + [anon_sym_QMARK_COLON] = ACTIONS(4573), + [anon_sym_AMP_AMP] = ACTIONS(4573), + [anon_sym_PIPE_PIPE] = ACTIONS(4573), + [anon_sym_else] = ACTIONS(4571), + [anon_sym_COLON_COLON] = ACTIONS(4573), + [anon_sym_PLUS_EQ] = ACTIONS(4573), + [anon_sym_DASH_EQ] = ACTIONS(4573), + [anon_sym_STAR_EQ] = ACTIONS(4573), + [anon_sym_SLASH_EQ] = ACTIONS(4573), + [anon_sym_PERCENT_EQ] = ACTIONS(4573), + [anon_sym_BANG_EQ] = ACTIONS(4571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4573), + [anon_sym_EQ_EQ] = ACTIONS(4571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4573), + [anon_sym_LT_EQ] = ACTIONS(4573), + [anon_sym_GT_EQ] = ACTIONS(4573), + [anon_sym_BANGin] = ACTIONS(4573), + [anon_sym_is] = ACTIONS(4571), + [anon_sym_BANGis] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4571), + [anon_sym_PERCENT] = ACTIONS(4571), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4573), + [anon_sym_DASH_DASH] = ACTIONS(4573), + [anon_sym_BANG_BANG] = ACTIONS(4573), + [anon_sym_suspend] = ACTIONS(4571), + [anon_sym_sealed] = ACTIONS(4571), + [anon_sym_annotation] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(4571), + [anon_sym_inner] = ACTIONS(4571), + [anon_sym_value] = ACTIONS(4571), + [anon_sym_override] = ACTIONS(4571), + [anon_sym_lateinit] = ACTIONS(4571), + [anon_sym_public] = ACTIONS(4571), + [anon_sym_private] = ACTIONS(4571), + [anon_sym_internal] = ACTIONS(4571), + [anon_sym_protected] = ACTIONS(4571), + [anon_sym_tailrec] = ACTIONS(4571), + [anon_sym_operator] = ACTIONS(4571), + [anon_sym_infix] = ACTIONS(4571), + [anon_sym_inline] = ACTIONS(4571), + [anon_sym_external] = ACTIONS(4571), + [sym_property_modifier] = ACTIONS(4571), + [anon_sym_abstract] = ACTIONS(4571), + [anon_sym_final] = ACTIONS(4571), + [anon_sym_open] = ACTIONS(4571), + [anon_sym_vararg] = ACTIONS(4571), + [anon_sym_noinline] = ACTIONS(4571), + [anon_sym_crossinline] = ACTIONS(4571), + [anon_sym_expect] = ACTIONS(4571), + [anon_sym_actual] = ACTIONS(4571), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4573), + [sym__automatic_semicolon] = ACTIONS(4573), + [sym_safe_nav] = ACTIONS(4573), + [sym_multiline_comment] = ACTIONS(3), }, - [3828] = { - [sym_function_body] = STATE(3238), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(7217), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_object] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_this] = ACTIONS(4339), - [anon_sym_super] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [sym_label] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [anon_sym_try] = ACTIONS(4339), - [anon_sym_throw] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4341), - [anon_sym_continue_AT] = ACTIONS(4341), - [anon_sym_break_AT] = ACTIONS(4341), - [anon_sym_this_AT] = ACTIONS(4341), - [anon_sym_super_AT] = ACTIONS(4341), - [sym_real_literal] = ACTIONS(4341), - [sym_integer_literal] = ACTIONS(4339), - [sym_hex_literal] = ACTIONS(4341), - [sym_bin_literal] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4339), - [anon_sym_false] = ACTIONS(4339), - [anon_sym_SQUOTE] = ACTIONS(4341), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), + [3794] = { + [sym_class_body] = STATE(3967), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4341), }, - [3829] = { - [sym__alpha_identifier] = ACTIONS(4677), - [anon_sym_AT] = ACTIONS(4679), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_as] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4679), - [anon_sym_RBRACE] = ACTIONS(4679), - [anon_sym_LPAREN] = ACTIONS(4679), - [anon_sym_COMMA] = ACTIONS(4679), - [anon_sym_LT] = ACTIONS(4677), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_where] = ACTIONS(4677), - [anon_sym_DOT] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4679), - [anon_sym_get] = ACTIONS(4677), - [anon_sym_set] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [sym_label] = ACTIONS(4679), - [anon_sym_in] = ACTIONS(4677), - [anon_sym_DOT_DOT] = ACTIONS(4679), - [anon_sym_QMARK_COLON] = ACTIONS(4679), - [anon_sym_AMP_AMP] = ACTIONS(4679), - [anon_sym_PIPE_PIPE] = ACTIONS(4679), - [anon_sym_else] = ACTIONS(4677), - [anon_sym_COLON_COLON] = ACTIONS(4679), - [anon_sym_PLUS_EQ] = ACTIONS(4679), - [anon_sym_DASH_EQ] = ACTIONS(4679), - [anon_sym_STAR_EQ] = ACTIONS(4679), - [anon_sym_SLASH_EQ] = ACTIONS(4679), - [anon_sym_PERCENT_EQ] = ACTIONS(4679), - [anon_sym_BANG_EQ] = ACTIONS(4677), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4679), - [anon_sym_EQ_EQ] = ACTIONS(4677), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4679), - [anon_sym_LT_EQ] = ACTIONS(4679), - [anon_sym_GT_EQ] = ACTIONS(4679), - [anon_sym_BANGin] = ACTIONS(4679), - [anon_sym_is] = ACTIONS(4677), - [anon_sym_BANGis] = ACTIONS(4679), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_as_QMARK] = ACTIONS(4679), - [anon_sym_PLUS_PLUS] = ACTIONS(4679), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_BANG_BANG] = ACTIONS(4679), - [anon_sym_suspend] = ACTIONS(4677), - [anon_sym_sealed] = ACTIONS(4677), - [anon_sym_annotation] = ACTIONS(4677), - [anon_sym_data] = ACTIONS(4677), - [anon_sym_inner] = ACTIONS(4677), - [anon_sym_value] = ACTIONS(4677), - [anon_sym_override] = ACTIONS(4677), - [anon_sym_lateinit] = ACTIONS(4677), - [anon_sym_public] = ACTIONS(4677), - [anon_sym_private] = ACTIONS(4677), - [anon_sym_internal] = ACTIONS(4677), - [anon_sym_protected] = ACTIONS(4677), - [anon_sym_tailrec] = ACTIONS(4677), - [anon_sym_operator] = ACTIONS(4677), - [anon_sym_infix] = ACTIONS(4677), - [anon_sym_inline] = ACTIONS(4677), - [anon_sym_external] = ACTIONS(4677), - [sym_property_modifier] = ACTIONS(4677), - [anon_sym_abstract] = ACTIONS(4677), - [anon_sym_final] = ACTIONS(4677), - [anon_sym_open] = ACTIONS(4677), - [anon_sym_vararg] = ACTIONS(4677), - [anon_sym_noinline] = ACTIONS(4677), - [anon_sym_crossinline] = ACTIONS(4677), - [anon_sym_expect] = ACTIONS(4677), - [anon_sym_actual] = ACTIONS(4677), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4679), - [sym__automatic_semicolon] = ACTIONS(4679), - [sym_safe_nav] = ACTIONS(4679), + [3795] = { + [sym_enum_class_body] = STATE(3839), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, - [3830] = { - [sym_function_body] = STATE(3245), - [sym__block] = STATE(3335), + [3796] = { + [sym_value_arguments] = STATE(3237), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(7123), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), + }, + [3797] = { + [sym_type_constraints] = STATE(2996), + [sym_enum_class_body] = STATE(3200), [sym__alpha_identifier] = ACTIONS(4321), [anon_sym_AT] = ACTIONS(4323), - [anon_sym_COLON] = ACTIONS(7219), + [anon_sym_COLON] = ACTIONS(7125), [anon_sym_LBRACK] = ACTIONS(4323), [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(6547), + [anon_sym_LBRACE] = ACTIONS(3252), [anon_sym_RBRACE] = ACTIONS(4323), [anon_sym_LPAREN] = ACTIONS(4323), [anon_sym_LT] = ACTIONS(4321), [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3256), [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), [anon_sym_DOT] = ACTIONS(4321), [anon_sym_SEMI] = ACTIONS(4323), [anon_sym_get] = ACTIONS(4321), @@ -433657,200 +428538,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4323), }, - [3831] = { - [sym_function_body] = STATE(3502), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(7221), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_RBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_RPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [anon_sym_DASH_GT] = ACTIONS(4341), - [sym_label] = ACTIONS(4341), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_while] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - }, - [3832] = { - [sym__alpha_identifier] = ACTIONS(4685), - [anon_sym_AT] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_as] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_RBRACE] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_COMMA] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4685), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_where] = ACTIONS(4685), - [anon_sym_DOT] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_get] = ACTIONS(4685), - [anon_sym_set] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [sym_label] = ACTIONS(4687), - [anon_sym_in] = ACTIONS(4685), - [anon_sym_DOT_DOT] = ACTIONS(4687), - [anon_sym_QMARK_COLON] = ACTIONS(4687), - [anon_sym_AMP_AMP] = ACTIONS(4687), - [anon_sym_PIPE_PIPE] = ACTIONS(4687), - [anon_sym_else] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4687), - [anon_sym_PLUS_EQ] = ACTIONS(4687), - [anon_sym_DASH_EQ] = ACTIONS(4687), - [anon_sym_STAR_EQ] = ACTIONS(4687), - [anon_sym_SLASH_EQ] = ACTIONS(4687), - [anon_sym_PERCENT_EQ] = ACTIONS(4687), - [anon_sym_BANG_EQ] = ACTIONS(4685), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4687), - [anon_sym_EQ_EQ] = ACTIONS(4685), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4687), - [anon_sym_LT_EQ] = ACTIONS(4687), - [anon_sym_GT_EQ] = ACTIONS(4687), - [anon_sym_BANGin] = ACTIONS(4687), - [anon_sym_is] = ACTIONS(4685), - [anon_sym_BANGis] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_as_QMARK] = ACTIONS(4687), - [anon_sym_PLUS_PLUS] = ACTIONS(4687), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_BANG_BANG] = ACTIONS(4687), - [anon_sym_suspend] = ACTIONS(4685), - [anon_sym_sealed] = ACTIONS(4685), - [anon_sym_annotation] = ACTIONS(4685), - [anon_sym_data] = ACTIONS(4685), - [anon_sym_inner] = ACTIONS(4685), - [anon_sym_value] = ACTIONS(4685), - [anon_sym_override] = ACTIONS(4685), - [anon_sym_lateinit] = ACTIONS(4685), - [anon_sym_public] = ACTIONS(4685), - [anon_sym_private] = ACTIONS(4685), - [anon_sym_internal] = ACTIONS(4685), - [anon_sym_protected] = ACTIONS(4685), - [anon_sym_tailrec] = ACTIONS(4685), - [anon_sym_operator] = ACTIONS(4685), - [anon_sym_infix] = ACTIONS(4685), - [anon_sym_inline] = ACTIONS(4685), - [anon_sym_external] = ACTIONS(4685), - [sym_property_modifier] = ACTIONS(4685), - [anon_sym_abstract] = ACTIONS(4685), - [anon_sym_final] = ACTIONS(4685), - [anon_sym_open] = ACTIONS(4685), - [anon_sym_vararg] = ACTIONS(4685), - [anon_sym_noinline] = ACTIONS(4685), - [anon_sym_crossinline] = ACTIONS(4685), - [anon_sym_expect] = ACTIONS(4685), - [anon_sym_actual] = ACTIONS(4685), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4687), - [sym__automatic_semicolon] = ACTIONS(4687), - [sym_safe_nav] = ACTIONS(4687), - [sym_multiline_comment] = ACTIONS(3), - }, - [3833] = { + [3798] = { + [sym_class_body] = STATE(3206), + [sym_type_constraints] = STATE(3024), [sym__alpha_identifier] = ACTIONS(4327), [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(7127), [anon_sym_LBRACK] = ACTIONS(4329), [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(4327), - [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(3262), [anon_sym_RBRACE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4327), [anon_sym_LT] = ACTIONS(4327), [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), [anon_sym_DOT] = ACTIONS(4327), [anon_sym_SEMI] = ACTIONS(4329), [anon_sym_get] = ACTIONS(4327), [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4329), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4327), [anon_sym_in] = ACTIONS(4327), [anon_sym_DOT_DOT] = ACTIONS(4329), [anon_sym_QMARK_COLON] = ACTIONS(4329), [anon_sym_AMP_AMP] = ACTIONS(4329), [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), [anon_sym_BANG_EQ] = ACTIONS(4327), [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), [anon_sym_EQ_EQ] = ACTIONS(4327), @@ -433863,543 +428589,1994 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4327), [anon_sym_DASH] = ACTIONS(4327), [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), [anon_sym_as_QMARK] = ACTIONS(4329), [anon_sym_PLUS_PLUS] = ACTIONS(4329), [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), [anon_sym_data] = ACTIONS(4327), [anon_sym_inner] = ACTIONS(4327), [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), [anon_sym_expect] = ACTIONS(4327), [anon_sym_actual] = ACTIONS(4327), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), [sym__backtick_identifier] = ACTIONS(4329), [sym__automatic_semicolon] = ACTIONS(4329), [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, - [3834] = { - [sym__alpha_identifier] = ACTIONS(4502), - [anon_sym_AT] = ACTIONS(4504), - [anon_sym_COLON] = ACTIONS(4502), - [anon_sym_LBRACK] = ACTIONS(4504), - [anon_sym_fun] = ACTIONS(4502), - [anon_sym_constructor] = ACTIONS(4502), - [anon_sym_LBRACE] = ACTIONS(4504), - [anon_sym_RBRACE] = ACTIONS(4504), - [anon_sym_LPAREN] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4502), - [anon_sym_object] = ACTIONS(4502), - [anon_sym_get] = ACTIONS(4502), - [anon_sym_set] = ACTIONS(4502), - [anon_sym_this] = ACTIONS(4502), - [anon_sym_super] = ACTIONS(4502), - [anon_sym_STAR] = ACTIONS(4504), - [sym_label] = ACTIONS(4502), - [anon_sym_in] = ACTIONS(4502), - [anon_sym_null] = ACTIONS(4502), - [anon_sym_if] = ACTIONS(4502), - [anon_sym_else] = ACTIONS(4502), - [anon_sym_when] = ACTIONS(4502), - [anon_sym_try] = ACTIONS(4502), - [anon_sym_throw] = ACTIONS(4502), - [anon_sym_return] = ACTIONS(4502), - [anon_sym_continue] = ACTIONS(4502), - [anon_sym_break] = ACTIONS(4502), - [anon_sym_COLON_COLON] = ACTIONS(4504), - [anon_sym_BANGin] = ACTIONS(4504), - [anon_sym_is] = ACTIONS(4502), - [anon_sym_BANGis] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4502), - [anon_sym_DASH] = ACTIONS(4502), - [anon_sym_PLUS_PLUS] = ACTIONS(4504), - [anon_sym_DASH_DASH] = ACTIONS(4504), - [anon_sym_BANG] = ACTIONS(4502), - [anon_sym_suspend] = ACTIONS(4502), - [anon_sym_sealed] = ACTIONS(4502), - [anon_sym_annotation] = ACTIONS(4502), - [anon_sym_data] = ACTIONS(4502), - [anon_sym_inner] = ACTIONS(4502), - [anon_sym_value] = ACTIONS(4502), - [anon_sym_override] = ACTIONS(4502), - [anon_sym_lateinit] = ACTIONS(4502), - [anon_sym_public] = ACTIONS(4502), - [anon_sym_private] = ACTIONS(4502), - [anon_sym_internal] = ACTIONS(4502), - [anon_sym_protected] = ACTIONS(4502), - [anon_sym_tailrec] = ACTIONS(4502), - [anon_sym_operator] = ACTIONS(4502), - [anon_sym_infix] = ACTIONS(4502), - [anon_sym_inline] = ACTIONS(4502), - [anon_sym_external] = ACTIONS(4502), - [sym_property_modifier] = ACTIONS(4502), - [anon_sym_abstract] = ACTIONS(4502), - [anon_sym_final] = ACTIONS(4502), - [anon_sym_open] = ACTIONS(4502), - [anon_sym_vararg] = ACTIONS(4502), - [anon_sym_noinline] = ACTIONS(4502), - [anon_sym_crossinline] = ACTIONS(4502), - [anon_sym_expect] = ACTIONS(4502), - [anon_sym_actual] = ACTIONS(4502), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4504), - [anon_sym_continue_AT] = ACTIONS(4504), - [anon_sym_break_AT] = ACTIONS(4504), - [anon_sym_this_AT] = ACTIONS(4504), - [anon_sym_super_AT] = ACTIONS(4504), - [sym_real_literal] = ACTIONS(4504), - [sym_integer_literal] = ACTIONS(4502), - [sym_hex_literal] = ACTIONS(4504), - [sym_bin_literal] = ACTIONS(4504), - [anon_sym_true] = ACTIONS(4502), - [anon_sym_false] = ACTIONS(4502), - [anon_sym_SQUOTE] = ACTIONS(4504), - [sym__backtick_identifier] = ACTIONS(4504), - [sym__automatic_semicolon] = ACTIONS(4504), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4504), + [3799] = { + [sym__alpha_identifier] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_as] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(4706), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_by] = ACTIONS(4706), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_where] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(4706), + [anon_sym_set] = ACTIONS(4706), + [anon_sym_STAR] = ACTIONS(4706), + [sym_label] = ACTIONS(4708), + [anon_sym_in] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4708), + [anon_sym_QMARK_COLON] = ACTIONS(4708), + [anon_sym_AMP_AMP] = ACTIONS(4708), + [anon_sym_PIPE_PIPE] = ACTIONS(4708), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4708), + [anon_sym_PLUS_EQ] = ACTIONS(4708), + [anon_sym_DASH_EQ] = ACTIONS(4708), + [anon_sym_STAR_EQ] = ACTIONS(4708), + [anon_sym_SLASH_EQ] = ACTIONS(4708), + [anon_sym_PERCENT_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4708), + [anon_sym_EQ_EQ] = ACTIONS(4706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4708), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_BANGin] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4706), + [anon_sym_BANGis] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4706), + [anon_sym_PERCENT] = ACTIONS(4706), + [anon_sym_as_QMARK] = ACTIONS(4708), + [anon_sym_PLUS_PLUS] = ACTIONS(4708), + [anon_sym_DASH_DASH] = ACTIONS(4708), + [anon_sym_BANG_BANG] = ACTIONS(4708), + [anon_sym_suspend] = ACTIONS(4706), + [anon_sym_sealed] = ACTIONS(4706), + [anon_sym_annotation] = ACTIONS(4706), + [anon_sym_data] = ACTIONS(4706), + [anon_sym_inner] = ACTIONS(4706), + [anon_sym_value] = ACTIONS(4706), + [anon_sym_override] = ACTIONS(4706), + [anon_sym_lateinit] = ACTIONS(4706), + [anon_sym_public] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4706), + [anon_sym_internal] = ACTIONS(4706), + [anon_sym_protected] = ACTIONS(4706), + [anon_sym_tailrec] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(4706), + [anon_sym_infix] = ACTIONS(4706), + [anon_sym_inline] = ACTIONS(4706), + [anon_sym_external] = ACTIONS(4706), + [sym_property_modifier] = ACTIONS(4706), + [anon_sym_abstract] = ACTIONS(4706), + [anon_sym_final] = ACTIONS(4706), + [anon_sym_open] = ACTIONS(4706), + [anon_sym_vararg] = ACTIONS(4706), + [anon_sym_noinline] = ACTIONS(4706), + [anon_sym_crossinline] = ACTIONS(4706), + [anon_sym_expect] = ACTIONS(4706), + [anon_sym_actual] = ACTIONS(4706), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4708), + [sym__automatic_semicolon] = ACTIONS(4708), + [sym_safe_nav] = ACTIONS(4708), + [sym_multiline_comment] = ACTIONS(3), }, - [3835] = { - [sym__alpha_identifier] = ACTIONS(4667), - [anon_sym_AT] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4669), - [anon_sym_as] = ACTIONS(4667), - [anon_sym_EQ] = ACTIONS(4667), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_RBRACE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_by] = ACTIONS(4667), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4667), - [anon_sym_where] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_get] = ACTIONS(4667), - [anon_sym_set] = ACTIONS(4667), - [anon_sym_STAR] = ACTIONS(4667), - [sym_label] = ACTIONS(4669), - [anon_sym_in] = ACTIONS(4667), - [anon_sym_DOT_DOT] = ACTIONS(4669), - [anon_sym_QMARK_COLON] = ACTIONS(4669), - [anon_sym_AMP_AMP] = ACTIONS(4669), - [anon_sym_PIPE_PIPE] = ACTIONS(4669), - [anon_sym_else] = ACTIONS(4667), - [anon_sym_COLON_COLON] = ACTIONS(4669), - [anon_sym_PLUS_EQ] = ACTIONS(4669), - [anon_sym_DASH_EQ] = ACTIONS(4669), - [anon_sym_STAR_EQ] = ACTIONS(4669), - [anon_sym_SLASH_EQ] = ACTIONS(4669), - [anon_sym_PERCENT_EQ] = ACTIONS(4669), - [anon_sym_BANG_EQ] = ACTIONS(4667), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4669), - [anon_sym_EQ_EQ] = ACTIONS(4667), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4669), - [anon_sym_LT_EQ] = ACTIONS(4669), - [anon_sym_GT_EQ] = ACTIONS(4669), - [anon_sym_BANGin] = ACTIONS(4669), - [anon_sym_is] = ACTIONS(4667), - [anon_sym_BANGis] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4667), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4667), - [anon_sym_PERCENT] = ACTIONS(4667), - [anon_sym_as_QMARK] = ACTIONS(4669), - [anon_sym_PLUS_PLUS] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4669), - [anon_sym_BANG_BANG] = ACTIONS(4669), - [anon_sym_suspend] = ACTIONS(4667), - [anon_sym_sealed] = ACTIONS(4667), - [anon_sym_annotation] = ACTIONS(4667), - [anon_sym_data] = ACTIONS(4667), - [anon_sym_inner] = ACTIONS(4667), - [anon_sym_value] = ACTIONS(4667), - [anon_sym_override] = ACTIONS(4667), - [anon_sym_lateinit] = ACTIONS(4667), - [anon_sym_public] = ACTIONS(4667), - [anon_sym_private] = ACTIONS(4667), - [anon_sym_internal] = ACTIONS(4667), - [anon_sym_protected] = ACTIONS(4667), - [anon_sym_tailrec] = ACTIONS(4667), - [anon_sym_operator] = ACTIONS(4667), - [anon_sym_infix] = ACTIONS(4667), - [anon_sym_inline] = ACTIONS(4667), - [anon_sym_external] = ACTIONS(4667), - [sym_property_modifier] = ACTIONS(4667), - [anon_sym_abstract] = ACTIONS(4667), - [anon_sym_final] = ACTIONS(4667), - [anon_sym_open] = ACTIONS(4667), - [anon_sym_vararg] = ACTIONS(4667), - [anon_sym_noinline] = ACTIONS(4667), - [anon_sym_crossinline] = ACTIONS(4667), - [anon_sym_expect] = ACTIONS(4667), - [anon_sym_actual] = ACTIONS(4667), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4669), - [sym__automatic_semicolon] = ACTIONS(4669), - [sym_safe_nav] = ACTIONS(4669), + [3800] = { + [sym__alpha_identifier] = ACTIONS(4696), + [anon_sym_AT] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_as] = ACTIONS(4696), + [anon_sym_EQ] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_by] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4696), + [anon_sym_where] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4696), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_get] = ACTIONS(4696), + [anon_sym_set] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4696), + [sym_label] = ACTIONS(4698), + [anon_sym_in] = ACTIONS(4696), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_QMARK_COLON] = ACTIONS(4698), + [anon_sym_AMP_AMP] = ACTIONS(4698), + [anon_sym_PIPE_PIPE] = ACTIONS(4698), + [anon_sym_else] = ACTIONS(4696), + [anon_sym_COLON_COLON] = ACTIONS(4698), + [anon_sym_PLUS_EQ] = ACTIONS(4698), + [anon_sym_DASH_EQ] = ACTIONS(4698), + [anon_sym_STAR_EQ] = ACTIONS(4698), + [anon_sym_SLASH_EQ] = ACTIONS(4698), + [anon_sym_PERCENT_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4698), + [anon_sym_BANGin] = ACTIONS(4698), + [anon_sym_is] = ACTIONS(4696), + [anon_sym_BANGis] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4696), + [anon_sym_SLASH] = ACTIONS(4696), + [anon_sym_PERCENT] = ACTIONS(4696), + [anon_sym_as_QMARK] = ACTIONS(4698), + [anon_sym_PLUS_PLUS] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4698), + [anon_sym_BANG_BANG] = ACTIONS(4698), + [anon_sym_suspend] = ACTIONS(4696), + [anon_sym_sealed] = ACTIONS(4696), + [anon_sym_annotation] = ACTIONS(4696), + [anon_sym_data] = ACTIONS(4696), + [anon_sym_inner] = ACTIONS(4696), + [anon_sym_value] = ACTIONS(4696), + [anon_sym_override] = ACTIONS(4696), + [anon_sym_lateinit] = ACTIONS(4696), + [anon_sym_public] = ACTIONS(4696), + [anon_sym_private] = ACTIONS(4696), + [anon_sym_internal] = ACTIONS(4696), + [anon_sym_protected] = ACTIONS(4696), + [anon_sym_tailrec] = ACTIONS(4696), + [anon_sym_operator] = ACTIONS(4696), + [anon_sym_infix] = ACTIONS(4696), + [anon_sym_inline] = ACTIONS(4696), + [anon_sym_external] = ACTIONS(4696), + [sym_property_modifier] = ACTIONS(4696), + [anon_sym_abstract] = ACTIONS(4696), + [anon_sym_final] = ACTIONS(4696), + [anon_sym_open] = ACTIONS(4696), + [anon_sym_vararg] = ACTIONS(4696), + [anon_sym_noinline] = ACTIONS(4696), + [anon_sym_crossinline] = ACTIONS(4696), + [anon_sym_expect] = ACTIONS(4696), + [anon_sym_actual] = ACTIONS(4696), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4698), + [sym__automatic_semicolon] = ACTIONS(4698), + [sym_safe_nav] = ACTIONS(4698), [sym_multiline_comment] = ACTIONS(3), }, - [3836] = { - [sym__alpha_identifier] = ACTIONS(4691), - [anon_sym_AT] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_as] = ACTIONS(4691), - [anon_sym_EQ] = ACTIONS(4691), - [anon_sym_LBRACE] = ACTIONS(4693), - [anon_sym_RBRACE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_where] = ACTIONS(4691), - [anon_sym_DOT] = ACTIONS(4691), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_get] = ACTIONS(4691), - [anon_sym_set] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [sym_label] = ACTIONS(4693), - [anon_sym_in] = ACTIONS(4691), - [anon_sym_DOT_DOT] = ACTIONS(4693), - [anon_sym_QMARK_COLON] = ACTIONS(4693), - [anon_sym_AMP_AMP] = ACTIONS(4693), - [anon_sym_PIPE_PIPE] = ACTIONS(4693), - [anon_sym_else] = ACTIONS(4691), - [anon_sym_COLON_COLON] = ACTIONS(4693), - [anon_sym_PLUS_EQ] = ACTIONS(4693), - [anon_sym_DASH_EQ] = ACTIONS(4693), - [anon_sym_STAR_EQ] = ACTIONS(4693), - [anon_sym_SLASH_EQ] = ACTIONS(4693), - [anon_sym_PERCENT_EQ] = ACTIONS(4693), - [anon_sym_BANG_EQ] = ACTIONS(4691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4693), - [anon_sym_EQ_EQ] = ACTIONS(4691), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4693), - [anon_sym_LT_EQ] = ACTIONS(4693), - [anon_sym_GT_EQ] = ACTIONS(4693), - [anon_sym_BANGin] = ACTIONS(4693), - [anon_sym_is] = ACTIONS(4691), - [anon_sym_BANGis] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_PERCENT] = ACTIONS(4691), - [anon_sym_as_QMARK] = ACTIONS(4693), - [anon_sym_PLUS_PLUS] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4693), - [anon_sym_BANG_BANG] = ACTIONS(4693), - [anon_sym_suspend] = ACTIONS(4691), - [anon_sym_sealed] = ACTIONS(4691), - [anon_sym_annotation] = ACTIONS(4691), - [anon_sym_data] = ACTIONS(4691), - [anon_sym_inner] = ACTIONS(4691), - [anon_sym_value] = ACTIONS(4691), - [anon_sym_override] = ACTIONS(4691), - [anon_sym_lateinit] = ACTIONS(4691), - [anon_sym_public] = ACTIONS(4691), - [anon_sym_private] = ACTIONS(4691), - [anon_sym_internal] = ACTIONS(4691), - [anon_sym_protected] = ACTIONS(4691), - [anon_sym_tailrec] = ACTIONS(4691), - [anon_sym_operator] = ACTIONS(4691), - [anon_sym_infix] = ACTIONS(4691), - [anon_sym_inline] = ACTIONS(4691), - [anon_sym_external] = ACTIONS(4691), - [sym_property_modifier] = ACTIONS(4691), - [anon_sym_abstract] = ACTIONS(4691), - [anon_sym_final] = ACTIONS(4691), - [anon_sym_open] = ACTIONS(4691), - [anon_sym_vararg] = ACTIONS(4691), - [anon_sym_noinline] = ACTIONS(4691), - [anon_sym_crossinline] = ACTIONS(4691), - [anon_sym_expect] = ACTIONS(4691), - [anon_sym_actual] = ACTIONS(4691), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4693), - [sym__automatic_semicolon] = ACTIONS(4693), - [sym_safe_nav] = ACTIONS(4693), + [3801] = { + [sym_class_body] = STATE(3837), + [sym__alpha_identifier] = ACTIONS(4547), + [anon_sym_AT] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4549), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_where] = ACTIONS(4547), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_SEMI] = ACTIONS(4549), + [anon_sym_get] = ACTIONS(4547), + [anon_sym_set] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4547), + [sym_label] = ACTIONS(4549), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_else] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ] = ACTIONS(4547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_EQ] = ACTIONS(4549), + [anon_sym_BANGin] = ACTIONS(4549), + [anon_sym_is] = ACTIONS(4547), + [anon_sym_BANGis] = ACTIONS(4549), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_as_QMARK] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_BANG_BANG] = ACTIONS(4549), + [anon_sym_suspend] = ACTIONS(4547), + [anon_sym_sealed] = ACTIONS(4547), + [anon_sym_annotation] = ACTIONS(4547), + [anon_sym_data] = ACTIONS(4547), + [anon_sym_inner] = ACTIONS(4547), + [anon_sym_value] = ACTIONS(4547), + [anon_sym_override] = ACTIONS(4547), + [anon_sym_lateinit] = ACTIONS(4547), + [anon_sym_public] = ACTIONS(4547), + [anon_sym_private] = ACTIONS(4547), + [anon_sym_internal] = ACTIONS(4547), + [anon_sym_protected] = ACTIONS(4547), + [anon_sym_tailrec] = ACTIONS(4547), + [anon_sym_operator] = ACTIONS(4547), + [anon_sym_infix] = ACTIONS(4547), + [anon_sym_inline] = ACTIONS(4547), + [anon_sym_external] = ACTIONS(4547), + [sym_property_modifier] = ACTIONS(4547), + [anon_sym_abstract] = ACTIONS(4547), + [anon_sym_final] = ACTIONS(4547), + [anon_sym_open] = ACTIONS(4547), + [anon_sym_vararg] = ACTIONS(4547), + [anon_sym_noinline] = ACTIONS(4547), + [anon_sym_crossinline] = ACTIONS(4547), + [anon_sym_expect] = ACTIONS(4547), + [anon_sym_actual] = ACTIONS(4547), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4549), + [sym__automatic_semicolon] = ACTIONS(4549), + [sym_safe_nav] = ACTIONS(4549), [sym_multiline_comment] = ACTIONS(3), }, - [3837] = { - [sym__alpha_identifier] = ACTIONS(4587), - [anon_sym_AT] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_as] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4589), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_LPAREN] = ACTIONS(4589), - [anon_sym_COMMA] = ACTIONS(4589), - [anon_sym_by] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4587), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_where] = ACTIONS(4587), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [anon_sym_get] = ACTIONS(4587), - [anon_sym_set] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [sym_label] = ACTIONS(4589), - [anon_sym_in] = ACTIONS(4587), - [anon_sym_DOT_DOT] = ACTIONS(4589), - [anon_sym_QMARK_COLON] = ACTIONS(4589), - [anon_sym_AMP_AMP] = ACTIONS(4589), - [anon_sym_PIPE_PIPE] = ACTIONS(4589), - [anon_sym_else] = ACTIONS(4587), - [anon_sym_COLON_COLON] = ACTIONS(4589), - [anon_sym_PLUS_EQ] = ACTIONS(4589), - [anon_sym_DASH_EQ] = ACTIONS(4589), - [anon_sym_STAR_EQ] = ACTIONS(4589), - [anon_sym_SLASH_EQ] = ACTIONS(4589), - [anon_sym_PERCENT_EQ] = ACTIONS(4589), - [anon_sym_BANG_EQ] = ACTIONS(4587), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), - [anon_sym_EQ_EQ] = ACTIONS(4587), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), - [anon_sym_LT_EQ] = ACTIONS(4589), - [anon_sym_GT_EQ] = ACTIONS(4589), - [anon_sym_BANGin] = ACTIONS(4589), - [anon_sym_is] = ACTIONS(4587), - [anon_sym_BANGis] = ACTIONS(4589), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_as_QMARK] = ACTIONS(4589), - [anon_sym_PLUS_PLUS] = ACTIONS(4589), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_BANG_BANG] = ACTIONS(4589), - [anon_sym_suspend] = ACTIONS(4587), - [anon_sym_sealed] = ACTIONS(4587), - [anon_sym_annotation] = ACTIONS(4587), - [anon_sym_data] = ACTIONS(4587), - [anon_sym_inner] = ACTIONS(4587), - [anon_sym_value] = ACTIONS(4587), - [anon_sym_override] = ACTIONS(4587), - [anon_sym_lateinit] = ACTIONS(4587), - [anon_sym_public] = ACTIONS(4587), - [anon_sym_private] = ACTIONS(4587), - [anon_sym_internal] = ACTIONS(4587), - [anon_sym_protected] = ACTIONS(4587), - [anon_sym_tailrec] = ACTIONS(4587), - [anon_sym_operator] = ACTIONS(4587), - [anon_sym_infix] = ACTIONS(4587), - [anon_sym_inline] = ACTIONS(4587), - [anon_sym_external] = ACTIONS(4587), - [sym_property_modifier] = ACTIONS(4587), - [anon_sym_abstract] = ACTIONS(4587), - [anon_sym_final] = ACTIONS(4587), - [anon_sym_open] = ACTIONS(4587), - [anon_sym_vararg] = ACTIONS(4587), - [anon_sym_noinline] = ACTIONS(4587), - [anon_sym_crossinline] = ACTIONS(4587), - [anon_sym_expect] = ACTIONS(4587), - [anon_sym_actual] = ACTIONS(4587), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4589), - [sym__automatic_semicolon] = ACTIONS(4589), - [sym_safe_nav] = ACTIONS(4589), + [3802] = { + [sym__alpha_identifier] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(4674), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(4676), + [anon_sym_by] = ACTIONS(4674), + [anon_sym_LT] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4674), + [anon_sym_where] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_get] = ACTIONS(4674), + [anon_sym_set] = ACTIONS(4674), + [anon_sym_STAR] = ACTIONS(4674), + [sym_label] = ACTIONS(4676), + [anon_sym_in] = ACTIONS(4674), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_QMARK_COLON] = ACTIONS(4676), + [anon_sym_AMP_AMP] = ACTIONS(4676), + [anon_sym_PIPE_PIPE] = ACTIONS(4676), + [anon_sym_else] = ACTIONS(4674), + [anon_sym_COLON_COLON] = ACTIONS(4676), + [anon_sym_PLUS_EQ] = ACTIONS(4676), + [anon_sym_DASH_EQ] = ACTIONS(4676), + [anon_sym_STAR_EQ] = ACTIONS(4676), + [anon_sym_SLASH_EQ] = ACTIONS(4676), + [anon_sym_PERCENT_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_BANGin] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_BANGis] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4674), + [anon_sym_SLASH] = ACTIONS(4674), + [anon_sym_PERCENT] = ACTIONS(4674), + [anon_sym_as_QMARK] = ACTIONS(4676), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_BANG_BANG] = ACTIONS(4676), + [anon_sym_suspend] = ACTIONS(4674), + [anon_sym_sealed] = ACTIONS(4674), + [anon_sym_annotation] = ACTIONS(4674), + [anon_sym_data] = ACTIONS(4674), + [anon_sym_inner] = ACTIONS(4674), + [anon_sym_value] = ACTIONS(4674), + [anon_sym_override] = ACTIONS(4674), + [anon_sym_lateinit] = ACTIONS(4674), + [anon_sym_public] = ACTIONS(4674), + [anon_sym_private] = ACTIONS(4674), + [anon_sym_internal] = ACTIONS(4674), + [anon_sym_protected] = ACTIONS(4674), + [anon_sym_tailrec] = ACTIONS(4674), + [anon_sym_operator] = ACTIONS(4674), + [anon_sym_infix] = ACTIONS(4674), + [anon_sym_inline] = ACTIONS(4674), + [anon_sym_external] = ACTIONS(4674), + [sym_property_modifier] = ACTIONS(4674), + [anon_sym_abstract] = ACTIONS(4674), + [anon_sym_final] = ACTIONS(4674), + [anon_sym_open] = ACTIONS(4674), + [anon_sym_vararg] = ACTIONS(4674), + [anon_sym_noinline] = ACTIONS(4674), + [anon_sym_crossinline] = ACTIONS(4674), + [anon_sym_expect] = ACTIONS(4674), + [anon_sym_actual] = ACTIONS(4674), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4676), + [sym__automatic_semicolon] = ACTIONS(4676), + [sym_safe_nav] = ACTIONS(4676), [sym_multiline_comment] = ACTIONS(3), }, - [3838] = { - [sym__alpha_identifier] = ACTIONS(4681), - [anon_sym_AT] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_as] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4683), - [anon_sym_RBRACE] = ACTIONS(4683), - [anon_sym_LPAREN] = ACTIONS(4683), - [anon_sym_COMMA] = ACTIONS(4683), - [anon_sym_by] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4681), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_where] = ACTIONS(4681), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_get] = ACTIONS(4681), - [anon_sym_set] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [sym_label] = ACTIONS(4683), - [anon_sym_in] = ACTIONS(4681), - [anon_sym_DOT_DOT] = ACTIONS(4683), - [anon_sym_QMARK_COLON] = ACTIONS(4683), - [anon_sym_AMP_AMP] = ACTIONS(4683), - [anon_sym_PIPE_PIPE] = ACTIONS(4683), - [anon_sym_else] = ACTIONS(4681), - [anon_sym_COLON_COLON] = ACTIONS(4683), - [anon_sym_PLUS_EQ] = ACTIONS(4683), - [anon_sym_DASH_EQ] = ACTIONS(4683), - [anon_sym_STAR_EQ] = ACTIONS(4683), - [anon_sym_SLASH_EQ] = ACTIONS(4683), - [anon_sym_PERCENT_EQ] = ACTIONS(4683), - [anon_sym_BANG_EQ] = ACTIONS(4681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4683), - [anon_sym_EQ_EQ] = ACTIONS(4681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4683), - [anon_sym_LT_EQ] = ACTIONS(4683), - [anon_sym_GT_EQ] = ACTIONS(4683), - [anon_sym_BANGin] = ACTIONS(4683), - [anon_sym_is] = ACTIONS(4681), - [anon_sym_BANGis] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4681), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_as_QMARK] = ACTIONS(4683), - [anon_sym_PLUS_PLUS] = ACTIONS(4683), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_BANG_BANG] = ACTIONS(4683), - [anon_sym_suspend] = ACTIONS(4681), - [anon_sym_sealed] = ACTIONS(4681), - [anon_sym_annotation] = ACTIONS(4681), - [anon_sym_data] = ACTIONS(4681), - [anon_sym_inner] = ACTIONS(4681), - [anon_sym_value] = ACTIONS(4681), - [anon_sym_override] = ACTIONS(4681), - [anon_sym_lateinit] = ACTIONS(4681), - [anon_sym_public] = ACTIONS(4681), - [anon_sym_private] = ACTIONS(4681), - [anon_sym_internal] = ACTIONS(4681), - [anon_sym_protected] = ACTIONS(4681), - [anon_sym_tailrec] = ACTIONS(4681), - [anon_sym_operator] = ACTIONS(4681), - [anon_sym_infix] = ACTIONS(4681), - [anon_sym_inline] = ACTIONS(4681), - [anon_sym_external] = ACTIONS(4681), - [sym_property_modifier] = ACTIONS(4681), - [anon_sym_abstract] = ACTIONS(4681), - [anon_sym_final] = ACTIONS(4681), - [anon_sym_open] = ACTIONS(4681), - [anon_sym_vararg] = ACTIONS(4681), - [anon_sym_noinline] = ACTIONS(4681), - [anon_sym_crossinline] = ACTIONS(4681), - [anon_sym_expect] = ACTIONS(4681), - [anon_sym_actual] = ACTIONS(4681), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4683), - [sym__automatic_semicolon] = ACTIONS(4683), - [sym_safe_nav] = ACTIONS(4683), + [3803] = { + [sym__alpha_identifier] = ACTIONS(4551), + [anon_sym_AT] = ACTIONS(4553), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_as] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4553), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_where] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4553), + [anon_sym_get] = ACTIONS(4551), + [anon_sym_set] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [sym_label] = ACTIONS(4553), + [anon_sym_in] = ACTIONS(4551), + [anon_sym_DOT_DOT] = ACTIONS(4553), + [anon_sym_QMARK_COLON] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_else] = ACTIONS(4551), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(4553), + [anon_sym_DASH_EQ] = ACTIONS(4553), + [anon_sym_STAR_EQ] = ACTIONS(4553), + [anon_sym_SLASH_EQ] = ACTIONS(4553), + [anon_sym_PERCENT_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4553), + [anon_sym_is] = ACTIONS(4551), + [anon_sym_BANGis] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_as_QMARK] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_BANG_BANG] = ACTIONS(4553), + [anon_sym_suspend] = ACTIONS(4551), + [anon_sym_sealed] = ACTIONS(4551), + [anon_sym_annotation] = ACTIONS(4551), + [anon_sym_data] = ACTIONS(4551), + [anon_sym_inner] = ACTIONS(4551), + [anon_sym_value] = ACTIONS(4551), + [anon_sym_override] = ACTIONS(4551), + [anon_sym_lateinit] = ACTIONS(4551), + [anon_sym_public] = ACTIONS(4551), + [anon_sym_private] = ACTIONS(4551), + [anon_sym_internal] = ACTIONS(4551), + [anon_sym_protected] = ACTIONS(4551), + [anon_sym_tailrec] = ACTIONS(4551), + [anon_sym_operator] = ACTIONS(4551), + [anon_sym_infix] = ACTIONS(4551), + [anon_sym_inline] = ACTIONS(4551), + [anon_sym_external] = ACTIONS(4551), + [sym_property_modifier] = ACTIONS(4551), + [anon_sym_abstract] = ACTIONS(4551), + [anon_sym_final] = ACTIONS(4551), + [anon_sym_open] = ACTIONS(4551), + [anon_sym_vararg] = ACTIONS(4551), + [anon_sym_noinline] = ACTIONS(4551), + [anon_sym_crossinline] = ACTIONS(4551), + [anon_sym_expect] = ACTIONS(4551), + [anon_sym_actual] = ACTIONS(4551), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4553), + [sym__automatic_semicolon] = ACTIONS(4553), + [sym_safe_nav] = ACTIONS(4553), [sym_multiline_comment] = ACTIONS(3), }, - [3839] = { - [sym__alpha_identifier] = ACTIONS(4473), - [anon_sym_AT] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4475), - [anon_sym_fun] = ACTIONS(4473), - [anon_sym_constructor] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4475), - [anon_sym_RBRACE] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4475), - [anon_sym_where] = ACTIONS(4473), - [anon_sym_object] = ACTIONS(4473), - [anon_sym_get] = ACTIONS(4473), - [anon_sym_set] = ACTIONS(4473), - [anon_sym_this] = ACTIONS(4473), - [anon_sym_super] = ACTIONS(4473), - [anon_sym_STAR] = ACTIONS(4475), - [sym_label] = ACTIONS(4473), - [anon_sym_in] = ACTIONS(4473), - [anon_sym_null] = ACTIONS(4473), - [anon_sym_if] = ACTIONS(4473), - [anon_sym_else] = ACTIONS(4473), - [anon_sym_when] = ACTIONS(4473), - [anon_sym_try] = ACTIONS(4473), - [anon_sym_throw] = ACTIONS(4473), - [anon_sym_return] = ACTIONS(4473), - [anon_sym_continue] = ACTIONS(4473), - [anon_sym_break] = ACTIONS(4473), - [anon_sym_COLON_COLON] = ACTIONS(4475), - [anon_sym_BANGin] = ACTIONS(4475), - [anon_sym_is] = ACTIONS(4473), - [anon_sym_BANGis] = ACTIONS(4475), - [anon_sym_PLUS] = ACTIONS(4473), - [anon_sym_DASH] = ACTIONS(4473), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4473), - [anon_sym_suspend] = ACTIONS(4473), - [anon_sym_sealed] = ACTIONS(4473), - [anon_sym_annotation] = ACTIONS(4473), - [anon_sym_data] = ACTIONS(4473), - [anon_sym_inner] = ACTIONS(4473), - [anon_sym_value] = ACTIONS(4473), - [anon_sym_override] = ACTIONS(4473), - [anon_sym_lateinit] = ACTIONS(4473), - [anon_sym_public] = ACTIONS(4473), - [anon_sym_private] = ACTIONS(4473), - [anon_sym_internal] = ACTIONS(4473), - [anon_sym_protected] = ACTIONS(4473), - [anon_sym_tailrec] = ACTIONS(4473), - [anon_sym_operator] = ACTIONS(4473), - [anon_sym_infix] = ACTIONS(4473), - [anon_sym_inline] = ACTIONS(4473), - [anon_sym_external] = ACTIONS(4473), - [sym_property_modifier] = ACTIONS(4473), - [anon_sym_abstract] = ACTIONS(4473), - [anon_sym_final] = ACTIONS(4473), - [anon_sym_open] = ACTIONS(4473), - [anon_sym_vararg] = ACTIONS(4473), - [anon_sym_noinline] = ACTIONS(4473), - [anon_sym_crossinline] = ACTIONS(4473), - [anon_sym_expect] = ACTIONS(4473), - [anon_sym_actual] = ACTIONS(4473), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4475), - [anon_sym_continue_AT] = ACTIONS(4475), - [anon_sym_break_AT] = ACTIONS(4475), - [anon_sym_this_AT] = ACTIONS(4475), - [anon_sym_super_AT] = ACTIONS(4475), - [sym_real_literal] = ACTIONS(4475), - [sym_integer_literal] = ACTIONS(4473), - [sym_hex_literal] = ACTIONS(4475), - [sym_bin_literal] = ACTIONS(4475), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_false] = ACTIONS(4473), - [anon_sym_SQUOTE] = ACTIONS(4475), - [sym__backtick_identifier] = ACTIONS(4475), - [sym__automatic_semicolon] = ACTIONS(4475), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4475), + [3804] = { + [sym__alpha_identifier] = ACTIONS(4471), + [anon_sym_AT] = ACTIONS(4473), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_constructor] = ACTIONS(4471), + [anon_sym_LBRACE] = ACTIONS(4473), + [anon_sym_RBRACE] = ACTIONS(4473), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_where] = ACTIONS(4471), + [anon_sym_object] = ACTIONS(4471), + [anon_sym_fun] = ACTIONS(4471), + [anon_sym_get] = ACTIONS(4471), + [anon_sym_set] = ACTIONS(4471), + [anon_sym_this] = ACTIONS(4471), + [anon_sym_super] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4473), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4471), + [anon_sym_null] = ACTIONS(4471), + [anon_sym_if] = ACTIONS(4471), + [anon_sym_else] = ACTIONS(4471), + [anon_sym_when] = ACTIONS(4471), + [anon_sym_try] = ACTIONS(4471), + [anon_sym_throw] = ACTIONS(4471), + [anon_sym_return] = ACTIONS(4471), + [anon_sym_continue] = ACTIONS(4471), + [anon_sym_break] = ACTIONS(4471), + [anon_sym_COLON_COLON] = ACTIONS(4473), + [anon_sym_BANGin] = ACTIONS(4473), + [anon_sym_is] = ACTIONS(4471), + [anon_sym_BANGis] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4473), + [anon_sym_DASH_DASH] = ACTIONS(4473), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_suspend] = ACTIONS(4471), + [anon_sym_sealed] = ACTIONS(4471), + [anon_sym_annotation] = ACTIONS(4471), + [anon_sym_data] = ACTIONS(4471), + [anon_sym_inner] = ACTIONS(4471), + [anon_sym_value] = ACTIONS(4471), + [anon_sym_override] = ACTIONS(4471), + [anon_sym_lateinit] = ACTIONS(4471), + [anon_sym_public] = ACTIONS(4471), + [anon_sym_private] = ACTIONS(4471), + [anon_sym_internal] = ACTIONS(4471), + [anon_sym_protected] = ACTIONS(4471), + [anon_sym_tailrec] = ACTIONS(4471), + [anon_sym_operator] = ACTIONS(4471), + [anon_sym_infix] = ACTIONS(4471), + [anon_sym_inline] = ACTIONS(4471), + [anon_sym_external] = ACTIONS(4471), + [sym_property_modifier] = ACTIONS(4471), + [anon_sym_abstract] = ACTIONS(4471), + [anon_sym_final] = ACTIONS(4471), + [anon_sym_open] = ACTIONS(4471), + [anon_sym_vararg] = ACTIONS(4471), + [anon_sym_noinline] = ACTIONS(4471), + [anon_sym_crossinline] = ACTIONS(4471), + [anon_sym_expect] = ACTIONS(4471), + [anon_sym_actual] = ACTIONS(4471), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4473), + [anon_sym_continue_AT] = ACTIONS(4473), + [anon_sym_break_AT] = ACTIONS(4473), + [anon_sym_this_AT] = ACTIONS(4473), + [anon_sym_super_AT] = ACTIONS(4473), + [sym_real_literal] = ACTIONS(4473), + [sym_integer_literal] = ACTIONS(4471), + [sym_hex_literal] = ACTIONS(4473), + [sym_bin_literal] = ACTIONS(4473), + [anon_sym_true] = ACTIONS(4471), + [anon_sym_false] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4473), + [sym__backtick_identifier] = ACTIONS(4473), + [sym__automatic_semicolon] = ACTIONS(4473), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4473), }, - [3840] = { - [sym_function_body] = STATE(4010), - [sym__block] = STATE(4073), + [3805] = { + [sym__alpha_identifier] = ACTIONS(4581), + [anon_sym_AT] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4581), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_as] = ACTIONS(4581), + [anon_sym_EQ] = ACTIONS(4581), + [anon_sym_LBRACE] = ACTIONS(4583), + [anon_sym_RBRACE] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_COMMA] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4581), + [anon_sym_GT] = ACTIONS(4581), + [anon_sym_where] = ACTIONS(4581), + [anon_sym_DOT] = ACTIONS(4581), + [anon_sym_SEMI] = ACTIONS(4583), + [anon_sym_get] = ACTIONS(4581), + [anon_sym_set] = ACTIONS(4581), + [anon_sym_STAR] = ACTIONS(4581), + [sym_label] = ACTIONS(4583), + [anon_sym_in] = ACTIONS(4581), + [anon_sym_DOT_DOT] = ACTIONS(4583), + [anon_sym_QMARK_COLON] = ACTIONS(4583), + [anon_sym_AMP_AMP] = ACTIONS(4583), + [anon_sym_PIPE_PIPE] = ACTIONS(4583), + [anon_sym_else] = ACTIONS(4581), + [anon_sym_COLON_COLON] = ACTIONS(4583), + [anon_sym_PLUS_EQ] = ACTIONS(4583), + [anon_sym_DASH_EQ] = ACTIONS(4583), + [anon_sym_STAR_EQ] = ACTIONS(4583), + [anon_sym_SLASH_EQ] = ACTIONS(4583), + [anon_sym_PERCENT_EQ] = ACTIONS(4583), + [anon_sym_BANG_EQ] = ACTIONS(4581), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4581), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4583), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4583), + [anon_sym_BANGin] = ACTIONS(4583), + [anon_sym_is] = ACTIONS(4581), + [anon_sym_BANGis] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4581), + [anon_sym_DASH] = ACTIONS(4581), + [anon_sym_SLASH] = ACTIONS(4581), + [anon_sym_PERCENT] = ACTIONS(4581), + [anon_sym_as_QMARK] = ACTIONS(4583), + [anon_sym_PLUS_PLUS] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4583), + [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_suspend] = ACTIONS(4581), + [anon_sym_sealed] = ACTIONS(4581), + [anon_sym_annotation] = ACTIONS(4581), + [anon_sym_data] = ACTIONS(4581), + [anon_sym_inner] = ACTIONS(4581), + [anon_sym_value] = ACTIONS(4581), + [anon_sym_override] = ACTIONS(4581), + [anon_sym_lateinit] = ACTIONS(4581), + [anon_sym_public] = ACTIONS(4581), + [anon_sym_private] = ACTIONS(4581), + [anon_sym_internal] = ACTIONS(4581), + [anon_sym_protected] = ACTIONS(4581), + [anon_sym_tailrec] = ACTIONS(4581), + [anon_sym_operator] = ACTIONS(4581), + [anon_sym_infix] = ACTIONS(4581), + [anon_sym_inline] = ACTIONS(4581), + [anon_sym_external] = ACTIONS(4581), + [sym_property_modifier] = ACTIONS(4581), + [anon_sym_abstract] = ACTIONS(4581), + [anon_sym_final] = ACTIONS(4581), + [anon_sym_open] = ACTIONS(4581), + [anon_sym_vararg] = ACTIONS(4581), + [anon_sym_noinline] = ACTIONS(4581), + [anon_sym_crossinline] = ACTIONS(4581), + [anon_sym_expect] = ACTIONS(4581), + [anon_sym_actual] = ACTIONS(4581), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4583), + [sym__automatic_semicolon] = ACTIONS(4583), + [sym_safe_nav] = ACTIONS(4583), + [sym_multiline_comment] = ACTIONS(3), + }, + [3806] = { + [sym__alpha_identifier] = ACTIONS(4313), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_typealias] = ACTIONS(4313), + [anon_sym_class] = ACTIONS(4313), + [anon_sym_interface] = ACTIONS(4313), + [anon_sym_enum] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_val] = ACTIONS(4313), + [anon_sym_var] = ACTIONS(4313), + [anon_sym_object] = ACTIONS(4313), + [anon_sym_fun] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4313), + [anon_sym_set] = ACTIONS(4313), + [anon_sym_this] = ACTIONS(4313), + [anon_sym_super] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4315), + [sym_label] = ACTIONS(4313), + [anon_sym_for] = ACTIONS(4313), + [anon_sym_while] = ACTIONS(4313), + [anon_sym_do] = ACTIONS(4313), + [anon_sym_null] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4313), + [anon_sym_when] = ACTIONS(4313), + [anon_sym_try] = ACTIONS(4313), + [anon_sym_throw] = ACTIONS(4313), + [anon_sym_return] = ACTIONS(4313), + [anon_sym_continue] = ACTIONS(4313), + [anon_sym_break] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(4315), + [anon_sym_suspend] = ACTIONS(4313), + [anon_sym_sealed] = ACTIONS(4313), + [anon_sym_annotation] = ACTIONS(4313), + [anon_sym_data] = ACTIONS(4313), + [anon_sym_inner] = ACTIONS(4313), + [anon_sym_value] = ACTIONS(4313), + [anon_sym_override] = ACTIONS(4313), + [anon_sym_lateinit] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_internal] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_tailrec] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_infix] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym_external] = ACTIONS(4313), + [sym_property_modifier] = ACTIONS(4313), + [anon_sym_abstract] = ACTIONS(4313), + [anon_sym_final] = ACTIONS(4313), + [anon_sym_open] = ACTIONS(4313), + [anon_sym_vararg] = ACTIONS(4313), + [anon_sym_noinline] = ACTIONS(4313), + [anon_sym_crossinline] = ACTIONS(4313), + [anon_sym_expect] = ACTIONS(4313), + [anon_sym_actual] = ACTIONS(4313), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4315), + [anon_sym_continue_AT] = ACTIONS(4315), + [anon_sym_break_AT] = ACTIONS(4315), + [anon_sym_this_AT] = ACTIONS(4315), + [anon_sym_super_AT] = ACTIONS(4315), + [sym_real_literal] = ACTIONS(4315), + [sym_integer_literal] = ACTIONS(4313), + [sym_hex_literal] = ACTIONS(4315), + [sym_bin_literal] = ACTIONS(4315), + [anon_sym_true] = ACTIONS(4313), + [anon_sym_false] = ACTIONS(4313), + [anon_sym_SQUOTE] = ACTIONS(4315), + [sym__backtick_identifier] = ACTIONS(4315), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4315), + }, + [3807] = { + [sym__alpha_identifier] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4672), + [anon_sym_RBRACE] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4672), + [anon_sym_COMMA] = ACTIONS(4672), + [anon_sym_by] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4670), + [anon_sym_where] = ACTIONS(4670), + [anon_sym_DOT] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4672), + [anon_sym_get] = ACTIONS(4670), + [anon_sym_set] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4670), + [sym_label] = ACTIONS(4672), + [anon_sym_in] = ACTIONS(4670), + [anon_sym_DOT_DOT] = ACTIONS(4672), + [anon_sym_QMARK_COLON] = ACTIONS(4672), + [anon_sym_AMP_AMP] = ACTIONS(4672), + [anon_sym_PIPE_PIPE] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_PLUS_EQ] = ACTIONS(4672), + [anon_sym_DASH_EQ] = ACTIONS(4672), + [anon_sym_STAR_EQ] = ACTIONS(4672), + [anon_sym_SLASH_EQ] = ACTIONS(4672), + [anon_sym_PERCENT_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4672), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4672), + [anon_sym_BANGin] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(4670), + [anon_sym_BANGis] = ACTIONS(4672), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_SLASH] = ACTIONS(4670), + [anon_sym_PERCENT] = ACTIONS(4670), + [anon_sym_as_QMARK] = ACTIONS(4672), + [anon_sym_PLUS_PLUS] = ACTIONS(4672), + [anon_sym_DASH_DASH] = ACTIONS(4672), + [anon_sym_BANG_BANG] = ACTIONS(4672), + [anon_sym_suspend] = ACTIONS(4670), + [anon_sym_sealed] = ACTIONS(4670), + [anon_sym_annotation] = ACTIONS(4670), + [anon_sym_data] = ACTIONS(4670), + [anon_sym_inner] = ACTIONS(4670), + [anon_sym_value] = ACTIONS(4670), + [anon_sym_override] = ACTIONS(4670), + [anon_sym_lateinit] = ACTIONS(4670), + [anon_sym_public] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4670), + [anon_sym_internal] = ACTIONS(4670), + [anon_sym_protected] = ACTIONS(4670), + [anon_sym_tailrec] = ACTIONS(4670), + [anon_sym_operator] = ACTIONS(4670), + [anon_sym_infix] = ACTIONS(4670), + [anon_sym_inline] = ACTIONS(4670), + [anon_sym_external] = ACTIONS(4670), + [sym_property_modifier] = ACTIONS(4670), + [anon_sym_abstract] = ACTIONS(4670), + [anon_sym_final] = ACTIONS(4670), + [anon_sym_open] = ACTIONS(4670), + [anon_sym_vararg] = ACTIONS(4670), + [anon_sym_noinline] = ACTIONS(4670), + [anon_sym_crossinline] = ACTIONS(4670), + [anon_sym_expect] = ACTIONS(4670), + [anon_sym_actual] = ACTIONS(4670), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4672), + [sym__automatic_semicolon] = ACTIONS(4672), + [sym_safe_nav] = ACTIONS(4672), + [sym_multiline_comment] = ACTIONS(3), + }, + [3808] = { + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(7129), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [3809] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), + }, + [3810] = { + [sym_enum_class_body] = STATE(3967), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + }, + [3811] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), + }, + [3812] = { + [sym_function_body] = STATE(3258), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(7131), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4277), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4277), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), + }, + [3813] = { + [sym_class_body] = STATE(3833), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4495), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), + }, + [3814] = { + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [3815] = { + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_as] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_COMMA] = ACTIONS(4734), + [anon_sym_by] = ACTIONS(4732), + [anon_sym_LT] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), + [anon_sym_set] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [sym_label] = ACTIONS(4734), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_QMARK_COLON] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4734), + [anon_sym_DASH_EQ] = ACTIONS(4734), + [anon_sym_STAR_EQ] = ACTIONS(4734), + [anon_sym_SLASH_EQ] = ACTIONS(4734), + [anon_sym_PERCENT_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_as_QMARK] = ACTIONS(4734), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG_BANG] = ACTIONS(4734), + [anon_sym_suspend] = ACTIONS(4732), + [anon_sym_sealed] = ACTIONS(4732), + [anon_sym_annotation] = ACTIONS(4732), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_override] = ACTIONS(4732), + [anon_sym_lateinit] = ACTIONS(4732), + [anon_sym_public] = ACTIONS(4732), + [anon_sym_private] = ACTIONS(4732), + [anon_sym_internal] = ACTIONS(4732), + [anon_sym_protected] = ACTIONS(4732), + [anon_sym_tailrec] = ACTIONS(4732), + [anon_sym_operator] = ACTIONS(4732), + [anon_sym_infix] = ACTIONS(4732), + [anon_sym_inline] = ACTIONS(4732), + [anon_sym_external] = ACTIONS(4732), + [sym_property_modifier] = ACTIONS(4732), + [anon_sym_abstract] = ACTIONS(4732), + [anon_sym_final] = ACTIONS(4732), + [anon_sym_open] = ACTIONS(4732), + [anon_sym_vararg] = ACTIONS(4732), + [anon_sym_noinline] = ACTIONS(4732), + [anon_sym_crossinline] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4734), + [sym__automatic_semicolon] = ACTIONS(4734), + [sym_safe_nav] = ACTIONS(4734), + [sym_multiline_comment] = ACTIONS(3), + }, + [3816] = { + [sym_class_body] = STATE(3832), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + }, + [3817] = { + [sym__alpha_identifier] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4681), + [anon_sym_LBRACK] = ACTIONS(4681), + [anon_sym_as] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_LBRACE] = ACTIONS(4681), + [anon_sym_RBRACE] = ACTIONS(4681), + [anon_sym_LPAREN] = ACTIONS(4681), + [anon_sym_COMMA] = ACTIONS(4681), + [anon_sym_by] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_where] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4681), + [anon_sym_get] = ACTIONS(4678), + [anon_sym_set] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4678), + [sym_label] = ACTIONS(4681), + [anon_sym_in] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4681), + [anon_sym_QMARK_COLON] = ACTIONS(4681), + [anon_sym_AMP_AMP] = ACTIONS(4681), + [anon_sym_PIPE_PIPE] = ACTIONS(4681), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4681), + [anon_sym_PLUS_EQ] = ACTIONS(4681), + [anon_sym_DASH_EQ] = ACTIONS(4681), + [anon_sym_STAR_EQ] = ACTIONS(4681), + [anon_sym_SLASH_EQ] = ACTIONS(4681), + [anon_sym_PERCENT_EQ] = ACTIONS(4681), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4681), + [anon_sym_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4681), + [anon_sym_LT_EQ] = ACTIONS(4681), + [anon_sym_GT_EQ] = ACTIONS(4681), + [anon_sym_BANGin] = ACTIONS(4681), + [anon_sym_is] = ACTIONS(4678), + [anon_sym_BANGis] = ACTIONS(4681), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_as_QMARK] = ACTIONS(4681), + [anon_sym_PLUS_PLUS] = ACTIONS(4681), + [anon_sym_DASH_DASH] = ACTIONS(4681), + [anon_sym_BANG_BANG] = ACTIONS(4681), + [anon_sym_suspend] = ACTIONS(4678), + [anon_sym_sealed] = ACTIONS(4678), + [anon_sym_annotation] = ACTIONS(4678), + [anon_sym_data] = ACTIONS(4678), + [anon_sym_inner] = ACTIONS(4678), + [anon_sym_value] = ACTIONS(4678), + [anon_sym_override] = ACTIONS(4678), + [anon_sym_lateinit] = ACTIONS(4678), + [anon_sym_public] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4678), + [anon_sym_internal] = ACTIONS(4678), + [anon_sym_protected] = ACTIONS(4678), + [anon_sym_tailrec] = ACTIONS(4678), + [anon_sym_operator] = ACTIONS(4678), + [anon_sym_infix] = ACTIONS(4678), + [anon_sym_inline] = ACTIONS(4678), + [anon_sym_external] = ACTIONS(4678), + [sym_property_modifier] = ACTIONS(4678), + [anon_sym_abstract] = ACTIONS(4678), + [anon_sym_final] = ACTIONS(4678), + [anon_sym_open] = ACTIONS(4678), + [anon_sym_vararg] = ACTIONS(4678), + [anon_sym_noinline] = ACTIONS(4678), + [anon_sym_crossinline] = ACTIONS(4678), + [anon_sym_expect] = ACTIONS(4678), + [anon_sym_actual] = ACTIONS(4678), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4681), + [sym__automatic_semicolon] = ACTIONS(4681), + [sym_safe_nav] = ACTIONS(4681), + [sym_multiline_comment] = ACTIONS(3), + }, + [3818] = { + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [sym_label] = ACTIONS(4712), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_suspend] = ACTIONS(4710), + [anon_sym_sealed] = ACTIONS(4710), + [anon_sym_annotation] = ACTIONS(4710), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_lateinit] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4710), + [anon_sym_internal] = ACTIONS(4710), + [anon_sym_protected] = ACTIONS(4710), + [anon_sym_tailrec] = ACTIONS(4710), + [anon_sym_operator] = ACTIONS(4710), + [anon_sym_infix] = ACTIONS(4710), + [anon_sym_inline] = ACTIONS(4710), + [anon_sym_external] = ACTIONS(4710), + [sym_property_modifier] = ACTIONS(4710), + [anon_sym_abstract] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_open] = ACTIONS(4710), + [anon_sym_vararg] = ACTIONS(4710), + [anon_sym_noinline] = ACTIONS(4710), + [anon_sym_crossinline] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [anon_sym_AT2] = ACTIONS(7133), + [sym__backtick_identifier] = ACTIONS(4712), + [sym__automatic_semicolon] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), + [sym_multiline_comment] = ACTIONS(3), + }, + [3819] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4206), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + }, + [3820] = { + [sym_enum_class_body] = STATE(3832), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + }, + [3821] = { + [sym__alpha_identifier] = ACTIONS(4728), + [anon_sym_AT] = ACTIONS(4730), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_as] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4730), + [anon_sym_RBRACE] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4730), + [anon_sym_COMMA] = ACTIONS(4730), + [anon_sym_by] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_where] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_get] = ACTIONS(4728), + [anon_sym_set] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [sym_label] = ACTIONS(4730), + [anon_sym_in] = ACTIONS(4728), + [anon_sym_DOT_DOT] = ACTIONS(4730), + [anon_sym_QMARK_COLON] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_else] = ACTIONS(4728), + [anon_sym_COLON_COLON] = ACTIONS(4730), + [anon_sym_PLUS_EQ] = ACTIONS(4730), + [anon_sym_DASH_EQ] = ACTIONS(4730), + [anon_sym_STAR_EQ] = ACTIONS(4730), + [anon_sym_SLASH_EQ] = ACTIONS(4730), + [anon_sym_PERCENT_EQ] = ACTIONS(4730), + [anon_sym_BANG_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4730), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4730), + [anon_sym_LT_EQ] = ACTIONS(4730), + [anon_sym_GT_EQ] = ACTIONS(4730), + [anon_sym_BANGin] = ACTIONS(4730), + [anon_sym_is] = ACTIONS(4728), + [anon_sym_BANGis] = ACTIONS(4730), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4728), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4730), + [anon_sym_PLUS_PLUS] = ACTIONS(4730), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_BANG_BANG] = ACTIONS(4730), + [anon_sym_suspend] = ACTIONS(4728), + [anon_sym_sealed] = ACTIONS(4728), + [anon_sym_annotation] = ACTIONS(4728), + [anon_sym_data] = ACTIONS(4728), + [anon_sym_inner] = ACTIONS(4728), + [anon_sym_value] = ACTIONS(4728), + [anon_sym_override] = ACTIONS(4728), + [anon_sym_lateinit] = ACTIONS(4728), + [anon_sym_public] = ACTIONS(4728), + [anon_sym_private] = ACTIONS(4728), + [anon_sym_internal] = ACTIONS(4728), + [anon_sym_protected] = ACTIONS(4728), + [anon_sym_tailrec] = ACTIONS(4728), + [anon_sym_operator] = ACTIONS(4728), + [anon_sym_infix] = ACTIONS(4728), + [anon_sym_inline] = ACTIONS(4728), + [anon_sym_external] = ACTIONS(4728), + [sym_property_modifier] = ACTIONS(4728), + [anon_sym_abstract] = ACTIONS(4728), + [anon_sym_final] = ACTIONS(4728), + [anon_sym_open] = ACTIONS(4728), + [anon_sym_vararg] = ACTIONS(4728), + [anon_sym_noinline] = ACTIONS(4728), + [anon_sym_crossinline] = ACTIONS(4728), + [anon_sym_expect] = ACTIONS(4728), + [anon_sym_actual] = ACTIONS(4728), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4730), + [sym__automatic_semicolon] = ACTIONS(4730), + [sym_safe_nav] = ACTIONS(4730), + [sym_multiline_comment] = ACTIONS(3), + }, + [3822] = { + [sym_class_body] = STATE(3962), + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [sym_label] = ACTIONS(4646), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_suspend] = ACTIONS(4644), + [anon_sym_sealed] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4644), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_override] = ACTIONS(4644), + [anon_sym_lateinit] = ACTIONS(4644), + [anon_sym_public] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4644), + [anon_sym_internal] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4644), + [anon_sym_tailrec] = ACTIONS(4644), + [anon_sym_operator] = ACTIONS(4644), + [anon_sym_infix] = ACTIONS(4644), + [anon_sym_inline] = ACTIONS(4644), + [anon_sym_external] = ACTIONS(4644), + [sym_property_modifier] = ACTIONS(4644), + [anon_sym_abstract] = ACTIONS(4644), + [anon_sym_final] = ACTIONS(4644), + [anon_sym_open] = ACTIONS(4644), + [anon_sym_vararg] = ACTIONS(4644), + [anon_sym_noinline] = ACTIONS(4644), + [anon_sym_crossinline] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4646), + [sym__automatic_semicolon] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), + [sym_multiline_comment] = ACTIONS(3), + }, + [3823] = { + [sym_enum_class_body] = STATE(3952), [sym__alpha_identifier] = ACTIONS(4321), [anon_sym_AT] = ACTIONS(4323), - [anon_sym_COLON] = ACTIONS(7223), [anon_sym_LBRACK] = ACTIONS(4323), [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5820), [anon_sym_RBRACE] = ACTIONS(4323), [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), [anon_sym_LT] = ACTIONS(4321), [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), [anon_sym_DOT] = ACTIONS(4321), [anon_sym_SEMI] = ACTIONS(4323), [anon_sym_get] = ACTIONS(4321), @@ -434467,183 +430644,1220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, - [3841] = { - [sym_function_body] = STATE(3960), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [sym_label] = ACTIONS(4341), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_PLUS_EQ] = ACTIONS(4341), - [anon_sym_DASH_EQ] = ACTIONS(4341), - [anon_sym_STAR_EQ] = ACTIONS(4341), - [anon_sym_SLASH_EQ] = ACTIONS(4341), - [anon_sym_PERCENT_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4339), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), + [3824] = { + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_typealias] = ACTIONS(4317), + [anon_sym_class] = ACTIONS(4317), + [anon_sym_interface] = ACTIONS(4317), + [anon_sym_enum] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_val] = ACTIONS(4317), + [anon_sym_var] = ACTIONS(4317), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_this] = ACTIONS(4317), + [anon_sym_super] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4319), + [sym_label] = ACTIONS(4317), + [anon_sym_for] = ACTIONS(4317), + [anon_sym_while] = ACTIONS(4317), + [anon_sym_do] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4317), + [anon_sym_if] = ACTIONS(4317), + [anon_sym_when] = ACTIONS(4317), + [anon_sym_try] = ACTIONS(4317), + [anon_sym_throw] = ACTIONS(4317), + [anon_sym_return] = ACTIONS(4317), + [anon_sym_continue] = ACTIONS(4317), + [anon_sym_break] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [anon_sym_BANG] = ACTIONS(4319), + [anon_sym_suspend] = ACTIONS(4317), + [anon_sym_sealed] = ACTIONS(4317), + [anon_sym_annotation] = ACTIONS(4317), + [anon_sym_data] = ACTIONS(4317), + [anon_sym_inner] = ACTIONS(4317), + [anon_sym_value] = ACTIONS(4317), + [anon_sym_override] = ACTIONS(4317), + [anon_sym_lateinit] = ACTIONS(4317), + [anon_sym_public] = ACTIONS(4317), + [anon_sym_private] = ACTIONS(4317), + [anon_sym_internal] = ACTIONS(4317), + [anon_sym_protected] = ACTIONS(4317), + [anon_sym_tailrec] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_infix] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym_external] = ACTIONS(4317), + [sym_property_modifier] = ACTIONS(4317), + [anon_sym_abstract] = ACTIONS(4317), + [anon_sym_final] = ACTIONS(4317), + [anon_sym_open] = ACTIONS(4317), + [anon_sym_vararg] = ACTIONS(4317), + [anon_sym_noinline] = ACTIONS(4317), + [anon_sym_crossinline] = ACTIONS(4317), + [anon_sym_expect] = ACTIONS(4317), + [anon_sym_actual] = ACTIONS(4317), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), + [anon_sym_return_AT] = ACTIONS(4319), + [anon_sym_continue_AT] = ACTIONS(4319), + [anon_sym_break_AT] = ACTIONS(4319), + [anon_sym_this_AT] = ACTIONS(4319), + [anon_sym_super_AT] = ACTIONS(4319), + [sym_real_literal] = ACTIONS(4319), + [sym_integer_literal] = ACTIONS(4317), + [sym_hex_literal] = ACTIONS(4319), + [sym_bin_literal] = ACTIONS(4319), + [anon_sym_true] = ACTIONS(4317), + [anon_sym_false] = ACTIONS(4317), + [anon_sym_SQUOTE] = ACTIONS(4319), + [sym__backtick_identifier] = ACTIONS(4319), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4319), + }, + [3825] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(6954), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), [sym_multiline_comment] = ACTIONS(3), }, - [3842] = { - [sym__alpha_identifier] = ACTIONS(4699), - [anon_sym_AT] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_as] = ACTIONS(4699), - [anon_sym_EQ] = ACTIONS(4699), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_RBRACE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_where] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_get] = ACTIONS(4699), - [anon_sym_set] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [sym_label] = ACTIONS(4701), - [anon_sym_in] = ACTIONS(4699), - [anon_sym_DOT_DOT] = ACTIONS(4701), - [anon_sym_QMARK_COLON] = ACTIONS(4701), - [anon_sym_AMP_AMP] = ACTIONS(4701), - [anon_sym_PIPE_PIPE] = ACTIONS(4701), - [anon_sym_else] = ACTIONS(4699), - [anon_sym_COLON_COLON] = ACTIONS(4701), - [anon_sym_PLUS_EQ] = ACTIONS(4701), - [anon_sym_DASH_EQ] = ACTIONS(4701), - [anon_sym_STAR_EQ] = ACTIONS(4701), - [anon_sym_SLASH_EQ] = ACTIONS(4701), - [anon_sym_PERCENT_EQ] = ACTIONS(4701), - [anon_sym_BANG_EQ] = ACTIONS(4699), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4701), - [anon_sym_EQ_EQ] = ACTIONS(4699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4701), - [anon_sym_LT_EQ] = ACTIONS(4701), - [anon_sym_GT_EQ] = ACTIONS(4701), - [anon_sym_BANGin] = ACTIONS(4701), - [anon_sym_is] = ACTIONS(4699), - [anon_sym_BANGis] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_PERCENT] = ACTIONS(4699), - [anon_sym_as_QMARK] = ACTIONS(4701), - [anon_sym_PLUS_PLUS] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4701), - [anon_sym_BANG_BANG] = ACTIONS(4701), - [anon_sym_suspend] = ACTIONS(4699), - [anon_sym_sealed] = ACTIONS(4699), - [anon_sym_annotation] = ACTIONS(4699), - [anon_sym_data] = ACTIONS(4699), - [anon_sym_inner] = ACTIONS(4699), - [anon_sym_value] = ACTIONS(4699), - [anon_sym_override] = ACTIONS(4699), - [anon_sym_lateinit] = ACTIONS(4699), - [anon_sym_public] = ACTIONS(4699), - [anon_sym_private] = ACTIONS(4699), - [anon_sym_internal] = ACTIONS(4699), - [anon_sym_protected] = ACTIONS(4699), - [anon_sym_tailrec] = ACTIONS(4699), - [anon_sym_operator] = ACTIONS(4699), - [anon_sym_infix] = ACTIONS(4699), - [anon_sym_inline] = ACTIONS(4699), - [anon_sym_external] = ACTIONS(4699), - [sym_property_modifier] = ACTIONS(4699), - [anon_sym_abstract] = ACTIONS(4699), - [anon_sym_final] = ACTIONS(4699), - [anon_sym_open] = ACTIONS(4699), - [anon_sym_vararg] = ACTIONS(4699), - [anon_sym_noinline] = ACTIONS(4699), - [anon_sym_crossinline] = ACTIONS(4699), - [anon_sym_expect] = ACTIONS(4699), - [anon_sym_actual] = ACTIONS(4699), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4701), - [sym__automatic_semicolon] = ACTIONS(4701), - [sym_safe_nav] = ACTIONS(4701), + [3826] = { + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_as] = ACTIONS(4762), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4765), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_by] = ACTIONS(4762), + [anon_sym_LT] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [sym_label] = ACTIONS(4765), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_DOT_DOT] = ACTIONS(4765), + [anon_sym_QMARK_COLON] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4765), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_BANGin] = ACTIONS(4765), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4765), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_SLASH] = ACTIONS(4762), + [anon_sym_PERCENT] = ACTIONS(4762), + [anon_sym_as_QMARK] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_BANG_BANG] = ACTIONS(4765), + [anon_sym_suspend] = ACTIONS(4762), + [anon_sym_sealed] = ACTIONS(4762), + [anon_sym_annotation] = ACTIONS(4762), + [anon_sym_data] = ACTIONS(4762), + [anon_sym_inner] = ACTIONS(4762), + [anon_sym_value] = ACTIONS(4762), + [anon_sym_override] = ACTIONS(4762), + [anon_sym_lateinit] = ACTIONS(4762), + [anon_sym_public] = ACTIONS(4762), + [anon_sym_private] = ACTIONS(4762), + [anon_sym_internal] = ACTIONS(4762), + [anon_sym_protected] = ACTIONS(4762), + [anon_sym_tailrec] = ACTIONS(4762), + [anon_sym_operator] = ACTIONS(4762), + [anon_sym_infix] = ACTIONS(4762), + [anon_sym_inline] = ACTIONS(4762), + [anon_sym_external] = ACTIONS(4762), + [sym_property_modifier] = ACTIONS(4762), + [anon_sym_abstract] = ACTIONS(4762), + [anon_sym_final] = ACTIONS(4762), + [anon_sym_open] = ACTIONS(4762), + [anon_sym_vararg] = ACTIONS(4762), + [anon_sym_noinline] = ACTIONS(4762), + [anon_sym_crossinline] = ACTIONS(4762), + [anon_sym_expect] = ACTIONS(4762), + [anon_sym_actual] = ACTIONS(4762), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4765), + [sym__automatic_semicolon] = ACTIONS(4765), + [sym_safe_nav] = ACTIONS(4765), [sym_multiline_comment] = ACTIONS(3), }, - [3843] = { - [sym_function_body] = STATE(3534), - [sym__block] = STATE(3620), + [3827] = { + [sym__alpha_identifier] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4760), + [anon_sym_COLON] = ACTIONS(4758), + [anon_sym_LBRACK] = ACTIONS(4760), + [anon_sym_as] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4760), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4760), + [anon_sym_COMMA] = ACTIONS(4760), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_where] = ACTIONS(4758), + [anon_sym_DOT] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4760), + [anon_sym_get] = ACTIONS(4758), + [anon_sym_set] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4758), + [sym_label] = ACTIONS(4760), + [anon_sym_in] = ACTIONS(4758), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_QMARK_COLON] = ACTIONS(4760), + [anon_sym_AMP_AMP] = ACTIONS(4760), + [anon_sym_PIPE_PIPE] = ACTIONS(4760), + [anon_sym_else] = ACTIONS(4758), + [anon_sym_COLON_COLON] = ACTIONS(4760), + [anon_sym_PLUS_EQ] = ACTIONS(4760), + [anon_sym_DASH_EQ] = ACTIONS(4760), + [anon_sym_STAR_EQ] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(4760), + [anon_sym_PERCENT_EQ] = ACTIONS(4760), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4760), + [anon_sym_BANGin] = ACTIONS(4760), + [anon_sym_is] = ACTIONS(4758), + [anon_sym_BANGis] = ACTIONS(4760), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_SLASH] = ACTIONS(4758), + [anon_sym_PERCENT] = ACTIONS(4758), + [anon_sym_as_QMARK] = ACTIONS(4760), + [anon_sym_PLUS_PLUS] = ACTIONS(4760), + [anon_sym_DASH_DASH] = ACTIONS(4760), + [anon_sym_BANG_BANG] = ACTIONS(4760), + [anon_sym_suspend] = ACTIONS(4758), + [anon_sym_sealed] = ACTIONS(4758), + [anon_sym_annotation] = ACTIONS(4758), + [anon_sym_data] = ACTIONS(4758), + [anon_sym_inner] = ACTIONS(4758), + [anon_sym_value] = ACTIONS(4758), + [anon_sym_override] = ACTIONS(4758), + [anon_sym_lateinit] = ACTIONS(4758), + [anon_sym_public] = ACTIONS(4758), + [anon_sym_private] = ACTIONS(4758), + [anon_sym_internal] = ACTIONS(4758), + [anon_sym_protected] = ACTIONS(4758), + [anon_sym_tailrec] = ACTIONS(4758), + [anon_sym_operator] = ACTIONS(4758), + [anon_sym_infix] = ACTIONS(4758), + [anon_sym_inline] = ACTIONS(4758), + [anon_sym_external] = ACTIONS(4758), + [sym_property_modifier] = ACTIONS(4758), + [anon_sym_abstract] = ACTIONS(4758), + [anon_sym_final] = ACTIONS(4758), + [anon_sym_open] = ACTIONS(4758), + [anon_sym_vararg] = ACTIONS(4758), + [anon_sym_noinline] = ACTIONS(4758), + [anon_sym_crossinline] = ACTIONS(4758), + [anon_sym_expect] = ACTIONS(4758), + [anon_sym_actual] = ACTIONS(4758), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4760), + [sym__automatic_semicolon] = ACTIONS(4760), + [sym_safe_nav] = ACTIONS(4760), + [sym_multiline_comment] = ACTIONS(3), + }, + [3828] = { + [sym__alpha_identifier] = ACTIONS(4798), + [anon_sym_AT] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_as] = ACTIONS(4798), + [anon_sym_EQ] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4800), + [anon_sym_RBRACE] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4800), + [anon_sym_COMMA] = ACTIONS(4800), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_where] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_get] = ACTIONS(4798), + [anon_sym_set] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4798), + [sym_label] = ACTIONS(4800), + [anon_sym_in] = ACTIONS(4798), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_QMARK_COLON] = ACTIONS(4800), + [anon_sym_AMP_AMP] = ACTIONS(4800), + [anon_sym_PIPE_PIPE] = ACTIONS(4800), + [anon_sym_else] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_PLUS_EQ] = ACTIONS(4800), + [anon_sym_DASH_EQ] = ACTIONS(4800), + [anon_sym_STAR_EQ] = ACTIONS(4800), + [anon_sym_SLASH_EQ] = ACTIONS(4800), + [anon_sym_PERCENT_EQ] = ACTIONS(4800), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4800), + [anon_sym_BANGin] = ACTIONS(4800), + [anon_sym_is] = ACTIONS(4798), + [anon_sym_BANGis] = ACTIONS(4800), + [anon_sym_PLUS] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_SLASH] = ACTIONS(4798), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4800), + [anon_sym_PLUS_PLUS] = ACTIONS(4800), + [anon_sym_DASH_DASH] = ACTIONS(4800), + [anon_sym_BANG_BANG] = ACTIONS(4800), + [anon_sym_suspend] = ACTIONS(4798), + [anon_sym_sealed] = ACTIONS(4798), + [anon_sym_annotation] = ACTIONS(4798), + [anon_sym_data] = ACTIONS(4798), + [anon_sym_inner] = ACTIONS(4798), + [anon_sym_value] = ACTIONS(4798), + [anon_sym_override] = ACTIONS(4798), + [anon_sym_lateinit] = ACTIONS(4798), + [anon_sym_public] = ACTIONS(4798), + [anon_sym_private] = ACTIONS(4798), + [anon_sym_internal] = ACTIONS(4798), + [anon_sym_protected] = ACTIONS(4798), + [anon_sym_tailrec] = ACTIONS(4798), + [anon_sym_operator] = ACTIONS(4798), + [anon_sym_infix] = ACTIONS(4798), + [anon_sym_inline] = ACTIONS(4798), + [anon_sym_external] = ACTIONS(4798), + [sym_property_modifier] = ACTIONS(4798), + [anon_sym_abstract] = ACTIONS(4798), + [anon_sym_final] = ACTIONS(4798), + [anon_sym_open] = ACTIONS(4798), + [anon_sym_vararg] = ACTIONS(4798), + [anon_sym_noinline] = ACTIONS(4798), + [anon_sym_crossinline] = ACTIONS(4798), + [anon_sym_expect] = ACTIONS(4798), + [anon_sym_actual] = ACTIONS(4798), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4800), + [sym__automatic_semicolon] = ACTIONS(4800), + [sym_safe_nav] = ACTIONS(4800), + [sym_multiline_comment] = ACTIONS(3), + }, + [3829] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [3830] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3835), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), + }, + [3831] = { + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4569), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [sym_label] = ACTIONS(4569), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_suspend] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_annotation] = ACTIONS(4567), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_lateinit] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_tailrec] = ACTIONS(4567), + [anon_sym_operator] = ACTIONS(4567), + [anon_sym_infix] = ACTIONS(4567), + [anon_sym_inline] = ACTIONS(4567), + [anon_sym_external] = ACTIONS(4567), + [sym_property_modifier] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_final] = ACTIONS(4567), + [anon_sym_open] = ACTIONS(4567), + [anon_sym_vararg] = ACTIONS(4567), + [anon_sym_noinline] = ACTIONS(4567), + [anon_sym_crossinline] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4569), + [sym__automatic_semicolon] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), + [sym_multiline_comment] = ACTIONS(3), + }, + [3832] = { + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + }, + [3833] = { + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [sym_label] = ACTIONS(4646), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_suspend] = ACTIONS(4644), + [anon_sym_sealed] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4644), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_override] = ACTIONS(4644), + [anon_sym_lateinit] = ACTIONS(4644), + [anon_sym_public] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4644), + [anon_sym_internal] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4644), + [anon_sym_tailrec] = ACTIONS(4644), + [anon_sym_operator] = ACTIONS(4644), + [anon_sym_infix] = ACTIONS(4644), + [anon_sym_inline] = ACTIONS(4644), + [anon_sym_external] = ACTIONS(4644), + [sym_property_modifier] = ACTIONS(4644), + [anon_sym_abstract] = ACTIONS(4644), + [anon_sym_final] = ACTIONS(4644), + [anon_sym_open] = ACTIONS(4644), + [anon_sym_vararg] = ACTIONS(4644), + [anon_sym_noinline] = ACTIONS(4644), + [anon_sym_crossinline] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4646), + [sym__automatic_semicolon] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), + [sym_multiline_comment] = ACTIONS(3), + }, + [3834] = { + [sym__alpha_identifier] = ACTIONS(4884), + [anon_sym_AT] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_as] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4886), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4886), + [anon_sym_COMMA] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_where] = ACTIONS(4884), + [anon_sym_DOT] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4886), + [anon_sym_get] = ACTIONS(4884), + [anon_sym_set] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [sym_label] = ACTIONS(4886), + [anon_sym_in] = ACTIONS(4884), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_QMARK_COLON] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_PIPE_PIPE] = ACTIONS(4886), + [anon_sym_else] = ACTIONS(4884), + [anon_sym_COLON_COLON] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4886), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(4884), + [anon_sym_BANGis] = ACTIONS(4886), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_as_QMARK] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4886), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_BANG_BANG] = ACTIONS(4886), + [anon_sym_suspend] = ACTIONS(4884), + [anon_sym_sealed] = ACTIONS(4884), + [anon_sym_annotation] = ACTIONS(4884), + [anon_sym_data] = ACTIONS(4884), + [anon_sym_inner] = ACTIONS(4884), + [anon_sym_value] = ACTIONS(4884), + [anon_sym_override] = ACTIONS(4884), + [anon_sym_lateinit] = ACTIONS(4884), + [anon_sym_public] = ACTIONS(4884), + [anon_sym_private] = ACTIONS(4884), + [anon_sym_internal] = ACTIONS(4884), + [anon_sym_protected] = ACTIONS(4884), + [anon_sym_tailrec] = ACTIONS(4884), + [anon_sym_operator] = ACTIONS(4884), + [anon_sym_infix] = ACTIONS(4884), + [anon_sym_inline] = ACTIONS(4884), + [anon_sym_external] = ACTIONS(4884), + [sym_property_modifier] = ACTIONS(4884), + [anon_sym_abstract] = ACTIONS(4884), + [anon_sym_final] = ACTIONS(4884), + [anon_sym_open] = ACTIONS(4884), + [anon_sym_vararg] = ACTIONS(4884), + [anon_sym_noinline] = ACTIONS(4884), + [anon_sym_crossinline] = ACTIONS(4884), + [anon_sym_expect] = ACTIONS(4884), + [anon_sym_actual] = ACTIONS(4884), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4886), + [sym__automatic_semicolon] = ACTIONS(4886), + [sym_safe_nav] = ACTIONS(4886), + [sym_multiline_comment] = ACTIONS(3), + }, + [3835] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3835), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_object] = ACTIONS(4633), + [anon_sym_fun] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_this] = ACTIONS(4633), + [anon_sym_super] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4635), + [sym_label] = ACTIONS(4633), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_null] = ACTIONS(4633), + [anon_sym_if] = ACTIONS(4633), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_when] = ACTIONS(4633), + [anon_sym_try] = ACTIONS(4633), + [anon_sym_throw] = ACTIONS(4633), + [anon_sym_return] = ACTIONS(4633), + [anon_sym_continue] = ACTIONS(4633), + [anon_sym_break] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4633), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4635), + [anon_sym_continue_AT] = ACTIONS(4635), + [anon_sym_break_AT] = ACTIONS(4635), + [anon_sym_this_AT] = ACTIONS(4635), + [anon_sym_super_AT] = ACTIONS(4635), + [sym_real_literal] = ACTIONS(4635), + [sym_integer_literal] = ACTIONS(4633), + [sym_hex_literal] = ACTIONS(4635), + [sym_bin_literal] = ACTIONS(4635), + [anon_sym_true] = ACTIONS(4633), + [anon_sym_false] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4635), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4635), + }, + [3836] = { + [sym__alpha_identifier] = ACTIONS(5117), + [anon_sym_AT] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [anon_sym_as] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5119), + [anon_sym_RBRACE] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5119), + [anon_sym_COMMA] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5117), + [anon_sym_GT] = ACTIONS(5117), + [anon_sym_where] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5117), + [anon_sym_SEMI] = ACTIONS(5119), + [anon_sym_get] = ACTIONS(5117), + [anon_sym_set] = ACTIONS(5117), + [anon_sym_STAR] = ACTIONS(5117), + [sym_label] = ACTIONS(5119), + [anon_sym_in] = ACTIONS(5117), + [anon_sym_DOT_DOT] = ACTIONS(5119), + [anon_sym_QMARK_COLON] = ACTIONS(5119), + [anon_sym_AMP_AMP] = ACTIONS(5119), + [anon_sym_PIPE_PIPE] = ACTIONS(5119), + [anon_sym_else] = ACTIONS(5117), + [anon_sym_COLON_COLON] = ACTIONS(5119), + [anon_sym_PLUS_EQ] = ACTIONS(5119), + [anon_sym_DASH_EQ] = ACTIONS(5119), + [anon_sym_STAR_EQ] = ACTIONS(5119), + [anon_sym_SLASH_EQ] = ACTIONS(5119), + [anon_sym_PERCENT_EQ] = ACTIONS(5119), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5119), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5119), + [anon_sym_LT_EQ] = ACTIONS(5119), + [anon_sym_GT_EQ] = ACTIONS(5119), + [anon_sym_BANGin] = ACTIONS(5119), + [anon_sym_is] = ACTIONS(5117), + [anon_sym_BANGis] = ACTIONS(5119), + [anon_sym_PLUS] = ACTIONS(5117), + [anon_sym_DASH] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5117), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_as_QMARK] = ACTIONS(5119), + [anon_sym_PLUS_PLUS] = ACTIONS(5119), + [anon_sym_DASH_DASH] = ACTIONS(5119), + [anon_sym_BANG_BANG] = ACTIONS(5119), + [anon_sym_suspend] = ACTIONS(5117), + [anon_sym_sealed] = ACTIONS(5117), + [anon_sym_annotation] = ACTIONS(5117), + [anon_sym_data] = ACTIONS(5117), + [anon_sym_inner] = ACTIONS(5117), + [anon_sym_value] = ACTIONS(5117), + [anon_sym_override] = ACTIONS(5117), + [anon_sym_lateinit] = ACTIONS(5117), + [anon_sym_public] = ACTIONS(5117), + [anon_sym_private] = ACTIONS(5117), + [anon_sym_internal] = ACTIONS(5117), + [anon_sym_protected] = ACTIONS(5117), + [anon_sym_tailrec] = ACTIONS(5117), + [anon_sym_operator] = ACTIONS(5117), + [anon_sym_infix] = ACTIONS(5117), + [anon_sym_inline] = ACTIONS(5117), + [anon_sym_external] = ACTIONS(5117), + [sym_property_modifier] = ACTIONS(5117), + [anon_sym_abstract] = ACTIONS(5117), + [anon_sym_final] = ACTIONS(5117), + [anon_sym_open] = ACTIONS(5117), + [anon_sym_vararg] = ACTIONS(5117), + [anon_sym_noinline] = ACTIONS(5117), + [anon_sym_crossinline] = ACTIONS(5117), + [anon_sym_expect] = ACTIONS(5117), + [anon_sym_actual] = ACTIONS(5117), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5119), + [sym__automatic_semicolon] = ACTIONS(5119), + [sym_safe_nav] = ACTIONS(5119), + [sym_multiline_comment] = ACTIONS(3), + }, + [3837] = { + [sym__alpha_identifier] = ACTIONS(5121), + [anon_sym_AT] = ACTIONS(5123), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_as] = ACTIONS(5121), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_RBRACE] = ACTIONS(5123), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5121), + [anon_sym_GT] = ACTIONS(5121), + [anon_sym_where] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5121), + [anon_sym_SEMI] = ACTIONS(5123), + [anon_sym_get] = ACTIONS(5121), + [anon_sym_set] = ACTIONS(5121), + [anon_sym_STAR] = ACTIONS(5121), + [sym_label] = ACTIONS(5123), + [anon_sym_in] = ACTIONS(5121), + [anon_sym_DOT_DOT] = ACTIONS(5123), + [anon_sym_QMARK_COLON] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_else] = ACTIONS(5121), + [anon_sym_COLON_COLON] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5123), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_BANGin] = ACTIONS(5123), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_BANGis] = ACTIONS(5123), + [anon_sym_PLUS] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5121), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_as_QMARK] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_BANG_BANG] = ACTIONS(5123), + [anon_sym_suspend] = ACTIONS(5121), + [anon_sym_sealed] = ACTIONS(5121), + [anon_sym_annotation] = ACTIONS(5121), + [anon_sym_data] = ACTIONS(5121), + [anon_sym_inner] = ACTIONS(5121), + [anon_sym_value] = ACTIONS(5121), + [anon_sym_override] = ACTIONS(5121), + [anon_sym_lateinit] = ACTIONS(5121), + [anon_sym_public] = ACTIONS(5121), + [anon_sym_private] = ACTIONS(5121), + [anon_sym_internal] = ACTIONS(5121), + [anon_sym_protected] = ACTIONS(5121), + [anon_sym_tailrec] = ACTIONS(5121), + [anon_sym_operator] = ACTIONS(5121), + [anon_sym_infix] = ACTIONS(5121), + [anon_sym_inline] = ACTIONS(5121), + [anon_sym_external] = ACTIONS(5121), + [sym_property_modifier] = ACTIONS(5121), + [anon_sym_abstract] = ACTIONS(5121), + [anon_sym_final] = ACTIONS(5121), + [anon_sym_open] = ACTIONS(5121), + [anon_sym_vararg] = ACTIONS(5121), + [anon_sym_noinline] = ACTIONS(5121), + [anon_sym_crossinline] = ACTIONS(5121), + [anon_sym_expect] = ACTIONS(5121), + [anon_sym_actual] = ACTIONS(5121), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5123), + [sym__automatic_semicolon] = ACTIONS(5123), + [sym_safe_nav] = ACTIONS(5123), + [sym_multiline_comment] = ACTIONS(3), + }, + [3838] = { + [sym__alpha_identifier] = ACTIONS(5179), + [anon_sym_AT] = ACTIONS(5181), + [anon_sym_LBRACK] = ACTIONS(5181), + [anon_sym_typealias] = ACTIONS(5179), + [anon_sym_class] = ACTIONS(5179), + [anon_sym_interface] = ACTIONS(5179), + [anon_sym_enum] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5181), + [anon_sym_val] = ACTIONS(5179), + [anon_sym_var] = ACTIONS(5179), + [anon_sym_object] = ACTIONS(5179), + [anon_sym_fun] = ACTIONS(5179), + [anon_sym_get] = ACTIONS(5179), + [anon_sym_set] = ACTIONS(5179), + [anon_sym_this] = ACTIONS(5179), + [anon_sym_super] = ACTIONS(5179), + [anon_sym_STAR] = ACTIONS(5181), + [sym_label] = ACTIONS(5179), + [anon_sym_for] = ACTIONS(5179), + [anon_sym_while] = ACTIONS(5179), + [anon_sym_do] = ACTIONS(5179), + [anon_sym_null] = ACTIONS(5179), + [anon_sym_if] = ACTIONS(5179), + [anon_sym_when] = ACTIONS(5179), + [anon_sym_try] = ACTIONS(5179), + [anon_sym_throw] = ACTIONS(5179), + [anon_sym_return] = ACTIONS(5179), + [anon_sym_continue] = ACTIONS(5179), + [anon_sym_break] = ACTIONS(5179), + [anon_sym_COLON_COLON] = ACTIONS(5181), + [anon_sym_PLUS] = ACTIONS(5179), + [anon_sym_DASH] = ACTIONS(5179), + [anon_sym_PLUS_PLUS] = ACTIONS(5181), + [anon_sym_DASH_DASH] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5181), + [anon_sym_suspend] = ACTIONS(5179), + [anon_sym_sealed] = ACTIONS(5179), + [anon_sym_annotation] = ACTIONS(5179), + [anon_sym_data] = ACTIONS(5179), + [anon_sym_inner] = ACTIONS(5179), + [anon_sym_value] = ACTIONS(5179), + [anon_sym_override] = ACTIONS(5179), + [anon_sym_lateinit] = ACTIONS(5179), + [anon_sym_public] = ACTIONS(5179), + [anon_sym_private] = ACTIONS(5179), + [anon_sym_internal] = ACTIONS(5179), + [anon_sym_protected] = ACTIONS(5179), + [anon_sym_tailrec] = ACTIONS(5179), + [anon_sym_operator] = ACTIONS(5179), + [anon_sym_infix] = ACTIONS(5179), + [anon_sym_inline] = ACTIONS(5179), + [anon_sym_external] = ACTIONS(5179), + [sym_property_modifier] = ACTIONS(5179), + [anon_sym_abstract] = ACTIONS(5179), + [anon_sym_final] = ACTIONS(5179), + [anon_sym_open] = ACTIONS(5179), + [anon_sym_vararg] = ACTIONS(5179), + [anon_sym_noinline] = ACTIONS(5179), + [anon_sym_crossinline] = ACTIONS(5179), + [anon_sym_expect] = ACTIONS(5179), + [anon_sym_actual] = ACTIONS(5179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5181), + [anon_sym_continue_AT] = ACTIONS(5181), + [anon_sym_break_AT] = ACTIONS(5181), + [anon_sym_this_AT] = ACTIONS(5181), + [anon_sym_super_AT] = ACTIONS(5181), + [sym_real_literal] = ACTIONS(5181), + [sym_integer_literal] = ACTIONS(5179), + [sym_hex_literal] = ACTIONS(5181), + [sym_bin_literal] = ACTIONS(5181), + [anon_sym_true] = ACTIONS(5179), + [anon_sym_false] = ACTIONS(5179), + [anon_sym_SQUOTE] = ACTIONS(5181), + [sym__backtick_identifier] = ACTIONS(5181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5181), + }, + [3839] = { [sym__alpha_identifier] = ACTIONS(4321), [anon_sym_AT] = ACTIONS(4323), - [anon_sym_COLON] = ACTIONS(7227), [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_RBRACK] = ACTIONS(4323), [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), [anon_sym_RBRACE] = ACTIONS(4323), [anon_sym_LPAREN] = ACTIONS(4323), [anon_sym_COMMA] = ACTIONS(4323), - [anon_sym_RPAREN] = ACTIONS(4323), [anon_sym_LT] = ACTIONS(4321), [anon_sym_GT] = ACTIONS(4321), [anon_sym_where] = ACTIONS(4321), @@ -434651,17 +431865,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(4323), [anon_sym_get] = ACTIONS(4321), [anon_sym_set] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_DASH_GT] = ACTIONS(4323), + [anon_sym_STAR] = ACTIONS(4321), [sym_label] = ACTIONS(4323), [anon_sym_in] = ACTIONS(4321), - [anon_sym_while] = ACTIONS(4321), [anon_sym_DOT_DOT] = ACTIONS(4323), [anon_sym_QMARK_COLON] = ACTIONS(4323), [anon_sym_AMP_AMP] = ACTIONS(4323), [anon_sym_PIPE_PIPE] = ACTIONS(4323), [anon_sym_else] = ACTIONS(4321), [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), [anon_sym_BANG_EQ] = ACTIONS(4321), [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), [anon_sym_EQ_EQ] = ACTIONS(4321), @@ -434674,7 +431891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4321), [anon_sym_DASH] = ACTIONS(4321), [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_PERCENT] = ACTIONS(4321), [anon_sym_as_QMARK] = ACTIONS(4323), [anon_sym_PLUS_PLUS] = ACTIONS(4323), [anon_sym_DASH_DASH] = ACTIONS(4323), @@ -434707,2123 +431924,4337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4321), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, + [3840] = { + [sym__alpha_identifier] = ACTIONS(5145), + [anon_sym_AT] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_as] = ACTIONS(5145), + [anon_sym_EQ] = ACTIONS(5145), + [anon_sym_LBRACE] = ACTIONS(5147), + [anon_sym_RBRACE] = ACTIONS(5147), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_where] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5145), + [anon_sym_SEMI] = ACTIONS(5147), + [anon_sym_get] = ACTIONS(5145), + [anon_sym_set] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [sym_label] = ACTIONS(5147), + [anon_sym_in] = ACTIONS(5145), + [anon_sym_DOT_DOT] = ACTIONS(5147), + [anon_sym_QMARK_COLON] = ACTIONS(5147), + [anon_sym_AMP_AMP] = ACTIONS(5147), + [anon_sym_PIPE_PIPE] = ACTIONS(5147), + [anon_sym_else] = ACTIONS(5145), + [anon_sym_COLON_COLON] = ACTIONS(5147), + [anon_sym_PLUS_EQ] = ACTIONS(5147), + [anon_sym_DASH_EQ] = ACTIONS(5147), + [anon_sym_STAR_EQ] = ACTIONS(5147), + [anon_sym_SLASH_EQ] = ACTIONS(5147), + [anon_sym_PERCENT_EQ] = ACTIONS(5147), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5147), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5147), + [anon_sym_LT_EQ] = ACTIONS(5147), + [anon_sym_GT_EQ] = ACTIONS(5147), + [anon_sym_BANGin] = ACTIONS(5147), + [anon_sym_is] = ACTIONS(5145), + [anon_sym_BANGis] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_as_QMARK] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5147), + [anon_sym_DASH_DASH] = ACTIONS(5147), + [anon_sym_BANG_BANG] = ACTIONS(5147), + [anon_sym_suspend] = ACTIONS(5145), + [anon_sym_sealed] = ACTIONS(5145), + [anon_sym_annotation] = ACTIONS(5145), + [anon_sym_data] = ACTIONS(5145), + [anon_sym_inner] = ACTIONS(5145), + [anon_sym_value] = ACTIONS(5145), + [anon_sym_override] = ACTIONS(5145), + [anon_sym_lateinit] = ACTIONS(5145), + [anon_sym_public] = ACTIONS(5145), + [anon_sym_private] = ACTIONS(5145), + [anon_sym_internal] = ACTIONS(5145), + [anon_sym_protected] = ACTIONS(5145), + [anon_sym_tailrec] = ACTIONS(5145), + [anon_sym_operator] = ACTIONS(5145), + [anon_sym_infix] = ACTIONS(5145), + [anon_sym_inline] = ACTIONS(5145), + [anon_sym_external] = ACTIONS(5145), + [sym_property_modifier] = ACTIONS(5145), + [anon_sym_abstract] = ACTIONS(5145), + [anon_sym_final] = ACTIONS(5145), + [anon_sym_open] = ACTIONS(5145), + [anon_sym_vararg] = ACTIONS(5145), + [anon_sym_noinline] = ACTIONS(5145), + [anon_sym_crossinline] = ACTIONS(5145), + [anon_sym_expect] = ACTIONS(5145), + [anon_sym_actual] = ACTIONS(5145), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5147), + [sym__automatic_semicolon] = ACTIONS(5147), + [sym_safe_nav] = ACTIONS(5147), + [sym_multiline_comment] = ACTIONS(3), + }, + [3841] = { + [sym__alpha_identifier] = ACTIONS(5089), + [anon_sym_AT] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_as] = ACTIONS(5089), + [anon_sym_EQ] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_RBRACE] = ACTIONS(5091), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_where] = ACTIONS(5089), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_SEMI] = ACTIONS(5091), + [anon_sym_get] = ACTIONS(5089), + [anon_sym_set] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [sym_label] = ACTIONS(5091), + [anon_sym_in] = ACTIONS(5089), + [anon_sym_DOT_DOT] = ACTIONS(5091), + [anon_sym_QMARK_COLON] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_else] = ACTIONS(5089), + [anon_sym_COLON_COLON] = ACTIONS(5091), + [anon_sym_PLUS_EQ] = ACTIONS(5091), + [anon_sym_DASH_EQ] = ACTIONS(5091), + [anon_sym_STAR_EQ] = ACTIONS(5091), + [anon_sym_SLASH_EQ] = ACTIONS(5091), + [anon_sym_PERCENT_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5091), + [anon_sym_EQ_EQ] = ACTIONS(5089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5091), + [anon_sym_LT_EQ] = ACTIONS(5091), + [anon_sym_GT_EQ] = ACTIONS(5091), + [anon_sym_BANGin] = ACTIONS(5091), + [anon_sym_is] = ACTIONS(5089), + [anon_sym_BANGis] = ACTIONS(5091), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_as_QMARK] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_BANG_BANG] = ACTIONS(5091), + [anon_sym_suspend] = ACTIONS(5089), + [anon_sym_sealed] = ACTIONS(5089), + [anon_sym_annotation] = ACTIONS(5089), + [anon_sym_data] = ACTIONS(5089), + [anon_sym_inner] = ACTIONS(5089), + [anon_sym_value] = ACTIONS(5089), + [anon_sym_override] = ACTIONS(5089), + [anon_sym_lateinit] = ACTIONS(5089), + [anon_sym_public] = ACTIONS(5089), + [anon_sym_private] = ACTIONS(5089), + [anon_sym_internal] = ACTIONS(5089), + [anon_sym_protected] = ACTIONS(5089), + [anon_sym_tailrec] = ACTIONS(5089), + [anon_sym_operator] = ACTIONS(5089), + [anon_sym_infix] = ACTIONS(5089), + [anon_sym_inline] = ACTIONS(5089), + [anon_sym_external] = ACTIONS(5089), + [sym_property_modifier] = ACTIONS(5089), + [anon_sym_abstract] = ACTIONS(5089), + [anon_sym_final] = ACTIONS(5089), + [anon_sym_open] = ACTIONS(5089), + [anon_sym_vararg] = ACTIONS(5089), + [anon_sym_noinline] = ACTIONS(5089), + [anon_sym_crossinline] = ACTIONS(5089), + [anon_sym_expect] = ACTIONS(5089), + [anon_sym_actual] = ACTIONS(5089), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5091), + [sym__automatic_semicolon] = ACTIONS(5091), + [sym_safe_nav] = ACTIONS(5091), + [sym_multiline_comment] = ACTIONS(3), + }, + [3842] = { + [sym__alpha_identifier] = ACTIONS(5149), + [anon_sym_AT] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_EQ] = ACTIONS(5149), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_where] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5149), + [anon_sym_SEMI] = ACTIONS(5151), + [anon_sym_get] = ACTIONS(5149), + [anon_sym_set] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [sym_label] = ACTIONS(5151), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5151), + [anon_sym_AMP_AMP] = ACTIONS(5151), + [anon_sym_PIPE_PIPE] = ACTIONS(5151), + [anon_sym_else] = ACTIONS(5149), + [anon_sym_COLON_COLON] = ACTIONS(5151), + [anon_sym_PLUS_EQ] = ACTIONS(5151), + [anon_sym_DASH_EQ] = ACTIONS(5151), + [anon_sym_STAR_EQ] = ACTIONS(5151), + [anon_sym_SLASH_EQ] = ACTIONS(5151), + [anon_sym_PERCENT_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), + [anon_sym_LT_EQ] = ACTIONS(5151), + [anon_sym_GT_EQ] = ACTIONS(5151), + [anon_sym_BANGin] = ACTIONS(5151), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_BANGis] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_as_QMARK] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_BANG_BANG] = ACTIONS(5151), + [anon_sym_suspend] = ACTIONS(5149), + [anon_sym_sealed] = ACTIONS(5149), + [anon_sym_annotation] = ACTIONS(5149), + [anon_sym_data] = ACTIONS(5149), + [anon_sym_inner] = ACTIONS(5149), + [anon_sym_value] = ACTIONS(5149), + [anon_sym_override] = ACTIONS(5149), + [anon_sym_lateinit] = ACTIONS(5149), + [anon_sym_public] = ACTIONS(5149), + [anon_sym_private] = ACTIONS(5149), + [anon_sym_internal] = ACTIONS(5149), + [anon_sym_protected] = ACTIONS(5149), + [anon_sym_tailrec] = ACTIONS(5149), + [anon_sym_operator] = ACTIONS(5149), + [anon_sym_infix] = ACTIONS(5149), + [anon_sym_inline] = ACTIONS(5149), + [anon_sym_external] = ACTIONS(5149), + [sym_property_modifier] = ACTIONS(5149), + [anon_sym_abstract] = ACTIONS(5149), + [anon_sym_final] = ACTIONS(5149), + [anon_sym_open] = ACTIONS(5149), + [anon_sym_vararg] = ACTIONS(5149), + [anon_sym_noinline] = ACTIONS(5149), + [anon_sym_crossinline] = ACTIONS(5149), + [anon_sym_expect] = ACTIONS(5149), + [anon_sym_actual] = ACTIONS(5149), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5151), + [sym__automatic_semicolon] = ACTIONS(5151), + [sym_safe_nav] = ACTIONS(5151), + [sym_multiline_comment] = ACTIONS(3), + }, + [3843] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + }, [3844] = { - [sym__alpha_identifier] = ACTIONS(4730), - [anon_sym_AT] = ACTIONS(4733), - [anon_sym_LBRACK] = ACTIONS(4733), - [anon_sym_as] = ACTIONS(4730), - [anon_sym_EQ] = ACTIONS(4730), - [anon_sym_LBRACE] = ACTIONS(4733), - [anon_sym_RBRACE] = ACTIONS(4733), - [anon_sym_LPAREN] = ACTIONS(4733), - [anon_sym_COMMA] = ACTIONS(4733), - [anon_sym_by] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4730), - [anon_sym_GT] = ACTIONS(4730), - [anon_sym_where] = ACTIONS(4730), - [anon_sym_DOT] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4733), - [anon_sym_get] = ACTIONS(4730), - [anon_sym_set] = ACTIONS(4730), - [anon_sym_STAR] = ACTIONS(4730), - [sym_label] = ACTIONS(4733), - [anon_sym_in] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4733), - [anon_sym_QMARK_COLON] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_else] = ACTIONS(4730), - [anon_sym_COLON_COLON] = ACTIONS(4733), - [anon_sym_PLUS_EQ] = ACTIONS(4733), - [anon_sym_DASH_EQ] = ACTIONS(4733), - [anon_sym_STAR_EQ] = ACTIONS(4733), - [anon_sym_SLASH_EQ] = ACTIONS(4733), - [anon_sym_PERCENT_EQ] = ACTIONS(4733), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4733), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4733), - [anon_sym_LT_EQ] = ACTIONS(4733), - [anon_sym_GT_EQ] = ACTIONS(4733), - [anon_sym_BANGin] = ACTIONS(4733), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_BANGis] = ACTIONS(4733), - [anon_sym_PLUS] = ACTIONS(4730), - [anon_sym_DASH] = ACTIONS(4730), - [anon_sym_SLASH] = ACTIONS(4730), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_as_QMARK] = ACTIONS(4733), - [anon_sym_PLUS_PLUS] = ACTIONS(4733), - [anon_sym_DASH_DASH] = ACTIONS(4733), - [anon_sym_BANG_BANG] = ACTIONS(4733), - [anon_sym_suspend] = ACTIONS(4730), - [anon_sym_sealed] = ACTIONS(4730), - [anon_sym_annotation] = ACTIONS(4730), - [anon_sym_data] = ACTIONS(4730), - [anon_sym_inner] = ACTIONS(4730), - [anon_sym_value] = ACTIONS(4730), - [anon_sym_override] = ACTIONS(4730), - [anon_sym_lateinit] = ACTIONS(4730), - [anon_sym_public] = ACTIONS(4730), - [anon_sym_private] = ACTIONS(4730), - [anon_sym_internal] = ACTIONS(4730), - [anon_sym_protected] = ACTIONS(4730), - [anon_sym_tailrec] = ACTIONS(4730), - [anon_sym_operator] = ACTIONS(4730), - [anon_sym_infix] = ACTIONS(4730), - [anon_sym_inline] = ACTIONS(4730), - [anon_sym_external] = ACTIONS(4730), - [sym_property_modifier] = ACTIONS(4730), - [anon_sym_abstract] = ACTIONS(4730), - [anon_sym_final] = ACTIONS(4730), - [anon_sym_open] = ACTIONS(4730), - [anon_sym_vararg] = ACTIONS(4730), - [anon_sym_noinline] = ACTIONS(4730), - [anon_sym_crossinline] = ACTIONS(4730), - [anon_sym_expect] = ACTIONS(4730), - [anon_sym_actual] = ACTIONS(4730), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4733), - [sym__automatic_semicolon] = ACTIONS(4733), - [sym_safe_nav] = ACTIONS(4733), + [sym__alpha_identifier] = ACTIONS(5153), + [anon_sym_AT] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5153), + [anon_sym_SEMI] = ACTIONS(5155), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [sym_label] = ACTIONS(5155), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5155), + [anon_sym_QMARK_COLON] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5155), + [anon_sym_else] = ACTIONS(5153), + [anon_sym_COLON_COLON] = ACTIONS(5155), + [anon_sym_PLUS_EQ] = ACTIONS(5155), + [anon_sym_DASH_EQ] = ACTIONS(5155), + [anon_sym_STAR_EQ] = ACTIONS(5155), + [anon_sym_SLASH_EQ] = ACTIONS(5155), + [anon_sym_PERCENT_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), + [anon_sym_LT_EQ] = ACTIONS(5155), + [anon_sym_GT_EQ] = ACTIONS(5155), + [anon_sym_BANGin] = ACTIONS(5155), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_BANGis] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_as_QMARK] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_BANG_BANG] = ACTIONS(5155), + [anon_sym_suspend] = ACTIONS(5153), + [anon_sym_sealed] = ACTIONS(5153), + [anon_sym_annotation] = ACTIONS(5153), + [anon_sym_data] = ACTIONS(5153), + [anon_sym_inner] = ACTIONS(5153), + [anon_sym_value] = ACTIONS(5153), + [anon_sym_override] = ACTIONS(5153), + [anon_sym_lateinit] = ACTIONS(5153), + [anon_sym_public] = ACTIONS(5153), + [anon_sym_private] = ACTIONS(5153), + [anon_sym_internal] = ACTIONS(5153), + [anon_sym_protected] = ACTIONS(5153), + [anon_sym_tailrec] = ACTIONS(5153), + [anon_sym_operator] = ACTIONS(5153), + [anon_sym_infix] = ACTIONS(5153), + [anon_sym_inline] = ACTIONS(5153), + [anon_sym_external] = ACTIONS(5153), + [sym_property_modifier] = ACTIONS(5153), + [anon_sym_abstract] = ACTIONS(5153), + [anon_sym_final] = ACTIONS(5153), + [anon_sym_open] = ACTIONS(5153), + [anon_sym_vararg] = ACTIONS(5153), + [anon_sym_noinline] = ACTIONS(5153), + [anon_sym_crossinline] = ACTIONS(5153), + [anon_sym_expect] = ACTIONS(5153), + [anon_sym_actual] = ACTIONS(5153), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5155), + [sym__automatic_semicolon] = ACTIONS(5155), + [sym_safe_nav] = ACTIONS(5155), [sym_multiline_comment] = ACTIONS(3), }, [3845] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7167), - [anon_sym_where] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7175), - [anon_sym_DOT_DOT] = ACTIONS(7177), - [anon_sym_QMARK_COLON] = ACTIONS(7179), - [anon_sym_AMP_AMP] = ACTIONS(7181), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3186), - [anon_sym_DASH_EQ] = ACTIONS(3186), - [anon_sym_STAR_EQ] = ACTIONS(3186), - [anon_sym_SLASH_EQ] = ACTIONS(3186), - [anon_sym_PERCENT_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ] = ACTIONS(7187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7189), - [anon_sym_EQ_EQ] = ACTIONS(7187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7189), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7191), - [anon_sym_BANGin] = ACTIONS(7193), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3186), - [sym_safe_nav] = ACTIONS(7185), + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), }, [3846] = { - [sym__alpha_identifier] = ACTIONS(4748), - [anon_sym_AT] = ACTIONS(4750), - [anon_sym_LBRACK] = ACTIONS(4750), - [anon_sym_as] = ACTIONS(4748), - [anon_sym_EQ] = ACTIONS(4748), - [anon_sym_LBRACE] = ACTIONS(4750), - [anon_sym_RBRACE] = ACTIONS(4750), - [anon_sym_LPAREN] = ACTIONS(4750), - [anon_sym_COMMA] = ACTIONS(4750), - [anon_sym_by] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4748), - [anon_sym_GT] = ACTIONS(4748), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_DOT] = ACTIONS(4748), - [anon_sym_SEMI] = ACTIONS(4750), - [anon_sym_get] = ACTIONS(4748), - [anon_sym_set] = ACTIONS(4748), - [anon_sym_STAR] = ACTIONS(4748), - [sym_label] = ACTIONS(4750), - [anon_sym_in] = ACTIONS(4748), - [anon_sym_DOT_DOT] = ACTIONS(4750), - [anon_sym_QMARK_COLON] = ACTIONS(4750), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4750), - [anon_sym_else] = ACTIONS(4748), - [anon_sym_COLON_COLON] = ACTIONS(4750), - [anon_sym_PLUS_EQ] = ACTIONS(4750), - [anon_sym_DASH_EQ] = ACTIONS(4750), - [anon_sym_STAR_EQ] = ACTIONS(4750), - [anon_sym_SLASH_EQ] = ACTIONS(4750), - [anon_sym_PERCENT_EQ] = ACTIONS(4750), - [anon_sym_BANG_EQ] = ACTIONS(4748), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4750), - [anon_sym_EQ_EQ] = ACTIONS(4748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4750), - [anon_sym_LT_EQ] = ACTIONS(4750), - [anon_sym_GT_EQ] = ACTIONS(4750), - [anon_sym_BANGin] = ACTIONS(4750), - [anon_sym_is] = ACTIONS(4748), - [anon_sym_BANGis] = ACTIONS(4750), - [anon_sym_PLUS] = ACTIONS(4748), - [anon_sym_DASH] = ACTIONS(4748), - [anon_sym_SLASH] = ACTIONS(4748), - [anon_sym_PERCENT] = ACTIONS(4748), - [anon_sym_as_QMARK] = ACTIONS(4750), - [anon_sym_PLUS_PLUS] = ACTIONS(4750), - [anon_sym_DASH_DASH] = ACTIONS(4750), - [anon_sym_BANG_BANG] = ACTIONS(4750), - [anon_sym_suspend] = ACTIONS(4748), - [anon_sym_sealed] = ACTIONS(4748), - [anon_sym_annotation] = ACTIONS(4748), - [anon_sym_data] = ACTIONS(4748), - [anon_sym_inner] = ACTIONS(4748), - [anon_sym_value] = ACTIONS(4748), - [anon_sym_override] = ACTIONS(4748), - [anon_sym_lateinit] = ACTIONS(4748), - [anon_sym_public] = ACTIONS(4748), - [anon_sym_private] = ACTIONS(4748), - [anon_sym_internal] = ACTIONS(4748), - [anon_sym_protected] = ACTIONS(4748), - [anon_sym_tailrec] = ACTIONS(4748), - [anon_sym_operator] = ACTIONS(4748), - [anon_sym_infix] = ACTIONS(4748), - [anon_sym_inline] = ACTIONS(4748), - [anon_sym_external] = ACTIONS(4748), - [sym_property_modifier] = ACTIONS(4748), - [anon_sym_abstract] = ACTIONS(4748), - [anon_sym_final] = ACTIONS(4748), - [anon_sym_open] = ACTIONS(4748), - [anon_sym_vararg] = ACTIONS(4748), - [anon_sym_noinline] = ACTIONS(4748), - [anon_sym_crossinline] = ACTIONS(4748), - [anon_sym_expect] = ACTIONS(4748), - [anon_sym_actual] = ACTIONS(4748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4750), - [sym__automatic_semicolon] = ACTIONS(4750), - [sym_safe_nav] = ACTIONS(4750), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [3847] = { - [sym__alpha_identifier] = ACTIONS(4766), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_EQ] = ACTIONS(4766), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(4769), - [anon_sym_COMMA] = ACTIONS(4769), - [anon_sym_by] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4766), - [anon_sym_set] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4766), - [sym_label] = ACTIONS(4769), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_else] = ACTIONS(4766), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_STAR_EQ] = ACTIONS(4769), - [anon_sym_SLASH_EQ] = ACTIONS(4769), - [anon_sym_PERCENT_EQ] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_suspend] = ACTIONS(4766), - [anon_sym_sealed] = ACTIONS(4766), - [anon_sym_annotation] = ACTIONS(4766), - [anon_sym_data] = ACTIONS(4766), - [anon_sym_inner] = ACTIONS(4766), - [anon_sym_value] = ACTIONS(4766), - [anon_sym_override] = ACTIONS(4766), - [anon_sym_lateinit] = ACTIONS(4766), - [anon_sym_public] = ACTIONS(4766), - [anon_sym_private] = ACTIONS(4766), - [anon_sym_internal] = ACTIONS(4766), - [anon_sym_protected] = ACTIONS(4766), - [anon_sym_tailrec] = ACTIONS(4766), - [anon_sym_operator] = ACTIONS(4766), - [anon_sym_infix] = ACTIONS(4766), - [anon_sym_inline] = ACTIONS(4766), - [anon_sym_external] = ACTIONS(4766), - [sym_property_modifier] = ACTIONS(4766), - [anon_sym_abstract] = ACTIONS(4766), - [anon_sym_final] = ACTIONS(4766), - [anon_sym_open] = ACTIONS(4766), - [anon_sym_vararg] = ACTIONS(4766), - [anon_sym_noinline] = ACTIONS(4766), - [anon_sym_crossinline] = ACTIONS(4766), - [anon_sym_expect] = ACTIONS(4766), - [anon_sym_actual] = ACTIONS(4766), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [3848] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7167), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7175), - [anon_sym_DOT_DOT] = ACTIONS(7177), - [anon_sym_QMARK_COLON] = ACTIONS(7179), - [anon_sym_AMP_AMP] = ACTIONS(7181), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_STAR_EQ] = ACTIONS(3158), - [anon_sym_SLASH_EQ] = ACTIONS(3158), - [anon_sym_PERCENT_EQ] = ACTIONS(3158), - [anon_sym_BANG_EQ] = ACTIONS(7187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7189), - [anon_sym_EQ_EQ] = ACTIONS(7187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7189), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7191), - [anon_sym_BANGin] = ACTIONS(7193), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(7185), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4808), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, [3849] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_where] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(7185), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(1802), + [anon_sym_sealed] = ACTIONS(1802), + [anon_sym_annotation] = ACTIONS(1802), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_override] = ACTIONS(1802), + [anon_sym_lateinit] = ACTIONS(1802), + [anon_sym_public] = ACTIONS(1802), + [anon_sym_private] = ACTIONS(1802), + [anon_sym_internal] = ACTIONS(1802), + [anon_sym_protected] = ACTIONS(1802), + [anon_sym_tailrec] = ACTIONS(1802), + [anon_sym_operator] = ACTIONS(1802), + [anon_sym_infix] = ACTIONS(1802), + [anon_sym_inline] = ACTIONS(1802), + [anon_sym_external] = ACTIONS(1802), + [sym_property_modifier] = ACTIONS(1802), + [anon_sym_abstract] = ACTIONS(1802), + [anon_sym_final] = ACTIONS(1802), + [anon_sym_open] = ACTIONS(1802), + [anon_sym_vararg] = ACTIONS(1802), + [anon_sym_noinline] = ACTIONS(1802), + [anon_sym_crossinline] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, [3850] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(7177), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(7185), + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [3851] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7167), - [anon_sym_where] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7175), - [anon_sym_DOT_DOT] = ACTIONS(7177), - [anon_sym_QMARK_COLON] = ACTIONS(7179), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(7187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7189), - [anon_sym_EQ_EQ] = ACTIONS(7187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7189), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7191), - [anon_sym_BANGin] = ACTIONS(7193), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), - [sym_safe_nav] = ACTIONS(7185), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(1796), + [anon_sym_set] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(1796), + [anon_sym_sealed] = ACTIONS(1796), + [anon_sym_annotation] = ACTIONS(1796), + [anon_sym_data] = ACTIONS(1796), + [anon_sym_inner] = ACTIONS(1796), + [anon_sym_value] = ACTIONS(1796), + [anon_sym_override] = ACTIONS(1796), + [anon_sym_lateinit] = ACTIONS(1796), + [anon_sym_public] = ACTIONS(1796), + [anon_sym_private] = ACTIONS(1796), + [anon_sym_internal] = ACTIONS(1796), + [anon_sym_protected] = ACTIONS(1796), + [anon_sym_tailrec] = ACTIONS(1796), + [anon_sym_operator] = ACTIONS(1796), + [anon_sym_infix] = ACTIONS(1796), + [anon_sym_inline] = ACTIONS(1796), + [anon_sym_external] = ACTIONS(1796), + [sym_property_modifier] = ACTIONS(1796), + [anon_sym_abstract] = ACTIONS(1796), + [anon_sym_final] = ACTIONS(1796), + [anon_sym_open] = ACTIONS(1796), + [anon_sym_vararg] = ACTIONS(1796), + [anon_sym_noinline] = ACTIONS(1796), + [anon_sym_crossinline] = ACTIONS(1796), + [anon_sym_expect] = ACTIONS(1796), + [anon_sym_actual] = ACTIONS(1796), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, [3852] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7167), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7175), - [anon_sym_DOT_DOT] = ACTIONS(7177), - [anon_sym_QMARK_COLON] = ACTIONS(7179), - [anon_sym_AMP_AMP] = ACTIONS(7181), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(7187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7189), - [anon_sym_EQ_EQ] = ACTIONS(7187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7189), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7191), - [anon_sym_BANGin] = ACTIONS(7193), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(7185), + [sym_function_body] = STATE(3457), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_RBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_RPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [anon_sym_DASH_GT] = ACTIONS(4441), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_while] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), }, [3853] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7167), - [anon_sym_where] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7175), - [anon_sym_DOT_DOT] = ACTIONS(7177), - [anon_sym_QMARK_COLON] = ACTIONS(7179), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7191), - [anon_sym_BANGin] = ACTIONS(7193), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(4862), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4284), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), - [sym_safe_nav] = ACTIONS(7185), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), }, [3854] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_where] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7175), - [anon_sym_DOT_DOT] = ACTIONS(7177), - [anon_sym_QMARK_COLON] = ACTIONS(7179), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(7193), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(7185), + [sym__alpha_identifier] = ACTIONS(4914), + [anon_sym_AT] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_as] = ACTIONS(4914), + [anon_sym_EQ] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_RBRACE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4914), + [anon_sym_where] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_get] = ACTIONS(4914), + [anon_sym_set] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4914), + [sym_label] = ACTIONS(4916), + [anon_sym_in] = ACTIONS(4914), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_QMARK_COLON] = ACTIONS(4916), + [anon_sym_AMP_AMP] = ACTIONS(4916), + [anon_sym_PIPE_PIPE] = ACTIONS(4916), + [anon_sym_else] = ACTIONS(4914), + [anon_sym_COLON_COLON] = ACTIONS(4916), + [anon_sym_PLUS_EQ] = ACTIONS(4916), + [anon_sym_DASH_EQ] = ACTIONS(4916), + [anon_sym_STAR_EQ] = ACTIONS(4916), + [anon_sym_SLASH_EQ] = ACTIONS(4916), + [anon_sym_PERCENT_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4916), + [anon_sym_EQ_EQ] = ACTIONS(4914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4916), + [anon_sym_LT_EQ] = ACTIONS(4916), + [anon_sym_GT_EQ] = ACTIONS(4916), + [anon_sym_BANGin] = ACTIONS(4916), + [anon_sym_is] = ACTIONS(4914), + [anon_sym_BANGis] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4914), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4914), + [anon_sym_PERCENT] = ACTIONS(4914), + [anon_sym_as_QMARK] = ACTIONS(4916), + [anon_sym_PLUS_PLUS] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4916), + [anon_sym_BANG_BANG] = ACTIONS(4916), + [anon_sym_suspend] = ACTIONS(4914), + [anon_sym_sealed] = ACTIONS(4914), + [anon_sym_annotation] = ACTIONS(4914), + [anon_sym_data] = ACTIONS(4914), + [anon_sym_inner] = ACTIONS(4914), + [anon_sym_value] = ACTIONS(4914), + [anon_sym_override] = ACTIONS(4914), + [anon_sym_lateinit] = ACTIONS(4914), + [anon_sym_public] = ACTIONS(4914), + [anon_sym_private] = ACTIONS(4914), + [anon_sym_internal] = ACTIONS(4914), + [anon_sym_protected] = ACTIONS(4914), + [anon_sym_tailrec] = ACTIONS(4914), + [anon_sym_operator] = ACTIONS(4914), + [anon_sym_infix] = ACTIONS(4914), + [anon_sym_inline] = ACTIONS(4914), + [anon_sym_external] = ACTIONS(4914), + [sym_property_modifier] = ACTIONS(4914), + [anon_sym_abstract] = ACTIONS(4914), + [anon_sym_final] = ACTIONS(4914), + [anon_sym_open] = ACTIONS(4914), + [anon_sym_vararg] = ACTIONS(4914), + [anon_sym_noinline] = ACTIONS(4914), + [anon_sym_crossinline] = ACTIONS(4914), + [anon_sym_expect] = ACTIONS(4914), + [anon_sym_actual] = ACTIONS(4914), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4916), + [sym__automatic_semicolon] = ACTIONS(4916), + [sym_safe_nav] = ACTIONS(4916), [sym_multiline_comment] = ACTIONS(3), }, [3855] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(7177), - [anon_sym_QMARK_COLON] = ACTIONS(7179), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(7185), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, [3856] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_STAR_EQ] = ACTIONS(3125), - [anon_sym_SLASH_EQ] = ACTIONS(3125), - [anon_sym_PERCENT_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(7185), + [sym__alpha_identifier] = ACTIONS(5175), + [anon_sym_AT] = ACTIONS(5177), + [anon_sym_LBRACK] = ACTIONS(5177), + [anon_sym_as] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5177), + [anon_sym_COMMA] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5175), + [anon_sym_GT] = ACTIONS(5175), + [anon_sym_where] = ACTIONS(5175), + [anon_sym_DOT] = ACTIONS(5175), + [anon_sym_SEMI] = ACTIONS(5177), + [anon_sym_get] = ACTIONS(5175), + [anon_sym_set] = ACTIONS(5175), + [anon_sym_STAR] = ACTIONS(5175), + [sym_label] = ACTIONS(5177), + [anon_sym_in] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5177), + [anon_sym_QMARK_COLON] = ACTIONS(5177), + [anon_sym_AMP_AMP] = ACTIONS(5177), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_else] = ACTIONS(5175), + [anon_sym_COLON_COLON] = ACTIONS(5177), + [anon_sym_PLUS_EQ] = ACTIONS(5177), + [anon_sym_DASH_EQ] = ACTIONS(5177), + [anon_sym_STAR_EQ] = ACTIONS(5177), + [anon_sym_SLASH_EQ] = ACTIONS(5177), + [anon_sym_PERCENT_EQ] = ACTIONS(5177), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5177), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5177), + [anon_sym_LT_EQ] = ACTIONS(5177), + [anon_sym_GT_EQ] = ACTIONS(5177), + [anon_sym_BANGin] = ACTIONS(5177), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_BANGis] = ACTIONS(5177), + [anon_sym_PLUS] = ACTIONS(5175), + [anon_sym_DASH] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5175), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_as_QMARK] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5177), + [anon_sym_DASH_DASH] = ACTIONS(5177), + [anon_sym_BANG_BANG] = ACTIONS(5177), + [anon_sym_suspend] = ACTIONS(5175), + [anon_sym_sealed] = ACTIONS(5175), + [anon_sym_annotation] = ACTIONS(5175), + [anon_sym_data] = ACTIONS(5175), + [anon_sym_inner] = ACTIONS(5175), + [anon_sym_value] = ACTIONS(5175), + [anon_sym_override] = ACTIONS(5175), + [anon_sym_lateinit] = ACTIONS(5175), + [anon_sym_public] = ACTIONS(5175), + [anon_sym_private] = ACTIONS(5175), + [anon_sym_internal] = ACTIONS(5175), + [anon_sym_protected] = ACTIONS(5175), + [anon_sym_tailrec] = ACTIONS(5175), + [anon_sym_operator] = ACTIONS(5175), + [anon_sym_infix] = ACTIONS(5175), + [anon_sym_inline] = ACTIONS(5175), + [anon_sym_external] = ACTIONS(5175), + [sym_property_modifier] = ACTIONS(5175), + [anon_sym_abstract] = ACTIONS(5175), + [anon_sym_final] = ACTIONS(5175), + [anon_sym_open] = ACTIONS(5175), + [anon_sym_vararg] = ACTIONS(5175), + [anon_sym_noinline] = ACTIONS(5175), + [anon_sym_crossinline] = ACTIONS(5175), + [anon_sym_expect] = ACTIONS(5175), + [anon_sym_actual] = ACTIONS(5175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5177), + [sym__automatic_semicolon] = ACTIONS(5177), + [sym_safe_nav] = ACTIONS(5177), [sym_multiline_comment] = ACTIONS(3), }, [3857] = { - [sym__alpha_identifier] = ACTIONS(4776), - [anon_sym_AT] = ACTIONS(4778), - [anon_sym_LBRACK] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(4776), - [anon_sym_EQ] = ACTIONS(4776), - [anon_sym_LBRACE] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(4778), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_by] = ACTIONS(4776), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_where] = ACTIONS(4776), - [anon_sym_DOT] = ACTIONS(4776), - [anon_sym_SEMI] = ACTIONS(4778), - [anon_sym_get] = ACTIONS(4776), - [anon_sym_set] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4776), - [sym_label] = ACTIONS(4778), - [anon_sym_in] = ACTIONS(4776), - [anon_sym_DOT_DOT] = ACTIONS(4778), - [anon_sym_QMARK_COLON] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4778), - [anon_sym_PIPE_PIPE] = ACTIONS(4778), - [anon_sym_else] = ACTIONS(4776), - [anon_sym_COLON_COLON] = ACTIONS(4778), - [anon_sym_PLUS_EQ] = ACTIONS(4778), - [anon_sym_DASH_EQ] = ACTIONS(4778), - [anon_sym_STAR_EQ] = ACTIONS(4778), - [anon_sym_SLASH_EQ] = ACTIONS(4778), - [anon_sym_PERCENT_EQ] = ACTIONS(4778), - [anon_sym_BANG_EQ] = ACTIONS(4776), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4778), - [anon_sym_EQ_EQ] = ACTIONS(4776), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4778), - [anon_sym_LT_EQ] = ACTIONS(4778), - [anon_sym_GT_EQ] = ACTIONS(4778), - [anon_sym_BANGin] = ACTIONS(4778), - [anon_sym_is] = ACTIONS(4776), - [anon_sym_BANGis] = ACTIONS(4778), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4776), - [anon_sym_as_QMARK] = ACTIONS(4778), - [anon_sym_PLUS_PLUS] = ACTIONS(4778), - [anon_sym_DASH_DASH] = ACTIONS(4778), - [anon_sym_BANG_BANG] = ACTIONS(4778), - [anon_sym_suspend] = ACTIONS(4776), - [anon_sym_sealed] = ACTIONS(4776), - [anon_sym_annotation] = ACTIONS(4776), - [anon_sym_data] = ACTIONS(4776), - [anon_sym_inner] = ACTIONS(4776), - [anon_sym_value] = ACTIONS(4776), - [anon_sym_override] = ACTIONS(4776), - [anon_sym_lateinit] = ACTIONS(4776), - [anon_sym_public] = ACTIONS(4776), - [anon_sym_private] = ACTIONS(4776), - [anon_sym_internal] = ACTIONS(4776), - [anon_sym_protected] = ACTIONS(4776), - [anon_sym_tailrec] = ACTIONS(4776), - [anon_sym_operator] = ACTIONS(4776), - [anon_sym_infix] = ACTIONS(4776), - [anon_sym_inline] = ACTIONS(4776), - [anon_sym_external] = ACTIONS(4776), - [sym_property_modifier] = ACTIONS(4776), - [anon_sym_abstract] = ACTIONS(4776), - [anon_sym_final] = ACTIONS(4776), - [anon_sym_open] = ACTIONS(4776), - [anon_sym_vararg] = ACTIONS(4776), - [anon_sym_noinline] = ACTIONS(4776), - [anon_sym_crossinline] = ACTIONS(4776), - [anon_sym_expect] = ACTIONS(4776), - [anon_sym_actual] = ACTIONS(4776), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4778), - [sym__automatic_semicolon] = ACTIONS(4778), - [sym_safe_nav] = ACTIONS(4778), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [3858] = { - [sym__alpha_identifier] = ACTIONS(4726), - [anon_sym_AT] = ACTIONS(4728), - [anon_sym_LBRACK] = ACTIONS(4728), - [anon_sym_as] = ACTIONS(4726), - [anon_sym_EQ] = ACTIONS(4726), - [anon_sym_LBRACE] = ACTIONS(4728), - [anon_sym_RBRACE] = ACTIONS(4728), - [anon_sym_LPAREN] = ACTIONS(4728), - [anon_sym_COMMA] = ACTIONS(4728), - [anon_sym_by] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4726), - [anon_sym_GT] = ACTIONS(4726), - [anon_sym_where] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4726), - [anon_sym_SEMI] = ACTIONS(4728), - [anon_sym_get] = ACTIONS(4726), - [anon_sym_set] = ACTIONS(4726), - [anon_sym_STAR] = ACTIONS(4726), - [sym_label] = ACTIONS(4728), - [anon_sym_in] = ACTIONS(4726), - [anon_sym_DOT_DOT] = ACTIONS(4728), - [anon_sym_QMARK_COLON] = ACTIONS(4728), - [anon_sym_AMP_AMP] = ACTIONS(4728), - [anon_sym_PIPE_PIPE] = ACTIONS(4728), - [anon_sym_else] = ACTIONS(4726), - [anon_sym_COLON_COLON] = ACTIONS(4728), - [anon_sym_PLUS_EQ] = ACTIONS(4728), - [anon_sym_DASH_EQ] = ACTIONS(4728), - [anon_sym_STAR_EQ] = ACTIONS(4728), - [anon_sym_SLASH_EQ] = ACTIONS(4728), - [anon_sym_PERCENT_EQ] = ACTIONS(4728), - [anon_sym_BANG_EQ] = ACTIONS(4726), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), - [anon_sym_EQ_EQ] = ACTIONS(4726), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_GT_EQ] = ACTIONS(4728), - [anon_sym_BANGin] = ACTIONS(4728), - [anon_sym_is] = ACTIONS(4726), - [anon_sym_BANGis] = ACTIONS(4728), - [anon_sym_PLUS] = ACTIONS(4726), - [anon_sym_DASH] = ACTIONS(4726), - [anon_sym_SLASH] = ACTIONS(4726), - [anon_sym_PERCENT] = ACTIONS(4726), - [anon_sym_as_QMARK] = ACTIONS(4728), - [anon_sym_PLUS_PLUS] = ACTIONS(4728), - [anon_sym_DASH_DASH] = ACTIONS(4728), - [anon_sym_BANG_BANG] = ACTIONS(4728), - [anon_sym_suspend] = ACTIONS(4726), - [anon_sym_sealed] = ACTIONS(4726), - [anon_sym_annotation] = ACTIONS(4726), - [anon_sym_data] = ACTIONS(4726), - [anon_sym_inner] = ACTIONS(4726), - [anon_sym_value] = ACTIONS(4726), - [anon_sym_override] = ACTIONS(4726), - [anon_sym_lateinit] = ACTIONS(4726), - [anon_sym_public] = ACTIONS(4726), - [anon_sym_private] = ACTIONS(4726), - [anon_sym_internal] = ACTIONS(4726), - [anon_sym_protected] = ACTIONS(4726), - [anon_sym_tailrec] = ACTIONS(4726), - [anon_sym_operator] = ACTIONS(4726), - [anon_sym_infix] = ACTIONS(4726), - [anon_sym_inline] = ACTIONS(4726), - [anon_sym_external] = ACTIONS(4726), - [sym_property_modifier] = ACTIONS(4726), - [anon_sym_abstract] = ACTIONS(4726), - [anon_sym_final] = ACTIONS(4726), - [anon_sym_open] = ACTIONS(4726), - [anon_sym_vararg] = ACTIONS(4726), - [anon_sym_noinline] = ACTIONS(4726), - [anon_sym_crossinline] = ACTIONS(4726), - [anon_sym_expect] = ACTIONS(4726), - [anon_sym_actual] = ACTIONS(4726), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4728), - [sym__automatic_semicolon] = ACTIONS(4728), - [sym_safe_nav] = ACTIONS(4728), + [sym__alpha_identifier] = ACTIONS(5167), + [anon_sym_AT] = ACTIONS(5169), + [anon_sym_LBRACK] = ACTIONS(5169), + [anon_sym_as] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5169), + [anon_sym_RBRACE] = ACTIONS(5169), + [anon_sym_LPAREN] = ACTIONS(5169), + [anon_sym_COMMA] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5167), + [anon_sym_GT] = ACTIONS(5167), + [anon_sym_where] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5167), + [anon_sym_SEMI] = ACTIONS(5169), + [anon_sym_get] = ACTIONS(5167), + [anon_sym_set] = ACTIONS(5167), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(5169), + [anon_sym_in] = ACTIONS(5167), + [anon_sym_DOT_DOT] = ACTIONS(5169), + [anon_sym_QMARK_COLON] = ACTIONS(5169), + [anon_sym_AMP_AMP] = ACTIONS(5169), + [anon_sym_PIPE_PIPE] = ACTIONS(5169), + [anon_sym_else] = ACTIONS(5167), + [anon_sym_COLON_COLON] = ACTIONS(5169), + [anon_sym_PLUS_EQ] = ACTIONS(5169), + [anon_sym_DASH_EQ] = ACTIONS(5169), + [anon_sym_STAR_EQ] = ACTIONS(5169), + [anon_sym_SLASH_EQ] = ACTIONS(5169), + [anon_sym_PERCENT_EQ] = ACTIONS(5169), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5169), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5169), + [anon_sym_LT_EQ] = ACTIONS(5169), + [anon_sym_GT_EQ] = ACTIONS(5169), + [anon_sym_BANGin] = ACTIONS(5169), + [anon_sym_is] = ACTIONS(5167), + [anon_sym_BANGis] = ACTIONS(5169), + [anon_sym_PLUS] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5167), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(5169), + [anon_sym_PLUS_PLUS] = ACTIONS(5169), + [anon_sym_DASH_DASH] = ACTIONS(5169), + [anon_sym_BANG_BANG] = ACTIONS(5169), + [anon_sym_suspend] = ACTIONS(5167), + [anon_sym_sealed] = ACTIONS(5167), + [anon_sym_annotation] = ACTIONS(5167), + [anon_sym_data] = ACTIONS(5167), + [anon_sym_inner] = ACTIONS(5167), + [anon_sym_value] = ACTIONS(5167), + [anon_sym_override] = ACTIONS(5167), + [anon_sym_lateinit] = ACTIONS(5167), + [anon_sym_public] = ACTIONS(5167), + [anon_sym_private] = ACTIONS(5167), + [anon_sym_internal] = ACTIONS(5167), + [anon_sym_protected] = ACTIONS(5167), + [anon_sym_tailrec] = ACTIONS(5167), + [anon_sym_operator] = ACTIONS(5167), + [anon_sym_infix] = ACTIONS(5167), + [anon_sym_inline] = ACTIONS(5167), + [anon_sym_external] = ACTIONS(5167), + [sym_property_modifier] = ACTIONS(5167), + [anon_sym_abstract] = ACTIONS(5167), + [anon_sym_final] = ACTIONS(5167), + [anon_sym_open] = ACTIONS(5167), + [anon_sym_vararg] = ACTIONS(5167), + [anon_sym_noinline] = ACTIONS(5167), + [anon_sym_crossinline] = ACTIONS(5167), + [anon_sym_expect] = ACTIONS(5167), + [anon_sym_actual] = ACTIONS(5167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5169), + [sym__automatic_semicolon] = ACTIONS(5169), + [sym_safe_nav] = ACTIONS(5169), [sym_multiline_comment] = ACTIONS(3), }, [3859] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_where] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3116), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(7185), + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_RBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [anon_sym_DASH_GT] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3860] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(7177), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(7185), + [sym__alpha_identifier] = ACTIONS(5024), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_get] = ACTIONS(5024), + [anon_sym_set] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [sym_label] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_QMARK_COLON] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(7138), + [anon_sym_PLUS_EQ] = ACTIONS(5057), + [anon_sym_DASH_EQ] = ACTIONS(5057), + [anon_sym_STAR_EQ] = ACTIONS(5057), + [anon_sym_SLASH_EQ] = ACTIONS(5057), + [anon_sym_PERCENT_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_BANGin] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_BANGis] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_as_QMARK] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_BANG_BANG] = ACTIONS(5026), + [anon_sym_suspend] = ACTIONS(5024), + [anon_sym_sealed] = ACTIONS(5024), + [anon_sym_annotation] = ACTIONS(5024), + [anon_sym_data] = ACTIONS(5024), + [anon_sym_inner] = ACTIONS(5024), + [anon_sym_value] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_lateinit] = ACTIONS(5024), + [anon_sym_public] = ACTIONS(5024), + [anon_sym_private] = ACTIONS(5024), + [anon_sym_internal] = ACTIONS(5024), + [anon_sym_protected] = ACTIONS(5024), + [anon_sym_tailrec] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5024), + [anon_sym_infix] = ACTIONS(5024), + [anon_sym_inline] = ACTIONS(5024), + [anon_sym_external] = ACTIONS(5024), + [sym_property_modifier] = ACTIONS(5024), + [anon_sym_abstract] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_open] = ACTIONS(5024), + [anon_sym_vararg] = ACTIONS(5024), + [anon_sym_noinline] = ACTIONS(5024), + [anon_sym_crossinline] = ACTIONS(5024), + [anon_sym_expect] = ACTIONS(5024), + [anon_sym_actual] = ACTIONS(5024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5026), + [sym__automatic_semicolon] = ACTIONS(5026), + [sym_safe_nav] = ACTIONS(5026), [sym_multiline_comment] = ACTIONS(3), }, [3861] = { - [sym__alpha_identifier] = ACTIONS(4695), - [anon_sym_AT] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_as] = ACTIONS(4695), - [anon_sym_EQ] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4697), - [anon_sym_RBRACE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_where] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_get] = ACTIONS(4695), - [anon_sym_set] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [sym_label] = ACTIONS(4697), - [anon_sym_in] = ACTIONS(4695), - [anon_sym_DOT_DOT] = ACTIONS(4697), - [anon_sym_QMARK_COLON] = ACTIONS(4697), - [anon_sym_AMP_AMP] = ACTIONS(4697), - [anon_sym_PIPE_PIPE] = ACTIONS(4697), - [anon_sym_else] = ACTIONS(4695), - [anon_sym_COLON_COLON] = ACTIONS(4697), - [anon_sym_PLUS_EQ] = ACTIONS(4697), - [anon_sym_DASH_EQ] = ACTIONS(4697), - [anon_sym_STAR_EQ] = ACTIONS(4697), - [anon_sym_SLASH_EQ] = ACTIONS(4697), - [anon_sym_PERCENT_EQ] = ACTIONS(4697), - [anon_sym_BANG_EQ] = ACTIONS(4695), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4697), - [anon_sym_EQ_EQ] = ACTIONS(4695), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4697), - [anon_sym_LT_EQ] = ACTIONS(4697), - [anon_sym_GT_EQ] = ACTIONS(4697), - [anon_sym_BANGin] = ACTIONS(4697), - [anon_sym_is] = ACTIONS(4695), - [anon_sym_BANGis] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_PERCENT] = ACTIONS(4695), - [anon_sym_as_QMARK] = ACTIONS(4697), - [anon_sym_PLUS_PLUS] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4697), - [anon_sym_BANG_BANG] = ACTIONS(4697), - [anon_sym_suspend] = ACTIONS(4695), - [anon_sym_sealed] = ACTIONS(4695), - [anon_sym_annotation] = ACTIONS(4695), - [anon_sym_data] = ACTIONS(4695), - [anon_sym_inner] = ACTIONS(4695), - [anon_sym_value] = ACTIONS(4695), - [anon_sym_override] = ACTIONS(4695), - [anon_sym_lateinit] = ACTIONS(4695), - [anon_sym_public] = ACTIONS(4695), - [anon_sym_private] = ACTIONS(4695), - [anon_sym_internal] = ACTIONS(4695), - [anon_sym_protected] = ACTIONS(4695), - [anon_sym_tailrec] = ACTIONS(4695), - [anon_sym_operator] = ACTIONS(4695), - [anon_sym_infix] = ACTIONS(4695), - [anon_sym_inline] = ACTIONS(4695), - [anon_sym_external] = ACTIONS(4695), - [sym_property_modifier] = ACTIONS(4695), - [anon_sym_abstract] = ACTIONS(4695), - [anon_sym_final] = ACTIONS(4695), - [anon_sym_open] = ACTIONS(4695), - [anon_sym_vararg] = ACTIONS(4695), - [anon_sym_noinline] = ACTIONS(4695), - [anon_sym_crossinline] = ACTIONS(4695), - [anon_sym_expect] = ACTIONS(4695), - [anon_sym_actual] = ACTIONS(4695), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4697), - [sym__automatic_semicolon] = ACTIONS(4697), - [sym_safe_nav] = ACTIONS(4697), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(4465), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), [sym_multiline_comment] = ACTIONS(3), }, [3862] = { - [sym_class_body] = STATE(4123), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__alpha_identifier] = ACTIONS(5135), + [anon_sym_AT] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_EQ] = ACTIONS(5135), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_where] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(5137), + [anon_sym_get] = ACTIONS(5135), + [anon_sym_set] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [sym_label] = ACTIONS(5137), + [anon_sym_in] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5137), + [anon_sym_QMARK_COLON] = ACTIONS(5137), + [anon_sym_AMP_AMP] = ACTIONS(5137), + [anon_sym_PIPE_PIPE] = ACTIONS(5137), + [anon_sym_else] = ACTIONS(5135), + [anon_sym_COLON_COLON] = ACTIONS(5137), + [anon_sym_PLUS_EQ] = ACTIONS(5137), + [anon_sym_DASH_EQ] = ACTIONS(5137), + [anon_sym_STAR_EQ] = ACTIONS(5137), + [anon_sym_SLASH_EQ] = ACTIONS(5137), + [anon_sym_PERCENT_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5137), + [anon_sym_LT_EQ] = ACTIONS(5137), + [anon_sym_GT_EQ] = ACTIONS(5137), + [anon_sym_BANGin] = ACTIONS(5137), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_BANGis] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_as_QMARK] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5137), + [anon_sym_DASH_DASH] = ACTIONS(5137), + [anon_sym_BANG_BANG] = ACTIONS(5137), + [anon_sym_suspend] = ACTIONS(5135), + [anon_sym_sealed] = ACTIONS(5135), + [anon_sym_annotation] = ACTIONS(5135), + [anon_sym_data] = ACTIONS(5135), + [anon_sym_inner] = ACTIONS(5135), + [anon_sym_value] = ACTIONS(5135), + [anon_sym_override] = ACTIONS(5135), + [anon_sym_lateinit] = ACTIONS(5135), + [anon_sym_public] = ACTIONS(5135), + [anon_sym_private] = ACTIONS(5135), + [anon_sym_internal] = ACTIONS(5135), + [anon_sym_protected] = ACTIONS(5135), + [anon_sym_tailrec] = ACTIONS(5135), + [anon_sym_operator] = ACTIONS(5135), + [anon_sym_infix] = ACTIONS(5135), + [anon_sym_inline] = ACTIONS(5135), + [anon_sym_external] = ACTIONS(5135), + [sym_property_modifier] = ACTIONS(5135), + [anon_sym_abstract] = ACTIONS(5135), + [anon_sym_final] = ACTIONS(5135), + [anon_sym_open] = ACTIONS(5135), + [anon_sym_vararg] = ACTIONS(5135), + [anon_sym_noinline] = ACTIONS(5135), + [anon_sym_crossinline] = ACTIONS(5135), + [anon_sym_expect] = ACTIONS(5135), + [anon_sym_actual] = ACTIONS(5135), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5137), + [sym__automatic_semicolon] = ACTIONS(5137), + [sym_safe_nav] = ACTIONS(5137), [sym_multiline_comment] = ACTIONS(3), }, [3863] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7167), - [anon_sym_where] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7175), - [anon_sym_DOT_DOT] = ACTIONS(7177), - [anon_sym_QMARK_COLON] = ACTIONS(7179), - [anon_sym_AMP_AMP] = ACTIONS(7181), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(7187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7189), - [anon_sym_EQ_EQ] = ACTIONS(7187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7189), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7191), - [anon_sym_BANGin] = ACTIONS(7193), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), - [sym_safe_nav] = ACTIONS(7185), + [sym__alpha_identifier] = ACTIONS(4866), + [anon_sym_AT] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_as] = ACTIONS(4866), + [anon_sym_EQ] = ACTIONS(4866), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4866), + [anon_sym_where] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_get] = ACTIONS(4866), + [anon_sym_set] = ACTIONS(4866), + [anon_sym_STAR] = ACTIONS(4866), + [sym_label] = ACTIONS(4868), + [anon_sym_in] = ACTIONS(4866), + [anon_sym_DOT_DOT] = ACTIONS(4868), + [anon_sym_QMARK_COLON] = ACTIONS(4868), + [anon_sym_AMP_AMP] = ACTIONS(4868), + [anon_sym_PIPE_PIPE] = ACTIONS(4868), + [anon_sym_else] = ACTIONS(4866), + [anon_sym_COLON_COLON] = ACTIONS(4868), + [anon_sym_PLUS_EQ] = ACTIONS(4868), + [anon_sym_DASH_EQ] = ACTIONS(4868), + [anon_sym_STAR_EQ] = ACTIONS(4868), + [anon_sym_SLASH_EQ] = ACTIONS(4868), + [anon_sym_PERCENT_EQ] = ACTIONS(4868), + [anon_sym_BANG_EQ] = ACTIONS(4866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4868), + [anon_sym_EQ_EQ] = ACTIONS(4866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4868), + [anon_sym_LT_EQ] = ACTIONS(4868), + [anon_sym_GT_EQ] = ACTIONS(4868), + [anon_sym_BANGin] = ACTIONS(4868), + [anon_sym_is] = ACTIONS(4866), + [anon_sym_BANGis] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4866), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4866), + [anon_sym_PERCENT] = ACTIONS(4866), + [anon_sym_as_QMARK] = ACTIONS(4868), + [anon_sym_PLUS_PLUS] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4868), + [anon_sym_BANG_BANG] = ACTIONS(4868), + [anon_sym_suspend] = ACTIONS(4866), + [anon_sym_sealed] = ACTIONS(4866), + [anon_sym_annotation] = ACTIONS(4866), + [anon_sym_data] = ACTIONS(4866), + [anon_sym_inner] = ACTIONS(4866), + [anon_sym_value] = ACTIONS(4866), + [anon_sym_override] = ACTIONS(4866), + [anon_sym_lateinit] = ACTIONS(4866), + [anon_sym_public] = ACTIONS(4866), + [anon_sym_private] = ACTIONS(4866), + [anon_sym_internal] = ACTIONS(4866), + [anon_sym_protected] = ACTIONS(4866), + [anon_sym_tailrec] = ACTIONS(4866), + [anon_sym_operator] = ACTIONS(4866), + [anon_sym_infix] = ACTIONS(4866), + [anon_sym_inline] = ACTIONS(4866), + [anon_sym_external] = ACTIONS(4866), + [sym_property_modifier] = ACTIONS(4866), + [anon_sym_abstract] = ACTIONS(4866), + [anon_sym_final] = ACTIONS(4866), + [anon_sym_open] = ACTIONS(4866), + [anon_sym_vararg] = ACTIONS(4866), + [anon_sym_noinline] = ACTIONS(4866), + [anon_sym_crossinline] = ACTIONS(4866), + [anon_sym_expect] = ACTIONS(4866), + [anon_sym_actual] = ACTIONS(4866), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4868), + [sym__automatic_semicolon] = ACTIONS(4868), + [sym_safe_nav] = ACTIONS(4868), [sym_multiline_comment] = ACTIONS(3), }, [3864] = { - [sym_class_body] = STATE(4044), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, [3865] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_class_body] = STATE(3881), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7141), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + }, + [3866] = { + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4137), + [anon_sym_LBRACE] = ACTIONS(4139), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + }, + [3867] = { + [sym__alpha_identifier] = ACTIONS(4962), + [anon_sym_AT] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4962), + [anon_sym_EQ] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_RBRACE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4962), + [anon_sym_where] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_get] = ACTIONS(4962), + [anon_sym_set] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [sym_label] = ACTIONS(4964), + [anon_sym_in] = ACTIONS(4962), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_QMARK_COLON] = ACTIONS(4964), + [anon_sym_AMP_AMP] = ACTIONS(4964), + [anon_sym_PIPE_PIPE] = ACTIONS(4964), + [anon_sym_else] = ACTIONS(4962), + [anon_sym_COLON_COLON] = ACTIONS(4964), + [anon_sym_PLUS_EQ] = ACTIONS(4964), + [anon_sym_DASH_EQ] = ACTIONS(4964), + [anon_sym_STAR_EQ] = ACTIONS(4964), + [anon_sym_SLASH_EQ] = ACTIONS(4964), + [anon_sym_PERCENT_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4964), + [anon_sym_LT_EQ] = ACTIONS(4964), + [anon_sym_GT_EQ] = ACTIONS(4964), + [anon_sym_BANGin] = ACTIONS(4964), + [anon_sym_is] = ACTIONS(4962), + [anon_sym_BANGis] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_PERCENT] = ACTIONS(4962), + [anon_sym_as_QMARK] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_BANG_BANG] = ACTIONS(4964), + [anon_sym_suspend] = ACTIONS(4962), + [anon_sym_sealed] = ACTIONS(4962), + [anon_sym_annotation] = ACTIONS(4962), + [anon_sym_data] = ACTIONS(4962), + [anon_sym_inner] = ACTIONS(4962), + [anon_sym_value] = ACTIONS(4962), + [anon_sym_override] = ACTIONS(4962), + [anon_sym_lateinit] = ACTIONS(4962), + [anon_sym_public] = ACTIONS(4962), + [anon_sym_private] = ACTIONS(4962), + [anon_sym_internal] = ACTIONS(4962), + [anon_sym_protected] = ACTIONS(4962), + [anon_sym_tailrec] = ACTIONS(4962), + [anon_sym_operator] = ACTIONS(4962), + [anon_sym_infix] = ACTIONS(4962), + [anon_sym_inline] = ACTIONS(4962), + [anon_sym_external] = ACTIONS(4962), + [sym_property_modifier] = ACTIONS(4962), + [anon_sym_abstract] = ACTIONS(4962), + [anon_sym_final] = ACTIONS(4962), + [anon_sym_open] = ACTIONS(4962), + [anon_sym_vararg] = ACTIONS(4962), + [anon_sym_noinline] = ACTIONS(4962), + [anon_sym_crossinline] = ACTIONS(4962), + [anon_sym_expect] = ACTIONS(4962), + [anon_sym_actual] = ACTIONS(4962), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4964), + [sym__automatic_semicolon] = ACTIONS(4964), + [sym_safe_nav] = ACTIONS(4964), + [sym_multiline_comment] = ACTIONS(3), + }, + [3868] = { + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [3869] = { + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [3870] = { + [sym__alpha_identifier] = ACTIONS(5199), + [anon_sym_AT] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(5201), + [anon_sym_as] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_LBRACE] = ACTIONS(5201), + [anon_sym_RBRACE] = ACTIONS(5201), + [anon_sym_LPAREN] = ACTIONS(5201), + [anon_sym_COMMA] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5199), + [anon_sym_GT] = ACTIONS(5199), + [anon_sym_where] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5199), + [anon_sym_SEMI] = ACTIONS(5201), + [anon_sym_get] = ACTIONS(5199), + [anon_sym_set] = ACTIONS(5199), + [anon_sym_STAR] = ACTIONS(5199), + [sym_label] = ACTIONS(5201), + [anon_sym_in] = ACTIONS(5199), + [anon_sym_DOT_DOT] = ACTIONS(5201), + [anon_sym_QMARK_COLON] = ACTIONS(5201), + [anon_sym_AMP_AMP] = ACTIONS(5201), + [anon_sym_PIPE_PIPE] = ACTIONS(5201), + [anon_sym_else] = ACTIONS(5199), + [anon_sym_COLON_COLON] = ACTIONS(5201), + [anon_sym_PLUS_EQ] = ACTIONS(5201), + [anon_sym_DASH_EQ] = ACTIONS(5201), + [anon_sym_STAR_EQ] = ACTIONS(5201), + [anon_sym_SLASH_EQ] = ACTIONS(5201), + [anon_sym_PERCENT_EQ] = ACTIONS(5201), + [anon_sym_BANG_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5201), + [anon_sym_EQ_EQ] = ACTIONS(5199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5201), + [anon_sym_LT_EQ] = ACTIONS(5201), + [anon_sym_GT_EQ] = ACTIONS(5201), + [anon_sym_BANGin] = ACTIONS(5201), + [anon_sym_is] = ACTIONS(5199), + [anon_sym_BANGis] = ACTIONS(5201), + [anon_sym_PLUS] = ACTIONS(5199), + [anon_sym_DASH] = ACTIONS(5199), + [anon_sym_SLASH] = ACTIONS(5199), + [anon_sym_PERCENT] = ACTIONS(5199), + [anon_sym_as_QMARK] = ACTIONS(5201), + [anon_sym_PLUS_PLUS] = ACTIONS(5201), + [anon_sym_DASH_DASH] = ACTIONS(5201), + [anon_sym_BANG_BANG] = ACTIONS(5201), + [anon_sym_suspend] = ACTIONS(5199), + [anon_sym_sealed] = ACTIONS(5199), + [anon_sym_annotation] = ACTIONS(5199), + [anon_sym_data] = ACTIONS(5199), + [anon_sym_inner] = ACTIONS(5199), + [anon_sym_value] = ACTIONS(5199), + [anon_sym_override] = ACTIONS(5199), + [anon_sym_lateinit] = ACTIONS(5199), + [anon_sym_public] = ACTIONS(5199), + [anon_sym_private] = ACTIONS(5199), + [anon_sym_internal] = ACTIONS(5199), + [anon_sym_protected] = ACTIONS(5199), + [anon_sym_tailrec] = ACTIONS(5199), + [anon_sym_operator] = ACTIONS(5199), + [anon_sym_infix] = ACTIONS(5199), + [anon_sym_inline] = ACTIONS(5199), + [anon_sym_external] = ACTIONS(5199), + [sym_property_modifier] = ACTIONS(5199), + [anon_sym_abstract] = ACTIONS(5199), + [anon_sym_final] = ACTIONS(5199), + [anon_sym_open] = ACTIONS(5199), + [anon_sym_vararg] = ACTIONS(5199), + [anon_sym_noinline] = ACTIONS(5199), + [anon_sym_crossinline] = ACTIONS(5199), + [anon_sym_expect] = ACTIONS(5199), + [anon_sym_actual] = ACTIONS(5199), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5201), + [sym__automatic_semicolon] = ACTIONS(5201), + [sym_safe_nav] = ACTIONS(5201), + [sym_multiline_comment] = ACTIONS(3), + }, + [3871] = { + [sym__alpha_identifier] = ACTIONS(7143), + [anon_sym_AT] = ACTIONS(7145), + [anon_sym_LBRACK] = ACTIONS(7145), + [anon_sym_typealias] = ACTIONS(7143), + [anon_sym_class] = ACTIONS(7143), + [anon_sym_interface] = ACTIONS(7143), + [anon_sym_enum] = ACTIONS(7143), + [anon_sym_LBRACE] = ACTIONS(7145), + [anon_sym_LPAREN] = ACTIONS(7145), + [anon_sym_val] = ACTIONS(7143), + [anon_sym_var] = ACTIONS(7143), + [anon_sym_object] = ACTIONS(7143), + [anon_sym_fun] = ACTIONS(7143), + [anon_sym_get] = ACTIONS(7143), + [anon_sym_set] = ACTIONS(7143), + [anon_sym_this] = ACTIONS(7143), + [anon_sym_super] = ACTIONS(7143), + [anon_sym_STAR] = ACTIONS(7145), + [sym_label] = ACTIONS(7143), + [anon_sym_for] = ACTIONS(7143), + [anon_sym_while] = ACTIONS(7143), + [anon_sym_do] = ACTIONS(7143), + [anon_sym_null] = ACTIONS(7143), + [anon_sym_if] = ACTIONS(7143), + [anon_sym_when] = ACTIONS(7143), + [anon_sym_try] = ACTIONS(7143), + [anon_sym_throw] = ACTIONS(7143), + [anon_sym_return] = ACTIONS(7143), + [anon_sym_continue] = ACTIONS(7143), + [anon_sym_break] = ACTIONS(7143), + [anon_sym_COLON_COLON] = ACTIONS(7145), + [anon_sym_PLUS] = ACTIONS(7143), + [anon_sym_DASH] = ACTIONS(7143), + [anon_sym_PLUS_PLUS] = ACTIONS(7145), + [anon_sym_DASH_DASH] = ACTIONS(7145), + [anon_sym_BANG] = ACTIONS(7145), + [anon_sym_suspend] = ACTIONS(7143), + [anon_sym_sealed] = ACTIONS(7143), + [anon_sym_annotation] = ACTIONS(7143), + [anon_sym_data] = ACTIONS(7143), + [anon_sym_inner] = ACTIONS(7143), + [anon_sym_value] = ACTIONS(7143), + [anon_sym_override] = ACTIONS(7143), + [anon_sym_lateinit] = ACTIONS(7143), + [anon_sym_public] = ACTIONS(7143), + [anon_sym_private] = ACTIONS(7143), + [anon_sym_internal] = ACTIONS(7143), + [anon_sym_protected] = ACTIONS(7143), + [anon_sym_tailrec] = ACTIONS(7143), + [anon_sym_operator] = ACTIONS(7143), + [anon_sym_infix] = ACTIONS(7143), + [anon_sym_inline] = ACTIONS(7143), + [anon_sym_external] = ACTIONS(7143), + [sym_property_modifier] = ACTIONS(7143), + [anon_sym_abstract] = ACTIONS(7143), + [anon_sym_final] = ACTIONS(7143), + [anon_sym_open] = ACTIONS(7143), + [anon_sym_vararg] = ACTIONS(7143), + [anon_sym_noinline] = ACTIONS(7143), + [anon_sym_crossinline] = ACTIONS(7143), + [anon_sym_expect] = ACTIONS(7143), + [anon_sym_actual] = ACTIONS(7143), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7145), + [anon_sym_continue_AT] = ACTIONS(7145), + [anon_sym_break_AT] = ACTIONS(7145), + [anon_sym_this_AT] = ACTIONS(7145), + [anon_sym_super_AT] = ACTIONS(7145), + [sym_real_literal] = ACTIONS(7145), + [sym_integer_literal] = ACTIONS(7143), + [sym_hex_literal] = ACTIONS(7145), + [sym_bin_literal] = ACTIONS(7145), + [anon_sym_true] = ACTIONS(7143), + [anon_sym_false] = ACTIONS(7143), + [anon_sym_SQUOTE] = ACTIONS(7145), + [sym__backtick_identifier] = ACTIONS(7145), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7145), + }, + [3872] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3090), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7167), - [anon_sym_where] = ACTIONS(3192), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7175), - [anon_sym_DOT_DOT] = ACTIONS(7177), - [anon_sym_QMARK_COLON] = ACTIONS(7179), - [anon_sym_AMP_AMP] = ACTIONS(7181), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3194), - [anon_sym_DASH_EQ] = ACTIONS(3194), - [anon_sym_STAR_EQ] = ACTIONS(3194), - [anon_sym_SLASH_EQ] = ACTIONS(3194), - [anon_sym_PERCENT_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ] = ACTIONS(7187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7189), - [anon_sym_EQ_EQ] = ACTIONS(7187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7189), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7191), - [anon_sym_BANGin] = ACTIONS(7193), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7159), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [3866] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [3873] = { + [sym__alpha_identifier] = ACTIONS(5031), + [anon_sym_AT] = ACTIONS(5033), + [anon_sym_LBRACK] = ACTIONS(5033), + [anon_sym_as] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5033), + [anon_sym_RBRACE] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(5033), + [anon_sym_COMMA] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5031), + [anon_sym_GT] = ACTIONS(5031), + [anon_sym_where] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_get] = ACTIONS(5031), + [anon_sym_set] = ACTIONS(5031), + [anon_sym_STAR] = ACTIONS(5031), + [sym_label] = ACTIONS(5033), + [anon_sym_in] = ACTIONS(5031), + [anon_sym_DOT_DOT] = ACTIONS(5033), + [anon_sym_QMARK_COLON] = ACTIONS(5033), + [anon_sym_AMP_AMP] = ACTIONS(5033), + [anon_sym_PIPE_PIPE] = ACTIONS(5033), + [anon_sym_else] = ACTIONS(5031), + [anon_sym_COLON_COLON] = ACTIONS(5033), + [anon_sym_PLUS_EQ] = ACTIONS(5033), + [anon_sym_DASH_EQ] = ACTIONS(5033), + [anon_sym_STAR_EQ] = ACTIONS(5033), + [anon_sym_SLASH_EQ] = ACTIONS(5033), + [anon_sym_PERCENT_EQ] = ACTIONS(5033), + [anon_sym_BANG_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5033), + [anon_sym_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5033), + [anon_sym_LT_EQ] = ACTIONS(5033), + [anon_sym_GT_EQ] = ACTIONS(5033), + [anon_sym_BANGin] = ACTIONS(5033), + [anon_sym_is] = ACTIONS(5031), + [anon_sym_BANGis] = ACTIONS(5033), + [anon_sym_PLUS] = ACTIONS(5031), + [anon_sym_DASH] = ACTIONS(5031), + [anon_sym_SLASH] = ACTIONS(5031), + [anon_sym_PERCENT] = ACTIONS(5031), + [anon_sym_as_QMARK] = ACTIONS(5033), + [anon_sym_PLUS_PLUS] = ACTIONS(5033), + [anon_sym_DASH_DASH] = ACTIONS(5033), + [anon_sym_BANG_BANG] = ACTIONS(5033), + [anon_sym_suspend] = ACTIONS(5031), + [anon_sym_sealed] = ACTIONS(5031), + [anon_sym_annotation] = ACTIONS(5031), + [anon_sym_data] = ACTIONS(5031), + [anon_sym_inner] = ACTIONS(5031), + [anon_sym_value] = ACTIONS(5031), + [anon_sym_override] = ACTIONS(5031), + [anon_sym_lateinit] = ACTIONS(5031), + [anon_sym_public] = ACTIONS(5031), + [anon_sym_private] = ACTIONS(5031), + [anon_sym_internal] = ACTIONS(5031), + [anon_sym_protected] = ACTIONS(5031), + [anon_sym_tailrec] = ACTIONS(5031), + [anon_sym_operator] = ACTIONS(5031), + [anon_sym_infix] = ACTIONS(5031), + [anon_sym_inline] = ACTIONS(5031), + [anon_sym_external] = ACTIONS(5031), + [sym_property_modifier] = ACTIONS(5031), + [anon_sym_abstract] = ACTIONS(5031), + [anon_sym_final] = ACTIONS(5031), + [anon_sym_open] = ACTIONS(5031), + [anon_sym_vararg] = ACTIONS(5031), + [anon_sym_noinline] = ACTIONS(5031), + [anon_sym_crossinline] = ACTIONS(5031), + [anon_sym_expect] = ACTIONS(5031), + [anon_sym_actual] = ACTIONS(5031), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5033), + [sym__automatic_semicolon] = ACTIONS(5033), + [sym_safe_nav] = ACTIONS(5033), + [sym_multiline_comment] = ACTIONS(3), + }, + [3874] = { + [sym__alpha_identifier] = ACTIONS(5103), + [anon_sym_AT] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5105), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5103), + [anon_sym_GT] = ACTIONS(5103), + [anon_sym_where] = ACTIONS(5103), + [anon_sym_DOT] = ACTIONS(5103), + [anon_sym_SEMI] = ACTIONS(5105), + [anon_sym_get] = ACTIONS(5103), + [anon_sym_set] = ACTIONS(5103), + [anon_sym_STAR] = ACTIONS(5103), + [sym_label] = ACTIONS(5105), + [anon_sym_in] = ACTIONS(5103), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_QMARK_COLON] = ACTIONS(5105), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_else] = ACTIONS(5103), + [anon_sym_COLON_COLON] = ACTIONS(5105), + [anon_sym_PLUS_EQ] = ACTIONS(5105), + [anon_sym_DASH_EQ] = ACTIONS(5105), + [anon_sym_STAR_EQ] = ACTIONS(5105), + [anon_sym_SLASH_EQ] = ACTIONS(5105), + [anon_sym_PERCENT_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_BANGin] = ACTIONS(5105), + [anon_sym_is] = ACTIONS(5103), + [anon_sym_BANGis] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5103), + [anon_sym_DASH] = ACTIONS(5103), + [anon_sym_SLASH] = ACTIONS(5103), + [anon_sym_PERCENT] = ACTIONS(5103), + [anon_sym_as_QMARK] = ACTIONS(5105), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_BANG_BANG] = ACTIONS(5105), + [anon_sym_suspend] = ACTIONS(5103), + [anon_sym_sealed] = ACTIONS(5103), + [anon_sym_annotation] = ACTIONS(5103), + [anon_sym_data] = ACTIONS(5103), + [anon_sym_inner] = ACTIONS(5103), + [anon_sym_value] = ACTIONS(5103), + [anon_sym_override] = ACTIONS(5103), + [anon_sym_lateinit] = ACTIONS(5103), + [anon_sym_public] = ACTIONS(5103), + [anon_sym_private] = ACTIONS(5103), + [anon_sym_internal] = ACTIONS(5103), + [anon_sym_protected] = ACTIONS(5103), + [anon_sym_tailrec] = ACTIONS(5103), + [anon_sym_operator] = ACTIONS(5103), + [anon_sym_infix] = ACTIONS(5103), + [anon_sym_inline] = ACTIONS(5103), + [anon_sym_external] = ACTIONS(5103), + [sym_property_modifier] = ACTIONS(5103), + [anon_sym_abstract] = ACTIONS(5103), + [anon_sym_final] = ACTIONS(5103), + [anon_sym_open] = ACTIONS(5103), + [anon_sym_vararg] = ACTIONS(5103), + [anon_sym_noinline] = ACTIONS(5103), + [anon_sym_crossinline] = ACTIONS(5103), + [anon_sym_expect] = ACTIONS(5103), + [anon_sym_actual] = ACTIONS(5103), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5105), + [sym__automatic_semicolon] = ACTIONS(5105), + [sym_safe_nav] = ACTIONS(5105), + [sym_multiline_comment] = ACTIONS(3), + }, + [3875] = { + [sym__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_as] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_where] = ACTIONS(5077), + [anon_sym_DOT] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5079), + [anon_sym_get] = ACTIONS(5077), + [anon_sym_set] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [sym_label] = ACTIONS(5079), + [anon_sym_in] = ACTIONS(5077), + [anon_sym_DOT_DOT] = ACTIONS(5079), + [anon_sym_QMARK_COLON] = ACTIONS(5079), + [anon_sym_AMP_AMP] = ACTIONS(5079), + [anon_sym_PIPE_PIPE] = ACTIONS(5079), + [anon_sym_else] = ACTIONS(5077), + [anon_sym_COLON_COLON] = ACTIONS(5079), + [anon_sym_PLUS_EQ] = ACTIONS(5079), + [anon_sym_DASH_EQ] = ACTIONS(5079), + [anon_sym_STAR_EQ] = ACTIONS(5079), + [anon_sym_SLASH_EQ] = ACTIONS(5079), + [anon_sym_PERCENT_EQ] = ACTIONS(5079), + [anon_sym_BANG_EQ] = ACTIONS(5077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5079), + [anon_sym_EQ_EQ] = ACTIONS(5077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5079), + [anon_sym_LT_EQ] = ACTIONS(5079), + [anon_sym_GT_EQ] = ACTIONS(5079), + [anon_sym_BANGin] = ACTIONS(5079), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_BANGis] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_as_QMARK] = ACTIONS(5079), + [anon_sym_PLUS_PLUS] = ACTIONS(5079), + [anon_sym_DASH_DASH] = ACTIONS(5079), + [anon_sym_BANG_BANG] = ACTIONS(5079), + [anon_sym_suspend] = ACTIONS(5077), + [anon_sym_sealed] = ACTIONS(5077), + [anon_sym_annotation] = ACTIONS(5077), + [anon_sym_data] = ACTIONS(5077), + [anon_sym_inner] = ACTIONS(5077), + [anon_sym_value] = ACTIONS(5077), + [anon_sym_override] = ACTIONS(5077), + [anon_sym_lateinit] = ACTIONS(5077), + [anon_sym_public] = ACTIONS(5077), + [anon_sym_private] = ACTIONS(5077), + [anon_sym_internal] = ACTIONS(5077), + [anon_sym_protected] = ACTIONS(5077), + [anon_sym_tailrec] = ACTIONS(5077), + [anon_sym_operator] = ACTIONS(5077), + [anon_sym_infix] = ACTIONS(5077), + [anon_sym_inline] = ACTIONS(5077), + [anon_sym_external] = ACTIONS(5077), + [sym_property_modifier] = ACTIONS(5077), + [anon_sym_abstract] = ACTIONS(5077), + [anon_sym_final] = ACTIONS(5077), + [anon_sym_open] = ACTIONS(5077), + [anon_sym_vararg] = ACTIONS(5077), + [anon_sym_noinline] = ACTIONS(5077), + [anon_sym_crossinline] = ACTIONS(5077), + [anon_sym_expect] = ACTIONS(5077), + [anon_sym_actual] = ACTIONS(5077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5079), + [sym__automatic_semicolon] = ACTIONS(5079), + [sym_safe_nav] = ACTIONS(5079), + [sym_multiline_comment] = ACTIONS(3), + }, + [3876] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [3877] = { + [sym__alpha_identifier] = ACTIONS(5163), + [anon_sym_AT] = ACTIONS(5165), + [anon_sym_LBRACK] = ACTIONS(5165), + [anon_sym_typealias] = ACTIONS(5163), + [anon_sym_class] = ACTIONS(5163), + [anon_sym_interface] = ACTIONS(5163), + [anon_sym_enum] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5165), + [anon_sym_val] = ACTIONS(5163), + [anon_sym_var] = ACTIONS(5163), + [anon_sym_object] = ACTIONS(5163), + [anon_sym_fun] = ACTIONS(5163), + [anon_sym_get] = ACTIONS(5163), + [anon_sym_set] = ACTIONS(5163), + [anon_sym_this] = ACTIONS(5163), + [anon_sym_super] = ACTIONS(5163), + [anon_sym_STAR] = ACTIONS(5165), + [sym_label] = ACTIONS(5163), + [anon_sym_for] = ACTIONS(5163), + [anon_sym_while] = ACTIONS(5163), + [anon_sym_do] = ACTIONS(5163), + [anon_sym_null] = ACTIONS(5163), + [anon_sym_if] = ACTIONS(5163), + [anon_sym_when] = ACTIONS(5163), + [anon_sym_try] = ACTIONS(5163), + [anon_sym_throw] = ACTIONS(5163), + [anon_sym_return] = ACTIONS(5163), + [anon_sym_continue] = ACTIONS(5163), + [anon_sym_break] = ACTIONS(5163), + [anon_sym_COLON_COLON] = ACTIONS(5165), + [anon_sym_PLUS] = ACTIONS(5163), + [anon_sym_DASH] = ACTIONS(5163), + [anon_sym_PLUS_PLUS] = ACTIONS(5165), + [anon_sym_DASH_DASH] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_suspend] = ACTIONS(5163), + [anon_sym_sealed] = ACTIONS(5163), + [anon_sym_annotation] = ACTIONS(5163), + [anon_sym_data] = ACTIONS(5163), + [anon_sym_inner] = ACTIONS(5163), + [anon_sym_value] = ACTIONS(5163), + [anon_sym_override] = ACTIONS(5163), + [anon_sym_lateinit] = ACTIONS(5163), + [anon_sym_public] = ACTIONS(5163), + [anon_sym_private] = ACTIONS(5163), + [anon_sym_internal] = ACTIONS(5163), + [anon_sym_protected] = ACTIONS(5163), + [anon_sym_tailrec] = ACTIONS(5163), + [anon_sym_operator] = ACTIONS(5163), + [anon_sym_infix] = ACTIONS(5163), + [anon_sym_inline] = ACTIONS(5163), + [anon_sym_external] = ACTIONS(5163), + [sym_property_modifier] = ACTIONS(5163), + [anon_sym_abstract] = ACTIONS(5163), + [anon_sym_final] = ACTIONS(5163), + [anon_sym_open] = ACTIONS(5163), + [anon_sym_vararg] = ACTIONS(5163), + [anon_sym_noinline] = ACTIONS(5163), + [anon_sym_crossinline] = ACTIONS(5163), + [anon_sym_expect] = ACTIONS(5163), + [anon_sym_actual] = ACTIONS(5163), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5165), + [anon_sym_continue_AT] = ACTIONS(5165), + [anon_sym_break_AT] = ACTIONS(5165), + [anon_sym_this_AT] = ACTIONS(5165), + [anon_sym_super_AT] = ACTIONS(5165), + [sym_real_literal] = ACTIONS(5165), + [sym_integer_literal] = ACTIONS(5163), + [sym_hex_literal] = ACTIONS(5165), + [sym_bin_literal] = ACTIONS(5165), + [anon_sym_true] = ACTIONS(5163), + [anon_sym_false] = ACTIONS(5163), + [anon_sym_SQUOTE] = ACTIONS(5165), + [sym__backtick_identifier] = ACTIONS(5165), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5165), + }, + [3878] = { + [sym__alpha_identifier] = ACTIONS(5107), + [anon_sym_AT] = ACTIONS(5109), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5107), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_RBRACE] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_LT] = ACTIONS(5107), + [anon_sym_GT] = ACTIONS(5107), + [anon_sym_where] = ACTIONS(5107), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_SEMI] = ACTIONS(5109), + [anon_sym_get] = ACTIONS(5107), + [anon_sym_set] = ACTIONS(5107), + [anon_sym_STAR] = ACTIONS(5107), + [sym_label] = ACTIONS(5109), + [anon_sym_in] = ACTIONS(5107), + [anon_sym_DOT_DOT] = ACTIONS(5109), + [anon_sym_QMARK_COLON] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_else] = ACTIONS(5107), + [anon_sym_COLON_COLON] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5109), + [anon_sym_EQ_EQ] = ACTIONS(5107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_BANGin] = ACTIONS(5109), + [anon_sym_is] = ACTIONS(5107), + [anon_sym_BANGis] = ACTIONS(5109), + [anon_sym_PLUS] = ACTIONS(5107), + [anon_sym_DASH] = ACTIONS(5107), + [anon_sym_SLASH] = ACTIONS(5107), + [anon_sym_PERCENT] = ACTIONS(5107), + [anon_sym_as_QMARK] = ACTIONS(5109), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_BANG_BANG] = ACTIONS(5109), + [anon_sym_suspend] = ACTIONS(5107), + [anon_sym_sealed] = ACTIONS(5107), + [anon_sym_annotation] = ACTIONS(5107), + [anon_sym_data] = ACTIONS(5107), + [anon_sym_inner] = ACTIONS(5107), + [anon_sym_value] = ACTIONS(5107), + [anon_sym_override] = ACTIONS(5107), + [anon_sym_lateinit] = ACTIONS(5107), + [anon_sym_public] = ACTIONS(5107), + [anon_sym_private] = ACTIONS(5107), + [anon_sym_internal] = ACTIONS(5107), + [anon_sym_protected] = ACTIONS(5107), + [anon_sym_tailrec] = ACTIONS(5107), + [anon_sym_operator] = ACTIONS(5107), + [anon_sym_infix] = ACTIONS(5107), + [anon_sym_inline] = ACTIONS(5107), + [anon_sym_external] = ACTIONS(5107), + [sym_property_modifier] = ACTIONS(5107), + [anon_sym_abstract] = ACTIONS(5107), + [anon_sym_final] = ACTIONS(5107), + [anon_sym_open] = ACTIONS(5107), + [anon_sym_vararg] = ACTIONS(5107), + [anon_sym_noinline] = ACTIONS(5107), + [anon_sym_crossinline] = ACTIONS(5107), + [anon_sym_expect] = ACTIONS(5107), + [anon_sym_actual] = ACTIONS(5107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5109), + [sym__automatic_semicolon] = ACTIONS(5109), + [sym_safe_nav] = ACTIONS(5109), + [sym_multiline_comment] = ACTIONS(3), + }, + [3879] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3115), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7167), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7175), - [anon_sym_DOT_DOT] = ACTIONS(7177), - [anon_sym_QMARK_COLON] = ACTIONS(7179), - [anon_sym_AMP_AMP] = ACTIONS(7181), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(7187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7189), - [anon_sym_EQ_EQ] = ACTIONS(7187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7189), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7191), - [anon_sym_BANGin] = ACTIONS(7193), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7159), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [3867] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_EQ] = ACTIONS(4790), - [anon_sym_LBRACE] = ACTIONS(4792), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4792), - [anon_sym_COMMA] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4790), - [sym_label] = ACTIONS(4792), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4792), - [anon_sym_QMARK_COLON] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(4790), - [anon_sym_COLON_COLON] = ACTIONS(4792), - [anon_sym_PLUS_EQ] = ACTIONS(4792), - [anon_sym_DASH_EQ] = ACTIONS(4792), - [anon_sym_STAR_EQ] = ACTIONS(4792), - [anon_sym_SLASH_EQ] = ACTIONS(4792), - [anon_sym_PERCENT_EQ] = ACTIONS(4792), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4792), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4792), - [anon_sym_LT_EQ] = ACTIONS(4792), - [anon_sym_GT_EQ] = ACTIONS(4792), - [anon_sym_BANGin] = ACTIONS(4792), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_BANGis] = ACTIONS(4792), - [anon_sym_PLUS] = ACTIONS(4790), - [anon_sym_DASH] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4790), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_as_QMARK] = ACTIONS(4792), - [anon_sym_PLUS_PLUS] = ACTIONS(4792), - [anon_sym_DASH_DASH] = ACTIONS(4792), - [anon_sym_BANG_BANG] = ACTIONS(4792), - [anon_sym_suspend] = ACTIONS(4790), - [anon_sym_sealed] = ACTIONS(4790), - [anon_sym_annotation] = ACTIONS(4790), - [anon_sym_data] = ACTIONS(4790), - [anon_sym_inner] = ACTIONS(4790), - [anon_sym_value] = ACTIONS(4790), - [anon_sym_override] = ACTIONS(4790), - [anon_sym_lateinit] = ACTIONS(4790), - [anon_sym_public] = ACTIONS(4790), - [anon_sym_private] = ACTIONS(4790), - [anon_sym_internal] = ACTIONS(4790), - [anon_sym_protected] = ACTIONS(4790), - [anon_sym_tailrec] = ACTIONS(4790), - [anon_sym_operator] = ACTIONS(4790), - [anon_sym_infix] = ACTIONS(4790), - [anon_sym_inline] = ACTIONS(4790), - [anon_sym_external] = ACTIONS(4790), - [sym_property_modifier] = ACTIONS(4790), - [anon_sym_abstract] = ACTIONS(4790), - [anon_sym_final] = ACTIONS(4790), - [anon_sym_open] = ACTIONS(4790), - [anon_sym_vararg] = ACTIONS(4790), - [anon_sym_noinline] = ACTIONS(4790), - [anon_sym_crossinline] = ACTIONS(4790), - [anon_sym_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), + [3880] = { + [sym_function_body] = STATE(3972), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym__automatic_semicolon] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, - [3868] = { - [sym__alpha_identifier] = ACTIONS(4653), - [anon_sym_AT] = ACTIONS(4655), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_as] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4655), - [anon_sym_RBRACE] = ACTIONS(4655), - [anon_sym_LPAREN] = ACTIONS(4655), - [anon_sym_COMMA] = ACTIONS(4655), - [anon_sym_LT] = ACTIONS(4653), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_where] = ACTIONS(4653), - [anon_sym_DOT] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4655), - [anon_sym_get] = ACTIONS(4653), - [anon_sym_set] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [sym_label] = ACTIONS(4655), - [anon_sym_in] = ACTIONS(4653), - [anon_sym_DOT_DOT] = ACTIONS(4655), - [anon_sym_QMARK_COLON] = ACTIONS(4655), - [anon_sym_AMP_AMP] = ACTIONS(4655), - [anon_sym_PIPE_PIPE] = ACTIONS(4655), - [anon_sym_else] = ACTIONS(4653), - [anon_sym_COLON_COLON] = ACTIONS(4655), - [anon_sym_PLUS_EQ] = ACTIONS(4655), - [anon_sym_DASH_EQ] = ACTIONS(4655), - [anon_sym_STAR_EQ] = ACTIONS(4655), - [anon_sym_SLASH_EQ] = ACTIONS(4655), - [anon_sym_PERCENT_EQ] = ACTIONS(4655), - [anon_sym_BANG_EQ] = ACTIONS(4653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4655), - [anon_sym_EQ_EQ] = ACTIONS(4653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4655), - [anon_sym_LT_EQ] = ACTIONS(4655), - [anon_sym_GT_EQ] = ACTIONS(4655), - [anon_sym_BANGin] = ACTIONS(4655), - [anon_sym_is] = ACTIONS(4653), - [anon_sym_BANGis] = ACTIONS(4655), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_as_QMARK] = ACTIONS(4655), - [anon_sym_PLUS_PLUS] = ACTIONS(4655), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_BANG_BANG] = ACTIONS(4655), - [anon_sym_suspend] = ACTIONS(4653), - [anon_sym_sealed] = ACTIONS(4653), - [anon_sym_annotation] = ACTIONS(4653), - [anon_sym_data] = ACTIONS(4653), - [anon_sym_inner] = ACTIONS(4653), - [anon_sym_value] = ACTIONS(4653), - [anon_sym_override] = ACTIONS(4653), - [anon_sym_lateinit] = ACTIONS(4653), - [anon_sym_public] = ACTIONS(4653), - [anon_sym_private] = ACTIONS(4653), - [anon_sym_internal] = ACTIONS(4653), - [anon_sym_protected] = ACTIONS(4653), - [anon_sym_tailrec] = ACTIONS(4653), - [anon_sym_operator] = ACTIONS(4653), - [anon_sym_infix] = ACTIONS(4653), - [anon_sym_inline] = ACTIONS(4653), - [anon_sym_external] = ACTIONS(4653), - [sym_property_modifier] = ACTIONS(4653), - [anon_sym_abstract] = ACTIONS(4653), - [anon_sym_final] = ACTIONS(4653), - [anon_sym_open] = ACTIONS(4653), - [anon_sym_vararg] = ACTIONS(4653), - [anon_sym_noinline] = ACTIONS(4653), - [anon_sym_crossinline] = ACTIONS(4653), - [anon_sym_expect] = ACTIONS(4653), - [anon_sym_actual] = ACTIONS(4653), - [sym_line_comment] = ACTIONS(3), - [anon_sym_L] = ACTIONS(7229), - [sym__backtick_identifier] = ACTIONS(4655), - [sym__automatic_semicolon] = ACTIONS(4655), - [sym_safe_nav] = ACTIONS(4655), + [3881] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [sym_label] = ACTIONS(4852), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), [sym_multiline_comment] = ACTIONS(3), }, - [3869] = { - [sym__alpha_identifier] = ACTIONS(4786), - [anon_sym_AT] = ACTIONS(4788), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_LBRACK] = ACTIONS(4788), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_EQ] = ACTIONS(4786), - [anon_sym_LBRACE] = ACTIONS(4788), - [anon_sym_RBRACE] = ACTIONS(4788), - [anon_sym_LPAREN] = ACTIONS(4788), - [anon_sym_COMMA] = ACTIONS(4788), - [anon_sym_LT] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4786), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4786), - [anon_sym_SEMI] = ACTIONS(4788), - [anon_sym_get] = ACTIONS(4786), - [anon_sym_set] = ACTIONS(4786), - [anon_sym_STAR] = ACTIONS(4786), - [sym_label] = ACTIONS(4788), - [anon_sym_in] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4788), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4788), - [anon_sym_PIPE_PIPE] = ACTIONS(4788), - [anon_sym_else] = ACTIONS(4786), - [anon_sym_COLON_COLON] = ACTIONS(4788), - [anon_sym_PLUS_EQ] = ACTIONS(4788), - [anon_sym_DASH_EQ] = ACTIONS(4788), - [anon_sym_STAR_EQ] = ACTIONS(4788), - [anon_sym_SLASH_EQ] = ACTIONS(4788), - [anon_sym_PERCENT_EQ] = ACTIONS(4788), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4788), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4788), - [anon_sym_LT_EQ] = ACTIONS(4788), - [anon_sym_GT_EQ] = ACTIONS(4788), - [anon_sym_BANGin] = ACTIONS(4788), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_BANGis] = ACTIONS(4788), - [anon_sym_PLUS] = ACTIONS(4786), - [anon_sym_DASH] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4786), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_as_QMARK] = ACTIONS(4788), - [anon_sym_PLUS_PLUS] = ACTIONS(4788), - [anon_sym_DASH_DASH] = ACTIONS(4788), - [anon_sym_BANG_BANG] = ACTIONS(4788), - [anon_sym_suspend] = ACTIONS(4786), - [anon_sym_sealed] = ACTIONS(4786), - [anon_sym_annotation] = ACTIONS(4786), - [anon_sym_data] = ACTIONS(4786), - [anon_sym_inner] = ACTIONS(4786), - [anon_sym_value] = ACTIONS(4786), - [anon_sym_override] = ACTIONS(4786), - [anon_sym_lateinit] = ACTIONS(4786), - [anon_sym_public] = ACTIONS(4786), - [anon_sym_private] = ACTIONS(4786), - [anon_sym_internal] = ACTIONS(4786), - [anon_sym_protected] = ACTIONS(4786), - [anon_sym_tailrec] = ACTIONS(4786), - [anon_sym_operator] = ACTIONS(4786), - [anon_sym_infix] = ACTIONS(4786), - [anon_sym_inline] = ACTIONS(4786), - [anon_sym_external] = ACTIONS(4786), - [sym_property_modifier] = ACTIONS(4786), - [anon_sym_abstract] = ACTIONS(4786), - [anon_sym_final] = ACTIONS(4786), - [anon_sym_open] = ACTIONS(4786), - [anon_sym_vararg] = ACTIONS(4786), - [anon_sym_noinline] = ACTIONS(4786), - [anon_sym_crossinline] = ACTIONS(4786), - [anon_sym_expect] = ACTIONS(4786), - [anon_sym_actual] = ACTIONS(4786), + [3882] = { + [sym__alpha_identifier] = ACTIONS(5095), + [anon_sym_AT] = ACTIONS(5097), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5097), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_where] = ACTIONS(5095), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_SEMI] = ACTIONS(5097), + [anon_sym_get] = ACTIONS(5095), + [anon_sym_set] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5095), + [sym_label] = ACTIONS(5097), + [anon_sym_in] = ACTIONS(5095), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_QMARK_COLON] = ACTIONS(5097), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_else] = ACTIONS(5095), + [anon_sym_COLON_COLON] = ACTIONS(5097), + [anon_sym_PLUS_EQ] = ACTIONS(5097), + [anon_sym_DASH_EQ] = ACTIONS(5097), + [anon_sym_STAR_EQ] = ACTIONS(5097), + [anon_sym_SLASH_EQ] = ACTIONS(5097), + [anon_sym_PERCENT_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_BANGin] = ACTIONS(5097), + [anon_sym_is] = ACTIONS(5095), + [anon_sym_BANGis] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5095), + [anon_sym_as_QMARK] = ACTIONS(5097), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_BANG_BANG] = ACTIONS(5097), + [anon_sym_suspend] = ACTIONS(5095), + [anon_sym_sealed] = ACTIONS(5095), + [anon_sym_annotation] = ACTIONS(5095), + [anon_sym_data] = ACTIONS(5095), + [anon_sym_inner] = ACTIONS(5095), + [anon_sym_value] = ACTIONS(5095), + [anon_sym_override] = ACTIONS(5095), + [anon_sym_lateinit] = ACTIONS(5095), + [anon_sym_public] = ACTIONS(5095), + [anon_sym_private] = ACTIONS(5095), + [anon_sym_internal] = ACTIONS(5095), + [anon_sym_protected] = ACTIONS(5095), + [anon_sym_tailrec] = ACTIONS(5095), + [anon_sym_operator] = ACTIONS(5095), + [anon_sym_infix] = ACTIONS(5095), + [anon_sym_inline] = ACTIONS(5095), + [anon_sym_external] = ACTIONS(5095), + [sym_property_modifier] = ACTIONS(5095), + [anon_sym_abstract] = ACTIONS(5095), + [anon_sym_final] = ACTIONS(5095), + [anon_sym_open] = ACTIONS(5095), + [anon_sym_vararg] = ACTIONS(5095), + [anon_sym_noinline] = ACTIONS(5095), + [anon_sym_crossinline] = ACTIONS(5095), + [anon_sym_expect] = ACTIONS(5095), + [anon_sym_actual] = ACTIONS(5095), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4788), - [sym__automatic_semicolon] = ACTIONS(4788), - [sym_safe_nav] = ACTIONS(4788), + [sym__backtick_identifier] = ACTIONS(5097), + [sym__automatic_semicolon] = ACTIONS(5097), + [sym_safe_nav] = ACTIONS(5097), [sym_multiline_comment] = ACTIONS(3), }, - [3870] = { - [sym_class_body] = STATE(4137), + [3883] = { + [sym__alpha_identifier] = ACTIONS(7171), + [anon_sym_AT] = ACTIONS(7173), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_typealias] = ACTIONS(7171), + [anon_sym_class] = ACTIONS(7171), + [anon_sym_interface] = ACTIONS(7171), + [anon_sym_enum] = ACTIONS(7171), + [anon_sym_LBRACE] = ACTIONS(7173), + [anon_sym_LPAREN] = ACTIONS(7173), + [anon_sym_val] = ACTIONS(7171), + [anon_sym_var] = ACTIONS(7171), + [anon_sym_object] = ACTIONS(7171), + [anon_sym_fun] = ACTIONS(7171), + [anon_sym_get] = ACTIONS(7171), + [anon_sym_set] = ACTIONS(7171), + [anon_sym_this] = ACTIONS(7171), + [anon_sym_super] = ACTIONS(7171), + [anon_sym_STAR] = ACTIONS(7173), + [sym_label] = ACTIONS(7171), + [anon_sym_for] = ACTIONS(7171), + [anon_sym_while] = ACTIONS(7171), + [anon_sym_do] = ACTIONS(7171), + [anon_sym_null] = ACTIONS(7171), + [anon_sym_if] = ACTIONS(7171), + [anon_sym_when] = ACTIONS(7171), + [anon_sym_try] = ACTIONS(7171), + [anon_sym_throw] = ACTIONS(7171), + [anon_sym_return] = ACTIONS(7171), + [anon_sym_continue] = ACTIONS(7171), + [anon_sym_break] = ACTIONS(7171), + [anon_sym_COLON_COLON] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7171), + [anon_sym_DASH] = ACTIONS(7171), + [anon_sym_PLUS_PLUS] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7173), + [anon_sym_BANG] = ACTIONS(7173), + [anon_sym_suspend] = ACTIONS(7171), + [anon_sym_sealed] = ACTIONS(7171), + [anon_sym_annotation] = ACTIONS(7171), + [anon_sym_data] = ACTIONS(7171), + [anon_sym_inner] = ACTIONS(7171), + [anon_sym_value] = ACTIONS(7171), + [anon_sym_override] = ACTIONS(7171), + [anon_sym_lateinit] = ACTIONS(7171), + [anon_sym_public] = ACTIONS(7171), + [anon_sym_private] = ACTIONS(7171), + [anon_sym_internal] = ACTIONS(7171), + [anon_sym_protected] = ACTIONS(7171), + [anon_sym_tailrec] = ACTIONS(7171), + [anon_sym_operator] = ACTIONS(7171), + [anon_sym_infix] = ACTIONS(7171), + [anon_sym_inline] = ACTIONS(7171), + [anon_sym_external] = ACTIONS(7171), + [sym_property_modifier] = ACTIONS(7171), + [anon_sym_abstract] = ACTIONS(7171), + [anon_sym_final] = ACTIONS(7171), + [anon_sym_open] = ACTIONS(7171), + [anon_sym_vararg] = ACTIONS(7171), + [anon_sym_noinline] = ACTIONS(7171), + [anon_sym_crossinline] = ACTIONS(7171), + [anon_sym_expect] = ACTIONS(7171), + [anon_sym_actual] = ACTIONS(7171), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7173), + [anon_sym_continue_AT] = ACTIONS(7173), + [anon_sym_break_AT] = ACTIONS(7173), + [anon_sym_this_AT] = ACTIONS(7173), + [anon_sym_super_AT] = ACTIONS(7173), + [sym_real_literal] = ACTIONS(7173), + [sym_integer_literal] = ACTIONS(7171), + [sym_hex_literal] = ACTIONS(7173), + [sym_bin_literal] = ACTIONS(7173), + [anon_sym_true] = ACTIONS(7171), + [anon_sym_false] = ACTIONS(7171), + [anon_sym_SQUOTE] = ACTIONS(7173), + [sym__backtick_identifier] = ACTIONS(7173), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7173), + }, + [3884] = { + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4357), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4357), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), + [sym_multiline_comment] = ACTIONS(3), + }, + [3885] = { + [sym_function_body] = STATE(3873), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + }, + [3886] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7175), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7177), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + }, + [3887] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7177), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + }, + [3888] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + }, + [3889] = { + [sym__alpha_identifier] = ACTIONS(7179), + [anon_sym_AT] = ACTIONS(7181), + [anon_sym_LBRACK] = ACTIONS(7181), + [anon_sym_typealias] = ACTIONS(7179), + [anon_sym_class] = ACTIONS(7179), + [anon_sym_interface] = ACTIONS(7179), + [anon_sym_enum] = ACTIONS(7179), + [anon_sym_LBRACE] = ACTIONS(7181), + [anon_sym_LPAREN] = ACTIONS(7181), + [anon_sym_val] = ACTIONS(7179), + [anon_sym_var] = ACTIONS(7179), + [anon_sym_object] = ACTIONS(7179), + [anon_sym_fun] = ACTIONS(7179), + [anon_sym_get] = ACTIONS(7179), + [anon_sym_set] = ACTIONS(7179), + [anon_sym_this] = ACTIONS(7179), + [anon_sym_super] = ACTIONS(7179), + [anon_sym_STAR] = ACTIONS(7181), + [sym_label] = ACTIONS(7179), + [anon_sym_for] = ACTIONS(7179), + [anon_sym_while] = ACTIONS(7179), + [anon_sym_do] = ACTIONS(7179), + [anon_sym_null] = ACTIONS(7179), + [anon_sym_if] = ACTIONS(7179), + [anon_sym_when] = ACTIONS(7179), + [anon_sym_try] = ACTIONS(7179), + [anon_sym_throw] = ACTIONS(7179), + [anon_sym_return] = ACTIONS(7179), + [anon_sym_continue] = ACTIONS(7179), + [anon_sym_break] = ACTIONS(7179), + [anon_sym_COLON_COLON] = ACTIONS(7181), + [anon_sym_PLUS] = ACTIONS(7179), + [anon_sym_DASH] = ACTIONS(7179), + [anon_sym_PLUS_PLUS] = ACTIONS(7181), + [anon_sym_DASH_DASH] = ACTIONS(7181), + [anon_sym_BANG] = ACTIONS(7181), + [anon_sym_suspend] = ACTIONS(7179), + [anon_sym_sealed] = ACTIONS(7179), + [anon_sym_annotation] = ACTIONS(7179), + [anon_sym_data] = ACTIONS(7179), + [anon_sym_inner] = ACTIONS(7179), + [anon_sym_value] = ACTIONS(7179), + [anon_sym_override] = ACTIONS(7179), + [anon_sym_lateinit] = ACTIONS(7179), + [anon_sym_public] = ACTIONS(7179), + [anon_sym_private] = ACTIONS(7179), + [anon_sym_internal] = ACTIONS(7179), + [anon_sym_protected] = ACTIONS(7179), + [anon_sym_tailrec] = ACTIONS(7179), + [anon_sym_operator] = ACTIONS(7179), + [anon_sym_infix] = ACTIONS(7179), + [anon_sym_inline] = ACTIONS(7179), + [anon_sym_external] = ACTIONS(7179), + [sym_property_modifier] = ACTIONS(7179), + [anon_sym_abstract] = ACTIONS(7179), + [anon_sym_final] = ACTIONS(7179), + [anon_sym_open] = ACTIONS(7179), + [anon_sym_vararg] = ACTIONS(7179), + [anon_sym_noinline] = ACTIONS(7179), + [anon_sym_crossinline] = ACTIONS(7179), + [anon_sym_expect] = ACTIONS(7179), + [anon_sym_actual] = ACTIONS(7179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7181), + [anon_sym_continue_AT] = ACTIONS(7181), + [anon_sym_break_AT] = ACTIONS(7181), + [anon_sym_this_AT] = ACTIONS(7181), + [anon_sym_super_AT] = ACTIONS(7181), + [sym_real_literal] = ACTIONS(7181), + [sym_integer_literal] = ACTIONS(7179), + [sym_hex_literal] = ACTIONS(7181), + [sym_bin_literal] = ACTIONS(7181), + [anon_sym_true] = ACTIONS(7179), + [anon_sym_false] = ACTIONS(7179), + [anon_sym_SQUOTE] = ACTIONS(7181), + [sym__backtick_identifier] = ACTIONS(7181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7181), + }, + [3890] = { + [sym__alpha_identifier] = ACTIONS(5213), + [anon_sym_AT] = ACTIONS(5215), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_as] = ACTIONS(5213), + [anon_sym_EQ] = ACTIONS(5213), + [anon_sym_LBRACE] = ACTIONS(5215), + [anon_sym_RBRACE] = ACTIONS(5215), + [anon_sym_LPAREN] = ACTIONS(5215), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_where] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(5213), + [anon_sym_SEMI] = ACTIONS(5215), + [anon_sym_get] = ACTIONS(5213), + [anon_sym_set] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5213), + [sym_label] = ACTIONS(5215), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5215), + [anon_sym_QMARK_COLON] = ACTIONS(5215), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(5215), + [anon_sym_else] = ACTIONS(5213), + [anon_sym_COLON_COLON] = ACTIONS(5215), + [anon_sym_PLUS_EQ] = ACTIONS(5215), + [anon_sym_DASH_EQ] = ACTIONS(5215), + [anon_sym_STAR_EQ] = ACTIONS(5215), + [anon_sym_SLASH_EQ] = ACTIONS(5215), + [anon_sym_PERCENT_EQ] = ACTIONS(5215), + [anon_sym_BANG_EQ] = ACTIONS(5213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5215), + [anon_sym_EQ_EQ] = ACTIONS(5213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5215), + [anon_sym_LT_EQ] = ACTIONS(5215), + [anon_sym_GT_EQ] = ACTIONS(5215), + [anon_sym_BANGin] = ACTIONS(5215), + [anon_sym_is] = ACTIONS(5213), + [anon_sym_BANGis] = ACTIONS(5215), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_PERCENT] = ACTIONS(5213), + [anon_sym_as_QMARK] = ACTIONS(5215), + [anon_sym_PLUS_PLUS] = ACTIONS(5215), + [anon_sym_DASH_DASH] = ACTIONS(5215), + [anon_sym_BANG_BANG] = ACTIONS(5215), + [anon_sym_suspend] = ACTIONS(5213), + [anon_sym_sealed] = ACTIONS(5213), + [anon_sym_annotation] = ACTIONS(5213), + [anon_sym_data] = ACTIONS(5213), + [anon_sym_inner] = ACTIONS(5213), + [anon_sym_value] = ACTIONS(5213), + [anon_sym_override] = ACTIONS(5213), + [anon_sym_lateinit] = ACTIONS(5213), + [anon_sym_public] = ACTIONS(5213), + [anon_sym_private] = ACTIONS(5213), + [anon_sym_internal] = ACTIONS(5213), + [anon_sym_protected] = ACTIONS(5213), + [anon_sym_tailrec] = ACTIONS(5213), + [anon_sym_operator] = ACTIONS(5213), + [anon_sym_infix] = ACTIONS(5213), + [anon_sym_inline] = ACTIONS(5213), + [anon_sym_external] = ACTIONS(5213), + [sym_property_modifier] = ACTIONS(5213), + [anon_sym_abstract] = ACTIONS(5213), + [anon_sym_final] = ACTIONS(5213), + [anon_sym_open] = ACTIONS(5213), + [anon_sym_vararg] = ACTIONS(5213), + [anon_sym_noinline] = ACTIONS(5213), + [anon_sym_crossinline] = ACTIONS(5213), + [anon_sym_expect] = ACTIONS(5213), + [anon_sym_actual] = ACTIONS(5213), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5215), + [sym__automatic_semicolon] = ACTIONS(5215), + [sym_safe_nav] = ACTIONS(5215), + [sym_multiline_comment] = ACTIONS(3), + }, + [3891] = { + [sym__alpha_identifier] = ACTIONS(4922), + [anon_sym_AT] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_as] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4922), + [anon_sym_where] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_get] = ACTIONS(4922), + [anon_sym_set] = ACTIONS(4922), + [anon_sym_STAR] = ACTIONS(4922), + [sym_label] = ACTIONS(4924), + [anon_sym_in] = ACTIONS(4922), + [anon_sym_DOT_DOT] = ACTIONS(4924), + [anon_sym_QMARK_COLON] = ACTIONS(4924), + [anon_sym_AMP_AMP] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4924), + [anon_sym_else] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_PLUS_EQ] = ACTIONS(4924), + [anon_sym_DASH_EQ] = ACTIONS(4924), + [anon_sym_STAR_EQ] = ACTIONS(4924), + [anon_sym_SLASH_EQ] = ACTIONS(4924), + [anon_sym_PERCENT_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4924), + [anon_sym_EQ_EQ] = ACTIONS(4922), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4924), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4924), + [anon_sym_BANGin] = ACTIONS(4924), + [anon_sym_is] = ACTIONS(4922), + [anon_sym_BANGis] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4922), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4922), + [anon_sym_PERCENT] = ACTIONS(4922), + [anon_sym_as_QMARK] = ACTIONS(4924), + [anon_sym_PLUS_PLUS] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4924), + [anon_sym_BANG_BANG] = ACTIONS(4924), + [anon_sym_suspend] = ACTIONS(4922), + [anon_sym_sealed] = ACTIONS(4922), + [anon_sym_annotation] = ACTIONS(4922), + [anon_sym_data] = ACTIONS(4922), + [anon_sym_inner] = ACTIONS(4922), + [anon_sym_value] = ACTIONS(4922), + [anon_sym_override] = ACTIONS(4922), + [anon_sym_lateinit] = ACTIONS(4922), + [anon_sym_public] = ACTIONS(4922), + [anon_sym_private] = ACTIONS(4922), + [anon_sym_internal] = ACTIONS(4922), + [anon_sym_protected] = ACTIONS(4922), + [anon_sym_tailrec] = ACTIONS(4922), + [anon_sym_operator] = ACTIONS(4922), + [anon_sym_infix] = ACTIONS(4922), + [anon_sym_inline] = ACTIONS(4922), + [anon_sym_external] = ACTIONS(4922), + [sym_property_modifier] = ACTIONS(4922), + [anon_sym_abstract] = ACTIONS(4922), + [anon_sym_final] = ACTIONS(4922), + [anon_sym_open] = ACTIONS(4922), + [anon_sym_vararg] = ACTIONS(4922), + [anon_sym_noinline] = ACTIONS(4922), + [anon_sym_crossinline] = ACTIONS(4922), + [anon_sym_expect] = ACTIONS(4922), + [anon_sym_actual] = ACTIONS(4922), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4924), + [sym__automatic_semicolon] = ACTIONS(4924), + [sym_safe_nav] = ACTIONS(4924), + [sym_multiline_comment] = ACTIONS(3), + }, + [3892] = { + [sym__alpha_identifier] = ACTIONS(5073), + [anon_sym_AT] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_as] = ACTIONS(5073), + [anon_sym_EQ] = ACTIONS(5073), + [anon_sym_LBRACE] = ACTIONS(5075), + [anon_sym_RBRACE] = ACTIONS(5075), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_where] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_SEMI] = ACTIONS(5075), + [anon_sym_get] = ACTIONS(5073), + [anon_sym_set] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [sym_label] = ACTIONS(5075), + [anon_sym_in] = ACTIONS(5073), + [anon_sym_DOT_DOT] = ACTIONS(5075), + [anon_sym_QMARK_COLON] = ACTIONS(5075), + [anon_sym_AMP_AMP] = ACTIONS(5075), + [anon_sym_PIPE_PIPE] = ACTIONS(5075), + [anon_sym_else] = ACTIONS(5073), + [anon_sym_COLON_COLON] = ACTIONS(5075), + [anon_sym_PLUS_EQ] = ACTIONS(5075), + [anon_sym_DASH_EQ] = ACTIONS(5075), + [anon_sym_STAR_EQ] = ACTIONS(5075), + [anon_sym_SLASH_EQ] = ACTIONS(5075), + [anon_sym_PERCENT_EQ] = ACTIONS(5075), + [anon_sym_BANG_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5075), + [anon_sym_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5075), + [anon_sym_LT_EQ] = ACTIONS(5075), + [anon_sym_GT_EQ] = ACTIONS(5075), + [anon_sym_BANGin] = ACTIONS(5075), + [anon_sym_is] = ACTIONS(5073), + [anon_sym_BANGis] = ACTIONS(5075), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5075), + [anon_sym_PLUS_PLUS] = ACTIONS(5075), + [anon_sym_DASH_DASH] = ACTIONS(5075), + [anon_sym_BANG_BANG] = ACTIONS(5075), + [anon_sym_suspend] = ACTIONS(5073), + [anon_sym_sealed] = ACTIONS(5073), + [anon_sym_annotation] = ACTIONS(5073), + [anon_sym_data] = ACTIONS(5073), + [anon_sym_inner] = ACTIONS(5073), + [anon_sym_value] = ACTIONS(5073), + [anon_sym_override] = ACTIONS(5073), + [anon_sym_lateinit] = ACTIONS(5073), + [anon_sym_public] = ACTIONS(5073), + [anon_sym_private] = ACTIONS(5073), + [anon_sym_internal] = ACTIONS(5073), + [anon_sym_protected] = ACTIONS(5073), + [anon_sym_tailrec] = ACTIONS(5073), + [anon_sym_operator] = ACTIONS(5073), + [anon_sym_infix] = ACTIONS(5073), + [anon_sym_inline] = ACTIONS(5073), + [anon_sym_external] = ACTIONS(5073), + [sym_property_modifier] = ACTIONS(5073), + [anon_sym_abstract] = ACTIONS(5073), + [anon_sym_final] = ACTIONS(5073), + [anon_sym_open] = ACTIONS(5073), + [anon_sym_vararg] = ACTIONS(5073), + [anon_sym_noinline] = ACTIONS(5073), + [anon_sym_crossinline] = ACTIONS(5073), + [anon_sym_expect] = ACTIONS(5073), + [anon_sym_actual] = ACTIONS(5073), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5075), + [sym__automatic_semicolon] = ACTIONS(5075), + [sym_safe_nav] = ACTIONS(5075), + [sym_multiline_comment] = ACTIONS(3), + }, + [3893] = { + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [sym_label] = ACTIONS(5053), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_suspend] = ACTIONS(5051), + [anon_sym_sealed] = ACTIONS(5051), + [anon_sym_annotation] = ACTIONS(5051), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_override] = ACTIONS(5051), + [anon_sym_lateinit] = ACTIONS(5051), + [anon_sym_public] = ACTIONS(5051), + [anon_sym_private] = ACTIONS(5051), + [anon_sym_internal] = ACTIONS(5051), + [anon_sym_protected] = ACTIONS(5051), + [anon_sym_tailrec] = ACTIONS(5051), + [anon_sym_operator] = ACTIONS(5051), + [anon_sym_infix] = ACTIONS(5051), + [anon_sym_inline] = ACTIONS(5051), + [anon_sym_external] = ACTIONS(5051), + [sym_property_modifier] = ACTIONS(5051), + [anon_sym_abstract] = ACTIONS(5051), + [anon_sym_final] = ACTIONS(5051), + [anon_sym_open] = ACTIONS(5051), + [anon_sym_vararg] = ACTIONS(5051), + [anon_sym_noinline] = ACTIONS(5051), + [anon_sym_crossinline] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5053), + [sym__automatic_semicolon] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), + [sym_multiline_comment] = ACTIONS(3), + }, + [3894] = { [sym__alpha_identifier] = ACTIONS(4275), [anon_sym_AT] = ACTIONS(4277), [anon_sym_LBRACK] = ACTIONS(4277), [anon_sym_as] = ACTIONS(4275), [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(5806), + [anon_sym_LBRACE] = ACTIONS(4277), [anon_sym_RBRACE] = ACTIONS(4277), [anon_sym_LPAREN] = ACTIONS(4277), [anon_sym_COMMA] = ACTIONS(4277), @@ -436897,2126 +436328,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), }, - [3871] = { - [sym__alpha_identifier] = ACTIONS(4189), - [anon_sym_AT] = ACTIONS(4191), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_typealias] = ACTIONS(4189), - [anon_sym_class] = ACTIONS(4189), - [anon_sym_fun] = ACTIONS(4189), - [anon_sym_interface] = ACTIONS(4189), - [anon_sym_enum] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_val] = ACTIONS(4189), - [anon_sym_var] = ACTIONS(4189), - [anon_sym_object] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_get] = ACTIONS(4189), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_this] = ACTIONS(4189), - [anon_sym_super] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(4189), - [anon_sym_for] = ACTIONS(4189), - [anon_sym_while] = ACTIONS(4189), - [anon_sym_do] = ACTIONS(4189), - [anon_sym_null] = ACTIONS(4189), - [anon_sym_if] = ACTIONS(4189), - [anon_sym_when] = ACTIONS(4189), - [anon_sym_try] = ACTIONS(4189), - [anon_sym_throw] = ACTIONS(4189), - [anon_sym_return] = ACTIONS(4189), - [anon_sym_continue] = ACTIONS(4189), - [anon_sym_break] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_BANG] = ACTIONS(4191), - [anon_sym_suspend] = ACTIONS(4189), - [anon_sym_sealed] = ACTIONS(4189), - [anon_sym_annotation] = ACTIONS(4189), - [anon_sym_data] = ACTIONS(4189), - [anon_sym_inner] = ACTIONS(4189), - [anon_sym_value] = ACTIONS(4189), - [anon_sym_override] = ACTIONS(4189), - [anon_sym_lateinit] = ACTIONS(4189), - [anon_sym_public] = ACTIONS(4189), - [anon_sym_private] = ACTIONS(4189), - [anon_sym_internal] = ACTIONS(4189), - [anon_sym_protected] = ACTIONS(4189), - [anon_sym_tailrec] = ACTIONS(4189), - [anon_sym_operator] = ACTIONS(4189), - [anon_sym_infix] = ACTIONS(4189), - [anon_sym_inline] = ACTIONS(4189), - [anon_sym_external] = ACTIONS(4189), - [sym_property_modifier] = ACTIONS(4189), - [anon_sym_abstract] = ACTIONS(4189), - [anon_sym_final] = ACTIONS(4189), - [anon_sym_open] = ACTIONS(4189), - [anon_sym_vararg] = ACTIONS(4189), - [anon_sym_noinline] = ACTIONS(4189), - [anon_sym_crossinline] = ACTIONS(4189), - [anon_sym_expect] = ACTIONS(4189), - [anon_sym_actual] = ACTIONS(4189), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4191), - [anon_sym_continue_AT] = ACTIONS(4191), - [anon_sym_break_AT] = ACTIONS(4191), - [anon_sym_this_AT] = ACTIONS(4191), - [anon_sym_super_AT] = ACTIONS(4191), - [sym_real_literal] = ACTIONS(4191), - [sym_integer_literal] = ACTIONS(4189), - [sym_hex_literal] = ACTIONS(4191), - [sym_bin_literal] = ACTIONS(4191), - [anon_sym_true] = ACTIONS(4189), - [anon_sym_false] = ACTIONS(4189), - [anon_sym_SQUOTE] = ACTIONS(4191), - [sym__backtick_identifier] = ACTIONS(4191), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4191), - }, - [3872] = { - [sym_enum_class_body] = STATE(4138), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [3895] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5049), + [anon_sym_COMMA] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_where] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_SEMI] = ACTIONS(5049), + [anon_sym_get] = ACTIONS(5047), + [anon_sym_set] = ACTIONS(5047), + [anon_sym_STAR] = ACTIONS(5047), + [sym_label] = ACTIONS(5049), + [anon_sym_in] = ACTIONS(5047), + [anon_sym_DOT_DOT] = ACTIONS(5049), + [anon_sym_QMARK_COLON] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5049), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_else] = ACTIONS(5047), + [anon_sym_COLON_COLON] = ACTIONS(5049), + [anon_sym_PLUS_EQ] = ACTIONS(5049), + [anon_sym_DASH_EQ] = ACTIONS(5049), + [anon_sym_STAR_EQ] = ACTIONS(5049), + [anon_sym_SLASH_EQ] = ACTIONS(5049), + [anon_sym_PERCENT_EQ] = ACTIONS(5049), + [anon_sym_BANG_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5049), + [anon_sym_EQ_EQ] = ACTIONS(5047), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5049), + [anon_sym_LT_EQ] = ACTIONS(5049), + [anon_sym_GT_EQ] = ACTIONS(5049), + [anon_sym_BANGin] = ACTIONS(5049), + [anon_sym_is] = ACTIONS(5047), + [anon_sym_BANGis] = ACTIONS(5049), + [anon_sym_PLUS] = ACTIONS(5047), + [anon_sym_DASH] = ACTIONS(5047), + [anon_sym_SLASH] = ACTIONS(5047), + [anon_sym_PERCENT] = ACTIONS(5047), + [anon_sym_as_QMARK] = ACTIONS(5049), + [anon_sym_PLUS_PLUS] = ACTIONS(5049), + [anon_sym_DASH_DASH] = ACTIONS(5049), + [anon_sym_BANG_BANG] = ACTIONS(5049), + [anon_sym_suspend] = ACTIONS(5047), + [anon_sym_sealed] = ACTIONS(5047), + [anon_sym_annotation] = ACTIONS(5047), + [anon_sym_data] = ACTIONS(5047), + [anon_sym_inner] = ACTIONS(5047), + [anon_sym_value] = ACTIONS(5047), + [anon_sym_override] = ACTIONS(5047), + [anon_sym_lateinit] = ACTIONS(5047), + [anon_sym_public] = ACTIONS(5047), + [anon_sym_private] = ACTIONS(5047), + [anon_sym_internal] = ACTIONS(5047), + [anon_sym_protected] = ACTIONS(5047), + [anon_sym_tailrec] = ACTIONS(5047), + [anon_sym_operator] = ACTIONS(5047), + [anon_sym_infix] = ACTIONS(5047), + [anon_sym_inline] = ACTIONS(5047), + [anon_sym_external] = ACTIONS(5047), + [sym_property_modifier] = ACTIONS(5047), + [anon_sym_abstract] = ACTIONS(5047), + [anon_sym_final] = ACTIONS(5047), + [anon_sym_open] = ACTIONS(5047), + [anon_sym_vararg] = ACTIONS(5047), + [anon_sym_noinline] = ACTIONS(5047), + [anon_sym_crossinline] = ACTIONS(5047), + [anon_sym_expect] = ACTIONS(5047), + [anon_sym_actual] = ACTIONS(5047), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5049), + [sym__automatic_semicolon] = ACTIONS(5049), + [sym_safe_nav] = ACTIONS(5049), [sym_multiline_comment] = ACTIONS(3), }, - [3873] = { - [sym_class_body] = STATE(4142), - [sym__alpha_identifier] = ACTIONS(4722), - [anon_sym_AT] = ACTIONS(4724), - [anon_sym_LBRACK] = ACTIONS(4724), - [anon_sym_as] = ACTIONS(4722), - [anon_sym_EQ] = ACTIONS(4722), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4724), - [anon_sym_LPAREN] = ACTIONS(4724), - [anon_sym_COMMA] = ACTIONS(4724), - [anon_sym_LT] = ACTIONS(4722), - [anon_sym_GT] = ACTIONS(4722), - [anon_sym_where] = ACTIONS(4722), - [anon_sym_DOT] = ACTIONS(4722), - [anon_sym_SEMI] = ACTIONS(4724), - [anon_sym_get] = ACTIONS(4722), - [anon_sym_set] = ACTIONS(4722), - [anon_sym_STAR] = ACTIONS(4722), - [sym_label] = ACTIONS(4724), - [anon_sym_in] = ACTIONS(4722), - [anon_sym_DOT_DOT] = ACTIONS(4724), - [anon_sym_QMARK_COLON] = ACTIONS(4724), - [anon_sym_AMP_AMP] = ACTIONS(4724), - [anon_sym_PIPE_PIPE] = ACTIONS(4724), - [anon_sym_else] = ACTIONS(4722), - [anon_sym_COLON_COLON] = ACTIONS(4724), - [anon_sym_PLUS_EQ] = ACTIONS(4724), - [anon_sym_DASH_EQ] = ACTIONS(4724), - [anon_sym_STAR_EQ] = ACTIONS(4724), - [anon_sym_SLASH_EQ] = ACTIONS(4724), - [anon_sym_PERCENT_EQ] = ACTIONS(4724), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_BANGin] = ACTIONS(4724), - [anon_sym_is] = ACTIONS(4722), - [anon_sym_BANGis] = ACTIONS(4724), - [anon_sym_PLUS] = ACTIONS(4722), - [anon_sym_DASH] = ACTIONS(4722), - [anon_sym_SLASH] = ACTIONS(4722), - [anon_sym_PERCENT] = ACTIONS(4722), - [anon_sym_as_QMARK] = ACTIONS(4724), - [anon_sym_PLUS_PLUS] = ACTIONS(4724), - [anon_sym_DASH_DASH] = ACTIONS(4724), - [anon_sym_BANG_BANG] = ACTIONS(4724), - [anon_sym_suspend] = ACTIONS(4722), - [anon_sym_sealed] = ACTIONS(4722), - [anon_sym_annotation] = ACTIONS(4722), - [anon_sym_data] = ACTIONS(4722), - [anon_sym_inner] = ACTIONS(4722), - [anon_sym_value] = ACTIONS(4722), - [anon_sym_override] = ACTIONS(4722), - [anon_sym_lateinit] = ACTIONS(4722), - [anon_sym_public] = ACTIONS(4722), - [anon_sym_private] = ACTIONS(4722), - [anon_sym_internal] = ACTIONS(4722), - [anon_sym_protected] = ACTIONS(4722), - [anon_sym_tailrec] = ACTIONS(4722), - [anon_sym_operator] = ACTIONS(4722), - [anon_sym_infix] = ACTIONS(4722), - [anon_sym_inline] = ACTIONS(4722), - [anon_sym_external] = ACTIONS(4722), - [sym_property_modifier] = ACTIONS(4722), - [anon_sym_abstract] = ACTIONS(4722), - [anon_sym_final] = ACTIONS(4722), - [anon_sym_open] = ACTIONS(4722), - [anon_sym_vararg] = ACTIONS(4722), - [anon_sym_noinline] = ACTIONS(4722), - [anon_sym_crossinline] = ACTIONS(4722), - [anon_sym_expect] = ACTIONS(4722), - [anon_sym_actual] = ACTIONS(4722), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4724), - [sym__automatic_semicolon] = ACTIONS(4724), - [sym_safe_nav] = ACTIONS(4724), + [3896] = { + [sym_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, - [3874] = { - [sym_class_body] = STATE(4150), - [sym__alpha_identifier] = ACTIONS(4461), - [anon_sym_AT] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_as] = ACTIONS(4461), - [anon_sym_EQ] = ACTIONS(4461), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_where] = ACTIONS(4461), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [anon_sym_get] = ACTIONS(4461), - [anon_sym_set] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [sym_label] = ACTIONS(4463), - [anon_sym_in] = ACTIONS(4461), - [anon_sym_DOT_DOT] = ACTIONS(4463), - [anon_sym_QMARK_COLON] = ACTIONS(4463), - [anon_sym_AMP_AMP] = ACTIONS(4463), - [anon_sym_PIPE_PIPE] = ACTIONS(4463), - [anon_sym_else] = ACTIONS(4461), - [anon_sym_COLON_COLON] = ACTIONS(4463), - [anon_sym_PLUS_EQ] = ACTIONS(4463), - [anon_sym_DASH_EQ] = ACTIONS(4463), - [anon_sym_STAR_EQ] = ACTIONS(4463), - [anon_sym_SLASH_EQ] = ACTIONS(4463), - [anon_sym_PERCENT_EQ] = ACTIONS(4463), - [anon_sym_BANG_EQ] = ACTIONS(4461), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4463), - [anon_sym_EQ_EQ] = ACTIONS(4461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4463), - [anon_sym_LT_EQ] = ACTIONS(4463), - [anon_sym_GT_EQ] = ACTIONS(4463), - [anon_sym_BANGin] = ACTIONS(4463), - [anon_sym_is] = ACTIONS(4461), - [anon_sym_BANGis] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(4461), - [anon_sym_as_QMARK] = ACTIONS(4463), - [anon_sym_PLUS_PLUS] = ACTIONS(4463), - [anon_sym_DASH_DASH] = ACTIONS(4463), - [anon_sym_BANG_BANG] = ACTIONS(4463), - [anon_sym_suspend] = ACTIONS(4461), - [anon_sym_sealed] = ACTIONS(4461), - [anon_sym_annotation] = ACTIONS(4461), - [anon_sym_data] = ACTIONS(4461), - [anon_sym_inner] = ACTIONS(4461), - [anon_sym_value] = ACTIONS(4461), - [anon_sym_override] = ACTIONS(4461), - [anon_sym_lateinit] = ACTIONS(4461), - [anon_sym_public] = ACTIONS(4461), - [anon_sym_private] = ACTIONS(4461), - [anon_sym_internal] = ACTIONS(4461), - [anon_sym_protected] = ACTIONS(4461), - [anon_sym_tailrec] = ACTIONS(4461), - [anon_sym_operator] = ACTIONS(4461), - [anon_sym_infix] = ACTIONS(4461), - [anon_sym_inline] = ACTIONS(4461), - [anon_sym_external] = ACTIONS(4461), - [sym_property_modifier] = ACTIONS(4461), - [anon_sym_abstract] = ACTIONS(4461), - [anon_sym_final] = ACTIONS(4461), - [anon_sym_open] = ACTIONS(4461), - [anon_sym_vararg] = ACTIONS(4461), - [anon_sym_noinline] = ACTIONS(4461), - [anon_sym_crossinline] = ACTIONS(4461), - [anon_sym_expect] = ACTIONS(4461), - [anon_sym_actual] = ACTIONS(4461), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4463), - [sym__automatic_semicolon] = ACTIONS(4463), - [sym_safe_nav] = ACTIONS(4463), + [3897] = { + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, - [3875] = { - [sym__alpha_identifier] = ACTIONS(4758), - [anon_sym_AT] = ACTIONS(4760), - [anon_sym_COLON] = ACTIONS(4758), - [anon_sym_LBRACK] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4758), - [anon_sym_EQ] = ACTIONS(4758), - [anon_sym_LBRACE] = ACTIONS(4760), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LT] = ACTIONS(4758), - [anon_sym_GT] = ACTIONS(4758), - [anon_sym_where] = ACTIONS(4758), - [anon_sym_DOT] = ACTIONS(4758), - [anon_sym_SEMI] = ACTIONS(4760), - [anon_sym_get] = ACTIONS(4758), - [anon_sym_set] = ACTIONS(4758), - [anon_sym_STAR] = ACTIONS(4758), - [sym_label] = ACTIONS(4760), - [anon_sym_in] = ACTIONS(4758), - [anon_sym_DOT_DOT] = ACTIONS(4760), - [anon_sym_QMARK_COLON] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [anon_sym_else] = ACTIONS(4758), - [anon_sym_COLON_COLON] = ACTIONS(4760), - [anon_sym_PLUS_EQ] = ACTIONS(4760), - [anon_sym_DASH_EQ] = ACTIONS(4760), - [anon_sym_STAR_EQ] = ACTIONS(4760), - [anon_sym_SLASH_EQ] = ACTIONS(4760), - [anon_sym_PERCENT_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4758), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_BANGin] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4758), - [anon_sym_BANGis] = ACTIONS(4760), - [anon_sym_PLUS] = ACTIONS(4758), - [anon_sym_DASH] = ACTIONS(4758), - [anon_sym_SLASH] = ACTIONS(4758), - [anon_sym_PERCENT] = ACTIONS(4758), - [anon_sym_as_QMARK] = ACTIONS(4760), - [anon_sym_PLUS_PLUS] = ACTIONS(4760), - [anon_sym_DASH_DASH] = ACTIONS(4760), - [anon_sym_BANG_BANG] = ACTIONS(4760), - [anon_sym_suspend] = ACTIONS(4758), - [anon_sym_sealed] = ACTIONS(4758), - [anon_sym_annotation] = ACTIONS(4758), - [anon_sym_data] = ACTIONS(4758), - [anon_sym_inner] = ACTIONS(4758), - [anon_sym_value] = ACTIONS(4758), - [anon_sym_override] = ACTIONS(4758), - [anon_sym_lateinit] = ACTIONS(4758), - [anon_sym_public] = ACTIONS(4758), - [anon_sym_private] = ACTIONS(4758), - [anon_sym_internal] = ACTIONS(4758), - [anon_sym_protected] = ACTIONS(4758), - [anon_sym_tailrec] = ACTIONS(4758), - [anon_sym_operator] = ACTIONS(4758), - [anon_sym_infix] = ACTIONS(4758), - [anon_sym_inline] = ACTIONS(4758), - [anon_sym_external] = ACTIONS(4758), - [sym_property_modifier] = ACTIONS(4758), - [anon_sym_abstract] = ACTIONS(4758), - [anon_sym_final] = ACTIONS(4758), - [anon_sym_open] = ACTIONS(4758), - [anon_sym_vararg] = ACTIONS(4758), - [anon_sym_noinline] = ACTIONS(4758), - [anon_sym_crossinline] = ACTIONS(4758), - [anon_sym_expect] = ACTIONS(4758), - [anon_sym_actual] = ACTIONS(4758), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4760), - [sym__automatic_semicolon] = ACTIONS(4760), - [sym_safe_nav] = ACTIONS(4760), + [3898] = { + [sym__alpha_identifier] = ACTIONS(4846), + [anon_sym_AT] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_as] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_where] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_get] = ACTIONS(4846), + [anon_sym_set] = ACTIONS(4846), + [anon_sym_STAR] = ACTIONS(4846), + [sym_label] = ACTIONS(4848), + [anon_sym_in] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4848), + [anon_sym_QMARK_COLON] = ACTIONS(4848), + [anon_sym_AMP_AMP] = ACTIONS(4848), + [anon_sym_PIPE_PIPE] = ACTIONS(4848), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_COLON_COLON] = ACTIONS(4848), + [anon_sym_PLUS_EQ] = ACTIONS(4848), + [anon_sym_DASH_EQ] = ACTIONS(4848), + [anon_sym_STAR_EQ] = ACTIONS(4848), + [anon_sym_SLASH_EQ] = ACTIONS(4848), + [anon_sym_PERCENT_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4848), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_BANGin] = ACTIONS(4848), + [anon_sym_is] = ACTIONS(4846), + [anon_sym_BANGis] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4846), + [anon_sym_PERCENT] = ACTIONS(4846), + [anon_sym_as_QMARK] = ACTIONS(4848), + [anon_sym_PLUS_PLUS] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_BANG_BANG] = ACTIONS(4848), + [anon_sym_suspend] = ACTIONS(4846), + [anon_sym_sealed] = ACTIONS(4846), + [anon_sym_annotation] = ACTIONS(4846), + [anon_sym_data] = ACTIONS(4846), + [anon_sym_inner] = ACTIONS(4846), + [anon_sym_value] = ACTIONS(4846), + [anon_sym_override] = ACTIONS(4846), + [anon_sym_lateinit] = ACTIONS(4846), + [anon_sym_public] = ACTIONS(4846), + [anon_sym_private] = ACTIONS(4846), + [anon_sym_internal] = ACTIONS(4846), + [anon_sym_protected] = ACTIONS(4846), + [anon_sym_tailrec] = ACTIONS(4846), + [anon_sym_operator] = ACTIONS(4846), + [anon_sym_infix] = ACTIONS(4846), + [anon_sym_inline] = ACTIONS(4846), + [anon_sym_external] = ACTIONS(4846), + [sym_property_modifier] = ACTIONS(4846), + [anon_sym_abstract] = ACTIONS(4846), + [anon_sym_final] = ACTIONS(4846), + [anon_sym_open] = ACTIONS(4846), + [anon_sym_vararg] = ACTIONS(4846), + [anon_sym_noinline] = ACTIONS(4846), + [anon_sym_crossinline] = ACTIONS(4846), + [anon_sym_expect] = ACTIONS(4846), + [anon_sym_actual] = ACTIONS(4846), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4848), + [sym__automatic_semicolon] = ACTIONS(4848), + [sym_safe_nav] = ACTIONS(4848), [sym_multiline_comment] = ACTIONS(3), }, - [3876] = { - [sym__alpha_identifier] = ACTIONS(4744), - [anon_sym_AT] = ACTIONS(4746), - [anon_sym_COLON] = ACTIONS(4744), - [anon_sym_LBRACK] = ACTIONS(4746), - [anon_sym_as] = ACTIONS(4744), - [anon_sym_EQ] = ACTIONS(4744), - [anon_sym_LBRACE] = ACTIONS(4746), - [anon_sym_RBRACE] = ACTIONS(4746), - [anon_sym_LPAREN] = ACTIONS(4746), - [anon_sym_COMMA] = ACTIONS(4746), - [anon_sym_LT] = ACTIONS(4744), - [anon_sym_GT] = ACTIONS(4744), - [anon_sym_where] = ACTIONS(4744), - [anon_sym_DOT] = ACTIONS(4744), - [anon_sym_SEMI] = ACTIONS(4746), - [anon_sym_get] = ACTIONS(4744), - [anon_sym_set] = ACTIONS(4744), - [anon_sym_STAR] = ACTIONS(4744), - [sym_label] = ACTIONS(4746), - [anon_sym_in] = ACTIONS(4744), - [anon_sym_DOT_DOT] = ACTIONS(4746), - [anon_sym_QMARK_COLON] = ACTIONS(4746), - [anon_sym_AMP_AMP] = ACTIONS(4746), - [anon_sym_PIPE_PIPE] = ACTIONS(4746), - [anon_sym_else] = ACTIONS(4744), - [anon_sym_COLON_COLON] = ACTIONS(4746), - [anon_sym_PLUS_EQ] = ACTIONS(4746), - [anon_sym_DASH_EQ] = ACTIONS(4746), - [anon_sym_STAR_EQ] = ACTIONS(4746), - [anon_sym_SLASH_EQ] = ACTIONS(4746), - [anon_sym_PERCENT_EQ] = ACTIONS(4746), - [anon_sym_BANG_EQ] = ACTIONS(4744), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4746), - [anon_sym_EQ_EQ] = ACTIONS(4744), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4746), - [anon_sym_LT_EQ] = ACTIONS(4746), - [anon_sym_GT_EQ] = ACTIONS(4746), - [anon_sym_BANGin] = ACTIONS(4746), - [anon_sym_is] = ACTIONS(4744), - [anon_sym_BANGis] = ACTIONS(4746), - [anon_sym_PLUS] = ACTIONS(4744), - [anon_sym_DASH] = ACTIONS(4744), - [anon_sym_SLASH] = ACTIONS(4744), - [anon_sym_PERCENT] = ACTIONS(4744), - [anon_sym_as_QMARK] = ACTIONS(4746), - [anon_sym_PLUS_PLUS] = ACTIONS(4746), - [anon_sym_DASH_DASH] = ACTIONS(4746), - [anon_sym_BANG_BANG] = ACTIONS(4746), - [anon_sym_suspend] = ACTIONS(4744), - [anon_sym_sealed] = ACTIONS(4744), - [anon_sym_annotation] = ACTIONS(4744), - [anon_sym_data] = ACTIONS(4744), - [anon_sym_inner] = ACTIONS(4744), - [anon_sym_value] = ACTIONS(4744), - [anon_sym_override] = ACTIONS(4744), - [anon_sym_lateinit] = ACTIONS(4744), - [anon_sym_public] = ACTIONS(4744), - [anon_sym_private] = ACTIONS(4744), - [anon_sym_internal] = ACTIONS(4744), - [anon_sym_protected] = ACTIONS(4744), - [anon_sym_tailrec] = ACTIONS(4744), - [anon_sym_operator] = ACTIONS(4744), - [anon_sym_infix] = ACTIONS(4744), - [anon_sym_inline] = ACTIONS(4744), - [anon_sym_external] = ACTIONS(4744), - [sym_property_modifier] = ACTIONS(4744), - [anon_sym_abstract] = ACTIONS(4744), - [anon_sym_final] = ACTIONS(4744), - [anon_sym_open] = ACTIONS(4744), - [anon_sym_vararg] = ACTIONS(4744), - [anon_sym_noinline] = ACTIONS(4744), - [anon_sym_crossinline] = ACTIONS(4744), - [anon_sym_expect] = ACTIONS(4744), - [anon_sym_actual] = ACTIONS(4744), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4746), - [sym__automatic_semicolon] = ACTIONS(4746), - [sym_safe_nav] = ACTIONS(4746), + [3899] = { + [sym__alpha_identifier] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1584), + [anon_sym_set] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [sym_label] = ACTIONS(1582), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_COLON_COLON] = ACTIONS(1582), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1584), + [anon_sym_inner] = ACTIONS(1584), + [anon_sym_value] = ACTIONS(1584), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1584), + [anon_sym_actual] = ACTIONS(1584), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1582), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), [sym_multiline_comment] = ACTIONS(3), }, - [3877] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7167), - [anon_sym_where] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7175), - [anon_sym_DOT_DOT] = ACTIONS(7177), - [anon_sym_QMARK_COLON] = ACTIONS(7179), - [anon_sym_AMP_AMP] = ACTIONS(7181), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(7187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7189), - [anon_sym_EQ_EQ] = ACTIONS(7187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7189), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7191), - [anon_sym_BANGin] = ACTIONS(7193), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3103), - [sym_safe_nav] = ACTIONS(7185), - [sym_multiline_comment] = ACTIONS(3), - }, - [3878] = { - [sym_class_body] = STATE(4152), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - }, - [3879] = { - [sym_enum_class_body] = STATE(4152), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - }, - [3880] = { - [sym_class_body] = STATE(4138), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - }, - [3881] = { - [sym__alpha_identifier] = ACTIONS(4317), - [anon_sym_AT] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [anon_sym_typealias] = ACTIONS(4317), - [anon_sym_class] = ACTIONS(4317), - [anon_sym_fun] = ACTIONS(4317), - [anon_sym_interface] = ACTIONS(4317), - [anon_sym_enum] = ACTIONS(4317), - [anon_sym_LBRACE] = ACTIONS(4319), - [anon_sym_LPAREN] = ACTIONS(4319), - [anon_sym_val] = ACTIONS(4317), - [anon_sym_var] = ACTIONS(4317), - [anon_sym_object] = ACTIONS(4317), - [anon_sym_DOT] = ACTIONS(4317), - [anon_sym_get] = ACTIONS(4317), - [anon_sym_set] = ACTIONS(4317), - [anon_sym_this] = ACTIONS(4317), - [anon_sym_super] = ACTIONS(4317), - [anon_sym_STAR] = ACTIONS(4319), - [sym_label] = ACTIONS(4317), - [anon_sym_for] = ACTIONS(4317), - [anon_sym_while] = ACTIONS(4317), - [anon_sym_do] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(4317), - [anon_sym_if] = ACTIONS(4317), - [anon_sym_when] = ACTIONS(4317), - [anon_sym_try] = ACTIONS(4317), - [anon_sym_throw] = ACTIONS(4317), - [anon_sym_return] = ACTIONS(4317), - [anon_sym_continue] = ACTIONS(4317), - [anon_sym_break] = ACTIONS(4317), - [anon_sym_COLON_COLON] = ACTIONS(4319), - [anon_sym_PLUS] = ACTIONS(4317), - [anon_sym_DASH] = ACTIONS(4317), - [anon_sym_PLUS_PLUS] = ACTIONS(4319), - [anon_sym_DASH_DASH] = ACTIONS(4319), - [anon_sym_BANG] = ACTIONS(4319), - [anon_sym_suspend] = ACTIONS(4317), - [anon_sym_sealed] = ACTIONS(4317), - [anon_sym_annotation] = ACTIONS(4317), - [anon_sym_data] = ACTIONS(4317), - [anon_sym_inner] = ACTIONS(4317), - [anon_sym_value] = ACTIONS(4317), - [anon_sym_override] = ACTIONS(4317), - [anon_sym_lateinit] = ACTIONS(4317), - [anon_sym_public] = ACTIONS(4317), - [anon_sym_private] = ACTIONS(4317), - [anon_sym_internal] = ACTIONS(4317), - [anon_sym_protected] = ACTIONS(4317), - [anon_sym_tailrec] = ACTIONS(4317), - [anon_sym_operator] = ACTIONS(4317), - [anon_sym_infix] = ACTIONS(4317), - [anon_sym_inline] = ACTIONS(4317), - [anon_sym_external] = ACTIONS(4317), - [sym_property_modifier] = ACTIONS(4317), - [anon_sym_abstract] = ACTIONS(4317), - [anon_sym_final] = ACTIONS(4317), - [anon_sym_open] = ACTIONS(4317), - [anon_sym_vararg] = ACTIONS(4317), - [anon_sym_noinline] = ACTIONS(4317), - [anon_sym_crossinline] = ACTIONS(4317), - [anon_sym_expect] = ACTIONS(4317), - [anon_sym_actual] = ACTIONS(4317), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4319), - [anon_sym_continue_AT] = ACTIONS(4319), - [anon_sym_break_AT] = ACTIONS(4319), - [anon_sym_this_AT] = ACTIONS(4319), - [anon_sym_super_AT] = ACTIONS(4319), - [sym_real_literal] = ACTIONS(4319), - [sym_integer_literal] = ACTIONS(4317), - [sym_hex_literal] = ACTIONS(4319), - [sym_bin_literal] = ACTIONS(4319), - [anon_sym_true] = ACTIONS(4317), - [anon_sym_false] = ACTIONS(4317), - [anon_sym_SQUOTE] = ACTIONS(4319), - [sym__backtick_identifier] = ACTIONS(4319), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4319), - }, - [3882] = { - [sym_class_body] = STATE(4114), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [3883] = { - [sym_enum_class_body] = STATE(4114), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - }, - [3884] = { - [sym_class_body] = STATE(4113), - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4756), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_where] = ACTIONS(4754), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [sym_label] = ACTIONS(4756), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_suspend] = ACTIONS(4754), - [anon_sym_sealed] = ACTIONS(4754), - [anon_sym_annotation] = ACTIONS(4754), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_override] = ACTIONS(4754), - [anon_sym_lateinit] = ACTIONS(4754), - [anon_sym_public] = ACTIONS(4754), - [anon_sym_private] = ACTIONS(4754), - [anon_sym_internal] = ACTIONS(4754), - [anon_sym_protected] = ACTIONS(4754), - [anon_sym_tailrec] = ACTIONS(4754), - [anon_sym_operator] = ACTIONS(4754), - [anon_sym_infix] = ACTIONS(4754), - [anon_sym_inline] = ACTIONS(4754), - [anon_sym_external] = ACTIONS(4754), - [sym_property_modifier] = ACTIONS(4754), - [anon_sym_abstract] = ACTIONS(4754), - [anon_sym_final] = ACTIONS(4754), - [anon_sym_open] = ACTIONS(4754), - [anon_sym_vararg] = ACTIONS(4754), - [anon_sym_noinline] = ACTIONS(4754), - [anon_sym_crossinline] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4756), - [sym__automatic_semicolon] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), - [sym_multiline_comment] = ACTIONS(3), - }, - [3885] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(1758), - [sym__comparison_operator] = STATE(1762), - [sym__in_operator] = STATE(1764), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(1766), - [sym__multiplicative_operator] = STATE(1769), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1770), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7167), - [anon_sym_where] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7171), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7175), - [anon_sym_DOT_DOT] = ACTIONS(7177), - [anon_sym_QMARK_COLON] = ACTIONS(7179), - [anon_sym_AMP_AMP] = ACTIONS(7181), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(7187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7189), - [anon_sym_EQ_EQ] = ACTIONS(7187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7189), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7191), - [anon_sym_BANGin] = ACTIONS(7193), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7171), - [anon_sym_PERCENT] = ACTIONS(7171), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(7185), - [sym_multiline_comment] = ACTIONS(3), - }, - [3886] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3892), - [sym__alpha_identifier] = ACTIONS(4740), - [anon_sym_AT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_where] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4740), - [anon_sym_set] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4740), - [sym_label] = ACTIONS(4742), - [anon_sym_in] = ACTIONS(4740), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [anon_sym_QMARK_COLON] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_COLON_COLON] = ACTIONS(4742), - [anon_sym_PLUS_EQ] = ACTIONS(4742), - [anon_sym_DASH_EQ] = ACTIONS(4742), - [anon_sym_STAR_EQ] = ACTIONS(4742), - [anon_sym_SLASH_EQ] = ACTIONS(4742), - [anon_sym_PERCENT_EQ] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT_EQ] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_BANGin] = ACTIONS(4742), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_BANGis] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4740), - [anon_sym_as_QMARK] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4742), - [anon_sym_BANG_BANG] = ACTIONS(4742), - [anon_sym_suspend] = ACTIONS(4740), - [anon_sym_sealed] = ACTIONS(4740), - [anon_sym_annotation] = ACTIONS(4740), - [anon_sym_data] = ACTIONS(4740), - [anon_sym_inner] = ACTIONS(4740), - [anon_sym_value] = ACTIONS(4740), - [anon_sym_override] = ACTIONS(4740), - [anon_sym_lateinit] = ACTIONS(4740), - [anon_sym_public] = ACTIONS(4740), - [anon_sym_private] = ACTIONS(4740), - [anon_sym_internal] = ACTIONS(4740), - [anon_sym_protected] = ACTIONS(4740), - [anon_sym_tailrec] = ACTIONS(4740), - [anon_sym_operator] = ACTIONS(4740), - [anon_sym_infix] = ACTIONS(4740), - [anon_sym_inline] = ACTIONS(4740), - [anon_sym_external] = ACTIONS(4740), - [sym_property_modifier] = ACTIONS(4740), - [anon_sym_abstract] = ACTIONS(4740), - [anon_sym_final] = ACTIONS(4740), - [anon_sym_open] = ACTIONS(4740), - [anon_sym_vararg] = ACTIONS(4740), - [anon_sym_noinline] = ACTIONS(4740), - [anon_sym_crossinline] = ACTIONS(4740), - [anon_sym_expect] = ACTIONS(4740), - [anon_sym_actual] = ACTIONS(4740), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4742), - [sym__automatic_semicolon] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), - [sym_multiline_comment] = ACTIONS(3), - }, - [3887] = { - [sym__alpha_identifier] = ACTIONS(4714), - [anon_sym_AT] = ACTIONS(4716), - [anon_sym_COLON] = ACTIONS(4714), - [anon_sym_LBRACK] = ACTIONS(4716), - [anon_sym_as] = ACTIONS(4714), - [anon_sym_EQ] = ACTIONS(4714), - [anon_sym_LBRACE] = ACTIONS(4716), - [anon_sym_RBRACE] = ACTIONS(4716), - [anon_sym_LPAREN] = ACTIONS(4716), - [anon_sym_COMMA] = ACTIONS(4716), - [anon_sym_LT] = ACTIONS(4714), - [anon_sym_GT] = ACTIONS(4714), - [anon_sym_where] = ACTIONS(4714), - [anon_sym_DOT] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_get] = ACTIONS(4714), - [anon_sym_set] = ACTIONS(4714), - [anon_sym_STAR] = ACTIONS(4714), - [sym_label] = ACTIONS(4716), - [anon_sym_in] = ACTIONS(4714), - [anon_sym_DOT_DOT] = ACTIONS(4716), - [anon_sym_QMARK_COLON] = ACTIONS(4716), - [anon_sym_AMP_AMP] = ACTIONS(4716), - [anon_sym_PIPE_PIPE] = ACTIONS(4716), - [anon_sym_else] = ACTIONS(4714), - [anon_sym_COLON_COLON] = ACTIONS(4716), - [anon_sym_PLUS_EQ] = ACTIONS(4716), - [anon_sym_DASH_EQ] = ACTIONS(4716), - [anon_sym_STAR_EQ] = ACTIONS(4716), - [anon_sym_SLASH_EQ] = ACTIONS(4716), - [anon_sym_PERCENT_EQ] = ACTIONS(4716), - [anon_sym_BANG_EQ] = ACTIONS(4714), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4716), - [anon_sym_EQ_EQ] = ACTIONS(4714), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4716), - [anon_sym_LT_EQ] = ACTIONS(4716), - [anon_sym_GT_EQ] = ACTIONS(4716), - [anon_sym_BANGin] = ACTIONS(4716), - [anon_sym_is] = ACTIONS(4714), - [anon_sym_BANGis] = ACTIONS(4716), - [anon_sym_PLUS] = ACTIONS(4714), - [anon_sym_DASH] = ACTIONS(4714), - [anon_sym_SLASH] = ACTIONS(4714), - [anon_sym_PERCENT] = ACTIONS(4714), - [anon_sym_as_QMARK] = ACTIONS(4716), - [anon_sym_PLUS_PLUS] = ACTIONS(4716), - [anon_sym_DASH_DASH] = ACTIONS(4716), - [anon_sym_BANG_BANG] = ACTIONS(4716), - [anon_sym_suspend] = ACTIONS(4714), - [anon_sym_sealed] = ACTIONS(4714), - [anon_sym_annotation] = ACTIONS(4714), - [anon_sym_data] = ACTIONS(4714), - [anon_sym_inner] = ACTIONS(4714), - [anon_sym_value] = ACTIONS(4714), - [anon_sym_override] = ACTIONS(4714), - [anon_sym_lateinit] = ACTIONS(4714), - [anon_sym_public] = ACTIONS(4714), - [anon_sym_private] = ACTIONS(4714), - [anon_sym_internal] = ACTIONS(4714), - [anon_sym_protected] = ACTIONS(4714), - [anon_sym_tailrec] = ACTIONS(4714), - [anon_sym_operator] = ACTIONS(4714), - [anon_sym_infix] = ACTIONS(4714), - [anon_sym_inline] = ACTIONS(4714), - [anon_sym_external] = ACTIONS(4714), - [sym_property_modifier] = ACTIONS(4714), - [anon_sym_abstract] = ACTIONS(4714), - [anon_sym_final] = ACTIONS(4714), - [anon_sym_open] = ACTIONS(4714), - [anon_sym_vararg] = ACTIONS(4714), - [anon_sym_noinline] = ACTIONS(4714), - [anon_sym_crossinline] = ACTIONS(4714), - [anon_sym_expect] = ACTIONS(4714), - [anon_sym_actual] = ACTIONS(4714), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4716), - [sym__automatic_semicolon] = ACTIONS(4716), - [sym_safe_nav] = ACTIONS(4716), - [sym_multiline_comment] = ACTIONS(3), - }, - [3888] = { - [sym_class_body] = STATE(4111), - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [sym_label] = ACTIONS(4471), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_suspend] = ACTIONS(4469), - [anon_sym_sealed] = ACTIONS(4469), - [anon_sym_annotation] = ACTIONS(4469), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_value] = ACTIONS(4469), - [anon_sym_override] = ACTIONS(4469), - [anon_sym_lateinit] = ACTIONS(4469), - [anon_sym_public] = ACTIONS(4469), - [anon_sym_private] = ACTIONS(4469), - [anon_sym_internal] = ACTIONS(4469), - [anon_sym_protected] = ACTIONS(4469), - [anon_sym_tailrec] = ACTIONS(4469), - [anon_sym_operator] = ACTIONS(4469), - [anon_sym_infix] = ACTIONS(4469), - [anon_sym_inline] = ACTIONS(4469), - [anon_sym_external] = ACTIONS(4469), - [sym_property_modifier] = ACTIONS(4469), - [anon_sym_abstract] = ACTIONS(4469), - [anon_sym_final] = ACTIONS(4469), - [anon_sym_open] = ACTIONS(4469), - [anon_sym_vararg] = ACTIONS(4469), - [anon_sym_noinline] = ACTIONS(4469), - [anon_sym_crossinline] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4471), - [sym__automatic_semicolon] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), - [sym_multiline_comment] = ACTIONS(3), - }, - [3889] = { - [ts_builtin_sym_end] = ACTIONS(1447), - [sym__alpha_identifier] = ACTIONS(7231), - [anon_sym_AT] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_typealias] = ACTIONS(7231), - [anon_sym_class] = ACTIONS(7231), - [anon_sym_fun] = ACTIONS(7231), - [anon_sym_interface] = ACTIONS(7231), - [anon_sym_enum] = ACTIONS(7231), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_val] = ACTIONS(7231), - [anon_sym_var] = ACTIONS(7231), - [anon_sym_object] = ACTIONS(7231), - [anon_sym_get] = ACTIONS(7231), - [anon_sym_set] = ACTIONS(7231), - [anon_sym_this] = ACTIONS(7231), - [anon_sym_super] = ACTIONS(7231), - [anon_sym_STAR] = ACTIONS(1447), - [sym_label] = ACTIONS(7231), - [anon_sym_for] = ACTIONS(7231), - [anon_sym_while] = ACTIONS(7231), - [anon_sym_do] = ACTIONS(7231), - [anon_sym_null] = ACTIONS(7231), - [anon_sym_if] = ACTIONS(7231), - [anon_sym_when] = ACTIONS(7231), - [anon_sym_try] = ACTIONS(7231), - [anon_sym_throw] = ACTIONS(7231), - [anon_sym_return] = ACTIONS(7231), - [anon_sym_continue] = ACTIONS(7231), - [anon_sym_break] = ACTIONS(7231), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(7231), - [anon_sym_DASH] = ACTIONS(7231), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_suspend] = ACTIONS(7231), - [anon_sym_sealed] = ACTIONS(7231), - [anon_sym_annotation] = ACTIONS(7231), - [anon_sym_data] = ACTIONS(7231), - [anon_sym_inner] = ACTIONS(7231), - [anon_sym_value] = ACTIONS(7231), - [anon_sym_override] = ACTIONS(7231), - [anon_sym_lateinit] = ACTIONS(7231), - [anon_sym_public] = ACTIONS(7231), - [anon_sym_private] = ACTIONS(7231), - [anon_sym_internal] = ACTIONS(7231), - [anon_sym_protected] = ACTIONS(7231), - [anon_sym_tailrec] = ACTIONS(7231), - [anon_sym_operator] = ACTIONS(7231), - [anon_sym_infix] = ACTIONS(7231), - [anon_sym_inline] = ACTIONS(7231), - [anon_sym_external] = ACTIONS(7231), - [sym_property_modifier] = ACTIONS(7231), - [anon_sym_abstract] = ACTIONS(7231), - [anon_sym_final] = ACTIONS(7231), - [anon_sym_open] = ACTIONS(7231), - [anon_sym_vararg] = ACTIONS(7231), - [anon_sym_noinline] = ACTIONS(7231), - [anon_sym_crossinline] = ACTIONS(7231), - [anon_sym_expect] = ACTIONS(7231), - [anon_sym_actual] = ACTIONS(7231), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1447), - [anon_sym_continue_AT] = ACTIONS(1447), - [anon_sym_break_AT] = ACTIONS(1447), - [anon_sym_this_AT] = ACTIONS(1447), - [anon_sym_super_AT] = ACTIONS(1447), - [sym_real_literal] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(7231), - [sym_hex_literal] = ACTIONS(1447), - [sym_bin_literal] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(7231), - [anon_sym_false] = ACTIONS(7231), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym__backtick_identifier] = ACTIONS(1447), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1447), - }, - [3890] = { - [sym_class_body] = STATE(4110), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - }, - [3891] = { - [sym_enum_class_body] = STATE(4110), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - }, - [3892] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3892), - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(7233), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4705), - [sym_label] = ACTIONS(4707), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_PLUS_EQ] = ACTIONS(4707), - [anon_sym_DASH_EQ] = ACTIONS(4707), - [anon_sym_STAR_EQ] = ACTIONS(4707), - [anon_sym_SLASH_EQ] = ACTIONS(4707), - [anon_sym_PERCENT_EQ] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4705), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_suspend] = ACTIONS(4705), - [anon_sym_sealed] = ACTIONS(4705), - [anon_sym_annotation] = ACTIONS(4705), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_override] = ACTIONS(4705), - [anon_sym_lateinit] = ACTIONS(4705), - [anon_sym_public] = ACTIONS(4705), - [anon_sym_private] = ACTIONS(4705), - [anon_sym_internal] = ACTIONS(4705), - [anon_sym_protected] = ACTIONS(4705), - [anon_sym_tailrec] = ACTIONS(4705), - [anon_sym_operator] = ACTIONS(4705), - [anon_sym_infix] = ACTIONS(4705), - [anon_sym_inline] = ACTIONS(4705), - [anon_sym_external] = ACTIONS(4705), - [sym_property_modifier] = ACTIONS(4705), - [anon_sym_abstract] = ACTIONS(4705), - [anon_sym_final] = ACTIONS(4705), - [anon_sym_open] = ACTIONS(4705), - [anon_sym_vararg] = ACTIONS(4705), - [anon_sym_noinline] = ACTIONS(4705), - [anon_sym_crossinline] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4707), - [sym__automatic_semicolon] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), - [sym_multiline_comment] = ACTIONS(3), - }, - [3893] = { - [sym_class_body] = STATE(4091), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - }, - [3894] = { - [sym_enum_class_body] = STATE(4091), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - }, - [3895] = { - [sym__alpha_identifier] = ACTIONS(4591), - [anon_sym_AT] = ACTIONS(4593), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_as] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4593), - [anon_sym_RBRACE] = ACTIONS(4593), - [anon_sym_LPAREN] = ACTIONS(4593), - [anon_sym_COMMA] = ACTIONS(4593), - [anon_sym_LT] = ACTIONS(4591), - [anon_sym_GT] = ACTIONS(4591), - [anon_sym_where] = ACTIONS(4591), - [anon_sym_DOT] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4593), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), - [anon_sym_STAR] = ACTIONS(4591), - [sym_label] = ACTIONS(4593), - [anon_sym_in] = ACTIONS(4591), - [anon_sym_DOT_DOT] = ACTIONS(4593), - [anon_sym_QMARK_COLON] = ACTIONS(4593), - [anon_sym_AMP_AMP] = ACTIONS(4593), - [anon_sym_PIPE_PIPE] = ACTIONS(4593), - [anon_sym_else] = ACTIONS(4591), - [anon_sym_COLON_COLON] = ACTIONS(4593), - [anon_sym_PLUS_EQ] = ACTIONS(4593), - [anon_sym_DASH_EQ] = ACTIONS(4593), - [anon_sym_STAR_EQ] = ACTIONS(4593), - [anon_sym_SLASH_EQ] = ACTIONS(4593), - [anon_sym_PERCENT_EQ] = ACTIONS(4593), - [anon_sym_BANG_EQ] = ACTIONS(4591), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4593), - [anon_sym_EQ_EQ] = ACTIONS(4591), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4593), - [anon_sym_LT_EQ] = ACTIONS(4593), - [anon_sym_GT_EQ] = ACTIONS(4593), - [anon_sym_BANGin] = ACTIONS(4593), - [anon_sym_is] = ACTIONS(4591), - [anon_sym_BANGis] = ACTIONS(4593), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4591), - [anon_sym_SLASH] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_as_QMARK] = ACTIONS(4593), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), - [anon_sym_BANG_BANG] = ACTIONS(4593), - [anon_sym_suspend] = ACTIONS(4591), - [anon_sym_sealed] = ACTIONS(4591), - [anon_sym_annotation] = ACTIONS(4591), - [anon_sym_data] = ACTIONS(4591), - [anon_sym_inner] = ACTIONS(4591), - [anon_sym_value] = ACTIONS(4591), - [anon_sym_override] = ACTIONS(4591), - [anon_sym_lateinit] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_internal] = ACTIONS(4591), - [anon_sym_protected] = ACTIONS(4591), - [anon_sym_tailrec] = ACTIONS(4591), - [anon_sym_operator] = ACTIONS(4591), - [anon_sym_infix] = ACTIONS(4591), - [anon_sym_inline] = ACTIONS(4591), - [anon_sym_external] = ACTIONS(4591), - [sym_property_modifier] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_open] = ACTIONS(4591), - [anon_sym_vararg] = ACTIONS(4591), - [anon_sym_noinline] = ACTIONS(4591), - [anon_sym_crossinline] = ACTIONS(4591), - [anon_sym_expect] = ACTIONS(4591), - [anon_sym_actual] = ACTIONS(4591), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4593), - [sym__automatic_semicolon] = ACTIONS(4593), - [sym_safe_nav] = ACTIONS(4593), - [sym_multiline_comment] = ACTIONS(3), - }, - [3896] = { - [sym_class_body] = STATE(4089), - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [sym_label] = ACTIONS(4639), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_suspend] = ACTIONS(4637), - [anon_sym_sealed] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4637), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_override] = ACTIONS(4637), - [anon_sym_lateinit] = ACTIONS(4637), - [anon_sym_public] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4637), - [anon_sym_internal] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4637), - [anon_sym_tailrec] = ACTIONS(4637), - [anon_sym_operator] = ACTIONS(4637), - [anon_sym_infix] = ACTIONS(4637), - [anon_sym_inline] = ACTIONS(4637), - [anon_sym_external] = ACTIONS(4637), - [sym_property_modifier] = ACTIONS(4637), - [anon_sym_abstract] = ACTIONS(4637), - [anon_sym_final] = ACTIONS(4637), - [anon_sym_open] = ACTIONS(4637), - [anon_sym_vararg] = ACTIONS(4637), - [anon_sym_noinline] = ACTIONS(4637), - [anon_sym_crossinline] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4639), - [sym__automatic_semicolon] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), - [sym_multiline_comment] = ACTIONS(3), - }, - [3897] = { - [sym_class_body] = STATE(3468), + [3900] = { [sym__alpha_identifier] = ACTIONS(4443), [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(7236), [anon_sym_LBRACK] = ACTIONS(4445), [anon_sym_as] = ACTIONS(4443), [anon_sym_EQ] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(5590), + [anon_sym_LBRACE] = ACTIONS(4445), [anon_sym_RBRACE] = ACTIONS(4445), [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), [anon_sym_LT] = ACTIONS(4443), [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), [anon_sym_DOT] = ACTIONS(4443), [anon_sym_SEMI] = ACTIONS(4445), [anon_sym_get] = ACTIONS(4443), @@ -439024,7 +436748,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4443), [sym_label] = ACTIONS(4445), [anon_sym_in] = ACTIONS(4443), - [anon_sym_while] = ACTIONS(4443), [anon_sym_DOT_DOT] = ACTIONS(4445), [anon_sym_QMARK_COLON] = ACTIONS(4445), [anon_sym_AMP_AMP] = ACTIONS(4445), @@ -439081,2613 +436804,981 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4443), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, - [3898] = { - [sym_class_body] = STATE(4088), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [sym_label] = ACTIONS(4467), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_suspend] = ACTIONS(4465), - [anon_sym_sealed] = ACTIONS(4465), - [anon_sym_annotation] = ACTIONS(4465), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_override] = ACTIONS(4465), - [anon_sym_lateinit] = ACTIONS(4465), - [anon_sym_public] = ACTIONS(4465), - [anon_sym_private] = ACTIONS(4465), - [anon_sym_internal] = ACTIONS(4465), - [anon_sym_protected] = ACTIONS(4465), - [anon_sym_tailrec] = ACTIONS(4465), - [anon_sym_operator] = ACTIONS(4465), - [anon_sym_infix] = ACTIONS(4465), - [anon_sym_inline] = ACTIONS(4465), - [anon_sym_external] = ACTIONS(4465), - [sym_property_modifier] = ACTIONS(4465), - [anon_sym_abstract] = ACTIONS(4465), - [anon_sym_final] = ACTIONS(4465), - [anon_sym_open] = ACTIONS(4465), - [anon_sym_vararg] = ACTIONS(4465), - [anon_sym_noinline] = ACTIONS(4465), - [anon_sym_crossinline] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4467), - [sym__automatic_semicolon] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), - [sym_multiline_comment] = ACTIONS(3), - }, - [3899] = { - [sym_function_body] = STATE(3502), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_RPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [sym_label] = ACTIONS(4341), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_while] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_PLUS_EQ] = ACTIONS(4341), - [anon_sym_DASH_EQ] = ACTIONS(4341), - [anon_sym_STAR_EQ] = ACTIONS(4341), - [anon_sym_SLASH_EQ] = ACTIONS(4341), - [anon_sym_PERCENT_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4339), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - }, - [3900] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3809), - [sym__alpha_identifier] = ACTIONS(4671), - [anon_sym_AT] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4673), - [anon_sym_as] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_RBRACE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(7159), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4671), - [anon_sym_where] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_get] = ACTIONS(4671), - [anon_sym_set] = ACTIONS(4671), - [anon_sym_STAR] = ACTIONS(4671), - [sym_label] = ACTIONS(4673), - [anon_sym_in] = ACTIONS(4671), - [anon_sym_DOT_DOT] = ACTIONS(4673), - [anon_sym_QMARK_COLON] = ACTIONS(4673), - [anon_sym_AMP_AMP] = ACTIONS(4673), - [anon_sym_PIPE_PIPE] = ACTIONS(4673), - [anon_sym_else] = ACTIONS(4671), - [anon_sym_COLON_COLON] = ACTIONS(4673), - [anon_sym_PLUS_EQ] = ACTIONS(4673), - [anon_sym_DASH_EQ] = ACTIONS(4673), - [anon_sym_STAR_EQ] = ACTIONS(4673), - [anon_sym_SLASH_EQ] = ACTIONS(4673), - [anon_sym_PERCENT_EQ] = ACTIONS(4673), - [anon_sym_BANG_EQ] = ACTIONS(4671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4673), - [anon_sym_EQ_EQ] = ACTIONS(4671), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4673), - [anon_sym_LT_EQ] = ACTIONS(4673), - [anon_sym_GT_EQ] = ACTIONS(4673), - [anon_sym_BANGin] = ACTIONS(4673), - [anon_sym_is] = ACTIONS(4671), - [anon_sym_BANGis] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4671), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4671), - [anon_sym_PERCENT] = ACTIONS(4671), - [anon_sym_as_QMARK] = ACTIONS(4673), - [anon_sym_PLUS_PLUS] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4673), - [anon_sym_BANG_BANG] = ACTIONS(4673), - [anon_sym_suspend] = ACTIONS(4671), - [anon_sym_sealed] = ACTIONS(4671), - [anon_sym_annotation] = ACTIONS(4671), - [anon_sym_data] = ACTIONS(4671), - [anon_sym_inner] = ACTIONS(4671), - [anon_sym_value] = ACTIONS(4671), - [anon_sym_override] = ACTIONS(4671), - [anon_sym_lateinit] = ACTIONS(4671), - [anon_sym_public] = ACTIONS(4671), - [anon_sym_private] = ACTIONS(4671), - [anon_sym_internal] = ACTIONS(4671), - [anon_sym_protected] = ACTIONS(4671), - [anon_sym_tailrec] = ACTIONS(4671), - [anon_sym_operator] = ACTIONS(4671), - [anon_sym_infix] = ACTIONS(4671), - [anon_sym_inline] = ACTIONS(4671), - [anon_sym_external] = ACTIONS(4671), - [sym_property_modifier] = ACTIONS(4671), - [anon_sym_abstract] = ACTIONS(4671), - [anon_sym_final] = ACTIONS(4671), - [anon_sym_open] = ACTIONS(4671), - [anon_sym_vararg] = ACTIONS(4671), - [anon_sym_noinline] = ACTIONS(4671), - [anon_sym_crossinline] = ACTIONS(4671), - [anon_sym_expect] = ACTIONS(4671), - [anon_sym_actual] = ACTIONS(4671), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4673), - [sym__automatic_semicolon] = ACTIONS(4673), - [sym_safe_nav] = ACTIONS(4673), - [sym_multiline_comment] = ACTIONS(3), - }, [3901] = { - [sym_enum_class_body] = STATE(4088), - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [sym_label] = ACTIONS(4467), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_suspend] = ACTIONS(4465), - [anon_sym_sealed] = ACTIONS(4465), - [anon_sym_annotation] = ACTIONS(4465), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_override] = ACTIONS(4465), - [anon_sym_lateinit] = ACTIONS(4465), - [anon_sym_public] = ACTIONS(4465), - [anon_sym_private] = ACTIONS(4465), - [anon_sym_internal] = ACTIONS(4465), - [anon_sym_protected] = ACTIONS(4465), - [anon_sym_tailrec] = ACTIONS(4465), - [anon_sym_operator] = ACTIONS(4465), - [anon_sym_infix] = ACTIONS(4465), - [anon_sym_inline] = ACTIONS(4465), - [anon_sym_external] = ACTIONS(4465), - [sym_property_modifier] = ACTIONS(4465), - [anon_sym_abstract] = ACTIONS(4465), - [anon_sym_final] = ACTIONS(4465), - [anon_sym_open] = ACTIONS(4465), - [anon_sym_vararg] = ACTIONS(4465), - [anon_sym_noinline] = ACTIONS(4465), - [anon_sym_crossinline] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4467), - [sym__automatic_semicolon] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), + [sym__alpha_identifier] = ACTIONS(5183), + [anon_sym_AT] = ACTIONS(5185), + [anon_sym_LBRACK] = ACTIONS(5185), + [anon_sym_as] = ACTIONS(5183), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5185), + [anon_sym_RBRACE] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5185), + [anon_sym_COMMA] = ACTIONS(5185), + [anon_sym_LT] = ACTIONS(5183), + [anon_sym_GT] = ACTIONS(5183), + [anon_sym_where] = ACTIONS(5183), + [anon_sym_DOT] = ACTIONS(5183), + [anon_sym_SEMI] = ACTIONS(5185), + [anon_sym_get] = ACTIONS(5183), + [anon_sym_set] = ACTIONS(5183), + [anon_sym_STAR] = ACTIONS(5183), + [sym_label] = ACTIONS(5185), + [anon_sym_in] = ACTIONS(5183), + [anon_sym_DOT_DOT] = ACTIONS(5185), + [anon_sym_QMARK_COLON] = ACTIONS(5185), + [anon_sym_AMP_AMP] = ACTIONS(5185), + [anon_sym_PIPE_PIPE] = ACTIONS(5185), + [anon_sym_else] = ACTIONS(5183), + [anon_sym_COLON_COLON] = ACTIONS(5185), + [anon_sym_PLUS_EQ] = ACTIONS(5185), + [anon_sym_DASH_EQ] = ACTIONS(5185), + [anon_sym_STAR_EQ] = ACTIONS(5185), + [anon_sym_SLASH_EQ] = ACTIONS(5185), + [anon_sym_PERCENT_EQ] = ACTIONS(5185), + [anon_sym_BANG_EQ] = ACTIONS(5183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5185), + [anon_sym_EQ_EQ] = ACTIONS(5183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5185), + [anon_sym_LT_EQ] = ACTIONS(5185), + [anon_sym_GT_EQ] = ACTIONS(5185), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(5183), + [anon_sym_BANGis] = ACTIONS(5185), + [anon_sym_PLUS] = ACTIONS(5183), + [anon_sym_DASH] = ACTIONS(5183), + [anon_sym_SLASH] = ACTIONS(5183), + [anon_sym_PERCENT] = ACTIONS(5183), + [anon_sym_as_QMARK] = ACTIONS(5185), + [anon_sym_PLUS_PLUS] = ACTIONS(5185), + [anon_sym_DASH_DASH] = ACTIONS(5185), + [anon_sym_BANG_BANG] = ACTIONS(5185), + [anon_sym_suspend] = ACTIONS(5183), + [anon_sym_sealed] = ACTIONS(5183), + [anon_sym_annotation] = ACTIONS(5183), + [anon_sym_data] = ACTIONS(5183), + [anon_sym_inner] = ACTIONS(5183), + [anon_sym_value] = ACTIONS(5183), + [anon_sym_override] = ACTIONS(5183), + [anon_sym_lateinit] = ACTIONS(5183), + [anon_sym_public] = ACTIONS(5183), + [anon_sym_private] = ACTIONS(5183), + [anon_sym_internal] = ACTIONS(5183), + [anon_sym_protected] = ACTIONS(5183), + [anon_sym_tailrec] = ACTIONS(5183), + [anon_sym_operator] = ACTIONS(5183), + [anon_sym_infix] = ACTIONS(5183), + [anon_sym_inline] = ACTIONS(5183), + [anon_sym_external] = ACTIONS(5183), + [sym_property_modifier] = ACTIONS(5183), + [anon_sym_abstract] = ACTIONS(5183), + [anon_sym_final] = ACTIONS(5183), + [anon_sym_open] = ACTIONS(5183), + [anon_sym_vararg] = ACTIONS(5183), + [anon_sym_noinline] = ACTIONS(5183), + [anon_sym_crossinline] = ACTIONS(5183), + [anon_sym_expect] = ACTIONS(5183), + [anon_sym_actual] = ACTIONS(5183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5185), + [sym__automatic_semicolon] = ACTIONS(5185), + [sym_safe_nav] = ACTIONS(5185), [sym_multiline_comment] = ACTIONS(3), }, [3902] = { - [sym_function_body] = STATE(3606), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_RPAREN] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_while] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4530), - [anon_sym_sealed] = ACTIONS(4530), - [anon_sym_annotation] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_override] = ACTIONS(4530), - [anon_sym_lateinit] = ACTIONS(4530), - [anon_sym_public] = ACTIONS(4530), - [anon_sym_private] = ACTIONS(4530), - [anon_sym_internal] = ACTIONS(4530), - [anon_sym_protected] = ACTIONS(4530), - [anon_sym_tailrec] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_infix] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym_external] = ACTIONS(4530), - [sym_property_modifier] = ACTIONS(4530), - [anon_sym_abstract] = ACTIONS(4530), - [anon_sym_final] = ACTIONS(4530), - [anon_sym_open] = ACTIONS(4530), - [anon_sym_vararg] = ACTIONS(4530), - [anon_sym_noinline] = ACTIONS(4530), - [anon_sym_crossinline] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(1732), + [anon_sym_sealed] = ACTIONS(1732), + [anon_sym_annotation] = ACTIONS(1732), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(1732), + [anon_sym_lateinit] = ACTIONS(1732), + [anon_sym_public] = ACTIONS(1732), + [anon_sym_private] = ACTIONS(1732), + [anon_sym_internal] = ACTIONS(1732), + [anon_sym_protected] = ACTIONS(1732), + [anon_sym_tailrec] = ACTIONS(1732), + [anon_sym_operator] = ACTIONS(1732), + [anon_sym_infix] = ACTIONS(1732), + [anon_sym_inline] = ACTIONS(1732), + [anon_sym_external] = ACTIONS(1732), + [sym_property_modifier] = ACTIONS(1732), + [anon_sym_abstract] = ACTIONS(1732), + [anon_sym_final] = ACTIONS(1732), + [anon_sym_open] = ACTIONS(1732), + [anon_sym_vararg] = ACTIONS(1732), + [anon_sym_noinline] = ACTIONS(1732), + [anon_sym_crossinline] = ACTIONS(1732), + [anon_sym_expect] = ACTIONS(1732), + [anon_sym_actual] = ACTIONS(1732), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, [3903] = { - [sym_function_body] = STATE(3676), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_RPAREN] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4518), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_while] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_PLUS_EQ] = ACTIONS(4520), - [anon_sym_DASH_EQ] = ACTIONS(4520), - [anon_sym_STAR_EQ] = ACTIONS(4520), - [anon_sym_SLASH_EQ] = ACTIONS(4520), - [anon_sym_PERCENT_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4518), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_suspend] = ACTIONS(4518), - [anon_sym_sealed] = ACTIONS(4518), - [anon_sym_annotation] = ACTIONS(4518), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_override] = ACTIONS(4518), - [anon_sym_lateinit] = ACTIONS(4518), - [anon_sym_public] = ACTIONS(4518), - [anon_sym_private] = ACTIONS(4518), - [anon_sym_internal] = ACTIONS(4518), - [anon_sym_protected] = ACTIONS(4518), - [anon_sym_tailrec] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_infix] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym_external] = ACTIONS(4518), - [sym_property_modifier] = ACTIONS(4518), - [anon_sym_abstract] = ACTIONS(4518), - [anon_sym_final] = ACTIONS(4518), - [anon_sym_open] = ACTIONS(4518), - [anon_sym_vararg] = ACTIONS(4518), - [anon_sym_noinline] = ACTIONS(4518), - [anon_sym_crossinline] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), + [sym__alpha_identifier] = ACTIONS(5067), + [anon_sym_AT] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_as] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(5067), + [anon_sym_LBRACE] = ACTIONS(5069), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5069), + [anon_sym_COMMA] = ACTIONS(5069), + [anon_sym_LT] = ACTIONS(5067), + [anon_sym_GT] = ACTIONS(5067), + [anon_sym_where] = ACTIONS(5067), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [anon_sym_get] = ACTIONS(5067), + [anon_sym_set] = ACTIONS(5067), + [anon_sym_STAR] = ACTIONS(5067), + [sym_label] = ACTIONS(5069), + [anon_sym_in] = ACTIONS(5067), + [anon_sym_DOT_DOT] = ACTIONS(5069), + [anon_sym_QMARK_COLON] = ACTIONS(5069), + [anon_sym_AMP_AMP] = ACTIONS(5069), + [anon_sym_PIPE_PIPE] = ACTIONS(5069), + [anon_sym_else] = ACTIONS(5067), + [anon_sym_COLON_COLON] = ACTIONS(5069), + [anon_sym_PLUS_EQ] = ACTIONS(5069), + [anon_sym_DASH_EQ] = ACTIONS(5069), + [anon_sym_STAR_EQ] = ACTIONS(5069), + [anon_sym_SLASH_EQ] = ACTIONS(5069), + [anon_sym_PERCENT_EQ] = ACTIONS(5069), + [anon_sym_BANG_EQ] = ACTIONS(5067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5069), + [anon_sym_EQ_EQ] = ACTIONS(5067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5069), + [anon_sym_LT_EQ] = ACTIONS(5069), + [anon_sym_GT_EQ] = ACTIONS(5069), + [anon_sym_BANGin] = ACTIONS(5069), + [anon_sym_is] = ACTIONS(5067), + [anon_sym_BANGis] = ACTIONS(5069), + [anon_sym_PLUS] = ACTIONS(5067), + [anon_sym_DASH] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5067), + [anon_sym_PERCENT] = ACTIONS(5067), + [anon_sym_as_QMARK] = ACTIONS(5069), + [anon_sym_PLUS_PLUS] = ACTIONS(5069), + [anon_sym_DASH_DASH] = ACTIONS(5069), + [anon_sym_BANG_BANG] = ACTIONS(5069), + [anon_sym_suspend] = ACTIONS(5067), + [anon_sym_sealed] = ACTIONS(5067), + [anon_sym_annotation] = ACTIONS(5067), + [anon_sym_data] = ACTIONS(5067), + [anon_sym_inner] = ACTIONS(5067), + [anon_sym_value] = ACTIONS(5067), + [anon_sym_override] = ACTIONS(5067), + [anon_sym_lateinit] = ACTIONS(5067), + [anon_sym_public] = ACTIONS(5067), + [anon_sym_private] = ACTIONS(5067), + [anon_sym_internal] = ACTIONS(5067), + [anon_sym_protected] = ACTIONS(5067), + [anon_sym_tailrec] = ACTIONS(5067), + [anon_sym_operator] = ACTIONS(5067), + [anon_sym_infix] = ACTIONS(5067), + [anon_sym_inline] = ACTIONS(5067), + [anon_sym_external] = ACTIONS(5067), + [sym_property_modifier] = ACTIONS(5067), + [anon_sym_abstract] = ACTIONS(5067), + [anon_sym_final] = ACTIONS(5067), + [anon_sym_open] = ACTIONS(5067), + [anon_sym_vararg] = ACTIONS(5067), + [anon_sym_noinline] = ACTIONS(5067), + [anon_sym_crossinline] = ACTIONS(5067), + [anon_sym_expect] = ACTIONS(5067), + [anon_sym_actual] = ACTIONS(5067), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5069), + [sym__automatic_semicolon] = ACTIONS(5069), + [sym_safe_nav] = ACTIONS(5069), [sym_multiline_comment] = ACTIONS(3), }, [3904] = { - [sym_class_body] = STATE(3632), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(7238), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_RPAREN] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_while] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), + [sym__alpha_identifier] = ACTIONS(5125), + [anon_sym_AT] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5127), + [anon_sym_as] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5127), + [anon_sym_RBRACE] = ACTIONS(5127), + [anon_sym_LPAREN] = ACTIONS(5127), + [anon_sym_COMMA] = ACTIONS(5127), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_where] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_SEMI] = ACTIONS(5127), + [anon_sym_get] = ACTIONS(5125), + [anon_sym_set] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5125), + [sym_label] = ACTIONS(5127), + [anon_sym_in] = ACTIONS(5125), + [anon_sym_DOT_DOT] = ACTIONS(5127), + [anon_sym_QMARK_COLON] = ACTIONS(5127), + [anon_sym_AMP_AMP] = ACTIONS(5127), + [anon_sym_PIPE_PIPE] = ACTIONS(5127), + [anon_sym_else] = ACTIONS(5125), + [anon_sym_COLON_COLON] = ACTIONS(5127), + [anon_sym_PLUS_EQ] = ACTIONS(5127), + [anon_sym_DASH_EQ] = ACTIONS(5127), + [anon_sym_STAR_EQ] = ACTIONS(5127), + [anon_sym_SLASH_EQ] = ACTIONS(5127), + [anon_sym_PERCENT_EQ] = ACTIONS(5127), + [anon_sym_BANG_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5127), + [anon_sym_EQ_EQ] = ACTIONS(5125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5127), + [anon_sym_LT_EQ] = ACTIONS(5127), + [anon_sym_GT_EQ] = ACTIONS(5127), + [anon_sym_BANGin] = ACTIONS(5127), + [anon_sym_is] = ACTIONS(5125), + [anon_sym_BANGis] = ACTIONS(5127), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_as_QMARK] = ACTIONS(5127), + [anon_sym_PLUS_PLUS] = ACTIONS(5127), + [anon_sym_DASH_DASH] = ACTIONS(5127), + [anon_sym_BANG_BANG] = ACTIONS(5127), + [anon_sym_suspend] = ACTIONS(5125), + [anon_sym_sealed] = ACTIONS(5125), + [anon_sym_annotation] = ACTIONS(5125), + [anon_sym_data] = ACTIONS(5125), + [anon_sym_inner] = ACTIONS(5125), + [anon_sym_value] = ACTIONS(5125), + [anon_sym_override] = ACTIONS(5125), + [anon_sym_lateinit] = ACTIONS(5125), + [anon_sym_public] = ACTIONS(5125), + [anon_sym_private] = ACTIONS(5125), + [anon_sym_internal] = ACTIONS(5125), + [anon_sym_protected] = ACTIONS(5125), + [anon_sym_tailrec] = ACTIONS(5125), + [anon_sym_operator] = ACTIONS(5125), + [anon_sym_infix] = ACTIONS(5125), + [anon_sym_inline] = ACTIONS(5125), + [anon_sym_external] = ACTIONS(5125), + [sym_property_modifier] = ACTIONS(5125), + [anon_sym_abstract] = ACTIONS(5125), + [anon_sym_final] = ACTIONS(5125), + [anon_sym_open] = ACTIONS(5125), + [anon_sym_vararg] = ACTIONS(5125), + [anon_sym_noinline] = ACTIONS(5125), + [anon_sym_crossinline] = ACTIONS(5125), + [anon_sym_expect] = ACTIONS(5125), + [anon_sym_actual] = ACTIONS(5125), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5127), + [sym__automatic_semicolon] = ACTIONS(5127), + [sym_safe_nav] = ACTIONS(5127), [sym_multiline_comment] = ACTIONS(3), }, [3905] = { - [sym_class_body] = STATE(4100), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [sym_label] = ACTIONS(4459), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_suspend] = ACTIONS(4457), - [anon_sym_sealed] = ACTIONS(4457), - [anon_sym_annotation] = ACTIONS(4457), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_override] = ACTIONS(4457), - [anon_sym_lateinit] = ACTIONS(4457), - [anon_sym_public] = ACTIONS(4457), - [anon_sym_private] = ACTIONS(4457), - [anon_sym_internal] = ACTIONS(4457), - [anon_sym_protected] = ACTIONS(4457), - [anon_sym_tailrec] = ACTIONS(4457), - [anon_sym_operator] = ACTIONS(4457), - [anon_sym_infix] = ACTIONS(4457), - [anon_sym_inline] = ACTIONS(4457), - [anon_sym_external] = ACTIONS(4457), - [sym_property_modifier] = ACTIONS(4457), - [anon_sym_abstract] = ACTIONS(4457), - [anon_sym_final] = ACTIONS(4457), - [anon_sym_open] = ACTIONS(4457), - [anon_sym_vararg] = ACTIONS(4457), - [anon_sym_noinline] = ACTIONS(4457), - [anon_sym_crossinline] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4459), - [sym__automatic_semicolon] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [3906] = { - [sym_enum_class_body] = STATE(4100), - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [sym_label] = ACTIONS(4459), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_suspend] = ACTIONS(4457), - [anon_sym_sealed] = ACTIONS(4457), - [anon_sym_annotation] = ACTIONS(4457), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_override] = ACTIONS(4457), - [anon_sym_lateinit] = ACTIONS(4457), - [anon_sym_public] = ACTIONS(4457), - [anon_sym_private] = ACTIONS(4457), - [anon_sym_internal] = ACTIONS(4457), - [anon_sym_protected] = ACTIONS(4457), - [anon_sym_tailrec] = ACTIONS(4457), - [anon_sym_operator] = ACTIONS(4457), - [anon_sym_infix] = ACTIONS(4457), - [anon_sym_inline] = ACTIONS(4457), - [anon_sym_external] = ACTIONS(4457), - [sym_property_modifier] = ACTIONS(4457), - [anon_sym_abstract] = ACTIONS(4457), - [anon_sym_final] = ACTIONS(4457), - [anon_sym_open] = ACTIONS(4457), - [anon_sym_vararg] = ACTIONS(4457), - [anon_sym_noinline] = ACTIONS(4457), - [anon_sym_crossinline] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4459), - [sym__automatic_semicolon] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), + [sym__alpha_identifier] = ACTIONS(5139), + [anon_sym_AT] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(5139), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_where] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5139), + [anon_sym_SEMI] = ACTIONS(5141), + [anon_sym_get] = ACTIONS(5139), + [anon_sym_set] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [sym_label] = ACTIONS(5141), + [anon_sym_in] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5141), + [anon_sym_QMARK_COLON] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_else] = ACTIONS(5139), + [anon_sym_COLON_COLON] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5141), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_BANGin] = ACTIONS(5141), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_BANGis] = ACTIONS(5141), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_as_QMARK] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_BANG_BANG] = ACTIONS(5141), + [anon_sym_suspend] = ACTIONS(5139), + [anon_sym_sealed] = ACTIONS(5139), + [anon_sym_annotation] = ACTIONS(5139), + [anon_sym_data] = ACTIONS(5139), + [anon_sym_inner] = ACTIONS(5139), + [anon_sym_value] = ACTIONS(5139), + [anon_sym_override] = ACTIONS(5139), + [anon_sym_lateinit] = ACTIONS(5139), + [anon_sym_public] = ACTIONS(5139), + [anon_sym_private] = ACTIONS(5139), + [anon_sym_internal] = ACTIONS(5139), + [anon_sym_protected] = ACTIONS(5139), + [anon_sym_tailrec] = ACTIONS(5139), + [anon_sym_operator] = ACTIONS(5139), + [anon_sym_infix] = ACTIONS(5139), + [anon_sym_inline] = ACTIONS(5139), + [anon_sym_external] = ACTIONS(5139), + [sym_property_modifier] = ACTIONS(5139), + [anon_sym_abstract] = ACTIONS(5139), + [anon_sym_final] = ACTIONS(5139), + [anon_sym_open] = ACTIONS(5139), + [anon_sym_vararg] = ACTIONS(5139), + [anon_sym_noinline] = ACTIONS(5139), + [anon_sym_crossinline] = ACTIONS(5139), + [anon_sym_expect] = ACTIONS(5139), + [anon_sym_actual] = ACTIONS(5139), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5141), + [sym__automatic_semicolon] = ACTIONS(5141), + [sym_safe_nav] = ACTIONS(5141), [sym_multiline_comment] = ACTIONS(3), }, [3907] = { - [sym_function_body] = STATE(3582), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_RPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3344), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(3344), + [anon_sym_sealed] = ACTIONS(3344), + [anon_sym_annotation] = ACTIONS(3344), + [anon_sym_data] = ACTIONS(3344), + [anon_sym_inner] = ACTIONS(3344), + [anon_sym_value] = ACTIONS(3344), + [anon_sym_override] = ACTIONS(3344), + [anon_sym_lateinit] = ACTIONS(3344), + [anon_sym_public] = ACTIONS(3344), + [anon_sym_private] = ACTIONS(3344), + [anon_sym_internal] = ACTIONS(3344), + [anon_sym_protected] = ACTIONS(3344), + [anon_sym_tailrec] = ACTIONS(3344), + [anon_sym_operator] = ACTIONS(3344), + [anon_sym_infix] = ACTIONS(3344), + [anon_sym_inline] = ACTIONS(3344), + [anon_sym_external] = ACTIONS(3344), + [sym_property_modifier] = ACTIONS(3344), + [anon_sym_abstract] = ACTIONS(3344), + [anon_sym_final] = ACTIONS(3344), + [anon_sym_open] = ACTIONS(3344), + [anon_sym_vararg] = ACTIONS(3344), + [anon_sym_noinline] = ACTIONS(3344), + [anon_sym_crossinline] = ACTIONS(3344), + [anon_sym_expect] = ACTIONS(3344), + [anon_sym_actual] = ACTIONS(3344), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, [3908] = { - [sym__alpha_identifier] = ACTIONS(4780), - [anon_sym_AT] = ACTIONS(4782), - [anon_sym_LBRACK] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(4780), - [anon_sym_EQ] = ACTIONS(4780), - [anon_sym_LBRACE] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(4782), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_by] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_where] = ACTIONS(4780), - [anon_sym_DOT] = ACTIONS(4780), - [anon_sym_SEMI] = ACTIONS(4782), - [anon_sym_get] = ACTIONS(4780), - [anon_sym_set] = ACTIONS(4780), - [anon_sym_STAR] = ACTIONS(4780), - [sym_label] = ACTIONS(4782), - [anon_sym_in] = ACTIONS(4780), - [anon_sym_DOT_DOT] = ACTIONS(4782), - [anon_sym_QMARK_COLON] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4782), - [anon_sym_PIPE_PIPE] = ACTIONS(4782), - [anon_sym_else] = ACTIONS(4780), - [anon_sym_COLON_COLON] = ACTIONS(4782), - [anon_sym_PLUS_EQ] = ACTIONS(4782), - [anon_sym_DASH_EQ] = ACTIONS(4782), - [anon_sym_STAR_EQ] = ACTIONS(4782), - [anon_sym_SLASH_EQ] = ACTIONS(4782), - [anon_sym_PERCENT_EQ] = ACTIONS(4782), - [anon_sym_BANG_EQ] = ACTIONS(4780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4782), - [anon_sym_EQ_EQ] = ACTIONS(4780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4782), - [anon_sym_LT_EQ] = ACTIONS(4782), - [anon_sym_GT_EQ] = ACTIONS(4782), - [anon_sym_BANGin] = ACTIONS(4782), - [anon_sym_is] = ACTIONS(4780), - [anon_sym_BANGis] = ACTIONS(4782), - [anon_sym_PLUS] = ACTIONS(4780), - [anon_sym_DASH] = ACTIONS(4780), - [anon_sym_SLASH] = ACTIONS(4780), - [anon_sym_PERCENT] = ACTIONS(4780), - [anon_sym_as_QMARK] = ACTIONS(4782), - [anon_sym_PLUS_PLUS] = ACTIONS(4782), - [anon_sym_DASH_DASH] = ACTIONS(4782), - [anon_sym_BANG_BANG] = ACTIONS(4782), - [anon_sym_suspend] = ACTIONS(4780), - [anon_sym_sealed] = ACTIONS(4780), - [anon_sym_annotation] = ACTIONS(4780), - [anon_sym_data] = ACTIONS(4780), - [anon_sym_inner] = ACTIONS(4780), - [anon_sym_value] = ACTIONS(4780), - [anon_sym_override] = ACTIONS(4780), - [anon_sym_lateinit] = ACTIONS(4780), - [anon_sym_public] = ACTIONS(4780), - [anon_sym_private] = ACTIONS(4780), - [anon_sym_internal] = ACTIONS(4780), - [anon_sym_protected] = ACTIONS(4780), - [anon_sym_tailrec] = ACTIONS(4780), - [anon_sym_operator] = ACTIONS(4780), - [anon_sym_infix] = ACTIONS(4780), - [anon_sym_inline] = ACTIONS(4780), - [anon_sym_external] = ACTIONS(4780), - [sym_property_modifier] = ACTIONS(4780), - [anon_sym_abstract] = ACTIONS(4780), - [anon_sym_final] = ACTIONS(4780), - [anon_sym_open] = ACTIONS(4780), - [anon_sym_vararg] = ACTIONS(4780), - [anon_sym_noinline] = ACTIONS(4780), - [anon_sym_crossinline] = ACTIONS(4780), - [anon_sym_expect] = ACTIONS(4780), - [anon_sym_actual] = ACTIONS(4780), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4782), - [sym__automatic_semicolon] = ACTIONS(4782), - [sym_safe_nav] = ACTIONS(4782), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, [3909] = { - [sym_function_body] = STATE(3520), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4453), - [sym_label] = ACTIONS(4455), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_while] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_PLUS_EQ] = ACTIONS(4455), - [anon_sym_DASH_EQ] = ACTIONS(4455), - [anon_sym_STAR_EQ] = ACTIONS(4455), - [anon_sym_SLASH_EQ] = ACTIONS(4455), - [anon_sym_PERCENT_EQ] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4453), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_suspend] = ACTIONS(4453), - [anon_sym_sealed] = ACTIONS(4453), - [anon_sym_annotation] = ACTIONS(4453), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4453), - [anon_sym_lateinit] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_internal] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_tailrec] = ACTIONS(4453), - [anon_sym_operator] = ACTIONS(4453), - [anon_sym_infix] = ACTIONS(4453), - [anon_sym_inline] = ACTIONS(4453), - [anon_sym_external] = ACTIONS(4453), - [sym_property_modifier] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_open] = ACTIONS(4453), - [anon_sym_vararg] = ACTIONS(4453), - [anon_sym_noinline] = ACTIONS(4453), - [anon_sym_crossinline] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4495), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), [sym_multiline_comment] = ACTIONS(3), }, [3910] = { - [sym_class_body] = STATE(4050), - [sym__alpha_identifier] = ACTIONS(4772), - [anon_sym_AT] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4772), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4772), - [anon_sym_GT] = ACTIONS(4772), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4772), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_get] = ACTIONS(4772), - [anon_sym_set] = ACTIONS(4772), - [anon_sym_STAR] = ACTIONS(4772), - [sym_label] = ACTIONS(4774), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_QMARK_COLON] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_else] = ACTIONS(4772), - [anon_sym_COLON_COLON] = ACTIONS(4774), - [anon_sym_PLUS_EQ] = ACTIONS(4774), - [anon_sym_DASH_EQ] = ACTIONS(4774), - [anon_sym_STAR_EQ] = ACTIONS(4774), - [anon_sym_SLASH_EQ] = ACTIONS(4774), - [anon_sym_PERCENT_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4772), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_BANGin] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4772), - [anon_sym_BANGis] = ACTIONS(4774), - [anon_sym_PLUS] = ACTIONS(4772), - [anon_sym_DASH] = ACTIONS(4772), - [anon_sym_SLASH] = ACTIONS(4772), - [anon_sym_PERCENT] = ACTIONS(4772), - [anon_sym_as_QMARK] = ACTIONS(4774), - [anon_sym_PLUS_PLUS] = ACTIONS(4774), - [anon_sym_DASH_DASH] = ACTIONS(4774), - [anon_sym_BANG_BANG] = ACTIONS(4774), - [anon_sym_suspend] = ACTIONS(4772), - [anon_sym_sealed] = ACTIONS(4772), - [anon_sym_annotation] = ACTIONS(4772), - [anon_sym_data] = ACTIONS(4772), - [anon_sym_inner] = ACTIONS(4772), - [anon_sym_value] = ACTIONS(4772), - [anon_sym_override] = ACTIONS(4772), - [anon_sym_lateinit] = ACTIONS(4772), - [anon_sym_public] = ACTIONS(4772), - [anon_sym_private] = ACTIONS(4772), - [anon_sym_internal] = ACTIONS(4772), - [anon_sym_protected] = ACTIONS(4772), - [anon_sym_tailrec] = ACTIONS(4772), - [anon_sym_operator] = ACTIONS(4772), - [anon_sym_infix] = ACTIONS(4772), - [anon_sym_inline] = ACTIONS(4772), - [anon_sym_external] = ACTIONS(4772), - [sym_property_modifier] = ACTIONS(4772), - [anon_sym_abstract] = ACTIONS(4772), - [anon_sym_final] = ACTIONS(4772), - [anon_sym_open] = ACTIONS(4772), - [anon_sym_vararg] = ACTIONS(4772), - [anon_sym_noinline] = ACTIONS(4772), - [anon_sym_crossinline] = ACTIONS(4772), - [anon_sym_expect] = ACTIONS(4772), - [anon_sym_actual] = ACTIONS(4772), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4774), - [sym__automatic_semicolon] = ACTIONS(4774), - [sym_safe_nav] = ACTIONS(4774), + [sym__alpha_identifier] = ACTIONS(5191), + [anon_sym_AT] = ACTIONS(5193), + [anon_sym_LBRACK] = ACTIONS(5193), + [anon_sym_as] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(5193), + [anon_sym_RBRACE] = ACTIONS(5193), + [anon_sym_LPAREN] = ACTIONS(5193), + [anon_sym_COMMA] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5191), + [anon_sym_GT] = ACTIONS(5191), + [anon_sym_where] = ACTIONS(5191), + [anon_sym_DOT] = ACTIONS(5191), + [anon_sym_SEMI] = ACTIONS(5193), + [anon_sym_get] = ACTIONS(5191), + [anon_sym_set] = ACTIONS(5191), + [anon_sym_STAR] = ACTIONS(5191), + [sym_label] = ACTIONS(5193), + [anon_sym_in] = ACTIONS(5191), + [anon_sym_DOT_DOT] = ACTIONS(5193), + [anon_sym_QMARK_COLON] = ACTIONS(5193), + [anon_sym_AMP_AMP] = ACTIONS(5193), + [anon_sym_PIPE_PIPE] = ACTIONS(5193), + [anon_sym_else] = ACTIONS(5191), + [anon_sym_COLON_COLON] = ACTIONS(5193), + [anon_sym_PLUS_EQ] = ACTIONS(5193), + [anon_sym_DASH_EQ] = ACTIONS(5193), + [anon_sym_STAR_EQ] = ACTIONS(5193), + [anon_sym_SLASH_EQ] = ACTIONS(5193), + [anon_sym_PERCENT_EQ] = ACTIONS(5193), + [anon_sym_BANG_EQ] = ACTIONS(5191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5193), + [anon_sym_EQ_EQ] = ACTIONS(5191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5193), + [anon_sym_LT_EQ] = ACTIONS(5193), + [anon_sym_GT_EQ] = ACTIONS(5193), + [anon_sym_BANGin] = ACTIONS(5193), + [anon_sym_is] = ACTIONS(5191), + [anon_sym_BANGis] = ACTIONS(5193), + [anon_sym_PLUS] = ACTIONS(5191), + [anon_sym_DASH] = ACTIONS(5191), + [anon_sym_SLASH] = ACTIONS(5191), + [anon_sym_PERCENT] = ACTIONS(5191), + [anon_sym_as_QMARK] = ACTIONS(5193), + [anon_sym_PLUS_PLUS] = ACTIONS(5193), + [anon_sym_DASH_DASH] = ACTIONS(5193), + [anon_sym_BANG_BANG] = ACTIONS(5193), + [anon_sym_suspend] = ACTIONS(5191), + [anon_sym_sealed] = ACTIONS(5191), + [anon_sym_annotation] = ACTIONS(5191), + [anon_sym_data] = ACTIONS(5191), + [anon_sym_inner] = ACTIONS(5191), + [anon_sym_value] = ACTIONS(5191), + [anon_sym_override] = ACTIONS(5191), + [anon_sym_lateinit] = ACTIONS(5191), + [anon_sym_public] = ACTIONS(5191), + [anon_sym_private] = ACTIONS(5191), + [anon_sym_internal] = ACTIONS(5191), + [anon_sym_protected] = ACTIONS(5191), + [anon_sym_tailrec] = ACTIONS(5191), + [anon_sym_operator] = ACTIONS(5191), + [anon_sym_infix] = ACTIONS(5191), + [anon_sym_inline] = ACTIONS(5191), + [anon_sym_external] = ACTIONS(5191), + [sym_property_modifier] = ACTIONS(5191), + [anon_sym_abstract] = ACTIONS(5191), + [anon_sym_final] = ACTIONS(5191), + [anon_sym_open] = ACTIONS(5191), + [anon_sym_vararg] = ACTIONS(5191), + [anon_sym_noinline] = ACTIONS(5191), + [anon_sym_crossinline] = ACTIONS(5191), + [anon_sym_expect] = ACTIONS(5191), + [anon_sym_actual] = ACTIONS(5191), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5193), + [sym__automatic_semicolon] = ACTIONS(5193), + [sym_safe_nav] = ACTIONS(5193), [sym_multiline_comment] = ACTIONS(3), }, [3911] = { - [sym_enum_class_body] = STATE(4050), - [sym__alpha_identifier] = ACTIONS(4772), - [anon_sym_AT] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4772), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4772), - [anon_sym_GT] = ACTIONS(4772), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4772), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_get] = ACTIONS(4772), - [anon_sym_set] = ACTIONS(4772), - [anon_sym_STAR] = ACTIONS(4772), - [sym_label] = ACTIONS(4774), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_QMARK_COLON] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_else] = ACTIONS(4772), - [anon_sym_COLON_COLON] = ACTIONS(4774), - [anon_sym_PLUS_EQ] = ACTIONS(4774), - [anon_sym_DASH_EQ] = ACTIONS(4774), - [anon_sym_STAR_EQ] = ACTIONS(4774), - [anon_sym_SLASH_EQ] = ACTIONS(4774), - [anon_sym_PERCENT_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4772), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_BANGin] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4772), - [anon_sym_BANGis] = ACTIONS(4774), - [anon_sym_PLUS] = ACTIONS(4772), - [anon_sym_DASH] = ACTIONS(4772), - [anon_sym_SLASH] = ACTIONS(4772), - [anon_sym_PERCENT] = ACTIONS(4772), - [anon_sym_as_QMARK] = ACTIONS(4774), - [anon_sym_PLUS_PLUS] = ACTIONS(4774), - [anon_sym_DASH_DASH] = ACTIONS(4774), - [anon_sym_BANG_BANG] = ACTIONS(4774), - [anon_sym_suspend] = ACTIONS(4772), - [anon_sym_sealed] = ACTIONS(4772), - [anon_sym_annotation] = ACTIONS(4772), - [anon_sym_data] = ACTIONS(4772), - [anon_sym_inner] = ACTIONS(4772), - [anon_sym_value] = ACTIONS(4772), - [anon_sym_override] = ACTIONS(4772), - [anon_sym_lateinit] = ACTIONS(4772), - [anon_sym_public] = ACTIONS(4772), - [anon_sym_private] = ACTIONS(4772), - [anon_sym_internal] = ACTIONS(4772), - [anon_sym_protected] = ACTIONS(4772), - [anon_sym_tailrec] = ACTIONS(4772), - [anon_sym_operator] = ACTIONS(4772), - [anon_sym_infix] = ACTIONS(4772), - [anon_sym_inline] = ACTIONS(4772), - [anon_sym_external] = ACTIONS(4772), - [sym_property_modifier] = ACTIONS(4772), - [anon_sym_abstract] = ACTIONS(4772), - [anon_sym_final] = ACTIONS(4772), - [anon_sym_open] = ACTIONS(4772), - [anon_sym_vararg] = ACTIONS(4772), - [anon_sym_noinline] = ACTIONS(4772), - [anon_sym_crossinline] = ACTIONS(4772), - [anon_sym_expect] = ACTIONS(4772), - [anon_sym_actual] = ACTIONS(4772), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4774), - [sym__automatic_semicolon] = ACTIONS(4774), - [sym_safe_nav] = ACTIONS(4774), + [sym_function_body] = STATE(3397), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [anon_sym_DASH_GT] = ACTIONS(4449), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, [3912] = { - [sym_type_constraints] = STATE(3045), - [sym_enum_class_body] = STATE(3174), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7240), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [sym__alpha_identifier] = ACTIONS(5131), + [anon_sym_AT] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_as] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_where] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_SEMI] = ACTIONS(5133), + [anon_sym_get] = ACTIONS(5131), + [anon_sym_set] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [sym_label] = ACTIONS(5133), + [anon_sym_in] = ACTIONS(5131), + [anon_sym_DOT_DOT] = ACTIONS(5133), + [anon_sym_QMARK_COLON] = ACTIONS(5133), + [anon_sym_AMP_AMP] = ACTIONS(5133), + [anon_sym_PIPE_PIPE] = ACTIONS(5133), + [anon_sym_else] = ACTIONS(5131), + [anon_sym_COLON_COLON] = ACTIONS(5133), + [anon_sym_PLUS_EQ] = ACTIONS(5133), + [anon_sym_DASH_EQ] = ACTIONS(5133), + [anon_sym_STAR_EQ] = ACTIONS(5133), + [anon_sym_SLASH_EQ] = ACTIONS(5133), + [anon_sym_PERCENT_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5133), + [anon_sym_LT_EQ] = ACTIONS(5133), + [anon_sym_GT_EQ] = ACTIONS(5133), + [anon_sym_BANGin] = ACTIONS(5133), + [anon_sym_is] = ACTIONS(5131), + [anon_sym_BANGis] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5131), + [anon_sym_as_QMARK] = ACTIONS(5133), + [anon_sym_PLUS_PLUS] = ACTIONS(5133), + [anon_sym_DASH_DASH] = ACTIONS(5133), + [anon_sym_BANG_BANG] = ACTIONS(5133), + [anon_sym_suspend] = ACTIONS(5131), + [anon_sym_sealed] = ACTIONS(5131), + [anon_sym_annotation] = ACTIONS(5131), + [anon_sym_data] = ACTIONS(5131), + [anon_sym_inner] = ACTIONS(5131), + [anon_sym_value] = ACTIONS(5131), + [anon_sym_override] = ACTIONS(5131), + [anon_sym_lateinit] = ACTIONS(5131), + [anon_sym_public] = ACTIONS(5131), + [anon_sym_private] = ACTIONS(5131), + [anon_sym_internal] = ACTIONS(5131), + [anon_sym_protected] = ACTIONS(5131), + [anon_sym_tailrec] = ACTIONS(5131), + [anon_sym_operator] = ACTIONS(5131), + [anon_sym_infix] = ACTIONS(5131), + [anon_sym_inline] = ACTIONS(5131), + [anon_sym_external] = ACTIONS(5131), + [sym_property_modifier] = ACTIONS(5131), + [anon_sym_abstract] = ACTIONS(5131), + [anon_sym_final] = ACTIONS(5131), + [anon_sym_open] = ACTIONS(5131), + [anon_sym_vararg] = ACTIONS(5131), + [anon_sym_noinline] = ACTIONS(5131), + [anon_sym_crossinline] = ACTIONS(5131), + [anon_sym_expect] = ACTIONS(5131), + [anon_sym_actual] = ACTIONS(5131), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym__backtick_identifier] = ACTIONS(5133), + [sym__automatic_semicolon] = ACTIONS(5133), + [sym_safe_nav] = ACTIONS(5133), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), }, [3913] = { - [sym_enum_class_body] = STATE(4044), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - }, - [3914] = { - [sym_class_body] = STATE(3264), - [sym_type_constraints] = STATE(3064), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [3915] = { - [sym_class_body] = STATE(3297), - [sym_type_constraints] = STATE(3046), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(7242), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_fun] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4275), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_this] = ACTIONS(4275), - [anon_sym_super] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4277), - [sym_label] = ACTIONS(4275), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4275), - [anon_sym_if] = ACTIONS(4275), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_when] = ACTIONS(4275), - [anon_sym_try] = ACTIONS(4275), - [anon_sym_throw] = ACTIONS(4275), - [anon_sym_return] = ACTIONS(4275), - [anon_sym_continue] = ACTIONS(4275), - [anon_sym_break] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4277), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4277), - [anon_sym_continue_AT] = ACTIONS(4277), - [anon_sym_break_AT] = ACTIONS(4277), - [anon_sym_this_AT] = ACTIONS(4277), - [anon_sym_super_AT] = ACTIONS(4277), - [sym_real_literal] = ACTIONS(4277), - [sym_integer_literal] = ACTIONS(4275), - [sym_hex_literal] = ACTIONS(4277), - [sym_bin_literal] = ACTIONS(4277), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [anon_sym_SQUOTE] = ACTIONS(4277), - [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), - }, - [3916] = { - [sym_function_body] = STATE(3536), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_while] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - }, - [3917] = { - [sym_function_body] = STATE(3554), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_RPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - }, - [3918] = { - [sym_class_body] = STATE(3304), - [sym_type_constraints] = STATE(3053), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [3919] = { - [sym_type_constraints] = STATE(3078), - [sym_enum_class_body] = STATE(3304), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_fun] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_this] = ACTIONS(3292), - [anon_sym_super] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_when] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3296), - [anon_sym_continue_AT] = ACTIONS(3296), - [anon_sym_break_AT] = ACTIONS(3296), - [anon_sym_this_AT] = ACTIONS(3296), - [anon_sym_super_AT] = ACTIONS(3296), - [sym_real_literal] = ACTIONS(3296), - [sym_integer_literal] = ACTIONS(3292), - [sym_hex_literal] = ACTIONS(3296), - [sym_bin_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3296), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3296), - }, - [3920] = { - [sym_class_body] = STATE(4020), - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_LT] = ACTIONS(4595), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_where] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [sym_label] = ACTIONS(4597), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_suspend] = ACTIONS(4595), - [anon_sym_sealed] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4595), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_override] = ACTIONS(4595), - [anon_sym_lateinit] = ACTIONS(4595), - [anon_sym_public] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4595), - [anon_sym_internal] = ACTIONS(4595), - [anon_sym_protected] = ACTIONS(4595), - [anon_sym_tailrec] = ACTIONS(4595), - [anon_sym_operator] = ACTIONS(4595), - [anon_sym_infix] = ACTIONS(4595), - [anon_sym_inline] = ACTIONS(4595), - [anon_sym_external] = ACTIONS(4595), - [sym_property_modifier] = ACTIONS(4595), - [anon_sym_abstract] = ACTIONS(4595), - [anon_sym_final] = ACTIONS(4595), - [anon_sym_open] = ACTIONS(4595), - [anon_sym_vararg] = ACTIONS(4595), - [anon_sym_noinline] = ACTIONS(4595), - [anon_sym_crossinline] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4597), - [sym__automatic_semicolon] = ACTIONS(4597), - [sym_safe_nav] = ACTIONS(4597), - [sym_multiline_comment] = ACTIONS(3), - }, - [3921] = { - [sym_function_body] = STATE(3584), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_RPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_while] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - }, - [3922] = { - [sym_enum_class_body] = STATE(4020), - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_LT] = ACTIONS(4595), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_where] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [sym_label] = ACTIONS(4597), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_suspend] = ACTIONS(4595), - [anon_sym_sealed] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4595), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_override] = ACTIONS(4595), - [anon_sym_lateinit] = ACTIONS(4595), - [anon_sym_public] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4595), - [anon_sym_internal] = ACTIONS(4595), - [anon_sym_protected] = ACTIONS(4595), - [anon_sym_tailrec] = ACTIONS(4595), - [anon_sym_operator] = ACTIONS(4595), - [anon_sym_infix] = ACTIONS(4595), - [anon_sym_inline] = ACTIONS(4595), - [anon_sym_external] = ACTIONS(4595), - [sym_property_modifier] = ACTIONS(4595), - [anon_sym_abstract] = ACTIONS(4595), - [anon_sym_final] = ACTIONS(4595), - [anon_sym_open] = ACTIONS(4595), - [anon_sym_vararg] = ACTIONS(4595), - [anon_sym_noinline] = ACTIONS(4595), - [anon_sym_crossinline] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4597), - [sym__automatic_semicolon] = ACTIONS(4597), - [sym_safe_nav] = ACTIONS(4597), - [sym_multiline_comment] = ACTIONS(3), - }, - [3923] = { - [sym__alpha_identifier] = ACTIONS(4641), - [anon_sym_AT] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_as] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4643), - [anon_sym_RBRACE] = ACTIONS(4643), - [anon_sym_LPAREN] = ACTIONS(4643), - [anon_sym_COMMA] = ACTIONS(4643), - [anon_sym_LT] = ACTIONS(4641), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_where] = ACTIONS(4641), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4643), - [anon_sym_get] = ACTIONS(4641), - [anon_sym_set] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [sym_label] = ACTIONS(4643), - [anon_sym_in] = ACTIONS(4641), - [anon_sym_DOT_DOT] = ACTIONS(4643), - [anon_sym_QMARK_COLON] = ACTIONS(4643), - [anon_sym_AMP_AMP] = ACTIONS(4643), - [anon_sym_PIPE_PIPE] = ACTIONS(4643), - [anon_sym_else] = ACTIONS(4641), - [anon_sym_COLON_COLON] = ACTIONS(4643), - [anon_sym_PLUS_EQ] = ACTIONS(4643), - [anon_sym_DASH_EQ] = ACTIONS(4643), - [anon_sym_STAR_EQ] = ACTIONS(4643), - [anon_sym_SLASH_EQ] = ACTIONS(4643), - [anon_sym_PERCENT_EQ] = ACTIONS(4643), - [anon_sym_BANG_EQ] = ACTIONS(4641), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4643), - [anon_sym_EQ_EQ] = ACTIONS(4641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4643), - [anon_sym_LT_EQ] = ACTIONS(4643), - [anon_sym_GT_EQ] = ACTIONS(4643), - [anon_sym_BANGin] = ACTIONS(4643), - [anon_sym_is] = ACTIONS(4641), - [anon_sym_BANGis] = ACTIONS(4643), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4641), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_as_QMARK] = ACTIONS(4643), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_suspend] = ACTIONS(4641), - [anon_sym_sealed] = ACTIONS(4641), - [anon_sym_annotation] = ACTIONS(4641), - [anon_sym_data] = ACTIONS(4641), - [anon_sym_inner] = ACTIONS(4641), - [anon_sym_value] = ACTIONS(4641), - [anon_sym_override] = ACTIONS(4641), - [anon_sym_lateinit] = ACTIONS(4641), - [anon_sym_public] = ACTIONS(4641), - [anon_sym_private] = ACTIONS(4641), - [anon_sym_internal] = ACTIONS(4641), - [anon_sym_protected] = ACTIONS(4641), - [anon_sym_tailrec] = ACTIONS(4641), - [anon_sym_operator] = ACTIONS(4641), - [anon_sym_infix] = ACTIONS(4641), - [anon_sym_inline] = ACTIONS(4641), - [anon_sym_external] = ACTIONS(4641), - [sym_property_modifier] = ACTIONS(4641), - [anon_sym_abstract] = ACTIONS(4641), - [anon_sym_final] = ACTIONS(4641), - [anon_sym_open] = ACTIONS(4641), - [anon_sym_vararg] = ACTIONS(4641), - [anon_sym_noinline] = ACTIONS(4641), - [anon_sym_crossinline] = ACTIONS(4641), - [anon_sym_expect] = ACTIONS(4641), - [anon_sym_actual] = ACTIONS(4641), - [sym_line_comment] = ACTIONS(3), - [anon_sym_AT2] = ACTIONS(7244), - [sym__backtick_identifier] = ACTIONS(4643), - [sym__automatic_semicolon] = ACTIONS(4643), - [sym_safe_nav] = ACTIONS(4643), - [sym_multiline_comment] = ACTIONS(3), - }, - [3924] = { - [sym_value_arguments] = STATE(4146), - [sym__alpha_identifier] = ACTIONS(7246), - [anon_sym_AT] = ACTIONS(7248), - [anon_sym_LBRACK] = ACTIONS(7248), - [anon_sym_typealias] = ACTIONS(7246), - [anon_sym_class] = ACTIONS(7246), - [anon_sym_fun] = ACTIONS(7246), - [anon_sym_interface] = ACTIONS(7246), - [anon_sym_enum] = ACTIONS(7246), - [anon_sym_LBRACE] = ACTIONS(7248), - [anon_sym_LPAREN] = ACTIONS(7250), - [anon_sym_val] = ACTIONS(7246), - [anon_sym_var] = ACTIONS(7246), - [anon_sym_object] = ACTIONS(7246), - [anon_sym_get] = ACTIONS(7246), - [anon_sym_set] = ACTIONS(7246), - [anon_sym_this] = ACTIONS(7246), - [anon_sym_super] = ACTIONS(7246), - [anon_sym_STAR] = ACTIONS(7248), - [sym_label] = ACTIONS(7246), - [anon_sym_for] = ACTIONS(7246), - [anon_sym_while] = ACTIONS(7246), - [anon_sym_do] = ACTIONS(7246), - [anon_sym_null] = ACTIONS(7246), - [anon_sym_if] = ACTIONS(7246), - [anon_sym_when] = ACTIONS(7246), - [anon_sym_try] = ACTIONS(7246), - [anon_sym_throw] = ACTIONS(7246), - [anon_sym_return] = ACTIONS(7246), - [anon_sym_continue] = ACTIONS(7246), - [anon_sym_break] = ACTIONS(7246), - [anon_sym_COLON_COLON] = ACTIONS(7248), - [anon_sym_PLUS] = ACTIONS(7246), - [anon_sym_DASH] = ACTIONS(7246), - [anon_sym_PLUS_PLUS] = ACTIONS(7248), - [anon_sym_DASH_DASH] = ACTIONS(7248), - [anon_sym_BANG] = ACTIONS(7248), - [anon_sym_suspend] = ACTIONS(7246), - [anon_sym_sealed] = ACTIONS(7246), - [anon_sym_annotation] = ACTIONS(7246), - [anon_sym_data] = ACTIONS(7246), - [anon_sym_inner] = ACTIONS(7246), - [anon_sym_value] = ACTIONS(7246), - [anon_sym_override] = ACTIONS(7246), - [anon_sym_lateinit] = ACTIONS(7246), - [anon_sym_public] = ACTIONS(7246), - [anon_sym_private] = ACTIONS(7246), - [anon_sym_internal] = ACTIONS(7246), - [anon_sym_protected] = ACTIONS(7246), - [anon_sym_tailrec] = ACTIONS(7246), - [anon_sym_operator] = ACTIONS(7246), - [anon_sym_infix] = ACTIONS(7246), - [anon_sym_inline] = ACTIONS(7246), - [anon_sym_external] = ACTIONS(7246), - [sym_property_modifier] = ACTIONS(7246), - [anon_sym_abstract] = ACTIONS(7246), - [anon_sym_final] = ACTIONS(7246), - [anon_sym_open] = ACTIONS(7246), - [anon_sym_vararg] = ACTIONS(7246), - [anon_sym_noinline] = ACTIONS(7246), - [anon_sym_crossinline] = ACTIONS(7246), - [anon_sym_expect] = ACTIONS(7246), - [anon_sym_actual] = ACTIONS(7246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7248), - [anon_sym_continue_AT] = ACTIONS(7248), - [anon_sym_break_AT] = ACTIONS(7248), - [anon_sym_this_AT] = ACTIONS(7248), - [anon_sym_super_AT] = ACTIONS(7248), - [sym_real_literal] = ACTIONS(7248), - [sym_integer_literal] = ACTIONS(7246), - [sym_hex_literal] = ACTIONS(7248), - [sym_bin_literal] = ACTIONS(7248), - [anon_sym_true] = ACTIONS(7246), - [anon_sym_false] = ACTIONS(7246), - [anon_sym_SQUOTE] = ACTIONS(7248), - [sym__backtick_identifier] = ACTIONS(7248), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7248), - }, - [3925] = { - [sym__alpha_identifier] = ACTIONS(4647), - [anon_sym_AT] = ACTIONS(4649), - [anon_sym_LBRACK] = ACTIONS(4649), - [anon_sym_as] = ACTIONS(4647), - [anon_sym_EQ] = ACTIONS(4647), - [anon_sym_LBRACE] = ACTIONS(4649), - [anon_sym_RBRACE] = ACTIONS(4649), - [anon_sym_LPAREN] = ACTIONS(4649), - [anon_sym_COMMA] = ACTIONS(4649), - [anon_sym_by] = ACTIONS(4647), - [anon_sym_LT] = ACTIONS(4647), - [anon_sym_GT] = ACTIONS(4647), - [anon_sym_where] = ACTIONS(4647), - [anon_sym_DOT] = ACTIONS(4647), - [anon_sym_SEMI] = ACTIONS(4649), - [anon_sym_get] = ACTIONS(4647), - [anon_sym_set] = ACTIONS(4647), - [anon_sym_STAR] = ACTIONS(4647), - [sym_label] = ACTIONS(4649), - [anon_sym_in] = ACTIONS(4647), - [anon_sym_DOT_DOT] = ACTIONS(4649), - [anon_sym_QMARK_COLON] = ACTIONS(4649), - [anon_sym_AMP_AMP] = ACTIONS(4649), - [anon_sym_PIPE_PIPE] = ACTIONS(4649), - [anon_sym_else] = ACTIONS(4647), - [anon_sym_COLON_COLON] = ACTIONS(4649), - [anon_sym_PLUS_EQ] = ACTIONS(4649), - [anon_sym_DASH_EQ] = ACTIONS(4649), - [anon_sym_STAR_EQ] = ACTIONS(4649), - [anon_sym_SLASH_EQ] = ACTIONS(4649), - [anon_sym_PERCENT_EQ] = ACTIONS(4649), - [anon_sym_BANG_EQ] = ACTIONS(4647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4649), - [anon_sym_EQ_EQ] = ACTIONS(4647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4649), - [anon_sym_LT_EQ] = ACTIONS(4649), - [anon_sym_GT_EQ] = ACTIONS(4649), - [anon_sym_BANGin] = ACTIONS(4649), - [anon_sym_is] = ACTIONS(4647), - [anon_sym_BANGis] = ACTIONS(4649), - [anon_sym_PLUS] = ACTIONS(4647), - [anon_sym_DASH] = ACTIONS(4647), - [anon_sym_SLASH] = ACTIONS(4647), - [anon_sym_PERCENT] = ACTIONS(4647), - [anon_sym_as_QMARK] = ACTIONS(4649), - [anon_sym_PLUS_PLUS] = ACTIONS(4649), - [anon_sym_DASH_DASH] = ACTIONS(4649), - [anon_sym_BANG_BANG] = ACTIONS(4649), - [anon_sym_suspend] = ACTIONS(4647), - [anon_sym_sealed] = ACTIONS(4647), - [anon_sym_annotation] = ACTIONS(4647), - [anon_sym_data] = ACTIONS(4647), - [anon_sym_inner] = ACTIONS(4647), - [anon_sym_value] = ACTIONS(4647), - [anon_sym_override] = ACTIONS(4647), - [anon_sym_lateinit] = ACTIONS(4647), - [anon_sym_public] = ACTIONS(4647), - [anon_sym_private] = ACTIONS(4647), - [anon_sym_internal] = ACTIONS(4647), - [anon_sym_protected] = ACTIONS(4647), - [anon_sym_tailrec] = ACTIONS(4647), - [anon_sym_operator] = ACTIONS(4647), - [anon_sym_infix] = ACTIONS(4647), - [anon_sym_inline] = ACTIONS(4647), - [anon_sym_external] = ACTIONS(4647), - [sym_property_modifier] = ACTIONS(4647), - [anon_sym_abstract] = ACTIONS(4647), - [anon_sym_final] = ACTIONS(4647), - [anon_sym_open] = ACTIONS(4647), - [anon_sym_vararg] = ACTIONS(4647), - [anon_sym_noinline] = ACTIONS(4647), - [anon_sym_crossinline] = ACTIONS(4647), - [anon_sym_expect] = ACTIONS(4647), - [anon_sym_actual] = ACTIONS(4647), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4649), - [sym__automatic_semicolon] = ACTIONS(4649), - [sym_safe_nav] = ACTIONS(4649), - [sym_multiline_comment] = ACTIONS(3), - }, - [3926] = { - [sym_class_body] = STATE(3345), - [sym_type_constraints] = STATE(3121), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7253), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), - }, - [3927] = { - [sym__alpha_identifier] = ACTIONS(4800), - [anon_sym_AT] = ACTIONS(4802), - [anon_sym_LBRACK] = ACTIONS(4802), - [anon_sym_as] = ACTIONS(4800), - [anon_sym_EQ] = ACTIONS(4800), - [anon_sym_LBRACE] = ACTIONS(4802), - [anon_sym_RBRACE] = ACTIONS(4802), - [anon_sym_LPAREN] = ACTIONS(4802), - [anon_sym_COMMA] = ACTIONS(4802), - [anon_sym_by] = ACTIONS(4800), - [anon_sym_LT] = ACTIONS(4800), - [anon_sym_GT] = ACTIONS(4800), - [anon_sym_where] = ACTIONS(4800), - [anon_sym_DOT] = ACTIONS(4800), - [anon_sym_SEMI] = ACTIONS(4802), - [anon_sym_get] = ACTIONS(4800), - [anon_sym_set] = ACTIONS(4800), - [anon_sym_STAR] = ACTIONS(4800), - [sym_label] = ACTIONS(4802), - [anon_sym_in] = ACTIONS(4800), - [anon_sym_DOT_DOT] = ACTIONS(4802), - [anon_sym_QMARK_COLON] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_else] = ACTIONS(4800), - [anon_sym_COLON_COLON] = ACTIONS(4802), - [anon_sym_PLUS_EQ] = ACTIONS(4802), - [anon_sym_DASH_EQ] = ACTIONS(4802), - [anon_sym_STAR_EQ] = ACTIONS(4802), - [anon_sym_SLASH_EQ] = ACTIONS(4802), - [anon_sym_PERCENT_EQ] = ACTIONS(4802), - [anon_sym_BANG_EQ] = ACTIONS(4800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4802), - [anon_sym_EQ_EQ] = ACTIONS(4800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4802), - [anon_sym_LT_EQ] = ACTIONS(4802), - [anon_sym_GT_EQ] = ACTIONS(4802), - [anon_sym_BANGin] = ACTIONS(4802), - [anon_sym_is] = ACTIONS(4800), - [anon_sym_BANGis] = ACTIONS(4802), - [anon_sym_PLUS] = ACTIONS(4800), - [anon_sym_DASH] = ACTIONS(4800), - [anon_sym_SLASH] = ACTIONS(4800), - [anon_sym_PERCENT] = ACTIONS(4800), - [anon_sym_as_QMARK] = ACTIONS(4802), - [anon_sym_PLUS_PLUS] = ACTIONS(4802), - [anon_sym_DASH_DASH] = ACTIONS(4802), - [anon_sym_BANG_BANG] = ACTIONS(4802), - [anon_sym_suspend] = ACTIONS(4800), - [anon_sym_sealed] = ACTIONS(4800), - [anon_sym_annotation] = ACTIONS(4800), - [anon_sym_data] = ACTIONS(4800), - [anon_sym_inner] = ACTIONS(4800), - [anon_sym_value] = ACTIONS(4800), - [anon_sym_override] = ACTIONS(4800), - [anon_sym_lateinit] = ACTIONS(4800), - [anon_sym_public] = ACTIONS(4800), - [anon_sym_private] = ACTIONS(4800), - [anon_sym_internal] = ACTIONS(4800), - [anon_sym_protected] = ACTIONS(4800), - [anon_sym_tailrec] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(4800), - [anon_sym_infix] = ACTIONS(4800), - [anon_sym_inline] = ACTIONS(4800), - [anon_sym_external] = ACTIONS(4800), - [sym_property_modifier] = ACTIONS(4800), - [anon_sym_abstract] = ACTIONS(4800), - [anon_sym_final] = ACTIONS(4800), - [anon_sym_open] = ACTIONS(4800), - [anon_sym_vararg] = ACTIONS(4800), - [anon_sym_noinline] = ACTIONS(4800), - [anon_sym_crossinline] = ACTIONS(4800), - [anon_sym_expect] = ACTIONS(4800), - [anon_sym_actual] = ACTIONS(4800), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4802), - [sym__automatic_semicolon] = ACTIONS(4802), - [sym_safe_nav] = ACTIONS(4802), - [sym_multiline_comment] = ACTIONS(3), - }, - [3928] = { - [sym_function_body] = STATE(3608), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - }, - [3929] = { - [sym_type_constraints] = STATE(3138), - [sym_enum_class_body] = STATE(3345), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7255), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), - }, - [3930] = { - [sym_function_body] = STATE(3667), - [sym__block] = STATE(3620), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6822), - [anon_sym_LBRACE] = ACTIONS(6632), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_RPAREN] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), [anon_sym_DOT] = ACTIONS(4183), @@ -441697,7 +437788,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4183), [sym_label] = ACTIONS(4185), [anon_sym_in] = ACTIONS(4183), - [anon_sym_while] = ACTIONS(4183), [anon_sym_DOT_DOT] = ACTIONS(4185), [anon_sym_QMARK_COLON] = ACTIONS(4185), [anon_sym_AMP_AMP] = ACTIONS(4185), @@ -441754,3773 +437844,4011 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, - [3931] = { - [sym_class_body] = STATE(3204), - [sym_type_constraints] = STATE(3107), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [3914] = { + [sym__alpha_identifier] = ACTIONS(5179), + [anon_sym_AT] = ACTIONS(5181), + [anon_sym_LBRACK] = ACTIONS(5181), + [anon_sym_as] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5181), + [anon_sym_RBRACE] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5181), + [anon_sym_COMMA] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5179), + [anon_sym_GT] = ACTIONS(5179), + [anon_sym_where] = ACTIONS(5179), + [anon_sym_DOT] = ACTIONS(5179), + [anon_sym_SEMI] = ACTIONS(5181), + [anon_sym_get] = ACTIONS(5179), + [anon_sym_set] = ACTIONS(5179), + [anon_sym_STAR] = ACTIONS(5179), + [sym_label] = ACTIONS(5181), + [anon_sym_in] = ACTIONS(5179), + [anon_sym_DOT_DOT] = ACTIONS(5181), + [anon_sym_QMARK_COLON] = ACTIONS(5181), + [anon_sym_AMP_AMP] = ACTIONS(5181), + [anon_sym_PIPE_PIPE] = ACTIONS(5181), + [anon_sym_else] = ACTIONS(5179), + [anon_sym_COLON_COLON] = ACTIONS(5181), + [anon_sym_PLUS_EQ] = ACTIONS(5181), + [anon_sym_DASH_EQ] = ACTIONS(5181), + [anon_sym_STAR_EQ] = ACTIONS(5181), + [anon_sym_SLASH_EQ] = ACTIONS(5181), + [anon_sym_PERCENT_EQ] = ACTIONS(5181), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5181), + [anon_sym_GT_EQ] = ACTIONS(5181), + [anon_sym_BANGin] = ACTIONS(5181), + [anon_sym_is] = ACTIONS(5179), + [anon_sym_BANGis] = ACTIONS(5181), + [anon_sym_PLUS] = ACTIONS(5179), + [anon_sym_DASH] = ACTIONS(5179), + [anon_sym_SLASH] = ACTIONS(5179), + [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_as_QMARK] = ACTIONS(5181), + [anon_sym_PLUS_PLUS] = ACTIONS(5181), + [anon_sym_DASH_DASH] = ACTIONS(5181), + [anon_sym_BANG_BANG] = ACTIONS(5181), + [anon_sym_suspend] = ACTIONS(5179), + [anon_sym_sealed] = ACTIONS(5179), + [anon_sym_annotation] = ACTIONS(5179), + [anon_sym_data] = ACTIONS(5179), + [anon_sym_inner] = ACTIONS(5179), + [anon_sym_value] = ACTIONS(5179), + [anon_sym_override] = ACTIONS(5179), + [anon_sym_lateinit] = ACTIONS(5179), + [anon_sym_public] = ACTIONS(5179), + [anon_sym_private] = ACTIONS(5179), + [anon_sym_internal] = ACTIONS(5179), + [anon_sym_protected] = ACTIONS(5179), + [anon_sym_tailrec] = ACTIONS(5179), + [anon_sym_operator] = ACTIONS(5179), + [anon_sym_infix] = ACTIONS(5179), + [anon_sym_inline] = ACTIONS(5179), + [anon_sym_external] = ACTIONS(5179), + [sym_property_modifier] = ACTIONS(5179), + [anon_sym_abstract] = ACTIONS(5179), + [anon_sym_final] = ACTIONS(5179), + [anon_sym_open] = ACTIONS(5179), + [anon_sym_vararg] = ACTIONS(5179), + [anon_sym_noinline] = ACTIONS(5179), + [anon_sym_crossinline] = ACTIONS(5179), + [anon_sym_expect] = ACTIONS(5179), + [anon_sym_actual] = ACTIONS(5179), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5181), + [sym__automatic_semicolon] = ACTIONS(5181), + [sym_safe_nav] = ACTIONS(5181), + [sym_multiline_comment] = ACTIONS(3), }, - [3932] = { - [sym_type_constraints] = STATE(3134), - [sym_enum_class_body] = STATE(3204), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_super] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_when] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3288), - [anon_sym_continue_AT] = ACTIONS(3288), - [anon_sym_break_AT] = ACTIONS(3288), - [anon_sym_this_AT] = ACTIONS(3288), - [anon_sym_super_AT] = ACTIONS(3288), - [sym_real_literal] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(3284), - [sym_hex_literal] = ACTIONS(3288), - [sym_bin_literal] = ACTIONS(3288), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3288), + [3915] = { + [sym__alpha_identifier] = ACTIONS(5063), + [anon_sym_AT] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [anon_sym_as] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5065), + [anon_sym_RBRACE] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5065), + [anon_sym_COMMA] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5063), + [anon_sym_GT] = ACTIONS(5063), + [anon_sym_where] = ACTIONS(5063), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5063), + [anon_sym_STAR] = ACTIONS(5063), + [sym_label] = ACTIONS(5065), + [anon_sym_in] = ACTIONS(5063), + [anon_sym_DOT_DOT] = ACTIONS(5065), + [anon_sym_QMARK_COLON] = ACTIONS(5065), + [anon_sym_AMP_AMP] = ACTIONS(5065), + [anon_sym_PIPE_PIPE] = ACTIONS(5065), + [anon_sym_else] = ACTIONS(5063), + [anon_sym_COLON_COLON] = ACTIONS(5065), + [anon_sym_PLUS_EQ] = ACTIONS(5065), + [anon_sym_DASH_EQ] = ACTIONS(5065), + [anon_sym_STAR_EQ] = ACTIONS(5065), + [anon_sym_SLASH_EQ] = ACTIONS(5065), + [anon_sym_PERCENT_EQ] = ACTIONS(5065), + [anon_sym_BANG_EQ] = ACTIONS(5063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5065), + [anon_sym_EQ_EQ] = ACTIONS(5063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5065), + [anon_sym_LT_EQ] = ACTIONS(5065), + [anon_sym_GT_EQ] = ACTIONS(5065), + [anon_sym_BANGin] = ACTIONS(5065), + [anon_sym_is] = ACTIONS(5063), + [anon_sym_BANGis] = ACTIONS(5065), + [anon_sym_PLUS] = ACTIONS(5063), + [anon_sym_DASH] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5063), + [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_as_QMARK] = ACTIONS(5065), + [anon_sym_PLUS_PLUS] = ACTIONS(5065), + [anon_sym_DASH_DASH] = ACTIONS(5065), + [anon_sym_BANG_BANG] = ACTIONS(5065), + [anon_sym_suspend] = ACTIONS(5063), + [anon_sym_sealed] = ACTIONS(5063), + [anon_sym_annotation] = ACTIONS(5063), + [anon_sym_data] = ACTIONS(5063), + [anon_sym_inner] = ACTIONS(5063), + [anon_sym_value] = ACTIONS(5063), + [anon_sym_override] = ACTIONS(5063), + [anon_sym_lateinit] = ACTIONS(5063), + [anon_sym_public] = ACTIONS(5063), + [anon_sym_private] = ACTIONS(5063), + [anon_sym_internal] = ACTIONS(5063), + [anon_sym_protected] = ACTIONS(5063), + [anon_sym_tailrec] = ACTIONS(5063), + [anon_sym_operator] = ACTIONS(5063), + [anon_sym_infix] = ACTIONS(5063), + [anon_sym_inline] = ACTIONS(5063), + [anon_sym_external] = ACTIONS(5063), + [sym_property_modifier] = ACTIONS(5063), + [anon_sym_abstract] = ACTIONS(5063), + [anon_sym_final] = ACTIONS(5063), + [anon_sym_open] = ACTIONS(5063), + [anon_sym_vararg] = ACTIONS(5063), + [anon_sym_noinline] = ACTIONS(5063), + [anon_sym_crossinline] = ACTIONS(5063), + [anon_sym_expect] = ACTIONS(5063), + [anon_sym_actual] = ACTIONS(5063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5065), + [sym__automatic_semicolon] = ACTIONS(5065), + [sym_safe_nav] = ACTIONS(5065), + [sym_multiline_comment] = ACTIONS(3), }, - [3933] = { - [sym_class_body] = STATE(3174), - [sym_type_constraints] = STATE(3093), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7257), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_fun] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(4281), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_this] = ACTIONS(4281), - [anon_sym_super] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4281), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(4281), - [anon_sym_if] = ACTIONS(4281), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_when] = ACTIONS(4281), - [anon_sym_try] = ACTIONS(4281), - [anon_sym_throw] = ACTIONS(4281), - [anon_sym_return] = ACTIONS(4281), - [anon_sym_continue] = ACTIONS(4281), - [anon_sym_break] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4281), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [3916] = { + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4183), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4283), - [anon_sym_continue_AT] = ACTIONS(4283), - [anon_sym_break_AT] = ACTIONS(4283), - [anon_sym_this_AT] = ACTIONS(4283), - [anon_sym_super_AT] = ACTIONS(4283), - [sym_real_literal] = ACTIONS(4283), - [sym_integer_literal] = ACTIONS(4281), - [sym_hex_literal] = ACTIONS(4283), - [sym_bin_literal] = ACTIONS(4283), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [anon_sym_SQUOTE] = ACTIONS(4283), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, + [3917] = { + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [3918] = { + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [anon_sym_DASH_GT] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + }, + [3919] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7159), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3920] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7159), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3921] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7159), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3922] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7159), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3923] = { + [sym__alpha_identifier] = ACTIONS(4946), + [anon_sym_AT] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4946), + [anon_sym_EQ] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_RBRACE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4946), + [anon_sym_where] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_get] = ACTIONS(4946), + [anon_sym_set] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4946), + [sym_label] = ACTIONS(4948), + [anon_sym_in] = ACTIONS(4946), + [anon_sym_DOT_DOT] = ACTIONS(4948), + [anon_sym_QMARK_COLON] = ACTIONS(4948), + [anon_sym_AMP_AMP] = ACTIONS(4948), + [anon_sym_PIPE_PIPE] = ACTIONS(4948), + [anon_sym_else] = ACTIONS(4946), + [anon_sym_COLON_COLON] = ACTIONS(4948), + [anon_sym_PLUS_EQ] = ACTIONS(4948), + [anon_sym_DASH_EQ] = ACTIONS(4948), + [anon_sym_STAR_EQ] = ACTIONS(4948), + [anon_sym_SLASH_EQ] = ACTIONS(4948), + [anon_sym_PERCENT_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ] = ACTIONS(4946), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4948), + [anon_sym_LT_EQ] = ACTIONS(4948), + [anon_sym_GT_EQ] = ACTIONS(4948), + [anon_sym_BANGin] = ACTIONS(4948), + [anon_sym_is] = ACTIONS(4946), + [anon_sym_BANGis] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4946), + [anon_sym_PERCENT] = ACTIONS(4946), + [anon_sym_as_QMARK] = ACTIONS(4948), + [anon_sym_PLUS_PLUS] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4948), + [anon_sym_BANG_BANG] = ACTIONS(4948), + [anon_sym_suspend] = ACTIONS(4946), + [anon_sym_sealed] = ACTIONS(4946), + [anon_sym_annotation] = ACTIONS(4946), + [anon_sym_data] = ACTIONS(4946), + [anon_sym_inner] = ACTIONS(4946), + [anon_sym_value] = ACTIONS(4946), + [anon_sym_override] = ACTIONS(4946), + [anon_sym_lateinit] = ACTIONS(4946), + [anon_sym_public] = ACTIONS(4946), + [anon_sym_private] = ACTIONS(4946), + [anon_sym_internal] = ACTIONS(4946), + [anon_sym_protected] = ACTIONS(4946), + [anon_sym_tailrec] = ACTIONS(4946), + [anon_sym_operator] = ACTIONS(4946), + [anon_sym_infix] = ACTIONS(4946), + [anon_sym_inline] = ACTIONS(4946), + [anon_sym_external] = ACTIONS(4946), + [sym_property_modifier] = ACTIONS(4946), + [anon_sym_abstract] = ACTIONS(4946), + [anon_sym_final] = ACTIONS(4946), + [anon_sym_open] = ACTIONS(4946), + [anon_sym_vararg] = ACTIONS(4946), + [anon_sym_noinline] = ACTIONS(4946), + [anon_sym_crossinline] = ACTIONS(4946), + [anon_sym_expect] = ACTIONS(4946), + [anon_sym_actual] = ACTIONS(4946), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4948), + [sym__automatic_semicolon] = ACTIONS(4948), + [sym_safe_nav] = ACTIONS(4948), + [sym_multiline_comment] = ACTIONS(3), + }, + [3924] = { + [sym_function_body] = STATE(3110), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), + }, + [3925] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7159), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3926] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3927] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3928] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3929] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3930] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3931] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3932] = { + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [3933] = { + [sym__alpha_identifier] = ACTIONS(5163), + [anon_sym_AT] = ACTIONS(5165), + [anon_sym_LBRACK] = ACTIONS(5165), + [anon_sym_as] = ACTIONS(5163), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5165), + [anon_sym_RBRACE] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5165), + [anon_sym_COMMA] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5163), + [anon_sym_GT] = ACTIONS(5163), + [anon_sym_where] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5163), + [anon_sym_SEMI] = ACTIONS(5165), + [anon_sym_get] = ACTIONS(5163), + [anon_sym_set] = ACTIONS(5163), + [anon_sym_STAR] = ACTIONS(5163), + [sym_label] = ACTIONS(5165), + [anon_sym_in] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_QMARK_COLON] = ACTIONS(5165), + [anon_sym_AMP_AMP] = ACTIONS(5165), + [anon_sym_PIPE_PIPE] = ACTIONS(5165), + [anon_sym_else] = ACTIONS(5163), + [anon_sym_COLON_COLON] = ACTIONS(5165), + [anon_sym_PLUS_EQ] = ACTIONS(5165), + [anon_sym_DASH_EQ] = ACTIONS(5165), + [anon_sym_STAR_EQ] = ACTIONS(5165), + [anon_sym_SLASH_EQ] = ACTIONS(5165), + [anon_sym_PERCENT_EQ] = ACTIONS(5165), + [anon_sym_BANG_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5165), + [anon_sym_EQ_EQ] = ACTIONS(5163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5165), + [anon_sym_LT_EQ] = ACTIONS(5165), + [anon_sym_GT_EQ] = ACTIONS(5165), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(5163), + [anon_sym_BANGis] = ACTIONS(5165), + [anon_sym_PLUS] = ACTIONS(5163), + [anon_sym_DASH] = ACTIONS(5163), + [anon_sym_SLASH] = ACTIONS(5163), + [anon_sym_PERCENT] = ACTIONS(5163), + [anon_sym_as_QMARK] = ACTIONS(5165), + [anon_sym_PLUS_PLUS] = ACTIONS(5165), + [anon_sym_DASH_DASH] = ACTIONS(5165), + [anon_sym_BANG_BANG] = ACTIONS(5165), + [anon_sym_suspend] = ACTIONS(5163), + [anon_sym_sealed] = ACTIONS(5163), + [anon_sym_annotation] = ACTIONS(5163), + [anon_sym_data] = ACTIONS(5163), + [anon_sym_inner] = ACTIONS(5163), + [anon_sym_value] = ACTIONS(5163), + [anon_sym_override] = ACTIONS(5163), + [anon_sym_lateinit] = ACTIONS(5163), + [anon_sym_public] = ACTIONS(5163), + [anon_sym_private] = ACTIONS(5163), + [anon_sym_internal] = ACTIONS(5163), + [anon_sym_protected] = ACTIONS(5163), + [anon_sym_tailrec] = ACTIONS(5163), + [anon_sym_operator] = ACTIONS(5163), + [anon_sym_infix] = ACTIONS(5163), + [anon_sym_inline] = ACTIONS(5163), + [anon_sym_external] = ACTIONS(5163), + [sym_property_modifier] = ACTIONS(5163), + [anon_sym_abstract] = ACTIONS(5163), + [anon_sym_final] = ACTIONS(5163), + [anon_sym_open] = ACTIONS(5163), + [anon_sym_vararg] = ACTIONS(5163), + [anon_sym_noinline] = ACTIONS(5163), + [anon_sym_crossinline] = ACTIONS(5163), + [anon_sym_expect] = ACTIONS(5163), + [anon_sym_actual] = ACTIONS(5163), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5165), + [sym__automatic_semicolon] = ACTIONS(5165), + [sym_safe_nav] = ACTIONS(5165), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4283), }, [3934] = { - [sym__alpha_identifier] = ACTIONS(4992), - [anon_sym_AT] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_as] = ACTIONS(4992), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_where] = ACTIONS(4992), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym_get] = ACTIONS(4992), - [anon_sym_set] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [sym_label] = ACTIONS(4994), - [anon_sym_in] = ACTIONS(4992), - [anon_sym_DOT_DOT] = ACTIONS(4994), - [anon_sym_QMARK_COLON] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_else] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), - [anon_sym_EQ_EQ] = ACTIONS(4992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_BANGin] = ACTIONS(4994), - [anon_sym_is] = ACTIONS(4992), - [anon_sym_BANGis] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_as_QMARK] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_BANG_BANG] = ACTIONS(4994), - [anon_sym_suspend] = ACTIONS(4992), - [anon_sym_sealed] = ACTIONS(4992), - [anon_sym_annotation] = ACTIONS(4992), - [anon_sym_data] = ACTIONS(4992), - [anon_sym_inner] = ACTIONS(4992), - [anon_sym_value] = ACTIONS(4992), - [anon_sym_override] = ACTIONS(4992), - [anon_sym_lateinit] = ACTIONS(4992), - [anon_sym_public] = ACTIONS(4992), - [anon_sym_private] = ACTIONS(4992), - [anon_sym_internal] = ACTIONS(4992), - [anon_sym_protected] = ACTIONS(4992), - [anon_sym_tailrec] = ACTIONS(4992), - [anon_sym_operator] = ACTIONS(4992), - [anon_sym_infix] = ACTIONS(4992), - [anon_sym_inline] = ACTIONS(4992), - [anon_sym_external] = ACTIONS(4992), - [sym_property_modifier] = ACTIONS(4992), - [anon_sym_abstract] = ACTIONS(4992), - [anon_sym_final] = ACTIONS(4992), - [anon_sym_open] = ACTIONS(4992), - [anon_sym_vararg] = ACTIONS(4992), - [anon_sym_noinline] = ACTIONS(4992), - [anon_sym_crossinline] = ACTIONS(4992), - [anon_sym_expect] = ACTIONS(4992), - [anon_sym_actual] = ACTIONS(4992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4994), - [sym__automatic_semicolon] = ACTIONS(4994), - [sym_safe_nav] = ACTIONS(4994), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3935] = { - [sym_function_body] = STATE(3273), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_object] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_this] = ACTIONS(4518), - [anon_sym_super] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [sym_label] = ACTIONS(4518), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_null] = ACTIONS(4518), - [anon_sym_if] = ACTIONS(4518), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_when] = ACTIONS(4518), - [anon_sym_try] = ACTIONS(4518), - [anon_sym_throw] = ACTIONS(4518), - [anon_sym_return] = ACTIONS(4518), - [anon_sym_continue] = ACTIONS(4518), - [anon_sym_break] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4518), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4520), - [anon_sym_continue_AT] = ACTIONS(4520), - [anon_sym_break_AT] = ACTIONS(4520), - [anon_sym_this_AT] = ACTIONS(4520), - [anon_sym_super_AT] = ACTIONS(4520), - [sym_real_literal] = ACTIONS(4520), - [sym_integer_literal] = ACTIONS(4518), - [sym_hex_literal] = ACTIONS(4520), - [sym_bin_literal] = ACTIONS(4520), - [anon_sym_true] = ACTIONS(4518), - [anon_sym_false] = ACTIONS(4518), - [anon_sym_SQUOTE] = ACTIONS(4520), - [sym__backtick_identifier] = ACTIONS(4520), - [sym__automatic_semicolon] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4520), + [sym__alpha_identifier] = ACTIONS(4950), + [anon_sym_AT] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4950), + [anon_sym_EQ] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4950), + [anon_sym_where] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_get] = ACTIONS(4950), + [anon_sym_set] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4950), + [sym_label] = ACTIONS(4952), + [anon_sym_in] = ACTIONS(4950), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_QMARK_COLON] = ACTIONS(4952), + [anon_sym_AMP_AMP] = ACTIONS(4952), + [anon_sym_PIPE_PIPE] = ACTIONS(4952), + [anon_sym_else] = ACTIONS(4950), + [anon_sym_COLON_COLON] = ACTIONS(4952), + [anon_sym_PLUS_EQ] = ACTIONS(4952), + [anon_sym_DASH_EQ] = ACTIONS(4952), + [anon_sym_STAR_EQ] = ACTIONS(4952), + [anon_sym_SLASH_EQ] = ACTIONS(4952), + [anon_sym_PERCENT_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4952), + [anon_sym_BANGin] = ACTIONS(4952), + [anon_sym_is] = ACTIONS(4950), + [anon_sym_BANGis] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4950), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4950), + [anon_sym_PERCENT] = ACTIONS(4950), + [anon_sym_as_QMARK] = ACTIONS(4952), + [anon_sym_PLUS_PLUS] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_BANG_BANG] = ACTIONS(4952), + [anon_sym_suspend] = ACTIONS(4950), + [anon_sym_sealed] = ACTIONS(4950), + [anon_sym_annotation] = ACTIONS(4950), + [anon_sym_data] = ACTIONS(4950), + [anon_sym_inner] = ACTIONS(4950), + [anon_sym_value] = ACTIONS(4950), + [anon_sym_override] = ACTIONS(4950), + [anon_sym_lateinit] = ACTIONS(4950), + [anon_sym_public] = ACTIONS(4950), + [anon_sym_private] = ACTIONS(4950), + [anon_sym_internal] = ACTIONS(4950), + [anon_sym_protected] = ACTIONS(4950), + [anon_sym_tailrec] = ACTIONS(4950), + [anon_sym_operator] = ACTIONS(4950), + [anon_sym_infix] = ACTIONS(4950), + [anon_sym_inline] = ACTIONS(4950), + [anon_sym_external] = ACTIONS(4950), + [sym_property_modifier] = ACTIONS(4950), + [anon_sym_abstract] = ACTIONS(4950), + [anon_sym_final] = ACTIONS(4950), + [anon_sym_open] = ACTIONS(4950), + [anon_sym_vararg] = ACTIONS(4950), + [anon_sym_noinline] = ACTIONS(4950), + [anon_sym_crossinline] = ACTIONS(4950), + [anon_sym_expect] = ACTIONS(4950), + [anon_sym_actual] = ACTIONS(4950), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4952), + [sym__automatic_semicolon] = ACTIONS(4952), + [sym_safe_nav] = ACTIONS(4952), + [sym_multiline_comment] = ACTIONS(3), }, [3936] = { - [sym__alpha_identifier] = ACTIONS(5057), - [anon_sym_AT] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(5057), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_where] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_get] = ACTIONS(5057), - [anon_sym_set] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [sym_label] = ACTIONS(5059), - [anon_sym_in] = ACTIONS(5057), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_QMARK_COLON] = ACTIONS(5059), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_else] = ACTIONS(5057), - [anon_sym_COLON_COLON] = ACTIONS(5059), - [anon_sym_PLUS_EQ] = ACTIONS(5059), - [anon_sym_DASH_EQ] = ACTIONS(5059), - [anon_sym_STAR_EQ] = ACTIONS(5059), - [anon_sym_SLASH_EQ] = ACTIONS(5059), - [anon_sym_PERCENT_EQ] = ACTIONS(5059), - [anon_sym_BANG_EQ] = ACTIONS(5057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5059), - [anon_sym_EQ_EQ] = ACTIONS(5057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5059), - [anon_sym_LT_EQ] = ACTIONS(5059), - [anon_sym_GT_EQ] = ACTIONS(5059), - [anon_sym_BANGin] = ACTIONS(5059), - [anon_sym_is] = ACTIONS(5057), - [anon_sym_BANGis] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_PERCENT] = ACTIONS(5057), - [anon_sym_as_QMARK] = ACTIONS(5059), - [anon_sym_PLUS_PLUS] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5059), - [anon_sym_BANG_BANG] = ACTIONS(5059), - [anon_sym_suspend] = ACTIONS(5057), - [anon_sym_sealed] = ACTIONS(5057), - [anon_sym_annotation] = ACTIONS(5057), - [anon_sym_data] = ACTIONS(5057), - [anon_sym_inner] = ACTIONS(5057), - [anon_sym_value] = ACTIONS(5057), - [anon_sym_override] = ACTIONS(5057), - [anon_sym_lateinit] = ACTIONS(5057), - [anon_sym_public] = ACTIONS(5057), - [anon_sym_private] = ACTIONS(5057), - [anon_sym_internal] = ACTIONS(5057), - [anon_sym_protected] = ACTIONS(5057), - [anon_sym_tailrec] = ACTIONS(5057), - [anon_sym_operator] = ACTIONS(5057), - [anon_sym_infix] = ACTIONS(5057), - [anon_sym_inline] = ACTIONS(5057), - [anon_sym_external] = ACTIONS(5057), - [sym_property_modifier] = ACTIONS(5057), - [anon_sym_abstract] = ACTIONS(5057), - [anon_sym_final] = ACTIONS(5057), - [anon_sym_open] = ACTIONS(5057), - [anon_sym_vararg] = ACTIONS(5057), - [anon_sym_noinline] = ACTIONS(5057), - [anon_sym_crossinline] = ACTIONS(5057), - [anon_sym_expect] = ACTIONS(5057), - [anon_sym_actual] = ACTIONS(5057), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5059), - [sym__automatic_semicolon] = ACTIONS(5059), - [sym_safe_nav] = ACTIONS(5059), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3937] = { - [sym__alpha_identifier] = ACTIONS(5028), - [anon_sym_AT] = ACTIONS(5030), - [anon_sym_LBRACK] = ACTIONS(5030), - [anon_sym_as] = ACTIONS(5028), - [anon_sym_EQ] = ACTIONS(5028), - [anon_sym_LBRACE] = ACTIONS(5030), - [anon_sym_RBRACE] = ACTIONS(5030), - [anon_sym_LPAREN] = ACTIONS(5030), - [anon_sym_COMMA] = ACTIONS(5030), - [anon_sym_LT] = ACTIONS(5028), - [anon_sym_GT] = ACTIONS(5028), - [anon_sym_where] = ACTIONS(5028), - [anon_sym_DOT] = ACTIONS(5028), - [anon_sym_SEMI] = ACTIONS(5030), - [anon_sym_get] = ACTIONS(5028), - [anon_sym_set] = ACTIONS(5028), - [anon_sym_STAR] = ACTIONS(5028), - [sym_label] = ACTIONS(5030), - [anon_sym_in] = ACTIONS(5028), - [anon_sym_DOT_DOT] = ACTIONS(5030), - [anon_sym_QMARK_COLON] = ACTIONS(5030), - [anon_sym_AMP_AMP] = ACTIONS(5030), - [anon_sym_PIPE_PIPE] = ACTIONS(5030), - [anon_sym_else] = ACTIONS(5028), - [anon_sym_COLON_COLON] = ACTIONS(5030), - [anon_sym_PLUS_EQ] = ACTIONS(5030), - [anon_sym_DASH_EQ] = ACTIONS(5030), - [anon_sym_STAR_EQ] = ACTIONS(5030), - [anon_sym_SLASH_EQ] = ACTIONS(5030), - [anon_sym_PERCENT_EQ] = ACTIONS(5030), - [anon_sym_BANG_EQ] = ACTIONS(5028), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5030), - [anon_sym_EQ_EQ] = ACTIONS(5028), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5030), - [anon_sym_LT_EQ] = ACTIONS(5030), - [anon_sym_GT_EQ] = ACTIONS(5030), - [anon_sym_BANGin] = ACTIONS(5030), - [anon_sym_is] = ACTIONS(5028), - [anon_sym_BANGis] = ACTIONS(5030), - [anon_sym_PLUS] = ACTIONS(5028), - [anon_sym_DASH] = ACTIONS(5028), - [anon_sym_SLASH] = ACTIONS(5028), - [anon_sym_PERCENT] = ACTIONS(5028), - [anon_sym_as_QMARK] = ACTIONS(5030), - [anon_sym_PLUS_PLUS] = ACTIONS(5030), - [anon_sym_DASH_DASH] = ACTIONS(5030), - [anon_sym_BANG_BANG] = ACTIONS(5030), - [anon_sym_suspend] = ACTIONS(5028), - [anon_sym_sealed] = ACTIONS(5028), - [anon_sym_annotation] = ACTIONS(5028), - [anon_sym_data] = ACTIONS(5028), - [anon_sym_inner] = ACTIONS(5028), - [anon_sym_value] = ACTIONS(5028), - [anon_sym_override] = ACTIONS(5028), - [anon_sym_lateinit] = ACTIONS(5028), - [anon_sym_public] = ACTIONS(5028), - [anon_sym_private] = ACTIONS(5028), - [anon_sym_internal] = ACTIONS(5028), - [anon_sym_protected] = ACTIONS(5028), - [anon_sym_tailrec] = ACTIONS(5028), - [anon_sym_operator] = ACTIONS(5028), - [anon_sym_infix] = ACTIONS(5028), - [anon_sym_inline] = ACTIONS(5028), - [anon_sym_external] = ACTIONS(5028), - [sym_property_modifier] = ACTIONS(5028), - [anon_sym_abstract] = ACTIONS(5028), - [anon_sym_final] = ACTIONS(5028), - [anon_sym_open] = ACTIONS(5028), - [anon_sym_vararg] = ACTIONS(5028), - [anon_sym_noinline] = ACTIONS(5028), - [anon_sym_crossinline] = ACTIONS(5028), - [anon_sym_expect] = ACTIONS(5028), - [anon_sym_actual] = ACTIONS(5028), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5030), - [sym__automatic_semicolon] = ACTIONS(5030), - [sym_safe_nav] = ACTIONS(5030), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [3938] = { - [sym__alpha_identifier] = ACTIONS(4836), - [anon_sym_AT] = ACTIONS(4838), - [anon_sym_LBRACK] = ACTIONS(4838), - [anon_sym_as] = ACTIONS(4836), - [anon_sym_EQ] = ACTIONS(4836), - [anon_sym_LBRACE] = ACTIONS(4838), - [anon_sym_RBRACE] = ACTIONS(4838), - [anon_sym_LPAREN] = ACTIONS(4838), - [anon_sym_COMMA] = ACTIONS(4838), - [anon_sym_LT] = ACTIONS(4836), - [anon_sym_GT] = ACTIONS(4836), - [anon_sym_where] = ACTIONS(4836), - [anon_sym_DOT] = ACTIONS(4836), - [anon_sym_SEMI] = ACTIONS(4838), - [anon_sym_get] = ACTIONS(4836), - [anon_sym_set] = ACTIONS(4836), - [anon_sym_STAR] = ACTIONS(4836), - [sym_label] = ACTIONS(4838), - [anon_sym_in] = ACTIONS(4836), - [anon_sym_DOT_DOT] = ACTIONS(4838), - [anon_sym_QMARK_COLON] = ACTIONS(4838), - [anon_sym_AMP_AMP] = ACTIONS(4838), - [anon_sym_PIPE_PIPE] = ACTIONS(4838), - [anon_sym_else] = ACTIONS(4836), - [anon_sym_COLON_COLON] = ACTIONS(4838), - [anon_sym_PLUS_EQ] = ACTIONS(4838), - [anon_sym_DASH_EQ] = ACTIONS(4838), - [anon_sym_STAR_EQ] = ACTIONS(4838), - [anon_sym_SLASH_EQ] = ACTIONS(4838), - [anon_sym_PERCENT_EQ] = ACTIONS(4838), - [anon_sym_BANG_EQ] = ACTIONS(4836), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4838), - [anon_sym_EQ_EQ] = ACTIONS(4836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4838), - [anon_sym_LT_EQ] = ACTIONS(4838), - [anon_sym_GT_EQ] = ACTIONS(4838), - [anon_sym_BANGin] = ACTIONS(4838), - [anon_sym_is] = ACTIONS(4836), - [anon_sym_BANGis] = ACTIONS(4838), - [anon_sym_PLUS] = ACTIONS(4836), - [anon_sym_DASH] = ACTIONS(4836), - [anon_sym_SLASH] = ACTIONS(4836), - [anon_sym_PERCENT] = ACTIONS(4836), - [anon_sym_as_QMARK] = ACTIONS(4838), - [anon_sym_PLUS_PLUS] = ACTIONS(4838), - [anon_sym_DASH_DASH] = ACTIONS(4838), - [anon_sym_BANG_BANG] = ACTIONS(4838), - [anon_sym_suspend] = ACTIONS(4836), - [anon_sym_sealed] = ACTIONS(4836), - [anon_sym_annotation] = ACTIONS(4836), - [anon_sym_data] = ACTIONS(4836), - [anon_sym_inner] = ACTIONS(4836), - [anon_sym_value] = ACTIONS(4836), - [anon_sym_override] = ACTIONS(4836), - [anon_sym_lateinit] = ACTIONS(4836), - [anon_sym_public] = ACTIONS(4836), - [anon_sym_private] = ACTIONS(4836), - [anon_sym_internal] = ACTIONS(4836), - [anon_sym_protected] = ACTIONS(4836), - [anon_sym_tailrec] = ACTIONS(4836), - [anon_sym_operator] = ACTIONS(4836), - [anon_sym_infix] = ACTIONS(4836), - [anon_sym_inline] = ACTIONS(4836), - [anon_sym_external] = ACTIONS(4836), - [sym_property_modifier] = ACTIONS(4836), - [anon_sym_abstract] = ACTIONS(4836), - [anon_sym_final] = ACTIONS(4836), - [anon_sym_open] = ACTIONS(4836), - [anon_sym_vararg] = ACTIONS(4836), - [anon_sym_noinline] = ACTIONS(4836), - [anon_sym_crossinline] = ACTIONS(4836), - [anon_sym_expect] = ACTIONS(4836), - [anon_sym_actual] = ACTIONS(4836), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4838), - [sym__automatic_semicolon] = ACTIONS(4838), - [sym_safe_nav] = ACTIONS(4838), + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_as] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4776), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_COMMA] = ACTIONS(4776), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_where] = ACTIONS(4774), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4776), + [anon_sym_get] = ACTIONS(4774), + [anon_sym_set] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [sym_label] = ACTIONS(4776), + [anon_sym_in] = ACTIONS(4774), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_QMARK_COLON] = ACTIONS(4776), + [anon_sym_AMP_AMP] = ACTIONS(4776), + [anon_sym_PIPE_PIPE] = ACTIONS(4776), + [anon_sym_else] = ACTIONS(4774), + [anon_sym_COLON_COLON] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4776), + [anon_sym_DASH_EQ] = ACTIONS(4776), + [anon_sym_STAR_EQ] = ACTIONS(4776), + [anon_sym_SLASH_EQ] = ACTIONS(4776), + [anon_sym_PERCENT_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4776), + [anon_sym_BANGin] = ACTIONS(4776), + [anon_sym_is] = ACTIONS(4774), + [anon_sym_BANGis] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_as_QMARK] = ACTIONS(4776), + [anon_sym_PLUS_PLUS] = ACTIONS(4776), + [anon_sym_DASH_DASH] = ACTIONS(4776), + [anon_sym_BANG_BANG] = ACTIONS(4776), + [anon_sym_suspend] = ACTIONS(4774), + [anon_sym_sealed] = ACTIONS(4774), + [anon_sym_annotation] = ACTIONS(4774), + [anon_sym_data] = ACTIONS(4774), + [anon_sym_inner] = ACTIONS(4774), + [anon_sym_value] = ACTIONS(4774), + [anon_sym_override] = ACTIONS(4774), + [anon_sym_lateinit] = ACTIONS(4774), + [anon_sym_public] = ACTIONS(4774), + [anon_sym_private] = ACTIONS(4774), + [anon_sym_internal] = ACTIONS(4774), + [anon_sym_protected] = ACTIONS(4774), + [anon_sym_tailrec] = ACTIONS(4774), + [anon_sym_operator] = ACTIONS(4774), + [anon_sym_infix] = ACTIONS(4774), + [anon_sym_inline] = ACTIONS(4774), + [anon_sym_external] = ACTIONS(4774), + [sym_property_modifier] = ACTIONS(4774), + [anon_sym_abstract] = ACTIONS(4774), + [anon_sym_final] = ACTIONS(4774), + [anon_sym_open] = ACTIONS(4774), + [anon_sym_vararg] = ACTIONS(4774), + [anon_sym_noinline] = ACTIONS(4774), + [anon_sym_crossinline] = ACTIONS(4774), + [anon_sym_expect] = ACTIONS(4774), + [anon_sym_actual] = ACTIONS(4774), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4776), + [sym__automatic_semicolon] = ACTIONS(4776), + [sym_safe_nav] = ACTIONS(4776), [sym_multiline_comment] = ACTIONS(3), }, [3939] = { - [sym__alpha_identifier] = ACTIONS(4840), - [anon_sym_AT] = ACTIONS(4842), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_as] = ACTIONS(4840), - [anon_sym_EQ] = ACTIONS(4840), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_LPAREN] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym_GT] = ACTIONS(4840), - [anon_sym_where] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4840), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_get] = ACTIONS(4840), - [anon_sym_set] = ACTIONS(4840), - [anon_sym_STAR] = ACTIONS(4840), - [sym_label] = ACTIONS(4842), - [anon_sym_in] = ACTIONS(4840), - [anon_sym_DOT_DOT] = ACTIONS(4842), - [anon_sym_QMARK_COLON] = ACTIONS(4842), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_else] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(4842), - [anon_sym_PLUS_EQ] = ACTIONS(4842), - [anon_sym_DASH_EQ] = ACTIONS(4842), - [anon_sym_STAR_EQ] = ACTIONS(4842), - [anon_sym_SLASH_EQ] = ACTIONS(4842), - [anon_sym_PERCENT_EQ] = ACTIONS(4842), - [anon_sym_BANG_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), - [anon_sym_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), - [anon_sym_LT_EQ] = ACTIONS(4842), - [anon_sym_GT_EQ] = ACTIONS(4842), - [anon_sym_BANGin] = ACTIONS(4842), - [anon_sym_is] = ACTIONS(4840), - [anon_sym_BANGis] = ACTIONS(4842), - [anon_sym_PLUS] = ACTIONS(4840), - [anon_sym_DASH] = ACTIONS(4840), - [anon_sym_SLASH] = ACTIONS(4840), - [anon_sym_PERCENT] = ACTIONS(4840), - [anon_sym_as_QMARK] = ACTIONS(4842), - [anon_sym_PLUS_PLUS] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_BANG_BANG] = ACTIONS(4842), - [anon_sym_suspend] = ACTIONS(4840), - [anon_sym_sealed] = ACTIONS(4840), - [anon_sym_annotation] = ACTIONS(4840), - [anon_sym_data] = ACTIONS(4840), - [anon_sym_inner] = ACTIONS(4840), - [anon_sym_value] = ACTIONS(4840), - [anon_sym_override] = ACTIONS(4840), - [anon_sym_lateinit] = ACTIONS(4840), - [anon_sym_public] = ACTIONS(4840), - [anon_sym_private] = ACTIONS(4840), - [anon_sym_internal] = ACTIONS(4840), - [anon_sym_protected] = ACTIONS(4840), - [anon_sym_tailrec] = ACTIONS(4840), - [anon_sym_operator] = ACTIONS(4840), - [anon_sym_infix] = ACTIONS(4840), - [anon_sym_inline] = ACTIONS(4840), - [anon_sym_external] = ACTIONS(4840), - [sym_property_modifier] = ACTIONS(4840), - [anon_sym_abstract] = ACTIONS(4840), - [anon_sym_final] = ACTIONS(4840), - [anon_sym_open] = ACTIONS(4840), - [anon_sym_vararg] = ACTIONS(4840), - [anon_sym_noinline] = ACTIONS(4840), - [anon_sym_crossinline] = ACTIONS(4840), - [anon_sym_expect] = ACTIONS(4840), - [anon_sym_actual] = ACTIONS(4840), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4842), - [sym__automatic_semicolon] = ACTIONS(4842), - [sym_safe_nav] = ACTIONS(4842), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(7123), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), }, [3940] = { - [sym__alpha_identifier] = ACTIONS(4082), - [anon_sym_AT] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(4082), - [anon_sym_EQ] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_where] = ACTIONS(4082), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_get] = ACTIONS(4082), - [anon_sym_set] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [sym_label] = ACTIONS(4084), - [anon_sym_in] = ACTIONS(4082), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_QMARK_COLON] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_else] = ACTIONS(4082), - [anon_sym_COLON_COLON] = ACTIONS(4084), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_STAR_EQ] = ACTIONS(4084), - [anon_sym_SLASH_EQ] = ACTIONS(4084), - [anon_sym_PERCENT_EQ] = ACTIONS(4084), - [anon_sym_BANG_EQ] = ACTIONS(4082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_BANGin] = ACTIONS(4084), - [anon_sym_is] = ACTIONS(4082), - [anon_sym_BANGis] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_SLASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4082), - [anon_sym_as_QMARK] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_BANG_BANG] = ACTIONS(4084), - [anon_sym_suspend] = ACTIONS(4082), - [anon_sym_sealed] = ACTIONS(4082), - [anon_sym_annotation] = ACTIONS(4082), - [anon_sym_data] = ACTIONS(4082), - [anon_sym_inner] = ACTIONS(4082), - [anon_sym_value] = ACTIONS(4082), - [anon_sym_override] = ACTIONS(4082), - [anon_sym_lateinit] = ACTIONS(4082), - [anon_sym_public] = ACTIONS(4082), - [anon_sym_private] = ACTIONS(4082), - [anon_sym_internal] = ACTIONS(4082), - [anon_sym_protected] = ACTIONS(4082), - [anon_sym_tailrec] = ACTIONS(4082), - [anon_sym_operator] = ACTIONS(4082), - [anon_sym_infix] = ACTIONS(4082), - [anon_sym_inline] = ACTIONS(4082), - [anon_sym_external] = ACTIONS(4082), - [sym_property_modifier] = ACTIONS(4082), - [anon_sym_abstract] = ACTIONS(4082), - [anon_sym_final] = ACTIONS(4082), - [anon_sym_open] = ACTIONS(4082), - [anon_sym_vararg] = ACTIONS(4082), - [anon_sym_noinline] = ACTIONS(4082), - [anon_sym_crossinline] = ACTIONS(4082), - [anon_sym_expect] = ACTIONS(4082), - [anon_sym_actual] = ACTIONS(4082), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4084), - [sym__automatic_semicolon] = ACTIONS(4084), - [sym_safe_nav] = ACTIONS(4084), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3941] = { - [sym__alpha_identifier] = ACTIONS(4872), - [anon_sym_AT] = ACTIONS(4874), - [anon_sym_LBRACK] = ACTIONS(4874), - [anon_sym_as] = ACTIONS(4872), - [anon_sym_EQ] = ACTIONS(4872), - [anon_sym_LBRACE] = ACTIONS(4874), - [anon_sym_RBRACE] = ACTIONS(4874), - [anon_sym_LPAREN] = ACTIONS(4874), - [anon_sym_COMMA] = ACTIONS(4874), - [anon_sym_LT] = ACTIONS(4872), - [anon_sym_GT] = ACTIONS(4872), - [anon_sym_where] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4872), - [anon_sym_SEMI] = ACTIONS(4874), - [anon_sym_get] = ACTIONS(4872), - [anon_sym_set] = ACTIONS(4872), - [anon_sym_STAR] = ACTIONS(4872), - [sym_label] = ACTIONS(4874), - [anon_sym_in] = ACTIONS(4872), - [anon_sym_DOT_DOT] = ACTIONS(4874), - [anon_sym_QMARK_COLON] = ACTIONS(4874), - [anon_sym_AMP_AMP] = ACTIONS(4874), - [anon_sym_PIPE_PIPE] = ACTIONS(4874), - [anon_sym_else] = ACTIONS(4872), - [anon_sym_COLON_COLON] = ACTIONS(4874), - [anon_sym_PLUS_EQ] = ACTIONS(4874), - [anon_sym_DASH_EQ] = ACTIONS(4874), - [anon_sym_STAR_EQ] = ACTIONS(4874), - [anon_sym_SLASH_EQ] = ACTIONS(4874), - [anon_sym_PERCENT_EQ] = ACTIONS(4874), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4874), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4874), - [anon_sym_LT_EQ] = ACTIONS(4874), - [anon_sym_GT_EQ] = ACTIONS(4874), - [anon_sym_BANGin] = ACTIONS(4874), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_BANGis] = ACTIONS(4874), - [anon_sym_PLUS] = ACTIONS(4872), - [anon_sym_DASH] = ACTIONS(4872), - [anon_sym_SLASH] = ACTIONS(4872), - [anon_sym_PERCENT] = ACTIONS(4872), - [anon_sym_as_QMARK] = ACTIONS(4874), - [anon_sym_PLUS_PLUS] = ACTIONS(4874), - [anon_sym_DASH_DASH] = ACTIONS(4874), - [anon_sym_BANG_BANG] = ACTIONS(4874), - [anon_sym_suspend] = ACTIONS(4872), - [anon_sym_sealed] = ACTIONS(4872), - [anon_sym_annotation] = ACTIONS(4872), - [anon_sym_data] = ACTIONS(4872), - [anon_sym_inner] = ACTIONS(4872), - [anon_sym_value] = ACTIONS(4872), - [anon_sym_override] = ACTIONS(4872), - [anon_sym_lateinit] = ACTIONS(4872), - [anon_sym_public] = ACTIONS(4872), - [anon_sym_private] = ACTIONS(4872), - [anon_sym_internal] = ACTIONS(4872), - [anon_sym_protected] = ACTIONS(4872), - [anon_sym_tailrec] = ACTIONS(4872), - [anon_sym_operator] = ACTIONS(4872), - [anon_sym_infix] = ACTIONS(4872), - [anon_sym_inline] = ACTIONS(4872), - [anon_sym_external] = ACTIONS(4872), - [sym_property_modifier] = ACTIONS(4872), - [anon_sym_abstract] = ACTIONS(4872), - [anon_sym_final] = ACTIONS(4872), - [anon_sym_open] = ACTIONS(4872), - [anon_sym_vararg] = ACTIONS(4872), - [anon_sym_noinline] = ACTIONS(4872), - [anon_sym_crossinline] = ACTIONS(4872), - [anon_sym_expect] = ACTIONS(4872), - [anon_sym_actual] = ACTIONS(4872), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4874), - [sym__automatic_semicolon] = ACTIONS(4874), - [sym_safe_nav] = ACTIONS(4874), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3942] = { - [sym__alpha_identifier] = ACTIONS(4876), - [anon_sym_AT] = ACTIONS(4878), - [anon_sym_LBRACK] = ACTIONS(4878), - [anon_sym_as] = ACTIONS(4876), - [anon_sym_EQ] = ACTIONS(4876), - [anon_sym_LBRACE] = ACTIONS(4878), - [anon_sym_RBRACE] = ACTIONS(4878), - [anon_sym_LPAREN] = ACTIONS(4878), - [anon_sym_COMMA] = ACTIONS(4878), - [anon_sym_LT] = ACTIONS(4876), - [anon_sym_GT] = ACTIONS(4876), - [anon_sym_where] = ACTIONS(4876), - [anon_sym_DOT] = ACTIONS(4876), - [anon_sym_SEMI] = ACTIONS(4878), - [anon_sym_get] = ACTIONS(4876), - [anon_sym_set] = ACTIONS(4876), - [anon_sym_STAR] = ACTIONS(4876), - [sym_label] = ACTIONS(4878), - [anon_sym_in] = ACTIONS(4876), - [anon_sym_DOT_DOT] = ACTIONS(4878), - [anon_sym_QMARK_COLON] = ACTIONS(4878), - [anon_sym_AMP_AMP] = ACTIONS(4878), - [anon_sym_PIPE_PIPE] = ACTIONS(4878), - [anon_sym_else] = ACTIONS(4876), - [anon_sym_COLON_COLON] = ACTIONS(4878), - [anon_sym_PLUS_EQ] = ACTIONS(4878), - [anon_sym_DASH_EQ] = ACTIONS(4878), - [anon_sym_STAR_EQ] = ACTIONS(4878), - [anon_sym_SLASH_EQ] = ACTIONS(4878), - [anon_sym_PERCENT_EQ] = ACTIONS(4878), - [anon_sym_BANG_EQ] = ACTIONS(4876), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4878), - [anon_sym_EQ_EQ] = ACTIONS(4876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4878), - [anon_sym_LT_EQ] = ACTIONS(4878), - [anon_sym_GT_EQ] = ACTIONS(4878), - [anon_sym_BANGin] = ACTIONS(4878), - [anon_sym_is] = ACTIONS(4876), - [anon_sym_BANGis] = ACTIONS(4878), - [anon_sym_PLUS] = ACTIONS(4876), - [anon_sym_DASH] = ACTIONS(4876), - [anon_sym_SLASH] = ACTIONS(4876), - [anon_sym_PERCENT] = ACTIONS(4876), - [anon_sym_as_QMARK] = ACTIONS(4878), - [anon_sym_PLUS_PLUS] = ACTIONS(4878), - [anon_sym_DASH_DASH] = ACTIONS(4878), - [anon_sym_BANG_BANG] = ACTIONS(4878), - [anon_sym_suspend] = ACTIONS(4876), - [anon_sym_sealed] = ACTIONS(4876), - [anon_sym_annotation] = ACTIONS(4876), - [anon_sym_data] = ACTIONS(4876), - [anon_sym_inner] = ACTIONS(4876), - [anon_sym_value] = ACTIONS(4876), - [anon_sym_override] = ACTIONS(4876), - [anon_sym_lateinit] = ACTIONS(4876), - [anon_sym_public] = ACTIONS(4876), - [anon_sym_private] = ACTIONS(4876), - [anon_sym_internal] = ACTIONS(4876), - [anon_sym_protected] = ACTIONS(4876), - [anon_sym_tailrec] = ACTIONS(4876), - [anon_sym_operator] = ACTIONS(4876), - [anon_sym_infix] = ACTIONS(4876), - [anon_sym_inline] = ACTIONS(4876), - [anon_sym_external] = ACTIONS(4876), - [sym_property_modifier] = ACTIONS(4876), - [anon_sym_abstract] = ACTIONS(4876), - [anon_sym_final] = ACTIONS(4876), - [anon_sym_open] = ACTIONS(4876), - [anon_sym_vararg] = ACTIONS(4876), - [anon_sym_noinline] = ACTIONS(4876), - [anon_sym_crossinline] = ACTIONS(4876), - [anon_sym_expect] = ACTIONS(4876), - [anon_sym_actual] = ACTIONS(4876), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4878), - [sym__automatic_semicolon] = ACTIONS(4878), - [sym_safe_nav] = ACTIONS(4878), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4299), + [anon_sym_LBRACE] = ACTIONS(4301), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3943] = { - [sym__alpha_identifier] = ACTIONS(5215), - [anon_sym_AT] = ACTIONS(5217), - [anon_sym_LBRACK] = ACTIONS(5217), - [anon_sym_as] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5217), - [anon_sym_RBRACE] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5217), - [anon_sym_COMMA] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5215), - [anon_sym_GT] = ACTIONS(5215), - [anon_sym_where] = ACTIONS(5215), - [anon_sym_DOT] = ACTIONS(5215), - [anon_sym_SEMI] = ACTIONS(5217), - [anon_sym_get] = ACTIONS(5215), - [anon_sym_set] = ACTIONS(5215), - [anon_sym_STAR] = ACTIONS(5215), - [sym_label] = ACTIONS(5217), - [anon_sym_in] = ACTIONS(5215), - [anon_sym_DOT_DOT] = ACTIONS(5217), - [anon_sym_QMARK_COLON] = ACTIONS(5217), - [anon_sym_AMP_AMP] = ACTIONS(5217), - [anon_sym_PIPE_PIPE] = ACTIONS(5217), - [anon_sym_else] = ACTIONS(5215), - [anon_sym_COLON_COLON] = ACTIONS(5217), - [anon_sym_PLUS_EQ] = ACTIONS(5217), - [anon_sym_DASH_EQ] = ACTIONS(5217), - [anon_sym_STAR_EQ] = ACTIONS(5217), - [anon_sym_SLASH_EQ] = ACTIONS(5217), - [anon_sym_PERCENT_EQ] = ACTIONS(5217), - [anon_sym_BANG_EQ] = ACTIONS(5215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5217), - [anon_sym_EQ_EQ] = ACTIONS(5215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5217), - [anon_sym_LT_EQ] = ACTIONS(5217), - [anon_sym_GT_EQ] = ACTIONS(5217), - [anon_sym_BANGin] = ACTIONS(5217), - [anon_sym_is] = ACTIONS(5215), - [anon_sym_BANGis] = ACTIONS(5217), - [anon_sym_PLUS] = ACTIONS(5215), - [anon_sym_DASH] = ACTIONS(5215), - [anon_sym_SLASH] = ACTIONS(5215), - [anon_sym_PERCENT] = ACTIONS(5215), - [anon_sym_as_QMARK] = ACTIONS(5217), - [anon_sym_PLUS_PLUS] = ACTIONS(5217), - [anon_sym_DASH_DASH] = ACTIONS(5217), - [anon_sym_BANG_BANG] = ACTIONS(5217), - [anon_sym_suspend] = ACTIONS(5215), - [anon_sym_sealed] = ACTIONS(5215), - [anon_sym_annotation] = ACTIONS(5215), - [anon_sym_data] = ACTIONS(5215), - [anon_sym_inner] = ACTIONS(5215), - [anon_sym_value] = ACTIONS(5215), - [anon_sym_override] = ACTIONS(5215), - [anon_sym_lateinit] = ACTIONS(5215), - [anon_sym_public] = ACTIONS(5215), - [anon_sym_private] = ACTIONS(5215), - [anon_sym_internal] = ACTIONS(5215), - [anon_sym_protected] = ACTIONS(5215), - [anon_sym_tailrec] = ACTIONS(5215), - [anon_sym_operator] = ACTIONS(5215), - [anon_sym_infix] = ACTIONS(5215), - [anon_sym_inline] = ACTIONS(5215), - [anon_sym_external] = ACTIONS(5215), - [sym_property_modifier] = ACTIONS(5215), - [anon_sym_abstract] = ACTIONS(5215), - [anon_sym_final] = ACTIONS(5215), - [anon_sym_open] = ACTIONS(5215), - [anon_sym_vararg] = ACTIONS(5215), - [anon_sym_noinline] = ACTIONS(5215), - [anon_sym_crossinline] = ACTIONS(5215), - [anon_sym_expect] = ACTIONS(5215), - [anon_sym_actual] = ACTIONS(5215), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5217), - [sym__automatic_semicolon] = ACTIONS(5217), - [sym_safe_nav] = ACTIONS(5217), + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_as] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(123), + [sym_label] = ACTIONS(121), + [anon_sym_in] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_else] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(121), + [anon_sym_DASH_DASH] = ACTIONS(121), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(123), + [anon_sym_sealed] = ACTIONS(123), + [anon_sym_annotation] = ACTIONS(123), + [anon_sym_data] = ACTIONS(123), + [anon_sym_inner] = ACTIONS(123), + [anon_sym_value] = ACTIONS(123), + [anon_sym_override] = ACTIONS(123), + [anon_sym_lateinit] = ACTIONS(123), + [anon_sym_public] = ACTIONS(123), + [anon_sym_private] = ACTIONS(123), + [anon_sym_internal] = ACTIONS(123), + [anon_sym_protected] = ACTIONS(123), + [anon_sym_tailrec] = ACTIONS(123), + [anon_sym_operator] = ACTIONS(123), + [anon_sym_infix] = ACTIONS(123), + [anon_sym_inline] = ACTIONS(123), + [anon_sym_external] = ACTIONS(123), + [sym_property_modifier] = ACTIONS(123), + [anon_sym_abstract] = ACTIONS(123), + [anon_sym_final] = ACTIONS(123), + [anon_sym_open] = ACTIONS(123), + [anon_sym_vararg] = ACTIONS(123), + [anon_sym_noinline] = ACTIONS(123), + [anon_sym_crossinline] = ACTIONS(123), + [anon_sym_expect] = ACTIONS(123), + [anon_sym_actual] = ACTIONS(123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(121), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), }, [3944] = { - [sym__alpha_identifier] = ACTIONS(4888), - [anon_sym_AT] = ACTIONS(4890), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_as] = ACTIONS(4888), - [anon_sym_EQ] = ACTIONS(4888), - [anon_sym_LBRACE] = ACTIONS(4890), - [anon_sym_RBRACE] = ACTIONS(4890), - [anon_sym_LPAREN] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_where] = ACTIONS(4888), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_get] = ACTIONS(4888), - [anon_sym_set] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4888), - [sym_label] = ACTIONS(4890), - [anon_sym_in] = ACTIONS(4888), - [anon_sym_DOT_DOT] = ACTIONS(4890), - [anon_sym_QMARK_COLON] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_else] = ACTIONS(4888), - [anon_sym_COLON_COLON] = ACTIONS(4890), - [anon_sym_PLUS_EQ] = ACTIONS(4890), - [anon_sym_DASH_EQ] = ACTIONS(4890), - [anon_sym_STAR_EQ] = ACTIONS(4890), - [anon_sym_SLASH_EQ] = ACTIONS(4890), - [anon_sym_PERCENT_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4888), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4890), - [anon_sym_EQ_EQ] = ACTIONS(4888), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ] = ACTIONS(4890), - [anon_sym_GT_EQ] = ACTIONS(4890), - [anon_sym_BANGin] = ACTIONS(4890), - [anon_sym_is] = ACTIONS(4888), - [anon_sym_BANGis] = ACTIONS(4890), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4888), - [anon_sym_as_QMARK] = ACTIONS(4890), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_BANG_BANG] = ACTIONS(4890), - [anon_sym_suspend] = ACTIONS(4888), - [anon_sym_sealed] = ACTIONS(4888), - [anon_sym_annotation] = ACTIONS(4888), - [anon_sym_data] = ACTIONS(4888), - [anon_sym_inner] = ACTIONS(4888), - [anon_sym_value] = ACTIONS(4888), - [anon_sym_override] = ACTIONS(4888), - [anon_sym_lateinit] = ACTIONS(4888), - [anon_sym_public] = ACTIONS(4888), - [anon_sym_private] = ACTIONS(4888), - [anon_sym_internal] = ACTIONS(4888), - [anon_sym_protected] = ACTIONS(4888), - [anon_sym_tailrec] = ACTIONS(4888), - [anon_sym_operator] = ACTIONS(4888), - [anon_sym_infix] = ACTIONS(4888), - [anon_sym_inline] = ACTIONS(4888), - [anon_sym_external] = ACTIONS(4888), - [sym_property_modifier] = ACTIONS(4888), - [anon_sym_abstract] = ACTIONS(4888), - [anon_sym_final] = ACTIONS(4888), - [anon_sym_open] = ACTIONS(4888), - [anon_sym_vararg] = ACTIONS(4888), - [anon_sym_noinline] = ACTIONS(4888), - [anon_sym_crossinline] = ACTIONS(4888), - [anon_sym_expect] = ACTIONS(4888), - [anon_sym_actual] = ACTIONS(4888), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4890), - [sym__automatic_semicolon] = ACTIONS(4890), - [sym_safe_nav] = ACTIONS(4890), + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3945] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(5032), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(5034), - [anon_sym_DASH_EQ] = ACTIONS(5034), - [anon_sym_STAR_EQ] = ACTIONS(5034), - [anon_sym_SLASH_EQ] = ACTIONS(5034), - [anon_sym_PERCENT_EQ] = ACTIONS(5034), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), + [sym__alpha_identifier] = ACTIONS(4918), + [anon_sym_AT] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4918), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4918), + [anon_sym_where] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_get] = ACTIONS(4918), + [anon_sym_set] = ACTIONS(4918), + [anon_sym_STAR] = ACTIONS(4918), + [sym_label] = ACTIONS(4920), + [anon_sym_in] = ACTIONS(4918), + [anon_sym_DOT_DOT] = ACTIONS(4920), + [anon_sym_QMARK_COLON] = ACTIONS(4920), + [anon_sym_AMP_AMP] = ACTIONS(4920), + [anon_sym_PIPE_PIPE] = ACTIONS(4920), + [anon_sym_else] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_PLUS_EQ] = ACTIONS(4920), + [anon_sym_DASH_EQ] = ACTIONS(4920), + [anon_sym_STAR_EQ] = ACTIONS(4920), + [anon_sym_SLASH_EQ] = ACTIONS(4920), + [anon_sym_PERCENT_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4918), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ] = ACTIONS(4918), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_BANGin] = ACTIONS(4920), + [anon_sym_is] = ACTIONS(4918), + [anon_sym_BANGis] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4918), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4918), + [anon_sym_PERCENT] = ACTIONS(4918), + [anon_sym_as_QMARK] = ACTIONS(4920), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_BANG_BANG] = ACTIONS(4920), + [anon_sym_suspend] = ACTIONS(4918), + [anon_sym_sealed] = ACTIONS(4918), + [anon_sym_annotation] = ACTIONS(4918), + [anon_sym_data] = ACTIONS(4918), + [anon_sym_inner] = ACTIONS(4918), + [anon_sym_value] = ACTIONS(4918), + [anon_sym_override] = ACTIONS(4918), + [anon_sym_lateinit] = ACTIONS(4918), + [anon_sym_public] = ACTIONS(4918), + [anon_sym_private] = ACTIONS(4918), + [anon_sym_internal] = ACTIONS(4918), + [anon_sym_protected] = ACTIONS(4918), + [anon_sym_tailrec] = ACTIONS(4918), + [anon_sym_operator] = ACTIONS(4918), + [anon_sym_infix] = ACTIONS(4918), + [anon_sym_inline] = ACTIONS(4918), + [anon_sym_external] = ACTIONS(4918), + [sym_property_modifier] = ACTIONS(4918), + [anon_sym_abstract] = ACTIONS(4918), + [anon_sym_final] = ACTIONS(4918), + [anon_sym_open] = ACTIONS(4918), + [anon_sym_vararg] = ACTIONS(4918), + [anon_sym_noinline] = ACTIONS(4918), + [anon_sym_crossinline] = ACTIONS(4918), + [anon_sym_expect] = ACTIONS(4918), + [anon_sym_actual] = ACTIONS(4918), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4920), + [sym__automatic_semicolon] = ACTIONS(4920), + [sym_safe_nav] = ACTIONS(4920), [sym_multiline_comment] = ACTIONS(3), }, [3946] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3961), - [sym__alpha_identifier] = ACTIONS(4740), - [anon_sym_AT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4740), - [anon_sym_fun] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(7259), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_where] = ACTIONS(4740), - [anon_sym_object] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4740), - [anon_sym_set] = ACTIONS(4740), - [anon_sym_this] = ACTIONS(4740), - [anon_sym_super] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4742), - [sym_label] = ACTIONS(4740), - [anon_sym_in] = ACTIONS(4740), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [anon_sym_QMARK_COLON] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_null] = ACTIONS(4740), - [anon_sym_if] = ACTIONS(4740), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_when] = ACTIONS(4740), - [anon_sym_try] = ACTIONS(4740), - [anon_sym_throw] = ACTIONS(4740), - [anon_sym_return] = ACTIONS(4740), - [anon_sym_continue] = ACTIONS(4740), - [anon_sym_break] = ACTIONS(4740), - [anon_sym_COLON_COLON] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT_EQ] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_BANGin] = ACTIONS(4742), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_BANGis] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4742), - [anon_sym_as_QMARK] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4742), - [anon_sym_BANG] = ACTIONS(4740), - [anon_sym_BANG_BANG] = ACTIONS(4742), - [anon_sym_data] = ACTIONS(4740), - [anon_sym_inner] = ACTIONS(4740), - [anon_sym_value] = ACTIONS(4740), - [anon_sym_expect] = ACTIONS(4740), - [anon_sym_actual] = ACTIONS(4740), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4742), - [anon_sym_continue_AT] = ACTIONS(4742), - [anon_sym_break_AT] = ACTIONS(4742), - [anon_sym_this_AT] = ACTIONS(4742), - [anon_sym_super_AT] = ACTIONS(4742), - [sym_real_literal] = ACTIONS(4742), - [sym_integer_literal] = ACTIONS(4740), - [sym_hex_literal] = ACTIONS(4742), - [sym_bin_literal] = ACTIONS(4742), - [anon_sym_true] = ACTIONS(4740), - [anon_sym_false] = ACTIONS(4740), - [anon_sym_SQUOTE] = ACTIONS(4742), - [sym__backtick_identifier] = ACTIONS(4742), - [sym__automatic_semicolon] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), + [sym__alpha_identifier] = ACTIONS(5159), + [anon_sym_AT] = ACTIONS(5161), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym_as] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5161), + [anon_sym_RBRACE] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5161), + [anon_sym_COMMA] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5159), + [anon_sym_GT] = ACTIONS(5159), + [anon_sym_where] = ACTIONS(5159), + [anon_sym_DOT] = ACTIONS(5159), + [anon_sym_SEMI] = ACTIONS(5161), + [anon_sym_get] = ACTIONS(5159), + [anon_sym_set] = ACTIONS(5159), + [anon_sym_STAR] = ACTIONS(5159), + [sym_label] = ACTIONS(5161), + [anon_sym_in] = ACTIONS(5159), + [anon_sym_DOT_DOT] = ACTIONS(5161), + [anon_sym_QMARK_COLON] = ACTIONS(5161), + [anon_sym_AMP_AMP] = ACTIONS(5161), + [anon_sym_PIPE_PIPE] = ACTIONS(5161), + [anon_sym_else] = ACTIONS(5159), + [anon_sym_COLON_COLON] = ACTIONS(5161), + [anon_sym_PLUS_EQ] = ACTIONS(5161), + [anon_sym_DASH_EQ] = ACTIONS(5161), + [anon_sym_STAR_EQ] = ACTIONS(5161), + [anon_sym_SLASH_EQ] = ACTIONS(5161), + [anon_sym_PERCENT_EQ] = ACTIONS(5161), + [anon_sym_BANG_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5161), + [anon_sym_EQ_EQ] = ACTIONS(5159), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5161), + [anon_sym_LT_EQ] = ACTIONS(5161), + [anon_sym_GT_EQ] = ACTIONS(5161), + [anon_sym_BANGin] = ACTIONS(5161), + [anon_sym_is] = ACTIONS(5159), + [anon_sym_BANGis] = ACTIONS(5161), + [anon_sym_PLUS] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5159), + [anon_sym_SLASH] = ACTIONS(5159), + [anon_sym_PERCENT] = ACTIONS(5159), + [anon_sym_as_QMARK] = ACTIONS(5161), + [anon_sym_PLUS_PLUS] = ACTIONS(5161), + [anon_sym_DASH_DASH] = ACTIONS(5161), + [anon_sym_BANG_BANG] = ACTIONS(5161), + [anon_sym_suspend] = ACTIONS(5159), + [anon_sym_sealed] = ACTIONS(5159), + [anon_sym_annotation] = ACTIONS(5159), + [anon_sym_data] = ACTIONS(5159), + [anon_sym_inner] = ACTIONS(5159), + [anon_sym_value] = ACTIONS(5159), + [anon_sym_override] = ACTIONS(5159), + [anon_sym_lateinit] = ACTIONS(5159), + [anon_sym_public] = ACTIONS(5159), + [anon_sym_private] = ACTIONS(5159), + [anon_sym_internal] = ACTIONS(5159), + [anon_sym_protected] = ACTIONS(5159), + [anon_sym_tailrec] = ACTIONS(5159), + [anon_sym_operator] = ACTIONS(5159), + [anon_sym_infix] = ACTIONS(5159), + [anon_sym_inline] = ACTIONS(5159), + [anon_sym_external] = ACTIONS(5159), + [sym_property_modifier] = ACTIONS(5159), + [anon_sym_abstract] = ACTIONS(5159), + [anon_sym_final] = ACTIONS(5159), + [anon_sym_open] = ACTIONS(5159), + [anon_sym_vararg] = ACTIONS(5159), + [anon_sym_noinline] = ACTIONS(5159), + [anon_sym_crossinline] = ACTIONS(5159), + [anon_sym_expect] = ACTIONS(5159), + [anon_sym_actual] = ACTIONS(5159), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5161), + [sym__automatic_semicolon] = ACTIONS(5161), + [sym_safe_nav] = ACTIONS(5161), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4742), }, [3947] = { - [sym__alpha_identifier] = ACTIONS(7261), - [anon_sym_AT] = ACTIONS(7263), - [anon_sym_LBRACK] = ACTIONS(7263), - [anon_sym_typealias] = ACTIONS(7261), - [anon_sym_class] = ACTIONS(7261), - [anon_sym_fun] = ACTIONS(7261), - [anon_sym_interface] = ACTIONS(7261), - [anon_sym_enum] = ACTIONS(7261), - [anon_sym_LBRACE] = ACTIONS(7263), - [anon_sym_LPAREN] = ACTIONS(7263), - [anon_sym_val] = ACTIONS(7261), - [anon_sym_var] = ACTIONS(7261), - [anon_sym_object] = ACTIONS(7261), - [anon_sym_get] = ACTIONS(7261), - [anon_sym_set] = ACTIONS(7261), - [anon_sym_this] = ACTIONS(7261), - [anon_sym_super] = ACTIONS(7261), - [anon_sym_STAR] = ACTIONS(7263), - [sym_label] = ACTIONS(7261), - [anon_sym_for] = ACTIONS(7261), - [anon_sym_while] = ACTIONS(7261), - [anon_sym_do] = ACTIONS(7261), - [anon_sym_null] = ACTIONS(7261), - [anon_sym_if] = ACTIONS(7261), - [anon_sym_when] = ACTIONS(7261), - [anon_sym_try] = ACTIONS(7261), - [anon_sym_throw] = ACTIONS(7261), - [anon_sym_return] = ACTIONS(7261), - [anon_sym_continue] = ACTIONS(7261), - [anon_sym_break] = ACTIONS(7261), - [anon_sym_COLON_COLON] = ACTIONS(7263), - [anon_sym_PLUS] = ACTIONS(7261), - [anon_sym_DASH] = ACTIONS(7261), - [anon_sym_PLUS_PLUS] = ACTIONS(7263), - [anon_sym_DASH_DASH] = ACTIONS(7263), - [anon_sym_BANG] = ACTIONS(7263), - [anon_sym_suspend] = ACTIONS(7261), - [anon_sym_sealed] = ACTIONS(7261), - [anon_sym_annotation] = ACTIONS(7261), - [anon_sym_data] = ACTIONS(7261), - [anon_sym_inner] = ACTIONS(7261), - [anon_sym_value] = ACTIONS(7261), - [anon_sym_override] = ACTIONS(7261), - [anon_sym_lateinit] = ACTIONS(7261), - [anon_sym_public] = ACTIONS(7261), - [anon_sym_private] = ACTIONS(7261), - [anon_sym_internal] = ACTIONS(7261), - [anon_sym_protected] = ACTIONS(7261), - [anon_sym_tailrec] = ACTIONS(7261), - [anon_sym_operator] = ACTIONS(7261), - [anon_sym_infix] = ACTIONS(7261), - [anon_sym_inline] = ACTIONS(7261), - [anon_sym_external] = ACTIONS(7261), - [sym_property_modifier] = ACTIONS(7261), - [anon_sym_abstract] = ACTIONS(7261), - [anon_sym_final] = ACTIONS(7261), - [anon_sym_open] = ACTIONS(7261), - [anon_sym_vararg] = ACTIONS(7261), - [anon_sym_noinline] = ACTIONS(7261), - [anon_sym_crossinline] = ACTIONS(7261), - [anon_sym_expect] = ACTIONS(7261), - [anon_sym_actual] = ACTIONS(7261), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7263), - [anon_sym_continue_AT] = ACTIONS(7263), - [anon_sym_break_AT] = ACTIONS(7263), - [anon_sym_this_AT] = ACTIONS(7263), - [anon_sym_super_AT] = ACTIONS(7263), - [sym_real_literal] = ACTIONS(7263), - [sym_integer_literal] = ACTIONS(7261), - [sym_hex_literal] = ACTIONS(7263), - [sym_bin_literal] = ACTIONS(7263), - [anon_sym_true] = ACTIONS(7261), - [anon_sym_false] = ACTIONS(7261), - [anon_sym_SQUOTE] = ACTIONS(7263), - [sym__backtick_identifier] = ACTIONS(7263), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7263), + [sym__alpha_identifier] = ACTIONS(5059), + [anon_sym_AT] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [anon_sym_as] = ACTIONS(5059), + [anon_sym_EQ] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5061), + [anon_sym_RBRACE] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5061), + [anon_sym_COMMA] = ACTIONS(5061), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_where] = ACTIONS(5059), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [anon_sym_get] = ACTIONS(5059), + [anon_sym_set] = ACTIONS(5059), + [anon_sym_STAR] = ACTIONS(5059), + [sym_label] = ACTIONS(5061), + [anon_sym_in] = ACTIONS(5059), + [anon_sym_DOT_DOT] = ACTIONS(5061), + [anon_sym_QMARK_COLON] = ACTIONS(5061), + [anon_sym_AMP_AMP] = ACTIONS(5061), + [anon_sym_PIPE_PIPE] = ACTIONS(5061), + [anon_sym_else] = ACTIONS(5059), + [anon_sym_COLON_COLON] = ACTIONS(5061), + [anon_sym_PLUS_EQ] = ACTIONS(5061), + [anon_sym_DASH_EQ] = ACTIONS(5061), + [anon_sym_STAR_EQ] = ACTIONS(5061), + [anon_sym_SLASH_EQ] = ACTIONS(5061), + [anon_sym_PERCENT_EQ] = ACTIONS(5061), + [anon_sym_BANG_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5061), + [anon_sym_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5061), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_BANGin] = ACTIONS(5061), + [anon_sym_is] = ACTIONS(5059), + [anon_sym_BANGis] = ACTIONS(5061), + [anon_sym_PLUS] = ACTIONS(5059), + [anon_sym_DASH] = ACTIONS(5059), + [anon_sym_SLASH] = ACTIONS(5059), + [anon_sym_PERCENT] = ACTIONS(5059), + [anon_sym_as_QMARK] = ACTIONS(5061), + [anon_sym_PLUS_PLUS] = ACTIONS(5061), + [anon_sym_DASH_DASH] = ACTIONS(5061), + [anon_sym_BANG_BANG] = ACTIONS(5061), + [anon_sym_suspend] = ACTIONS(5059), + [anon_sym_sealed] = ACTIONS(5059), + [anon_sym_annotation] = ACTIONS(5059), + [anon_sym_data] = ACTIONS(5059), + [anon_sym_inner] = ACTIONS(5059), + [anon_sym_value] = ACTIONS(5059), + [anon_sym_override] = ACTIONS(5059), + [anon_sym_lateinit] = ACTIONS(5059), + [anon_sym_public] = ACTIONS(5059), + [anon_sym_private] = ACTIONS(5059), + [anon_sym_internal] = ACTIONS(5059), + [anon_sym_protected] = ACTIONS(5059), + [anon_sym_tailrec] = ACTIONS(5059), + [anon_sym_operator] = ACTIONS(5059), + [anon_sym_infix] = ACTIONS(5059), + [anon_sym_inline] = ACTIONS(5059), + [anon_sym_external] = ACTIONS(5059), + [sym_property_modifier] = ACTIONS(5059), + [anon_sym_abstract] = ACTIONS(5059), + [anon_sym_final] = ACTIONS(5059), + [anon_sym_open] = ACTIONS(5059), + [anon_sym_vararg] = ACTIONS(5059), + [anon_sym_noinline] = ACTIONS(5059), + [anon_sym_crossinline] = ACTIONS(5059), + [anon_sym_expect] = ACTIONS(5059), + [anon_sym_actual] = ACTIONS(5059), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5061), + [sym__automatic_semicolon] = ACTIONS(5061), + [sym_safe_nav] = ACTIONS(5061), + [sym_multiline_comment] = ACTIONS(3), }, [3948] = { - [sym__alpha_identifier] = ACTIONS(3130), - [anon_sym_AT] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_as] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3130), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3130), - [anon_sym_set] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3130), - [sym_label] = ACTIONS(3132), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(3132), - [anon_sym_QMARK_COLON] = ACTIONS(3132), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_SLASH] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_as_QMARK] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), - [anon_sym_BANG_BANG] = ACTIONS(3132), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_annotation] = ACTIONS(3130), - [anon_sym_data] = ACTIONS(3130), - [anon_sym_inner] = ACTIONS(3130), - [anon_sym_value] = ACTIONS(3130), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_lateinit] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_tailrec] = ACTIONS(3130), - [anon_sym_operator] = ACTIONS(3130), - [anon_sym_infix] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_external] = ACTIONS(3130), - [sym_property_modifier] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3130), - [anon_sym_noinline] = ACTIONS(3130), - [anon_sym_crossinline] = ACTIONS(3130), - [anon_sym_expect] = ACTIONS(3130), - [anon_sym_actual] = ACTIONS(3130), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3132), - [sym__automatic_semicolon] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(3132), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4030), + [anon_sym_PLUS_EQ] = ACTIONS(4030), + [anon_sym_DASH_EQ] = ACTIONS(4030), + [anon_sym_STAR_EQ] = ACTIONS(4030), + [anon_sym_SLASH_EQ] = ACTIONS(4030), + [anon_sym_PERCENT_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4030), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4030), [sym_multiline_comment] = ACTIONS(3), }, [3949] = { - [sym__alpha_identifier] = ACTIONS(5024), - [anon_sym_AT] = ACTIONS(5026), - [anon_sym_LBRACK] = ACTIONS(5026), - [anon_sym_as] = ACTIONS(5024), - [anon_sym_EQ] = ACTIONS(5024), - [anon_sym_LBRACE] = ACTIONS(5026), - [anon_sym_RBRACE] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(5026), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LT] = ACTIONS(5024), - [anon_sym_GT] = ACTIONS(5024), - [anon_sym_where] = ACTIONS(5024), - [anon_sym_DOT] = ACTIONS(5024), - [anon_sym_SEMI] = ACTIONS(5026), - [anon_sym_get] = ACTIONS(5024), - [anon_sym_set] = ACTIONS(5024), - [anon_sym_STAR] = ACTIONS(5024), - [sym_label] = ACTIONS(5026), - [anon_sym_in] = ACTIONS(5024), - [anon_sym_DOT_DOT] = ACTIONS(5026), - [anon_sym_QMARK_COLON] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5026), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_else] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5026), - [anon_sym_PLUS_EQ] = ACTIONS(5026), - [anon_sym_DASH_EQ] = ACTIONS(5026), - [anon_sym_STAR_EQ] = ACTIONS(5026), - [anon_sym_SLASH_EQ] = ACTIONS(5026), - [anon_sym_PERCENT_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5024), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), - [anon_sym_EQ_EQ] = ACTIONS(5024), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), - [anon_sym_LT_EQ] = ACTIONS(5026), - [anon_sym_GT_EQ] = ACTIONS(5026), - [anon_sym_BANGin] = ACTIONS(5026), - [anon_sym_is] = ACTIONS(5024), - [anon_sym_BANGis] = ACTIONS(5026), - [anon_sym_PLUS] = ACTIONS(5024), - [anon_sym_DASH] = ACTIONS(5024), - [anon_sym_SLASH] = ACTIONS(5024), - [anon_sym_PERCENT] = ACTIONS(5024), - [anon_sym_as_QMARK] = ACTIONS(5026), - [anon_sym_PLUS_PLUS] = ACTIONS(5026), - [anon_sym_DASH_DASH] = ACTIONS(5026), - [anon_sym_BANG_BANG] = ACTIONS(5026), - [anon_sym_suspend] = ACTIONS(5024), - [anon_sym_sealed] = ACTIONS(5024), - [anon_sym_annotation] = ACTIONS(5024), - [anon_sym_data] = ACTIONS(5024), - [anon_sym_inner] = ACTIONS(5024), - [anon_sym_value] = ACTIONS(5024), - [anon_sym_override] = ACTIONS(5024), - [anon_sym_lateinit] = ACTIONS(5024), - [anon_sym_public] = ACTIONS(5024), - [anon_sym_private] = ACTIONS(5024), - [anon_sym_internal] = ACTIONS(5024), - [anon_sym_protected] = ACTIONS(5024), - [anon_sym_tailrec] = ACTIONS(5024), - [anon_sym_operator] = ACTIONS(5024), - [anon_sym_infix] = ACTIONS(5024), - [anon_sym_inline] = ACTIONS(5024), - [anon_sym_external] = ACTIONS(5024), - [sym_property_modifier] = ACTIONS(5024), - [anon_sym_abstract] = ACTIONS(5024), - [anon_sym_final] = ACTIONS(5024), - [anon_sym_open] = ACTIONS(5024), - [anon_sym_vararg] = ACTIONS(5024), - [anon_sym_noinline] = ACTIONS(5024), - [anon_sym_crossinline] = ACTIONS(5024), - [anon_sym_expect] = ACTIONS(5024), - [anon_sym_actual] = ACTIONS(5024), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5026), - [sym__automatic_semicolon] = ACTIONS(5026), - [sym_safe_nav] = ACTIONS(5026), + [sym_function_body] = STATE(3995), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), }, [3950] = { - [sym__alpha_identifier] = ACTIONS(4894), - [anon_sym_AT] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(4896), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_get] = ACTIONS(4894), - [anon_sym_set] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4894), - [sym_label] = ACTIONS(4896), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_QMARK_COLON] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_else] = ACTIONS(4894), - [anon_sym_COLON_COLON] = ACTIONS(4896), - [anon_sym_PLUS_EQ] = ACTIONS(4896), - [anon_sym_DASH_EQ] = ACTIONS(4896), - [anon_sym_STAR_EQ] = ACTIONS(4896), - [anon_sym_SLASH_EQ] = ACTIONS(4896), - [anon_sym_PERCENT_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_BANGin] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_BANGis] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_as_QMARK] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4896), - [anon_sym_DASH_DASH] = ACTIONS(4896), - [anon_sym_BANG_BANG] = ACTIONS(4896), - [anon_sym_suspend] = ACTIONS(4894), - [anon_sym_sealed] = ACTIONS(4894), - [anon_sym_annotation] = ACTIONS(4894), - [anon_sym_data] = ACTIONS(4894), - [anon_sym_inner] = ACTIONS(4894), - [anon_sym_value] = ACTIONS(4894), - [anon_sym_override] = ACTIONS(4894), - [anon_sym_lateinit] = ACTIONS(4894), - [anon_sym_public] = ACTIONS(4894), - [anon_sym_private] = ACTIONS(4894), - [anon_sym_internal] = ACTIONS(4894), - [anon_sym_protected] = ACTIONS(4894), - [anon_sym_tailrec] = ACTIONS(4894), - [anon_sym_operator] = ACTIONS(4894), - [anon_sym_infix] = ACTIONS(4894), - [anon_sym_inline] = ACTIONS(4894), - [anon_sym_external] = ACTIONS(4894), - [sym_property_modifier] = ACTIONS(4894), - [anon_sym_abstract] = ACTIONS(4894), - [anon_sym_final] = ACTIONS(4894), - [anon_sym_open] = ACTIONS(4894), - [anon_sym_vararg] = ACTIONS(4894), - [anon_sym_noinline] = ACTIONS(4894), - [anon_sym_crossinline] = ACTIONS(4894), - [anon_sym_expect] = ACTIONS(4894), - [anon_sym_actual] = ACTIONS(4894), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4896), - [sym__automatic_semicolon] = ACTIONS(4896), - [sym_safe_nav] = ACTIONS(4896), + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5051), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [sym_label] = ACTIONS(5053), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_suspend] = ACTIONS(5051), + [anon_sym_sealed] = ACTIONS(5051), + [anon_sym_annotation] = ACTIONS(5051), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_override] = ACTIONS(5051), + [anon_sym_lateinit] = ACTIONS(5051), + [anon_sym_public] = ACTIONS(5051), + [anon_sym_private] = ACTIONS(5051), + [anon_sym_internal] = ACTIONS(5051), + [anon_sym_protected] = ACTIONS(5051), + [anon_sym_tailrec] = ACTIONS(5051), + [anon_sym_operator] = ACTIONS(5051), + [anon_sym_infix] = ACTIONS(5051), + [anon_sym_inline] = ACTIONS(5051), + [anon_sym_external] = ACTIONS(5051), + [sym_property_modifier] = ACTIONS(5051), + [anon_sym_abstract] = ACTIONS(5051), + [anon_sym_final] = ACTIONS(5051), + [anon_sym_open] = ACTIONS(5051), + [anon_sym_vararg] = ACTIONS(5051), + [anon_sym_noinline] = ACTIONS(5051), + [anon_sym_crossinline] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5053), + [sym__automatic_semicolon] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), [sym_multiline_comment] = ACTIONS(3), }, [3951] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(7267), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3265), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), }, [3952] = { - [sym__alpha_identifier] = ACTIONS(4898), - [anon_sym_AT] = ACTIONS(4900), - [anon_sym_LBRACK] = ACTIONS(4900), - [anon_sym_as] = ACTIONS(4898), - [anon_sym_EQ] = ACTIONS(4898), - [anon_sym_LBRACE] = ACTIONS(4900), - [anon_sym_RBRACE] = ACTIONS(4900), - [anon_sym_LPAREN] = ACTIONS(4900), - [anon_sym_COMMA] = ACTIONS(4900), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_where] = ACTIONS(4898), - [anon_sym_DOT] = ACTIONS(4898), - [anon_sym_SEMI] = ACTIONS(4900), - [anon_sym_get] = ACTIONS(4898), - [anon_sym_set] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4898), - [sym_label] = ACTIONS(4900), - [anon_sym_in] = ACTIONS(4898), - [anon_sym_DOT_DOT] = ACTIONS(4900), - [anon_sym_QMARK_COLON] = ACTIONS(4900), - [anon_sym_AMP_AMP] = ACTIONS(4900), - [anon_sym_PIPE_PIPE] = ACTIONS(4900), - [anon_sym_else] = ACTIONS(4898), - [anon_sym_COLON_COLON] = ACTIONS(4900), - [anon_sym_PLUS_EQ] = ACTIONS(4900), - [anon_sym_DASH_EQ] = ACTIONS(4900), - [anon_sym_STAR_EQ] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(4900), - [anon_sym_PERCENT_EQ] = ACTIONS(4900), - [anon_sym_BANG_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4900), - [anon_sym_EQ_EQ] = ACTIONS(4898), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4900), - [anon_sym_LT_EQ] = ACTIONS(4900), - [anon_sym_GT_EQ] = ACTIONS(4900), - [anon_sym_BANGin] = ACTIONS(4900), - [anon_sym_is] = ACTIONS(4898), - [anon_sym_BANGis] = ACTIONS(4900), - [anon_sym_PLUS] = ACTIONS(4898), - [anon_sym_DASH] = ACTIONS(4898), - [anon_sym_SLASH] = ACTIONS(4898), - [anon_sym_PERCENT] = ACTIONS(4898), - [anon_sym_as_QMARK] = ACTIONS(4900), - [anon_sym_PLUS_PLUS] = ACTIONS(4900), - [anon_sym_DASH_DASH] = ACTIONS(4900), - [anon_sym_BANG_BANG] = ACTIONS(4900), - [anon_sym_suspend] = ACTIONS(4898), - [anon_sym_sealed] = ACTIONS(4898), - [anon_sym_annotation] = ACTIONS(4898), - [anon_sym_data] = ACTIONS(4898), - [anon_sym_inner] = ACTIONS(4898), - [anon_sym_value] = ACTIONS(4898), - [anon_sym_override] = ACTIONS(4898), - [anon_sym_lateinit] = ACTIONS(4898), - [anon_sym_public] = ACTIONS(4898), - [anon_sym_private] = ACTIONS(4898), - [anon_sym_internal] = ACTIONS(4898), - [anon_sym_protected] = ACTIONS(4898), - [anon_sym_tailrec] = ACTIONS(4898), - [anon_sym_operator] = ACTIONS(4898), - [anon_sym_infix] = ACTIONS(4898), - [anon_sym_inline] = ACTIONS(4898), - [anon_sym_external] = ACTIONS(4898), - [sym_property_modifier] = ACTIONS(4898), - [anon_sym_abstract] = ACTIONS(4898), - [anon_sym_final] = ACTIONS(4898), - [anon_sym_open] = ACTIONS(4898), - [anon_sym_vararg] = ACTIONS(4898), - [anon_sym_noinline] = ACTIONS(4898), - [anon_sym_crossinline] = ACTIONS(4898), - [anon_sym_expect] = ACTIONS(4898), - [anon_sym_actual] = ACTIONS(4898), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4900), - [sym__automatic_semicolon] = ACTIONS(4900), - [sym_safe_nav] = ACTIONS(4900), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4469), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), [sym_multiline_comment] = ACTIONS(3), }, [3953] = { - [sym__alpha_identifier] = ACTIONS(4902), - [anon_sym_AT] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(4904), - [anon_sym_as] = ACTIONS(4902), - [anon_sym_EQ] = ACTIONS(4902), - [anon_sym_LBRACE] = ACTIONS(4904), - [anon_sym_RBRACE] = ACTIONS(4904), - [anon_sym_LPAREN] = ACTIONS(4904), - [anon_sym_COMMA] = ACTIONS(4904), - [anon_sym_LT] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4902), - [anon_sym_where] = ACTIONS(4902), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_get] = ACTIONS(4902), - [anon_sym_set] = ACTIONS(4902), - [anon_sym_STAR] = ACTIONS(4902), - [sym_label] = ACTIONS(4904), - [anon_sym_in] = ACTIONS(4902), - [anon_sym_DOT_DOT] = ACTIONS(4904), - [anon_sym_QMARK_COLON] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_else] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_PLUS_EQ] = ACTIONS(4904), - [anon_sym_DASH_EQ] = ACTIONS(4904), - [anon_sym_STAR_EQ] = ACTIONS(4904), - [anon_sym_SLASH_EQ] = ACTIONS(4904), - [anon_sym_PERCENT_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4902), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4904), - [anon_sym_EQ_EQ] = ACTIONS(4902), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ] = ACTIONS(4904), - [anon_sym_GT_EQ] = ACTIONS(4904), - [anon_sym_BANGin] = ACTIONS(4904), - [anon_sym_is] = ACTIONS(4902), - [anon_sym_BANGis] = ACTIONS(4904), - [anon_sym_PLUS] = ACTIONS(4902), - [anon_sym_DASH] = ACTIONS(4902), - [anon_sym_SLASH] = ACTIONS(4902), - [anon_sym_PERCENT] = ACTIONS(4902), - [anon_sym_as_QMARK] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_BANG_BANG] = ACTIONS(4904), - [anon_sym_suspend] = ACTIONS(4902), - [anon_sym_sealed] = ACTIONS(4902), - [anon_sym_annotation] = ACTIONS(4902), - [anon_sym_data] = ACTIONS(4902), - [anon_sym_inner] = ACTIONS(4902), - [anon_sym_value] = ACTIONS(4902), - [anon_sym_override] = ACTIONS(4902), - [anon_sym_lateinit] = ACTIONS(4902), - [anon_sym_public] = ACTIONS(4902), - [anon_sym_private] = ACTIONS(4902), - [anon_sym_internal] = ACTIONS(4902), - [anon_sym_protected] = ACTIONS(4902), - [anon_sym_tailrec] = ACTIONS(4902), - [anon_sym_operator] = ACTIONS(4902), - [anon_sym_infix] = ACTIONS(4902), - [anon_sym_inline] = ACTIONS(4902), - [anon_sym_external] = ACTIONS(4902), - [sym_property_modifier] = ACTIONS(4902), - [anon_sym_abstract] = ACTIONS(4902), - [anon_sym_final] = ACTIONS(4902), - [anon_sym_open] = ACTIONS(4902), - [anon_sym_vararg] = ACTIONS(4902), - [anon_sym_noinline] = ACTIONS(4902), - [anon_sym_crossinline] = ACTIONS(4902), - [anon_sym_expect] = ACTIONS(4902), - [anon_sym_actual] = ACTIONS(4902), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4904), - [sym__automatic_semicolon] = ACTIONS(4904), - [sym_safe_nav] = ACTIONS(4904), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(4218), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [3954] = { - [sym__alpha_identifier] = ACTIONS(4130), - [anon_sym_AT] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_as] = ACTIONS(4130), - [anon_sym_EQ] = ACTIONS(4130), - [anon_sym_LBRACE] = ACTIONS(4132), - [anon_sym_RBRACE] = ACTIONS(4132), - [anon_sym_LPAREN] = ACTIONS(4132), - [anon_sym_COMMA] = ACTIONS(4132), - [anon_sym_LT] = ACTIONS(4130), - [anon_sym_GT] = ACTIONS(4130), - [anon_sym_where] = ACTIONS(4130), - [anon_sym_DOT] = ACTIONS(4130), - [anon_sym_SEMI] = ACTIONS(4132), - [anon_sym_get] = ACTIONS(4130), - [anon_sym_set] = ACTIONS(4130), - [anon_sym_STAR] = ACTIONS(4130), - [sym_label] = ACTIONS(4132), - [anon_sym_in] = ACTIONS(4130), - [anon_sym_DOT_DOT] = ACTIONS(4132), - [anon_sym_QMARK_COLON] = ACTIONS(4132), - [anon_sym_AMP_AMP] = ACTIONS(4132), - [anon_sym_PIPE_PIPE] = ACTIONS(4132), - [anon_sym_else] = ACTIONS(4130), - [anon_sym_COLON_COLON] = ACTIONS(4132), - [anon_sym_PLUS_EQ] = ACTIONS(4132), - [anon_sym_DASH_EQ] = ACTIONS(4132), - [anon_sym_STAR_EQ] = ACTIONS(4132), - [anon_sym_SLASH_EQ] = ACTIONS(4132), - [anon_sym_PERCENT_EQ] = ACTIONS(4132), - [anon_sym_BANG_EQ] = ACTIONS(4130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4132), - [anon_sym_EQ_EQ] = ACTIONS(4130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4132), - [anon_sym_LT_EQ] = ACTIONS(4132), - [anon_sym_GT_EQ] = ACTIONS(4132), - [anon_sym_BANGin] = ACTIONS(4132), - [anon_sym_is] = ACTIONS(4130), - [anon_sym_BANGis] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4130), - [anon_sym_DASH] = ACTIONS(4130), - [anon_sym_SLASH] = ACTIONS(4130), - [anon_sym_PERCENT] = ACTIONS(4130), - [anon_sym_as_QMARK] = ACTIONS(4132), - [anon_sym_PLUS_PLUS] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4132), - [anon_sym_BANG_BANG] = ACTIONS(4132), - [anon_sym_suspend] = ACTIONS(4130), - [anon_sym_sealed] = ACTIONS(4130), - [anon_sym_annotation] = ACTIONS(4130), - [anon_sym_data] = ACTIONS(4130), - [anon_sym_inner] = ACTIONS(4130), - [anon_sym_value] = ACTIONS(4130), - [anon_sym_override] = ACTIONS(4130), - [anon_sym_lateinit] = ACTIONS(4130), - [anon_sym_public] = ACTIONS(4130), - [anon_sym_private] = ACTIONS(4130), - [anon_sym_internal] = ACTIONS(4130), - [anon_sym_protected] = ACTIONS(4130), - [anon_sym_tailrec] = ACTIONS(4130), - [anon_sym_operator] = ACTIONS(4130), - [anon_sym_infix] = ACTIONS(4130), - [anon_sym_inline] = ACTIONS(4130), - [anon_sym_external] = ACTIONS(4130), - [sym_property_modifier] = ACTIONS(4130), - [anon_sym_abstract] = ACTIONS(4130), - [anon_sym_final] = ACTIONS(4130), - [anon_sym_open] = ACTIONS(4130), - [anon_sym_vararg] = ACTIONS(4130), - [anon_sym_noinline] = ACTIONS(4130), - [anon_sym_crossinline] = ACTIONS(4130), - [anon_sym_expect] = ACTIONS(4130), - [anon_sym_actual] = ACTIONS(4130), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4132), - [sym__automatic_semicolon] = ACTIONS(4132), - [sym_safe_nav] = ACTIONS(4132), + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_RBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [anon_sym_DASH_GT] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [3955] = { - [sym__alpha_identifier] = ACTIONS(5193), - [anon_sym_AT] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_as] = ACTIONS(5193), - [anon_sym_EQ] = ACTIONS(5193), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_RBRACE] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_where] = ACTIONS(5193), - [anon_sym_DOT] = ACTIONS(5193), - [anon_sym_SEMI] = ACTIONS(5195), - [anon_sym_get] = ACTIONS(5193), - [anon_sym_set] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [sym_label] = ACTIONS(5195), - [anon_sym_in] = ACTIONS(5193), - [anon_sym_DOT_DOT] = ACTIONS(5195), - [anon_sym_QMARK_COLON] = ACTIONS(5195), - [anon_sym_AMP_AMP] = ACTIONS(5195), - [anon_sym_PIPE_PIPE] = ACTIONS(5195), - [anon_sym_else] = ACTIONS(5193), - [anon_sym_COLON_COLON] = ACTIONS(5195), - [anon_sym_PLUS_EQ] = ACTIONS(5195), - [anon_sym_DASH_EQ] = ACTIONS(5195), - [anon_sym_STAR_EQ] = ACTIONS(5195), - [anon_sym_SLASH_EQ] = ACTIONS(5195), - [anon_sym_PERCENT_EQ] = ACTIONS(5195), - [anon_sym_BANG_EQ] = ACTIONS(5193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5195), - [anon_sym_EQ_EQ] = ACTIONS(5193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5195), - [anon_sym_LT_EQ] = ACTIONS(5195), - [anon_sym_GT_EQ] = ACTIONS(5195), - [anon_sym_BANGin] = ACTIONS(5195), - [anon_sym_is] = ACTIONS(5193), - [anon_sym_BANGis] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_PERCENT] = ACTIONS(5193), - [anon_sym_as_QMARK] = ACTIONS(5195), - [anon_sym_PLUS_PLUS] = ACTIONS(5195), - [anon_sym_DASH_DASH] = ACTIONS(5195), - [anon_sym_BANG_BANG] = ACTIONS(5195), - [anon_sym_suspend] = ACTIONS(5193), - [anon_sym_sealed] = ACTIONS(5193), - [anon_sym_annotation] = ACTIONS(5193), - [anon_sym_data] = ACTIONS(5193), - [anon_sym_inner] = ACTIONS(5193), - [anon_sym_value] = ACTIONS(5193), - [anon_sym_override] = ACTIONS(5193), - [anon_sym_lateinit] = ACTIONS(5193), - [anon_sym_public] = ACTIONS(5193), - [anon_sym_private] = ACTIONS(5193), - [anon_sym_internal] = ACTIONS(5193), - [anon_sym_protected] = ACTIONS(5193), - [anon_sym_tailrec] = ACTIONS(5193), - [anon_sym_operator] = ACTIONS(5193), - [anon_sym_infix] = ACTIONS(5193), - [anon_sym_inline] = ACTIONS(5193), - [anon_sym_external] = ACTIONS(5193), - [sym_property_modifier] = ACTIONS(5193), - [anon_sym_abstract] = ACTIONS(5193), - [anon_sym_final] = ACTIONS(5193), - [anon_sym_open] = ACTIONS(5193), - [anon_sym_vararg] = ACTIONS(5193), - [anon_sym_noinline] = ACTIONS(5193), - [anon_sym_crossinline] = ACTIONS(5193), - [anon_sym_expect] = ACTIONS(5193), - [anon_sym_actual] = ACTIONS(5193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5195), - [sym__automatic_semicolon] = ACTIONS(5195), - [sym_safe_nav] = ACTIONS(5195), + [sym__alpha_identifier] = ACTIONS(5043), + [anon_sym_AT] = ACTIONS(5045), + [anon_sym_LBRACK] = ACTIONS(5045), + [anon_sym_as] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5045), + [anon_sym_RBRACE] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5045), + [anon_sym_COMMA] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5043), + [anon_sym_GT] = ACTIONS(5043), + [anon_sym_where] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5043), + [anon_sym_SEMI] = ACTIONS(5045), + [anon_sym_get] = ACTIONS(5043), + [anon_sym_set] = ACTIONS(5043), + [anon_sym_STAR] = ACTIONS(5043), + [sym_label] = ACTIONS(5045), + [anon_sym_in] = ACTIONS(5043), + [anon_sym_DOT_DOT] = ACTIONS(5045), + [anon_sym_QMARK_COLON] = ACTIONS(5045), + [anon_sym_AMP_AMP] = ACTIONS(5045), + [anon_sym_PIPE_PIPE] = ACTIONS(5045), + [anon_sym_else] = ACTIONS(5043), + [anon_sym_COLON_COLON] = ACTIONS(5045), + [anon_sym_PLUS_EQ] = ACTIONS(5045), + [anon_sym_DASH_EQ] = ACTIONS(5045), + [anon_sym_STAR_EQ] = ACTIONS(5045), + [anon_sym_SLASH_EQ] = ACTIONS(5045), + [anon_sym_PERCENT_EQ] = ACTIONS(5045), + [anon_sym_BANG_EQ] = ACTIONS(5043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5045), + [anon_sym_EQ_EQ] = ACTIONS(5043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5045), + [anon_sym_LT_EQ] = ACTIONS(5045), + [anon_sym_GT_EQ] = ACTIONS(5045), + [anon_sym_BANGin] = ACTIONS(5045), + [anon_sym_is] = ACTIONS(5043), + [anon_sym_BANGis] = ACTIONS(5045), + [anon_sym_PLUS] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5043), + [anon_sym_PERCENT] = ACTIONS(5043), + [anon_sym_as_QMARK] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5045), + [anon_sym_DASH_DASH] = ACTIONS(5045), + [anon_sym_BANG_BANG] = ACTIONS(5045), + [anon_sym_suspend] = ACTIONS(5043), + [anon_sym_sealed] = ACTIONS(5043), + [anon_sym_annotation] = ACTIONS(5043), + [anon_sym_data] = ACTIONS(5043), + [anon_sym_inner] = ACTIONS(5043), + [anon_sym_value] = ACTIONS(5043), + [anon_sym_override] = ACTIONS(5043), + [anon_sym_lateinit] = ACTIONS(5043), + [anon_sym_public] = ACTIONS(5043), + [anon_sym_private] = ACTIONS(5043), + [anon_sym_internal] = ACTIONS(5043), + [anon_sym_protected] = ACTIONS(5043), + [anon_sym_tailrec] = ACTIONS(5043), + [anon_sym_operator] = ACTIONS(5043), + [anon_sym_infix] = ACTIONS(5043), + [anon_sym_inline] = ACTIONS(5043), + [anon_sym_external] = ACTIONS(5043), + [sym_property_modifier] = ACTIONS(5043), + [anon_sym_abstract] = ACTIONS(5043), + [anon_sym_final] = ACTIONS(5043), + [anon_sym_open] = ACTIONS(5043), + [anon_sym_vararg] = ACTIONS(5043), + [anon_sym_noinline] = ACTIONS(5043), + [anon_sym_crossinline] = ACTIONS(5043), + [anon_sym_expect] = ACTIONS(5043), + [anon_sym_actual] = ACTIONS(5043), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5045), + [sym__automatic_semicolon] = ACTIONS(5045), + [sym_safe_nav] = ACTIONS(5045), [sym_multiline_comment] = ACTIONS(3), }, [3956] = { - [sym__alpha_identifier] = ACTIONS(4906), - [anon_sym_AT] = ACTIONS(4908), - [anon_sym_LBRACK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_EQ] = ACTIONS(4906), - [anon_sym_LBRACE] = ACTIONS(4908), - [anon_sym_RBRACE] = ACTIONS(4908), - [anon_sym_LPAREN] = ACTIONS(4908), - [anon_sym_COMMA] = ACTIONS(4908), - [anon_sym_LT] = ACTIONS(4906), - [anon_sym_GT] = ACTIONS(4906), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4906), - [anon_sym_SEMI] = ACTIONS(4908), - [anon_sym_get] = ACTIONS(4906), - [anon_sym_set] = ACTIONS(4906), - [anon_sym_STAR] = ACTIONS(4906), - [sym_label] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4908), - [anon_sym_QMARK_COLON] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_PIPE_PIPE] = ACTIONS(4908), - [anon_sym_else] = ACTIONS(4906), - [anon_sym_COLON_COLON] = ACTIONS(4908), - [anon_sym_PLUS_EQ] = ACTIONS(4908), - [anon_sym_DASH_EQ] = ACTIONS(4908), - [anon_sym_STAR_EQ] = ACTIONS(4908), - [anon_sym_SLASH_EQ] = ACTIONS(4908), - [anon_sym_PERCENT_EQ] = ACTIONS(4908), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4908), - [anon_sym_LT_EQ] = ACTIONS(4908), - [anon_sym_GT_EQ] = ACTIONS(4908), - [anon_sym_BANGin] = ACTIONS(4908), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_BANGis] = ACTIONS(4908), - [anon_sym_PLUS] = ACTIONS(4906), - [anon_sym_DASH] = ACTIONS(4906), - [anon_sym_SLASH] = ACTIONS(4906), - [anon_sym_PERCENT] = ACTIONS(4906), - [anon_sym_as_QMARK] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4908), - [anon_sym_DASH_DASH] = ACTIONS(4908), - [anon_sym_BANG_BANG] = ACTIONS(4908), - [anon_sym_suspend] = ACTIONS(4906), - [anon_sym_sealed] = ACTIONS(4906), - [anon_sym_annotation] = ACTIONS(4906), - [anon_sym_data] = ACTIONS(4906), - [anon_sym_inner] = ACTIONS(4906), - [anon_sym_value] = ACTIONS(4906), - [anon_sym_override] = ACTIONS(4906), - [anon_sym_lateinit] = ACTIONS(4906), - [anon_sym_public] = ACTIONS(4906), - [anon_sym_private] = ACTIONS(4906), - [anon_sym_internal] = ACTIONS(4906), - [anon_sym_protected] = ACTIONS(4906), - [anon_sym_tailrec] = ACTIONS(4906), - [anon_sym_operator] = ACTIONS(4906), - [anon_sym_infix] = ACTIONS(4906), - [anon_sym_inline] = ACTIONS(4906), - [anon_sym_external] = ACTIONS(4906), - [sym_property_modifier] = ACTIONS(4906), - [anon_sym_abstract] = ACTIONS(4906), - [anon_sym_final] = ACTIONS(4906), - [anon_sym_open] = ACTIONS(4906), - [anon_sym_vararg] = ACTIONS(4906), - [anon_sym_noinline] = ACTIONS(4906), - [anon_sym_crossinline] = ACTIONS(4906), - [anon_sym_expect] = ACTIONS(4906), - [anon_sym_actual] = ACTIONS(4906), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4908), - [sym__automatic_semicolon] = ACTIONS(4908), - [sym_safe_nav] = ACTIONS(4908), - [sym_multiline_comment] = ACTIONS(3), - }, - [3957] = { - [sym__alpha_identifier] = ACTIONS(5079), - [anon_sym_AT] = ACTIONS(5081), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_as] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5081), - [anon_sym_RBRACE] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5081), - [anon_sym_COMMA] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5079), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_where] = ACTIONS(5079), - [anon_sym_DOT] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5081), - [anon_sym_get] = ACTIONS(5079), - [anon_sym_set] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [sym_label] = ACTIONS(5081), - [anon_sym_in] = ACTIONS(5079), - [anon_sym_DOT_DOT] = ACTIONS(5081), - [anon_sym_QMARK_COLON] = ACTIONS(5081), - [anon_sym_AMP_AMP] = ACTIONS(5081), - [anon_sym_PIPE_PIPE] = ACTIONS(5081), - [anon_sym_else] = ACTIONS(5079), - [anon_sym_COLON_COLON] = ACTIONS(5081), - [anon_sym_PLUS_EQ] = ACTIONS(5081), - [anon_sym_DASH_EQ] = ACTIONS(5081), - [anon_sym_STAR_EQ] = ACTIONS(5081), - [anon_sym_SLASH_EQ] = ACTIONS(5081), - [anon_sym_PERCENT_EQ] = ACTIONS(5081), - [anon_sym_BANG_EQ] = ACTIONS(5079), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5081), - [anon_sym_EQ_EQ] = ACTIONS(5079), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5081), - [anon_sym_LT_EQ] = ACTIONS(5081), - [anon_sym_GT_EQ] = ACTIONS(5081), - [anon_sym_BANGin] = ACTIONS(5081), - [anon_sym_is] = ACTIONS(5079), - [anon_sym_BANGis] = ACTIONS(5081), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5079), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_as_QMARK] = ACTIONS(5081), - [anon_sym_PLUS_PLUS] = ACTIONS(5081), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_BANG_BANG] = ACTIONS(5081), - [anon_sym_suspend] = ACTIONS(5079), - [anon_sym_sealed] = ACTIONS(5079), - [anon_sym_annotation] = ACTIONS(5079), - [anon_sym_data] = ACTIONS(5079), - [anon_sym_inner] = ACTIONS(5079), - [anon_sym_value] = ACTIONS(5079), - [anon_sym_override] = ACTIONS(5079), - [anon_sym_lateinit] = ACTIONS(5079), - [anon_sym_public] = ACTIONS(5079), - [anon_sym_private] = ACTIONS(5079), - [anon_sym_internal] = ACTIONS(5079), - [anon_sym_protected] = ACTIONS(5079), - [anon_sym_tailrec] = ACTIONS(5079), - [anon_sym_operator] = ACTIONS(5079), - [anon_sym_infix] = ACTIONS(5079), - [anon_sym_inline] = ACTIONS(5079), - [anon_sym_external] = ACTIONS(5079), - [sym_property_modifier] = ACTIONS(5079), - [anon_sym_abstract] = ACTIONS(5079), - [anon_sym_final] = ACTIONS(5079), - [anon_sym_open] = ACTIONS(5079), - [anon_sym_vararg] = ACTIONS(5079), - [anon_sym_noinline] = ACTIONS(5079), - [anon_sym_crossinline] = ACTIONS(5079), - [anon_sym_expect] = ACTIONS(5079), - [anon_sym_actual] = ACTIONS(5079), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5081), - [sym__automatic_semicolon] = ACTIONS(5081), - [sym_safe_nav] = ACTIONS(5081), - [sym_multiline_comment] = ACTIONS(3), - }, - [3958] = { - [sym__alpha_identifier] = ACTIONS(5083), - [anon_sym_AT] = ACTIONS(5085), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_as] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5085), - [anon_sym_RBRACE] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5085), - [anon_sym_COMMA] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5083), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_where] = ACTIONS(5083), - [anon_sym_DOT] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5085), - [anon_sym_get] = ACTIONS(5083), - [anon_sym_set] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [sym_label] = ACTIONS(5085), - [anon_sym_in] = ACTIONS(5083), - [anon_sym_DOT_DOT] = ACTIONS(5085), - [anon_sym_QMARK_COLON] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5085), - [anon_sym_PIPE_PIPE] = ACTIONS(5085), - [anon_sym_else] = ACTIONS(5083), - [anon_sym_COLON_COLON] = ACTIONS(5085), - [anon_sym_PLUS_EQ] = ACTIONS(5085), - [anon_sym_DASH_EQ] = ACTIONS(5085), - [anon_sym_STAR_EQ] = ACTIONS(5085), - [anon_sym_SLASH_EQ] = ACTIONS(5085), - [anon_sym_PERCENT_EQ] = ACTIONS(5085), - [anon_sym_BANG_EQ] = ACTIONS(5083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5085), - [anon_sym_EQ_EQ] = ACTIONS(5083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5085), - [anon_sym_LT_EQ] = ACTIONS(5085), - [anon_sym_GT_EQ] = ACTIONS(5085), - [anon_sym_BANGin] = ACTIONS(5085), - [anon_sym_is] = ACTIONS(5083), - [anon_sym_BANGis] = ACTIONS(5085), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_as_QMARK] = ACTIONS(5085), - [anon_sym_PLUS_PLUS] = ACTIONS(5085), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_BANG_BANG] = ACTIONS(5085), - [anon_sym_suspend] = ACTIONS(5083), - [anon_sym_sealed] = ACTIONS(5083), - [anon_sym_annotation] = ACTIONS(5083), - [anon_sym_data] = ACTIONS(5083), - [anon_sym_inner] = ACTIONS(5083), - [anon_sym_value] = ACTIONS(5083), - [anon_sym_override] = ACTIONS(5083), - [anon_sym_lateinit] = ACTIONS(5083), - [anon_sym_public] = ACTIONS(5083), - [anon_sym_private] = ACTIONS(5083), - [anon_sym_internal] = ACTIONS(5083), - [anon_sym_protected] = ACTIONS(5083), - [anon_sym_tailrec] = ACTIONS(5083), - [anon_sym_operator] = ACTIONS(5083), - [anon_sym_infix] = ACTIONS(5083), - [anon_sym_inline] = ACTIONS(5083), - [anon_sym_external] = ACTIONS(5083), - [sym_property_modifier] = ACTIONS(5083), - [anon_sym_abstract] = ACTIONS(5083), - [anon_sym_final] = ACTIONS(5083), - [anon_sym_open] = ACTIONS(5083), - [anon_sym_vararg] = ACTIONS(5083), - [anon_sym_noinline] = ACTIONS(5083), - [anon_sym_crossinline] = ACTIONS(5083), - [anon_sym_expect] = ACTIONS(5083), - [anon_sym_actual] = ACTIONS(5083), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5085), - [sym__automatic_semicolon] = ACTIONS(5085), - [sym_safe_nav] = ACTIONS(5085), - [sym_multiline_comment] = ACTIONS(3), - }, - [3959] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3946), - [sym__alpha_identifier] = ACTIONS(4671), - [anon_sym_AT] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4673), - [anon_sym_as] = ACTIONS(4671), - [anon_sym_fun] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_RBRACE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(7259), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4671), - [anon_sym_where] = ACTIONS(4671), - [anon_sym_object] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_get] = ACTIONS(4671), - [anon_sym_set] = ACTIONS(4671), - [anon_sym_this] = ACTIONS(4671), - [anon_sym_super] = ACTIONS(4671), - [anon_sym_STAR] = ACTIONS(4673), - [sym_label] = ACTIONS(4671), - [anon_sym_in] = ACTIONS(4671), - [anon_sym_DOT_DOT] = ACTIONS(4673), - [anon_sym_QMARK_COLON] = ACTIONS(4673), - [anon_sym_AMP_AMP] = ACTIONS(4673), - [anon_sym_PIPE_PIPE] = ACTIONS(4673), - [anon_sym_null] = ACTIONS(4671), - [anon_sym_if] = ACTIONS(4671), - [anon_sym_else] = ACTIONS(4671), - [anon_sym_when] = ACTIONS(4671), - [anon_sym_try] = ACTIONS(4671), - [anon_sym_throw] = ACTIONS(4671), - [anon_sym_return] = ACTIONS(4671), - [anon_sym_continue] = ACTIONS(4671), - [anon_sym_break] = ACTIONS(4671), - [anon_sym_COLON_COLON] = ACTIONS(4673), - [anon_sym_BANG_EQ] = ACTIONS(4671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4673), - [anon_sym_EQ_EQ] = ACTIONS(4671), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4673), - [anon_sym_LT_EQ] = ACTIONS(4673), - [anon_sym_GT_EQ] = ACTIONS(4673), - [anon_sym_BANGin] = ACTIONS(4673), - [anon_sym_is] = ACTIONS(4671), - [anon_sym_BANGis] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4671), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4671), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_as_QMARK] = ACTIONS(4673), - [anon_sym_PLUS_PLUS] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4671), - [anon_sym_BANG_BANG] = ACTIONS(4673), - [anon_sym_data] = ACTIONS(4671), - [anon_sym_inner] = ACTIONS(4671), - [anon_sym_value] = ACTIONS(4671), - [anon_sym_expect] = ACTIONS(4671), - [anon_sym_actual] = ACTIONS(4671), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4673), - [anon_sym_continue_AT] = ACTIONS(4673), - [anon_sym_break_AT] = ACTIONS(4673), - [anon_sym_this_AT] = ACTIONS(4673), - [anon_sym_super_AT] = ACTIONS(4673), - [sym_real_literal] = ACTIONS(4673), - [sym_integer_literal] = ACTIONS(4671), - [sym_hex_literal] = ACTIONS(4673), - [sym_bin_literal] = ACTIONS(4673), - [anon_sym_true] = ACTIONS(4671), - [anon_sym_false] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4673), - [sym__backtick_identifier] = ACTIONS(4673), - [sym__automatic_semicolon] = ACTIONS(4673), - [sym_safe_nav] = ACTIONS(4673), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4673), - }, - [3960] = { - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(4323), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_COMMA] = ACTIONS(4323), - [anon_sym_LT] = ACTIONS(4321), - [anon_sym_GT] = ACTIONS(4321), - [anon_sym_where] = ACTIONS(4321), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_get] = ACTIONS(4321), - [anon_sym_set] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4323), - [anon_sym_in] = ACTIONS(4321), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_QMARK_COLON] = ACTIONS(4323), - [anon_sym_AMP_AMP] = ACTIONS(4323), - [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_else] = ACTIONS(4321), - [anon_sym_COLON_COLON] = ACTIONS(4323), - [anon_sym_PLUS_EQ] = ACTIONS(4323), - [anon_sym_DASH_EQ] = ACTIONS(4323), - [anon_sym_STAR_EQ] = ACTIONS(4323), - [anon_sym_SLASH_EQ] = ACTIONS(4323), - [anon_sym_PERCENT_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), - [anon_sym_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4323), - [anon_sym_BANGin] = ACTIONS(4323), - [anon_sym_is] = ACTIONS(4321), - [anon_sym_BANGis] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4321), - [anon_sym_as_QMARK] = ACTIONS(4323), - [anon_sym_PLUS_PLUS] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG_BANG] = ACTIONS(4323), - [anon_sym_suspend] = ACTIONS(4321), - [anon_sym_sealed] = ACTIONS(4321), - [anon_sym_annotation] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4321), - [anon_sym_inner] = ACTIONS(4321), - [anon_sym_value] = ACTIONS(4321), - [anon_sym_override] = ACTIONS(4321), - [anon_sym_lateinit] = ACTIONS(4321), - [anon_sym_public] = ACTIONS(4321), - [anon_sym_private] = ACTIONS(4321), - [anon_sym_internal] = ACTIONS(4321), - [anon_sym_protected] = ACTIONS(4321), - [anon_sym_tailrec] = ACTIONS(4321), - [anon_sym_operator] = ACTIONS(4321), - [anon_sym_infix] = ACTIONS(4321), - [anon_sym_inline] = ACTIONS(4321), - [anon_sym_external] = ACTIONS(4321), - [sym_property_modifier] = ACTIONS(4321), - [anon_sym_abstract] = ACTIONS(4321), - [anon_sym_final] = ACTIONS(4321), - [anon_sym_open] = ACTIONS(4321), - [anon_sym_vararg] = ACTIONS(4321), - [anon_sym_noinline] = ACTIONS(4321), - [anon_sym_crossinline] = ACTIONS(4321), - [anon_sym_expect] = ACTIONS(4321), - [anon_sym_actual] = ACTIONS(4321), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4323), - [sym__automatic_semicolon] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), - [sym_multiline_comment] = ACTIONS(3), - }, - [3961] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3961), - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_fun] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(7271), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_object] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_this] = ACTIONS(4705), - [anon_sym_super] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4707), - [sym_label] = ACTIONS(4705), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_null] = ACTIONS(4705), - [anon_sym_if] = ACTIONS(4705), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_when] = ACTIONS(4705), - [anon_sym_try] = ACTIONS(4705), - [anon_sym_throw] = ACTIONS(4705), - [anon_sym_return] = ACTIONS(4705), - [anon_sym_continue] = ACTIONS(4705), - [anon_sym_break] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4707), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4705), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4707), - [anon_sym_continue_AT] = ACTIONS(4707), - [anon_sym_break_AT] = ACTIONS(4707), - [anon_sym_this_AT] = ACTIONS(4707), - [anon_sym_super_AT] = ACTIONS(4707), - [sym_real_literal] = ACTIONS(4707), - [sym_integer_literal] = ACTIONS(4705), - [sym_hex_literal] = ACTIONS(4707), - [sym_bin_literal] = ACTIONS(4707), - [anon_sym_true] = ACTIONS(4705), - [anon_sym_false] = ACTIONS(4705), - [anon_sym_SQUOTE] = ACTIONS(4707), - [sym__backtick_identifier] = ACTIONS(4707), - [sym__automatic_semicolon] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4707), - }, - [3962] = { - [sym__alpha_identifier] = ACTIONS(5231), - [anon_sym_AT] = ACTIONS(5233), - [anon_sym_LBRACK] = ACTIONS(5233), - [anon_sym_as] = ACTIONS(5231), - [anon_sym_EQ] = ACTIONS(5231), - [anon_sym_LBRACE] = ACTIONS(5233), - [anon_sym_RBRACE] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5233), - [anon_sym_COMMA] = ACTIONS(5233), - [anon_sym_LT] = ACTIONS(5231), - [anon_sym_GT] = ACTIONS(5231), - [anon_sym_where] = ACTIONS(5231), - [anon_sym_DOT] = ACTIONS(5231), - [anon_sym_SEMI] = ACTIONS(5233), - [anon_sym_get] = ACTIONS(5231), - [anon_sym_set] = ACTIONS(5231), - [anon_sym_STAR] = ACTIONS(5231), - [sym_label] = ACTIONS(5233), - [anon_sym_in] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5233), - [anon_sym_AMP_AMP] = ACTIONS(5233), - [anon_sym_PIPE_PIPE] = ACTIONS(5233), - [anon_sym_else] = ACTIONS(5231), - [anon_sym_COLON_COLON] = ACTIONS(5233), - [anon_sym_PLUS_EQ] = ACTIONS(5233), - [anon_sym_DASH_EQ] = ACTIONS(5233), - [anon_sym_STAR_EQ] = ACTIONS(5233), - [anon_sym_SLASH_EQ] = ACTIONS(5233), - [anon_sym_PERCENT_EQ] = ACTIONS(5233), - [anon_sym_BANG_EQ] = ACTIONS(5231), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5233), - [anon_sym_EQ_EQ] = ACTIONS(5231), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5233), - [anon_sym_LT_EQ] = ACTIONS(5233), - [anon_sym_GT_EQ] = ACTIONS(5233), - [anon_sym_BANGin] = ACTIONS(5233), - [anon_sym_is] = ACTIONS(5231), - [anon_sym_BANGis] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_SLASH] = ACTIONS(5231), - [anon_sym_PERCENT] = ACTIONS(5231), - [anon_sym_as_QMARK] = ACTIONS(5233), - [anon_sym_PLUS_PLUS] = ACTIONS(5233), - [anon_sym_DASH_DASH] = ACTIONS(5233), - [anon_sym_BANG_BANG] = ACTIONS(5233), - [anon_sym_suspend] = ACTIONS(5231), - [anon_sym_sealed] = ACTIONS(5231), - [anon_sym_annotation] = ACTIONS(5231), - [anon_sym_data] = ACTIONS(5231), - [anon_sym_inner] = ACTIONS(5231), - [anon_sym_value] = ACTIONS(5231), - [anon_sym_override] = ACTIONS(5231), - [anon_sym_lateinit] = ACTIONS(5231), - [anon_sym_public] = ACTIONS(5231), - [anon_sym_private] = ACTIONS(5231), - [anon_sym_internal] = ACTIONS(5231), - [anon_sym_protected] = ACTIONS(5231), - [anon_sym_tailrec] = ACTIONS(5231), - [anon_sym_operator] = ACTIONS(5231), - [anon_sym_infix] = ACTIONS(5231), - [anon_sym_inline] = ACTIONS(5231), - [anon_sym_external] = ACTIONS(5231), - [sym_property_modifier] = ACTIONS(5231), - [anon_sym_abstract] = ACTIONS(5231), - [anon_sym_final] = ACTIONS(5231), - [anon_sym_open] = ACTIONS(5231), - [anon_sym_vararg] = ACTIONS(5231), - [anon_sym_noinline] = ACTIONS(5231), - [anon_sym_crossinline] = ACTIONS(5231), - [anon_sym_expect] = ACTIONS(5231), - [anon_sym_actual] = ACTIONS(5231), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5233), - [sym__automatic_semicolon] = ACTIONS(5233), - [sym_safe_nav] = ACTIONS(5233), - [sym_multiline_comment] = ACTIONS(3), - }, - [3963] = { - [sym__alpha_identifier] = ACTIONS(5161), - [anon_sym_AT] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5163), - [anon_sym_as] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_RBRACE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5161), - [anon_sym_where] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_get] = ACTIONS(5161), - [anon_sym_set] = ACTIONS(5161), - [anon_sym_STAR] = ACTIONS(5161), - [sym_label] = ACTIONS(5163), - [anon_sym_in] = ACTIONS(5161), - [anon_sym_DOT_DOT] = ACTIONS(5163), - [anon_sym_QMARK_COLON] = ACTIONS(5163), - [anon_sym_AMP_AMP] = ACTIONS(5163), - [anon_sym_PIPE_PIPE] = ACTIONS(5163), - [anon_sym_else] = ACTIONS(5161), - [anon_sym_COLON_COLON] = ACTIONS(5163), - [anon_sym_PLUS_EQ] = ACTIONS(5163), - [anon_sym_DASH_EQ] = ACTIONS(5163), - [anon_sym_STAR_EQ] = ACTIONS(5163), - [anon_sym_SLASH_EQ] = ACTIONS(5163), - [anon_sym_PERCENT_EQ] = ACTIONS(5163), - [anon_sym_BANG_EQ] = ACTIONS(5161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5163), - [anon_sym_EQ_EQ] = ACTIONS(5161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5163), - [anon_sym_LT_EQ] = ACTIONS(5163), - [anon_sym_GT_EQ] = ACTIONS(5163), - [anon_sym_BANGin] = ACTIONS(5163), - [anon_sym_is] = ACTIONS(5161), - [anon_sym_BANGis] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5161), - [anon_sym_PERCENT] = ACTIONS(5161), - [anon_sym_as_QMARK] = ACTIONS(5163), - [anon_sym_PLUS_PLUS] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5163), - [anon_sym_BANG_BANG] = ACTIONS(5163), - [anon_sym_suspend] = ACTIONS(5161), - [anon_sym_sealed] = ACTIONS(5161), - [anon_sym_annotation] = ACTIONS(5161), - [anon_sym_data] = ACTIONS(5161), - [anon_sym_inner] = ACTIONS(5161), - [anon_sym_value] = ACTIONS(5161), - [anon_sym_override] = ACTIONS(5161), - [anon_sym_lateinit] = ACTIONS(5161), - [anon_sym_public] = ACTIONS(5161), - [anon_sym_private] = ACTIONS(5161), - [anon_sym_internal] = ACTIONS(5161), - [anon_sym_protected] = ACTIONS(5161), - [anon_sym_tailrec] = ACTIONS(5161), - [anon_sym_operator] = ACTIONS(5161), - [anon_sym_infix] = ACTIONS(5161), - [anon_sym_inline] = ACTIONS(5161), - [anon_sym_external] = ACTIONS(5161), - [sym_property_modifier] = ACTIONS(5161), - [anon_sym_abstract] = ACTIONS(5161), - [anon_sym_final] = ACTIONS(5161), - [anon_sym_open] = ACTIONS(5161), - [anon_sym_vararg] = ACTIONS(5161), - [anon_sym_noinline] = ACTIONS(5161), - [anon_sym_crossinline] = ACTIONS(5161), - [anon_sym_expect] = ACTIONS(5161), - [anon_sym_actual] = ACTIONS(5161), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5163), - [sym__automatic_semicolon] = ACTIONS(5163), - [sym_safe_nav] = ACTIONS(5163), - [sym_multiline_comment] = ACTIONS(3), - }, - [3964] = { - [sym__alpha_identifier] = ACTIONS(5205), - [anon_sym_AT] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_as] = ACTIONS(5205), - [anon_sym_EQ] = ACTIONS(5205), - [anon_sym_LBRACE] = ACTIONS(5207), - [anon_sym_RBRACE] = ACTIONS(5207), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_where] = ACTIONS(5205), - [anon_sym_DOT] = ACTIONS(5205), - [anon_sym_SEMI] = ACTIONS(5207), - [anon_sym_get] = ACTIONS(5205), - [anon_sym_set] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [sym_label] = ACTIONS(5207), - [anon_sym_in] = ACTIONS(5205), - [anon_sym_DOT_DOT] = ACTIONS(5207), - [anon_sym_QMARK_COLON] = ACTIONS(5207), - [anon_sym_AMP_AMP] = ACTIONS(5207), - [anon_sym_PIPE_PIPE] = ACTIONS(5207), - [anon_sym_else] = ACTIONS(5205), - [anon_sym_COLON_COLON] = ACTIONS(5207), - [anon_sym_PLUS_EQ] = ACTIONS(5207), - [anon_sym_DASH_EQ] = ACTIONS(5207), - [anon_sym_STAR_EQ] = ACTIONS(5207), - [anon_sym_SLASH_EQ] = ACTIONS(5207), - [anon_sym_PERCENT_EQ] = ACTIONS(5207), - [anon_sym_BANG_EQ] = ACTIONS(5205), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5207), - [anon_sym_EQ_EQ] = ACTIONS(5205), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5207), - [anon_sym_LT_EQ] = ACTIONS(5207), - [anon_sym_GT_EQ] = ACTIONS(5207), - [anon_sym_BANGin] = ACTIONS(5207), - [anon_sym_is] = ACTIONS(5205), - [anon_sym_BANGis] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_PERCENT] = ACTIONS(5205), - [anon_sym_as_QMARK] = ACTIONS(5207), - [anon_sym_PLUS_PLUS] = ACTIONS(5207), - [anon_sym_DASH_DASH] = ACTIONS(5207), - [anon_sym_BANG_BANG] = ACTIONS(5207), - [anon_sym_suspend] = ACTIONS(5205), - [anon_sym_sealed] = ACTIONS(5205), - [anon_sym_annotation] = ACTIONS(5205), - [anon_sym_data] = ACTIONS(5205), - [anon_sym_inner] = ACTIONS(5205), - [anon_sym_value] = ACTIONS(5205), - [anon_sym_override] = ACTIONS(5205), - [anon_sym_lateinit] = ACTIONS(5205), - [anon_sym_public] = ACTIONS(5205), - [anon_sym_private] = ACTIONS(5205), - [anon_sym_internal] = ACTIONS(5205), - [anon_sym_protected] = ACTIONS(5205), - [anon_sym_tailrec] = ACTIONS(5205), - [anon_sym_operator] = ACTIONS(5205), - [anon_sym_infix] = ACTIONS(5205), - [anon_sym_inline] = ACTIONS(5205), - [anon_sym_external] = ACTIONS(5205), - [sym_property_modifier] = ACTIONS(5205), - [anon_sym_abstract] = ACTIONS(5205), - [anon_sym_final] = ACTIONS(5205), - [anon_sym_open] = ACTIONS(5205), - [anon_sym_vararg] = ACTIONS(5205), - [anon_sym_noinline] = ACTIONS(5205), - [anon_sym_crossinline] = ACTIONS(5205), - [anon_sym_expect] = ACTIONS(5205), - [anon_sym_actual] = ACTIONS(5205), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5207), - [sym__automatic_semicolon] = ACTIONS(5207), - [sym_safe_nav] = ACTIONS(5207), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), }, - [3965] = { - [sym__alpha_identifier] = ACTIONS(5131), - [anon_sym_AT] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_as] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_LBRACE] = ACTIONS(5133), - [anon_sym_RBRACE] = ACTIONS(5133), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_LT] = ACTIONS(5131), - [anon_sym_GT] = ACTIONS(5131), - [anon_sym_where] = ACTIONS(5131), - [anon_sym_DOT] = ACTIONS(5131), - [anon_sym_SEMI] = ACTIONS(5133), - [anon_sym_get] = ACTIONS(5131), - [anon_sym_set] = ACTIONS(5131), - [anon_sym_STAR] = ACTIONS(5131), - [sym_label] = ACTIONS(5133), - [anon_sym_in] = ACTIONS(5131), - [anon_sym_DOT_DOT] = ACTIONS(5133), - [anon_sym_QMARK_COLON] = ACTIONS(5133), - [anon_sym_AMP_AMP] = ACTIONS(5133), - [anon_sym_PIPE_PIPE] = ACTIONS(5133), - [anon_sym_else] = ACTIONS(5131), - [anon_sym_COLON_COLON] = ACTIONS(5133), - [anon_sym_PLUS_EQ] = ACTIONS(5133), - [anon_sym_DASH_EQ] = ACTIONS(5133), - [anon_sym_STAR_EQ] = ACTIONS(5133), - [anon_sym_SLASH_EQ] = ACTIONS(5133), - [anon_sym_PERCENT_EQ] = ACTIONS(5133), - [anon_sym_BANG_EQ] = ACTIONS(5131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5133), - [anon_sym_EQ_EQ] = ACTIONS(5131), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5133), - [anon_sym_LT_EQ] = ACTIONS(5133), - [anon_sym_GT_EQ] = ACTIONS(5133), - [anon_sym_BANGin] = ACTIONS(5133), - [anon_sym_is] = ACTIONS(5131), - [anon_sym_BANGis] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5131), - [anon_sym_SLASH] = ACTIONS(5131), - [anon_sym_PERCENT] = ACTIONS(5131), - [anon_sym_as_QMARK] = ACTIONS(5133), - [anon_sym_PLUS_PLUS] = ACTIONS(5133), - [anon_sym_DASH_DASH] = ACTIONS(5133), - [anon_sym_BANG_BANG] = ACTIONS(5133), - [anon_sym_suspend] = ACTIONS(5131), - [anon_sym_sealed] = ACTIONS(5131), - [anon_sym_annotation] = ACTIONS(5131), - [anon_sym_data] = ACTIONS(5131), - [anon_sym_inner] = ACTIONS(5131), - [anon_sym_value] = ACTIONS(5131), - [anon_sym_override] = ACTIONS(5131), - [anon_sym_lateinit] = ACTIONS(5131), - [anon_sym_public] = ACTIONS(5131), - [anon_sym_private] = ACTIONS(5131), - [anon_sym_internal] = ACTIONS(5131), - [anon_sym_protected] = ACTIONS(5131), - [anon_sym_tailrec] = ACTIONS(5131), - [anon_sym_operator] = ACTIONS(5131), - [anon_sym_infix] = ACTIONS(5131), - [anon_sym_inline] = ACTIONS(5131), - [anon_sym_external] = ACTIONS(5131), - [sym_property_modifier] = ACTIONS(5131), - [anon_sym_abstract] = ACTIONS(5131), - [anon_sym_final] = ACTIONS(5131), - [anon_sym_open] = ACTIONS(5131), - [anon_sym_vararg] = ACTIONS(5131), - [anon_sym_noinline] = ACTIONS(5131), - [anon_sym_crossinline] = ACTIONS(5131), - [anon_sym_expect] = ACTIONS(5131), - [anon_sym_actual] = ACTIONS(5131), + [3957] = { + [sym__alpha_identifier] = ACTIONS(5183), + [anon_sym_AT] = ACTIONS(5185), + [anon_sym_LBRACK] = ACTIONS(5185), + [anon_sym_typealias] = ACTIONS(5183), + [anon_sym_class] = ACTIONS(5183), + [anon_sym_interface] = ACTIONS(5183), + [anon_sym_enum] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5185), + [anon_sym_val] = ACTIONS(5183), + [anon_sym_var] = ACTIONS(5183), + [anon_sym_object] = ACTIONS(5183), + [anon_sym_fun] = ACTIONS(5183), + [anon_sym_get] = ACTIONS(5183), + [anon_sym_set] = ACTIONS(5183), + [anon_sym_this] = ACTIONS(5183), + [anon_sym_super] = ACTIONS(5183), + [anon_sym_STAR] = ACTIONS(5185), + [sym_label] = ACTIONS(5183), + [anon_sym_for] = ACTIONS(5183), + [anon_sym_while] = ACTIONS(5183), + [anon_sym_do] = ACTIONS(5183), + [anon_sym_null] = ACTIONS(5183), + [anon_sym_if] = ACTIONS(5183), + [anon_sym_when] = ACTIONS(5183), + [anon_sym_try] = ACTIONS(5183), + [anon_sym_throw] = ACTIONS(5183), + [anon_sym_return] = ACTIONS(5183), + [anon_sym_continue] = ACTIONS(5183), + [anon_sym_break] = ACTIONS(5183), + [anon_sym_COLON_COLON] = ACTIONS(5185), + [anon_sym_PLUS] = ACTIONS(5183), + [anon_sym_DASH] = ACTIONS(5183), + [anon_sym_PLUS_PLUS] = ACTIONS(5185), + [anon_sym_DASH_DASH] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_suspend] = ACTIONS(5183), + [anon_sym_sealed] = ACTIONS(5183), + [anon_sym_annotation] = ACTIONS(5183), + [anon_sym_data] = ACTIONS(5183), + [anon_sym_inner] = ACTIONS(5183), + [anon_sym_value] = ACTIONS(5183), + [anon_sym_override] = ACTIONS(5183), + [anon_sym_lateinit] = ACTIONS(5183), + [anon_sym_public] = ACTIONS(5183), + [anon_sym_private] = ACTIONS(5183), + [anon_sym_internal] = ACTIONS(5183), + [anon_sym_protected] = ACTIONS(5183), + [anon_sym_tailrec] = ACTIONS(5183), + [anon_sym_operator] = ACTIONS(5183), + [anon_sym_infix] = ACTIONS(5183), + [anon_sym_inline] = ACTIONS(5183), + [anon_sym_external] = ACTIONS(5183), + [sym_property_modifier] = ACTIONS(5183), + [anon_sym_abstract] = ACTIONS(5183), + [anon_sym_final] = ACTIONS(5183), + [anon_sym_open] = ACTIONS(5183), + [anon_sym_vararg] = ACTIONS(5183), + [anon_sym_noinline] = ACTIONS(5183), + [anon_sym_crossinline] = ACTIONS(5183), + [anon_sym_expect] = ACTIONS(5183), + [anon_sym_actual] = ACTIONS(5183), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5133), - [sym__automatic_semicolon] = ACTIONS(5133), - [sym_safe_nav] = ACTIONS(5133), - [sym_multiline_comment] = ACTIONS(3), - }, - [3966] = { - [sym__alpha_identifier] = ACTIONS(5227), - [anon_sym_AT] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [anon_sym_as] = ACTIONS(5227), - [anon_sym_EQ] = ACTIONS(5227), - [anon_sym_LBRACE] = ACTIONS(5229), - [anon_sym_RBRACE] = ACTIONS(5229), - [anon_sym_LPAREN] = ACTIONS(5229), - [anon_sym_COMMA] = ACTIONS(5229), - [anon_sym_LT] = ACTIONS(5227), - [anon_sym_GT] = ACTIONS(5227), - [anon_sym_where] = ACTIONS(5227), - [anon_sym_DOT] = ACTIONS(5227), - [anon_sym_SEMI] = ACTIONS(5229), - [anon_sym_get] = ACTIONS(5227), - [anon_sym_set] = ACTIONS(5227), - [anon_sym_STAR] = ACTIONS(5227), - [sym_label] = ACTIONS(5229), - [anon_sym_in] = ACTIONS(5227), - [anon_sym_DOT_DOT] = ACTIONS(5229), - [anon_sym_QMARK_COLON] = ACTIONS(5229), - [anon_sym_AMP_AMP] = ACTIONS(5229), - [anon_sym_PIPE_PIPE] = ACTIONS(5229), - [anon_sym_else] = ACTIONS(5227), - [anon_sym_COLON_COLON] = ACTIONS(5229), - [anon_sym_PLUS_EQ] = ACTIONS(5229), - [anon_sym_DASH_EQ] = ACTIONS(5229), - [anon_sym_STAR_EQ] = ACTIONS(5229), - [anon_sym_SLASH_EQ] = ACTIONS(5229), - [anon_sym_PERCENT_EQ] = ACTIONS(5229), - [anon_sym_BANG_EQ] = ACTIONS(5227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5229), - [anon_sym_EQ_EQ] = ACTIONS(5227), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5229), - [anon_sym_LT_EQ] = ACTIONS(5229), - [anon_sym_GT_EQ] = ACTIONS(5229), - [anon_sym_BANGin] = ACTIONS(5229), - [anon_sym_is] = ACTIONS(5227), - [anon_sym_BANGis] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5227), - [anon_sym_DASH] = ACTIONS(5227), - [anon_sym_SLASH] = ACTIONS(5227), - [anon_sym_PERCENT] = ACTIONS(5227), - [anon_sym_as_QMARK] = ACTIONS(5229), - [anon_sym_PLUS_PLUS] = ACTIONS(5229), - [anon_sym_DASH_DASH] = ACTIONS(5229), - [anon_sym_BANG_BANG] = ACTIONS(5229), - [anon_sym_suspend] = ACTIONS(5227), - [anon_sym_sealed] = ACTIONS(5227), - [anon_sym_annotation] = ACTIONS(5227), - [anon_sym_data] = ACTIONS(5227), - [anon_sym_inner] = ACTIONS(5227), - [anon_sym_value] = ACTIONS(5227), - [anon_sym_override] = ACTIONS(5227), - [anon_sym_lateinit] = ACTIONS(5227), - [anon_sym_public] = ACTIONS(5227), - [anon_sym_private] = ACTIONS(5227), - [anon_sym_internal] = ACTIONS(5227), - [anon_sym_protected] = ACTIONS(5227), - [anon_sym_tailrec] = ACTIONS(5227), - [anon_sym_operator] = ACTIONS(5227), - [anon_sym_infix] = ACTIONS(5227), - [anon_sym_inline] = ACTIONS(5227), - [anon_sym_external] = ACTIONS(5227), - [sym_property_modifier] = ACTIONS(5227), - [anon_sym_abstract] = ACTIONS(5227), - [anon_sym_final] = ACTIONS(5227), - [anon_sym_open] = ACTIONS(5227), - [anon_sym_vararg] = ACTIONS(5227), - [anon_sym_noinline] = ACTIONS(5227), - [anon_sym_crossinline] = ACTIONS(5227), - [anon_sym_expect] = ACTIONS(5227), - [anon_sym_actual] = ACTIONS(5227), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5229), - [sym__automatic_semicolon] = ACTIONS(5229), - [sym_safe_nav] = ACTIONS(5229), - [sym_multiline_comment] = ACTIONS(3), - }, - [3967] = { - [sym__alpha_identifier] = ACTIONS(5239), - [anon_sym_AT] = ACTIONS(5241), - [anon_sym_LBRACK] = ACTIONS(5241), - [anon_sym_as] = ACTIONS(5239), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5241), - [anon_sym_RBRACE] = ACTIONS(5241), - [anon_sym_LPAREN] = ACTIONS(5241), - [anon_sym_COMMA] = ACTIONS(5241), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_where] = ACTIONS(5239), - [anon_sym_DOT] = ACTIONS(5239), - [anon_sym_SEMI] = ACTIONS(5241), - [anon_sym_get] = ACTIONS(5239), - [anon_sym_set] = ACTIONS(5239), - [anon_sym_STAR] = ACTIONS(5239), - [sym_label] = ACTIONS(5241), - [anon_sym_in] = ACTIONS(5239), - [anon_sym_DOT_DOT] = ACTIONS(5241), - [anon_sym_QMARK_COLON] = ACTIONS(5241), - [anon_sym_AMP_AMP] = ACTIONS(5241), - [anon_sym_PIPE_PIPE] = ACTIONS(5241), - [anon_sym_else] = ACTIONS(5239), - [anon_sym_COLON_COLON] = ACTIONS(5241), - [anon_sym_PLUS_EQ] = ACTIONS(5241), - [anon_sym_DASH_EQ] = ACTIONS(5241), - [anon_sym_STAR_EQ] = ACTIONS(5241), - [anon_sym_SLASH_EQ] = ACTIONS(5241), - [anon_sym_PERCENT_EQ] = ACTIONS(5241), - [anon_sym_BANG_EQ] = ACTIONS(5239), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5241), - [anon_sym_EQ_EQ] = ACTIONS(5239), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5241), - [anon_sym_LT_EQ] = ACTIONS(5241), - [anon_sym_GT_EQ] = ACTIONS(5241), - [anon_sym_BANGin] = ACTIONS(5241), - [anon_sym_is] = ACTIONS(5239), - [anon_sym_BANGis] = ACTIONS(5241), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_PERCENT] = ACTIONS(5239), - [anon_sym_as_QMARK] = ACTIONS(5241), - [anon_sym_PLUS_PLUS] = ACTIONS(5241), - [anon_sym_DASH_DASH] = ACTIONS(5241), - [anon_sym_BANG_BANG] = ACTIONS(5241), - [anon_sym_suspend] = ACTIONS(5239), - [anon_sym_sealed] = ACTIONS(5239), - [anon_sym_annotation] = ACTIONS(5239), - [anon_sym_data] = ACTIONS(5239), - [anon_sym_inner] = ACTIONS(5239), - [anon_sym_value] = ACTIONS(5239), - [anon_sym_override] = ACTIONS(5239), - [anon_sym_lateinit] = ACTIONS(5239), - [anon_sym_public] = ACTIONS(5239), - [anon_sym_private] = ACTIONS(5239), - [anon_sym_internal] = ACTIONS(5239), - [anon_sym_protected] = ACTIONS(5239), - [anon_sym_tailrec] = ACTIONS(5239), - [anon_sym_operator] = ACTIONS(5239), - [anon_sym_infix] = ACTIONS(5239), - [anon_sym_inline] = ACTIONS(5239), - [anon_sym_external] = ACTIONS(5239), - [sym_property_modifier] = ACTIONS(5239), - [anon_sym_abstract] = ACTIONS(5239), - [anon_sym_final] = ACTIONS(5239), - [anon_sym_open] = ACTIONS(5239), - [anon_sym_vararg] = ACTIONS(5239), - [anon_sym_noinline] = ACTIONS(5239), - [anon_sym_crossinline] = ACTIONS(5239), - [anon_sym_expect] = ACTIONS(5239), - [anon_sym_actual] = ACTIONS(5239), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5241), - [sym__automatic_semicolon] = ACTIONS(5241), - [sym_safe_nav] = ACTIONS(5241), - [sym_multiline_comment] = ACTIONS(3), - }, - [3968] = { - [sym__alpha_identifier] = ACTIONS(5243), - [anon_sym_AT] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_as] = ACTIONS(5243), - [anon_sym_EQ] = ACTIONS(5243), - [anon_sym_LBRACE] = ACTIONS(5245), - [anon_sym_RBRACE] = ACTIONS(5245), - [anon_sym_LPAREN] = ACTIONS(5245), - [anon_sym_COMMA] = ACTIONS(5245), - [anon_sym_LT] = ACTIONS(5243), - [anon_sym_GT] = ACTIONS(5243), - [anon_sym_where] = ACTIONS(5243), - [anon_sym_DOT] = ACTIONS(5243), - [anon_sym_SEMI] = ACTIONS(5245), - [anon_sym_get] = ACTIONS(5243), - [anon_sym_set] = ACTIONS(5243), - [anon_sym_STAR] = ACTIONS(5243), - [sym_label] = ACTIONS(5245), - [anon_sym_in] = ACTIONS(5243), - [anon_sym_DOT_DOT] = ACTIONS(5245), - [anon_sym_QMARK_COLON] = ACTIONS(5245), - [anon_sym_AMP_AMP] = ACTIONS(5245), - [anon_sym_PIPE_PIPE] = ACTIONS(5245), - [anon_sym_else] = ACTIONS(5243), - [anon_sym_COLON_COLON] = ACTIONS(5245), - [anon_sym_PLUS_EQ] = ACTIONS(5245), - [anon_sym_DASH_EQ] = ACTIONS(5245), - [anon_sym_STAR_EQ] = ACTIONS(5245), - [anon_sym_SLASH_EQ] = ACTIONS(5245), - [anon_sym_PERCENT_EQ] = ACTIONS(5245), - [anon_sym_BANG_EQ] = ACTIONS(5243), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5245), - [anon_sym_EQ_EQ] = ACTIONS(5243), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5245), - [anon_sym_LT_EQ] = ACTIONS(5245), - [anon_sym_GT_EQ] = ACTIONS(5245), - [anon_sym_BANGin] = ACTIONS(5245), - [anon_sym_is] = ACTIONS(5243), - [anon_sym_BANGis] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5243), - [anon_sym_DASH] = ACTIONS(5243), - [anon_sym_SLASH] = ACTIONS(5243), - [anon_sym_PERCENT] = ACTIONS(5243), - [anon_sym_as_QMARK] = ACTIONS(5245), - [anon_sym_PLUS_PLUS] = ACTIONS(5245), - [anon_sym_DASH_DASH] = ACTIONS(5245), - [anon_sym_BANG_BANG] = ACTIONS(5245), - [anon_sym_suspend] = ACTIONS(5243), - [anon_sym_sealed] = ACTIONS(5243), - [anon_sym_annotation] = ACTIONS(5243), - [anon_sym_data] = ACTIONS(5243), - [anon_sym_inner] = ACTIONS(5243), - [anon_sym_value] = ACTIONS(5243), - [anon_sym_override] = ACTIONS(5243), - [anon_sym_lateinit] = ACTIONS(5243), - [anon_sym_public] = ACTIONS(5243), - [anon_sym_private] = ACTIONS(5243), - [anon_sym_internal] = ACTIONS(5243), - [anon_sym_protected] = ACTIONS(5243), - [anon_sym_tailrec] = ACTIONS(5243), - [anon_sym_operator] = ACTIONS(5243), - [anon_sym_infix] = ACTIONS(5243), - [anon_sym_inline] = ACTIONS(5243), - [anon_sym_external] = ACTIONS(5243), - [sym_property_modifier] = ACTIONS(5243), - [anon_sym_abstract] = ACTIONS(5243), - [anon_sym_final] = ACTIONS(5243), - [anon_sym_open] = ACTIONS(5243), - [anon_sym_vararg] = ACTIONS(5243), - [anon_sym_noinline] = ACTIONS(5243), - [anon_sym_crossinline] = ACTIONS(5243), - [anon_sym_expect] = ACTIONS(5243), - [anon_sym_actual] = ACTIONS(5243), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5245), - [sym__automatic_semicolon] = ACTIONS(5245), - [sym_safe_nav] = ACTIONS(5245), - [sym_multiline_comment] = ACTIONS(3), - }, - [3969] = { - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(4520), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_COMMA] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_where] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4518), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_PLUS_EQ] = ACTIONS(4520), - [anon_sym_DASH_EQ] = ACTIONS(4520), - [anon_sym_STAR_EQ] = ACTIONS(4520), - [anon_sym_SLASH_EQ] = ACTIONS(4520), - [anon_sym_PERCENT_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4518), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_suspend] = ACTIONS(4518), - [anon_sym_sealed] = ACTIONS(4518), - [anon_sym_annotation] = ACTIONS(4518), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_override] = ACTIONS(4518), - [anon_sym_lateinit] = ACTIONS(4518), - [anon_sym_public] = ACTIONS(4518), - [anon_sym_private] = ACTIONS(4518), - [anon_sym_internal] = ACTIONS(4518), - [anon_sym_protected] = ACTIONS(4518), - [anon_sym_tailrec] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_infix] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym_external] = ACTIONS(4518), - [sym_property_modifier] = ACTIONS(4518), - [anon_sym_abstract] = ACTIONS(4518), - [anon_sym_final] = ACTIONS(4518), - [anon_sym_open] = ACTIONS(4518), - [anon_sym_vararg] = ACTIONS(4518), - [anon_sym_noinline] = ACTIONS(4518), - [anon_sym_crossinline] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4520), - [sym__automatic_semicolon] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), + [anon_sym_return_AT] = ACTIONS(5185), + [anon_sym_continue_AT] = ACTIONS(5185), + [anon_sym_break_AT] = ACTIONS(5185), + [anon_sym_this_AT] = ACTIONS(5185), + [anon_sym_super_AT] = ACTIONS(5185), + [sym_real_literal] = ACTIONS(5185), + [sym_integer_literal] = ACTIONS(5183), + [sym_hex_literal] = ACTIONS(5185), + [sym_bin_literal] = ACTIONS(5185), + [anon_sym_true] = ACTIONS(5183), + [anon_sym_false] = ACTIONS(5183), + [anon_sym_SQUOTE] = ACTIONS(5185), + [sym__backtick_identifier] = ACTIONS(5185), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5185), }, - [3970] = { - [sym__alpha_identifier] = ACTIONS(5149), - [anon_sym_AT] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_as] = ACTIONS(5149), - [anon_sym_EQ] = ACTIONS(5149), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_RBRACE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5149), - [anon_sym_where] = ACTIONS(5149), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_get] = ACTIONS(5149), - [anon_sym_set] = ACTIONS(5149), - [anon_sym_STAR] = ACTIONS(5149), - [sym_label] = ACTIONS(5151), - [anon_sym_in] = ACTIONS(5149), - [anon_sym_DOT_DOT] = ACTIONS(5151), - [anon_sym_QMARK_COLON] = ACTIONS(5151), - [anon_sym_AMP_AMP] = ACTIONS(5151), - [anon_sym_PIPE_PIPE] = ACTIONS(5151), - [anon_sym_else] = ACTIONS(5149), - [anon_sym_COLON_COLON] = ACTIONS(5151), - [anon_sym_PLUS_EQ] = ACTIONS(5151), - [anon_sym_DASH_EQ] = ACTIONS(5151), - [anon_sym_STAR_EQ] = ACTIONS(5151), - [anon_sym_SLASH_EQ] = ACTIONS(5151), - [anon_sym_PERCENT_EQ] = ACTIONS(5151), - [anon_sym_BANG_EQ] = ACTIONS(5149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), - [anon_sym_EQ_EQ] = ACTIONS(5149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), - [anon_sym_LT_EQ] = ACTIONS(5151), - [anon_sym_GT_EQ] = ACTIONS(5151), - [anon_sym_BANGin] = ACTIONS(5151), - [anon_sym_is] = ACTIONS(5149), - [anon_sym_BANGis] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5149), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5149), - [anon_sym_PERCENT] = ACTIONS(5149), - [anon_sym_as_QMARK] = ACTIONS(5151), - [anon_sym_PLUS_PLUS] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5151), - [anon_sym_BANG_BANG] = ACTIONS(5151), - [anon_sym_suspend] = ACTIONS(5149), - [anon_sym_sealed] = ACTIONS(5149), - [anon_sym_annotation] = ACTIONS(5149), - [anon_sym_data] = ACTIONS(5149), - [anon_sym_inner] = ACTIONS(5149), - [anon_sym_value] = ACTIONS(5149), - [anon_sym_override] = ACTIONS(5149), - [anon_sym_lateinit] = ACTIONS(5149), - [anon_sym_public] = ACTIONS(5149), - [anon_sym_private] = ACTIONS(5149), - [anon_sym_internal] = ACTIONS(5149), - [anon_sym_protected] = ACTIONS(5149), - [anon_sym_tailrec] = ACTIONS(5149), - [anon_sym_operator] = ACTIONS(5149), - [anon_sym_infix] = ACTIONS(5149), - [anon_sym_inline] = ACTIONS(5149), - [anon_sym_external] = ACTIONS(5149), - [sym_property_modifier] = ACTIONS(5149), - [anon_sym_abstract] = ACTIONS(5149), - [anon_sym_final] = ACTIONS(5149), - [anon_sym_open] = ACTIONS(5149), - [anon_sym_vararg] = ACTIONS(5149), - [anon_sym_noinline] = ACTIONS(5149), - [anon_sym_crossinline] = ACTIONS(5149), - [anon_sym_expect] = ACTIONS(5149), - [anon_sym_actual] = ACTIONS(5149), + [3958] = { + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(1790), + [anon_sym_sealed] = ACTIONS(1790), + [anon_sym_annotation] = ACTIONS(1790), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_override] = ACTIONS(1790), + [anon_sym_lateinit] = ACTIONS(1790), + [anon_sym_public] = ACTIONS(1790), + [anon_sym_private] = ACTIONS(1790), + [anon_sym_internal] = ACTIONS(1790), + [anon_sym_protected] = ACTIONS(1790), + [anon_sym_tailrec] = ACTIONS(1790), + [anon_sym_operator] = ACTIONS(1790), + [anon_sym_infix] = ACTIONS(1790), + [anon_sym_inline] = ACTIONS(1790), + [anon_sym_external] = ACTIONS(1790), + [sym_property_modifier] = ACTIONS(1790), + [anon_sym_abstract] = ACTIONS(1790), + [anon_sym_final] = ACTIONS(1790), + [anon_sym_open] = ACTIONS(1790), + [anon_sym_vararg] = ACTIONS(1790), + [anon_sym_noinline] = ACTIONS(1790), + [anon_sym_crossinline] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5151), - [sym__automatic_semicolon] = ACTIONS(5151), - [sym_safe_nav] = ACTIONS(5151), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [3971] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7274), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7276), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_DOT_DOT] = ACTIONS(7267), - [anon_sym_QMARK_COLON] = ACTIONS(7278), - [anon_sym_AMP_AMP] = ACTIONS(7280), - [anon_sym_PIPE_PIPE] = ACTIONS(7282), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(7284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7286), - [anon_sym_EQ_EQ] = ACTIONS(7284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7286), - [anon_sym_LT_EQ] = ACTIONS(7288), - [anon_sym_GT_EQ] = ACTIONS(7288), - [anon_sym_BANGin] = ACTIONS(7290), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [3959] = { + [sym__alpha_identifier] = ACTIONS(5171), + [anon_sym_AT] = ACTIONS(5173), + [anon_sym_LBRACK] = ACTIONS(5173), + [anon_sym_as] = ACTIONS(5171), + [anon_sym_EQ] = ACTIONS(5171), + [anon_sym_LBRACE] = ACTIONS(5173), + [anon_sym_RBRACE] = ACTIONS(5173), + [anon_sym_LPAREN] = ACTIONS(5173), + [anon_sym_COMMA] = ACTIONS(5173), + [anon_sym_LT] = ACTIONS(5171), + [anon_sym_GT] = ACTIONS(5171), + [anon_sym_where] = ACTIONS(5171), + [anon_sym_DOT] = ACTIONS(5171), + [anon_sym_SEMI] = ACTIONS(5173), + [anon_sym_get] = ACTIONS(5171), + [anon_sym_set] = ACTIONS(5171), + [anon_sym_STAR] = ACTIONS(5171), + [sym_label] = ACTIONS(5173), + [anon_sym_in] = ACTIONS(5171), + [anon_sym_DOT_DOT] = ACTIONS(5173), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5173), + [anon_sym_PIPE_PIPE] = ACTIONS(5173), + [anon_sym_else] = ACTIONS(5171), + [anon_sym_COLON_COLON] = ACTIONS(5173), + [anon_sym_PLUS_EQ] = ACTIONS(5173), + [anon_sym_DASH_EQ] = ACTIONS(5173), + [anon_sym_STAR_EQ] = ACTIONS(5173), + [anon_sym_SLASH_EQ] = ACTIONS(5173), + [anon_sym_PERCENT_EQ] = ACTIONS(5173), + [anon_sym_BANG_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), + [anon_sym_EQ_EQ] = ACTIONS(5171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), + [anon_sym_LT_EQ] = ACTIONS(5173), + [anon_sym_GT_EQ] = ACTIONS(5173), + [anon_sym_BANGin] = ACTIONS(5173), + [anon_sym_is] = ACTIONS(5171), + [anon_sym_BANGis] = ACTIONS(5173), + [anon_sym_PLUS] = ACTIONS(5171), + [anon_sym_DASH] = ACTIONS(5171), + [anon_sym_SLASH] = ACTIONS(5171), + [anon_sym_PERCENT] = ACTIONS(5171), + [anon_sym_as_QMARK] = ACTIONS(5173), + [anon_sym_PLUS_PLUS] = ACTIONS(5173), + [anon_sym_DASH_DASH] = ACTIONS(5173), + [anon_sym_BANG_BANG] = ACTIONS(5173), + [anon_sym_suspend] = ACTIONS(5171), + [anon_sym_sealed] = ACTIONS(5171), + [anon_sym_annotation] = ACTIONS(5171), + [anon_sym_data] = ACTIONS(5171), + [anon_sym_inner] = ACTIONS(5171), + [anon_sym_value] = ACTIONS(5171), + [anon_sym_override] = ACTIONS(5171), + [anon_sym_lateinit] = ACTIONS(5171), + [anon_sym_public] = ACTIONS(5171), + [anon_sym_private] = ACTIONS(5171), + [anon_sym_internal] = ACTIONS(5171), + [anon_sym_protected] = ACTIONS(5171), + [anon_sym_tailrec] = ACTIONS(5171), + [anon_sym_operator] = ACTIONS(5171), + [anon_sym_infix] = ACTIONS(5171), + [anon_sym_inline] = ACTIONS(5171), + [anon_sym_external] = ACTIONS(5171), + [sym_property_modifier] = ACTIONS(5171), + [anon_sym_abstract] = ACTIONS(5171), + [anon_sym_final] = ACTIONS(5171), + [anon_sym_open] = ACTIONS(5171), + [anon_sym_vararg] = ACTIONS(5171), + [anon_sym_noinline] = ACTIONS(5171), + [anon_sym_crossinline] = ACTIONS(5171), + [anon_sym_expect] = ACTIONS(5171), + [anon_sym_actual] = ACTIONS(5171), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [3972] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(7267), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [3973] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3116), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(6840), + [sym__backtick_identifier] = ACTIONS(5173), + [sym__automatic_semicolon] = ACTIONS(5173), + [sym_safe_nav] = ACTIONS(5173), [sym_multiline_comment] = ACTIONS(3), }, - [3974] = { - [sym__alpha_identifier] = ACTIONS(4944), - [anon_sym_AT] = ACTIONS(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_as] = ACTIONS(4944), - [anon_sym_EQ] = ACTIONS(4944), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_where] = ACTIONS(4944), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_get] = ACTIONS(4944), - [anon_sym_set] = ACTIONS(4944), - [anon_sym_STAR] = ACTIONS(4944), - [sym_label] = ACTIONS(4946), - [anon_sym_in] = ACTIONS(4944), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_QMARK_COLON] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_else] = ACTIONS(4944), - [anon_sym_COLON_COLON] = ACTIONS(4946), - [anon_sym_PLUS_EQ] = ACTIONS(4946), - [anon_sym_DASH_EQ] = ACTIONS(4946), - [anon_sym_STAR_EQ] = ACTIONS(4946), - [anon_sym_SLASH_EQ] = ACTIONS(4946), - [anon_sym_PERCENT_EQ] = ACTIONS(4946), - [anon_sym_BANG_EQ] = ACTIONS(4944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_BANGin] = ACTIONS(4946), - [anon_sym_is] = ACTIONS(4944), - [anon_sym_BANGis] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4944), - [anon_sym_as_QMARK] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_BANG_BANG] = ACTIONS(4946), - [anon_sym_suspend] = ACTIONS(4944), - [anon_sym_sealed] = ACTIONS(4944), - [anon_sym_annotation] = ACTIONS(4944), - [anon_sym_data] = ACTIONS(4944), - [anon_sym_inner] = ACTIONS(4944), - [anon_sym_value] = ACTIONS(4944), - [anon_sym_override] = ACTIONS(4944), - [anon_sym_lateinit] = ACTIONS(4944), - [anon_sym_public] = ACTIONS(4944), - [anon_sym_private] = ACTIONS(4944), - [anon_sym_internal] = ACTIONS(4944), - [anon_sym_protected] = ACTIONS(4944), - [anon_sym_tailrec] = ACTIONS(4944), - [anon_sym_operator] = ACTIONS(4944), - [anon_sym_infix] = ACTIONS(4944), - [anon_sym_inline] = ACTIONS(4944), - [anon_sym_external] = ACTIONS(4944), - [sym_property_modifier] = ACTIONS(4944), - [anon_sym_abstract] = ACTIONS(4944), - [anon_sym_final] = ACTIONS(4944), - [anon_sym_open] = ACTIONS(4944), - [anon_sym_vararg] = ACTIONS(4944), - [anon_sym_noinline] = ACTIONS(4944), - [anon_sym_crossinline] = ACTIONS(4944), - [anon_sym_expect] = ACTIONS(4944), - [anon_sym_actual] = ACTIONS(4944), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4946), - [sym__automatic_semicolon] = ACTIONS(4946), - [sym_safe_nav] = ACTIONS(4946), + [3960] = { + [sym__alpha_identifier] = ACTIONS(5035), + [anon_sym_AT] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_as] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_where] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_SEMI] = ACTIONS(5037), + [anon_sym_get] = ACTIONS(5035), + [anon_sym_set] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [sym_label] = ACTIONS(5037), + [anon_sym_in] = ACTIONS(5035), + [anon_sym_DOT_DOT] = ACTIONS(5037), + [anon_sym_QMARK_COLON] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_else] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5037), + [anon_sym_EQ_EQ] = ACTIONS(5035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_BANGin] = ACTIONS(5037), + [anon_sym_is] = ACTIONS(5035), + [anon_sym_BANGis] = ACTIONS(5037), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_as_QMARK] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_BANG_BANG] = ACTIONS(5037), + [anon_sym_suspend] = ACTIONS(5035), + [anon_sym_sealed] = ACTIONS(5035), + [anon_sym_annotation] = ACTIONS(5035), + [anon_sym_data] = ACTIONS(5035), + [anon_sym_inner] = ACTIONS(5035), + [anon_sym_value] = ACTIONS(5035), + [anon_sym_override] = ACTIONS(5035), + [anon_sym_lateinit] = ACTIONS(5035), + [anon_sym_public] = ACTIONS(5035), + [anon_sym_private] = ACTIONS(5035), + [anon_sym_internal] = ACTIONS(5035), + [anon_sym_protected] = ACTIONS(5035), + [anon_sym_tailrec] = ACTIONS(5035), + [anon_sym_operator] = ACTIONS(5035), + [anon_sym_infix] = ACTIONS(5035), + [anon_sym_inline] = ACTIONS(5035), + [anon_sym_external] = ACTIONS(5035), + [sym_property_modifier] = ACTIONS(5035), + [anon_sym_abstract] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_open] = ACTIONS(5035), + [anon_sym_vararg] = ACTIONS(5035), + [anon_sym_noinline] = ACTIONS(5035), + [anon_sym_crossinline] = ACTIONS(5035), + [anon_sym_expect] = ACTIONS(5035), + [anon_sym_actual] = ACTIONS(5035), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5037), + [sym__automatic_semicolon] = ACTIONS(5037), + [sym_safe_nav] = ACTIONS(5037), [sym_multiline_comment] = ACTIONS(3), }, - [3975] = { - [sym__alpha_identifier] = ACTIONS(4948), - [anon_sym_AT] = ACTIONS(4950), - [anon_sym_LBRACK] = ACTIONS(4950), - [anon_sym_as] = ACTIONS(4948), - [anon_sym_EQ] = ACTIONS(4948), - [anon_sym_LBRACE] = ACTIONS(4950), - [anon_sym_RBRACE] = ACTIONS(4950), - [anon_sym_LPAREN] = ACTIONS(4950), - [anon_sym_COMMA] = ACTIONS(4950), - [anon_sym_LT] = ACTIONS(4948), - [anon_sym_GT] = ACTIONS(4948), - [anon_sym_where] = ACTIONS(4948), - [anon_sym_DOT] = ACTIONS(4948), - [anon_sym_SEMI] = ACTIONS(4950), - [anon_sym_get] = ACTIONS(4948), - [anon_sym_set] = ACTIONS(4948), - [anon_sym_STAR] = ACTIONS(4948), - [sym_label] = ACTIONS(4950), - [anon_sym_in] = ACTIONS(4948), - [anon_sym_DOT_DOT] = ACTIONS(4950), - [anon_sym_QMARK_COLON] = ACTIONS(4950), - [anon_sym_AMP_AMP] = ACTIONS(4950), - [anon_sym_PIPE_PIPE] = ACTIONS(4950), - [anon_sym_else] = ACTIONS(4948), - [anon_sym_COLON_COLON] = ACTIONS(4950), - [anon_sym_PLUS_EQ] = ACTIONS(4950), - [anon_sym_DASH_EQ] = ACTIONS(4950), - [anon_sym_STAR_EQ] = ACTIONS(4950), - [anon_sym_SLASH_EQ] = ACTIONS(4950), - [anon_sym_PERCENT_EQ] = ACTIONS(4950), - [anon_sym_BANG_EQ] = ACTIONS(4948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4950), - [anon_sym_EQ_EQ] = ACTIONS(4948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4950), - [anon_sym_LT_EQ] = ACTIONS(4950), - [anon_sym_GT_EQ] = ACTIONS(4950), - [anon_sym_BANGin] = ACTIONS(4950), - [anon_sym_is] = ACTIONS(4948), - [anon_sym_BANGis] = ACTIONS(4950), - [anon_sym_PLUS] = ACTIONS(4948), - [anon_sym_DASH] = ACTIONS(4948), - [anon_sym_SLASH] = ACTIONS(4948), - [anon_sym_PERCENT] = ACTIONS(4948), - [anon_sym_as_QMARK] = ACTIONS(4950), - [anon_sym_PLUS_PLUS] = ACTIONS(4950), - [anon_sym_DASH_DASH] = ACTIONS(4950), - [anon_sym_BANG_BANG] = ACTIONS(4950), - [anon_sym_suspend] = ACTIONS(4948), - [anon_sym_sealed] = ACTIONS(4948), - [anon_sym_annotation] = ACTIONS(4948), - [anon_sym_data] = ACTIONS(4948), - [anon_sym_inner] = ACTIONS(4948), - [anon_sym_value] = ACTIONS(4948), - [anon_sym_override] = ACTIONS(4948), - [anon_sym_lateinit] = ACTIONS(4948), - [anon_sym_public] = ACTIONS(4948), - [anon_sym_private] = ACTIONS(4948), - [anon_sym_internal] = ACTIONS(4948), - [anon_sym_protected] = ACTIONS(4948), - [anon_sym_tailrec] = ACTIONS(4948), - [anon_sym_operator] = ACTIONS(4948), - [anon_sym_infix] = ACTIONS(4948), - [anon_sym_inline] = ACTIONS(4948), - [anon_sym_external] = ACTIONS(4948), - [sym_property_modifier] = ACTIONS(4948), - [anon_sym_abstract] = ACTIONS(4948), - [anon_sym_final] = ACTIONS(4948), - [anon_sym_open] = ACTIONS(4948), - [anon_sym_vararg] = ACTIONS(4948), - [anon_sym_noinline] = ACTIONS(4948), - [anon_sym_crossinline] = ACTIONS(4948), - [anon_sym_expect] = ACTIONS(4948), - [anon_sym_actual] = ACTIONS(4948), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4950), - [sym__automatic_semicolon] = ACTIONS(4950), - [sym_safe_nav] = ACTIONS(4950), + [3961] = { + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), [sym_multiline_comment] = ACTIONS(3), }, - [3976] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_STAR_EQ] = ACTIONS(3125), - [anon_sym_SLASH_EQ] = ACTIONS(3125), - [anon_sym_PERCENT_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(6840), + [3962] = { + [sym__alpha_identifier] = ACTIONS(4906), + [anon_sym_AT] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_where] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_get] = ACTIONS(4906), + [anon_sym_set] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4906), + [sym_label] = ACTIONS(4908), + [anon_sym_in] = ACTIONS(4906), + [anon_sym_DOT_DOT] = ACTIONS(4908), + [anon_sym_QMARK_COLON] = ACTIONS(4908), + [anon_sym_AMP_AMP] = ACTIONS(4908), + [anon_sym_PIPE_PIPE] = ACTIONS(4908), + [anon_sym_else] = ACTIONS(4906), + [anon_sym_COLON_COLON] = ACTIONS(4908), + [anon_sym_PLUS_EQ] = ACTIONS(4908), + [anon_sym_DASH_EQ] = ACTIONS(4908), + [anon_sym_STAR_EQ] = ACTIONS(4908), + [anon_sym_SLASH_EQ] = ACTIONS(4908), + [anon_sym_PERCENT_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4906), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4908), + [anon_sym_EQ_EQ] = ACTIONS(4906), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4908), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_BANGin] = ACTIONS(4908), + [anon_sym_is] = ACTIONS(4906), + [anon_sym_BANGis] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_PERCENT] = ACTIONS(4906), + [anon_sym_as_QMARK] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_BANG_BANG] = ACTIONS(4908), + [anon_sym_suspend] = ACTIONS(4906), + [anon_sym_sealed] = ACTIONS(4906), + [anon_sym_annotation] = ACTIONS(4906), + [anon_sym_data] = ACTIONS(4906), + [anon_sym_inner] = ACTIONS(4906), + [anon_sym_value] = ACTIONS(4906), + [anon_sym_override] = ACTIONS(4906), + [anon_sym_lateinit] = ACTIONS(4906), + [anon_sym_public] = ACTIONS(4906), + [anon_sym_private] = ACTIONS(4906), + [anon_sym_internal] = ACTIONS(4906), + [anon_sym_protected] = ACTIONS(4906), + [anon_sym_tailrec] = ACTIONS(4906), + [anon_sym_operator] = ACTIONS(4906), + [anon_sym_infix] = ACTIONS(4906), + [anon_sym_inline] = ACTIONS(4906), + [anon_sym_external] = ACTIONS(4906), + [sym_property_modifier] = ACTIONS(4906), + [anon_sym_abstract] = ACTIONS(4906), + [anon_sym_final] = ACTIONS(4906), + [anon_sym_open] = ACTIONS(4906), + [anon_sym_vararg] = ACTIONS(4906), + [anon_sym_noinline] = ACTIONS(4906), + [anon_sym_crossinline] = ACTIONS(4906), + [anon_sym_expect] = ACTIONS(4906), + [anon_sym_actual] = ACTIONS(4906), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4908), + [sym__automatic_semicolon] = ACTIONS(4908), + [sym_safe_nav] = ACTIONS(4908), [sym_multiline_comment] = ACTIONS(3), }, - [3977] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(7267), - [anon_sym_QMARK_COLON] = ACTIONS(7278), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [3963] = { + [sym__alpha_identifier] = ACTIONS(4902), + [anon_sym_AT] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4902), + [anon_sym_where] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_get] = ACTIONS(4902), + [anon_sym_set] = ACTIONS(4902), + [anon_sym_STAR] = ACTIONS(4902), + [sym_label] = ACTIONS(4904), + [anon_sym_in] = ACTIONS(4902), + [anon_sym_DOT_DOT] = ACTIONS(4904), + [anon_sym_QMARK_COLON] = ACTIONS(4904), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_PIPE_PIPE] = ACTIONS(4904), + [anon_sym_else] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_PLUS_EQ] = ACTIONS(4904), + [anon_sym_DASH_EQ] = ACTIONS(4904), + [anon_sym_STAR_EQ] = ACTIONS(4904), + [anon_sym_SLASH_EQ] = ACTIONS(4904), + [anon_sym_PERCENT_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4904), + [anon_sym_EQ_EQ] = ACTIONS(4902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4904), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_BANGin] = ACTIONS(4904), + [anon_sym_is] = ACTIONS(4902), + [anon_sym_BANGis] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4902), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4902), + [anon_sym_PERCENT] = ACTIONS(4902), + [anon_sym_as_QMARK] = ACTIONS(4904), + [anon_sym_PLUS_PLUS] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4904), + [anon_sym_BANG_BANG] = ACTIONS(4904), + [anon_sym_suspend] = ACTIONS(4902), + [anon_sym_sealed] = ACTIONS(4902), + [anon_sym_annotation] = ACTIONS(4902), + [anon_sym_data] = ACTIONS(4902), + [anon_sym_inner] = ACTIONS(4902), + [anon_sym_value] = ACTIONS(4902), + [anon_sym_override] = ACTIONS(4902), + [anon_sym_lateinit] = ACTIONS(4902), + [anon_sym_public] = ACTIONS(4902), + [anon_sym_private] = ACTIONS(4902), + [anon_sym_internal] = ACTIONS(4902), + [anon_sym_protected] = ACTIONS(4902), + [anon_sym_tailrec] = ACTIONS(4902), + [anon_sym_operator] = ACTIONS(4902), + [anon_sym_infix] = ACTIONS(4902), + [anon_sym_inline] = ACTIONS(4902), + [anon_sym_external] = ACTIONS(4902), + [sym_property_modifier] = ACTIONS(4902), + [anon_sym_abstract] = ACTIONS(4902), + [anon_sym_final] = ACTIONS(4902), + [anon_sym_open] = ACTIONS(4902), + [anon_sym_vararg] = ACTIONS(4902), + [anon_sym_noinline] = ACTIONS(4902), + [anon_sym_crossinline] = ACTIONS(4902), + [anon_sym_expect] = ACTIONS(4902), + [anon_sym_actual] = ACTIONS(4902), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym__backtick_identifier] = ACTIONS(4904), + [sym__automatic_semicolon] = ACTIONS(4904), + [sym_safe_nav] = ACTIONS(4904), [sym_multiline_comment] = ACTIONS(3), }, - [3978] = { + [3964] = { [sym__alpha_identifier] = ACTIONS(5020), [anon_sym_AT] = ACTIONS(5022), [anon_sym_LBRACK] = ACTIONS(5022), @@ -445600,2727 +441928,2567 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5022), [sym_multiline_comment] = ACTIONS(3), }, - [3979] = { - [sym__alpha_identifier] = ACTIONS(4952), - [anon_sym_AT] = ACTIONS(4954), - [anon_sym_LBRACK] = ACTIONS(4954), - [anon_sym_as] = ACTIONS(4952), - [anon_sym_EQ] = ACTIONS(4952), - [anon_sym_LBRACE] = ACTIONS(4954), - [anon_sym_RBRACE] = ACTIONS(4954), - [anon_sym_LPAREN] = ACTIONS(4954), - [anon_sym_COMMA] = ACTIONS(4954), - [anon_sym_LT] = ACTIONS(4952), - [anon_sym_GT] = ACTIONS(4952), - [anon_sym_where] = ACTIONS(4952), - [anon_sym_DOT] = ACTIONS(4952), - [anon_sym_SEMI] = ACTIONS(4954), - [anon_sym_get] = ACTIONS(4952), - [anon_sym_set] = ACTIONS(4952), - [anon_sym_STAR] = ACTIONS(4952), - [sym_label] = ACTIONS(4954), - [anon_sym_in] = ACTIONS(4952), - [anon_sym_DOT_DOT] = ACTIONS(4954), - [anon_sym_QMARK_COLON] = ACTIONS(4954), - [anon_sym_AMP_AMP] = ACTIONS(4954), - [anon_sym_PIPE_PIPE] = ACTIONS(4954), - [anon_sym_else] = ACTIONS(4952), - [anon_sym_COLON_COLON] = ACTIONS(4954), - [anon_sym_PLUS_EQ] = ACTIONS(4954), - [anon_sym_DASH_EQ] = ACTIONS(4954), - [anon_sym_STAR_EQ] = ACTIONS(4954), - [anon_sym_SLASH_EQ] = ACTIONS(4954), - [anon_sym_PERCENT_EQ] = ACTIONS(4954), - [anon_sym_BANG_EQ] = ACTIONS(4952), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4954), - [anon_sym_EQ_EQ] = ACTIONS(4952), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4954), - [anon_sym_LT_EQ] = ACTIONS(4954), - [anon_sym_GT_EQ] = ACTIONS(4954), - [anon_sym_BANGin] = ACTIONS(4954), - [anon_sym_is] = ACTIONS(4952), - [anon_sym_BANGis] = ACTIONS(4954), - [anon_sym_PLUS] = ACTIONS(4952), - [anon_sym_DASH] = ACTIONS(4952), - [anon_sym_SLASH] = ACTIONS(4952), - [anon_sym_PERCENT] = ACTIONS(4952), - [anon_sym_as_QMARK] = ACTIONS(4954), - [anon_sym_PLUS_PLUS] = ACTIONS(4954), - [anon_sym_DASH_DASH] = ACTIONS(4954), - [anon_sym_BANG_BANG] = ACTIONS(4954), - [anon_sym_suspend] = ACTIONS(4952), - [anon_sym_sealed] = ACTIONS(4952), - [anon_sym_annotation] = ACTIONS(4952), - [anon_sym_data] = ACTIONS(4952), - [anon_sym_inner] = ACTIONS(4952), - [anon_sym_value] = ACTIONS(4952), - [anon_sym_override] = ACTIONS(4952), - [anon_sym_lateinit] = ACTIONS(4952), - [anon_sym_public] = ACTIONS(4952), - [anon_sym_private] = ACTIONS(4952), - [anon_sym_internal] = ACTIONS(4952), - [anon_sym_protected] = ACTIONS(4952), - [anon_sym_tailrec] = ACTIONS(4952), - [anon_sym_operator] = ACTIONS(4952), - [anon_sym_infix] = ACTIONS(4952), - [anon_sym_inline] = ACTIONS(4952), - [anon_sym_external] = ACTIONS(4952), - [sym_property_modifier] = ACTIONS(4952), - [anon_sym_abstract] = ACTIONS(4952), - [anon_sym_final] = ACTIONS(4952), - [anon_sym_open] = ACTIONS(4952), - [anon_sym_vararg] = ACTIONS(4952), - [anon_sym_noinline] = ACTIONS(4952), - [anon_sym_crossinline] = ACTIONS(4952), - [anon_sym_expect] = ACTIONS(4952), - [anon_sym_actual] = ACTIONS(4952), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4954), - [sym__automatic_semicolon] = ACTIONS(4954), - [sym_safe_nav] = ACTIONS(4954), - [sym_multiline_comment] = ACTIONS(3), - }, - [3980] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7276), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_DOT_DOT] = ACTIONS(7267), - [anon_sym_QMARK_COLON] = ACTIONS(7278), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(7290), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [3981] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7274), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7276), - [anon_sym_while] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(7267), - [anon_sym_QMARK_COLON] = ACTIONS(7278), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(7288), - [anon_sym_GT_EQ] = ACTIONS(7288), - [anon_sym_BANGin] = ACTIONS(7290), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [3982] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7274), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7276), - [anon_sym_while] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(7267), - [anon_sym_QMARK_COLON] = ACTIONS(7278), - [anon_sym_AMP_AMP] = ACTIONS(7280), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(7284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7286), - [anon_sym_EQ_EQ] = ACTIONS(7284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7286), - [anon_sym_LT_EQ] = ACTIONS(7288), - [anon_sym_GT_EQ] = ACTIONS(7288), - [anon_sym_BANGin] = ACTIONS(7290), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), + [3965] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3974), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(7185), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_object] = ACTIONS(4684), + [anon_sym_fun] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_this] = ACTIONS(4684), + [anon_sym_super] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4686), + [sym_label] = ACTIONS(4684), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(4684), + [anon_sym_if] = ACTIONS(4684), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_when] = ACTIONS(4684), + [anon_sym_try] = ACTIONS(4684), + [anon_sym_throw] = ACTIONS(4684), + [anon_sym_return] = ACTIONS(4684), + [anon_sym_continue] = ACTIONS(4684), + [anon_sym_break] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4686), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG] = ACTIONS(4684), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4686), + [anon_sym_continue_AT] = ACTIONS(4686), + [anon_sym_break_AT] = ACTIONS(4686), + [anon_sym_this_AT] = ACTIONS(4686), + [anon_sym_super_AT] = ACTIONS(4686), + [sym_real_literal] = ACTIONS(4686), + [sym_integer_literal] = ACTIONS(4684), + [sym_hex_literal] = ACTIONS(4686), + [sym_bin_literal] = ACTIONS(4686), + [anon_sym_true] = ACTIONS(4684), + [anon_sym_false] = ACTIONS(4684), + [anon_sym_SQUOTE] = ACTIONS(4686), + [sym__backtick_identifier] = ACTIONS(4686), + [sym__automatic_semicolon] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4686), }, - [3983] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7274), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7276), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_DOT_DOT] = ACTIONS(7267), - [anon_sym_QMARK_COLON] = ACTIONS(7278), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(7284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7286), - [anon_sym_EQ_EQ] = ACTIONS(7284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7286), - [anon_sym_LT_EQ] = ACTIONS(7288), - [anon_sym_GT_EQ] = ACTIONS(7288), - [anon_sym_BANGin] = ACTIONS(7290), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [3966] = { + [sym__alpha_identifier] = ACTIONS(4826), + [anon_sym_AT] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_as] = ACTIONS(4826), + [anon_sym_EQ] = ACTIONS(4826), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_where] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_get] = ACTIONS(4826), + [anon_sym_set] = ACTIONS(4826), + [anon_sym_STAR] = ACTIONS(4826), + [sym_label] = ACTIONS(4828), + [anon_sym_in] = ACTIONS(4826), + [anon_sym_DOT_DOT] = ACTIONS(4828), + [anon_sym_QMARK_COLON] = ACTIONS(4828), + [anon_sym_AMP_AMP] = ACTIONS(4828), + [anon_sym_PIPE_PIPE] = ACTIONS(4828), + [anon_sym_else] = ACTIONS(4826), + [anon_sym_COLON_COLON] = ACTIONS(4828), + [anon_sym_PLUS_EQ] = ACTIONS(4828), + [anon_sym_DASH_EQ] = ACTIONS(4828), + [anon_sym_STAR_EQ] = ACTIONS(4828), + [anon_sym_SLASH_EQ] = ACTIONS(4828), + [anon_sym_PERCENT_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ] = ACTIONS(4826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4828), + [anon_sym_EQ_EQ] = ACTIONS(4826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4828), + [anon_sym_LT_EQ] = ACTIONS(4828), + [anon_sym_GT_EQ] = ACTIONS(4828), + [anon_sym_BANGin] = ACTIONS(4828), + [anon_sym_is] = ACTIONS(4826), + [anon_sym_BANGis] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4826), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4826), + [anon_sym_PERCENT] = ACTIONS(4826), + [anon_sym_as_QMARK] = ACTIONS(4828), + [anon_sym_PLUS_PLUS] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4828), + [anon_sym_BANG_BANG] = ACTIONS(4828), + [anon_sym_suspend] = ACTIONS(4826), + [anon_sym_sealed] = ACTIONS(4826), + [anon_sym_annotation] = ACTIONS(4826), + [anon_sym_data] = ACTIONS(4826), + [anon_sym_inner] = ACTIONS(4826), + [anon_sym_value] = ACTIONS(4826), + [anon_sym_override] = ACTIONS(4826), + [anon_sym_lateinit] = ACTIONS(4826), + [anon_sym_public] = ACTIONS(4826), + [anon_sym_private] = ACTIONS(4826), + [anon_sym_internal] = ACTIONS(4826), + [anon_sym_protected] = ACTIONS(4826), + [anon_sym_tailrec] = ACTIONS(4826), + [anon_sym_operator] = ACTIONS(4826), + [anon_sym_infix] = ACTIONS(4826), + [anon_sym_inline] = ACTIONS(4826), + [anon_sym_external] = ACTIONS(4826), + [sym_property_modifier] = ACTIONS(4826), + [anon_sym_abstract] = ACTIONS(4826), + [anon_sym_final] = ACTIONS(4826), + [anon_sym_open] = ACTIONS(4826), + [anon_sym_vararg] = ACTIONS(4826), + [anon_sym_noinline] = ACTIONS(4826), + [anon_sym_crossinline] = ACTIONS(4826), + [anon_sym_expect] = ACTIONS(4826), + [anon_sym_actual] = ACTIONS(4826), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4828), + [sym__automatic_semicolon] = ACTIONS(4828), + [sym_safe_nav] = ACTIONS(4828), [sym_multiline_comment] = ACTIONS(3), }, - [3984] = { - [sym__alpha_identifier] = ACTIONS(4956), - [anon_sym_AT] = ACTIONS(4958), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_as] = ACTIONS(4956), - [anon_sym_EQ] = ACTIONS(4956), - [anon_sym_LBRACE] = ACTIONS(4958), - [anon_sym_RBRACE] = ACTIONS(4958), - [anon_sym_LPAREN] = ACTIONS(4958), - [anon_sym_COMMA] = ACTIONS(4958), - [anon_sym_LT] = ACTIONS(4956), - [anon_sym_GT] = ACTIONS(4956), - [anon_sym_where] = ACTIONS(4956), - [anon_sym_DOT] = ACTIONS(4956), - [anon_sym_SEMI] = ACTIONS(4958), - [anon_sym_get] = ACTIONS(4956), - [anon_sym_set] = ACTIONS(4956), - [anon_sym_STAR] = ACTIONS(4956), - [sym_label] = ACTIONS(4958), - [anon_sym_in] = ACTIONS(4956), - [anon_sym_DOT_DOT] = ACTIONS(4958), - [anon_sym_QMARK_COLON] = ACTIONS(4958), - [anon_sym_AMP_AMP] = ACTIONS(4958), - [anon_sym_PIPE_PIPE] = ACTIONS(4958), - [anon_sym_else] = ACTIONS(4956), - [anon_sym_COLON_COLON] = ACTIONS(4958), - [anon_sym_PLUS_EQ] = ACTIONS(4958), - [anon_sym_DASH_EQ] = ACTIONS(4958), - [anon_sym_STAR_EQ] = ACTIONS(4958), - [anon_sym_SLASH_EQ] = ACTIONS(4958), - [anon_sym_PERCENT_EQ] = ACTIONS(4958), - [anon_sym_BANG_EQ] = ACTIONS(4956), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4958), - [anon_sym_EQ_EQ] = ACTIONS(4956), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4958), - [anon_sym_LT_EQ] = ACTIONS(4958), - [anon_sym_GT_EQ] = ACTIONS(4958), - [anon_sym_BANGin] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4956), - [anon_sym_BANGis] = ACTIONS(4958), - [anon_sym_PLUS] = ACTIONS(4956), - [anon_sym_DASH] = ACTIONS(4956), - [anon_sym_SLASH] = ACTIONS(4956), - [anon_sym_PERCENT] = ACTIONS(4956), - [anon_sym_as_QMARK] = ACTIONS(4958), - [anon_sym_PLUS_PLUS] = ACTIONS(4958), - [anon_sym_DASH_DASH] = ACTIONS(4958), - [anon_sym_BANG_BANG] = ACTIONS(4958), - [anon_sym_suspend] = ACTIONS(4956), - [anon_sym_sealed] = ACTIONS(4956), - [anon_sym_annotation] = ACTIONS(4956), - [anon_sym_data] = ACTIONS(4956), - [anon_sym_inner] = ACTIONS(4956), - [anon_sym_value] = ACTIONS(4956), - [anon_sym_override] = ACTIONS(4956), - [anon_sym_lateinit] = ACTIONS(4956), - [anon_sym_public] = ACTIONS(4956), - [anon_sym_private] = ACTIONS(4956), - [anon_sym_internal] = ACTIONS(4956), - [anon_sym_protected] = ACTIONS(4956), - [anon_sym_tailrec] = ACTIONS(4956), - [anon_sym_operator] = ACTIONS(4956), - [anon_sym_infix] = ACTIONS(4956), - [anon_sym_inline] = ACTIONS(4956), - [anon_sym_external] = ACTIONS(4956), - [sym_property_modifier] = ACTIONS(4956), - [anon_sym_abstract] = ACTIONS(4956), - [anon_sym_final] = ACTIONS(4956), - [anon_sym_open] = ACTIONS(4956), - [anon_sym_vararg] = ACTIONS(4956), - [anon_sym_noinline] = ACTIONS(4956), - [anon_sym_crossinline] = ACTIONS(4956), - [anon_sym_expect] = ACTIONS(4956), - [anon_sym_actual] = ACTIONS(4956), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4958), - [sym__automatic_semicolon] = ACTIONS(4958), - [sym_safe_nav] = ACTIONS(4958), + [3967] = { + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4654), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), [sym_multiline_comment] = ACTIONS(3), }, - [3985] = { - [sym__alpha_identifier] = ACTIONS(4960), - [anon_sym_AT] = ACTIONS(4962), - [anon_sym_LBRACK] = ACTIONS(4962), - [anon_sym_as] = ACTIONS(4960), - [anon_sym_EQ] = ACTIONS(4960), - [anon_sym_LBRACE] = ACTIONS(4962), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_COMMA] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4960), - [anon_sym_GT] = ACTIONS(4960), - [anon_sym_where] = ACTIONS(4960), - [anon_sym_DOT] = ACTIONS(4960), - [anon_sym_SEMI] = ACTIONS(4962), - [anon_sym_get] = ACTIONS(4960), - [anon_sym_set] = ACTIONS(4960), - [anon_sym_STAR] = ACTIONS(4960), - [sym_label] = ACTIONS(4962), - [anon_sym_in] = ACTIONS(4960), - [anon_sym_DOT_DOT] = ACTIONS(4962), - [anon_sym_QMARK_COLON] = ACTIONS(4962), - [anon_sym_AMP_AMP] = ACTIONS(4962), - [anon_sym_PIPE_PIPE] = ACTIONS(4962), - [anon_sym_else] = ACTIONS(4960), - [anon_sym_COLON_COLON] = ACTIONS(4962), - [anon_sym_PLUS_EQ] = ACTIONS(4962), - [anon_sym_DASH_EQ] = ACTIONS(4962), - [anon_sym_STAR_EQ] = ACTIONS(4962), - [anon_sym_SLASH_EQ] = ACTIONS(4962), - [anon_sym_PERCENT_EQ] = ACTIONS(4962), - [anon_sym_BANG_EQ] = ACTIONS(4960), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4962), - [anon_sym_EQ_EQ] = ACTIONS(4960), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4962), - [anon_sym_LT_EQ] = ACTIONS(4962), - [anon_sym_GT_EQ] = ACTIONS(4962), - [anon_sym_BANGin] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_BANGis] = ACTIONS(4962), - [anon_sym_PLUS] = ACTIONS(4960), - [anon_sym_DASH] = ACTIONS(4960), - [anon_sym_SLASH] = ACTIONS(4960), - [anon_sym_PERCENT] = ACTIONS(4960), - [anon_sym_as_QMARK] = ACTIONS(4962), - [anon_sym_PLUS_PLUS] = ACTIONS(4962), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_BANG_BANG] = ACTIONS(4962), - [anon_sym_suspend] = ACTIONS(4960), - [anon_sym_sealed] = ACTIONS(4960), - [anon_sym_annotation] = ACTIONS(4960), - [anon_sym_data] = ACTIONS(4960), - [anon_sym_inner] = ACTIONS(4960), - [anon_sym_value] = ACTIONS(4960), - [anon_sym_override] = ACTIONS(4960), - [anon_sym_lateinit] = ACTIONS(4960), - [anon_sym_public] = ACTIONS(4960), - [anon_sym_private] = ACTIONS(4960), - [anon_sym_internal] = ACTIONS(4960), - [anon_sym_protected] = ACTIONS(4960), - [anon_sym_tailrec] = ACTIONS(4960), - [anon_sym_operator] = ACTIONS(4960), - [anon_sym_infix] = ACTIONS(4960), - [anon_sym_inline] = ACTIONS(4960), - [anon_sym_external] = ACTIONS(4960), - [sym_property_modifier] = ACTIONS(4960), - [anon_sym_abstract] = ACTIONS(4960), - [anon_sym_final] = ACTIONS(4960), - [anon_sym_open] = ACTIONS(4960), - [anon_sym_vararg] = ACTIONS(4960), - [anon_sym_noinline] = ACTIONS(4960), - [anon_sym_crossinline] = ACTIONS(4960), - [anon_sym_expect] = ACTIONS(4960), - [anon_sym_actual] = ACTIONS(4960), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4962), - [sym__automatic_semicolon] = ACTIONS(4962), - [sym_safe_nav] = ACTIONS(4962), + [3968] = { + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [3986] = { - [sym__alpha_identifier] = ACTIONS(4964), - [anon_sym_AT] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_as] = ACTIONS(4964), - [anon_sym_EQ] = ACTIONS(4964), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_RBRACE] = ACTIONS(4966), - [anon_sym_LPAREN] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_where] = ACTIONS(4964), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_SEMI] = ACTIONS(4966), - [anon_sym_get] = ACTIONS(4964), - [anon_sym_set] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4964), - [sym_label] = ACTIONS(4966), - [anon_sym_in] = ACTIONS(4964), - [anon_sym_DOT_DOT] = ACTIONS(4966), - [anon_sym_QMARK_COLON] = ACTIONS(4966), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_else] = ACTIONS(4964), - [anon_sym_COLON_COLON] = ACTIONS(4966), - [anon_sym_PLUS_EQ] = ACTIONS(4966), - [anon_sym_DASH_EQ] = ACTIONS(4966), - [anon_sym_STAR_EQ] = ACTIONS(4966), - [anon_sym_SLASH_EQ] = ACTIONS(4966), - [anon_sym_PERCENT_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4966), - [anon_sym_EQ_EQ] = ACTIONS(4964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4966), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_BANGin] = ACTIONS(4966), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_BANGis] = ACTIONS(4966), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4964), - [anon_sym_as_QMARK] = ACTIONS(4966), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_BANG_BANG] = ACTIONS(4966), - [anon_sym_suspend] = ACTIONS(4964), - [anon_sym_sealed] = ACTIONS(4964), - [anon_sym_annotation] = ACTIONS(4964), - [anon_sym_data] = ACTIONS(4964), - [anon_sym_inner] = ACTIONS(4964), - [anon_sym_value] = ACTIONS(4964), - [anon_sym_override] = ACTIONS(4964), - [anon_sym_lateinit] = ACTIONS(4964), - [anon_sym_public] = ACTIONS(4964), - [anon_sym_private] = ACTIONS(4964), - [anon_sym_internal] = ACTIONS(4964), - [anon_sym_protected] = ACTIONS(4964), - [anon_sym_tailrec] = ACTIONS(4964), - [anon_sym_operator] = ACTIONS(4964), - [anon_sym_infix] = ACTIONS(4964), - [anon_sym_inline] = ACTIONS(4964), - [anon_sym_external] = ACTIONS(4964), - [sym_property_modifier] = ACTIONS(4964), - [anon_sym_abstract] = ACTIONS(4964), - [anon_sym_final] = ACTIONS(4964), - [anon_sym_open] = ACTIONS(4964), - [anon_sym_vararg] = ACTIONS(4964), - [anon_sym_noinline] = ACTIONS(4964), - [anon_sym_crossinline] = ACTIONS(4964), - [anon_sym_expect] = ACTIONS(4964), - [anon_sym_actual] = ACTIONS(4964), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4966), - [sym__automatic_semicolon] = ACTIONS(4966), - [sym_safe_nav] = ACTIONS(4966), + [3969] = { + [sym__alpha_identifier] = ACTIONS(4970), + [anon_sym_AT] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4970), + [anon_sym_EQ] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_RBRACE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_where] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_get] = ACTIONS(4970), + [anon_sym_set] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [sym_label] = ACTIONS(4972), + [anon_sym_in] = ACTIONS(4970), + [anon_sym_DOT_DOT] = ACTIONS(4972), + [anon_sym_QMARK_COLON] = ACTIONS(4972), + [anon_sym_AMP_AMP] = ACTIONS(4972), + [anon_sym_PIPE_PIPE] = ACTIONS(4972), + [anon_sym_else] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_PLUS_EQ] = ACTIONS(4972), + [anon_sym_DASH_EQ] = ACTIONS(4972), + [anon_sym_STAR_EQ] = ACTIONS(4972), + [anon_sym_SLASH_EQ] = ACTIONS(4972), + [anon_sym_PERCENT_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4972), + [anon_sym_GT_EQ] = ACTIONS(4972), + [anon_sym_BANGin] = ACTIONS(4972), + [anon_sym_is] = ACTIONS(4970), + [anon_sym_BANGis] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4970), + [anon_sym_as_QMARK] = ACTIONS(4972), + [anon_sym_PLUS_PLUS] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4972), + [anon_sym_BANG_BANG] = ACTIONS(4972), + [anon_sym_suspend] = ACTIONS(4970), + [anon_sym_sealed] = ACTIONS(4970), + [anon_sym_annotation] = ACTIONS(4970), + [anon_sym_data] = ACTIONS(4970), + [anon_sym_inner] = ACTIONS(4970), + [anon_sym_value] = ACTIONS(4970), + [anon_sym_override] = ACTIONS(4970), + [anon_sym_lateinit] = ACTIONS(4970), + [anon_sym_public] = ACTIONS(4970), + [anon_sym_private] = ACTIONS(4970), + [anon_sym_internal] = ACTIONS(4970), + [anon_sym_protected] = ACTIONS(4970), + [anon_sym_tailrec] = ACTIONS(4970), + [anon_sym_operator] = ACTIONS(4970), + [anon_sym_infix] = ACTIONS(4970), + [anon_sym_inline] = ACTIONS(4970), + [anon_sym_external] = ACTIONS(4970), + [sym_property_modifier] = ACTIONS(4970), + [anon_sym_abstract] = ACTIONS(4970), + [anon_sym_final] = ACTIONS(4970), + [anon_sym_open] = ACTIONS(4970), + [anon_sym_vararg] = ACTIONS(4970), + [anon_sym_noinline] = ACTIONS(4970), + [anon_sym_crossinline] = ACTIONS(4970), + [anon_sym_expect] = ACTIONS(4970), + [anon_sym_actual] = ACTIONS(4970), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4972), + [sym__automatic_semicolon] = ACTIONS(4972), + [sym_safe_nav] = ACTIONS(4972), [sym_multiline_comment] = ACTIONS(3), }, - [3987] = { - [sym__alpha_identifier] = ACTIONS(4968), - [anon_sym_AT] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(4968), - [anon_sym_EQ] = ACTIONS(4968), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(4968), - [anon_sym_GT] = ACTIONS(4968), - [anon_sym_where] = ACTIONS(4968), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym_get] = ACTIONS(4968), - [anon_sym_set] = ACTIONS(4968), - [anon_sym_STAR] = ACTIONS(4968), - [sym_label] = ACTIONS(4970), - [anon_sym_in] = ACTIONS(4968), - [anon_sym_DOT_DOT] = ACTIONS(4970), - [anon_sym_QMARK_COLON] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4970), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_else] = ACTIONS(4968), - [anon_sym_COLON_COLON] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4970), - [anon_sym_DASH_EQ] = ACTIONS(4970), - [anon_sym_STAR_EQ] = ACTIONS(4970), - [anon_sym_SLASH_EQ] = ACTIONS(4970), - [anon_sym_PERCENT_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4968), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4970), - [anon_sym_EQ_EQ] = ACTIONS(4968), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4970), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_BANGin] = ACTIONS(4970), - [anon_sym_is] = ACTIONS(4968), - [anon_sym_BANGis] = ACTIONS(4970), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4968), - [anon_sym_as_QMARK] = ACTIONS(4970), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_BANG_BANG] = ACTIONS(4970), - [anon_sym_suspend] = ACTIONS(4968), - [anon_sym_sealed] = ACTIONS(4968), - [anon_sym_annotation] = ACTIONS(4968), - [anon_sym_data] = ACTIONS(4968), - [anon_sym_inner] = ACTIONS(4968), - [anon_sym_value] = ACTIONS(4968), - [anon_sym_override] = ACTIONS(4968), - [anon_sym_lateinit] = ACTIONS(4968), - [anon_sym_public] = ACTIONS(4968), - [anon_sym_private] = ACTIONS(4968), - [anon_sym_internal] = ACTIONS(4968), - [anon_sym_protected] = ACTIONS(4968), - [anon_sym_tailrec] = ACTIONS(4968), - [anon_sym_operator] = ACTIONS(4968), - [anon_sym_infix] = ACTIONS(4968), - [anon_sym_inline] = ACTIONS(4968), - [anon_sym_external] = ACTIONS(4968), - [sym_property_modifier] = ACTIONS(4968), - [anon_sym_abstract] = ACTIONS(4968), - [anon_sym_final] = ACTIONS(4968), - [anon_sym_open] = ACTIONS(4968), - [anon_sym_vararg] = ACTIONS(4968), - [anon_sym_noinline] = ACTIONS(4968), - [anon_sym_crossinline] = ACTIONS(4968), - [anon_sym_expect] = ACTIONS(4968), - [anon_sym_actual] = ACTIONS(4968), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4970), - [sym__automatic_semicolon] = ACTIONS(4970), - [sym_safe_nav] = ACTIONS(4970), + [3970] = { + [sym__alpha_identifier] = ACTIONS(5195), + [anon_sym_AT] = ACTIONS(5197), + [anon_sym_LBRACK] = ACTIONS(5197), + [anon_sym_as] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5197), + [anon_sym_RBRACE] = ACTIONS(5197), + [anon_sym_LPAREN] = ACTIONS(5197), + [anon_sym_COMMA] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5195), + [anon_sym_GT] = ACTIONS(5195), + [anon_sym_where] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5195), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym_get] = ACTIONS(5195), + [anon_sym_set] = ACTIONS(5195), + [anon_sym_STAR] = ACTIONS(5195), + [sym_label] = ACTIONS(5197), + [anon_sym_in] = ACTIONS(5195), + [anon_sym_DOT_DOT] = ACTIONS(5197), + [anon_sym_QMARK_COLON] = ACTIONS(5197), + [anon_sym_AMP_AMP] = ACTIONS(5197), + [anon_sym_PIPE_PIPE] = ACTIONS(5197), + [anon_sym_else] = ACTIONS(5195), + [anon_sym_COLON_COLON] = ACTIONS(5197), + [anon_sym_PLUS_EQ] = ACTIONS(5197), + [anon_sym_DASH_EQ] = ACTIONS(5197), + [anon_sym_STAR_EQ] = ACTIONS(5197), + [anon_sym_SLASH_EQ] = ACTIONS(5197), + [anon_sym_PERCENT_EQ] = ACTIONS(5197), + [anon_sym_BANG_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5197), + [anon_sym_EQ_EQ] = ACTIONS(5195), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5197), + [anon_sym_LT_EQ] = ACTIONS(5197), + [anon_sym_GT_EQ] = ACTIONS(5197), + [anon_sym_BANGin] = ACTIONS(5197), + [anon_sym_is] = ACTIONS(5195), + [anon_sym_BANGis] = ACTIONS(5197), + [anon_sym_PLUS] = ACTIONS(5195), + [anon_sym_DASH] = ACTIONS(5195), + [anon_sym_SLASH] = ACTIONS(5195), + [anon_sym_PERCENT] = ACTIONS(5195), + [anon_sym_as_QMARK] = ACTIONS(5197), + [anon_sym_PLUS_PLUS] = ACTIONS(5197), + [anon_sym_DASH_DASH] = ACTIONS(5197), + [anon_sym_BANG_BANG] = ACTIONS(5197), + [anon_sym_suspend] = ACTIONS(5195), + [anon_sym_sealed] = ACTIONS(5195), + [anon_sym_annotation] = ACTIONS(5195), + [anon_sym_data] = ACTIONS(5195), + [anon_sym_inner] = ACTIONS(5195), + [anon_sym_value] = ACTIONS(5195), + [anon_sym_override] = ACTIONS(5195), + [anon_sym_lateinit] = ACTIONS(5195), + [anon_sym_public] = ACTIONS(5195), + [anon_sym_private] = ACTIONS(5195), + [anon_sym_internal] = ACTIONS(5195), + [anon_sym_protected] = ACTIONS(5195), + [anon_sym_tailrec] = ACTIONS(5195), + [anon_sym_operator] = ACTIONS(5195), + [anon_sym_infix] = ACTIONS(5195), + [anon_sym_inline] = ACTIONS(5195), + [anon_sym_external] = ACTIONS(5195), + [sym_property_modifier] = ACTIONS(5195), + [anon_sym_abstract] = ACTIONS(5195), + [anon_sym_final] = ACTIONS(5195), + [anon_sym_open] = ACTIONS(5195), + [anon_sym_vararg] = ACTIONS(5195), + [anon_sym_noinline] = ACTIONS(5195), + [anon_sym_crossinline] = ACTIONS(5195), + [anon_sym_expect] = ACTIONS(5195), + [anon_sym_actual] = ACTIONS(5195), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5197), + [sym__automatic_semicolon] = ACTIONS(5197), + [sym_safe_nav] = ACTIONS(5197), [sym_multiline_comment] = ACTIONS(3), }, - [3988] = { - [sym__alpha_identifier] = ACTIONS(4030), - [anon_sym_AT] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_as] = ACTIONS(4030), - [anon_sym_EQ] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_RBRACE] = ACTIONS(4032), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_COMMA] = ACTIONS(4032), - [anon_sym_LT] = ACTIONS(4030), - [anon_sym_GT] = ACTIONS(4030), - [anon_sym_where] = ACTIONS(4030), - [anon_sym_DOT] = ACTIONS(4030), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym_get] = ACTIONS(4030), - [anon_sym_set] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4030), - [sym_label] = ACTIONS(4032), - [anon_sym_in] = ACTIONS(4030), - [anon_sym_DOT_DOT] = ACTIONS(4032), - [anon_sym_QMARK_COLON] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4032), - [anon_sym_else] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(4032), - [anon_sym_PLUS_EQ] = ACTIONS(4032), - [anon_sym_DASH_EQ] = ACTIONS(4032), - [anon_sym_STAR_EQ] = ACTIONS(4032), - [anon_sym_SLASH_EQ] = ACTIONS(4032), - [anon_sym_PERCENT_EQ] = ACTIONS(4032), - [anon_sym_BANG_EQ] = ACTIONS(4030), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4032), - [anon_sym_EQ_EQ] = ACTIONS(4030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4032), - [anon_sym_LT_EQ] = ACTIONS(4032), - [anon_sym_GT_EQ] = ACTIONS(4032), - [anon_sym_BANGin] = ACTIONS(4032), - [anon_sym_is] = ACTIONS(4030), - [anon_sym_BANGis] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_SLASH] = ACTIONS(4030), - [anon_sym_PERCENT] = ACTIONS(4030), - [anon_sym_as_QMARK] = ACTIONS(4032), - [anon_sym_PLUS_PLUS] = ACTIONS(4032), - [anon_sym_DASH_DASH] = ACTIONS(4032), - [anon_sym_BANG_BANG] = ACTIONS(4032), - [anon_sym_suspend] = ACTIONS(4030), - [anon_sym_sealed] = ACTIONS(4030), - [anon_sym_annotation] = ACTIONS(4030), - [anon_sym_data] = ACTIONS(4030), - [anon_sym_inner] = ACTIONS(4030), - [anon_sym_value] = ACTIONS(4030), - [anon_sym_override] = ACTIONS(4030), - [anon_sym_lateinit] = ACTIONS(4030), - [anon_sym_public] = ACTIONS(4030), - [anon_sym_private] = ACTIONS(4030), - [anon_sym_internal] = ACTIONS(4030), - [anon_sym_protected] = ACTIONS(4030), - [anon_sym_tailrec] = ACTIONS(4030), - [anon_sym_operator] = ACTIONS(4030), - [anon_sym_infix] = ACTIONS(4030), - [anon_sym_inline] = ACTIONS(4030), - [anon_sym_external] = ACTIONS(4030), - [sym_property_modifier] = ACTIONS(4030), - [anon_sym_abstract] = ACTIONS(4030), - [anon_sym_final] = ACTIONS(4030), - [anon_sym_open] = ACTIONS(4030), - [anon_sym_vararg] = ACTIONS(4030), - [anon_sym_noinline] = ACTIONS(4030), - [anon_sym_crossinline] = ACTIONS(4030), - [anon_sym_expect] = ACTIONS(4030), - [anon_sym_actual] = ACTIONS(4030), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4032), - [sym__automatic_semicolon] = ACTIONS(4032), - [sym_safe_nav] = ACTIONS(4032), + [3971] = { + [sym__alpha_identifier] = ACTIONS(4958), + [anon_sym_AT] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4958), + [anon_sym_EQ] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_where] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_get] = ACTIONS(4958), + [anon_sym_set] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [sym_label] = ACTIONS(4960), + [anon_sym_in] = ACTIONS(4958), + [anon_sym_DOT_DOT] = ACTIONS(4960), + [anon_sym_QMARK_COLON] = ACTIONS(4960), + [anon_sym_AMP_AMP] = ACTIONS(4960), + [anon_sym_PIPE_PIPE] = ACTIONS(4960), + [anon_sym_else] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(4960), + [anon_sym_PLUS_EQ] = ACTIONS(4960), + [anon_sym_DASH_EQ] = ACTIONS(4960), + [anon_sym_STAR_EQ] = ACTIONS(4960), + [anon_sym_SLASH_EQ] = ACTIONS(4960), + [anon_sym_PERCENT_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4960), + [anon_sym_LT_EQ] = ACTIONS(4960), + [anon_sym_GT_EQ] = ACTIONS(4960), + [anon_sym_BANGin] = ACTIONS(4960), + [anon_sym_is] = ACTIONS(4958), + [anon_sym_BANGis] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_as_QMARK] = ACTIONS(4960), + [anon_sym_PLUS_PLUS] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4960), + [anon_sym_BANG_BANG] = ACTIONS(4960), + [anon_sym_suspend] = ACTIONS(4958), + [anon_sym_sealed] = ACTIONS(4958), + [anon_sym_annotation] = ACTIONS(4958), + [anon_sym_data] = ACTIONS(4958), + [anon_sym_inner] = ACTIONS(4958), + [anon_sym_value] = ACTIONS(4958), + [anon_sym_override] = ACTIONS(4958), + [anon_sym_lateinit] = ACTIONS(4958), + [anon_sym_public] = ACTIONS(4958), + [anon_sym_private] = ACTIONS(4958), + [anon_sym_internal] = ACTIONS(4958), + [anon_sym_protected] = ACTIONS(4958), + [anon_sym_tailrec] = ACTIONS(4958), + [anon_sym_operator] = ACTIONS(4958), + [anon_sym_infix] = ACTIONS(4958), + [anon_sym_inline] = ACTIONS(4958), + [anon_sym_external] = ACTIONS(4958), + [sym_property_modifier] = ACTIONS(4958), + [anon_sym_abstract] = ACTIONS(4958), + [anon_sym_final] = ACTIONS(4958), + [anon_sym_open] = ACTIONS(4958), + [anon_sym_vararg] = ACTIONS(4958), + [anon_sym_noinline] = ACTIONS(4958), + [anon_sym_crossinline] = ACTIONS(4958), + [anon_sym_expect] = ACTIONS(4958), + [anon_sym_actual] = ACTIONS(4958), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4960), + [sym__automatic_semicolon] = ACTIONS(4960), + [sym_safe_nav] = ACTIONS(4960), [sym_multiline_comment] = ACTIONS(3), }, - [3989] = { - [sym__alpha_identifier] = ACTIONS(4980), - [anon_sym_AT] = ACTIONS(4982), - [anon_sym_LBRACK] = ACTIONS(4982), - [anon_sym_as] = ACTIONS(4980), - [anon_sym_EQ] = ACTIONS(4980), - [anon_sym_LBRACE] = ACTIONS(4982), - [anon_sym_RBRACE] = ACTIONS(4982), - [anon_sym_LPAREN] = ACTIONS(4982), - [anon_sym_COMMA] = ACTIONS(4982), - [anon_sym_LT] = ACTIONS(4980), - [anon_sym_GT] = ACTIONS(4980), - [anon_sym_where] = ACTIONS(4980), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_SEMI] = ACTIONS(4982), - [anon_sym_get] = ACTIONS(4980), - [anon_sym_set] = ACTIONS(4980), - [anon_sym_STAR] = ACTIONS(4980), - [sym_label] = ACTIONS(4982), - [anon_sym_in] = ACTIONS(4980), - [anon_sym_DOT_DOT] = ACTIONS(4982), - [anon_sym_QMARK_COLON] = ACTIONS(4982), - [anon_sym_AMP_AMP] = ACTIONS(4982), - [anon_sym_PIPE_PIPE] = ACTIONS(4982), - [anon_sym_else] = ACTIONS(4980), - [anon_sym_COLON_COLON] = ACTIONS(4982), - [anon_sym_PLUS_EQ] = ACTIONS(4982), - [anon_sym_DASH_EQ] = ACTIONS(4982), - [anon_sym_STAR_EQ] = ACTIONS(4982), - [anon_sym_SLASH_EQ] = ACTIONS(4982), - [anon_sym_PERCENT_EQ] = ACTIONS(4982), - [anon_sym_BANG_EQ] = ACTIONS(4980), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4982), - [anon_sym_EQ_EQ] = ACTIONS(4980), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4982), - [anon_sym_LT_EQ] = ACTIONS(4982), - [anon_sym_GT_EQ] = ACTIONS(4982), - [anon_sym_BANGin] = ACTIONS(4982), - [anon_sym_is] = ACTIONS(4980), - [anon_sym_BANGis] = ACTIONS(4982), - [anon_sym_PLUS] = ACTIONS(4980), - [anon_sym_DASH] = ACTIONS(4980), - [anon_sym_SLASH] = ACTIONS(4980), - [anon_sym_PERCENT] = ACTIONS(4980), - [anon_sym_as_QMARK] = ACTIONS(4982), - [anon_sym_PLUS_PLUS] = ACTIONS(4982), - [anon_sym_DASH_DASH] = ACTIONS(4982), - [anon_sym_BANG_BANG] = ACTIONS(4982), - [anon_sym_suspend] = ACTIONS(4980), - [anon_sym_sealed] = ACTIONS(4980), - [anon_sym_annotation] = ACTIONS(4980), - [anon_sym_data] = ACTIONS(4980), - [anon_sym_inner] = ACTIONS(4980), - [anon_sym_value] = ACTIONS(4980), - [anon_sym_override] = ACTIONS(4980), - [anon_sym_lateinit] = ACTIONS(4980), - [anon_sym_public] = ACTIONS(4980), - [anon_sym_private] = ACTIONS(4980), - [anon_sym_internal] = ACTIONS(4980), - [anon_sym_protected] = ACTIONS(4980), - [anon_sym_tailrec] = ACTIONS(4980), - [anon_sym_operator] = ACTIONS(4980), - [anon_sym_infix] = ACTIONS(4980), - [anon_sym_inline] = ACTIONS(4980), - [anon_sym_external] = ACTIONS(4980), - [sym_property_modifier] = ACTIONS(4980), - [anon_sym_abstract] = ACTIONS(4980), - [anon_sym_final] = ACTIONS(4980), - [anon_sym_open] = ACTIONS(4980), - [anon_sym_vararg] = ACTIONS(4980), - [anon_sym_noinline] = ACTIONS(4980), - [anon_sym_crossinline] = ACTIONS(4980), - [anon_sym_expect] = ACTIONS(4980), - [anon_sym_actual] = ACTIONS(4980), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4982), - [sym__automatic_semicolon] = ACTIONS(4982), - [sym_safe_nav] = ACTIONS(4982), + [3972] = { + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(4449), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, - [3990] = { - [sym__alpha_identifier] = ACTIONS(4984), - [anon_sym_AT] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4986), - [anon_sym_as] = ACTIONS(4984), - [anon_sym_EQ] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4986), - [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_LPAREN] = ACTIONS(4986), - [anon_sym_COMMA] = ACTIONS(4986), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_GT] = ACTIONS(4984), - [anon_sym_where] = ACTIONS(4984), - [anon_sym_DOT] = ACTIONS(4984), - [anon_sym_SEMI] = ACTIONS(4986), - [anon_sym_get] = ACTIONS(4984), - [anon_sym_set] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4984), - [sym_label] = ACTIONS(4986), - [anon_sym_in] = ACTIONS(4984), - [anon_sym_DOT_DOT] = ACTIONS(4986), - [anon_sym_QMARK_COLON] = ACTIONS(4986), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_else] = ACTIONS(4984), - [anon_sym_COLON_COLON] = ACTIONS(4986), - [anon_sym_PLUS_EQ] = ACTIONS(4986), - [anon_sym_DASH_EQ] = ACTIONS(4986), - [anon_sym_STAR_EQ] = ACTIONS(4986), - [anon_sym_SLASH_EQ] = ACTIONS(4986), - [anon_sym_PERCENT_EQ] = ACTIONS(4986), - [anon_sym_BANG_EQ] = ACTIONS(4984), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4986), - [anon_sym_EQ_EQ] = ACTIONS(4984), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4986), - [anon_sym_LT_EQ] = ACTIONS(4986), - [anon_sym_GT_EQ] = ACTIONS(4986), - [anon_sym_BANGin] = ACTIONS(4986), - [anon_sym_is] = ACTIONS(4984), - [anon_sym_BANGis] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4984), - [anon_sym_as_QMARK] = ACTIONS(4986), - [anon_sym_PLUS_PLUS] = ACTIONS(4986), - [anon_sym_DASH_DASH] = ACTIONS(4986), - [anon_sym_BANG_BANG] = ACTIONS(4986), - [anon_sym_suspend] = ACTIONS(4984), - [anon_sym_sealed] = ACTIONS(4984), - [anon_sym_annotation] = ACTIONS(4984), - [anon_sym_data] = ACTIONS(4984), - [anon_sym_inner] = ACTIONS(4984), - [anon_sym_value] = ACTIONS(4984), - [anon_sym_override] = ACTIONS(4984), - [anon_sym_lateinit] = ACTIONS(4984), - [anon_sym_public] = ACTIONS(4984), - [anon_sym_private] = ACTIONS(4984), - [anon_sym_internal] = ACTIONS(4984), - [anon_sym_protected] = ACTIONS(4984), - [anon_sym_tailrec] = ACTIONS(4984), - [anon_sym_operator] = ACTIONS(4984), - [anon_sym_infix] = ACTIONS(4984), - [anon_sym_inline] = ACTIONS(4984), - [anon_sym_external] = ACTIONS(4984), - [sym_property_modifier] = ACTIONS(4984), - [anon_sym_abstract] = ACTIONS(4984), - [anon_sym_final] = ACTIONS(4984), - [anon_sym_open] = ACTIONS(4984), - [anon_sym_vararg] = ACTIONS(4984), - [anon_sym_noinline] = ACTIONS(4984), - [anon_sym_crossinline] = ACTIONS(4984), - [anon_sym_expect] = ACTIONS(4984), - [anon_sym_actual] = ACTIONS(4984), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4986), - [sym__automatic_semicolon] = ACTIONS(4986), - [sym_safe_nav] = ACTIONS(4986), + [3973] = { + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_RBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [anon_sym_DASH_GT] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, - [3991] = { - [sym__alpha_identifier] = ACTIONS(4988), - [anon_sym_AT] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_as] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_LPAREN] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_where] = ACTIONS(4988), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_SEMI] = ACTIONS(4990), - [anon_sym_get] = ACTIONS(4988), - [anon_sym_set] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [sym_label] = ACTIONS(4990), - [anon_sym_in] = ACTIONS(4988), - [anon_sym_DOT_DOT] = ACTIONS(4990), - [anon_sym_QMARK_COLON] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_else] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4988), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4990), - [anon_sym_EQ_EQ] = ACTIONS(4988), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_BANGin] = ACTIONS(4990), - [anon_sym_is] = ACTIONS(4988), - [anon_sym_BANGis] = ACTIONS(4990), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_as_QMARK] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_BANG_BANG] = ACTIONS(4990), - [anon_sym_suspend] = ACTIONS(4988), - [anon_sym_sealed] = ACTIONS(4988), - [anon_sym_annotation] = ACTIONS(4988), - [anon_sym_data] = ACTIONS(4988), - [anon_sym_inner] = ACTIONS(4988), - [anon_sym_value] = ACTIONS(4988), - [anon_sym_override] = ACTIONS(4988), - [anon_sym_lateinit] = ACTIONS(4988), - [anon_sym_public] = ACTIONS(4988), - [anon_sym_private] = ACTIONS(4988), - [anon_sym_internal] = ACTIONS(4988), - [anon_sym_protected] = ACTIONS(4988), - [anon_sym_tailrec] = ACTIONS(4988), - [anon_sym_operator] = ACTIONS(4988), - [anon_sym_infix] = ACTIONS(4988), - [anon_sym_inline] = ACTIONS(4988), - [anon_sym_external] = ACTIONS(4988), - [sym_property_modifier] = ACTIONS(4988), - [anon_sym_abstract] = ACTIONS(4988), - [anon_sym_final] = ACTIONS(4988), - [anon_sym_open] = ACTIONS(4988), - [anon_sym_vararg] = ACTIONS(4988), - [anon_sym_noinline] = ACTIONS(4988), - [anon_sym_crossinline] = ACTIONS(4988), - [anon_sym_expect] = ACTIONS(4988), - [anon_sym_actual] = ACTIONS(4988), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4990), - [sym__automatic_semicolon] = ACTIONS(4990), - [sym_safe_nav] = ACTIONS(4990), + [3974] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3835), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(7185), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), }, - [3992] = { - [sym_function_body] = STATE(3582), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_RBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_RPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [anon_sym_DASH_GT] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), + [3975] = { + [sym__alpha_identifier] = ACTIONS(7187), + [anon_sym_AT] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7189), + [anon_sym_typealias] = ACTIONS(7187), + [anon_sym_class] = ACTIONS(7187), + [anon_sym_interface] = ACTIONS(7187), + [anon_sym_enum] = ACTIONS(7187), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_LPAREN] = ACTIONS(7189), + [anon_sym_val] = ACTIONS(7187), + [anon_sym_var] = ACTIONS(7187), + [anon_sym_object] = ACTIONS(7187), + [anon_sym_fun] = ACTIONS(7187), + [anon_sym_get] = ACTIONS(7187), + [anon_sym_set] = ACTIONS(7187), + [anon_sym_this] = ACTIONS(7187), + [anon_sym_super] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7189), + [sym_label] = ACTIONS(7187), + [anon_sym_for] = ACTIONS(7187), + [anon_sym_while] = ACTIONS(7187), + [anon_sym_do] = ACTIONS(7187), + [anon_sym_null] = ACTIONS(7187), + [anon_sym_if] = ACTIONS(7187), + [anon_sym_when] = ACTIONS(7187), + [anon_sym_try] = ACTIONS(7187), + [anon_sym_throw] = ACTIONS(7187), + [anon_sym_return] = ACTIONS(7187), + [anon_sym_continue] = ACTIONS(7187), + [anon_sym_break] = ACTIONS(7187), + [anon_sym_COLON_COLON] = ACTIONS(7189), + [anon_sym_PLUS] = ACTIONS(7187), + [anon_sym_DASH] = ACTIONS(7187), + [anon_sym_PLUS_PLUS] = ACTIONS(7189), + [anon_sym_DASH_DASH] = ACTIONS(7189), + [anon_sym_BANG] = ACTIONS(7189), + [anon_sym_suspend] = ACTIONS(7187), + [anon_sym_sealed] = ACTIONS(7187), + [anon_sym_annotation] = ACTIONS(7187), + [anon_sym_data] = ACTIONS(7187), + [anon_sym_inner] = ACTIONS(7187), + [anon_sym_value] = ACTIONS(7187), + [anon_sym_override] = ACTIONS(7187), + [anon_sym_lateinit] = ACTIONS(7187), + [anon_sym_public] = ACTIONS(7187), + [anon_sym_private] = ACTIONS(7187), + [anon_sym_internal] = ACTIONS(7187), + [anon_sym_protected] = ACTIONS(7187), + [anon_sym_tailrec] = ACTIONS(7187), + [anon_sym_operator] = ACTIONS(7187), + [anon_sym_infix] = ACTIONS(7187), + [anon_sym_inline] = ACTIONS(7187), + [anon_sym_external] = ACTIONS(7187), + [sym_property_modifier] = ACTIONS(7187), + [anon_sym_abstract] = ACTIONS(7187), + [anon_sym_final] = ACTIONS(7187), + [anon_sym_open] = ACTIONS(7187), + [anon_sym_vararg] = ACTIONS(7187), + [anon_sym_noinline] = ACTIONS(7187), + [anon_sym_crossinline] = ACTIONS(7187), + [anon_sym_expect] = ACTIONS(7187), + [anon_sym_actual] = ACTIONS(7187), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7189), + [anon_sym_continue_AT] = ACTIONS(7189), + [anon_sym_break_AT] = ACTIONS(7189), + [anon_sym_this_AT] = ACTIONS(7189), + [anon_sym_super_AT] = ACTIONS(7189), + [sym_real_literal] = ACTIONS(7189), + [sym_integer_literal] = ACTIONS(7187), + [sym_hex_literal] = ACTIONS(7189), + [sym_bin_literal] = ACTIONS(7189), + [anon_sym_true] = ACTIONS(7187), + [anon_sym_false] = ACTIONS(7187), + [anon_sym_SQUOTE] = ACTIONS(7189), + [sym__backtick_identifier] = ACTIONS(7189), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7189), }, - [3993] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_while] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(6840), + [3976] = { + [sym__alpha_identifier] = ACTIONS(5187), + [anon_sym_AT] = ACTIONS(5189), + [anon_sym_LBRACK] = ACTIONS(5189), + [anon_sym_typealias] = ACTIONS(5187), + [anon_sym_class] = ACTIONS(5187), + [anon_sym_interface] = ACTIONS(5187), + [anon_sym_enum] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5189), + [anon_sym_val] = ACTIONS(5187), + [anon_sym_var] = ACTIONS(5187), + [anon_sym_object] = ACTIONS(5187), + [anon_sym_fun] = ACTIONS(5187), + [anon_sym_get] = ACTIONS(5187), + [anon_sym_set] = ACTIONS(5187), + [anon_sym_this] = ACTIONS(5187), + [anon_sym_super] = ACTIONS(5187), + [anon_sym_STAR] = ACTIONS(5189), + [sym_label] = ACTIONS(5187), + [anon_sym_for] = ACTIONS(5187), + [anon_sym_while] = ACTIONS(5187), + [anon_sym_do] = ACTIONS(5187), + [anon_sym_null] = ACTIONS(5187), + [anon_sym_if] = ACTIONS(5187), + [anon_sym_when] = ACTIONS(5187), + [anon_sym_try] = ACTIONS(5187), + [anon_sym_throw] = ACTIONS(5187), + [anon_sym_return] = ACTIONS(5187), + [anon_sym_continue] = ACTIONS(5187), + [anon_sym_break] = ACTIONS(5187), + [anon_sym_COLON_COLON] = ACTIONS(5189), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_PLUS_PLUS] = ACTIONS(5189), + [anon_sym_DASH_DASH] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5189), + [anon_sym_suspend] = ACTIONS(5187), + [anon_sym_sealed] = ACTIONS(5187), + [anon_sym_annotation] = ACTIONS(5187), + [anon_sym_data] = ACTIONS(5187), + [anon_sym_inner] = ACTIONS(5187), + [anon_sym_value] = ACTIONS(5187), + [anon_sym_override] = ACTIONS(5187), + [anon_sym_lateinit] = ACTIONS(5187), + [anon_sym_public] = ACTIONS(5187), + [anon_sym_private] = ACTIONS(5187), + [anon_sym_internal] = ACTIONS(5187), + [anon_sym_protected] = ACTIONS(5187), + [anon_sym_tailrec] = ACTIONS(5187), + [anon_sym_operator] = ACTIONS(5187), + [anon_sym_infix] = ACTIONS(5187), + [anon_sym_inline] = ACTIONS(5187), + [anon_sym_external] = ACTIONS(5187), + [sym_property_modifier] = ACTIONS(5187), + [anon_sym_abstract] = ACTIONS(5187), + [anon_sym_final] = ACTIONS(5187), + [anon_sym_open] = ACTIONS(5187), + [anon_sym_vararg] = ACTIONS(5187), + [anon_sym_noinline] = ACTIONS(5187), + [anon_sym_crossinline] = ACTIONS(5187), + [anon_sym_expect] = ACTIONS(5187), + [anon_sym_actual] = ACTIONS(5187), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5189), + [anon_sym_continue_AT] = ACTIONS(5189), + [anon_sym_break_AT] = ACTIONS(5189), + [anon_sym_this_AT] = ACTIONS(5189), + [anon_sym_super_AT] = ACTIONS(5189), + [sym_real_literal] = ACTIONS(5189), + [sym_integer_literal] = ACTIONS(5187), + [sym_hex_literal] = ACTIONS(5189), + [sym_bin_literal] = ACTIONS(5189), + [anon_sym_true] = ACTIONS(5187), + [anon_sym_false] = ACTIONS(5187), + [anon_sym_SQUOTE] = ACTIONS(5189), + [sym__backtick_identifier] = ACTIONS(5189), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5189), }, - [3994] = { - [sym__alpha_identifier] = ACTIONS(4996), - [anon_sym_AT] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_as] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LPAREN] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_where] = ACTIONS(4996), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_get] = ACTIONS(4996), - [anon_sym_set] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [sym_label] = ACTIONS(4998), - [anon_sym_in] = ACTIONS(4996), - [anon_sym_DOT_DOT] = ACTIONS(4998), - [anon_sym_QMARK_COLON] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_else] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4996), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4998), - [anon_sym_EQ_EQ] = ACTIONS(4996), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_BANGin] = ACTIONS(4998), - [anon_sym_is] = ACTIONS(4996), - [anon_sym_BANGis] = ACTIONS(4998), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_as_QMARK] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_BANG_BANG] = ACTIONS(4998), - [anon_sym_suspend] = ACTIONS(4996), - [anon_sym_sealed] = ACTIONS(4996), - [anon_sym_annotation] = ACTIONS(4996), - [anon_sym_data] = ACTIONS(4996), - [anon_sym_inner] = ACTIONS(4996), - [anon_sym_value] = ACTIONS(4996), - [anon_sym_override] = ACTIONS(4996), - [anon_sym_lateinit] = ACTIONS(4996), - [anon_sym_public] = ACTIONS(4996), - [anon_sym_private] = ACTIONS(4996), - [anon_sym_internal] = ACTIONS(4996), - [anon_sym_protected] = ACTIONS(4996), - [anon_sym_tailrec] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), - [anon_sym_infix] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym_external] = ACTIONS(4996), - [sym_property_modifier] = ACTIONS(4996), - [anon_sym_abstract] = ACTIONS(4996), - [anon_sym_final] = ACTIONS(4996), - [anon_sym_open] = ACTIONS(4996), - [anon_sym_vararg] = ACTIONS(4996), - [anon_sym_noinline] = ACTIONS(4996), - [anon_sym_crossinline] = ACTIONS(4996), - [anon_sym_expect] = ACTIONS(4996), - [anon_sym_actual] = ACTIONS(4996), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4998), - [sym__automatic_semicolon] = ACTIONS(4998), - [sym_safe_nav] = ACTIONS(4998), + [3977] = { + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3162), + [anon_sym_QMARK_COLON] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_BANG_BANG] = ACTIONS(3162), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3160), + [anon_sym_inner] = ACTIONS(3160), + [anon_sym_value] = ACTIONS(3160), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3160), + [anon_sym_actual] = ACTIONS(3160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3162), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3162), [sym_multiline_comment] = ACTIONS(3), }, - [3995] = { - [sym__alpha_identifier] = ACTIONS(5000), - [anon_sym_AT] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5002), - [anon_sym_as] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_LPAREN] = ACTIONS(5002), - [anon_sym_COMMA] = ACTIONS(5002), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_where] = ACTIONS(5000), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5002), - [anon_sym_get] = ACTIONS(5000), - [anon_sym_set] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(5000), - [sym_label] = ACTIONS(5002), - [anon_sym_in] = ACTIONS(5000), - [anon_sym_DOT_DOT] = ACTIONS(5002), - [anon_sym_QMARK_COLON] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_PIPE_PIPE] = ACTIONS(5002), - [anon_sym_else] = ACTIONS(5000), - [anon_sym_COLON_COLON] = ACTIONS(5002), - [anon_sym_PLUS_EQ] = ACTIONS(5002), - [anon_sym_DASH_EQ] = ACTIONS(5002), - [anon_sym_STAR_EQ] = ACTIONS(5002), - [anon_sym_SLASH_EQ] = ACTIONS(5002), - [anon_sym_PERCENT_EQ] = ACTIONS(5002), - [anon_sym_BANG_EQ] = ACTIONS(5000), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5002), - [anon_sym_EQ_EQ] = ACTIONS(5000), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5002), - [anon_sym_LT_EQ] = ACTIONS(5002), - [anon_sym_GT_EQ] = ACTIONS(5002), - [anon_sym_BANGin] = ACTIONS(5002), - [anon_sym_is] = ACTIONS(5000), - [anon_sym_BANGis] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(5000), - [anon_sym_as_QMARK] = ACTIONS(5002), - [anon_sym_PLUS_PLUS] = ACTIONS(5002), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_BANG_BANG] = ACTIONS(5002), - [anon_sym_suspend] = ACTIONS(5000), - [anon_sym_sealed] = ACTIONS(5000), - [anon_sym_annotation] = ACTIONS(5000), - [anon_sym_data] = ACTIONS(5000), - [anon_sym_inner] = ACTIONS(5000), - [anon_sym_value] = ACTIONS(5000), - [anon_sym_override] = ACTIONS(5000), - [anon_sym_lateinit] = ACTIONS(5000), - [anon_sym_public] = ACTIONS(5000), - [anon_sym_private] = ACTIONS(5000), - [anon_sym_internal] = ACTIONS(5000), - [anon_sym_protected] = ACTIONS(5000), - [anon_sym_tailrec] = ACTIONS(5000), - [anon_sym_operator] = ACTIONS(5000), - [anon_sym_infix] = ACTIONS(5000), - [anon_sym_inline] = ACTIONS(5000), - [anon_sym_external] = ACTIONS(5000), - [sym_property_modifier] = ACTIONS(5000), - [anon_sym_abstract] = ACTIONS(5000), - [anon_sym_final] = ACTIONS(5000), - [anon_sym_open] = ACTIONS(5000), - [anon_sym_vararg] = ACTIONS(5000), - [anon_sym_noinline] = ACTIONS(5000), - [anon_sym_crossinline] = ACTIONS(5000), - [anon_sym_expect] = ACTIONS(5000), - [anon_sym_actual] = ACTIONS(5000), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5002), - [sym__automatic_semicolon] = ACTIONS(5002), - [sym_safe_nav] = ACTIONS(5002), + [3978] = { + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(1808), + [anon_sym_set] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(1808), + [anon_sym_sealed] = ACTIONS(1808), + [anon_sym_annotation] = ACTIONS(1808), + [anon_sym_data] = ACTIONS(1808), + [anon_sym_inner] = ACTIONS(1808), + [anon_sym_value] = ACTIONS(1808), + [anon_sym_override] = ACTIONS(1808), + [anon_sym_lateinit] = ACTIONS(1808), + [anon_sym_public] = ACTIONS(1808), + [anon_sym_private] = ACTIONS(1808), + [anon_sym_internal] = ACTIONS(1808), + [anon_sym_protected] = ACTIONS(1808), + [anon_sym_tailrec] = ACTIONS(1808), + [anon_sym_operator] = ACTIONS(1808), + [anon_sym_infix] = ACTIONS(1808), + [anon_sym_inline] = ACTIONS(1808), + [anon_sym_external] = ACTIONS(1808), + [sym_property_modifier] = ACTIONS(1808), + [anon_sym_abstract] = ACTIONS(1808), + [anon_sym_final] = ACTIONS(1808), + [anon_sym_open] = ACTIONS(1808), + [anon_sym_vararg] = ACTIONS(1808), + [anon_sym_noinline] = ACTIONS(1808), + [anon_sym_crossinline] = ACTIONS(1808), + [anon_sym_expect] = ACTIONS(1808), + [anon_sym_actual] = ACTIONS(1808), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [3996] = { - [sym__alpha_identifier] = ACTIONS(5008), - [anon_sym_AT] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5010), - [anon_sym_as] = ACTIONS(5008), - [anon_sym_EQ] = ACTIONS(5008), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_RBRACE] = ACTIONS(5010), - [anon_sym_LPAREN] = ACTIONS(5010), - [anon_sym_COMMA] = ACTIONS(5010), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_where] = ACTIONS(5008), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_SEMI] = ACTIONS(5010), - [anon_sym_get] = ACTIONS(5008), - [anon_sym_set] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [sym_label] = ACTIONS(5010), - [anon_sym_in] = ACTIONS(5008), - [anon_sym_DOT_DOT] = ACTIONS(5010), - [anon_sym_QMARK_COLON] = ACTIONS(5010), - [anon_sym_AMP_AMP] = ACTIONS(5010), - [anon_sym_PIPE_PIPE] = ACTIONS(5010), - [anon_sym_else] = ACTIONS(5008), - [anon_sym_COLON_COLON] = ACTIONS(5010), - [anon_sym_PLUS_EQ] = ACTIONS(5010), - [anon_sym_DASH_EQ] = ACTIONS(5010), - [anon_sym_STAR_EQ] = ACTIONS(5010), - [anon_sym_SLASH_EQ] = ACTIONS(5010), - [anon_sym_PERCENT_EQ] = ACTIONS(5010), - [anon_sym_BANG_EQ] = ACTIONS(5008), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5010), - [anon_sym_EQ_EQ] = ACTIONS(5008), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5010), - [anon_sym_LT_EQ] = ACTIONS(5010), - [anon_sym_GT_EQ] = ACTIONS(5010), - [anon_sym_BANGin] = ACTIONS(5010), - [anon_sym_is] = ACTIONS(5008), - [anon_sym_BANGis] = ACTIONS(5010), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_as_QMARK] = ACTIONS(5010), - [anon_sym_PLUS_PLUS] = ACTIONS(5010), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_BANG_BANG] = ACTIONS(5010), - [anon_sym_suspend] = ACTIONS(5008), - [anon_sym_sealed] = ACTIONS(5008), - [anon_sym_annotation] = ACTIONS(5008), - [anon_sym_data] = ACTIONS(5008), - [anon_sym_inner] = ACTIONS(5008), - [anon_sym_value] = ACTIONS(5008), - [anon_sym_override] = ACTIONS(5008), - [anon_sym_lateinit] = ACTIONS(5008), - [anon_sym_public] = ACTIONS(5008), - [anon_sym_private] = ACTIONS(5008), - [anon_sym_internal] = ACTIONS(5008), - [anon_sym_protected] = ACTIONS(5008), - [anon_sym_tailrec] = ACTIONS(5008), - [anon_sym_operator] = ACTIONS(5008), - [anon_sym_infix] = ACTIONS(5008), - [anon_sym_inline] = ACTIONS(5008), - [anon_sym_external] = ACTIONS(5008), - [sym_property_modifier] = ACTIONS(5008), - [anon_sym_abstract] = ACTIONS(5008), - [anon_sym_final] = ACTIONS(5008), - [anon_sym_open] = ACTIONS(5008), - [anon_sym_vararg] = ACTIONS(5008), - [anon_sym_noinline] = ACTIONS(5008), - [anon_sym_crossinline] = ACTIONS(5008), - [anon_sym_expect] = ACTIONS(5008), - [anon_sym_actual] = ACTIONS(5008), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5010), - [sym__automatic_semicolon] = ACTIONS(5010), - [sym_safe_nav] = ACTIONS(5010), + [3979] = { + [sym__alpha_identifier] = ACTIONS(7191), + [anon_sym_AT] = ACTIONS(7193), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_typealias] = ACTIONS(7191), + [anon_sym_class] = ACTIONS(7191), + [anon_sym_interface] = ACTIONS(7191), + [anon_sym_enum] = ACTIONS(7191), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_LPAREN] = ACTIONS(7193), + [anon_sym_val] = ACTIONS(7191), + [anon_sym_var] = ACTIONS(7191), + [anon_sym_object] = ACTIONS(7191), + [anon_sym_fun] = ACTIONS(7191), + [anon_sym_get] = ACTIONS(7191), + [anon_sym_set] = ACTIONS(7191), + [anon_sym_this] = ACTIONS(7191), + [anon_sym_super] = ACTIONS(7191), + [anon_sym_STAR] = ACTIONS(7193), + [sym_label] = ACTIONS(7191), + [anon_sym_for] = ACTIONS(7191), + [anon_sym_while] = ACTIONS(7191), + [anon_sym_do] = ACTIONS(7191), + [anon_sym_null] = ACTIONS(7191), + [anon_sym_if] = ACTIONS(7191), + [anon_sym_when] = ACTIONS(7191), + [anon_sym_try] = ACTIONS(7191), + [anon_sym_throw] = ACTIONS(7191), + [anon_sym_return] = ACTIONS(7191), + [anon_sym_continue] = ACTIONS(7191), + [anon_sym_break] = ACTIONS(7191), + [anon_sym_COLON_COLON] = ACTIONS(7193), + [anon_sym_PLUS] = ACTIONS(7191), + [anon_sym_DASH] = ACTIONS(7191), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_BANG] = ACTIONS(7193), + [anon_sym_suspend] = ACTIONS(7191), + [anon_sym_sealed] = ACTIONS(7191), + [anon_sym_annotation] = ACTIONS(7191), + [anon_sym_data] = ACTIONS(7191), + [anon_sym_inner] = ACTIONS(7191), + [anon_sym_value] = ACTIONS(7191), + [anon_sym_override] = ACTIONS(7191), + [anon_sym_lateinit] = ACTIONS(7191), + [anon_sym_public] = ACTIONS(7191), + [anon_sym_private] = ACTIONS(7191), + [anon_sym_internal] = ACTIONS(7191), + [anon_sym_protected] = ACTIONS(7191), + [anon_sym_tailrec] = ACTIONS(7191), + [anon_sym_operator] = ACTIONS(7191), + [anon_sym_infix] = ACTIONS(7191), + [anon_sym_inline] = ACTIONS(7191), + [anon_sym_external] = ACTIONS(7191), + [sym_property_modifier] = ACTIONS(7191), + [anon_sym_abstract] = ACTIONS(7191), + [anon_sym_final] = ACTIONS(7191), + [anon_sym_open] = ACTIONS(7191), + [anon_sym_vararg] = ACTIONS(7191), + [anon_sym_noinline] = ACTIONS(7191), + [anon_sym_crossinline] = ACTIONS(7191), + [anon_sym_expect] = ACTIONS(7191), + [anon_sym_actual] = ACTIONS(7191), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7193), + [anon_sym_continue_AT] = ACTIONS(7193), + [anon_sym_break_AT] = ACTIONS(7193), + [anon_sym_this_AT] = ACTIONS(7193), + [anon_sym_super_AT] = ACTIONS(7193), + [sym_real_literal] = ACTIONS(7193), + [sym_integer_literal] = ACTIONS(7191), + [sym_hex_literal] = ACTIONS(7193), + [sym_bin_literal] = ACTIONS(7193), + [anon_sym_true] = ACTIONS(7191), + [anon_sym_false] = ACTIONS(7191), + [anon_sym_SQUOTE] = ACTIONS(7193), + [sym__backtick_identifier] = ACTIONS(7193), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7193), + }, + [3980] = { + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_RBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [anon_sym_DASH_GT] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, - [3997] = { - [sym__alpha_identifier] = ACTIONS(5012), - [anon_sym_AT] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5014), - [anon_sym_as] = ACTIONS(5012), - [anon_sym_EQ] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5014), - [anon_sym_RBRACE] = ACTIONS(5014), - [anon_sym_LPAREN] = ACTIONS(5014), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_LT] = ACTIONS(5012), - [anon_sym_GT] = ACTIONS(5012), - [anon_sym_where] = ACTIONS(5012), - [anon_sym_DOT] = ACTIONS(5012), - [anon_sym_SEMI] = ACTIONS(5014), - [anon_sym_get] = ACTIONS(5012), - [anon_sym_set] = ACTIONS(5012), - [anon_sym_STAR] = ACTIONS(5012), - [sym_label] = ACTIONS(5014), - [anon_sym_in] = ACTIONS(5012), - [anon_sym_DOT_DOT] = ACTIONS(5014), - [anon_sym_QMARK_COLON] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5014), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_else] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5014), - [anon_sym_PLUS_EQ] = ACTIONS(5014), - [anon_sym_DASH_EQ] = ACTIONS(5014), - [anon_sym_STAR_EQ] = ACTIONS(5014), - [anon_sym_SLASH_EQ] = ACTIONS(5014), - [anon_sym_PERCENT_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5012), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5014), - [anon_sym_EQ_EQ] = ACTIONS(5012), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5014), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_BANGin] = ACTIONS(5014), - [anon_sym_is] = ACTIONS(5012), - [anon_sym_BANGis] = ACTIONS(5014), - [anon_sym_PLUS] = ACTIONS(5012), - [anon_sym_DASH] = ACTIONS(5012), - [anon_sym_SLASH] = ACTIONS(5012), - [anon_sym_PERCENT] = ACTIONS(5012), - [anon_sym_as_QMARK] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_BANG_BANG] = ACTIONS(5014), - [anon_sym_suspend] = ACTIONS(5012), - [anon_sym_sealed] = ACTIONS(5012), - [anon_sym_annotation] = ACTIONS(5012), - [anon_sym_data] = ACTIONS(5012), - [anon_sym_inner] = ACTIONS(5012), - [anon_sym_value] = ACTIONS(5012), - [anon_sym_override] = ACTIONS(5012), - [anon_sym_lateinit] = ACTIONS(5012), - [anon_sym_public] = ACTIONS(5012), - [anon_sym_private] = ACTIONS(5012), - [anon_sym_internal] = ACTIONS(5012), - [anon_sym_protected] = ACTIONS(5012), - [anon_sym_tailrec] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), - [anon_sym_infix] = ACTIONS(5012), - [anon_sym_inline] = ACTIONS(5012), - [anon_sym_external] = ACTIONS(5012), - [sym_property_modifier] = ACTIONS(5012), - [anon_sym_abstract] = ACTIONS(5012), - [anon_sym_final] = ACTIONS(5012), - [anon_sym_open] = ACTIONS(5012), - [anon_sym_vararg] = ACTIONS(5012), - [anon_sym_noinline] = ACTIONS(5012), - [anon_sym_crossinline] = ACTIONS(5012), - [anon_sym_expect] = ACTIONS(5012), - [anon_sym_actual] = ACTIONS(5012), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5014), - [sym__automatic_semicolon] = ACTIONS(5014), - [sym_safe_nav] = ACTIONS(5014), + [3981] = { + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4002), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), [sym_multiline_comment] = ACTIONS(3), }, - [3998] = { - [sym__alpha_identifier] = ACTIONS(5016), - [anon_sym_AT] = ACTIONS(5018), - [anon_sym_LBRACK] = ACTIONS(5018), - [anon_sym_as] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(5016), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_RBRACE] = ACTIONS(5018), - [anon_sym_LPAREN] = ACTIONS(5018), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_LT] = ACTIONS(5016), - [anon_sym_GT] = ACTIONS(5016), - [anon_sym_where] = ACTIONS(5016), - [anon_sym_DOT] = ACTIONS(5016), - [anon_sym_SEMI] = ACTIONS(5018), - [anon_sym_get] = ACTIONS(5016), - [anon_sym_set] = ACTIONS(5016), - [anon_sym_STAR] = ACTIONS(5016), - [sym_label] = ACTIONS(5018), - [anon_sym_in] = ACTIONS(5016), - [anon_sym_DOT_DOT] = ACTIONS(5018), - [anon_sym_QMARK_COLON] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_else] = ACTIONS(5016), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym_PLUS_EQ] = ACTIONS(5018), - [anon_sym_DASH_EQ] = ACTIONS(5018), - [anon_sym_STAR_EQ] = ACTIONS(5018), - [anon_sym_SLASH_EQ] = ACTIONS(5018), - [anon_sym_PERCENT_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5018), - [anon_sym_EQ_EQ] = ACTIONS(5016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5018), - [anon_sym_GT_EQ] = ACTIONS(5018), - [anon_sym_BANGin] = ACTIONS(5018), - [anon_sym_is] = ACTIONS(5016), - [anon_sym_BANGis] = ACTIONS(5018), - [anon_sym_PLUS] = ACTIONS(5016), - [anon_sym_DASH] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5016), - [anon_sym_PERCENT] = ACTIONS(5016), - [anon_sym_as_QMARK] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_BANG_BANG] = ACTIONS(5018), - [anon_sym_suspend] = ACTIONS(5016), - [anon_sym_sealed] = ACTIONS(5016), - [anon_sym_annotation] = ACTIONS(5016), - [anon_sym_data] = ACTIONS(5016), - [anon_sym_inner] = ACTIONS(5016), - [anon_sym_value] = ACTIONS(5016), - [anon_sym_override] = ACTIONS(5016), - [anon_sym_lateinit] = ACTIONS(5016), - [anon_sym_public] = ACTIONS(5016), - [anon_sym_private] = ACTIONS(5016), - [anon_sym_internal] = ACTIONS(5016), - [anon_sym_protected] = ACTIONS(5016), - [anon_sym_tailrec] = ACTIONS(5016), - [anon_sym_operator] = ACTIONS(5016), - [anon_sym_infix] = ACTIONS(5016), - [anon_sym_inline] = ACTIONS(5016), - [anon_sym_external] = ACTIONS(5016), - [sym_property_modifier] = ACTIONS(5016), - [anon_sym_abstract] = ACTIONS(5016), - [anon_sym_final] = ACTIONS(5016), - [anon_sym_open] = ACTIONS(5016), - [anon_sym_vararg] = ACTIONS(5016), - [anon_sym_noinline] = ACTIONS(5016), - [anon_sym_crossinline] = ACTIONS(5016), - [anon_sym_expect] = ACTIONS(5016), - [anon_sym_actual] = ACTIONS(5016), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5018), - [sym__automatic_semicolon] = ACTIONS(5018), - [sym_safe_nav] = ACTIONS(5018), + [3982] = { + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4295), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, - [3999] = { - [sym__alpha_identifier] = ACTIONS(5107), - [anon_sym_AT] = ACTIONS(5109), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_as] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5109), - [anon_sym_RBRACE] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_COMMA] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5107), - [anon_sym_GT] = ACTIONS(5107), - [anon_sym_where] = ACTIONS(5107), - [anon_sym_DOT] = ACTIONS(5107), - [anon_sym_SEMI] = ACTIONS(5109), - [anon_sym_get] = ACTIONS(5107), - [anon_sym_set] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5107), - [sym_label] = ACTIONS(5109), - [anon_sym_in] = ACTIONS(5107), - [anon_sym_DOT_DOT] = ACTIONS(5109), - [anon_sym_QMARK_COLON] = ACTIONS(5109), - [anon_sym_AMP_AMP] = ACTIONS(5109), - [anon_sym_PIPE_PIPE] = ACTIONS(5109), - [anon_sym_else] = ACTIONS(5107), - [anon_sym_COLON_COLON] = ACTIONS(5109), - [anon_sym_PLUS_EQ] = ACTIONS(5109), - [anon_sym_DASH_EQ] = ACTIONS(5109), - [anon_sym_STAR_EQ] = ACTIONS(5109), - [anon_sym_SLASH_EQ] = ACTIONS(5109), - [anon_sym_PERCENT_EQ] = ACTIONS(5109), - [anon_sym_BANG_EQ] = ACTIONS(5107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5109), - [anon_sym_EQ_EQ] = ACTIONS(5107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5109), - [anon_sym_LT_EQ] = ACTIONS(5109), - [anon_sym_GT_EQ] = ACTIONS(5109), - [anon_sym_BANGin] = ACTIONS(5109), - [anon_sym_is] = ACTIONS(5107), - [anon_sym_BANGis] = ACTIONS(5109), - [anon_sym_PLUS] = ACTIONS(5107), - [anon_sym_DASH] = ACTIONS(5107), - [anon_sym_SLASH] = ACTIONS(5107), - [anon_sym_PERCENT] = ACTIONS(5107), - [anon_sym_as_QMARK] = ACTIONS(5109), - [anon_sym_PLUS_PLUS] = ACTIONS(5109), - [anon_sym_DASH_DASH] = ACTIONS(5109), - [anon_sym_BANG_BANG] = ACTIONS(5109), - [anon_sym_suspend] = ACTIONS(5107), - [anon_sym_sealed] = ACTIONS(5107), - [anon_sym_annotation] = ACTIONS(5107), - [anon_sym_data] = ACTIONS(5107), - [anon_sym_inner] = ACTIONS(5107), - [anon_sym_value] = ACTIONS(5107), - [anon_sym_override] = ACTIONS(5107), - [anon_sym_lateinit] = ACTIONS(5107), - [anon_sym_public] = ACTIONS(5107), - [anon_sym_private] = ACTIONS(5107), - [anon_sym_internal] = ACTIONS(5107), - [anon_sym_protected] = ACTIONS(5107), - [anon_sym_tailrec] = ACTIONS(5107), - [anon_sym_operator] = ACTIONS(5107), - [anon_sym_infix] = ACTIONS(5107), - [anon_sym_inline] = ACTIONS(5107), - [anon_sym_external] = ACTIONS(5107), - [sym_property_modifier] = ACTIONS(5107), - [anon_sym_abstract] = ACTIONS(5107), - [anon_sym_final] = ACTIONS(5107), - [anon_sym_open] = ACTIONS(5107), - [anon_sym_vararg] = ACTIONS(5107), - [anon_sym_noinline] = ACTIONS(5107), - [anon_sym_crossinline] = ACTIONS(5107), - [anon_sym_expect] = ACTIONS(5107), - [anon_sym_actual] = ACTIONS(5107), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5109), - [sym__automatic_semicolon] = ACTIONS(5109), - [sym_safe_nav] = ACTIONS(5109), + [3983] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [sym_label] = ACTIONS(4780), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), [sym_multiline_comment] = ACTIONS(3), }, - [4000] = { - [sym__alpha_identifier] = ACTIONS(5032), - [anon_sym_AT] = ACTIONS(5034), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_as] = ACTIONS(5032), - [anon_sym_EQ] = ACTIONS(5032), - [anon_sym_LBRACE] = ACTIONS(5034), - [anon_sym_RBRACE] = ACTIONS(5034), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_COMMA] = ACTIONS(5034), - [anon_sym_LT] = ACTIONS(5032), - [anon_sym_GT] = ACTIONS(5032), - [anon_sym_where] = ACTIONS(5032), - [anon_sym_DOT] = ACTIONS(5032), - [anon_sym_SEMI] = ACTIONS(5034), - [anon_sym_get] = ACTIONS(5032), - [anon_sym_set] = ACTIONS(5032), - [anon_sym_STAR] = ACTIONS(5032), - [sym_label] = ACTIONS(5034), - [anon_sym_in] = ACTIONS(5032), - [anon_sym_DOT_DOT] = ACTIONS(5034), - [anon_sym_QMARK_COLON] = ACTIONS(5034), - [anon_sym_AMP_AMP] = ACTIONS(5034), - [anon_sym_PIPE_PIPE] = ACTIONS(5034), - [anon_sym_else] = ACTIONS(5032), - [anon_sym_COLON_COLON] = ACTIONS(5034), - [anon_sym_PLUS_EQ] = ACTIONS(5034), - [anon_sym_DASH_EQ] = ACTIONS(5034), - [anon_sym_STAR_EQ] = ACTIONS(5034), - [anon_sym_SLASH_EQ] = ACTIONS(5034), - [anon_sym_PERCENT_EQ] = ACTIONS(5034), - [anon_sym_BANG_EQ] = ACTIONS(5032), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5034), - [anon_sym_EQ_EQ] = ACTIONS(5032), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5034), - [anon_sym_LT_EQ] = ACTIONS(5034), - [anon_sym_GT_EQ] = ACTIONS(5034), - [anon_sym_BANGin] = ACTIONS(5034), - [anon_sym_is] = ACTIONS(5032), - [anon_sym_BANGis] = ACTIONS(5034), - [anon_sym_PLUS] = ACTIONS(5032), - [anon_sym_DASH] = ACTIONS(5032), - [anon_sym_SLASH] = ACTIONS(5032), - [anon_sym_PERCENT] = ACTIONS(5032), - [anon_sym_as_QMARK] = ACTIONS(5034), - [anon_sym_PLUS_PLUS] = ACTIONS(5034), - [anon_sym_DASH_DASH] = ACTIONS(5034), - [anon_sym_BANG_BANG] = ACTIONS(5034), - [anon_sym_suspend] = ACTIONS(5032), - [anon_sym_sealed] = ACTIONS(5032), - [anon_sym_annotation] = ACTIONS(5032), - [anon_sym_data] = ACTIONS(5032), - [anon_sym_inner] = ACTIONS(5032), - [anon_sym_value] = ACTIONS(5032), - [anon_sym_override] = ACTIONS(5032), - [anon_sym_lateinit] = ACTIONS(5032), - [anon_sym_public] = ACTIONS(5032), - [anon_sym_private] = ACTIONS(5032), - [anon_sym_internal] = ACTIONS(5032), - [anon_sym_protected] = ACTIONS(5032), - [anon_sym_tailrec] = ACTIONS(5032), - [anon_sym_operator] = ACTIONS(5032), - [anon_sym_infix] = ACTIONS(5032), - [anon_sym_inline] = ACTIONS(5032), - [anon_sym_external] = ACTIONS(5032), - [sym_property_modifier] = ACTIONS(5032), - [anon_sym_abstract] = ACTIONS(5032), - [anon_sym_final] = ACTIONS(5032), - [anon_sym_open] = ACTIONS(5032), - [anon_sym_vararg] = ACTIONS(5032), - [anon_sym_noinline] = ACTIONS(5032), - [anon_sym_crossinline] = ACTIONS(5032), - [anon_sym_expect] = ACTIONS(5032), - [anon_sym_actual] = ACTIONS(5032), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5034), - [sym__automatic_semicolon] = ACTIONS(5034), - [sym_safe_nav] = ACTIONS(5034), + [3984] = { + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_RBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_DASH_GT] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, - [4001] = { - [sym__alpha_identifier] = ACTIONS(5038), - [anon_sym_AT] = ACTIONS(5040), - [anon_sym_LBRACK] = ACTIONS(5040), - [anon_sym_as] = ACTIONS(5038), - [anon_sym_EQ] = ACTIONS(5038), - [anon_sym_LBRACE] = ACTIONS(5040), - [anon_sym_RBRACE] = ACTIONS(5040), - [anon_sym_LPAREN] = ACTIONS(5040), - [anon_sym_COMMA] = ACTIONS(5040), - [anon_sym_LT] = ACTIONS(5038), - [anon_sym_GT] = ACTIONS(5038), - [anon_sym_where] = ACTIONS(5038), - [anon_sym_DOT] = ACTIONS(5038), - [anon_sym_SEMI] = ACTIONS(5040), - [anon_sym_get] = ACTIONS(5038), - [anon_sym_set] = ACTIONS(5038), - [anon_sym_STAR] = ACTIONS(5038), - [sym_label] = ACTIONS(5040), - [anon_sym_in] = ACTIONS(5038), - [anon_sym_DOT_DOT] = ACTIONS(5040), - [anon_sym_QMARK_COLON] = ACTIONS(5040), - [anon_sym_AMP_AMP] = ACTIONS(5040), - [anon_sym_PIPE_PIPE] = ACTIONS(5040), - [anon_sym_else] = ACTIONS(5038), - [anon_sym_COLON_COLON] = ACTIONS(7292), - [anon_sym_PLUS_EQ] = ACTIONS(5040), - [anon_sym_DASH_EQ] = ACTIONS(5040), - [anon_sym_STAR_EQ] = ACTIONS(5040), - [anon_sym_SLASH_EQ] = ACTIONS(5040), - [anon_sym_PERCENT_EQ] = ACTIONS(5040), - [anon_sym_BANG_EQ] = ACTIONS(5038), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5040), - [anon_sym_EQ_EQ] = ACTIONS(5038), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5040), - [anon_sym_LT_EQ] = ACTIONS(5040), - [anon_sym_GT_EQ] = ACTIONS(5040), - [anon_sym_BANGin] = ACTIONS(5040), - [anon_sym_is] = ACTIONS(5038), - [anon_sym_BANGis] = ACTIONS(5040), - [anon_sym_PLUS] = ACTIONS(5038), - [anon_sym_DASH] = ACTIONS(5038), - [anon_sym_SLASH] = ACTIONS(5038), - [anon_sym_PERCENT] = ACTIONS(5038), - [anon_sym_as_QMARK] = ACTIONS(5040), - [anon_sym_PLUS_PLUS] = ACTIONS(5040), - [anon_sym_DASH_DASH] = ACTIONS(5040), - [anon_sym_BANG_BANG] = ACTIONS(5040), - [anon_sym_suspend] = ACTIONS(5038), - [anon_sym_sealed] = ACTIONS(5038), - [anon_sym_annotation] = ACTIONS(5038), - [anon_sym_data] = ACTIONS(5038), - [anon_sym_inner] = ACTIONS(5038), - [anon_sym_value] = ACTIONS(5038), - [anon_sym_override] = ACTIONS(5038), - [anon_sym_lateinit] = ACTIONS(5038), - [anon_sym_public] = ACTIONS(5038), - [anon_sym_private] = ACTIONS(5038), - [anon_sym_internal] = ACTIONS(5038), - [anon_sym_protected] = ACTIONS(5038), - [anon_sym_tailrec] = ACTIONS(5038), - [anon_sym_operator] = ACTIONS(5038), - [anon_sym_infix] = ACTIONS(5038), - [anon_sym_inline] = ACTIONS(5038), - [anon_sym_external] = ACTIONS(5038), - [sym_property_modifier] = ACTIONS(5038), - [anon_sym_abstract] = ACTIONS(5038), - [anon_sym_final] = ACTIONS(5038), - [anon_sym_open] = ACTIONS(5038), - [anon_sym_vararg] = ACTIONS(5038), - [anon_sym_noinline] = ACTIONS(5038), - [anon_sym_crossinline] = ACTIONS(5038), - [anon_sym_expect] = ACTIONS(5038), - [anon_sym_actual] = ACTIONS(5038), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5040), - [sym__automatic_semicolon] = ACTIONS(5040), - [sym_safe_nav] = ACTIONS(5040), + [3985] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7195), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), [sym_multiline_comment] = ACTIONS(3), }, - [4002] = { - [sym__alpha_identifier] = ACTIONS(5045), - [anon_sym_AT] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(5045), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_where] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_get] = ACTIONS(5045), - [anon_sym_set] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [sym_label] = ACTIONS(5047), - [anon_sym_in] = ACTIONS(5045), - [anon_sym_DOT_DOT] = ACTIONS(5047), - [anon_sym_QMARK_COLON] = ACTIONS(5047), - [anon_sym_AMP_AMP] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_else] = ACTIONS(5045), - [anon_sym_COLON_COLON] = ACTIONS(5047), - [anon_sym_PLUS_EQ] = ACTIONS(5047), - [anon_sym_DASH_EQ] = ACTIONS(5047), - [anon_sym_STAR_EQ] = ACTIONS(5047), - [anon_sym_SLASH_EQ] = ACTIONS(5047), - [anon_sym_PERCENT_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_BANGin] = ACTIONS(5047), - [anon_sym_is] = ACTIONS(5045), - [anon_sym_BANGis] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_PERCENT] = ACTIONS(5045), - [anon_sym_as_QMARK] = ACTIONS(5047), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_BANG_BANG] = ACTIONS(5047), - [anon_sym_suspend] = ACTIONS(5045), - [anon_sym_sealed] = ACTIONS(5045), - [anon_sym_annotation] = ACTIONS(5045), - [anon_sym_data] = ACTIONS(5045), - [anon_sym_inner] = ACTIONS(5045), - [anon_sym_value] = ACTIONS(5045), - [anon_sym_override] = ACTIONS(5045), - [anon_sym_lateinit] = ACTIONS(5045), - [anon_sym_public] = ACTIONS(5045), - [anon_sym_private] = ACTIONS(5045), - [anon_sym_internal] = ACTIONS(5045), - [anon_sym_protected] = ACTIONS(5045), - [anon_sym_tailrec] = ACTIONS(5045), - [anon_sym_operator] = ACTIONS(5045), - [anon_sym_infix] = ACTIONS(5045), - [anon_sym_inline] = ACTIONS(5045), - [anon_sym_external] = ACTIONS(5045), - [sym_property_modifier] = ACTIONS(5045), - [anon_sym_abstract] = ACTIONS(5045), - [anon_sym_final] = ACTIONS(5045), - [anon_sym_open] = ACTIONS(5045), - [anon_sym_vararg] = ACTIONS(5045), - [anon_sym_noinline] = ACTIONS(5045), - [anon_sym_crossinline] = ACTIONS(5045), - [anon_sym_expect] = ACTIONS(5045), - [anon_sym_actual] = ACTIONS(5045), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5047), - [sym__automatic_semicolon] = ACTIONS(5047), - [sym_safe_nav] = ACTIONS(5047), + [3986] = { + [sym__alpha_identifier] = ACTIONS(4898), + [anon_sym_AT] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_get] = ACTIONS(4898), + [anon_sym_set] = ACTIONS(4898), + [anon_sym_STAR] = ACTIONS(4898), + [sym_label] = ACTIONS(4900), + [anon_sym_in] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4900), + [anon_sym_QMARK_COLON] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_else] = ACTIONS(4898), + [anon_sym_COLON_COLON] = ACTIONS(4900), + [anon_sym_PLUS_EQ] = ACTIONS(4900), + [anon_sym_DASH_EQ] = ACTIONS(4900), + [anon_sym_STAR_EQ] = ACTIONS(4900), + [anon_sym_SLASH_EQ] = ACTIONS(4900), + [anon_sym_PERCENT_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4900), + [anon_sym_LT_EQ] = ACTIONS(4900), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_BANGin] = ACTIONS(4900), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_BANGis] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_PERCENT] = ACTIONS(4898), + [anon_sym_as_QMARK] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4900), + [anon_sym_BANG_BANG] = ACTIONS(4900), + [anon_sym_suspend] = ACTIONS(4898), + [anon_sym_sealed] = ACTIONS(4898), + [anon_sym_annotation] = ACTIONS(4898), + [anon_sym_data] = ACTIONS(4898), + [anon_sym_inner] = ACTIONS(4898), + [anon_sym_value] = ACTIONS(4898), + [anon_sym_override] = ACTIONS(4898), + [anon_sym_lateinit] = ACTIONS(4898), + [anon_sym_public] = ACTIONS(4898), + [anon_sym_private] = ACTIONS(4898), + [anon_sym_internal] = ACTIONS(4898), + [anon_sym_protected] = ACTIONS(4898), + [anon_sym_tailrec] = ACTIONS(4898), + [anon_sym_operator] = ACTIONS(4898), + [anon_sym_infix] = ACTIONS(4898), + [anon_sym_inline] = ACTIONS(4898), + [anon_sym_external] = ACTIONS(4898), + [sym_property_modifier] = ACTIONS(4898), + [anon_sym_abstract] = ACTIONS(4898), + [anon_sym_final] = ACTIONS(4898), + [anon_sym_open] = ACTIONS(4898), + [anon_sym_vararg] = ACTIONS(4898), + [anon_sym_noinline] = ACTIONS(4898), + [anon_sym_crossinline] = ACTIONS(4898), + [anon_sym_expect] = ACTIONS(4898), + [anon_sym_actual] = ACTIONS(4898), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4900), + [sym__automatic_semicolon] = ACTIONS(4900), + [sym_safe_nav] = ACTIONS(4900), [sym_multiline_comment] = ACTIONS(3), }, - [4003] = { - [sym__alpha_identifier] = ACTIONS(5049), - [anon_sym_AT] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_as] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5049), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_where] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_get] = ACTIONS(5049), - [anon_sym_set] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [sym_label] = ACTIONS(5051), - [anon_sym_in] = ACTIONS(5049), - [anon_sym_DOT_DOT] = ACTIONS(5051), - [anon_sym_QMARK_COLON] = ACTIONS(5051), - [anon_sym_AMP_AMP] = ACTIONS(5051), - [anon_sym_PIPE_PIPE] = ACTIONS(5051), - [anon_sym_else] = ACTIONS(5049), - [anon_sym_COLON_COLON] = ACTIONS(5051), - [anon_sym_PLUS_EQ] = ACTIONS(5051), - [anon_sym_DASH_EQ] = ACTIONS(5051), - [anon_sym_STAR_EQ] = ACTIONS(5051), - [anon_sym_SLASH_EQ] = ACTIONS(5051), - [anon_sym_PERCENT_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), - [anon_sym_LT_EQ] = ACTIONS(5051), - [anon_sym_GT_EQ] = ACTIONS(5051), - [anon_sym_BANGin] = ACTIONS(5051), - [anon_sym_is] = ACTIONS(5049), - [anon_sym_BANGis] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5049), - [anon_sym_as_QMARK] = ACTIONS(5051), - [anon_sym_PLUS_PLUS] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5051), - [anon_sym_BANG_BANG] = ACTIONS(5051), - [anon_sym_suspend] = ACTIONS(5049), - [anon_sym_sealed] = ACTIONS(5049), - [anon_sym_annotation] = ACTIONS(5049), - [anon_sym_data] = ACTIONS(5049), - [anon_sym_inner] = ACTIONS(5049), - [anon_sym_value] = ACTIONS(5049), - [anon_sym_override] = ACTIONS(5049), - [anon_sym_lateinit] = ACTIONS(5049), - [anon_sym_public] = ACTIONS(5049), - [anon_sym_private] = ACTIONS(5049), - [anon_sym_internal] = ACTIONS(5049), - [anon_sym_protected] = ACTIONS(5049), - [anon_sym_tailrec] = ACTIONS(5049), - [anon_sym_operator] = ACTIONS(5049), - [anon_sym_infix] = ACTIONS(5049), - [anon_sym_inline] = ACTIONS(5049), - [anon_sym_external] = ACTIONS(5049), - [sym_property_modifier] = ACTIONS(5049), - [anon_sym_abstract] = ACTIONS(5049), - [anon_sym_final] = ACTIONS(5049), - [anon_sym_open] = ACTIONS(5049), - [anon_sym_vararg] = ACTIONS(5049), - [anon_sym_noinline] = ACTIONS(5049), - [anon_sym_crossinline] = ACTIONS(5049), - [anon_sym_expect] = ACTIONS(5049), - [anon_sym_actual] = ACTIONS(5049), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5051), - [sym__automatic_semicolon] = ACTIONS(5051), - [sym_safe_nav] = ACTIONS(5051), + [3987] = { + [sym__alpha_identifier] = ACTIONS(5205), + [anon_sym_AT] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_as] = ACTIONS(5205), + [anon_sym_EQ] = ACTIONS(5205), + [anon_sym_LBRACE] = ACTIONS(5207), + [anon_sym_RBRACE] = ACTIONS(5207), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_where] = ACTIONS(5205), + [anon_sym_DOT] = ACTIONS(5205), + [anon_sym_SEMI] = ACTIONS(5207), + [anon_sym_get] = ACTIONS(5205), + [anon_sym_set] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5205), + [sym_label] = ACTIONS(5207), + [anon_sym_in] = ACTIONS(5205), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5207), + [anon_sym_PIPE_PIPE] = ACTIONS(5207), + [anon_sym_else] = ACTIONS(5205), + [anon_sym_COLON_COLON] = ACTIONS(5207), + [anon_sym_PLUS_EQ] = ACTIONS(5207), + [anon_sym_DASH_EQ] = ACTIONS(5207), + [anon_sym_STAR_EQ] = ACTIONS(5207), + [anon_sym_SLASH_EQ] = ACTIONS(5207), + [anon_sym_PERCENT_EQ] = ACTIONS(5207), + [anon_sym_BANG_EQ] = ACTIONS(5205), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5207), + [anon_sym_EQ_EQ] = ACTIONS(5205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5207), + [anon_sym_LT_EQ] = ACTIONS(5207), + [anon_sym_GT_EQ] = ACTIONS(5207), + [anon_sym_BANGin] = ACTIONS(5207), + [anon_sym_is] = ACTIONS(5205), + [anon_sym_BANGis] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_PERCENT] = ACTIONS(5205), + [anon_sym_as_QMARK] = ACTIONS(5207), + [anon_sym_PLUS_PLUS] = ACTIONS(5207), + [anon_sym_DASH_DASH] = ACTIONS(5207), + [anon_sym_BANG_BANG] = ACTIONS(5207), + [anon_sym_suspend] = ACTIONS(5205), + [anon_sym_sealed] = ACTIONS(5205), + [anon_sym_annotation] = ACTIONS(5205), + [anon_sym_data] = ACTIONS(5205), + [anon_sym_inner] = ACTIONS(5205), + [anon_sym_value] = ACTIONS(5205), + [anon_sym_override] = ACTIONS(5205), + [anon_sym_lateinit] = ACTIONS(5205), + [anon_sym_public] = ACTIONS(5205), + [anon_sym_private] = ACTIONS(5205), + [anon_sym_internal] = ACTIONS(5205), + [anon_sym_protected] = ACTIONS(5205), + [anon_sym_tailrec] = ACTIONS(5205), + [anon_sym_operator] = ACTIONS(5205), + [anon_sym_infix] = ACTIONS(5205), + [anon_sym_inline] = ACTIONS(5205), + [anon_sym_external] = ACTIONS(5205), + [sym_property_modifier] = ACTIONS(5205), + [anon_sym_abstract] = ACTIONS(5205), + [anon_sym_final] = ACTIONS(5205), + [anon_sym_open] = ACTIONS(5205), + [anon_sym_vararg] = ACTIONS(5205), + [anon_sym_noinline] = ACTIONS(5205), + [anon_sym_crossinline] = ACTIONS(5205), + [anon_sym_expect] = ACTIONS(5205), + [anon_sym_actual] = ACTIONS(5205), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5207), + [sym__automatic_semicolon] = ACTIONS(5207), + [sym_safe_nav] = ACTIONS(5207), [sym_multiline_comment] = ACTIONS(3), }, - [4004] = { - [sym__alpha_identifier] = ACTIONS(4034), - [anon_sym_AT] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_as] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_COMMA] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_where] = ACTIONS(4034), - [anon_sym_DOT] = ACTIONS(4034), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_get] = ACTIONS(4034), - [anon_sym_set] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4034), - [sym_label] = ACTIONS(4036), - [anon_sym_in] = ACTIONS(4034), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_QMARK_COLON] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_else] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4036), - [anon_sym_PLUS_EQ] = ACTIONS(4036), - [anon_sym_DASH_EQ] = ACTIONS(4036), - [anon_sym_STAR_EQ] = ACTIONS(4036), - [anon_sym_SLASH_EQ] = ACTIONS(4036), - [anon_sym_PERCENT_EQ] = ACTIONS(4036), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT_EQ] = ACTIONS(4036), - [anon_sym_GT_EQ] = ACTIONS(4036), - [anon_sym_BANGin] = ACTIONS(4036), - [anon_sym_is] = ACTIONS(4034), - [anon_sym_BANGis] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_SLASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_as_QMARK] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4036), - [anon_sym_DASH_DASH] = ACTIONS(4036), - [anon_sym_BANG_BANG] = ACTIONS(4036), - [anon_sym_suspend] = ACTIONS(4034), - [anon_sym_sealed] = ACTIONS(4034), - [anon_sym_annotation] = ACTIONS(4034), - [anon_sym_data] = ACTIONS(4034), - [anon_sym_inner] = ACTIONS(4034), - [anon_sym_value] = ACTIONS(4034), - [anon_sym_override] = ACTIONS(4034), - [anon_sym_lateinit] = ACTIONS(4034), - [anon_sym_public] = ACTIONS(4034), - [anon_sym_private] = ACTIONS(4034), - [anon_sym_internal] = ACTIONS(4034), - [anon_sym_protected] = ACTIONS(4034), - [anon_sym_tailrec] = ACTIONS(4034), - [anon_sym_operator] = ACTIONS(4034), - [anon_sym_infix] = ACTIONS(4034), - [anon_sym_inline] = ACTIONS(4034), - [anon_sym_external] = ACTIONS(4034), - [sym_property_modifier] = ACTIONS(4034), - [anon_sym_abstract] = ACTIONS(4034), - [anon_sym_final] = ACTIONS(4034), - [anon_sym_open] = ACTIONS(4034), - [anon_sym_vararg] = ACTIONS(4034), - [anon_sym_noinline] = ACTIONS(4034), - [anon_sym_crossinline] = ACTIONS(4034), - [anon_sym_expect] = ACTIONS(4034), - [anon_sym_actual] = ACTIONS(4034), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4036), - [sym__automatic_semicolon] = ACTIONS(4036), - [sym_safe_nav] = ACTIONS(4036), + [3988] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7197), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), }, - [4005] = { - [sym__alpha_identifier] = ACTIONS(5061), - [anon_sym_AT] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_as] = ACTIONS(5061), - [anon_sym_EQ] = ACTIONS(5061), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_RBRACE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_where] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_get] = ACTIONS(5061), - [anon_sym_set] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [sym_label] = ACTIONS(5063), - [anon_sym_in] = ACTIONS(5061), - [anon_sym_DOT_DOT] = ACTIONS(5063), - [anon_sym_QMARK_COLON] = ACTIONS(5063), - [anon_sym_AMP_AMP] = ACTIONS(5063), - [anon_sym_PIPE_PIPE] = ACTIONS(5063), - [anon_sym_else] = ACTIONS(5061), - [anon_sym_COLON_COLON] = ACTIONS(5063), - [anon_sym_PLUS_EQ] = ACTIONS(5063), - [anon_sym_DASH_EQ] = ACTIONS(5063), - [anon_sym_STAR_EQ] = ACTIONS(5063), - [anon_sym_SLASH_EQ] = ACTIONS(5063), - [anon_sym_PERCENT_EQ] = ACTIONS(5063), - [anon_sym_BANG_EQ] = ACTIONS(5061), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5063), - [anon_sym_EQ_EQ] = ACTIONS(5061), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5063), - [anon_sym_LT_EQ] = ACTIONS(5063), - [anon_sym_GT_EQ] = ACTIONS(5063), - [anon_sym_BANGin] = ACTIONS(5063), - [anon_sym_is] = ACTIONS(5061), - [anon_sym_BANGis] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_PERCENT] = ACTIONS(5061), - [anon_sym_as_QMARK] = ACTIONS(5063), - [anon_sym_PLUS_PLUS] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5063), - [anon_sym_BANG_BANG] = ACTIONS(5063), - [anon_sym_suspend] = ACTIONS(5061), - [anon_sym_sealed] = ACTIONS(5061), - [anon_sym_annotation] = ACTIONS(5061), - [anon_sym_data] = ACTIONS(5061), - [anon_sym_inner] = ACTIONS(5061), - [anon_sym_value] = ACTIONS(5061), - [anon_sym_override] = ACTIONS(5061), - [anon_sym_lateinit] = ACTIONS(5061), - [anon_sym_public] = ACTIONS(5061), - [anon_sym_private] = ACTIONS(5061), - [anon_sym_internal] = ACTIONS(5061), - [anon_sym_protected] = ACTIONS(5061), - [anon_sym_tailrec] = ACTIONS(5061), - [anon_sym_operator] = ACTIONS(5061), - [anon_sym_infix] = ACTIONS(5061), - [anon_sym_inline] = ACTIONS(5061), - [anon_sym_external] = ACTIONS(5061), - [sym_property_modifier] = ACTIONS(5061), - [anon_sym_abstract] = ACTIONS(5061), - [anon_sym_final] = ACTIONS(5061), - [anon_sym_open] = ACTIONS(5061), - [anon_sym_vararg] = ACTIONS(5061), - [anon_sym_noinline] = ACTIONS(5061), - [anon_sym_crossinline] = ACTIONS(5061), - [anon_sym_expect] = ACTIONS(5061), - [anon_sym_actual] = ACTIONS(5061), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5063), - [sym__automatic_semicolon] = ACTIONS(5063), - [sym_safe_nav] = ACTIONS(5063), + [3989] = { + [sym__alpha_identifier] = ACTIONS(4954), + [anon_sym_AT] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4954), + [anon_sym_EQ] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4954), + [anon_sym_where] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_get] = ACTIONS(4954), + [anon_sym_set] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4954), + [sym_label] = ACTIONS(4956), + [anon_sym_in] = ACTIONS(4954), + [anon_sym_DOT_DOT] = ACTIONS(4956), + [anon_sym_QMARK_COLON] = ACTIONS(4956), + [anon_sym_AMP_AMP] = ACTIONS(4956), + [anon_sym_PIPE_PIPE] = ACTIONS(4956), + [anon_sym_else] = ACTIONS(4954), + [anon_sym_COLON_COLON] = ACTIONS(4956), + [anon_sym_PLUS_EQ] = ACTIONS(4956), + [anon_sym_DASH_EQ] = ACTIONS(4956), + [anon_sym_STAR_EQ] = ACTIONS(4956), + [anon_sym_SLASH_EQ] = ACTIONS(4956), + [anon_sym_PERCENT_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4956), + [anon_sym_LT_EQ] = ACTIONS(4956), + [anon_sym_GT_EQ] = ACTIONS(4956), + [anon_sym_BANGin] = ACTIONS(4956), + [anon_sym_is] = ACTIONS(4954), + [anon_sym_BANGis] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4954), + [anon_sym_as_QMARK] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_BANG_BANG] = ACTIONS(4956), + [anon_sym_suspend] = ACTIONS(4954), + [anon_sym_sealed] = ACTIONS(4954), + [anon_sym_annotation] = ACTIONS(4954), + [anon_sym_data] = ACTIONS(4954), + [anon_sym_inner] = ACTIONS(4954), + [anon_sym_value] = ACTIONS(4954), + [anon_sym_override] = ACTIONS(4954), + [anon_sym_lateinit] = ACTIONS(4954), + [anon_sym_public] = ACTIONS(4954), + [anon_sym_private] = ACTIONS(4954), + [anon_sym_internal] = ACTIONS(4954), + [anon_sym_protected] = ACTIONS(4954), + [anon_sym_tailrec] = ACTIONS(4954), + [anon_sym_operator] = ACTIONS(4954), + [anon_sym_infix] = ACTIONS(4954), + [anon_sym_inline] = ACTIONS(4954), + [anon_sym_external] = ACTIONS(4954), + [sym_property_modifier] = ACTIONS(4954), + [anon_sym_abstract] = ACTIONS(4954), + [anon_sym_final] = ACTIONS(4954), + [anon_sym_open] = ACTIONS(4954), + [anon_sym_vararg] = ACTIONS(4954), + [anon_sym_noinline] = ACTIONS(4954), + [anon_sym_crossinline] = ACTIONS(4954), + [anon_sym_expect] = ACTIONS(4954), + [anon_sym_actual] = ACTIONS(4954), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4956), + [sym__automatic_semicolon] = ACTIONS(4956), + [sym_safe_nav] = ACTIONS(4956), [sym_multiline_comment] = ACTIONS(3), }, - [4006] = { - [sym__alpha_identifier] = ACTIONS(5103), - [anon_sym_AT] = ACTIONS(5105), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_as] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5105), - [anon_sym_RBRACE] = ACTIONS(5105), - [anon_sym_LPAREN] = ACTIONS(5105), - [anon_sym_COMMA] = ACTIONS(5105), - [anon_sym_LT] = ACTIONS(5103), - [anon_sym_GT] = ACTIONS(5103), - [anon_sym_where] = ACTIONS(5103), - [anon_sym_DOT] = ACTIONS(5103), - [anon_sym_SEMI] = ACTIONS(5105), - [anon_sym_get] = ACTIONS(5103), - [anon_sym_set] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5103), - [sym_label] = ACTIONS(5105), - [anon_sym_in] = ACTIONS(5103), - [anon_sym_DOT_DOT] = ACTIONS(5105), - [anon_sym_QMARK_COLON] = ACTIONS(5105), - [anon_sym_AMP_AMP] = ACTIONS(5105), - [anon_sym_PIPE_PIPE] = ACTIONS(5105), - [anon_sym_else] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_PLUS_EQ] = ACTIONS(5105), - [anon_sym_DASH_EQ] = ACTIONS(5105), - [anon_sym_STAR_EQ] = ACTIONS(5105), - [anon_sym_SLASH_EQ] = ACTIONS(5105), - [anon_sym_PERCENT_EQ] = ACTIONS(5105), - [anon_sym_BANG_EQ] = ACTIONS(5103), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5105), - [anon_sym_EQ_EQ] = ACTIONS(5103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5105), - [anon_sym_LT_EQ] = ACTIONS(5105), - [anon_sym_GT_EQ] = ACTIONS(5105), - [anon_sym_BANGin] = ACTIONS(5105), - [anon_sym_is] = ACTIONS(5103), - [anon_sym_BANGis] = ACTIONS(5105), - [anon_sym_PLUS] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5103), - [anon_sym_SLASH] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_as_QMARK] = ACTIONS(5105), - [anon_sym_PLUS_PLUS] = ACTIONS(5105), - [anon_sym_DASH_DASH] = ACTIONS(5105), - [anon_sym_BANG_BANG] = ACTIONS(5105), - [anon_sym_suspend] = ACTIONS(5103), - [anon_sym_sealed] = ACTIONS(5103), - [anon_sym_annotation] = ACTIONS(5103), - [anon_sym_data] = ACTIONS(5103), - [anon_sym_inner] = ACTIONS(5103), - [anon_sym_value] = ACTIONS(5103), - [anon_sym_override] = ACTIONS(5103), - [anon_sym_lateinit] = ACTIONS(5103), - [anon_sym_public] = ACTIONS(5103), - [anon_sym_private] = ACTIONS(5103), - [anon_sym_internal] = ACTIONS(5103), - [anon_sym_protected] = ACTIONS(5103), - [anon_sym_tailrec] = ACTIONS(5103), - [anon_sym_operator] = ACTIONS(5103), - [anon_sym_infix] = ACTIONS(5103), - [anon_sym_inline] = ACTIONS(5103), - [anon_sym_external] = ACTIONS(5103), - [sym_property_modifier] = ACTIONS(5103), - [anon_sym_abstract] = ACTIONS(5103), - [anon_sym_final] = ACTIONS(5103), - [anon_sym_open] = ACTIONS(5103), - [anon_sym_vararg] = ACTIONS(5103), - [anon_sym_noinline] = ACTIONS(5103), - [anon_sym_crossinline] = ACTIONS(5103), - [anon_sym_expect] = ACTIONS(5103), - [anon_sym_actual] = ACTIONS(5103), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5105), - [sym__automatic_semicolon] = ACTIONS(5105), - [sym_safe_nav] = ACTIONS(5105), + [3990] = { + [sym__alpha_identifier] = ACTIONS(4782), + [anon_sym_AT] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4784), + [anon_sym_as] = ACTIONS(4782), + [anon_sym_EQ] = ACTIONS(4782), + [anon_sym_LBRACE] = ACTIONS(4784), + [anon_sym_RBRACE] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4784), + [anon_sym_COMMA] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4782), + [anon_sym_where] = ACTIONS(4782), + [anon_sym_DOT] = ACTIONS(4782), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_get] = ACTIONS(4782), + [anon_sym_set] = ACTIONS(4782), + [anon_sym_STAR] = ACTIONS(4782), + [sym_label] = ACTIONS(4784), + [anon_sym_in] = ACTIONS(4782), + [anon_sym_DOT_DOT] = ACTIONS(4784), + [anon_sym_QMARK_COLON] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_else] = ACTIONS(4782), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_PLUS_EQ] = ACTIONS(4784), + [anon_sym_DASH_EQ] = ACTIONS(4784), + [anon_sym_STAR_EQ] = ACTIONS(4784), + [anon_sym_SLASH_EQ] = ACTIONS(4784), + [anon_sym_PERCENT_EQ] = ACTIONS(4784), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4784), + [anon_sym_LT_EQ] = ACTIONS(4784), + [anon_sym_GT_EQ] = ACTIONS(4784), + [anon_sym_BANGin] = ACTIONS(4784), + [anon_sym_is] = ACTIONS(4782), + [anon_sym_BANGis] = ACTIONS(4784), + [anon_sym_PLUS] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4782), + [anon_sym_SLASH] = ACTIONS(4782), + [anon_sym_PERCENT] = ACTIONS(4782), + [anon_sym_as_QMARK] = ACTIONS(4784), + [anon_sym_PLUS_PLUS] = ACTIONS(4784), + [anon_sym_DASH_DASH] = ACTIONS(4784), + [anon_sym_BANG_BANG] = ACTIONS(4784), + [anon_sym_suspend] = ACTIONS(4782), + [anon_sym_sealed] = ACTIONS(4782), + [anon_sym_annotation] = ACTIONS(4782), + [anon_sym_data] = ACTIONS(4782), + [anon_sym_inner] = ACTIONS(4782), + [anon_sym_value] = ACTIONS(4782), + [anon_sym_override] = ACTIONS(4782), + [anon_sym_lateinit] = ACTIONS(4782), + [anon_sym_public] = ACTIONS(4782), + [anon_sym_private] = ACTIONS(4782), + [anon_sym_internal] = ACTIONS(4782), + [anon_sym_protected] = ACTIONS(4782), + [anon_sym_tailrec] = ACTIONS(4782), + [anon_sym_operator] = ACTIONS(4782), + [anon_sym_infix] = ACTIONS(4782), + [anon_sym_inline] = ACTIONS(4782), + [anon_sym_external] = ACTIONS(4782), + [sym_property_modifier] = ACTIONS(4782), + [anon_sym_abstract] = ACTIONS(4782), + [anon_sym_final] = ACTIONS(4782), + [anon_sym_open] = ACTIONS(4782), + [anon_sym_vararg] = ACTIONS(4782), + [anon_sym_noinline] = ACTIONS(4782), + [anon_sym_crossinline] = ACTIONS(4782), + [anon_sym_expect] = ACTIONS(4782), + [anon_sym_actual] = ACTIONS(4782), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4784), + [sym__automatic_semicolon] = ACTIONS(4784), + [sym_safe_nav] = ACTIONS(4784), [sym_multiline_comment] = ACTIONS(3), }, - [4007] = { - [sym__alpha_identifier] = ACTIONS(1622), - [anon_sym_AT] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_as] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_where] = ACTIONS(1622), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_get] = ACTIONS(1622), - [anon_sym_set] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1622), - [sym_label] = ACTIONS(1620), - [anon_sym_in] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_QMARK_COLON] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1620), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_BANGin] = ACTIONS(1620), - [anon_sym_is] = ACTIONS(1622), - [anon_sym_BANGis] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1622), - [anon_sym_DASH] = ACTIONS(1622), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_as_QMARK] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [anon_sym_BANG_BANG] = ACTIONS(1620), - [anon_sym_suspend] = ACTIONS(1622), - [anon_sym_sealed] = ACTIONS(1622), - [anon_sym_annotation] = ACTIONS(1622), - [anon_sym_data] = ACTIONS(1622), - [anon_sym_inner] = ACTIONS(1622), - [anon_sym_value] = ACTIONS(1622), - [anon_sym_override] = ACTIONS(1622), - [anon_sym_lateinit] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_internal] = ACTIONS(1622), - [anon_sym_protected] = ACTIONS(1622), - [anon_sym_tailrec] = ACTIONS(1622), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_infix] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_external] = ACTIONS(1622), - [sym_property_modifier] = ACTIONS(1622), - [anon_sym_abstract] = ACTIONS(1622), - [anon_sym_final] = ACTIONS(1622), - [anon_sym_open] = ACTIONS(1622), - [anon_sym_vararg] = ACTIONS(1622), - [anon_sym_noinline] = ACTIONS(1622), - [anon_sym_crossinline] = ACTIONS(1622), - [anon_sym_expect] = ACTIONS(1622), - [anon_sym_actual] = ACTIONS(1622), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1620), - [sym__automatic_semicolon] = ACTIONS(1620), - [sym_safe_nav] = ACTIONS(1620), + [3991] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7199), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), [sym_multiline_comment] = ACTIONS(3), }, - [4008] = { - [sym__alpha_identifier] = ACTIONS(5049), - [anon_sym_AT] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_as] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5049), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(7295), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_where] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_get] = ACTIONS(5049), - [anon_sym_set] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [sym_label] = ACTIONS(5051), - [anon_sym_in] = ACTIONS(5049), - [anon_sym_DOT_DOT] = ACTIONS(5051), - [anon_sym_QMARK_COLON] = ACTIONS(5051), - [anon_sym_AMP_AMP] = ACTIONS(5051), - [anon_sym_PIPE_PIPE] = ACTIONS(5051), - [anon_sym_else] = ACTIONS(5049), - [anon_sym_COLON_COLON] = ACTIONS(5051), - [anon_sym_PLUS_EQ] = ACTIONS(5051), - [anon_sym_DASH_EQ] = ACTIONS(5051), - [anon_sym_STAR_EQ] = ACTIONS(5051), - [anon_sym_SLASH_EQ] = ACTIONS(5051), - [anon_sym_PERCENT_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), - [anon_sym_LT_EQ] = ACTIONS(5051), - [anon_sym_GT_EQ] = ACTIONS(5051), - [anon_sym_BANGin] = ACTIONS(5051), - [anon_sym_is] = ACTIONS(5049), - [anon_sym_BANGis] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5049), - [anon_sym_as_QMARK] = ACTIONS(5051), - [anon_sym_PLUS_PLUS] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5051), - [anon_sym_BANG_BANG] = ACTIONS(5051), - [anon_sym_suspend] = ACTIONS(5049), - [anon_sym_sealed] = ACTIONS(5049), - [anon_sym_annotation] = ACTIONS(5049), - [anon_sym_data] = ACTIONS(5049), - [anon_sym_inner] = ACTIONS(5049), - [anon_sym_value] = ACTIONS(5049), - [anon_sym_override] = ACTIONS(5049), - [anon_sym_lateinit] = ACTIONS(5049), - [anon_sym_public] = ACTIONS(5049), - [anon_sym_private] = ACTIONS(5049), - [anon_sym_internal] = ACTIONS(5049), - [anon_sym_protected] = ACTIONS(5049), - [anon_sym_tailrec] = ACTIONS(5049), - [anon_sym_operator] = ACTIONS(5049), - [anon_sym_infix] = ACTIONS(5049), - [anon_sym_inline] = ACTIONS(5049), - [anon_sym_external] = ACTIONS(5049), - [sym_property_modifier] = ACTIONS(5049), - [anon_sym_abstract] = ACTIONS(5049), - [anon_sym_final] = ACTIONS(5049), - [anon_sym_open] = ACTIONS(5049), - [anon_sym_vararg] = ACTIONS(5049), - [anon_sym_noinline] = ACTIONS(5049), - [anon_sym_crossinline] = ACTIONS(5049), - [anon_sym_expect] = ACTIONS(5049), - [anon_sym_actual] = ACTIONS(5049), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5051), - [sym__automatic_semicolon] = ACTIONS(5051), - [sym_safe_nav] = ACTIONS(5051), + [3992] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), [sym_multiline_comment] = ACTIONS(3), }, - [4009] = { - [sym__alpha_identifier] = ACTIONS(5075), - [anon_sym_AT] = ACTIONS(5077), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_as] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5077), - [anon_sym_RBRACE] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5077), - [anon_sym_COMMA] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_where] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_get] = ACTIONS(5075), - [anon_sym_set] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [sym_label] = ACTIONS(5077), - [anon_sym_in] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5077), - [anon_sym_QMARK_COLON] = ACTIONS(5077), - [anon_sym_AMP_AMP] = ACTIONS(5077), - [anon_sym_PIPE_PIPE] = ACTIONS(5077), - [anon_sym_else] = ACTIONS(5075), - [anon_sym_COLON_COLON] = ACTIONS(5077), - [anon_sym_PLUS_EQ] = ACTIONS(5077), - [anon_sym_DASH_EQ] = ACTIONS(5077), - [anon_sym_STAR_EQ] = ACTIONS(5077), - [anon_sym_SLASH_EQ] = ACTIONS(5077), - [anon_sym_PERCENT_EQ] = ACTIONS(5077), - [anon_sym_BANG_EQ] = ACTIONS(5075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5077), - [anon_sym_EQ_EQ] = ACTIONS(5075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5077), - [anon_sym_LT_EQ] = ACTIONS(5077), - [anon_sym_GT_EQ] = ACTIONS(5077), - [anon_sym_BANGin] = ACTIONS(5077), - [anon_sym_is] = ACTIONS(5075), - [anon_sym_BANGis] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_as_QMARK] = ACTIONS(5077), - [anon_sym_PLUS_PLUS] = ACTIONS(5077), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_BANG_BANG] = ACTIONS(5077), - [anon_sym_suspend] = ACTIONS(5075), - [anon_sym_sealed] = ACTIONS(5075), - [anon_sym_annotation] = ACTIONS(5075), - [anon_sym_data] = ACTIONS(5075), - [anon_sym_inner] = ACTIONS(5075), - [anon_sym_value] = ACTIONS(5075), - [anon_sym_override] = ACTIONS(5075), - [anon_sym_lateinit] = ACTIONS(5075), - [anon_sym_public] = ACTIONS(5075), - [anon_sym_private] = ACTIONS(5075), - [anon_sym_internal] = ACTIONS(5075), - [anon_sym_protected] = ACTIONS(5075), - [anon_sym_tailrec] = ACTIONS(5075), - [anon_sym_operator] = ACTIONS(5075), - [anon_sym_infix] = ACTIONS(5075), - [anon_sym_inline] = ACTIONS(5075), - [anon_sym_external] = ACTIONS(5075), - [sym_property_modifier] = ACTIONS(5075), - [anon_sym_abstract] = ACTIONS(5075), - [anon_sym_final] = ACTIONS(5075), - [anon_sym_open] = ACTIONS(5075), - [anon_sym_vararg] = ACTIONS(5075), - [anon_sym_noinline] = ACTIONS(5075), - [anon_sym_crossinline] = ACTIONS(5075), - [anon_sym_expect] = ACTIONS(5075), - [anon_sym_actual] = ACTIONS(5075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5077), - [sym__automatic_semicolon] = ACTIONS(5077), - [sym_safe_nav] = ACTIONS(5077), + [3993] = { + [sym__alpha_identifier] = ACTIONS(5187), + [anon_sym_AT] = ACTIONS(5189), + [anon_sym_LBRACK] = ACTIONS(5189), + [anon_sym_as] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5189), + [anon_sym_RBRACE] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5189), + [anon_sym_COMMA] = ACTIONS(5189), + [anon_sym_LT] = ACTIONS(5187), + [anon_sym_GT] = ACTIONS(5187), + [anon_sym_where] = ACTIONS(5187), + [anon_sym_DOT] = ACTIONS(5187), + [anon_sym_SEMI] = ACTIONS(5189), + [anon_sym_get] = ACTIONS(5187), + [anon_sym_set] = ACTIONS(5187), + [anon_sym_STAR] = ACTIONS(5187), + [sym_label] = ACTIONS(5189), + [anon_sym_in] = ACTIONS(5187), + [anon_sym_DOT_DOT] = ACTIONS(5189), + [anon_sym_QMARK_COLON] = ACTIONS(5189), + [anon_sym_AMP_AMP] = ACTIONS(5189), + [anon_sym_PIPE_PIPE] = ACTIONS(5189), + [anon_sym_else] = ACTIONS(5187), + [anon_sym_COLON_COLON] = ACTIONS(5189), + [anon_sym_PLUS_EQ] = ACTIONS(5189), + [anon_sym_DASH_EQ] = ACTIONS(5189), + [anon_sym_STAR_EQ] = ACTIONS(5189), + [anon_sym_SLASH_EQ] = ACTIONS(5189), + [anon_sym_PERCENT_EQ] = ACTIONS(5189), + [anon_sym_BANG_EQ] = ACTIONS(5187), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5189), + [anon_sym_EQ_EQ] = ACTIONS(5187), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5189), + [anon_sym_LT_EQ] = ACTIONS(5189), + [anon_sym_GT_EQ] = ACTIONS(5189), + [anon_sym_BANGin] = ACTIONS(5189), + [anon_sym_is] = ACTIONS(5187), + [anon_sym_BANGis] = ACTIONS(5189), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5187), + [anon_sym_PERCENT] = ACTIONS(5187), + [anon_sym_as_QMARK] = ACTIONS(5189), + [anon_sym_PLUS_PLUS] = ACTIONS(5189), + [anon_sym_DASH_DASH] = ACTIONS(5189), + [anon_sym_BANG_BANG] = ACTIONS(5189), + [anon_sym_suspend] = ACTIONS(5187), + [anon_sym_sealed] = ACTIONS(5187), + [anon_sym_annotation] = ACTIONS(5187), + [anon_sym_data] = ACTIONS(5187), + [anon_sym_inner] = ACTIONS(5187), + [anon_sym_value] = ACTIONS(5187), + [anon_sym_override] = ACTIONS(5187), + [anon_sym_lateinit] = ACTIONS(5187), + [anon_sym_public] = ACTIONS(5187), + [anon_sym_private] = ACTIONS(5187), + [anon_sym_internal] = ACTIONS(5187), + [anon_sym_protected] = ACTIONS(5187), + [anon_sym_tailrec] = ACTIONS(5187), + [anon_sym_operator] = ACTIONS(5187), + [anon_sym_infix] = ACTIONS(5187), + [anon_sym_inline] = ACTIONS(5187), + [anon_sym_external] = ACTIONS(5187), + [sym_property_modifier] = ACTIONS(5187), + [anon_sym_abstract] = ACTIONS(5187), + [anon_sym_final] = ACTIONS(5187), + [anon_sym_open] = ACTIONS(5187), + [anon_sym_vararg] = ACTIONS(5187), + [anon_sym_noinline] = ACTIONS(5187), + [anon_sym_crossinline] = ACTIONS(5187), + [anon_sym_expect] = ACTIONS(5187), + [anon_sym_actual] = ACTIONS(5187), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5189), + [sym__automatic_semicolon] = ACTIONS(5189), + [sym_safe_nav] = ACTIONS(5189), [sym_multiline_comment] = ACTIONS(3), }, - [4010] = { - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4532), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_where] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4530), - [anon_sym_sealed] = ACTIONS(4530), - [anon_sym_annotation] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_override] = ACTIONS(4530), - [anon_sym_lateinit] = ACTIONS(4530), - [anon_sym_public] = ACTIONS(4530), - [anon_sym_private] = ACTIONS(4530), - [anon_sym_internal] = ACTIONS(4530), - [anon_sym_protected] = ACTIONS(4530), - [anon_sym_tailrec] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_infix] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym_external] = ACTIONS(4530), - [sym_property_modifier] = ACTIONS(4530), - [anon_sym_abstract] = ACTIONS(4530), - [anon_sym_final] = ACTIONS(4530), - [anon_sym_open] = ACTIONS(4530), - [anon_sym_vararg] = ACTIONS(4530), - [anon_sym_noinline] = ACTIONS(4530), - [anon_sym_crossinline] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), + [3994] = { + [sym__alpha_identifier] = ACTIONS(4942), + [anon_sym_AT] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4944), + [anon_sym_as] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_RBRACE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4942), + [anon_sym_where] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_get] = ACTIONS(4942), + [anon_sym_set] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4942), + [sym_label] = ACTIONS(4944), + [anon_sym_in] = ACTIONS(4942), + [anon_sym_DOT_DOT] = ACTIONS(4944), + [anon_sym_QMARK_COLON] = ACTIONS(4944), + [anon_sym_AMP_AMP] = ACTIONS(4944), + [anon_sym_PIPE_PIPE] = ACTIONS(4944), + [anon_sym_else] = ACTIONS(4942), + [anon_sym_COLON_COLON] = ACTIONS(4944), + [anon_sym_PLUS_EQ] = ACTIONS(4944), + [anon_sym_DASH_EQ] = ACTIONS(4944), + [anon_sym_STAR_EQ] = ACTIONS(4944), + [anon_sym_SLASH_EQ] = ACTIONS(4944), + [anon_sym_PERCENT_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4944), + [anon_sym_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4944), + [anon_sym_LT_EQ] = ACTIONS(4944), + [anon_sym_GT_EQ] = ACTIONS(4944), + [anon_sym_BANGin] = ACTIONS(4944), + [anon_sym_is] = ACTIONS(4942), + [anon_sym_BANGis] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4942), + [anon_sym_PERCENT] = ACTIONS(4942), + [anon_sym_as_QMARK] = ACTIONS(4944), + [anon_sym_PLUS_PLUS] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4944), + [anon_sym_BANG_BANG] = ACTIONS(4944), + [anon_sym_suspend] = ACTIONS(4942), + [anon_sym_sealed] = ACTIONS(4942), + [anon_sym_annotation] = ACTIONS(4942), + [anon_sym_data] = ACTIONS(4942), + [anon_sym_inner] = ACTIONS(4942), + [anon_sym_value] = ACTIONS(4942), + [anon_sym_override] = ACTIONS(4942), + [anon_sym_lateinit] = ACTIONS(4942), + [anon_sym_public] = ACTIONS(4942), + [anon_sym_private] = ACTIONS(4942), + [anon_sym_internal] = ACTIONS(4942), + [anon_sym_protected] = ACTIONS(4942), + [anon_sym_tailrec] = ACTIONS(4942), + [anon_sym_operator] = ACTIONS(4942), + [anon_sym_infix] = ACTIONS(4942), + [anon_sym_inline] = ACTIONS(4942), + [anon_sym_external] = ACTIONS(4942), + [sym_property_modifier] = ACTIONS(4942), + [anon_sym_abstract] = ACTIONS(4942), + [anon_sym_final] = ACTIONS(4942), + [anon_sym_open] = ACTIONS(4942), + [anon_sym_vararg] = ACTIONS(4942), + [anon_sym_noinline] = ACTIONS(4942), + [anon_sym_crossinline] = ACTIONS(4942), + [anon_sym_expect] = ACTIONS(4942), + [anon_sym_actual] = ACTIONS(4942), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4944), + [sym__automatic_semicolon] = ACTIONS(4944), + [sym_safe_nav] = ACTIONS(4944), [sym_multiline_comment] = ACTIONS(3), }, - [4011] = { - [sym__alpha_identifier] = ACTIONS(5038), - [anon_sym_AT] = ACTIONS(5040), - [anon_sym_LBRACK] = ACTIONS(5040), - [anon_sym_as] = ACTIONS(5038), - [anon_sym_EQ] = ACTIONS(5053), - [anon_sym_LBRACE] = ACTIONS(5040), - [anon_sym_RBRACE] = ACTIONS(5040), - [anon_sym_LPAREN] = ACTIONS(5040), - [anon_sym_COMMA] = ACTIONS(5040), - [anon_sym_LT] = ACTIONS(5038), - [anon_sym_GT] = ACTIONS(5038), - [anon_sym_where] = ACTIONS(5038), - [anon_sym_DOT] = ACTIONS(5038), - [anon_sym_SEMI] = ACTIONS(5040), - [anon_sym_get] = ACTIONS(5038), - [anon_sym_set] = ACTIONS(5038), - [anon_sym_STAR] = ACTIONS(5038), - [sym_label] = ACTIONS(5040), - [anon_sym_in] = ACTIONS(5038), - [anon_sym_DOT_DOT] = ACTIONS(5040), - [anon_sym_QMARK_COLON] = ACTIONS(5040), - [anon_sym_AMP_AMP] = ACTIONS(5040), - [anon_sym_PIPE_PIPE] = ACTIONS(5040), - [anon_sym_else] = ACTIONS(5038), - [anon_sym_COLON_COLON] = ACTIONS(7292), - [anon_sym_PLUS_EQ] = ACTIONS(5055), - [anon_sym_DASH_EQ] = ACTIONS(5055), - [anon_sym_STAR_EQ] = ACTIONS(5055), - [anon_sym_SLASH_EQ] = ACTIONS(5055), - [anon_sym_PERCENT_EQ] = ACTIONS(5055), - [anon_sym_BANG_EQ] = ACTIONS(5038), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5040), - [anon_sym_EQ_EQ] = ACTIONS(5038), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5040), - [anon_sym_LT_EQ] = ACTIONS(5040), - [anon_sym_GT_EQ] = ACTIONS(5040), - [anon_sym_BANGin] = ACTIONS(5040), - [anon_sym_is] = ACTIONS(5038), - [anon_sym_BANGis] = ACTIONS(5040), - [anon_sym_PLUS] = ACTIONS(5038), - [anon_sym_DASH] = ACTIONS(5038), - [anon_sym_SLASH] = ACTIONS(5038), - [anon_sym_PERCENT] = ACTIONS(5038), - [anon_sym_as_QMARK] = ACTIONS(5040), - [anon_sym_PLUS_PLUS] = ACTIONS(5040), - [anon_sym_DASH_DASH] = ACTIONS(5040), - [anon_sym_BANG_BANG] = ACTIONS(5040), - [anon_sym_suspend] = ACTIONS(5038), - [anon_sym_sealed] = ACTIONS(5038), - [anon_sym_annotation] = ACTIONS(5038), - [anon_sym_data] = ACTIONS(5038), - [anon_sym_inner] = ACTIONS(5038), - [anon_sym_value] = ACTIONS(5038), - [anon_sym_override] = ACTIONS(5038), - [anon_sym_lateinit] = ACTIONS(5038), - [anon_sym_public] = ACTIONS(5038), - [anon_sym_private] = ACTIONS(5038), - [anon_sym_internal] = ACTIONS(5038), - [anon_sym_protected] = ACTIONS(5038), - [anon_sym_tailrec] = ACTIONS(5038), - [anon_sym_operator] = ACTIONS(5038), - [anon_sym_infix] = ACTIONS(5038), - [anon_sym_inline] = ACTIONS(5038), - [anon_sym_external] = ACTIONS(5038), - [sym_property_modifier] = ACTIONS(5038), - [anon_sym_abstract] = ACTIONS(5038), - [anon_sym_final] = ACTIONS(5038), - [anon_sym_open] = ACTIONS(5038), - [anon_sym_vararg] = ACTIONS(5038), - [anon_sym_noinline] = ACTIONS(5038), - [anon_sym_crossinline] = ACTIONS(5038), - [anon_sym_expect] = ACTIONS(5038), - [anon_sym_actual] = ACTIONS(5038), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5040), - [sym__automatic_semicolon] = ACTIONS(5040), - [sym_safe_nav] = ACTIONS(5040), + [3995] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_where] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4974), + [sym_label] = ACTIONS(4976), + [anon_sym_in] = ACTIONS(4974), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_QMARK_COLON] = ACTIONS(4976), + [anon_sym_AMP_AMP] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4976), + [anon_sym_else] = ACTIONS(4974), + [anon_sym_COLON_COLON] = ACTIONS(4976), + [anon_sym_PLUS_EQ] = ACTIONS(4976), + [anon_sym_DASH_EQ] = ACTIONS(4976), + [anon_sym_STAR_EQ] = ACTIONS(4976), + [anon_sym_SLASH_EQ] = ACTIONS(4976), + [anon_sym_PERCENT_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4976), + [anon_sym_BANGin] = ACTIONS(4976), + [anon_sym_is] = ACTIONS(4974), + [anon_sym_BANGis] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4974), + [anon_sym_PERCENT] = ACTIONS(4974), + [anon_sym_as_QMARK] = ACTIONS(4976), + [anon_sym_PLUS_PLUS] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4976), + [anon_sym_BANG_BANG] = ACTIONS(4976), + [anon_sym_suspend] = ACTIONS(4974), + [anon_sym_sealed] = ACTIONS(4974), + [anon_sym_annotation] = ACTIONS(4974), + [anon_sym_data] = ACTIONS(4974), + [anon_sym_inner] = ACTIONS(4974), + [anon_sym_value] = ACTIONS(4974), + [anon_sym_override] = ACTIONS(4974), + [anon_sym_lateinit] = ACTIONS(4974), + [anon_sym_public] = ACTIONS(4974), + [anon_sym_private] = ACTIONS(4974), + [anon_sym_internal] = ACTIONS(4974), + [anon_sym_protected] = ACTIONS(4974), + [anon_sym_tailrec] = ACTIONS(4974), + [anon_sym_operator] = ACTIONS(4974), + [anon_sym_infix] = ACTIONS(4974), + [anon_sym_inline] = ACTIONS(4974), + [anon_sym_external] = ACTIONS(4974), + [sym_property_modifier] = ACTIONS(4974), + [anon_sym_abstract] = ACTIONS(4974), + [anon_sym_final] = ACTIONS(4974), + [anon_sym_open] = ACTIONS(4974), + [anon_sym_vararg] = ACTIONS(4974), + [anon_sym_noinline] = ACTIONS(4974), + [anon_sym_crossinline] = ACTIONS(4974), + [anon_sym_expect] = ACTIONS(4974), + [anon_sym_actual] = ACTIONS(4974), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4976), + [sym__automatic_semicolon] = ACTIONS(4976), + [sym_safe_nav] = ACTIONS(4976), [sym_multiline_comment] = ACTIONS(3), }, - [4012] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3961), - [sym__alpha_identifier] = ACTIONS(4740), - [anon_sym_AT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4740), - [anon_sym_fun] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_where] = ACTIONS(4740), - [anon_sym_object] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4740), - [anon_sym_set] = ACTIONS(4740), - [anon_sym_this] = ACTIONS(4740), - [anon_sym_super] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4742), - [sym_label] = ACTIONS(4740), - [anon_sym_in] = ACTIONS(4740), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [anon_sym_QMARK_COLON] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_null] = ACTIONS(4740), - [anon_sym_if] = ACTIONS(4740), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_when] = ACTIONS(4740), - [anon_sym_try] = ACTIONS(4740), - [anon_sym_throw] = ACTIONS(4740), - [anon_sym_return] = ACTIONS(4740), - [anon_sym_continue] = ACTIONS(4740), - [anon_sym_break] = ACTIONS(4740), - [anon_sym_COLON_COLON] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT_EQ] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_BANGin] = ACTIONS(4742), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_BANGis] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4742), - [anon_sym_as_QMARK] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4742), - [anon_sym_BANG] = ACTIONS(4740), - [anon_sym_BANG_BANG] = ACTIONS(4742), - [anon_sym_data] = ACTIONS(4740), - [anon_sym_inner] = ACTIONS(4740), - [anon_sym_value] = ACTIONS(4740), - [anon_sym_expect] = ACTIONS(4740), - [anon_sym_actual] = ACTIONS(4740), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4742), - [anon_sym_continue_AT] = ACTIONS(4742), - [anon_sym_break_AT] = ACTIONS(4742), - [anon_sym_this_AT] = ACTIONS(4742), - [anon_sym_super_AT] = ACTIONS(4742), - [sym_real_literal] = ACTIONS(4742), - [sym_integer_literal] = ACTIONS(4740), - [sym_hex_literal] = ACTIONS(4742), - [sym_bin_literal] = ACTIONS(4742), - [anon_sym_true] = ACTIONS(4740), - [anon_sym_false] = ACTIONS(4740), - [anon_sym_SQUOTE] = ACTIONS(4742), - [sym__backtick_identifier] = ACTIONS(4742), - [sym__automatic_semicolon] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), + [3996] = { + [sym__alpha_identifier] = ACTIONS(4938), + [anon_sym_AT] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4940), + [anon_sym_as] = ACTIONS(4938), + [anon_sym_EQ] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_RBRACE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4938), + [anon_sym_where] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_get] = ACTIONS(4938), + [anon_sym_set] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4938), + [sym_label] = ACTIONS(4940), + [anon_sym_in] = ACTIONS(4938), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_QMARK_COLON] = ACTIONS(4940), + [anon_sym_AMP_AMP] = ACTIONS(4940), + [anon_sym_PIPE_PIPE] = ACTIONS(4940), + [anon_sym_else] = ACTIONS(4938), + [anon_sym_COLON_COLON] = ACTIONS(4940), + [anon_sym_PLUS_EQ] = ACTIONS(4940), + [anon_sym_DASH_EQ] = ACTIONS(4940), + [anon_sym_STAR_EQ] = ACTIONS(4940), + [anon_sym_SLASH_EQ] = ACTIONS(4940), + [anon_sym_PERCENT_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4940), + [anon_sym_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4940), + [anon_sym_GT_EQ] = ACTIONS(4940), + [anon_sym_BANGin] = ACTIONS(4940), + [anon_sym_is] = ACTIONS(4938), + [anon_sym_BANGis] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4938), + [anon_sym_PERCENT] = ACTIONS(4938), + [anon_sym_as_QMARK] = ACTIONS(4940), + [anon_sym_PLUS_PLUS] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4940), + [anon_sym_BANG_BANG] = ACTIONS(4940), + [anon_sym_suspend] = ACTIONS(4938), + [anon_sym_sealed] = ACTIONS(4938), + [anon_sym_annotation] = ACTIONS(4938), + [anon_sym_data] = ACTIONS(4938), + [anon_sym_inner] = ACTIONS(4938), + [anon_sym_value] = ACTIONS(4938), + [anon_sym_override] = ACTIONS(4938), + [anon_sym_lateinit] = ACTIONS(4938), + [anon_sym_public] = ACTIONS(4938), + [anon_sym_private] = ACTIONS(4938), + [anon_sym_internal] = ACTIONS(4938), + [anon_sym_protected] = ACTIONS(4938), + [anon_sym_tailrec] = ACTIONS(4938), + [anon_sym_operator] = ACTIONS(4938), + [anon_sym_infix] = ACTIONS(4938), + [anon_sym_inline] = ACTIONS(4938), + [anon_sym_external] = ACTIONS(4938), + [sym_property_modifier] = ACTIONS(4938), + [anon_sym_abstract] = ACTIONS(4938), + [anon_sym_final] = ACTIONS(4938), + [anon_sym_open] = ACTIONS(4938), + [anon_sym_vararg] = ACTIONS(4938), + [anon_sym_noinline] = ACTIONS(4938), + [anon_sym_crossinline] = ACTIONS(4938), + [anon_sym_expect] = ACTIONS(4938), + [anon_sym_actual] = ACTIONS(4938), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4940), + [sym__automatic_semicolon] = ACTIONS(4940), + [sym_safe_nav] = ACTIONS(4940), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4742), }, - [4013] = { + [3997] = { [sym__alpha_identifier] = ACTIONS(4934), [anon_sym_AT] = ACTIONS(4936), [anon_sym_LBRACK] = ACTIONS(4936), @@ -448400,1696 +444568,3056 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4936), [sym_multiline_comment] = ACTIONS(3), }, - [4014] = { - [sym__alpha_identifier] = ACTIONS(4940), - [anon_sym_AT] = ACTIONS(4942), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_as] = ACTIONS(4940), - [anon_sym_EQ] = ACTIONS(4940), - [anon_sym_LBRACE] = ACTIONS(4942), - [anon_sym_RBRACE] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4942), - [anon_sym_LT] = ACTIONS(4940), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_where] = ACTIONS(4940), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_SEMI] = ACTIONS(4942), - [anon_sym_get] = ACTIONS(4940), - [anon_sym_set] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4940), - [sym_label] = ACTIONS(4942), - [anon_sym_in] = ACTIONS(4940), - [anon_sym_DOT_DOT] = ACTIONS(4942), - [anon_sym_QMARK_COLON] = ACTIONS(4942), - [anon_sym_AMP_AMP] = ACTIONS(4942), - [anon_sym_PIPE_PIPE] = ACTIONS(4942), - [anon_sym_else] = ACTIONS(4940), - [anon_sym_COLON_COLON] = ACTIONS(4942), - [anon_sym_PLUS_EQ] = ACTIONS(4942), - [anon_sym_DASH_EQ] = ACTIONS(4942), - [anon_sym_STAR_EQ] = ACTIONS(4942), - [anon_sym_SLASH_EQ] = ACTIONS(4942), - [anon_sym_PERCENT_EQ] = ACTIONS(4942), - [anon_sym_BANG_EQ] = ACTIONS(4940), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4940), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), - [anon_sym_LT_EQ] = ACTIONS(4942), - [anon_sym_GT_EQ] = ACTIONS(4942), - [anon_sym_BANGin] = ACTIONS(4942), - [anon_sym_is] = ACTIONS(4940), - [anon_sym_BANGis] = ACTIONS(4942), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_as_QMARK] = ACTIONS(4942), - [anon_sym_PLUS_PLUS] = ACTIONS(4942), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_BANG_BANG] = ACTIONS(4942), - [anon_sym_suspend] = ACTIONS(4940), - [anon_sym_sealed] = ACTIONS(4940), - [anon_sym_annotation] = ACTIONS(4940), - [anon_sym_data] = ACTIONS(4940), - [anon_sym_inner] = ACTIONS(4940), - [anon_sym_value] = ACTIONS(4940), - [anon_sym_override] = ACTIONS(4940), - [anon_sym_lateinit] = ACTIONS(4940), - [anon_sym_public] = ACTIONS(4940), - [anon_sym_private] = ACTIONS(4940), - [anon_sym_internal] = ACTIONS(4940), - [anon_sym_protected] = ACTIONS(4940), - [anon_sym_tailrec] = ACTIONS(4940), - [anon_sym_operator] = ACTIONS(4940), - [anon_sym_infix] = ACTIONS(4940), - [anon_sym_inline] = ACTIONS(4940), - [anon_sym_external] = ACTIONS(4940), - [sym_property_modifier] = ACTIONS(4940), - [anon_sym_abstract] = ACTIONS(4940), - [anon_sym_final] = ACTIONS(4940), - [anon_sym_open] = ACTIONS(4940), - [anon_sym_vararg] = ACTIONS(4940), - [anon_sym_noinline] = ACTIONS(4940), - [anon_sym_crossinline] = ACTIONS(4940), - [anon_sym_expect] = ACTIONS(4940), - [anon_sym_actual] = ACTIONS(4940), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4942), - [sym__automatic_semicolon] = ACTIONS(4942), - [sym_safe_nav] = ACTIONS(4942), - [sym_multiline_comment] = ACTIONS(3), - }, - [4015] = { - [sym__alpha_identifier] = ACTIONS(4972), - [anon_sym_AT] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_as] = ACTIONS(4972), - [anon_sym_EQ] = ACTIONS(4972), - [anon_sym_LBRACE] = ACTIONS(4974), - [anon_sym_RBRACE] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4974), - [anon_sym_COMMA] = ACTIONS(4974), - [anon_sym_LT] = ACTIONS(4972), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_where] = ACTIONS(4972), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_SEMI] = ACTIONS(4974), - [anon_sym_get] = ACTIONS(4972), - [anon_sym_set] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4972), - [sym_label] = ACTIONS(4974), - [anon_sym_in] = ACTIONS(4972), - [anon_sym_DOT_DOT] = ACTIONS(4974), - [anon_sym_QMARK_COLON] = ACTIONS(4974), - [anon_sym_AMP_AMP] = ACTIONS(4974), - [anon_sym_PIPE_PIPE] = ACTIONS(4974), - [anon_sym_else] = ACTIONS(4972), - [anon_sym_COLON_COLON] = ACTIONS(4974), - [anon_sym_PLUS_EQ] = ACTIONS(4974), - [anon_sym_DASH_EQ] = ACTIONS(4974), - [anon_sym_STAR_EQ] = ACTIONS(4974), - [anon_sym_SLASH_EQ] = ACTIONS(4974), - [anon_sym_PERCENT_EQ] = ACTIONS(4974), - [anon_sym_BANG_EQ] = ACTIONS(4972), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4972), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4974), - [anon_sym_LT_EQ] = ACTIONS(4974), - [anon_sym_GT_EQ] = ACTIONS(4974), - [anon_sym_BANGin] = ACTIONS(4974), - [anon_sym_is] = ACTIONS(4972), - [anon_sym_BANGis] = ACTIONS(4974), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4972), - [anon_sym_as_QMARK] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_BANG_BANG] = ACTIONS(4974), - [anon_sym_suspend] = ACTIONS(4972), - [anon_sym_sealed] = ACTIONS(4972), - [anon_sym_annotation] = ACTIONS(4972), - [anon_sym_data] = ACTIONS(4972), - [anon_sym_inner] = ACTIONS(4972), - [anon_sym_value] = ACTIONS(4972), - [anon_sym_override] = ACTIONS(4972), - [anon_sym_lateinit] = ACTIONS(4972), - [anon_sym_public] = ACTIONS(4972), - [anon_sym_private] = ACTIONS(4972), - [anon_sym_internal] = ACTIONS(4972), - [anon_sym_protected] = ACTIONS(4972), - [anon_sym_tailrec] = ACTIONS(4972), - [anon_sym_operator] = ACTIONS(4972), - [anon_sym_infix] = ACTIONS(4972), - [anon_sym_inline] = ACTIONS(4972), - [anon_sym_external] = ACTIONS(4972), - [sym_property_modifier] = ACTIONS(4972), - [anon_sym_abstract] = ACTIONS(4972), - [anon_sym_final] = ACTIONS(4972), - [anon_sym_open] = ACTIONS(4972), - [anon_sym_vararg] = ACTIONS(4972), - [anon_sym_noinline] = ACTIONS(4972), - [anon_sym_crossinline] = ACTIONS(4972), - [anon_sym_expect] = ACTIONS(4972), - [anon_sym_actual] = ACTIONS(4972), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4974), - [sym__automatic_semicolon] = ACTIONS(4974), - [sym_safe_nav] = ACTIONS(4974), - [sym_multiline_comment] = ACTIONS(3), + [3998] = { + [sym__alpha_identifier] = ACTIONS(5159), + [anon_sym_AT] = ACTIONS(5161), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym_typealias] = ACTIONS(5159), + [anon_sym_class] = ACTIONS(5159), + [anon_sym_interface] = ACTIONS(5159), + [anon_sym_enum] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5161), + [anon_sym_val] = ACTIONS(5159), + [anon_sym_var] = ACTIONS(5159), + [anon_sym_object] = ACTIONS(5159), + [anon_sym_fun] = ACTIONS(5159), + [anon_sym_get] = ACTIONS(5159), + [anon_sym_set] = ACTIONS(5159), + [anon_sym_this] = ACTIONS(5159), + [anon_sym_super] = ACTIONS(5159), + [anon_sym_STAR] = ACTIONS(5161), + [sym_label] = ACTIONS(5159), + [anon_sym_for] = ACTIONS(5159), + [anon_sym_while] = ACTIONS(5159), + [anon_sym_do] = ACTIONS(5159), + [anon_sym_null] = ACTIONS(5159), + [anon_sym_if] = ACTIONS(5159), + [anon_sym_when] = ACTIONS(5159), + [anon_sym_try] = ACTIONS(5159), + [anon_sym_throw] = ACTIONS(5159), + [anon_sym_return] = ACTIONS(5159), + [anon_sym_continue] = ACTIONS(5159), + [anon_sym_break] = ACTIONS(5159), + [anon_sym_COLON_COLON] = ACTIONS(5161), + [anon_sym_PLUS] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5159), + [anon_sym_PLUS_PLUS] = ACTIONS(5161), + [anon_sym_DASH_DASH] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_suspend] = ACTIONS(5159), + [anon_sym_sealed] = ACTIONS(5159), + [anon_sym_annotation] = ACTIONS(5159), + [anon_sym_data] = ACTIONS(5159), + [anon_sym_inner] = ACTIONS(5159), + [anon_sym_value] = ACTIONS(5159), + [anon_sym_override] = ACTIONS(5159), + [anon_sym_lateinit] = ACTIONS(5159), + [anon_sym_public] = ACTIONS(5159), + [anon_sym_private] = ACTIONS(5159), + [anon_sym_internal] = ACTIONS(5159), + [anon_sym_protected] = ACTIONS(5159), + [anon_sym_tailrec] = ACTIONS(5159), + [anon_sym_operator] = ACTIONS(5159), + [anon_sym_infix] = ACTIONS(5159), + [anon_sym_inline] = ACTIONS(5159), + [anon_sym_external] = ACTIONS(5159), + [sym_property_modifier] = ACTIONS(5159), + [anon_sym_abstract] = ACTIONS(5159), + [anon_sym_final] = ACTIONS(5159), + [anon_sym_open] = ACTIONS(5159), + [anon_sym_vararg] = ACTIONS(5159), + [anon_sym_noinline] = ACTIONS(5159), + [anon_sym_crossinline] = ACTIONS(5159), + [anon_sym_expect] = ACTIONS(5159), + [anon_sym_actual] = ACTIONS(5159), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5161), + [anon_sym_continue_AT] = ACTIONS(5161), + [anon_sym_break_AT] = ACTIONS(5161), + [anon_sym_this_AT] = ACTIONS(5161), + [anon_sym_super_AT] = ACTIONS(5161), + [sym_real_literal] = ACTIONS(5161), + [sym_integer_literal] = ACTIONS(5159), + [sym_hex_literal] = ACTIONS(5161), + [sym_bin_literal] = ACTIONS(5161), + [anon_sym_true] = ACTIONS(5159), + [anon_sym_false] = ACTIONS(5159), + [anon_sym_SQUOTE] = ACTIONS(5161), + [sym__backtick_identifier] = ACTIONS(5161), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5161), }, - [4016] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_GT] = ACTIONS(4381), - [anon_sym_where] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [sym_label] = ACTIONS(4383), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_QMARK_COLON] = ACTIONS(4383), - [anon_sym_AMP_AMP] = ACTIONS(4383), - [anon_sym_PIPE_PIPE] = ACTIONS(4383), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4383), - [anon_sym_DASH_EQ] = ACTIONS(4383), - [anon_sym_STAR_EQ] = ACTIONS(4383), - [anon_sym_SLASH_EQ] = ACTIONS(4383), - [anon_sym_PERCENT_EQ] = ACTIONS(4383), - [anon_sym_BANG_EQ] = ACTIONS(4381), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), - [anon_sym_EQ_EQ] = ACTIONS(4381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), - [anon_sym_LT_EQ] = ACTIONS(4383), - [anon_sym_GT_EQ] = ACTIONS(4383), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_as_QMARK] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG_BANG] = ACTIONS(4383), - [anon_sym_suspend] = ACTIONS(4381), - [anon_sym_sealed] = ACTIONS(4381), - [anon_sym_annotation] = ACTIONS(4381), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_override] = ACTIONS(4381), - [anon_sym_lateinit] = ACTIONS(4381), - [anon_sym_public] = ACTIONS(4381), - [anon_sym_private] = ACTIONS(4381), - [anon_sym_internal] = ACTIONS(4381), - [anon_sym_protected] = ACTIONS(4381), - [anon_sym_tailrec] = ACTIONS(4381), - [anon_sym_operator] = ACTIONS(4381), - [anon_sym_infix] = ACTIONS(4381), - [anon_sym_inline] = ACTIONS(4381), - [anon_sym_external] = ACTIONS(4381), - [sym_property_modifier] = ACTIONS(4381), - [anon_sym_abstract] = ACTIONS(4381), - [anon_sym_final] = ACTIONS(4381), - [anon_sym_open] = ACTIONS(4381), - [anon_sym_vararg] = ACTIONS(4381), - [anon_sym_noinline] = ACTIONS(4381), - [anon_sym_crossinline] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4383), - [sym__automatic_semicolon] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4383), + [3999] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(5844), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, - [4017] = { - [sym__alpha_identifier] = ACTIONS(5004), - [anon_sym_AT] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_as] = ACTIONS(5004), - [anon_sym_EQ] = ACTIONS(5004), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_LT] = ACTIONS(5004), - [anon_sym_GT] = ACTIONS(5004), - [anon_sym_where] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5004), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym_get] = ACTIONS(5004), - [anon_sym_set] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5004), - [sym_label] = ACTIONS(5006), - [anon_sym_in] = ACTIONS(5004), - [anon_sym_DOT_DOT] = ACTIONS(5006), - [anon_sym_QMARK_COLON] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_else] = ACTIONS(5004), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym_PLUS_EQ] = ACTIONS(5006), - [anon_sym_DASH_EQ] = ACTIONS(5006), - [anon_sym_STAR_EQ] = ACTIONS(5006), - [anon_sym_SLASH_EQ] = ACTIONS(5006), - [anon_sym_PERCENT_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5004), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5006), - [anon_sym_EQ_EQ] = ACTIONS(5004), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5006), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_BANGin] = ACTIONS(5006), - [anon_sym_is] = ACTIONS(5004), - [anon_sym_BANGis] = ACTIONS(5006), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_SLASH] = ACTIONS(5004), - [anon_sym_PERCENT] = ACTIONS(5004), - [anon_sym_as_QMARK] = ACTIONS(5006), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_BANG_BANG] = ACTIONS(5006), - [anon_sym_suspend] = ACTIONS(5004), - [anon_sym_sealed] = ACTIONS(5004), - [anon_sym_annotation] = ACTIONS(5004), - [anon_sym_data] = ACTIONS(5004), - [anon_sym_inner] = ACTIONS(5004), - [anon_sym_value] = ACTIONS(5004), - [anon_sym_override] = ACTIONS(5004), - [anon_sym_lateinit] = ACTIONS(5004), - [anon_sym_public] = ACTIONS(5004), - [anon_sym_private] = ACTIONS(5004), - [anon_sym_internal] = ACTIONS(5004), - [anon_sym_protected] = ACTIONS(5004), - [anon_sym_tailrec] = ACTIONS(5004), - [anon_sym_operator] = ACTIONS(5004), - [anon_sym_infix] = ACTIONS(5004), - [anon_sym_inline] = ACTIONS(5004), - [anon_sym_external] = ACTIONS(5004), - [sym_property_modifier] = ACTIONS(5004), - [anon_sym_abstract] = ACTIONS(5004), - [anon_sym_final] = ACTIONS(5004), - [anon_sym_open] = ACTIONS(5004), - [anon_sym_vararg] = ACTIONS(5004), - [anon_sym_noinline] = ACTIONS(5004), - [anon_sym_crossinline] = ACTIONS(5004), - [anon_sym_expect] = ACTIONS(5004), - [anon_sym_actual] = ACTIONS(5004), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5006), - [sym__automatic_semicolon] = ACTIONS(5006), - [sym_safe_nav] = ACTIONS(5006), + [4000] = { + [sym__alpha_identifier] = ACTIONS(4786), + [anon_sym_AT] = ACTIONS(4788), + [anon_sym_LBRACK] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4786), + [anon_sym_EQ] = ACTIONS(4786), + [anon_sym_LBRACE] = ACTIONS(4788), + [anon_sym_RBRACE] = ACTIONS(4788), + [anon_sym_LPAREN] = ACTIONS(4788), + [anon_sym_COMMA] = ACTIONS(4788), + [anon_sym_LT] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4786), + [anon_sym_where] = ACTIONS(4786), + [anon_sym_DOT] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4788), + [anon_sym_get] = ACTIONS(4786), + [anon_sym_set] = ACTIONS(4786), + [anon_sym_STAR] = ACTIONS(4786), + [sym_label] = ACTIONS(4788), + [anon_sym_in] = ACTIONS(4786), + [anon_sym_DOT_DOT] = ACTIONS(4788), + [anon_sym_QMARK_COLON] = ACTIONS(4788), + [anon_sym_AMP_AMP] = ACTIONS(4788), + [anon_sym_PIPE_PIPE] = ACTIONS(4788), + [anon_sym_else] = ACTIONS(4786), + [anon_sym_COLON_COLON] = ACTIONS(4788), + [anon_sym_PLUS_EQ] = ACTIONS(4788), + [anon_sym_DASH_EQ] = ACTIONS(4788), + [anon_sym_STAR_EQ] = ACTIONS(4788), + [anon_sym_SLASH_EQ] = ACTIONS(4788), + [anon_sym_PERCENT_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ] = ACTIONS(4786), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4788), + [anon_sym_LT_EQ] = ACTIONS(4788), + [anon_sym_GT_EQ] = ACTIONS(4788), + [anon_sym_BANGin] = ACTIONS(4788), + [anon_sym_is] = ACTIONS(4786), + [anon_sym_BANGis] = ACTIONS(4788), + [anon_sym_PLUS] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4786), + [anon_sym_SLASH] = ACTIONS(4786), + [anon_sym_PERCENT] = ACTIONS(4786), + [anon_sym_as_QMARK] = ACTIONS(4788), + [anon_sym_PLUS_PLUS] = ACTIONS(4788), + [anon_sym_DASH_DASH] = ACTIONS(4788), + [anon_sym_BANG_BANG] = ACTIONS(4788), + [anon_sym_suspend] = ACTIONS(4786), + [anon_sym_sealed] = ACTIONS(4786), + [anon_sym_annotation] = ACTIONS(4786), + [anon_sym_data] = ACTIONS(4786), + [anon_sym_inner] = ACTIONS(4786), + [anon_sym_value] = ACTIONS(4786), + [anon_sym_override] = ACTIONS(4786), + [anon_sym_lateinit] = ACTIONS(4786), + [anon_sym_public] = ACTIONS(4786), + [anon_sym_private] = ACTIONS(4786), + [anon_sym_internal] = ACTIONS(4786), + [anon_sym_protected] = ACTIONS(4786), + [anon_sym_tailrec] = ACTIONS(4786), + [anon_sym_operator] = ACTIONS(4786), + [anon_sym_infix] = ACTIONS(4786), + [anon_sym_inline] = ACTIONS(4786), + [anon_sym_external] = ACTIONS(4786), + [sym_property_modifier] = ACTIONS(4786), + [anon_sym_abstract] = ACTIONS(4786), + [anon_sym_final] = ACTIONS(4786), + [anon_sym_open] = ACTIONS(4786), + [anon_sym_vararg] = ACTIONS(4786), + [anon_sym_noinline] = ACTIONS(4786), + [anon_sym_crossinline] = ACTIONS(4786), + [anon_sym_expect] = ACTIONS(4786), + [anon_sym_actual] = ACTIONS(4786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4788), + [sym__automatic_semicolon] = ACTIONS(4788), + [sym_safe_nav] = ACTIONS(4788), [sym_multiline_comment] = ACTIONS(3), }, - [4018] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), + [4001] = { + [sym__alpha_identifier] = ACTIONS(5209), + [anon_sym_AT] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5209), + [anon_sym_EQ] = ACTIONS(5209), + [anon_sym_LBRACE] = ACTIONS(5211), + [anon_sym_RBRACE] = ACTIONS(5211), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_where] = ACTIONS(5209), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_SEMI] = ACTIONS(5211), + [anon_sym_get] = ACTIONS(5209), + [anon_sym_set] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5209), + [sym_label] = ACTIONS(5211), + [anon_sym_in] = ACTIONS(5209), + [anon_sym_DOT_DOT] = ACTIONS(5211), + [anon_sym_QMARK_COLON] = ACTIONS(5211), + [anon_sym_AMP_AMP] = ACTIONS(5211), + [anon_sym_PIPE_PIPE] = ACTIONS(5211), + [anon_sym_else] = ACTIONS(5209), + [anon_sym_COLON_COLON] = ACTIONS(5211), + [anon_sym_PLUS_EQ] = ACTIONS(5211), + [anon_sym_DASH_EQ] = ACTIONS(5211), + [anon_sym_STAR_EQ] = ACTIONS(5211), + [anon_sym_SLASH_EQ] = ACTIONS(5211), + [anon_sym_PERCENT_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ] = ACTIONS(5209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5211), + [anon_sym_EQ_EQ] = ACTIONS(5209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5211), + [anon_sym_LT_EQ] = ACTIONS(5211), + [anon_sym_GT_EQ] = ACTIONS(5211), + [anon_sym_BANGin] = ACTIONS(5211), + [anon_sym_is] = ACTIONS(5209), + [anon_sym_BANGis] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_PERCENT] = ACTIONS(5209), + [anon_sym_as_QMARK] = ACTIONS(5211), + [anon_sym_PLUS_PLUS] = ACTIONS(5211), + [anon_sym_DASH_DASH] = ACTIONS(5211), + [anon_sym_BANG_BANG] = ACTIONS(5211), + [anon_sym_suspend] = ACTIONS(5209), + [anon_sym_sealed] = ACTIONS(5209), + [anon_sym_annotation] = ACTIONS(5209), + [anon_sym_data] = ACTIONS(5209), + [anon_sym_inner] = ACTIONS(5209), + [anon_sym_value] = ACTIONS(5209), + [anon_sym_override] = ACTIONS(5209), + [anon_sym_lateinit] = ACTIONS(5209), + [anon_sym_public] = ACTIONS(5209), + [anon_sym_private] = ACTIONS(5209), + [anon_sym_internal] = ACTIONS(5209), + [anon_sym_protected] = ACTIONS(5209), + [anon_sym_tailrec] = ACTIONS(5209), + [anon_sym_operator] = ACTIONS(5209), + [anon_sym_infix] = ACTIONS(5209), + [anon_sym_inline] = ACTIONS(5209), + [anon_sym_external] = ACTIONS(5209), + [sym_property_modifier] = ACTIONS(5209), + [anon_sym_abstract] = ACTIONS(5209), + [anon_sym_final] = ACTIONS(5209), + [anon_sym_open] = ACTIONS(5209), + [anon_sym_vararg] = ACTIONS(5209), + [anon_sym_noinline] = ACTIONS(5209), + [anon_sym_crossinline] = ACTIONS(5209), + [anon_sym_expect] = ACTIONS(5209), + [anon_sym_actual] = ACTIONS(5209), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5211), + [sym__automatic_semicolon] = ACTIONS(5211), + [sym_safe_nav] = ACTIONS(5211), [sym_multiline_comment] = ACTIONS(3), }, - [4019] = { - [sym_function_body] = STATE(3280), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4453), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_object] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_this] = ACTIONS(4453), - [anon_sym_super] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4455), - [sym_label] = ACTIONS(4453), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_null] = ACTIONS(4453), - [anon_sym_if] = ACTIONS(4453), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_when] = ACTIONS(4453), - [anon_sym_try] = ACTIONS(4453), - [anon_sym_throw] = ACTIONS(4453), - [anon_sym_return] = ACTIONS(4453), - [anon_sym_continue] = ACTIONS(4453), - [anon_sym_break] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4455), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4453), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4455), - [anon_sym_continue_AT] = ACTIONS(4455), - [anon_sym_break_AT] = ACTIONS(4455), - [anon_sym_this_AT] = ACTIONS(4455), - [anon_sym_super_AT] = ACTIONS(4455), - [sym_real_literal] = ACTIONS(4455), - [sym_integer_literal] = ACTIONS(4453), - [sym_hex_literal] = ACTIONS(4455), - [sym_bin_literal] = ACTIONS(4455), - [anon_sym_true] = ACTIONS(4453), - [anon_sym_false] = ACTIONS(4453), - [anon_sym_SQUOTE] = ACTIONS(4455), - [sym__backtick_identifier] = ACTIONS(4455), - [sym__automatic_semicolon] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4455), - }, - [4020] = { - [sym__alpha_identifier] = ACTIONS(5223), - [anon_sym_AT] = ACTIONS(5225), - [anon_sym_LBRACK] = ACTIONS(5225), - [anon_sym_as] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5225), - [anon_sym_RBRACE] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5225), - [anon_sym_COMMA] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5223), - [anon_sym_GT] = ACTIONS(5223), - [anon_sym_where] = ACTIONS(5223), - [anon_sym_DOT] = ACTIONS(5223), - [anon_sym_SEMI] = ACTIONS(5225), - [anon_sym_get] = ACTIONS(5223), - [anon_sym_set] = ACTIONS(5223), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(5225), - [anon_sym_in] = ACTIONS(5223), - [anon_sym_DOT_DOT] = ACTIONS(5225), - [anon_sym_QMARK_COLON] = ACTIONS(5225), - [anon_sym_AMP_AMP] = ACTIONS(5225), - [anon_sym_PIPE_PIPE] = ACTIONS(5225), - [anon_sym_else] = ACTIONS(5223), - [anon_sym_COLON_COLON] = ACTIONS(5225), - [anon_sym_PLUS_EQ] = ACTIONS(5225), - [anon_sym_DASH_EQ] = ACTIONS(5225), - [anon_sym_STAR_EQ] = ACTIONS(5225), - [anon_sym_SLASH_EQ] = ACTIONS(5225), - [anon_sym_PERCENT_EQ] = ACTIONS(5225), - [anon_sym_BANG_EQ] = ACTIONS(5223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5225), - [anon_sym_EQ_EQ] = ACTIONS(5223), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5225), - [anon_sym_LT_EQ] = ACTIONS(5225), - [anon_sym_GT_EQ] = ACTIONS(5225), - [anon_sym_BANGin] = ACTIONS(5225), - [anon_sym_is] = ACTIONS(5223), - [anon_sym_BANGis] = ACTIONS(5225), - [anon_sym_PLUS] = ACTIONS(5223), - [anon_sym_DASH] = ACTIONS(5223), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(5225), - [anon_sym_PLUS_PLUS] = ACTIONS(5225), - [anon_sym_DASH_DASH] = ACTIONS(5225), - [anon_sym_BANG_BANG] = ACTIONS(5225), - [anon_sym_suspend] = ACTIONS(5223), - [anon_sym_sealed] = ACTIONS(5223), - [anon_sym_annotation] = ACTIONS(5223), - [anon_sym_data] = ACTIONS(5223), - [anon_sym_inner] = ACTIONS(5223), - [anon_sym_value] = ACTIONS(5223), - [anon_sym_override] = ACTIONS(5223), - [anon_sym_lateinit] = ACTIONS(5223), - [anon_sym_public] = ACTIONS(5223), - [anon_sym_private] = ACTIONS(5223), - [anon_sym_internal] = ACTIONS(5223), - [anon_sym_protected] = ACTIONS(5223), - [anon_sym_tailrec] = ACTIONS(5223), - [anon_sym_operator] = ACTIONS(5223), - [anon_sym_infix] = ACTIONS(5223), - [anon_sym_inline] = ACTIONS(5223), - [anon_sym_external] = ACTIONS(5223), - [sym_property_modifier] = ACTIONS(5223), - [anon_sym_abstract] = ACTIONS(5223), - [anon_sym_final] = ACTIONS(5223), - [anon_sym_open] = ACTIONS(5223), - [anon_sym_vararg] = ACTIONS(5223), - [anon_sym_noinline] = ACTIONS(5223), - [anon_sym_crossinline] = ACTIONS(5223), - [anon_sym_expect] = ACTIONS(5223), - [anon_sym_actual] = ACTIONS(5223), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5225), - [sym__automatic_semicolon] = ACTIONS(5225), - [sym_safe_nav] = ACTIONS(5225), + [4002] = { + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4483), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4483), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), [sym_multiline_comment] = ACTIONS(3), }, - [4021] = { - [sym__alpha_identifier] = ACTIONS(4934), - [anon_sym_AT] = ACTIONS(4936), - [anon_sym_LBRACK] = ACTIONS(4936), - [anon_sym_typealias] = ACTIONS(4934), - [anon_sym_class] = ACTIONS(4934), - [anon_sym_fun] = ACTIONS(4934), - [anon_sym_interface] = ACTIONS(4934), - [anon_sym_enum] = ACTIONS(4934), - [anon_sym_LBRACE] = ACTIONS(4936), - [anon_sym_LPAREN] = ACTIONS(4936), - [anon_sym_val] = ACTIONS(4934), - [anon_sym_var] = ACTIONS(4934), - [anon_sym_object] = ACTIONS(4934), - [anon_sym_get] = ACTIONS(4934), - [anon_sym_set] = ACTIONS(4934), - [anon_sym_this] = ACTIONS(4934), - [anon_sym_super] = ACTIONS(4934), - [anon_sym_STAR] = ACTIONS(4936), - [sym_label] = ACTIONS(4934), - [anon_sym_for] = ACTIONS(4934), - [anon_sym_while] = ACTIONS(4934), - [anon_sym_do] = ACTIONS(4934), - [anon_sym_null] = ACTIONS(4934), - [anon_sym_if] = ACTIONS(4934), - [anon_sym_when] = ACTIONS(4934), - [anon_sym_try] = ACTIONS(4934), - [anon_sym_throw] = ACTIONS(4934), - [anon_sym_return] = ACTIONS(4934), - [anon_sym_continue] = ACTIONS(4934), - [anon_sym_break] = ACTIONS(4934), - [anon_sym_COLON_COLON] = ACTIONS(4936), - [anon_sym_PLUS] = ACTIONS(4934), - [anon_sym_DASH] = ACTIONS(4934), - [anon_sym_PLUS_PLUS] = ACTIONS(4936), - [anon_sym_DASH_DASH] = ACTIONS(4936), - [anon_sym_BANG] = ACTIONS(4936), - [anon_sym_suspend] = ACTIONS(4934), - [anon_sym_sealed] = ACTIONS(4934), - [anon_sym_annotation] = ACTIONS(4934), - [anon_sym_data] = ACTIONS(4934), - [anon_sym_inner] = ACTIONS(4934), - [anon_sym_value] = ACTIONS(4934), - [anon_sym_override] = ACTIONS(4934), - [anon_sym_lateinit] = ACTIONS(4934), - [anon_sym_public] = ACTIONS(4934), - [anon_sym_private] = ACTIONS(4934), - [anon_sym_internal] = ACTIONS(4934), - [anon_sym_protected] = ACTIONS(4934), - [anon_sym_tailrec] = ACTIONS(4934), - [anon_sym_operator] = ACTIONS(4934), - [anon_sym_infix] = ACTIONS(4934), - [anon_sym_inline] = ACTIONS(4934), - [anon_sym_external] = ACTIONS(4934), - [sym_property_modifier] = ACTIONS(4934), - [anon_sym_abstract] = ACTIONS(4934), - [anon_sym_final] = ACTIONS(4934), - [anon_sym_open] = ACTIONS(4934), - [anon_sym_vararg] = ACTIONS(4934), - [anon_sym_noinline] = ACTIONS(4934), - [anon_sym_crossinline] = ACTIONS(4934), - [anon_sym_expect] = ACTIONS(4934), - [anon_sym_actual] = ACTIONS(4934), + [4003] = { + [sym__alpha_identifier] = ACTIONS(5024), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_get] = ACTIONS(5024), + [anon_sym_set] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [sym_label] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_QMARK_COLON] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(7138), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_PERCENT_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_BANGin] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_BANGis] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_as_QMARK] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_BANG_BANG] = ACTIONS(5026), + [anon_sym_suspend] = ACTIONS(5024), + [anon_sym_sealed] = ACTIONS(5024), + [anon_sym_annotation] = ACTIONS(5024), + [anon_sym_data] = ACTIONS(5024), + [anon_sym_inner] = ACTIONS(5024), + [anon_sym_value] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_lateinit] = ACTIONS(5024), + [anon_sym_public] = ACTIONS(5024), + [anon_sym_private] = ACTIONS(5024), + [anon_sym_internal] = ACTIONS(5024), + [anon_sym_protected] = ACTIONS(5024), + [anon_sym_tailrec] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5024), + [anon_sym_infix] = ACTIONS(5024), + [anon_sym_inline] = ACTIONS(5024), + [anon_sym_external] = ACTIONS(5024), + [sym_property_modifier] = ACTIONS(5024), + [anon_sym_abstract] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_open] = ACTIONS(5024), + [anon_sym_vararg] = ACTIONS(5024), + [anon_sym_noinline] = ACTIONS(5024), + [anon_sym_crossinline] = ACTIONS(5024), + [anon_sym_expect] = ACTIONS(5024), + [anon_sym_actual] = ACTIONS(5024), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4936), - [anon_sym_continue_AT] = ACTIONS(4936), - [anon_sym_break_AT] = ACTIONS(4936), - [anon_sym_this_AT] = ACTIONS(4936), - [anon_sym_super_AT] = ACTIONS(4936), - [sym_real_literal] = ACTIONS(4936), - [sym_integer_literal] = ACTIONS(4934), - [sym_hex_literal] = ACTIONS(4936), - [sym_bin_literal] = ACTIONS(4936), - [anon_sym_true] = ACTIONS(4934), - [anon_sym_false] = ACTIONS(4934), - [anon_sym_SQUOTE] = ACTIONS(4936), - [sym__backtick_identifier] = ACTIONS(4936), + [sym__backtick_identifier] = ACTIONS(5026), + [sym__automatic_semicolon] = ACTIONS(5026), + [sym_safe_nav] = ACTIONS(5026), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4936), }, - [4022] = { - [sym__alpha_identifier] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3438), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(3436), - [anon_sym_set] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3436), - [sym_label] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_QMARK_COLON] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_PLUS_EQ] = ACTIONS(3438), - [anon_sym_DASH_EQ] = ACTIONS(3438), - [anon_sym_STAR_EQ] = ACTIONS(3438), - [anon_sym_SLASH_EQ] = ACTIONS(3438), - [anon_sym_PERCENT_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3436), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_as_QMARK] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3436), - [anon_sym_sealed] = ACTIONS(3436), - [anon_sym_annotation] = ACTIONS(3436), - [anon_sym_data] = ACTIONS(3436), - [anon_sym_inner] = ACTIONS(3436), - [anon_sym_value] = ACTIONS(3436), - [anon_sym_override] = ACTIONS(3436), - [anon_sym_lateinit] = ACTIONS(3436), - [anon_sym_public] = ACTIONS(3436), - [anon_sym_private] = ACTIONS(3436), - [anon_sym_internal] = ACTIONS(3436), - [anon_sym_protected] = ACTIONS(3436), - [anon_sym_tailrec] = ACTIONS(3436), - [anon_sym_operator] = ACTIONS(3436), - [anon_sym_infix] = ACTIONS(3436), - [anon_sym_inline] = ACTIONS(3436), - [anon_sym_external] = ACTIONS(3436), - [sym_property_modifier] = ACTIONS(3436), - [anon_sym_abstract] = ACTIONS(3436), - [anon_sym_final] = ACTIONS(3436), - [anon_sym_open] = ACTIONS(3436), - [anon_sym_vararg] = ACTIONS(3436), - [anon_sym_noinline] = ACTIONS(3436), - [anon_sym_crossinline] = ACTIONS(3436), - [anon_sym_expect] = ACTIONS(3436), - [anon_sym_actual] = ACTIONS(3436), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3438), - [sym__automatic_semicolon] = ACTIONS(3438), - [sym_safe_nav] = ACTIONS(3438), + [4004] = { + [sym_class_body] = STATE(3565), + [sym_type_constraints] = STATE(3329), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(6140), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [4023] = { - [sym_function_body] = STATE(3262), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_object] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_this] = ACTIONS(4287), - [anon_sym_super] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4287), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_try] = ACTIONS(4287), - [anon_sym_throw] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [anon_sym_this_AT] = ACTIONS(4289), - [anon_sym_super_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4287), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), - }, - [4024] = { - [sym_function_body] = STATE(3221), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4293), - [anon_sym_continue_AT] = ACTIONS(4293), - [anon_sym_break_AT] = ACTIONS(4293), - [anon_sym_this_AT] = ACTIONS(4293), - [anon_sym_super_AT] = ACTIONS(4293), - [sym_real_literal] = ACTIONS(4293), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4293), - [sym_bin_literal] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4293), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4293), - }, - [4025] = { - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_object] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_this] = ACTIONS(4183), - [anon_sym_super] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_when] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_throw] = ACTIONS(4183), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_continue] = ACTIONS(4183), - [anon_sym_break] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4185), - [anon_sym_continue_AT] = ACTIONS(4185), - [anon_sym_break_AT] = ACTIONS(4185), - [anon_sym_this_AT] = ACTIONS(4185), - [anon_sym_super_AT] = ACTIONS(4185), - [sym_real_literal] = ACTIONS(4185), - [sym_integer_literal] = ACTIONS(4183), - [sym_hex_literal] = ACTIONS(4185), - [sym_bin_literal] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4185), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [4005] = { + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4096), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_suspend] = ACTIONS(4094), + [anon_sym_sealed] = ACTIONS(4094), + [anon_sym_annotation] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_override] = ACTIONS(4094), + [anon_sym_lateinit] = ACTIONS(4094), + [anon_sym_public] = ACTIONS(4094), + [anon_sym_private] = ACTIONS(4094), + [anon_sym_internal] = ACTIONS(4094), + [anon_sym_protected] = ACTIONS(4094), + [anon_sym_tailrec] = ACTIONS(4094), + [anon_sym_operator] = ACTIONS(4094), + [anon_sym_infix] = ACTIONS(4094), + [anon_sym_inline] = ACTIONS(4094), + [anon_sym_external] = ACTIONS(4094), + [sym_property_modifier] = ACTIONS(4094), + [anon_sym_abstract] = ACTIONS(4094), + [anon_sym_final] = ACTIONS(4094), + [anon_sym_open] = ACTIONS(4094), + [anon_sym_vararg] = ACTIONS(4094), + [anon_sym_noinline] = ACTIONS(4094), + [anon_sym_crossinline] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4096), + [sym__automatic_semicolon] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4185), - }, - [4026] = { - [sym_function_body] = STATE(3192), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_object] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_this] = ACTIONS(4164), - [anon_sym_super] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_when] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4166), - [anon_sym_continue_AT] = ACTIONS(4166), - [anon_sym_break_AT] = ACTIONS(4166), - [anon_sym_this_AT] = ACTIONS(4166), - [anon_sym_super_AT] = ACTIONS(4166), - [sym_real_literal] = ACTIONS(4166), - [sym_integer_literal] = ACTIONS(4164), - [sym_hex_literal] = ACTIONS(4166), - [sym_bin_literal] = ACTIONS(4166), - [anon_sym_true] = ACTIONS(4164), - [anon_sym_false] = ACTIONS(4164), - [anon_sym_SQUOTE] = ACTIONS(4166), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4166), }, - [4027] = { - [sym_function_body] = STATE(3354), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_object] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_this] = ACTIONS(4154), - [anon_sym_super] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4154), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_null] = ACTIONS(4154), - [anon_sym_if] = ACTIONS(4154), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_when] = ACTIONS(4154), - [anon_sym_try] = ACTIONS(4154), - [anon_sym_throw] = ACTIONS(4154), - [anon_sym_return] = ACTIONS(4154), - [anon_sym_continue] = ACTIONS(4154), - [anon_sym_break] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4156), - [anon_sym_continue_AT] = ACTIONS(4156), - [anon_sym_break_AT] = ACTIONS(4156), - [anon_sym_this_AT] = ACTIONS(4156), - [anon_sym_super_AT] = ACTIONS(4156), - [sym_real_literal] = ACTIONS(4156), - [sym_integer_literal] = ACTIONS(4154), - [sym_hex_literal] = ACTIONS(4156), - [sym_bin_literal] = ACTIONS(4156), - [anon_sym_true] = ACTIONS(4154), - [anon_sym_false] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4156), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4156), + [4006] = { + [sym__alpha_identifier] = ACTIONS(3113), + [anon_sym_AT] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3113), + [anon_sym_GT] = ACTIONS(3113), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3113), + [anon_sym_set] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [sym_label] = ACTIONS(3115), + [anon_sym_in] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_QMARK_COLON] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3115), + [anon_sym_LT_EQ] = ACTIONS(3115), + [anon_sym_GT_EQ] = ACTIONS(3115), + [anon_sym_BANGin] = ACTIONS(3115), + [anon_sym_is] = ACTIONS(3113), + [anon_sym_BANGis] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_SLASH] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_as_QMARK] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_BANG_BANG] = ACTIONS(3115), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3113), + [anon_sym_inner] = ACTIONS(3113), + [anon_sym_value] = ACTIONS(3113), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3113), + [anon_sym_actual] = ACTIONS(3113), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3115), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3115), + [sym_multiline_comment] = ACTIONS(3), }, - [4028] = { - [sym__alpha_identifier] = ACTIONS(4940), - [anon_sym_AT] = ACTIONS(4942), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_typealias] = ACTIONS(4940), - [anon_sym_class] = ACTIONS(4940), - [anon_sym_fun] = ACTIONS(4940), - [anon_sym_interface] = ACTIONS(4940), - [anon_sym_enum] = ACTIONS(4940), - [anon_sym_LBRACE] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4942), - [anon_sym_val] = ACTIONS(4940), - [anon_sym_var] = ACTIONS(4940), - [anon_sym_object] = ACTIONS(4940), - [anon_sym_get] = ACTIONS(4940), - [anon_sym_set] = ACTIONS(4940), - [anon_sym_this] = ACTIONS(4940), - [anon_sym_super] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4942), - [sym_label] = ACTIONS(4940), - [anon_sym_for] = ACTIONS(4940), - [anon_sym_while] = ACTIONS(4940), - [anon_sym_do] = ACTIONS(4940), - [anon_sym_null] = ACTIONS(4940), - [anon_sym_if] = ACTIONS(4940), - [anon_sym_when] = ACTIONS(4940), - [anon_sym_try] = ACTIONS(4940), - [anon_sym_throw] = ACTIONS(4940), - [anon_sym_return] = ACTIONS(4940), - [anon_sym_continue] = ACTIONS(4940), - [anon_sym_break] = ACTIONS(4940), - [anon_sym_COLON_COLON] = ACTIONS(4942), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_PLUS_PLUS] = ACTIONS(4942), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_BANG] = ACTIONS(4942), - [anon_sym_suspend] = ACTIONS(4940), - [anon_sym_sealed] = ACTIONS(4940), - [anon_sym_annotation] = ACTIONS(4940), - [anon_sym_data] = ACTIONS(4940), - [anon_sym_inner] = ACTIONS(4940), - [anon_sym_value] = ACTIONS(4940), - [anon_sym_override] = ACTIONS(4940), - [anon_sym_lateinit] = ACTIONS(4940), - [anon_sym_public] = ACTIONS(4940), - [anon_sym_private] = ACTIONS(4940), - [anon_sym_internal] = ACTIONS(4940), - [anon_sym_protected] = ACTIONS(4940), - [anon_sym_tailrec] = ACTIONS(4940), - [anon_sym_operator] = ACTIONS(4940), - [anon_sym_infix] = ACTIONS(4940), - [anon_sym_inline] = ACTIONS(4940), - [anon_sym_external] = ACTIONS(4940), - [sym_property_modifier] = ACTIONS(4940), - [anon_sym_abstract] = ACTIONS(4940), - [anon_sym_final] = ACTIONS(4940), - [anon_sym_open] = ACTIONS(4940), - [anon_sym_vararg] = ACTIONS(4940), - [anon_sym_noinline] = ACTIONS(4940), - [anon_sym_crossinline] = ACTIONS(4940), - [anon_sym_expect] = ACTIONS(4940), - [anon_sym_actual] = ACTIONS(4940), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4942), - [anon_sym_continue_AT] = ACTIONS(4942), - [anon_sym_break_AT] = ACTIONS(4942), - [anon_sym_this_AT] = ACTIONS(4942), - [anon_sym_super_AT] = ACTIONS(4942), - [sym_real_literal] = ACTIONS(4942), - [sym_integer_literal] = ACTIONS(4940), - [sym_hex_literal] = ACTIONS(4942), - [sym_bin_literal] = ACTIONS(4942), - [anon_sym_true] = ACTIONS(4940), - [anon_sym_false] = ACTIONS(4940), - [anon_sym_SQUOTE] = ACTIONS(4942), - [sym__backtick_identifier] = ACTIONS(4942), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4942), + [4007] = { + [sym__alpha_identifier] = ACTIONS(4790), + [anon_sym_AT] = ACTIONS(4792), + [anon_sym_LBRACK] = ACTIONS(4792), + [anon_sym_as] = ACTIONS(4790), + [anon_sym_EQ] = ACTIONS(4790), + [anon_sym_LBRACE] = ACTIONS(4792), + [anon_sym_RBRACE] = ACTIONS(4792), + [anon_sym_LPAREN] = ACTIONS(4792), + [anon_sym_COMMA] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4790), + [anon_sym_GT] = ACTIONS(4790), + [anon_sym_where] = ACTIONS(4790), + [anon_sym_DOT] = ACTIONS(4790), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_get] = ACTIONS(4790), + [anon_sym_set] = ACTIONS(4790), + [anon_sym_STAR] = ACTIONS(4790), + [sym_label] = ACTIONS(4792), + [anon_sym_in] = ACTIONS(4790), + [anon_sym_DOT_DOT] = ACTIONS(4792), + [anon_sym_QMARK_COLON] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_else] = ACTIONS(4790), + [anon_sym_COLON_COLON] = ACTIONS(4792), + [anon_sym_PLUS_EQ] = ACTIONS(4792), + [anon_sym_DASH_EQ] = ACTIONS(4792), + [anon_sym_STAR_EQ] = ACTIONS(4792), + [anon_sym_SLASH_EQ] = ACTIONS(4792), + [anon_sym_PERCENT_EQ] = ACTIONS(4792), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4792), + [anon_sym_LT_EQ] = ACTIONS(4792), + [anon_sym_GT_EQ] = ACTIONS(4792), + [anon_sym_BANGin] = ACTIONS(4792), + [anon_sym_is] = ACTIONS(4790), + [anon_sym_BANGis] = ACTIONS(4792), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4790), + [anon_sym_SLASH] = ACTIONS(4790), + [anon_sym_PERCENT] = ACTIONS(4790), + [anon_sym_as_QMARK] = ACTIONS(4792), + [anon_sym_PLUS_PLUS] = ACTIONS(4792), + [anon_sym_DASH_DASH] = ACTIONS(4792), + [anon_sym_BANG_BANG] = ACTIONS(4792), + [anon_sym_suspend] = ACTIONS(4790), + [anon_sym_sealed] = ACTIONS(4790), + [anon_sym_annotation] = ACTIONS(4790), + [anon_sym_data] = ACTIONS(4790), + [anon_sym_inner] = ACTIONS(4790), + [anon_sym_value] = ACTIONS(4790), + [anon_sym_override] = ACTIONS(4790), + [anon_sym_lateinit] = ACTIONS(4790), + [anon_sym_public] = ACTIONS(4790), + [anon_sym_private] = ACTIONS(4790), + [anon_sym_internal] = ACTIONS(4790), + [anon_sym_protected] = ACTIONS(4790), + [anon_sym_tailrec] = ACTIONS(4790), + [anon_sym_operator] = ACTIONS(4790), + [anon_sym_infix] = ACTIONS(4790), + [anon_sym_inline] = ACTIONS(4790), + [anon_sym_external] = ACTIONS(4790), + [sym_property_modifier] = ACTIONS(4790), + [anon_sym_abstract] = ACTIONS(4790), + [anon_sym_final] = ACTIONS(4790), + [anon_sym_open] = ACTIONS(4790), + [anon_sym_vararg] = ACTIONS(4790), + [anon_sym_noinline] = ACTIONS(4790), + [anon_sym_crossinline] = ACTIONS(4790), + [anon_sym_expect] = ACTIONS(4790), + [anon_sym_actual] = ACTIONS(4790), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4792), + [sym__automatic_semicolon] = ACTIONS(4792), + [sym_safe_nav] = ACTIONS(4792), + [sym_multiline_comment] = ACTIONS(3), + }, + [4008] = { + [sym_class_body] = STATE(3543), + [sym_type_constraints] = STATE(3346), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(7203), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_RBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + }, + [4009] = { + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6138), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [4010] = { + [sym__alpha_identifier] = ACTIONS(4794), + [anon_sym_AT] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_RBRACE] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4796), + [anon_sym_COMMA] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4794), + [anon_sym_where] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_get] = ACTIONS(4794), + [anon_sym_set] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4794), + [sym_label] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4794), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_QMARK_COLON] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(4794), + [anon_sym_COLON_COLON] = ACTIONS(4796), + [anon_sym_PLUS_EQ] = ACTIONS(4796), + [anon_sym_DASH_EQ] = ACTIONS(4796), + [anon_sym_STAR_EQ] = ACTIONS(4796), + [anon_sym_SLASH_EQ] = ACTIONS(4796), + [anon_sym_PERCENT_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4796), + [anon_sym_BANGin] = ACTIONS(4796), + [anon_sym_is] = ACTIONS(4794), + [anon_sym_BANGis] = ACTIONS(4796), + [anon_sym_PLUS] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_SLASH] = ACTIONS(4794), + [anon_sym_PERCENT] = ACTIONS(4794), + [anon_sym_as_QMARK] = ACTIONS(4796), + [anon_sym_PLUS_PLUS] = ACTIONS(4796), + [anon_sym_DASH_DASH] = ACTIONS(4796), + [anon_sym_BANG_BANG] = ACTIONS(4796), + [anon_sym_suspend] = ACTIONS(4794), + [anon_sym_sealed] = ACTIONS(4794), + [anon_sym_annotation] = ACTIONS(4794), + [anon_sym_data] = ACTIONS(4794), + [anon_sym_inner] = ACTIONS(4794), + [anon_sym_value] = ACTIONS(4794), + [anon_sym_override] = ACTIONS(4794), + [anon_sym_lateinit] = ACTIONS(4794), + [anon_sym_public] = ACTIONS(4794), + [anon_sym_private] = ACTIONS(4794), + [anon_sym_internal] = ACTIONS(4794), + [anon_sym_protected] = ACTIONS(4794), + [anon_sym_tailrec] = ACTIONS(4794), + [anon_sym_operator] = ACTIONS(4794), + [anon_sym_infix] = ACTIONS(4794), + [anon_sym_inline] = ACTIONS(4794), + [anon_sym_external] = ACTIONS(4794), + [sym_property_modifier] = ACTIONS(4794), + [anon_sym_abstract] = ACTIONS(4794), + [anon_sym_final] = ACTIONS(4794), + [anon_sym_open] = ACTIONS(4794), + [anon_sym_vararg] = ACTIONS(4794), + [anon_sym_noinline] = ACTIONS(4794), + [anon_sym_crossinline] = ACTIONS(4794), + [anon_sym_expect] = ACTIONS(4794), + [anon_sym_actual] = ACTIONS(4794), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4796), + [sym__automatic_semicolon] = ACTIONS(4796), + [sym_safe_nav] = ACTIONS(4796), + [sym_multiline_comment] = ACTIONS(3), + }, + [4011] = { + [sym_class_body] = STATE(3539), + [sym_type_constraints] = STATE(3280), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6136), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [4012] = { + [sym_type_constraints] = STATE(3303), + [sym_enum_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7205), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + }, + [4013] = { + [sym_class_body] = STATE(3513), + [sym_type_constraints] = STATE(3324), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7207), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + }, + [4014] = { + [sym__alpha_identifier] = ACTIONS(4834), + [anon_sym_AT] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_as] = ACTIONS(4834), + [anon_sym_EQ] = ACTIONS(4834), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_RBRACE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4834), + [anon_sym_where] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_get] = ACTIONS(4834), + [anon_sym_set] = ACTIONS(4834), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(4836), + [anon_sym_in] = ACTIONS(4834), + [anon_sym_DOT_DOT] = ACTIONS(4836), + [anon_sym_QMARK_COLON] = ACTIONS(4836), + [anon_sym_AMP_AMP] = ACTIONS(4836), + [anon_sym_PIPE_PIPE] = ACTIONS(4836), + [anon_sym_else] = ACTIONS(4834), + [anon_sym_COLON_COLON] = ACTIONS(4836), + [anon_sym_PLUS_EQ] = ACTIONS(4836), + [anon_sym_DASH_EQ] = ACTIONS(4836), + [anon_sym_STAR_EQ] = ACTIONS(4836), + [anon_sym_SLASH_EQ] = ACTIONS(4836), + [anon_sym_PERCENT_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4836), + [anon_sym_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4836), + [anon_sym_LT_EQ] = ACTIONS(4836), + [anon_sym_GT_EQ] = ACTIONS(4836), + [anon_sym_BANGin] = ACTIONS(4836), + [anon_sym_is] = ACTIONS(4834), + [anon_sym_BANGis] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4834), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4834), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(4836), + [anon_sym_PLUS_PLUS] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4836), + [anon_sym_BANG_BANG] = ACTIONS(4836), + [anon_sym_suspend] = ACTIONS(4834), + [anon_sym_sealed] = ACTIONS(4834), + [anon_sym_annotation] = ACTIONS(4834), + [anon_sym_data] = ACTIONS(4834), + [anon_sym_inner] = ACTIONS(4834), + [anon_sym_value] = ACTIONS(4834), + [anon_sym_override] = ACTIONS(4834), + [anon_sym_lateinit] = ACTIONS(4834), + [anon_sym_public] = ACTIONS(4834), + [anon_sym_private] = ACTIONS(4834), + [anon_sym_internal] = ACTIONS(4834), + [anon_sym_protected] = ACTIONS(4834), + [anon_sym_tailrec] = ACTIONS(4834), + [anon_sym_operator] = ACTIONS(4834), + [anon_sym_infix] = ACTIONS(4834), + [anon_sym_inline] = ACTIONS(4834), + [anon_sym_external] = ACTIONS(4834), + [sym_property_modifier] = ACTIONS(4834), + [anon_sym_abstract] = ACTIONS(4834), + [anon_sym_final] = ACTIONS(4834), + [anon_sym_open] = ACTIONS(4834), + [anon_sym_vararg] = ACTIONS(4834), + [anon_sym_noinline] = ACTIONS(4834), + [anon_sym_crossinline] = ACTIONS(4834), + [anon_sym_expect] = ACTIONS(4834), + [anon_sym_actual] = ACTIONS(4834), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4836), + [sym__automatic_semicolon] = ACTIONS(4836), + [sym_safe_nav] = ACTIONS(4836), + [sym_multiline_comment] = ACTIONS(3), + }, + [4015] = { + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(6134), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [4016] = { + [sym_type_constraints] = STATE(3361), + [sym_enum_class_body] = STATE(3406), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(7209), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_RBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [anon_sym_DASH_GT] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + }, + [4017] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [4018] = { + [sym__alpha_identifier] = ACTIONS(5039), + [anon_sym_AT] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_as] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5041), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5039), + [anon_sym_GT] = ACTIONS(5039), + [anon_sym_where] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5039), + [anon_sym_SEMI] = ACTIONS(5041), + [anon_sym_get] = ACTIONS(5039), + [anon_sym_set] = ACTIONS(5039), + [anon_sym_STAR] = ACTIONS(5039), + [sym_label] = ACTIONS(5041), + [anon_sym_in] = ACTIONS(5039), + [anon_sym_DOT_DOT] = ACTIONS(5041), + [anon_sym_QMARK_COLON] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5041), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_else] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5039), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5041), + [anon_sym_EQ_EQ] = ACTIONS(5039), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_BANGin] = ACTIONS(5041), + [anon_sym_is] = ACTIONS(5039), + [anon_sym_BANGis] = ACTIONS(5041), + [anon_sym_PLUS] = ACTIONS(5039), + [anon_sym_DASH] = ACTIONS(5039), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), + [anon_sym_as_QMARK] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_BANG_BANG] = ACTIONS(5041), + [anon_sym_suspend] = ACTIONS(5039), + [anon_sym_sealed] = ACTIONS(5039), + [anon_sym_annotation] = ACTIONS(5039), + [anon_sym_data] = ACTIONS(5039), + [anon_sym_inner] = ACTIONS(5039), + [anon_sym_value] = ACTIONS(5039), + [anon_sym_override] = ACTIONS(5039), + [anon_sym_lateinit] = ACTIONS(5039), + [anon_sym_public] = ACTIONS(5039), + [anon_sym_private] = ACTIONS(5039), + [anon_sym_internal] = ACTIONS(5039), + [anon_sym_protected] = ACTIONS(5039), + [anon_sym_tailrec] = ACTIONS(5039), + [anon_sym_operator] = ACTIONS(5039), + [anon_sym_infix] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym_external] = ACTIONS(5039), + [sym_property_modifier] = ACTIONS(5039), + [anon_sym_abstract] = ACTIONS(5039), + [anon_sym_final] = ACTIONS(5039), + [anon_sym_open] = ACTIONS(5039), + [anon_sym_vararg] = ACTIONS(5039), + [anon_sym_noinline] = ACTIONS(5039), + [anon_sym_crossinline] = ACTIONS(5039), + [anon_sym_expect] = ACTIONS(5039), + [anon_sym_actual] = ACTIONS(5039), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5041), + [sym__automatic_semicolon] = ACTIONS(5041), + [sym_safe_nav] = ACTIONS(5041), + [sym_multiline_comment] = ACTIONS(3), + }, + [4019] = { + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [4020] = { + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [4021] = { + [sym__alpha_identifier] = ACTIONS(5085), + [anon_sym_AT] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_as] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_LBRACE] = ACTIONS(5087), + [anon_sym_RBRACE] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_where] = ACTIONS(5085), + [anon_sym_DOT] = ACTIONS(5085), + [anon_sym_SEMI] = ACTIONS(5087), + [anon_sym_get] = ACTIONS(5085), + [anon_sym_set] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [sym_label] = ACTIONS(5087), + [anon_sym_in] = ACTIONS(5085), + [anon_sym_DOT_DOT] = ACTIONS(5087), + [anon_sym_QMARK_COLON] = ACTIONS(5087), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_else] = ACTIONS(5085), + [anon_sym_COLON_COLON] = ACTIONS(5087), + [anon_sym_PLUS_EQ] = ACTIONS(5087), + [anon_sym_DASH_EQ] = ACTIONS(5087), + [anon_sym_STAR_EQ] = ACTIONS(5087), + [anon_sym_SLASH_EQ] = ACTIONS(5087), + [anon_sym_PERCENT_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5087), + [anon_sym_LT_EQ] = ACTIONS(5087), + [anon_sym_GT_EQ] = ACTIONS(5087), + [anon_sym_BANGin] = ACTIONS(5087), + [anon_sym_is] = ACTIONS(5085), + [anon_sym_BANGis] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_PERCENT] = ACTIONS(5085), + [anon_sym_as_QMARK] = ACTIONS(5087), + [anon_sym_PLUS_PLUS] = ACTIONS(5087), + [anon_sym_DASH_DASH] = ACTIONS(5087), + [anon_sym_BANG_BANG] = ACTIONS(5087), + [anon_sym_suspend] = ACTIONS(5085), + [anon_sym_sealed] = ACTIONS(5085), + [anon_sym_annotation] = ACTIONS(5085), + [anon_sym_data] = ACTIONS(5085), + [anon_sym_inner] = ACTIONS(5085), + [anon_sym_value] = ACTIONS(5085), + [anon_sym_override] = ACTIONS(5085), + [anon_sym_lateinit] = ACTIONS(5085), + [anon_sym_public] = ACTIONS(5085), + [anon_sym_private] = ACTIONS(5085), + [anon_sym_internal] = ACTIONS(5085), + [anon_sym_protected] = ACTIONS(5085), + [anon_sym_tailrec] = ACTIONS(5085), + [anon_sym_operator] = ACTIONS(5085), + [anon_sym_infix] = ACTIONS(5085), + [anon_sym_inline] = ACTIONS(5085), + [anon_sym_external] = ACTIONS(5085), + [sym_property_modifier] = ACTIONS(5085), + [anon_sym_abstract] = ACTIONS(5085), + [anon_sym_final] = ACTIONS(5085), + [anon_sym_open] = ACTIONS(5085), + [anon_sym_vararg] = ACTIONS(5085), + [anon_sym_noinline] = ACTIONS(5085), + [anon_sym_crossinline] = ACTIONS(5085), + [anon_sym_expect] = ACTIONS(5085), + [anon_sym_actual] = ACTIONS(5085), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5087), + [sym__automatic_semicolon] = ACTIONS(5087), + [sym_safe_nav] = ACTIONS(5087), + [sym_multiline_comment] = ACTIONS(3), + }, + [4022] = { + [sym__alpha_identifier] = ACTIONS(5219), + [anon_sym_AT] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_as] = ACTIONS(5219), + [anon_sym_EQ] = ACTIONS(5219), + [anon_sym_LBRACE] = ACTIONS(5221), + [anon_sym_RBRACE] = ACTIONS(5221), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_where] = ACTIONS(5219), + [anon_sym_DOT] = ACTIONS(5219), + [anon_sym_SEMI] = ACTIONS(5221), + [anon_sym_get] = ACTIONS(5219), + [anon_sym_set] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [sym_label] = ACTIONS(5221), + [anon_sym_in] = ACTIONS(5219), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_QMARK_COLON] = ACTIONS(5221), + [anon_sym_AMP_AMP] = ACTIONS(5221), + [anon_sym_PIPE_PIPE] = ACTIONS(5221), + [anon_sym_else] = ACTIONS(5219), + [anon_sym_COLON_COLON] = ACTIONS(5221), + [anon_sym_PLUS_EQ] = ACTIONS(5221), + [anon_sym_DASH_EQ] = ACTIONS(5221), + [anon_sym_STAR_EQ] = ACTIONS(5221), + [anon_sym_SLASH_EQ] = ACTIONS(5221), + [anon_sym_PERCENT_EQ] = ACTIONS(5221), + [anon_sym_BANG_EQ] = ACTIONS(5219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5221), + [anon_sym_GT_EQ] = ACTIONS(5221), + [anon_sym_BANGin] = ACTIONS(5221), + [anon_sym_is] = ACTIONS(5219), + [anon_sym_BANGis] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_PERCENT] = ACTIONS(5219), + [anon_sym_as_QMARK] = ACTIONS(5221), + [anon_sym_PLUS_PLUS] = ACTIONS(5221), + [anon_sym_DASH_DASH] = ACTIONS(5221), + [anon_sym_BANG_BANG] = ACTIONS(5221), + [anon_sym_suspend] = ACTIONS(5219), + [anon_sym_sealed] = ACTIONS(5219), + [anon_sym_annotation] = ACTIONS(5219), + [anon_sym_data] = ACTIONS(5219), + [anon_sym_inner] = ACTIONS(5219), + [anon_sym_value] = ACTIONS(5219), + [anon_sym_override] = ACTIONS(5219), + [anon_sym_lateinit] = ACTIONS(5219), + [anon_sym_public] = ACTIONS(5219), + [anon_sym_private] = ACTIONS(5219), + [anon_sym_internal] = ACTIONS(5219), + [anon_sym_protected] = ACTIONS(5219), + [anon_sym_tailrec] = ACTIONS(5219), + [anon_sym_operator] = ACTIONS(5219), + [anon_sym_infix] = ACTIONS(5219), + [anon_sym_inline] = ACTIONS(5219), + [anon_sym_external] = ACTIONS(5219), + [sym_property_modifier] = ACTIONS(5219), + [anon_sym_abstract] = ACTIONS(5219), + [anon_sym_final] = ACTIONS(5219), + [anon_sym_open] = ACTIONS(5219), + [anon_sym_vararg] = ACTIONS(5219), + [anon_sym_noinline] = ACTIONS(5219), + [anon_sym_crossinline] = ACTIONS(5219), + [anon_sym_expect] = ACTIONS(5219), + [anon_sym_actual] = ACTIONS(5219), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5221), + [sym__automatic_semicolon] = ACTIONS(5221), + [sym_safe_nav] = ACTIONS(5221), + [sym_multiline_comment] = ACTIONS(3), + }, + [4023] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4284), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + }, + [4024] = { + [sym__alpha_identifier] = ACTIONS(4804), + [anon_sym_AT] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_as] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4804), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_where] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4806), + [anon_sym_get] = ACTIONS(4804), + [anon_sym_set] = ACTIONS(4804), + [anon_sym_STAR] = ACTIONS(4804), + [sym_label] = ACTIONS(4806), + [anon_sym_in] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4806), + [anon_sym_QMARK_COLON] = ACTIONS(4806), + [anon_sym_AMP_AMP] = ACTIONS(4806), + [anon_sym_PIPE_PIPE] = ACTIONS(4806), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_COLON_COLON] = ACTIONS(4806), + [anon_sym_PLUS_EQ] = ACTIONS(4806), + [anon_sym_DASH_EQ] = ACTIONS(4806), + [anon_sym_STAR_EQ] = ACTIONS(4806), + [anon_sym_SLASH_EQ] = ACTIONS(4806), + [anon_sym_PERCENT_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4806), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_BANGin] = ACTIONS(4806), + [anon_sym_is] = ACTIONS(4804), + [anon_sym_BANGis] = ACTIONS(4806), + [anon_sym_PLUS] = ACTIONS(4804), + [anon_sym_DASH] = ACTIONS(4804), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_PERCENT] = ACTIONS(4804), + [anon_sym_as_QMARK] = ACTIONS(4806), + [anon_sym_PLUS_PLUS] = ACTIONS(4806), + [anon_sym_DASH_DASH] = ACTIONS(4806), + [anon_sym_BANG_BANG] = ACTIONS(4806), + [anon_sym_suspend] = ACTIONS(4804), + [anon_sym_sealed] = ACTIONS(4804), + [anon_sym_annotation] = ACTIONS(4804), + [anon_sym_data] = ACTIONS(4804), + [anon_sym_inner] = ACTIONS(4804), + [anon_sym_value] = ACTIONS(4804), + [anon_sym_override] = ACTIONS(4804), + [anon_sym_lateinit] = ACTIONS(4804), + [anon_sym_public] = ACTIONS(4804), + [anon_sym_private] = ACTIONS(4804), + [anon_sym_internal] = ACTIONS(4804), + [anon_sym_protected] = ACTIONS(4804), + [anon_sym_tailrec] = ACTIONS(4804), + [anon_sym_operator] = ACTIONS(4804), + [anon_sym_infix] = ACTIONS(4804), + [anon_sym_inline] = ACTIONS(4804), + [anon_sym_external] = ACTIONS(4804), + [sym_property_modifier] = ACTIONS(4804), + [anon_sym_abstract] = ACTIONS(4804), + [anon_sym_final] = ACTIONS(4804), + [anon_sym_open] = ACTIONS(4804), + [anon_sym_vararg] = ACTIONS(4804), + [anon_sym_noinline] = ACTIONS(4804), + [anon_sym_crossinline] = ACTIONS(4804), + [anon_sym_expect] = ACTIONS(4804), + [anon_sym_actual] = ACTIONS(4804), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4806), + [sym__automatic_semicolon] = ACTIONS(4806), + [sym_safe_nav] = ACTIONS(4806), + [sym_multiline_comment] = ACTIONS(3), + }, + [4025] = { + [sym__alpha_identifier] = ACTIONS(4926), + [anon_sym_AT] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_as] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_where] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_get] = ACTIONS(4926), + [anon_sym_set] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(4926), + [sym_label] = ACTIONS(4928), + [anon_sym_in] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4928), + [anon_sym_QMARK_COLON] = ACTIONS(4928), + [anon_sym_AMP_AMP] = ACTIONS(4928), + [anon_sym_PIPE_PIPE] = ACTIONS(4928), + [anon_sym_else] = ACTIONS(4926), + [anon_sym_COLON_COLON] = ACTIONS(4928), + [anon_sym_PLUS_EQ] = ACTIONS(4928), + [anon_sym_DASH_EQ] = ACTIONS(4928), + [anon_sym_STAR_EQ] = ACTIONS(4928), + [anon_sym_SLASH_EQ] = ACTIONS(4928), + [anon_sym_PERCENT_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ] = ACTIONS(4926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), + [anon_sym_EQ_EQ] = ACTIONS(4926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), + [anon_sym_LT_EQ] = ACTIONS(4928), + [anon_sym_GT_EQ] = ACTIONS(4928), + [anon_sym_BANGin] = ACTIONS(4928), + [anon_sym_is] = ACTIONS(4926), + [anon_sym_BANGis] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_PERCENT] = ACTIONS(4926), + [anon_sym_as_QMARK] = ACTIONS(4928), + [anon_sym_PLUS_PLUS] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4928), + [anon_sym_BANG_BANG] = ACTIONS(4928), + [anon_sym_suspend] = ACTIONS(4926), + [anon_sym_sealed] = ACTIONS(4926), + [anon_sym_annotation] = ACTIONS(4926), + [anon_sym_data] = ACTIONS(4926), + [anon_sym_inner] = ACTIONS(4926), + [anon_sym_value] = ACTIONS(4926), + [anon_sym_override] = ACTIONS(4926), + [anon_sym_lateinit] = ACTIONS(4926), + [anon_sym_public] = ACTIONS(4926), + [anon_sym_private] = ACTIONS(4926), + [anon_sym_internal] = ACTIONS(4926), + [anon_sym_protected] = ACTIONS(4926), + [anon_sym_tailrec] = ACTIONS(4926), + [anon_sym_operator] = ACTIONS(4926), + [anon_sym_infix] = ACTIONS(4926), + [anon_sym_inline] = ACTIONS(4926), + [anon_sym_external] = ACTIONS(4926), + [sym_property_modifier] = ACTIONS(4926), + [anon_sym_abstract] = ACTIONS(4926), + [anon_sym_final] = ACTIONS(4926), + [anon_sym_open] = ACTIONS(4926), + [anon_sym_vararg] = ACTIONS(4926), + [anon_sym_noinline] = ACTIONS(4926), + [anon_sym_crossinline] = ACTIONS(4926), + [anon_sym_expect] = ACTIONS(4926), + [anon_sym_actual] = ACTIONS(4926), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4928), + [sym__automatic_semicolon] = ACTIONS(4928), + [sym_safe_nav] = ACTIONS(4928), + [sym_multiline_comment] = ACTIONS(3), + }, + [4026] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + }, + [4027] = { + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_LBRACE] = ACTIONS(4441), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + }, + [4028] = { + [sym__alpha_identifier] = ACTIONS(4812), + [anon_sym_AT] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_where] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4814), + [anon_sym_get] = ACTIONS(4812), + [anon_sym_set] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [sym_label] = ACTIONS(4814), + [anon_sym_in] = ACTIONS(4812), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_QMARK_COLON] = ACTIONS(4814), + [anon_sym_AMP_AMP] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4814), + [anon_sym_else] = ACTIONS(4812), + [anon_sym_COLON_COLON] = ACTIONS(4814), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4814), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_BANGin] = ACTIONS(4814), + [anon_sym_is] = ACTIONS(4812), + [anon_sym_BANGis] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4812), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_as_QMARK] = ACTIONS(4814), + [anon_sym_PLUS_PLUS] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_BANG_BANG] = ACTIONS(4814), + [anon_sym_suspend] = ACTIONS(4812), + [anon_sym_sealed] = ACTIONS(4812), + [anon_sym_annotation] = ACTIONS(4812), + [anon_sym_data] = ACTIONS(4812), + [anon_sym_inner] = ACTIONS(4812), + [anon_sym_value] = ACTIONS(4812), + [anon_sym_override] = ACTIONS(4812), + [anon_sym_lateinit] = ACTIONS(4812), + [anon_sym_public] = ACTIONS(4812), + [anon_sym_private] = ACTIONS(4812), + [anon_sym_internal] = ACTIONS(4812), + [anon_sym_protected] = ACTIONS(4812), + [anon_sym_tailrec] = ACTIONS(4812), + [anon_sym_operator] = ACTIONS(4812), + [anon_sym_infix] = ACTIONS(4812), + [anon_sym_inline] = ACTIONS(4812), + [anon_sym_external] = ACTIONS(4812), + [sym_property_modifier] = ACTIONS(4812), + [anon_sym_abstract] = ACTIONS(4812), + [anon_sym_final] = ACTIONS(4812), + [anon_sym_open] = ACTIONS(4812), + [anon_sym_vararg] = ACTIONS(4812), + [anon_sym_noinline] = ACTIONS(4812), + [anon_sym_crossinline] = ACTIONS(4812), + [anon_sym_expect] = ACTIONS(4812), + [anon_sym_actual] = ACTIONS(4812), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4814), + [sym__automatic_semicolon] = ACTIONS(4814), + [sym_safe_nav] = ACTIONS(4814), + [sym_multiline_comment] = ACTIONS(3), }, [4029] = { - [sym__alpha_identifier] = ACTIONS(5004), - [anon_sym_AT] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_typealias] = ACTIONS(5004), - [anon_sym_class] = ACTIONS(5004), - [anon_sym_fun] = ACTIONS(5004), - [anon_sym_interface] = ACTIONS(5004), - [anon_sym_enum] = ACTIONS(5004), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(5006), - [anon_sym_val] = ACTIONS(5004), - [anon_sym_var] = ACTIONS(5004), - [anon_sym_object] = ACTIONS(5004), - [anon_sym_get] = ACTIONS(5004), - [anon_sym_set] = ACTIONS(5004), - [anon_sym_this] = ACTIONS(5004), - [anon_sym_super] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5006), - [sym_label] = ACTIONS(5004), - [anon_sym_for] = ACTIONS(5004), - [anon_sym_while] = ACTIONS(5004), - [anon_sym_do] = ACTIONS(5004), - [anon_sym_null] = ACTIONS(5004), - [anon_sym_if] = ACTIONS(5004), - [anon_sym_when] = ACTIONS(5004), - [anon_sym_try] = ACTIONS(5004), - [anon_sym_throw] = ACTIONS(5004), - [anon_sym_return] = ACTIONS(5004), - [anon_sym_continue] = ACTIONS(5004), - [anon_sym_break] = ACTIONS(5004), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_BANG] = ACTIONS(5006), - [anon_sym_suspend] = ACTIONS(5004), - [anon_sym_sealed] = ACTIONS(5004), - [anon_sym_annotation] = ACTIONS(5004), - [anon_sym_data] = ACTIONS(5004), - [anon_sym_inner] = ACTIONS(5004), - [anon_sym_value] = ACTIONS(5004), - [anon_sym_override] = ACTIONS(5004), - [anon_sym_lateinit] = ACTIONS(5004), - [anon_sym_public] = ACTIONS(5004), - [anon_sym_private] = ACTIONS(5004), - [anon_sym_internal] = ACTIONS(5004), - [anon_sym_protected] = ACTIONS(5004), - [anon_sym_tailrec] = ACTIONS(5004), - [anon_sym_operator] = ACTIONS(5004), - [anon_sym_infix] = ACTIONS(5004), - [anon_sym_inline] = ACTIONS(5004), - [anon_sym_external] = ACTIONS(5004), - [sym_property_modifier] = ACTIONS(5004), - [anon_sym_abstract] = ACTIONS(5004), - [anon_sym_final] = ACTIONS(5004), - [anon_sym_open] = ACTIONS(5004), - [anon_sym_vararg] = ACTIONS(5004), - [anon_sym_noinline] = ACTIONS(5004), - [anon_sym_crossinline] = ACTIONS(5004), - [anon_sym_expect] = ACTIONS(5004), - [anon_sym_actual] = ACTIONS(5004), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5006), - [anon_sym_continue_AT] = ACTIONS(5006), - [anon_sym_break_AT] = ACTIONS(5006), - [anon_sym_this_AT] = ACTIONS(5006), - [anon_sym_super_AT] = ACTIONS(5006), - [sym_real_literal] = ACTIONS(5006), - [sym_integer_literal] = ACTIONS(5004), - [sym_hex_literal] = ACTIONS(5006), - [sym_bin_literal] = ACTIONS(5006), - [anon_sym_true] = ACTIONS(5004), - [anon_sym_false] = ACTIONS(5004), - [anon_sym_SQUOTE] = ACTIONS(5006), - [sym__backtick_identifier] = ACTIONS(5006), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5006), + [sym_class_body] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7211), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), }, [4030] = { - [sym_function_body] = STATE(3314), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [anon_sym_this_AT] = ACTIONS(4198), - [anon_sym_super_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [sym__alpha_identifier] = ACTIONS(5099), + [anon_sym_AT] = ACTIONS(5101), + [anon_sym_LBRACK] = ACTIONS(5101), + [anon_sym_as] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5101), + [anon_sym_RBRACE] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5101), + [anon_sym_COMMA] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5099), + [anon_sym_GT] = ACTIONS(5099), + [anon_sym_where] = ACTIONS(5099), + [anon_sym_DOT] = ACTIONS(5099), + [anon_sym_SEMI] = ACTIONS(5101), + [anon_sym_get] = ACTIONS(5099), + [anon_sym_set] = ACTIONS(5099), + [anon_sym_STAR] = ACTIONS(5099), + [sym_label] = ACTIONS(5101), + [anon_sym_in] = ACTIONS(5099), + [anon_sym_DOT_DOT] = ACTIONS(5101), + [anon_sym_QMARK_COLON] = ACTIONS(5101), + [anon_sym_AMP_AMP] = ACTIONS(5101), + [anon_sym_PIPE_PIPE] = ACTIONS(5101), + [anon_sym_else] = ACTIONS(5099), + [anon_sym_COLON_COLON] = ACTIONS(5101), + [anon_sym_PLUS_EQ] = ACTIONS(5101), + [anon_sym_DASH_EQ] = ACTIONS(5101), + [anon_sym_STAR_EQ] = ACTIONS(5101), + [anon_sym_SLASH_EQ] = ACTIONS(5101), + [anon_sym_PERCENT_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ] = ACTIONS(5099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ] = ACTIONS(5099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5101), + [anon_sym_LT_EQ] = ACTIONS(5101), + [anon_sym_GT_EQ] = ACTIONS(5101), + [anon_sym_BANGin] = ACTIONS(5101), + [anon_sym_is] = ACTIONS(5099), + [anon_sym_BANGis] = ACTIONS(5101), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5099), + [anon_sym_as_QMARK] = ACTIONS(5101), + [anon_sym_PLUS_PLUS] = ACTIONS(5101), + [anon_sym_DASH_DASH] = ACTIONS(5101), + [anon_sym_BANG_BANG] = ACTIONS(5101), + [anon_sym_suspend] = ACTIONS(5099), + [anon_sym_sealed] = ACTIONS(5099), + [anon_sym_annotation] = ACTIONS(5099), + [anon_sym_data] = ACTIONS(5099), + [anon_sym_inner] = ACTIONS(5099), + [anon_sym_value] = ACTIONS(5099), + [anon_sym_override] = ACTIONS(5099), + [anon_sym_lateinit] = ACTIONS(5099), + [anon_sym_public] = ACTIONS(5099), + [anon_sym_private] = ACTIONS(5099), + [anon_sym_internal] = ACTIONS(5099), + [anon_sym_protected] = ACTIONS(5099), + [anon_sym_tailrec] = ACTIONS(5099), + [anon_sym_operator] = ACTIONS(5099), + [anon_sym_infix] = ACTIONS(5099), + [anon_sym_inline] = ACTIONS(5099), + [anon_sym_external] = ACTIONS(5099), + [sym_property_modifier] = ACTIONS(5099), + [anon_sym_abstract] = ACTIONS(5099), + [anon_sym_final] = ACTIONS(5099), + [anon_sym_open] = ACTIONS(5099), + [anon_sym_vararg] = ACTIONS(5099), + [anon_sym_noinline] = ACTIONS(5099), + [anon_sym_crossinline] = ACTIONS(5099), + [anon_sym_expect] = ACTIONS(5099), + [anon_sym_actual] = ACTIONS(5099), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5101), + [sym__automatic_semicolon] = ACTIONS(5101), + [sym_safe_nav] = ACTIONS(5101), + [sym_multiline_comment] = ACTIONS(3), }, [4031] = { - [sym__alpha_identifier] = ACTIONS(4972), - [anon_sym_AT] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_typealias] = ACTIONS(4972), - [anon_sym_class] = ACTIONS(4972), - [anon_sym_fun] = ACTIONS(4972), - [anon_sym_interface] = ACTIONS(4972), - [anon_sym_enum] = ACTIONS(4972), - [anon_sym_LBRACE] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4974), - [anon_sym_val] = ACTIONS(4972), - [anon_sym_var] = ACTIONS(4972), - [anon_sym_object] = ACTIONS(4972), - [anon_sym_get] = ACTIONS(4972), - [anon_sym_set] = ACTIONS(4972), - [anon_sym_this] = ACTIONS(4972), - [anon_sym_super] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4974), - [sym_label] = ACTIONS(4972), - [anon_sym_for] = ACTIONS(4972), - [anon_sym_while] = ACTIONS(4972), - [anon_sym_do] = ACTIONS(4972), - [anon_sym_null] = ACTIONS(4972), - [anon_sym_if] = ACTIONS(4972), - [anon_sym_when] = ACTIONS(4972), - [anon_sym_try] = ACTIONS(4972), - [anon_sym_throw] = ACTIONS(4972), - [anon_sym_return] = ACTIONS(4972), - [anon_sym_continue] = ACTIONS(4972), - [anon_sym_break] = ACTIONS(4972), - [anon_sym_COLON_COLON] = ACTIONS(4974), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_BANG] = ACTIONS(4974), - [anon_sym_suspend] = ACTIONS(4972), - [anon_sym_sealed] = ACTIONS(4972), - [anon_sym_annotation] = ACTIONS(4972), - [anon_sym_data] = ACTIONS(4972), - [anon_sym_inner] = ACTIONS(4972), - [anon_sym_value] = ACTIONS(4972), - [anon_sym_override] = ACTIONS(4972), - [anon_sym_lateinit] = ACTIONS(4972), - [anon_sym_public] = ACTIONS(4972), - [anon_sym_private] = ACTIONS(4972), - [anon_sym_internal] = ACTIONS(4972), - [anon_sym_protected] = ACTIONS(4972), - [anon_sym_tailrec] = ACTIONS(4972), - [anon_sym_operator] = ACTIONS(4972), - [anon_sym_infix] = ACTIONS(4972), - [anon_sym_inline] = ACTIONS(4972), - [anon_sym_external] = ACTIONS(4972), - [sym_property_modifier] = ACTIONS(4972), - [anon_sym_abstract] = ACTIONS(4972), - [anon_sym_final] = ACTIONS(4972), - [anon_sym_open] = ACTIONS(4972), - [anon_sym_vararg] = ACTIONS(4972), - [anon_sym_noinline] = ACTIONS(4972), - [anon_sym_crossinline] = ACTIONS(4972), - [anon_sym_expect] = ACTIONS(4972), - [anon_sym_actual] = ACTIONS(4972), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4974), - [anon_sym_continue_AT] = ACTIONS(4974), - [anon_sym_break_AT] = ACTIONS(4974), - [anon_sym_this_AT] = ACTIONS(4974), - [anon_sym_super_AT] = ACTIONS(4974), - [sym_real_literal] = ACTIONS(4974), - [sym_integer_literal] = ACTIONS(4972), - [sym_hex_literal] = ACTIONS(4974), - [sym_bin_literal] = ACTIONS(4974), - [anon_sym_true] = ACTIONS(4972), - [anon_sym_false] = ACTIONS(4972), - [anon_sym_SQUOTE] = ACTIONS(4974), - [sym__backtick_identifier] = ACTIONS(4974), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4974), + [sym__alpha_identifier] = ACTIONS(4966), + [anon_sym_AT] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4966), + [anon_sym_EQ] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_RBRACE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_where] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_get] = ACTIONS(4966), + [anon_sym_set] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [sym_label] = ACTIONS(4968), + [anon_sym_in] = ACTIONS(4966), + [anon_sym_DOT_DOT] = ACTIONS(4968), + [anon_sym_QMARK_COLON] = ACTIONS(4968), + [anon_sym_AMP_AMP] = ACTIONS(4968), + [anon_sym_PIPE_PIPE] = ACTIONS(4968), + [anon_sym_else] = ACTIONS(4966), + [anon_sym_COLON_COLON] = ACTIONS(4968), + [anon_sym_PLUS_EQ] = ACTIONS(4968), + [anon_sym_DASH_EQ] = ACTIONS(4968), + [anon_sym_STAR_EQ] = ACTIONS(4968), + [anon_sym_SLASH_EQ] = ACTIONS(4968), + [anon_sym_PERCENT_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4968), + [anon_sym_LT_EQ] = ACTIONS(4968), + [anon_sym_GT_EQ] = ACTIONS(4968), + [anon_sym_BANGin] = ACTIONS(4968), + [anon_sym_is] = ACTIONS(4966), + [anon_sym_BANGis] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_PERCENT] = ACTIONS(4966), + [anon_sym_as_QMARK] = ACTIONS(4968), + [anon_sym_PLUS_PLUS] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4968), + [anon_sym_BANG_BANG] = ACTIONS(4968), + [anon_sym_suspend] = ACTIONS(4966), + [anon_sym_sealed] = ACTIONS(4966), + [anon_sym_annotation] = ACTIONS(4966), + [anon_sym_data] = ACTIONS(4966), + [anon_sym_inner] = ACTIONS(4966), + [anon_sym_value] = ACTIONS(4966), + [anon_sym_override] = ACTIONS(4966), + [anon_sym_lateinit] = ACTIONS(4966), + [anon_sym_public] = ACTIONS(4966), + [anon_sym_private] = ACTIONS(4966), + [anon_sym_internal] = ACTIONS(4966), + [anon_sym_protected] = ACTIONS(4966), + [anon_sym_tailrec] = ACTIONS(4966), + [anon_sym_operator] = ACTIONS(4966), + [anon_sym_infix] = ACTIONS(4966), + [anon_sym_inline] = ACTIONS(4966), + [anon_sym_external] = ACTIONS(4966), + [sym_property_modifier] = ACTIONS(4966), + [anon_sym_abstract] = ACTIONS(4966), + [anon_sym_final] = ACTIONS(4966), + [anon_sym_open] = ACTIONS(4966), + [anon_sym_vararg] = ACTIONS(4966), + [anon_sym_noinline] = ACTIONS(4966), + [anon_sym_crossinline] = ACTIONS(4966), + [anon_sym_expect] = ACTIONS(4966), + [anon_sym_actual] = ACTIONS(4966), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4968), + [sym__automatic_semicolon] = ACTIONS(4968), + [sym_safe_nav] = ACTIONS(4968), + [sym_multiline_comment] = ACTIONS(3), }, [4032] = { - [sym_function_body] = STATE(3520), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_where] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4455), - [anon_sym_DASH_GT] = ACTIONS(4455), - [sym_label] = ACTIONS(4455), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_while] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4455), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_suspend] = ACTIONS(4453), - [anon_sym_sealed] = ACTIONS(4453), - [anon_sym_annotation] = ACTIONS(4453), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4453), - [anon_sym_lateinit] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_internal] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_tailrec] = ACTIONS(4453), - [anon_sym_operator] = ACTIONS(4453), - [anon_sym_infix] = ACTIONS(4453), - [anon_sym_inline] = ACTIONS(4453), - [anon_sym_external] = ACTIONS(4453), - [sym_property_modifier] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_open] = ACTIONS(4453), - [anon_sym_vararg] = ACTIONS(4453), - [anon_sym_noinline] = ACTIONS(4453), - [anon_sym_crossinline] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), + [sym__alpha_identifier] = ACTIONS(4930), + [anon_sym_AT] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_as] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_where] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_get] = ACTIONS(4930), + [anon_sym_set] = ACTIONS(4930), + [anon_sym_STAR] = ACTIONS(4930), + [sym_label] = ACTIONS(4932), + [anon_sym_in] = ACTIONS(4930), + [anon_sym_DOT_DOT] = ACTIONS(4932), + [anon_sym_QMARK_COLON] = ACTIONS(4932), + [anon_sym_AMP_AMP] = ACTIONS(4932), + [anon_sym_PIPE_PIPE] = ACTIONS(4932), + [anon_sym_else] = ACTIONS(4930), + [anon_sym_COLON_COLON] = ACTIONS(4932), + [anon_sym_PLUS_EQ] = ACTIONS(4932), + [anon_sym_DASH_EQ] = ACTIONS(4932), + [anon_sym_STAR_EQ] = ACTIONS(4932), + [anon_sym_SLASH_EQ] = ACTIONS(4932), + [anon_sym_PERCENT_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4932), + [anon_sym_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4932), + [anon_sym_LT_EQ] = ACTIONS(4932), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_BANGin] = ACTIONS(4932), + [anon_sym_is] = ACTIONS(4930), + [anon_sym_BANGis] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4930), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4930), + [anon_sym_PERCENT] = ACTIONS(4930), + [anon_sym_as_QMARK] = ACTIONS(4932), + [anon_sym_PLUS_PLUS] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4932), + [anon_sym_BANG_BANG] = ACTIONS(4932), + [anon_sym_suspend] = ACTIONS(4930), + [anon_sym_sealed] = ACTIONS(4930), + [anon_sym_annotation] = ACTIONS(4930), + [anon_sym_data] = ACTIONS(4930), + [anon_sym_inner] = ACTIONS(4930), + [anon_sym_value] = ACTIONS(4930), + [anon_sym_override] = ACTIONS(4930), + [anon_sym_lateinit] = ACTIONS(4930), + [anon_sym_public] = ACTIONS(4930), + [anon_sym_private] = ACTIONS(4930), + [anon_sym_internal] = ACTIONS(4930), + [anon_sym_protected] = ACTIONS(4930), + [anon_sym_tailrec] = ACTIONS(4930), + [anon_sym_operator] = ACTIONS(4930), + [anon_sym_infix] = ACTIONS(4930), + [anon_sym_inline] = ACTIONS(4930), + [anon_sym_external] = ACTIONS(4930), + [sym_property_modifier] = ACTIONS(4930), + [anon_sym_abstract] = ACTIONS(4930), + [anon_sym_final] = ACTIONS(4930), + [anon_sym_open] = ACTIONS(4930), + [anon_sym_vararg] = ACTIONS(4930), + [anon_sym_noinline] = ACTIONS(4930), + [anon_sym_crossinline] = ACTIONS(4930), + [anon_sym_expect] = ACTIONS(4930), + [anon_sym_actual] = ACTIONS(4930), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4932), + [sym__automatic_semicolon] = ACTIONS(4932), + [sym_safe_nav] = ACTIONS(4932), [sym_multiline_comment] = ACTIONS(3), }, [4033] = { - [sym_function_body] = STATE(3536), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_RBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [anon_sym_DASH_GT] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_while] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(1814), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(1814), + [anon_sym_sealed] = ACTIONS(1814), + [anon_sym_annotation] = ACTIONS(1814), + [anon_sym_data] = ACTIONS(1814), + [anon_sym_inner] = ACTIONS(1814), + [anon_sym_value] = ACTIONS(1814), + [anon_sym_override] = ACTIONS(1814), + [anon_sym_lateinit] = ACTIONS(1814), + [anon_sym_public] = ACTIONS(1814), + [anon_sym_private] = ACTIONS(1814), + [anon_sym_internal] = ACTIONS(1814), + [anon_sym_protected] = ACTIONS(1814), + [anon_sym_tailrec] = ACTIONS(1814), + [anon_sym_operator] = ACTIONS(1814), + [anon_sym_infix] = ACTIONS(1814), + [anon_sym_inline] = ACTIONS(1814), + [anon_sym_external] = ACTIONS(1814), + [sym_property_modifier] = ACTIONS(1814), + [anon_sym_abstract] = ACTIONS(1814), + [anon_sym_final] = ACTIONS(1814), + [anon_sym_open] = ACTIONS(1814), + [anon_sym_vararg] = ACTIONS(1814), + [anon_sym_noinline] = ACTIONS(1814), + [anon_sym_crossinline] = ACTIONS(1814), + [anon_sym_expect] = ACTIONS(1814), + [anon_sym_actual] = ACTIONS(1814), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, [4034] = { - [sym_function_body] = STATE(3554), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_RBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_RPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [anon_sym_DASH_GT] = ACTIONS(4293), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3420), + [anon_sym_set] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(3420), + [anon_sym_sealed] = ACTIONS(3420), + [anon_sym_annotation] = ACTIONS(3420), + [anon_sym_data] = ACTIONS(3420), + [anon_sym_inner] = ACTIONS(3420), + [anon_sym_value] = ACTIONS(3420), + [anon_sym_override] = ACTIONS(3420), + [anon_sym_lateinit] = ACTIONS(3420), + [anon_sym_public] = ACTIONS(3420), + [anon_sym_private] = ACTIONS(3420), + [anon_sym_internal] = ACTIONS(3420), + [anon_sym_protected] = ACTIONS(3420), + [anon_sym_tailrec] = ACTIONS(3420), + [anon_sym_operator] = ACTIONS(3420), + [anon_sym_infix] = ACTIONS(3420), + [anon_sym_inline] = ACTIONS(3420), + [anon_sym_external] = ACTIONS(3420), + [sym_property_modifier] = ACTIONS(3420), + [anon_sym_abstract] = ACTIONS(3420), + [anon_sym_final] = ACTIONS(3420), + [anon_sym_open] = ACTIONS(3420), + [anon_sym_vararg] = ACTIONS(3420), + [anon_sym_noinline] = ACTIONS(3420), + [anon_sym_crossinline] = ACTIONS(3420), + [anon_sym_expect] = ACTIONS(3420), + [anon_sym_actual] = ACTIONS(3420), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, [4035] = { - [sym_function_body] = STATE(3667), - [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4147), + [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + }, + [4036] = { + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_RBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_COMMA] = ACTIONS(4185), @@ -450160,2215 +447688,1563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, - [4036] = { - [sym_function_body] = STATE(3608), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_RBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_DASH_GT] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - }, [4037] = { - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(4453), - [anon_sym_LBRACE] = ACTIONS(4455), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_where] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4453), - [sym_label] = ACTIONS(4455), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_PLUS_EQ] = ACTIONS(4455), - [anon_sym_DASH_EQ] = ACTIONS(4455), - [anon_sym_STAR_EQ] = ACTIONS(4455), - [anon_sym_SLASH_EQ] = ACTIONS(4455), - [anon_sym_PERCENT_EQ] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4453), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_suspend] = ACTIONS(4453), - [anon_sym_sealed] = ACTIONS(4453), - [anon_sym_annotation] = ACTIONS(4453), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4453), - [anon_sym_lateinit] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_internal] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_tailrec] = ACTIONS(4453), - [anon_sym_operator] = ACTIONS(4453), - [anon_sym_infix] = ACTIONS(4453), - [anon_sym_inline] = ACTIONS(4453), - [anon_sym_external] = ACTIONS(4453), - [sym_property_modifier] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_open] = ACTIONS(4453), - [anon_sym_vararg] = ACTIONS(4453), - [anon_sym_noinline] = ACTIONS(4453), - [anon_sym_crossinline] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4455), - [sym__automatic_semicolon] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), + [sym__alpha_identifier] = ACTIONS(4838), + [anon_sym_AT] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4838), + [anon_sym_EQ] = ACTIONS(4838), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4838), + [anon_sym_where] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_get] = ACTIONS(4838), + [anon_sym_set] = ACTIONS(4838), + [anon_sym_STAR] = ACTIONS(4838), + [sym_label] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4840), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4840), + [anon_sym_PIPE_PIPE] = ACTIONS(4840), + [anon_sym_else] = ACTIONS(4838), + [anon_sym_COLON_COLON] = ACTIONS(4840), + [anon_sym_PLUS_EQ] = ACTIONS(4840), + [anon_sym_DASH_EQ] = ACTIONS(4840), + [anon_sym_STAR_EQ] = ACTIONS(4840), + [anon_sym_SLASH_EQ] = ACTIONS(4840), + [anon_sym_PERCENT_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ] = ACTIONS(4838), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4840), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_BANGin] = ACTIONS(4840), + [anon_sym_is] = ACTIONS(4838), + [anon_sym_BANGis] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4838), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4838), + [anon_sym_PERCENT] = ACTIONS(4838), + [anon_sym_as_QMARK] = ACTIONS(4840), + [anon_sym_PLUS_PLUS] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4840), + [anon_sym_BANG_BANG] = ACTIONS(4840), + [anon_sym_suspend] = ACTIONS(4838), + [anon_sym_sealed] = ACTIONS(4838), + [anon_sym_annotation] = ACTIONS(4838), + [anon_sym_data] = ACTIONS(4838), + [anon_sym_inner] = ACTIONS(4838), + [anon_sym_value] = ACTIONS(4838), + [anon_sym_override] = ACTIONS(4838), + [anon_sym_lateinit] = ACTIONS(4838), + [anon_sym_public] = ACTIONS(4838), + [anon_sym_private] = ACTIONS(4838), + [anon_sym_internal] = ACTIONS(4838), + [anon_sym_protected] = ACTIONS(4838), + [anon_sym_tailrec] = ACTIONS(4838), + [anon_sym_operator] = ACTIONS(4838), + [anon_sym_infix] = ACTIONS(4838), + [anon_sym_inline] = ACTIONS(4838), + [anon_sym_external] = ACTIONS(4838), + [sym_property_modifier] = ACTIONS(4838), + [anon_sym_abstract] = ACTIONS(4838), + [anon_sym_final] = ACTIONS(4838), + [anon_sym_open] = ACTIONS(4838), + [anon_sym_vararg] = ACTIONS(4838), + [anon_sym_noinline] = ACTIONS(4838), + [anon_sym_crossinline] = ACTIONS(4838), + [anon_sym_expect] = ACTIONS(4838), + [anon_sym_actual] = ACTIONS(4838), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4840), + [sym__automatic_semicolon] = ACTIONS(4840), + [sym_safe_nav] = ACTIONS(4840), [sym_multiline_comment] = ACTIONS(3), }, [4038] = { - [sym_class_body] = STATE(3466), - [sym_type_constraints] = STATE(3357), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(6216), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__alpha_identifier] = ACTIONS(4842), + [anon_sym_AT] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_as] = ACTIONS(4842), + [anon_sym_EQ] = ACTIONS(4842), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_where] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_get] = ACTIONS(4842), + [anon_sym_set] = ACTIONS(4842), + [anon_sym_STAR] = ACTIONS(4842), + [sym_label] = ACTIONS(4844), + [anon_sym_in] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4844), + [anon_sym_QMARK_COLON] = ACTIONS(4844), + [anon_sym_AMP_AMP] = ACTIONS(4844), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(4842), + [anon_sym_COLON_COLON] = ACTIONS(4844), + [anon_sym_PLUS_EQ] = ACTIONS(4844), + [anon_sym_DASH_EQ] = ACTIONS(4844), + [anon_sym_STAR_EQ] = ACTIONS(4844), + [anon_sym_SLASH_EQ] = ACTIONS(4844), + [anon_sym_PERCENT_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4844), + [anon_sym_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4844), + [anon_sym_LT_EQ] = ACTIONS(4844), + [anon_sym_GT_EQ] = ACTIONS(4844), + [anon_sym_BANGin] = ACTIONS(4844), + [anon_sym_is] = ACTIONS(4842), + [anon_sym_BANGis] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4842), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_as_QMARK] = ACTIONS(4844), + [anon_sym_PLUS_PLUS] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4844), + [anon_sym_BANG_BANG] = ACTIONS(4844), + [anon_sym_suspend] = ACTIONS(4842), + [anon_sym_sealed] = ACTIONS(4842), + [anon_sym_annotation] = ACTIONS(4842), + [anon_sym_data] = ACTIONS(4842), + [anon_sym_inner] = ACTIONS(4842), + [anon_sym_value] = ACTIONS(4842), + [anon_sym_override] = ACTIONS(4842), + [anon_sym_lateinit] = ACTIONS(4842), + [anon_sym_public] = ACTIONS(4842), + [anon_sym_private] = ACTIONS(4842), + [anon_sym_internal] = ACTIONS(4842), + [anon_sym_protected] = ACTIONS(4842), + [anon_sym_tailrec] = ACTIONS(4842), + [anon_sym_operator] = ACTIONS(4842), + [anon_sym_infix] = ACTIONS(4842), + [anon_sym_inline] = ACTIONS(4842), + [anon_sym_external] = ACTIONS(4842), + [sym_property_modifier] = ACTIONS(4842), + [anon_sym_abstract] = ACTIONS(4842), + [anon_sym_final] = ACTIONS(4842), + [anon_sym_open] = ACTIONS(4842), + [anon_sym_vararg] = ACTIONS(4842), + [anon_sym_noinline] = ACTIONS(4842), + [anon_sym_crossinline] = ACTIONS(4842), + [anon_sym_expect] = ACTIONS(4842), + [anon_sym_actual] = ACTIONS(4842), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4844), + [sym__automatic_semicolon] = ACTIONS(4844), + [sym_safe_nav] = ACTIONS(4844), [sym_multiline_comment] = ACTIONS(3), }, [4039] = { - [sym_function_body] = STATE(3584), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_RBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_RPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_DASH_GT] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_while] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [sym__alpha_identifier] = ACTIONS(4854), + [anon_sym_AT] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4854), + [anon_sym_EQ] = ACTIONS(4854), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4854), + [anon_sym_where] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_get] = ACTIONS(4854), + [anon_sym_set] = ACTIONS(4854), + [anon_sym_STAR] = ACTIONS(4854), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4854), + [anon_sym_DOT_DOT] = ACTIONS(4856), + [anon_sym_QMARK_COLON] = ACTIONS(4856), + [anon_sym_AMP_AMP] = ACTIONS(4856), + [anon_sym_PIPE_PIPE] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(4854), + [anon_sym_COLON_COLON] = ACTIONS(4856), + [anon_sym_PLUS_EQ] = ACTIONS(4856), + [anon_sym_DASH_EQ] = ACTIONS(4856), + [anon_sym_STAR_EQ] = ACTIONS(4856), + [anon_sym_SLASH_EQ] = ACTIONS(4856), + [anon_sym_PERCENT_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ] = ACTIONS(4854), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ] = ACTIONS(4854), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4856), + [anon_sym_LT_EQ] = ACTIONS(4856), + [anon_sym_GT_EQ] = ACTIONS(4856), + [anon_sym_BANGin] = ACTIONS(4856), + [anon_sym_is] = ACTIONS(4854), + [anon_sym_BANGis] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4854), + [anon_sym_PERCENT] = ACTIONS(4854), + [anon_sym_as_QMARK] = ACTIONS(4856), + [anon_sym_PLUS_PLUS] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4856), + [anon_sym_suspend] = ACTIONS(4854), + [anon_sym_sealed] = ACTIONS(4854), + [anon_sym_annotation] = ACTIONS(4854), + [anon_sym_data] = ACTIONS(4854), + [anon_sym_inner] = ACTIONS(4854), + [anon_sym_value] = ACTIONS(4854), + [anon_sym_override] = ACTIONS(4854), + [anon_sym_lateinit] = ACTIONS(4854), + [anon_sym_public] = ACTIONS(4854), + [anon_sym_private] = ACTIONS(4854), + [anon_sym_internal] = ACTIONS(4854), + [anon_sym_protected] = ACTIONS(4854), + [anon_sym_tailrec] = ACTIONS(4854), + [anon_sym_operator] = ACTIONS(4854), + [anon_sym_infix] = ACTIONS(4854), + [anon_sym_inline] = ACTIONS(4854), + [anon_sym_external] = ACTIONS(4854), + [sym_property_modifier] = ACTIONS(4854), + [anon_sym_abstract] = ACTIONS(4854), + [anon_sym_final] = ACTIONS(4854), + [anon_sym_open] = ACTIONS(4854), + [anon_sym_vararg] = ACTIONS(4854), + [anon_sym_noinline] = ACTIONS(4854), + [anon_sym_crossinline] = ACTIONS(4854), + [anon_sym_expect] = ACTIONS(4854), + [anon_sym_actual] = ACTIONS(4854), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4856), + [sym__automatic_semicolon] = ACTIONS(4856), + [sym_safe_nav] = ACTIONS(4856), [sym_multiline_comment] = ACTIONS(3), }, [4040] = { - [sym_function_body] = STATE(3606), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_RBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_RPAREN] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_where] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4532), - [anon_sym_DASH_GT] = ACTIONS(4532), - [sym_label] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_while] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4532), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4530), - [anon_sym_sealed] = ACTIONS(4530), - [anon_sym_annotation] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_override] = ACTIONS(4530), - [anon_sym_lateinit] = ACTIONS(4530), - [anon_sym_public] = ACTIONS(4530), - [anon_sym_private] = ACTIONS(4530), - [anon_sym_internal] = ACTIONS(4530), - [anon_sym_protected] = ACTIONS(4530), - [anon_sym_tailrec] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_infix] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym_external] = ACTIONS(4530), - [sym_property_modifier] = ACTIONS(4530), - [anon_sym_abstract] = ACTIONS(4530), - [anon_sym_final] = ACTIONS(4530), - [anon_sym_open] = ACTIONS(4530), - [anon_sym_vararg] = ACTIONS(4530), - [anon_sym_noinline] = ACTIONS(4530), - [anon_sym_crossinline] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3994), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), [sym_multiline_comment] = ACTIONS(3), }, [4041] = { - [sym__alpha_identifier] = ACTIONS(7297), - [anon_sym_AT] = ACTIONS(7299), - [anon_sym_LBRACK] = ACTIONS(7299), - [anon_sym_typealias] = ACTIONS(7297), - [anon_sym_class] = ACTIONS(7297), - [anon_sym_fun] = ACTIONS(7297), - [anon_sym_interface] = ACTIONS(7297), - [anon_sym_enum] = ACTIONS(7297), - [anon_sym_LBRACE] = ACTIONS(7299), - [anon_sym_LPAREN] = ACTIONS(7299), - [anon_sym_val] = ACTIONS(7297), - [anon_sym_var] = ACTIONS(7297), - [anon_sym_object] = ACTIONS(7297), - [anon_sym_get] = ACTIONS(7297), - [anon_sym_set] = ACTIONS(7297), - [anon_sym_this] = ACTIONS(7297), - [anon_sym_super] = ACTIONS(7297), - [anon_sym_STAR] = ACTIONS(7299), - [sym_label] = ACTIONS(7297), - [anon_sym_for] = ACTIONS(7297), - [anon_sym_while] = ACTIONS(7297), - [anon_sym_do] = ACTIONS(7297), - [anon_sym_null] = ACTIONS(7297), - [anon_sym_if] = ACTIONS(7297), - [anon_sym_when] = ACTIONS(7297), - [anon_sym_try] = ACTIONS(7297), - [anon_sym_throw] = ACTIONS(7297), - [anon_sym_return] = ACTIONS(7297), - [anon_sym_continue] = ACTIONS(7297), - [anon_sym_break] = ACTIONS(7297), - [anon_sym_COLON_COLON] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7297), - [anon_sym_DASH] = ACTIONS(7297), - [anon_sym_PLUS_PLUS] = ACTIONS(7299), - [anon_sym_DASH_DASH] = ACTIONS(7299), - [anon_sym_BANG] = ACTIONS(7299), - [anon_sym_suspend] = ACTIONS(7297), - [anon_sym_sealed] = ACTIONS(7297), - [anon_sym_annotation] = ACTIONS(7297), - [anon_sym_data] = ACTIONS(7297), - [anon_sym_inner] = ACTIONS(7297), - [anon_sym_value] = ACTIONS(7297), - [anon_sym_override] = ACTIONS(7297), - [anon_sym_lateinit] = ACTIONS(7297), - [anon_sym_public] = ACTIONS(7297), - [anon_sym_private] = ACTIONS(7297), - [anon_sym_internal] = ACTIONS(7297), - [anon_sym_protected] = ACTIONS(7297), - [anon_sym_tailrec] = ACTIONS(7297), - [anon_sym_operator] = ACTIONS(7297), - [anon_sym_infix] = ACTIONS(7297), - [anon_sym_inline] = ACTIONS(7297), - [anon_sym_external] = ACTIONS(7297), - [sym_property_modifier] = ACTIONS(7297), - [anon_sym_abstract] = ACTIONS(7297), - [anon_sym_final] = ACTIONS(7297), - [anon_sym_open] = ACTIONS(7297), - [anon_sym_vararg] = ACTIONS(7297), - [anon_sym_noinline] = ACTIONS(7297), - [anon_sym_crossinline] = ACTIONS(7297), - [anon_sym_expect] = ACTIONS(7297), - [anon_sym_actual] = ACTIONS(7297), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7299), - [anon_sym_continue_AT] = ACTIONS(7299), - [anon_sym_break_AT] = ACTIONS(7299), - [anon_sym_this_AT] = ACTIONS(7299), - [anon_sym_super_AT] = ACTIONS(7299), - [sym_real_literal] = ACTIONS(7299), - [sym_integer_literal] = ACTIONS(7297), - [sym_hex_literal] = ACTIONS(7299), - [sym_bin_literal] = ACTIONS(7299), - [anon_sym_true] = ACTIONS(7297), - [anon_sym_false] = ACTIONS(7297), - [anon_sym_SQUOTE] = ACTIONS(7299), - [sym__backtick_identifier] = ACTIONS(7299), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7299), + [sym__alpha_identifier] = ACTIONS(4870), + [anon_sym_AT] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_as] = ACTIONS(4870), + [anon_sym_EQ] = ACTIONS(4870), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_RBRACE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4870), + [anon_sym_where] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_get] = ACTIONS(4870), + [anon_sym_set] = ACTIONS(4870), + [anon_sym_STAR] = ACTIONS(4870), + [sym_label] = ACTIONS(4872), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4872), + [anon_sym_AMP_AMP] = ACTIONS(4872), + [anon_sym_PIPE_PIPE] = ACTIONS(4872), + [anon_sym_else] = ACTIONS(4870), + [anon_sym_COLON_COLON] = ACTIONS(4872), + [anon_sym_PLUS_EQ] = ACTIONS(4872), + [anon_sym_DASH_EQ] = ACTIONS(4872), + [anon_sym_STAR_EQ] = ACTIONS(4872), + [anon_sym_SLASH_EQ] = ACTIONS(4872), + [anon_sym_PERCENT_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ] = ACTIONS(4870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4872), + [anon_sym_EQ_EQ] = ACTIONS(4870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4872), + [anon_sym_LT_EQ] = ACTIONS(4872), + [anon_sym_GT_EQ] = ACTIONS(4872), + [anon_sym_BANGin] = ACTIONS(4872), + [anon_sym_is] = ACTIONS(4870), + [anon_sym_BANGis] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4870), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4870), + [anon_sym_PERCENT] = ACTIONS(4870), + [anon_sym_as_QMARK] = ACTIONS(4872), + [anon_sym_PLUS_PLUS] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4872), + [anon_sym_BANG_BANG] = ACTIONS(4872), + [anon_sym_suspend] = ACTIONS(4870), + [anon_sym_sealed] = ACTIONS(4870), + [anon_sym_annotation] = ACTIONS(4870), + [anon_sym_data] = ACTIONS(4870), + [anon_sym_inner] = ACTIONS(4870), + [anon_sym_value] = ACTIONS(4870), + [anon_sym_override] = ACTIONS(4870), + [anon_sym_lateinit] = ACTIONS(4870), + [anon_sym_public] = ACTIONS(4870), + [anon_sym_private] = ACTIONS(4870), + [anon_sym_internal] = ACTIONS(4870), + [anon_sym_protected] = ACTIONS(4870), + [anon_sym_tailrec] = ACTIONS(4870), + [anon_sym_operator] = ACTIONS(4870), + [anon_sym_infix] = ACTIONS(4870), + [anon_sym_inline] = ACTIONS(4870), + [anon_sym_external] = ACTIONS(4870), + [sym_property_modifier] = ACTIONS(4870), + [anon_sym_abstract] = ACTIONS(4870), + [anon_sym_final] = ACTIONS(4870), + [anon_sym_open] = ACTIONS(4870), + [anon_sym_vararg] = ACTIONS(4870), + [anon_sym_noinline] = ACTIONS(4870), + [anon_sym_crossinline] = ACTIONS(4870), + [anon_sym_expect] = ACTIONS(4870), + [anon_sym_actual] = ACTIONS(4870), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4872), + [sym__automatic_semicolon] = ACTIONS(4872), + [sym_safe_nav] = ACTIONS(4872), + [sym_multiline_comment] = ACTIONS(3), }, [4042] = { - [sym_class_body] = STATE(3497), - [sym_type_constraints] = STATE(3443), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(7301), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_RBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_DASH_GT] = ACTIONS(4277), - [sym_label] = ACTIONS(4277), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_while] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4277), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_suspend] = ACTIONS(4275), - [anon_sym_sealed] = ACTIONS(4275), - [anon_sym_annotation] = ACTIONS(4275), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_override] = ACTIONS(4275), - [anon_sym_lateinit] = ACTIONS(4275), - [anon_sym_public] = ACTIONS(4275), - [anon_sym_private] = ACTIONS(4275), - [anon_sym_internal] = ACTIONS(4275), - [anon_sym_protected] = ACTIONS(4275), - [anon_sym_tailrec] = ACTIONS(4275), - [anon_sym_operator] = ACTIONS(4275), - [anon_sym_infix] = ACTIONS(4275), - [anon_sym_inline] = ACTIONS(4275), - [anon_sym_external] = ACTIONS(4275), - [sym_property_modifier] = ACTIONS(4275), - [anon_sym_abstract] = ACTIONS(4275), - [anon_sym_final] = ACTIONS(4275), - [anon_sym_open] = ACTIONS(4275), - [anon_sym_vararg] = ACTIONS(4275), - [anon_sym_noinline] = ACTIONS(4275), - [anon_sym_crossinline] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), + [sym__alpha_identifier] = ACTIONS(4880), + [anon_sym_AT] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_as] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_COMMA] = ACTIONS(4882), + [anon_sym_LT] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4882), + [anon_sym_get] = ACTIONS(4880), + [anon_sym_set] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [sym_label] = ACTIONS(4882), + [anon_sym_in] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_QMARK_COLON] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_PIPE_PIPE] = ACTIONS(4882), + [anon_sym_else] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_PLUS_EQ] = ACTIONS(4882), + [anon_sym_DASH_EQ] = ACTIONS(4882), + [anon_sym_STAR_EQ] = ACTIONS(4882), + [anon_sym_SLASH_EQ] = ACTIONS(4882), + [anon_sym_PERCENT_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4882), + [anon_sym_BANGin] = ACTIONS(4882), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_BANGis] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_as_QMARK] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4882), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_BANG_BANG] = ACTIONS(4882), + [anon_sym_suspend] = ACTIONS(4880), + [anon_sym_sealed] = ACTIONS(4880), + [anon_sym_annotation] = ACTIONS(4880), + [anon_sym_data] = ACTIONS(4880), + [anon_sym_inner] = ACTIONS(4880), + [anon_sym_value] = ACTIONS(4880), + [anon_sym_override] = ACTIONS(4880), + [anon_sym_lateinit] = ACTIONS(4880), + [anon_sym_public] = ACTIONS(4880), + [anon_sym_private] = ACTIONS(4880), + [anon_sym_internal] = ACTIONS(4880), + [anon_sym_protected] = ACTIONS(4880), + [anon_sym_tailrec] = ACTIONS(4880), + [anon_sym_operator] = ACTIONS(4880), + [anon_sym_infix] = ACTIONS(4880), + [anon_sym_inline] = ACTIONS(4880), + [anon_sym_external] = ACTIONS(4880), + [sym_property_modifier] = ACTIONS(4880), + [anon_sym_abstract] = ACTIONS(4880), + [anon_sym_final] = ACTIONS(4880), + [anon_sym_open] = ACTIONS(4880), + [anon_sym_vararg] = ACTIONS(4880), + [anon_sym_noinline] = ACTIONS(4880), + [anon_sym_crossinline] = ACTIONS(4880), + [anon_sym_expect] = ACTIONS(4880), + [anon_sym_actual] = ACTIONS(4880), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4882), + [sym__automatic_semicolon] = ACTIONS(4882), + [sym_safe_nav] = ACTIONS(4882), [sym_multiline_comment] = ACTIONS(3), }, [4043] = { - [sym_class_body] = STATE(3500), - [sym_type_constraints] = STATE(3439), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(6222), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_DASH_GT] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__alpha_identifier] = ACTIONS(4888), + [anon_sym_AT] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_as] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4890), + [anon_sym_RBRACE] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4890), + [anon_sym_COMMA] = ACTIONS(4890), + [anon_sym_LT] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_where] = ACTIONS(4888), + [anon_sym_DOT] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4890), + [anon_sym_get] = ACTIONS(4888), + [anon_sym_set] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [sym_label] = ACTIONS(4890), + [anon_sym_in] = ACTIONS(4888), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_QMARK_COLON] = ACTIONS(4890), + [anon_sym_AMP_AMP] = ACTIONS(4890), + [anon_sym_PIPE_PIPE] = ACTIONS(4890), + [anon_sym_else] = ACTIONS(4888), + [anon_sym_COLON_COLON] = ACTIONS(4890), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4890), + [anon_sym_BANGin] = ACTIONS(4890), + [anon_sym_is] = ACTIONS(4888), + [anon_sym_BANGis] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_as_QMARK] = ACTIONS(4890), + [anon_sym_PLUS_PLUS] = ACTIONS(4890), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_BANG_BANG] = ACTIONS(4890), + [anon_sym_suspend] = ACTIONS(4888), + [anon_sym_sealed] = ACTIONS(4888), + [anon_sym_annotation] = ACTIONS(4888), + [anon_sym_data] = ACTIONS(4888), + [anon_sym_inner] = ACTIONS(4888), + [anon_sym_value] = ACTIONS(4888), + [anon_sym_override] = ACTIONS(4888), + [anon_sym_lateinit] = ACTIONS(4888), + [anon_sym_public] = ACTIONS(4888), + [anon_sym_private] = ACTIONS(4888), + [anon_sym_internal] = ACTIONS(4888), + [anon_sym_protected] = ACTIONS(4888), + [anon_sym_tailrec] = ACTIONS(4888), + [anon_sym_operator] = ACTIONS(4888), + [anon_sym_infix] = ACTIONS(4888), + [anon_sym_inline] = ACTIONS(4888), + [anon_sym_external] = ACTIONS(4888), + [sym_property_modifier] = ACTIONS(4888), + [anon_sym_abstract] = ACTIONS(4888), + [anon_sym_final] = ACTIONS(4888), + [anon_sym_open] = ACTIONS(4888), + [anon_sym_vararg] = ACTIONS(4888), + [anon_sym_noinline] = ACTIONS(4888), + [anon_sym_crossinline] = ACTIONS(4888), + [anon_sym_expect] = ACTIONS(4888), + [anon_sym_actual] = ACTIONS(4888), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4890), + [sym__automatic_semicolon] = ACTIONS(4890), + [sym_safe_nav] = ACTIONS(4890), [sym_multiline_comment] = ACTIONS(3), }, [4044] = { - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(4597), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_LT] = ACTIONS(4595), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_where] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [sym_label] = ACTIONS(4597), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_suspend] = ACTIONS(4595), - [anon_sym_sealed] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4595), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_override] = ACTIONS(4595), - [anon_sym_lateinit] = ACTIONS(4595), - [anon_sym_public] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4595), - [anon_sym_internal] = ACTIONS(4595), - [anon_sym_protected] = ACTIONS(4595), - [anon_sym_tailrec] = ACTIONS(4595), - [anon_sym_operator] = ACTIONS(4595), - [anon_sym_infix] = ACTIONS(4595), - [anon_sym_inline] = ACTIONS(4595), - [anon_sym_external] = ACTIONS(4595), - [sym_property_modifier] = ACTIONS(4595), - [anon_sym_abstract] = ACTIONS(4595), - [anon_sym_final] = ACTIONS(4595), - [anon_sym_open] = ACTIONS(4595), - [anon_sym_vararg] = ACTIONS(4595), - [anon_sym_noinline] = ACTIONS(4595), - [anon_sym_crossinline] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4597), - [sym__automatic_semicolon] = ACTIONS(4597), - [sym_safe_nav] = ACTIONS(4597), + [sym__alpha_identifier] = ACTIONS(4910), + [anon_sym_AT] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_as] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_RBRACE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_where] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_get] = ACTIONS(4910), + [anon_sym_set] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4910), + [sym_label] = ACTIONS(4912), + [anon_sym_in] = ACTIONS(4910), + [anon_sym_DOT_DOT] = ACTIONS(4912), + [anon_sym_QMARK_COLON] = ACTIONS(4912), + [anon_sym_AMP_AMP] = ACTIONS(4912), + [anon_sym_PIPE_PIPE] = ACTIONS(4912), + [anon_sym_else] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_PLUS_EQ] = ACTIONS(4912), + [anon_sym_DASH_EQ] = ACTIONS(4912), + [anon_sym_STAR_EQ] = ACTIONS(4912), + [anon_sym_SLASH_EQ] = ACTIONS(4912), + [anon_sym_PERCENT_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ] = ACTIONS(4910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4912), + [anon_sym_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4912), + [anon_sym_LT_EQ] = ACTIONS(4912), + [anon_sym_GT_EQ] = ACTIONS(4912), + [anon_sym_BANGin] = ACTIONS(4912), + [anon_sym_is] = ACTIONS(4910), + [anon_sym_BANGis] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_PERCENT] = ACTIONS(4910), + [anon_sym_as_QMARK] = ACTIONS(4912), + [anon_sym_PLUS_PLUS] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4912), + [anon_sym_BANG_BANG] = ACTIONS(4912), + [anon_sym_suspend] = ACTIONS(4910), + [anon_sym_sealed] = ACTIONS(4910), + [anon_sym_annotation] = ACTIONS(4910), + [anon_sym_data] = ACTIONS(4910), + [anon_sym_inner] = ACTIONS(4910), + [anon_sym_value] = ACTIONS(4910), + [anon_sym_override] = ACTIONS(4910), + [anon_sym_lateinit] = ACTIONS(4910), + [anon_sym_public] = ACTIONS(4910), + [anon_sym_private] = ACTIONS(4910), + [anon_sym_internal] = ACTIONS(4910), + [anon_sym_protected] = ACTIONS(4910), + [anon_sym_tailrec] = ACTIONS(4910), + [anon_sym_operator] = ACTIONS(4910), + [anon_sym_infix] = ACTIONS(4910), + [anon_sym_inline] = ACTIONS(4910), + [anon_sym_external] = ACTIONS(4910), + [sym_property_modifier] = ACTIONS(4910), + [anon_sym_abstract] = ACTIONS(4910), + [anon_sym_final] = ACTIONS(4910), + [anon_sym_open] = ACTIONS(4910), + [anon_sym_vararg] = ACTIONS(4910), + [anon_sym_noinline] = ACTIONS(4910), + [anon_sym_crossinline] = ACTIONS(4910), + [anon_sym_expect] = ACTIONS(4910), + [anon_sym_actual] = ACTIONS(4910), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4912), + [sym__automatic_semicolon] = ACTIONS(4912), + [sym_safe_nav] = ACTIONS(4912), [sym_multiline_comment] = ACTIONS(3), }, [4045] = { - [sym__alpha_identifier] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(1800), - [anon_sym_set] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [sym_label] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_QMARK_COLON] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1800), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_BANGin] = ACTIONS(1802), - [anon_sym_is] = ACTIONS(1800), - [anon_sym_BANGis] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_as_QMARK] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_BANG_BANG] = ACTIONS(1802), - [anon_sym_suspend] = ACTIONS(1800), - [anon_sym_sealed] = ACTIONS(1800), - [anon_sym_annotation] = ACTIONS(1800), - [anon_sym_data] = ACTIONS(1800), - [anon_sym_inner] = ACTIONS(1800), - [anon_sym_value] = ACTIONS(1800), - [anon_sym_override] = ACTIONS(1800), - [anon_sym_lateinit] = ACTIONS(1800), - [anon_sym_public] = ACTIONS(1800), - [anon_sym_private] = ACTIONS(1800), - [anon_sym_internal] = ACTIONS(1800), - [anon_sym_protected] = ACTIONS(1800), - [anon_sym_tailrec] = ACTIONS(1800), - [anon_sym_operator] = ACTIONS(1800), - [anon_sym_infix] = ACTIONS(1800), - [anon_sym_inline] = ACTIONS(1800), - [anon_sym_external] = ACTIONS(1800), - [sym_property_modifier] = ACTIONS(1800), - [anon_sym_abstract] = ACTIONS(1800), - [anon_sym_final] = ACTIONS(1800), - [anon_sym_open] = ACTIONS(1800), - [anon_sym_vararg] = ACTIONS(1800), - [anon_sym_noinline] = ACTIONS(1800), - [anon_sym_crossinline] = ACTIONS(1800), - [anon_sym_expect] = ACTIONS(1800), - [anon_sym_actual] = ACTIONS(1800), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1802), - [sym_safe_nav] = ACTIONS(1802), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7213), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), }, [4046] = { - [sym_function_body] = STATE(3966), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4453), - [sym_label] = ACTIONS(4455), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_PLUS_EQ] = ACTIONS(4455), - [anon_sym_DASH_EQ] = ACTIONS(4455), - [anon_sym_STAR_EQ] = ACTIONS(4455), - [anon_sym_SLASH_EQ] = ACTIONS(4455), - [anon_sym_PERCENT_EQ] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4453), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_suspend] = ACTIONS(4453), - [anon_sym_sealed] = ACTIONS(4453), - [anon_sym_annotation] = ACTIONS(4453), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4453), - [anon_sym_lateinit] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_internal] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_tailrec] = ACTIONS(4453), - [anon_sym_operator] = ACTIONS(4453), - [anon_sym_infix] = ACTIONS(4453), - [anon_sym_inline] = ACTIONS(4453), - [anon_sym_external] = ACTIONS(4453), - [sym_property_modifier] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_open] = ACTIONS(4453), - [anon_sym_vararg] = ACTIONS(4453), - [anon_sym_noinline] = ACTIONS(4453), - [anon_sym_crossinline] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4455), - [sym__automatic_semicolon] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4047] = { - [sym_function_body] = STATE(4037), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4048] = { - [sym_function_body] = STATE(4049), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4049] = { - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [sym_value_arguments] = STATE(3531), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_RBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(7239), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_DASH_GT] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_while] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), [sym_multiline_comment] = ACTIONS(3), }, [4050] = { - [sym__alpha_identifier] = ACTIONS(5209), - [anon_sym_AT] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_as] = ACTIONS(5209), - [anon_sym_EQ] = ACTIONS(5209), - [anon_sym_LBRACE] = ACTIONS(5211), - [anon_sym_RBRACE] = ACTIONS(5211), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_where] = ACTIONS(5209), - [anon_sym_DOT] = ACTIONS(5209), - [anon_sym_SEMI] = ACTIONS(5211), - [anon_sym_get] = ACTIONS(5209), - [anon_sym_set] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [sym_label] = ACTIONS(5211), - [anon_sym_in] = ACTIONS(5209), - [anon_sym_DOT_DOT] = ACTIONS(5211), - [anon_sym_QMARK_COLON] = ACTIONS(5211), - [anon_sym_AMP_AMP] = ACTIONS(5211), - [anon_sym_PIPE_PIPE] = ACTIONS(5211), - [anon_sym_else] = ACTIONS(5209), - [anon_sym_COLON_COLON] = ACTIONS(5211), - [anon_sym_PLUS_EQ] = ACTIONS(5211), - [anon_sym_DASH_EQ] = ACTIONS(5211), - [anon_sym_STAR_EQ] = ACTIONS(5211), - [anon_sym_SLASH_EQ] = ACTIONS(5211), - [anon_sym_PERCENT_EQ] = ACTIONS(5211), - [anon_sym_BANG_EQ] = ACTIONS(5209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5211), - [anon_sym_EQ_EQ] = ACTIONS(5209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5211), - [anon_sym_LT_EQ] = ACTIONS(5211), - [anon_sym_GT_EQ] = ACTIONS(5211), - [anon_sym_BANGin] = ACTIONS(5211), - [anon_sym_is] = ACTIONS(5209), - [anon_sym_BANGis] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_PERCENT] = ACTIONS(5209), - [anon_sym_as_QMARK] = ACTIONS(5211), - [anon_sym_PLUS_PLUS] = ACTIONS(5211), - [anon_sym_DASH_DASH] = ACTIONS(5211), - [anon_sym_BANG_BANG] = ACTIONS(5211), - [anon_sym_suspend] = ACTIONS(5209), - [anon_sym_sealed] = ACTIONS(5209), - [anon_sym_annotation] = ACTIONS(5209), - [anon_sym_data] = ACTIONS(5209), - [anon_sym_inner] = ACTIONS(5209), - [anon_sym_value] = ACTIONS(5209), - [anon_sym_override] = ACTIONS(5209), - [anon_sym_lateinit] = ACTIONS(5209), - [anon_sym_public] = ACTIONS(5209), - [anon_sym_private] = ACTIONS(5209), - [anon_sym_internal] = ACTIONS(5209), - [anon_sym_protected] = ACTIONS(5209), - [anon_sym_tailrec] = ACTIONS(5209), - [anon_sym_operator] = ACTIONS(5209), - [anon_sym_infix] = ACTIONS(5209), - [anon_sym_inline] = ACTIONS(5209), - [anon_sym_external] = ACTIONS(5209), - [sym_property_modifier] = ACTIONS(5209), - [anon_sym_abstract] = ACTIONS(5209), - [anon_sym_final] = ACTIONS(5209), - [anon_sym_open] = ACTIONS(5209), - [anon_sym_vararg] = ACTIONS(5209), - [anon_sym_noinline] = ACTIONS(5209), - [anon_sym_crossinline] = ACTIONS(5209), - [anon_sym_expect] = ACTIONS(5209), - [anon_sym_actual] = ACTIONS(5209), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5211), - [sym__automatic_semicolon] = ACTIONS(5211), - [sym_safe_nav] = ACTIONS(5211), - [sym_multiline_comment] = ACTIONS(3), - }, - [4051] = { - [sym__alpha_identifier] = ACTIONS(5201), - [anon_sym_AT] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_as] = ACTIONS(5201), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(5203), - [anon_sym_RBRACE] = ACTIONS(5203), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_where] = ACTIONS(5201), - [anon_sym_DOT] = ACTIONS(5201), - [anon_sym_SEMI] = ACTIONS(5203), - [anon_sym_get] = ACTIONS(5201), - [anon_sym_set] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [sym_label] = ACTIONS(5203), - [anon_sym_in] = ACTIONS(5201), - [anon_sym_DOT_DOT] = ACTIONS(5203), - [anon_sym_QMARK_COLON] = ACTIONS(5203), - [anon_sym_AMP_AMP] = ACTIONS(5203), - [anon_sym_PIPE_PIPE] = ACTIONS(5203), - [anon_sym_else] = ACTIONS(5201), - [anon_sym_COLON_COLON] = ACTIONS(5203), - [anon_sym_PLUS_EQ] = ACTIONS(5203), - [anon_sym_DASH_EQ] = ACTIONS(5203), - [anon_sym_STAR_EQ] = ACTIONS(5203), - [anon_sym_SLASH_EQ] = ACTIONS(5203), - [anon_sym_PERCENT_EQ] = ACTIONS(5203), - [anon_sym_BANG_EQ] = ACTIONS(5201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5203), - [anon_sym_EQ_EQ] = ACTIONS(5201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5203), - [anon_sym_LT_EQ] = ACTIONS(5203), - [anon_sym_GT_EQ] = ACTIONS(5203), - [anon_sym_BANGin] = ACTIONS(5203), - [anon_sym_is] = ACTIONS(5201), - [anon_sym_BANGis] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_PERCENT] = ACTIONS(5201), - [anon_sym_as_QMARK] = ACTIONS(5203), - [anon_sym_PLUS_PLUS] = ACTIONS(5203), - [anon_sym_DASH_DASH] = ACTIONS(5203), - [anon_sym_BANG_BANG] = ACTIONS(5203), - [anon_sym_suspend] = ACTIONS(5201), - [anon_sym_sealed] = ACTIONS(5201), - [anon_sym_annotation] = ACTIONS(5201), - [anon_sym_data] = ACTIONS(5201), - [anon_sym_inner] = ACTIONS(5201), - [anon_sym_value] = ACTIONS(5201), - [anon_sym_override] = ACTIONS(5201), - [anon_sym_lateinit] = ACTIONS(5201), - [anon_sym_public] = ACTIONS(5201), - [anon_sym_private] = ACTIONS(5201), - [anon_sym_internal] = ACTIONS(5201), - [anon_sym_protected] = ACTIONS(5201), - [anon_sym_tailrec] = ACTIONS(5201), - [anon_sym_operator] = ACTIONS(5201), - [anon_sym_infix] = ACTIONS(5201), - [anon_sym_inline] = ACTIONS(5201), - [anon_sym_external] = ACTIONS(5201), - [sym_property_modifier] = ACTIONS(5201), - [anon_sym_abstract] = ACTIONS(5201), - [anon_sym_final] = ACTIONS(5201), - [anon_sym_open] = ACTIONS(5201), - [anon_sym_vararg] = ACTIONS(5201), - [anon_sym_noinline] = ACTIONS(5201), - [anon_sym_crossinline] = ACTIONS(5201), - [anon_sym_expect] = ACTIONS(5201), - [anon_sym_actual] = ACTIONS(5201), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5203), - [sym__automatic_semicolon] = ACTIONS(5203), - [sym_safe_nav] = ACTIONS(5203), - [sym_multiline_comment] = ACTIONS(3), - }, - [4052] = { - [sym_type_constraints] = STATE(3435), - [sym_enum_class_body] = STATE(3500), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(6268), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_DASH_GT] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), - [sym_multiline_comment] = ACTIONS(3), - }, - [4053] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(7041), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7274), - [anon_sym_DOT] = ACTIONS(6830), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7276), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_DOT_DOT] = ACTIONS(7267), - [anon_sym_QMARK_COLON] = ACTIONS(7278), - [anon_sym_AMP_AMP] = ACTIONS(7280), - [anon_sym_PIPE_PIPE] = ACTIONS(7282), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(6840), + [anon_sym_COLON_COLON] = ACTIONS(7061), [anon_sym_PLUS_EQ] = ACTIONS(3158), [anon_sym_DASH_EQ] = ACTIONS(3158), [anon_sym_STAR_EQ] = ACTIONS(3158), [anon_sym_SLASH_EQ] = ACTIONS(3158), [anon_sym_PERCENT_EQ] = ACTIONS(3158), - [anon_sym_BANG_EQ] = ACTIONS(7284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7286), - [anon_sym_EQ_EQ] = ACTIONS(7284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7286), - [anon_sym_LT_EQ] = ACTIONS(7288), - [anon_sym_GT_EQ] = ACTIONS(7288), - [anon_sym_BANGin] = ACTIONS(7290), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4054] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4051] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7041), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7274), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7276), - [anon_sym_while] = ACTIONS(3105), - [anon_sym_DOT_DOT] = ACTIONS(7267), - [anon_sym_QMARK_COLON] = ACTIONS(7278), - [anon_sym_AMP_AMP] = ACTIONS(7280), - [anon_sym_PIPE_PIPE] = ACTIONS(7282), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(7284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7286), - [anon_sym_EQ_EQ] = ACTIONS(7284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7286), - [anon_sym_LT_EQ] = ACTIONS(7288), - [anon_sym_GT_EQ] = ACTIONS(7288), - [anon_sym_BANGin] = ACTIONS(7290), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4055] = { - [sym_function_body] = STATE(4087), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4183), - [sym_label] = ACTIONS(4185), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_PLUS_EQ] = ACTIONS(4185), - [anon_sym_DASH_EQ] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4185), - [anon_sym_SLASH_EQ] = ACTIONS(4185), - [anon_sym_PERCENT_EQ] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4183), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), - [sym_multiline_comment] = ACTIONS(3), - }, - [4056] = { - [sym_function_body] = STATE(4106), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - }, - [4057] = { - [sym_function_body] = STATE(4127), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4058] = { - [sym_function_body] = STATE(4139), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - }, - [4059] = { - [sym_class_body] = STATE(3574), - [sym_type_constraints] = STATE(3419), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7303), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_RBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [anon_sym_DASH_GT] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [4052] = { + [sym_class_body] = STATE(3546), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7241), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_RBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_RPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_DASH_GT] = ACTIONS(4351), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_while] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), [sym_multiline_comment] = ACTIONS(3), }, - [4060] = { - [sym_type_constraints] = STATE(3416), - [sym_enum_class_body] = STATE(3574), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7305), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_RBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [anon_sym_DASH_GT] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [4053] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4061] = { - [sym_class_body] = STATE(3597), - [sym_type_constraints] = STATE(3409), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(6214), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_DASH_GT] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [4054] = { + [sym_class_body] = STATE(3589), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7243), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_RBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [anon_sym_DASH_GT] = ACTIONS(4499), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_while] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), [sym_multiline_comment] = ACTIONS(3), }, - [4062] = { - [sym_type_constraints] = STATE(3408), - [sym_enum_class_body] = STATE(3597), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(6218), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_DASH_GT] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [4055] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7245), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), [sym_multiline_comment] = ACTIONS(3), }, - [4063] = { - [sym_class_body] = STATE(3652), - [sym_type_constraints] = STATE(3394), + [4056] = { [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7307), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_RBRACK] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), [anon_sym_as] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_RPAREN] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5267), + [anon_sym_RPAREN] = ACTIONS(4284), [anon_sym_LT] = ACTIONS(4281), [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5594), [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4284), [anon_sym_get] = ACTIONS(4281), [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [anon_sym_DASH_GT] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4284), [anon_sym_in] = ACTIONS(4281), [anon_sym_while] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4284), [anon_sym_PLUS] = ACTIONS(4281), [anon_sym_DASH] = ACTIONS(4281), [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), [anon_sym_suspend] = ACTIONS(4281), [anon_sym_sealed] = ACTIONS(4281), [anon_sym_annotation] = ACTIONS(4281), @@ -452396,3388 +449272,2165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(4281), [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), }, - [4064] = { - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_fun] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(7211), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_object] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_this] = ACTIONS(4435), - [anon_sym_super] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4437), - [sym_label] = ACTIONS(4435), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_null] = ACTIONS(4435), - [anon_sym_if] = ACTIONS(4435), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_when] = ACTIONS(4435), - [anon_sym_try] = ACTIONS(4435), - [anon_sym_throw] = ACTIONS(4435), - [anon_sym_return] = ACTIONS(4435), - [anon_sym_continue] = ACTIONS(4435), - [anon_sym_break] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4437), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4435), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4437), - [anon_sym_continue_AT] = ACTIONS(4437), - [anon_sym_break_AT] = ACTIONS(4437), - [anon_sym_this_AT] = ACTIONS(4437), - [anon_sym_super_AT] = ACTIONS(4437), - [sym_real_literal] = ACTIONS(4437), - [sym_integer_literal] = ACTIONS(4435), - [sym_hex_literal] = ACTIONS(4437), - [sym_bin_literal] = ACTIONS(4437), - [anon_sym_true] = ACTIONS(4435), - [anon_sym_false] = ACTIONS(4435), - [anon_sym_SQUOTE] = ACTIONS(4437), - [sym__backtick_identifier] = ACTIONS(4437), - [sym__automatic_semicolon] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4437), + [4057] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), }, - [4065] = { - [sym_type_constraints] = STATE(3392), - [sym_enum_class_body] = STATE(3652), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7309), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_RBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_RPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [anon_sym_DASH_GT] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_while] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), - [sym_multiline_comment] = ACTIONS(3), - }, - [4066] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(5830), - [anon_sym_COMMA] = ACTIONS(4239), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_where] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4239), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_suspend] = ACTIONS(4236), - [anon_sym_sealed] = ACTIONS(4236), - [anon_sym_annotation] = ACTIONS(4236), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4236), - [anon_sym_lateinit] = ACTIONS(4236), - [anon_sym_public] = ACTIONS(4236), - [anon_sym_private] = ACTIONS(4236), - [anon_sym_internal] = ACTIONS(4236), - [anon_sym_protected] = ACTIONS(4236), - [anon_sym_tailrec] = ACTIONS(4236), - [anon_sym_operator] = ACTIONS(4236), - [anon_sym_infix] = ACTIONS(4236), - [anon_sym_inline] = ACTIONS(4236), - [anon_sym_external] = ACTIONS(4236), - [sym_property_modifier] = ACTIONS(4236), - [anon_sym_abstract] = ACTIONS(4236), - [anon_sym_final] = ACTIONS(4236), - [anon_sym_open] = ACTIONS(4236), - [anon_sym_vararg] = ACTIONS(4236), - [anon_sym_noinline] = ACTIONS(4236), - [anon_sym_crossinline] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), - [sym_multiline_comment] = ACTIONS(3), - }, - [4067] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(4350), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_where] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4350), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_suspend] = ACTIONS(4347), - [anon_sym_sealed] = ACTIONS(4347), - [anon_sym_annotation] = ACTIONS(4347), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4347), - [anon_sym_lateinit] = ACTIONS(4347), - [anon_sym_public] = ACTIONS(4347), - [anon_sym_private] = ACTIONS(4347), - [anon_sym_internal] = ACTIONS(4347), - [anon_sym_protected] = ACTIONS(4347), - [anon_sym_tailrec] = ACTIONS(4347), - [anon_sym_operator] = ACTIONS(4347), - [anon_sym_infix] = ACTIONS(4347), - [anon_sym_inline] = ACTIONS(4347), - [anon_sym_external] = ACTIONS(4347), - [sym_property_modifier] = ACTIONS(4347), - [anon_sym_abstract] = ACTIONS(4347), - [anon_sym_final] = ACTIONS(4347), - [anon_sym_open] = ACTIONS(4347), - [anon_sym_vararg] = ACTIONS(4347), - [anon_sym_noinline] = ACTIONS(4347), - [anon_sym_crossinline] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), - [sym_multiline_comment] = ACTIONS(3), - }, - [4068] = { - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_object] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_this] = ACTIONS(4530), - [anon_sym_super] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4532), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_null] = ACTIONS(4530), - [anon_sym_if] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_when] = ACTIONS(4530), - [anon_sym_try] = ACTIONS(4530), - [anon_sym_throw] = ACTIONS(4530), - [anon_sym_return] = ACTIONS(4530), - [anon_sym_continue] = ACTIONS(4530), - [anon_sym_break] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4532), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4532), - [anon_sym_continue_AT] = ACTIONS(4532), - [anon_sym_break_AT] = ACTIONS(4532), - [anon_sym_this_AT] = ACTIONS(4532), - [anon_sym_super_AT] = ACTIONS(4532), - [sym_real_literal] = ACTIONS(4532), - [sym_integer_literal] = ACTIONS(4530), - [sym_hex_literal] = ACTIONS(4532), - [sym_bin_literal] = ACTIONS(4532), - [anon_sym_true] = ACTIONS(4530), - [anon_sym_false] = ACTIONS(4530), - [anon_sym_SQUOTE] = ACTIONS(4532), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4532), - }, - [4069] = { - [sym__alpha_identifier] = ACTIONS(5069), - [anon_sym_AT] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_as] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5069), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_RBRACE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_where] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_get] = ACTIONS(5069), - [anon_sym_set] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [sym_label] = ACTIONS(5071), - [anon_sym_in] = ACTIONS(5069), - [anon_sym_DOT_DOT] = ACTIONS(5071), - [anon_sym_QMARK_COLON] = ACTIONS(5071), - [anon_sym_AMP_AMP] = ACTIONS(5071), - [anon_sym_PIPE_PIPE] = ACTIONS(5071), - [anon_sym_else] = ACTIONS(5069), - [anon_sym_COLON_COLON] = ACTIONS(5071), - [anon_sym_PLUS_EQ] = ACTIONS(5071), - [anon_sym_DASH_EQ] = ACTIONS(5071), - [anon_sym_STAR_EQ] = ACTIONS(5071), - [anon_sym_SLASH_EQ] = ACTIONS(5071), - [anon_sym_PERCENT_EQ] = ACTIONS(5071), - [anon_sym_BANG_EQ] = ACTIONS(5069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5071), - [anon_sym_EQ_EQ] = ACTIONS(5069), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5071), - [anon_sym_LT_EQ] = ACTIONS(5071), - [anon_sym_GT_EQ] = ACTIONS(5071), - [anon_sym_BANGin] = ACTIONS(5071), - [anon_sym_is] = ACTIONS(5069), - [anon_sym_BANGis] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_PERCENT] = ACTIONS(5069), - [anon_sym_as_QMARK] = ACTIONS(5071), - [anon_sym_PLUS_PLUS] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5071), - [anon_sym_BANG_BANG] = ACTIONS(5071), - [anon_sym_suspend] = ACTIONS(5069), - [anon_sym_sealed] = ACTIONS(5069), - [anon_sym_annotation] = ACTIONS(5069), - [anon_sym_data] = ACTIONS(5069), - [anon_sym_inner] = ACTIONS(5069), - [anon_sym_value] = ACTIONS(5069), - [anon_sym_override] = ACTIONS(5069), - [anon_sym_lateinit] = ACTIONS(5069), - [anon_sym_public] = ACTIONS(5069), - [anon_sym_private] = ACTIONS(5069), - [anon_sym_internal] = ACTIONS(5069), - [anon_sym_protected] = ACTIONS(5069), - [anon_sym_tailrec] = ACTIONS(5069), - [anon_sym_operator] = ACTIONS(5069), - [anon_sym_infix] = ACTIONS(5069), - [anon_sym_inline] = ACTIONS(5069), - [anon_sym_external] = ACTIONS(5069), - [sym_property_modifier] = ACTIONS(5069), - [anon_sym_abstract] = ACTIONS(5069), - [anon_sym_final] = ACTIONS(5069), - [anon_sym_open] = ACTIONS(5069), - [anon_sym_vararg] = ACTIONS(5069), - [anon_sym_noinline] = ACTIONS(5069), - [anon_sym_crossinline] = ACTIONS(5069), - [anon_sym_expect] = ACTIONS(5069), - [anon_sym_actual] = ACTIONS(5069), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5071), - [sym__automatic_semicolon] = ACTIONS(5071), - [sym_safe_nav] = ACTIONS(5071), - [sym_multiline_comment] = ACTIONS(3), - }, - [4070] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(4239), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_where] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4239), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4239), - [anon_sym_DASH_EQ] = ACTIONS(4239), - [anon_sym_STAR_EQ] = ACTIONS(4239), - [anon_sym_SLASH_EQ] = ACTIONS(4239), - [anon_sym_PERCENT_EQ] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_suspend] = ACTIONS(4236), - [anon_sym_sealed] = ACTIONS(4236), - [anon_sym_annotation] = ACTIONS(4236), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4236), - [anon_sym_lateinit] = ACTIONS(4236), - [anon_sym_public] = ACTIONS(4236), - [anon_sym_private] = ACTIONS(4236), - [anon_sym_internal] = ACTIONS(4236), - [anon_sym_protected] = ACTIONS(4236), - [anon_sym_tailrec] = ACTIONS(4236), - [anon_sym_operator] = ACTIONS(4236), - [anon_sym_infix] = ACTIONS(4236), - [anon_sym_inline] = ACTIONS(4236), - [anon_sym_external] = ACTIONS(4236), - [sym_property_modifier] = ACTIONS(4236), - [anon_sym_abstract] = ACTIONS(4236), - [anon_sym_final] = ACTIONS(4236), - [anon_sym_open] = ACTIONS(4236), - [anon_sym_vararg] = ACTIONS(4236), - [anon_sym_noinline] = ACTIONS(4236), - [anon_sym_crossinline] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), - [sym_multiline_comment] = ACTIONS(3), - }, - [4071] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(4350), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_where] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4350), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4350), - [anon_sym_DASH_EQ] = ACTIONS(4350), - [anon_sym_STAR_EQ] = ACTIONS(4350), - [anon_sym_SLASH_EQ] = ACTIONS(4350), - [anon_sym_PERCENT_EQ] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_suspend] = ACTIONS(4347), - [anon_sym_sealed] = ACTIONS(4347), - [anon_sym_annotation] = ACTIONS(4347), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4347), - [anon_sym_lateinit] = ACTIONS(4347), - [anon_sym_public] = ACTIONS(4347), - [anon_sym_private] = ACTIONS(4347), - [anon_sym_internal] = ACTIONS(4347), - [anon_sym_protected] = ACTIONS(4347), - [anon_sym_tailrec] = ACTIONS(4347), - [anon_sym_operator] = ACTIONS(4347), - [anon_sym_infix] = ACTIONS(4347), - [anon_sym_inline] = ACTIONS(4347), - [anon_sym_external] = ACTIONS(4347), - [sym_property_modifier] = ACTIONS(4347), - [anon_sym_abstract] = ACTIONS(4347), - [anon_sym_final] = ACTIONS(4347), - [anon_sym_open] = ACTIONS(4347), - [anon_sym_vararg] = ACTIONS(4347), - [anon_sym_noinline] = ACTIONS(4347), - [anon_sym_crossinline] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), - [sym_multiline_comment] = ACTIONS(3), - }, - [4072] = { - [sym_function_body] = STATE(3238), - [sym__block] = STATE(3335), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(6986), - [anon_sym_fun] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(6547), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_object] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_this] = ACTIONS(4339), - [anon_sym_super] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [sym_label] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [anon_sym_try] = ACTIONS(4339), - [anon_sym_throw] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4341), - [anon_sym_continue_AT] = ACTIONS(4341), - [anon_sym_break_AT] = ACTIONS(4341), - [anon_sym_this_AT] = ACTIONS(4341), - [anon_sym_super_AT] = ACTIONS(4341), - [sym_real_literal] = ACTIONS(4341), - [sym_integer_literal] = ACTIONS(4339), - [sym_hex_literal] = ACTIONS(4341), - [sym_bin_literal] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4339), - [anon_sym_false] = ACTIONS(4339), - [anon_sym_SQUOTE] = ACTIONS(4341), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4341), - }, - [4073] = { - [sym__alpha_identifier] = ACTIONS(4976), - [anon_sym_AT] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [anon_sym_as] = ACTIONS(4976), - [anon_sym_EQ] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(4978), - [anon_sym_LPAREN] = ACTIONS(4978), - [anon_sym_COMMA] = ACTIONS(4978), - [anon_sym_LT] = ACTIONS(4976), - [anon_sym_GT] = ACTIONS(4976), - [anon_sym_where] = ACTIONS(4976), - [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_SEMI] = ACTIONS(4978), - [anon_sym_get] = ACTIONS(4976), - [anon_sym_set] = ACTIONS(4976), - [anon_sym_STAR] = ACTIONS(4976), - [sym_label] = ACTIONS(4978), - [anon_sym_in] = ACTIONS(4976), - [anon_sym_DOT_DOT] = ACTIONS(4978), - [anon_sym_QMARK_COLON] = ACTIONS(4978), - [anon_sym_AMP_AMP] = ACTIONS(4978), - [anon_sym_PIPE_PIPE] = ACTIONS(4978), - [anon_sym_else] = ACTIONS(4976), - [anon_sym_COLON_COLON] = ACTIONS(4978), - [anon_sym_PLUS_EQ] = ACTIONS(4978), - [anon_sym_DASH_EQ] = ACTIONS(4978), - [anon_sym_STAR_EQ] = ACTIONS(4978), - [anon_sym_SLASH_EQ] = ACTIONS(4978), - [anon_sym_PERCENT_EQ] = ACTIONS(4978), - [anon_sym_BANG_EQ] = ACTIONS(4976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4978), - [anon_sym_EQ_EQ] = ACTIONS(4976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4978), - [anon_sym_LT_EQ] = ACTIONS(4978), - [anon_sym_GT_EQ] = ACTIONS(4978), - [anon_sym_BANGin] = ACTIONS(4978), - [anon_sym_is] = ACTIONS(4976), - [anon_sym_BANGis] = ACTIONS(4978), - [anon_sym_PLUS] = ACTIONS(4976), - [anon_sym_DASH] = ACTIONS(4976), - [anon_sym_SLASH] = ACTIONS(4976), - [anon_sym_PERCENT] = ACTIONS(4976), - [anon_sym_as_QMARK] = ACTIONS(4978), - [anon_sym_PLUS_PLUS] = ACTIONS(4978), - [anon_sym_DASH_DASH] = ACTIONS(4978), - [anon_sym_BANG_BANG] = ACTIONS(4978), - [anon_sym_suspend] = ACTIONS(4976), - [anon_sym_sealed] = ACTIONS(4976), - [anon_sym_annotation] = ACTIONS(4976), - [anon_sym_data] = ACTIONS(4976), - [anon_sym_inner] = ACTIONS(4976), - [anon_sym_value] = ACTIONS(4976), - [anon_sym_override] = ACTIONS(4976), - [anon_sym_lateinit] = ACTIONS(4976), - [anon_sym_public] = ACTIONS(4976), - [anon_sym_private] = ACTIONS(4976), - [anon_sym_internal] = ACTIONS(4976), - [anon_sym_protected] = ACTIONS(4976), - [anon_sym_tailrec] = ACTIONS(4976), - [anon_sym_operator] = ACTIONS(4976), - [anon_sym_infix] = ACTIONS(4976), - [anon_sym_inline] = ACTIONS(4976), - [anon_sym_external] = ACTIONS(4976), - [sym_property_modifier] = ACTIONS(4976), - [anon_sym_abstract] = ACTIONS(4976), - [anon_sym_final] = ACTIONS(4976), - [anon_sym_open] = ACTIONS(4976), - [anon_sym_vararg] = ACTIONS(4976), - [anon_sym_noinline] = ACTIONS(4976), - [anon_sym_crossinline] = ACTIONS(4976), - [anon_sym_expect] = ACTIONS(4976), - [anon_sym_actual] = ACTIONS(4976), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4978), - [sym__automatic_semicolon] = ACTIONS(4978), - [sym_safe_nav] = ACTIONS(4978), - [sym_multiline_comment] = ACTIONS(3), - }, - [4074] = { - [sym__alpha_identifier] = ACTIONS(5095), - [anon_sym_AT] = ACTIONS(5097), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_as] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5097), - [anon_sym_RBRACE] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5097), - [anon_sym_COMMA] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5095), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_where] = ACTIONS(5095), - [anon_sym_DOT] = ACTIONS(5095), - [anon_sym_SEMI] = ACTIONS(5097), - [anon_sym_get] = ACTIONS(5095), - [anon_sym_set] = ACTIONS(5095), - [anon_sym_STAR] = ACTIONS(5095), - [sym_label] = ACTIONS(5097), - [anon_sym_in] = ACTIONS(5095), - [anon_sym_DOT_DOT] = ACTIONS(5097), - [anon_sym_QMARK_COLON] = ACTIONS(5097), - [anon_sym_AMP_AMP] = ACTIONS(5097), - [anon_sym_PIPE_PIPE] = ACTIONS(5097), - [anon_sym_else] = ACTIONS(5095), - [anon_sym_COLON_COLON] = ACTIONS(5097), - [anon_sym_PLUS_EQ] = ACTIONS(5097), - [anon_sym_DASH_EQ] = ACTIONS(5097), - [anon_sym_STAR_EQ] = ACTIONS(5097), - [anon_sym_SLASH_EQ] = ACTIONS(5097), - [anon_sym_PERCENT_EQ] = ACTIONS(5097), - [anon_sym_BANG_EQ] = ACTIONS(5095), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5097), - [anon_sym_EQ_EQ] = ACTIONS(5095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5097), - [anon_sym_LT_EQ] = ACTIONS(5097), - [anon_sym_GT_EQ] = ACTIONS(5097), - [anon_sym_BANGin] = ACTIONS(5097), - [anon_sym_is] = ACTIONS(5095), - [anon_sym_BANGis] = ACTIONS(5097), - [anon_sym_PLUS] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5095), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_as_QMARK] = ACTIONS(5097), - [anon_sym_PLUS_PLUS] = ACTIONS(5097), - [anon_sym_DASH_DASH] = ACTIONS(5097), - [anon_sym_BANG_BANG] = ACTIONS(5097), - [anon_sym_suspend] = ACTIONS(5095), - [anon_sym_sealed] = ACTIONS(5095), - [anon_sym_annotation] = ACTIONS(5095), - [anon_sym_data] = ACTIONS(5095), - [anon_sym_inner] = ACTIONS(5095), - [anon_sym_value] = ACTIONS(5095), - [anon_sym_override] = ACTIONS(5095), - [anon_sym_lateinit] = ACTIONS(5095), - [anon_sym_public] = ACTIONS(5095), - [anon_sym_private] = ACTIONS(5095), - [anon_sym_internal] = ACTIONS(5095), - [anon_sym_protected] = ACTIONS(5095), - [anon_sym_tailrec] = ACTIONS(5095), - [anon_sym_operator] = ACTIONS(5095), - [anon_sym_infix] = ACTIONS(5095), - [anon_sym_inline] = ACTIONS(5095), - [anon_sym_external] = ACTIONS(5095), - [sym_property_modifier] = ACTIONS(5095), - [anon_sym_abstract] = ACTIONS(5095), - [anon_sym_final] = ACTIONS(5095), - [anon_sym_open] = ACTIONS(5095), - [anon_sym_vararg] = ACTIONS(5095), - [anon_sym_noinline] = ACTIONS(5095), - [anon_sym_crossinline] = ACTIONS(5095), - [anon_sym_expect] = ACTIONS(5095), - [anon_sym_actual] = ACTIONS(5095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5097), - [sym__automatic_semicolon] = ACTIONS(5097), - [sym_safe_nav] = ACTIONS(5097), - [sym_multiline_comment] = ACTIONS(3), - }, - [4075] = { - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - }, - [4076] = { - [sym_function_body] = STATE(3676), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_RBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_COMMA] = ACTIONS(4520), - [anon_sym_RPAREN] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_where] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_DASH_GT] = ACTIONS(4520), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_while] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_suspend] = ACTIONS(4518), - [anon_sym_sealed] = ACTIONS(4518), - [anon_sym_annotation] = ACTIONS(4518), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_override] = ACTIONS(4518), - [anon_sym_lateinit] = ACTIONS(4518), - [anon_sym_public] = ACTIONS(4518), - [anon_sym_private] = ACTIONS(4518), - [anon_sym_internal] = ACTIONS(4518), - [anon_sym_protected] = ACTIONS(4518), - [anon_sym_tailrec] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_infix] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym_external] = ACTIONS(4518), - [sym_property_modifier] = ACTIONS(4518), - [anon_sym_abstract] = ACTIONS(4518), - [anon_sym_final] = ACTIONS(4518), - [anon_sym_open] = ACTIONS(4518), - [anon_sym_vararg] = ACTIONS(4518), - [anon_sym_noinline] = ACTIONS(4518), - [anon_sym_crossinline] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), + [4058] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7247), + [anon_sym_RPAREN] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_while] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), [sym_multiline_comment] = ACTIONS(3), }, - [4077] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4948), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_GT] = ACTIONS(4381), - [anon_sym_where] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [sym_label] = ACTIONS(4383), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_QMARK_COLON] = ACTIONS(4383), - [anon_sym_AMP_AMP] = ACTIONS(4383), - [anon_sym_PIPE_PIPE] = ACTIONS(4383), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4950), - [anon_sym_DASH_EQ] = ACTIONS(4950), - [anon_sym_STAR_EQ] = ACTIONS(4950), - [anon_sym_SLASH_EQ] = ACTIONS(4950), - [anon_sym_PERCENT_EQ] = ACTIONS(4950), - [anon_sym_BANG_EQ] = ACTIONS(4381), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), - [anon_sym_EQ_EQ] = ACTIONS(4381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), - [anon_sym_LT_EQ] = ACTIONS(4383), - [anon_sym_GT_EQ] = ACTIONS(4383), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_as_QMARK] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG_BANG] = ACTIONS(4383), - [anon_sym_suspend] = ACTIONS(4381), - [anon_sym_sealed] = ACTIONS(4381), - [anon_sym_annotation] = ACTIONS(4381), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_override] = ACTIONS(4381), - [anon_sym_lateinit] = ACTIONS(4381), - [anon_sym_public] = ACTIONS(4381), - [anon_sym_private] = ACTIONS(4381), - [anon_sym_internal] = ACTIONS(4381), - [anon_sym_protected] = ACTIONS(4381), - [anon_sym_tailrec] = ACTIONS(4381), - [anon_sym_operator] = ACTIONS(4381), - [anon_sym_infix] = ACTIONS(4381), - [anon_sym_inline] = ACTIONS(4381), - [anon_sym_external] = ACTIONS(4381), - [sym_property_modifier] = ACTIONS(4381), - [anon_sym_abstract] = ACTIONS(4381), - [anon_sym_final] = ACTIONS(4381), - [anon_sym_open] = ACTIONS(4381), - [anon_sym_vararg] = ACTIONS(4381), - [anon_sym_noinline] = ACTIONS(4381), - [anon_sym_crossinline] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4383), - [sym__automatic_semicolon] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4383), + [4059] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7249), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_while] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), [sym_multiline_comment] = ACTIONS(3), }, - [4078] = { - [sym_function_body] = STATE(3502), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_RBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_RPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [anon_sym_DASH_GT] = ACTIONS(4341), - [sym_label] = ACTIONS(4341), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_while] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), + [4060] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4079] = { - [sym__alpha_identifier] = ACTIONS(5255), - [anon_sym_AT] = ACTIONS(5257), - [anon_sym_LBRACK] = ACTIONS(5257), - [anon_sym_as] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5255), - [anon_sym_LBRACE] = ACTIONS(5257), - [anon_sym_RBRACE] = ACTIONS(5257), - [anon_sym_LPAREN] = ACTIONS(5257), - [anon_sym_COMMA] = ACTIONS(5257), - [anon_sym_LT] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5255), - [anon_sym_where] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5255), - [anon_sym_SEMI] = ACTIONS(5257), - [anon_sym_get] = ACTIONS(5255), - [anon_sym_set] = ACTIONS(5255), - [anon_sym_STAR] = ACTIONS(5255), - [sym_label] = ACTIONS(5257), - [anon_sym_in] = ACTIONS(5255), - [anon_sym_DOT_DOT] = ACTIONS(5257), - [anon_sym_QMARK_COLON] = ACTIONS(5257), - [anon_sym_AMP_AMP] = ACTIONS(5257), - [anon_sym_PIPE_PIPE] = ACTIONS(5257), - [anon_sym_else] = ACTIONS(5255), - [anon_sym_COLON_COLON] = ACTIONS(5257), - [anon_sym_PLUS_EQ] = ACTIONS(5257), - [anon_sym_DASH_EQ] = ACTIONS(5257), - [anon_sym_STAR_EQ] = ACTIONS(5257), - [anon_sym_SLASH_EQ] = ACTIONS(5257), - [anon_sym_PERCENT_EQ] = ACTIONS(5257), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5257), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5257), - [anon_sym_LT_EQ] = ACTIONS(5257), - [anon_sym_GT_EQ] = ACTIONS(5257), - [anon_sym_BANGin] = ACTIONS(5257), - [anon_sym_is] = ACTIONS(5255), - [anon_sym_BANGis] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_SLASH] = ACTIONS(5255), - [anon_sym_PERCENT] = ACTIONS(5255), - [anon_sym_as_QMARK] = ACTIONS(5257), - [anon_sym_PLUS_PLUS] = ACTIONS(5257), - [anon_sym_DASH_DASH] = ACTIONS(5257), - [anon_sym_BANG_BANG] = ACTIONS(5257), - [anon_sym_suspend] = ACTIONS(5255), - [anon_sym_sealed] = ACTIONS(5255), - [anon_sym_annotation] = ACTIONS(5255), - [anon_sym_data] = ACTIONS(5255), - [anon_sym_inner] = ACTIONS(5255), - [anon_sym_value] = ACTIONS(5255), - [anon_sym_override] = ACTIONS(5255), - [anon_sym_lateinit] = ACTIONS(5255), - [anon_sym_public] = ACTIONS(5255), - [anon_sym_private] = ACTIONS(5255), - [anon_sym_internal] = ACTIONS(5255), - [anon_sym_protected] = ACTIONS(5255), - [anon_sym_tailrec] = ACTIONS(5255), - [anon_sym_operator] = ACTIONS(5255), - [anon_sym_infix] = ACTIONS(5255), - [anon_sym_inline] = ACTIONS(5255), - [anon_sym_external] = ACTIONS(5255), - [sym_property_modifier] = ACTIONS(5255), - [anon_sym_abstract] = ACTIONS(5255), - [anon_sym_final] = ACTIONS(5255), - [anon_sym_open] = ACTIONS(5255), - [anon_sym_vararg] = ACTIONS(5255), - [anon_sym_noinline] = ACTIONS(5255), - [anon_sym_crossinline] = ACTIONS(5255), - [anon_sym_expect] = ACTIONS(5255), - [anon_sym_actual] = ACTIONS(5255), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5257), - [sym__automatic_semicolon] = ACTIONS(5257), - [sym_safe_nav] = ACTIONS(5257), + [4061] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7251), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, - [4080] = { - [sym__alpha_identifier] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_as] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_GT] = ACTIONS(4381), - [anon_sym_where] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [sym_label] = ACTIONS(4383), - [anon_sym_in] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_QMARK_COLON] = ACTIONS(4383), - [anon_sym_AMP_AMP] = ACTIONS(4383), - [anon_sym_PIPE_PIPE] = ACTIONS(4383), - [anon_sym_else] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_PLUS_EQ] = ACTIONS(4383), - [anon_sym_DASH_EQ] = ACTIONS(4383), - [anon_sym_STAR_EQ] = ACTIONS(4383), - [anon_sym_SLASH_EQ] = ACTIONS(4383), - [anon_sym_PERCENT_EQ] = ACTIONS(4383), - [anon_sym_BANG_EQ] = ACTIONS(4381), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), - [anon_sym_EQ_EQ] = ACTIONS(4381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), - [anon_sym_LT_EQ] = ACTIONS(4383), - [anon_sym_GT_EQ] = ACTIONS(4383), - [anon_sym_BANGin] = ACTIONS(4383), - [anon_sym_is] = ACTIONS(4381), - [anon_sym_BANGis] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_as_QMARK] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_BANG_BANG] = ACTIONS(4383), - [anon_sym_suspend] = ACTIONS(4381), - [anon_sym_sealed] = ACTIONS(4381), - [anon_sym_annotation] = ACTIONS(4381), - [anon_sym_data] = ACTIONS(4381), - [anon_sym_inner] = ACTIONS(4381), - [anon_sym_value] = ACTIONS(4381), - [anon_sym_override] = ACTIONS(4381), - [anon_sym_lateinit] = ACTIONS(4381), - [anon_sym_public] = ACTIONS(4381), - [anon_sym_private] = ACTIONS(4381), - [anon_sym_internal] = ACTIONS(4381), - [anon_sym_protected] = ACTIONS(4381), - [anon_sym_tailrec] = ACTIONS(4381), - [anon_sym_operator] = ACTIONS(4381), - [anon_sym_infix] = ACTIONS(4381), - [anon_sym_inline] = ACTIONS(4381), - [anon_sym_external] = ACTIONS(4381), - [sym_property_modifier] = ACTIONS(4381), - [anon_sym_abstract] = ACTIONS(4381), - [anon_sym_final] = ACTIONS(4381), - [anon_sym_open] = ACTIONS(4381), - [anon_sym_vararg] = ACTIONS(4381), - [anon_sym_noinline] = ACTIONS(4381), - [anon_sym_crossinline] = ACTIONS(4381), - [anon_sym_expect] = ACTIONS(4381), - [anon_sym_actual] = ACTIONS(4381), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4383), - [sym__automatic_semicolon] = ACTIONS(4383), - [sym_safe_nav] = ACTIONS(4383), + [4062] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, - [4081] = { - [sym_function_body] = STATE(3999), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4518), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_PLUS_EQ] = ACTIONS(4520), - [anon_sym_DASH_EQ] = ACTIONS(4520), - [anon_sym_STAR_EQ] = ACTIONS(4520), - [anon_sym_SLASH_EQ] = ACTIONS(4520), - [anon_sym_PERCENT_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4518), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_suspend] = ACTIONS(4518), - [anon_sym_sealed] = ACTIONS(4518), - [anon_sym_annotation] = ACTIONS(4518), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_override] = ACTIONS(4518), - [anon_sym_lateinit] = ACTIONS(4518), - [anon_sym_public] = ACTIONS(4518), - [anon_sym_private] = ACTIONS(4518), - [anon_sym_internal] = ACTIONS(4518), - [anon_sym_protected] = ACTIONS(4518), - [anon_sym_tailrec] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_infix] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym_external] = ACTIONS(4518), - [sym_property_modifier] = ACTIONS(4518), - [anon_sym_abstract] = ACTIONS(4518), - [anon_sym_final] = ACTIONS(4518), - [anon_sym_open] = ACTIONS(4518), - [anon_sym_vararg] = ACTIONS(4518), - [anon_sym_noinline] = ACTIONS(4518), - [anon_sym_crossinline] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4520), - [sym__automatic_semicolon] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), + [4063] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(5279), + [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_while] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, - [4082] = { - [sym_function_body] = STATE(3969), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4530), - [anon_sym_sealed] = ACTIONS(4530), - [anon_sym_annotation] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_override] = ACTIONS(4530), - [anon_sym_lateinit] = ACTIONS(4530), - [anon_sym_public] = ACTIONS(4530), - [anon_sym_private] = ACTIONS(4530), - [anon_sym_internal] = ACTIONS(4530), - [anon_sym_protected] = ACTIONS(4530), - [anon_sym_tailrec] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_infix] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym_external] = ACTIONS(4530), - [sym_property_modifier] = ACTIONS(4530), - [anon_sym_abstract] = ACTIONS(4530), - [anon_sym_final] = ACTIONS(4530), - [anon_sym_open] = ACTIONS(4530), - [anon_sym_vararg] = ACTIONS(4530), - [anon_sym_noinline] = ACTIONS(4530), - [anon_sym_crossinline] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), + [4064] = { + [sym_type_constraints] = STATE(4200), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(7255), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, - [4083] = { - [sym_function_body] = STATE(3960), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(7023), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [sym_label] = ACTIONS(4341), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_PLUS_EQ] = ACTIONS(4341), - [anon_sym_DASH_EQ] = ACTIONS(4341), - [anon_sym_STAR_EQ] = ACTIONS(4341), - [anon_sym_SLASH_EQ] = ACTIONS(4341), - [anon_sym_PERCENT_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4339), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), + [4065] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4084] = { - [sym__alpha_identifier] = ACTIONS(5165), - [anon_sym_AT] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [anon_sym_as] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_RBRACE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_where] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_get] = ACTIONS(5165), - [anon_sym_set] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [sym_label] = ACTIONS(5167), - [anon_sym_in] = ACTIONS(5165), - [anon_sym_DOT_DOT] = ACTIONS(5167), - [anon_sym_QMARK_COLON] = ACTIONS(5167), - [anon_sym_AMP_AMP] = ACTIONS(5167), - [anon_sym_PIPE_PIPE] = ACTIONS(5167), - [anon_sym_else] = ACTIONS(5165), - [anon_sym_COLON_COLON] = ACTIONS(5167), - [anon_sym_PLUS_EQ] = ACTIONS(5167), - [anon_sym_DASH_EQ] = ACTIONS(5167), - [anon_sym_STAR_EQ] = ACTIONS(5167), - [anon_sym_SLASH_EQ] = ACTIONS(5167), - [anon_sym_PERCENT_EQ] = ACTIONS(5167), - [anon_sym_BANG_EQ] = ACTIONS(5165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5167), - [anon_sym_EQ_EQ] = ACTIONS(5165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5167), - [anon_sym_LT_EQ] = ACTIONS(5167), - [anon_sym_GT_EQ] = ACTIONS(5167), - [anon_sym_BANGin] = ACTIONS(5167), - [anon_sym_is] = ACTIONS(5165), - [anon_sym_BANGis] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_PERCENT] = ACTIONS(5165), - [anon_sym_as_QMARK] = ACTIONS(5167), - [anon_sym_PLUS_PLUS] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5167), - [anon_sym_BANG_BANG] = ACTIONS(5167), - [anon_sym_suspend] = ACTIONS(5165), - [anon_sym_sealed] = ACTIONS(5165), - [anon_sym_annotation] = ACTIONS(5165), - [anon_sym_data] = ACTIONS(5165), - [anon_sym_inner] = ACTIONS(5165), - [anon_sym_value] = ACTIONS(5165), - [anon_sym_override] = ACTIONS(5165), - [anon_sym_lateinit] = ACTIONS(5165), - [anon_sym_public] = ACTIONS(5165), - [anon_sym_private] = ACTIONS(5165), - [anon_sym_internal] = ACTIONS(5165), - [anon_sym_protected] = ACTIONS(5165), - [anon_sym_tailrec] = ACTIONS(5165), - [anon_sym_operator] = ACTIONS(5165), - [anon_sym_infix] = ACTIONS(5165), - [anon_sym_inline] = ACTIONS(5165), - [anon_sym_external] = ACTIONS(5165), - [sym_property_modifier] = ACTIONS(5165), - [anon_sym_abstract] = ACTIONS(5165), - [anon_sym_final] = ACTIONS(5165), - [anon_sym_open] = ACTIONS(5165), - [anon_sym_vararg] = ACTIONS(5165), - [anon_sym_noinline] = ACTIONS(5165), - [anon_sym_crossinline] = ACTIONS(5165), - [anon_sym_expect] = ACTIONS(5165), - [anon_sym_actual] = ACTIONS(5165), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5167), - [sym__automatic_semicolon] = ACTIONS(5167), - [sym_safe_nav] = ACTIONS(5167), + [4066] = { + [sym_type_constraints] = STATE(4162), + [sym_function_body] = STATE(3866), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), [sym_multiline_comment] = ACTIONS(3), }, - [4085] = { - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(1790), - [anon_sym_set] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(1790), - [anon_sym_sealed] = ACTIONS(1790), - [anon_sym_annotation] = ACTIONS(1790), - [anon_sym_data] = ACTIONS(1790), - [anon_sym_inner] = ACTIONS(1790), - [anon_sym_value] = ACTIONS(1790), - [anon_sym_override] = ACTIONS(1790), - [anon_sym_lateinit] = ACTIONS(1790), - [anon_sym_public] = ACTIONS(1790), - [anon_sym_private] = ACTIONS(1790), - [anon_sym_internal] = ACTIONS(1790), - [anon_sym_protected] = ACTIONS(1790), - [anon_sym_tailrec] = ACTIONS(1790), - [anon_sym_operator] = ACTIONS(1790), - [anon_sym_infix] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [anon_sym_external] = ACTIONS(1790), - [sym_property_modifier] = ACTIONS(1790), - [anon_sym_abstract] = ACTIONS(1790), - [anon_sym_final] = ACTIONS(1790), - [anon_sym_open] = ACTIONS(1790), - [anon_sym_vararg] = ACTIONS(1790), - [anon_sym_noinline] = ACTIONS(1790), - [anon_sym_crossinline] = ACTIONS(1790), - [anon_sym_expect] = ACTIONS(1790), - [anon_sym_actual] = ACTIONS(1790), + [4067] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - }, - [4086] = { - [sym__alpha_identifier] = ACTIONS(5141), - [anon_sym_AT] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_as] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_RBRACE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5141), - [anon_sym_where] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_get] = ACTIONS(5141), - [anon_sym_set] = ACTIONS(5141), - [anon_sym_STAR] = ACTIONS(5141), - [sym_label] = ACTIONS(5143), - [anon_sym_in] = ACTIONS(5141), - [anon_sym_DOT_DOT] = ACTIONS(5143), - [anon_sym_QMARK_COLON] = ACTIONS(5143), - [anon_sym_AMP_AMP] = ACTIONS(5143), - [anon_sym_PIPE_PIPE] = ACTIONS(5143), - [anon_sym_else] = ACTIONS(5141), - [anon_sym_COLON_COLON] = ACTIONS(5143), - [anon_sym_PLUS_EQ] = ACTIONS(5143), - [anon_sym_DASH_EQ] = ACTIONS(5143), - [anon_sym_STAR_EQ] = ACTIONS(5143), - [anon_sym_SLASH_EQ] = ACTIONS(5143), - [anon_sym_PERCENT_EQ] = ACTIONS(5143), - [anon_sym_BANG_EQ] = ACTIONS(5141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5143), - [anon_sym_EQ_EQ] = ACTIONS(5141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5143), - [anon_sym_LT_EQ] = ACTIONS(5143), - [anon_sym_GT_EQ] = ACTIONS(5143), - [anon_sym_BANGin] = ACTIONS(5143), - [anon_sym_is] = ACTIONS(5141), - [anon_sym_BANGis] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5141), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5141), - [anon_sym_PERCENT] = ACTIONS(5141), - [anon_sym_as_QMARK] = ACTIONS(5143), - [anon_sym_PLUS_PLUS] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5143), - [anon_sym_BANG_BANG] = ACTIONS(5143), - [anon_sym_suspend] = ACTIONS(5141), - [anon_sym_sealed] = ACTIONS(5141), - [anon_sym_annotation] = ACTIONS(5141), - [anon_sym_data] = ACTIONS(5141), - [anon_sym_inner] = ACTIONS(5141), - [anon_sym_value] = ACTIONS(5141), - [anon_sym_override] = ACTIONS(5141), - [anon_sym_lateinit] = ACTIONS(5141), - [anon_sym_public] = ACTIONS(5141), - [anon_sym_private] = ACTIONS(5141), - [anon_sym_internal] = ACTIONS(5141), - [anon_sym_protected] = ACTIONS(5141), - [anon_sym_tailrec] = ACTIONS(5141), - [anon_sym_operator] = ACTIONS(5141), - [anon_sym_infix] = ACTIONS(5141), - [anon_sym_inline] = ACTIONS(5141), - [anon_sym_external] = ACTIONS(5141), - [sym_property_modifier] = ACTIONS(5141), - [anon_sym_abstract] = ACTIONS(5141), - [anon_sym_final] = ACTIONS(5141), - [anon_sym_open] = ACTIONS(5141), - [anon_sym_vararg] = ACTIONS(5141), - [anon_sym_noinline] = ACTIONS(5141), - [anon_sym_crossinline] = ACTIONS(5141), - [anon_sym_expect] = ACTIONS(5141), - [anon_sym_actual] = ACTIONS(5141), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5143), - [sym__automatic_semicolon] = ACTIONS(5143), - [sym_safe_nav] = ACTIONS(5143), - [sym_multiline_comment] = ACTIONS(3), - }, - [4087] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4293), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_PLUS_EQ] = ACTIONS(4293), - [anon_sym_DASH_EQ] = ACTIONS(4293), - [anon_sym_STAR_EQ] = ACTIONS(4293), - [anon_sym_SLASH_EQ] = ACTIONS(4293), - [anon_sym_PERCENT_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - }, - [4088] = { - [sym__alpha_identifier] = ACTIONS(4772), - [anon_sym_AT] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4772), - [anon_sym_LBRACE] = ACTIONS(4774), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4772), - [anon_sym_GT] = ACTIONS(4772), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4772), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_get] = ACTIONS(4772), - [anon_sym_set] = ACTIONS(4772), - [anon_sym_STAR] = ACTIONS(4772), - [sym_label] = ACTIONS(4774), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_QMARK_COLON] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_else] = ACTIONS(4772), - [anon_sym_COLON_COLON] = ACTIONS(4774), - [anon_sym_PLUS_EQ] = ACTIONS(4774), - [anon_sym_DASH_EQ] = ACTIONS(4774), - [anon_sym_STAR_EQ] = ACTIONS(4774), - [anon_sym_SLASH_EQ] = ACTIONS(4774), - [anon_sym_PERCENT_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4772), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_BANGin] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4772), - [anon_sym_BANGis] = ACTIONS(4774), - [anon_sym_PLUS] = ACTIONS(4772), - [anon_sym_DASH] = ACTIONS(4772), - [anon_sym_SLASH] = ACTIONS(4772), - [anon_sym_PERCENT] = ACTIONS(4772), - [anon_sym_as_QMARK] = ACTIONS(4774), - [anon_sym_PLUS_PLUS] = ACTIONS(4774), - [anon_sym_DASH_DASH] = ACTIONS(4774), - [anon_sym_BANG_BANG] = ACTIONS(4774), - [anon_sym_suspend] = ACTIONS(4772), - [anon_sym_sealed] = ACTIONS(4772), - [anon_sym_annotation] = ACTIONS(4772), - [anon_sym_data] = ACTIONS(4772), - [anon_sym_inner] = ACTIONS(4772), - [anon_sym_value] = ACTIONS(4772), - [anon_sym_override] = ACTIONS(4772), - [anon_sym_lateinit] = ACTIONS(4772), - [anon_sym_public] = ACTIONS(4772), - [anon_sym_private] = ACTIONS(4772), - [anon_sym_internal] = ACTIONS(4772), - [anon_sym_protected] = ACTIONS(4772), - [anon_sym_tailrec] = ACTIONS(4772), - [anon_sym_operator] = ACTIONS(4772), - [anon_sym_infix] = ACTIONS(4772), - [anon_sym_inline] = ACTIONS(4772), - [anon_sym_external] = ACTIONS(4772), - [sym_property_modifier] = ACTIONS(4772), - [anon_sym_abstract] = ACTIONS(4772), - [anon_sym_final] = ACTIONS(4772), - [anon_sym_open] = ACTIONS(4772), - [anon_sym_vararg] = ACTIONS(4772), - [anon_sym_noinline] = ACTIONS(4772), - [anon_sym_crossinline] = ACTIONS(4772), - [anon_sym_expect] = ACTIONS(4772), - [anon_sym_actual] = ACTIONS(4772), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4774), - [sym__automatic_semicolon] = ACTIONS(4774), - [sym_safe_nav] = ACTIONS(4774), - [sym_multiline_comment] = ACTIONS(3), - }, - [4089] = { - [sym__alpha_identifier] = ACTIONS(5123), - [anon_sym_AT] = ACTIONS(5125), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_as] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5125), - [anon_sym_RBRACE] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5125), - [anon_sym_COMMA] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5123), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_where] = ACTIONS(5123), - [anon_sym_DOT] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5125), - [anon_sym_get] = ACTIONS(5123), - [anon_sym_set] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(5125), - [anon_sym_in] = ACTIONS(5123), - [anon_sym_DOT_DOT] = ACTIONS(5125), - [anon_sym_QMARK_COLON] = ACTIONS(5125), - [anon_sym_AMP_AMP] = ACTIONS(5125), - [anon_sym_PIPE_PIPE] = ACTIONS(5125), - [anon_sym_else] = ACTIONS(5123), - [anon_sym_COLON_COLON] = ACTIONS(5125), - [anon_sym_PLUS_EQ] = ACTIONS(5125), - [anon_sym_DASH_EQ] = ACTIONS(5125), - [anon_sym_STAR_EQ] = ACTIONS(5125), - [anon_sym_SLASH_EQ] = ACTIONS(5125), - [anon_sym_PERCENT_EQ] = ACTIONS(5125), - [anon_sym_BANG_EQ] = ACTIONS(5123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5125), - [anon_sym_EQ_EQ] = ACTIONS(5123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5125), - [anon_sym_LT_EQ] = ACTIONS(5125), - [anon_sym_GT_EQ] = ACTIONS(5125), - [anon_sym_BANGin] = ACTIONS(5125), - [anon_sym_is] = ACTIONS(5123), - [anon_sym_BANGis] = ACTIONS(5125), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5123), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(5125), - [anon_sym_PLUS_PLUS] = ACTIONS(5125), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_BANG_BANG] = ACTIONS(5125), - [anon_sym_suspend] = ACTIONS(5123), - [anon_sym_sealed] = ACTIONS(5123), - [anon_sym_annotation] = ACTIONS(5123), - [anon_sym_data] = ACTIONS(5123), - [anon_sym_inner] = ACTIONS(5123), - [anon_sym_value] = ACTIONS(5123), - [anon_sym_override] = ACTIONS(5123), - [anon_sym_lateinit] = ACTIONS(5123), - [anon_sym_public] = ACTIONS(5123), - [anon_sym_private] = ACTIONS(5123), - [anon_sym_internal] = ACTIONS(5123), - [anon_sym_protected] = ACTIONS(5123), - [anon_sym_tailrec] = ACTIONS(5123), - [anon_sym_operator] = ACTIONS(5123), - [anon_sym_infix] = ACTIONS(5123), - [anon_sym_inline] = ACTIONS(5123), - [anon_sym_external] = ACTIONS(5123), - [sym_property_modifier] = ACTIONS(5123), - [anon_sym_abstract] = ACTIONS(5123), - [anon_sym_final] = ACTIONS(5123), - [anon_sym_open] = ACTIONS(5123), - [anon_sym_vararg] = ACTIONS(5123), - [anon_sym_noinline] = ACTIONS(5123), - [anon_sym_crossinline] = ACTIONS(5123), - [anon_sym_expect] = ACTIONS(5123), - [anon_sym_actual] = ACTIONS(5123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5125), - [sym__automatic_semicolon] = ACTIONS(5125), - [sym_safe_nav] = ACTIONS(5125), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4090] = { - [sym__alpha_identifier] = ACTIONS(5119), - [anon_sym_AT] = ACTIONS(5121), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_as] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5121), - [anon_sym_RBRACE] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5121), - [anon_sym_COMMA] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5119), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5121), - [anon_sym_get] = ACTIONS(5119), - [anon_sym_set] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [sym_label] = ACTIONS(5121), - [anon_sym_in] = ACTIONS(5119), - [anon_sym_DOT_DOT] = ACTIONS(5121), - [anon_sym_QMARK_COLON] = ACTIONS(5121), - [anon_sym_AMP_AMP] = ACTIONS(5121), - [anon_sym_PIPE_PIPE] = ACTIONS(5121), - [anon_sym_else] = ACTIONS(5119), - [anon_sym_COLON_COLON] = ACTIONS(5121), - [anon_sym_PLUS_EQ] = ACTIONS(5121), - [anon_sym_DASH_EQ] = ACTIONS(5121), - [anon_sym_STAR_EQ] = ACTIONS(5121), - [anon_sym_SLASH_EQ] = ACTIONS(5121), - [anon_sym_PERCENT_EQ] = ACTIONS(5121), - [anon_sym_BANG_EQ] = ACTIONS(5119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5121), - [anon_sym_EQ_EQ] = ACTIONS(5119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5121), - [anon_sym_LT_EQ] = ACTIONS(5121), - [anon_sym_GT_EQ] = ACTIONS(5121), - [anon_sym_BANGin] = ACTIONS(5121), - [anon_sym_is] = ACTIONS(5119), - [anon_sym_BANGis] = ACTIONS(5121), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_as_QMARK] = ACTIONS(5121), - [anon_sym_PLUS_PLUS] = ACTIONS(5121), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_BANG_BANG] = ACTIONS(5121), - [anon_sym_suspend] = ACTIONS(5119), - [anon_sym_sealed] = ACTIONS(5119), - [anon_sym_annotation] = ACTIONS(5119), - [anon_sym_data] = ACTIONS(5119), - [anon_sym_inner] = ACTIONS(5119), - [anon_sym_value] = ACTIONS(5119), - [anon_sym_override] = ACTIONS(5119), - [anon_sym_lateinit] = ACTIONS(5119), - [anon_sym_public] = ACTIONS(5119), - [anon_sym_private] = ACTIONS(5119), - [anon_sym_internal] = ACTIONS(5119), - [anon_sym_protected] = ACTIONS(5119), - [anon_sym_tailrec] = ACTIONS(5119), - [anon_sym_operator] = ACTIONS(5119), - [anon_sym_infix] = ACTIONS(5119), - [anon_sym_inline] = ACTIONS(5119), - [anon_sym_external] = ACTIONS(5119), - [sym_property_modifier] = ACTIONS(5119), - [anon_sym_abstract] = ACTIONS(5119), - [anon_sym_final] = ACTIONS(5119), - [anon_sym_open] = ACTIONS(5119), - [anon_sym_vararg] = ACTIONS(5119), - [anon_sym_noinline] = ACTIONS(5119), - [anon_sym_crossinline] = ACTIONS(5119), - [anon_sym_expect] = ACTIONS(5119), - [anon_sym_actual] = ACTIONS(5119), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5121), - [sym__automatic_semicolon] = ACTIONS(5121), - [sym_safe_nav] = ACTIONS(5121), - [sym_multiline_comment] = ACTIONS(3), + [4068] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7263), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), }, - [4091] = { - [sym__alpha_identifier] = ACTIONS(4457), - [anon_sym_AT] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_as] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(4459), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_where] = ACTIONS(4457), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [anon_sym_get] = ACTIONS(4457), - [anon_sym_set] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [sym_label] = ACTIONS(4459), - [anon_sym_in] = ACTIONS(4457), - [anon_sym_DOT_DOT] = ACTIONS(4459), - [anon_sym_QMARK_COLON] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_else] = ACTIONS(4457), - [anon_sym_COLON_COLON] = ACTIONS(4459), - [anon_sym_PLUS_EQ] = ACTIONS(4459), - [anon_sym_DASH_EQ] = ACTIONS(4459), - [anon_sym_STAR_EQ] = ACTIONS(4459), - [anon_sym_SLASH_EQ] = ACTIONS(4459), - [anon_sym_PERCENT_EQ] = ACTIONS(4459), - [anon_sym_BANG_EQ] = ACTIONS(4457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(4457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), - [anon_sym_LT_EQ] = ACTIONS(4459), - [anon_sym_GT_EQ] = ACTIONS(4459), - [anon_sym_BANGin] = ACTIONS(4459), - [anon_sym_is] = ACTIONS(4457), - [anon_sym_BANGis] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_as_QMARK] = ACTIONS(4459), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_BANG_BANG] = ACTIONS(4459), - [anon_sym_suspend] = ACTIONS(4457), - [anon_sym_sealed] = ACTIONS(4457), - [anon_sym_annotation] = ACTIONS(4457), - [anon_sym_data] = ACTIONS(4457), - [anon_sym_inner] = ACTIONS(4457), - [anon_sym_value] = ACTIONS(4457), - [anon_sym_override] = ACTIONS(4457), - [anon_sym_lateinit] = ACTIONS(4457), - [anon_sym_public] = ACTIONS(4457), - [anon_sym_private] = ACTIONS(4457), - [anon_sym_internal] = ACTIONS(4457), - [anon_sym_protected] = ACTIONS(4457), - [anon_sym_tailrec] = ACTIONS(4457), - [anon_sym_operator] = ACTIONS(4457), - [anon_sym_infix] = ACTIONS(4457), - [anon_sym_inline] = ACTIONS(4457), - [anon_sym_external] = ACTIONS(4457), - [sym_property_modifier] = ACTIONS(4457), - [anon_sym_abstract] = ACTIONS(4457), - [anon_sym_final] = ACTIONS(4457), - [anon_sym_open] = ACTIONS(4457), - [anon_sym_vararg] = ACTIONS(4457), - [anon_sym_noinline] = ACTIONS(4457), - [anon_sym_crossinline] = ACTIONS(4457), - [anon_sym_expect] = ACTIONS(4457), - [anon_sym_actual] = ACTIONS(4457), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4459), - [sym__automatic_semicolon] = ACTIONS(4459), - [sym_safe_nav] = ACTIONS(4459), + [4069] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4092] = { - [sym__alpha_identifier] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_as] = ACTIONS(209), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_where] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(209), - [anon_sym_set] = ACTIONS(209), - [anon_sym_STAR] = ACTIONS(209), - [sym_label] = ACTIONS(207), - [anon_sym_in] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(207), - [anon_sym_QMARK_COLON] = ACTIONS(207), - [anon_sym_AMP_AMP] = ACTIONS(207), - [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_else] = ACTIONS(209), - [anon_sym_COLON_COLON] = ACTIONS(207), - [anon_sym_PLUS_EQ] = ACTIONS(207), - [anon_sym_DASH_EQ] = ACTIONS(207), - [anon_sym_STAR_EQ] = ACTIONS(207), - [anon_sym_SLASH_EQ] = ACTIONS(207), - [anon_sym_PERCENT_EQ] = ACTIONS(207), - [anon_sym_BANG_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(207), - [anon_sym_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(207), - [anon_sym_LT_EQ] = ACTIONS(207), - [anon_sym_GT_EQ] = ACTIONS(207), - [anon_sym_BANGin] = ACTIONS(207), - [anon_sym_is] = ACTIONS(209), - [anon_sym_BANGis] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(209), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(207), - [anon_sym_DASH_DASH] = ACTIONS(207), - [anon_sym_BANG_BANG] = ACTIONS(207), - [anon_sym_suspend] = ACTIONS(209), - [anon_sym_sealed] = ACTIONS(209), - [anon_sym_annotation] = ACTIONS(209), - [anon_sym_data] = ACTIONS(209), - [anon_sym_inner] = ACTIONS(209), - [anon_sym_value] = ACTIONS(209), - [anon_sym_override] = ACTIONS(209), - [anon_sym_lateinit] = ACTIONS(209), - [anon_sym_public] = ACTIONS(209), - [anon_sym_private] = ACTIONS(209), - [anon_sym_internal] = ACTIONS(209), - [anon_sym_protected] = ACTIONS(209), - [anon_sym_tailrec] = ACTIONS(209), - [anon_sym_operator] = ACTIONS(209), - [anon_sym_infix] = ACTIONS(209), - [anon_sym_inline] = ACTIONS(209), - [anon_sym_external] = ACTIONS(209), - [sym_property_modifier] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_final] = ACTIONS(209), - [anon_sym_open] = ACTIONS(209), - [anon_sym_vararg] = ACTIONS(209), - [anon_sym_noinline] = ACTIONS(209), - [anon_sym_crossinline] = ACTIONS(209), - [anon_sym_expect] = ACTIONS(209), - [anon_sym_actual] = ACTIONS(209), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(207), - [sym__automatic_semicolon] = ACTIONS(207), - [sym_safe_nav] = ACTIONS(207), + [4070] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4093] = { - [sym__alpha_identifier] = ACTIONS(5091), - [anon_sym_AT] = ACTIONS(5093), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_as] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5093), - [anon_sym_RBRACE] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5093), - [anon_sym_COMMA] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5091), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_where] = ACTIONS(5091), - [anon_sym_DOT] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5093), - [anon_sym_get] = ACTIONS(5091), - [anon_sym_set] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [sym_label] = ACTIONS(5093), - [anon_sym_in] = ACTIONS(5091), - [anon_sym_DOT_DOT] = ACTIONS(5093), - [anon_sym_QMARK_COLON] = ACTIONS(5093), - [anon_sym_AMP_AMP] = ACTIONS(5093), - [anon_sym_PIPE_PIPE] = ACTIONS(5093), - [anon_sym_else] = ACTIONS(5091), - [anon_sym_COLON_COLON] = ACTIONS(5093), - [anon_sym_PLUS_EQ] = ACTIONS(5093), - [anon_sym_DASH_EQ] = ACTIONS(5093), - [anon_sym_STAR_EQ] = ACTIONS(5093), - [anon_sym_SLASH_EQ] = ACTIONS(5093), - [anon_sym_PERCENT_EQ] = ACTIONS(5093), - [anon_sym_BANG_EQ] = ACTIONS(5091), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5093), - [anon_sym_EQ_EQ] = ACTIONS(5091), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5093), - [anon_sym_LT_EQ] = ACTIONS(5093), - [anon_sym_GT_EQ] = ACTIONS(5093), - [anon_sym_BANGin] = ACTIONS(5093), - [anon_sym_is] = ACTIONS(5091), - [anon_sym_BANGis] = ACTIONS(5093), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5091), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_as_QMARK] = ACTIONS(5093), - [anon_sym_PLUS_PLUS] = ACTIONS(5093), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_BANG_BANG] = ACTIONS(5093), - [anon_sym_suspend] = ACTIONS(5091), - [anon_sym_sealed] = ACTIONS(5091), - [anon_sym_annotation] = ACTIONS(5091), - [anon_sym_data] = ACTIONS(5091), - [anon_sym_inner] = ACTIONS(5091), - [anon_sym_value] = ACTIONS(5091), - [anon_sym_override] = ACTIONS(5091), - [anon_sym_lateinit] = ACTIONS(5091), - [anon_sym_public] = ACTIONS(5091), - [anon_sym_private] = ACTIONS(5091), - [anon_sym_internal] = ACTIONS(5091), - [anon_sym_protected] = ACTIONS(5091), - [anon_sym_tailrec] = ACTIONS(5091), - [anon_sym_operator] = ACTIONS(5091), - [anon_sym_infix] = ACTIONS(5091), - [anon_sym_inline] = ACTIONS(5091), - [anon_sym_external] = ACTIONS(5091), - [sym_property_modifier] = ACTIONS(5091), - [anon_sym_abstract] = ACTIONS(5091), - [anon_sym_final] = ACTIONS(5091), - [anon_sym_open] = ACTIONS(5091), - [anon_sym_vararg] = ACTIONS(5091), - [anon_sym_noinline] = ACTIONS(5091), - [anon_sym_crossinline] = ACTIONS(5091), - [anon_sym_expect] = ACTIONS(5091), - [anon_sym_actual] = ACTIONS(5091), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5093), - [sym__automatic_semicolon] = ACTIONS(5093), - [sym_safe_nav] = ACTIONS(5093), + [4071] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7265), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), }, - [4094] = { - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(1808), - [anon_sym_set] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(1808), - [anon_sym_sealed] = ACTIONS(1808), - [anon_sym_annotation] = ACTIONS(1808), - [anon_sym_data] = ACTIONS(1808), - [anon_sym_inner] = ACTIONS(1808), - [anon_sym_value] = ACTIONS(1808), - [anon_sym_override] = ACTIONS(1808), - [anon_sym_lateinit] = ACTIONS(1808), - [anon_sym_public] = ACTIONS(1808), - [anon_sym_private] = ACTIONS(1808), - [anon_sym_internal] = ACTIONS(1808), - [anon_sym_protected] = ACTIONS(1808), - [anon_sym_tailrec] = ACTIONS(1808), - [anon_sym_operator] = ACTIONS(1808), - [anon_sym_infix] = ACTIONS(1808), - [anon_sym_inline] = ACTIONS(1808), - [anon_sym_external] = ACTIONS(1808), - [sym_property_modifier] = ACTIONS(1808), - [anon_sym_abstract] = ACTIONS(1808), - [anon_sym_final] = ACTIONS(1808), - [anon_sym_open] = ACTIONS(1808), - [anon_sym_vararg] = ACTIONS(1808), - [anon_sym_noinline] = ACTIONS(1808), - [anon_sym_crossinline] = ACTIONS(1808), - [anon_sym_expect] = ACTIONS(1808), - [anon_sym_actual] = ACTIONS(1808), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [4072] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4095] = { - [sym__alpha_identifier] = ACTIONS(5087), - [anon_sym_AT] = ACTIONS(5089), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_as] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5089), - [anon_sym_RBRACE] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5089), - [anon_sym_COMMA] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5087), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_where] = ACTIONS(5087), - [anon_sym_DOT] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5089), - [anon_sym_get] = ACTIONS(5087), - [anon_sym_set] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [sym_label] = ACTIONS(5089), - [anon_sym_in] = ACTIONS(5087), - [anon_sym_DOT_DOT] = ACTIONS(5089), - [anon_sym_QMARK_COLON] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5089), - [anon_sym_PIPE_PIPE] = ACTIONS(5089), - [anon_sym_else] = ACTIONS(5087), - [anon_sym_COLON_COLON] = ACTIONS(5089), - [anon_sym_PLUS_EQ] = ACTIONS(5089), - [anon_sym_DASH_EQ] = ACTIONS(5089), - [anon_sym_STAR_EQ] = ACTIONS(5089), - [anon_sym_SLASH_EQ] = ACTIONS(5089), - [anon_sym_PERCENT_EQ] = ACTIONS(5089), - [anon_sym_BANG_EQ] = ACTIONS(5087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5089), - [anon_sym_EQ_EQ] = ACTIONS(5087), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5089), - [anon_sym_LT_EQ] = ACTIONS(5089), - [anon_sym_GT_EQ] = ACTIONS(5089), - [anon_sym_BANGin] = ACTIONS(5089), - [anon_sym_is] = ACTIONS(5087), - [anon_sym_BANGis] = ACTIONS(5089), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5087), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_as_QMARK] = ACTIONS(5089), - [anon_sym_PLUS_PLUS] = ACTIONS(5089), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_BANG_BANG] = ACTIONS(5089), - [anon_sym_suspend] = ACTIONS(5087), - [anon_sym_sealed] = ACTIONS(5087), - [anon_sym_annotation] = ACTIONS(5087), - [anon_sym_data] = ACTIONS(5087), - [anon_sym_inner] = ACTIONS(5087), - [anon_sym_value] = ACTIONS(5087), - [anon_sym_override] = ACTIONS(5087), - [anon_sym_lateinit] = ACTIONS(5087), - [anon_sym_public] = ACTIONS(5087), - [anon_sym_private] = ACTIONS(5087), - [anon_sym_internal] = ACTIONS(5087), - [anon_sym_protected] = ACTIONS(5087), - [anon_sym_tailrec] = ACTIONS(5087), - [anon_sym_operator] = ACTIONS(5087), - [anon_sym_infix] = ACTIONS(5087), - [anon_sym_inline] = ACTIONS(5087), - [anon_sym_external] = ACTIONS(5087), - [sym_property_modifier] = ACTIONS(5087), - [anon_sym_abstract] = ACTIONS(5087), - [anon_sym_final] = ACTIONS(5087), - [anon_sym_open] = ACTIONS(5087), - [anon_sym_vararg] = ACTIONS(5087), - [anon_sym_noinline] = ACTIONS(5087), - [anon_sym_crossinline] = ACTIONS(5087), - [anon_sym_expect] = ACTIONS(5087), - [anon_sym_actual] = ACTIONS(5087), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5089), - [sym__automatic_semicolon] = ACTIONS(5089), - [sym_safe_nav] = ACTIONS(5089), - [sym_multiline_comment] = ACTIONS(3), + [4073] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7267), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), }, - [4096] = { - [sym__alpha_identifier] = ACTIONS(3156), - [anon_sym_AT] = ACTIONS(3158), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_as] = ACTIONS(3156), - [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3156), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3156), - [anon_sym_set] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3156), - [sym_label] = ACTIONS(3158), - [anon_sym_in] = ACTIONS(3156), - [anon_sym_DOT_DOT] = ACTIONS(3158), - [anon_sym_QMARK_COLON] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3158), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_STAR_EQ] = ACTIONS(3158), - [anon_sym_SLASH_EQ] = ACTIONS(3158), - [anon_sym_PERCENT_EQ] = ACTIONS(3158), - [anon_sym_BANG_EQ] = ACTIONS(3156), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3158), - [anon_sym_EQ_EQ] = ACTIONS(3156), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3158), - [anon_sym_LT_EQ] = ACTIONS(3158), - [anon_sym_GT_EQ] = ACTIONS(3158), - [anon_sym_BANGin] = ACTIONS(3158), - [anon_sym_is] = ACTIONS(3156), - [anon_sym_BANGis] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3156), - [anon_sym_PERCENT] = ACTIONS(3156), - [anon_sym_as_QMARK] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [anon_sym_BANG_BANG] = ACTIONS(3158), - [anon_sym_suspend] = ACTIONS(3156), - [anon_sym_sealed] = ACTIONS(3156), - [anon_sym_annotation] = ACTIONS(3156), - [anon_sym_data] = ACTIONS(3156), - [anon_sym_inner] = ACTIONS(3156), - [anon_sym_value] = ACTIONS(3156), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_lateinit] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_internal] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_tailrec] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_infix] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym_external] = ACTIONS(3156), - [sym_property_modifier] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_final] = ACTIONS(3156), - [anon_sym_open] = ACTIONS(3156), - [anon_sym_vararg] = ACTIONS(3156), - [anon_sym_noinline] = ACTIONS(3156), - [anon_sym_crossinline] = ACTIONS(3156), - [anon_sym_expect] = ACTIONS(3156), - [anon_sym_actual] = ACTIONS(3156), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3158), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(3158), + [4074] = { + [sym_type_constraints] = STATE(4163), + [sym_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(7269), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, - [4097] = { - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [4075] = { + [sym_type_constraints] = STATE(4220), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(7271), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, - [4098] = { - [sym__alpha_identifier] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_where] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3344), - [sym_label] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_DOT_DOT] = ACTIONS(3346), - [anon_sym_QMARK_COLON] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_as_QMARK] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_BANG_BANG] = ACTIONS(3346), - [anon_sym_suspend] = ACTIONS(3344), - [anon_sym_sealed] = ACTIONS(3344), - [anon_sym_annotation] = ACTIONS(3344), - [anon_sym_data] = ACTIONS(3344), - [anon_sym_inner] = ACTIONS(3344), - [anon_sym_value] = ACTIONS(3344), - [anon_sym_override] = ACTIONS(3344), - [anon_sym_lateinit] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_internal] = ACTIONS(3344), - [anon_sym_protected] = ACTIONS(3344), - [anon_sym_tailrec] = ACTIONS(3344), - [anon_sym_operator] = ACTIONS(3344), - [anon_sym_infix] = ACTIONS(3344), - [anon_sym_inline] = ACTIONS(3344), - [anon_sym_external] = ACTIONS(3344), - [sym_property_modifier] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_final] = ACTIONS(3344), - [anon_sym_open] = ACTIONS(3344), - [anon_sym_vararg] = ACTIONS(3344), - [anon_sym_noinline] = ACTIONS(3344), - [anon_sym_crossinline] = ACTIONS(3344), - [anon_sym_expect] = ACTIONS(3344), - [anon_sym_actual] = ACTIONS(3344), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [4076] = { + [sym_type_constraints] = STATE(4167), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(7273), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, - [4099] = { - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4435), - [sym_label] = ACTIONS(4437), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_PLUS_EQ] = ACTIONS(4437), - [anon_sym_DASH_EQ] = ACTIONS(4437), - [anon_sym_STAR_EQ] = ACTIONS(4437), - [anon_sym_SLASH_EQ] = ACTIONS(4437), - [anon_sym_PERCENT_EQ] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4435), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_suspend] = ACTIONS(4435), - [anon_sym_sealed] = ACTIONS(4435), - [anon_sym_annotation] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_override] = ACTIONS(4435), - [anon_sym_lateinit] = ACTIONS(4435), - [anon_sym_public] = ACTIONS(4435), - [anon_sym_private] = ACTIONS(4435), - [anon_sym_internal] = ACTIONS(4435), - [anon_sym_protected] = ACTIONS(4435), - [anon_sym_tailrec] = ACTIONS(4435), - [anon_sym_operator] = ACTIONS(4435), - [anon_sym_infix] = ACTIONS(4435), - [anon_sym_inline] = ACTIONS(4435), - [anon_sym_external] = ACTIONS(4435), - [sym_property_modifier] = ACTIONS(4435), - [anon_sym_abstract] = ACTIONS(4435), - [anon_sym_final] = ACTIONS(4435), - [anon_sym_open] = ACTIONS(4435), - [anon_sym_vararg] = ACTIONS(4435), - [anon_sym_noinline] = ACTIONS(4435), - [anon_sym_crossinline] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4437), - [sym__automatic_semicolon] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), + [4077] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7275), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(7277), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, - [4100] = { - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), + [4078] = { + [sym_type_constraints] = STATE(4168), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(7279), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, - [4101] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7274), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7276), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_DOT_DOT] = ACTIONS(7267), - [anon_sym_QMARK_COLON] = ACTIONS(7278), - [anon_sym_AMP_AMP] = ACTIONS(7280), - [anon_sym_PIPE_PIPE] = ACTIONS(7282), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3170), - [anon_sym_DASH_EQ] = ACTIONS(3170), - [anon_sym_STAR_EQ] = ACTIONS(3170), - [anon_sym_SLASH_EQ] = ACTIONS(3170), - [anon_sym_PERCENT_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(7284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7286), - [anon_sym_EQ_EQ] = ACTIONS(7284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7286), - [anon_sym_LT_EQ] = ACTIONS(7288), - [anon_sym_GT_EQ] = ACTIONS(7288), - [anon_sym_BANGin] = ACTIONS(7290), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), + [4079] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(7277), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, - [4102] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4080] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(7041), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7274), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7276), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_DOT_DOT] = ACTIONS(7267), - [anon_sym_QMARK_COLON] = ACTIONS(7278), - [anon_sym_AMP_AMP] = ACTIONS(7280), - [anon_sym_PIPE_PIPE] = ACTIONS(7282), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3194), - [anon_sym_DASH_EQ] = ACTIONS(3194), - [anon_sym_STAR_EQ] = ACTIONS(3194), - [anon_sym_SLASH_EQ] = ACTIONS(3194), - [anon_sym_PERCENT_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ] = ACTIONS(7284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7286), - [anon_sym_EQ_EQ] = ACTIONS(7284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7286), - [anon_sym_LT_EQ] = ACTIONS(7288), - [anon_sym_GT_EQ] = ACTIONS(7288), - [anon_sym_BANGin] = ACTIONS(7290), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4103] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7274), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7276), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(7267), - [anon_sym_QMARK_COLON] = ACTIONS(7278), - [anon_sym_AMP_AMP] = ACTIONS(7280), - [anon_sym_PIPE_PIPE] = ACTIONS(7282), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(7284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7286), - [anon_sym_EQ_EQ] = ACTIONS(7284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7286), - [anon_sym_LT_EQ] = ACTIONS(7288), - [anon_sym_GT_EQ] = ACTIONS(7288), - [anon_sym_BANGin] = ACTIONS(7290), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), + [4081] = { + [sym_class_body] = STATE(3203), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7281), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), }, - [4104] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1792), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1789), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1787), - [sym__multiplicative_operator] = STATE(1785), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1784), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4082] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(7041), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7274), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7265), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7276), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_DOT_DOT] = ACTIONS(7267), - [anon_sym_QMARK_COLON] = ACTIONS(7278), - [anon_sym_AMP_AMP] = ACTIONS(7280), - [anon_sym_PIPE_PIPE] = ACTIONS(7282), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(7284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7286), - [anon_sym_EQ_EQ] = ACTIONS(7284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7286), - [anon_sym_LT_EQ] = ACTIONS(7288), - [anon_sym_GT_EQ] = ACTIONS(7288), - [anon_sym_BANGin] = ACTIONS(7290), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4105] = { - [sym__alpha_identifier] = ACTIONS(5099), - [anon_sym_AT] = ACTIONS(5101), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_as] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5101), - [anon_sym_RBRACE] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5101), - [anon_sym_COMMA] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5099), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_where] = ACTIONS(5099), - [anon_sym_DOT] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5101), - [anon_sym_get] = ACTIONS(5099), - [anon_sym_set] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [sym_label] = ACTIONS(5101), - [anon_sym_in] = ACTIONS(5099), - [anon_sym_DOT_DOT] = ACTIONS(5101), - [anon_sym_QMARK_COLON] = ACTIONS(5101), - [anon_sym_AMP_AMP] = ACTIONS(5101), - [anon_sym_PIPE_PIPE] = ACTIONS(5101), - [anon_sym_else] = ACTIONS(5099), - [anon_sym_COLON_COLON] = ACTIONS(5101), - [anon_sym_PLUS_EQ] = ACTIONS(5101), - [anon_sym_DASH_EQ] = ACTIONS(5101), - [anon_sym_STAR_EQ] = ACTIONS(5101), - [anon_sym_SLASH_EQ] = ACTIONS(5101), - [anon_sym_PERCENT_EQ] = ACTIONS(5101), - [anon_sym_BANG_EQ] = ACTIONS(5099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5101), - [anon_sym_EQ_EQ] = ACTIONS(5099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5101), - [anon_sym_LT_EQ] = ACTIONS(5101), - [anon_sym_GT_EQ] = ACTIONS(5101), - [anon_sym_BANGin] = ACTIONS(5101), - [anon_sym_is] = ACTIONS(5099), - [anon_sym_BANGis] = ACTIONS(5101), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5099), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_as_QMARK] = ACTIONS(5101), - [anon_sym_PLUS_PLUS] = ACTIONS(5101), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_BANG_BANG] = ACTIONS(5101), - [anon_sym_suspend] = ACTIONS(5099), - [anon_sym_sealed] = ACTIONS(5099), - [anon_sym_annotation] = ACTIONS(5099), - [anon_sym_data] = ACTIONS(5099), - [anon_sym_inner] = ACTIONS(5099), - [anon_sym_value] = ACTIONS(5099), - [anon_sym_override] = ACTIONS(5099), - [anon_sym_lateinit] = ACTIONS(5099), - [anon_sym_public] = ACTIONS(5099), - [anon_sym_private] = ACTIONS(5099), - [anon_sym_internal] = ACTIONS(5099), - [anon_sym_protected] = ACTIONS(5099), - [anon_sym_tailrec] = ACTIONS(5099), - [anon_sym_operator] = ACTIONS(5099), - [anon_sym_infix] = ACTIONS(5099), - [anon_sym_inline] = ACTIONS(5099), - [anon_sym_external] = ACTIONS(5099), - [sym_property_modifier] = ACTIONS(5099), - [anon_sym_abstract] = ACTIONS(5099), - [anon_sym_final] = ACTIONS(5099), - [anon_sym_open] = ACTIONS(5099), - [anon_sym_vararg] = ACTIONS(5099), - [anon_sym_noinline] = ACTIONS(5099), - [anon_sym_crossinline] = ACTIONS(5099), - [anon_sym_expect] = ACTIONS(5099), - [anon_sym_actual] = ACTIONS(5099), + [4083] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5852), + [anon_sym_RPAREN] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4284), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_while] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5101), - [sym__automatic_semicolon] = ACTIONS(5101), - [sym_safe_nav] = ACTIONS(5101), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), }, - [4106] = { + [4084] = { + [sym_type_constraints] = STATE(4174), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(7283), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_COMMA] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), [sym_label] = ACTIONS(4185), [anon_sym_in] = ACTIONS(4183), [anon_sym_DOT_DOT] = ACTIONS(4185), @@ -455786,11 +451439,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(4185), [anon_sym_else] = ACTIONS(4183), [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_PLUS_EQ] = ACTIONS(4185), - [anon_sym_DASH_EQ] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4185), - [anon_sym_SLASH_EQ] = ACTIONS(4185), - [anon_sym_PERCENT_EQ] = ACTIONS(4185), [anon_sym_BANG_EQ] = ACTIONS(4183), [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), [anon_sym_EQ_EQ] = ACTIONS(4183), @@ -455803,7 +451451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4183), [anon_sym_DASH] = ACTIONS(4183), [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), [anon_sym_as_QMARK] = ACTIONS(4185), [anon_sym_PLUS_PLUS] = ACTIONS(4185), [anon_sym_DASH_DASH] = ACTIONS(4185), @@ -455840,614 +451488,1234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, - [4107] = { - [sym__alpha_identifier] = ACTIONS(7311), - [anon_sym_AT] = ACTIONS(7313), - [anon_sym_LBRACK] = ACTIONS(7313), - [anon_sym_typealias] = ACTIONS(7311), - [anon_sym_class] = ACTIONS(7311), - [anon_sym_fun] = ACTIONS(7311), - [anon_sym_interface] = ACTIONS(7311), - [anon_sym_enum] = ACTIONS(7311), - [anon_sym_LBRACE] = ACTIONS(7313), - [anon_sym_LPAREN] = ACTIONS(7313), - [anon_sym_val] = ACTIONS(7311), - [anon_sym_var] = ACTIONS(7311), - [anon_sym_object] = ACTIONS(7311), - [anon_sym_get] = ACTIONS(7311), - [anon_sym_set] = ACTIONS(7311), - [anon_sym_this] = ACTIONS(7311), - [anon_sym_super] = ACTIONS(7311), - [anon_sym_STAR] = ACTIONS(7313), - [sym_label] = ACTIONS(7311), - [anon_sym_for] = ACTIONS(7311), - [anon_sym_while] = ACTIONS(7311), - [anon_sym_do] = ACTIONS(7311), - [anon_sym_null] = ACTIONS(7311), - [anon_sym_if] = ACTIONS(7311), - [anon_sym_when] = ACTIONS(7311), - [anon_sym_try] = ACTIONS(7311), - [anon_sym_throw] = ACTIONS(7311), - [anon_sym_return] = ACTIONS(7311), - [anon_sym_continue] = ACTIONS(7311), - [anon_sym_break] = ACTIONS(7311), - [anon_sym_COLON_COLON] = ACTIONS(7313), - [anon_sym_PLUS] = ACTIONS(7311), - [anon_sym_DASH] = ACTIONS(7311), - [anon_sym_PLUS_PLUS] = ACTIONS(7313), - [anon_sym_DASH_DASH] = ACTIONS(7313), - [anon_sym_BANG] = ACTIONS(7313), - [anon_sym_suspend] = ACTIONS(7311), - [anon_sym_sealed] = ACTIONS(7311), - [anon_sym_annotation] = ACTIONS(7311), - [anon_sym_data] = ACTIONS(7311), - [anon_sym_inner] = ACTIONS(7311), - [anon_sym_value] = ACTIONS(7311), - [anon_sym_override] = ACTIONS(7311), - [anon_sym_lateinit] = ACTIONS(7311), - [anon_sym_public] = ACTIONS(7311), - [anon_sym_private] = ACTIONS(7311), - [anon_sym_internal] = ACTIONS(7311), - [anon_sym_protected] = ACTIONS(7311), - [anon_sym_tailrec] = ACTIONS(7311), - [anon_sym_operator] = ACTIONS(7311), - [anon_sym_infix] = ACTIONS(7311), - [anon_sym_inline] = ACTIONS(7311), - [anon_sym_external] = ACTIONS(7311), - [sym_property_modifier] = ACTIONS(7311), - [anon_sym_abstract] = ACTIONS(7311), - [anon_sym_final] = ACTIONS(7311), - [anon_sym_open] = ACTIONS(7311), - [anon_sym_vararg] = ACTIONS(7311), - [anon_sym_noinline] = ACTIONS(7311), - [anon_sym_crossinline] = ACTIONS(7311), - [anon_sym_expect] = ACTIONS(7311), - [anon_sym_actual] = ACTIONS(7311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7313), - [anon_sym_continue_AT] = ACTIONS(7313), - [anon_sym_break_AT] = ACTIONS(7313), - [anon_sym_this_AT] = ACTIONS(7313), - [anon_sym_super_AT] = ACTIONS(7313), - [sym_real_literal] = ACTIONS(7313), - [sym_integer_literal] = ACTIONS(7311), - [sym_hex_literal] = ACTIONS(7313), - [sym_bin_literal] = ACTIONS(7313), - [anon_sym_true] = ACTIONS(7311), - [anon_sym_false] = ACTIONS(7311), - [anon_sym_SQUOTE] = ACTIONS(7313), - [sym__backtick_identifier] = ACTIONS(7313), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7313), + [4085] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(5860), + [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_while] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), }, - [4108] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_COMMA] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(7315), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7317), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_PLUS_EQ] = ACTIONS(4928), - [anon_sym_DASH_EQ] = ACTIONS(4928), - [anon_sym_STAR_EQ] = ACTIONS(4928), - [anon_sym_SLASH_EQ] = ACTIONS(4928), - [anon_sym_PERCENT_EQ] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [4086] = { + [sym_class_body] = STATE(3157), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7285), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), + }, + [4087] = { + [sym_type_constraints] = STATE(4206), + [sym_function_body] = STATE(3552), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(7287), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_RPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_while] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), [sym_multiline_comment] = ACTIONS(3), }, - [4109] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_COMMA] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7317), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_PLUS_EQ] = ACTIONS(4928), - [anon_sym_DASH_EQ] = ACTIONS(4928), - [anon_sym_STAR_EQ] = ACTIONS(4928), - [anon_sym_SLASH_EQ] = ACTIONS(4928), - [anon_sym_PERCENT_EQ] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [4088] = { + [sym_type_constraints] = STATE(4222), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, - [4110] = { - [sym__alpha_identifier] = ACTIONS(4465), - [anon_sym_AT] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_as] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(4467), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_where] = ACTIONS(4465), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_get] = ACTIONS(4465), - [anon_sym_set] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [sym_label] = ACTIONS(4467), - [anon_sym_in] = ACTIONS(4465), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_QMARK_COLON] = ACTIONS(4467), - [anon_sym_AMP_AMP] = ACTIONS(4467), - [anon_sym_PIPE_PIPE] = ACTIONS(4467), - [anon_sym_else] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(4467), - [anon_sym_PLUS_EQ] = ACTIONS(4467), - [anon_sym_DASH_EQ] = ACTIONS(4467), - [anon_sym_STAR_EQ] = ACTIONS(4467), - [anon_sym_SLASH_EQ] = ACTIONS(4467), - [anon_sym_PERCENT_EQ] = ACTIONS(4467), - [anon_sym_BANG_EQ] = ACTIONS(4465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), - [anon_sym_EQ_EQ] = ACTIONS(4465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_BANGin] = ACTIONS(4467), - [anon_sym_is] = ACTIONS(4465), - [anon_sym_BANGis] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_PERCENT] = ACTIONS(4465), - [anon_sym_as_QMARK] = ACTIONS(4467), - [anon_sym_PLUS_PLUS] = ACTIONS(4467), - [anon_sym_DASH_DASH] = ACTIONS(4467), - [anon_sym_BANG_BANG] = ACTIONS(4467), - [anon_sym_suspend] = ACTIONS(4465), - [anon_sym_sealed] = ACTIONS(4465), - [anon_sym_annotation] = ACTIONS(4465), - [anon_sym_data] = ACTIONS(4465), - [anon_sym_inner] = ACTIONS(4465), - [anon_sym_value] = ACTIONS(4465), - [anon_sym_override] = ACTIONS(4465), - [anon_sym_lateinit] = ACTIONS(4465), - [anon_sym_public] = ACTIONS(4465), - [anon_sym_private] = ACTIONS(4465), - [anon_sym_internal] = ACTIONS(4465), - [anon_sym_protected] = ACTIONS(4465), - [anon_sym_tailrec] = ACTIONS(4465), - [anon_sym_operator] = ACTIONS(4465), - [anon_sym_infix] = ACTIONS(4465), - [anon_sym_inline] = ACTIONS(4465), - [anon_sym_external] = ACTIONS(4465), - [sym_property_modifier] = ACTIONS(4465), - [anon_sym_abstract] = ACTIONS(4465), - [anon_sym_final] = ACTIONS(4465), - [anon_sym_open] = ACTIONS(4465), - [anon_sym_vararg] = ACTIONS(4465), - [anon_sym_noinline] = ACTIONS(4465), - [anon_sym_crossinline] = ACTIONS(4465), - [anon_sym_expect] = ACTIONS(4465), - [anon_sym_actual] = ACTIONS(4465), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4467), - [sym__automatic_semicolon] = ACTIONS(4467), - [sym_safe_nav] = ACTIONS(4467), + [4089] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4111] = { - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [sym_label] = ACTIONS(4639), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_suspend] = ACTIONS(4637), - [anon_sym_sealed] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4637), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_override] = ACTIONS(4637), - [anon_sym_lateinit] = ACTIONS(4637), - [anon_sym_public] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4637), - [anon_sym_internal] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4637), - [anon_sym_tailrec] = ACTIONS(4637), - [anon_sym_operator] = ACTIONS(4637), - [anon_sym_infix] = ACTIONS(4637), - [anon_sym_inline] = ACTIONS(4637), - [anon_sym_external] = ACTIONS(4637), - [sym_property_modifier] = ACTIONS(4637), - [anon_sym_abstract] = ACTIONS(4637), - [anon_sym_final] = ACTIONS(4637), - [anon_sym_open] = ACTIONS(4637), - [anon_sym_vararg] = ACTIONS(4637), - [anon_sym_noinline] = ACTIONS(4637), - [anon_sym_crossinline] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4639), - [sym__automatic_semicolon] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), + [4090] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7291), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [4091] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7295), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [4092] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4112] = { - [sym__alpha_identifier] = ACTIONS(4922), - [anon_sym_AT] = ACTIONS(4924), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4922), - [anon_sym_EQ] = ACTIONS(4922), - [anon_sym_LBRACE] = ACTIONS(4924), - [anon_sym_RBRACE] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4924), - [anon_sym_LT] = ACTIONS(4922), - [anon_sym_GT] = ACTIONS(4922), - [anon_sym_where] = ACTIONS(4922), - [anon_sym_DOT] = ACTIONS(4922), - [anon_sym_SEMI] = ACTIONS(4924), - [anon_sym_get] = ACTIONS(4922), - [anon_sym_set] = ACTIONS(4922), - [anon_sym_STAR] = ACTIONS(4922), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4922), - [anon_sym_DOT_DOT] = ACTIONS(4924), - [anon_sym_QMARK_COLON] = ACTIONS(4924), - [anon_sym_AMP_AMP] = ACTIONS(4924), - [anon_sym_PIPE_PIPE] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(4922), - [anon_sym_COLON_COLON] = ACTIONS(4924), - [anon_sym_PLUS_EQ] = ACTIONS(4924), - [anon_sym_DASH_EQ] = ACTIONS(4924), - [anon_sym_STAR_EQ] = ACTIONS(4924), - [anon_sym_SLASH_EQ] = ACTIONS(4924), - [anon_sym_PERCENT_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ] = ACTIONS(4922), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4924), - [anon_sym_LT_EQ] = ACTIONS(4924), - [anon_sym_GT_EQ] = ACTIONS(4924), - [anon_sym_BANGin] = ACTIONS(4924), - [anon_sym_is] = ACTIONS(4922), - [anon_sym_BANGis] = ACTIONS(4924), - [anon_sym_PLUS] = ACTIONS(4922), - [anon_sym_DASH] = ACTIONS(4922), - [anon_sym_SLASH] = ACTIONS(4922), - [anon_sym_PERCENT] = ACTIONS(4922), - [anon_sym_as_QMARK] = ACTIONS(4924), - [anon_sym_PLUS_PLUS] = ACTIONS(4924), - [anon_sym_DASH_DASH] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4924), - [anon_sym_suspend] = ACTIONS(4922), - [anon_sym_sealed] = ACTIONS(4922), - [anon_sym_annotation] = ACTIONS(4922), - [anon_sym_data] = ACTIONS(4922), - [anon_sym_inner] = ACTIONS(4922), - [anon_sym_value] = ACTIONS(4922), - [anon_sym_override] = ACTIONS(4922), - [anon_sym_lateinit] = ACTIONS(4922), - [anon_sym_public] = ACTIONS(4922), - [anon_sym_private] = ACTIONS(4922), - [anon_sym_internal] = ACTIONS(4922), - [anon_sym_protected] = ACTIONS(4922), - [anon_sym_tailrec] = ACTIONS(4922), - [anon_sym_operator] = ACTIONS(4922), - [anon_sym_infix] = ACTIONS(4922), - [anon_sym_inline] = ACTIONS(4922), - [anon_sym_external] = ACTIONS(4922), - [sym_property_modifier] = ACTIONS(4922), - [anon_sym_abstract] = ACTIONS(4922), - [anon_sym_final] = ACTIONS(4922), - [anon_sym_open] = ACTIONS(4922), - [anon_sym_vararg] = ACTIONS(4922), - [anon_sym_noinline] = ACTIONS(4922), - [anon_sym_crossinline] = ACTIONS(4922), - [anon_sym_expect] = ACTIONS(4922), - [anon_sym_actual] = ACTIONS(4922), + [4093] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6650), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [4094] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6646), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4924), - [sym__automatic_semicolon] = ACTIONS(4924), - [sym_safe_nav] = ACTIONS(4924), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, - [4113] = { - [sym__alpha_identifier] = ACTIONS(4918), - [anon_sym_AT] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(4920), - [anon_sym_as] = ACTIONS(4918), - [anon_sym_EQ] = ACTIONS(4918), - [anon_sym_LBRACE] = ACTIONS(4920), - [anon_sym_RBRACE] = ACTIONS(4920), - [anon_sym_LPAREN] = ACTIONS(4920), - [anon_sym_COMMA] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4918), - [anon_sym_GT] = ACTIONS(4918), - [anon_sym_where] = ACTIONS(4918), - [anon_sym_DOT] = ACTIONS(4918), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_get] = ACTIONS(4918), - [anon_sym_set] = ACTIONS(4918), - [anon_sym_STAR] = ACTIONS(4918), - [sym_label] = ACTIONS(4920), - [anon_sym_in] = ACTIONS(4918), - [anon_sym_DOT_DOT] = ACTIONS(4920), - [anon_sym_QMARK_COLON] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [anon_sym_else] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_PLUS_EQ] = ACTIONS(4920), - [anon_sym_DASH_EQ] = ACTIONS(4920), - [anon_sym_STAR_EQ] = ACTIONS(4920), - [anon_sym_SLASH_EQ] = ACTIONS(4920), - [anon_sym_PERCENT_EQ] = ACTIONS(4920), - [anon_sym_BANG_EQ] = ACTIONS(4918), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4920), - [anon_sym_EQ_EQ] = ACTIONS(4918), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4920), - [anon_sym_LT_EQ] = ACTIONS(4920), - [anon_sym_GT_EQ] = ACTIONS(4920), - [anon_sym_BANGin] = ACTIONS(4920), - [anon_sym_is] = ACTIONS(4918), - [anon_sym_BANGis] = ACTIONS(4920), - [anon_sym_PLUS] = ACTIONS(4918), - [anon_sym_DASH] = ACTIONS(4918), - [anon_sym_SLASH] = ACTIONS(4918), - [anon_sym_PERCENT] = ACTIONS(4918), - [anon_sym_as_QMARK] = ACTIONS(4920), - [anon_sym_PLUS_PLUS] = ACTIONS(4920), - [anon_sym_DASH_DASH] = ACTIONS(4920), - [anon_sym_BANG_BANG] = ACTIONS(4920), - [anon_sym_suspend] = ACTIONS(4918), - [anon_sym_sealed] = ACTIONS(4918), - [anon_sym_annotation] = ACTIONS(4918), - [anon_sym_data] = ACTIONS(4918), - [anon_sym_inner] = ACTIONS(4918), - [anon_sym_value] = ACTIONS(4918), - [anon_sym_override] = ACTIONS(4918), - [anon_sym_lateinit] = ACTIONS(4918), - [anon_sym_public] = ACTIONS(4918), - [anon_sym_private] = ACTIONS(4918), - [anon_sym_internal] = ACTIONS(4918), - [anon_sym_protected] = ACTIONS(4918), - [anon_sym_tailrec] = ACTIONS(4918), - [anon_sym_operator] = ACTIONS(4918), - [anon_sym_infix] = ACTIONS(4918), - [anon_sym_inline] = ACTIONS(4918), - [anon_sym_external] = ACTIONS(4918), - [sym_property_modifier] = ACTIONS(4918), - [anon_sym_abstract] = ACTIONS(4918), - [anon_sym_final] = ACTIONS(4918), - [anon_sym_open] = ACTIONS(4918), - [anon_sym_vararg] = ACTIONS(4918), - [anon_sym_noinline] = ACTIONS(4918), - [anon_sym_crossinline] = ACTIONS(4918), - [anon_sym_expect] = ACTIONS(4918), - [anon_sym_actual] = ACTIONS(4918), + [4095] = { + [sym_type_constraints] = STATE(4219), + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(7299), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + }, + [4096] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7301), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), + }, + [4097] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7303), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + }, + [4098] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4140), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_RBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_RPAREN] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [anon_sym_DASH_GT] = ACTIONS(4738), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4920), - [sym__automatic_semicolon] = ACTIONS(4920), - [sym_safe_nav] = ACTIONS(4920), + [sym__backtick_identifier] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), [sym_multiline_comment] = ACTIONS(3), }, - [4114] = { + [4099] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(5410), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + }, + [4100] = { [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), [anon_sym_as] = ACTIONS(4281), [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(4283), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5422), [anon_sym_LT] = ACTIONS(4281), [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(4281), [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4284), [anon_sym_get] = ACTIONS(4281), [anon_sym_set] = ACTIONS(4281), [anon_sym_STAR] = ACTIONS(4281), - [sym_label] = ACTIONS(4283), + [sym_label] = ACTIONS(4284), [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4284), [anon_sym_PLUS] = ACTIONS(4281), [anon_sym_DASH] = ACTIONS(4281), [anon_sym_SLASH] = ACTIONS(4281), [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), [anon_sym_suspend] = ACTIONS(4281), [anon_sym_sealed] = ACTIONS(4281), [anon_sym_annotation] = ACTIONS(4281), @@ -456475,658 +452743,1113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(4281), [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), }, - [4115] = { - [sym__alpha_identifier] = ACTIONS(4868), - [anon_sym_AT] = ACTIONS(4870), - [anon_sym_LBRACK] = ACTIONS(4870), - [anon_sym_as] = ACTIONS(4868), - [anon_sym_EQ] = ACTIONS(4868), - [anon_sym_LBRACE] = ACTIONS(4870), - [anon_sym_RBRACE] = ACTIONS(4870), - [anon_sym_LPAREN] = ACTIONS(4870), - [anon_sym_COMMA] = ACTIONS(4870), - [anon_sym_LT] = ACTIONS(4868), - [anon_sym_GT] = ACTIONS(4868), - [anon_sym_where] = ACTIONS(4868), - [anon_sym_DOT] = ACTIONS(4868), - [anon_sym_SEMI] = ACTIONS(4870), - [anon_sym_get] = ACTIONS(4868), - [anon_sym_set] = ACTIONS(4868), - [anon_sym_STAR] = ACTIONS(4868), - [sym_label] = ACTIONS(4870), - [anon_sym_in] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4870), - [anon_sym_QMARK_COLON] = ACTIONS(4870), - [anon_sym_AMP_AMP] = ACTIONS(4870), - [anon_sym_PIPE_PIPE] = ACTIONS(4870), - [anon_sym_else] = ACTIONS(4868), - [anon_sym_COLON_COLON] = ACTIONS(4870), - [anon_sym_PLUS_EQ] = ACTIONS(4870), - [anon_sym_DASH_EQ] = ACTIONS(4870), - [anon_sym_STAR_EQ] = ACTIONS(4870), - [anon_sym_SLASH_EQ] = ACTIONS(4870), - [anon_sym_PERCENT_EQ] = ACTIONS(4870), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4870), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4870), - [anon_sym_LT_EQ] = ACTIONS(4870), - [anon_sym_GT_EQ] = ACTIONS(4870), - [anon_sym_BANGin] = ACTIONS(4870), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_BANGis] = ACTIONS(4870), - [anon_sym_PLUS] = ACTIONS(4868), - [anon_sym_DASH] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4868), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_as_QMARK] = ACTIONS(4870), - [anon_sym_PLUS_PLUS] = ACTIONS(4870), - [anon_sym_DASH_DASH] = ACTIONS(4870), - [anon_sym_BANG_BANG] = ACTIONS(4870), - [anon_sym_suspend] = ACTIONS(4868), - [anon_sym_sealed] = ACTIONS(4868), - [anon_sym_annotation] = ACTIONS(4868), - [anon_sym_data] = ACTIONS(4868), - [anon_sym_inner] = ACTIONS(4868), - [anon_sym_value] = ACTIONS(4868), - [anon_sym_override] = ACTIONS(4868), - [anon_sym_lateinit] = ACTIONS(4868), - [anon_sym_public] = ACTIONS(4868), - [anon_sym_private] = ACTIONS(4868), - [anon_sym_internal] = ACTIONS(4868), - [anon_sym_protected] = ACTIONS(4868), - [anon_sym_tailrec] = ACTIONS(4868), - [anon_sym_operator] = ACTIONS(4868), - [anon_sym_infix] = ACTIONS(4868), - [anon_sym_inline] = ACTIONS(4868), - [anon_sym_external] = ACTIONS(4868), - [sym_property_modifier] = ACTIONS(4868), - [anon_sym_abstract] = ACTIONS(4868), - [anon_sym_final] = ACTIONS(4868), - [anon_sym_open] = ACTIONS(4868), - [anon_sym_vararg] = ACTIONS(4868), - [anon_sym_noinline] = ACTIONS(4868), - [anon_sym_crossinline] = ACTIONS(4868), - [anon_sym_expect] = ACTIONS(4868), - [anon_sym_actual] = ACTIONS(4868), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4870), - [sym__automatic_semicolon] = ACTIONS(4870), - [sym_safe_nav] = ACTIONS(4870), + [4101] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3184), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4116] = { - [sym__alpha_identifier] = ACTIONS(4860), - [anon_sym_AT] = ACTIONS(4862), - [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_EQ] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4862), - [anon_sym_RBRACE] = ACTIONS(4862), - [anon_sym_LPAREN] = ACTIONS(4862), - [anon_sym_COMMA] = ACTIONS(4862), - [anon_sym_LT] = ACTIONS(4860), - [anon_sym_GT] = ACTIONS(4860), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4860), - [anon_sym_SEMI] = ACTIONS(4862), - [anon_sym_get] = ACTIONS(4860), - [anon_sym_set] = ACTIONS(4860), - [anon_sym_STAR] = ACTIONS(4860), - [sym_label] = ACTIONS(4862), - [anon_sym_in] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4862), - [anon_sym_QMARK_COLON] = ACTIONS(4862), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE_PIPE] = ACTIONS(4862), - [anon_sym_else] = ACTIONS(4860), - [anon_sym_COLON_COLON] = ACTIONS(4862), - [anon_sym_PLUS_EQ] = ACTIONS(4862), - [anon_sym_DASH_EQ] = ACTIONS(4862), - [anon_sym_STAR_EQ] = ACTIONS(4862), - [anon_sym_SLASH_EQ] = ACTIONS(4862), - [anon_sym_PERCENT_EQ] = ACTIONS(4862), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4862), - [anon_sym_LT_EQ] = ACTIONS(4862), - [anon_sym_GT_EQ] = ACTIONS(4862), - [anon_sym_BANGin] = ACTIONS(4862), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_BANGis] = ACTIONS(4862), - [anon_sym_PLUS] = ACTIONS(4860), - [anon_sym_DASH] = ACTIONS(4860), - [anon_sym_SLASH] = ACTIONS(4860), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_as_QMARK] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4862), - [anon_sym_DASH_DASH] = ACTIONS(4862), - [anon_sym_BANG_BANG] = ACTIONS(4862), - [anon_sym_suspend] = ACTIONS(4860), - [anon_sym_sealed] = ACTIONS(4860), - [anon_sym_annotation] = ACTIONS(4860), - [anon_sym_data] = ACTIONS(4860), - [anon_sym_inner] = ACTIONS(4860), - [anon_sym_value] = ACTIONS(4860), - [anon_sym_override] = ACTIONS(4860), - [anon_sym_lateinit] = ACTIONS(4860), - [anon_sym_public] = ACTIONS(4860), - [anon_sym_private] = ACTIONS(4860), - [anon_sym_internal] = ACTIONS(4860), - [anon_sym_protected] = ACTIONS(4860), - [anon_sym_tailrec] = ACTIONS(4860), - [anon_sym_operator] = ACTIONS(4860), - [anon_sym_infix] = ACTIONS(4860), - [anon_sym_inline] = ACTIONS(4860), - [anon_sym_external] = ACTIONS(4860), - [sym_property_modifier] = ACTIONS(4860), - [anon_sym_abstract] = ACTIONS(4860), - [anon_sym_final] = ACTIONS(4860), - [anon_sym_open] = ACTIONS(4860), - [anon_sym_vararg] = ACTIONS(4860), - [anon_sym_noinline] = ACTIONS(4860), - [anon_sym_crossinline] = ACTIONS(4860), - [anon_sym_expect] = ACTIONS(4860), - [anon_sym_actual] = ACTIONS(4860), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4862), - [sym__automatic_semicolon] = ACTIONS(4862), - [sym_safe_nav] = ACTIONS(4862), + [4102] = { + [sym_type_constraints] = STATE(4183), + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, - [4117] = { - [sym__alpha_identifier] = ACTIONS(4856), - [anon_sym_AT] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_as] = ACTIONS(4856), - [anon_sym_EQ] = ACTIONS(4856), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_RBRACE] = ACTIONS(4858), - [anon_sym_LPAREN] = ACTIONS(4858), - [anon_sym_COMMA] = ACTIONS(4858), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_where] = ACTIONS(4856), - [anon_sym_DOT] = ACTIONS(4856), - [anon_sym_SEMI] = ACTIONS(4858), - [anon_sym_get] = ACTIONS(4856), - [anon_sym_set] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4856), - [sym_label] = ACTIONS(4858), - [anon_sym_in] = ACTIONS(4856), - [anon_sym_DOT_DOT] = ACTIONS(4858), - [anon_sym_QMARK_COLON] = ACTIONS(4858), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_else] = ACTIONS(4856), - [anon_sym_COLON_COLON] = ACTIONS(4858), - [anon_sym_PLUS_EQ] = ACTIONS(4858), - [anon_sym_DASH_EQ] = ACTIONS(4858), - [anon_sym_STAR_EQ] = ACTIONS(4858), - [anon_sym_SLASH_EQ] = ACTIONS(4858), - [anon_sym_PERCENT_EQ] = ACTIONS(4858), - [anon_sym_BANG_EQ] = ACTIONS(4856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), - [anon_sym_EQ_EQ] = ACTIONS(4856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), - [anon_sym_LT_EQ] = ACTIONS(4858), - [anon_sym_GT_EQ] = ACTIONS(4858), - [anon_sym_BANGin] = ACTIONS(4858), - [anon_sym_is] = ACTIONS(4856), - [anon_sym_BANGis] = ACTIONS(4858), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4856), - [anon_sym_as_QMARK] = ACTIONS(4858), - [anon_sym_PLUS_PLUS] = ACTIONS(4858), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_BANG_BANG] = ACTIONS(4858), - [anon_sym_suspend] = ACTIONS(4856), - [anon_sym_sealed] = ACTIONS(4856), - [anon_sym_annotation] = ACTIONS(4856), - [anon_sym_data] = ACTIONS(4856), - [anon_sym_inner] = ACTIONS(4856), - [anon_sym_value] = ACTIONS(4856), - [anon_sym_override] = ACTIONS(4856), - [anon_sym_lateinit] = ACTIONS(4856), - [anon_sym_public] = ACTIONS(4856), - [anon_sym_private] = ACTIONS(4856), - [anon_sym_internal] = ACTIONS(4856), - [anon_sym_protected] = ACTIONS(4856), - [anon_sym_tailrec] = ACTIONS(4856), - [anon_sym_operator] = ACTIONS(4856), - [anon_sym_infix] = ACTIONS(4856), - [anon_sym_inline] = ACTIONS(4856), - [anon_sym_external] = ACTIONS(4856), - [sym_property_modifier] = ACTIONS(4856), - [anon_sym_abstract] = ACTIONS(4856), - [anon_sym_final] = ACTIONS(4856), - [anon_sym_open] = ACTIONS(4856), - [anon_sym_vararg] = ACTIONS(4856), - [anon_sym_noinline] = ACTIONS(4856), - [anon_sym_crossinline] = ACTIONS(4856), - [anon_sym_expect] = ACTIONS(4856), - [anon_sym_actual] = ACTIONS(4856), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4858), - [sym__automatic_semicolon] = ACTIONS(4858), - [sym_safe_nav] = ACTIONS(4858), + [4103] = { + [sym_function_body] = STATE(4010), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(7331), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), [sym_multiline_comment] = ACTIONS(3), }, - [4118] = { - [sym__alpha_identifier] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(1732), - [anon_sym_set] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_QMARK_COLON] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1732), - [anon_sym_BANGis] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_as_QMARK] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1734), - [anon_sym_suspend] = ACTIONS(1732), - [anon_sym_sealed] = ACTIONS(1732), - [anon_sym_annotation] = ACTIONS(1732), - [anon_sym_data] = ACTIONS(1732), - [anon_sym_inner] = ACTIONS(1732), - [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(1732), - [anon_sym_lateinit] = ACTIONS(1732), - [anon_sym_public] = ACTIONS(1732), - [anon_sym_private] = ACTIONS(1732), - [anon_sym_internal] = ACTIONS(1732), - [anon_sym_protected] = ACTIONS(1732), - [anon_sym_tailrec] = ACTIONS(1732), - [anon_sym_operator] = ACTIONS(1732), - [anon_sym_infix] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym_external] = ACTIONS(1732), - [sym_property_modifier] = ACTIONS(1732), - [anon_sym_abstract] = ACTIONS(1732), - [anon_sym_final] = ACTIONS(1732), - [anon_sym_open] = ACTIONS(1732), - [anon_sym_vararg] = ACTIONS(1732), - [anon_sym_noinline] = ACTIONS(1732), - [anon_sym_crossinline] = ACTIONS(1732), - [anon_sym_expect] = ACTIONS(1732), - [anon_sym_actual] = ACTIONS(1732), + [4104] = { + [sym_type_constraints] = STATE(4176), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + }, + [4105] = { + [sym_type_constraints] = STATE(4174), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, - [4119] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(7319), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4355), - [sym_label] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), + [4106] = { + [sym_type_constraints] = STATE(4213), + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + }, + [4107] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3169), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4353), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4120] = { - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4705), - [sym_label] = ACTIONS(4707), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_PLUS_EQ] = ACTIONS(4707), - [anon_sym_DASH_EQ] = ACTIONS(4707), - [anon_sym_STAR_EQ] = ACTIONS(4707), - [anon_sym_SLASH_EQ] = ACTIONS(4707), - [anon_sym_PERCENT_EQ] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4705), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_suspend] = ACTIONS(4705), - [anon_sym_sealed] = ACTIONS(4705), - [anon_sym_annotation] = ACTIONS(4705), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_override] = ACTIONS(4705), - [anon_sym_lateinit] = ACTIONS(4705), - [anon_sym_public] = ACTIONS(4705), - [anon_sym_private] = ACTIONS(4705), - [anon_sym_internal] = ACTIONS(4705), - [anon_sym_protected] = ACTIONS(4705), - [anon_sym_tailrec] = ACTIONS(4705), - [anon_sym_operator] = ACTIONS(4705), - [anon_sym_infix] = ACTIONS(4705), - [anon_sym_inline] = ACTIONS(4705), - [anon_sym_external] = ACTIONS(4705), - [sym_property_modifier] = ACTIONS(4705), - [anon_sym_abstract] = ACTIONS(4705), - [anon_sym_final] = ACTIONS(4705), - [anon_sym_open] = ACTIONS(4705), - [anon_sym_vararg] = ACTIONS(4705), - [anon_sym_noinline] = ACTIONS(4705), - [anon_sym_crossinline] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4707), - [sym__automatic_semicolon] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), + [4108] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3119), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3119), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4121] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4852), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [sym_label] = ACTIONS(4854), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_suspend] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_annotation] = ACTIONS(4852), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_lateinit] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_tailrec] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_infix] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_external] = ACTIONS(4852), - [sym_property_modifier] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_open] = ACTIONS(4852), - [anon_sym_vararg] = ACTIONS(4852), - [anon_sym_noinline] = ACTIONS(4852), - [anon_sym_crossinline] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4854), - [sym__automatic_semicolon] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), + [4109] = { + [sym_type_constraints] = STATE(4168), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, - [4122] = { - [sym__alpha_identifier] = ACTIONS(5115), - [anon_sym_AT] = ACTIONS(5117), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_as] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5117), - [anon_sym_RBRACE] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5117), - [anon_sym_COMMA] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5115), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_where] = ACTIONS(5115), - [anon_sym_DOT] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5117), - [anon_sym_get] = ACTIONS(5115), - [anon_sym_set] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [sym_label] = ACTIONS(5117), - [anon_sym_in] = ACTIONS(5115), - [anon_sym_DOT_DOT] = ACTIONS(5117), - [anon_sym_QMARK_COLON] = ACTIONS(5117), - [anon_sym_AMP_AMP] = ACTIONS(5117), - [anon_sym_PIPE_PIPE] = ACTIONS(5117), - [anon_sym_else] = ACTIONS(5115), - [anon_sym_COLON_COLON] = ACTIONS(5117), - [anon_sym_PLUS_EQ] = ACTIONS(5117), - [anon_sym_DASH_EQ] = ACTIONS(5117), - [anon_sym_STAR_EQ] = ACTIONS(5117), - [anon_sym_SLASH_EQ] = ACTIONS(5117), - [anon_sym_PERCENT_EQ] = ACTIONS(5117), - [anon_sym_BANG_EQ] = ACTIONS(5115), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5117), - [anon_sym_EQ_EQ] = ACTIONS(5115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5117), - [anon_sym_LT_EQ] = ACTIONS(5117), - [anon_sym_GT_EQ] = ACTIONS(5117), - [anon_sym_BANGin] = ACTIONS(5117), - [anon_sym_is] = ACTIONS(5115), - [anon_sym_BANGis] = ACTIONS(5117), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5115), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_as_QMARK] = ACTIONS(5117), - [anon_sym_PLUS_PLUS] = ACTIONS(5117), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_BANG_BANG] = ACTIONS(5117), - [anon_sym_suspend] = ACTIONS(5115), - [anon_sym_sealed] = ACTIONS(5115), - [anon_sym_annotation] = ACTIONS(5115), - [anon_sym_data] = ACTIONS(5115), - [anon_sym_inner] = ACTIONS(5115), - [anon_sym_value] = ACTIONS(5115), - [anon_sym_override] = ACTIONS(5115), - [anon_sym_lateinit] = ACTIONS(5115), - [anon_sym_public] = ACTIONS(5115), - [anon_sym_private] = ACTIONS(5115), - [anon_sym_internal] = ACTIONS(5115), - [anon_sym_protected] = ACTIONS(5115), - [anon_sym_tailrec] = ACTIONS(5115), - [anon_sym_operator] = ACTIONS(5115), - [anon_sym_infix] = ACTIONS(5115), - [anon_sym_inline] = ACTIONS(5115), - [anon_sym_external] = ACTIONS(5115), - [sym_property_modifier] = ACTIONS(5115), - [anon_sym_abstract] = ACTIONS(5115), - [anon_sym_final] = ACTIONS(5115), - [anon_sym_open] = ACTIONS(5115), - [anon_sym_vararg] = ACTIONS(5115), - [anon_sym_noinline] = ACTIONS(5115), - [anon_sym_crossinline] = ACTIONS(5115), - [anon_sym_expect] = ACTIONS(5115), - [anon_sym_actual] = ACTIONS(5115), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5117), - [sym__automatic_semicolon] = ACTIONS(5117), - [sym_safe_nav] = ACTIONS(5117), + [4110] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3127), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3127), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4123] = { + [4111] = { + [sym_type_constraints] = STATE(4245), + [sym_function_body] = STATE(3866), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(7333), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + }, + [4112] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7337), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + }, + [4113] = { + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(7339), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + }, + [4114] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3134), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4115] = { + [sym_function_body] = STATE(3900), + [sym__block] = STATE(3882), [sym__alpha_identifier] = ACTIONS(4275), [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(7341), [anon_sym_LBRACK] = ACTIONS(4277), [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), [anon_sym_RBRACE] = ACTIONS(4277), [anon_sym_LPAREN] = ACTIONS(4277), [anon_sym_COMMA] = ACTIONS(4277), @@ -457137,7 +453860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(4277), [anon_sym_get] = ACTIONS(4275), [anon_sym_set] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4277), [sym_label] = ACTIONS(4277), [anon_sym_in] = ACTIONS(4275), [anon_sym_DOT_DOT] = ACTIONS(4277), @@ -457146,11 +453869,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(4277), [anon_sym_else] = ACTIONS(4275), [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_PLUS_EQ] = ACTIONS(4277), - [anon_sym_DASH_EQ] = ACTIONS(4277), - [anon_sym_STAR_EQ] = ACTIONS(4277), - [anon_sym_SLASH_EQ] = ACTIONS(4277), - [anon_sym_PERCENT_EQ] = ACTIONS(4277), [anon_sym_BANG_EQ] = ACTIONS(4275), [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), [anon_sym_EQ_EQ] = ACTIONS(4275), @@ -457163,7 +453881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4275), [anon_sym_DASH] = ACTIONS(4275), [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4277), [anon_sym_as_QMARK] = ACTIONS(4277), [anon_sym_PLUS_PLUS] = ACTIONS(4277), [anon_sym_DASH_DASH] = ACTIONS(4277), @@ -457200,2184 +453918,4139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), }, + [4116] = { + [sym_type_constraints] = STATE(4202), + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + }, + [4117] = { + [sym_type_constraints] = STATE(4167), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + }, + [4118] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + }, + [4119] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [4120] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7349), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [4121] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + }, + [4122] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3115), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4123] = { + [sym_type_constraints] = STATE(4222), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, [4124] = { - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_STAR_EQ] = ACTIONS(3296), - [anon_sym_SLASH_EQ] = ACTIONS(3296), - [anon_sym_PERCENT_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3138), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3138), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4125] = { - [sym__alpha_identifier] = ACTIONS(5065), - [anon_sym_AT] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_as] = ACTIONS(5065), - [anon_sym_EQ] = ACTIONS(5065), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_RBRACE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_where] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_get] = ACTIONS(5065), - [anon_sym_set] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [sym_label] = ACTIONS(5067), - [anon_sym_in] = ACTIONS(5065), - [anon_sym_DOT_DOT] = ACTIONS(5067), - [anon_sym_QMARK_COLON] = ACTIONS(5067), - [anon_sym_AMP_AMP] = ACTIONS(5067), - [anon_sym_PIPE_PIPE] = ACTIONS(5067), - [anon_sym_else] = ACTIONS(5065), - [anon_sym_COLON_COLON] = ACTIONS(5067), - [anon_sym_PLUS_EQ] = ACTIONS(5067), - [anon_sym_DASH_EQ] = ACTIONS(5067), - [anon_sym_STAR_EQ] = ACTIONS(5067), - [anon_sym_SLASH_EQ] = ACTIONS(5067), - [anon_sym_PERCENT_EQ] = ACTIONS(5067), - [anon_sym_BANG_EQ] = ACTIONS(5065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5067), - [anon_sym_EQ_EQ] = ACTIONS(5065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5067), - [anon_sym_LT_EQ] = ACTIONS(5067), - [anon_sym_GT_EQ] = ACTIONS(5067), - [anon_sym_BANGin] = ACTIONS(5067), - [anon_sym_is] = ACTIONS(5065), - [anon_sym_BANGis] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_PERCENT] = ACTIONS(5065), - [anon_sym_as_QMARK] = ACTIONS(5067), - [anon_sym_PLUS_PLUS] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5067), - [anon_sym_BANG_BANG] = ACTIONS(5067), - [anon_sym_suspend] = ACTIONS(5065), - [anon_sym_sealed] = ACTIONS(5065), - [anon_sym_annotation] = ACTIONS(5065), - [anon_sym_data] = ACTIONS(5065), - [anon_sym_inner] = ACTIONS(5065), - [anon_sym_value] = ACTIONS(5065), - [anon_sym_override] = ACTIONS(5065), - [anon_sym_lateinit] = ACTIONS(5065), - [anon_sym_public] = ACTIONS(5065), - [anon_sym_private] = ACTIONS(5065), - [anon_sym_internal] = ACTIONS(5065), - [anon_sym_protected] = ACTIONS(5065), - [anon_sym_tailrec] = ACTIONS(5065), - [anon_sym_operator] = ACTIONS(5065), - [anon_sym_infix] = ACTIONS(5065), - [anon_sym_inline] = ACTIONS(5065), - [anon_sym_external] = ACTIONS(5065), - [sym_property_modifier] = ACTIONS(5065), - [anon_sym_abstract] = ACTIONS(5065), - [anon_sym_final] = ACTIONS(5065), - [anon_sym_open] = ACTIONS(5065), - [anon_sym_vararg] = ACTIONS(5065), - [anon_sym_noinline] = ACTIONS(5065), - [anon_sym_crossinline] = ACTIONS(5065), - [anon_sym_expect] = ACTIONS(5065), - [anon_sym_actual] = ACTIONS(5065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5067), - [sym__automatic_semicolon] = ACTIONS(5067), - [sym_safe_nav] = ACTIONS(5067), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3142), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4126] = { - [sym__alpha_identifier] = ACTIONS(7321), - [anon_sym_AT] = ACTIONS(7323), - [anon_sym_LBRACK] = ACTIONS(7323), - [anon_sym_typealias] = ACTIONS(7321), - [anon_sym_class] = ACTIONS(7321), - [anon_sym_fun] = ACTIONS(7321), - [anon_sym_interface] = ACTIONS(7321), - [anon_sym_enum] = ACTIONS(7321), - [anon_sym_LBRACE] = ACTIONS(7323), - [anon_sym_LPAREN] = ACTIONS(7323), - [anon_sym_val] = ACTIONS(7321), - [anon_sym_var] = ACTIONS(7321), - [anon_sym_object] = ACTIONS(7321), - [anon_sym_get] = ACTIONS(7321), - [anon_sym_set] = ACTIONS(7321), - [anon_sym_this] = ACTIONS(7321), - [anon_sym_super] = ACTIONS(7321), - [anon_sym_STAR] = ACTIONS(7323), - [sym_label] = ACTIONS(7321), - [anon_sym_for] = ACTIONS(7321), - [anon_sym_while] = ACTIONS(7321), - [anon_sym_do] = ACTIONS(7321), - [anon_sym_null] = ACTIONS(7321), - [anon_sym_if] = ACTIONS(7321), - [anon_sym_when] = ACTIONS(7321), - [anon_sym_try] = ACTIONS(7321), - [anon_sym_throw] = ACTIONS(7321), - [anon_sym_return] = ACTIONS(7321), - [anon_sym_continue] = ACTIONS(7321), - [anon_sym_break] = ACTIONS(7321), - [anon_sym_COLON_COLON] = ACTIONS(7323), - [anon_sym_PLUS] = ACTIONS(7321), - [anon_sym_DASH] = ACTIONS(7321), - [anon_sym_PLUS_PLUS] = ACTIONS(7323), - [anon_sym_DASH_DASH] = ACTIONS(7323), - [anon_sym_BANG] = ACTIONS(7323), - [anon_sym_suspend] = ACTIONS(7321), - [anon_sym_sealed] = ACTIONS(7321), - [anon_sym_annotation] = ACTIONS(7321), - [anon_sym_data] = ACTIONS(7321), - [anon_sym_inner] = ACTIONS(7321), - [anon_sym_value] = ACTIONS(7321), - [anon_sym_override] = ACTIONS(7321), - [anon_sym_lateinit] = ACTIONS(7321), - [anon_sym_public] = ACTIONS(7321), - [anon_sym_private] = ACTIONS(7321), - [anon_sym_internal] = ACTIONS(7321), - [anon_sym_protected] = ACTIONS(7321), - [anon_sym_tailrec] = ACTIONS(7321), - [anon_sym_operator] = ACTIONS(7321), - [anon_sym_infix] = ACTIONS(7321), - [anon_sym_inline] = ACTIONS(7321), - [anon_sym_external] = ACTIONS(7321), - [sym_property_modifier] = ACTIONS(7321), - [anon_sym_abstract] = ACTIONS(7321), - [anon_sym_final] = ACTIONS(7321), - [anon_sym_open] = ACTIONS(7321), - [anon_sym_vararg] = ACTIONS(7321), - [anon_sym_noinline] = ACTIONS(7321), - [anon_sym_crossinline] = ACTIONS(7321), - [anon_sym_expect] = ACTIONS(7321), - [anon_sym_actual] = ACTIONS(7321), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7323), - [anon_sym_continue_AT] = ACTIONS(7323), - [anon_sym_break_AT] = ACTIONS(7323), - [anon_sym_this_AT] = ACTIONS(7323), - [anon_sym_super_AT] = ACTIONS(7323), - [sym_real_literal] = ACTIONS(7323), - [sym_integer_literal] = ACTIONS(7321), - [sym_hex_literal] = ACTIONS(7323), - [sym_bin_literal] = ACTIONS(7323), - [anon_sym_true] = ACTIONS(7321), - [anon_sym_false] = ACTIONS(7321), - [anon_sym_SQUOTE] = ACTIONS(7323), - [sym__backtick_identifier] = ACTIONS(7323), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7323), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3146), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [4127] = { - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4166), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(6038), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, [4128] = { - [sym_class_body] = STATE(4132), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(7325), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3162), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4129] = { - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [sym_type_constraints] = STATE(4231), + [sym_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(7355), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, [4130] = { - [sym__alpha_identifier] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(1826), - [anon_sym_set] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [sym_label] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_QMARK_COLON] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1828), - [anon_sym_DASH_EQ] = ACTIONS(1828), - [anon_sym_STAR_EQ] = ACTIONS(1828), - [anon_sym_SLASH_EQ] = ACTIONS(1828), - [anon_sym_PERCENT_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_BANGin] = ACTIONS(1828), - [anon_sym_is] = ACTIONS(1826), - [anon_sym_BANGis] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_as_QMARK] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_BANG_BANG] = ACTIONS(1828), - [anon_sym_suspend] = ACTIONS(1826), - [anon_sym_sealed] = ACTIONS(1826), - [anon_sym_annotation] = ACTIONS(1826), - [anon_sym_data] = ACTIONS(1826), - [anon_sym_inner] = ACTIONS(1826), - [anon_sym_value] = ACTIONS(1826), - [anon_sym_override] = ACTIONS(1826), - [anon_sym_lateinit] = ACTIONS(1826), - [anon_sym_public] = ACTIONS(1826), - [anon_sym_private] = ACTIONS(1826), - [anon_sym_internal] = ACTIONS(1826), - [anon_sym_protected] = ACTIONS(1826), - [anon_sym_tailrec] = ACTIONS(1826), - [anon_sym_operator] = ACTIONS(1826), - [anon_sym_infix] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [anon_sym_external] = ACTIONS(1826), - [sym_property_modifier] = ACTIONS(1826), - [anon_sym_abstract] = ACTIONS(1826), - [anon_sym_final] = ACTIONS(1826), - [anon_sym_open] = ACTIONS(1826), - [anon_sym_vararg] = ACTIONS(1826), - [anon_sym_noinline] = ACTIONS(1826), - [anon_sym_crossinline] = ACTIONS(1826), - [anon_sym_expect] = ACTIONS(1826), - [anon_sym_actual] = ACTIONS(1826), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1828), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym_safe_nav] = ACTIONS(1828), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3195), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3195), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4131] = { - [sym__alpha_identifier] = ACTIONS(5251), - [anon_sym_AT] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_as] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5253), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_LPAREN] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LT] = ACTIONS(5251), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_where] = ACTIONS(5251), - [anon_sym_DOT] = ACTIONS(5251), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_get] = ACTIONS(5251), - [anon_sym_set] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [sym_label] = ACTIONS(5253), - [anon_sym_in] = ACTIONS(5251), - [anon_sym_DOT_DOT] = ACTIONS(5253), - [anon_sym_QMARK_COLON] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_else] = ACTIONS(5251), - [anon_sym_COLON_COLON] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5251), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5253), - [anon_sym_EQ_EQ] = ACTIONS(5251), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_BANGin] = ACTIONS(5253), - [anon_sym_is] = ACTIONS(5251), - [anon_sym_BANGis] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_PERCENT] = ACTIONS(5251), - [anon_sym_as_QMARK] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_BANG_BANG] = ACTIONS(5253), - [anon_sym_suspend] = ACTIONS(5251), - [anon_sym_sealed] = ACTIONS(5251), - [anon_sym_annotation] = ACTIONS(5251), - [anon_sym_data] = ACTIONS(5251), - [anon_sym_inner] = ACTIONS(5251), - [anon_sym_value] = ACTIONS(5251), - [anon_sym_override] = ACTIONS(5251), - [anon_sym_lateinit] = ACTIONS(5251), - [anon_sym_public] = ACTIONS(5251), - [anon_sym_private] = ACTIONS(5251), - [anon_sym_internal] = ACTIONS(5251), - [anon_sym_protected] = ACTIONS(5251), - [anon_sym_tailrec] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_infix] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym_external] = ACTIONS(5251), - [sym_property_modifier] = ACTIONS(5251), - [anon_sym_abstract] = ACTIONS(5251), - [anon_sym_final] = ACTIONS(5251), - [anon_sym_open] = ACTIONS(5251), - [anon_sym_vararg] = ACTIONS(5251), - [anon_sym_noinline] = ACTIONS(5251), - [anon_sym_crossinline] = ACTIONS(5251), - [anon_sym_expect] = ACTIONS(5251), - [anon_sym_actual] = ACTIONS(5251), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5253), - [sym__automatic_semicolon] = ACTIONS(5253), - [sym_safe_nav] = ACTIONS(5253), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3096), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4132] = { - [sym__alpha_identifier] = ACTIONS(5247), - [anon_sym_AT] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(5249), - [anon_sym_as] = ACTIONS(5247), - [anon_sym_EQ] = ACTIONS(5247), - [anon_sym_LBRACE] = ACTIONS(5249), - [anon_sym_RBRACE] = ACTIONS(5249), - [anon_sym_LPAREN] = ACTIONS(5249), - [anon_sym_COMMA] = ACTIONS(5249), - [anon_sym_LT] = ACTIONS(5247), - [anon_sym_GT] = ACTIONS(5247), - [anon_sym_where] = ACTIONS(5247), - [anon_sym_DOT] = ACTIONS(5247), - [anon_sym_SEMI] = ACTIONS(5249), - [anon_sym_get] = ACTIONS(5247), - [anon_sym_set] = ACTIONS(5247), - [anon_sym_STAR] = ACTIONS(5247), - [sym_label] = ACTIONS(5249), - [anon_sym_in] = ACTIONS(5247), - [anon_sym_DOT_DOT] = ACTIONS(5249), - [anon_sym_QMARK_COLON] = ACTIONS(5249), - [anon_sym_AMP_AMP] = ACTIONS(5249), - [anon_sym_PIPE_PIPE] = ACTIONS(5249), - [anon_sym_else] = ACTIONS(5247), - [anon_sym_COLON_COLON] = ACTIONS(5249), - [anon_sym_PLUS_EQ] = ACTIONS(5249), - [anon_sym_DASH_EQ] = ACTIONS(5249), - [anon_sym_STAR_EQ] = ACTIONS(5249), - [anon_sym_SLASH_EQ] = ACTIONS(5249), - [anon_sym_PERCENT_EQ] = ACTIONS(5249), - [anon_sym_BANG_EQ] = ACTIONS(5247), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5249), - [anon_sym_EQ_EQ] = ACTIONS(5247), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5249), - [anon_sym_LT_EQ] = ACTIONS(5249), - [anon_sym_GT_EQ] = ACTIONS(5249), - [anon_sym_BANGin] = ACTIONS(5249), - [anon_sym_is] = ACTIONS(5247), - [anon_sym_BANGis] = ACTIONS(5249), - [anon_sym_PLUS] = ACTIONS(5247), - [anon_sym_DASH] = ACTIONS(5247), - [anon_sym_SLASH] = ACTIONS(5247), - [anon_sym_PERCENT] = ACTIONS(5247), - [anon_sym_as_QMARK] = ACTIONS(5249), - [anon_sym_PLUS_PLUS] = ACTIONS(5249), - [anon_sym_DASH_DASH] = ACTIONS(5249), - [anon_sym_BANG_BANG] = ACTIONS(5249), - [anon_sym_suspend] = ACTIONS(5247), - [anon_sym_sealed] = ACTIONS(5247), - [anon_sym_annotation] = ACTIONS(5247), - [anon_sym_data] = ACTIONS(5247), - [anon_sym_inner] = ACTIONS(5247), - [anon_sym_value] = ACTIONS(5247), - [anon_sym_override] = ACTIONS(5247), - [anon_sym_lateinit] = ACTIONS(5247), - [anon_sym_public] = ACTIONS(5247), - [anon_sym_private] = ACTIONS(5247), - [anon_sym_internal] = ACTIONS(5247), - [anon_sym_protected] = ACTIONS(5247), - [anon_sym_tailrec] = ACTIONS(5247), - [anon_sym_operator] = ACTIONS(5247), - [anon_sym_infix] = ACTIONS(5247), - [anon_sym_inline] = ACTIONS(5247), - [anon_sym_external] = ACTIONS(5247), - [sym_property_modifier] = ACTIONS(5247), - [anon_sym_abstract] = ACTIONS(5247), - [anon_sym_final] = ACTIONS(5247), - [anon_sym_open] = ACTIONS(5247), - [anon_sym_vararg] = ACTIONS(5247), - [anon_sym_noinline] = ACTIONS(5247), - [anon_sym_crossinline] = ACTIONS(5247), - [anon_sym_expect] = ACTIONS(5247), - [anon_sym_actual] = ACTIONS(5247), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5249), - [sym__automatic_semicolon] = ACTIONS(5249), - [sym_safe_nav] = ACTIONS(5249), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_RBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(7239), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_DASH_GT] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_while] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), [sym_multiline_comment] = ACTIONS(3), }, [4133] = { - [sym__alpha_identifier] = ACTIONS(5235), - [anon_sym_AT] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_as] = ACTIONS(5235), - [anon_sym_EQ] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5237), - [anon_sym_RBRACE] = ACTIONS(5237), - [anon_sym_LPAREN] = ACTIONS(5237), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_LT] = ACTIONS(5235), - [anon_sym_GT] = ACTIONS(5235), - [anon_sym_where] = ACTIONS(5235), - [anon_sym_DOT] = ACTIONS(5235), - [anon_sym_SEMI] = ACTIONS(5237), - [anon_sym_get] = ACTIONS(5235), - [anon_sym_set] = ACTIONS(5235), - [anon_sym_STAR] = ACTIONS(5235), - [sym_label] = ACTIONS(5237), - [anon_sym_in] = ACTIONS(5235), - [anon_sym_DOT_DOT] = ACTIONS(5237), - [anon_sym_QMARK_COLON] = ACTIONS(5237), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5237), - [anon_sym_else] = ACTIONS(5235), - [anon_sym_COLON_COLON] = ACTIONS(5237), - [anon_sym_PLUS_EQ] = ACTIONS(5237), - [anon_sym_DASH_EQ] = ACTIONS(5237), - [anon_sym_STAR_EQ] = ACTIONS(5237), - [anon_sym_SLASH_EQ] = ACTIONS(5237), - [anon_sym_PERCENT_EQ] = ACTIONS(5237), - [anon_sym_BANG_EQ] = ACTIONS(5235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5237), - [anon_sym_EQ_EQ] = ACTIONS(5235), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5237), - [anon_sym_LT_EQ] = ACTIONS(5237), - [anon_sym_GT_EQ] = ACTIONS(5237), - [anon_sym_BANGin] = ACTIONS(5237), - [anon_sym_is] = ACTIONS(5235), - [anon_sym_BANGis] = ACTIONS(5237), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_SLASH] = ACTIONS(5235), - [anon_sym_PERCENT] = ACTIONS(5235), - [anon_sym_as_QMARK] = ACTIONS(5237), - [anon_sym_PLUS_PLUS] = ACTIONS(5237), - [anon_sym_DASH_DASH] = ACTIONS(5237), - [anon_sym_BANG_BANG] = ACTIONS(5237), - [anon_sym_suspend] = ACTIONS(5235), - [anon_sym_sealed] = ACTIONS(5235), - [anon_sym_annotation] = ACTIONS(5235), - [anon_sym_data] = ACTIONS(5235), - [anon_sym_inner] = ACTIONS(5235), - [anon_sym_value] = ACTIONS(5235), - [anon_sym_override] = ACTIONS(5235), - [anon_sym_lateinit] = ACTIONS(5235), - [anon_sym_public] = ACTIONS(5235), - [anon_sym_private] = ACTIONS(5235), - [anon_sym_internal] = ACTIONS(5235), - [anon_sym_protected] = ACTIONS(5235), - [anon_sym_tailrec] = ACTIONS(5235), - [anon_sym_operator] = ACTIONS(5235), - [anon_sym_infix] = ACTIONS(5235), - [anon_sym_inline] = ACTIONS(5235), - [anon_sym_external] = ACTIONS(5235), - [sym_property_modifier] = ACTIONS(5235), - [anon_sym_abstract] = ACTIONS(5235), - [anon_sym_final] = ACTIONS(5235), - [anon_sym_open] = ACTIONS(5235), - [anon_sym_vararg] = ACTIONS(5235), - [anon_sym_noinline] = ACTIONS(5235), - [anon_sym_crossinline] = ACTIONS(5235), - [anon_sym_expect] = ACTIONS(5235), - [anon_sym_actual] = ACTIONS(5235), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5237), - [sym__automatic_semicolon] = ACTIONS(5237), - [sym_safe_nav] = ACTIONS(5237), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(6042), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4284), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), }, [4134] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(7327), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_where] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [sym_label] = ACTIONS(5179), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_PLUS_EQ] = ACTIONS(5179), - [anon_sym_DASH_EQ] = ACTIONS(5179), - [anon_sym_STAR_EQ] = ACTIONS(5179), - [anon_sym_SLASH_EQ] = ACTIONS(5179), - [anon_sym_PERCENT_EQ] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5177), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_suspend] = ACTIONS(5177), - [anon_sym_sealed] = ACTIONS(5177), - [anon_sym_annotation] = ACTIONS(5177), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_override] = ACTIONS(5177), - [anon_sym_lateinit] = ACTIONS(5177), - [anon_sym_public] = ACTIONS(5177), - [anon_sym_private] = ACTIONS(5177), - [anon_sym_internal] = ACTIONS(5177), - [anon_sym_protected] = ACTIONS(5177), - [anon_sym_tailrec] = ACTIONS(5177), - [anon_sym_operator] = ACTIONS(5177), - [anon_sym_infix] = ACTIONS(5177), - [anon_sym_inline] = ACTIONS(5177), - [anon_sym_external] = ACTIONS(5177), - [sym_property_modifier] = ACTIONS(5177), - [anon_sym_abstract] = ACTIONS(5177), - [anon_sym_final] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(5177), - [anon_sym_vararg] = ACTIONS(5177), - [anon_sym_noinline] = ACTIONS(5177), - [anon_sym_crossinline] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5179), - [sym__automatic_semicolon] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), + [sym_type_constraints] = STATE(4200), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [4135] = { - [sym__alpha_identifier] = ACTIONS(5171), - [anon_sym_AT] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(7329), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_where] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5173), - [anon_sym_get] = ACTIONS(5171), - [anon_sym_set] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [sym_label] = ACTIONS(5173), - [anon_sym_in] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5173), - [anon_sym_QMARK_COLON] = ACTIONS(5173), - [anon_sym_AMP_AMP] = ACTIONS(5173), - [anon_sym_PIPE_PIPE] = ACTIONS(5173), - [anon_sym_else] = ACTIONS(5171), - [anon_sym_COLON_COLON] = ACTIONS(5173), - [anon_sym_PLUS_EQ] = ACTIONS(5173), - [anon_sym_DASH_EQ] = ACTIONS(5173), - [anon_sym_STAR_EQ] = ACTIONS(5173), - [anon_sym_SLASH_EQ] = ACTIONS(5173), - [anon_sym_PERCENT_EQ] = ACTIONS(5173), - [anon_sym_BANG_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), - [anon_sym_LT_EQ] = ACTIONS(5173), - [anon_sym_GT_EQ] = ACTIONS(5173), - [anon_sym_BANGin] = ACTIONS(5173), - [anon_sym_is] = ACTIONS(5171), - [anon_sym_BANGis] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_as_QMARK] = ACTIONS(5173), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_BANG_BANG] = ACTIONS(5173), - [anon_sym_suspend] = ACTIONS(5171), - [anon_sym_sealed] = ACTIONS(5171), - [anon_sym_annotation] = ACTIONS(5171), - [anon_sym_data] = ACTIONS(5171), - [anon_sym_inner] = ACTIONS(5171), - [anon_sym_value] = ACTIONS(5171), - [anon_sym_override] = ACTIONS(5171), - [anon_sym_lateinit] = ACTIONS(5171), - [anon_sym_public] = ACTIONS(5171), - [anon_sym_private] = ACTIONS(5171), - [anon_sym_internal] = ACTIONS(5171), - [anon_sym_protected] = ACTIONS(5171), - [anon_sym_tailrec] = ACTIONS(5171), - [anon_sym_operator] = ACTIONS(5171), - [anon_sym_infix] = ACTIONS(5171), - [anon_sym_inline] = ACTIONS(5171), - [anon_sym_external] = ACTIONS(5171), - [sym_property_modifier] = ACTIONS(5171), - [anon_sym_abstract] = ACTIONS(5171), - [anon_sym_final] = ACTIONS(5171), - [anon_sym_open] = ACTIONS(5171), - [anon_sym_vararg] = ACTIONS(5171), - [anon_sym_noinline] = ACTIONS(5171), - [anon_sym_crossinline] = ACTIONS(5171), - [anon_sym_expect] = ACTIONS(5171), - [anon_sym_actual] = ACTIONS(5171), + [sym_type_constraints] = STATE(4252), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(7357), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5173), - [sym__automatic_semicolon] = ACTIONS(5173), - [sym_safe_nav] = ACTIONS(5173), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [4136] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7331), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4242), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3103), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3103), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4137] = { - [sym__alpha_identifier] = ACTIONS(4461), - [anon_sym_AT] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_as] = ACTIONS(4461), - [anon_sym_EQ] = ACTIONS(4461), - [anon_sym_LBRACE] = ACTIONS(4463), - [anon_sym_RBRACE] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_where] = ACTIONS(4461), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [anon_sym_get] = ACTIONS(4461), - [anon_sym_set] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [sym_label] = ACTIONS(4463), - [anon_sym_in] = ACTIONS(4461), - [anon_sym_DOT_DOT] = ACTIONS(4463), - [anon_sym_QMARK_COLON] = ACTIONS(4463), - [anon_sym_AMP_AMP] = ACTIONS(4463), - [anon_sym_PIPE_PIPE] = ACTIONS(4463), - [anon_sym_else] = ACTIONS(4461), - [anon_sym_COLON_COLON] = ACTIONS(4463), - [anon_sym_PLUS_EQ] = ACTIONS(4463), - [anon_sym_DASH_EQ] = ACTIONS(4463), - [anon_sym_STAR_EQ] = ACTIONS(4463), - [anon_sym_SLASH_EQ] = ACTIONS(4463), - [anon_sym_PERCENT_EQ] = ACTIONS(4463), - [anon_sym_BANG_EQ] = ACTIONS(4461), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4463), - [anon_sym_EQ_EQ] = ACTIONS(4461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4463), - [anon_sym_LT_EQ] = ACTIONS(4463), - [anon_sym_GT_EQ] = ACTIONS(4463), - [anon_sym_BANGin] = ACTIONS(4463), - [anon_sym_is] = ACTIONS(4461), - [anon_sym_BANGis] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(4461), - [anon_sym_as_QMARK] = ACTIONS(4463), - [anon_sym_PLUS_PLUS] = ACTIONS(4463), - [anon_sym_DASH_DASH] = ACTIONS(4463), - [anon_sym_BANG_BANG] = ACTIONS(4463), - [anon_sym_suspend] = ACTIONS(4461), - [anon_sym_sealed] = ACTIONS(4461), - [anon_sym_annotation] = ACTIONS(4461), - [anon_sym_data] = ACTIONS(4461), - [anon_sym_inner] = ACTIONS(4461), - [anon_sym_value] = ACTIONS(4461), - [anon_sym_override] = ACTIONS(4461), - [anon_sym_lateinit] = ACTIONS(4461), - [anon_sym_public] = ACTIONS(4461), - [anon_sym_private] = ACTIONS(4461), - [anon_sym_internal] = ACTIONS(4461), - [anon_sym_protected] = ACTIONS(4461), - [anon_sym_tailrec] = ACTIONS(4461), - [anon_sym_operator] = ACTIONS(4461), - [anon_sym_infix] = ACTIONS(4461), - [anon_sym_inline] = ACTIONS(4461), - [anon_sym_external] = ACTIONS(4461), - [sym_property_modifier] = ACTIONS(4461), - [anon_sym_abstract] = ACTIONS(4461), - [anon_sym_final] = ACTIONS(4461), - [anon_sym_open] = ACTIONS(4461), - [anon_sym_vararg] = ACTIONS(4461), - [anon_sym_noinline] = ACTIONS(4461), - [anon_sym_crossinline] = ACTIONS(4461), - [anon_sym_expect] = ACTIONS(4461), - [anon_sym_actual] = ACTIONS(4461), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4463), - [sym__automatic_semicolon] = ACTIONS(4463), - [sym_safe_nav] = ACTIONS(4463), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [4138] = { - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [4139] = { - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4156), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_PLUS_EQ] = ACTIONS(4156), - [anon_sym_DASH_EQ] = ACTIONS(4156), - [anon_sym_STAR_EQ] = ACTIONS(4156), - [anon_sym_SLASH_EQ] = ACTIONS(4156), - [anon_sym_PERCENT_EQ] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3123), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_RPAREN] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3123), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4140] = { - [sym__alpha_identifier] = ACTIONS(5219), - [anon_sym_AT] = ACTIONS(5221), - [anon_sym_LBRACK] = ACTIONS(5221), - [anon_sym_as] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5221), - [anon_sym_RBRACE] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5221), - [anon_sym_COMMA] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5219), - [anon_sym_GT] = ACTIONS(5219), - [anon_sym_where] = ACTIONS(5219), - [anon_sym_DOT] = ACTIONS(5219), - [anon_sym_SEMI] = ACTIONS(5221), - [anon_sym_get] = ACTIONS(5219), - [anon_sym_set] = ACTIONS(5219), - [anon_sym_STAR] = ACTIONS(5219), - [sym_label] = ACTIONS(5221), - [anon_sym_in] = ACTIONS(5219), - [anon_sym_DOT_DOT] = ACTIONS(5221), - [anon_sym_QMARK_COLON] = ACTIONS(5221), - [anon_sym_AMP_AMP] = ACTIONS(5221), - [anon_sym_PIPE_PIPE] = ACTIONS(5221), - [anon_sym_else] = ACTIONS(5219), - [anon_sym_COLON_COLON] = ACTIONS(5221), - [anon_sym_PLUS_EQ] = ACTIONS(5221), - [anon_sym_DASH_EQ] = ACTIONS(5221), - [anon_sym_STAR_EQ] = ACTIONS(5221), - [anon_sym_SLASH_EQ] = ACTIONS(5221), - [anon_sym_PERCENT_EQ] = ACTIONS(5221), - [anon_sym_BANG_EQ] = ACTIONS(5219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), - [anon_sym_EQ_EQ] = ACTIONS(5219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), - [anon_sym_LT_EQ] = ACTIONS(5221), - [anon_sym_GT_EQ] = ACTIONS(5221), - [anon_sym_BANGin] = ACTIONS(5221), - [anon_sym_is] = ACTIONS(5219), - [anon_sym_BANGis] = ACTIONS(5221), - [anon_sym_PLUS] = ACTIONS(5219), - [anon_sym_DASH] = ACTIONS(5219), - [anon_sym_SLASH] = ACTIONS(5219), - [anon_sym_PERCENT] = ACTIONS(5219), - [anon_sym_as_QMARK] = ACTIONS(5221), - [anon_sym_PLUS_PLUS] = ACTIONS(5221), - [anon_sym_DASH_DASH] = ACTIONS(5221), - [anon_sym_BANG_BANG] = ACTIONS(5221), - [anon_sym_suspend] = ACTIONS(5219), - [anon_sym_sealed] = ACTIONS(5219), - [anon_sym_annotation] = ACTIONS(5219), - [anon_sym_data] = ACTIONS(5219), - [anon_sym_inner] = ACTIONS(5219), - [anon_sym_value] = ACTIONS(5219), - [anon_sym_override] = ACTIONS(5219), - [anon_sym_lateinit] = ACTIONS(5219), - [anon_sym_public] = ACTIONS(5219), - [anon_sym_private] = ACTIONS(5219), - [anon_sym_internal] = ACTIONS(5219), - [anon_sym_protected] = ACTIONS(5219), - [anon_sym_tailrec] = ACTIONS(5219), - [anon_sym_operator] = ACTIONS(5219), - [anon_sym_infix] = ACTIONS(5219), - [anon_sym_inline] = ACTIONS(5219), - [anon_sym_external] = ACTIONS(5219), - [sym_property_modifier] = ACTIONS(5219), - [anon_sym_abstract] = ACTIONS(5219), - [anon_sym_final] = ACTIONS(5219), - [anon_sym_open] = ACTIONS(5219), - [anon_sym_vararg] = ACTIONS(5219), - [anon_sym_noinline] = ACTIONS(5219), - [anon_sym_crossinline] = ACTIONS(5219), - [anon_sym_expect] = ACTIONS(5219), - [anon_sym_actual] = ACTIONS(5219), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5221), - [sym__automatic_semicolon] = ACTIONS(5221), - [sym_safe_nav] = ACTIONS(5221), + [aux_sym__delegation_specifiers_repeat1] = STATE(4140), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_RBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(7363), + [anon_sym_RPAREN] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4635), + [anon_sym_DASH_GT] = ACTIONS(4635), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_while] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), [sym_multiline_comment] = ACTIONS(3), }, [4141] = { - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(1816), - [anon_sym_set] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(1816), - [anon_sym_sealed] = ACTIONS(1816), - [anon_sym_annotation] = ACTIONS(1816), - [anon_sym_data] = ACTIONS(1816), - [anon_sym_inner] = ACTIONS(1816), - [anon_sym_value] = ACTIONS(1816), - [anon_sym_override] = ACTIONS(1816), - [anon_sym_lateinit] = ACTIONS(1816), - [anon_sym_public] = ACTIONS(1816), - [anon_sym_private] = ACTIONS(1816), - [anon_sym_internal] = ACTIONS(1816), - [anon_sym_protected] = ACTIONS(1816), - [anon_sym_tailrec] = ACTIONS(1816), - [anon_sym_operator] = ACTIONS(1816), - [anon_sym_infix] = ACTIONS(1816), - [anon_sym_inline] = ACTIONS(1816), - [anon_sym_external] = ACTIONS(1816), - [sym_property_modifier] = ACTIONS(1816), - [anon_sym_abstract] = ACTIONS(1816), - [anon_sym_final] = ACTIONS(1816), - [anon_sym_open] = ACTIONS(1816), - [anon_sym_vararg] = ACTIONS(1816), - [anon_sym_noinline] = ACTIONS(1816), - [anon_sym_crossinline] = ACTIONS(1816), - [anon_sym_expect] = ACTIONS(1816), - [anon_sym_actual] = ACTIONS(1816), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [anon_sym_DASH_GT] = ACTIONS(3188), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4142] = { - [sym__alpha_identifier] = ACTIONS(5197), - [anon_sym_AT] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_as] = ACTIONS(5197), - [anon_sym_EQ] = ACTIONS(5197), - [anon_sym_LBRACE] = ACTIONS(5199), - [anon_sym_RBRACE] = ACTIONS(5199), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_where] = ACTIONS(5197), - [anon_sym_DOT] = ACTIONS(5197), - [anon_sym_SEMI] = ACTIONS(5199), - [anon_sym_get] = ACTIONS(5197), - [anon_sym_set] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [sym_label] = ACTIONS(5199), - [anon_sym_in] = ACTIONS(5197), - [anon_sym_DOT_DOT] = ACTIONS(5199), - [anon_sym_QMARK_COLON] = ACTIONS(5199), - [anon_sym_AMP_AMP] = ACTIONS(5199), - [anon_sym_PIPE_PIPE] = ACTIONS(5199), - [anon_sym_else] = ACTIONS(5197), - [anon_sym_COLON_COLON] = ACTIONS(5199), - [anon_sym_PLUS_EQ] = ACTIONS(5199), - [anon_sym_DASH_EQ] = ACTIONS(5199), - [anon_sym_STAR_EQ] = ACTIONS(5199), - [anon_sym_SLASH_EQ] = ACTIONS(5199), - [anon_sym_PERCENT_EQ] = ACTIONS(5199), - [anon_sym_BANG_EQ] = ACTIONS(5197), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5199), - [anon_sym_EQ_EQ] = ACTIONS(5197), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5199), - [anon_sym_LT_EQ] = ACTIONS(5199), - [anon_sym_GT_EQ] = ACTIONS(5199), - [anon_sym_BANGin] = ACTIONS(5199), - [anon_sym_is] = ACTIONS(5197), - [anon_sym_BANGis] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_PERCENT] = ACTIONS(5197), - [anon_sym_as_QMARK] = ACTIONS(5199), - [anon_sym_PLUS_PLUS] = ACTIONS(5199), - [anon_sym_DASH_DASH] = ACTIONS(5199), - [anon_sym_BANG_BANG] = ACTIONS(5199), - [anon_sym_suspend] = ACTIONS(5197), - [anon_sym_sealed] = ACTIONS(5197), - [anon_sym_annotation] = ACTIONS(5197), - [anon_sym_data] = ACTIONS(5197), - [anon_sym_inner] = ACTIONS(5197), - [anon_sym_value] = ACTIONS(5197), - [anon_sym_override] = ACTIONS(5197), - [anon_sym_lateinit] = ACTIONS(5197), - [anon_sym_public] = ACTIONS(5197), - [anon_sym_private] = ACTIONS(5197), - [anon_sym_internal] = ACTIONS(5197), - [anon_sym_protected] = ACTIONS(5197), - [anon_sym_tailrec] = ACTIONS(5197), - [anon_sym_operator] = ACTIONS(5197), - [anon_sym_infix] = ACTIONS(5197), - [anon_sym_inline] = ACTIONS(5197), - [anon_sym_external] = ACTIONS(5197), - [sym_property_modifier] = ACTIONS(5197), - [anon_sym_abstract] = ACTIONS(5197), - [anon_sym_final] = ACTIONS(5197), - [anon_sym_open] = ACTIONS(5197), - [anon_sym_vararg] = ACTIONS(5197), - [anon_sym_noinline] = ACTIONS(5197), - [anon_sym_crossinline] = ACTIONS(5197), - [anon_sym_expect] = ACTIONS(5197), - [anon_sym_actual] = ACTIONS(5197), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5199), - [sym__automatic_semicolon] = ACTIONS(5199), - [sym_safe_nav] = ACTIONS(5199), + [sym_type_constraints] = STATE(4232), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(7366), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [4143] = { - [sym__alpha_identifier] = ACTIONS(5187), - [anon_sym_AT] = ACTIONS(5189), - [anon_sym_LBRACK] = ACTIONS(5189), - [anon_sym_as] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5189), - [anon_sym_RBRACE] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5189), - [anon_sym_COMMA] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5187), - [anon_sym_GT] = ACTIONS(5187), - [anon_sym_where] = ACTIONS(5187), - [anon_sym_DOT] = ACTIONS(5187), - [anon_sym_SEMI] = ACTIONS(5189), - [anon_sym_get] = ACTIONS(5187), - [anon_sym_set] = ACTIONS(5187), - [anon_sym_STAR] = ACTIONS(5187), - [sym_label] = ACTIONS(5189), - [anon_sym_in] = ACTIONS(5187), - [anon_sym_DOT_DOT] = ACTIONS(5189), - [anon_sym_QMARK_COLON] = ACTIONS(5189), - [anon_sym_AMP_AMP] = ACTIONS(5189), - [anon_sym_PIPE_PIPE] = ACTIONS(5189), - [anon_sym_else] = ACTIONS(5187), - [anon_sym_COLON_COLON] = ACTIONS(5189), - [anon_sym_PLUS_EQ] = ACTIONS(5189), - [anon_sym_DASH_EQ] = ACTIONS(5189), - [anon_sym_STAR_EQ] = ACTIONS(5189), - [anon_sym_SLASH_EQ] = ACTIONS(5189), - [anon_sym_PERCENT_EQ] = ACTIONS(5189), - [anon_sym_BANG_EQ] = ACTIONS(5187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5189), - [anon_sym_EQ_EQ] = ACTIONS(5187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5189), - [anon_sym_LT_EQ] = ACTIONS(5189), - [anon_sym_GT_EQ] = ACTIONS(5189), - [anon_sym_BANGin] = ACTIONS(5189), - [anon_sym_is] = ACTIONS(5187), - [anon_sym_BANGis] = ACTIONS(5189), - [anon_sym_PLUS] = ACTIONS(5187), - [anon_sym_DASH] = ACTIONS(5187), - [anon_sym_SLASH] = ACTIONS(5187), - [anon_sym_PERCENT] = ACTIONS(5187), - [anon_sym_as_QMARK] = ACTIONS(5189), - [anon_sym_PLUS_PLUS] = ACTIONS(5189), - [anon_sym_DASH_DASH] = ACTIONS(5189), - [anon_sym_BANG_BANG] = ACTIONS(5189), - [anon_sym_suspend] = ACTIONS(5187), - [anon_sym_sealed] = ACTIONS(5187), - [anon_sym_annotation] = ACTIONS(5187), - [anon_sym_data] = ACTIONS(5187), - [anon_sym_inner] = ACTIONS(5187), - [anon_sym_value] = ACTIONS(5187), - [anon_sym_override] = ACTIONS(5187), - [anon_sym_lateinit] = ACTIONS(5187), - [anon_sym_public] = ACTIONS(5187), - [anon_sym_private] = ACTIONS(5187), - [anon_sym_internal] = ACTIONS(5187), - [anon_sym_protected] = ACTIONS(5187), - [anon_sym_tailrec] = ACTIONS(5187), - [anon_sym_operator] = ACTIONS(5187), - [anon_sym_infix] = ACTIONS(5187), - [anon_sym_inline] = ACTIONS(5187), - [anon_sym_external] = ACTIONS(5187), - [sym_property_modifier] = ACTIONS(5187), - [anon_sym_abstract] = ACTIONS(5187), - [anon_sym_final] = ACTIONS(5187), - [anon_sym_open] = ACTIONS(5187), - [anon_sym_vararg] = ACTIONS(5187), - [anon_sym_noinline] = ACTIONS(5187), - [anon_sym_crossinline] = ACTIONS(5187), - [anon_sym_expect] = ACTIONS(5187), - [anon_sym_actual] = ACTIONS(5187), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5189), - [sym__automatic_semicolon] = ACTIONS(5189), - [sym_safe_nav] = ACTIONS(5189), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3177), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3177), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4144] = { - [sym__alpha_identifier] = ACTIONS(7333), - [anon_sym_AT] = ACTIONS(7335), - [anon_sym_LBRACK] = ACTIONS(7335), - [anon_sym_typealias] = ACTIONS(7333), - [anon_sym_class] = ACTIONS(7333), - [anon_sym_fun] = ACTIONS(7333), - [anon_sym_interface] = ACTIONS(7333), - [anon_sym_enum] = ACTIONS(7333), - [anon_sym_LBRACE] = ACTIONS(7335), - [anon_sym_LPAREN] = ACTIONS(7335), - [anon_sym_val] = ACTIONS(7333), - [anon_sym_var] = ACTIONS(7333), - [anon_sym_object] = ACTIONS(7333), - [anon_sym_get] = ACTIONS(7333), - [anon_sym_set] = ACTIONS(7333), - [anon_sym_this] = ACTIONS(7333), - [anon_sym_super] = ACTIONS(7333), - [anon_sym_STAR] = ACTIONS(7335), - [sym_label] = ACTIONS(7333), - [anon_sym_for] = ACTIONS(7333), - [anon_sym_while] = ACTIONS(7333), - [anon_sym_do] = ACTIONS(7333), - [anon_sym_null] = ACTIONS(7333), - [anon_sym_if] = ACTIONS(7333), - [anon_sym_when] = ACTIONS(7333), - [anon_sym_try] = ACTIONS(7333), - [anon_sym_throw] = ACTIONS(7333), - [anon_sym_return] = ACTIONS(7333), - [anon_sym_continue] = ACTIONS(7333), - [anon_sym_break] = ACTIONS(7333), - [anon_sym_COLON_COLON] = ACTIONS(7335), - [anon_sym_PLUS] = ACTIONS(7333), - [anon_sym_DASH] = ACTIONS(7333), - [anon_sym_PLUS_PLUS] = ACTIONS(7335), - [anon_sym_DASH_DASH] = ACTIONS(7335), - [anon_sym_BANG] = ACTIONS(7335), - [anon_sym_suspend] = ACTIONS(7333), - [anon_sym_sealed] = ACTIONS(7333), - [anon_sym_annotation] = ACTIONS(7333), - [anon_sym_data] = ACTIONS(7333), - [anon_sym_inner] = ACTIONS(7333), - [anon_sym_value] = ACTIONS(7333), - [anon_sym_override] = ACTIONS(7333), - [anon_sym_lateinit] = ACTIONS(7333), - [anon_sym_public] = ACTIONS(7333), - [anon_sym_private] = ACTIONS(7333), - [anon_sym_internal] = ACTIONS(7333), - [anon_sym_protected] = ACTIONS(7333), - [anon_sym_tailrec] = ACTIONS(7333), - [anon_sym_operator] = ACTIONS(7333), - [anon_sym_infix] = ACTIONS(7333), - [anon_sym_inline] = ACTIONS(7333), - [anon_sym_external] = ACTIONS(7333), - [sym_property_modifier] = ACTIONS(7333), - [anon_sym_abstract] = ACTIONS(7333), - [anon_sym_final] = ACTIONS(7333), - [anon_sym_open] = ACTIONS(7333), - [anon_sym_vararg] = ACTIONS(7333), - [anon_sym_noinline] = ACTIONS(7333), - [anon_sym_crossinline] = ACTIONS(7333), - [anon_sym_expect] = ACTIONS(7333), - [anon_sym_actual] = ACTIONS(7333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7335), - [anon_sym_continue_AT] = ACTIONS(7335), - [anon_sym_break_AT] = ACTIONS(7335), - [anon_sym_this_AT] = ACTIONS(7335), - [anon_sym_super_AT] = ACTIONS(7335), - [sym_real_literal] = ACTIONS(7335), - [sym_integer_literal] = ACTIONS(7333), - [sym_hex_literal] = ACTIONS(7335), - [sym_bin_literal] = ACTIONS(7335), - [anon_sym_true] = ACTIONS(7333), - [anon_sym_false] = ACTIONS(7333), - [anon_sym_SQUOTE] = ACTIONS(7335), - [sym__backtick_identifier] = ACTIONS(7335), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7335), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3090), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [4145] = { - [sym__alpha_identifier] = ACTIONS(5183), - [anon_sym_AT] = ACTIONS(5185), - [anon_sym_LBRACK] = ACTIONS(5185), - [anon_sym_as] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5185), - [anon_sym_RBRACE] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5185), - [anon_sym_COMMA] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5183), - [anon_sym_GT] = ACTIONS(5183), - [anon_sym_where] = ACTIONS(5183), - [anon_sym_DOT] = ACTIONS(5183), - [anon_sym_SEMI] = ACTIONS(5185), - [anon_sym_get] = ACTIONS(5183), - [anon_sym_set] = ACTIONS(5183), - [anon_sym_STAR] = ACTIONS(5183), - [sym_label] = ACTIONS(5185), - [anon_sym_in] = ACTIONS(5183), - [anon_sym_DOT_DOT] = ACTIONS(5185), - [anon_sym_QMARK_COLON] = ACTIONS(5185), - [anon_sym_AMP_AMP] = ACTIONS(5185), - [anon_sym_PIPE_PIPE] = ACTIONS(5185), - [anon_sym_else] = ACTIONS(5183), - [anon_sym_COLON_COLON] = ACTIONS(5185), - [anon_sym_PLUS_EQ] = ACTIONS(5185), - [anon_sym_DASH_EQ] = ACTIONS(5185), - [anon_sym_STAR_EQ] = ACTIONS(5185), - [anon_sym_SLASH_EQ] = ACTIONS(5185), - [anon_sym_PERCENT_EQ] = ACTIONS(5185), - [anon_sym_BANG_EQ] = ACTIONS(5183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5185), - [anon_sym_EQ_EQ] = ACTIONS(5183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5185), - [anon_sym_LT_EQ] = ACTIONS(5185), - [anon_sym_GT_EQ] = ACTIONS(5185), - [anon_sym_BANGin] = ACTIONS(5185), - [anon_sym_is] = ACTIONS(5183), - [anon_sym_BANGis] = ACTIONS(5185), - [anon_sym_PLUS] = ACTIONS(5183), - [anon_sym_DASH] = ACTIONS(5183), - [anon_sym_SLASH] = ACTIONS(5183), - [anon_sym_PERCENT] = ACTIONS(5183), - [anon_sym_as_QMARK] = ACTIONS(5185), - [anon_sym_PLUS_PLUS] = ACTIONS(5185), - [anon_sym_DASH_DASH] = ACTIONS(5185), - [anon_sym_BANG_BANG] = ACTIONS(5185), - [anon_sym_suspend] = ACTIONS(5183), - [anon_sym_sealed] = ACTIONS(5183), - [anon_sym_annotation] = ACTIONS(5183), - [anon_sym_data] = ACTIONS(5183), - [anon_sym_inner] = ACTIONS(5183), - [anon_sym_value] = ACTIONS(5183), - [anon_sym_override] = ACTIONS(5183), - [anon_sym_lateinit] = ACTIONS(5183), - [anon_sym_public] = ACTIONS(5183), - [anon_sym_private] = ACTIONS(5183), - [anon_sym_internal] = ACTIONS(5183), - [anon_sym_protected] = ACTIONS(5183), - [anon_sym_tailrec] = ACTIONS(5183), - [anon_sym_operator] = ACTIONS(5183), - [anon_sym_infix] = ACTIONS(5183), - [anon_sym_inline] = ACTIONS(5183), - [anon_sym_external] = ACTIONS(5183), - [sym_property_modifier] = ACTIONS(5183), - [anon_sym_abstract] = ACTIONS(5183), - [anon_sym_final] = ACTIONS(5183), - [anon_sym_open] = ACTIONS(5183), - [anon_sym_vararg] = ACTIONS(5183), - [anon_sym_noinline] = ACTIONS(5183), - [anon_sym_crossinline] = ACTIONS(5183), - [anon_sym_expect] = ACTIONS(5183), - [anon_sym_actual] = ACTIONS(5183), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5185), - [sym__automatic_semicolon] = ACTIONS(5185), - [sym_safe_nav] = ACTIONS(5185), + [sym_type_constraints] = STATE(4241), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(7368), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [4146] = { - [sym__alpha_identifier] = ACTIONS(5020), - [anon_sym_AT] = ACTIONS(5022), - [anon_sym_LBRACK] = ACTIONS(5022), - [anon_sym_typealias] = ACTIONS(5020), - [anon_sym_class] = ACTIONS(5020), - [anon_sym_fun] = ACTIONS(5020), - [anon_sym_interface] = ACTIONS(5020), - [anon_sym_enum] = ACTIONS(5020), - [anon_sym_LBRACE] = ACTIONS(5022), - [anon_sym_LPAREN] = ACTIONS(5022), - [anon_sym_val] = ACTIONS(5020), - [anon_sym_var] = ACTIONS(5020), - [anon_sym_object] = ACTIONS(5020), - [anon_sym_get] = ACTIONS(5020), - [anon_sym_set] = ACTIONS(5020), - [anon_sym_this] = ACTIONS(5020), - [anon_sym_super] = ACTIONS(5020), - [anon_sym_STAR] = ACTIONS(5022), - [sym_label] = ACTIONS(5020), - [anon_sym_for] = ACTIONS(5020), - [anon_sym_while] = ACTIONS(5020), - [anon_sym_do] = ACTIONS(5020), - [anon_sym_null] = ACTIONS(5020), - [anon_sym_if] = ACTIONS(5020), - [anon_sym_when] = ACTIONS(5020), - [anon_sym_try] = ACTIONS(5020), - [anon_sym_throw] = ACTIONS(5020), - [anon_sym_return] = ACTIONS(5020), - [anon_sym_continue] = ACTIONS(5020), - [anon_sym_break] = ACTIONS(5020), - [anon_sym_COLON_COLON] = ACTIONS(5022), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_PLUS_PLUS] = ACTIONS(5022), - [anon_sym_DASH_DASH] = ACTIONS(5022), - [anon_sym_BANG] = ACTIONS(5022), - [anon_sym_suspend] = ACTIONS(5020), - [anon_sym_sealed] = ACTIONS(5020), - [anon_sym_annotation] = ACTIONS(5020), - [anon_sym_data] = ACTIONS(5020), - [anon_sym_inner] = ACTIONS(5020), - [anon_sym_value] = ACTIONS(5020), - [anon_sym_override] = ACTIONS(5020), - [anon_sym_lateinit] = ACTIONS(5020), - [anon_sym_public] = ACTIONS(5020), - [anon_sym_private] = ACTIONS(5020), - [anon_sym_internal] = ACTIONS(5020), - [anon_sym_protected] = ACTIONS(5020), - [anon_sym_tailrec] = ACTIONS(5020), - [anon_sym_operator] = ACTIONS(5020), - [anon_sym_infix] = ACTIONS(5020), - [anon_sym_inline] = ACTIONS(5020), - [anon_sym_external] = ACTIONS(5020), - [sym_property_modifier] = ACTIONS(5020), - [anon_sym_abstract] = ACTIONS(5020), - [anon_sym_final] = ACTIONS(5020), - [anon_sym_open] = ACTIONS(5020), - [anon_sym_vararg] = ACTIONS(5020), - [anon_sym_noinline] = ACTIONS(5020), - [anon_sym_crossinline] = ACTIONS(5020), - [anon_sym_expect] = ACTIONS(5020), - [anon_sym_actual] = ACTIONS(5020), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3158), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5022), - [anon_sym_continue_AT] = ACTIONS(5022), - [anon_sym_break_AT] = ACTIONS(5022), - [anon_sym_this_AT] = ACTIONS(5022), - [anon_sym_super_AT] = ACTIONS(5022), - [sym_real_literal] = ACTIONS(5022), - [sym_integer_literal] = ACTIONS(5020), - [sym_hex_literal] = ACTIONS(5022), - [sym_bin_literal] = ACTIONS(5022), - [anon_sym_true] = ACTIONS(5020), - [anon_sym_false] = ACTIONS(5020), - [anon_sym_SQUOTE] = ACTIONS(5022), - [sym__backtick_identifier] = ACTIONS(5022), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5022), }, [4147] = { - [sym__alpha_identifier] = ACTIONS(5145), - [anon_sym_AT] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5147), - [anon_sym_as] = ACTIONS(5145), - [anon_sym_EQ] = ACTIONS(5145), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_RBRACE] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5145), - [anon_sym_where] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_SEMI] = ACTIONS(5147), - [anon_sym_get] = ACTIONS(5145), - [anon_sym_set] = ACTIONS(5145), - [anon_sym_STAR] = ACTIONS(5145), - [sym_label] = ACTIONS(5147), - [anon_sym_in] = ACTIONS(5145), - [anon_sym_DOT_DOT] = ACTIONS(5147), - [anon_sym_QMARK_COLON] = ACTIONS(5147), - [anon_sym_AMP_AMP] = ACTIONS(5147), - [anon_sym_PIPE_PIPE] = ACTIONS(5147), - [anon_sym_else] = ACTIONS(5145), - [anon_sym_COLON_COLON] = ACTIONS(5147), - [anon_sym_PLUS_EQ] = ACTIONS(5147), - [anon_sym_DASH_EQ] = ACTIONS(5147), - [anon_sym_STAR_EQ] = ACTIONS(5147), - [anon_sym_SLASH_EQ] = ACTIONS(5147), - [anon_sym_PERCENT_EQ] = ACTIONS(5147), - [anon_sym_BANG_EQ] = ACTIONS(5145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5147), - [anon_sym_EQ_EQ] = ACTIONS(5145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5147), - [anon_sym_LT_EQ] = ACTIONS(5147), - [anon_sym_GT_EQ] = ACTIONS(5147), - [anon_sym_BANGin] = ACTIONS(5147), - [anon_sym_is] = ACTIONS(5145), - [anon_sym_BANGis] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5145), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5145), - [anon_sym_PERCENT] = ACTIONS(5145), - [anon_sym_as_QMARK] = ACTIONS(5147), - [anon_sym_PLUS_PLUS] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5147), - [anon_sym_BANG_BANG] = ACTIONS(5147), - [anon_sym_suspend] = ACTIONS(5145), - [anon_sym_sealed] = ACTIONS(5145), - [anon_sym_annotation] = ACTIONS(5145), - [anon_sym_data] = ACTIONS(5145), - [anon_sym_inner] = ACTIONS(5145), - [anon_sym_value] = ACTIONS(5145), - [anon_sym_override] = ACTIONS(5145), - [anon_sym_lateinit] = ACTIONS(5145), - [anon_sym_public] = ACTIONS(5145), - [anon_sym_private] = ACTIONS(5145), - [anon_sym_internal] = ACTIONS(5145), - [anon_sym_protected] = ACTIONS(5145), - [anon_sym_tailrec] = ACTIONS(5145), - [anon_sym_operator] = ACTIONS(5145), - [anon_sym_infix] = ACTIONS(5145), - [anon_sym_inline] = ACTIONS(5145), - [anon_sym_external] = ACTIONS(5145), - [sym_property_modifier] = ACTIONS(5145), - [anon_sym_abstract] = ACTIONS(5145), - [anon_sym_final] = ACTIONS(5145), - [anon_sym_open] = ACTIONS(5145), - [anon_sym_vararg] = ACTIONS(5145), - [anon_sym_noinline] = ACTIONS(5145), - [anon_sym_crossinline] = ACTIONS(5145), - [anon_sym_expect] = ACTIONS(5145), - [anon_sym_actual] = ACTIONS(5145), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5147), - [sym__automatic_semicolon] = ACTIONS(5147), - [sym_safe_nav] = ACTIONS(5147), + [sym_type_constraints] = STATE(4220), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [4148] = { - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(3284), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_PLUS_EQ] = ACTIONS(3288), - [anon_sym_DASH_EQ] = ACTIONS(3288), - [anon_sym_STAR_EQ] = ACTIONS(3288), - [anon_sym_SLASH_EQ] = ACTIONS(3288), - [anon_sym_PERCENT_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(7370), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [4149] = { - [sym__alpha_identifier] = ACTIONS(5111), - [anon_sym_AT] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_as] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5113), - [anon_sym_COMMA] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5111), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_where] = ACTIONS(5111), - [anon_sym_DOT] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5113), - [anon_sym_get] = ACTIONS(5111), - [anon_sym_set] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [sym_label] = ACTIONS(5113), - [anon_sym_in] = ACTIONS(5111), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_QMARK_COLON] = ACTIONS(5113), - [anon_sym_AMP_AMP] = ACTIONS(5113), - [anon_sym_PIPE_PIPE] = ACTIONS(5113), - [anon_sym_else] = ACTIONS(5111), - [anon_sym_COLON_COLON] = ACTIONS(5113), - [anon_sym_PLUS_EQ] = ACTIONS(5113), - [anon_sym_DASH_EQ] = ACTIONS(5113), - [anon_sym_STAR_EQ] = ACTIONS(5113), - [anon_sym_SLASH_EQ] = ACTIONS(5113), - [anon_sym_PERCENT_EQ] = ACTIONS(5113), - [anon_sym_BANG_EQ] = ACTIONS(5111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5113), - [anon_sym_EQ_EQ] = ACTIONS(5111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5113), - [anon_sym_LT_EQ] = ACTIONS(5113), - [anon_sym_GT_EQ] = ACTIONS(5113), - [anon_sym_BANGin] = ACTIONS(5113), - [anon_sym_is] = ACTIONS(5111), - [anon_sym_BANGis] = ACTIONS(5113), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5111), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_as_QMARK] = ACTIONS(5113), - [anon_sym_PLUS_PLUS] = ACTIONS(5113), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_BANG_BANG] = ACTIONS(5113), - [anon_sym_suspend] = ACTIONS(5111), - [anon_sym_sealed] = ACTIONS(5111), - [anon_sym_annotation] = ACTIONS(5111), - [anon_sym_data] = ACTIONS(5111), - [anon_sym_inner] = ACTIONS(5111), - [anon_sym_value] = ACTIONS(5111), - [anon_sym_override] = ACTIONS(5111), - [anon_sym_lateinit] = ACTIONS(5111), - [anon_sym_public] = ACTIONS(5111), - [anon_sym_private] = ACTIONS(5111), - [anon_sym_internal] = ACTIONS(5111), - [anon_sym_protected] = ACTIONS(5111), - [anon_sym_tailrec] = ACTIONS(5111), - [anon_sym_operator] = ACTIONS(5111), - [anon_sym_infix] = ACTIONS(5111), - [anon_sym_inline] = ACTIONS(5111), - [anon_sym_external] = ACTIONS(5111), - [sym_property_modifier] = ACTIONS(5111), - [anon_sym_abstract] = ACTIONS(5111), - [anon_sym_final] = ACTIONS(5111), - [anon_sym_open] = ACTIONS(5111), - [anon_sym_vararg] = ACTIONS(5111), - [anon_sym_noinline] = ACTIONS(5111), - [anon_sym_crossinline] = ACTIONS(5111), - [anon_sym_expect] = ACTIONS(5111), - [anon_sym_actual] = ACTIONS(5111), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5113), - [sym__automatic_semicolon] = ACTIONS(5113), - [sym_safe_nav] = ACTIONS(5113), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_RBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7372), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_DASH_GT] = ACTIONS(4287), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), }, [4150] = { - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4471), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [sym_label] = ACTIONS(4471), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_suspend] = ACTIONS(4469), - [anon_sym_sealed] = ACTIONS(4469), - [anon_sym_annotation] = ACTIONS(4469), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_value] = ACTIONS(4469), - [anon_sym_override] = ACTIONS(4469), - [anon_sym_lateinit] = ACTIONS(4469), - [anon_sym_public] = ACTIONS(4469), - [anon_sym_private] = ACTIONS(4469), - [anon_sym_internal] = ACTIONS(4469), - [anon_sym_protected] = ACTIONS(4469), - [anon_sym_tailrec] = ACTIONS(4469), - [anon_sym_operator] = ACTIONS(4469), - [anon_sym_infix] = ACTIONS(4469), - [anon_sym_inline] = ACTIONS(4469), - [anon_sym_external] = ACTIONS(4469), - [sym_property_modifier] = ACTIONS(4469), - [anon_sym_abstract] = ACTIONS(4469), - [anon_sym_final] = ACTIONS(4469), - [anon_sym_open] = ACTIONS(4469), - [anon_sym_vararg] = ACTIONS(4469), - [anon_sym_noinline] = ACTIONS(4469), - [anon_sym_crossinline] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4471), - [sym__automatic_semicolon] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(7374), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, [4151] = { - [sym_class_body] = STATE(4105), + [sym_type_constraints] = STATE(4259), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + }, + [4152] = { + [sym_class_body] = STATE(3956), + [sym_type_constraints] = STATE(3721), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(6304), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [4153] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6893), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [4154] = { + [sym_class_body] = STATE(3884), + [sym_type_constraints] = STATE(3739), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(7376), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + }, + [4155] = { + [sym_class_body] = STATE(3513), + [sym_type_constraints] = STATE(3324), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7378), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + }, + [4156] = { + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6306), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [4157] = { + [sym_class_body] = STATE(3953), + [sym_type_constraints] = STATE(3786), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6308), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [4158] = { + [sym_class_body] = STATE(3543), + [sym_type_constraints] = STATE(3346), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(7380), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + }, + [4159] = { + [sym__type] = STATE(9386), + [sym__type_reference] = STATE(8216), + [sym_not_nullable_type] = STATE(9386), + [sym_nullable_type] = STATE(9386), + [sym_user_type] = STATE(8332), + [sym__simple_user_type] = STATE(8138), + [sym_type_projection] = STATE(8908), + [sym_type_projection_modifiers] = STATE(6124), + [sym__type_projection_modifier] = STATE(7214), + [sym_function_type] = STATE(9386), + [sym_function_type_parameters] = STATE(9736), + [sym_parenthesized_type] = STATE(8216), + [sym_parenthesized_user_type] = STATE(9735), + [sym_type_modifiers] = STATE(6420), + [sym__type_modifier] = STATE(7213), + [sym_variance_modifier] = STATE(7214), + [sym_annotation] = STATE(7213), + [sym__single_annotation] = STATE(7848), + [sym__multi_annotation] = STATE(7848), + [sym_simple_identifier] = STATE(7893), + [sym__lexical_identifier] = STATE(6224), + [aux_sym_type_projection_modifiers_repeat1] = STATE(7214), + [aux_sym_type_modifiers_repeat1] = STATE(7213), + [sym__alpha_identifier] = ACTIONS(7382), + [anon_sym_AT] = ACTIONS(7385), + [anon_sym_LBRACK] = ACTIONS(7388), + [anon_sym_LBRACE] = ACTIONS(7388), + [anon_sym_LPAREN] = ACTIONS(7390), + [anon_sym_object] = ACTIONS(7393), + [anon_sym_fun] = ACTIONS(7393), + [anon_sym_get] = ACTIONS(7395), + [anon_sym_set] = ACTIONS(7395), + [anon_sym_this] = ACTIONS(7393), + [anon_sym_super] = ACTIONS(7393), + [anon_sym_dynamic] = ACTIONS(7398), + [anon_sym_STAR] = ACTIONS(7400), + [sym_label] = ACTIONS(7393), + [anon_sym_in] = ACTIONS(7403), + [anon_sym_null] = ACTIONS(7393), + [anon_sym_if] = ACTIONS(7393), + [anon_sym_when] = ACTIONS(7393), + [anon_sym_try] = ACTIONS(7393), + [anon_sym_throw] = ACTIONS(7393), + [anon_sym_return] = ACTIONS(7393), + [anon_sym_continue] = ACTIONS(7393), + [anon_sym_break] = ACTIONS(7393), + [anon_sym_COLON_COLON] = ACTIONS(7388), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS_PLUS] = ACTIONS(7388), + [anon_sym_DASH_DASH] = ACTIONS(7388), + [anon_sym_BANG] = ACTIONS(7388), + [anon_sym_suspend] = ACTIONS(7405), + [anon_sym_data] = ACTIONS(7395), + [anon_sym_inner] = ACTIONS(7395), + [anon_sym_value] = ACTIONS(7395), + [anon_sym_out] = ACTIONS(7403), + [anon_sym_expect] = ACTIONS(7395), + [anon_sym_actual] = ACTIONS(7395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7388), + [anon_sym_continue_AT] = ACTIONS(7388), + [anon_sym_break_AT] = ACTIONS(7388), + [anon_sym_this_AT] = ACTIONS(7388), + [anon_sym_super_AT] = ACTIONS(7388), + [sym_real_literal] = ACTIONS(7388), + [sym_integer_literal] = ACTIONS(7393), + [sym_hex_literal] = ACTIONS(7388), + [sym_bin_literal] = ACTIONS(7388), + [anon_sym_true] = ACTIONS(7393), + [anon_sym_false] = ACTIONS(7393), + [anon_sym_SQUOTE] = ACTIONS(7388), + [sym__backtick_identifier] = ACTIONS(7407), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7388), + }, + [4160] = { + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [4161] = { + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [4162] = { + [sym_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + }, + [4163] = { + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + }, + [4164] = { + [sym_type_constraints] = STATE(3820), + [sym_enum_class_body] = STATE(3861), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7410), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + }, + [4165] = { + [sym_function_body] = STATE(3873), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + }, + [4166] = { + [sym_type_constraints] = STATE(4232), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [4167] = { + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [4168] = { + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, + [4169] = { + [sym_function_body] = STATE(3972), + [sym__block] = STATE(3882), [sym__alpha_identifier] = ACTIONS(4443), [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(7337), [anon_sym_LBRACK] = ACTIONS(4445), [anon_sym_as] = ACTIONS(4443), - [anon_sym_EQ] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(5806), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), [anon_sym_RBRACE] = ACTIONS(4445), [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), [anon_sym_LT] = ACTIONS(4443), [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), [anon_sym_DOT] = ACTIONS(4443), [anon_sym_SEMI] = ACTIONS(4445), [anon_sym_get] = ACTIONS(4443), [anon_sym_set] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), [sym_label] = ACTIONS(4445), [anon_sym_in] = ACTIONS(4443), [anon_sym_DOT_DOT] = ACTIONS(4445), @@ -459386,11 +458059,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(4445), [anon_sym_else] = ACTIONS(4443), [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_PLUS_EQ] = ACTIONS(4445), - [anon_sym_DASH_EQ] = ACTIONS(4445), - [anon_sym_STAR_EQ] = ACTIONS(4445), - [anon_sym_SLASH_EQ] = ACTIONS(4445), - [anon_sym_PERCENT_EQ] = ACTIONS(4445), [anon_sym_BANG_EQ] = ACTIONS(4443), [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), [anon_sym_EQ_EQ] = ACTIONS(4443), @@ -459403,7 +458071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4443), [anon_sym_DASH] = ACTIONS(4443), [anon_sym_SLASH] = ACTIONS(4443), - [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), [anon_sym_as_QMARK] = ACTIONS(4445), [anon_sym_PLUS_PLUS] = ACTIONS(4445), [anon_sym_DASH_DASH] = ACTIONS(4445), @@ -459440,2952 +458108,2410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, - [4152] = { - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4425), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), + [4170] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7412), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), }, - [4153] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7343), - [anon_sym_DOT_DOT] = ACTIONS(7345), - [anon_sym_QMARK_COLON] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(7353), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7355), - [anon_sym_EQ_EQ] = ACTIONS(7353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7357), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_BANGin] = ACTIONS(7359), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [4171] = { + [sym_type_constraints] = STATE(3361), + [sym_enum_class_body] = STATE(3406), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(7414), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(7185), + [sym__backtick_identifier] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, - [4154] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(6752), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4350), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), - }, - [4155] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(6748), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4239), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [4172] = { + [sym_class_body] = STATE(3861), + [sym_type_constraints] = STATE(3816), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7416), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), }, - [4156] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(7363), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4350), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), + [4173] = { + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), }, - [4157] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7367), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4239), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [4174] = { + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), }, - [4158] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7371), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_this] = ACTIONS(4244), - [anon_sym_super] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4244), - [anon_sym_if] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4244), - [anon_sym_try] = ACTIONS(4244), - [anon_sym_throw] = ACTIONS(4244), - [anon_sym_return] = ACTIONS(4244), - [anon_sym_continue] = ACTIONS(4244), - [anon_sym_break] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4242), - [anon_sym_continue_AT] = ACTIONS(4242), - [anon_sym_break_AT] = ACTIONS(4242), - [anon_sym_this_AT] = ACTIONS(4242), - [anon_sym_super_AT] = ACTIONS(4242), - [sym_real_literal] = ACTIONS(4242), - [sym_integer_literal] = ACTIONS(4244), - [sym_hex_literal] = ACTIONS(4242), - [sym_bin_literal] = ACTIONS(4242), - [anon_sym_true] = ACTIONS(4244), - [anon_sym_false] = ACTIONS(4244), - [anon_sym_SQUOTE] = ACTIONS(4242), - [sym__backtick_identifier] = ACTIONS(4242), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4242), + [4175] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7418), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [4159] = { - [sym__alpha_identifier] = ACTIONS(5171), - [anon_sym_AT] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_fun] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(7373), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_where] = ACTIONS(5171), - [anon_sym_object] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5173), - [anon_sym_get] = ACTIONS(5171), - [anon_sym_set] = ACTIONS(5171), - [anon_sym_this] = ACTIONS(5171), - [anon_sym_super] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5173), - [sym_label] = ACTIONS(5171), - [anon_sym_in] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5173), - [anon_sym_QMARK_COLON] = ACTIONS(5173), - [anon_sym_AMP_AMP] = ACTIONS(5173), - [anon_sym_PIPE_PIPE] = ACTIONS(5173), - [anon_sym_null] = ACTIONS(5171), - [anon_sym_if] = ACTIONS(5171), - [anon_sym_else] = ACTIONS(5171), - [anon_sym_when] = ACTIONS(5171), - [anon_sym_try] = ACTIONS(5171), - [anon_sym_throw] = ACTIONS(5171), - [anon_sym_return] = ACTIONS(5171), - [anon_sym_continue] = ACTIONS(5171), - [anon_sym_break] = ACTIONS(5171), - [anon_sym_COLON_COLON] = ACTIONS(5173), - [anon_sym_BANG_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), - [anon_sym_LT_EQ] = ACTIONS(5173), - [anon_sym_GT_EQ] = ACTIONS(5173), - [anon_sym_BANGin] = ACTIONS(5173), - [anon_sym_is] = ACTIONS(5171), - [anon_sym_BANGis] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5173), - [anon_sym_as_QMARK] = ACTIONS(5173), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_BANG_BANG] = ACTIONS(5173), - [anon_sym_data] = ACTIONS(5171), - [anon_sym_inner] = ACTIONS(5171), - [anon_sym_value] = ACTIONS(5171), - [anon_sym_expect] = ACTIONS(5171), - [anon_sym_actual] = ACTIONS(5171), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5173), - [anon_sym_continue_AT] = ACTIONS(5173), - [anon_sym_break_AT] = ACTIONS(5173), - [anon_sym_this_AT] = ACTIONS(5173), - [anon_sym_super_AT] = ACTIONS(5173), - [sym_real_literal] = ACTIONS(5173), - [sym_integer_literal] = ACTIONS(5171), - [sym_hex_literal] = ACTIONS(5173), - [sym_bin_literal] = ACTIONS(5173), - [anon_sym_true] = ACTIONS(5171), - [anon_sym_false] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5173), - [sym__backtick_identifier] = ACTIONS(5173), - [sym__automatic_semicolon] = ACTIONS(5173), - [sym_safe_nav] = ACTIONS(5173), + [4176] = { + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5173), }, - [4160] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_fun] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(7375), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_where] = ACTIONS(5177), - [anon_sym_object] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_this] = ACTIONS(5177), - [anon_sym_super] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5179), - [sym_label] = ACTIONS(5177), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_null] = ACTIONS(5177), - [anon_sym_if] = ACTIONS(5177), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_when] = ACTIONS(5177), - [anon_sym_try] = ACTIONS(5177), - [anon_sym_throw] = ACTIONS(5177), - [anon_sym_return] = ACTIONS(5177), - [anon_sym_continue] = ACTIONS(5177), - [anon_sym_break] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5179), - [anon_sym_continue_AT] = ACTIONS(5179), - [anon_sym_break_AT] = ACTIONS(5179), - [anon_sym_this_AT] = ACTIONS(5179), - [anon_sym_super_AT] = ACTIONS(5179), - [sym_real_literal] = ACTIONS(5179), - [sym_integer_literal] = ACTIONS(5177), - [sym_hex_literal] = ACTIONS(5179), - [sym_bin_literal] = ACTIONS(5179), - [anon_sym_true] = ACTIONS(5177), - [anon_sym_false] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5179), - [sym__backtick_identifier] = ACTIONS(5179), - [sym__automatic_semicolon] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5179), + [4177] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7422), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(7374), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, - [4161] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7343), - [anon_sym_DOT_DOT] = ACTIONS(7345), - [anon_sym_QMARK_COLON] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(7353), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7355), - [anon_sym_EQ_EQ] = ACTIONS(7353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7357), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_BANGin] = ACTIONS(7359), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3103), - [sym_safe_nav] = ACTIONS(7185), - [sym_multiline_comment] = ACTIONS(3), - }, - [4162] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(7377), - [anon_sym_RPAREN] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4355), - [sym_label] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_while] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), + [4178] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7424), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - }, - [4163] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7379), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_while] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [4164] = { - [sym__alpha_identifier] = ACTIONS(5171), - [anon_sym_AT] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(7381), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5173), - [anon_sym_get] = ACTIONS(5171), - [anon_sym_set] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [sym_label] = ACTIONS(5173), - [anon_sym_in] = ACTIONS(5171), - [anon_sym_while] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5173), - [anon_sym_QMARK_COLON] = ACTIONS(5173), - [anon_sym_AMP_AMP] = ACTIONS(5173), - [anon_sym_PIPE_PIPE] = ACTIONS(5173), - [anon_sym_else] = ACTIONS(5171), - [anon_sym_COLON_COLON] = ACTIONS(5173), - [anon_sym_PLUS_EQ] = ACTIONS(5173), - [anon_sym_DASH_EQ] = ACTIONS(5173), - [anon_sym_STAR_EQ] = ACTIONS(5173), - [anon_sym_SLASH_EQ] = ACTIONS(5173), - [anon_sym_PERCENT_EQ] = ACTIONS(5173), - [anon_sym_BANG_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), - [anon_sym_LT_EQ] = ACTIONS(5173), - [anon_sym_GT_EQ] = ACTIONS(5173), - [anon_sym_BANGin] = ACTIONS(5173), - [anon_sym_is] = ACTIONS(5171), - [anon_sym_BANGis] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_as_QMARK] = ACTIONS(5173), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_BANG_BANG] = ACTIONS(5173), - [anon_sym_suspend] = ACTIONS(5171), - [anon_sym_sealed] = ACTIONS(5171), - [anon_sym_annotation] = ACTIONS(5171), - [anon_sym_data] = ACTIONS(5171), - [anon_sym_inner] = ACTIONS(5171), - [anon_sym_value] = ACTIONS(5171), - [anon_sym_override] = ACTIONS(5171), - [anon_sym_lateinit] = ACTIONS(5171), - [anon_sym_public] = ACTIONS(5171), - [anon_sym_private] = ACTIONS(5171), - [anon_sym_internal] = ACTIONS(5171), - [anon_sym_protected] = ACTIONS(5171), - [anon_sym_tailrec] = ACTIONS(5171), - [anon_sym_operator] = ACTIONS(5171), - [anon_sym_infix] = ACTIONS(5171), - [anon_sym_inline] = ACTIONS(5171), - [anon_sym_external] = ACTIONS(5171), - [sym_property_modifier] = ACTIONS(5171), - [anon_sym_abstract] = ACTIONS(5171), - [anon_sym_final] = ACTIONS(5171), - [anon_sym_open] = ACTIONS(5171), - [anon_sym_vararg] = ACTIONS(5171), - [anon_sym_noinline] = ACTIONS(5171), - [anon_sym_crossinline] = ACTIONS(5171), - [anon_sym_expect] = ACTIONS(5171), - [anon_sym_actual] = ACTIONS(5171), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5173), - [sym_safe_nav] = ACTIONS(5173), + [4179] = { + [sym_class_body] = STATE(3565), + [sym_type_constraints] = STATE(3329), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [4165] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(7383), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [sym_label] = ACTIONS(5179), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_while] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_PLUS_EQ] = ACTIONS(5179), - [anon_sym_DASH_EQ] = ACTIONS(5179), - [anon_sym_STAR_EQ] = ACTIONS(5179), - [anon_sym_SLASH_EQ] = ACTIONS(5179), - [anon_sym_PERCENT_EQ] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5177), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_suspend] = ACTIONS(5177), - [anon_sym_sealed] = ACTIONS(5177), - [anon_sym_annotation] = ACTIONS(5177), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_override] = ACTIONS(5177), - [anon_sym_lateinit] = ACTIONS(5177), - [anon_sym_public] = ACTIONS(5177), - [anon_sym_private] = ACTIONS(5177), - [anon_sym_internal] = ACTIONS(5177), - [anon_sym_protected] = ACTIONS(5177), - [anon_sym_tailrec] = ACTIONS(5177), - [anon_sym_operator] = ACTIONS(5177), - [anon_sym_infix] = ACTIONS(5177), - [anon_sym_inline] = ACTIONS(5177), - [anon_sym_external] = ACTIONS(5177), - [sym_property_modifier] = ACTIONS(5177), - [anon_sym_abstract] = ACTIONS(5177), - [anon_sym_final] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(5177), - [anon_sym_vararg] = ACTIONS(5177), - [anon_sym_noinline] = ACTIONS(5177), - [anon_sym_crossinline] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), - [sym_multiline_comment] = ACTIONS(3), + [4180] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7428), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), }, - [4166] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(7385), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_this] = ACTIONS(4355), - [anon_sym_super] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4353), - [sym_label] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [anon_sym_if] = ACTIONS(4355), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4355), - [anon_sym_try] = ACTIONS(4355), - [anon_sym_throw] = ACTIONS(4355), - [anon_sym_return] = ACTIONS(4355), - [anon_sym_continue] = ACTIONS(4355), - [anon_sym_break] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4353), - [anon_sym_continue_AT] = ACTIONS(4353), - [anon_sym_break_AT] = ACTIONS(4353), - [anon_sym_this_AT] = ACTIONS(4353), - [anon_sym_super_AT] = ACTIONS(4353), - [sym_real_literal] = ACTIONS(4353), - [sym_integer_literal] = ACTIONS(4355), - [sym_hex_literal] = ACTIONS(4353), - [sym_bin_literal] = ACTIONS(4353), - [anon_sym_true] = ACTIONS(4355), - [anon_sym_false] = ACTIONS(4355), - [anon_sym_SQUOTE] = ACTIONS(4353), - [sym__backtick_identifier] = ACTIONS(4353), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), + [4181] = { + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(6322), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4353), }, - [4167] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_COMMA] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_object] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_this] = ACTIONS(4926), - [anon_sym_super] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_if] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7387), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4926), - [anon_sym_throw] = ACTIONS(4926), - [anon_sym_return] = ACTIONS(4926), - [anon_sym_continue] = ACTIONS(4926), - [anon_sym_break] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [4182] = { + [sym_type_constraints] = STATE(3791), + [sym_enum_class_body] = STATE(3952), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(7430), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4928), - [anon_sym_continue_AT] = ACTIONS(4928), - [anon_sym_break_AT] = ACTIONS(4928), - [anon_sym_this_AT] = ACTIONS(4928), - [anon_sym_super_AT] = ACTIONS(4928), - [sym_real_literal] = ACTIONS(4928), - [sym_integer_literal] = ACTIONS(4926), - [sym_hex_literal] = ACTIONS(4928), - [sym_bin_literal] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [anon_sym_SQUOTE] = ACTIONS(4928), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), }, - [4168] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7343), - [anon_sym_DOT_DOT] = ACTIONS(7345), - [anon_sym_QMARK_COLON] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_STAR_EQ] = ACTIONS(3158), - [anon_sym_SLASH_EQ] = ACTIONS(3158), - [anon_sym_PERCENT_EQ] = ACTIONS(3158), - [anon_sym_BANG_EQ] = ACTIONS(7353), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7355), - [anon_sym_EQ_EQ] = ACTIONS(7353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7357), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_BANGin] = ACTIONS(7359), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(7185), + [4183] = { + [sym_function_body] = STATE(3995), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), }, - [4169] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(7185), - [sym_multiline_comment] = ACTIONS(3), + [4184] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7432), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), }, - [4170] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(7345), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(7185), - [sym_multiline_comment] = ACTIONS(3), + [4185] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7434), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), }, - [4171] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7343), - [anon_sym_DOT_DOT] = ACTIONS(7345), - [anon_sym_QMARK_COLON] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(7353), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7355), - [anon_sym_EQ_EQ] = ACTIONS(7353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7357), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_BANGin] = ACTIONS(7359), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), - [sym_safe_nav] = ACTIONS(7185), + [4186] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_RBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_DASH_GT] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7436), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, - [4172] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7343), - [anon_sym_DOT_DOT] = ACTIONS(7345), - [anon_sym_QMARK_COLON] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(7353), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7355), - [anon_sym_EQ_EQ] = ACTIONS(7353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7357), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_BANGin] = ACTIONS(7359), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(7185), + [4187] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_RBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7438), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_DASH_GT] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7436), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, - [4173] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7343), - [anon_sym_DOT_DOT] = ACTIONS(7345), - [anon_sym_QMARK_COLON] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(7357), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_BANGin] = ACTIONS(7359), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), - [sym_safe_nav] = ACTIONS(7185), + [4188] = { + [sym_type_constraints] = STATE(3303), + [sym_enum_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7440), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, - [4174] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7343), - [anon_sym_DOT_DOT] = ACTIONS(7345), - [anon_sym_QMARK_COLON] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(7359), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [4189] = { + [sym_type_constraints] = STATE(4252), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(7185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, - [4175] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(7345), - [anon_sym_QMARK_COLON] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3132), - [anon_sym_DASH_EQ] = ACTIONS(3132), - [anon_sym_STAR_EQ] = ACTIONS(3132), - [anon_sym_SLASH_EQ] = ACTIONS(3132), - [anon_sym_PERCENT_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [4190] = { + [sym_function_body] = STATE(3414), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4277), + [sym_label] = ACTIONS(4277), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4277), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(7185), - [sym_multiline_comment] = ACTIONS(3), - }, - [4176] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_STAR_EQ] = ACTIONS(3125), - [anon_sym_SLASH_EQ] = ACTIONS(3125), - [anon_sym_PERCENT_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(7185), - [sym_multiline_comment] = ACTIONS(3), - }, - [4177] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3116), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(7185), + [sym__backtick_identifier] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), }, - [4178] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(7345), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(7185), + [4191] = { + [sym_function_body] = STATE(3499), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(7444), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_while] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), [sym_multiline_comment] = ACTIONS(3), }, - [4179] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7343), - [anon_sym_DOT_DOT] = ACTIONS(7345), - [anon_sym_QMARK_COLON] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(7353), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7355), - [anon_sym_EQ_EQ] = ACTIONS(7353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7357), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_BANGin] = ACTIONS(7359), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [4192] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6897), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), - [sym_safe_nav] = ACTIONS(7185), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, - [4180] = { - [sym_class_body] = STATE(3251), - [sym__alpha_identifier] = ACTIONS(4443), - [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(7389), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_as] = ACTIONS(4443), - [anon_sym_fun] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4443), - [anon_sym_GT] = ACTIONS(4443), - [anon_sym_object] = ACTIONS(4443), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4445), - [anon_sym_get] = ACTIONS(4443), - [anon_sym_set] = ACTIONS(4443), - [anon_sym_this] = ACTIONS(4443), - [anon_sym_super] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4445), - [sym_label] = ACTIONS(4443), - [anon_sym_in] = ACTIONS(4443), - [anon_sym_DOT_DOT] = ACTIONS(4445), - [anon_sym_QMARK_COLON] = ACTIONS(4445), - [anon_sym_AMP_AMP] = ACTIONS(4445), - [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), - [anon_sym_if] = ACTIONS(4443), - [anon_sym_else] = ACTIONS(4443), - [anon_sym_when] = ACTIONS(4443), - [anon_sym_try] = ACTIONS(4443), - [anon_sym_throw] = ACTIONS(4443), - [anon_sym_return] = ACTIONS(4443), - [anon_sym_continue] = ACTIONS(4443), - [anon_sym_break] = ACTIONS(4443), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_BANG_EQ] = ACTIONS(4443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), - [anon_sym_EQ_EQ] = ACTIONS(4443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), - [anon_sym_LT_EQ] = ACTIONS(4445), - [anon_sym_GT_EQ] = ACTIONS(4445), - [anon_sym_BANGin] = ACTIONS(4445), - [anon_sym_is] = ACTIONS(4443), - [anon_sym_BANGis] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_SLASH] = ACTIONS(4443), - [anon_sym_PERCENT] = ACTIONS(4445), - [anon_sym_as_QMARK] = ACTIONS(4445), - [anon_sym_PLUS_PLUS] = ACTIONS(4445), - [anon_sym_DASH_DASH] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4443), - [anon_sym_BANG_BANG] = ACTIONS(4445), - [anon_sym_data] = ACTIONS(4443), - [anon_sym_inner] = ACTIONS(4443), - [anon_sym_value] = ACTIONS(4443), - [anon_sym_expect] = ACTIONS(4443), - [anon_sym_actual] = ACTIONS(4443), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4445), - [anon_sym_continue_AT] = ACTIONS(4445), - [anon_sym_break_AT] = ACTIONS(4445), - [anon_sym_this_AT] = ACTIONS(4445), - [anon_sym_super_AT] = ACTIONS(4445), - [sym_real_literal] = ACTIONS(4445), - [sym_integer_literal] = ACTIONS(4443), - [sym_hex_literal] = ACTIONS(4445), - [sym_bin_literal] = ACTIONS(4445), - [anon_sym_true] = ACTIONS(4443), - [anon_sym_false] = ACTIONS(4443), - [anon_sym_SQUOTE] = ACTIONS(4445), - [sym__backtick_identifier] = ACTIONS(4445), - [sym__automatic_semicolon] = ACTIONS(4445), - [sym_safe_nav] = ACTIONS(4445), + [4193] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_RBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7446), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [anon_sym_DASH_GT] = ACTIONS(4265), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4445), }, - [4181] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_COMMA] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_object] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(7391), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_this] = ACTIONS(4926), - [anon_sym_super] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_if] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7387), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4926), - [anon_sym_throw] = ACTIONS(4926), - [anon_sym_return] = ACTIONS(4926), - [anon_sym_continue] = ACTIONS(4926), - [anon_sym_break] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4928), - [anon_sym_continue_AT] = ACTIONS(4928), - [anon_sym_break_AT] = ACTIONS(4928), - [anon_sym_this_AT] = ACTIONS(4928), - [anon_sym_super_AT] = ACTIONS(4928), - [sym_real_literal] = ACTIONS(4928), - [sym_integer_literal] = ACTIONS(4926), - [sym_hex_literal] = ACTIONS(4928), - [sym_bin_literal] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [anon_sym_SQUOTE] = ACTIONS(4928), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [4194] = { + [sym_class_body] = STATE(3539), + [sym_type_constraints] = STATE(3280), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), }, - [4182] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7343), - [anon_sym_DOT_DOT] = ACTIONS(7345), - [anon_sym_QMARK_COLON] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(7353), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7355), - [anon_sym_EQ_EQ] = ACTIONS(7353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7357), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_BANGin] = ACTIONS(7359), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(7185), + [4195] = { + [sym_type_constraints] = STATE(4256), + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, - [4183] = { - [sym_class_body] = STATE(3294), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(7393), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), - }, - [4184] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7343), - [anon_sym_DOT_DOT] = ACTIONS(7345), - [anon_sym_QMARK_COLON] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3194), - [anon_sym_DASH_EQ] = ACTIONS(3194), - [anon_sym_STAR_EQ] = ACTIONS(3194), - [anon_sym_SLASH_EQ] = ACTIONS(3194), - [anon_sym_PERCENT_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ] = ACTIONS(7353), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7355), - [anon_sym_EQ_EQ] = ACTIONS(7353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7357), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_BANGin] = ACTIONS(7359), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), - [sym_safe_nav] = ACTIONS(7185), + [4196] = { + [sym_type_constraints] = STATE(4241), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, - [4185] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2123), - [sym__comparison_operator] = STATE(2124), - [sym__in_operator] = STATE(2136), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2139), - [sym__multiplicative_operator] = STATE(2141), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2142), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_EQ] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7341), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7343), - [anon_sym_DOT_DOT] = ACTIONS(7345), - [anon_sym_QMARK_COLON] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_PLUS_EQ] = ACTIONS(3170), - [anon_sym_DASH_EQ] = ACTIONS(3170), - [anon_sym_STAR_EQ] = ACTIONS(3170), - [anon_sym_SLASH_EQ] = ACTIONS(3170), - [anon_sym_PERCENT_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(7353), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7355), - [anon_sym_EQ_EQ] = ACTIONS(7353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7357), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_BANGin] = ACTIONS(7359), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), - [sym_safe_nav] = ACTIONS(7185), + [4197] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_RBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7448), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [anon_sym_DASH_GT] = ACTIONS(4894), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_while] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), [sym_multiline_comment] = ACTIONS(3), }, - [4186] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(5972), - [anon_sym_RPAREN] = ACTIONS(4239), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4239), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_while] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_suspend] = ACTIONS(4236), - [anon_sym_sealed] = ACTIONS(4236), - [anon_sym_annotation] = ACTIONS(4236), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4236), - [anon_sym_lateinit] = ACTIONS(4236), - [anon_sym_public] = ACTIONS(4236), - [anon_sym_private] = ACTIONS(4236), - [anon_sym_internal] = ACTIONS(4236), - [anon_sym_protected] = ACTIONS(4236), - [anon_sym_tailrec] = ACTIONS(4236), - [anon_sym_operator] = ACTIONS(4236), - [anon_sym_infix] = ACTIONS(4236), - [anon_sym_inline] = ACTIONS(4236), - [anon_sym_external] = ACTIONS(4236), - [sym_property_modifier] = ACTIONS(4236), - [anon_sym_abstract] = ACTIONS(4236), - [anon_sym_final] = ACTIONS(4236), - [anon_sym_open] = ACTIONS(4236), - [anon_sym_vararg] = ACTIONS(4236), - [anon_sym_noinline] = ACTIONS(4236), - [anon_sym_crossinline] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), + [4198] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_RBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7450), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_DASH_GT] = ACTIONS(4876), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_while] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), [sym_multiline_comment] = ACTIONS(3), }, - [4187] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(5968), - [anon_sym_RPAREN] = ACTIONS(4350), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4350), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_while] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_suspend] = ACTIONS(4347), - [anon_sym_sealed] = ACTIONS(4347), - [anon_sym_annotation] = ACTIONS(4347), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4347), - [anon_sym_lateinit] = ACTIONS(4347), - [anon_sym_public] = ACTIONS(4347), - [anon_sym_private] = ACTIONS(4347), - [anon_sym_internal] = ACTIONS(4347), - [anon_sym_protected] = ACTIONS(4347), - [anon_sym_tailrec] = ACTIONS(4347), - [anon_sym_operator] = ACTIONS(4347), - [anon_sym_infix] = ACTIONS(4347), - [anon_sym_inline] = ACTIONS(4347), - [anon_sym_external] = ACTIONS(4347), - [sym_property_modifier] = ACTIONS(4347), - [anon_sym_abstract] = ACTIONS(4347), - [anon_sym_final] = ACTIONS(4347), - [anon_sym_open] = ACTIONS(4347), - [anon_sym_vararg] = ACTIONS(4347), - [anon_sym_noinline] = ACTIONS(4347), - [anon_sym_crossinline] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), + [4199] = { + [sym_value_arguments] = STATE(3993), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(7452), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), [sym_multiline_comment] = ACTIONS(3), }, - [4188] = { - [sym_class_body] = STATE(3632), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(7395), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_RBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_RPAREN] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4429), - [anon_sym_DASH_GT] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_while] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), + [4200] = { + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, - [4189] = { - [sym_class_body] = STATE(3468), + [4201] = { + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3402), [sym__alpha_identifier] = ACTIONS(4443), [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(7397), [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), [anon_sym_as] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(5590), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_RBRACE] = ACTIONS(4445), [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), [anon_sym_RPAREN] = ACTIONS(4445), [anon_sym_LT] = ACTIONS(4443), [anon_sym_GT] = ACTIONS(4443), - [anon_sym_where] = ACTIONS(4443), [anon_sym_DOT] = ACTIONS(4443), [anon_sym_SEMI] = ACTIONS(4445), [anon_sym_get] = ACTIONS(4443), [anon_sym_set] = ACTIONS(4443), [anon_sym_STAR] = ACTIONS(4445), - [anon_sym_DASH_GT] = ACTIONS(4445), [sym_label] = ACTIONS(4445), [anon_sym_in] = ACTIONS(4443), [anon_sym_while] = ACTIONS(4443), @@ -462443,2923 +460569,780 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, - [4190] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_RPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(7399), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_while] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7401), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_PLUS_EQ] = ACTIONS(4928), - [anon_sym_DASH_EQ] = ACTIONS(4928), - [anon_sym_STAR_EQ] = ACTIONS(4928), - [anon_sym_SLASH_EQ] = ACTIONS(4928), - [anon_sym_PERCENT_EQ] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), - [sym_multiline_comment] = ACTIONS(3), - }, - [4191] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_RPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_while] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7401), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_PLUS_EQ] = ACTIONS(4928), - [anon_sym_DASH_EQ] = ACTIONS(4928), - [anon_sym_STAR_EQ] = ACTIONS(4928), - [anon_sym_SLASH_EQ] = ACTIONS(4928), - [anon_sym_PERCENT_EQ] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), - [sym_multiline_comment] = ACTIONS(3), - }, - [4192] = { - [sym_type_constraints] = STATE(4288), - [sym_function_body] = STATE(4106), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(7403), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - }, - [4193] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(5315), - [anon_sym_RPAREN] = ACTIONS(4350), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4350), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_while] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4350), - [anon_sym_DASH_EQ] = ACTIONS(4350), - [anon_sym_STAR_EQ] = ACTIONS(4350), - [anon_sym_SLASH_EQ] = ACTIONS(4350), - [anon_sym_PERCENT_EQ] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_suspend] = ACTIONS(4347), - [anon_sym_sealed] = ACTIONS(4347), - [anon_sym_annotation] = ACTIONS(4347), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4347), - [anon_sym_lateinit] = ACTIONS(4347), - [anon_sym_public] = ACTIONS(4347), - [anon_sym_private] = ACTIONS(4347), - [anon_sym_internal] = ACTIONS(4347), - [anon_sym_protected] = ACTIONS(4347), - [anon_sym_tailrec] = ACTIONS(4347), - [anon_sym_operator] = ACTIONS(4347), - [anon_sym_infix] = ACTIONS(4347), - [anon_sym_inline] = ACTIONS(4347), - [anon_sym_external] = ACTIONS(4347), - [sym_property_modifier] = ACTIONS(4347), - [anon_sym_abstract] = ACTIONS(4347), - [anon_sym_final] = ACTIONS(4347), - [anon_sym_open] = ACTIONS(4347), - [anon_sym_vararg] = ACTIONS(4347), - [anon_sym_noinline] = ACTIONS(4347), - [anon_sym_crossinline] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), - [sym_multiline_comment] = ACTIONS(3), - }, - [4194] = { - [sym_type_constraints] = STATE(4311), - [sym_function_body] = STATE(3461), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(7407), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_RPAREN] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4211), - [sym_label] = ACTIONS(4211), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_while] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4211), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_suspend] = ACTIONS(4209), - [anon_sym_sealed] = ACTIONS(4209), - [anon_sym_annotation] = ACTIONS(4209), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_override] = ACTIONS(4209), - [anon_sym_lateinit] = ACTIONS(4209), - [anon_sym_public] = ACTIONS(4209), - [anon_sym_private] = ACTIONS(4209), - [anon_sym_internal] = ACTIONS(4209), - [anon_sym_protected] = ACTIONS(4209), - [anon_sym_tailrec] = ACTIONS(4209), - [anon_sym_operator] = ACTIONS(4209), - [anon_sym_infix] = ACTIONS(4209), - [anon_sym_inline] = ACTIONS(4209), - [anon_sym_external] = ACTIONS(4209), - [sym_property_modifier] = ACTIONS(4209), - [anon_sym_abstract] = ACTIONS(4209), - [anon_sym_final] = ACTIONS(4209), - [anon_sym_open] = ACTIONS(4209), - [anon_sym_vararg] = ACTIONS(4209), - [anon_sym_noinline] = ACTIONS(4209), - [anon_sym_crossinline] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), - [sym_multiline_comment] = ACTIONS(3), - }, - [4195] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(5311), - [anon_sym_RPAREN] = ACTIONS(4239), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4239), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_while] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4239), - [anon_sym_DASH_EQ] = ACTIONS(4239), - [anon_sym_STAR_EQ] = ACTIONS(4239), - [anon_sym_SLASH_EQ] = ACTIONS(4239), - [anon_sym_PERCENT_EQ] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_suspend] = ACTIONS(4236), - [anon_sym_sealed] = ACTIONS(4236), - [anon_sym_annotation] = ACTIONS(4236), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4236), - [anon_sym_lateinit] = ACTIONS(4236), - [anon_sym_public] = ACTIONS(4236), - [anon_sym_private] = ACTIONS(4236), - [anon_sym_internal] = ACTIONS(4236), - [anon_sym_protected] = ACTIONS(4236), - [anon_sym_tailrec] = ACTIONS(4236), - [anon_sym_operator] = ACTIONS(4236), - [anon_sym_infix] = ACTIONS(4236), - [anon_sym_inline] = ACTIONS(4236), - [anon_sym_external] = ACTIONS(4236), - [sym_property_modifier] = ACTIONS(4236), - [anon_sym_abstract] = ACTIONS(4236), - [anon_sym_final] = ACTIONS(4236), - [anon_sym_open] = ACTIONS(4236), - [anon_sym_vararg] = ACTIONS(4236), - [anon_sym_noinline] = ACTIONS(4236), - [anon_sym_crossinline] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), - [sym_multiline_comment] = ACTIONS(3), - }, - [4196] = { - [sym_value_arguments] = STATE(3504), - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_RBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_RPAREN] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(7411), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_DASH_GT] = ACTIONS(4437), - [sym_label] = ACTIONS(4437), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_while] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4437), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_suspend] = ACTIONS(4435), - [anon_sym_sealed] = ACTIONS(4435), - [anon_sym_annotation] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_override] = ACTIONS(4435), - [anon_sym_lateinit] = ACTIONS(4435), - [anon_sym_public] = ACTIONS(4435), - [anon_sym_private] = ACTIONS(4435), - [anon_sym_internal] = ACTIONS(4435), - [anon_sym_protected] = ACTIONS(4435), - [anon_sym_tailrec] = ACTIONS(4435), - [anon_sym_operator] = ACTIONS(4435), - [anon_sym_infix] = ACTIONS(4435), - [anon_sym_inline] = ACTIONS(4435), - [anon_sym_external] = ACTIONS(4435), - [sym_property_modifier] = ACTIONS(4435), - [anon_sym_abstract] = ACTIONS(4435), - [anon_sym_final] = ACTIONS(4435), - [anon_sym_open] = ACTIONS(4435), - [anon_sym_vararg] = ACTIONS(4435), - [anon_sym_noinline] = ACTIONS(4435), - [anon_sym_crossinline] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), - }, - [4197] = { - [sym_type_constraints] = STATE(4326), - [sym_function_body] = STATE(3582), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(7413), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_RPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - }, - [4198] = { - [sym_type_constraints] = STATE(4316), - [sym_function_body] = STATE(3584), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(7415), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_RPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_while] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - }, - [4199] = { - [sym_type_constraints] = STATE(4331), - [sym_function_body] = STATE(3667), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(7417), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_RPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4185), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_while] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), - [sym_multiline_comment] = ACTIONS(3), - }, - [4200] = { - [sym_type_constraints] = STATE(4327), - [sym_function_body] = STATE(3608), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(7419), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - }, - [4201] = { - [sym_type_constraints] = STATE(4278), - [sym_function_body] = STATE(4129), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(7421), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_COMMA] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4211), - [sym_label] = ACTIONS(4211), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4211), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_suspend] = ACTIONS(4209), - [anon_sym_sealed] = ACTIONS(4209), - [anon_sym_annotation] = ACTIONS(4209), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_override] = ACTIONS(4209), - [anon_sym_lateinit] = ACTIONS(4209), - [anon_sym_public] = ACTIONS(4209), - [anon_sym_private] = ACTIONS(4209), - [anon_sym_internal] = ACTIONS(4209), - [anon_sym_protected] = ACTIONS(4209), - [anon_sym_tailrec] = ACTIONS(4209), - [anon_sym_operator] = ACTIONS(4209), - [anon_sym_infix] = ACTIONS(4209), - [anon_sym_inline] = ACTIONS(4209), - [anon_sym_external] = ACTIONS(4209), - [sym_property_modifier] = ACTIONS(4209), - [anon_sym_abstract] = ACTIONS(4209), - [anon_sym_final] = ACTIONS(4209), - [anon_sym_open] = ACTIONS(4209), - [anon_sym_vararg] = ACTIONS(4209), - [anon_sym_noinline] = ACTIONS(4209), - [anon_sym_crossinline] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4211), - [sym__automatic_semicolon] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), - [sym_multiline_comment] = ACTIONS(3), - }, - [4202] = { - [sym_type_constraints] = STATE(4304), - [sym_function_body] = STATE(4087), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(7423), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4185), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [4202] = { + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [4203] = { - [sym_type_constraints] = STATE(4262), - [sym_function_body] = STATE(4127), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(7425), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [sym_class_body] = STATE(3861), + [sym_type_constraints] = STATE(3816), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7454), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [4204] = { - [sym_type_constraints] = STATE(4272), - [sym_function_body] = STATE(4139), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(7427), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(7456), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [4205] = { - [sym_type_constraints] = STATE(4307), - [sym_function_body] = STATE(4049), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [4206] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3170), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3170), - [anon_sym_RPAREN] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_where] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3170), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, [4207] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_where] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3151), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_while] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(6840), + [sym_class_body] = STATE(3881), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7458), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), [sym_multiline_comment] = ACTIONS(3), }, [4208] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(6044), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4350), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_suspend] = ACTIONS(4347), - [anon_sym_sealed] = ACTIONS(4347), - [anon_sym_annotation] = ACTIONS(4347), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4347), - [anon_sym_lateinit] = ACTIONS(4347), - [anon_sym_public] = ACTIONS(4347), - [anon_sym_private] = ACTIONS(4347), - [anon_sym_internal] = ACTIONS(4347), - [anon_sym_protected] = ACTIONS(4347), - [anon_sym_tailrec] = ACTIONS(4347), - [anon_sym_operator] = ACTIONS(4347), - [anon_sym_infix] = ACTIONS(4347), - [anon_sym_inline] = ACTIONS(4347), - [anon_sym_external] = ACTIONS(4347), - [sym_property_modifier] = ACTIONS(4347), - [anon_sym_abstract] = ACTIONS(4347), - [anon_sym_final] = ACTIONS(4347), - [anon_sym_open] = ACTIONS(4347), - [anon_sym_vararg] = ACTIONS(4347), - [anon_sym_noinline] = ACTIONS(4347), - [anon_sym_crossinline] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [4209] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3158), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_RPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3158), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_class_body] = STATE(3884), + [sym_type_constraints] = STATE(3739), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(7460), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), }, [4210] = { - [sym_type_constraints] = STATE(4327), - [sym_function_body] = STATE(3608), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), + [sym_function_body] = STATE(4010), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(7462), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), [sym_multiline_comment] = ACTIONS(3), }, [4211] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4239), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4015), - [anon_sym_DASH_EQ] = ACTIONS(4015), - [anon_sym_STAR_EQ] = ACTIONS(4015), - [anon_sym_SLASH_EQ] = ACTIONS(4015), - [anon_sym_PERCENT_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_suspend] = ACTIONS(4236), - [anon_sym_sealed] = ACTIONS(4236), - [anon_sym_annotation] = ACTIONS(4236), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4236), - [anon_sym_lateinit] = ACTIONS(4236), - [anon_sym_public] = ACTIONS(4236), - [anon_sym_private] = ACTIONS(4236), - [anon_sym_internal] = ACTIONS(4236), - [anon_sym_protected] = ACTIONS(4236), - [anon_sym_tailrec] = ACTIONS(4236), - [anon_sym_operator] = ACTIONS(4236), - [anon_sym_infix] = ACTIONS(4236), - [anon_sym_inline] = ACTIONS(4236), - [anon_sym_external] = ACTIONS(4236), - [sym_property_modifier] = ACTIONS(4236), - [anon_sym_abstract] = ACTIONS(4236), - [anon_sym_final] = ACTIONS(4236), - [anon_sym_open] = ACTIONS(4236), - [anon_sym_vararg] = ACTIONS(4236), - [anon_sym_noinline] = ACTIONS(4236), - [anon_sym_crossinline] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), + [sym_class_body] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7464), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), [sym_multiline_comment] = ACTIONS(3), }, [4212] = { - [sym_type_constraints] = STATE(4368), - [sym_function_body] = STATE(4127), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_COLON] = ACTIONS(7455), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), - [sym_multiline_comment] = ACTIONS(3), - }, - [4213] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(5464), - [anon_sym_LT] = ACTIONS(4236), - [anon_sym_GT] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [sym_label] = ACTIONS(4239), - [anon_sym_in] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4239), - [anon_sym_QMARK_COLON] = ACTIONS(4239), - [anon_sym_AMP_AMP] = ACTIONS(4239), - [anon_sym_PIPE_PIPE] = ACTIONS(4239), - [anon_sym_else] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4239), - [anon_sym_DASH_EQ] = ACTIONS(4239), - [anon_sym_STAR_EQ] = ACTIONS(4239), - [anon_sym_SLASH_EQ] = ACTIONS(4239), - [anon_sym_PERCENT_EQ] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), - [anon_sym_LT_EQ] = ACTIONS(4239), - [anon_sym_GT_EQ] = ACTIONS(4239), - [anon_sym_BANGin] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4236), - [anon_sym_BANGis] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_as_QMARK] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG_BANG] = ACTIONS(4239), - [anon_sym_suspend] = ACTIONS(4236), - [anon_sym_sealed] = ACTIONS(4236), - [anon_sym_annotation] = ACTIONS(4236), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_override] = ACTIONS(4236), - [anon_sym_lateinit] = ACTIONS(4236), - [anon_sym_public] = ACTIONS(4236), - [anon_sym_private] = ACTIONS(4236), - [anon_sym_internal] = ACTIONS(4236), - [anon_sym_protected] = ACTIONS(4236), - [anon_sym_tailrec] = ACTIONS(4236), - [anon_sym_operator] = ACTIONS(4236), - [anon_sym_infix] = ACTIONS(4236), - [anon_sym_inline] = ACTIONS(4236), - [anon_sym_external] = ACTIONS(4236), - [sym_property_modifier] = ACTIONS(4236), - [anon_sym_abstract] = ACTIONS(4236), - [anon_sym_final] = ACTIONS(4236), - [anon_sym_open] = ACTIONS(4236), - [anon_sym_vararg] = ACTIONS(4236), - [anon_sym_noinline] = ACTIONS(4236), - [anon_sym_crossinline] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), - [sym_multiline_comment] = ACTIONS(3), - }, - [4214] = { - [sym_type_constraints] = STATE(4309), - [sym_function_body] = STATE(4037), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - }, - [4215] = { - [sym_type_constraints] = STATE(4373), - [sym_function_body] = STATE(4129), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4209), - [anon_sym_AT] = ACTIONS(4211), - [anon_sym_COLON] = ACTIONS(7459), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_as] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_get] = ACTIONS(4209), - [anon_sym_set] = ACTIONS(4209), - [anon_sym_STAR] = ACTIONS(4211), - [sym_label] = ACTIONS(4211), - [anon_sym_in] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_QMARK_COLON] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_PIPE_PIPE] = ACTIONS(4211), - [anon_sym_else] = ACTIONS(4209), - [anon_sym_COLON_COLON] = ACTIONS(4211), - [anon_sym_BANG_EQ] = ACTIONS(4209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), - [anon_sym_EQ_EQ] = ACTIONS(4209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), - [anon_sym_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_EQ] = ACTIONS(4211), - [anon_sym_BANGin] = ACTIONS(4211), - [anon_sym_is] = ACTIONS(4209), - [anon_sym_BANGis] = ACTIONS(4211), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4209), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4211), - [anon_sym_as_QMARK] = ACTIONS(4211), - [anon_sym_PLUS_PLUS] = ACTIONS(4211), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_BANG_BANG] = ACTIONS(4211), - [anon_sym_suspend] = ACTIONS(4209), - [anon_sym_sealed] = ACTIONS(4209), - [anon_sym_annotation] = ACTIONS(4209), - [anon_sym_data] = ACTIONS(4209), - [anon_sym_inner] = ACTIONS(4209), - [anon_sym_value] = ACTIONS(4209), - [anon_sym_override] = ACTIONS(4209), - [anon_sym_lateinit] = ACTIONS(4209), - [anon_sym_public] = ACTIONS(4209), - [anon_sym_private] = ACTIONS(4209), - [anon_sym_internal] = ACTIONS(4209), - [anon_sym_protected] = ACTIONS(4209), - [anon_sym_tailrec] = ACTIONS(4209), - [anon_sym_operator] = ACTIONS(4209), - [anon_sym_infix] = ACTIONS(4209), - [anon_sym_inline] = ACTIONS(4209), - [anon_sym_external] = ACTIONS(4209), - [sym_property_modifier] = ACTIONS(4209), - [anon_sym_abstract] = ACTIONS(4209), - [anon_sym_final] = ACTIONS(4209), - [anon_sym_open] = ACTIONS(4209), - [anon_sym_vararg] = ACTIONS(4209), - [anon_sym_noinline] = ACTIONS(4209), - [anon_sym_crossinline] = ACTIONS(4209), - [anon_sym_expect] = ACTIONS(4209), - [anon_sym_actual] = ACTIONS(4209), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4211), - [sym__automatic_semicolon] = ACTIONS(4211), - [sym_safe_nav] = ACTIONS(4211), - [sym_multiline_comment] = ACTIONS(3), - }, - [4216] = { - [sym_function_body] = STATE(3960), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(7461), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [sym_label] = ACTIONS(4341), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - }, - [4217] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3132), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_RPAREN] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3132), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4218] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4239), - [sym__alpha_identifier] = ACTIONS(4740), - [anon_sym_AT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_RBRACK] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_where] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4740), - [anon_sym_set] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4742), - [anon_sym_DASH_GT] = ACTIONS(4742), - [sym_label] = ACTIONS(4742), - [anon_sym_in] = ACTIONS(4740), - [anon_sym_while] = ACTIONS(4740), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [anon_sym_QMARK_COLON] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_COLON_COLON] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT_EQ] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_BANGin] = ACTIONS(4742), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_BANGis] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4742), - [anon_sym_as_QMARK] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4742), - [anon_sym_BANG_BANG] = ACTIONS(4742), - [anon_sym_suspend] = ACTIONS(4740), - [anon_sym_sealed] = ACTIONS(4740), - [anon_sym_annotation] = ACTIONS(4740), - [anon_sym_data] = ACTIONS(4740), - [anon_sym_inner] = ACTIONS(4740), - [anon_sym_value] = ACTIONS(4740), - [anon_sym_override] = ACTIONS(4740), - [anon_sym_lateinit] = ACTIONS(4740), - [anon_sym_public] = ACTIONS(4740), - [anon_sym_private] = ACTIONS(4740), - [anon_sym_internal] = ACTIONS(4740), - [anon_sym_protected] = ACTIONS(4740), - [anon_sym_tailrec] = ACTIONS(4740), - [anon_sym_operator] = ACTIONS(4740), - [anon_sym_infix] = ACTIONS(4740), - [anon_sym_inline] = ACTIONS(4740), - [anon_sym_external] = ACTIONS(4740), - [sym_property_modifier] = ACTIONS(4740), - [anon_sym_abstract] = ACTIONS(4740), - [anon_sym_final] = ACTIONS(4740), - [anon_sym_open] = ACTIONS(4740), - [anon_sym_vararg] = ACTIONS(4740), - [anon_sym_noinline] = ACTIONS(4740), - [anon_sym_crossinline] = ACTIONS(4740), - [anon_sym_expect] = ACTIONS(4740), - [anon_sym_actual] = ACTIONS(4740), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), - [sym_multiline_comment] = ACTIONS(3), - }, - [4219] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3125), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_RPAREN] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3125), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4220] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_where] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4221] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3111), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4222] = { - [sym_type_constraints] = STATE(4331), - [sym_function_body] = STATE(3667), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_RPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4185), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_while] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), - [sym_multiline_comment] = ACTIONS(3), - }, - [4223] = { - [sym_type_constraints] = STATE(4336), - [sym_function_body] = STATE(3554), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_RPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), - [sym_multiline_comment] = ACTIONS(3), - }, - [4224] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_where] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4225] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3186), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3186), - [anon_sym_RPAREN] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_where] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3186), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4226] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4227] = { - [sym_function_body] = STATE(4010), - [sym__block] = STATE(4073), + [sym_type_constraints] = STATE(3791), + [sym_enum_class_body] = STATE(3952), [sym__alpha_identifier] = ACTIONS(4321), [anon_sym_AT] = ACTIONS(4323), - [anon_sym_COLON] = ACTIONS(7463), + [anon_sym_COLON] = ACTIONS(7466), [anon_sym_LBRACK] = ACTIONS(4323), [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), + [anon_sym_LBRACE] = ACTIONS(5820), [anon_sym_RBRACE] = ACTIONS(4323), [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_COMMA] = ACTIONS(4323), [anon_sym_LT] = ACTIONS(4321), [anon_sym_GT] = ACTIONS(4321), - [anon_sym_where] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5824), [anon_sym_DOT] = ACTIONS(4321), [anon_sym_SEMI] = ACTIONS(4323), [anon_sym_get] = ACTIONS(4321), @@ -465422,490 +461405,1456 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, - [4228] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_EQ] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(5368), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(4350), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4350), - [anon_sym_QMARK_COLON] = ACTIONS(4350), - [anon_sym_AMP_AMP] = ACTIONS(4350), - [anon_sym_PIPE_PIPE] = ACTIONS(4350), - [anon_sym_else] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_PLUS_EQ] = ACTIONS(4350), - [anon_sym_DASH_EQ] = ACTIONS(4350), - [anon_sym_STAR_EQ] = ACTIONS(4350), - [anon_sym_SLASH_EQ] = ACTIONS(4350), - [anon_sym_PERCENT_EQ] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4350), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4350), - [anon_sym_GT_EQ] = ACTIONS(4350), - [anon_sym_BANGin] = ACTIONS(4350), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_BANGis] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(4350), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG_BANG] = ACTIONS(4350), - [anon_sym_suspend] = ACTIONS(4347), - [anon_sym_sealed] = ACTIONS(4347), - [anon_sym_annotation] = ACTIONS(4347), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_override] = ACTIONS(4347), - [anon_sym_lateinit] = ACTIONS(4347), - [anon_sym_public] = ACTIONS(4347), - [anon_sym_private] = ACTIONS(4347), - [anon_sym_internal] = ACTIONS(4347), - [anon_sym_protected] = ACTIONS(4347), - [anon_sym_tailrec] = ACTIONS(4347), - [anon_sym_operator] = ACTIONS(4347), - [anon_sym_infix] = ACTIONS(4347), - [anon_sym_inline] = ACTIONS(4347), - [anon_sym_external] = ACTIONS(4347), - [sym_property_modifier] = ACTIONS(4347), - [anon_sym_abstract] = ACTIONS(4347), - [anon_sym_final] = ACTIONS(4347), - [anon_sym_open] = ACTIONS(4347), - [anon_sym_vararg] = ACTIONS(4347), - [anon_sym_noinline] = ACTIONS(4347), - [anon_sym_crossinline] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4350), + [4213] = { + [sym_function_body] = STATE(3457), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_RPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_while] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), }, - [4229] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4214] = { + [sym_function_body] = STATE(3900), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(7468), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4277), + [sym_label] = ACTIONS(4277), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4277), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + }, + [4215] = { + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(6394), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [4216] = { + [sym_class_body] = STATE(3956), + [sym_type_constraints] = STATE(3721), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(6374), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [4217] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4223), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(7470), + [anon_sym_RPAREN] = ACTIONS(4686), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4686), + [sym_label] = ACTIONS(4686), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_while] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4686), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_suspend] = ACTIONS(4684), + [anon_sym_sealed] = ACTIONS(4684), + [anon_sym_annotation] = ACTIONS(4684), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_override] = ACTIONS(4684), + [anon_sym_lateinit] = ACTIONS(4684), + [anon_sym_public] = ACTIONS(4684), + [anon_sym_private] = ACTIONS(4684), + [anon_sym_internal] = ACTIONS(4684), + [anon_sym_protected] = ACTIONS(4684), + [anon_sym_tailrec] = ACTIONS(4684), + [anon_sym_operator] = ACTIONS(4684), + [anon_sym_infix] = ACTIONS(4684), + [anon_sym_inline] = ACTIONS(4684), + [anon_sym_external] = ACTIONS(4684), + [sym_property_modifier] = ACTIONS(4684), + [anon_sym_abstract] = ACTIONS(4684), + [anon_sym_final] = ACTIONS(4684), + [anon_sym_open] = ACTIONS(4684), + [anon_sym_vararg] = ACTIONS(4684), + [anon_sym_noinline] = ACTIONS(4684), + [anon_sym_crossinline] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), + [sym_multiline_comment] = ACTIONS(3), + }, + [4218] = { + [sym_type_constraints] = STATE(3820), + [sym_enum_class_body] = STATE(3861), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + }, + [4219] = { + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + }, + [4220] = { + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [4221] = { + [sym_class_body] = STATE(3953), + [sym_type_constraints] = STATE(3786), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6370), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [4222] = { + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + }, + [4223] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4140), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(7470), + [anon_sym_RPAREN] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + }, + [4224] = { + [sym_function_body] = STATE(3397), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + }, + [4225] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3194), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3194), - [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3169), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_where] = ACTIONS(3192), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3194), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4230] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4226] = { + [sym_function_body] = STATE(3972), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + }, + [4227] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_RPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3138), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_where] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3147), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4231] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4228] = { + [sym_class_body] = STATE(3546), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7500), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_RPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_while] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + }, + [4229] = { + [sym_function_body] = STATE(3873), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + }, + [4230] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_RPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3123), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_where] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3107), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_while] = ACTIONS(3105), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4232] = { - [sym_type_constraints] = STATE(4316), - [sym_function_body] = STATE(3584), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_RPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_while] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [sym__automatic_semicolon] = ACTIONS(3123), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4233] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(7465), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [sym_label] = ACTIONS(5179), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_PLUS_EQ] = ACTIONS(5179), - [anon_sym_DASH_EQ] = ACTIONS(5179), - [anon_sym_STAR_EQ] = ACTIONS(5179), - [anon_sym_SLASH_EQ] = ACTIONS(5179), - [anon_sym_PERCENT_EQ] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5177), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_suspend] = ACTIONS(5177), - [anon_sym_sealed] = ACTIONS(5177), - [anon_sym_annotation] = ACTIONS(5177), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_override] = ACTIONS(5177), - [anon_sym_lateinit] = ACTIONS(5177), - [anon_sym_public] = ACTIONS(5177), - [anon_sym_private] = ACTIONS(5177), - [anon_sym_internal] = ACTIONS(5177), - [anon_sym_protected] = ACTIONS(5177), - [anon_sym_tailrec] = ACTIONS(5177), - [anon_sym_operator] = ACTIONS(5177), - [anon_sym_infix] = ACTIONS(5177), - [anon_sym_inline] = ACTIONS(5177), - [anon_sym_external] = ACTIONS(5177), - [sym_property_modifier] = ACTIONS(5177), - [anon_sym_abstract] = ACTIONS(5177), - [anon_sym_final] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(5177), - [anon_sym_vararg] = ACTIONS(5177), - [anon_sym_noinline] = ACTIONS(5177), - [anon_sym_crossinline] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5179), - [sym__automatic_semicolon] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), + [4231] = { + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, - [4234] = { - [sym_type_constraints] = STATE(4304), - [sym_function_body] = STATE(4087), - [sym__block] = STATE(4073), + [4232] = { + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), [sym__alpha_identifier] = ACTIONS(4183), [anon_sym_AT] = ACTIONS(4185), [anon_sym_LBRACK] = ACTIONS(4185), [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), [anon_sym_RBRACE] = ACTIONS(4185), [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), [anon_sym_LT] = ACTIONS(4183), [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5812), [anon_sym_DOT] = ACTIONS(4183), [anon_sym_SEMI] = ACTIONS(4185), [anon_sym_get] = ACTIONS(4183), @@ -465968,39808 +462917,21433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, - [4235] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3143), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_while] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4236] = { - [sym__alpha_identifier] = ACTIONS(5171), - [anon_sym_AT] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(7467), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5173), - [anon_sym_get] = ACTIONS(5171), - [anon_sym_set] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [sym_label] = ACTIONS(5173), - [anon_sym_in] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5173), - [anon_sym_QMARK_COLON] = ACTIONS(5173), - [anon_sym_AMP_AMP] = ACTIONS(5173), - [anon_sym_PIPE_PIPE] = ACTIONS(5173), - [anon_sym_else] = ACTIONS(5171), - [anon_sym_COLON_COLON] = ACTIONS(5173), - [anon_sym_PLUS_EQ] = ACTIONS(5173), - [anon_sym_DASH_EQ] = ACTIONS(5173), - [anon_sym_STAR_EQ] = ACTIONS(5173), - [anon_sym_SLASH_EQ] = ACTIONS(5173), - [anon_sym_PERCENT_EQ] = ACTIONS(5173), - [anon_sym_BANG_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), - [anon_sym_LT_EQ] = ACTIONS(5173), - [anon_sym_GT_EQ] = ACTIONS(5173), - [anon_sym_BANGin] = ACTIONS(5173), - [anon_sym_is] = ACTIONS(5171), - [anon_sym_BANGis] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_as_QMARK] = ACTIONS(5173), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_BANG_BANG] = ACTIONS(5173), - [anon_sym_suspend] = ACTIONS(5171), - [anon_sym_sealed] = ACTIONS(5171), - [anon_sym_annotation] = ACTIONS(5171), - [anon_sym_data] = ACTIONS(5171), - [anon_sym_inner] = ACTIONS(5171), - [anon_sym_value] = ACTIONS(5171), - [anon_sym_override] = ACTIONS(5171), - [anon_sym_lateinit] = ACTIONS(5171), - [anon_sym_public] = ACTIONS(5171), - [anon_sym_private] = ACTIONS(5171), - [anon_sym_internal] = ACTIONS(5171), - [anon_sym_protected] = ACTIONS(5171), - [anon_sym_tailrec] = ACTIONS(5171), - [anon_sym_operator] = ACTIONS(5171), - [anon_sym_infix] = ACTIONS(5171), - [anon_sym_inline] = ACTIONS(5171), - [anon_sym_external] = ACTIONS(5171), - [sym_property_modifier] = ACTIONS(5171), - [anon_sym_abstract] = ACTIONS(5171), - [anon_sym_final] = ACTIONS(5171), - [anon_sym_open] = ACTIONS(5171), - [anon_sym_vararg] = ACTIONS(5171), - [anon_sym_noinline] = ACTIONS(5171), - [anon_sym_crossinline] = ACTIONS(5171), - [anon_sym_expect] = ACTIONS(5171), - [anon_sym_actual] = ACTIONS(5171), + [4233] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4258), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5173), - [sym__automatic_semicolon] = ACTIONS(5173), - [sym_safe_nav] = ACTIONS(5173), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), [sym_multiline_comment] = ACTIONS(3), }, - [4237] = { - [sym_type_constraints] = STATE(4312), - [sym_function_body] = STATE(3536), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_while] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [4234] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4258), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(7502), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), [sym_multiline_comment] = ACTIONS(3), }, - [4238] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7469), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_PLUS_EQ] = ACTIONS(4242), - [anon_sym_DASH_EQ] = ACTIONS(4242), - [anon_sym_STAR_EQ] = ACTIONS(4242), - [anon_sym_SLASH_EQ] = ACTIONS(4242), - [anon_sym_PERCENT_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4242), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [4235] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4239] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4239), - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_RBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(7471), - [anon_sym_RPAREN] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4707), - [anon_sym_DASH_GT] = ACTIONS(4707), - [sym_label] = ACTIONS(4707), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_while] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4707), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_suspend] = ACTIONS(4705), - [anon_sym_sealed] = ACTIONS(4705), - [anon_sym_annotation] = ACTIONS(4705), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_override] = ACTIONS(4705), - [anon_sym_lateinit] = ACTIONS(4705), - [anon_sym_public] = ACTIONS(4705), - [anon_sym_private] = ACTIONS(4705), - [anon_sym_internal] = ACTIONS(4705), - [anon_sym_protected] = ACTIONS(4705), - [anon_sym_tailrec] = ACTIONS(4705), - [anon_sym_operator] = ACTIONS(4705), - [anon_sym_infix] = ACTIONS(4705), - [anon_sym_inline] = ACTIONS(4705), - [anon_sym_external] = ACTIONS(4705), - [sym_property_modifier] = ACTIONS(4705), - [anon_sym_abstract] = ACTIONS(4705), - [anon_sym_final] = ACTIONS(4705), - [anon_sym_open] = ACTIONS(4705), - [anon_sym_vararg] = ACTIONS(4705), - [anon_sym_noinline] = ACTIONS(4705), - [anon_sym_crossinline] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), + [4236] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(7452), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), [sym_multiline_comment] = ACTIONS(3), }, - [4240] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(7474), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4355), - [sym_label] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_PLUS_EQ] = ACTIONS(4353), - [anon_sym_DASH_EQ] = ACTIONS(4353), - [anon_sym_STAR_EQ] = ACTIONS(4353), - [anon_sym_SLASH_EQ] = ACTIONS(4353), - [anon_sym_PERCENT_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), + [4237] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4353), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4241] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4238] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3099), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3142), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_where] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3099), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_while] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4242] = { - [sym_type_constraints] = STATE(4340), - [sym_function_body] = STATE(4087), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(7476), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4185), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), + [4239] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4243] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4240] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3146), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_where] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3139), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, - [4244] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4241] = { + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [4242] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3134), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_where] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3103), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), + }, + [4243] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4234), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(7502), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4686), + [sym_label] = ACTIONS(4686), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4686), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_suspend] = ACTIONS(4684), + [anon_sym_sealed] = ACTIONS(4684), + [anon_sym_annotation] = ACTIONS(4684), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_override] = ACTIONS(4684), + [anon_sym_lateinit] = ACTIONS(4684), + [anon_sym_public] = ACTIONS(4684), + [anon_sym_private] = ACTIONS(4684), + [anon_sym_internal] = ACTIONS(4684), + [anon_sym_protected] = ACTIONS(4684), + [anon_sym_tailrec] = ACTIONS(4684), + [anon_sym_operator] = ACTIONS(4684), + [anon_sym_infix] = ACTIONS(4684), + [anon_sym_inline] = ACTIONS(4684), + [anon_sym_external] = ACTIONS(4684), + [sym_property_modifier] = ACTIONS(4684), + [anon_sym_abstract] = ACTIONS(4684), + [anon_sym_final] = ACTIONS(4684), + [anon_sym_open] = ACTIONS(4684), + [anon_sym_vararg] = ACTIONS(4684), + [anon_sym_noinline] = ACTIONS(4684), + [anon_sym_crossinline] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4686), + [sym__automatic_semicolon] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), + [sym_multiline_comment] = ACTIONS(3), + }, + [4244] = { + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4245] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7478), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_PLUS_EQ] = ACTIONS(4928), - [anon_sym_DASH_EQ] = ACTIONS(4928), - [anon_sym_STAR_EQ] = ACTIONS(4928), - [anon_sym_SLASH_EQ] = ACTIONS(4928), - [anon_sym_PERCENT_EQ] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, [4246] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(7480), - [anon_sym_RPAREN] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4350), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_while] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), }, [4247] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(7484), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7478), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_PLUS_EQ] = ACTIONS(4928), - [anon_sym_DASH_EQ] = ACTIONS(4928), - [anon_sym_STAR_EQ] = ACTIONS(4928), - [anon_sym_SLASH_EQ] = ACTIONS(4928), - [anon_sym_PERCENT_EQ] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4248] = { - [sym_type_constraints] = STATE(4362), - [sym_function_body] = STATE(4106), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(7486), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), + [sym_class_body] = STATE(3589), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7504), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_while] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), [sym_multiline_comment] = ACTIONS(3), }, [4249] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7488), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4239), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_while] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4242), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), }, [4250] = { - [sym_type_constraints] = STATE(4349), - [sym_function_body] = STATE(4139), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(7492), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4251] = { - [sym_type_constraints] = STATE(4262), - [sym_function_body] = STATE(4127), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4252] = { - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_RBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_RPAREN] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(7411), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_DASH_GT] = ACTIONS(4437), - [sym_label] = ACTIONS(4437), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_while] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4437), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_suspend] = ACTIONS(4435), - [anon_sym_sealed] = ACTIONS(4435), - [anon_sym_annotation] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_override] = ACTIONS(4435), - [anon_sym_lateinit] = ACTIONS(4435), - [anon_sym_public] = ACTIONS(4435), - [anon_sym_private] = ACTIONS(4435), - [anon_sym_internal] = ACTIONS(4435), - [anon_sym_protected] = ACTIONS(4435), - [anon_sym_tailrec] = ACTIONS(4435), - [anon_sym_operator] = ACTIONS(4435), - [anon_sym_infix] = ACTIONS(4435), - [anon_sym_inline] = ACTIONS(4435), - [anon_sym_external] = ACTIONS(4435), - [sym_property_modifier] = ACTIONS(4435), - [anon_sym_abstract] = ACTIONS(4435), - [anon_sym_final] = ACTIONS(4435), - [anon_sym_open] = ACTIONS(4435), - [anon_sym_vararg] = ACTIONS(4435), - [anon_sym_noinline] = ACTIONS(4435), - [anon_sym_crossinline] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [4253] = { - [sym_type_constraints] = STATE(4288), - [sym_function_body] = STATE(4106), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4254] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3175), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(3090), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(3090), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4255] = { - [sym_function_body] = STATE(3979), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(7494), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_where] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4271), - [sym_label] = ACTIONS(4271), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_suspend] = ACTIONS(4269), - [anon_sym_sealed] = ACTIONS(4269), - [anon_sym_annotation] = ACTIONS(4269), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_override] = ACTIONS(4269), - [anon_sym_lateinit] = ACTIONS(4269), - [anon_sym_public] = ACTIONS(4269), - [anon_sym_private] = ACTIONS(4269), - [anon_sym_internal] = ACTIONS(4269), - [anon_sym_protected] = ACTIONS(4269), - [anon_sym_tailrec] = ACTIONS(4269), - [anon_sym_operator] = ACTIONS(4269), - [anon_sym_infix] = ACTIONS(4269), - [anon_sym_inline] = ACTIONS(4269), - [anon_sym_external] = ACTIONS(4269), - [sym_property_modifier] = ACTIONS(4269), - [anon_sym_abstract] = ACTIONS(4269), - [anon_sym_final] = ACTIONS(4269), - [anon_sym_open] = ACTIONS(4269), - [anon_sym_vararg] = ACTIONS(4269), - [anon_sym_noinline] = ACTIONS(4269), - [anon_sym_crossinline] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4271), - [sym__automatic_semicolon] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4256] = { - [sym_type_constraints] = STATE(3435), - [sym_enum_class_body] = STATE(3500), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(6418), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym_function_body] = STATE(3995), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), }, [4257] = { - [sym_type_constraints] = STATE(4340), - [sym_function_body] = STATE(4087), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4185), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [4258] = { - [sym_class_body] = STATE(4138), - [sym_type_constraints] = STATE(3878), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(6376), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [aux_sym__delegation_specifiers_repeat1] = STATE(4258), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(7506), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4635), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), [sym_multiline_comment] = ACTIONS(3), }, [4259] = { - [sym_type_constraints] = STATE(3879), - [sym_enum_class_body] = STATE(4138), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(6380), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [4260] = { - [sym_class_body] = STATE(4137), - [sym_type_constraints] = STATE(3874), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(7496), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_COMMA] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4277), - [sym_label] = ACTIONS(4277), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4277), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_suspend] = ACTIONS(4275), - [anon_sym_sealed] = ACTIONS(4275), - [anon_sym_annotation] = ACTIONS(4275), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_override] = ACTIONS(4275), - [anon_sym_lateinit] = ACTIONS(4275), - [anon_sym_public] = ACTIONS(4275), - [anon_sym_private] = ACTIONS(4275), - [anon_sym_internal] = ACTIONS(4275), - [anon_sym_protected] = ACTIONS(4275), - [anon_sym_tailrec] = ACTIONS(4275), - [anon_sym_operator] = ACTIONS(4275), - [anon_sym_infix] = ACTIONS(4275), - [anon_sym_inline] = ACTIONS(4275), - [anon_sym_external] = ACTIONS(4275), - [sym_property_modifier] = ACTIONS(4275), - [anon_sym_abstract] = ACTIONS(4275), - [anon_sym_final] = ACTIONS(4275), - [anon_sym_open] = ACTIONS(4275), - [anon_sym_vararg] = ACTIONS(4275), - [anon_sym_noinline] = ACTIONS(4275), - [anon_sym_crossinline] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4261] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7498), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4239), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), }, [4262] = { - [sym_function_body] = STATE(4106), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7517), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), }, [4263] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(7502), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4350), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7519), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), }, [4264] = { - [sym_class_body] = STATE(4123), - [sym_type_constraints] = STATE(3870), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(6368), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7521), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), [sym_multiline_comment] = ACTIONS(3), }, [4265] = { - [sym_class_body] = STATE(4152), - [sym_type_constraints] = STATE(3890), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7506), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4266] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_object] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(7508), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_this] = ACTIONS(4926), - [anon_sym_super] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_if] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7510), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4926), - [anon_sym_throw] = ACTIONS(4926), - [anon_sym_return] = ACTIONS(4926), - [anon_sym_continue] = ACTIONS(4926), - [anon_sym_break] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4928), - [anon_sym_continue_AT] = ACTIONS(4928), - [anon_sym_break_AT] = ACTIONS(4928), - [anon_sym_this_AT] = ACTIONS(4928), - [anon_sym_super_AT] = ACTIONS(4928), - [sym_real_literal] = ACTIONS(4928), - [sym_integer_literal] = ACTIONS(4926), - [sym_hex_literal] = ACTIONS(4928), - [sym_bin_literal] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [anon_sym_SQUOTE] = ACTIONS(4928), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), }, [4267] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(7512), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_this] = ACTIONS(4355), - [anon_sym_super] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4353), - [sym_label] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [anon_sym_if] = ACTIONS(4355), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4355), - [anon_sym_try] = ACTIONS(4355), - [anon_sym_throw] = ACTIONS(4355), - [anon_sym_return] = ACTIONS(4355), - [anon_sym_continue] = ACTIONS(4355), - [anon_sym_break] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4353), - [anon_sym_continue_AT] = ACTIONS(4353), - [anon_sym_break_AT] = ACTIONS(4353), - [anon_sym_this_AT] = ACTIONS(4353), - [anon_sym_super_AT] = ACTIONS(4353), - [sym_real_literal] = ACTIONS(4353), - [sym_integer_literal] = ACTIONS(4355), - [sym_hex_literal] = ACTIONS(4353), - [sym_bin_literal] = ACTIONS(4353), - [anon_sym_true] = ACTIONS(4355), - [anon_sym_false] = ACTIONS(4355), - [anon_sym_SQUOTE] = ACTIONS(4353), - [sym__backtick_identifier] = ACTIONS(4353), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4353), }, [4268] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_object] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_this] = ACTIONS(4926), - [anon_sym_super] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_if] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7510), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4926), - [anon_sym_throw] = ACTIONS(4926), - [anon_sym_return] = ACTIONS(4926), - [anon_sym_continue] = ACTIONS(4926), - [anon_sym_break] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4928), - [anon_sym_continue_AT] = ACTIONS(4928), - [anon_sym_break_AT] = ACTIONS(4928), - [anon_sym_this_AT] = ACTIONS(4928), - [anon_sym_super_AT] = ACTIONS(4928), - [sym_real_literal] = ACTIONS(4928), - [sym_integer_literal] = ACTIONS(4926), - [sym_hex_literal] = ACTIONS(4928), - [sym_bin_literal] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [anon_sym_SQUOTE] = ACTIONS(4928), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7541), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), }, [4269] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7514), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_this] = ACTIONS(4244), - [anon_sym_super] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4244), - [anon_sym_if] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4244), - [anon_sym_try] = ACTIONS(4244), - [anon_sym_throw] = ACTIONS(4244), - [anon_sym_return] = ACTIONS(4244), - [anon_sym_continue] = ACTIONS(4244), - [anon_sym_break] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4242), - [anon_sym_continue_AT] = ACTIONS(4242), - [anon_sym_break_AT] = ACTIONS(4242), - [anon_sym_this_AT] = ACTIONS(4242), - [anon_sym_super_AT] = ACTIONS(4242), - [sym_real_literal] = ACTIONS(4242), - [sym_integer_literal] = ACTIONS(4244), - [sym_hex_literal] = ACTIONS(4242), - [sym_bin_literal] = ACTIONS(4242), - [anon_sym_true] = ACTIONS(4244), - [anon_sym_false] = ACTIONS(4244), - [anon_sym_SQUOTE] = ACTIONS(4242), - [sym__backtick_identifier] = ACTIONS(4242), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4242), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [4270] = { - [sym__alpha_identifier] = ACTIONS(5171), - [anon_sym_AT] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_fun] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(7516), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_object] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5173), - [anon_sym_get] = ACTIONS(5171), - [anon_sym_set] = ACTIONS(5171), - [anon_sym_this] = ACTIONS(5171), - [anon_sym_super] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5173), - [sym_label] = ACTIONS(5171), - [anon_sym_in] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5173), - [anon_sym_QMARK_COLON] = ACTIONS(5173), - [anon_sym_AMP_AMP] = ACTIONS(5173), - [anon_sym_PIPE_PIPE] = ACTIONS(5173), - [anon_sym_null] = ACTIONS(5171), - [anon_sym_if] = ACTIONS(5171), - [anon_sym_else] = ACTIONS(5171), - [anon_sym_when] = ACTIONS(5171), - [anon_sym_try] = ACTIONS(5171), - [anon_sym_throw] = ACTIONS(5171), - [anon_sym_return] = ACTIONS(5171), - [anon_sym_continue] = ACTIONS(5171), - [anon_sym_break] = ACTIONS(5171), - [anon_sym_COLON_COLON] = ACTIONS(5173), - [anon_sym_BANG_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), - [anon_sym_LT_EQ] = ACTIONS(5173), - [anon_sym_GT_EQ] = ACTIONS(5173), - [anon_sym_BANGin] = ACTIONS(5173), - [anon_sym_is] = ACTIONS(5171), - [anon_sym_BANGis] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5173), - [anon_sym_as_QMARK] = ACTIONS(5173), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_BANG_BANG] = ACTIONS(5173), - [anon_sym_data] = ACTIONS(5171), - [anon_sym_inner] = ACTIONS(5171), - [anon_sym_value] = ACTIONS(5171), - [anon_sym_expect] = ACTIONS(5171), - [anon_sym_actual] = ACTIONS(5171), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5173), - [anon_sym_continue_AT] = ACTIONS(5173), - [anon_sym_break_AT] = ACTIONS(5173), - [anon_sym_this_AT] = ACTIONS(5173), - [anon_sym_super_AT] = ACTIONS(5173), - [sym_real_literal] = ACTIONS(5173), - [sym_integer_literal] = ACTIONS(5171), - [sym_hex_literal] = ACTIONS(5173), - [sym_bin_literal] = ACTIONS(5173), - [anon_sym_true] = ACTIONS(5171), - [anon_sym_false] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5173), - [sym__backtick_identifier] = ACTIONS(5173), - [sym__automatic_semicolon] = ACTIONS(5173), - [sym_safe_nav] = ACTIONS(5173), + [sym_class_body] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7543), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5173), }, [4271] = { - [sym_type_constraints] = STATE(4362), - [sym_function_body] = STATE(4106), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4272] = { - [sym_function_body] = STATE(4127), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7545), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7541), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [4273] = { - [sym_type_constraints] = STATE(3891), - [sym_enum_class_body] = STATE(4152), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7518), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4274] = { - [sym_class_body] = STATE(4114), - [sym_type_constraints] = STATE(3893), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(6386), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4275] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_fun] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(7520), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_object] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_this] = ACTIONS(5177), - [anon_sym_super] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5179), - [sym_label] = ACTIONS(5177), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_null] = ACTIONS(5177), - [anon_sym_if] = ACTIONS(5177), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_when] = ACTIONS(5177), - [anon_sym_try] = ACTIONS(5177), - [anon_sym_throw] = ACTIONS(5177), - [anon_sym_return] = ACTIONS(5177), - [anon_sym_continue] = ACTIONS(5177), - [anon_sym_break] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5179), - [anon_sym_continue_AT] = ACTIONS(5179), - [anon_sym_break_AT] = ACTIONS(5179), - [anon_sym_this_AT] = ACTIONS(5179), - [anon_sym_super_AT] = ACTIONS(5179), - [sym_real_literal] = ACTIONS(5179), - [sym_integer_literal] = ACTIONS(5177), - [sym_hex_literal] = ACTIONS(5179), - [sym_bin_literal] = ACTIONS(5179), - [anon_sym_true] = ACTIONS(5177), - [anon_sym_false] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5179), - [sym__backtick_identifier] = ACTIONS(5179), - [sym__automatic_semicolon] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5179), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [4276] = { - [sym_class_body] = STATE(3500), - [sym_type_constraints] = STATE(3439), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(6420), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4277] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(7522), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RPAREN] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(4353), - [sym_label] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_while] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7547), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), [sym_multiline_comment] = ACTIONS(3), }, [4278] = { - [sym_function_body] = STATE(4139), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4279] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_RBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7524), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_DASH_GT] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_while] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4280] = { - [sym__alpha_identifier] = ACTIONS(5171), - [anon_sym_AT] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(7526), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_where] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5173), - [anon_sym_get] = ACTIONS(5171), - [anon_sym_set] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5173), - [anon_sym_DASH_GT] = ACTIONS(5173), - [sym_label] = ACTIONS(5173), - [anon_sym_in] = ACTIONS(5171), - [anon_sym_while] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5173), - [anon_sym_QMARK_COLON] = ACTIONS(5173), - [anon_sym_AMP_AMP] = ACTIONS(5173), - [anon_sym_PIPE_PIPE] = ACTIONS(5173), - [anon_sym_else] = ACTIONS(5171), - [anon_sym_COLON_COLON] = ACTIONS(5173), - [anon_sym_BANG_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), - [anon_sym_LT_EQ] = ACTIONS(5173), - [anon_sym_GT_EQ] = ACTIONS(5173), - [anon_sym_BANGin] = ACTIONS(5173), - [anon_sym_is] = ACTIONS(5171), - [anon_sym_BANGis] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5173), - [anon_sym_as_QMARK] = ACTIONS(5173), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_BANG_BANG] = ACTIONS(5173), - [anon_sym_suspend] = ACTIONS(5171), - [anon_sym_sealed] = ACTIONS(5171), - [anon_sym_annotation] = ACTIONS(5171), - [anon_sym_data] = ACTIONS(5171), - [anon_sym_inner] = ACTIONS(5171), - [anon_sym_value] = ACTIONS(5171), - [anon_sym_override] = ACTIONS(5171), - [anon_sym_lateinit] = ACTIONS(5171), - [anon_sym_public] = ACTIONS(5171), - [anon_sym_private] = ACTIONS(5171), - [anon_sym_internal] = ACTIONS(5171), - [anon_sym_protected] = ACTIONS(5171), - [anon_sym_tailrec] = ACTIONS(5171), - [anon_sym_operator] = ACTIONS(5171), - [anon_sym_infix] = ACTIONS(5171), - [anon_sym_inline] = ACTIONS(5171), - [anon_sym_external] = ACTIONS(5171), - [sym_property_modifier] = ACTIONS(5171), - [anon_sym_abstract] = ACTIONS(5171), - [anon_sym_final] = ACTIONS(5171), - [anon_sym_open] = ACTIONS(5171), - [anon_sym_vararg] = ACTIONS(5171), - [anon_sym_noinline] = ACTIONS(5171), - [anon_sym_crossinline] = ACTIONS(5171), - [anon_sym_expect] = ACTIONS(5171), - [anon_sym_actual] = ACTIONS(5171), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5173), - [sym_safe_nav] = ACTIONS(5173), + [sym_class_body] = STATE(3881), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7549), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), [sym_multiline_comment] = ACTIONS(3), }, [4281] = { - [sym_type_constraints] = STATE(3894), - [sym_enum_class_body] = STATE(4114), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(6388), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4282] = { - [sym_class_body] = STATE(4091), - [sym_type_constraints] = STATE(3905), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7528), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4283] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_RBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(7530), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_where] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_DASH_GT] = ACTIONS(5179), - [sym_label] = ACTIONS(5179), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_while] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_suspend] = ACTIONS(5177), - [anon_sym_sealed] = ACTIONS(5177), - [anon_sym_annotation] = ACTIONS(5177), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_override] = ACTIONS(5177), - [anon_sym_lateinit] = ACTIONS(5177), - [anon_sym_public] = ACTIONS(5177), - [anon_sym_private] = ACTIONS(5177), - [anon_sym_internal] = ACTIONS(5177), - [anon_sym_protected] = ACTIONS(5177), - [anon_sym_tailrec] = ACTIONS(5177), - [anon_sym_operator] = ACTIONS(5177), - [anon_sym_infix] = ACTIONS(5177), - [anon_sym_inline] = ACTIONS(5177), - [anon_sym_external] = ACTIONS(5177), - [sym_property_modifier] = ACTIONS(5177), - [anon_sym_abstract] = ACTIONS(5177), - [anon_sym_final] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(5177), - [anon_sym_vararg] = ACTIONS(5177), - [anon_sym_noinline] = ACTIONS(5177), - [anon_sym_crossinline] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4284] = { - [sym_type_constraints] = STATE(3906), - [sym_enum_class_body] = STATE(4091), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7532), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4285] = { - [sym_class_body] = STATE(3574), - [sym_type_constraints] = STATE(3419), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7534), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4286] = { - [sym_function_body] = STATE(3999), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_COMMA] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_where] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_suspend] = ACTIONS(4518), - [anon_sym_sealed] = ACTIONS(4518), - [anon_sym_annotation] = ACTIONS(4518), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_override] = ACTIONS(4518), - [anon_sym_lateinit] = ACTIONS(4518), - [anon_sym_public] = ACTIONS(4518), - [anon_sym_private] = ACTIONS(4518), - [anon_sym_internal] = ACTIONS(4518), - [anon_sym_protected] = ACTIONS(4518), - [anon_sym_tailrec] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_infix] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym_external] = ACTIONS(4518), - [sym_property_modifier] = ACTIONS(4518), - [anon_sym_abstract] = ACTIONS(4518), - [anon_sym_final] = ACTIONS(4518), - [anon_sym_open] = ACTIONS(4518), - [anon_sym_vararg] = ACTIONS(4518), - [anon_sym_noinline] = ACTIONS(4518), - [anon_sym_crossinline] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4520), - [sym__automatic_semicolon] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7575), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7577), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [4287] = { - [sym_function_body] = STATE(3686), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(7536), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4271), - [sym_label] = ACTIONS(4271), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_while] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_suspend] = ACTIONS(4269), - [anon_sym_sealed] = ACTIONS(4269), - [anon_sym_annotation] = ACTIONS(4269), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_override] = ACTIONS(4269), - [anon_sym_lateinit] = ACTIONS(4269), - [anon_sym_public] = ACTIONS(4269), - [anon_sym_private] = ACTIONS(4269), - [anon_sym_internal] = ACTIONS(4269), - [anon_sym_protected] = ACTIONS(4269), - [anon_sym_tailrec] = ACTIONS(4269), - [anon_sym_operator] = ACTIONS(4269), - [anon_sym_infix] = ACTIONS(4269), - [anon_sym_inline] = ACTIONS(4269), - [anon_sym_external] = ACTIONS(4269), - [sym_property_modifier] = ACTIONS(4269), - [anon_sym_abstract] = ACTIONS(4269), - [anon_sym_final] = ACTIONS(4269), - [anon_sym_open] = ACTIONS(4269), - [anon_sym_vararg] = ACTIONS(4269), - [anon_sym_noinline] = ACTIONS(4269), - [anon_sym_crossinline] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7577), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [4288] = { - [sym_function_body] = STATE(4087), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_COMMA] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_where] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4185), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4289] = { - [sym__alpha_identifier] = ACTIONS(4347), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_fun] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_object] = ACTIONS(4347), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4347), - [anon_sym_set] = ACTIONS(4347), - [anon_sym_this] = ACTIONS(4347), - [anon_sym_super] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4350), - [sym_label] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4347), - [anon_sym_try] = ACTIONS(4347), - [anon_sym_throw] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_COLON_COLON] = ACTIONS(4350), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4350), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_data] = ACTIONS(4347), - [anon_sym_inner] = ACTIONS(4347), - [anon_sym_value] = ACTIONS(4347), - [anon_sym_expect] = ACTIONS(4347), - [anon_sym_actual] = ACTIONS(4347), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4350), - [anon_sym_continue_AT] = ACTIONS(4350), - [anon_sym_break_AT] = ACTIONS(4350), - [anon_sym_this_AT] = ACTIONS(4350), - [anon_sym_super_AT] = ACTIONS(4350), - [sym_real_literal] = ACTIONS(4350), - [sym_integer_literal] = ACTIONS(4347), - [sym_hex_literal] = ACTIONS(4350), - [sym_bin_literal] = ACTIONS(4350), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [anon_sym_SQUOTE] = ACTIONS(4350), - [sym__backtick_identifier] = ACTIONS(4350), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4350), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7579), + [anon_sym_RPAREN] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_while] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), }, [4290] = { - [sym_function_body] = STATE(3502), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(7538), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_RPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [sym_label] = ACTIONS(4341), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_while] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4291] = { - [sym_function_body] = STATE(3969), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_where] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4532), - [sym_label] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4532), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4530), - [anon_sym_sealed] = ACTIONS(4530), - [anon_sym_annotation] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_override] = ACTIONS(4530), - [anon_sym_lateinit] = ACTIONS(4530), - [anon_sym_public] = ACTIONS(4530), - [anon_sym_private] = ACTIONS(4530), - [anon_sym_internal] = ACTIONS(4530), - [anon_sym_protected] = ACTIONS(4530), - [anon_sym_tailrec] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_infix] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym_external] = ACTIONS(4530), - [sym_property_modifier] = ACTIONS(4530), - [anon_sym_abstract] = ACTIONS(4530), - [anon_sym_final] = ACTIONS(4530), - [anon_sym_open] = ACTIONS(4530), - [anon_sym_vararg] = ACTIONS(4530), - [anon_sym_noinline] = ACTIONS(4530), - [anon_sym_crossinline] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7581), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_while] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), [sym_multiline_comment] = ACTIONS(3), }, [4292] = { - [sym_function_body] = STATE(3534), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_COLON] = ACTIONS(7540), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_RPAREN] = ACTIONS(4323), - [anon_sym_LT] = ACTIONS(4321), - [anon_sym_GT] = ACTIONS(4321), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_get] = ACTIONS(4321), - [anon_sym_set] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4323), - [sym_label] = ACTIONS(4323), - [anon_sym_in] = ACTIONS(4321), - [anon_sym_while] = ACTIONS(4321), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_QMARK_COLON] = ACTIONS(4323), - [anon_sym_AMP_AMP] = ACTIONS(4323), - [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_else] = ACTIONS(4321), - [anon_sym_COLON_COLON] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), - [anon_sym_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4323), - [anon_sym_BANGin] = ACTIONS(4323), - [anon_sym_is] = ACTIONS(4321), - [anon_sym_BANGis] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4323), - [anon_sym_as_QMARK] = ACTIONS(4323), - [anon_sym_PLUS_PLUS] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG_BANG] = ACTIONS(4323), - [anon_sym_suspend] = ACTIONS(4321), - [anon_sym_sealed] = ACTIONS(4321), - [anon_sym_annotation] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4321), - [anon_sym_inner] = ACTIONS(4321), - [anon_sym_value] = ACTIONS(4321), - [anon_sym_override] = ACTIONS(4321), - [anon_sym_lateinit] = ACTIONS(4321), - [anon_sym_public] = ACTIONS(4321), - [anon_sym_private] = ACTIONS(4321), - [anon_sym_internal] = ACTIONS(4321), - [anon_sym_protected] = ACTIONS(4321), - [anon_sym_tailrec] = ACTIONS(4321), - [anon_sym_operator] = ACTIONS(4321), - [anon_sym_infix] = ACTIONS(4321), - [anon_sym_inline] = ACTIONS(4321), - [anon_sym_external] = ACTIONS(4321), - [sym_property_modifier] = ACTIONS(4321), - [anon_sym_abstract] = ACTIONS(4321), - [anon_sym_final] = ACTIONS(4321), - [anon_sym_open] = ACTIONS(4321), - [anon_sym_vararg] = ACTIONS(4321), - [anon_sym_noinline] = ACTIONS(4321), - [anon_sym_crossinline] = ACTIONS(4321), - [anon_sym_expect] = ACTIONS(4321), - [anon_sym_actual] = ACTIONS(4321), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7583), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4293] = { - [sym_type_constraints] = STATE(3416), - [sym_enum_class_body] = STATE(3574), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7542), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7583), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4294] = { - [sym_type_constraints] = STATE(4361), - [sym_function_body] = STATE(4049), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7585), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), }, [4295] = { - [sym__alpha_identifier] = ACTIONS(4236), - [anon_sym_AT] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_fun] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_object] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4236), - [anon_sym_set] = ACTIONS(4236), - [anon_sym_this] = ACTIONS(4236), - [anon_sym_super] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4239), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_throw] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4239), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4236), - [anon_sym_inner] = ACTIONS(4236), - [anon_sym_value] = ACTIONS(4236), - [anon_sym_expect] = ACTIONS(4236), - [anon_sym_actual] = ACTIONS(4236), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7583), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4239), - [anon_sym_continue_AT] = ACTIONS(4239), - [anon_sym_break_AT] = ACTIONS(4239), - [anon_sym_this_AT] = ACTIONS(4239), - [anon_sym_super_AT] = ACTIONS(4239), - [sym_real_literal] = ACTIONS(4239), - [sym_integer_literal] = ACTIONS(4236), - [sym_hex_literal] = ACTIONS(4239), - [sym_bin_literal] = ACTIONS(4239), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [anon_sym_SQUOTE] = ACTIONS(4239), - [sym__backtick_identifier] = ACTIONS(4239), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4239), }, [4296] = { - [sym_type_constraints] = STATE(4366), - [sym_function_body] = STATE(4037), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7587), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), [sym_multiline_comment] = ACTIONS(3), }, [4297] = { - [sym__type] = STATE(9603), - [sym__type_reference] = STATE(8493), - [sym_not_nullable_type] = STATE(9603), - [sym_nullable_type] = STATE(9603), - [sym_user_type] = STATE(8597), - [sym__simple_user_type] = STATE(8498), - [sym_type_projection] = STATE(9277), - [sym_type_projection_modifiers] = STATE(6188), - [sym__type_projection_modifier] = STATE(7454), - [sym_function_type] = STATE(9603), - [sym_function_type_parameters] = STATE(10100), - [sym_parenthesized_type] = STATE(8493), - [sym_parenthesized_user_type] = STATE(10099), - [sym_type_modifiers] = STATE(6633), - [sym__type_modifier] = STATE(7464), - [sym_variance_modifier] = STATE(7454), - [sym_annotation] = STATE(7464), - [sym__single_annotation] = STATE(8094), - [sym__multi_annotation] = STATE(8094), - [sym_simple_identifier] = STATE(8161), - [sym__lexical_identifier] = STATE(6406), - [aux_sym_type_projection_modifiers_repeat1] = STATE(7454), - [aux_sym_type_modifiers_repeat1] = STATE(7464), - [sym__alpha_identifier] = ACTIONS(7544), - [anon_sym_AT] = ACTIONS(7547), - [anon_sym_LBRACK] = ACTIONS(7550), - [anon_sym_fun] = ACTIONS(7552), - [anon_sym_LBRACE] = ACTIONS(7550), - [anon_sym_LPAREN] = ACTIONS(7554), - [anon_sym_object] = ACTIONS(7552), - [anon_sym_get] = ACTIONS(7557), - [anon_sym_set] = ACTIONS(7557), - [anon_sym_this] = ACTIONS(7552), - [anon_sym_super] = ACTIONS(7552), - [anon_sym_dynamic] = ACTIONS(7560), - [anon_sym_STAR] = ACTIONS(7562), - [sym_label] = ACTIONS(7552), - [anon_sym_in] = ACTIONS(7565), - [anon_sym_null] = ACTIONS(7552), - [anon_sym_if] = ACTIONS(7552), - [anon_sym_when] = ACTIONS(7552), - [anon_sym_try] = ACTIONS(7552), - [anon_sym_throw] = ACTIONS(7552), - [anon_sym_return] = ACTIONS(7552), - [anon_sym_continue] = ACTIONS(7552), - [anon_sym_break] = ACTIONS(7552), - [anon_sym_COLON_COLON] = ACTIONS(7550), - [anon_sym_PLUS] = ACTIONS(7552), - [anon_sym_DASH] = ACTIONS(7552), - [anon_sym_PLUS_PLUS] = ACTIONS(7550), - [anon_sym_DASH_DASH] = ACTIONS(7550), - [anon_sym_BANG] = ACTIONS(7550), - [anon_sym_suspend] = ACTIONS(7567), - [anon_sym_data] = ACTIONS(7557), - [anon_sym_inner] = ACTIONS(7557), - [anon_sym_value] = ACTIONS(7557), - [anon_sym_out] = ACTIONS(7565), - [anon_sym_expect] = ACTIONS(7557), - [anon_sym_actual] = ACTIONS(7557), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7550), - [anon_sym_continue_AT] = ACTIONS(7550), - [anon_sym_break_AT] = ACTIONS(7550), - [anon_sym_this_AT] = ACTIONS(7550), - [anon_sym_super_AT] = ACTIONS(7550), - [sym_real_literal] = ACTIONS(7550), - [sym_integer_literal] = ACTIONS(7552), - [sym_hex_literal] = ACTIONS(7550), - [sym_bin_literal] = ACTIONS(7550), - [anon_sym_true] = ACTIONS(7552), - [anon_sym_false] = ACTIONS(7552), - [anon_sym_SQUOTE] = ACTIONS(7550), - [sym__backtick_identifier] = ACTIONS(7569), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7550), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), }, [4298] = { - [sym_type_constraints] = STATE(3408), - [sym_enum_class_body] = STATE(3597), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(6400), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4299] = { - [sym_class_body] = STATE(3497), - [sym_type_constraints] = STATE(3443), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(7572), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4277), - [sym_label] = ACTIONS(4277), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_while] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4277), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_suspend] = ACTIONS(4275), - [anon_sym_sealed] = ACTIONS(4275), - [anon_sym_annotation] = ACTIONS(4275), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_override] = ACTIONS(4275), - [anon_sym_lateinit] = ACTIONS(4275), - [anon_sym_public] = ACTIONS(4275), - [anon_sym_private] = ACTIONS(4275), - [anon_sym_internal] = ACTIONS(4275), - [anon_sym_protected] = ACTIONS(4275), - [anon_sym_tailrec] = ACTIONS(4275), - [anon_sym_operator] = ACTIONS(4275), - [anon_sym_infix] = ACTIONS(4275), - [anon_sym_inline] = ACTIONS(4275), - [anon_sym_external] = ACTIONS(4275), - [sym_property_modifier] = ACTIONS(4275), - [anon_sym_abstract] = ACTIONS(4275), - [anon_sym_final] = ACTIONS(4275), - [anon_sym_open] = ACTIONS(4275), - [anon_sym_vararg] = ACTIONS(4275), - [anon_sym_noinline] = ACTIONS(4275), - [anon_sym_crossinline] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7583), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4300] = { - [sym_type_constraints] = STATE(4368), - [sym_function_body] = STATE(4127), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7583), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4301] = { - [sym_function_body] = STATE(3960), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [sym_label] = ACTIONS(4341), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7583), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4302] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_RBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_COMMA] = ACTIONS(4928), - [anon_sym_RPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [anon_sym_DASH_GT] = ACTIONS(4928), - [sym_label] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_while] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7574), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7583), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4303] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_RBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_COMMA] = ACTIONS(4928), - [anon_sym_RPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(7576), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [anon_sym_DASH_GT] = ACTIONS(4928), - [sym_label] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_while] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7574), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4304] = { - [sym_function_body] = STATE(4049), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4305] = { - [sym_class_body] = STATE(3597), - [sym_type_constraints] = STATE(3409), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(6402), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4306] = { - [sym_type_constraints] = STATE(3392), - [sym_enum_class_body] = STATE(3652), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7578), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_RPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_while] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4307] = { - [sym_function_body] = STATE(4037), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4308] = { - [sym_class_body] = STATE(3652), - [sym_type_constraints] = STATE(3394), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7580), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_RPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_while] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8995), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7589), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4309] = { - [sym_function_body] = STATE(3966), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(7405), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_where] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4455), - [sym_label] = ACTIONS(4455), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4455), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_suspend] = ACTIONS(4453), - [anon_sym_sealed] = ACTIONS(4453), - [anon_sym_annotation] = ACTIONS(4453), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4453), - [anon_sym_lateinit] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_internal] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_tailrec] = ACTIONS(4453), - [anon_sym_operator] = ACTIONS(4453), - [anon_sym_infix] = ACTIONS(4453), - [anon_sym_inline] = ACTIONS(4453), - [anon_sym_external] = ACTIONS(4453), - [sym_property_modifier] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_open] = ACTIONS(4453), - [anon_sym_vararg] = ACTIONS(4453), - [anon_sym_noinline] = ACTIONS(4453), - [anon_sym_crossinline] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4455), - [sym__automatic_semicolon] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(9046), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7593), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4310] = { - [sym_class_body] = STATE(3466), - [sym_type_constraints] = STATE(3357), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(6458), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(9034), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7595), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4311] = { - [sym_function_body] = STATE(3582), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_RPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7597), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), [sym_multiline_comment] = ACTIONS(3), }, [4312] = { - [sym_function_body] = STATE(3520), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4455), - [sym_label] = ACTIONS(4455), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_while] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4455), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_suspend] = ACTIONS(4453), - [anon_sym_sealed] = ACTIONS(4453), - [anon_sym_annotation] = ACTIONS(4453), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4453), - [anon_sym_lateinit] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_internal] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_tailrec] = ACTIONS(4453), - [anon_sym_operator] = ACTIONS(4453), - [anon_sym_infix] = ACTIONS(4453), - [anon_sym_inline] = ACTIONS(4453), - [anon_sym_external] = ACTIONS(4453), - [sym_property_modifier] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_open] = ACTIONS(4453), - [anon_sym_vararg] = ACTIONS(4453), - [anon_sym_noinline] = ACTIONS(4453), - [anon_sym_crossinline] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8924), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7599), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4313] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4315), - [sym__alpha_identifier] = ACTIONS(4671), - [anon_sym_AT] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4673), - [anon_sym_as] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_RBRACE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(7582), - [anon_sym_RPAREN] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4671), - [anon_sym_where] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_get] = ACTIONS(4671), - [anon_sym_set] = ACTIONS(4671), - [anon_sym_STAR] = ACTIONS(4673), - [sym_label] = ACTIONS(4673), - [anon_sym_in] = ACTIONS(4671), - [anon_sym_while] = ACTIONS(4671), - [anon_sym_DOT_DOT] = ACTIONS(4673), - [anon_sym_QMARK_COLON] = ACTIONS(4673), - [anon_sym_AMP_AMP] = ACTIONS(4673), - [anon_sym_PIPE_PIPE] = ACTIONS(4673), - [anon_sym_else] = ACTIONS(4671), - [anon_sym_COLON_COLON] = ACTIONS(4673), - [anon_sym_BANG_EQ] = ACTIONS(4671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4673), - [anon_sym_EQ_EQ] = ACTIONS(4671), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4673), - [anon_sym_LT_EQ] = ACTIONS(4673), - [anon_sym_GT_EQ] = ACTIONS(4673), - [anon_sym_BANGin] = ACTIONS(4673), - [anon_sym_is] = ACTIONS(4671), - [anon_sym_BANGis] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4671), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4671), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_as_QMARK] = ACTIONS(4673), - [anon_sym_PLUS_PLUS] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4673), - [anon_sym_BANG_BANG] = ACTIONS(4673), - [anon_sym_suspend] = ACTIONS(4671), - [anon_sym_sealed] = ACTIONS(4671), - [anon_sym_annotation] = ACTIONS(4671), - [anon_sym_data] = ACTIONS(4671), - [anon_sym_inner] = ACTIONS(4671), - [anon_sym_value] = ACTIONS(4671), - [anon_sym_override] = ACTIONS(4671), - [anon_sym_lateinit] = ACTIONS(4671), - [anon_sym_public] = ACTIONS(4671), - [anon_sym_private] = ACTIONS(4671), - [anon_sym_internal] = ACTIONS(4671), - [anon_sym_protected] = ACTIONS(4671), - [anon_sym_tailrec] = ACTIONS(4671), - [anon_sym_operator] = ACTIONS(4671), - [anon_sym_infix] = ACTIONS(4671), - [anon_sym_inline] = ACTIONS(4671), - [anon_sym_external] = ACTIONS(4671), - [sym_property_modifier] = ACTIONS(4671), - [anon_sym_abstract] = ACTIONS(4671), - [anon_sym_final] = ACTIONS(4671), - [anon_sym_open] = ACTIONS(4671), - [anon_sym_vararg] = ACTIONS(4671), - [anon_sym_noinline] = ACTIONS(4671), - [anon_sym_crossinline] = ACTIONS(4671), - [anon_sym_expect] = ACTIONS(4671), - [anon_sym_actual] = ACTIONS(4671), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4673), - [sym_safe_nav] = ACTIONS(4673), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8956), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7601), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4314] = { - [sym_function_body] = STATE(3960), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(7584), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [sym_label] = ACTIONS(4341), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8853), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7603), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4315] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4239), - [sym__alpha_identifier] = ACTIONS(4740), - [anon_sym_AT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(7582), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_where] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4740), - [anon_sym_set] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4742), - [sym_label] = ACTIONS(4742), - [anon_sym_in] = ACTIONS(4740), - [anon_sym_while] = ACTIONS(4740), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [anon_sym_QMARK_COLON] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_COLON_COLON] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT_EQ] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_BANGin] = ACTIONS(4742), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_BANGis] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4742), - [anon_sym_as_QMARK] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4742), - [anon_sym_BANG_BANG] = ACTIONS(4742), - [anon_sym_suspend] = ACTIONS(4740), - [anon_sym_sealed] = ACTIONS(4740), - [anon_sym_annotation] = ACTIONS(4740), - [anon_sym_data] = ACTIONS(4740), - [anon_sym_inner] = ACTIONS(4740), - [anon_sym_value] = ACTIONS(4740), - [anon_sym_override] = ACTIONS(4740), - [anon_sym_lateinit] = ACTIONS(4740), - [anon_sym_public] = ACTIONS(4740), - [anon_sym_private] = ACTIONS(4740), - [anon_sym_internal] = ACTIONS(4740), - [anon_sym_protected] = ACTIONS(4740), - [anon_sym_tailrec] = ACTIONS(4740), - [anon_sym_operator] = ACTIONS(4740), - [anon_sym_infix] = ACTIONS(4740), - [anon_sym_inline] = ACTIONS(4740), - [anon_sym_external] = ACTIONS(4740), - [sym_property_modifier] = ACTIONS(4740), - [anon_sym_abstract] = ACTIONS(4740), - [anon_sym_final] = ACTIONS(4740), - [anon_sym_open] = ACTIONS(4740), - [anon_sym_vararg] = ACTIONS(4740), - [anon_sym_noinline] = ACTIONS(4740), - [anon_sym_crossinline] = ACTIONS(4740), - [anon_sym_expect] = ACTIONS(4740), - [anon_sym_actual] = ACTIONS(4740), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7605), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), [sym_multiline_comment] = ACTIONS(3), }, [4316] = { - [sym_function_body] = STATE(3608), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8849), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7607), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4317] = { - [sym_function_body] = STATE(4010), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_COLON] = ACTIONS(7586), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_LT] = ACTIONS(4321), - [anon_sym_GT] = ACTIONS(4321), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_get] = ACTIONS(4321), - [anon_sym_set] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4323), - [sym_label] = ACTIONS(4323), - [anon_sym_in] = ACTIONS(4321), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_QMARK_COLON] = ACTIONS(4323), - [anon_sym_AMP_AMP] = ACTIONS(4323), - [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_else] = ACTIONS(4321), - [anon_sym_COLON_COLON] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), - [anon_sym_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4323), - [anon_sym_BANGin] = ACTIONS(4323), - [anon_sym_is] = ACTIONS(4321), - [anon_sym_BANGis] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4323), - [anon_sym_as_QMARK] = ACTIONS(4323), - [anon_sym_PLUS_PLUS] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG_BANG] = ACTIONS(4323), - [anon_sym_suspend] = ACTIONS(4321), - [anon_sym_sealed] = ACTIONS(4321), - [anon_sym_annotation] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4321), - [anon_sym_inner] = ACTIONS(4321), - [anon_sym_value] = ACTIONS(4321), - [anon_sym_override] = ACTIONS(4321), - [anon_sym_lateinit] = ACTIONS(4321), - [anon_sym_public] = ACTIONS(4321), - [anon_sym_private] = ACTIONS(4321), - [anon_sym_internal] = ACTIONS(4321), - [anon_sym_protected] = ACTIONS(4321), - [anon_sym_tailrec] = ACTIONS(4321), - [anon_sym_operator] = ACTIONS(4321), - [anon_sym_infix] = ACTIONS(4321), - [anon_sym_inline] = ACTIONS(4321), - [anon_sym_external] = ACTIONS(4321), - [sym_property_modifier] = ACTIONS(4321), - [anon_sym_abstract] = ACTIONS(4321), - [anon_sym_final] = ACTIONS(4321), - [anon_sym_open] = ACTIONS(4321), - [anon_sym_vararg] = ACTIONS(4321), - [anon_sym_noinline] = ACTIONS(4321), - [anon_sym_crossinline] = ACTIONS(4321), - [anon_sym_expect] = ACTIONS(4321), - [anon_sym_actual] = ACTIONS(4321), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4323), - [sym__automatic_semicolon] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7609), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), }, [4318] = { - [sym_function_body] = STATE(3606), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_RPAREN] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4532), - [sym_label] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_while] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4532), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4530), - [anon_sym_sealed] = ACTIONS(4530), - [anon_sym_annotation] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_override] = ACTIONS(4530), - [anon_sym_lateinit] = ACTIONS(4530), - [anon_sym_public] = ACTIONS(4530), - [anon_sym_private] = ACTIONS(4530), - [anon_sym_internal] = ACTIONS(4530), - [anon_sym_protected] = ACTIONS(4530), - [anon_sym_tailrec] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_infix] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym_external] = ACTIONS(4530), - [sym_property_modifier] = ACTIONS(4530), - [anon_sym_abstract] = ACTIONS(4530), - [anon_sym_final] = ACTIONS(4530), - [anon_sym_open] = ACTIONS(4530), - [anon_sym_vararg] = ACTIONS(4530), - [anon_sym_noinline] = ACTIONS(4530), - [anon_sym_crossinline] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7613), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [4319] = { - [sym_class_body] = STATE(4138), - [sym_type_constraints] = STATE(3878), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(6470), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7613), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [4320] = { - [sym_class_body] = STATE(4123), - [sym_type_constraints] = STATE(3870), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(6486), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(9082), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7615), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4321] = { - [sym_class_body] = STATE(4091), - [sym_type_constraints] = STATE(3905), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7588), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8930), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7617), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4322] = { - [sym_class_body] = STATE(4152), - [sym_type_constraints] = STATE(3890), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7590), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7619), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), [sym_multiline_comment] = ACTIONS(3), }, [4323] = { - [sym_type_constraints] = STATE(3894), - [sym_enum_class_body] = STATE(4114), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(6512), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8813), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7621), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4324] = { - [sym_function_body] = STATE(3979), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4269), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(7592), - [anon_sym_LBRACK] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_get] = ACTIONS(4269), - [anon_sym_set] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4271), - [sym_label] = ACTIONS(4271), - [anon_sym_in] = ACTIONS(4269), - [anon_sym_DOT_DOT] = ACTIONS(4271), - [anon_sym_QMARK_COLON] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_else] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4271), - [anon_sym_BANG_EQ] = ACTIONS(4269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), - [anon_sym_EQ_EQ] = ACTIONS(4269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_BANGin] = ACTIONS(4271), - [anon_sym_is] = ACTIONS(4269), - [anon_sym_BANGis] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_as_QMARK] = ACTIONS(4271), - [anon_sym_PLUS_PLUS] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4271), - [anon_sym_BANG_BANG] = ACTIONS(4271), - [anon_sym_suspend] = ACTIONS(4269), - [anon_sym_sealed] = ACTIONS(4269), - [anon_sym_annotation] = ACTIONS(4269), - [anon_sym_data] = ACTIONS(4269), - [anon_sym_inner] = ACTIONS(4269), - [anon_sym_value] = ACTIONS(4269), - [anon_sym_override] = ACTIONS(4269), - [anon_sym_lateinit] = ACTIONS(4269), - [anon_sym_public] = ACTIONS(4269), - [anon_sym_private] = ACTIONS(4269), - [anon_sym_internal] = ACTIONS(4269), - [anon_sym_protected] = ACTIONS(4269), - [anon_sym_tailrec] = ACTIONS(4269), - [anon_sym_operator] = ACTIONS(4269), - [anon_sym_infix] = ACTIONS(4269), - [anon_sym_inline] = ACTIONS(4269), - [anon_sym_external] = ACTIONS(4269), - [sym_property_modifier] = ACTIONS(4269), - [anon_sym_abstract] = ACTIONS(4269), - [anon_sym_final] = ACTIONS(4269), - [anon_sym_open] = ACTIONS(4269), - [anon_sym_vararg] = ACTIONS(4269), - [anon_sym_noinline] = ACTIONS(4269), - [anon_sym_crossinline] = ACTIONS(4269), - [anon_sym_expect] = ACTIONS(4269), - [anon_sym_actual] = ACTIONS(4269), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4271), - [sym__automatic_semicolon] = ACTIONS(4271), - [sym_safe_nav] = ACTIONS(4271), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8843), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7623), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4325] = { - [sym_function_body] = STATE(3502), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_RPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [sym_label] = ACTIONS(4341), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_while] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8821), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7625), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4326] = { - [sym_function_body] = STATE(3584), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_RPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_while] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7635), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4327] = { - [sym_function_body] = STATE(3667), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_RPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4185), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_while] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7663), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [4328] = { - [sym_type_constraints] = STATE(3891), - [sym_enum_class_body] = STATE(4152), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7594), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7665), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4329] = { - [sym_type_constraints] = STATE(3879), - [sym_enum_class_body] = STATE(4138), - [sym__alpha_identifier] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(6492), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_as] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_GT] = ACTIONS(3292), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3296), - [sym_label] = ACTIONS(3296), - [anon_sym_in] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_QMARK_COLON] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_BANGin] = ACTIONS(3296), - [anon_sym_is] = ACTIONS(3292), - [anon_sym_BANGis] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_as_QMARK] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_BANG_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(3292), - [anon_sym_sealed] = ACTIONS(3292), - [anon_sym_annotation] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3292), - [anon_sym_inner] = ACTIONS(3292), - [anon_sym_value] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_lateinit] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_internal] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_tailrec] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_infix] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym_external] = ACTIONS(3292), - [sym_property_modifier] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_final] = ACTIONS(3292), - [anon_sym_open] = ACTIONS(3292), - [anon_sym_vararg] = ACTIONS(3292), - [anon_sym_noinline] = ACTIONS(3292), - [anon_sym_crossinline] = ACTIONS(3292), - [anon_sym_expect] = ACTIONS(3292), - [anon_sym_actual] = ACTIONS(3292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3296), - [sym__automatic_semicolon] = ACTIONS(3296), - [sym_safe_nav] = ACTIONS(3296), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4328), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7667), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4330] = { - [sym_type_constraints] = STATE(3906), - [sym_enum_class_body] = STATE(4091), - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(7596), - [anon_sym_LBRACK] = ACTIONS(4283), - [anon_sym_as] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(5850), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(4281), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_DOT_DOT] = ACTIONS(4283), - [anon_sym_QMARK_COLON] = ACTIONS(4283), - [anon_sym_AMP_AMP] = ACTIONS(4283), - [anon_sym_PIPE_PIPE] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4281), - [anon_sym_COLON_COLON] = ACTIONS(4283), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), - [anon_sym_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_EQ] = ACTIONS(4283), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_is] = ACTIONS(4281), - [anon_sym_BANGis] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_as_QMARK] = ACTIONS(4283), - [anon_sym_PLUS_PLUS] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4283), - [anon_sym_suspend] = ACTIONS(4281), - [anon_sym_sealed] = ACTIONS(4281), - [anon_sym_annotation] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4281), - [anon_sym_inner] = ACTIONS(4281), - [anon_sym_value] = ACTIONS(4281), - [anon_sym_override] = ACTIONS(4281), - [anon_sym_lateinit] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(4281), - [anon_sym_private] = ACTIONS(4281), - [anon_sym_internal] = ACTIONS(4281), - [anon_sym_protected] = ACTIONS(4281), - [anon_sym_tailrec] = ACTIONS(4281), - [anon_sym_operator] = ACTIONS(4281), - [anon_sym_infix] = ACTIONS(4281), - [anon_sym_inline] = ACTIONS(4281), - [anon_sym_external] = ACTIONS(4281), - [sym_property_modifier] = ACTIONS(4281), - [anon_sym_abstract] = ACTIONS(4281), - [anon_sym_final] = ACTIONS(4281), - [anon_sym_open] = ACTIONS(4281), - [anon_sym_vararg] = ACTIONS(4281), - [anon_sym_noinline] = ACTIONS(4281), - [anon_sym_crossinline] = ACTIONS(4281), - [anon_sym_expect] = ACTIONS(4281), - [anon_sym_actual] = ACTIONS(4281), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4348), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7669), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4283), - [sym__automatic_semicolon] = ACTIONS(4283), - [sym_safe_nav] = ACTIONS(4283), [sym_multiline_comment] = ACTIONS(3), }, [4331] = { - [sym_function_body] = STATE(3554), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_RPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7667), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4332] = { - [sym_class_body] = STATE(4114), - [sym_type_constraints] = STATE(3893), - [sym__alpha_identifier] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(6520), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(3288), - [anon_sym_QMARK_COLON] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3288), - [anon_sym_BANGin] = ACTIONS(3288), - [anon_sym_is] = ACTIONS(3284), - [anon_sym_BANGis] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3284), - [anon_sym_sealed] = ACTIONS(3284), - [anon_sym_annotation] = ACTIONS(3284), - [anon_sym_data] = ACTIONS(3284), - [anon_sym_inner] = ACTIONS(3284), - [anon_sym_value] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_lateinit] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_internal] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_tailrec] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_infix] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_external] = ACTIONS(3284), - [sym_property_modifier] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_vararg] = ACTIONS(3284), - [anon_sym_noinline] = ACTIONS(3284), - [anon_sym_crossinline] = ACTIONS(3284), - [anon_sym_expect] = ACTIONS(3284), - [anon_sym_actual] = ACTIONS(3284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3288), - [sym__automatic_semicolon] = ACTIONS(3288), - [sym_safe_nav] = ACTIONS(3288), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4331), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7671), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4333] = { - [sym_class_body] = STATE(4105), - [sym__alpha_identifier] = ACTIONS(4443), - [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(7598), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_as] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4443), - [anon_sym_GT] = ACTIONS(4443), - [anon_sym_where] = ACTIONS(4443), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4445), - [anon_sym_get] = ACTIONS(4443), - [anon_sym_set] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4445), - [sym_label] = ACTIONS(4445), - [anon_sym_in] = ACTIONS(4443), - [anon_sym_DOT_DOT] = ACTIONS(4445), - [anon_sym_QMARK_COLON] = ACTIONS(4445), - [anon_sym_AMP_AMP] = ACTIONS(4445), - [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_else] = ACTIONS(4443), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_BANG_EQ] = ACTIONS(4443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), - [anon_sym_EQ_EQ] = ACTIONS(4443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), - [anon_sym_LT_EQ] = ACTIONS(4445), - [anon_sym_GT_EQ] = ACTIONS(4445), - [anon_sym_BANGin] = ACTIONS(4445), - [anon_sym_is] = ACTIONS(4443), - [anon_sym_BANGis] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_SLASH] = ACTIONS(4443), - [anon_sym_PERCENT] = ACTIONS(4445), - [anon_sym_as_QMARK] = ACTIONS(4445), - [anon_sym_PLUS_PLUS] = ACTIONS(4445), - [anon_sym_DASH_DASH] = ACTIONS(4445), - [anon_sym_BANG_BANG] = ACTIONS(4445), - [anon_sym_suspend] = ACTIONS(4443), - [anon_sym_sealed] = ACTIONS(4443), - [anon_sym_annotation] = ACTIONS(4443), - [anon_sym_data] = ACTIONS(4443), - [anon_sym_inner] = ACTIONS(4443), - [anon_sym_value] = ACTIONS(4443), - [anon_sym_override] = ACTIONS(4443), - [anon_sym_lateinit] = ACTIONS(4443), - [anon_sym_public] = ACTIONS(4443), - [anon_sym_private] = ACTIONS(4443), - [anon_sym_internal] = ACTIONS(4443), - [anon_sym_protected] = ACTIONS(4443), - [anon_sym_tailrec] = ACTIONS(4443), - [anon_sym_operator] = ACTIONS(4443), - [anon_sym_infix] = ACTIONS(4443), - [anon_sym_inline] = ACTIONS(4443), - [anon_sym_external] = ACTIONS(4443), - [sym_property_modifier] = ACTIONS(4443), - [anon_sym_abstract] = ACTIONS(4443), - [anon_sym_final] = ACTIONS(4443), - [anon_sym_open] = ACTIONS(4443), - [anon_sym_vararg] = ACTIONS(4443), - [anon_sym_noinline] = ACTIONS(4443), - [anon_sym_crossinline] = ACTIONS(4443), - [anon_sym_expect] = ACTIONS(4443), - [anon_sym_actual] = ACTIONS(4443), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4445), - [sym__automatic_semicolon] = ACTIONS(4445), - [sym_safe_nav] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4334] = { - [sym_function_body] = STATE(3676), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_RPAREN] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_while] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_suspend] = ACTIONS(4518), - [anon_sym_sealed] = ACTIONS(4518), - [anon_sym_annotation] = ACTIONS(4518), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_override] = ACTIONS(4518), - [anon_sym_lateinit] = ACTIONS(4518), - [anon_sym_public] = ACTIONS(4518), - [anon_sym_private] = ACTIONS(4518), - [anon_sym_internal] = ACTIONS(4518), - [anon_sym_protected] = ACTIONS(4518), - [anon_sym_tailrec] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_infix] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym_external] = ACTIONS(4518), - [sym_property_modifier] = ACTIONS(4518), - [anon_sym_abstract] = ACTIONS(4518), - [anon_sym_final] = ACTIONS(4518), - [anon_sym_open] = ACTIONS(4518), - [anon_sym_vararg] = ACTIONS(4518), - [anon_sym_noinline] = ACTIONS(4518), - [anon_sym_crossinline] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7673), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7673), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4335] = { - [sym_class_body] = STATE(4132), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(7600), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7675), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4336] = { - [sym_function_body] = STATE(3536), - [sym__block] = STATE(3620), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACE] = ACTIONS(6632), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_while] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7677), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4337] = { - [sym_class_body] = STATE(4137), - [sym_type_constraints] = STATE(3874), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(7602), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_where] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4275), - [anon_sym_set] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4277), - [sym_label] = ACTIONS(4277), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_QMARK_COLON] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_else] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT_EQ] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4277), - [anon_sym_BANGin] = ACTIONS(4277), - [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4277), - [anon_sym_as_QMARK] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_BANG_BANG] = ACTIONS(4277), - [anon_sym_suspend] = ACTIONS(4275), - [anon_sym_sealed] = ACTIONS(4275), - [anon_sym_annotation] = ACTIONS(4275), - [anon_sym_data] = ACTIONS(4275), - [anon_sym_inner] = ACTIONS(4275), - [anon_sym_value] = ACTIONS(4275), - [anon_sym_override] = ACTIONS(4275), - [anon_sym_lateinit] = ACTIONS(4275), - [anon_sym_public] = ACTIONS(4275), - [anon_sym_private] = ACTIONS(4275), - [anon_sym_internal] = ACTIONS(4275), - [anon_sym_protected] = ACTIONS(4275), - [anon_sym_tailrec] = ACTIONS(4275), - [anon_sym_operator] = ACTIONS(4275), - [anon_sym_infix] = ACTIONS(4275), - [anon_sym_inline] = ACTIONS(4275), - [anon_sym_external] = ACTIONS(4275), - [sym_property_modifier] = ACTIONS(4275), - [anon_sym_abstract] = ACTIONS(4275), - [anon_sym_final] = ACTIONS(4275), - [anon_sym_open] = ACTIONS(4275), - [anon_sym_vararg] = ACTIONS(4275), - [anon_sym_noinline] = ACTIONS(4275), - [anon_sym_crossinline] = ACTIONS(4275), - [anon_sym_expect] = ACTIONS(4275), - [anon_sym_actual] = ACTIONS(4275), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7679), + [anon_sym_RPAREN] = ACTIONS(7679), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4277), - [sym__automatic_semicolon] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4338] = { - [sym_value_arguments] = STATE(3978), - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(7604), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4437), - [sym_label] = ACTIONS(4437), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4437), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_suspend] = ACTIONS(4435), - [anon_sym_sealed] = ACTIONS(4435), - [anon_sym_annotation] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_override] = ACTIONS(4435), - [anon_sym_lateinit] = ACTIONS(4435), - [anon_sym_public] = ACTIONS(4435), - [anon_sym_private] = ACTIONS(4435), - [anon_sym_internal] = ACTIONS(4435), - [anon_sym_protected] = ACTIONS(4435), - [anon_sym_tailrec] = ACTIONS(4435), - [anon_sym_operator] = ACTIONS(4435), - [anon_sym_infix] = ACTIONS(4435), - [anon_sym_inline] = ACTIONS(4435), - [anon_sym_external] = ACTIONS(4435), - [sym_property_modifier] = ACTIONS(4435), - [anon_sym_abstract] = ACTIONS(4435), - [anon_sym_final] = ACTIONS(4435), - [anon_sym_open] = ACTIONS(4435), - [anon_sym_vararg] = ACTIONS(4435), - [anon_sym_noinline] = ACTIONS(4435), - [anon_sym_crossinline] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4437), - [sym__automatic_semicolon] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4375), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7681), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4339] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7606), - [anon_sym_where] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7610), - [anon_sym_DOT_DOT] = ACTIONS(7612), - [anon_sym_QMARK_COLON] = ACTIONS(7614), - [anon_sym_AMP_AMP] = ACTIONS(7616), - [anon_sym_PIPE_PIPE] = ACTIONS(7618), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7622), - [anon_sym_EQ_EQ] = ACTIONS(7620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7622), - [anon_sym_LT_EQ] = ACTIONS(7624), - [anon_sym_GT_EQ] = ACTIONS(7624), - [anon_sym_BANGin] = ACTIONS(7626), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4378), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7683), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(7185), [sym_multiline_comment] = ACTIONS(3), }, [4340] = { - [sym_function_body] = STATE(4049), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4293), - [sym_label] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_QMARK_COLON] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_BANGin] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4293), - [anon_sym_as_QMARK] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_BANG_BANG] = ACTIONS(4293), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_value] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4293), - [sym__automatic_semicolon] = ACTIONS(4293), - [sym_safe_nav] = ACTIONS(4293), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7685), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4341] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7606), - [anon_sym_where] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7610), - [anon_sym_DOT_DOT] = ACTIONS(7612), - [anon_sym_QMARK_COLON] = ACTIONS(7614), - [anon_sym_AMP_AMP] = ACTIONS(7616), - [anon_sym_PIPE_PIPE] = ACTIONS(7618), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7622), - [anon_sym_EQ_EQ] = ACTIONS(7620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7622), - [anon_sym_LT_EQ] = ACTIONS(7624), - [anon_sym_GT_EQ] = ACTIONS(7624), - [anon_sym_BANGin] = ACTIONS(7626), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4386), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7687), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3103), - [sym_safe_nav] = ACTIONS(7185), [sym_multiline_comment] = ACTIONS(3), }, [4342] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4351), - [sym__alpha_identifier] = ACTIONS(4740), - [anon_sym_AT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_where] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4740), - [anon_sym_set] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4742), - [sym_label] = ACTIONS(4742), - [anon_sym_in] = ACTIONS(4740), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [anon_sym_QMARK_COLON] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_COLON_COLON] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT_EQ] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_BANGin] = ACTIONS(4742), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_BANGis] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4742), - [anon_sym_as_QMARK] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4742), - [anon_sym_BANG_BANG] = ACTIONS(4742), - [anon_sym_suspend] = ACTIONS(4740), - [anon_sym_sealed] = ACTIONS(4740), - [anon_sym_annotation] = ACTIONS(4740), - [anon_sym_data] = ACTIONS(4740), - [anon_sym_inner] = ACTIONS(4740), - [anon_sym_value] = ACTIONS(4740), - [anon_sym_override] = ACTIONS(4740), - [anon_sym_lateinit] = ACTIONS(4740), - [anon_sym_public] = ACTIONS(4740), - [anon_sym_private] = ACTIONS(4740), - [anon_sym_internal] = ACTIONS(4740), - [anon_sym_protected] = ACTIONS(4740), - [anon_sym_tailrec] = ACTIONS(4740), - [anon_sym_operator] = ACTIONS(4740), - [anon_sym_infix] = ACTIONS(4740), - [anon_sym_inline] = ACTIONS(4740), - [anon_sym_external] = ACTIONS(4740), - [sym_property_modifier] = ACTIONS(4740), - [anon_sym_abstract] = ACTIONS(4740), - [anon_sym_final] = ACTIONS(4740), - [anon_sym_open] = ACTIONS(4740), - [anon_sym_vararg] = ACTIONS(4740), - [anon_sym_noinline] = ACTIONS(4740), - [anon_sym_crossinline] = ACTIONS(4740), - [anon_sym_expect] = ACTIONS(4740), - [anon_sym_actual] = ACTIONS(4740), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7689), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4742), - [sym__automatic_semicolon] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), [sym_multiline_comment] = ACTIONS(3), }, [4343] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4351), - [sym__alpha_identifier] = ACTIONS(4740), - [anon_sym_AT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(7632), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_where] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4740), - [anon_sym_set] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4742), - [sym_label] = ACTIONS(4742), - [anon_sym_in] = ACTIONS(4740), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [anon_sym_QMARK_COLON] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_COLON_COLON] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT_EQ] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_BANGin] = ACTIONS(4742), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_BANGis] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4742), - [anon_sym_as_QMARK] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4742), - [anon_sym_BANG_BANG] = ACTIONS(4742), - [anon_sym_suspend] = ACTIONS(4740), - [anon_sym_sealed] = ACTIONS(4740), - [anon_sym_annotation] = ACTIONS(4740), - [anon_sym_data] = ACTIONS(4740), - [anon_sym_inner] = ACTIONS(4740), - [anon_sym_value] = ACTIONS(4740), - [anon_sym_override] = ACTIONS(4740), - [anon_sym_lateinit] = ACTIONS(4740), - [anon_sym_public] = ACTIONS(4740), - [anon_sym_private] = ACTIONS(4740), - [anon_sym_internal] = ACTIONS(4740), - [anon_sym_protected] = ACTIONS(4740), - [anon_sym_tailrec] = ACTIONS(4740), - [anon_sym_operator] = ACTIONS(4740), - [anon_sym_infix] = ACTIONS(4740), - [anon_sym_inline] = ACTIONS(4740), - [anon_sym_external] = ACTIONS(4740), - [sym_property_modifier] = ACTIONS(4740), - [anon_sym_abstract] = ACTIONS(4740), - [anon_sym_final] = ACTIONS(4740), - [anon_sym_open] = ACTIONS(4740), - [anon_sym_vararg] = ACTIONS(4740), - [anon_sym_noinline] = ACTIONS(4740), - [anon_sym_crossinline] = ACTIONS(4740), - [anon_sym_expect] = ACTIONS(4740), - [anon_sym_actual] = ACTIONS(4740), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4350), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7691), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4742), - [sym__automatic_semicolon] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), [sym_multiline_comment] = ACTIONS(3), }, [4344] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4343), - [sym__alpha_identifier] = ACTIONS(4671), - [anon_sym_AT] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4673), - [anon_sym_as] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_RBRACE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(7632), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4671), - [anon_sym_where] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_get] = ACTIONS(4671), - [anon_sym_set] = ACTIONS(4671), - [anon_sym_STAR] = ACTIONS(4673), - [sym_label] = ACTIONS(4673), - [anon_sym_in] = ACTIONS(4671), - [anon_sym_DOT_DOT] = ACTIONS(4673), - [anon_sym_QMARK_COLON] = ACTIONS(4673), - [anon_sym_AMP_AMP] = ACTIONS(4673), - [anon_sym_PIPE_PIPE] = ACTIONS(4673), - [anon_sym_else] = ACTIONS(4671), - [anon_sym_COLON_COLON] = ACTIONS(4673), - [anon_sym_BANG_EQ] = ACTIONS(4671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4673), - [anon_sym_EQ_EQ] = ACTIONS(4671), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4673), - [anon_sym_LT_EQ] = ACTIONS(4673), - [anon_sym_GT_EQ] = ACTIONS(4673), - [anon_sym_BANGin] = ACTIONS(4673), - [anon_sym_is] = ACTIONS(4671), - [anon_sym_BANGis] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4671), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4671), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_as_QMARK] = ACTIONS(4673), - [anon_sym_PLUS_PLUS] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4673), - [anon_sym_BANG_BANG] = ACTIONS(4673), - [anon_sym_suspend] = ACTIONS(4671), - [anon_sym_sealed] = ACTIONS(4671), - [anon_sym_annotation] = ACTIONS(4671), - [anon_sym_data] = ACTIONS(4671), - [anon_sym_inner] = ACTIONS(4671), - [anon_sym_value] = ACTIONS(4671), - [anon_sym_override] = ACTIONS(4671), - [anon_sym_lateinit] = ACTIONS(4671), - [anon_sym_public] = ACTIONS(4671), - [anon_sym_private] = ACTIONS(4671), - [anon_sym_internal] = ACTIONS(4671), - [anon_sym_protected] = ACTIONS(4671), - [anon_sym_tailrec] = ACTIONS(4671), - [anon_sym_operator] = ACTIONS(4671), - [anon_sym_infix] = ACTIONS(4671), - [anon_sym_inline] = ACTIONS(4671), - [anon_sym_external] = ACTIONS(4671), - [sym_property_modifier] = ACTIONS(4671), - [anon_sym_abstract] = ACTIONS(4671), - [anon_sym_final] = ACTIONS(4671), - [anon_sym_open] = ACTIONS(4671), - [anon_sym_vararg] = ACTIONS(4671), - [anon_sym_noinline] = ACTIONS(4671), - [anon_sym_crossinline] = ACTIONS(4671), - [anon_sym_expect] = ACTIONS(4671), - [anon_sym_actual] = ACTIONS(4671), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4673), - [sym__automatic_semicolon] = ACTIONS(4673), - [sym_safe_nav] = ACTIONS(4673), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4336), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7693), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4345] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7606), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7610), - [anon_sym_DOT_DOT] = ACTIONS(7612), - [anon_sym_QMARK_COLON] = ACTIONS(7614), - [anon_sym_AMP_AMP] = ACTIONS(7616), - [anon_sym_PIPE_PIPE] = ACTIONS(7618), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7622), - [anon_sym_EQ_EQ] = ACTIONS(7620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7622), - [anon_sym_LT_EQ] = ACTIONS(7624), - [anon_sym_GT_EQ] = ACTIONS(7624), - [anon_sym_BANGin] = ACTIONS(7626), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7695), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(7185), [sym_multiline_comment] = ACTIONS(3), }, [4346] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_where] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(7185), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7697), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4347] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(7612), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4370), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7699), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(7185), [sym_multiline_comment] = ACTIONS(3), }, [4348] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7606), - [anon_sym_where] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7610), - [anon_sym_DOT_DOT] = ACTIONS(7612), - [anon_sym_QMARK_COLON] = ACTIONS(7614), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7622), - [anon_sym_EQ_EQ] = ACTIONS(7620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7622), - [anon_sym_LT_EQ] = ACTIONS(7624), - [anon_sym_GT_EQ] = ACTIONS(7624), - [anon_sym_BANGin] = ACTIONS(7626), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7701), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), - [sym_safe_nav] = ACTIONS(7185), [sym_multiline_comment] = ACTIONS(3), }, [4349] = { - [sym_function_body] = STATE(4127), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4154), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4154), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4156), - [anon_sym_get] = ACTIONS(4154), - [anon_sym_set] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [sym_label] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4156), - [anon_sym_QMARK_COLON] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4156), - [anon_sym_PIPE_PIPE] = ACTIONS(4156), - [anon_sym_else] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_BANG_EQ] = ACTIONS(4154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4156), - [anon_sym_LT_EQ] = ACTIONS(4156), - [anon_sym_GT_EQ] = ACTIONS(4156), - [anon_sym_BANGin] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4154), - [anon_sym_BANGis] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4156), - [anon_sym_as_QMARK] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4156), - [anon_sym_BANG_BANG] = ACTIONS(4156), - [anon_sym_suspend] = ACTIONS(4154), - [anon_sym_sealed] = ACTIONS(4154), - [anon_sym_annotation] = ACTIONS(4154), - [anon_sym_data] = ACTIONS(4154), - [anon_sym_inner] = ACTIONS(4154), - [anon_sym_value] = ACTIONS(4154), - [anon_sym_override] = ACTIONS(4154), - [anon_sym_lateinit] = ACTIONS(4154), - [anon_sym_public] = ACTIONS(4154), - [anon_sym_private] = ACTIONS(4154), - [anon_sym_internal] = ACTIONS(4154), - [anon_sym_protected] = ACTIONS(4154), - [anon_sym_tailrec] = ACTIONS(4154), - [anon_sym_operator] = ACTIONS(4154), - [anon_sym_infix] = ACTIONS(4154), - [anon_sym_inline] = ACTIONS(4154), - [anon_sym_external] = ACTIONS(4154), - [sym_property_modifier] = ACTIONS(4154), - [anon_sym_abstract] = ACTIONS(4154), - [anon_sym_final] = ACTIONS(4154), - [anon_sym_open] = ACTIONS(4154), - [anon_sym_vararg] = ACTIONS(4154), - [anon_sym_noinline] = ACTIONS(4154), - [anon_sym_crossinline] = ACTIONS(4154), - [anon_sym_expect] = ACTIONS(4154), - [anon_sym_actual] = ACTIONS(4154), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4156), - [sym__automatic_semicolon] = ACTIONS(4156), - [sym_safe_nav] = ACTIONS(4156), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4327), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7703), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4350] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7606), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7610), - [anon_sym_DOT_DOT] = ACTIONS(7612), - [anon_sym_QMARK_COLON] = ACTIONS(7614), - [anon_sym_AMP_AMP] = ACTIONS(7616), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7622), - [anon_sym_EQ_EQ] = ACTIONS(7620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7622), - [anon_sym_LT_EQ] = ACTIONS(7624), - [anon_sym_GT_EQ] = ACTIONS(7624), - [anon_sym_BANGin] = ACTIONS(7626), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7705), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(7185), [sym_multiline_comment] = ACTIONS(3), }, [4351] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4351), - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(7634), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4707), - [sym_label] = ACTIONS(4707), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4707), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_suspend] = ACTIONS(4705), - [anon_sym_sealed] = ACTIONS(4705), - [anon_sym_annotation] = ACTIONS(4705), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_override] = ACTIONS(4705), - [anon_sym_lateinit] = ACTIONS(4705), - [anon_sym_public] = ACTIONS(4705), - [anon_sym_private] = ACTIONS(4705), - [anon_sym_internal] = ACTIONS(4705), - [anon_sym_protected] = ACTIONS(4705), - [anon_sym_tailrec] = ACTIONS(4705), - [anon_sym_operator] = ACTIONS(4705), - [anon_sym_infix] = ACTIONS(4705), - [anon_sym_inline] = ACTIONS(4705), - [anon_sym_external] = ACTIONS(4705), - [sym_property_modifier] = ACTIONS(4705), - [anon_sym_abstract] = ACTIONS(4705), - [anon_sym_final] = ACTIONS(4705), - [anon_sym_open] = ACTIONS(4705), - [anon_sym_vararg] = ACTIONS(4705), - [anon_sym_noinline] = ACTIONS(4705), - [anon_sym_crossinline] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4707), - [sym__automatic_semicolon] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4326), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7707), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4352] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7606), - [anon_sym_where] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7610), - [anon_sym_DOT_DOT] = ACTIONS(7612), - [anon_sym_QMARK_COLON] = ACTIONS(7614), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(7624), - [anon_sym_GT_EQ] = ACTIONS(7624), - [anon_sym_BANGin] = ACTIONS(7626), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7709), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), - [sym_safe_nav] = ACTIONS(7185), [sym_multiline_comment] = ACTIONS(3), }, [4353] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_where] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7610), - [anon_sym_DOT_DOT] = ACTIONS(7612), - [anon_sym_QMARK_COLON] = ACTIONS(7614), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(7626), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4388), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7711), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(7185), [sym_multiline_comment] = ACTIONS(3), }, [4354] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(7612), - [anon_sym_QMARK_COLON] = ACTIONS(7614), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4359), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7705), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(7185), [sym_multiline_comment] = ACTIONS(3), }, [4355] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(7185), - [sym_multiline_comment] = ACTIONS(3), - }, - [4356] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7713), + [anon_sym_RPAREN] = ACTIONS(7713), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7606), - [anon_sym_where] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7610), - [anon_sym_DOT_DOT] = ACTIONS(7612), - [anon_sym_QMARK_COLON] = ACTIONS(7614), - [anon_sym_AMP_AMP] = ACTIONS(7616), - [anon_sym_PIPE_PIPE] = ACTIONS(7618), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7622), - [anon_sym_EQ_EQ] = ACTIONS(7620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7622), - [anon_sym_LT_EQ] = ACTIONS(7624), - [anon_sym_GT_EQ] = ACTIONS(7624), - [anon_sym_BANGin] = ACTIONS(7626), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3186), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4356] = { + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4352), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7715), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4357] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_where] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(7185), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(7717), + [anon_sym_typealias] = ACTIONS(7720), + [anon_sym_class] = ACTIONS(7723), + [anon_sym_interface] = ACTIONS(7723), + [anon_sym_enum] = ACTIONS(7726), + [anon_sym_constructor] = ACTIONS(7729), + [anon_sym_RBRACE] = ACTIONS(7732), + [anon_sym_val] = ACTIONS(7734), + [anon_sym_var] = ACTIONS(7734), + [anon_sym_init] = ACTIONS(7737), + [anon_sym_companion] = ACTIONS(7740), + [anon_sym_object] = ACTIONS(7743), + [anon_sym_fun] = ACTIONS(7746), + [anon_sym_get] = ACTIONS(7749), + [anon_sym_set] = ACTIONS(7752), + [anon_sym_suspend] = ACTIONS(7755), + [anon_sym_sealed] = ACTIONS(7758), + [anon_sym_annotation] = ACTIONS(7758), + [anon_sym_data] = ACTIONS(7758), + [anon_sym_inner] = ACTIONS(7758), + [anon_sym_value] = ACTIONS(7758), + [anon_sym_override] = ACTIONS(7761), + [anon_sym_lateinit] = ACTIONS(7761), + [anon_sym_public] = ACTIONS(7764), + [anon_sym_private] = ACTIONS(7764), + [anon_sym_internal] = ACTIONS(7764), + [anon_sym_protected] = ACTIONS(7764), + [anon_sym_tailrec] = ACTIONS(7755), + [anon_sym_operator] = ACTIONS(7755), + [anon_sym_infix] = ACTIONS(7755), + [anon_sym_inline] = ACTIONS(7755), + [anon_sym_external] = ACTIONS(7755), + [sym_property_modifier] = ACTIONS(7767), + [anon_sym_abstract] = ACTIONS(7770), + [anon_sym_final] = ACTIONS(7770), + [anon_sym_open] = ACTIONS(7770), + [anon_sym_vararg] = ACTIONS(7773), + [anon_sym_noinline] = ACTIONS(7773), + [anon_sym_crossinline] = ACTIONS(7773), + [anon_sym_expect] = ACTIONS(7776), + [anon_sym_actual] = ACTIONS(7776), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4358] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(7612), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(7185), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7779), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4359] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7606), - [anon_sym_where] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7610), - [anon_sym_DOT_DOT] = ACTIONS(7612), - [anon_sym_QMARK_COLON] = ACTIONS(7614), - [anon_sym_AMP_AMP] = ACTIONS(7616), - [anon_sym_PIPE_PIPE] = ACTIONS(7618), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7622), - [anon_sym_EQ_EQ] = ACTIONS(7620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7622), - [anon_sym_LT_EQ] = ACTIONS(7624), - [anon_sym_GT_EQ] = ACTIONS(7624), - [anon_sym_BANGin] = ACTIONS(7626), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7781), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), - [sym_safe_nav] = ACTIONS(7185), [sym_multiline_comment] = ACTIONS(3), }, [4360] = { - [sym_class_body] = STATE(3632), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(7637), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_RPAREN] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_while] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4342), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7783), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4361] = { - [sym_function_body] = STATE(4037), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4287), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4287), - [anon_sym_set] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4287), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4287), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_annotation] = ACTIONS(4287), - [anon_sym_data] = ACTIONS(4287), - [anon_sym_inner] = ACTIONS(4287), - [anon_sym_value] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_lateinit] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_tailrec] = ACTIONS(4287), - [anon_sym_operator] = ACTIONS(4287), - [anon_sym_infix] = ACTIONS(4287), - [anon_sym_inline] = ACTIONS(4287), - [anon_sym_external] = ACTIONS(4287), - [sym_property_modifier] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_final] = ACTIONS(4287), - [anon_sym_open] = ACTIONS(4287), - [anon_sym_vararg] = ACTIONS(4287), - [anon_sym_noinline] = ACTIONS(4287), - [anon_sym_crossinline] = ACTIONS(4287), - [anon_sym_expect] = ACTIONS(4287), - [anon_sym_actual] = ACTIONS(4287), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7785), + [anon_sym_RPAREN] = ACTIONS(7785), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4362] = { - [sym_function_body] = STATE(4087), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4183), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_STAR] = ACTIONS(4185), - [sym_label] = ACTIONS(4185), - [anon_sym_in] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_QMARK_COLON] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_else] = ACTIONS(4183), - [anon_sym_COLON_COLON] = ACTIONS(4185), - [anon_sym_BANG_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), - [anon_sym_LT_EQ] = ACTIONS(4185), - [anon_sym_GT_EQ] = ACTIONS(4185), - [anon_sym_BANGin] = ACTIONS(4185), - [anon_sym_is] = ACTIONS(4183), - [anon_sym_BANGis] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4183), - [anon_sym_PERCENT] = ACTIONS(4185), - [anon_sym_as_QMARK] = ACTIONS(4185), - [anon_sym_PLUS_PLUS] = ACTIONS(4185), - [anon_sym_DASH_DASH] = ACTIONS(4185), - [anon_sym_BANG_BANG] = ACTIONS(4185), - [anon_sym_suspend] = ACTIONS(4183), - [anon_sym_sealed] = ACTIONS(4183), - [anon_sym_annotation] = ACTIONS(4183), - [anon_sym_data] = ACTIONS(4183), - [anon_sym_inner] = ACTIONS(4183), - [anon_sym_value] = ACTIONS(4183), - [anon_sym_override] = ACTIONS(4183), - [anon_sym_lateinit] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_internal] = ACTIONS(4183), - [anon_sym_protected] = ACTIONS(4183), - [anon_sym_tailrec] = ACTIONS(4183), - [anon_sym_operator] = ACTIONS(4183), - [anon_sym_infix] = ACTIONS(4183), - [anon_sym_inline] = ACTIONS(4183), - [anon_sym_external] = ACTIONS(4183), - [sym_property_modifier] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_vararg] = ACTIONS(4183), - [anon_sym_noinline] = ACTIONS(4183), - [anon_sym_crossinline] = ACTIONS(4183), - [anon_sym_expect] = ACTIONS(4183), - [anon_sym_actual] = ACTIONS(4183), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4365), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7787), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [4363] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7606), - [anon_sym_where] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7610), - [anon_sym_DOT_DOT] = ACTIONS(7612), - [anon_sym_QMARK_COLON] = ACTIONS(7614), - [anon_sym_AMP_AMP] = ACTIONS(7616), - [anon_sym_PIPE_PIPE] = ACTIONS(7618), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7622), - [anon_sym_EQ_EQ] = ACTIONS(7620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7622), - [anon_sym_LT_EQ] = ACTIONS(7624), - [anon_sym_GT_EQ] = ACTIONS(7624), - [anon_sym_BANGin] = ACTIONS(7626), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7709), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), - [sym_safe_nav] = ACTIONS(7185), [sym_multiline_comment] = ACTIONS(3), }, [4364] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7606), - [anon_sym_where] = ACTIONS(3192), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7610), - [anon_sym_DOT_DOT] = ACTIONS(7612), - [anon_sym_QMARK_COLON] = ACTIONS(7614), - [anon_sym_AMP_AMP] = ACTIONS(7616), - [anon_sym_PIPE_PIPE] = ACTIONS(7618), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7622), - [anon_sym_EQ_EQ] = ACTIONS(7620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7622), - [anon_sym_LT_EQ] = ACTIONS(7624), - [anon_sym_GT_EQ] = ACTIONS(7624), - [anon_sym_BANGin] = ACTIONS(7626), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4365] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2018), - [sym__comparison_operator] = STATE(2060), - [sym__in_operator] = STATE(2068), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2073), - [sym__multiplicative_operator] = STATE(2074), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2094), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7789), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4366] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_get] = ACTIONS(4023), + [anon_sym_set] = ACTIONS(4023), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4009), + [sym_label] = ACTIONS(4004), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4021), + [anon_sym_sealed] = ACTIONS(4021), + [anon_sym_annotation] = ACTIONS(4021), + [anon_sym_data] = ACTIONS(4023), + [anon_sym_inner] = ACTIONS(4023), + [anon_sym_value] = ACTIONS(4023), + [anon_sym_override] = ACTIONS(4021), + [anon_sym_lateinit] = ACTIONS(4021), + [anon_sym_public] = ACTIONS(4021), + [anon_sym_private] = ACTIONS(4021), + [anon_sym_internal] = ACTIONS(4021), + [anon_sym_protected] = ACTIONS(4021), + [anon_sym_tailrec] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(4021), + [anon_sym_infix] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym_external] = ACTIONS(4021), + [sym_property_modifier] = ACTIONS(4021), + [anon_sym_abstract] = ACTIONS(4021), + [anon_sym_final] = ACTIONS(4021), + [anon_sym_open] = ACTIONS(4021), + [anon_sym_vararg] = ACTIONS(4021), + [anon_sym_noinline] = ACTIONS(4021), + [anon_sym_crossinline] = ACTIONS(4021), + [anon_sym_expect] = ACTIONS(4023), + [anon_sym_actual] = ACTIONS(4023), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [4367] = { + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4358), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4368] = { + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4345), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7793), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4369] = { + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4396), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7795), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4370] = { + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7797), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4371] = { + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4384), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7797), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4372] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7799), + [anon_sym_RPAREN] = ACTIONS(7799), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7606), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7608), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7610), - [anon_sym_DOT_DOT] = ACTIONS(7612), - [anon_sym_QMARK_COLON] = ACTIONS(7614), - [anon_sym_AMP_AMP] = ACTIONS(7616), - [anon_sym_PIPE_PIPE] = ACTIONS(7618), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7622), - [anon_sym_EQ_EQ] = ACTIONS(7620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7622), - [anon_sym_LT_EQ] = ACTIONS(7624), - [anon_sym_GT_EQ] = ACTIONS(7624), - [anon_sym_BANGin] = ACTIONS(7626), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_SLASH] = ACTIONS(7630), - [anon_sym_PERCENT] = ACTIONS(7608), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4366] = { - [sym_function_body] = STATE(3966), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4453), - [anon_sym_AT] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_as] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4455), - [sym_label] = ACTIONS(4455), - [anon_sym_in] = ACTIONS(4453), - [anon_sym_DOT_DOT] = ACTIONS(4455), - [anon_sym_QMARK_COLON] = ACTIONS(4455), - [anon_sym_AMP_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4455), - [anon_sym_else] = ACTIONS(4453), - [anon_sym_COLON_COLON] = ACTIONS(4455), - [anon_sym_BANG_EQ] = ACTIONS(4453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), - [anon_sym_LT_EQ] = ACTIONS(4455), - [anon_sym_GT_EQ] = ACTIONS(4455), - [anon_sym_BANGin] = ACTIONS(4455), - [anon_sym_is] = ACTIONS(4453), - [anon_sym_BANGis] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4455), - [anon_sym_as_QMARK] = ACTIONS(4455), - [anon_sym_PLUS_PLUS] = ACTIONS(4455), - [anon_sym_DASH_DASH] = ACTIONS(4455), - [anon_sym_BANG_BANG] = ACTIONS(4455), - [anon_sym_suspend] = ACTIONS(4453), - [anon_sym_sealed] = ACTIONS(4453), - [anon_sym_annotation] = ACTIONS(4453), - [anon_sym_data] = ACTIONS(4453), - [anon_sym_inner] = ACTIONS(4453), - [anon_sym_value] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4453), - [anon_sym_lateinit] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_internal] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_tailrec] = ACTIONS(4453), - [anon_sym_operator] = ACTIONS(4453), - [anon_sym_infix] = ACTIONS(4453), - [anon_sym_inline] = ACTIONS(4453), - [anon_sym_external] = ACTIONS(4453), - [sym_property_modifier] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_open] = ACTIONS(4453), - [anon_sym_vararg] = ACTIONS(4453), - [anon_sym_noinline] = ACTIONS(4453), - [anon_sym_crossinline] = ACTIONS(4453), - [anon_sym_expect] = ACTIONS(4453), - [anon_sym_actual] = ACTIONS(4453), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4455), - [sym__automatic_semicolon] = ACTIONS(4455), - [sym_safe_nav] = ACTIONS(4455), + [4373] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_get] = ACTIONS(4013), + [anon_sym_set] = ACTIONS(4013), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4009), + [sym_label] = ACTIONS(4004), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4011), + [anon_sym_sealed] = ACTIONS(4011), + [anon_sym_annotation] = ACTIONS(4011), + [anon_sym_data] = ACTIONS(4013), + [anon_sym_inner] = ACTIONS(4013), + [anon_sym_value] = ACTIONS(4013), + [anon_sym_override] = ACTIONS(4011), + [anon_sym_lateinit] = ACTIONS(4011), + [anon_sym_public] = ACTIONS(4011), + [anon_sym_private] = ACTIONS(4011), + [anon_sym_internal] = ACTIONS(4011), + [anon_sym_protected] = ACTIONS(4011), + [anon_sym_tailrec] = ACTIONS(4011), + [anon_sym_operator] = ACTIONS(4011), + [anon_sym_infix] = ACTIONS(4011), + [anon_sym_inline] = ACTIONS(4011), + [anon_sym_external] = ACTIONS(4011), + [sym_property_modifier] = ACTIONS(4011), + [anon_sym_abstract] = ACTIONS(4011), + [anon_sym_final] = ACTIONS(4011), + [anon_sym_open] = ACTIONS(4011), + [anon_sym_vararg] = ACTIONS(4011), + [anon_sym_noinline] = ACTIONS(4011), + [anon_sym_crossinline] = ACTIONS(4011), + [anon_sym_expect] = ACTIONS(4013), + [anon_sym_actual] = ACTIONS(4013), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [4374] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7801), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(7801), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4367] = { - [sym_function_body] = STATE(3999), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4518), - [anon_sym_AT] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4518), - [anon_sym_GT] = ACTIONS(4518), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym_get] = ACTIONS(4518), - [anon_sym_set] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4518), - [anon_sym_DOT_DOT] = ACTIONS(4520), - [anon_sym_QMARK_COLON] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_PIPE_PIPE] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_BANG_EQ] = ACTIONS(4518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ] = ACTIONS(4518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4520), - [anon_sym_LT_EQ] = ACTIONS(4520), - [anon_sym_GT_EQ] = ACTIONS(4520), - [anon_sym_BANGin] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4518), - [anon_sym_BANGis] = ACTIONS(4520), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_SLASH] = ACTIONS(4518), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4520), - [anon_sym_suspend] = ACTIONS(4518), - [anon_sym_sealed] = ACTIONS(4518), - [anon_sym_annotation] = ACTIONS(4518), - [anon_sym_data] = ACTIONS(4518), - [anon_sym_inner] = ACTIONS(4518), - [anon_sym_value] = ACTIONS(4518), - [anon_sym_override] = ACTIONS(4518), - [anon_sym_lateinit] = ACTIONS(4518), - [anon_sym_public] = ACTIONS(4518), - [anon_sym_private] = ACTIONS(4518), - [anon_sym_internal] = ACTIONS(4518), - [anon_sym_protected] = ACTIONS(4518), - [anon_sym_tailrec] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_infix] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym_external] = ACTIONS(4518), - [sym_property_modifier] = ACTIONS(4518), - [anon_sym_abstract] = ACTIONS(4518), - [anon_sym_final] = ACTIONS(4518), - [anon_sym_open] = ACTIONS(4518), - [anon_sym_vararg] = ACTIONS(4518), - [anon_sym_noinline] = ACTIONS(4518), - [anon_sym_crossinline] = ACTIONS(4518), - [anon_sym_expect] = ACTIONS(4518), - [anon_sym_actual] = ACTIONS(4518), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4520), - [sym__automatic_semicolon] = ACTIONS(4520), - [sym_safe_nav] = ACTIONS(4520), + [4375] = { + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7803), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4368] = { - [sym_function_body] = STATE(4106), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4166), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [sym_label] = ACTIONS(4166), - [anon_sym_in] = ACTIONS(4164), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_else] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_BANGin] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4164), - [anon_sym_BANGis] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_SLASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_as_QMARK] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_BANG_BANG] = ACTIONS(4166), - [anon_sym_suspend] = ACTIONS(4164), - [anon_sym_sealed] = ACTIONS(4164), - [anon_sym_annotation] = ACTIONS(4164), - [anon_sym_data] = ACTIONS(4164), - [anon_sym_inner] = ACTIONS(4164), - [anon_sym_value] = ACTIONS(4164), - [anon_sym_override] = ACTIONS(4164), - [anon_sym_lateinit] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_internal] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_tailrec] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_infix] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym_external] = ACTIONS(4164), - [sym_property_modifier] = ACTIONS(4164), - [anon_sym_abstract] = ACTIONS(4164), - [anon_sym_final] = ACTIONS(4164), - [anon_sym_open] = ACTIONS(4164), - [anon_sym_vararg] = ACTIONS(4164), - [anon_sym_noinline] = ACTIONS(4164), - [anon_sym_crossinline] = ACTIONS(4164), - [anon_sym_expect] = ACTIONS(4164), - [anon_sym_actual] = ACTIONS(4164), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4166), - [sym__automatic_semicolon] = ACTIONS(4166), - [sym_safe_nav] = ACTIONS(4166), - [sym_multiline_comment] = ACTIONS(3), - }, - [4369] = { - [sym_class_body] = STATE(3468), - [sym__alpha_identifier] = ACTIONS(4443), - [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(7639), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_as] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(5590), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4443), - [anon_sym_GT] = ACTIONS(4443), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4445), - [anon_sym_get] = ACTIONS(4443), - [anon_sym_set] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4445), - [sym_label] = ACTIONS(4445), - [anon_sym_in] = ACTIONS(4443), - [anon_sym_while] = ACTIONS(4443), - [anon_sym_DOT_DOT] = ACTIONS(4445), - [anon_sym_QMARK_COLON] = ACTIONS(4445), - [anon_sym_AMP_AMP] = ACTIONS(4445), - [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_else] = ACTIONS(4443), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_BANG_EQ] = ACTIONS(4443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), - [anon_sym_EQ_EQ] = ACTIONS(4443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), - [anon_sym_LT_EQ] = ACTIONS(4445), - [anon_sym_GT_EQ] = ACTIONS(4445), - [anon_sym_BANGin] = ACTIONS(4445), - [anon_sym_is] = ACTIONS(4443), - [anon_sym_BANGis] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_SLASH] = ACTIONS(4443), - [anon_sym_PERCENT] = ACTIONS(4445), - [anon_sym_as_QMARK] = ACTIONS(4445), - [anon_sym_PLUS_PLUS] = ACTIONS(4445), - [anon_sym_DASH_DASH] = ACTIONS(4445), - [anon_sym_BANG_BANG] = ACTIONS(4445), - [anon_sym_suspend] = ACTIONS(4443), - [anon_sym_sealed] = ACTIONS(4443), - [anon_sym_annotation] = ACTIONS(4443), - [anon_sym_data] = ACTIONS(4443), - [anon_sym_inner] = ACTIONS(4443), - [anon_sym_value] = ACTIONS(4443), - [anon_sym_override] = ACTIONS(4443), - [anon_sym_lateinit] = ACTIONS(4443), - [anon_sym_public] = ACTIONS(4443), - [anon_sym_private] = ACTIONS(4443), - [anon_sym_internal] = ACTIONS(4443), - [anon_sym_protected] = ACTIONS(4443), - [anon_sym_tailrec] = ACTIONS(4443), - [anon_sym_operator] = ACTIONS(4443), - [anon_sym_infix] = ACTIONS(4443), - [anon_sym_inline] = ACTIONS(4443), - [anon_sym_external] = ACTIONS(4443), - [sym_property_modifier] = ACTIONS(4443), - [anon_sym_abstract] = ACTIONS(4443), - [anon_sym_final] = ACTIONS(4443), - [anon_sym_open] = ACTIONS(4443), - [anon_sym_vararg] = ACTIONS(4443), - [anon_sym_noinline] = ACTIONS(4443), - [anon_sym_crossinline] = ACTIONS(4443), - [anon_sym_expect] = ACTIONS(4443), - [anon_sym_actual] = ACTIONS(4443), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4445), - [sym_safe_nav] = ACTIONS(4445), - [sym_multiline_comment] = ACTIONS(3), - }, - [4370] = { - [sym__alpha_identifier] = ACTIONS(4435), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [anon_sym_as] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_by] = ACTIONS(7604), - [anon_sym_LT] = ACTIONS(4435), - [anon_sym_GT] = ACTIONS(4435), - [anon_sym_where] = ACTIONS(4435), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_get] = ACTIONS(4435), - [anon_sym_set] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4437), - [sym_label] = ACTIONS(4437), - [anon_sym_in] = ACTIONS(4435), - [anon_sym_DOT_DOT] = ACTIONS(4437), - [anon_sym_QMARK_COLON] = ACTIONS(4437), - [anon_sym_AMP_AMP] = ACTIONS(4437), - [anon_sym_PIPE_PIPE] = ACTIONS(4437), - [anon_sym_else] = ACTIONS(4435), - [anon_sym_COLON_COLON] = ACTIONS(4437), - [anon_sym_BANG_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), - [anon_sym_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), - [anon_sym_LT_EQ] = ACTIONS(4437), - [anon_sym_GT_EQ] = ACTIONS(4437), - [anon_sym_BANGin] = ACTIONS(4437), - [anon_sym_is] = ACTIONS(4435), - [anon_sym_BANGis] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_SLASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4437), - [anon_sym_as_QMARK] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_BANG_BANG] = ACTIONS(4437), - [anon_sym_suspend] = ACTIONS(4435), - [anon_sym_sealed] = ACTIONS(4435), - [anon_sym_annotation] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4435), - [anon_sym_inner] = ACTIONS(4435), - [anon_sym_value] = ACTIONS(4435), - [anon_sym_override] = ACTIONS(4435), - [anon_sym_lateinit] = ACTIONS(4435), - [anon_sym_public] = ACTIONS(4435), - [anon_sym_private] = ACTIONS(4435), - [anon_sym_internal] = ACTIONS(4435), - [anon_sym_protected] = ACTIONS(4435), - [anon_sym_tailrec] = ACTIONS(4435), - [anon_sym_operator] = ACTIONS(4435), - [anon_sym_infix] = ACTIONS(4435), - [anon_sym_inline] = ACTIONS(4435), - [anon_sym_external] = ACTIONS(4435), - [sym_property_modifier] = ACTIONS(4435), - [anon_sym_abstract] = ACTIONS(4435), - [anon_sym_final] = ACTIONS(4435), - [anon_sym_open] = ACTIONS(4435), - [anon_sym_vararg] = ACTIONS(4435), - [anon_sym_noinline] = ACTIONS(4435), - [anon_sym_crossinline] = ACTIONS(4435), - [anon_sym_expect] = ACTIONS(4435), - [anon_sym_actual] = ACTIONS(4435), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4437), - [sym__automatic_semicolon] = ACTIONS(4437), - [sym_safe_nav] = ACTIONS(4437), - [sym_multiline_comment] = ACTIONS(3), - }, - [4371] = { - [sym_function_body] = STATE(3969), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4530), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4530), - [anon_sym_set] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4532), - [sym_label] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_else] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4532), - [anon_sym_as_QMARK] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4530), - [anon_sym_sealed] = ACTIONS(4530), - [anon_sym_annotation] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4530), - [anon_sym_inner] = ACTIONS(4530), - [anon_sym_value] = ACTIONS(4530), - [anon_sym_override] = ACTIONS(4530), - [anon_sym_lateinit] = ACTIONS(4530), - [anon_sym_public] = ACTIONS(4530), - [anon_sym_private] = ACTIONS(4530), - [anon_sym_internal] = ACTIONS(4530), - [anon_sym_protected] = ACTIONS(4530), - [anon_sym_tailrec] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_infix] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym_external] = ACTIONS(4530), - [sym_property_modifier] = ACTIONS(4530), - [anon_sym_abstract] = ACTIONS(4530), - [anon_sym_final] = ACTIONS(4530), - [anon_sym_open] = ACTIONS(4530), - [anon_sym_vararg] = ACTIONS(4530), - [anon_sym_noinline] = ACTIONS(4530), - [anon_sym_crossinline] = ACTIONS(4530), - [anon_sym_expect] = ACTIONS(4530), - [anon_sym_actual] = ACTIONS(4530), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - }, - [4372] = { - [sym_function_body] = STATE(3960), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4339), - [anon_sym_AT] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4339), - [anon_sym_set] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [sym_label] = ACTIONS(4341), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_QMARK_COLON] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [anon_sym_else] = ACTIONS(4339), - [anon_sym_COLON_COLON] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_BANGin] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_BANGis] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_as_QMARK] = ACTIONS(4341), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_BANG_BANG] = ACTIONS(4341), - [anon_sym_suspend] = ACTIONS(4339), - [anon_sym_sealed] = ACTIONS(4339), - [anon_sym_annotation] = ACTIONS(4339), - [anon_sym_data] = ACTIONS(4339), - [anon_sym_inner] = ACTIONS(4339), - [anon_sym_value] = ACTIONS(4339), - [anon_sym_override] = ACTIONS(4339), - [anon_sym_lateinit] = ACTIONS(4339), - [anon_sym_public] = ACTIONS(4339), - [anon_sym_private] = ACTIONS(4339), - [anon_sym_internal] = ACTIONS(4339), - [anon_sym_protected] = ACTIONS(4339), - [anon_sym_tailrec] = ACTIONS(4339), - [anon_sym_operator] = ACTIONS(4339), - [anon_sym_infix] = ACTIONS(4339), - [anon_sym_inline] = ACTIONS(4339), - [anon_sym_external] = ACTIONS(4339), - [sym_property_modifier] = ACTIONS(4339), - [anon_sym_abstract] = ACTIONS(4339), - [anon_sym_final] = ACTIONS(4339), - [anon_sym_open] = ACTIONS(4339), - [anon_sym_vararg] = ACTIONS(4339), - [anon_sym_noinline] = ACTIONS(4339), - [anon_sym_crossinline] = ACTIONS(4339), - [anon_sym_expect] = ACTIONS(4339), - [anon_sym_actual] = ACTIONS(4339), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym__automatic_semicolon] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), - }, - [4373] = { - [sym_function_body] = STATE(4139), - [sym__block] = STATE(4073), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(6854), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_value] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - }, - [4374] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_while] = ACTIONS(3105), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4375] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4376] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_while] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(6840), + [4376] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7805), + [anon_sym_RPAREN] = ACTIONS(7805), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4377] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4340), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7697), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), [sym_multiline_comment] = ACTIONS(3), }, [4378] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7808), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), [sym_multiline_comment] = ACTIONS(3), }, [4379] = { - [sym_class_body] = STATE(4132), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_COLON] = ACTIONS(7667), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4397), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7689), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4380] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4381] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7810), + [anon_sym_RPAREN] = ACTIONS(7810), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4382] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_while] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4393), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7812), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), [sym_multiline_comment] = ACTIONS(3), }, [4383] = { - [sym_class_body] = STATE(4105), - [sym__alpha_identifier] = ACTIONS(4443), - [anon_sym_AT] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(7669), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_as] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(5806), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4443), - [anon_sym_GT] = ACTIONS(4443), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4445), - [anon_sym_get] = ACTIONS(4443), - [anon_sym_set] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4445), - [sym_label] = ACTIONS(4445), - [anon_sym_in] = ACTIONS(4443), - [anon_sym_DOT_DOT] = ACTIONS(4445), - [anon_sym_QMARK_COLON] = ACTIONS(4445), - [anon_sym_AMP_AMP] = ACTIONS(4445), - [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_else] = ACTIONS(4443), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_BANG_EQ] = ACTIONS(4443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), - [anon_sym_EQ_EQ] = ACTIONS(4443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), - [anon_sym_LT_EQ] = ACTIONS(4445), - [anon_sym_GT_EQ] = ACTIONS(4445), - [anon_sym_BANGin] = ACTIONS(4445), - [anon_sym_is] = ACTIONS(4443), - [anon_sym_BANGis] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_SLASH] = ACTIONS(4443), - [anon_sym_PERCENT] = ACTIONS(4445), - [anon_sym_as_QMARK] = ACTIONS(4445), - [anon_sym_PLUS_PLUS] = ACTIONS(4445), - [anon_sym_DASH_DASH] = ACTIONS(4445), - [anon_sym_BANG_BANG] = ACTIONS(4445), - [anon_sym_suspend] = ACTIONS(4443), - [anon_sym_sealed] = ACTIONS(4443), - [anon_sym_annotation] = ACTIONS(4443), - [anon_sym_data] = ACTIONS(4443), - [anon_sym_inner] = ACTIONS(4443), - [anon_sym_value] = ACTIONS(4443), - [anon_sym_override] = ACTIONS(4443), - [anon_sym_lateinit] = ACTIONS(4443), - [anon_sym_public] = ACTIONS(4443), - [anon_sym_private] = ACTIONS(4443), - [anon_sym_internal] = ACTIONS(4443), - [anon_sym_protected] = ACTIONS(4443), - [anon_sym_tailrec] = ACTIONS(4443), - [anon_sym_operator] = ACTIONS(4443), - [anon_sym_infix] = ACTIONS(4443), - [anon_sym_inline] = ACTIONS(4443), - [anon_sym_external] = ACTIONS(4443), - [sym_property_modifier] = ACTIONS(4443), - [anon_sym_abstract] = ACTIONS(4443), - [anon_sym_final] = ACTIONS(4443), - [anon_sym_open] = ACTIONS(4443), - [anon_sym_vararg] = ACTIONS(4443), - [anon_sym_noinline] = ACTIONS(4443), - [anon_sym_crossinline] = ACTIONS(4443), - [anon_sym_expect] = ACTIONS(4443), - [anon_sym_actual] = ACTIONS(4443), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4445), - [sym__automatic_semicolon] = ACTIONS(4445), - [sym_safe_nav] = ACTIONS(4445), - [sym_multiline_comment] = ACTIONS(3), - }, - [4384] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7814), + [anon_sym_RPAREN] = ACTIONS(7814), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4385] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [4384] = { + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7816), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), [sym_multiline_comment] = ACTIONS(3), }, - [4386] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4385] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_while] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4387] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(7671), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4353), - [sym_label] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), + [4386] = { + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4353), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), [sym_multiline_comment] = ACTIONS(3), }, - [4388] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4387] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7818), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(7818), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4388] = { + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7820), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4389] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(7673), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_where] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5179), - [sym_label] = ACTIONS(5179), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_suspend] = ACTIONS(5177), - [anon_sym_sealed] = ACTIONS(5177), - [anon_sym_annotation] = ACTIONS(5177), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_override] = ACTIONS(5177), - [anon_sym_lateinit] = ACTIONS(5177), - [anon_sym_public] = ACTIONS(5177), - [anon_sym_private] = ACTIONS(5177), - [anon_sym_internal] = ACTIONS(5177), - [anon_sym_protected] = ACTIONS(5177), - [anon_sym_tailrec] = ACTIONS(5177), - [anon_sym_operator] = ACTIONS(5177), - [anon_sym_infix] = ACTIONS(5177), - [anon_sym_inline] = ACTIONS(5177), - [anon_sym_external] = ACTIONS(5177), - [sym_property_modifier] = ACTIONS(5177), - [anon_sym_abstract] = ACTIONS(5177), - [anon_sym_final] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(5177), - [anon_sym_vararg] = ACTIONS(5177), - [anon_sym_noinline] = ACTIONS(5177), - [anon_sym_crossinline] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5179), - [sym__automatic_semicolon] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4392), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7820), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4390] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4346), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7822), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), [sym_multiline_comment] = ACTIONS(3), }, [4391] = { - [sym__alpha_identifier] = ACTIONS(5171), - [anon_sym_AT] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(7675), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_where] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5173), - [anon_sym_get] = ACTIONS(5171), - [anon_sym_set] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5173), - [sym_label] = ACTIONS(5173), - [anon_sym_in] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5173), - [anon_sym_QMARK_COLON] = ACTIONS(5173), - [anon_sym_AMP_AMP] = ACTIONS(5173), - [anon_sym_PIPE_PIPE] = ACTIONS(5173), - [anon_sym_else] = ACTIONS(5171), - [anon_sym_COLON_COLON] = ACTIONS(5173), - [anon_sym_BANG_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), - [anon_sym_LT_EQ] = ACTIONS(5173), - [anon_sym_GT_EQ] = ACTIONS(5173), - [anon_sym_BANGin] = ACTIONS(5173), - [anon_sym_is] = ACTIONS(5171), - [anon_sym_BANGis] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5173), - [anon_sym_as_QMARK] = ACTIONS(5173), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_BANG_BANG] = ACTIONS(5173), - [anon_sym_suspend] = ACTIONS(5171), - [anon_sym_sealed] = ACTIONS(5171), - [anon_sym_annotation] = ACTIONS(5171), - [anon_sym_data] = ACTIONS(5171), - [anon_sym_inner] = ACTIONS(5171), - [anon_sym_value] = ACTIONS(5171), - [anon_sym_override] = ACTIONS(5171), - [anon_sym_lateinit] = ACTIONS(5171), - [anon_sym_public] = ACTIONS(5171), - [anon_sym_private] = ACTIONS(5171), - [anon_sym_internal] = ACTIONS(5171), - [anon_sym_protected] = ACTIONS(5171), - [anon_sym_tailrec] = ACTIONS(5171), - [anon_sym_operator] = ACTIONS(5171), - [anon_sym_infix] = ACTIONS(5171), - [anon_sym_inline] = ACTIONS(5171), - [anon_sym_external] = ACTIONS(5171), - [sym_property_modifier] = ACTIONS(5171), - [anon_sym_abstract] = ACTIONS(5171), - [anon_sym_final] = ACTIONS(5171), - [anon_sym_open] = ACTIONS(5171), - [anon_sym_vararg] = ACTIONS(5171), - [anon_sym_noinline] = ACTIONS(5171), - [anon_sym_crossinline] = ACTIONS(5171), - [anon_sym_expect] = ACTIONS(5171), - [anon_sym_actual] = ACTIONS(5171), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7824), + [anon_sym_RPAREN] = ACTIONS(7824), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5173), - [sym__automatic_semicolon] = ACTIONS(5173), - [sym_safe_nav] = ACTIONS(5173), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4392] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(6840), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7826), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4393] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7828), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), [sym_multiline_comment] = ACTIONS(3), }, [4394] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(6840), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4395), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7828), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4395] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_COMMA] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [sym_label] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7677), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7830), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), [sym_multiline_comment] = ACTIONS(3), }, [4396] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_COMMA] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(7679), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [sym_label] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7677), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7832), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), [sym_multiline_comment] = ACTIONS(3), }, [4397] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(6840), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7834), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4398] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7681), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4242), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7836), + [anon_sym_RPAREN] = ACTIONS(7836), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4399] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(7165), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7838), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7687), - [anon_sym_DOT_DOT] = ACTIONS(7689), - [anon_sym_QMARK_COLON] = ACTIONS(7691), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7695), - [anon_sym_EQ_EQ] = ACTIONS(7693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7697), - [anon_sym_BANGin] = ACTIONS(7699), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3147), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4400] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(7165), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7840), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7687), - [anon_sym_DOT_DOT] = ACTIONS(7689), - [anon_sym_QMARK_COLON] = ACTIONS(7691), - [anon_sym_AMP_AMP] = ACTIONS(7705), - [anon_sym_PIPE_PIPE] = ACTIONS(7707), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7695), - [anon_sym_EQ_EQ] = ACTIONS(7693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7697), - [anon_sym_BANGin] = ACTIONS(7699), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4401] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3116), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3116), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3116), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3116), - [anon_sym_inner] = ACTIONS(3116), - [anon_sym_value] = ACTIONS(3116), - [anon_sym_expect] = ACTIONS(3116), - [anon_sym_actual] = ACTIONS(3116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(7185), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7842), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4402] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(7709), - [anon_sym_RPAREN] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4353), - [sym_label] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_while] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7844), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4403] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3123), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_QMARK_COLON] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3123), - [anon_sym_inner] = ACTIONS(3123), - [anon_sym_value] = ACTIONS(3123), - [anon_sym_expect] = ACTIONS(3123), - [anon_sym_actual] = ACTIONS(3123), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3125), - [sym__automatic_semicolon] = ACTIONS(3125), - [sym_safe_nav] = ACTIONS(7185), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7846), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4404] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_RPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [sym_label] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_while] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7711), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7848), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4405] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_RPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(7713), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [sym_label] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_while] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7711), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7850), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4406] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(7165), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7852), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7687), - [anon_sym_DOT_DOT] = ACTIONS(7689), - [anon_sym_QMARK_COLON] = ACTIONS(7691), - [anon_sym_AMP_AMP] = ACTIONS(7705), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7695), - [anon_sym_EQ_EQ] = ACTIONS(7693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7697), - [anon_sym_BANGin] = ACTIONS(7699), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4407] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(7165), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7854), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7687), - [anon_sym_DOT_DOT] = ACTIONS(7689), - [anon_sym_QMARK_COLON] = ACTIONS(7691), - [anon_sym_AMP_AMP] = ACTIONS(7705), - [anon_sym_PIPE_PIPE] = ACTIONS(7707), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7695), - [anon_sym_EQ_EQ] = ACTIONS(7693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7697), - [anon_sym_BANGin] = ACTIONS(7699), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4408] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(7165), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7856), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7687), - [anon_sym_DOT_DOT] = ACTIONS(7689), - [anon_sym_QMARK_COLON] = ACTIONS(7691), - [anon_sym_AMP_AMP] = ACTIONS(7705), - [anon_sym_PIPE_PIPE] = ACTIONS(7707), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7695), - [anon_sym_EQ_EQ] = ACTIONS(7693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7697), - [anon_sym_BANGin] = ACTIONS(7699), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3170), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4409] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(7165), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7858), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7687), - [anon_sym_DOT_DOT] = ACTIONS(7689), - [anon_sym_QMARK_COLON] = ACTIONS(7691), - [anon_sym_AMP_AMP] = ACTIONS(7705), - [anon_sym_PIPE_PIPE] = ACTIONS(7707), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7695), - [anon_sym_EQ_EQ] = ACTIONS(7693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7697), - [anon_sym_BANGin] = ACTIONS(7699), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3103), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4410] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(7165), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7860), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7687), - [anon_sym_DOT_DOT] = ACTIONS(7689), - [anon_sym_QMARK_COLON] = ACTIONS(7691), - [anon_sym_AMP_AMP] = ACTIONS(7705), - [anon_sym_PIPE_PIPE] = ACTIONS(7707), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7695), - [anon_sym_EQ_EQ] = ACTIONS(7693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7697), - [anon_sym_BANGin] = ACTIONS(7699), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3107), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4411] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(7165), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7862), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7687), - [anon_sym_DOT_DOT] = ACTIONS(7689), - [anon_sym_QMARK_COLON] = ACTIONS(7691), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7697), - [anon_sym_BANGin] = ACTIONS(7699), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3099), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4412] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3109), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_get] = ACTIONS(3109), - [anon_sym_set] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(7689), - [anon_sym_QMARK_COLON] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3109), - [anon_sym_inner] = ACTIONS(3109), - [anon_sym_value] = ACTIONS(3109), - [anon_sym_expect] = ACTIONS(3109), - [anon_sym_actual] = ACTIONS(3109), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3111), - [sym__automatic_semicolon] = ACTIONS(3111), - [sym_safe_nav] = ACTIONS(7185), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4413] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(7165), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7866), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7687), - [anon_sym_DOT_DOT] = ACTIONS(7689), - [anon_sym_QMARK_COLON] = ACTIONS(7691), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(7699), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4414] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), - [sym__alpha_identifier] = ACTIONS(3149), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_get] = ACTIONS(3149), - [anon_sym_set] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_QMARK_COLON] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3149), - [anon_sym_inner] = ACTIONS(3149), - [anon_sym_value] = ACTIONS(3149), - [anon_sym_expect] = ACTIONS(3149), - [anon_sym_actual] = ACTIONS(3149), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3151), - [sym__automatic_semicolon] = ACTIONS(3151), - [sym_safe_nav] = ACTIONS(7185), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7868), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4415] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(7689), - [anon_sym_QMARK_COLON] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3088), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7870), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4416] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(7715), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5179), - [sym_label] = ACTIONS(5179), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_while] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_suspend] = ACTIONS(5177), - [anon_sym_sealed] = ACTIONS(5177), - [anon_sym_annotation] = ACTIONS(5177), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_override] = ACTIONS(5177), - [anon_sym_lateinit] = ACTIONS(5177), - [anon_sym_public] = ACTIONS(5177), - [anon_sym_private] = ACTIONS(5177), - [anon_sym_internal] = ACTIONS(5177), - [anon_sym_protected] = ACTIONS(5177), - [anon_sym_tailrec] = ACTIONS(5177), - [anon_sym_operator] = ACTIONS(5177), - [anon_sym_infix] = ACTIONS(5177), - [anon_sym_inline] = ACTIONS(5177), - [anon_sym_external] = ACTIONS(5177), - [sym_property_modifier] = ACTIONS(5177), - [anon_sym_abstract] = ACTIONS(5177), - [anon_sym_final] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(5177), - [anon_sym_vararg] = ACTIONS(5177), - [anon_sym_noinline] = ACTIONS(5177), - [anon_sym_crossinline] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7872), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4417] = { - [sym__alpha_identifier] = ACTIONS(5171), - [anon_sym_AT] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(7717), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5173), - [anon_sym_get] = ACTIONS(5171), - [anon_sym_set] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5173), - [sym_label] = ACTIONS(5173), - [anon_sym_in] = ACTIONS(5171), - [anon_sym_while] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5173), - [anon_sym_QMARK_COLON] = ACTIONS(5173), - [anon_sym_AMP_AMP] = ACTIONS(5173), - [anon_sym_PIPE_PIPE] = ACTIONS(5173), - [anon_sym_else] = ACTIONS(5171), - [anon_sym_COLON_COLON] = ACTIONS(5173), - [anon_sym_BANG_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), - [anon_sym_LT_EQ] = ACTIONS(5173), - [anon_sym_GT_EQ] = ACTIONS(5173), - [anon_sym_BANGin] = ACTIONS(5173), - [anon_sym_is] = ACTIONS(5171), - [anon_sym_BANGis] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5173), - [anon_sym_as_QMARK] = ACTIONS(5173), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_BANG_BANG] = ACTIONS(5173), - [anon_sym_suspend] = ACTIONS(5171), - [anon_sym_sealed] = ACTIONS(5171), - [anon_sym_annotation] = ACTIONS(5171), - [anon_sym_data] = ACTIONS(5171), - [anon_sym_inner] = ACTIONS(5171), - [anon_sym_value] = ACTIONS(5171), - [anon_sym_override] = ACTIONS(5171), - [anon_sym_lateinit] = ACTIONS(5171), - [anon_sym_public] = ACTIONS(5171), - [anon_sym_private] = ACTIONS(5171), - [anon_sym_internal] = ACTIONS(5171), - [anon_sym_protected] = ACTIONS(5171), - [anon_sym_tailrec] = ACTIONS(5171), - [anon_sym_operator] = ACTIONS(5171), - [anon_sym_infix] = ACTIONS(5171), - [anon_sym_inline] = ACTIONS(5171), - [anon_sym_external] = ACTIONS(5171), - [sym_property_modifier] = ACTIONS(5171), - [anon_sym_abstract] = ACTIONS(5171), - [anon_sym_final] = ACTIONS(5171), - [anon_sym_open] = ACTIONS(5171), - [anon_sym_vararg] = ACTIONS(5171), - [anon_sym_noinline] = ACTIONS(5171), - [anon_sym_crossinline] = ACTIONS(5171), - [anon_sym_expect] = ACTIONS(5171), - [anon_sym_actual] = ACTIONS(5171), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5173), - [sym_safe_nav] = ACTIONS(5173), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4418] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(7165), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7876), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7687), - [anon_sym_DOT_DOT] = ACTIONS(7689), - [anon_sym_QMARK_COLON] = ACTIONS(7691), - [anon_sym_AMP_AMP] = ACTIONS(7705), - [anon_sym_PIPE_PIPE] = ACTIONS(7707), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7695), - [anon_sym_EQ_EQ] = ACTIONS(7693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7697), - [anon_sym_BANGin] = ACTIONS(7699), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3194), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4419] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7719), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_while] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7878), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4420] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(7165), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7880), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(7687), - [anon_sym_DOT_DOT] = ACTIONS(7689), - [anon_sym_QMARK_COLON] = ACTIONS(7691), - [anon_sym_AMP_AMP] = ACTIONS(7705), - [anon_sym_PIPE_PIPE] = ACTIONS(7707), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(7693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7695), - [anon_sym_EQ_EQ] = ACTIONS(7693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7697), - [anon_sym_BANGin] = ACTIONS(7699), - [anon_sym_is] = ACTIONS(7195), - [anon_sym_BANGis] = ACTIONS(7197), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4421] = { - [sym_indexing_suffix] = STATE(5288), - [sym_navigation_suffix] = STATE(5289), - [sym_call_suffix] = STATE(5312), - [sym_annotated_lambda] = STATE(5298), - [sym_type_arguments] = STATE(8380), - [sym_value_arguments] = STATE(4675), - [sym_lambda_literal] = STATE(5302), - [sym__equality_operator] = STATE(2153), - [sym__comparison_operator] = STATE(2154), - [sym__in_operator] = STATE(2161), - [sym__is_operator] = STATE(6094), - [sym__additive_operator] = STATE(2162), - [sym__multiplicative_operator] = STATE(2163), - [sym__as_operator] = STATE(6095), - [sym__postfix_unary_operator] = STATE(5304), - [sym__member_access_operator] = STATE(8003), - [sym_annotation] = STATE(8622), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2176), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8622), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7161), - [anon_sym_as] = ACTIONS(7163), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(7165), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(7169), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7685), - [sym_label] = ACTIONS(7173), - [anon_sym_in] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(7689), - [anon_sym_QMARK_COLON] = ACTIONS(7691), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(7185), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_BANGin] = ACTIONS(3132), - [anon_sym_is] = ACTIONS(3130), - [anon_sym_BANGis] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7703), - [anon_sym_PERCENT] = ACTIONS(7685), - [anon_sym_as_QMARK] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7203), - [anon_sym_DASH_DASH] = ACTIONS(7203), - [anon_sym_BANG_BANG] = ACTIONS(7203), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7882), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3132), - [sym_safe_nav] = ACTIONS(7185), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4422] = { - [sym__alpha_identifier] = ACTIONS(5171), - [anon_sym_AT] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(7721), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5173), - [anon_sym_get] = ACTIONS(5171), - [anon_sym_set] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5173), - [sym_label] = ACTIONS(5173), - [anon_sym_in] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5173), - [anon_sym_QMARK_COLON] = ACTIONS(5173), - [anon_sym_AMP_AMP] = ACTIONS(5173), - [anon_sym_PIPE_PIPE] = ACTIONS(5173), - [anon_sym_else] = ACTIONS(5171), - [anon_sym_COLON_COLON] = ACTIONS(5173), - [anon_sym_BANG_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), - [anon_sym_LT_EQ] = ACTIONS(5173), - [anon_sym_GT_EQ] = ACTIONS(5173), - [anon_sym_BANGin] = ACTIONS(5173), - [anon_sym_is] = ACTIONS(5171), - [anon_sym_BANGis] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5173), - [anon_sym_as_QMARK] = ACTIONS(5173), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_BANG_BANG] = ACTIONS(5173), - [anon_sym_suspend] = ACTIONS(5171), - [anon_sym_sealed] = ACTIONS(5171), - [anon_sym_annotation] = ACTIONS(5171), - [anon_sym_data] = ACTIONS(5171), - [anon_sym_inner] = ACTIONS(5171), - [anon_sym_value] = ACTIONS(5171), - [anon_sym_override] = ACTIONS(5171), - [anon_sym_lateinit] = ACTIONS(5171), - [anon_sym_public] = ACTIONS(5171), - [anon_sym_private] = ACTIONS(5171), - [anon_sym_internal] = ACTIONS(5171), - [anon_sym_protected] = ACTIONS(5171), - [anon_sym_tailrec] = ACTIONS(5171), - [anon_sym_operator] = ACTIONS(5171), - [anon_sym_infix] = ACTIONS(5171), - [anon_sym_inline] = ACTIONS(5171), - [anon_sym_external] = ACTIONS(5171), - [sym_property_modifier] = ACTIONS(5171), - [anon_sym_abstract] = ACTIONS(5171), - [anon_sym_final] = ACTIONS(5171), - [anon_sym_open] = ACTIONS(5171), - [anon_sym_vararg] = ACTIONS(5171), - [anon_sym_noinline] = ACTIONS(5171), - [anon_sym_crossinline] = ACTIONS(5171), - [anon_sym_expect] = ACTIONS(5171), - [anon_sym_actual] = ACTIONS(5171), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7884), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5173), - [sym__automatic_semicolon] = ACTIONS(5173), - [sym_safe_nav] = ACTIONS(5173), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4423] = { - [sym__alpha_identifier] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(7723), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_get] = ACTIONS(4244), - [anon_sym_set] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_QMARK_COLON] = ACTIONS(4242), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_BANGin] = ACTIONS(4242), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_BANGis] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4244), - [anon_sym_sealed] = ACTIONS(4244), - [anon_sym_annotation] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4244), - [anon_sym_inner] = ACTIONS(4244), - [anon_sym_value] = ACTIONS(4244), - [anon_sym_override] = ACTIONS(4244), - [anon_sym_lateinit] = ACTIONS(4244), - [anon_sym_public] = ACTIONS(4244), - [anon_sym_private] = ACTIONS(4244), - [anon_sym_internal] = ACTIONS(4244), - [anon_sym_protected] = ACTIONS(4244), - [anon_sym_tailrec] = ACTIONS(4244), - [anon_sym_operator] = ACTIONS(4244), - [anon_sym_infix] = ACTIONS(4244), - [anon_sym_inline] = ACTIONS(4244), - [anon_sym_external] = ACTIONS(4244), - [sym_property_modifier] = ACTIONS(4244), - [anon_sym_abstract] = ACTIONS(4244), - [anon_sym_final] = ACTIONS(4244), - [anon_sym_open] = ACTIONS(4244), - [anon_sym_vararg] = ACTIONS(4244), - [anon_sym_noinline] = ACTIONS(4244), - [anon_sym_crossinline] = ACTIONS(4244), - [anon_sym_expect] = ACTIONS(4244), - [anon_sym_actual] = ACTIONS(4244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4242), - [sym__automatic_semicolon] = ACTIONS(4242), - [sym_safe_nav] = ACTIONS(4242), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7886), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4424] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [aux_sym_indexing_suffix_repeat1] = STATE(9358), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(7725), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7727), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7888), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4425] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [aux_sym_indexing_suffix_repeat1] = STATE(9123), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(7729), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7727), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7890), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4426] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [aux_sym_indexing_suffix_repeat1] = STATE(9290), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(7731), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7727), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7892), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4427] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [aux_sym_indexing_suffix_repeat1] = STATE(9091), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(7733), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7727), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7894), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4428] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [aux_sym_indexing_suffix_repeat1] = STATE(9177), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(7735), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7727), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7896), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4429] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [aux_sym_indexing_suffix_repeat1] = STATE(9263), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(7737), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7727), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7898), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4430] = { - [sym__alpha_identifier] = ACTIONS(4355), - [anon_sym_AT] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(7739), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_get] = ACTIONS(4355), - [anon_sym_set] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4353), - [sym_label] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4355), - [anon_sym_COLON_COLON] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_BANGin] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_BANGis] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_as_QMARK] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_BANG_BANG] = ACTIONS(4353), - [anon_sym_suspend] = ACTIONS(4355), - [anon_sym_sealed] = ACTIONS(4355), - [anon_sym_annotation] = ACTIONS(4355), - [anon_sym_data] = ACTIONS(4355), - [anon_sym_inner] = ACTIONS(4355), - [anon_sym_value] = ACTIONS(4355), - [anon_sym_override] = ACTIONS(4355), - [anon_sym_lateinit] = ACTIONS(4355), - [anon_sym_public] = ACTIONS(4355), - [anon_sym_private] = ACTIONS(4355), - [anon_sym_internal] = ACTIONS(4355), - [anon_sym_protected] = ACTIONS(4355), - [anon_sym_tailrec] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_infix] = ACTIONS(4355), - [anon_sym_inline] = ACTIONS(4355), - [anon_sym_external] = ACTIONS(4355), - [sym_property_modifier] = ACTIONS(4355), - [anon_sym_abstract] = ACTIONS(4355), - [anon_sym_final] = ACTIONS(4355), - [anon_sym_open] = ACTIONS(4355), - [anon_sym_vararg] = ACTIONS(4355), - [anon_sym_noinline] = ACTIONS(4355), - [anon_sym_crossinline] = ACTIONS(4355), - [anon_sym_expect] = ACTIONS(4355), - [anon_sym_actual] = ACTIONS(4355), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7900), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4353), - [sym__automatic_semicolon] = ACTIONS(4353), - [sym_safe_nav] = ACTIONS(4353), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4431] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [aux_sym_indexing_suffix_repeat1] = STATE(9266), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(7741), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7727), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7902), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4432] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [aux_sym_indexing_suffix_repeat1] = STATE(9341), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(7743), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7727), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7904), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4433] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [aux_sym_indexing_suffix_repeat1] = STATE(9264), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(7745), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7727), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7906), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4434] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(7747), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [sym_label] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7749), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7908), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4435] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(7751), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5179), - [sym_label] = ACTIONS(5179), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_suspend] = ACTIONS(5177), - [anon_sym_sealed] = ACTIONS(5177), - [anon_sym_annotation] = ACTIONS(5177), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_override] = ACTIONS(5177), - [anon_sym_lateinit] = ACTIONS(5177), - [anon_sym_public] = ACTIONS(5177), - [anon_sym_private] = ACTIONS(5177), - [anon_sym_internal] = ACTIONS(5177), - [anon_sym_protected] = ACTIONS(5177), - [anon_sym_tailrec] = ACTIONS(5177), - [anon_sym_operator] = ACTIONS(5177), - [anon_sym_infix] = ACTIONS(5177), - [anon_sym_inline] = ACTIONS(5177), - [anon_sym_external] = ACTIONS(5177), - [sym_property_modifier] = ACTIONS(5177), - [anon_sym_abstract] = ACTIONS(5177), - [anon_sym_final] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(5177), - [anon_sym_vararg] = ACTIONS(5177), - [anon_sym_noinline] = ACTIONS(5177), - [anon_sym_crossinline] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5179), - [sym__automatic_semicolon] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7910), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4436] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [aux_sym_indexing_suffix_repeat1] = STATE(9196), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(7753), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7727), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7912), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4437] = { - [sym__alpha_identifier] = ACTIONS(4926), - [anon_sym_AT] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_get] = ACTIONS(4926), - [anon_sym_set] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [sym_label] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_QMARK_COLON] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(7749), - [anon_sym_COLON_COLON] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4928), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_BANGin] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_BANGis] = ACTIONS(4928), - [anon_sym_PLUS] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_as_QMARK] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_BANG_BANG] = ACTIONS(4928), - [anon_sym_suspend] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4926), - [anon_sym_inner] = ACTIONS(4926), - [anon_sym_value] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_lateinit] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_tailrec] = ACTIONS(4926), - [anon_sym_operator] = ACTIONS(4926), - [anon_sym_infix] = ACTIONS(4926), - [anon_sym_inline] = ACTIONS(4926), - [anon_sym_external] = ACTIONS(4926), - [sym_property_modifier] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_final] = ACTIONS(4926), - [anon_sym_open] = ACTIONS(4926), - [anon_sym_vararg] = ACTIONS(4926), - [anon_sym_noinline] = ACTIONS(4926), - [anon_sym_crossinline] = ACTIONS(4926), - [anon_sym_expect] = ACTIONS(4926), - [anon_sym_actual] = ACTIONS(4926), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7914), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4438] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [aux_sym_indexing_suffix_repeat1] = STATE(9210), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(7755), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7727), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7916), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4439] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [aux_sym_indexing_suffix_repeat1] = STATE(9255), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(7757), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7727), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7918), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4440] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4450), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7769), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7920), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4441] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7795), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7922), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4442] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7797), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7924), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4443] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7799), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7926), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4444] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4453), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7797), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7928), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4445] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7801), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7930), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4446] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7803), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7932), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4447] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7805), - [anon_sym_RPAREN] = ACTIONS(7805), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7934), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4448] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3194), - [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7936), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4449] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4443), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7807), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7938), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4450] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7809), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7940), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4451] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7811), - [anon_sym_RPAREN] = ACTIONS(7811), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7942), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4452] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4490), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7813), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4453] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7815), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4454] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7817), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4455] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4463), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7819), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4456] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7821), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4457] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4445), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7823), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4458] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7825), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4459] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7823), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4460] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7827), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7944), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(7827), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4461] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4473), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7829), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4462] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4453] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3194), - [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7946), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4463] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7831), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4464] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7833), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4465] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4454] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7835), - [anon_sym_RPAREN] = ACTIONS(7835), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7948), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4466] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4469), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7837), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4467] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4471), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7831), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4468] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4022), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_get] = ACTIONS(4027), - [anon_sym_set] = ACTIONS(4027), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4015), - [sym_label] = ACTIONS(4010), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4025), - [anon_sym_sealed] = ACTIONS(4025), - [anon_sym_annotation] = ACTIONS(4025), - [anon_sym_data] = ACTIONS(4027), - [anon_sym_inner] = ACTIONS(4027), - [anon_sym_value] = ACTIONS(4027), - [anon_sym_override] = ACTIONS(4025), - [anon_sym_lateinit] = ACTIONS(4025), - [anon_sym_public] = ACTIONS(4025), - [anon_sym_private] = ACTIONS(4025), - [anon_sym_internal] = ACTIONS(4025), - [anon_sym_protected] = ACTIONS(4025), - [anon_sym_tailrec] = ACTIONS(4025), - [anon_sym_operator] = ACTIONS(4025), - [anon_sym_infix] = ACTIONS(4025), - [anon_sym_inline] = ACTIONS(4025), - [anon_sym_external] = ACTIONS(4025), - [sym_property_modifier] = ACTIONS(4025), - [anon_sym_abstract] = ACTIONS(4025), - [anon_sym_final] = ACTIONS(4025), - [anon_sym_open] = ACTIONS(4025), - [anon_sym_vararg] = ACTIONS(4025), - [anon_sym_noinline] = ACTIONS(4025), - [anon_sym_crossinline] = ACTIONS(4025), - [anon_sym_expect] = ACTIONS(4027), - [anon_sym_actual] = ACTIONS(4027), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [4469] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7839), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4470] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4455] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7841), - [anon_sym_RPAREN] = ACTIONS(7841), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7950), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4471] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7843), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4472] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7845), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4473] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7847), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4474] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4458), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7849), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4475] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4491), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7847), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4476] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4446), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7851), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4477] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7853), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4478] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7855), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4479] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4459), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7857), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4480] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4456), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7859), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4481] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4464), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7861), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4482] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4456] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7863), - [anon_sym_RPAREN] = ACTIONS(7863), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7952), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4483] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4457] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3194), - [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7954), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4484] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4509), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7865), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4485] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4458] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_RBRACK] = ACTIONS(7867), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7867), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7956), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4486] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4478), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7869), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4487] = { - [sym__alpha_identifier] = ACTIONS(4010), - [anon_sym_AT] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_fun] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_object] = ACTIONS(4010), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_this] = ACTIONS(4010), - [anon_sym_super] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4015), - [sym_label] = ACTIONS(4010), - [anon_sym_null] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_BANG] = ACTIONS(4015), - [anon_sym_suspend] = ACTIONS(4017), - [anon_sym_sealed] = ACTIONS(4017), - [anon_sym_annotation] = ACTIONS(4017), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_value] = ACTIONS(4019), - [anon_sym_override] = ACTIONS(4017), - [anon_sym_lateinit] = ACTIONS(4017), - [anon_sym_public] = ACTIONS(4017), - [anon_sym_private] = ACTIONS(4017), - [anon_sym_internal] = ACTIONS(4017), - [anon_sym_protected] = ACTIONS(4017), - [anon_sym_tailrec] = ACTIONS(4017), - [anon_sym_operator] = ACTIONS(4017), - [anon_sym_infix] = ACTIONS(4017), - [anon_sym_inline] = ACTIONS(4017), - [anon_sym_external] = ACTIONS(4017), - [sym_property_modifier] = ACTIONS(4017), - [anon_sym_abstract] = ACTIONS(4017), - [anon_sym_final] = ACTIONS(4017), - [anon_sym_open] = ACTIONS(4017), - [anon_sym_vararg] = ACTIONS(4017), - [anon_sym_noinline] = ACTIONS(4017), - [anon_sym_crossinline] = ACTIONS(4017), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4015), - [anon_sym_continue_AT] = ACTIONS(4015), - [anon_sym_break_AT] = ACTIONS(4015), - [anon_sym_this_AT] = ACTIONS(4015), - [anon_sym_super_AT] = ACTIONS(4015), - [sym_real_literal] = ACTIONS(4015), - [sym_integer_literal] = ACTIONS(4010), - [sym_hex_literal] = ACTIONS(4015), - [sym_bin_literal] = ACTIONS(4015), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4015), - [sym__backtick_identifier] = ACTIONS(4015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4015), - }, - [4488] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7869), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4489] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4505), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7871), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4490] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7873), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4491] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7875), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4492] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7877), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4493] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4459] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7879), - [anon_sym_RPAREN] = ACTIONS(7879), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7958), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4494] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4477), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7809), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4495] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4454), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7799), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4496] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4442), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7882), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4497] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4507), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7873), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4498] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4460] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7884), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7960), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_DASH_GT] = ACTIONS(7884), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4499] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4461] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7886), - [anon_sym_RPAREN] = ACTIONS(7886), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7962), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4500] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7888), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4501] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4492), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7890), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4502] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4462] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(3194), - [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7964), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4503] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4463] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7892), - [anon_sym_RPAREN] = ACTIONS(7892), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7966), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4504] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4441), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7894), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4505] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7896), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4506] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4500), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7896), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4507] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7898), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4508] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4488), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7900), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4509] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7902), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4510] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4472), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7759), - [anon_sym_class] = ACTIONS(7761), - [anon_sym_fun] = ACTIONS(7763), - [anon_sym_interface] = ACTIONS(7761), - [anon_sym_enum] = ACTIONS(7765), - [anon_sym_constructor] = ACTIONS(7767), - [anon_sym_RBRACE] = ACTIONS(7904), - [anon_sym_val] = ACTIONS(31), - [anon_sym_var] = ACTIONS(31), - [anon_sym_init] = ACTIONS(7771), - [anon_sym_companion] = ACTIONS(7773), - [anon_sym_object] = ACTIONS(7775), - [anon_sym_get] = ACTIONS(7777), - [anon_sym_set] = ACTIONS(7779), - [anon_sym_suspend] = ACTIONS(7781), - [anon_sym_sealed] = ACTIONS(7783), - [anon_sym_annotation] = ACTIONS(7783), - [anon_sym_data] = ACTIONS(7783), - [anon_sym_inner] = ACTIONS(7783), - [anon_sym_value] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_lateinit] = ACTIONS(7785), - [anon_sym_public] = ACTIONS(7787), - [anon_sym_private] = ACTIONS(7787), - [anon_sym_internal] = ACTIONS(7787), - [anon_sym_protected] = ACTIONS(7787), - [anon_sym_tailrec] = ACTIONS(7781), - [anon_sym_operator] = ACTIONS(7781), - [anon_sym_infix] = ACTIONS(7781), - [anon_sym_inline] = ACTIONS(7781), - [anon_sym_external] = ACTIONS(7781), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7789), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_open] = ACTIONS(7789), - [anon_sym_vararg] = ACTIONS(7791), - [anon_sym_noinline] = ACTIONS(7791), - [anon_sym_crossinline] = ACTIONS(7791), - [anon_sym_expect] = ACTIONS(7793), - [anon_sym_actual] = ACTIONS(7793), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4511] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(1970), - [sym__comparison_operator] = STATE(1951), - [sym__in_operator] = STATE(1465), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(1947), - [sym__multiplicative_operator] = STATE(1944), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(1760), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4464] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(7906), - [anon_sym_RPAREN] = ACTIONS(7906), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7968), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7431), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7433), - [anon_sym_DOT_DOT] = ACTIONS(7435), - [anon_sym_QMARK_COLON] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7439), - [anon_sym_PIPE_PIPE] = ACTIONS(7441), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), - [anon_sym_EQ_EQ] = ACTIONS(7443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), - [anon_sym_LT_EQ] = ACTIONS(7447), - [anon_sym_GT_EQ] = ACTIONS(7447), - [anon_sym_BANGin] = ACTIONS(7449), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7451), - [anon_sym_DASH] = ACTIONS(7451), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4512] = { - [sym_type_alias] = STATE(9573), - [sym__declaration] = STATE(9573), - [sym_class_declaration] = STATE(9573), - [aux_sym__class_member_declarations] = STATE(4512), - [sym__class_member_declaration] = STATE(9573), - [sym_anonymous_initializer] = STATE(9573), - [sym_companion_object] = STATE(9573), - [sym_function_declaration] = STATE(9573), - [sym_property_declaration] = STATE(9573), - [sym_getter] = STATE(9573), - [sym_setter] = STATE(9573), - [sym_object_declaration] = STATE(9573), - [sym_secondary_constructor] = STATE(9573), - [sym_modifiers] = STATE(8156), - [sym__modifier] = STATE(5646), - [sym_class_modifier] = STATE(5646), - [sym_member_modifier] = STATE(5646), - [sym_visibility_modifier] = STATE(5646), - [sym_function_modifier] = STATE(5646), - [sym_inheritance_modifier] = STATE(5646), - [sym_parameter_modifier] = STATE(5646), - [sym_platform_modifier] = STATE(5646), - [sym_annotation] = STATE(5646), - [sym__single_annotation] = STATE(5889), - [sym__multi_annotation] = STATE(5889), - [aux_sym_modifiers_repeat1] = STATE(5646), - [anon_sym_AT] = ACTIONS(7908), - [anon_sym_typealias] = ACTIONS(7911), - [anon_sym_class] = ACTIONS(7914), - [anon_sym_fun] = ACTIONS(7917), - [anon_sym_interface] = ACTIONS(7914), - [anon_sym_enum] = ACTIONS(7920), - [anon_sym_constructor] = ACTIONS(7923), - [anon_sym_RBRACE] = ACTIONS(7926), - [anon_sym_val] = ACTIONS(7928), - [anon_sym_var] = ACTIONS(7928), - [anon_sym_init] = ACTIONS(7931), - [anon_sym_companion] = ACTIONS(7934), - [anon_sym_object] = ACTIONS(7937), - [anon_sym_get] = ACTIONS(7940), - [anon_sym_set] = ACTIONS(7943), - [anon_sym_suspend] = ACTIONS(7946), - [anon_sym_sealed] = ACTIONS(7949), - [anon_sym_annotation] = ACTIONS(7949), - [anon_sym_data] = ACTIONS(7949), - [anon_sym_inner] = ACTIONS(7949), - [anon_sym_value] = ACTIONS(7949), - [anon_sym_override] = ACTIONS(7952), - [anon_sym_lateinit] = ACTIONS(7952), - [anon_sym_public] = ACTIONS(7955), - [anon_sym_private] = ACTIONS(7955), - [anon_sym_internal] = ACTIONS(7955), - [anon_sym_protected] = ACTIONS(7955), - [anon_sym_tailrec] = ACTIONS(7946), - [anon_sym_operator] = ACTIONS(7946), - [anon_sym_infix] = ACTIONS(7946), - [anon_sym_inline] = ACTIONS(7946), - [anon_sym_external] = ACTIONS(7946), - [sym_property_modifier] = ACTIONS(7958), - [anon_sym_abstract] = ACTIONS(7961), - [anon_sym_final] = ACTIONS(7961), - [anon_sym_open] = ACTIONS(7961), - [anon_sym_vararg] = ACTIONS(7964), - [anon_sym_noinline] = ACTIONS(7964), - [anon_sym_crossinline] = ACTIONS(7964), - [anon_sym_expect] = ACTIONS(7967), - [anon_sym_actual] = ACTIONS(7967), - [sym_line_comment] = ACTIONS(3), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4513] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4465] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(7970), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4514] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4466] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(7972), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4515] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4467] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(7974), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4516] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4468] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(7976), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4517] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4469] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(7978), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4518] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4470] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(7980), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4519] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4471] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(7982), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4520] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4472] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(7984), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4521] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4473] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(7986), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4522] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4474] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(7988), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4523] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4475] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(7990), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4524] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4476] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(7992), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4525] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4477] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(7994), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4526] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4478] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(7996), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4527] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4479] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(7998), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4528] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4480] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8000), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4529] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4481] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8002), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4530] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4482] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8004), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4531] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4483] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8006), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4532] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [4484] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8008), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4533] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4485] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8010), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4534] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4486] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8012), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4535] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4487] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8014), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4536] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4488] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8016), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4537] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4489] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8018), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4538] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4490] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8020), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4539] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4491] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8022), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4540] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4492] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8024), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4541] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4493] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8026), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4542] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4494] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8028), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4543] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4495] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8030), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4544] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4496] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8032), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4545] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4497] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8034), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4546] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4498] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8036), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4547] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4499] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8038), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4548] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4500] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8040), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4549] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4501] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8042), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4550] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4502] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8044), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4551] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4503] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8046), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4552] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4504] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8048), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4553] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4505] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8050), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4554] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4506] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8052), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4555] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4507] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8054), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4556] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4508] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8056), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4557] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4509] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8058), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4558] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4510] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8060), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4559] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4511] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8062), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4560] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4512] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8064), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4561] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4513] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8066), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4562] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4514] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8068), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4563] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4515] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8070), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4564] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4516] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8072), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4565] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4517] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8074), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4566] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4518] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8076), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4567] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4519] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8078), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4568] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4520] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8080), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4569] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4521] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8082), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4570] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4522] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8084), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4571] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4523] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8086), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4572] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4524] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8088), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(8088), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4573] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4525] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8090), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4574] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4526] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8092), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4575] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4527] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), [anon_sym_RPAREN] = ACTIONS(8094), [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4576] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8096), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4577] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8098), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4578] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8100), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4579] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8102), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4580] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(8104), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4581] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8106), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4582] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8108), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4583] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8110), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4584] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8112), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4585] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8114), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4586] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8116), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4587] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8118), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4588] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8120), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4589] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8122), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4590] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8124), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4591] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8126), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4592] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8128), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4593] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8130), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4594] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8132), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4595] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8134), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4596] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8136), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4597] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8138), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4598] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8140), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4599] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8142), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4600] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8144), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4601] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8146), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4602] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8148), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4603] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8150), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4604] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8152), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4605] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8154), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4606] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8156), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4607] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4608] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8160), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4609] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8162), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4610] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8164), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4611] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8166), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4612] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8168), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4613] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8170), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4614] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8172), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4615] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8174), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4616] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8176), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4617] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8178), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4618] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8180), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4619] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8182), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4620] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8184), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4621] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8186), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4622] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8188), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4623] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8190), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4624] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8192), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4625] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8194), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4626] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8196), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4627] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8198), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4628] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8200), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4629] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8202), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4630] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8204), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4631] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8206), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4632] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8208), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4633] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8210), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4634] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8212), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4635] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8214), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4636] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8216), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4637] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8218), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4638] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8220), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4639] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8222), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4640] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8224), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4641] = { - [sym_indexing_suffix] = STATE(5006), - [sym_navigation_suffix] = STATE(5008), - [sym_call_suffix] = STATE(5009), - [sym_annotated_lambda] = STATE(5010), - [sym_type_arguments] = STATE(8365), - [sym_value_arguments] = STATE(4645), - [sym_lambda_literal] = STATE(5013), - [sym__equality_operator] = STATE(2205), - [sym__comparison_operator] = STATE(2199), - [sym__in_operator] = STATE(2192), - [sym__is_operator] = STATE(6542), - [sym__additive_operator] = STATE(2181), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6506), - [sym__postfix_unary_operator] = STATE(4915), - [sym__member_access_operator] = STATE(7875), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [sym_simple_identifier] = STATE(2130), - [sym__lexical_identifier] = STATE(5586), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6824), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(8226), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(6830), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(7643), - [sym_label] = ACTIONS(6834), - [anon_sym_in] = ACTIONS(7645), - [anon_sym_DOT_DOT] = ACTIONS(7647), - [anon_sym_QMARK_COLON] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_BANG_EQ] = ACTIONS(7655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7657), - [anon_sym_EQ_EQ] = ACTIONS(7655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_BANGin] = ACTIONS(7661), - [anon_sym_is] = ACTIONS(6864), - [anon_sym_BANGis] = ACTIONS(6866), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_as_QMARK] = ACTIONS(6844), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_BANG_BANG] = ACTIONS(6846), - [anon_sym_data] = ACTIONS(3095), - [anon_sym_inner] = ACTIONS(3095), - [anon_sym_value] = ACTIONS(3095), - [anon_sym_expect] = ACTIONS(3095), - [anon_sym_actual] = ACTIONS(3095), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6840), - [sym_multiline_comment] = ACTIONS(3), - }, - [4642] = { - [sym_indexing_suffix] = STATE(7443), - [sym_navigation_suffix] = STATE(7443), - [sym__postfix_unary_operator] = STATE(7443), - [sym__member_access_operator] = STATE(7875), - [sym__postfix_unary_suffix] = STATE(7443), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7443), - [sym__alpha_identifier] = ACTIONS(4034), - [anon_sym_AT] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4038), - [anon_sym_RBRACK] = ACTIONS(4036), - [anon_sym_as] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4070), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_COMMA] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_where] = ACTIONS(4034), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_get] = ACTIONS(4034), - [anon_sym_set] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4034), - [anon_sym_DASH_GT] = ACTIONS(4036), - [sym_label] = ACTIONS(4036), - [anon_sym_in] = ACTIONS(4034), - [anon_sym_while] = ACTIONS(4034), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_QMARK_COLON] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_else] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4046), - [anon_sym_PLUS_EQ] = ACTIONS(4073), - [anon_sym_DASH_EQ] = ACTIONS(4073), - [anon_sym_STAR_EQ] = ACTIONS(4073), - [anon_sym_SLASH_EQ] = ACTIONS(4073), - [anon_sym_PERCENT_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT_EQ] = ACTIONS(4036), - [anon_sym_GT_EQ] = ACTIONS(4036), - [anon_sym_BANGin] = ACTIONS(4036), - [anon_sym_is] = ACTIONS(4034), - [anon_sym_BANGis] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_SLASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_as_QMARK] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(4051), - [anon_sym_BANG_BANG] = ACTIONS(4051), - [anon_sym_data] = ACTIONS(4034), - [anon_sym_inner] = ACTIONS(4034), - [anon_sym_value] = ACTIONS(4034), - [anon_sym_expect] = ACTIONS(4034), - [anon_sym_actual] = ACTIONS(4034), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4036), - [sym_safe_nav] = ACTIONS(4046), - [sym_multiline_comment] = ACTIONS(3), - }, - [4643] = { - [sym_indexing_suffix] = STATE(7443), - [sym_navigation_suffix] = STATE(7443), - [sym__postfix_unary_operator] = STATE(7443), - [sym__member_access_operator] = STATE(7875), - [sym__postfix_unary_suffix] = STATE(7443), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7443), - [sym__alpha_identifier] = ACTIONS(4034), - [anon_sym_AT] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4038), - [anon_sym_RBRACK] = ACTIONS(4036), - [anon_sym_as] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4041), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_COMMA] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_where] = ACTIONS(4034), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_get] = ACTIONS(4034), - [anon_sym_set] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4034), - [anon_sym_DASH_GT] = ACTIONS(4036), - [sym_label] = ACTIONS(4036), - [anon_sym_in] = ACTIONS(4034), - [anon_sym_while] = ACTIONS(4034), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_QMARK_COLON] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_else] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4046), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT_EQ] = ACTIONS(4036), - [anon_sym_GT_EQ] = ACTIONS(4036), - [anon_sym_BANGin] = ACTIONS(4036), - [anon_sym_is] = ACTIONS(4034), - [anon_sym_BANGis] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_SLASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_as_QMARK] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(4051), - [anon_sym_BANG_BANG] = ACTIONS(4051), - [anon_sym_data] = ACTIONS(4034), - [anon_sym_inner] = ACTIONS(4034), - [anon_sym_value] = ACTIONS(4034), - [anon_sym_expect] = ACTIONS(4034), - [anon_sym_actual] = ACTIONS(4034), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4036), - [sym_safe_nav] = ACTIONS(4046), - [sym_multiline_comment] = ACTIONS(3), - }, - [4644] = { - [sym_annotated_lambda] = STATE(4861), - [sym_lambda_literal] = STATE(5013), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(4082), - [anon_sym_AT] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_RBRACK] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(4082), - [anon_sym_EQ] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_RPAREN] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_where] = ACTIONS(4082), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_get] = ACTIONS(4082), - [anon_sym_set] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_DASH_GT] = ACTIONS(4084), - [sym_label] = ACTIONS(4084), - [anon_sym_in] = ACTIONS(4082), - [anon_sym_while] = ACTIONS(4082), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_QMARK_COLON] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_else] = ACTIONS(4082), - [anon_sym_COLON_COLON] = ACTIONS(4084), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_STAR_EQ] = ACTIONS(4084), - [anon_sym_SLASH_EQ] = ACTIONS(4084), - [anon_sym_PERCENT_EQ] = ACTIONS(4084), - [anon_sym_BANG_EQ] = ACTIONS(4082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_BANGin] = ACTIONS(4084), - [anon_sym_is] = ACTIONS(4082), - [anon_sym_BANGis] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_SLASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4082), - [anon_sym_as_QMARK] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_BANG_BANG] = ACTIONS(4084), - [anon_sym_data] = ACTIONS(4082), - [anon_sym_inner] = ACTIONS(4082), - [anon_sym_value] = ACTIONS(4082), - [anon_sym_expect] = ACTIONS(4082), - [anon_sym_actual] = ACTIONS(4082), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4084), - [sym_safe_nav] = ACTIONS(4084), - [sym_multiline_comment] = ACTIONS(3), - }, - [4645] = { - [sym_annotated_lambda] = STATE(4864), - [sym_lambda_literal] = STATE(5013), - [sym_annotation] = STATE(8615), - [sym__single_annotation] = STATE(6131), - [sym__multi_annotation] = STATE(6131), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8615), - [sym__alpha_identifier] = ACTIONS(4030), - [anon_sym_AT] = ACTIONS(4032), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4528] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_RBRACK] = ACTIONS(4032), - [anon_sym_as] = ACTIONS(4030), - [anon_sym_EQ] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_RBRACE] = ACTIONS(4032), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_COMMA] = ACTIONS(4032), - [anon_sym_RPAREN] = ACTIONS(4032), - [anon_sym_LT] = ACTIONS(4030), - [anon_sym_GT] = ACTIONS(4030), - [anon_sym_where] = ACTIONS(4030), - [anon_sym_DOT] = ACTIONS(4030), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym_get] = ACTIONS(4030), - [anon_sym_set] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4030), - [anon_sym_DASH_GT] = ACTIONS(4032), - [sym_label] = ACTIONS(4032), - [anon_sym_in] = ACTIONS(4030), - [anon_sym_while] = ACTIONS(4030), - [anon_sym_DOT_DOT] = ACTIONS(4032), - [anon_sym_QMARK_COLON] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4032), - [anon_sym_else] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(4032), - [anon_sym_PLUS_EQ] = ACTIONS(4032), - [anon_sym_DASH_EQ] = ACTIONS(4032), - [anon_sym_STAR_EQ] = ACTIONS(4032), - [anon_sym_SLASH_EQ] = ACTIONS(4032), - [anon_sym_PERCENT_EQ] = ACTIONS(4032), - [anon_sym_BANG_EQ] = ACTIONS(4030), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4032), - [anon_sym_EQ_EQ] = ACTIONS(4030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4032), - [anon_sym_LT_EQ] = ACTIONS(4032), - [anon_sym_GT_EQ] = ACTIONS(4032), - [anon_sym_BANGin] = ACTIONS(4032), - [anon_sym_is] = ACTIONS(4030), - [anon_sym_BANGis] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_SLASH] = ACTIONS(4030), - [anon_sym_PERCENT] = ACTIONS(4030), - [anon_sym_as_QMARK] = ACTIONS(4032), - [anon_sym_PLUS_PLUS] = ACTIONS(4032), - [anon_sym_DASH_DASH] = ACTIONS(4032), - [anon_sym_BANG_BANG] = ACTIONS(4032), - [anon_sym_data] = ACTIONS(4030), - [anon_sym_inner] = ACTIONS(4030), - [anon_sym_value] = ACTIONS(4030), - [anon_sym_expect] = ACTIONS(4030), - [anon_sym_actual] = ACTIONS(4030), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4032), - [sym_safe_nav] = ACTIONS(4032), - [sym_multiline_comment] = ACTIONS(3), - }, - [4646] = { - [sym_catch_block] = STATE(4656), - [sym_finally_block] = STATE(4914), - [aux_sym_try_expression_repeat1] = STATE(4656), - [sym__alpha_identifier] = ACTIONS(4130), - [anon_sym_AT] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_RBRACK] = ACTIONS(4132), - [anon_sym_as] = ACTIONS(4130), - [anon_sym_EQ] = ACTIONS(4130), - [anon_sym_LBRACE] = ACTIONS(4132), - [anon_sym_RBRACE] = ACTIONS(4132), - [anon_sym_LPAREN] = ACTIONS(4132), - [anon_sym_COMMA] = ACTIONS(4132), - [anon_sym_RPAREN] = ACTIONS(4132), - [anon_sym_LT] = ACTIONS(4130), - [anon_sym_GT] = ACTIONS(4130), - [anon_sym_where] = ACTIONS(4130), - [anon_sym_DOT] = ACTIONS(4130), - [anon_sym_SEMI] = ACTIONS(4132), - [anon_sym_get] = ACTIONS(4130), - [anon_sym_set] = ACTIONS(4130), - [anon_sym_STAR] = ACTIONS(4130), - [anon_sym_DASH_GT] = ACTIONS(4132), - [sym_label] = ACTIONS(4132), - [anon_sym_in] = ACTIONS(4130), - [anon_sym_while] = ACTIONS(4130), - [anon_sym_DOT_DOT] = ACTIONS(4132), - [anon_sym_QMARK_COLON] = ACTIONS(4132), - [anon_sym_AMP_AMP] = ACTIONS(4132), - [anon_sym_PIPE_PIPE] = ACTIONS(4132), - [anon_sym_else] = ACTIONS(4130), - [anon_sym_catch] = ACTIONS(8228), - [anon_sym_finally] = ACTIONS(8230), - [anon_sym_COLON_COLON] = ACTIONS(4132), - [anon_sym_PLUS_EQ] = ACTIONS(4132), - [anon_sym_DASH_EQ] = ACTIONS(4132), - [anon_sym_STAR_EQ] = ACTIONS(4132), - [anon_sym_SLASH_EQ] = ACTIONS(4132), - [anon_sym_PERCENT_EQ] = ACTIONS(4132), - [anon_sym_BANG_EQ] = ACTIONS(4130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4132), - [anon_sym_EQ_EQ] = ACTIONS(4130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4132), - [anon_sym_LT_EQ] = ACTIONS(4132), - [anon_sym_GT_EQ] = ACTIONS(4132), - [anon_sym_BANGin] = ACTIONS(4132), - [anon_sym_is] = ACTIONS(4130), - [anon_sym_BANGis] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4130), - [anon_sym_DASH] = ACTIONS(4130), - [anon_sym_SLASH] = ACTIONS(4130), - [anon_sym_PERCENT] = ACTIONS(4130), - [anon_sym_as_QMARK] = ACTIONS(4132), - [anon_sym_PLUS_PLUS] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4132), - [anon_sym_BANG_BANG] = ACTIONS(4132), - [anon_sym_data] = ACTIONS(4130), - [anon_sym_inner] = ACTIONS(4130), - [anon_sym_value] = ACTIONS(4130), - [anon_sym_expect] = ACTIONS(4130), - [anon_sym_actual] = ACTIONS(4130), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4132), - [sym_safe_nav] = ACTIONS(4132), + [anon_sym_RBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4030), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_while] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4043), + [anon_sym_DASH_EQ] = ACTIONS(4043), + [anon_sym_STAR_EQ] = ACTIONS(4043), + [anon_sym_SLASH_EQ] = ACTIONS(4043), + [anon_sym_PERCENT_EQ] = ACTIONS(4043), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), [sym_multiline_comment] = ACTIONS(3), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 5, - ACTIONS(8232), 1, - anon_sym_DOT, - STATE(4660), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4225), 27, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4227), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [75] = 5, - ACTIONS(8235), 1, - anon_sym_DOT, - STATE(4648), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4189), 27, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4191), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [150] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8238), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4708), 1, - sym_type_constraints, - STATE(4898), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4209), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4211), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [235] = 5, - ACTIONS(8244), 1, - anon_sym_LT, - STATE(4701), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4179), 27, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4177), 33, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [310] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8246), 1, - anon_sym_COLON, - STATE(4715), 1, - sym_type_constraints, - STATE(4842), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4164), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4166), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [395] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8248), 1, - anon_sym_COLON, - STATE(4709), 1, - sym_type_constraints, - STATE(4930), 1, - sym__block, - STATE(5001), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4196), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4198), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [480] = 5, - ACTIONS(8250), 1, - anon_sym_LT, - STATE(4673), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4177), 27, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4179), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [555] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8252), 1, - anon_sym_COLON, - STATE(4729), 1, - sym_type_constraints, - STATE(4853), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4183), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4185), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [640] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8254), 1, - anon_sym_COLON, - STATE(4712), 1, - sym_type_constraints, - STATE(4883), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4154), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4156), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [725] = 5, - ACTIONS(8256), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4656), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - ACTIONS(4170), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_finally, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4172), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [800] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4015), 28, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4010), 34, - anon_sym_COLON, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [871] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4217), 28, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4215), 34, - anon_sym_COLON, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [942] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4215), 29, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4217), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [1013] = 5, - ACTIONS(8259), 1, - anon_sym_DOT, - STATE(4648), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4202), 27, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4204), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [1088] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4010), 29, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4015), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [1159] = 8, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8262), 1, - anon_sym_COLON, - STATE(4897), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4321), 24, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4323), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [1239] = 7, - STATE(5218), 1, - sym_annotated_lambda, - STATE(5302), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(6131), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8622), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(4082), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4084), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [1317] = 5, - ACTIONS(8264), 1, - anon_sym_DOT, - STATE(4693), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4227), 27, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4225), 32, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [1391] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4335), 28, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4337), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [1461] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4734), 1, - sym_type_constraints, - STATE(4930), 1, - sym__block, - STATE(4972), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4287), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4289), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [1543] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4731), 1, - sym_type_constraints, - STATE(4930), 1, - sym__block, - STATE(4951), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4291), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4293), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [1625] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4232), 28, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4234), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [1695] = 8, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(8266), 1, - anon_sym_COLON, - STATE(4743), 1, - sym_type_constraints, - STATE(4829), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4281), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4283), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [1775] = 11, - ACTIONS(4038), 1, - anon_sym_LBRACK, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4043), 1, - anon_sym_DOT, - STATE(7875), 1, - sym__member_access_operator, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4046), 2, - sym_safe_nav, - anon_sym_COLON_COLON, - ACTIONS(4051), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(4049), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - STATE(7443), 5, - sym_indexing_suffix, - sym_navigation_suffix, - sym__postfix_unary_operator, - sym__postfix_unary_suffix, - aux_sym__postfix_unary_expression_repeat1, - ACTIONS(4036), 20, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - sym__backtick_identifier, - ACTIONS(4034), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [1861] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4189), 28, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4191), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [1931] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8268), 1, - anon_sym_COLON, - STATE(4805), 1, - sym_type_constraints, - STATE(4829), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4281), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4283), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [2011] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4317), 28, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4319), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [2081] = 8, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(5695), 1, - anon_sym_COLON, - STATE(4740), 1, - sym_type_constraints, - STATE(4840), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3284), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3288), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [2161] = 7, - STATE(5302), 1, - sym_lambda_literal, - STATE(5387), 1, - sym_annotated_lambda, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(6131), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8622), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(4030), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4032), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [2239] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5683), 1, - anon_sym_COLON, - STATE(4809), 1, - sym_type_constraints, - STATE(4840), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3284), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3288), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [2319] = 8, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(8270), 1, - anon_sym_COLON, - STATE(4739), 1, - sym_type_constraints, - STATE(4895), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4256), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4258), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [2399] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8272), 1, - anon_sym_COLON, - STATE(4801), 1, - sym_type_constraints, - STATE(4895), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4256), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4258), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [2479] = 8, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(5713), 1, - anon_sym_COLON, - STATE(4781), 1, - sym_type_constraints, - STATE(4975), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3292), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3296), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [2559] = 5, - ACTIONS(8274), 1, - sym__quest, - STATE(4680), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4262), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4264), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [2633] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5715), 1, - anon_sym_COLON, - STATE(4769), 1, - sym_type_constraints, - STATE(4975), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3292), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3296), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [2713] = 4, - ACTIONS(8277), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4297), 27, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4299), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [2785] = 5, - ACTIONS(8279), 1, - sym__quest, - STATE(4695), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4327), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4329), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [2859] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4729), 1, - sym_type_constraints, - STATE(4853), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4183), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4185), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [2941] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4715), 1, - sym_type_constraints, - STATE(4842), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4164), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4166), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [3023] = 8, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8281), 1, - anon_sym_COLON, - STATE(4930), 1, - sym__block, - STATE(4937), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4269), 24, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4271), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [3103] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8283), 1, - anon_sym_COLON, - STATE(4757), 1, - sym_type_constraints, - STATE(4952), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4275), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4277), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [3183] = 8, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8285), 1, - anon_sym_COLON, - STATE(4837), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4339), 24, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4341), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [3263] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4712), 1, - sym_type_constraints, - STATE(4883), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4154), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4156), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [3345] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5719), 1, - anon_sym_COLON, - STATE(4750), 1, - sym_type_constraints, - STATE(4873), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3276), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3280), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [3425] = 11, - ACTIONS(4038), 1, - anon_sym_LBRACK, - ACTIONS(4043), 1, - anon_sym_DOT, - ACTIONS(4070), 1, - anon_sym_EQ, - STATE(7875), 1, - sym__member_access_operator, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4046), 2, - sym_safe_nav, - anon_sym_COLON_COLON, - ACTIONS(4051), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(4073), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - STATE(7443), 5, - sym_indexing_suffix, - sym_navigation_suffix, - sym__postfix_unary_operator, - sym__postfix_unary_suffix, - aux_sym__postfix_unary_expression_repeat1, - ACTIONS(4036), 20, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - sym__backtick_identifier, - ACTIONS(4034), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [3511] = 5, - ACTIONS(8287), 1, - anon_sym_DOT, - STATE(4692), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4191), 27, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4189), 32, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [3585] = 5, - ACTIONS(8290), 1, - anon_sym_DOT, - STATE(4692), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4204), 27, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4202), 32, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [3659] = 5, - ACTIONS(8279), 1, - sym__quest, - STATE(4695), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4250), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4252), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [3733] = 5, - ACTIONS(8292), 1, - sym__quest, - STATE(4680), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4363), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4365), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [3807] = 4, - ACTIONS(8294), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4297), 27, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4299), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [3879] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4191), 27, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4189), 33, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [3948] = 7, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - STATE(4766), 1, - sym_type_constraints, - STATE(4957), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4423), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4425), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [4025] = 7, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(4807), 1, - sym_type_constraints, - STATE(4957), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4423), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4425), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [4102] = 5, - ACTIONS(8296), 1, - aux_sym_unsigned_literal_token1, - ACTIONS(8298), 1, - anon_sym_L, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4487), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4489), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [4175] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4319), 27, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4317), 33, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [4244] = 7, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - STATE(4791), 1, - sym_type_constraints, - STATE(4942), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4469), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4471), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [4321] = 7, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - STATE(4805), 1, - sym_type_constraints, - STATE(4829), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4281), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4283), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [4398] = 6, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(8300), 1, - anon_sym_COLON, - STATE(4830), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4443), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4445), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [4473] = 7, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4885), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4518), 24, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4520), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [4550] = 7, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(4743), 1, - sym_type_constraints, - STATE(4829), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4281), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4283), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [4627] = 7, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4924), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4530), 24, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4532), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [4704] = 7, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4930), 1, - sym__block, - STATE(5001), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4196), 24, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4198), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [4781] = 7, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4883), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4154), 24, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4156), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [4858] = 6, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_COLON, - STATE(4935), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4427), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4429), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [4933] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4377), 27, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4379), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [5002] = 7, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4842), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4164), 24, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4166), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [5079] = 7, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4837), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4339), 24, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4341), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [5156] = 7, - ACTIONS(8304), 1, - anon_sym_catch, - ACTIONS(8306), 1, - anon_sym_finally, - STATE(5267), 1, - sym_finally_block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4779), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - ACTIONS(4130), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4132), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [5233] = 7, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4853), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4183), 24, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4185), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [5310] = 7, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(4783), 1, - sym_type_constraints, - STATE(4961), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4385), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4387), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [5387] = 7, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - STATE(4786), 1, - sym_type_constraints, - STATE(4961), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4385), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4387), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [5464] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4381), 27, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4383), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [5533] = 4, - ACTIONS(4315), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4311), 27, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4313), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [5604] = 7, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(4739), 1, - sym_type_constraints, - STATE(4895), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4256), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4258), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [5681] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4337), 27, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4335), 33, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [5750] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4373), 27, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4375), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [5819] = 7, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - STATE(4801), 1, - sym_type_constraints, - STATE(4895), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4256), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4258), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [5896] = 7, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - STATE(4800), 1, - sym_type_constraints, - STATE(4917), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4461), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4463), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [5973] = 7, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(4751), 1, - sym_type_constraints, - STATE(4847), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4465), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4467), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [6050] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4010), 28, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4015), 32, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [6119] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4215), 28, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4217), 32, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [6188] = 7, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(4789), 1, - sym_type_constraints, - STATE(4990), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4457), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4459), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [6265] = 7, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4930), 1, - sym__block, - STATE(4951), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4291), 24, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4293), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [6342] = 5, - ACTIONS(8308), 1, - anon_sym_DOT, - STATE(4660), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4225), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4227), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [6415] = 7, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4930), 1, - sym__block, - STATE(4972), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4287), 24, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4289), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [6492] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4234), 27, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4232), 33, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [6561] = 7, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - STATE(4757), 1, - sym_type_constraints, - STATE(4952), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4275), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4277), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [6638] = 7, - ACTIONS(8240), 1, - anon_sym_EQ, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4930), 1, - sym__block, - STATE(4989), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4453), 24, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4455), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [6715] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4449), 27, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4451), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [6784] = 5, - ACTIONS(8311), 1, - anon_sym_by, - STATE(4986), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4435), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4437), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [6857] = 7, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - STATE(4787), 1, - sym_type_constraints, - STATE(4990), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4457), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4459), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [6934] = 7, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - STATE(4746), 1, - sym_type_constraints, - STATE(4847), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4465), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4467), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [7011] = 5, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(4957), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4423), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4425), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [7083] = 5, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(4829), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4281), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4283), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [7155] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4691), 26, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4693), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [7223] = 5, - ACTIONS(8313), 1, - sym__quest, - STATE(4745), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4365), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4363), 32, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [7295] = 5, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(4990), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4457), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4459), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [7367] = 5, - ACTIONS(8315), 1, - sym__quest, - STATE(4742), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4329), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4327), 32, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [7439] = 5, - ACTIONS(8317), 1, - sym__quest, - STATE(4745), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4264), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4262), 32, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [7511] = 5, - ACTIONS(5552), 1, - anon_sym_LBRACE, - STATE(4948), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4772), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4774), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [7583] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4730), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4733), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [7651] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4790), 26, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4792), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [7719] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4786), 26, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4788), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [7787] = 5, - ACTIONS(5552), 1, - anon_sym_LBRACE, - STATE(4952), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4275), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4277), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [7859] = 5, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(4948), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4772), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4774), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [7931] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4726), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4728), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [7999] = 5, - ACTIONS(5552), 1, - anon_sym_LBRACE, - STATE(4975), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3292), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3296), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [8071] = 5, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(4975), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3292), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3296), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [8143] = 5, - ACTIONS(5552), 1, - anon_sym_LBRACE, - STATE(4956), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4722), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4724), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [8215] = 4, - STATE(4810), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4740), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4742), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [8285] = 5, - ACTIONS(5552), 1, - anon_sym_LBRACE, - STATE(4917), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4461), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4463), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [8357] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4758), 26, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4760), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [8425] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8320), 1, - anon_sym_COLON, - ACTIONS(8322), 1, - anon_sym_EQ, - STATE(4898), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5121), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4209), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4211), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [8507] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4677), 26, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4679), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [8575] = 5, - ACTIONS(8324), 1, - anon_sym_DOT, - STATE(4761), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4189), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4191), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [8647] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4744), 26, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4746), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [8715] = 10, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(8327), 1, - anon_sym_COLON, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_LBRACE, - STATE(5200), 1, - sym_type_constraints, - STATE(5494), 1, - sym_function_body, - STATE(5534), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4156), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4154), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [8797] = 4, - ACTIONS(8333), 1, - anon_sym_AT2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4641), 26, - anon_sym_AT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4643), 32, - sym_safe_nav, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [8867] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - ACTIONS(8335), 1, - anon_sym_COLON, - STATE(4930), 1, - sym__block, - STATE(5001), 1, - sym_function_body, - STATE(5122), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4196), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4198), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [8949] = 5, - ACTIONS(5552), 1, - anon_sym_LBRACE, - STATE(4847), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4465), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4467), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [9021] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - ACTIONS(8337), 1, - anon_sym_COLON, - STATE(4883), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5123), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4154), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4156), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [9103] = 5, - ACTIONS(8315), 1, - sym__quest, - STATE(4742), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4252), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4250), 32, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [9175] = 5, - ACTIONS(5552), 1, - anon_sym_LBRACE, - STATE(4895), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4256), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4258), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [9247] = 5, - ACTIONS(8339), 1, - anon_sym_LT, - STATE(4994), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4177), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4179), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [9319] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4681), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4683), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [9387] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4695), 26, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4697), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [9455] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - ACTIONS(8341), 1, - anon_sym_COLON, - STATE(4842), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5125), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4164), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4166), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [9537] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4587), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4589), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [9605] = 4, - ACTIONS(8311), 1, - anon_sym_by, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4435), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4437), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [9675] = 4, - ACTIONS(8343), 1, - anon_sym_L, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4653), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4655), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [9745] = 4, - ACTIONS(8345), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4299), 26, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4297), 32, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [9815] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - ACTIONS(8347), 1, - anon_sym_COLON, - STATE(4853), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5128), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4183), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4185), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [9897] = 5, - ACTIONS(8349), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4779), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - ACTIONS(4170), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_finally, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4172), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [9969] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4667), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4669), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [10037] = 5, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(4895), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4256), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4258), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [10109] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4748), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4750), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [10177] = 5, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(4980), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4595), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4597), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [10249] = 4, - ACTIONS(8352), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4299), 26, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4297), 32, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [10319] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4766), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4769), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [10387] = 5, - ACTIONS(5552), 1, - anon_sym_LBRACE, - STATE(4980), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4595), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4597), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [10459] = 5, - ACTIONS(5552), 1, - anon_sym_LBRACE, - STATE(4961), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4385), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4387), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [10531] = 5, - ACTIONS(8354), 1, - anon_sym_DOT, - STATE(4803), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4225), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, + [4529] = { + [sym_annotated_lambda] = STATE(4777), + [sym_lambda_literal] = STATE(4864), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_RBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_DASH_GT] = ACTIONS(3994), + [sym_label] = ACTIONS(3994), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_while] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + }, + [4530] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_RBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4030), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_while] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4053), + [anon_sym_DASH_EQ] = ACTIONS(4053), + [anon_sym_STAR_EQ] = ACTIONS(4053), + [anon_sym_SLASH_EQ] = ACTIONS(4053), + [anon_sym_PERCENT_EQ] = ACTIONS(4053), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), + }, + [4531] = { + [sym_annotated_lambda] = STATE(4719), + [sym_lambda_literal] = STATE(4864), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_DASH_GT] = ACTIONS(4002), + [sym_label] = ACTIONS(4002), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_while] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + }, + [4532] = { + [sym_catch_block] = STATE(4542), + [sym_finally_block] = STATE(4709), + [aux_sym_try_expression_repeat1] = STATE(4542), + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_RBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_RPAREN] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_DASH_GT] = ACTIONS(4096), + [sym_label] = ACTIONS(4096), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_while] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_catch] = ACTIONS(8096), + [anon_sym_finally] = ACTIONS(8098), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), + [sym_multiline_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 10, + ACTIONS(5582), 1, anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4227), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [10603] = 5, - ACTIONS(5566), 1, + ACTIONS(8100), 1, + anon_sym_COLON, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4961), 1, - sym_enum_class_body, + STATE(4588), 1, + sym_type_constraints, + STATE(4711), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 25, + ACTIONS(4173), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -505790,7 +484364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 32, + ACTIONS(4175), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -505823,20 +484397,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10675] = 3, + [85] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4685), 26, + ACTIONS(4004), 29, anon_sym_COLON, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -505854,7 +484431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4687), 33, + ACTIONS(4009), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -505888,20 +484465,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10743] = 5, - ACTIONS(5552), 1, + [156] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4846), 1, - sym_class_body, + ACTIONS(8106), 1, + anon_sym_COLON, + STATE(4586), 1, + sym_type_constraints, + STATE(4800), 1, + sym__block, + STATE(4871), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4637), 25, + ACTIONS(4137), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -505922,7 +484507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4639), 32, + ACTIONS(4139), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -505955,20 +484540,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10815] = 5, - ACTIONS(5552), 1, + [241] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4840), 1, - sym_class_body, + ACTIONS(8108), 1, + anon_sym_COLON, + STATE(4619), 1, + sym_type_constraints, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3284), 25, + ACTIONS(4160), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -505989,7 +484582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3288), 32, + ACTIONS(4162), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -506022,88 +484615,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10887] = 3, + [326] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 26, - anon_sym_as, + ACTIONS(4181), 28, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_by, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4179), 34, + anon_sym_COLON, + anon_sym_by, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4329), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [10955] = 5, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(4840), 1, - sym_enum_class_body, + [397] = 5, + ACTIONS(8110), 1, + anon_sym_LT, + STATE(4554), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3284), 25, + ACTIONS(4128), 27, anon_sym_as, anon_sym_EQ, - anon_sym_LT, + anon_sym_by, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -506121,11 +484719,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3288), 32, + ACTIONS(4189), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -506154,25 +484753,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11027] = 10, - ACTIONS(5868), 1, + [472] = 10, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8357), 1, - anon_sym_COLON, - ACTIONS(8359), 1, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(8361), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(5063), 1, + ACTIONS(8112), 1, + anon_sym_COLON, + STATE(4584), 1, sym_type_constraints, - STATE(5347), 1, + STATE(4757), 1, sym_function_body, - STATE(5351), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4209), 22, + ACTIONS(4147), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -506181,6 +484780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -506195,15 +484795,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4211), 30, - sym__automatic_semicolon, + ACTIONS(4149), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -506226,20 +484828,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11109] = 3, + [557] = 5, + ACTIONS(8114), 1, + anon_sym_DOT, + STATE(4546), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4591), 26, - anon_sym_COLON, + ACTIONS(4193), 27, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -506257,7 +484864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4593), 33, + ACTIONS(4195), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -506291,23 +484898,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11177] = 5, - ACTIONS(5552), 1, - anon_sym_LBRACE, - STATE(4983), 1, - sym_class_body, + [632] = 5, + ACTIONS(8117), 1, + anon_sym_DOT, + STATE(4541), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4754), 25, + ACTIONS(4166), 27, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -506325,11 +484934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4756), 32, + ACTIONS(4168), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -506358,12 +484968,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11249] = 3, + [707] = 5, + ACTIONS(8120), 1, + anon_sym_catch, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4714), 26, - anon_sym_COLON, + STATE(4542), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4130), 26, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -506376,6 +484990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_while, anon_sym_else, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -506389,7 +485004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4716), 33, + ACTIONS(4132), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -506423,25 +485038,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11317] = 10, - ACTIONS(5868), 1, + [782] = 10, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8359), 1, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(8361), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8363), 1, + ACTIONS(8123), 1, anon_sym_COLON, - STATE(5076), 1, + STATE(4582), 1, sym_type_constraints, - STATE(5307), 1, + STATE(4775), 1, sym_function_body, - STATE(5351), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 22, + ACTIONS(4183), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -506450,6 +485065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -506464,15 +485080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 30, - sym__automatic_semicolon, + ACTIONS(4185), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -506495,154 +485113,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11399] = 5, - ACTIONS(5552), 1, - anon_sym_LBRACE, - STATE(4942), 1, - sym_class_body, + [867] = 5, + ACTIONS(8125), 1, + anon_sym_LT, + STATE(4610), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4469), 25, - anon_sym_as, + ACTIONS(4189), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4128), 33, + anon_sym_by, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4471), 32, - sym_safe_nav, + [942] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4009), 28, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [11471] = 5, - ACTIONS(5552), 1, - anon_sym_LBRACE, - STATE(4957), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4423), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4004), 34, + anon_sym_COLON, + anon_sym_by, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4425), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [11543] = 3, + [1013] = 5, + ACTIONS(8127), 1, + anon_sym_DOT, + STATE(4541), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4699), 26, - anon_sym_COLON, + ACTIONS(4153), 27, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -506660,7 +485287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4701), 33, + ACTIONS(4155), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -506694,27 +485321,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11611] = 5, - ACTIONS(8365), 1, - anon_sym_DOT, - STATE(4761), 1, - aux_sym_user_type_repeat1, + [1088] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4202), 26, + ACTIONS(4179), 29, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_AMP, sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -506729,16 +485355,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4204), 31, - sym__automatic_semicolon, + ACTIONS(4181), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -506761,31 +485389,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11683] = 10, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_LBRACE, - ACTIONS(8368), 1, - anon_sym_COLON, - STATE(5208), 1, - sym_type_constraints, - STATE(5534), 1, - sym__block, - STATE(5573), 1, - sym_function_body, + [1159] = 5, + ACTIONS(8130), 1, + anon_sym_DOT, + STATE(4568), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4166), 22, + ACTIONS(4195), 27, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -506802,9 +485425,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4164), 30, - anon_sym_fun, + ACTIONS(4193), 32, + anon_sym_by, + anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -506833,23 +485458,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [11765] = 5, - ACTIONS(5552), 1, + [1233] = 11, + ACTIONS(4032), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_EQ, + ACTIONS(4037), 1, + anon_sym_DOT, + STATE(7730), 1, + sym__member_access_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4040), 2, + sym_safe_nav, + anon_sym_COLON_COLON, + ACTIONS(4045), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + ACTIONS(4043), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + STATE(7209), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(4030), 20, + sym__automatic_semicolon, + anon_sym_AT, anon_sym_LBRACE, - STATE(4990), 1, - sym_class_body, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + sym__backtick_identifier, + ACTIONS(4028), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [1319] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4457), 25, + ACTIONS(4313), 28, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -506867,11 +485566,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4459), 32, + ACTIONS(4315), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -506900,52 +485600,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11837] = 10, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8359), 1, + [1389] = 11, + ACTIONS(4032), 1, + anon_sym_LBRACK, + ACTIONS(4037), 1, + anon_sym_DOT, + ACTIONS(4050), 1, anon_sym_EQ, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8370), 1, - anon_sym_COLON, - STATE(5083), 1, - sym_type_constraints, - STATE(5234), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + STATE(7730), 1, + sym__member_access_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4156), 30, - sym__automatic_semicolon, + ACTIONS(4040), 2, sym_safe_nav, + anon_sym_COLON_COLON, + ACTIONS(4045), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + ACTIONS(4053), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + STATE(7209), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(4030), 20, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -506955,12 +485644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -506968,30 +485651,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_BANGis, anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, sym__backtick_identifier, - [11919] = 5, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(4847), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4465), 25, + ACTIONS(4028), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -507006,59 +485675,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4467), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [11991] = 10, - ACTIONS(5868), 1, + [1475] = 8, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8372), 1, + ACTIONS(8132), 1, anon_sym_COLON, - STATE(5087), 1, + STATE(4676), 1, sym_type_constraints, - STATE(5346), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + STATE(4891), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 22, + ACTIONS(4327), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -507066,6 +485699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -507080,15 +485714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 30, - sym__automatic_semicolon, + ACTIONS(4329), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -507111,20 +485747,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12073] = 5, - ACTIONS(5552), 1, + [1555] = 8, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(4829), 1, - sym_class_body, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5653), 1, + anon_sym_COLON, + STATE(4659), 1, + sym_type_constraints, + STATE(4748), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 25, + ACTIONS(3278), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -507145,7 +485786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 32, + ACTIONS(3282), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -507178,23 +485819,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12145] = 5, - ACTIONS(8374), 1, - anon_sym_COMMA, - STATE(4810), 1, - aux_sym__delegation_specifiers_repeat1, + [1635] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4705), 25, + ACTIONS(4335), 28, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -507212,7 +485852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4707), 32, + ACTIONS(4337), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -507220,6 +485860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_DASH_GT, @@ -507245,87 +485886,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12217] = 10, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_LBRACE, - ACTIONS(8377), 1, - anon_sym_COLON, - STATE(5198), 1, - sym_type_constraints, - STATE(5471), 1, - sym_function_body, - STATE(5534), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4185), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4183), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [12299] = 5, - ACTIONS(8379), 1, - anon_sym_COMMA, - STATE(4820), 1, - aux_sym_type_constraints_repeat1, + [1705] = 7, + STATE(5158), 1, + sym_lambda_literal, + STATE(5180), 1, + sym_annotated_lambda, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4506), 25, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8351), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(3992), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -507336,7 +485911,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -507351,17 +485925,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4508), 32, + ACTIONS(3994), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -507384,20 +485957,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12371] = 5, - ACTIONS(5552), 1, + [1783] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4873), 1, + ACTIONS(5655), 1, + anon_sym_COLON, + STATE(4621), 1, + sym_type_constraints, + STATE(4748), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 25, + ACTIONS(3278), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -507418,7 +485996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 32, + ACTIONS(3282), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -507451,87 +486029,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12443] = 5, - ACTIONS(8290), 1, - anon_sym_DOT, - STATE(4693), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4227), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, + [1863] = 8, + ACTIONS(5578), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4225), 32, - anon_sym_fun, - anon_sym_by, + ACTIONS(5582), 1, anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [12515] = 5, - ACTIONS(8379), 1, - anon_sym_COMMA, - STATE(4812), 1, - aux_sym_type_constraints_repeat1, + ACTIONS(8134), 1, + anon_sym_COLON, + STATE(4672), 1, + sym_type_constraints, + STATE(4809), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4541), 25, + ACTIONS(4216), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -507552,14 +486068,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4543), 32, + ACTIONS(4218), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_DASH_GT, @@ -507585,227 +486101,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12587] = 4, - ACTIONS(4315), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4313), 26, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4311), 32, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [12657] = 10, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_LBRACE, - ACTIONS(8381), 1, - anon_sym_COLON, - STATE(5199), 1, - sym_type_constraints, - STATE(5492), 1, - sym_function_body, - STATE(5534), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4211), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4209), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [12739] = 10, - ACTIONS(5894), 1, + [1943] = 8, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8383), 1, + ACTIONS(8136), 1, anon_sym_COLON, - STATE(5141), 1, + STATE(4682), 1, sym_type_constraints, - STATE(5477), 1, - sym_function_body, - STATE(5534), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4198), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4196), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [12821] = 3, + STATE(4809), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4776), 26, + ACTIONS(4216), 24, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -507826,12 +486140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4778), 33, + ACTIONS(4218), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -507860,17 +486173,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12889] = 5, - ACTIONS(8385), 1, - anon_sym_COMMA, - STATE(4820), 1, - aux_sym_type_constraints_repeat1, + [2023] = 5, + ACTIONS(8138), 1, + sym__quest, + STATE(4569), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 25, + ACTIONS(4247), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -507894,7 +486208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4497), 32, + ACTIONS(4249), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -507902,6 +486216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_DASH_GT, @@ -507927,26 +486242,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12961] = 10, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, + [2097] = 8, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(8388), 1, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5659), 1, anon_sym_COLON, - STATE(5089), 1, + STATE(4694), 1, sym_type_constraints, - STATE(5351), 1, - sym__block, - STATE(5403), 1, - sym_function_body, + STATE(4786), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 22, + ACTIONS(3286), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -507954,6 +486266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -507968,15 +486281,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 30, - sym__automatic_semicolon, + ACTIONS(3290), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -507999,13 +486314,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13043] = 3, + [2177] = 8, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8140), 1, + anon_sym_COLON, + STATE(4763), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5111), 25, + ACTIONS(4307), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -508029,12 +486353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5113), 33, + ACTIONS(4309), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -508063,16 +486386,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13110] = 3, + [2257] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8142), 1, + anon_sym_COLON, + STATE(4634), 1, + sym_type_constraints, + STATE(4846), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5165), 25, + ACTIONS(4321), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -508093,12 +486425,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5167), 33, + ACTIONS(4323), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -508127,13 +486458,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13177] = 3, + [2337] = 8, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4802), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1808), 25, + ACTIONS(4229), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -508157,12 +486497,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1810), 33, + ACTIONS(4231), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -508191,13 +486530,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13244] = 3, + [2417] = 8, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8146), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4813), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5091), 25, + ACTIONS(4275), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -508221,12 +486569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5093), 33, + ACTIONS(4277), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -508255,16 +486602,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13311] = 3, + [2497] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(5651), 1, + anon_sym_COLON, + STATE(4624), 1, + sym_type_constraints, + STATE(4759), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(209), 25, + ACTIONS(3270), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -508285,12 +486641,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(207), 33, + ACTIONS(3274), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -508319,11 +486674,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13378] = 3, + [2577] = 7, + STATE(5158), 1, + sym_lambda_literal, + STATE(5247), 1, + sym_annotated_lambda, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4840), 25, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8351), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(4000), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -508334,6 +486699,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4002), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [2655] = 5, + ACTIONS(8148), 1, + anon_sym_DOT, + STATE(4567), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4168), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4166), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [2729] = 5, + ACTIONS(8151), 1, + anon_sym_DOT, + STATE(4567), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4155), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4153), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [2803] = 5, + ACTIONS(8153), 1, + sym__quest, + STATE(4569), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4222), 26, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, @@ -508349,7 +486918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4842), 33, + ACTIONS(4224), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -508383,16 +486952,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13445] = 3, + [2877] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4607), 1, + sym_type_constraints, + STATE(4800), 1, + sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4381), 25, + ACTIONS(4295), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -508413,12 +486992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4383), 33, + ACTIONS(4297), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -508447,16 +487025,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13512] = 3, + [2959] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4618), 1, + sym_type_constraints, + STATE(4699), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4457), 25, + ACTIONS(4299), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -508477,12 +487065,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4459), 33, + ACTIONS(4301), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -508511,16 +487098,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13579] = 3, + [3041] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4582), 1, + sym_type_constraints, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5099), 25, + ACTIONS(4183), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -508541,12 +487138,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5101), 33, + ACTIONS(4185), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -508575,83 +487171,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13646] = 9, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_LBRACE, - STATE(5192), 1, - sym_type_constraints, - STATE(5487), 1, - sym_function_body, - STATE(5534), 1, - sym__block, + [3123] = 4, + ACTIONS(8156), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4293), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4291), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(4237), 27, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + sym__quest, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [13725] = 3, + ACTIONS(4239), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [3195] = 5, + ACTIONS(8158), 1, + sym__quest, + STATE(4559), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5215), 25, + ACTIONS(4204), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -508675,7 +487274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5217), 33, + ACTIONS(4206), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -508709,26 +487308,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13792] = 5, - ACTIONS(5032), 1, - anon_sym_EQ, + [3269] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5034), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4377), 24, + ACTIONS(4317), 28, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -508746,7 +487341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4379), 28, + ACTIONS(4319), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -508764,6 +487359,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -508775,16 +487375,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13863] = 3, + [3339] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4619), 1, + sym_type_constraints, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3344), 25, + ACTIONS(4160), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -508805,12 +487415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3346), 33, + ACTIONS(4162), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -508839,19 +487448,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13930] = 3, + [3421] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4888), 25, + ACTIONS(4166), 28, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -508869,7 +487481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4890), 33, + ACTIONS(4168), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -508903,19 +487515,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13997] = 3, + [3491] = 4, + ACTIONS(8160), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1816), 25, + ACTIONS(4237), 27, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -508933,7 +487549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1818), 33, + ACTIONS(4239), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -508967,16 +487583,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14064] = 3, + [3563] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4584), 1, + sym_type_constraints, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 25, + ACTIONS(4147), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -508997,12 +487623,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 33, + ACTIONS(4149), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -509031,13 +487656,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14131] = 3, + [3645] = 5, + ACTIONS(8158), 1, + sym__quest, + STATE(4559), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3130), 25, + ACTIONS(4303), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -509061,7 +487691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3132), 33, + ACTIONS(4305), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -509095,86 +487725,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14198] = 9, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, + [3719] = 7, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(5190), 1, + ACTIONS(5582), 1, + anon_sym_where, + STATE(4634), 1, sym_type_constraints, - STATE(5504), 1, - sym_function_body, - STATE(5534), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4289), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4287), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [14277] = 3, + STATE(4846), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 25, + ACTIONS(4321), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -509195,12 +487762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 33, + ACTIONS(4323), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -509229,13 +487795,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14344] = 3, + [3796] = 7, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4800), 1, + sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5161), 25, + ACTIONS(4295), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -509259,12 +487832,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5163), 33, + ACTIONS(4297), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -509293,16 +487865,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14411] = 3, + [3873] = 7, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4657), 1, + sym_type_constraints, + STATE(4715), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 25, + ACTIONS(4359), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -509323,12 +487902,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 33, + ACTIONS(4361), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -509357,13 +487935,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14478] = 3, + [3950] = 7, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5115), 25, + ACTIONS(4160), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -509387,12 +487972,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5117), 33, + ACTIONS(4162), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -509421,13 +488005,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14545] = 3, + [4027] = 7, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4763), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5119), 25, + ACTIONS(4307), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -509451,12 +488042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5121), 33, + ACTIONS(4309), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -509485,85 +488075,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14612] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8359), 1, + [4104] = 7, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(8361), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(5093), 1, - sym_type_constraints, - STATE(5261), 1, + STATE(4757), 1, sym_function_body, - STATE(5351), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 22, + ACTIONS(4147), 24, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4289), 30, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [14691] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5123), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, @@ -509585,12 +488112,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5125), 33, + ACTIONS(4149), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -509619,11 +488145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14758] = 3, + [4181] = 5, + ACTIONS(8162), 1, + anon_sym_by, + STATE(4787), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4772), 25, + ACTIONS(4505), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -509649,7 +488179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4774), 33, + ACTIONS(4507), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -509683,31 +488213,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14825] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8359), 1, + [4254] = 7, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(8361), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(5090), 1, - sym_type_constraints, - STATE(5297), 1, - sym_function_body, - STATE(5351), 1, + STATE(4800), 1, sym__block, + STATE(4871), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 22, + ACTIONS(4137), 24, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -509722,15 +488250,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4293), 30, - sym__automatic_semicolon, + ACTIONS(4139), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -509753,21 +488283,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14904] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, + [4331] = 7, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(5980), 1, - anon_sym_COLON, - STATE(4750), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4691), 1, sym_type_constraints, - STATE(4873), 1, + STATE(4729), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 24, + ACTIONS(4355), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -509792,14 +488320,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 29, + ACTIONS(4357), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -509822,16 +488353,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14981] = 3, + [4408] = 7, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4627), 1, + sym_type_constraints, + STATE(4744), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4868), 25, + ACTIONS(4493), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -509852,12 +488390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4870), 33, + ACTIONS(4495), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -509886,11 +488423,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15048] = 3, + [4485] = 6, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8164), 1, + anon_sym_COLON, + STATE(4774), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4860), 25, + ACTIONS(4497), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -509916,12 +488459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4862), 33, + ACTIONS(4499), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -509950,86 +488492,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15115] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, + [4560] = 7, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(5089), 1, + ACTIONS(5582), 1, + anon_sym_where, + STATE(4629), 1, sym_type_constraints, - STATE(5351), 1, - sym__block, - STATE(5403), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4183), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4185), 30, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [15194] = 3, + STATE(4740), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 25, + ACTIONS(4463), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -510050,12 +488529,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4293), 33, + ACTIONS(4465), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -510084,11 +488562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15261] = 3, + [4637] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4856), 25, + ACTIONS(4451), 27, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510101,6 +488579,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_while, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -510114,7 +488594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4858), 33, + ACTIONS(4453), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -510148,22 +488628,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15328] = 3, + [4706] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4934), 25, + ACTIONS(4179), 28, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -510178,16 +488661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4936), 33, + ACTIONS(4181), 32, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_DASH_GT, sym_label, @@ -510212,11 +488694,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15395] = 3, + [4775] = 6, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8166), 1, + anon_sym_COLON, + STATE(4749), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4377), 25, + ACTIONS(4349), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510242,12 +488730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4379), 33, + ACTIONS(4351), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -510276,11 +488763,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15462] = 3, + [4850] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5141), 25, + ACTIONS(4485), 27, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510293,6 +488780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_while, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -510306,7 +488795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5143), 33, + ACTIONS(4487), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -510340,26 +488829,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15529] = 10, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, + [4919] = 7, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(8390), 1, - anon_sym_COLON, - ACTIONS(8392), 1, - anon_sym_EQ, - STATE(5344), 1, + ACTIONS(5582), 1, + anon_sym_where, + STATE(4679), 1, sym_type_constraints, - STATE(5346), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + STATE(4825), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 22, + ACTIONS(4481), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -510367,6 +488851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -510381,14 +488866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 29, - sym__automatic_semicolon, + ACTIONS(4483), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -510411,32 +488899,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15610] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, - anon_sym_LBRACE, - STATE(5087), 1, - sym_type_constraints, - STATE(5346), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [4996] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 22, + ACTIONS(4345), 27, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -510450,15 +488931,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 30, - sym__automatic_semicolon, + ACTIONS(4347), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -510481,11 +488965,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15689] = 3, + [5065] = 7, + ACTIONS(8168), 1, + anon_sym_catch, + ACTIONS(8170), 1, + anon_sym_finally, + STATE(5208), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5083), 25, + STATE(4628), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4094), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510496,7 +488989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -510511,18 +489003,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5085), 33, + ACTIONS(4096), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -510545,16 +489035,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15756] = 3, + [5142] = 7, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4682), 1, + sym_type_constraints, + STATE(4809), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5079), 25, + ACTIONS(4216), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -510575,12 +489072,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5081), 33, + ACTIONS(4218), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -510609,16 +489105,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15823] = 3, + [5219] = 7, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + STATE(4672), 1, + sym_type_constraints, + STATE(4809), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4705), 25, + ACTIONS(4216), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -510639,12 +489142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4707), 33, + ACTIONS(4218), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -510673,21 +489175,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15890] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, + [5296] = 7, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8394), 1, - anon_sym_COLON, - STATE(4757), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4676), 1, sym_type_constraints, - STATE(4952), 1, + STATE(4891), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 24, + ACTIONS(4327), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510712,14 +489212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 29, + ACTIONS(4329), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -510742,19 +489245,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15967] = 3, + [5373] = 4, + ACTIONS(4214), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4082), 25, + ACTIONS(4210), 27, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -510772,7 +489279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4084), 33, + ACTIONS(4212), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -510783,7 +489290,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -510806,81 +489312,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16034] = 4, - ACTIONS(8396), 1, - anon_sym_COLON_COLON, + [5444] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5038), 25, - anon_sym_as, + ACTIONS(4315), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4313), 33, + anon_sym_by, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5040), 32, - sym_safe_nav, + [5513] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4319), 27, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [16103] = 3, + ACTIONS(4317), 33, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [5582] = 7, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + STATE(4658), 1, + sym_type_constraints, + STATE(4784), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1732), 25, + ACTIONS(4467), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -510901,12 +489481,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1734), 33, + ACTIONS(4469), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -510935,30 +489514,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16170] = 8, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, + [5659] = 7, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8399), 1, - anon_sym_COLON, - STATE(5103), 1, - sym_type_constraints, - STATE(5247), 1, - sym_enum_class_body, + STATE(4699), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 23, + ACTIONS(4299), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -510973,15 +489551,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 30, - sym__automatic_semicolon, + ACTIONS(4301), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -511004,11 +489584,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16247] = 3, + [5736] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5205), 25, + ACTIONS(4168), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4166), 33, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [5805] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4477), 27, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -511021,6 +489667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_while, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -511034,7 +489682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5207), 33, + ACTIONS(4479), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -511068,13 +489716,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16314] = 3, + [5874] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5131), 25, - anon_sym_as, + ACTIONS(4337), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4335), 33, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [5943] = 7, + ACTIONS(8102), 1, anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4800), 1, + sym__block, + STATE(4886), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4447), 24, + anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -511098,12 +489819,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5133), 33, + ACTIONS(4449), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -511132,22 +489852,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16381] = 3, + [6020] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4718), 25, + ACTIONS(4004), 28, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -511162,16 +489885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4720), 33, + ACTIONS(4009), 32, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_DASH_GT, sym_label, @@ -511196,11 +489918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16448] = 3, + [6089] = 5, + ACTIONS(8172), 1, + aux_sym_unsigned_literal_token1, + ACTIONS(8174), 1, + anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5075), 25, + ACTIONS(4455), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -511226,7 +489952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5077), 33, + ACTIONS(4457), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -511260,15 +489986,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16515] = 4, - ACTIONS(8401), 1, - anon_sym_LT, + [6162] = 7, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4800), 1, + sym__block, + STATE(4881), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5049), 24, + ACTIONS(4443), 24, anon_sym_as, - anon_sym_EQ, + anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, @@ -511291,12 +490023,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5051), 33, + ACTIONS(4445), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -511325,16 +490056,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16584] = 3, + [6239] = 7, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + STATE(4625), 1, + sym_type_constraints, + STATE(4715), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 25, + ACTIONS(4359), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -511355,12 +490093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 33, + ACTIONS(4361), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -511389,17 +490126,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16651] = 3, + [6316] = 5, + ACTIONS(8176), 1, + anon_sym_DOT, + STATE(4546), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5193), 25, + ACTIONS(4193), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -511419,7 +490160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5195), 33, + ACTIONS(4195), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -511453,24 +490194,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16718] = 9, - ACTIONS(5868), 1, + [6389] = 7, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(5083), 1, + STATE(4689), 1, sym_type_constraints, - STATE(5234), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + STATE(4740), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 22, + ACTIONS(4463), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -511478,6 +490216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -511492,15 +490231,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 30, - sym__automatic_semicolon, + ACTIONS(4465), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -511523,84 +490264,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16797] = 10, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8392), 1, + [6466] = 7, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(8403), 1, - anon_sym_COLON, - STATE(5347), 1, - sym_function_body, - STATE(5348), 1, - sym_type_constraints, - STATE(5351), 1, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4800), 1, sym__block, + STATE(4838), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4209), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4211), 29, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [16878] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4956), 25, + ACTIONS(4439), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -511624,12 +490301,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4958), 33, + ACTIONS(4441), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -511658,13 +490334,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16945] = 3, + [6543] = 7, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4852), 25, + ACTIONS(4183), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -511688,12 +490371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4854), 33, + ACTIONS(4185), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -511722,95 +490404,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17012] = 9, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_LBRACE, - STATE(5208), 1, - sym_type_constraints, - STATE(5534), 1, - sym__block, - STATE(5573), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4166), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4164), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [17091] = 4, - ACTIONS(8405), 1, - anon_sym_AMP, + [6620] = 5, + ACTIONS(8179), 1, + anon_sym_COMMA, + STATE(4620), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4297), 26, + ACTIONS(4430), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -511825,16 +490438,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4299), 31, - sym__automatic_semicolon, + ACTIONS(4432), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -511857,81 +490471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17160] = 9, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, + [6692] = 5, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(5200), 1, - sym_type_constraints, - STATE(5494), 1, - sym_function_body, - STATE(5534), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4156), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4154), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [17239] = 3, + STATE(4809), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1622), 25, + ACTIONS(4216), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -511957,12 +490505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1620), 33, + ACTIONS(4218), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -511991,11 +490538,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17306] = 3, + [6764] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 25, + ACTIONS(4577), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -512021,7 +490569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 33, + ACTIONS(4579), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -512055,25 +490603,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17373] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5984), 1, - anon_sym_COLON, - STATE(4769), 1, - sym_type_constraints, - STATE(4975), 1, - sym_class_body, + [6832] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 24, + ACTIONS(4585), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -512094,14 +490634,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3296), 29, + ACTIONS(4587), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -512124,11 +490668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17450] = 3, + [6900] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4891), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5107), 25, + ACTIONS(4327), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -512154,12 +490702,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5109), 33, + ACTIONS(4329), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -512188,25 +490735,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17517] = 8, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, + [6972] = 5, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COLON, - STATE(4781), 1, - sym_type_constraints, - STATE(4975), 1, + STATE(4811), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 24, + ACTIONS(4652), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -512227,14 +490769,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3296), 29, + ACTIONS(4654), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -512257,30 +490802,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17594] = 8, - ACTIONS(5864), 1, + [7044] = 5, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8407), 1, - anon_sym_COLON, - STATE(5107), 1, - sym_type_constraints, - STATE(5247), 1, - sym_class_body, + STATE(4748), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 23, + ACTIONS(3278), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -512295,15 +490836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 30, - sym__automatic_semicolon, + ACTIONS(3282), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -512326,11 +490869,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17671] = 3, + [7116] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4735), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 25, + ACTIONS(4644), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -512356,12 +490903,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3296), 33, + ACTIONS(4646), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -512390,11 +490936,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17738] = 3, + [7188] = 5, + ACTIONS(8182), 1, + anon_sym_catch, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4894), 25, + STATE(4628), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4130), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -512405,8 +490956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -512420,18 +490971,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4896), 33, + ACTIONS(4132), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -512454,11 +491003,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17805] = 3, + [7260] = 5, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(4715), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4898), 25, + ACTIONS(4359), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -512484,12 +491037,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4900), 33, + ACTIONS(4361), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -512518,146 +491070,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17872] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, + [7332] = 10, + ACTIONS(5764), 1, anon_sym_where, - ACTIONS(8409), 1, + ACTIONS(8185), 1, anon_sym_COLON, - STATE(4801), 1, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(4990), 1, sym_type_constraints, - STATE(4895), 1, - sym_class_body, + STATE(5360), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4258), 29, - sym_safe_nav, + ACTIONS(4175), 22, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [17949] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4876), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4173), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4878), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [18016] = 3, + [7414] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4902), 25, + ACTIONS(4204), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -512681,7 +491173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4904), 33, + ACTIONS(4206), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -512715,80 +491207,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18083] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5938), 1, - anon_sym_COLON, - STATE(5106), 1, - sym_type_constraints, - STATE(5241), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3284), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3288), 30, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [18160] = 3, + [7482] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 25, + ACTIONS(4754), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -512814,7 +491238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 33, + ACTIONS(4756), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -512848,75 +491272,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18227] = 3, + [7550] = 5, + ACTIONS(8151), 1, + anon_sym_DOT, + STATE(4568), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4130), 25, - anon_sym_as, + ACTIONS(4195), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4193), 32, + anon_sym_by, anon_sym_where, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4132), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, + [7622] = 5, + ACTIONS(5578), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [18294] = 3, + STATE(4784), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4530), 25, + ACTIONS(4467), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -512942,12 +491373,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4532), 33, + ACTIONS(4469), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -512976,11 +491406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18361] = 3, + [7694] = 4, + STATE(4648), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 25, + ACTIONS(4736), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -513006,7 +491438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 33, + ACTIONS(4738), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -513040,11 +491472,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18428] = 3, + [7764] = 4, + ACTIONS(8191), 1, + anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4906), 25, + ACTIONS(4740), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -513070,7 +491504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4908), 33, + ACTIONS(4742), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -513104,13 +491538,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18495] = 3, + [7834] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5239), 25, + ACTIONS(4706), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -513134,7 +491569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5241), 33, + ACTIONS(4708), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -513168,13 +491603,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18562] = 3, + [7902] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4872), 25, + ACTIONS(4696), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -513198,7 +491634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4874), 33, + ACTIONS(4698), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -513232,15 +491668,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18629] = 4, - ACTIONS(6583), 1, - anon_sym_LPAREN, + [7970] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4347), 25, + ACTIONS(4674), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -513264,13 +491699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4350), 32, + ACTIONS(4676), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -513297,22 +491733,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18698] = 3, + [8038] = 10, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8193), 1, + anon_sym_COLON, + STATE(4966), 1, + sym_type_constraints, + STATE(5406), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5095), 25, + ACTIONS(4185), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4183), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [8120] = 5, + ACTIONS(8195), 1, + anon_sym_DOT, + STATE(4644), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4153), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -513327,18 +491840,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5097), 33, + ACTIONS(4155), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -513361,16 +491872,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18765] = 3, + [8192] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8198), 1, + anon_sym_COLON, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5028), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1826), 25, + ACTIONS(4183), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -513391,18 +491914,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1828), 33, + ACTIONS(4185), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -513425,22 +491944,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18832] = 3, + [8274] = 5, + ACTIONS(8202), 1, + sym__quest, + STATE(4643), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4224), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4222), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [8346] = 5, + ACTIONS(8205), 1, + anon_sym_DOT, + STATE(4644), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5243), 25, + ACTIONS(4166), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -513455,18 +492046,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5245), 33, + ACTIONS(4168), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -513489,220 +492078,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18899] = 3, + [8418] = 5, + ACTIONS(8208), 1, + sym__quest, + STATE(4646), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5004), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(5006), 33, - sym_safe_nav, + ACTIONS(4206), 25, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [18966] = 8, - ACTIONS(5868), 1, + ACTIONS(4204), 32, + anon_sym_by, anon_sym_where, - ACTIONS(5876), 1, - anon_sym_LBRACE, - ACTIONS(5936), 1, - anon_sym_COLON, - STATE(5120), 1, - sym_type_constraints, - STATE(5326), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3292), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3296), 30, + [8490] = 5, + ACTIONS(8210), 1, + sym__quest, + STATE(4643), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4249), 25, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [19043] = 8, - ACTIONS(5868), 1, + ACTIONS(4247), 32, + anon_sym_by, anon_sym_where, - ACTIONS(5876), 1, - anon_sym_LBRACE, - ACTIONS(5940), 1, - anon_sym_COLON, - STATE(5124), 1, - sym_type_constraints, - STATE(5241), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3284), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3288), 30, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [19120] = 4, - ACTIONS(6579), 1, - anon_sym_LPAREN, + [8562] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + ACTIONS(8212), 1, + anon_sym_COLON, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5031), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 25, + ACTIONS(4160), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -513723,17 +492254,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4239), 32, + ACTIONS(4162), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -513756,11 +492284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19189] = 3, + [8644] = 5, + ACTIONS(8214), 1, + anon_sym_COMMA, + STATE(4648), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5061), 25, + ACTIONS(4633), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -513786,7 +492318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5063), 33, + ACTIONS(4635), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -513794,7 +492326,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_DASH_GT, @@ -513820,23 +492351,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19256] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, + [8716] = 10, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(6022), 1, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + ACTIONS(8217), 1, anon_sym_COLON, - STATE(5132), 1, + STATE(4800), 1, + sym__block, + STATE(4871), 1, + sym_function_body, + STATE(5036), 1, sym_type_constraints, - STATE(5326), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 23, + ACTIONS(4137), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -513844,6 +492378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -513858,14 +492393,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3296), 30, - sym__automatic_semicolon, + ACTIONS(4139), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -513889,30 +492423,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19333] = 8, - ACTIONS(5864), 1, + [8798] = 5, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8411), 1, - anon_sym_COLON, - STATE(5139), 1, - sym_type_constraints, - STATE(5332), 1, - sym_class_body, + STATE(4786), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 23, + ACTIONS(3286), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -513927,15 +492457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 30, - sym__automatic_semicolon, + ACTIONS(3290), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -513958,22 +492490,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19410] = 3, + [8870] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8219), 1, + anon_sym_COLON, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(4959), 1, + sym_type_constraints, + STATE(5091), 1, + sym__block, + STATE(5141), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5251), 25, + ACTIONS(4137), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -513988,18 +492531,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5253), 33, + ACTIONS(4139), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -514022,11 +492562,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19477] = 3, + [8952] = 5, + ACTIONS(8225), 1, + anon_sym_COMMA, + STATE(4653), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5069), 25, + ACTIONS(4339), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514052,7 +492596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5071), 33, + ACTIONS(4341), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -514060,7 +492604,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_DASH_GT, @@ -514086,11 +492629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19544] = 3, + [9024] = 5, + ACTIONS(8225), 1, + anon_sym_COMMA, + STATE(4620), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4964), 25, + ACTIONS(4424), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514116,7 +492663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4966), 33, + ACTIONS(4426), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -514124,7 +492671,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_DASH_GT, @@ -514150,20 +492696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19611] = 5, - ACTIONS(4948), 1, - anon_sym_EQ, + [9096] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4950), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4381), 24, + ACTIONS(4559), 26, + anon_sym_COLON, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -514187,7 +492727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4383), 28, + ACTIONS(4561), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -514205,6 +492745,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -514216,16 +492761,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19682] = 3, + [9164] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + ACTIONS(8227), 1, + anon_sym_COLON, + STATE(4711), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5037), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4469), 25, + ACTIONS(4173), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -514246,18 +492803,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4471), 33, + ACTIONS(4175), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -514280,11 +492833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19749] = 3, + [9246] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4944), 25, + ACTIONS(4758), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514310,7 +492864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4946), 33, + ACTIONS(4760), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -514344,11 +492898,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19816] = 3, + [9314] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4811), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4034), 25, + ACTIONS(4652), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514374,12 +492932,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4036), 33, + ACTIONS(4654), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -514408,11 +492965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19883] = 3, + [9386] = 5, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(4825), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5087), 25, + ACTIONS(4481), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514438,12 +492999,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5089), 33, + ACTIONS(4483), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -514472,11 +493032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19950] = 3, + [9458] = 5, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(4809), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4948), 25, + ACTIONS(4216), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514502,12 +493066,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4950), 33, + ACTIONS(4218), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -514536,11 +493099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20017] = 3, + [9530] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4759), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4940), 25, + ACTIONS(3270), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514566,12 +493133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4942), 33, + ACTIONS(3274), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -514600,18 +493166,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20084] = 5, - ACTIONS(8413), 1, - sym__quest, - STATE(5002), 1, - aux_sym_nullable_type_repeat1, + [9602] = 10, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8229), 1, + anon_sym_COLON, + STATE(5015), 1, + sym_type_constraints, + STATE(5420), 1, + sym__block, + STATE(5421), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4363), 25, + ACTIONS(4139), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4137), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [9684] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4563), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -514620,6 +493254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -514634,16 +493269,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4365), 31, - sym__automatic_semicolon, + ACTIONS(4565), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -514666,11 +493303,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20155] = 3, + [9752] = 5, + ACTIONS(8208), 1, + sym__quest, + STATE(4646), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4518), 25, + ACTIONS(4305), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4303), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [9824] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4750), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514696,7 +493401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4520), 33, + ACTIONS(4752), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -514730,11 +493435,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20222] = 3, + [9892] = 4, + ACTIONS(8231), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4922), 25, + ACTIONS(4239), 26, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4237), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [9962] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4581), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514760,7 +493532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4924), 33, + ACTIONS(4583), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -514794,18 +493566,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20289] = 4, - ACTIONS(8415), 1, - anon_sym_LPAREN, + [10030] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + ACTIONS(8233), 1, + anon_sym_COLON, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5033), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5177), 25, + ACTIONS(4147), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -514826,17 +493608,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5179), 32, + ACTIONS(4149), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -514859,22 +493638,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20358] = 6, - ACTIONS(5053), 1, + [10112] = 4, + ACTIONS(8235), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4239), 26, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(8396), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__quest, + anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4237), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [10182] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5055), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(5038), 24, + ACTIONS(4670), 26, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -514898,7 +493735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5040), 27, + ACTIONS(4672), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -514915,6 +493752,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -514926,145 +493769,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20431] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8417), 1, - anon_sym_COLON, - STATE(5157), 1, - sym_type_constraints, - STATE(5376), 1, - sym_class_body, + [10250] = 4, + ACTIONS(4214), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4283), 30, + ACTIONS(4212), 26, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + sym__quest, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [20508] = 4, - ACTIONS(8419), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5171), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4210), 32, + anon_sym_by, anon_sym_where, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5173), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [20577] = 3, + [10320] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4976), 25, + ACTIONS(4746), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515090,7 +493866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4978), 33, + ACTIONS(4748), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -515124,13 +493900,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20644] = 4, - ACTIONS(8421), 1, - anon_sym_LPAREN, + [10388] = 5, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(4740), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4244), 25, + ACTIONS(4463), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515156,13 +493934,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4242), 32, + ACTIONS(4465), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -515189,77 +493967,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20713] = 3, + [10460] = 10, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8237), 1, + anon_sym_COLON, + STATE(5065), 1, + sym_type_constraints, + STATE(5346), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5049), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4149), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4147), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5051), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [20780] = 3, + [10542] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5149), 25, + ACTIONS(4762), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -515283,7 +494070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5151), 33, + ACTIONS(4765), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -515317,15 +494104,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20847] = 4, - ACTIONS(8423), 1, - anon_sym_LPAREN, + [10610] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4355), 25, + ACTIONS(4728), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -515349,13 +494135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4353), 32, + ACTIONS(4730), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -515382,11 +494169,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20916] = 3, + [10678] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4729), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5247), 25, + ACTIONS(4355), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515412,12 +494203,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5249), 33, + ACTIONS(4357), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -515446,11 +494236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20983] = 3, + [10750] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4748), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5045), 25, + ACTIONS(3278), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515476,12 +494270,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5047), 33, + ACTIONS(3282), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -515510,22 +494303,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21050] = 3, + [10822] = 5, + ACTIONS(8239), 1, + anon_sym_DOT, + STATE(4641), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4952), 25, + ACTIONS(4193), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -515540,18 +494338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4954), 33, + ACTIONS(4195), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -515574,33 +494370,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21117] = 10, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, + [10894] = 5, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(8392), 1, - anon_sym_EQ, - ACTIONS(8425), 1, - anon_sym_COLON, - STATE(5351), 1, - sym__block, - STATE(5403), 1, - sym_function_body, - STATE(5405), 1, - sym_type_constraints, + STATE(4833), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 22, + ACTIONS(4567), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -515615,14 +494404,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 29, - sym__automatic_semicolon, + ACTIONS(4569), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -515645,11 +494437,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21198] = 3, + [10966] = 4, + ACTIONS(8162), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4960), 25, + ACTIONS(4505), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515675,7 +494469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4962), 33, + ACTIONS(4507), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -515709,11 +494503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21265] = 3, + [11036] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4782), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5065), 25, + ACTIONS(4547), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515739,12 +494537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5067), 33, + ACTIONS(4549), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -515773,11 +494570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21332] = 3, + [11108] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4740), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 25, + ACTIONS(4463), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515803,12 +494604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4497), 33, + ACTIONS(4465), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -515837,11 +494637,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21399] = 3, + [11180] = 5, + ACTIONS(8242), 1, + anon_sym_LT, + STATE(4848), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4637), 25, + ACTIONS(4128), 26, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4189), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11252] = 4, + ACTIONS(8244), 1, + anon_sym_AT2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4710), 26, + anon_sym_AT, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515867,9 +494737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4639), 33, + ACTIONS(4712), 32, sym_safe_nav, - anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, @@ -515901,13 +494770,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21466] = 3, + [11322] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4736), 25, + ACTIONS(4678), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -515931,7 +494801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4738), 33, + ACTIONS(4681), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -515965,11 +494835,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21533] = 3, + [11390] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8246), 1, + anon_sym_COLON, + STATE(4933), 1, + sym_type_constraints, + STATE(5091), 1, + sym__block, + STATE(5220), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3284), 25, + ACTIONS(4183), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4185), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11472] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8248), 1, + anon_sym_COLON, + STATE(4953), 1, + sym_type_constraints, + STATE(5079), 1, + sym_function_body, + STATE(5091), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4173), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4175), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11554] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4543), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515995,7 +495010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3288), 33, + ACTIONS(4545), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -516029,11 +495044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21600] = 3, + [11622] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4715), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5235), 25, + ACTIONS(4359), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -516059,12 +495078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5237), 33, + ACTIONS(4361), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -516093,11 +495111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21667] = 3, + [11694] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4773), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5201), 25, + ACTIONS(4555), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -516123,12 +495145,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5203), 33, + ACTIONS(4557), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -516157,33 +495178,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21734] = 10, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, + [11766] = 5, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8392), 1, - anon_sym_EQ, - ACTIONS(8427), 1, - anon_sym_COLON, - STATE(5293), 1, - sym_type_constraints, - STATE(5307), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + STATE(4744), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 22, + ACTIONS(4493), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -516198,14 +495212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 29, - sym__automatic_semicolon, + ACTIONS(4495), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -516228,13 +495245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21815] = 3, + [11838] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5209), 25, + ACTIONS(4571), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -516258,7 +495276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5211), 33, + ACTIONS(4573), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -516292,11 +495310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21882] = 3, + [11906] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5145), 25, + ACTIONS(4551), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -516322,7 +495341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5147), 33, + ACTIONS(4553), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -516356,30 +495375,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21949] = 8, - ACTIONS(5864), 1, + [11974] = 5, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5998), 1, - anon_sym_COLON, - STATE(5148), 1, - sym_type_constraints, - STATE(5370), 1, - sym_class_body, + STATE(4846), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 23, + ACTIONS(4321), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -516394,15 +495409,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 30, - sym__automatic_semicolon, + ACTIONS(4323), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -516425,22 +495442,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22026] = 3, + [12046] = 10, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8250), 1, + anon_sym_COLON, + STATE(5054), 1, + sym_type_constraints, + STATE(5404), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 25, - anon_sym_as, + ACTIONS(4162), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4160), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [12128] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8221), 1, anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8252), 1, + anon_sym_COLON, + STATE(4947), 1, + sym_type_constraints, + STATE(5091), 1, + sym__block, + STATE(5240), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4160), 22, + anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -516455,18 +495555,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 33, + ACTIONS(4162), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -516489,22 +495586,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22093] = 3, + [12210] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8254), 1, + anon_sym_COLON, + STATE(4956), 1, + sym_type_constraints, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4461), 25, + ACTIONS(4147), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -516519,18 +495627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4463), 33, + ACTIONS(4149), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -516553,25 +495658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22160] = 8, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(8429), 1, - anon_sym_COLON, - STATE(4739), 1, - sym_type_constraints, - STATE(4895), 1, - sym_enum_class_body, + [12292] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 24, + ACTIONS(4918), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -516592,14 +495688,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 29, + ACTIONS(4920), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -516622,11 +495722,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22237] = 3, + [12359] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5183), 25, + ACTIONS(4439), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -516652,7 +495752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5185), 33, + ACTIONS(4441), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -516686,11 +495786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22304] = 3, + [12426] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5187), 25, + ACTIONS(5135), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -516716,7 +495816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5189), 33, + ACTIONS(5137), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -516750,11 +495850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22371] = 3, + [12493] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5197), 25, + ACTIONS(123), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -516780,7 +495880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5199), 33, + ACTIONS(121), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -516814,11 +495914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22438] = 3, + [12560] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4465), 25, + ACTIONS(4884), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -516844,7 +495944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4467), 33, + ACTIONS(4886), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -516878,24 +495978,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22505] = 3, + [12627] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4232), 27, + ACTIONS(5089), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -516910,16 +496008,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4234), 31, - sym__automatic_semicolon, + ACTIONS(5091), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -516942,22 +496042,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22572] = 3, + [12694] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(4956), 1, + sym_type_constraints, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5057), 25, + ACTIONS(4147), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -516972,18 +496081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5059), 33, + ACTIONS(4149), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -517006,92 +496112,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22639] = 9, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_LBRACE, - STATE(5198), 1, - sym_type_constraints, - STATE(5471), 1, - sym_function_body, - STATE(5534), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4185), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4183), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [22718] = 3, + [12773] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4595), 25, + ACTIONS(4313), 27, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -517106,18 +496144,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4597), 33, + ACTIONS(4315), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -517140,11 +496176,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22785] = 3, + [12840] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5103), 25, + ACTIONS(5183), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -517170,7 +496206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5105), 33, + ACTIONS(5185), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -517204,23 +496240,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22852] = 8, - ACTIONS(5868), 1, + [12907] = 9, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(5876), 1, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8431), 1, - anon_sym_COLON, - STATE(5165), 1, + STATE(4947), 1, sym_type_constraints, - STATE(5376), 1, - sym_enum_class_body, + STATE(5091), 1, + sym__block, + STATE(5240), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 23, + ACTIONS(4160), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -517242,7 +496279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 30, + ACTIONS(4162), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517273,15 +496310,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22929] = 4, - ACTIONS(8433), 1, - anon_sym_else, + [12986] = 5, + ACTIONS(8256), 1, + sym__quest, + STATE(4708), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 24, + ACTIONS(4222), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -517290,7 +496330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -517304,18 +496344,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 33, + ACTIONS(4224), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -517338,11 +496376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22998] = 3, + [13057] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4972), 25, + ACTIONS(5131), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -517368,7 +496406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4974), 33, + ACTIONS(5133), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -517402,11 +496440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23065] = 3, + [13124] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5032), 25, + ACTIONS(1790), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -517432,7 +496470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5034), 33, + ACTIONS(1792), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -517466,84 +496504,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23132] = 8, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8435), 1, - anon_sym_COLON, - STATE(5322), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [13191] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4323), 30, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [23209] = 5, - ACTIONS(8433), 1, - anon_sym_else, - ACTIONS(8437), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4926), 24, + ACTIONS(4137), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -517555,6 +496520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_in, anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -517568,7 +496534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 32, + ACTIONS(4139), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -517578,6 +496544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, @@ -517601,21 +496568,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23280] = 5, - ACTIONS(8439), 1, - sym__quest, - STATE(4923), 1, - aux_sym_nullable_type_repeat1, + [13258] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8259), 1, + anon_sym_COLON, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5075), 1, + sym_type_constraints, + STATE(5079), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 25, + ACTIONS(4173), 22, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -517635,15 +496609,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 31, + ACTIONS(4175), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -517667,25 +496639,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23351] = 4, - ACTIONS(8441), 1, - anon_sym_AMP, + [13339] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4297), 26, + ACTIONS(4962), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -517700,16 +496669,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4299), 31, - sym__automatic_semicolon, + ACTIONS(4964), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -517732,22 +496703,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23420] = 8, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8443), 1, - anon_sym_COLON, - STATE(5275), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [13406] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4339), 23, + ACTIONS(4774), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -517756,6 +496718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -517770,15 +496733,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4341), 30, - sym__automatic_semicolon, + ACTIONS(4776), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -517801,11 +496767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23497] = 3, + [13473] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4453), 25, + ACTIONS(4652), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -517831,7 +496797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4455), 33, + ACTIONS(4654), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -517865,24 +496831,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23564] = 3, + [13540] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 27, + ACTIONS(5063), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -517897,16 +496861,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4191), 31, - sym__automatic_semicolon, + ACTIONS(5065), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -517929,11 +496895,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23631] = 3, + [13607] = 4, + ACTIONS(8263), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1790), 25, + ACTIONS(4289), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -517959,14 +496927,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1792), 33, + ACTIONS(4287), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -517993,11 +496960,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23698] = 3, + [13676] = 4, + ACTIONS(8265), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 25, + ACTIONS(4892), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -518023,14 +496992,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 33, + ACTIONS(4894), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -518057,11 +497025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23765] = 3, + [13745] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3436), 25, + ACTIONS(4950), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -518087,7 +497055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3438), 33, + ACTIONS(4952), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -518121,76 +497089,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23832] = 4, - ACTIONS(4315), 1, - anon_sym_DASH_GT, + [13812] = 9, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5065), 1, + sym_type_constraints, + STATE(5346), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4311), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4149), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4147), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - sym__quest, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4313), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + [13891] = 4, + ACTIONS(8267), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [23901] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1800), 25, + ACTIONS(4874), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -518216,14 +497191,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1802), 33, + ACTIONS(4876), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -518250,22 +497224,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23968] = 3, + [13960] = 4, + ACTIONS(8269), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3156), 25, + ACTIONS(4237), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -518280,18 +497257,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3158), 33, + ACTIONS(4239), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -518314,13 +497289,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24035] = 3, + [14029] = 5, + ACTIONS(8271), 1, + sym__quest, + STATE(4806), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5223), 25, + ACTIONS(4204), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -518329,7 +497309,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -518344,18 +497323,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5225), 33, + ACTIONS(4206), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -518378,11 +497355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24102] = 3, + [14100] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5028), 25, + ACTIONS(4954), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -518408,7 +497385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5030), 33, + ACTIONS(4956), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -518442,22 +497419,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24169] = 3, + [14167] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + ACTIONS(8273), 1, + anon_sym_COLON, + STATE(5091), 1, + sym__block, + STATE(5240), 1, + sym_function_body, + STATE(5243), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4335), 27, + ACTIONS(4160), 22, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -518474,15 +497460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4337), 31, + ACTIONS(4162), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -518506,11 +497490,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24236] = 3, + [14248] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4918), 25, + ACTIONS(5175), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -518536,7 +497520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4920), 33, + ACTIONS(5177), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -518570,25 +497554,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24303] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(6000), 1, - anon_sym_COLON, - STATE(4809), 1, - sym_type_constraints, - STATE(4840), 1, - sym_class_body, + [14315] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3284), 24, + ACTIONS(5171), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -518609,14 +497584,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3288), 29, + ACTIONS(5173), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -518639,11 +497618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24380] = 3, + [14382] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4435), 25, + ACTIONS(1796), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -518669,7 +497648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4437), 33, + ACTIONS(1798), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -518703,11 +497682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24447] = 3, + [14449] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5020), 25, + ACTIONS(4493), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -518733,7 +497712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5022), 33, + ACTIONS(4495), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -518767,11 +497746,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24514] = 3, + [14516] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5219), 25, + ACTIONS(4183), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -518797,7 +497776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5221), 33, + ACTIONS(4185), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -518831,26 +497810,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24581] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(4972), 1, - sym_function_body, - STATE(5130), 1, - sym_type_constraints, + [14583] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 23, + ACTIONS(5195), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -518871,14 +497840,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 29, + ACTIONS(5197), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -518901,11 +497874,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24660] = 3, + [14650] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5227), 25, + ACTIONS(4914), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -518931,7 +497904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5229), 33, + ACTIONS(4916), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -518965,11 +497938,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24727] = 3, + [14717] = 4, + ACTIONS(8275), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 25, + ACTIONS(4818), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -518981,7 +497956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_in, anon_sym_while, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -518995,7 +497969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 33, + ACTIONS(4820), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -519029,11 +498003,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24794] = 3, + [14786] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5024), 25, + ACTIONS(1732), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -519059,7 +498033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5026), 33, + ACTIONS(1734), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -519093,26 +498067,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24861] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(4951), 1, - sym_function_body, - STATE(5129), 1, - sym_type_constraints, + [14853] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 23, + ACTIONS(4906), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -519133,14 +498097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4293), 29, + ACTIONS(4908), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -519163,11 +498131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24940] = 3, + [14920] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 25, + ACTIONS(4902), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -519193,7 +498161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 33, + ACTIONS(4904), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -519227,24 +498195,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25007] = 3, + [14987] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 27, + ACTIONS(4633), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -519259,16 +498225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4319), 31, - sym__automatic_semicolon, + ACTIONS(4635), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -519291,11 +498259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25074] = 3, + [15054] = 5, + ACTIONS(8275), 1, + anon_sym_else, + ACTIONS(8277), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5016), 25, + ACTIONS(4818), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -519307,7 +498279,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_in, anon_sym_while, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -519321,7 +498292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5018), 33, + ACTIONS(4820), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -519331,7 +498302,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, @@ -519355,11 +498325,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25141] = 3, + [15125] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5012), 25, + ACTIONS(5077), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -519385,7 +498355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5014), 33, + ACTIONS(5079), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -519419,11 +498389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25208] = 3, + [15192] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5008), 25, + ACTIONS(4359), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -519449,7 +498419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5010), 33, + ACTIONS(4361), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -519483,13 +498453,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25275] = 3, + [15259] = 8, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8279), 1, + anon_sym_COLON, + STATE(5090), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5000), 25, + ACTIONS(4229), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -519498,7 +498477,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -519513,18 +498491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5002), 33, + ACTIONS(4231), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -519547,11 +498522,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25342] = 3, + [15336] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4996), 25, + ACTIONS(5159), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -519577,7 +498552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4998), 33, + ACTIONS(5161), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -519611,23 +498586,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25409] = 9, - ACTIONS(5558), 1, + [15403] = 9, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, + ACTIONS(8221), 1, anon_sym_EQ, - STATE(4853), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5128), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(4933), 1, sym_type_constraints, + STATE(5091), 1, + sym__block, + STATE(5220), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 23, + ACTIONS(4183), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -519636,7 +498611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -519651,13 +498625,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 29, + ACTIONS(4185), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -519681,11 +498656,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25488] = 3, + [15482] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 25, + ACTIONS(4644), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -519711,7 +498686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 33, + ACTIONS(4646), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -519745,18 +498720,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25555] = 5, - ACTIONS(8445), 1, - sym__quest, - STATE(5002), 1, - aux_sym_nullable_type_repeat1, + [15549] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4262), 25, + ACTIONS(3278), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -519765,6 +498735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -519779,16 +498750,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4264), 31, - sym__automatic_semicolon, + ACTIONS(3282), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -519811,11 +498784,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25626] = 3, + [15616] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4992), 25, + ACTIONS(4946), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -519841,7 +498814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4994), 33, + ACTIONS(4948), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -519875,25 +498848,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25693] = 8, - ACTIONS(5558), 1, + [15683] = 9, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(5566), 1, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8448), 1, - anon_sym_COLON, - STATE(4743), 1, + STATE(4932), 1, sym_type_constraints, - STATE(4829), 1, - sym_enum_class_body, + STATE(5091), 1, + sym__block, + STATE(5194), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 24, + ACTIONS(4295), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4297), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15762] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -519914,14 +498948,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 29, + ACTIONS(4218), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -519944,33 +498982,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25770] = 10, - ACTIONS(5868), 1, + [15829] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5103), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(8361), 1, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5105), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(8392), 1, - anon_sym_EQ, - ACTIONS(8450), 1, - anon_sym_COLON, - STATE(5234), 1, - sym_function_body, - STATE(5235), 1, - sym_type_constraints, - STATE(5351), 1, - sym__block, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15896] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 22, + ACTIONS(5191), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -519985,14 +499076,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 29, - sym__automatic_semicolon, + ACTIONS(5193), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -520015,22 +499110,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25851] = 3, + [15963] = 4, + ACTIONS(4214), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4988), 25, + ACTIONS(4210), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -520045,18 +499143,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4990), 33, + ACTIONS(4212), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -520079,81 +499175,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25918] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - STATE(4842), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5125), 1, - sym_type_constraints, + [16032] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4166), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [25997] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4984), 25, + ACTIONS(5073), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -520179,7 +499205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4986), 33, + ACTIONS(5075), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -520213,11 +499239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26064] = 3, + [16099] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4980), 25, + ACTIONS(5059), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -520243,7 +499269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4982), 33, + ACTIONS(5061), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -520277,14 +499303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26131] = 3, + [16166] = 4, + ACTIONS(8281), 1, + anon_sym_LT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4030), 25, + ACTIONS(5051), 24, anon_sym_as, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, @@ -520307,7 +499334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4032), 33, + ACTIONS(5053), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -520341,21 +499368,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26198] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, + [16235] = 8, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8452), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(5900), 1, anon_sym_COLON, - STATE(4805), 1, + STATE(4624), 1, sym_type_constraints, - STATE(4829), 1, + STATE(4759), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 24, + ACTIONS(3270), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -520380,7 +499407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 29, + ACTIONS(3274), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -520410,26 +499437,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26275] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - STATE(4883), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5123), 1, - sym_type_constraints, + [16312] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 23, + ACTIONS(5035), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -520450,14 +499467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 29, + ACTIONS(5037), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -520480,11 +499501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26354] = 3, + [16379] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4968), 25, + ACTIONS(4160), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -520510,7 +499531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4970), 33, + ACTIONS(4162), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -520544,11 +499565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26421] = 3, + [16446] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5231), 25, + ACTIONS(5067), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -520574,7 +499595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5233), 33, + ACTIONS(5069), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -520608,22 +499629,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26488] = 8, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8454), 1, - anon_sym_COLON, - STATE(5350), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [16513] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4269), 23, + ACTIONS(4327), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -520632,6 +499644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -520646,15 +499659,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4271), 30, - sym__automatic_semicolon, + ACTIONS(4329), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -520677,22 +499693,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26565] = 6, - ACTIONS(4010), 1, - anon_sym_EQ, - ACTIONS(7103), 1, - anon_sym_LPAREN, + [16580] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4236), 24, + ACTIONS(4826), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -520716,13 +499723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4239), 27, + ACTIONS(4828), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -520733,6 +499741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -520744,22 +499757,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26638] = 6, - ACTIONS(4010), 1, - anon_sym_EQ, - ACTIONS(7107), 1, - anon_sym_LPAREN, + [16647] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4347), 24, + ACTIONS(4958), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -520783,13 +499787,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4350), 27, + ACTIONS(4960), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -520800,6 +499805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -520811,25 +499821,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26711] = 8, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(6002), 1, - anon_sym_COLON, - STATE(4740), 1, - sym_type_constraints, - STATE(4840), 1, - sym_enum_class_body, + [16714] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3284), 24, + ACTIONS(5199), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -520850,14 +499851,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3288), 29, + ACTIONS(5201), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -520880,18 +499885,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26788] = 5, - ACTIONS(8439), 1, - sym__quest, - STATE(4923), 1, - aux_sym_nullable_type_repeat1, + [16781] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 25, + ACTIONS(4275), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -520900,6 +499900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -520914,16 +499915,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4252), 31, - sym__automatic_semicolon, + ACTIONS(4277), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -520946,11 +499949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26859] = 3, + [16848] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4836), 25, + ACTIONS(4866), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -520976,7 +499979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4838), 33, + ACTIONS(4868), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -521010,22 +500013,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26926] = 3, + [16915] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(4929), 1, + sym_type_constraints, + STATE(5073), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5255), 25, + ACTIONS(4299), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -521040,18 +500052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5257), 33, + ACTIONS(4301), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -521074,84 +500083,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26993] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4750), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4748), 32, - anon_sym_fun, - anon_sym_by, + [16994] = 8, + ACTIONS(5582), 1, anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [27059] = 8, - ACTIONS(5864), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8456), 1, + ACTIONS(8283), 1, anon_sym_COLON, - STATE(5139), 1, + STATE(4676), 1, sym_type_constraints, - STATE(5332), 1, + STATE(4891), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 23, + ACTIONS(4327), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -521161,6 +500107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -521175,13 +500122,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 29, - sym__automatic_semicolon, + ACTIONS(4329), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -521205,30 +500152,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27135] = 8, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, - anon_sym_LBRACE, - ACTIONS(8458), 1, - anon_sym_COLON, - STATE(5165), 1, - sym_type_constraints, - STATE(5376), 1, - sym_enum_class_body, + [17071] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 23, + ACTIONS(5167), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -521243,14 +500182,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 29, - sym__automatic_semicolon, + ACTIONS(5169), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -521273,31 +500216,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27211] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8392), 1, + [17138] = 5, + ACTIONS(5020), 1, anon_sym_EQ, - STATE(5248), 1, - sym_type_constraints, - STATE(5261), 1, - sym_function_body, - STATE(5351), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 22, + ACTIONS(5022), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4451), 24, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -521312,25 +500253,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 29, - sym__automatic_semicolon, + ACTIONS(4453), 28, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -521342,28 +500282,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27289] = 7, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, - anon_sym_LBRACE, - STATE(5165), 1, - sym_type_constraints, - STATE(5376), 1, - sym_enum_class_body, + [17209] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 23, + ACTIONS(1808), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -521378,15 +500312,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 30, - sym__automatic_semicolon, + ACTIONS(1810), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -521409,31 +500346,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27363] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8392), 1, - anon_sym_EQ, - STATE(5234), 1, - sym_function_body, - STATE(5235), 1, - sym_type_constraints, - STATE(5351), 1, - sym__block, + [17276] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 22, + ACTIONS(3286), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -521448,14 +500376,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 29, - sym__automatic_semicolon, + ACTIONS(3290), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -521478,31 +500410,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27441] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8460), 1, - anon_sym_COLON, - ACTIONS(8462), 1, - anon_sym_EQ, - STATE(4853), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5286), 1, - sym_type_constraints, + [17343] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 21, + ACTIONS(3160), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -521512,23 +500433,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 29, + ACTIONS(3162), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, @@ -521536,42 +500458,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27521] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8464), 1, - anon_sym_COLON, - STATE(5107), 1, - sym_type_constraints, - STATE(5247), 1, - sym_class_body, + [17410] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 23, + ACTIONS(4028), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -521586,14 +500504,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 29, - sym__automatic_semicolon, + ACTIONS(4030), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -521616,91 +500538,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27597] = 3, + [17477] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4329), 25, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(5219), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5221), 33, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4327), 32, - anon_sym_fun, - anon_sym_by, + [17544] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4850), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [27663] = 7, - ACTIONS(5864), 1, + ACTIONS(4852), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - STATE(5107), 1, - sym_type_constraints, - STATE(5247), 1, - sym_class_body, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [17611] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 23, + ACTIONS(4295), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -521715,15 +500696,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 30, - sym__automatic_semicolon, + ACTIONS(4297), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -521746,19 +500730,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27737] = 7, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, + [17678] = 8, + ACTIONS(5770), 1, anon_sym_LBRACE, - STATE(5103), 1, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8285), 1, + anon_sym_COLON, + STATE(4999), 1, sym_type_constraints, - STATE(5247), 1, + STATE(5231), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 23, + ACTIONS(4321), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -521782,7 +500768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 30, + ACTIONS(4323), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521813,28 +500799,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27811] = 7, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - STATE(5108), 1, - sym_type_constraints, - STATE(5268), 1, - sym_class_body, + [17755] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4461), 23, + ACTIONS(4000), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -521849,15 +500829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4463), 30, - sym__automatic_semicolon, + ACTIONS(4002), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -521880,19 +500863,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27885] = 7, - ACTIONS(5864), 1, + [17822] = 8, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(5868), 1, + ACTIONS(5776), 1, anon_sym_where, - STATE(5167), 1, + ACTIONS(5950), 1, + anon_sym_COLON, + STATE(4981), 1, sym_type_constraints, - STATE(5401), 1, - sym_class_body, + STATE(5246), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4465), 23, + ACTIONS(3286), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -521916,7 +500901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4467), 30, + ACTIONS(3290), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521947,31 +500932,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27959] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - ACTIONS(8466), 1, - anon_sym_COLON, - STATE(4883), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5379), 1, - sym_type_constraints, + [17899] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 21, + ACTIONS(4898), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -521981,23 +500955,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 29, + ACTIONS(4900), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, @@ -522005,32 +500980,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28039] = 7, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, - anon_sym_LBRACE, - STATE(5275), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [17966] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4339), 23, + ACTIONS(5117), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -522039,6 +501011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -522053,15 +501026,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4341), 30, - sym__automatic_semicolon, + ACTIONS(5119), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -522084,21 +501060,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28113] = 8, - ACTIONS(5868), 1, + [18033] = 8, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(5876), 1, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8468), 1, + ACTIONS(8287), 1, anon_sym_COLON, - STATE(5103), 1, + STATE(4979), 1, sym_type_constraints, - STATE(5247), 1, - sym_enum_class_body, + STATE(5106), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 23, + ACTIONS(4216), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -522122,13 +501098,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 29, + ACTIONS(4218), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -522152,11 +501129,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28189] = 3, + [18110] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4381), 26, + ACTIONS(5121), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -522167,9 +501144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -522183,16 +501159,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4383), 31, - sym__automatic_semicolon, + ACTIONS(5123), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -522215,19 +501193,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28255] = 7, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, + [18177] = 8, + ACTIONS(5770), 1, anon_sym_LBRACE, - STATE(5175), 1, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8289), 1, + anon_sym_COLON, + STATE(4972), 1, sym_type_constraints, - STATE(5274), 1, + STATE(5106), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 23, + ACTIONS(4216), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -522251,7 +501231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 30, + ACTIONS(4218), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522282,20 +501262,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28329] = 7, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, - anon_sym_LBRACE, - STATE(5283), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [18254] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4530), 23, + ACTIONS(4481), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -522304,6 +501277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -522318,15 +501292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4532), 30, - sym__automatic_semicolon, + ACTIONS(4483), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -522349,15 +501326,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28403] = 5, - ACTIONS(8470), 1, - anon_sym_COMMA, - STATE(4810), 1, - aux_sym__delegation_specifiers_repeat1, + [18321] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4740), 25, + ACTIONS(4778), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -522383,15 +501356,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4742), 30, + ACTIONS(4780), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -522414,20 +501390,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28473] = 7, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, - anon_sym_LBRACE, - STATE(5242), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [18388] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4518), 23, + ACTIONS(4321), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -522436,6 +501405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -522450,15 +501420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4520), 30, - sym__automatic_semicolon, + ACTIONS(4323), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -522481,30 +501454,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28547] = 8, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, - anon_sym_LBRACE, - ACTIONS(6058), 1, - anon_sym_COLON, - STATE(5120), 1, - sym_type_constraints, - STATE(5326), 1, - sym_enum_class_body, + [18455] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 23, + ACTIONS(5187), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -522519,14 +501484,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3296), 29, - sym__automatic_semicolon, + ACTIONS(5189), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -522549,19 +501518,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28623] = 9, - ACTIONS(5868), 1, + [18522] = 10, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8361), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8392), 1, + ACTIONS(8261), 1, anon_sym_EQ, - STATE(5351), 1, + ACTIONS(8291), 1, + anon_sym_COLON, + STATE(5091), 1, sym__block, - STATE(5403), 1, - sym_function_body, - STATE(5405), 1, + STATE(5219), 1, sym_type_constraints, + STATE(5220), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, @@ -522618,80 +501589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28701] = 5, - ACTIONS(7211), 1, - anon_sym_by, - STATE(5367), 1, - sym_value_arguments, + [18603] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4437), 24, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4435), 31, - anon_sym_fun, - anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [28771] = 5, - ACTIONS(8470), 1, - anon_sym_COMMA, - STATE(5041), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4671), 25, + ACTIONS(4782), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -522717,15 +501619,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4673), 30, + ACTIONS(4784), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -522748,28 +501653,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28841] = 7, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, - anon_sym_LBRACE, - STATE(5169), 1, - sym_type_constraints, - STATE(5401), 1, - sym_enum_class_body, + [18670] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4465), 23, + ACTIONS(4786), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -522784,15 +501683,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4467), 30, - sym__automatic_semicolon, + ACTIONS(4788), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -522815,21 +501717,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28915] = 5, - ACTIONS(8472), 1, - anon_sym_DOT, - STATE(4803), 1, - aux_sym_user_type_repeat1, + [18737] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(5946), 1, + anon_sym_COLON, + STATE(5029), 1, + sym_type_constraints, + STATE(5118), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4225), 24, + ACTIONS(3278), 23, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -522848,12 +501755,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4227), 31, + ACTIONS(3282), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -522880,30 +501786,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28985] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(6074), 1, - anon_sym_COLON, - STATE(5132), 1, - sym_type_constraints, - STATE(5326), 1, - sym_class_body, + [18814] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 23, + ACTIONS(4505), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -522918,14 +501816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3296), 29, - sym__automatic_semicolon, + ACTIONS(4507), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -522948,158 +501850,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29061] = 3, + [18881] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4769), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(4094), 25, + anon_sym_as, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4766), 32, - anon_sym_fun, - anon_sym_by, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [29127] = 8, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(5898), 1, - anon_sym_LBRACE, - ACTIONS(6064), 1, - anon_sym_COLON, - STATE(5463), 1, - sym_type_constraints, - STATE(5475), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3288), 22, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4096), 33, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3284), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [29203] = 6, - ACTIONS(5864), 1, + [18948] = 8, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(8475), 1, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5924), 1, anon_sym_COLON, - STATE(5334), 1, - sym_class_body, + STATE(4659), 1, + sym_type_constraints, + STATE(4748), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 24, + ACTIONS(3278), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -523114,14 +501953,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 30, - sym__automatic_semicolon, + ACTIONS(3282), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -523145,30 +501983,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29275] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(6050), 1, - anon_sym_COLON, - STATE(5106), 1, - sym_type_constraints, - STATE(5241), 1, - sym_class_body, + [19025] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3284), 23, + ACTIONS(4790), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -523183,14 +502013,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3288), 29, - sym__automatic_semicolon, + ACTIONS(4792), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -523213,89 +502047,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29351] = 8, - ACTIONS(5888), 1, - anon_sym_LBRACE, - ACTIONS(5894), 1, + [19092] = 8, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8477), 1, - anon_sym_COLON, - STATE(5432), 1, - sym_type_constraints, - STATE(5521), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4283), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4281), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [29427] = 8, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(6048), 1, + ACTIONS(5926), 1, anon_sym_COLON, - STATE(5124), 1, + STATE(4621), 1, sym_type_constraints, - STATE(5241), 1, - sym_enum_class_body, + STATE(4748), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3284), 23, + ACTIONS(3278), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -523305,6 +502071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -523319,13 +502086,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3288), 29, - sym__automatic_semicolon, + ACTIONS(3282), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -523349,28 +502116,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29503] = 7, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - STATE(5139), 1, - sym_type_constraints, - STATE(5332), 1, - sym_class_body, + [19169] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 23, + ACTIONS(3344), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -523385,15 +502146,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 30, - sym__automatic_semicolon, + ACTIONS(3346), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -523416,218 +502180,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29577] = 8, - ACTIONS(5888), 1, + [19236] = 8, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(5894), 1, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(6076), 1, + ACTIONS(5938), 1, anon_sym_COLON, - STATE(5461), 1, + STATE(5049), 1, sym_type_constraints, - STATE(5475), 1, + STATE(5118), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3284), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [29653] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4728), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(3278), 23, + anon_sym_as, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4726), 32, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [29719] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4733), 25, + ACTIONS(3282), 30, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_STAR, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4730), 32, - anon_sym_fun, - anon_sym_by, + [19313] = 8, + ACTIONS(5776), 1, anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [29785] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8392), 1, - anon_sym_EQ, - STATE(5344), 1, + ACTIONS(8293), 1, + anon_sym_COLON, + STATE(5057), 1, sym_type_constraints, - STATE(5346), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + STATE(5102), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 22, + ACTIONS(4327), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -523649,13 +502287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 29, + ACTIONS(4329), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -523679,159 +502318,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29863] = 8, - ACTIONS(5888), 1, - anon_sym_LBRACE, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(6146), 1, - anon_sym_COLON, - STATE(5435), 1, - sym_type_constraints, - STATE(5544), 1, - sym_enum_class_body, + [19390] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3296), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3292), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(5095), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [29939] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4683), 25, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(5097), 33, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4681), 32, - anon_sym_fun, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [30005] = 7, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, + [19457] = 8, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(5307), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8295), 1, + anon_sym_COLON, + STATE(4672), 1, + sym_type_constraints, + STATE(4809), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 23, + ACTIONS(4216), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -523846,14 +502421,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 30, - sym__automatic_semicolon, + ACTIONS(4218), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -523877,30 +502451,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30079] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8479), 1, - anon_sym_COLON, - STATE(5157), 1, - sym_type_constraints, - STATE(5376), 1, - sym_class_body, + [19534] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 23, + ACTIONS(4794), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -523915,14 +502481,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 29, - sym__automatic_semicolon, + ACTIONS(4796), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -523945,27 +502515,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30155] = 6, - ACTIONS(5864), 1, + [19601] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8481), 1, + ACTIONS(8297), 1, anon_sym_COLON, - STATE(5383), 1, + STATE(4682), 1, + sym_type_constraints, + STATE(4809), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4443), 24, + ACTIONS(4216), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -523980,14 +502554,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4445), 30, - sym__automatic_semicolon, + ACTIONS(4218), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -524011,11 +502584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30227] = 3, + [19678] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4377), 26, + ACTIONS(4846), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -524026,9 +502599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -524042,16 +502614,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4379), 31, - sym__automatic_semicolon, + ACTIONS(4848), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -524074,33 +502648,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30293] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, + [19745] = 8, + ACTIONS(8221), 1, anon_sym_EQ, - ACTIONS(8483), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8299), 1, anon_sym_COLON, - STATE(4930), 1, + STATE(5091), 1, sym__block, - STATE(5001), 1, + STATE(5163), 1, sym_function_body, - STATE(5314), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 21, + ACTIONS(4275), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -524108,69 +502679,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 29, + ACTIONS(4277), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30373] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - ACTIONS(8485), 1, - anon_sym_COLON, - STATE(4898), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5250), 1, - sym_type_constraints, + [19822] = 5, + ACTIONS(8301), 1, + sym__quest, + STATE(4708), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4209), 21, + ACTIONS(4247), 25, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -524178,59 +502744,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4211), 29, + ACTIONS(4249), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30453] = 7, - ACTIONS(5864), 1, + [19893] = 8, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - STATE(5133), 1, - sym_type_constraints, - STATE(5324), 1, - sym_class_body, + ACTIONS(8303), 1, + anon_sym_COLON, + STATE(5076), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4469), 23, + ACTIONS(4307), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -524250,7 +502821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4471), 30, + ACTIONS(4309), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524281,19 +502852,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30527] = 7, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, + [19970] = 8, + ACTIONS(5776), 1, anon_sym_where, - STATE(5173), 1, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(5936), 1, + anon_sym_COLON, + STATE(5030), 1, sym_type_constraints, - STATE(5274), 1, + STATE(5175), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 23, + ACTIONS(3270), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -524317,7 +502890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 30, + ACTIONS(3274), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524348,28 +502921,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30601] = 7, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - STATE(5140), 1, - sym_type_constraints, - STATE(5327), 1, - sym_class_body, + [20047] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 23, + ACTIONS(4463), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -524384,15 +502951,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 30, - sym__automatic_semicolon, + ACTIONS(4465), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -524415,31 +502985,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30675] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - ACTIONS(8487), 1, - anon_sym_COLON, - STATE(4842), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5216), 1, - sym_type_constraints, + [20114] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 21, + ACTIONS(5099), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -524449,23 +503008,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 29, + ACTIONS(5101), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, @@ -524473,27 +503033,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30755] = 5, - ACTIONS(8489), 1, - anon_sym_by, - STATE(5331), 1, - sym_value_arguments, + [20181] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4435), 24, + ACTIONS(4966), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -524504,6 +503064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -524518,16 +503079,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4437), 31, - sym__automatic_semicolon, + ACTIONS(4968), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -524550,92 +503113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30825] = 8, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(5898), 1, - anon_sym_LBRACE, - ACTIONS(8491), 1, - anon_sym_COLON, - STATE(5428), 1, - sym_type_constraints, - STATE(5479), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4258), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4256), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [30901] = 8, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - ACTIONS(8493), 1, - anon_sym_COLON, - STATE(4930), 1, - sym__block, - STATE(4937), 1, - sym_function_body, + [20248] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4269), 23, + ACTIONS(3270), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -524656,14 +503143,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4271), 29, + ACTIONS(3274), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -524686,20 +503177,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30977] = 7, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, - anon_sym_LBRACE, - STATE(5234), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [20315] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 23, + ACTIONS(4443), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -524708,6 +503192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -524722,15 +503207,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 30, - sym__automatic_semicolon, + ACTIONS(4445), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -524753,162 +503241,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31051] = 8, - ACTIONS(5894), 1, + [20382] = 10, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(5898), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8495), 1, + ACTIONS(8261), 1, + anon_sym_EQ, + ACTIONS(8305), 1, anon_sym_COLON, - STATE(5413), 1, + STATE(5071), 1, sym_type_constraints, - STATE(5468), 1, - sym_class_body, + STATE(5091), 1, + sym__block, + STATE(5141), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4277), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4275), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(4137), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [31127] = 8, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(5898), 1, - anon_sym_LBRACE, - ACTIONS(6120), 1, - anon_sym_COLON, - STATE(5457), 1, - sym_type_constraints, - STATE(5544), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3296), 22, + ACTIONS(4139), 29, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3292), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [31203] = 7, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - STATE(5170), 1, - sym_type_constraints, - STATE(5328), 1, - sym_class_body, + [20463] = 4, + ACTIONS(8307), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4457), 23, + ACTIONS(4237), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -524925,11 +503345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4459), 30, + ACTIONS(4239), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -524956,23 +503377,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31277] = 7, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - STATE(5157), 1, - sym_type_constraints, - STATE(5376), 1, - sym_class_body, + [20532] = 5, + ACTIONS(8271), 1, + sym__quest, + STATE(4806), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 23, + ACTIONS(4303), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -524992,11 +503411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 30, + ACTIONS(4305), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -525023,30 +503443,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31351] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(6144), 1, - anon_sym_COLON, - STATE(5148), 1, - sym_type_constraints, - STATE(5370), 1, - sym_class_body, + [20603] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 23, + ACTIONS(3113), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -525061,14 +503473,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 29, - sym__automatic_semicolon, + ACTIONS(3115), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -525091,24 +503507,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31427] = 8, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - ACTIONS(8497), 1, - anon_sym_COLON, - STATE(4837), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + [20670] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4339), 23, + ACTIONS(4798), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -525129,14 +503537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4341), 29, + ACTIONS(4800), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -525159,20 +503571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31503] = 7, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, - anon_sym_LBRACE, - STATE(5346), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [20737] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 23, + ACTIONS(5205), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -525181,6 +503586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -525195,15 +503601,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 30, - sym__automatic_semicolon, + ACTIONS(5207), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -525226,11 +503635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31577] = 3, + [20804] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4373), 26, + ACTIONS(4804), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -525241,9 +503650,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -525257,16 +503665,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4375), 31, - sym__automatic_semicolon, + ACTIONS(4806), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -525289,20 +503699,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31643] = 3, + [20871] = 9, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5012), 1, + sym_type_constraints, + STATE(5370), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4778), 25, + ACTIONS(4301), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -525319,11 +503738,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4776), 32, - anon_sym_fun, - anon_sym_by, - anon_sym_where, + ACTIONS(4299), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -525352,83 +503769,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [31709] = 3, + [20950] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4589), 25, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4812), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4814), 33, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4587), 32, - anon_sym_fun, - anon_sym_by, + [21017] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5125), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [31775] = 7, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, + ACTIONS(5127), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - STATE(5351), 1, - sym__block, - STATE(5403), 1, - sym_function_body, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21084] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 23, + ACTIONS(4299), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -525437,6 +503912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -525451,15 +503927,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 30, - sym__automatic_semicolon, + ACTIONS(4301), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -525482,24 +503961,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31849] = 8, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - ACTIONS(8499), 1, - anon_sym_COLON, - STATE(4897), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + [21151] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 23, + ACTIONS(4567), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -525520,14 +503991,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 29, + ACTIONS(4569), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -525550,28 +504025,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31925] = 7, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, + [21218] = 8, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(5297), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5942), 1, + anon_sym_COLON, + STATE(4694), 1, + sym_type_constraints, + STATE(4786), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 23, + ACTIONS(3286), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -525586,14 +504064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4293), 30, - sym__automatic_semicolon, + ACTIONS(3290), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -525617,20 +504094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31999] = 7, - ACTIONS(8359), 1, - anon_sym_EQ, - ACTIONS(8361), 1, - anon_sym_LBRACE, - STATE(5261), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [21295] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 23, + ACTIONS(3420), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -525639,6 +504109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -525653,15 +504124,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 30, - sym__automatic_semicolon, + ACTIONS(3422), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -525684,83 +504158,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32073] = 8, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(5898), 1, + [21362] = 8, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(8501), 1, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8309), 1, anon_sym_COLON, - STATE(5434), 1, + STATE(4634), 1, sym_type_constraints, - STATE(5521), 1, - sym_class_body, + STATE(4846), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4283), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4281), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(4321), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [32149] = 5, - ACTIONS(8503), 1, - aux_sym_unsigned_literal_token1, - ACTIONS(8505), 1, - anon_sym_L, + ACTIONS(4323), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21439] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4487), 24, + ACTIONS(4834), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -525771,6 +504242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -525785,16 +504257,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4489), 31, - sym__automatic_semicolon, + ACTIONS(4836), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -525817,19 +504291,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32219] = 7, - ACTIONS(8359), 1, + [21506] = 5, + ACTIONS(4812), 1, anon_sym_EQ, - ACTIONS(8361), 1, - anon_sym_LBRACE, - STATE(5232), 1, - sym_function_body, - STATE(5351), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4453), 23, + ACTIONS(4814), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4477), 24, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -525839,6 +504313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -525853,26 +504328,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4455), 30, - sym__automatic_semicolon, + ACTIONS(4479), 28, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -525884,11 +504357,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32293] = 3, + [21577] = 4, + ACTIONS(8311), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4449), 26, + ACTIONS(4267), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -525899,9 +504374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -525915,16 +504389,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4451), 31, - sym__automatic_semicolon, + ACTIONS(4265), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -525947,99 +504422,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32359] = 8, - ACTIONS(5888), 1, - anon_sym_LBRACE, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(8507), 1, - anon_sym_COLON, - STATE(5433), 1, - sym_type_constraints, - STATE(5479), 1, - sym_enum_class_body, + [21646] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4256), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(1584), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [32435] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, + ACTIONS(1582), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(8392), 1, - anon_sym_EQ, - STATE(5215), 1, - sym_type_constraints, - STATE(5297), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21713] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 22, + ACTIONS(5085), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -526054,14 +504516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4293), 29, - sym__automatic_semicolon, + ACTIONS(5087), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -526084,88 +504550,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32513] = 8, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(5898), 1, - anon_sym_LBRACE, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(5425), 1, - sym_type_constraints, - STATE(5466), 1, - sym_class_body, + [21780] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3276), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(5039), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [32589] = 3, + ACTIONS(5041), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21847] = 9, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5054), 1, + sym_type_constraints, + STATE(5404), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4669), 25, + ACTIONS(4162), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -526182,11 +504653,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4667), 32, - anon_sym_fun, - anon_sym_by, - anon_sym_where, + ACTIONS(4160), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -526215,28 +504684,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [32655] = 7, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, - anon_sym_LBRACE, - STATE(5146), 1, - sym_type_constraints, - STATE(5327), 1, - sym_enum_class_body, + [21926] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 23, + ACTIONS(4838), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -526251,15 +504714,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 30, - sym__automatic_semicolon, + ACTIONS(4840), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -526282,28 +504748,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32729] = 7, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, - anon_sym_LBRACE, - STATE(5171), 1, - sym_type_constraints, - STATE(5328), 1, - sym_enum_class_body, + [21993] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4457), 23, + ACTIONS(4922), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -526318,15 +504778,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4459), 30, - sym__automatic_semicolon, + ACTIONS(4924), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -526349,21 +504812,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32803] = 6, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(8509), 1, - anon_sym_COLON, - STATE(4830), 1, - sym_class_body, + [22060] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4443), 24, + ACTIONS(4974), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -526384,14 +504842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4445), 29, + ACTIONS(4976), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -526414,81 +504876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32874] = 7, - ACTIONS(5888), 1, - anon_sym_LBRACE, - ACTIONS(5894), 1, - anon_sym_where, - STATE(5432), 1, - sym_type_constraints, - STATE(5521), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4283), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, + [22127] = 4, + ACTIONS(6494), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4281), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [32947] = 5, - ACTIONS(5876), 1, - anon_sym_LBRACE, - STATE(5327), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 24, + ACTIONS(4281), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -526499,6 +504893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -526513,15 +504908,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 30, - sym__automatic_semicolon, + ACTIONS(4284), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -526544,93 +504941,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33016] = 5, - ACTIONS(8511), 1, - anon_sym_COMMA, - STATE(5118), 1, - aux_sym_type_constraints_repeat1, + [22196] = 6, + ACTIONS(4004), 1, + anon_sym_EQ, + ACTIONS(6980), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4543), 24, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4541), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(4009), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4281), 24, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [33085] = 8, - ACTIONS(8361), 1, + ACTIONS(4284), 27, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(8392), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22269] = 6, + ACTIONS(4004), 1, anon_sym_EQ, - ACTIONS(8513), 1, - anon_sym_COLON, - STATE(5350), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + ACTIONS(6976), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4269), 22, + ACTIONS(4009), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4259), 24, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -526645,25 +505047,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4271), 29, - sym__automatic_semicolon, + ACTIONS(4262), 27, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -526675,15 +505075,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33160] = 5, - ACTIONS(5864), 1, - anon_sym_LBRACE, - STATE(5376), 1, - sym_class_body, + [22342] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 24, + ACTIONS(1814), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -526694,6 +505090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -526708,15 +505105,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 30, - sym__automatic_semicolon, + ACTIONS(1816), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -526739,15 +505139,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33229] = 5, - ACTIONS(5864), 1, - anon_sym_LBRACE, - STATE(5327), 1, - sym_class_body, + [22409] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 24, + ACTIONS(4722), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -526758,6 +505154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -526772,15 +505169,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 30, - sym__automatic_semicolon, + ACTIONS(4724), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -526803,15 +505203,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33298] = 5, - ACTIONS(5864), 1, - anon_sym_LBRACE, - STATE(5324), 1, - sym_class_body, + [22476] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4469), 24, + ACTIONS(4660), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -526822,6 +505218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -526836,15 +505233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4471), 30, - sym__automatic_semicolon, + ACTIONS(4662), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -526867,15 +505267,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33367] = 5, - ACTIONS(8515), 1, - anon_sym_COMMA, - STATE(5109), 1, - aux_sym_type_constraints_repeat1, + [22543] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 24, + ACTIONS(4430), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -526886,6 +505282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -526900,15 +505297,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4497), 30, - sym__automatic_semicolon, + ACTIONS(4432), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -526931,12 +505331,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33436] = 3, + [22610] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4714), 25, - anon_sym_COLON, + ACTIONS(4467), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -526947,6 +505346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -526961,16 +505361,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4716), 31, - sym__automatic_semicolon, + ACTIONS(4469), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -526993,17 +505395,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33501] = 3, + [22677] = 9, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5018), 1, + sym_type_constraints, + STATE(5386), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4701), 24, + ACTIONS(4297), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -527022,11 +505434,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4699), 32, - anon_sym_COLON, - anon_sym_fun, - anon_sym_where, + ACTIONS(4295), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -527055,23 +505465,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [33566] = 5, - ACTIONS(5864), 1, - anon_sym_LBRACE, - STATE(5317), 1, - sym_class_body, + [22756] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4754), 24, + ACTIONS(4335), 27, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -527088,11 +505497,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4756), 30, + ACTIONS(4337), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -527119,23 +505529,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33635] = 4, - ACTIONS(8518), 1, - anon_sym_L, + [22823] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4699), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5023), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4653), 24, + ACTIONS(4299), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -527150,15 +505569,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4655), 31, - sym__automatic_semicolon, + ACTIONS(4301), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -527182,91 +505599,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33702] = 7, - ACTIONS(5888), 1, - anon_sym_LBRACE, - ACTIONS(5894), 1, + [22902] = 9, + ACTIONS(5582), 1, anon_sym_where, - STATE(5433), 1, - sym_type_constraints, - STATE(5479), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4258), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4256), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [33775] = 5, - ACTIONS(5876), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(5241), 1, - sym_enum_class_body, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4824), 1, + sym_function_body, + STATE(5027), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3284), 24, + ACTIONS(4295), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -527281,14 +505639,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3288), 30, - sym__automatic_semicolon, + ACTIONS(4297), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -527312,15 +505669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33844] = 5, - ACTIONS(5864), 1, - anon_sym_LBRACE, - STATE(5241), 1, - sym_class_body, + [22981] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3284), 24, + ACTIONS(5209), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -527331,6 +505684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -527345,15 +505699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3288), 30, - sym__automatic_semicolon, + ACTIONS(5211), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -527376,15 +505733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33913] = 5, - ACTIONS(8520), 1, - anon_sym_COMMA, - STATE(5117), 1, - aux_sym__delegation_specifiers_repeat1, + [23048] = 4, + ACTIONS(6490), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4705), 24, + ACTIONS(4259), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -527395,6 +505750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -527409,15 +505765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4707), 30, - sym__automatic_semicolon, + ACTIONS(4262), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -527440,145 +505798,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33982] = 5, - ACTIONS(8511), 1, - anon_sym_COMMA, - STATE(5153), 1, - aux_sym_type_constraints_repeat1, + [23117] = 6, + ACTIONS(5055), 1, + anon_sym_EQ, + ACTIONS(8313), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4508), 24, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4506), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(5057), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(5024), 24, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [34051] = 7, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5428), 1, - sym_type_constraints, - STATE(5479), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4258), 22, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(5026), 27, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4256), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [34124] = 5, - ACTIONS(5876), 1, - anon_sym_LBRACE, - STATE(5247), 1, - sym_enum_class_body, + [23190] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 24, + ACTIONS(5145), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -527589,6 +505880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -527603,15 +505895,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 30, - sym__automatic_semicolon, + ACTIONS(5147), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -527634,22 +505929,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34193] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(5001), 1, - sym_function_body, + [23257] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 23, + ACTIONS(5179), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -527670,14 +505959,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 29, + ACTIONS(5181), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -527700,22 +505993,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34266] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - STATE(4883), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + [23324] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 23, + ACTIONS(5213), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -527736,14 +506023,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 29, + ACTIONS(5215), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -527766,28 +506057,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34339] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - STATE(4842), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + [23391] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 23, + ACTIONS(4166), 27, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -527802,13 +506089,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 29, + ACTIONS(4168), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -527832,25 +506121,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34412] = 5, - ACTIONS(5876), 1, + [23458] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(5376), 1, - sym_enum_class_body, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5028), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 24, + ACTIONS(4183), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -527865,14 +506161,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 30, - sym__automatic_semicolon, + ACTIONS(4185), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -527896,22 +506191,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34481] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - STATE(4853), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + [23537] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 23, + ACTIONS(4477), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -527932,14 +506221,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 29, + ACTIONS(4479), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -527962,29 +506255,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34554] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - STATE(4883), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5379), 1, - sym_type_constraints, + [23604] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 21, + ACTIONS(4842), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -527994,23 +506278,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 29, + ACTIONS(4844), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, @@ -528018,24 +506303,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34631] = 3, + [23671] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4591), 25, - anon_sym_COLON, + ACTIONS(4451), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -528046,6 +506334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -528060,16 +506349,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4593), 31, - sym__automatic_semicolon, + ACTIONS(4453), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -528092,22 +506383,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34696] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(4951), 1, - sym_function_body, + [23738] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 23, + ACTIONS(5163), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -528128,14 +506413,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4293), 29, + ACTIONS(5165), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -528158,19 +506447,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34769] = 7, - ACTIONS(8242), 1, + [23805] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8322), 1, + ACTIONS(8200), 1, anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(4972), 1, + STATE(4730), 1, sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5031), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 23, + ACTIONS(4160), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -528194,7 +506487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 29, + ACTIONS(4162), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -528224,22 +506517,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34842] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(4989), 1, - sym_function_body, + [23884] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4453), 23, + ACTIONS(4854), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -528260,14 +506547,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4455), 29, + ACTIONS(4856), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -528290,28 +506581,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34915] = 8, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - ACTIONS(8523), 1, - anon_sym_COLON, - STATE(4930), 1, - sym__block, - STATE(4937), 1, - sym_function_body, + [23951] = 4, + ACTIONS(8313), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4269), 22, + ACTIONS(5024), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -528321,61 +506606,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4271), 29, + ACTIONS(5026), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34990] = 5, - ACTIONS(5864), 1, + [24020] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(5247), 1, - sym_class_body, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5033), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 24, + ACTIONS(4147), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -528390,14 +506686,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 30, - sym__automatic_semicolon, + ACTIONS(4149), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -528421,15 +506716,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35059] = 5, - ACTIONS(5864), 1, - anon_sym_LBRACE, - STATE(5400), 1, - sym_class_body, + [24099] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4637), 24, + ACTIONS(1802), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -528440,6 +506731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -528454,15 +506746,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4639), 30, - sym__automatic_semicolon, + ACTIONS(1804), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -528485,12 +506780,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35128] = 3, + [24166] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4744), 25, - anon_sym_COLON, + ACTIONS(3992), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -528501,6 +506795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -528515,16 +506810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4746), 31, - sym__automatic_semicolon, + ACTIONS(3994), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -528547,86 +506844,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35193] = 7, - ACTIONS(5894), 1, + [24233] = 10, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(5898), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - STATE(5434), 1, + ACTIONS(8261), 1, + anon_sym_EQ, + ACTIONS(8316), 1, + anon_sym_COLON, + STATE(5091), 1, + sym__block, + STATE(5164), 1, sym_type_constraints, - STATE(5521), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4283), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4281), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [35266] = 5, - ACTIONS(8525), 1, - anon_sym_COMMA, - STATE(5109), 1, - aux_sym_type_constraints_repeat1, + STATE(5178), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4506), 24, + ACTIONS(4147), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -528646,12 +506885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4508), 30, + ACTIONS(4149), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -528677,29 +506915,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35335] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(4972), 1, - sym_function_body, - STATE(5270), 1, - sym_type_constraints, + [24314] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 21, + ACTIONS(4870), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -528709,23 +506938,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 29, + ACTIONS(4872), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, @@ -528733,24 +506963,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35412] = 3, + [24381] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4758), 25, - anon_sym_COLON, + ACTIONS(4147), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -528761,6 +506994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -528775,16 +507009,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4760), 31, - sym__automatic_semicolon, + ACTIONS(4149), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -528807,15 +507043,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35477] = 5, - ACTIONS(5864), 1, - anon_sym_LBRACE, - STATE(5268), 1, - sym_class_body, + [24448] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4461), 24, + ACTIONS(4880), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -528826,6 +507058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -528840,15 +507073,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4463), 30, - sym__automatic_semicolon, + ACTIONS(4882), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -528871,15 +507107,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35546] = 5, - ACTIONS(5864), 1, - anon_sym_LBRACE, - STATE(5401), 1, - sym_class_body, + [24515] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4465), 24, + ACTIONS(4888), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -528890,6 +507122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -528904,15 +507137,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4467), 30, - sym__automatic_semicolon, + ACTIONS(4890), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -528935,81 +507171,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35615] = 7, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_LBRACE, - STATE(5494), 1, - sym_function_body, - STATE(5534), 1, - sym__block, + [24582] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4154), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [35688] = 5, - ACTIONS(5864), 1, - anon_sym_LBRACE, - STATE(5295), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4722), 24, + ACTIONS(4910), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -529020,6 +507186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529034,15 +507201,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4724), 30, - sym__automatic_semicolon, + ACTIONS(4912), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -529065,15 +507235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35757] = 5, - ACTIONS(8527), 1, - anon_sym_COMMA, - STATE(5117), 1, - aux_sym__delegation_specifiers_repeat1, + [24649] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4740), 24, + ACTIONS(4926), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -529084,6 +507250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529098,15 +507265,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4742), 30, - sym__automatic_semicolon, + ACTIONS(4928), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -529129,15 +507299,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35826] = 5, - ACTIONS(5876), 1, - anon_sym_LBRACE, - STATE(5326), 1, - sym_enum_class_body, + [24716] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 24, + ACTIONS(4930), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -529148,6 +507314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529162,15 +507329,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3296), 30, - sym__automatic_semicolon, + ACTIONS(4932), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -529193,12 +507363,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35895] = 3, + [24783] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4677), 25, - anon_sym_COLON, + ACTIONS(4934), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -529209,6 +507378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529223,16 +507393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4679), 31, - sym__automatic_semicolon, + ACTIONS(4936), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -529255,15 +507427,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35960] = 5, - ACTIONS(5876), 1, - anon_sym_LBRACE, - STATE(5401), 1, - sym_enum_class_body, + [24850] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4465), 24, + ACTIONS(4938), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -529274,6 +507442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529288,15 +507457,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4467), 30, - sym__automatic_semicolon, + ACTIONS(4940), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -529319,15 +507491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36029] = 5, - ACTIONS(5864), 1, - anon_sym_LBRACE, - STATE(5326), 1, - sym_class_body, + [24917] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 24, + ACTIONS(4942), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -529338,6 +507506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529352,15 +507521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3296), 30, - sym__automatic_semicolon, + ACTIONS(4944), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -529383,15 +507555,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36098] = 5, - ACTIONS(5864), 1, - anon_sym_LBRACE, - STATE(5332), 1, - sym_class_body, + [24984] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 24, + ACTIONS(4970), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -529402,6 +507570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529416,15 +507585,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 30, - sym__automatic_semicolon, + ACTIONS(4972), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -529447,79 +507619,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36167] = 5, - ACTIONS(8529), 1, - anon_sym_COMMA, - STATE(5149), 1, - aux_sym__delegation_specifiers_repeat1, + [25051] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4707), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4705), 31, - anon_sym_fun, + ACTIONS(4447), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [36236] = 5, - ACTIONS(8525), 1, + ACTIONS(4449), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - STATE(5136), 1, - aux_sym_type_constraints_repeat1, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [25118] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4541), 24, + ACTIONS(5051), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -529530,6 +507698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529544,15 +507713,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4543), 30, - sym__automatic_semicolon, + ACTIONS(5053), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -529575,12 +507747,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36305] = 3, + [25185] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4786), 25, - anon_sym_COLON, + ACTIONS(5020), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -529591,6 +507762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529605,16 +507777,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4788), 31, - sym__automatic_semicolon, + ACTIONS(5022), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -529637,12 +507811,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36370] = 3, + [25252] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 25, - anon_sym_COLON, + ACTIONS(5047), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -529653,6 +507826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529667,16 +507841,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 31, - sym__automatic_semicolon, + ACTIONS(5049), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -529699,21 +507875,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36435] = 5, - ACTIONS(8532), 1, - anon_sym_COMMA, - STATE(5153), 1, - aux_sym_type_constraints_repeat1, + [25319] = 9, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(4966), 1, + sym_type_constraints, + STATE(5406), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4497), 24, + ACTIONS(4185), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -529732,9 +507914,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4495), 30, - anon_sym_fun, + ACTIONS(4183), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -529763,13 +507945,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [36504] = 4, - ACTIONS(8489), 1, - anon_sym_by, + [25398] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4435), 24, + ACTIONS(5031), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -529780,6 +507960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529794,16 +507975,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4437), 31, - sym__automatic_semicolon, + ACTIONS(5033), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -529826,29 +508009,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36571] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - STATE(4842), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5216), 1, - sym_type_constraints, + [25465] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 21, + ACTIONS(5153), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -529858,23 +508032,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 29, + ACTIONS(5155), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, @@ -529882,27 +508057,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36648] = 5, - ACTIONS(8527), 1, - anon_sym_COMMA, - STATE(5143), 1, - aux_sym__delegation_specifiers_repeat1, + [25532] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4671), 24, + ACTIONS(5139), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -529913,6 +508088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529927,15 +508103,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4673), 30, - sym__automatic_semicolon, + ACTIONS(5141), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -529958,15 +508137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36717] = 5, - ACTIONS(5864), 1, - anon_sym_LBRACE, - STATE(5328), 1, - sym_class_body, + [25599] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4457), 24, + ACTIONS(5149), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -529977,6 +508152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529991,15 +508167,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4459), 30, - sym__automatic_semicolon, + ACTIONS(5151), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -530022,81 +508201,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36786] = 7, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5417), 1, - sym_type_constraints, - STATE(5537), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4463), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4461), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [36859] = 5, - ACTIONS(5864), 1, - anon_sym_LBRACE, - STATE(5370), 1, - sym_class_body, + [25666] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 24, + ACTIONS(5107), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -530107,6 +508216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -530121,15 +508231,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 30, - sym__automatic_semicolon, + ACTIONS(5109), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -530152,12 +508265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36928] = 3, + [25733] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4695), 25, - anon_sym_COLON, + ACTIONS(4355), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -530168,6 +508280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -530182,16 +508295,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4697), 31, - sym__automatic_semicolon, + ACTIONS(4357), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -530214,28 +508329,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36993] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - STATE(4885), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + [25800] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4518), 23, + ACTIONS(4317), 27, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -530250,13 +508361,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4520), 29, + ACTIONS(4319), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -530280,22 +508393,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37066] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - STATE(4924), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + [25867] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4530), 23, + ACTIONS(5043), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -530316,14 +508423,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4532), 29, + ACTIONS(5045), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -530346,20 +508457,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37139] = 7, - ACTIONS(8242), 1, + [25934] = 7, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_EQ, - STATE(4837), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + STATE(4971), 1, + sym_type_constraints, + STATE(5171), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4339), 23, + ACTIONS(4355), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -530367,7 +508479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -530382,13 +508493,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4341), 29, + ACTIONS(4357), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -530412,17 +508524,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37212] = 3, + [26008] = 8, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8318), 1, + anon_sym_COLON, + STATE(5293), 1, + sym_type_constraints, + STATE(5415), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4685), 25, - anon_sym_COLON, + ACTIONS(4323), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4321), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [26084] = 7, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + STATE(4972), 1, + sym_type_constraints, + STATE(5106), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -530442,12 +508628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4687), 31, + ACTIONS(4218), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -530474,21 +508659,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37277] = 5, - ACTIONS(5876), 1, - anon_sym_LBRACE, - STATE(5328), 1, - sym_enum_class_body, + [26158] = 5, + ACTIONS(8320), 1, + anon_sym_DOT, + STATE(4641), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4457), 24, + ACTIONS(4193), 24, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -530507,11 +508692,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4459), 30, + ACTIONS(4195), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -530538,82 +508724,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37346] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4693), 24, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4691), 32, - anon_sym_COLON, - anon_sym_fun, + [26228] = 8, + ACTIONS(5776), 1, anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [37411] = 5, - ACTIONS(5864), 1, + ACTIONS(5788), 1, anon_sym_LBRACE, - STATE(5315), 1, + ACTIONS(6032), 1, + anon_sym_COLON, + STATE(5029), 1, + sym_type_constraints, + STATE(5118), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4772), 24, + ACTIONS(3278), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -530633,14 +508762,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4774), 30, + ACTIONS(3282), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -530664,21 +508792,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37480] = 8, - ACTIONS(8361), 1, + [26304] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8392), 1, + ACTIONS(8261), 1, anon_sym_EQ, - ACTIONS(8535), 1, - anon_sym_COLON, - STATE(5275), 1, - sym_function_body, - STATE(5351), 1, + STATE(5091), 1, sym__block, + STATE(5164), 1, + sym_type_constraints, + STATE(5178), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4339), 22, + ACTIONS(4147), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -530701,7 +508831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4341), 29, + ACTIONS(4149), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -530731,20 +508861,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37555] = 5, - ACTIONS(5876), 1, + [26382] = 7, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, anon_sym_LBRACE, - STATE(5315), 1, - sym_enum_class_body, + STATE(4979), 1, + sym_type_constraints, + STATE(5106), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4772), 24, + ACTIONS(4216), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -530764,7 +508897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4774), 30, + ACTIONS(4218), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -530795,20 +508928,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37624] = 5, - ACTIONS(5864), 1, + [26456] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, anon_sym_LBRACE, - STATE(5274), 1, + ACTIONS(8323), 1, + anon_sym_COLON, + STATE(4979), 1, + sym_type_constraints, + STATE(5106), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 24, + ACTIONS(4216), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -530828,14 +508966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 30, + ACTIONS(4218), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -530859,25 +508996,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37693] = 5, - ACTIONS(5876), 1, + [26532] = 8, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(5274), 1, - sym_enum_class_body, + ACTIONS(8200), 1, + anon_sym_EQ, + ACTIONS(8325), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4813), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 24, + ACTIONS(4275), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -530892,14 +509034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 30, - sym__automatic_semicolon, + ACTIONS(4277), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -530923,19 +509064,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37762] = 4, - ACTIONS(8537), 1, - anon_sym_AT2, + [26608] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(6056), 1, + anon_sym_COLON, + STATE(4981), 1, + sym_type_constraints, + STATE(5246), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4641), 25, - anon_sym_AT, + ACTIONS(3286), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -530955,14 +509102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4643), 30, + ACTIONS(3290), 29, sym__automatic_semicolon, sym_safe_nav, + anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -530986,25 +509132,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37829] = 5, - ACTIONS(5864), 1, + [26684] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(5258), 1, - sym_class_body, + ACTIONS(8327), 1, + anon_sym_COLON, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5250), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4595), 24, + ACTIONS(4147), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -531012,120 +509166,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4597), 30, - sym__automatic_semicolon, + ACTIONS(4149), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37898] = 3, + [26764] = 8, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + ACTIONS(8331), 1, + anon_sym_COLON, + STATE(4763), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4687), 24, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4307), 23, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4309), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4685), 32, - anon_sym_COLON, - anon_sym_fun, + [26840] = 5, + ACTIONS(8333), 1, + aux_sym_unsigned_literal_token1, + ACTIONS(8335), 1, + anon_sym_L, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4455), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [37963] = 5, - ACTIONS(5876), 1, + ACTIONS(4457), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [26910] = 7, + ACTIONS(5770), 1, anon_sym_LBRACE, - STATE(5258), 1, + ACTIONS(5776), 1, + anon_sym_where, + STATE(4999), 1, + sym_type_constraints, + STATE(5231), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4595), 24, + ACTIONS(4321), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -531145,7 +509371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4597), 30, + ACTIONS(4323), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -531176,83 +509402,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38032] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4679), 24, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4677), 32, - anon_sym_COLON, - anon_sym_fun, - anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [38097] = 6, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(8539), 1, - anon_sym_COLON, - STATE(4935), 1, - sym_class_body, + [26984] = 5, + ACTIONS(8337), 1, + anon_sym_COMMA, + STATE(4648), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 24, + ACTIONS(4736), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -531273,10 +509436,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 29, + ACTIONS(4738), 30, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -531303,14 +509467,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38168] = 3, + [27054] = 5, + ACTIONS(8337), 1, + anon_sym_COMMA, + STATE(4908), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4776), 25, + ACTIONS(4684), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -531319,6 +509486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -531333,15 +509501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4778), 31, - sym__automatic_semicolon, + ACTIONS(4686), 30, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -531365,21 +509532,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38233] = 8, - ACTIONS(8361), 1, + [27124] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8392), 1, + ACTIONS(8261), 1, anon_sym_EQ, - ACTIONS(8541), 1, - anon_sym_COLON, - STATE(5322), 1, + STATE(5073), 1, sym_function_body, - STATE(5351), 1, + STATE(5091), 1, sym__block, + STATE(5179), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 22, + ACTIONS(4299), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -531402,7 +509571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 29, + ACTIONS(4301), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -531432,31 +509601,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38308] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, + [27202] = 7, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(4951), 1, - sym_function_body, - STATE(5336), 1, + ACTIONS(5776), 1, + anon_sym_where, + STATE(5009), 1, sym_type_constraints, + STATE(5192), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 21, + ACTIONS(4481), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -531464,48 +509630,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4293), 29, + ACTIONS(4483), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38385] = 3, + [27276] = 6, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8339), 1, + anon_sym_COLON, + STATE(5172), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4691), 25, - anon_sym_COLON, + ACTIONS(4497), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -531530,12 +509703,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4693), 31, + ACTIONS(4499), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -531562,95 +509734,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38450] = 5, - ACTIONS(8543), 1, - anon_sym_COMMA, - STATE(5212), 1, - aux_sym__delegation_specifiers_repeat1, + [27348] = 7, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(5076), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4673), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4671), 31, - anon_sym_fun, + ACTIONS(4307), 23, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [38519] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, + ACTIONS(4309), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [27422] = 7, + ACTIONS(8221), 1, anon_sym_EQ, - STATE(4853), 1, - sym_function_body, - STATE(4930), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(5091), 1, sym__block, - STATE(5286), 1, - sym_type_constraints, + STATE(5140), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 21, + ACTIONS(4443), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -531658,113 +509830,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 29, + ACTIONS(4445), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38596] = 4, - ACTIONS(7211), 1, - anon_sym_by, + [27496] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5194), 1, + sym_function_body, + STATE(5196), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4437), 24, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4435), 31, - anon_sym_fun, - anon_sym_where, - anon_sym_object, + ACTIONS(4295), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [38663] = 3, + ACTIONS(4297), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [27574] = 6, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8341), 1, + anon_sym_COLON, + STATE(5093), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4766), 25, + ACTIONS(4349), 24, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -531787,12 +509972,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4769), 31, + ACTIONS(4351), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -531819,14 +510003,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38728] = 3, + [27646] = 7, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(5091), 1, + sym__block, + STATE(5167), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4748), 25, + ACTIONS(4447), 23, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -531849,12 +510039,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4750), 31, + ACTIONS(4449), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -531881,25 +510070,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38793] = 7, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5413), 1, - sym_type_constraints, - STATE(5468), 1, - sym_class_body, + [27720] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4277), 22, + ACTIONS(4206), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -531916,9 +510100,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4275), 30, - anon_sym_fun, + ACTIONS(4204), 32, + anon_sym_by, + anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -531947,22 +510133,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [38866] = 3, + [27786] = 8, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + ACTIONS(8343), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4802), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4730), 25, + ACTIONS(4229), 23, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -531977,15 +510171,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4733), 31, - sym__automatic_semicolon, + ACTIONS(4231), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -532009,14 +510201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38931] = 3, + [27862] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4726), 25, + ACTIONS(4451), 26, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -532026,6 +510217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_in, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -532039,7 +510232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4728), 31, + ACTIONS(4453), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -532071,25 +510264,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38996] = 7, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_LBRACE, - STATE(5518), 1, - sym_function_body, - STATE(5534), 1, - sym__block, + [27928] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4455), 22, + ACTIONS(4708), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -532106,9 +510294,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4453), 30, - anon_sym_fun, + ACTIONS(4706), 32, + anon_sym_by, + anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -532137,30 +510327,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [39069] = 8, - ACTIONS(8242), 1, + [27994] = 7, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - ACTIONS(8545), 1, - anon_sym_COLON, - STATE(4897), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + ACTIONS(5776), 1, + anon_sym_where, + STATE(5008), 1, + sym_type_constraints, + STATE(5210), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 22, + ACTIONS(4467), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -532168,193 +510356,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 29, + ACTIONS(4469), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39144] = 7, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, + [28068] = 7, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, anon_sym_LBRACE, - STATE(5504), 1, - sym_function_body, - STATE(5534), 1, - sym__block, + STATE(5007), 1, + sym_type_constraints, + STATE(5225), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4287), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(4359), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [39217] = 7, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5453), 1, - sym_type_constraints, - STATE(5525), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4471), 22, + ACTIONS(4361), 30, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4469), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [39290] = 7, - ACTIONS(5888), 1, - anon_sym_LBRACE, - ACTIONS(5894), 1, - anon_sym_where, - STATE(5422), 1, - sym_type_constraints, - STATE(5495), 1, - sym_enum_class_body, + [28142] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4387), 22, + ACTIONS(4698), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -532371,9 +510491,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4385), 30, - anon_sym_fun, + ACTIONS(4696), 32, + anon_sym_by, + anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -532402,25 +510524,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [39363] = 7, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5419), 1, - sym_type_constraints, - STATE(5495), 1, - sym_class_body, + [28208] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4387), 22, + ACTIONS(4676), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -532437,9 +510554,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4385), 30, - anon_sym_fun, + ACTIONS(4674), 32, + anon_sym_by, + anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -532468,17 +510587,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [39436] = 3, + [28274] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5219), 1, + sym_type_constraints, + STATE(5220), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4699), 25, - anon_sym_COLON, + ACTIONS(4183), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -532498,15 +510626,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4701), 31, + ACTIONS(4185), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -532530,349 +510656,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39501] = 7, - ACTIONS(5894), 1, + [28352] = 10, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(5898), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(5442), 1, + ACTIONS(8329), 1, + anon_sym_EQ, + ACTIONS(8345), 1, + anon_sym_COLON, + STATE(4711), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5080), 1, sym_type_constraints, - STATE(5571), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4423), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(4173), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [39574] = 7, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_LBRACE, - STATE(5487), 1, - sym_function_body, - STATE(5534), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4293), 22, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4175), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4291), 30, - anon_sym_fun, - anon_sym_object, + [28432] = 7, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + STATE(5003), 1, + sym_type_constraints, + STATE(5225), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4359), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [39647] = 7, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_LBRACE, - STATE(5477), 1, - sym_function_body, - STATE(5534), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4198), 22, + ACTIONS(4361), 30, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4196), 30, - anon_sym_fun, - anon_sym_object, + [28506] = 7, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(5091), 1, + sym__block, + STATE(5174), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4439), 23, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [39720] = 7, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_LBRACE, - STATE(5534), 1, - sym__block, - STATE(5573), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4166), 22, + ACTIONS(4441), 30, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4164), 30, - anon_sym_fun, - anon_sym_object, + [28580] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8347), 1, + anon_sym_COLON, + STATE(4999), 1, + sym_type_constraints, + STATE(5231), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4321), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [39793] = 7, - ACTIONS(5888), 1, - anon_sym_LBRACE, - ACTIONS(5894), 1, - anon_sym_where, - STATE(5415), 1, - sym_type_constraints, - STATE(5478), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4459), 22, + ACTIONS(4323), 29, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4457), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [39866] = 7, - ACTIONS(5894), 1, + [28656] = 8, + ACTIONS(5764), 1, anon_sym_where, - ACTIONS(5898), 1, + ACTIONS(5780), 1, anon_sym_LBRACE, - STATE(5411), 1, + ACTIONS(6060), 1, + anon_sym_COLON, + STATE(5270), 1, sym_type_constraints, - STATE(5478), 1, + STATE(5316), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4459), 22, + ACTIONS(3274), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -532895,9 +510965,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4457), 30, - anon_sym_fun, + ACTIONS(3270), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -532926,76 +510996,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [39939] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4681), 25, - anon_sym_as, + [28732] = 7, + ACTIONS(8221), 1, anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4683), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(8223), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [40004] = 3, + STATE(5073), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4587), 25, + ACTIONS(4299), 23, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -533018,12 +511032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4589), 31, + ACTIONS(4301), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -533050,15 +511063,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40069] = 4, - STATE(5117), 1, - aux_sym__delegation_specifiers_repeat1, + [28806] = 7, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(5091), 1, + sym__block, + STATE(5194), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4740), 24, + ACTIONS(4295), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -533081,12 +511099,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4742), 31, + ACTIONS(4297), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -533113,17 +511130,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40136] = 3, + [28880] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(5992), 1, + anon_sym_COLON, + STATE(5030), 1, + sym_type_constraints, + STATE(5175), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4667), 25, + ACTIONS(3270), 23, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -533143,15 +511168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4669), 31, + ACTIONS(3274), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -533175,25 +511198,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40201] = 7, - ACTIONS(5888), 1, - anon_sym_LBRACE, - ACTIONS(5894), 1, - anon_sym_where, - STATE(5429), 1, - sym_type_constraints, - STATE(5513), 1, - sym_enum_class_body, + [28956] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4467), 22, + ACTIONS(4573), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -533210,9 +511228,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4465), 30, - anon_sym_fun, + ACTIONS(4571), 32, + anon_sym_by, + anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -533241,25 +511261,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [40274] = 7, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_LBRACE, - STATE(5471), 1, - sym_function_body, - STATE(5534), 1, - sym__block, + [29022] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4185), 22, + ACTIONS(4681), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -533276,9 +511291,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4183), 30, - anon_sym_fun, + ACTIONS(4678), 32, + anon_sym_by, + anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -533307,25 +511324,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [40347] = 7, - ACTIONS(5894), 1, - anon_sym_where, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5430), 1, - sym_type_constraints, - STATE(5513), 1, - sym_class_body, + [29088] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4467), 22, + ACTIONS(4730), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -533342,9 +511354,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4465), 30, - anon_sym_fun, + ACTIONS(4728), 32, + anon_sym_by, + anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -533373,92 +511387,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [40420] = 8, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - ACTIONS(8547), 1, - anon_sym_COLON, - STATE(4837), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + [29154] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4339), 22, + ACTIONS(4485), 26, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4341), 29, + ACTIONS(4487), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40495] = 7, - ACTIONS(5888), 1, - anon_sym_LBRACE, - ACTIONS(5894), 1, - anon_sym_where, - STATE(5438), 1, - sym_type_constraints, - STATE(5571), 1, - sym_enum_class_body, + [29220] = 5, + ACTIONS(7123), 1, + anon_sym_by, + STATE(5119), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 22, + ACTIONS(4507), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -533475,9 +511483,10 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4423), 30, - anon_sym_fun, + ACTIONS(4505), 31, + anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -533506,20 +511515,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [40568] = 5, - ACTIONS(8543), 1, - anon_sym_COMMA, - STATE(5149), 1, - aux_sym__delegation_specifiers_repeat1, + [29290] = 8, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(6036), 1, + anon_sym_COLON, + STATE(5314), 1, + sym_type_constraints, + STATE(5353), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4742), 23, + ACTIONS(3290), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -533538,10 +511552,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4740), 31, - anon_sym_fun, - anon_sym_where, + ACTIONS(3286), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -533570,17 +511583,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [40637] = 3, + [29366] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5956), 1, + anon_sym_COLON, + STATE(5049), 1, + sym_type_constraints, + STATE(5118), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 25, + ACTIONS(3278), 23, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -533600,15 +511621,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 31, + ACTIONS(3282), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -533632,16 +511651,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40702] = 3, + [29442] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8349), 1, + anon_sym_COLON, + STATE(5057), 1, + sym_type_constraints, + STATE(5102), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4960), 24, + ACTIONS(4327), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -533661,15 +511689,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4962), 31, + ACTIONS(4329), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -533693,146 +511719,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40766] = 7, - ACTIONS(8361), 1, + [29518] = 8, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(8392), 1, - anon_sym_EQ, - STATE(5261), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + ACTIONS(8351), 1, + anon_sym_COLON, + STATE(5315), 1, + sym_type_constraints, + STATE(5358), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4289), 29, + ACTIONS(4218), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [40838] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - STATE(4853), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4183), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4216), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4185), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [40910] = 3, + [29594] = 7, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(4998), 1, + sym_type_constraints, + STATE(5249), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5083), 24, + ACTIONS(4463), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -533852,12 +511823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5085), 31, + ACTIONS(4465), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -533884,74 +511854,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40974] = 3, + [29668] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5079), 24, - anon_sym_as, + ACTIONS(4765), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4762), 32, + anon_sym_by, anon_sym_where, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5081), 31, + [29734] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4672), 25, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [41038] = 3, + ACTIONS(4670), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [29800] = 7, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(5091), 1, + sym__block, + STATE(5220), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5075), 24, + ACTIONS(4183), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -533974,12 +512016,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5077), 31, + ACTIONS(4185), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -534006,16 +512047,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41102] = 3, + [29874] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5240), 1, + sym_function_body, + STATE(5243), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4852), 24, + ACTIONS(4160), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -534035,15 +512086,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4854), 31, + ACTIONS(4162), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -534067,15 +512116,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41166] = 4, - ACTIONS(8549), 1, - anon_sym_LT, + [29952] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5049), 23, + ACTIONS(4345), 26, anon_sym_as, anon_sym_EQ, + anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, @@ -534084,6 +512132,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_in, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -534097,7 +512147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5051), 31, + ACTIONS(4347), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -534129,16 +512179,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41232] = 3, + [30018] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8353), 1, + anon_sym_COLON, + STATE(4972), 1, + sym_type_constraints, + STATE(5106), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1622), 24, + ACTIONS(4216), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -534158,15 +512217,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1620), 31, + ACTIONS(4218), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -534190,11 +512247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41296] = 3, + [30094] = 5, + ACTIONS(8355), 1, + anon_sym_by, + STATE(5127), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5103), 24, + ACTIONS(4505), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -534219,7 +512280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5105), 31, + ACTIONS(4507), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -534251,16 +512312,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41360] = 3, + [30164] = 7, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + STATE(4995), 1, + sym_type_constraints, + STATE(5249), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1732), 24, + ACTIONS(4463), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -534280,12 +512348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1734), 31, + ACTIONS(4465), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -534312,13 +512379,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41424] = 3, + [30238] = 7, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(5091), 1, + sym__block, + STATE(5141), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4972), 24, + ACTIONS(4137), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -534341,12 +512415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4974), 31, + ACTIONS(4139), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -534373,21 +512446,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41488] = 3, + [30312] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + ACTIONS(8357), 1, + anon_sym_COLON, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5237), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4856), 24, + ACTIONS(4183), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -534395,55 +512480,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4858), 31, - sym__automatic_semicolon, + ACTIONS(4185), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41552] = 3, + [30392] = 7, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(4993), 1, + sym_type_constraints, + STATE(5253), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5231), 24, + ACTIONS(4493), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -534463,12 +512552,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5233), 31, + ACTIONS(4495), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -534495,13 +512583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41616] = 3, + [30466] = 7, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(5091), 1, + sym__block, + STATE(5240), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5061), 24, + ACTIONS(4160), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -534524,12 +512619,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5063), 31, + ACTIONS(4162), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -534556,21 +512650,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41680] = 3, + [30540] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + ACTIONS(8359), 1, + anon_sym_COLON, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5188), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4034), 24, + ACTIONS(4160), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -534578,55 +512684,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4036), 31, - sym__automatic_semicolon, + ACTIONS(4162), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41744] = 3, + [30620] = 7, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5057), 1, + sym_type_constraints, + STATE(5102), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4860), 24, + ACTIONS(4327), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -534646,12 +512756,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4862), 31, + ACTIONS(4329), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -534678,21 +512787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41808] = 6, - ACTIONS(5053), 1, + [30694] = 7, + ACTIONS(8221), 1, anon_sym_EQ, - ACTIONS(8551), 1, - anon_sym_COLON_COLON, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5055), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(5038), 23, + ACTIONS(4147), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -534716,12 +512823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5040), 25, + ACTIONS(4149), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -534731,6 +512837,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -534742,72 +512854,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41878] = 3, + [30768] = 8, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(8361), 1, + anon_sym_COLON, + STATE(5298), 1, + sym_type_constraints, + STATE(5378), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5227), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4329), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4327), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5229), 31, + [30844] = 8, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5954), 1, + anon_sym_COLON, + STATE(5271), 1, + sym_type_constraints, + STATE(5391), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3282), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [41942] = 3, + ACTIONS(3278), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [30920] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5049), 24, + ACTIONS(4477), 26, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -534819,6 +513006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_in, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -534832,7 +513021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5051), 31, + ACTIONS(4479), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -534864,21 +513053,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42006] = 3, + [30986] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + ACTIONS(8363), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4871), 1, + sym_function_body, + STATE(5089), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 24, + ACTIONS(4137), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -534886,184 +513087,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 31, - sym__automatic_semicolon, + ACTIONS(4139), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42070] = 7, - ACTIONS(8361), 1, + [31066] = 8, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(8392), 1, - anon_sym_EQ, - STATE(5346), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + ACTIONS(5974), 1, + anon_sym_COLON, + STATE(5295), 1, + sym_type_constraints, + STATE(5391), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(3282), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3278), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4166), 29, + [31142] = 8, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8365), 1, + anon_sym_COLON, + STATE(5300), 1, + sym_type_constraints, + STATE(5358), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4218), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [42142] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4868), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4216), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4870), 31, + [31218] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5386), 1, + sym_function_body, + STATE(5420), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4297), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [42206] = 3, + ACTIONS(4295), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [31291] = 5, + ACTIONS(8367), 1, + anon_sym_COMMA, + STATE(4973), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4936), 24, + ACTIONS(4426), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -535080,10 +513358,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4934), 31, - anon_sym_fun, - anon_sym_where, + ACTIONS(4424), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -535112,11 +513389,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [42270] = 3, + [31360] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5045), 24, + ACTIONS(4581), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -535141,7 +513419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5047), 31, + ACTIONS(4583), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -535173,29 +513451,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42334] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8554), 1, - anon_sym_COLON, - STATE(4757), 1, - sym_type_constraints, - STATE(4952), 1, - sym_class_body, + [31425] = 4, + ACTIONS(8369), 1, + anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 21, + ACTIONS(4740), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -535203,60 +513475,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 29, + ACTIONS(4742), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42408] = 8, - ACTIONS(5552), 1, + [31492] = 8, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(6220), 1, + ACTIONS(8329), 1, + anon_sym_EQ, + ACTIONS(8371), 1, anon_sym_COLON, - STATE(4769), 1, - sym_type_constraints, - STATE(4975), 1, - sym_class_body, + STATE(4763), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 21, + ACTIONS(4307), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -535275,7 +513551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3296), 29, + ACTIONS(4309), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -535305,11 +513581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42482] = 3, + [31567] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5253), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 24, + ACTIONS(4493), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -535334,12 +513614,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 31, + ACTIONS(4495), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -535366,11 +513645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42546] = 3, + [31636] = 5, + ACTIONS(5770), 1, + anon_sym_LBRACE, + STATE(5249), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5107), 24, + ACTIONS(4463), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -535395,12 +513678,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5109), 31, + ACTIONS(4465), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -535427,13 +513709,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42610] = 3, + [31705] = 5, + ACTIONS(8373), 1, + anon_sym_COMMA, + STATE(4973), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4432), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4430), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [31774] = 8, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + ACTIONS(8376), 1, + anon_sym_COLON, + STATE(5076), 1, + sym_function_body, + STATE(5091), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4307), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4309), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [31849] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5032), 24, + ACTIONS(4204), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -535456,7 +513870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5034), 31, + ACTIONS(4206), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -535488,17 +513902,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42674] = 6, - ACTIONS(5898), 1, + [31914] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8556), 1, - anon_sym_COLON, - STATE(5553), 1, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5237), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4183), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4185), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [31991] = 7, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5298), 1, + sym_type_constraints, + STATE(5378), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4445), 22, + ACTIONS(4329), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535521,9 +514005,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4443), 30, - anon_sym_fun, + ACTIONS(4327), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -535552,15 +514036,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [42744] = 5, - ACTIONS(8558), 1, - anon_sym_SEMI, - ACTIONS(8560), 1, - anon_sym_else, + [32064] = 4, + ACTIONS(8378), 1, + anon_sym_AT2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 23, + ACTIONS(4710), 25, + anon_sym_AT, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -535571,6 +514054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -535584,15 +514068,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 30, + ACTIONS(4712), 30, sym__automatic_semicolon, sym_safe_nav, - anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -535615,13 +514099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42812] = 4, - ACTIONS(8560), 1, - anon_sym_else, + [32131] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5249), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 23, + ACTIONS(4463), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -535632,6 +514118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -535645,12 +514132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 31, + ACTIONS(4465), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -535677,11 +514163,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42878] = 3, + [32200] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 24, + ACTIONS(4583), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4581), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [32265] = 5, + ACTIONS(5770), 1, + anon_sym_LBRACE, + STATE(5231), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4321), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -535706,12 +514258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 31, + ACTIONS(4323), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -535738,22 +514289,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42942] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8392), 1, - anon_sym_EQ, - STATE(5232), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [32334] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4453), 22, + ACTIONS(4577), 25, + anon_sym_COLON, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -535773,13 +514319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4455), 29, + ACTIONS(4579), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -535803,16 +514351,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43014] = 3, + [32399] = 8, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + ACTIONS(8380), 1, + anon_sym_COLON, + STATE(5090), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3130), 24, + ACTIONS(4229), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -535832,15 +514388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3132), 31, + ACTIONS(4231), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -535864,28 +514418,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43078] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(5001), 1, - sym_function_body, + [32474] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 22, + ACTIONS(4706), 25, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -535893,49 +514441,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 29, + ACTIONS(4708), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43150] = 3, + [32539] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5024), 24, + ACTIONS(4696), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -535958,7 +514510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5026), 31, + ACTIONS(4698), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -535990,29 +514542,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43214] = 8, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, + [32604] = 5, + ACTIONS(8382), 1, + anon_sym_COMMA, + STATE(5014), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4738), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(6252), 1, - anon_sym_COLON, - STATE(4781), 1, - sym_type_constraints, - STATE(4975), 1, - sym_enum_class_body, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4736), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [32673] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 21, + ACTIONS(4674), 25, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -536020,55 +514629,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3296), 29, + ACTIONS(4676), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43288] = 3, + [32738] = 5, + ACTIONS(8367), 1, + anon_sym_COMMA, + STATE(4967), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4942), 24, + ACTIONS(4341), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -536085,10 +514701,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4940), 31, - anon_sym_fun, - anon_sym_where, + ACTIONS(4339), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -536117,80 +514732,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [43352] = 3, + [32807] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4593), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4591), 32, + ACTIONS(4758), 25, anon_sym_COLON, - anon_sym_fun, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [43416] = 3, + ACTIONS(4760), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [32872] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5420), 1, + sym__block, + STATE(5421), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4974), 24, + ACTIONS(4139), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -536207,10 +514829,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4972), 31, - anon_sym_fun, - anon_sym_where, + ACTIONS(4137), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -536239,11 +514860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [43480] = 3, + [32945] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4718), 24, + ACTIONS(4543), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -536268,7 +514890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4720), 31, + ACTIONS(4545), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -536300,21 +514922,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43544] = 3, + [33010] = 8, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + ACTIONS(8384), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4813), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5149), 24, + ACTIONS(4275), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -536322,50 +514953,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5151), 31, - sym__automatic_semicolon, + ACTIONS(4277), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43608] = 3, + [33085] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5228), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5223), 24, + ACTIONS(4644), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -536390,12 +515022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5225), 31, + ACTIONS(4646), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -536422,11 +515053,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43672] = 3, + [33154] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3436), 24, + ACTIONS(4585), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -536451,7 +515083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3438), 31, + ACTIONS(4587), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -536483,11 +515115,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43736] = 3, + [33219] = 5, + ACTIONS(5770), 1, + anon_sym_LBRACE, + STATE(5225), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5193), 24, + ACTIONS(4359), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -536512,12 +515148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5195), 31, + ACTIONS(4361), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -536544,21 +515179,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43800] = 3, + [33288] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4824), 1, + sym_function_body, + STATE(5190), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4453), 24, + ACTIONS(4295), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -536566,114 +515211,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4455), 31, - sym__automatic_semicolon, + ACTIONS(4297), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43864] = 6, - ACTIONS(4010), 1, - anon_sym_EQ, - ACTIONS(7367), 1, - anon_sym_LPAREN, + [33365] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4236), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4561), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4559), 32, + anon_sym_COLON, anon_sym_where, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4239), 25, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + [33430] = 5, + ACTIONS(5788), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [43934] = 3, + STATE(5225), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 24, + ACTIONS(4359), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -536698,12 +515342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4497), 31, + ACTIONS(4361), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -536730,11 +515373,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43998] = 3, + [33499] = 5, + ACTIONS(5770), 1, + anon_sym_LBRACE, + STATE(5210), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5016), 24, + ACTIONS(4467), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -536759,12 +515406,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5018), 31, + ACTIONS(4469), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -536791,87 +515437,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44062] = 7, - ACTIONS(8242), 1, + [33568] = 7, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - STATE(4837), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + STATE(5299), 1, + sym_type_constraints, + STATE(5388), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4339), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4357), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4355), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4341), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, + [33641] = 5, + ACTIONS(8386), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [44134] = 6, - ACTIONS(4010), 1, - anon_sym_EQ, - ACTIONS(7363), 1, - anon_sym_LPAREN, + STATE(5001), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4347), 23, + ACTIONS(4430), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -536894,14 +515536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4350), 25, + ACTIONS(4432), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -536909,6 +515551,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -536920,11 +515567,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44204] = 3, + [33710] = 7, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, + anon_sym_where, + STATE(5300), 1, + sym_type_constraints, + STATE(5358), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4218), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4216), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [33783] = 5, + ACTIONS(5770), 1, + anon_sym_LBRACE, + STATE(5199), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5069), 24, + ACTIONS(4652), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -536949,12 +515666,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5071), 31, + ACTIONS(4654), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -536981,13 +515697,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44268] = 3, + [33852] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4545), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4543), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [33917] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4469), 24, + ACTIONS(4571), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -537010,7 +515789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4471), 31, + ACTIONS(4573), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -537042,13 +515821,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44332] = 3, + [33982] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5012), 24, + ACTIONS(4678), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -537071,7 +515851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5014), 31, + ACTIONS(4681), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -537103,28 +515883,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44396] = 7, - ACTIONS(8242), 1, + [34047] = 5, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(4989), 1, - sym_function_body, + STATE(5199), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4453), 22, + ACTIONS(4652), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -537132,47 +515909,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4455), 29, + ACTIONS(4654), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44468] = 3, + [34116] = 5, + ACTIONS(5770), 1, + anon_sym_LBRACE, + STATE(5192), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5008), 24, + ACTIONS(4481), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -537197,12 +515980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5010), 31, + ACTIONS(4483), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -537229,11 +516011,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44532] = 3, + [34185] = 5, + ACTIONS(5770), 1, + anon_sym_LBRACE, + STATE(5181), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5000), 24, + ACTIONS(4567), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -537258,12 +516044,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5002), 31, + ACTIONS(4569), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -537290,21 +516075,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44596] = 3, + [34254] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4699), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5173), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4996), 24, + ACTIONS(4299), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -537312,50 +516107,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4998), 31, - sym__automatic_semicolon, + ACTIONS(4301), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44660] = 3, + [34331] = 5, + ACTIONS(8389), 1, + anon_sym_COMMA, + STATE(5035), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4595), 24, + ACTIONS(4736), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -537380,7 +516176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4597), 31, + ACTIONS(4738), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -537388,7 +516184,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -537412,11 +516207,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44724] = 3, + [34400] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5365), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 24, + ACTIONS(4441), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4439), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [34473] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4551), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -537441,7 +516303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 31, + ACTIONS(4553), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -537473,11 +516335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44788] = 3, + [34538] = 5, + ACTIONS(8391), 1, + anon_sym_COMMA, + STATE(5014), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4697), 23, + ACTIONS(4635), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -537501,11 +516367,76 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4695), 32, - anon_sym_COLON, - anon_sym_fun, + ACTIONS(4633), 31, anon_sym_where, anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [34607] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5346), 1, + sym_function_body, + STATE(5420), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4149), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4147), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -537534,11 +516465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [44852] = 3, + [34680] = 5, + ACTIONS(8394), 1, + anon_sym_COMMA, + STATE(5052), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1800), 24, + ACTIONS(4339), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -537563,7 +516498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1802), 31, + ACTIONS(4341), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -537571,7 +516506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -537595,72 +516529,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44916] = 3, + [34749] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5111), 24, - anon_sym_as, + ACTIONS(4748), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4746), 32, + anon_sym_COLON, anon_sym_where, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5113), 31, + [34814] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5370), 1, + sym_function_body, + STATE(5420), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4301), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4299), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [34887] = 7, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, + anon_sym_where, + STATE(5287), 1, + sym_type_constraints, + STATE(5381), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4483), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [44980] = 3, + ACTIONS(4481), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [34960] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5262), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4992), 24, + ACTIONS(4547), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -537685,12 +516756,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4994), 31, + ACTIONS(4549), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -537717,84 +516787,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45044] = 3, + [35029] = 7, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, + anon_sym_where, + STATE(5288), 1, + sym_type_constraints, + STATE(5399), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3284), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4469), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4467), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3288), 31, + [35102] = 7, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5289), 1, + sym_type_constraints, + STATE(5410), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4361), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [45108] = 4, - ACTIONS(6810), 1, - anon_sym_LPAREN, + ACTIONS(4359), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [35175] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4838), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4347), 24, + ACTIONS(4439), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -537809,14 +516955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4350), 30, - sym__automatic_semicolon, + ACTIONS(4441), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -537840,22 +516985,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45174] = 7, - ACTIONS(8361), 1, + [35248] = 5, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(8392), 1, - anon_sym_EQ, - STATE(5242), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + STATE(5246), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4518), 22, + ACTIONS(3286), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -537875,13 +517018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4520), 29, + ACTIONS(3290), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -537905,11 +517049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45246] = 3, + [35317] = 5, + ACTIONS(8389), 1, + anon_sym_COMMA, + STATE(5011), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4518), 24, + ACTIONS(4684), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -537934,7 +517082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4520), 31, + ACTIONS(4686), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -537942,7 +517090,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -537966,21 +517113,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45310] = 3, + [35386] = 7, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5315), 1, + sym_type_constraints, + STATE(5358), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5057), 24, - anon_sym_as, + ACTIONS(4218), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4216), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [35459] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, anon_sym_EQ, + STATE(4699), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4299), 23, + anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -537995,15 +517215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5059), 31, - sym__automatic_semicolon, + ACTIONS(4301), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -538027,21 +517245,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45374] = 3, + [35532] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5145), 24, + ACTIONS(4295), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -538056,15 +517281,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5147), 31, - sym__automatic_semicolon, + ACTIONS(4297), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -538088,28 +517311,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45438] = 7, - ACTIONS(8242), 1, + [35605] = 5, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(4951), 1, - sym_function_body, + STATE(5106), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 22, + ACTIONS(4216), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -538117,49 +517337,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4293), 29, + ACTIONS(4218), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45510] = 4, - ACTIONS(6801), 1, - anon_sym_LPAREN, + [35674] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5102), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 24, + ACTIONS(4327), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -538184,13 +517408,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4239), 30, + ACTIONS(4329), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -538215,21 +517439,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45576] = 3, + [35743] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4988), 24, + ACTIONS(4183), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -538244,15 +517475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4990), 31, - sym__automatic_semicolon, + ACTIONS(4185), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -538276,21 +517505,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45640] = 3, + [35816] = 4, + ACTIONS(7123), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4984), 24, - anon_sym_as, + ACTIONS(4507), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4505), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [35883] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, anon_sym_EQ, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4160), 23, + anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -538305,15 +517604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4986), 31, - sym__automatic_semicolon, + ACTIONS(4162), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -538337,21 +517634,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45704] = 3, + [35956] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5250), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5183), 24, + ACTIONS(4147), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -538359,50 +517666,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5185), 31, - sym__automatic_semicolon, + ACTIONS(4149), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45768] = 3, + [36033] = 5, + ACTIONS(8396), 1, + anon_sym_COMMA, + STATE(5035), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4934), 24, + ACTIONS(4633), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -538427,7 +517735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4936), 31, + ACTIONS(4635), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -538435,7 +517743,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -538459,21 +517766,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45832] = 3, + [36102] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5187), 24, + ACTIONS(4147), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -538488,15 +517802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5189), 31, - sym__automatic_semicolon, + ACTIONS(4149), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -538520,19 +517832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45896] = 7, - ACTIONS(8361), 1, + [36175] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8392), 1, + ACTIONS(8200), 1, anon_sym_EQ, - STATE(5234), 1, - sym_function_body, - STATE(5351), 1, + STATE(4800), 1, sym__block, + STATE(4871), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 22, + ACTIONS(4137), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -538541,6 +517853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -538555,13 +517868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 29, - sym__automatic_semicolon, + ACTIONS(4139), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -538585,11 +517898,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45968] = 3, + [36248] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5175), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5028), 24, + ACTIONS(3270), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -538614,12 +517931,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5030), 31, + ACTIONS(3274), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -538646,11 +517962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46032] = 3, + [36317] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5197), 24, + ACTIONS(4563), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -538675,7 +517992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5199), 31, + ACTIONS(4565), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -538707,72 +518024,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46096] = 3, + [36382] = 5, + ACTIONS(8382), 1, + anon_sym_COMMA, + STATE(4986), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5243), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4686), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4684), 31, anon_sym_where, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5245), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [46160] = 3, + [36451] = 4, + ACTIONS(8355), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 24, + ACTIONS(4505), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -538797,7 +518119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 31, + ACTIONS(4507), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -538829,13 +518151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46224] = 3, + [36518] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4030), 24, + ACTIONS(4728), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -538858,7 +518181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4032), 31, + ACTIONS(4730), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -538890,13 +518213,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46288] = 3, + [36583] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4705), 24, + ACTIONS(4762), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -538919,7 +518243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4707), 31, + ACTIONS(4765), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -538951,11 +518275,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46352] = 3, + [36648] = 7, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5312), 1, + sym_type_constraints, + STATE(5361), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1816), 24, + ACTIONS(4495), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4493), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [36721] = 4, + STATE(5035), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4736), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -538980,7 +518372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1818), 31, + ACTIONS(4738), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -539012,21 +518404,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46416] = 3, + [36788] = 8, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + ACTIONS(8399), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4802), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5161), 24, + ACTIONS(4229), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -539034,60 +518435,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5163), 31, - sym__automatic_semicolon, + ACTIONS(4231), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46480] = 3, + [36863] = 6, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8401), 1, + anon_sym_COLON, + STATE(4774), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4968), 24, + ACTIONS(4497), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -539102,15 +518506,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4970), 31, - sym__automatic_semicolon, + ACTIONS(4499), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -539134,11 +518536,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46544] = 3, + [36934] = 7, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, + anon_sym_where, + STATE(5309), 1, + sym_type_constraints, + STATE(5363), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5219), 24, + ACTIONS(4465), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4463), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [37007] = 5, + ACTIONS(5770), 1, + anon_sym_LBRACE, + STATE(5106), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -539163,12 +518635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5221), 31, + ACTIONS(4218), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -539195,13 +518666,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46608] = 3, + [37076] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4964), 24, + ACTIONS(4670), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -539224,7 +518696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4966), 31, + ACTIONS(4672), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -539256,11 +518728,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46672] = 3, + [37141] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5239), 24, + ACTIONS(4750), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -539285,7 +518758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5241), 31, + ACTIONS(4752), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -539317,13 +518790,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46736] = 4, - ACTIONS(8562), 1, - anon_sym_LPAREN, + [37206] = 5, + ACTIONS(8394), 1, + anon_sym_COMMA, + STATE(5001), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4355), 24, + ACTIONS(4424), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -539348,14 +518823,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4353), 30, + ACTIONS(4426), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -539379,21 +518854,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46802] = 3, + [37275] = 6, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8403), 1, + anon_sym_COLON, + STATE(4749), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 24, + ACTIONS(4349), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -539408,15 +518889,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 31, - sym__automatic_semicolon, + ACTIONS(4351), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -539440,13 +518919,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46866] = 4, - ACTIONS(8564), 1, + [37346] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5406), 1, + sym_function_body, + STATE(5420), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4185), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4183), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [37419] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4244), 24, + ACTIONS(4754), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -539471,13 +519015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4242), 30, + ACTIONS(4756), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -539502,13 +519047,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46932] = 4, - ACTIONS(8566), 1, - anon_sym_LPAREN, + [37484] = 5, + ACTIONS(5770), 1, + anon_sym_LBRACE, + STATE(5118), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5171), 24, + ACTIONS(3278), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -539533,13 +519080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5173), 30, + ACTIONS(3282), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -539564,13 +519111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46998] = 4, - ACTIONS(8568), 1, - anon_sym_LPAREN, + [37553] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5171), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5177), 24, + ACTIONS(4355), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -539595,13 +519144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5179), 30, + ACTIONS(4357), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -539626,21 +519175,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47064] = 8, - ACTIONS(5552), 1, + [37622] = 7, + ACTIONS(5758), 1, anon_sym_LBRACE, - ACTIONS(5558), 1, + ACTIONS(5764), 1, anon_sym_where, - ACTIONS(8570), 1, - anon_sym_COLON, - STATE(4801), 1, + STATE(5266), 1, sym_type_constraints, - STATE(4895), 1, - sym_class_body, + STATE(5410), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 21, + ACTIONS(4361), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4359), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [37695] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5188), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4160), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -539662,7 +519279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 29, + ACTIONS(4162), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -539692,72 +519309,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47138] = 3, + [37772] = 7, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5294), 1, + sym_type_constraints, + STATE(5363), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4980), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4465), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4463), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4982), 31, + [37845] = 7, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, + anon_sym_where, + STATE(5293), 1, + sym_type_constraints, + STATE(5415), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4323), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [47202] = 3, + ACTIONS(4321), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [37918] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5138), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1790), 24, + ACTIONS(4555), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -539782,12 +519474,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1792), 31, + ACTIONS(4557), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -539814,28 +519505,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47266] = 7, - ACTIONS(8242), 1, + [37987] = 8, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8462), 1, + ACTIONS(8261), 1, anon_sym_EQ, - STATE(4883), 1, - sym_function_body, - STATE(4930), 1, + ACTIONS(8405), 1, + anon_sym_COLON, + STATE(5091), 1, sym__block, + STATE(5163), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 22, + ACTIONS(4275), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -539843,57 +519535,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 29, + ACTIONS(4277), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47338] = 3, + [38062] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4881), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5209), 24, + ACTIONS(4443), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -539908,15 +519608,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5211), 31, - sym__automatic_semicolon, + ACTIONS(4445), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -539940,72 +519638,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47402] = 3, + [38135] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5404), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5201), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4162), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4160), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5203), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [47466] = 3, + [38208] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4918), 24, + ACTIONS(4559), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -540030,7 +519734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4920), 31, + ACTIONS(4561), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -540062,21 +519766,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47530] = 3, + [38273] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4763), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4922), 24, + ACTIONS(4307), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -540091,15 +519802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4924), 31, - sym__automatic_semicolon, + ACTIONS(4309), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -540123,72 +519832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47594] = 3, + [38346] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4738), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4736), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [47658] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5255), 24, + ACTIONS(4746), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -540213,7 +519862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5257), 31, + ACTIONS(4748), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -540245,20 +519894,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47722] = 5, - ACTIONS(5032), 1, - anon_sym_EQ, + [38411] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5118), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5034), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4377), 23, + ACTIONS(3278), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -540281,12 +519927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4379), 26, + ACTIONS(3282), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -540297,6 +519942,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -540308,21 +519958,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47790] = 3, + [38480] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4886), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4530), 24, + ACTIONS(4447), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -540337,15 +519994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4532), 31, - sym__automatic_semicolon, + ACTIONS(4449), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -540369,16 +520024,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47854] = 3, + [38553] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4736), 24, + ACTIONS(4147), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -540398,15 +520059,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4738), 31, + ACTIONS(4149), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -540430,11 +520089,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47918] = 3, + [38625] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4637), 24, + ACTIONS(4938), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -540459,7 +520118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4639), 31, + ACTIONS(4940), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -540491,29 +520150,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47982] = 8, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(8572), 1, - anon_sym_COLON, - STATE(4739), 1, - sym_type_constraints, - STATE(4895), 1, - sym_enum_class_body, + [38689] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 21, + ACTIONS(4439), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -540521,47 +520172,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 29, + ACTIONS(4441), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48056] = 3, + [38753] = 4, + ACTIONS(8407), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 24, + ACTIONS(4267), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -540586,14 +520242,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 31, + ACTIONS(4265), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -540618,16 +520273,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48120] = 3, + [38819] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5141), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4465), 24, + ACTIONS(4137), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -540647,15 +520308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4467), 31, + ACTIONS(4139), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -540679,11 +520338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48184] = 3, + [38891] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 24, + ACTIONS(4275), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -540708,7 +520367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 31, + ACTIONS(4277), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -540740,11 +520399,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48248] = 3, + [38955] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5165), 24, + ACTIONS(4798), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -540769,7 +520428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5167), 31, + ACTIONS(4800), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -540801,20 +520460,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48312] = 7, - ACTIONS(8361), 1, + [39019] = 6, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8392), 1, - anon_sym_EQ, - STATE(5283), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + ACTIONS(8409), 1, + anon_sym_COLON, + STATE(5172), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4530), 22, + ACTIONS(4497), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -540836,7 +520494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4532), 29, + ACTIONS(4499), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -540866,11 +520524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48384] = 3, + [39089] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5020), 24, + ACTIONS(4137), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -540895,7 +520553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5022), 31, + ACTIONS(4139), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -540927,21 +520585,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48448] = 3, + [39153] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4871), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4461), 24, + ACTIONS(4137), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -540949,50 +520614,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4463), 31, - sym__automatic_semicolon, + ACTIONS(4139), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48512] = 3, + [39225] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5235), 24, + ACTIONS(4846), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -541017,7 +520679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5237), 31, + ACTIONS(4848), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -541049,11 +520711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48576] = 3, + [39289] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5247), 24, + ACTIONS(4962), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -541078,7 +520740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5249), 31, + ACTIONS(4964), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -541110,11 +520772,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48640] = 3, + [39353] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5161), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5159), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [39417] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4836), 24, + ACTIONS(4477), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -541139,7 +520862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4838), 31, + ACTIONS(4479), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -541171,138 +520894,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48704] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(4972), 1, - sym_function_body, + [39481] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5165), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5163), 31, anon_sym_where, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4289), 29, - sym_safe_nav, + [39545] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5181), 24, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [48776] = 4, - ACTIONS(8551), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5038), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5179), 31, anon_sym_where, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5040), 30, + [39609] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5185), 24, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_COLON_COLON, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [48842] = 3, + ACTIONS(5183), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [39673] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4956), 24, + ACTIONS(4910), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -541327,7 +521106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4958), 31, + ACTIONS(4912), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -541359,24 +521138,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48906] = 8, - ACTIONS(5552), 1, + [39737] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(6242), 1, - anon_sym_COLON, - STATE(4750), 1, - sym_type_constraints, - STATE(4873), 1, - sym_class_body, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 21, + ACTIONS(4147), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -541395,7 +521173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 29, + ACTIONS(4149), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -541425,19 +521203,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48980] = 3, + [39809] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4437), 24, + ACTIONS(4794), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4796), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [39873] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5095), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5097), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [39937] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4760), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -541454,10 +521353,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4435), 31, - anon_sym_fun, + ACTIONS(4758), 32, + anon_sym_COLON, anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -541486,11 +521386,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [49044] = 3, + [40001] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4381), 24, + ACTIONS(5103), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -541515,7 +521415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4383), 31, + ACTIONS(5105), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -541547,11 +521447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49108] = 3, + [40065] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5251), 24, + ACTIONS(5089), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -541576,7 +521476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5253), 31, + ACTIONS(5091), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -541608,83 +521508,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49172] = 3, + [40129] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5167), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4746), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4744), 32, - anon_sym_COLON, - anon_sym_fun, - anon_sym_where, - anon_sym_object, + ACTIONS(4447), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [49236] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8392), 1, - anon_sym_EQ, - STATE(5351), 1, - sym__block, - STATE(5403), 1, - sym_function_body, + ACTIONS(4449), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [40201] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 22, + ACTIONS(4790), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -541704,13 +521602,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 29, + ACTIONS(4792), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -541734,11 +521634,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49308] = 3, + [40265] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1826), 24, + ACTIONS(4660), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -541763,7 +521663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1828), 31, + ACTIONS(4662), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -541795,21 +521695,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49372] = 3, + [40329] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4763), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 24, + ACTIONS(4307), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -541817,50 +521724,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 31, - sym__automatic_semicolon, + ACTIONS(4309), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49436] = 3, + [40401] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 24, + ACTIONS(4094), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -541885,7 +521789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 31, + ACTIONS(4096), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -541917,22 +521821,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49500] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8392), 1, - anon_sym_EQ, - STATE(5307), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [40465] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 22, + ACTIONS(5107), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -541952,13 +521850,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 29, + ACTIONS(5109), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -541982,11 +521882,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49572] = 3, + [40529] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5087), 24, + ACTIONS(5199), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -542011,7 +521911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5089), 31, + ACTIONS(5201), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -542043,11 +521943,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49636] = 3, + [40593] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4952), 24, + ACTIONS(4355), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -542072,7 +521972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4954), 31, + ACTIONS(4357), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -542104,11 +522004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49700] = 3, + [40657] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4976), 24, + ACTIONS(4970), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -542133,7 +522033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4978), 31, + ACTIONS(4972), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -542165,29 +522065,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49764] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(6260), 1, - anon_sym_COLON, - STATE(4809), 1, - sym_type_constraints, - STATE(4840), 1, - sym_class_body, + [40721] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3284), 21, + ACTIONS(4888), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -542195,49 +522087,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3288), 29, + ACTIONS(4890), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49838] = 3, + [40785] = 5, + ACTIONS(4812), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4948), 24, + ACTIONS(4814), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4477), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -542260,7 +522162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4950), 31, + ACTIONS(4479), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -542276,11 +522178,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -542292,11 +522189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49902] = 3, + [40853] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4944), 24, + ACTIONS(4463), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -542321,7 +522218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4946), 31, + ACTIONS(4465), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -542353,11 +522250,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49966] = 3, + [40917] = 4, + ACTIONS(8411), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1808), 24, + ACTIONS(4289), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -542382,14 +522281,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1810), 31, + ACTIONS(4287), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -542414,29 +522312,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50030] = 8, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(6264), 1, - anon_sym_COLON, - STATE(4740), 1, - sym_type_constraints, - STATE(4840), 1, - sym_enum_class_body, + [40983] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3284), 21, + ACTIONS(1796), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -542444,169 +522334,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3288), 29, + ACTIONS(1798), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50104] = 3, + [41047] = 4, + ACTIONS(8413), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4716), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4714), 32, - anon_sym_COLON, - anon_sym_fun, + ACTIONS(4874), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [50168] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5006), 24, + ACTIONS(4876), 30, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_STAR, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5004), 31, - anon_sym_fun, - anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [50232] = 3, + [41113] = 4, + ACTIONS(8415), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5095), 24, + ACTIONS(4892), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -542631,14 +522466,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5097), 31, + ACTIONS(4894), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -542663,11 +522497,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50296] = 3, + [41179] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4565), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4563), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [41243] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5091), 24, + ACTIONS(3113), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -542692,7 +522587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5093), 31, + ACTIONS(3115), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -542724,11 +522619,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50360] = 3, + [41307] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4906), 24, + ACTIONS(4786), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -542753,7 +522648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4908), 31, + ACTIONS(4788), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -542785,72 +522680,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50424] = 3, + [41371] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4707), 24, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4705), 31, - anon_sym_fun, + ACTIONS(4918), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [50488] = 3, + ACTIONS(4920), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [41435] = 4, + ACTIONS(8417), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 24, + ACTIONS(5024), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -542875,7 +522772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3296), 31, + ACTIONS(5026), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -542890,7 +522787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -542907,11 +522803,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50552] = 3, + [41501] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4130), 24, + ACTIONS(5163), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -542936,7 +522832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4132), 31, + ACTIONS(5165), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -542968,21 +522864,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50616] = 3, + [41565] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4886), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4902), 24, + ACTIONS(4447), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -542990,50 +522893,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4904), 31, - sym__automatic_semicolon, + ACTIONS(4449), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50680] = 3, + [41637] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4898), 24, + ACTIONS(4216), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -543058,7 +522958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4900), 31, + ACTIONS(4218), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -543090,11 +522990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50744] = 3, + [41701] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5022), 24, + ACTIONS(5189), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -543119,10 +523019,10 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5020), 31, - anon_sym_fun, + ACTIONS(5187), 31, anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -543151,11 +523051,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [50808] = 3, + [41765] = 4, + ACTIONS(6690), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5004), 24, + ACTIONS(4281), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -543180,14 +523082,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5006), 31, + ACTIONS(4284), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -543212,72 +523113,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50872] = 3, + [41831] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5140), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4497), 25, + ACTIONS(4443), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4445), 29, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4495), 30, - anon_sym_fun, - anon_sym_object, + [41903] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5175), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [50936] = 3, + ACTIONS(5177), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [41967] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 24, + ACTIONS(3278), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -543302,7 +523268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 31, + ACTIONS(3282), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -543334,20 +523300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51000] = 5, - ACTIONS(4948), 1, - anon_sym_EQ, + [42031] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4950), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4381), 23, + ACTIONS(4880), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -543370,7 +523329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4383), 26, + ACTIONS(4882), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -543386,6 +523345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -543397,11 +523361,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51068] = 3, + [42095] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(209), 24, + ACTIONS(4782), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -543426,7 +523390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(207), 31, + ACTIONS(4784), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -543458,11 +523422,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51132] = 3, + [42159] = 4, + ACTIONS(6684), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5115), 24, + ACTIONS(4259), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -543487,14 +523453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5117), 31, + ACTIONS(4262), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -543519,21 +523484,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51196] = 6, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(8574), 1, - anon_sym_COLON, - STATE(5334), 1, - sym_class_body, + [42225] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 23, + ACTIONS(5187), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -543553,13 +523513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 29, + ACTIONS(5189), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -543583,11 +523545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51266] = 3, + [42289] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3156), 24, + ACTIONS(5043), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -543612,7 +523574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3158), 31, + ACTIONS(5045), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -543644,11 +523606,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51330] = 3, + [42353] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4457), 24, + ACTIONS(4946), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -543673,7 +523635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4459), 31, + ACTIONS(4948), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -543705,150 +523667,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51394] = 3, + [42417] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4720), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(5051), 24, + anon_sym_as, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4718), 30, - anon_sym_fun, - anon_sym_object, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [51458] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4788), 23, + ACTIONS(5053), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4786), 32, - anon_sym_COLON, - anon_sym_fun, - anon_sym_where, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [51522] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - STATE(4842), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + [42481] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 22, + ACTIONS(3270), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -543856,55 +523750,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 29, + ACTIONS(3274), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51594] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, + [42545] = 6, + ACTIONS(5055), 1, anon_sym_EQ, - STATE(4924), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + ACTIONS(8417), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4530), 22, + ACTIONS(5057), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(5024), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -543912,8 +523811,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -543921,54 +523820,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4532), 29, + ACTIONS(5026), 25, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51666] = 3, + [42615] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4792), 23, + ACTIONS(4432), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -543985,11 +523883,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4790), 32, - anon_sym_COLON, - anon_sym_fun, - anon_sym_where, + ACTIONS(4430), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -544018,72 +523914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51730] = 3, + [42679] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4377), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4379), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [51794] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5099), 24, + ACTIONS(1790), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -544108,7 +523943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5101), 31, + ACTIONS(1792), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -544140,11 +523975,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51858] = 3, + [42743] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4435), 24, + ACTIONS(4633), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -544169,7 +524004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4437), 31, + ACTIONS(4635), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -544201,11 +524036,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51922] = 3, + [42807] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3344), 24, + ACTIONS(5183), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -544230,7 +524065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3346), 31, + ACTIONS(5185), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -544262,11 +524097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51986] = 3, + [42871] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4760), 23, + ACTIONS(4507), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -544274,6 +524109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -544290,11 +524126,10 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4758), 32, - anon_sym_COLON, - anon_sym_fun, + ACTIONS(4505), 31, anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -544323,11 +524158,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [52050] = 3, + [42935] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4082), 24, + ACTIONS(5219), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -544352,7 +524187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4084), 31, + ACTIONS(5221), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -544384,11 +524219,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52114] = 3, + [42999] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 24, + ACTIONS(4870), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -544413,7 +524248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 31, + ACTIONS(4872), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -544445,11 +524280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52178] = 3, + [43063] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4894), 24, + ACTIONS(4447), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -544474,7 +524309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4896), 31, + ACTIONS(4449), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -544506,11 +524341,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52242] = 3, + [43127] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4888), 24, + ACTIONS(4147), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -544535,7 +524370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4890), 31, + ACTIONS(4149), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -544567,11 +524402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52306] = 3, + [43191] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4876), 24, + ACTIONS(5073), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -544596,7 +524431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4878), 31, + ACTIONS(5075), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -544628,75 +524463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52370] = 6, - ACTIONS(5898), 1, - anon_sym_LBRACE, - ACTIONS(8576), 1, - anon_sym_COLON, - STATE(5486), 1, - sym_class_body, + [43255] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4427), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [52440] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4872), 24, + ACTIONS(5213), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -544721,7 +524492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4874), 31, + ACTIONS(5215), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -544753,11 +524524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52504] = 3, + [43319] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5065), 24, + ACTIONS(3344), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -544782,7 +524553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5067), 31, + ACTIONS(3346), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -544814,21 +524585,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52568] = 6, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(8578), 1, - anon_sym_COLON, - STATE(5383), 1, - sym_class_body, + [43383] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4443), 23, + ACTIONS(5209), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -544848,13 +524614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4445), 29, + ACTIONS(5211), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -544878,22 +524646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52638] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8392), 1, - anon_sym_EQ, - STATE(5275), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [43447] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4339), 22, + ACTIONS(5205), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -544913,13 +524675,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4341), 29, + ACTIONS(5207), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -544943,13 +524707,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52710] = 3, + [43511] = 6, + ACTIONS(4004), 1, + anon_sym_EQ, + ACTIONS(7295), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5119), 24, + ACTIONS(4009), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4259), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -544972,14 +524745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5121), 31, + ACTIONS(4262), 25, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -544988,11 +524760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -545004,94 +524771,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52774] = 8, - ACTIONS(5552), 1, + [43581] = 6, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8580), 1, + ACTIONS(8420), 1, anon_sym_COLON, - STATE(4805), 1, - sym_type_constraints, - STATE(4829), 1, + STATE(5336), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4499), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4497), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4283), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [52848] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_EQ, - STATE(4885), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + [43651] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4518), 22, + ACTIONS(5167), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -545099,47 +524857,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4520), 29, + ACTIONS(5169), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52920] = 3, + [43715] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5123), 24, + ACTIONS(4866), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -545164,7 +524925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5125), 31, + ACTIONS(4868), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -545196,11 +524957,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52984] = 3, + [43779] = 6, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(8422), 1, + anon_sym_COLON, + STATE(5375), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4351), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4349), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [43849] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4772), 24, + ACTIONS(1802), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -545225,7 +525050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4774), 31, + ACTIONS(1804), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -545257,11 +525082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53048] = 3, + [43913] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4840), 24, + ACTIONS(4505), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -545286,7 +525111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4842), 31, + ACTIONS(4507), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -545318,13 +525143,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53112] = 3, + [43977] = 5, + ACTIONS(5020), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 24, + ACTIONS(5022), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4451), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -545347,7 +525179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4293), 31, + ACTIONS(4453), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -545363,11 +525195,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -545379,11 +525206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53176] = 3, + [44045] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5215), 24, + ACTIONS(3286), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -545408,7 +525235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5217), 31, + ACTIONS(3290), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -545440,22 +525267,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53240] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8392), 1, - anon_sym_EQ, - STATE(5297), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [44109] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 22, + ACTIONS(3992), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -545475,13 +525296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4293), 29, + ACTIONS(3994), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -545505,11 +525328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53312] = 3, + [44173] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4940), 24, + ACTIONS(5020), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -545534,7 +525357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4942), 31, + ACTIONS(5022), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -545566,11 +525389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53376] = 3, + [44237] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5141), 24, + ACTIONS(4854), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -545595,7 +525418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5143), 31, + ACTIONS(4856), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -545627,14 +525450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53440] = 3, + [44301] = 4, + ACTIONS(8424), 1, + anon_sym_LT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5131), 24, + ACTIONS(5051), 23, anon_sym_as, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, @@ -545656,7 +525480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5133), 31, + ACTIONS(5053), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -545688,11 +525512,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53504] = 3, + [44367] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5205), 24, + ACTIONS(1584), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -545717,7 +525541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5207), 31, + ACTIONS(1582), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -545749,29 +525573,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53568] = 8, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(8582), 1, - anon_sym_COLON, - STATE(4743), 1, - sym_type_constraints, - STATE(4829), 1, - sym_enum_class_body, + [44431] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 21, + ACTIONS(4922), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -545779,131 +525595,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 29, + ACTIONS(4924), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53642] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5495), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4387), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4385), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [53709] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8584), 1, - anon_sym_COLON, - ACTIONS(8586), 1, - anon_sym_EQ, - STATE(4853), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5643), 1, - sym_type_constraints, + [44495] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 21, + ACTIONS(5191), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -545911,128 +525656,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 26, + ACTIONS(5193), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53786] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5537), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4463), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4461), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [53853] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8586), 1, - anon_sym_EQ, - ACTIONS(8588), 1, - anon_sym_COLON, - STATE(4883), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5654), 1, - sym_type_constraints, + [44559] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 21, + ACTIONS(4443), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -546040,128 +525717,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 26, + ACTIONS(4445), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53930] = 5, - ACTIONS(5888), 1, - anon_sym_LBRACE, - STATE(5495), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4387), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4385), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [53997] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, + [44623] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8586), 1, + ACTIONS(8261), 1, anon_sym_EQ, - ACTIONS(8590), 1, - anon_sym_COLON, - STATE(4842), 1, - sym_function_body, - STATE(4930), 1, + STATE(5091), 1, sym__block, - STATE(5653), 1, - sym_type_constraints, + STATE(5240), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 21, + ACTIONS(4160), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -546169,128 +525784,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 26, + ACTIONS(4162), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54074] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5525), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4471), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4469), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [54141] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8586), 1, - anon_sym_EQ, - ACTIONS(8592), 1, - anon_sym_COLON, - STATE(4930), 1, - sym__block, - STATE(5001), 1, - sym_function_body, - STATE(5688), 1, - sym_type_constraints, + [44695] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 21, + ACTIONS(5125), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -546298,369 +525843,368 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 26, + ACTIONS(5127), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54218] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5515), 1, - sym_class_body, + [44759] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4597), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4595), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(5047), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [54285] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5544), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3296), 22, + ACTIONS(5049), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3292), 30, - anon_sym_fun, - anon_sym_object, + [44823] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5031), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [54352] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5493), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4756), 22, + ACTIONS(5033), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4754), 30, - anon_sym_fun, - anon_sym_object, + [44887] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4028), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [54419] = 5, - ACTIONS(5888), 1, - anon_sym_LBRACE, - STATE(5515), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4597), 22, + ACTIONS(4030), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4595), 30, - anon_sym_fun, - anon_sym_object, + [44951] = 6, + ACTIONS(4004), 1, + anon_sym_EQ, + ACTIONS(7291), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4009), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4281), 23, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [54486] = 5, - ACTIONS(8598), 1, + ACTIONS(4284), 25, sym__automatic_semicolon, - STATE(5599), 1, - sym__semi, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8596), 22, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(8594), 30, - anon_sym_fun, - anon_sym_object, + [45021] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5067), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [54553] = 6, - ACTIONS(5552), 1, + ACTIONS(5069), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8600), 1, - anon_sym_COLON, - STATE(4830), 1, - sym_class_body, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45085] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4443), 22, + ACTIONS(4493), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -546668,113 +526212,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4445), 29, + ACTIONS(4495), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54622] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5468), 1, - sym_class_body, + [45149] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4277), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4275), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(4850), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [54689] = 5, - ACTIONS(8602), 1, - anon_sym_by, - STATE(4986), 1, - sym_value_arguments, + ACTIONS(4852), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45213] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4838), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4435), 22, + ACTIONS(4439), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -546797,12 +526347,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4437), 30, + ACTIONS(4441), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -546828,279 +526377,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54756] = 5, - ACTIONS(5888), 1, - anon_sym_LBRACE, - STATE(5475), 1, - sym_enum_class_body, + [45285] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3284), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(4974), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [54823] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5571), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4425), 22, + ACTIONS(4976), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4423), 30, - anon_sym_fun, - anon_sym_object, + [45349] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4327), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [54890] = 5, - ACTIONS(5888), 1, - anon_sym_LBRACE, - STATE(5541), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4774), 22, + ACTIONS(4329), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4772), 30, - anon_sym_fun, - anon_sym_object, + [45413] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4778), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [54957] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5541), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4774), 22, + ACTIONS(4780), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4772), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [55024] = 10, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8606), 1, - anon_sym_EQ, - STATE(5347), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - STATE(5605), 1, - sym_type_constraints, + [45477] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4209), 20, + ACTIONS(5039), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -547109,315 +526582,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4211), 27, + ACTIONS(5041), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [55101] = 5, - ACTIONS(5888), 1, - anon_sym_LBRACE, - STATE(5478), 1, - sym_enum_class_body, + [45541] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4459), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4457), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(4160), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [55168] = 5, - ACTIONS(5888), 1, - anon_sym_LBRACE, - STATE(5571), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4425), 22, + ACTIONS(4162), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4423), 30, - anon_sym_fun, - anon_sym_object, + [45605] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5174), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4439), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [55235] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5478), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4459), 22, + ACTIONS(4441), 29, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4457), 30, - anon_sym_fun, - anon_sym_object, + [45677] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4000), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [55302] = 5, - ACTIONS(5888), 1, - anon_sym_LBRACE, - STATE(5479), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4258), 22, + ACTIONS(4002), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4256), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [55369] = 10, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8586), 1, - anon_sym_EQ, - ACTIONS(8608), 1, - anon_sym_COLON, - STATE(4898), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5691), 1, - sym_type_constraints, + [45741] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4209), 21, + ACTIONS(5085), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -547425,64 +526830,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4211), 26, + ACTIONS(5087), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [55446] = 10, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8606), 1, - anon_sym_EQ, - ACTIONS(8610), 1, - anon_sym_COLON, - STATE(5307), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - STATE(5593), 1, - sym_type_constraints, + [45805] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 20, + ACTIONS(3160), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -547491,127 +526891,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 27, + ACTIONS(3162), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [55523] = 5, - ACTIONS(5888), 1, - anon_sym_LBRACE, - STATE(5513), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4467), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4465), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [55590] = 10, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8606), 1, - anon_sym_EQ, - ACTIONS(8612), 1, - anon_sym_COLON, - STATE(5234), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - STATE(5636), 1, - sym_type_constraints, + [45869] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 20, + ACTIONS(3420), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -547620,127 +526952,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 27, + ACTIONS(3422), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [55667] = 5, - ACTIONS(8618), 1, - sym__automatic_semicolon, - STATE(5611), 1, - sym__semi, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8616), 22, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(8614), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [55734] = 10, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8606), 1, - anon_sym_EQ, - ACTIONS(8620), 1, - anon_sym_COLON, - STATE(5346), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - STATE(5589), 1, - sym_type_constraints, + [45933] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 20, + ACTIONS(4958), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -547749,55 +527013,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 27, + ACTIONS(4960), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [55811] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5513), 1, - sym_class_body, + [45997] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4467), 22, + ACTIONS(4635), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -547814,9 +527081,10 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4465), 30, - anon_sym_fun, + ACTIONS(4633), 31, + anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -547845,23 +527113,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55878] = 4, - ACTIONS(8622), 1, - anon_sym_LPAREN, + [46061] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4355), 24, + ACTIONS(4826), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -547876,13 +527142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4353), 29, + ACTIONS(4828), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -547906,156 +527174,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [55943] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5475), 1, - sym_class_body, + [46125] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3284), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(4926), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [56010] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5466), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3280), 22, + ACTIONS(4928), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3276), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [56077] = 10, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, + [46189] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8606), 1, + ACTIONS(8329), 1, anon_sym_EQ, - ACTIONS(8624), 1, - anon_sym_COLON, - STATE(5351), 1, - sym__block, - STATE(5403), 1, + STATE(4775), 1, sym_function_body, - STATE(5604), 1, - sym_type_constraints, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 20, + ACTIONS(4183), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -548069,16 +527270,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 27, - sym__automatic_semicolon, + ACTIONS(4185), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -548097,23 +527300,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56154] = 4, - ACTIONS(8626), 1, - anon_sym_else, + [46261] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 23, + ACTIONS(4930), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -548127,14 +527329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 30, + ACTIONS(4932), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -548158,85 +527361,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56219] = 5, - ACTIONS(8626), 1, - anon_sym_else, - ACTIONS(8628), 1, - anon_sym_SEMI, + [46325] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4699), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 23, + ACTIONS(4299), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 29, + ACTIONS(4301), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56286] = 4, - ACTIONS(8630), 1, - anon_sym_LPAREN, + [46397] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4244), 24, + ACTIONS(5035), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -548251,13 +527455,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4242), 29, + ACTIONS(5037), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -548281,85 +527487,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56351] = 5, - ACTIONS(5888), 1, - anon_sym_LBRACE, - STATE(5544), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3296), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3292), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [56418] = 4, - ACTIONS(8632), 1, - anon_sym_LPAREN, + [46461] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5171), 24, + ACTIONS(4567), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -548374,13 +527516,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5173), 29, + ACTIONS(4569), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -548404,23 +527548,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56483] = 4, - ACTIONS(8634), 1, - anon_sym_LPAREN, + [46525] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5177), 24, + ACTIONS(5153), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -548435,13 +527577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5179), 29, + ACTIONS(5155), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -548465,85 +527609,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56548] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5512), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4639), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4637), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [56615] = 4, - ACTIONS(6895), 1, - anon_sym_LPAREN, + [46589] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 24, + ACTIONS(4299), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -548558,13 +527638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4239), 29, + ACTIONS(4301), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -548588,19 +527670,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56680] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5538), 1, - sym_class_body, + [46653] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4724), 22, + ACTIONS(4587), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -548619,9 +527698,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4722), 30, - anon_sym_fun, + ACTIONS(4585), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -548650,15 +527731,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56747] = 4, - ACTIONS(6899), 1, - anon_sym_LPAREN, + [46717] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5073), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4347), 24, + ACTIONS(4299), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -548666,7 +527752,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -548681,13 +527766,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4350), 29, + ACTIONS(4301), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -548711,92 +527796,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56812] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5479), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4258), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4256), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [56879] = 6, - ACTIONS(4010), 1, - anon_sym_EQ, - ACTIONS(7480), 1, - anon_sym_LPAREN, + [46789] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4347), 23, + ACTIONS(4430), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -548811,13 +527825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4350), 24, + ACTIONS(4432), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -548825,6 +527841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -548836,30 +527857,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56948] = 6, - ACTIONS(4010), 1, - anon_sym_EQ, - ACTIONS(7488), 1, - anon_sym_LPAREN, + [46853] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4236), 23, + ACTIONS(1814), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -548874,13 +527886,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4239), 24, + ACTIONS(1816), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -548888,6 +527902,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -548899,34 +527918,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57017] = 8, - ACTIONS(5053), 1, - anon_sym_EQ, - ACTIONS(8551), 1, - anon_sym_COLON_COLON, - ACTIONS(8636), 1, - anon_sym_COLON, + [46917] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4221), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(5055), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(5038), 21, + ACTIONS(4966), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -548940,7 +527947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5040), 23, + ACTIONS(4968), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -548948,11 +527955,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -548964,21 +527979,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57090] = 5, - ACTIONS(5888), 1, - anon_sym_LBRACE, - STATE(5521), 1, - sym_enum_class_body, + [46981] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4283), 22, + ACTIONS(4662), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -548995,9 +528009,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4281), 30, - anon_sym_fun, + ACTIONS(4660), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -549026,26 +528040,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57157] = 6, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(8638), 1, - anon_sym_COLON, - STATE(4935), 1, - sym_class_body, + [47045] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 22, + ACTIONS(5149), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -549053,124 +528062,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 29, + ACTIONS(5151), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57226] = 5, - ACTIONS(5898), 1, - anon_sym_LBRACE, - STATE(5521), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4283), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4281), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [57293] = 5, - ACTIONS(8640), 1, - anon_sym_LPAREN, + [47109] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4350), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(4010), 23, - anon_sym_COLON, + ACTIONS(5099), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -549184,13 +528130,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4015), 28, + ACTIONS(5101), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -549213,19 +528162,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57360] = 5, - ACTIONS(8643), 1, - anon_sym_LPAREN, + [47173] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5076), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4239), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(4010), 23, - anon_sym_COLON, + ACTIONS(4307), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -549233,6 +528183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -549246,13 +528197,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4015), 28, + ACTIONS(4309), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -549275,76 +528227,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57427] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4277), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4275), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [57489] = 4, - ACTIONS(8646), 1, - anon_sym_LPAREN, + [47245] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5177), 23, + ACTIONS(5195), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -549364,13 +528256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5179), 29, + ACTIONS(5197), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -549394,131 +528288,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57553] = 3, + [47309] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4463), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4461), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(5135), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [57615] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4858), 23, + ACTIONS(5137), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4856), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [57677] = 4, - ACTIONS(8602), 1, - anon_sym_by, + [47373] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4881), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4435), 22, + ACTIONS(4443), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -549541,12 +528384,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4437), 30, + ACTIONS(4445), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -549572,838 +528414,644 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57741] = 3, + [47445] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(6160), 1, + anon_sym_COLON, + STATE(4624), 1, + sym_type_constraints, + STATE(4759), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4293), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4291), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(3270), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [57803] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4862), 23, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(3274), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4860), 30, - anon_sym_fun, - anon_sym_object, + [47519] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5131), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [57865] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5143), 23, + ACTIONS(5133), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5141), 30, - anon_sym_fun, - anon_sym_object, + [47583] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4451), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [57927] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4870), 23, + ACTIONS(4453), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4868), 30, - anon_sym_fun, - anon_sym_object, + [47647] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4481), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [57989] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4283), 23, + ACTIONS(4483), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4281), 30, - anon_sym_fun, - anon_sym_object, + [47711] = 4, + ACTIONS(8426), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4818), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [58051] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1792), 23, + ACTIONS(4820), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(1790), 30, - anon_sym_fun, - anon_sym_object, + [47777] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(6172), 1, + anon_sym_COLON, + STATE(4621), 1, + sym_type_constraints, + STATE(4748), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3278), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [58113] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4156), 23, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(3282), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4154), 30, - anon_sym_fun, - anon_sym_object, + [47851] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5139), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [58175] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4387), 23, + ACTIONS(5141), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4385), 30, - anon_sym_fun, - anon_sym_object, + [47915] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4898), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [58237] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4425), 23, + ACTIONS(4900), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4423), 30, - anon_sym_fun, - anon_sym_object, + [47979] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5059), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [58299] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8648), 1, - anon_sym_COLON, - ACTIONS(8650), 1, - anon_sym_constructor, - ACTIONS(8652), 1, - anon_sym_LBRACE, - ACTIONS(8654), 1, - anon_sym_LPAREN, - ACTIONS(8656), 1, - anon_sym_LT, - ACTIONS(8658), 1, - anon_sym_where, - STATE(5640), 1, - sym_type_parameters, - STATE(8648), 1, - sym_primary_constructor, - STATE(8775), 1, - sym__class_parameters, - STATE(8983), 1, - sym_type_constraints, - STATE(9509), 1, - sym_enum_class_body, - STATE(10111), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3206), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [58405] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5067), 23, + ACTIONS(5061), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5065), 30, - anon_sym_fun, - anon_sym_object, + [48043] = 5, + ACTIONS(8426), 1, + anon_sym_else, + ACTIONS(8428), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4818), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [58467] = 25, - ACTIONS(3202), 1, + ACTIONS(4820), 30, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8650), 1, - anon_sym_constructor, - ACTIONS(8654), 1, - anon_sym_LPAREN, - ACTIONS(8656), 1, - anon_sym_LT, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8660), 1, - anon_sym_COLON, - ACTIONS(8662), 1, + anon_sym_LBRACK, anon_sym_LBRACE, - STATE(5668), 1, - sym_type_parameters, - STATE(8629), 1, - sym_primary_constructor, - STATE(8775), 1, - sym__class_parameters, - STATE(8968), 1, - sym_type_constraints, - STATE(9509), 1, - sym_class_body, - STATE(10111), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3206), 2, - sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [58573] = 6, - ACTIONS(7085), 1, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4244), 3, - anon_sym_in, - anon_sym_else, - anon_sym_is, - ACTIONS(4242), 4, - sym__automatic_semicolon, - anon_sym_RBRACE, + anon_sym_COMMA, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - ACTIONS(4239), 18, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_COLON_COLON, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4236), 27, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [58641] = 5, - ACTIONS(8664), 1, - anon_sym_COMMA, - STATE(5484), 1, - aux_sym__delegation_specifiers_repeat1, + [48111] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4705), 22, + ACTIONS(4914), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -550411,230 +529059,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4707), 29, + ACTIONS(4916), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [58707] = 3, + [48175] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5203), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(5201), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(4804), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [58769] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5249), 23, + ACTIONS(4806), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5247), 30, - anon_sym_fun, - anon_sym_object, + [48239] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5194), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4295), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [58831] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4289), 23, + ACTIONS(4297), 29, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4287), 30, - anon_sym_fun, - anon_sym_object, + [48311] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4295), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [58893] = 4, - ACTIONS(6964), 1, + ACTIONS(4297), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48375] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4347), 23, + ACTIONS(1808), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -550654,13 +529314,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4350), 29, + ACTIONS(1810), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -550684,17 +529346,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [58957] = 4, - ACTIONS(6968), 1, - anon_sym_LPAREN, + [48439] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 23, + ACTIONS(4812), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -550714,13 +529375,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4239), 29, + ACTIONS(4814), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -550744,643 +529407,518 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [59021] = 3, + [48503] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8430), 1, + anon_sym_COLON, + STATE(4682), 1, + sym_type_constraints, + STATE(4809), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1818), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(1816), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(4216), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [59083] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1802), 23, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4218), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(1800), 30, - anon_sym_fun, - anon_sym_object, + [48577] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5145), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [59145] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4198), 23, + ACTIONS(5147), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4196), 30, - anon_sym_fun, - anon_sym_object, + [48641] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4652), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [59207] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4920), 23, + ACTIONS(4654), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4918), 30, - anon_sym_fun, - anon_sym_object, + [48705] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4902), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [59269] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4166), 23, + ACTIONS(4904), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4164), 30, - anon_sym_fun, - anon_sym_object, + [48769] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4942), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [59331] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4597), 23, + ACTIONS(4944), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4595), 30, - anon_sym_fun, - anon_sym_object, + [48833] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4906), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [59393] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5097), 23, + ACTIONS(4908), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5095), 30, - anon_sym_fun, - anon_sym_object, + [48897] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(6154), 1, + anon_sym_COLON, + STATE(4659), 1, + sym_type_constraints, + STATE(4748), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3278), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [59455] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4379), 23, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(3282), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4377), 30, - anon_sym_fun, - anon_sym_object, + [48971] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5171), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [59517] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8650), 1, - anon_sym_constructor, - ACTIONS(8654), 1, - anon_sym_LPAREN, - ACTIONS(8656), 1, - anon_sym_LT, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8662), 1, - anon_sym_LBRACE, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(5681), 1, - sym_type_parameters, - STATE(8658), 1, - sym_primary_constructor, - STATE(8775), 1, - sym__class_parameters, - STATE(9060), 1, - sym_type_constraints, - STATE(9680), 1, - sym_class_body, - STATE(10111), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3242), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [59623] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5121), 23, + ACTIONS(5173), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5119), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [59685] = 10, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8669), 1, - anon_sym_COLON, - ACTIONS(8671), 1, - anon_sym_EQ, - STATE(5307), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - STATE(5716), 1, - sym_type_constraints, + [49035] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 20, + ACTIONS(4467), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -551389,52 +529927,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 26, + ACTIONS(4469), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [59761] = 4, - ACTIONS(8673), 1, - anon_sym_LPAREN, + [49099] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5179), 22, + ACTIONS(4752), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -551451,9 +529994,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5177), 30, - anon_sym_fun, + ACTIONS(4750), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -551482,25 +530027,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59825] = 10, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, + [49163] = 8, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - ACTIONS(8675), 1, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8432), 1, anon_sym_COLON, - STATE(5234), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - STATE(5719), 1, + STATE(4634), 1, sym_type_constraints, + STATE(4846), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 20, + ACTIONS(4321), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -551508,6 +530049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -551521,15 +530063,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 26, - sym__automatic_semicolon, + ACTIONS(4323), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -551548,130 +530093,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [59901] = 4, - ACTIONS(8677), 1, - anon_sym_LPAREN, + [49237] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(6184), 1, + anon_sym_COLON, + STATE(4694), 1, + sym_type_constraints, + STATE(4786), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5173), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(5171), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(3286), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [59965] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4455), 23, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(3290), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4453), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [60027] = 3, + [49311] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3158), 23, + ACTIONS(4756), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -551695,9 +530187,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3156), 30, - anon_sym_fun, + ACTIONS(4754), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -551726,91 +530220,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60089] = 7, - ACTIONS(8681), 1, - anon_sym_AT, - ACTIONS(8686), 1, - sym_label, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5506), 2, - sym_annotation, - aux_sym__statement_repeat1, - STATE(5754), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8684), 19, - sym__string_start, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(8679), 28, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [60159] = 8, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8606), 1, - anon_sym_EQ, - ACTIONS(8689), 1, - anon_sym_COLON, - STATE(5275), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [49375] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4339), 21, + ACTIONS(123), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -551819,55 +530242,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4341), 27, + ACTIONS(121), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [60231] = 8, - ACTIONS(8361), 1, + [49439] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8606), 1, + ACTIONS(8329), 1, anon_sym_EQ, - ACTIONS(8691), 1, - anon_sym_COLON, - STATE(5322), 1, - sym_function_body, - STATE(5351), 1, + STATE(4800), 1, sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 21, + ACTIONS(4295), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -551876,6 +530302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -551889,16 +530316,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 27, - sym__automatic_semicolon, + ACTIONS(4297), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -551917,388 +530346,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [60303] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8650), 1, - anon_sym_constructor, - ACTIONS(8652), 1, - anon_sym_LBRACE, - ACTIONS(8654), 1, - anon_sym_LPAREN, - ACTIONS(8656), 1, - anon_sym_LT, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8693), 1, - anon_sym_COLON, - STATE(5658), 1, - sym_type_parameters, - STATE(8663), 1, - sym_primary_constructor, - STATE(8775), 1, - sym__class_parameters, - STATE(8949), 1, - sym_type_constraints, - STATE(9680), 1, - sym_enum_class_body, - STATE(10111), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3242), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [60409] = 4, - ACTIONS(6940), 1, - anon_sym_COLON, + [49511] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 21, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4010), 31, - anon_sym_fun, - anon_sym_val, - anon_sym_object, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + ACTIONS(4774), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [60473] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4924), 23, + ACTIONS(4776), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4922), 30, - anon_sym_fun, - anon_sym_object, + [49575] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8434), 1, + anon_sym_COLON, + STATE(4672), 1, + sym_type_constraints, + STATE(4809), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [60535] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5125), 23, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4218), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5123), 30, - anon_sym_fun, - anon_sym_object, + [49649] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4183), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [60597] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4774), 23, + ACTIONS(4185), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4772), 30, - anon_sym_fun, - anon_sym_object, + [49713] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4884), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [60659] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3438), 23, + ACTIONS(4886), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3436), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [60721] = 3, + [49777] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5225), 23, + ACTIONS(4579), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -552322,9 +530623,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5223), 30, - anon_sym_fun, + ACTIONS(4577), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -552353,29 +530656,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60783] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, + [49841] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8606), 1, + ACTIONS(8261), 1, anon_sym_EQ, - STATE(5261), 1, - sym_function_body, - STATE(5351), 1, + STATE(5091), 1, sym__block, - STATE(5598), 1, - sym_type_constraints, + STATE(5220), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 20, + ACTIONS(4183), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -552384,364 +530684,431 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 27, + ACTIONS(4185), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [60857] = 3, + [49913] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 23, + ACTIONS(1732), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(1734), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3276), 30, - anon_sym_fun, - anon_sym_object, + [49977] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4954), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [60919] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5229), 23, + ACTIONS(4956), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5227), 30, - anon_sym_fun, - anon_sym_object, + [50041] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4321), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [60981] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5237), 23, + ACTIONS(4323), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5235), 30, - anon_sym_fun, - anon_sym_object, + [50105] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4950), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [61043] = 6, - ACTIONS(7081), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4355), 3, - anon_sym_in, - anon_sym_else, - anon_sym_is, - ACTIONS(4353), 4, + ACTIONS(4952), 31, sym__automatic_semicolon, - anon_sym_RBRACE, - anon_sym_BANGin, - anon_sym_BANGis, - ACTIONS(4350), 18, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4347), 27, - anon_sym_fun, - anon_sym_object, + [50169] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5077), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [61111] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4459), 23, + ACTIONS(5079), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4457), 30, - anon_sym_fun, - anon_sym_object, + [50233] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4359), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [61173] = 10, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, + ACTIONS(4361), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50297] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8671), 1, + ACTIONS(8329), 1, anon_sym_EQ, - ACTIONS(8695), 1, - anon_sym_COLON, - STATE(5346), 1, + STATE(4730), 1, sym_function_body, - STATE(5351), 1, + STATE(4800), 1, sym__block, - STATE(5724), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 20, + ACTIONS(4160), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -552755,15 +531122,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 26, - sym__automatic_semicolon, + ACTIONS(4162), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -552782,188 +531152,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61249] = 3, + [50369] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5253), 23, + ACTIONS(4934), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4936), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5251), 30, - anon_sym_fun, - anon_sym_object, + [50433] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4842), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [61311] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5233), 23, + ACTIONS(4844), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5231), 30, - anon_sym_fun, - anon_sym_object, + [50497] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4644), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [61373] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4639), 23, + ACTIONS(4646), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4637), 30, - anon_sym_fun, - anon_sym_object, + [50561] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4722), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [61435] = 3, + ACTIONS(4724), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50625] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5257), 23, + ACTIONS(4553), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -552987,9 +531424,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5255), 30, - anon_sym_fun, + ACTIONS(4551), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -553018,90 +531457,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61497] = 3, + [50689] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4383), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4381), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(4834), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [61559] = 10, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, + ACTIONS(4836), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - ACTIONS(8697), 1, - anon_sym_COLON, - STATE(5351), 1, - sym__block, - STATE(5403), 1, - sym_function_body, - STATE(5732), 1, - sym_type_constraints, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50753] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 20, + ACTIONS(5159), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -553110,52 +531540,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 26, + ACTIONS(5161), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61635] = 4, - ACTIONS(8699), 1, - anon_sym_LPAREN, + [50817] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 22, + ACTIONS(4724), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -553172,9 +531609,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4244), 30, - anon_sym_fun, + ACTIONS(4722), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -553203,83 +531640,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61699] = 3, + [50881] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3296), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3292), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(5179), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [61761] = 6, - ACTIONS(4010), 1, - anon_sym_EQ, - ACTIONS(7502), 1, + ACTIONS(5181), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4015), 5, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - ACTIONS(4347), 22, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50945] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4838), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -553299,13 +531730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4350), 24, + ACTIONS(4840), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -553313,6 +531746,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -553324,28 +531762,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61829] = 8, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8606), 1, - anon_sym_EQ, - ACTIONS(8701), 1, - anon_sym_COLON, - STATE(5350), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [51009] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4269), 21, + ACTIONS(5117), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -553354,65 +531784,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4271), 27, + ACTIONS(5119), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61901] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8586), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(4972), 1, - sym_function_body, - STATE(5690), 1, - sym_type_constraints, + [51073] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 21, + ACTIONS(5121), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -553420,117 +531845,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 26, + ACTIONS(5123), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61975] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4978), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4976), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [62037] = 10, - ACTIONS(5868), 1, + [51137] = 8, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8361), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - ACTIONS(8703), 1, + ACTIONS(8436), 1, anon_sym_COLON, - STATE(5347), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - STATE(5713), 1, + STATE(4676), 1, sym_type_constraints, + STATE(4891), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4209), 20, + ACTIONS(4327), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -553538,6 +531906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -553551,15 +531920,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4211), 26, - sym__automatic_semicolon, + ACTIONS(4329), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -553578,134 +531950,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62113] = 3, + [51211] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(207), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(209), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(5063), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [62175] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4471), 23, + ACTIONS(5065), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4469), 30, - anon_sym_fun, - anon_sym_object, + [51275] = 6, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8438), 1, + anon_sym_COLON, + STATE(5093), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4349), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [62237] = 3, + ACTIONS(4351), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51345] = 5, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(5397), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5199), 23, + ACTIONS(4654), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -553724,9 +532106,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5197), 30, - anon_sym_fun, + ACTIONS(4652), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -553755,23 +532137,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62299] = 9, - ACTIONS(5558), 1, + [51412] = 10, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8242), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8586), 1, + ACTIONS(8440), 1, + anon_sym_COLON, + ACTIONS(8442), 1, anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(4951), 1, + STATE(4757), 1, sym_function_body, - STATE(5638), 1, + STATE(4800), 1, + sym__block, + STATE(5532), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 21, + ACTIONS(4147), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -553793,7 +532177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4293), 26, + ACTIONS(4149), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -553820,97 +532204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62373] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8650), 1, - anon_sym_constructor, - ACTIONS(8654), 1, - anon_sym_LPAREN, - ACTIONS(8656), 1, - anon_sym_LT, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8662), 1, + [51489] = 5, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(8705), 1, - anon_sym_COLON, - STATE(5670), 1, - sym_type_parameters, - STATE(8625), 1, - sym_primary_constructor, - STATE(8775), 1, - sym__class_parameters, - STATE(9039), 1, - sym_type_constraints, - STATE(9524), 1, + STATE(5391), 1, sym_class_body, - STATE(10111), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3250), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [62479] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5211), 23, + ACTIONS(3282), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -553929,9 +532235,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5209), 30, - anon_sym_fun, + ACTIONS(3278), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -553960,84 +532266,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62541] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, + [51556] = 5, + ACTIONS(5758), 1, anon_sym_LBRACE, - ACTIONS(8586), 1, - anon_sym_EQ, - STATE(4853), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5643), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4183), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4185), 26, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [62615] = 4, - ACTIONS(8707), 1, - anon_sym_LPAREN, + STATE(5391), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4353), 22, + ACTIONS(3282), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -554054,9 +532297,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4355), 30, - anon_sym_fun, + ACTIONS(3278), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -554085,16 +532328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62679] = 3, + [51623] = 5, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5378), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 23, + ACTIONS(4329), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -554113,9 +532359,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4256), 30, - anon_sym_fun, + ACTIONS(4327), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -554144,16 +532390,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62741] = 3, + [51690] = 5, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(5358), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5093), 23, + ACTIONS(4218), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -554172,9 +532421,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5091), 30, - anon_sym_fun, + ACTIONS(4216), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -554203,12 +532452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62803] = 3, + [51757] = 5, + ACTIONS(8448), 1, + sym__automatic_semicolon, + STATE(5469), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5113), 23, - sym__automatic_semicolon, + ACTIONS(8446), 22, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -554231,9 +532483,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5111), 30, - anon_sym_fun, + ACTIONS(8444), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -554262,26 +532514,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62865] = 9, - ACTIONS(5558), 1, + [51824] = 5, + ACTIONS(8450), 1, + anon_sym_by, + STATE(4787), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4505), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(8242), 1, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4507), 30, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(8586), 1, - anon_sym_EQ, - STATE(4842), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5653), 1, - sym_type_constraints, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51891] = 6, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8452), 1, + anon_sym_COLON, + STATE(4774), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 21, + ACTIONS(4497), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -554300,15 +532609,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 26, + ACTIONS(4499), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -554327,12 +532639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62939] = 3, + [51960] = 5, + ACTIONS(8458), 1, + sym__automatic_semicolon, + STATE(5466), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1810), 23, - sym__automatic_semicolon, + ACTIONS(8456), 22, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -554355,9 +532670,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1808), 30, - anon_sym_fun, + ACTIONS(8454), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -554386,13 +532701,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63001] = 4, - ACTIONS(8709), 1, - anon_sym_else, + [52027] = 4, + ACTIONS(6767), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 22, + ACTIONS(4281), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -554402,6 +532717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -554415,14 +532732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 30, - sym__automatic_semicolon, + ACTIONS(4284), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -554446,74 +532762,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63065] = 3, + [52092] = 4, + ACTIONS(8460), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4854), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4852), 30, - anon_sym_fun, - anon_sym_object, + ACTIONS(4892), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [63127] = 5, - ACTIONS(8709), 1, - anon_sym_else, - ACTIONS(8711), 1, + ACTIONS(4894), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [52157] = 4, + ACTIONS(8462), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 22, + ACTIONS(4874), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -554523,6 +532839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -554536,14 +532854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 29, - sym__automatic_semicolon, + ACTIONS(4876), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -554566,310 +532884,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63193] = 3, + [52222] = 4, + ACTIONS(8464), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5189), 23, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4818), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4820), 30, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5187), 30, - anon_sym_fun, - anon_sym_object, + [52287] = 5, + ACTIONS(8464), 1, + anon_sym_else, + ACTIONS(8466), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4818), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_while, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [63255] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5101), 23, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4820), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_RPAREN, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5099), 30, - anon_sym_fun, - anon_sym_object, + [52354] = 4, + ACTIONS(8468), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4289), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [63317] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1828), 23, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4287), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(1826), 30, - anon_sym_fun, - anon_sym_object, + [52419] = 4, + ACTIONS(8470), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4267), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [63379] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5185), 23, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4265), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5183), 30, - anon_sym_fun, - anon_sym_object, + [52484] = 6, + ACTIONS(4004), 1, + anon_sym_EQ, + ACTIONS(7345), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4009), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4281), 23, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [63441] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3346), 23, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4284), 24, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3344), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [63503] = 4, - ACTIONS(8713), 1, + [52553] = 6, + ACTIONS(4004), 1, + anon_sym_EQ, + ACTIONS(7349), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4355), 23, + ACTIONS(4009), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4259), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -554877,6 +533215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -554891,13 +533230,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4353), 29, - sym__automatic_semicolon, + ACTIONS(4262), 24, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -554905,11 +533244,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -554921,13 +533255,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63567] = 4, - ACTIONS(8715), 1, + [52622] = 4, + ACTIONS(6763), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4244), 23, + ACTIONS(4259), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -554937,6 +533271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -554951,13 +533286,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4242), 29, - sym__automatic_semicolon, + ACTIONS(4262), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -554981,17 +533316,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63631] = 4, - STATE(5484), 1, - aux_sym__delegation_specifiers_repeat1, + [52687] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + ACTIONS(8472), 1, + anon_sym_COLON, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5534), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4740), 22, + ACTIONS(4183), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -555010,19 +533356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4742), 30, + ACTIONS(4185), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -555041,16 +533383,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63695] = 3, + [52764] = 5, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(5369), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 23, + ACTIONS(4569), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -555069,9 +533414,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3284), 30, - anon_sym_fun, + ACTIONS(4567), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -555100,16 +533445,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63757] = 3, + [52831] = 5, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(5381), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1734), 23, + ACTIONS(4483), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -555128,9 +533476,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1732), 30, - anon_sym_fun, + ACTIONS(4481), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -555159,16 +533507,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63819] = 3, + [52898] = 5, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5397), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5089), 23, + ACTIONS(4654), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -555187,9 +533538,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5087), 30, - anon_sym_fun, + ACTIONS(4652), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -555218,30 +533569,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63881] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, + [52965] = 6, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8606), 1, - anon_sym_EQ, - STATE(5297), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - STATE(5633), 1, - sym_type_constraints, + ACTIONS(8474), 1, + anon_sym_COLON, + STATE(4749), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 20, + ACTIONS(4349), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -555255,16 +533602,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4293), 27, - sym__automatic_semicolon, + ACTIONS(4351), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -555283,78 +533632,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63955] = 6, - ACTIONS(4010), 1, - anon_sym_EQ, - ACTIONS(7498), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4015), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4236), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4239), 24, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + [53034] = 5, + ACTIONS(5780), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [64023] = 3, + STATE(5419), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5221), 23, + ACTIONS(4557), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -555373,68 +533663,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5219), 30, - anon_sym_fun, + ACTIONS(4555), 30, anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [64085] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5117), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(5115), 30, anon_sym_fun, - anon_sym_object, anon_sym_get, anon_sym_set, anon_sym_this, @@ -555463,23 +533694,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64147] = 9, - ACTIONS(5868), 1, + [53101] = 10, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8361), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8606), 1, + ACTIONS(8442), 1, anon_sym_EQ, - STATE(5351), 1, - sym__block, - STATE(5403), 1, + ACTIONS(8476), 1, + anon_sym_COLON, + STATE(4711), 1, sym_function_body, - STATE(5604), 1, + STATE(4800), 1, + sym__block, + STATE(5527), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 20, + ACTIONS(4173), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -555487,6 +533720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -555500,14 +533734,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 27, - sym__automatic_semicolon, + ACTIONS(4175), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -555528,16 +533761,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64221] = 3, + [53178] = 5, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(5399), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5167), 23, + ACTIONS(4469), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -555556,9 +533792,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5165), 30, - anon_sym_fun, + ACTIONS(4467), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -555587,25 +533823,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64283] = 5, - ACTIONS(8717), 1, - anon_sym_LT, - STATE(5677), 1, - sym_type_arguments, + [53245] = 5, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5410), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 20, + ACTIONS(4361), 22, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -555616,29 +533854,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4177), 31, - anon_sym_fun, - anon_sym_val, + ACTIONS(4359), 30, anon_sym_object, - anon_sym_DOT, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -555648,81 +533885,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64349] = 9, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8242), 1, + [53312] = 5, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(8586), 1, - anon_sym_EQ, - STATE(4883), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - STATE(5654), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4154), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4156), 26, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [64423] = 3, + STATE(5358), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4467), 23, + ACTIONS(4218), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -555741,9 +533916,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4465), 30, - anon_sym_fun, + ACTIONS(4216), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -555772,16 +533947,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64485] = 3, + [53379] = 5, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(5353), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5147), 23, + ACTIONS(3290), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -555800,9 +533978,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5145), 30, - anon_sym_fun, + ACTIONS(3286), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -555831,16 +534009,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64547] = 3, + [53446] = 5, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5356), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4185), 23, + ACTIONS(4549), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -555859,9 +534040,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4183), 30, - anon_sym_fun, + ACTIONS(4547), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -555890,611 +534071,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64609] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8606), 1, - anon_sym_EQ, - STATE(5346), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - STATE(5589), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4164), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4166), 27, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [64683] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8606), 1, - anon_sym_EQ, - STATE(5234), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - STATE(5636), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4154), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4156), 27, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [64757] = 4, - ACTIONS(8719), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5171), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(5173), 29, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [64821] = 8, - ACTIONS(5552), 1, + [53513] = 5, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8721), 1, - anon_sym_COLON, - STATE(4805), 1, - sym_type_constraints, - STATE(4829), 1, + STATE(5388), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4283), 26, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [64892] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8606), 1, - anon_sym_EQ, - STATE(5242), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4518), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4520), 27, + ACTIONS(4357), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [64961] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - STATE(5346), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - STATE(5724), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4164), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4355), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4166), 26, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [65034] = 8, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8586), 1, - anon_sym_EQ, - ACTIONS(8723), 1, - anon_sym_COLON, - STATE(4930), 1, - sym__block, - STATE(4937), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4269), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4271), 26, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [65105] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(3250), 1, - anon_sym_while, - ACTIONS(8725), 1, - anon_sym_COLON, - ACTIONS(8727), 1, - anon_sym_constructor, - ACTIONS(8729), 1, + [53580] = 5, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(8731), 1, - anon_sym_LPAREN, - ACTIONS(8733), 1, - anon_sym_LT, - ACTIONS(8735), 1, - anon_sym_where, - STATE(5728), 1, - sym_type_parameters, - STATE(8692), 1, - sym_primary_constructor, - STATE(8977), 1, - sym__class_parameters, - STATE(9293), 1, - sym_type_constraints, - STATE(9937), 1, + STATE(5361), 1, sym_class_body, - STATE(9955), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [65210] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - STATE(5234), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - STATE(5719), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4156), 26, + ACTIONS(4495), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [65283] = 5, - ACTIONS(8737), 1, - anon_sym_DOT, - STATE(5609), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4227), 20, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -556505,28 +534164,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4225), 30, - anon_sym_fun, - anon_sym_val, + ACTIONS(4493), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -556536,163 +534195,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [65348] = 8, - ACTIONS(5864), 1, + [53647] = 5, + ACTIONS(5758), 1, anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(6378), 1, - anon_sym_COLON, - STATE(5148), 1, - sym_type_constraints, - STATE(5370), 1, - sym_class_body, + STATE(5363), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3280), 27, + ACTIONS(4465), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [65419] = 23, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(5283), 1, - anon_sym_SEMI, - ACTIONS(7777), 1, + ACTIONS(4463), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, - ACTIONS(7779), 1, anon_sym_set, - ACTIONS(8739), 1, - anon_sym_EQ, - ACTIONS(8741), 1, - anon_sym_by, - ACTIONS(8743), 1, - anon_sym_where, - ACTIONS(8753), 1, - sym_property_modifier, - STATE(5743), 1, - sym_type_constraints, - STATE(5809), 1, - sym_property_delegate, - STATE(9565), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1734), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9431), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [65520] = 3, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [53714] = 5, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5316), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 21, + ACTIONS(3274), 22, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LT, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -556703,29 +534288,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4010), 31, - anon_sym_fun, - anon_sym_val, + ACTIONS(3270), 30, anon_sym_object, - anon_sym_DOT, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -556735,21 +534319,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [65581] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, + [53781] = 10, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8761), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8478), 1, anon_sym_COLON, - STATE(5139), 1, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5220), 1, + sym_function_body, + STATE(5461), 1, sym_type_constraints, - STATE(5332), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 20, + ACTIONS(4183), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -556770,7 +534358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 27, + ACTIONS(4185), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -556798,21 +534386,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65652] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, + [53858] = 10, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(6366), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + ACTIONS(8482), 1, anon_sym_COLON, - STATE(5132), 1, + STATE(5091), 1, + sym__block, + STATE(5240), 1, + sym_function_body, + STATE(5464), 1, sym_type_constraints, - STATE(5326), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 20, + ACTIONS(4160), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -556833,7 +534425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3296), 27, + ACTIONS(4162), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -556861,27 +534453,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65723] = 7, - ACTIONS(8361), 1, + [53935] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8606), 1, + ACTIONS(8442), 1, anon_sym_EQ, - STATE(5351), 1, + ACTIONS(8484), 1, + anon_sym_COLON, + STATE(4800), 1, sym__block, - STATE(5403), 1, + STATE(4871), 1, sym_function_body, + STATE(5482), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 21, + ACTIONS(4137), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -556895,14 +534493,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 27, - sym__automatic_semicolon, + ACTIONS(4139), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -556923,244 +534520,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65792] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(3242), 1, - anon_sym_while, - ACTIONS(8727), 1, - anon_sym_constructor, - ACTIONS(8731), 1, + [54012] = 5, + ACTIONS(8486), 1, anon_sym_LPAREN, - ACTIONS(8733), 1, - anon_sym_LT, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(8763), 1, - anon_sym_COLON, - ACTIONS(8765), 1, - anon_sym_LBRACE, - STATE(5725), 1, - sym_type_parameters, - STATE(8712), 1, - sym_primary_constructor, - STATE(8977), 1, - sym__class_parameters, - STATE(9112), 1, - sym_type_constraints, - STATE(9838), 1, - sym_enum_class_body, - STATE(9955), 1, - sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [65897] = 8, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, - anon_sym_LBRACE, - ACTIONS(6362), 1, + ACTIONS(4262), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4004), 23, anon_sym_COLON, - STATE(5120), 1, - sym_type_constraints, - STATE(5326), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3292), 20, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3296), 27, - sym__automatic_semicolon, + ACTIONS(4009), 28, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65968] = 23, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8741), 1, - anon_sym_by, - ACTIONS(8743), 1, + [54079] = 10, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8767), 1, - anon_sym_EQ, - ACTIONS(8769), 1, - anon_sym_SEMI, - STATE(5726), 1, - sym_type_constraints, - STATE(5798), 1, - sym_property_delegate, - STATE(9565), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3330), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9562), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [66069] = 7, - ACTIONS(8361), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8606), 1, + ACTIONS(8480), 1, anon_sym_EQ, - STATE(5234), 1, - sym_function_body, - STATE(5351), 1, + ACTIONS(8489), 1, + anon_sym_COLON, + STATE(5091), 1, sym__block, + STATE(5178), 1, + sym_function_body, + STATE(5470), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 21, + ACTIONS(4147), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -557178,7 +534621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 27, + ACTIONS(4149), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -557206,147 +534649,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66138] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8771), 1, - anon_sym_COLON, - STATE(5107), 1, - sym_type_constraints, - STATE(5247), 1, - sym_class_body, + [54156] = 5, + ACTIONS(8491), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 20, + ACTIONS(4284), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4004), 23, + anon_sym_COLON, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 27, - sym__automatic_semicolon, + ACTIONS(4009), 28, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66209] = 8, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, - anon_sym_LBRACE, - ACTIONS(8773), 1, + [54223] = 8, + ACTIONS(5055), 1, + anon_sym_EQ, + ACTIONS(8417), 1, + anon_sym_COLON_COLON, + ACTIONS(8494), 1, anon_sym_COLON, - STATE(5103), 1, - sym_type_constraints, - STATE(5247), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 20, + ACTIONS(4124), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(5057), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(5024), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 27, + ACTIONS(5026), 23, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66280] = 8, - ACTIONS(8242), 1, + [54296] = 5, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(5410), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4361), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4359), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [54363] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8586), 1, + ACTIONS(8480), 1, anon_sym_EQ, - ACTIONS(8775), 1, + ACTIONS(8496), 1, anon_sym_COLON, - STATE(4837), 1, - sym_function_body, - STATE(4930), 1, + STATE(5091), 1, sym__block, + STATE(5141), 1, + sym_function_body, + STATE(5478), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4339), 21, + ACTIONS(4137), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -557354,7 +534864,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -557368,13 +534877,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4341), 26, + ACTIONS(4139), 27, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -557395,21 +534905,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66351] = 8, - ACTIONS(8242), 1, + [54440] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8586), 1, + ACTIONS(8442), 1, anon_sym_EQ, - ACTIONS(8777), 1, + ACTIONS(8498), 1, anon_sym_COLON, - STATE(4897), 1, + STATE(4730), 1, sym_function_body, - STATE(4930), 1, + STATE(4800), 1, sym__block, + STATE(5533), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 21, + ACTIONS(4160), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -557431,7 +534945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 26, + ACTIONS(4162), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -557458,23 +534972,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66422] = 7, - ACTIONS(8361), 1, + [54517] = 5, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5413), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4646), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4644), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [54584] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8606), 1, + ACTIONS(8480), 1, anon_sym_EQ, - STATE(5232), 1, + ACTIONS(8500), 1, + anon_sym_COLON, + STATE(5079), 1, sym_function_body, - STATE(5351), 1, + STATE(5091), 1, sym__block, + STATE(5426), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4453), 21, + ACTIONS(4173), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -557492,7 +535073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4455), 27, + ACTIONS(4175), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -557520,15 +535101,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66491] = 3, + [54661] = 5, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(5415), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8616), 22, + ACTIONS(4323), 22, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -557547,9 +535132,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8614), 30, - anon_sym_fun, + ACTIONS(4321), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -557578,166 +535163,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [66552] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3206), 1, - anon_sym_while, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8727), 1, - anon_sym_constructor, - ACTIONS(8729), 1, + [54728] = 5, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(8731), 1, - anon_sym_LPAREN, - ACTIONS(8733), 1, - anon_sym_LT, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(8779), 1, - anon_sym_COLON, - STATE(5731), 1, - sym_type_parameters, - STATE(8714), 1, - sym_primary_constructor, - STATE(8977), 1, - sym__class_parameters, - STATE(9311), 1, - sym_type_constraints, - STATE(9756), 1, + STATE(5363), 1, sym_class_body, - STATE(9955), 1, - sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(4465), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4463), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [66657] = 4, - ACTIONS(8781), 1, - anon_sym_LPAREN, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [54795] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4355), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4329), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4327), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4353), 29, - sym_safe_nav, + [54857] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4964), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [66720] = 7, - ACTIONS(8361), 1, + ACTIONS(4962), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [54919] = 6, + ACTIONS(7009), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4289), 3, + anon_sym_in, + anon_sym_else, + anon_sym_is, + ACTIONS(4287), 4, + sym__automatic_semicolon, + anon_sym_RBRACE, + anon_sym_BANGin, + anon_sym_BANGis, + ACTIONS(4284), 18, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4281), 27, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [54987] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8606), 1, + ACTIONS(8442), 1, anon_sym_EQ, - STATE(5275), 1, - sym_function_body, - STATE(5351), 1, + STATE(4800), 1, sym__block, + STATE(4824), 1, + sym_function_body, + STATE(5488), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4339), 21, + ACTIONS(4295), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -557751,14 +535443,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4341), 27, - sym__automatic_semicolon, + ACTIONS(4297), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -557779,27 +535470,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66789] = 7, - ACTIONS(8361), 1, + [55061] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8606), 1, + ACTIONS(8442), 1, anon_sym_EQ, - STATE(5283), 1, + STATE(4775), 1, sym_function_body, - STATE(5351), 1, + STATE(4800), 1, sym__block, + STATE(5534), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4530), 21, + ACTIONS(4183), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -557813,14 +535508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4532), 27, - sym__automatic_semicolon, + ACTIONS(4185), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -557841,19 +535535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66858] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8606), 1, - anon_sym_EQ, - STATE(5297), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [55135] = 5, + ACTIONS(8502), 1, + anon_sym_COMMA, + STATE(5321), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 21, + ACTIONS(4633), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -557862,6 +535552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -557875,16 +535566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4293), 27, - sym__automatic_semicolon, + ACTIONS(4635), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -557903,27 +535596,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66927] = 7, - ACTIONS(8361), 1, + [55201] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8606), 1, + ACTIONS(8442), 1, anon_sym_EQ, - STATE(5307), 1, + STATE(4730), 1, sym_function_body, - STATE(5351), 1, + STATE(4800), 1, sym__block, + STATE(5533), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 21, + ACTIONS(4160), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -557937,14 +535634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 27, - sym__automatic_semicolon, + ACTIONS(4162), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -557965,22 +535661,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66996] = 3, + [55275] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 21, + ACTIONS(3274), 23, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LT, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -557991,29 +535689,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4215), 31, - anon_sym_fun, - anon_sym_val, + ACTIONS(3270), 30, anon_sym_object, - anon_sym_DOT, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -558023,108 +535720,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [67057] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3206), 1, - anon_sym_while, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8727), 1, - anon_sym_constructor, - ACTIONS(8731), 1, - anon_sym_LPAREN, - ACTIONS(8733), 1, - anon_sym_LT, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(8765), 1, - anon_sym_LBRACE, - ACTIONS(8783), 1, - anon_sym_COLON, - STATE(5733), 1, - sym_type_parameters, - STATE(8717), 1, - sym_primary_constructor, - STATE(8977), 1, - sym__class_parameters, - STATE(9316), 1, - sym_type_constraints, - STATE(9756), 1, - sym_enum_class_body, - STATE(9955), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [67162] = 8, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, - anon_sym_LBRACE, - ACTIONS(6344), 1, - anon_sym_COLON, - STATE(5124), 1, - sym_type_constraints, - STATE(5241), 1, - sym_enum_class_body, + [55337] = 4, + ACTIONS(8450), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3284), 20, + ACTIONS(4505), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -558138,16 +535749,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3288), 27, - sym__automatic_semicolon, + ACTIONS(4507), 30, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -558166,217 +535780,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67233] = 5, - ACTIONS(8737), 1, - anon_sym_DOT, - STATE(5619), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4204), 20, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4202), 30, - anon_sym_fun, - anon_sym_val, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [67298] = 23, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(5293), 1, - anon_sym_SEMI, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8741), 1, - anon_sym_by, - ACTIONS(8743), 1, - anon_sym_where, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8785), 1, - anon_sym_EQ, - STATE(5709), 1, - sym_type_constraints, - STATE(5796), 1, - sym_property_delegate, - STATE(9565), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1828), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9553), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [67399] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8789), 22, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(8787), 30, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [67460] = 8, - ACTIONS(5868), 1, + [55401] = 9, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(5876), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8791), 1, - anon_sym_COLON, - STATE(5165), 1, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5532), 1, sym_type_constraints, - STATE(5376), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 20, + ACTIONS(4147), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -558384,6 +535804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -558397,14 +535818,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 27, - sym__automatic_semicolon, + ACTIONS(4149), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -558425,29 +535845,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67531] = 8, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(8793), 1, - anon_sym_COLON, - STATE(4743), 1, - sym_type_constraints, - STATE(4829), 1, - sym_enum_class_body, + [55475] = 6, + ACTIONS(4004), 1, + anon_sym_EQ, + ACTIONS(7424), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 21, + ACTIONS(4009), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4281), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -558455,21 +535875,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 26, + ACTIONS(4284), 24, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -558482,30 +535902,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67602] = 8, - ACTIONS(5864), 1, + [55543] = 8, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8795), 1, + ACTIONS(8480), 1, + anon_sym_EQ, + ACTIONS(8505), 1, anon_sym_COLON, - STATE(5157), 1, - sym_type_constraints, - STATE(5376), 1, - sym_class_body, + STATE(5090), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 20, + ACTIONS(4229), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -558523,7 +535943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 27, + ACTIONS(4231), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -558551,74 +535971,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67673] = 23, - ACTIONS(3328), 1, + [55615] = 25, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8741), 1, - anon_sym_by, - ACTIONS(8743), 1, - anon_sym_where, - ACTIONS(8753), 1, + ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8797), 1, - anon_sym_EQ, - ACTIONS(8799), 1, - anon_sym_SEMI, - STATE(5715), 1, + ACTIONS(8507), 1, + anon_sym_COLON, + ACTIONS(8509), 1, + anon_sym_constructor, + ACTIONS(8511), 1, + anon_sym_LBRACE, + ACTIONS(8513), 1, + anon_sym_LPAREN, + ACTIONS(8515), 1, + anon_sym_LT, + ACTIONS(8517), 1, + anon_sym_where, + STATE(5502), 1, + sym_type_parameters, + STATE(8382), 1, + sym_primary_constructor, + STATE(8563), 1, + sym__class_parameters, + STATE(8732), 1, sym_type_constraints, - STATE(5795), 1, - sym_property_delegate, - STATE(9565), 1, + STATE(9291), 1, + sym_enum_class_body, + STATE(9757), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3346), 2, + ACTIONS(3248), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8749), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9732), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -558629,29 +536052,29 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67774] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(6354), 1, - anon_sym_COLON, - STATE(4750), 1, - sym_type_constraints, - STATE(4873), 1, - sym_class_body, + [55721] = 6, + ACTIONS(4004), 1, + anon_sym_EQ, + ACTIONS(7418), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 21, + ACTIONS(4009), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4259), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -558659,21 +536082,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 26, + ACTIONS(4262), 24, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -558686,82 +536109,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67845] = 25, + [55789] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5147), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5145), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [55851] = 25, ACTIONS(3202), 1, anon_sym_AT, ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(3242), 1, - anon_sym_while, - ACTIONS(8727), 1, + ACTIONS(8509), 1, anon_sym_constructor, - ACTIONS(8729), 1, - anon_sym_LBRACE, - ACTIONS(8731), 1, + ACTIONS(8513), 1, anon_sym_LPAREN, - ACTIONS(8733), 1, + ACTIONS(8515), 1, anon_sym_LT, - ACTIONS(8735), 1, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(8801), 1, + ACTIONS(8519), 1, anon_sym_COLON, - STATE(5723), 1, + ACTIONS(8521), 1, + anon_sym_LBRACE, + STATE(5492), 1, sym_type_parameters, - STATE(8725), 1, + STATE(8376), 1, sym_primary_constructor, - STATE(8977), 1, + STATE(8563), 1, sym__class_parameters, - STATE(9087), 1, + STATE(8674), 1, sym_type_constraints, - STATE(9838), 1, + STATE(9272), 1, sym_class_body, - STATE(9955), 1, + STATE(9757), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7785), 2, + ACTIONS(3206), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7793), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5889), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7789), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7791), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7787), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7783), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7781), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5646), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -558772,84 +536254,85 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67950] = 4, - ACTIONS(8803), 1, + [55957] = 4, + ACTIONS(8523), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5171), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4287), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4289), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5173), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [68013] = 5, - ACTIONS(8805), 1, - anon_sym_DOT, - STATE(5619), 1, - aux_sym_user_type_repeat1, + [56021] = 4, + ACTIONS(8525), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 20, + ACTIONS(4265), 22, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -558860,28 +536343,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4189), 30, - anon_sym_fun, - anon_sym_val, + ACTIONS(4267), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -558891,13 +536374,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [68078] = 4, - ACTIONS(8808), 1, - anon_sym_LPAREN, + [56085] = 8, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + ACTIONS(8527), 1, + anon_sym_COLON, + STATE(5076), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5177), 22, + ACTIONS(4307), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -558906,7 +536397,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -558920,18 +536410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5179), 29, + ACTIONS(4309), 27, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -558950,294 +536438,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68141] = 8, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(6364), 1, - anon_sym_COLON, - STATE(4740), 1, - sym_type_constraints, - STATE(4840), 1, - sym_enum_class_body, + [56157] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3284), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(3346), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3344), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3288), 26, - sym_safe_nav, + [56219] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4852), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [68212] = 23, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(5297), 1, - anon_sym_SEMI, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8741), 1, - anon_sym_by, - ACTIONS(8743), 1, - anon_sym_where, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8810), 1, - anon_sym_EQ, - STATE(5721), 1, - sym_type_constraints, - STATE(5800), 1, - sym_property_delegate, - STATE(9565), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1818), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9408), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [68313] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - STATE(5351), 1, - sym__block, - STATE(5403), 1, - sym_function_body, - STATE(5732), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4183), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4850), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4185), 26, + [56281] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5201), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [68386] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8812), 1, - anon_sym_COLON, - STATE(4757), 1, - sym_type_constraints, - STATE(4952), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4275), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5199), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4277), 26, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [68457] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, + [56343] = 8, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8671), 1, + ACTIONS(8480), 1, anon_sym_EQ, - STATE(5261), 1, - sym_function_body, - STATE(5351), 1, + ACTIONS(8529), 1, + anon_sym_COLON, + STATE(5091), 1, sym__block, - STATE(5741), 1, - sym_type_constraints, + STATE(5163), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 20, + ACTIONS(4275), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -559255,13 +536651,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 26, + ACTIONS(4277), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -559282,645 +536679,561 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68530] = 4, - ACTIONS(8814), 1, + [56415] = 5, + ACTIONS(8531), 1, + anon_sym_SEMI, + ACTIONS(8533), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 21, + ACTIONS(4818), 22, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 30, + ACTIONS(4820), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68593] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(6350), 1, - anon_sym_COLON, - STATE(4769), 1, - sym_type_constraints, - STATE(4975), 1, - sym_class_body, + [56481] = 5, + ACTIONS(8535), 1, + anon_sym_LT, + STATE(5484), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4189), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4128), 31, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_in, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3296), 26, - sym_safe_nav, + [56547] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5155), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [68664] = 8, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(6358), 1, - anon_sym_COLON, - STATE(4781), 1, - sym_type_constraints, - STATE(4975), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3292), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5153), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3296), 26, - sym_safe_nav, + [56609] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5151), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [68735] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(6360), 1, - anon_sym_COLON, - STATE(4809), 1, - sym_type_constraints, - STATE(4840), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3284), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5149), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3288), 26, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [68806] = 5, - ACTIONS(8814), 1, + [56671] = 4, + ACTIONS(8533), 1, anon_sym_else, - ACTIONS(8816), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 21, + ACTIONS(4818), 22, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 29, + ACTIONS(4820), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_DASH_GT, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68871] = 4, - ACTIONS(8818), 1, - anon_sym_LPAREN, + [56735] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4244), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4242), 29, - sym_safe_nav, + ACTIONS(3282), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [68934] = 9, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - STATE(5297), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - STATE(5734), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4291), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(3278), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4293), 26, - sym__automatic_semicolon, - sym_safe_nav, + [56797] = 7, + ACTIONS(8539), 1, anon_sym_AT, + ACTIONS(8544), 1, + sym_label, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5345), 2, + sym_annotation, + aux_sym__statement_repeat1, + STATE(5561), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8542), 19, + sym__string_start, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [69007] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8606), 1, - anon_sym_EQ, - STATE(5261), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4287), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(8537), 28, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, + anon_sym_this, + anon_sym_super, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4289), 27, + [56867] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4162), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [69076] = 8, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(8820), 1, - anon_sym_COLON, - STATE(4801), 1, - sym_type_constraints, - STATE(4895), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4256), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4160), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4258), 26, - sym_safe_nav, + [56929] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1804), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [69147] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(6348), 1, - anon_sym_COLON, - STATE(5106), 1, - sym_type_constraints, - STATE(5241), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3284), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(1802), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3288), 27, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, + [56991] = 4, + ACTIONS(8547), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [69218] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8606), 1, - anon_sym_EQ, - STATE(5346), 1, - sym_function_body, - STATE(5351), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 21, + ACTIONS(4892), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -559929,116 +537242,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4166), 27, + ACTIONS(4894), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69287] = 8, - ACTIONS(5558), 1, - anon_sym_where, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(8822), 1, - anon_sym_COLON, - STATE(4739), 1, - sym_type_constraints, - STATE(4895), 1, - sym_enum_class_body, + [57055] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(1798), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(1796), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4258), 26, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [69358] = 7, - ACTIONS(8242), 1, + [57117] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8586), 1, + ACTIONS(8442), 1, anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(4972), 1, + STATE(4699), 1, sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5508), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 21, + ACTIONS(4299), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -560060,7 +537376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 26, + ACTIONS(4301), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -560087,326 +537403,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69426] = 23, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8828), 1, - anon_sym_COMMA, - ACTIONS(8830), 1, - anon_sym_RPAREN, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9359), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, + [57191] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [69526] = 23, - ACTIONS(3202), 1, + ACTIONS(3115), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8650), 1, - anon_sym_constructor, - ACTIONS(8652), 1, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8654), 1, - anon_sym_LPAREN, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8856), 1, - anon_sym_COLON, - STATE(8670), 1, - sym_primary_constructor, - STATE(8775), 1, - sym__class_parameters, - STATE(9014), 1, - sym_type_constraints, - STATE(9422), 1, - sym_enum_class_body, - STATE(10111), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3288), 2, - sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [69626] = 14, - ACTIONS(8858), 1, - anon_sym_AT, - ACTIONS(8877), 1, - sym_property_modifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8863), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8871), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8886), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8880), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8883), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8874), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8868), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8865), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - ACTIONS(8861), 10, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, - anon_sym_get, - anon_sym_set, - STATE(5641), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [69708] = 23, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8889), 1, - anon_sym_COMMA, - ACTIONS(8891), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9129), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, + ACTIONS(3113), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [69808] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8586), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(4951), 1, - sym_function_body, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [57253] = 4, + ACTIONS(8549), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 21, + ACTIONS(4874), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -560414,613 +537485,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4293), 26, + ACTIONS(4876), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69876] = 8, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, - anon_sym_LBRACE, - ACTIONS(8893), 1, - anon_sym_COLON, - STATE(5103), 1, - sym_type_constraints, - STATE(5247), 1, - sym_enum_class_body, + [57317] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4258), 26, + ACTIONS(4323), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [69946] = 5, - ACTIONS(8895), 1, - anon_sym_by, - STATE(5331), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4435), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4321), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4437), 28, + [57379] = 4, + ACTIONS(8551), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4876), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [70010] = 14, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(8901), 1, - sym_property_modifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - ACTIONS(8899), 2, - anon_sym_val, - anon_sym_var, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - ACTIONS(8897), 10, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, + ACTIONS(4874), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - STATE(5641), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [70092] = 23, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(8903), 1, - anon_sym_COMMA, - ACTIONS(8905), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9328), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [70192] = 23, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(3330), 1, - anon_sym_while, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8907), 1, - anon_sym_EQ, - ACTIONS(8909), 1, - anon_sym_by, - ACTIONS(8911), 1, - anon_sym_where, - ACTIONS(8913), 1, - anon_sym_SEMI, - ACTIONS(8915), 1, - anon_sym_get, - ACTIONS(8917), 1, - anon_sym_set, - STATE(5763), 1, - sym_type_constraints, - STATE(5831), 1, - sym_property_delegate, - STATE(9692), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9853), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [70292] = 23, - ACTIONS(8824), 1, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(8919), 1, - anon_sym_COMMA, - ACTIONS(8921), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9326), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, + [57443] = 4, + ACTIONS(8553), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [70392] = 8, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, + ACTIONS(4894), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(6490), 1, - anon_sym_COLON, - STATE(5124), 1, - sym_type_constraints, - STATE(5241), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3284), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4892), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3288), 26, + [57507] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5123), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [70462] = 23, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8923), 1, - anon_sym_COMMA, - ACTIONS(8925), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9215), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, + ACTIONS(5121), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [70562] = 3, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [57569] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 20, + ACTIONS(5177), 23, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -561031,29 +537788,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4189), 31, - anon_sym_fun, - anon_sym_val, + ACTIONS(5175), 30, anon_sym_object, - anon_sym_DOT, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -561063,411 +537819,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [70622] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8586), 1, - anon_sym_EQ, - STATE(4853), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + [57631] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4465), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4463), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4185), 26, - sym_safe_nav, + [57693] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5119), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [70690] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8586), 1, - anon_sym_EQ, - STATE(4842), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4164), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5117), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4166), 26, - sym_safe_nav, + [57755] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4139), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [70758] = 23, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(8927), 1, - anon_sym_COMMA, - ACTIONS(8929), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9078), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [70858] = 23, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8931), 1, - anon_sym_COMMA, - ACTIONS(8933), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9231), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [70958] = 8, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(5876), 1, - anon_sym_LBRACE, - ACTIONS(6484), 1, - anon_sym_COLON, - STATE(5120), 1, - sym_type_constraints, - STATE(5326), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3292), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4137), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3296), 26, + [57817] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4646), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [71028] = 23, + ACTIONS(4644), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [57879] = 25, ACTIONS(3202), 1, anon_sym_AT, ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8650), 1, + ACTIONS(8509), 1, anon_sym_constructor, - ACTIONS(8652), 1, - anon_sym_LBRACE, - ACTIONS(8654), 1, + ACTIONS(8513), 1, anon_sym_LPAREN, - ACTIONS(8658), 1, + ACTIONS(8515), 1, + anon_sym_LT, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(8935), 1, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(8555), 1, anon_sym_COLON, - STATE(8645), 1, + STATE(5520), 1, + sym_type_parameters, + STATE(8389), 1, sym_primary_constructor, - STATE(8775), 1, + STATE(8563), 1, sym__class_parameters, - STATE(8954), 1, + STATE(8713), 1, sym_type_constraints, - STATE(9696), 1, - sym_enum_class_body, - STATE(10111), 1, + STATE(9461), 1, + sym_class_body, + STATE(9757), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3296), 2, + ACTIONS(3238), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(7785), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7793), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5889), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7789), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7791), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7787), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7783), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7781), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5646), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -561478,82 +538136,24 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71128] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8586), 1, - anon_sym_EQ, - STATE(4885), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + [57985] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4518), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4520), 26, - sym_safe_nav, + ACTIONS(4361), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [71196] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4337), 20, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -561564,29 +538164,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4335), 31, - anon_sym_fun, - anon_sym_val, + ACTIONS(4359), 30, anon_sym_object, - anon_sym_DOT, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -561596,560 +538195,382 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [71256] = 4, + [58047] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4379), 2, + ACTIONS(5079), 23, sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(5032), 22, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(5034), 27, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [71318] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8586), 1, - anon_sym_EQ, - STATE(4924), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4530), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5077), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4532), 26, - sym_safe_nav, + [58109] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4976), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [71386] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(6480), 1, - anon_sym_COLON, - STATE(5148), 1, - sym_type_constraints, - STATE(5370), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3276), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4974), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3280), 26, + [58171] = 6, + ACTIONS(7003), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4267), 3, + anon_sym_in, + anon_sym_else, + anon_sym_is, + ACTIONS(4265), 4, sym__automatic_semicolon, - sym_safe_nav, + anon_sym_RBRACE, + anon_sym_BANGin, + anon_sym_BANGis, + ACTIONS(4262), 18, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [71456] = 23, - ACTIONS(1818), 1, - anon_sym_while, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(5414), 1, - anon_sym_SEMI, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8909), 1, - anon_sym_by, - ACTIONS(8911), 1, - anon_sym_where, - ACTIONS(8915), 1, + ACTIONS(4259), 27, + anon_sym_object, + anon_sym_fun, anon_sym_get, - ACTIONS(8917), 1, anon_sym_set, - ACTIONS(8937), 1, - anon_sym_EQ, - STATE(5780), 1, - sym_type_constraints, - STATE(5823), 1, - sym_property_delegate, - STATE(9692), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9768), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [71556] = 8, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - ACTIONS(8939), 1, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [58239] = 4, + ACTIONS(6918), 1, anon_sym_COLON, - STATE(5350), 1, - sym_function_body, - STATE(5351), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4269), 20, - anon_sym_as, + ACTIONS(4009), 21, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_LT, - anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4004), 31, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4271), 26, + [58303] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5041), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [71626] = 23, - ACTIONS(1828), 1, - anon_sym_while, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(5487), 1, - anon_sym_SEMI, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8909), 1, - anon_sym_by, - ACTIONS(8911), 1, - anon_sym_where, - ACTIONS(8915), 1, - anon_sym_get, - ACTIONS(8917), 1, - anon_sym_set, - ACTIONS(8941), 1, - anon_sym_EQ, - STATE(5764), 1, - sym_type_constraints, - STATE(5817), 1, - sym_property_delegate, - STATE(9692), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9784), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [71726] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(6482), 1, - anon_sym_COLON, - STATE(5132), 1, - sym_type_constraints, - STATE(5326), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3292), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5039), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3296), 26, + [58365] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5087), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [71796] = 23, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8650), 1, - anon_sym_constructor, - ACTIONS(8654), 1, - anon_sym_LPAREN, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8662), 1, - anon_sym_LBRACE, - ACTIONS(8943), 1, - anon_sym_COLON, - STATE(8649), 1, - sym_primary_constructor, - STATE(8775), 1, - sym__class_parameters, - STATE(9009), 1, - sym_type_constraints, - STATE(9422), 1, - sym_class_body, - STATE(10111), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3288), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(5085), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [71896] = 5, - ACTIONS(8945), 1, - anon_sym_LPAREN, - STATE(5757), 1, - sym_value_arguments, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [58427] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7248), 19, + ACTIONS(4441), 23, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -562160,28 +538581,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(7246), 30, - anon_sym_fun, - anon_sym_val, + ACTIONS(4439), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -562191,98 +538612,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [71960] = 23, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8650), 1, - anon_sym_constructor, - ACTIONS(8654), 1, - anon_sym_LPAREN, - ACTIONS(8658), 1, + [58489] = 9, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8662), 1, - anon_sym_LBRACE, - ACTIONS(8948), 1, - anon_sym_COLON, - STATE(8659), 1, - sym_primary_constructor, - STATE(8775), 1, - sym__class_parameters, - STATE(9050), 1, - sym_type_constraints, - STATE(9676), 1, - sym_class_body, - STATE(10111), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3280), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [72060] = 8, - ACTIONS(5864), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8950), 1, - anon_sym_COLON, - STATE(5139), 1, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, + STATE(5470), 1, sym_type_constraints, - STATE(5332), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 20, + ACTIONS(4147), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -562303,13 +538649,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 26, + ACTIONS(4149), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -562330,101 +538677,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72130] = 23, - ACTIONS(1734), 1, - anon_sym_while, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(5442), 1, - anon_sym_SEMI, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8909), 1, - anon_sym_by, - ACTIONS(8911), 1, + [58563] = 10, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8915), 1, - anon_sym_get, - ACTIONS(8917), 1, - anon_sym_set, - ACTIONS(8952), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8557), 1, + anon_sym_COLON, + ACTIONS(8559), 1, anon_sym_EQ, - STATE(5765), 1, + STATE(5091), 1, + sym__block, + STATE(5220), 1, + sym_function_body, + STATE(5592), 1, sym_type_constraints, - STATE(5812), 1, - sym_property_delegate, - STATE(9692), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9790), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [72230] = 5, - ACTIONS(8954), 1, - anon_sym_COMMA, - STATE(5484), 1, - aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4740), 22, + ACTIONS(4183), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -562438,14 +538716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4742), 27, + ACTIONS(4185), 26, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -562466,155 +538743,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72294] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8586), 1, - anon_sym_EQ, - STATE(4837), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + [58639] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4339), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4341), 26, - sym_safe_nav, + ACTIONS(3422), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [72362] = 23, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(3346), 1, - anon_sym_while, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8909), 1, - anon_sym_by, - ACTIONS(8911), 1, - anon_sym_where, - ACTIONS(8915), 1, + ACTIONS(3420), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, - ACTIONS(8917), 1, anon_sym_set, - ACTIONS(8956), 1, - anon_sym_EQ, - ACTIONS(8958), 1, - anon_sym_SEMI, - STATE(5779), 1, - sym_type_constraints, - STATE(5826), 1, - sym_property_delegate, - STATE(9692), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9819), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [72462] = 6, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(8960), 1, - anon_sym_COLON, - STATE(5334), 1, - sym_class_body, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [58701] = 4, + STATE(5321), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 21, + ACTIONS(4736), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -562623,6 +538817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -562636,16 +538831,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 27, - sym__automatic_semicolon, + ACTIONS(4738), 30, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -562664,21 +538862,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72528] = 3, + [58765] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4319), 20, + ACTIONS(5105), 23, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -562689,29 +538890,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4317), 31, - anon_sym_fun, - anon_sym_val, + ACTIONS(5103), 30, anon_sym_object, - anon_sym_DOT, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -562721,150 +538921,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [72588] = 23, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, + [58827] = 25, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(8846), 1, + ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(8962), 1, - anon_sym_COMMA, - ACTIONS(8964), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, + ACTIONS(8509), 1, + anon_sym_constructor, + ACTIONS(8511), 1, + anon_sym_LBRACE, + ACTIONS(8513), 1, + anon_sym_LPAREN, + ACTIONS(8515), 1, + anon_sym_LT, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8561), 1, + anon_sym_COLON, + STATE(5496), 1, + sym_type_parameters, + STATE(8357), 1, + sym_primary_constructor, + STATE(8563), 1, + sym__class_parameters, + STATE(8656), 1, + sym_type_constraints, + STATE(9461), 1, + sym_enum_class_body, + STATE(9757), 1, sym_modifiers, - STATE(9163), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, + ACTIONS(3238), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8852), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(6031), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8850), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8844), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [72688] = 23, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(8966), 1, - anon_sym_COMMA, - ACTIONS(8968), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9144), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5833), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -562875,156 +539002,141 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72788] = 4, + [58933] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4383), 2, + ACTIONS(5109), 23, sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4948), 22, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5107), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4950), 27, - sym_safe_nav, + [58995] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4357), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [72850] = 23, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8650), 1, - anon_sym_constructor, - ACTIONS(8654), 1, - anon_sym_LPAREN, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8662), 1, - anon_sym_LBRACE, - ACTIONS(8970), 1, - anon_sym_COLON, - STATE(8631), 1, - sym_primary_constructor, - STATE(8775), 1, - sym__class_parameters, - STATE(8912), 1, - sym_type_constraints, - STATE(9696), 1, - sym_class_body, - STATE(10111), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3296), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(4355), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [72950] = 8, - ACTIONS(8361), 1, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [59057] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8671), 1, + ACTIONS(8480), 1, anon_sym_EQ, - ACTIONS(8972), 1, - anon_sym_COLON, - STATE(5322), 1, - sym_function_body, - STATE(5351), 1, + STATE(5091), 1, sym__block, + STATE(5240), 1, + sym_function_body, + STATE(5464), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 20, + ACTIONS(4160), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -563045,13 +539157,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 26, + ACTIONS(4162), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -563072,21 +539185,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73020] = 8, - ACTIONS(8361), 1, + [59131] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8671), 1, + ACTIONS(8559), 1, anon_sym_EQ, - ACTIONS(8974), 1, + ACTIONS(8563), 1, anon_sym_COLON, - STATE(5275), 1, - sym_function_body, - STATE(5351), 1, + STATE(5091), 1, sym__block, + STATE(5240), 1, + sym_function_body, + STATE(5580), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4339), 20, + ACTIONS(4160), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -563107,7 +539224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4341), 26, + ACTIONS(4162), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -563134,80 +539251,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73090] = 5, - ACTIONS(8954), 1, - anon_sym_COMMA, - STATE(5673), 1, - aux_sym__delegation_specifiers_repeat1, + [59207] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4671), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4569), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4567), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4673), 27, - sym_safe_nav, + [59269] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4800), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [73154] = 6, - ACTIONS(5864), 1, + ACTIONS(4798), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [59331] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8976), 1, - anon_sym_COLON, - STATE(5383), 1, - sym_class_body, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5220), 1, + sym_function_body, + STATE(5461), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4443), 21, + ACTIONS(4183), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -563225,7 +539406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4445), 27, + ACTIONS(4185), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -563253,21 +539434,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73220] = 3, + [59405] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4234), 20, + ACTIONS(4920), 23, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -563278,29 +539462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4232), 31, + ACTIONS(4918), 30, + anon_sym_object, anon_sym_fun, - anon_sym_val, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [59467] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4479), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4477), 30, anon_sym_object, - anon_sym_DOT, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -563310,21 +539552,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [73280] = 8, - ACTIONS(5864), 1, + [59529] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4301), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(5868), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4299), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [59591] = 10, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8978), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + ACTIONS(8565), 1, anon_sym_COLON, - STATE(5157), 1, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, + STATE(5577), 1, sym_type_constraints, - STATE(5376), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 20, + ACTIONS(4147), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -563345,7 +539650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 26, + ACTIONS(4149), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -563372,19 +539677,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73350] = 7, - ACTIONS(8242), 1, + [59667] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4495), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4493), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [59729] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8586), 1, + ACTIONS(8480), 1, anon_sym_EQ, - STATE(4883), 1, - sym_function_body, - STATE(4930), 1, + STATE(5091), 1, sym__block, + STATE(5194), 1, + sym_function_body, + STATE(5457), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 21, + ACTIONS(4295), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -563392,7 +539760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -563406,13 +539773,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4156), 26, + ACTIONS(4297), 27, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -563433,81 +539801,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73418] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_where, - ACTIONS(8980), 1, - anon_sym_COLON, - STATE(5107), 1, - sym_type_constraints, - STATE(5247), 1, - sym_class_body, + [59803] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4886), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4884), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4258), 26, + [59865] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4218), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [73488] = 7, - ACTIONS(8242), 1, + ACTIONS(4216), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [59927] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8586), 1, + ACTIONS(8559), 1, anon_sym_EQ, - STATE(4930), 1, + ACTIONS(8567), 1, + anon_sym_COLON, + STATE(5091), 1, sym__block, - STATE(4989), 1, + STATE(5141), 1, sym_function_body, + STATE(5570), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4453), 21, + ACTIONS(4137), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -563515,7 +539945,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -563529,13 +539958,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4455), 26, + ACTIONS(4139), 26, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -563556,82 +539985,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73556] = 7, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8586), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__block, - STATE(5001), 1, - sym_function_body, + [60003] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(1816), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(1814), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4198), 26, - sym_safe_nav, + [60065] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1734), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [73624] = 8, - ACTIONS(5868), 1, + ACTIONS(1732), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [60127] = 10, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(5876), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8982), 1, + ACTIONS(8559), 1, + anon_sym_EQ, + ACTIONS(8569), 1, anon_sym_COLON, - STATE(5165), 1, + STATE(5079), 1, + sym_function_body, + STATE(5091), 1, + sym__block, + STATE(5567), 1, sym_type_constraints, - STATE(5376), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 20, + ACTIONS(4173), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -563652,7 +540142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4283), 26, + ACTIONS(4175), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -563679,21 +540169,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73694] = 8, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, + [60203] = 9, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(6488), 1, - anon_sym_COLON, - STATE(5106), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5073), 1, + sym_function_body, + STATE(5091), 1, + sym__block, + STATE(5456), 1, sym_type_constraints, - STATE(5241), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3284), 20, + ACTIONS(4299), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -563714,13 +540206,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3288), 26, + ACTIONS(4301), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -563741,21 +540234,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73764] = 3, + [60277] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4936), 20, + ACTIONS(4968), 23, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -563766,28 +540262,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4934), 30, - anon_sym_fun, - anon_sym_val, + ACTIONS(4966), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -563797,456 +540293,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [73823] = 23, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(8984), 1, - anon_sym_RBRACE, - ACTIONS(8986), 1, - anon_sym_SEMI, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8409), 1, - sym_modifiers, - STATE(8627), 1, - sym_simple_identifier, - STATE(9026), 1, - sym_enum_entry, - STATE(9414), 1, - sym__enum_entries, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [73922] = 22, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(8988), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [74019] = 4, - ACTIONS(8895), 1, - anon_sym_by, + [60339] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4435), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4437), 28, + ACTIONS(5101), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [74080] = 23, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8990), 1, - anon_sym_RBRACE, - ACTIONS(8992), 1, - anon_sym_SEMI, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8409), 1, - sym_modifiers, - STATE(8627), 1, - sym_simple_identifier, - STATE(9026), 1, - sym_enum_entry, - STATE(9444), 1, - sym__enum_entries, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8834), 2, + ACTIONS(5099), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [74179] = 23, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(8994), 1, - anon_sym_RBRACE, - ACTIONS(8996), 1, - anon_sym_SEMI, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8409), 1, - sym_modifiers, - STATE(8627), 1, - sym_simple_identifier, - STATE(9026), 1, - sym_enum_entry, - STATE(9699), 1, - sym__enum_entries, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, anon_sym_expect, anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [74278] = 22, - ACTIONS(8824), 1, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(8998), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [74375] = 3, + [60401] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5006), 20, + ACTIONS(4483), 23, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -564257,28 +540380,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5004), 30, - anon_sym_fun, - anon_sym_val, + ACTIONS(4481), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -564288,21 +540411,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [74434] = 3, + [60463] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4942), 20, + ACTIONS(5193), 23, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -564313,28 +540439,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4940), 30, - anon_sym_fun, - anon_sym_val, + ACTIONS(5191), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -564344,13 +540470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [74493] = 4, - ACTIONS(4381), 1, - anon_sym_while, + [60525] = 4, + ACTIONS(8571), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4948), 22, + ACTIONS(4289), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -564360,6 +540486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -564373,12 +540500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4950), 27, + ACTIONS(4287), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -564401,96 +540530,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [74554] = 22, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9000), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, + [60589] = 4, + ACTIONS(8573), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, + ACTIONS(4267), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [74651] = 3, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4265), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [60653] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7299), 20, + ACTIONS(3290), 23, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -564501,28 +540618,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(7297), 30, - anon_sym_fun, - anon_sym_val, + ACTIONS(3286), 30, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -564532,307 +540649,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [74710] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - STATE(5242), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [60715] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4518), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4185), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4183), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4520), 26, + [60777] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4900), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [74777] = 23, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(9002), 1, - anon_sym_RBRACE, - ACTIONS(9004), 1, - anon_sym_SEMI, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8409), 1, - sym_modifiers, - STATE(8627), 1, - sym_simple_identifier, - STATE(9026), 1, - sym_enum_entry, - STATE(9734), 1, - sym__enum_entries, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8834), 2, + ACTIONS(4898), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [74876] = 22, - ACTIONS(8824), 1, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9006), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, + [60839] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, + ACTIONS(4297), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4295), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [74973] = 21, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(5297), 1, - anon_sym_SEMI, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8741), 1, - anon_sym_by, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8810), 1, - anon_sym_EQ, - STATE(5800), 1, - sym_property_delegate, - STATE(9565), 1, - sym_modifiers, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [60901] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1818), 2, + ACTIONS(1810), 23, sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9408), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(1808), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [75068] = 5, - ACTIONS(9008), 1, - anon_sym_COMMA, - STATE(5758), 1, - aux_sym__delegation_specifiers_repeat1, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [60963] = 4, + ACTIONS(6928), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4740), 21, + ACTIONS(4281), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -564841,59 +540908,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4742), 27, + ACTIONS(4284), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [75131] = 6, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(9010), 1, - anon_sym_COLON, - STATE(4935), 1, - sym_class_body, + [61027] = 4, + ACTIONS(6924), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 21, + ACTIONS(4259), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -564901,1416 +540968,1004 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 26, + ACTIONS(4262), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [75196] = 22, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9012), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, + [61091] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, + ACTIONS(4654), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4652), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [75293] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - STATE(5307), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [61153] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4904), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4902), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4198), 26, + [61215] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4453), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [75360] = 22, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(9014), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, + ACTIONS(4451), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [75457] = 21, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(5293), 1, - anon_sym_SEMI, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8741), 1, - anon_sym_by, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8785), 1, - anon_sym_EQ, - STATE(5796), 1, - sym_property_delegate, - STATE(9565), 1, - sym_modifiers, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [61277] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1828), 2, + ACTIONS(4908), 23, sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9553), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4906), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [75552] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - STATE(5234), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [61339] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4154), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5173), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5171), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4156), 26, + [61401] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4469), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [75619] = 6, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(9016), 1, - anon_sym_COLON, - STATE(4830), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4443), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4467), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4445), 26, - sym_safe_nav, + [61463] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1792), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [75684] = 4, - STATE(5758), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4740), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(1790), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4742), 28, + [61525] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(121), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [75745] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - STATE(5346), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4164), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(123), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4166), 26, + [61587] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4776), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [75812] = 23, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(9018), 1, - anon_sym_RBRACE, - ACTIONS(9020), 1, - anon_sym_SEMI, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8409), 1, - sym_modifiers, - STATE(8627), 1, - sym_simple_identifier, - STATE(9026), 1, - sym_enum_entry, - STATE(9610), 1, - sym__enum_entries, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8834), 2, + ACTIONS(4774), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [75911] = 21, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(5283), 1, - anon_sym_SEMI, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8739), 1, - anon_sym_EQ, - ACTIONS(8741), 1, - anon_sym_by, - ACTIONS(8753), 1, - sym_property_modifier, - STATE(5809), 1, - sym_property_delegate, - STATE(9565), 1, - sym_modifiers, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [61649] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1734), 2, + ACTIONS(5221), 23, sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9431), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5219), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [76006] = 23, - ACTIONS(8824), 1, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9022), 1, - anon_sym_RBRACE, - ACTIONS(9024), 1, - anon_sym_SEMI, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8409), 1, - sym_modifiers, - STATE(8627), 1, - sym_simple_identifier, - STATE(9026), 1, - sym_enum_entry, - STATE(9568), 1, - sym__enum_entries, + [61711] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 2, + ACTIONS(5097), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5095), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [76105] = 23, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(3296), 1, - anon_sym_while, - ACTIONS(8727), 1, - anon_sym_constructor, - ACTIONS(8729), 1, - anon_sym_LBRACE, - ACTIONS(8731), 1, - anon_sym_LPAREN, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(9026), 1, - anon_sym_COLON, - STATE(8687), 1, - sym_primary_constructor, - STATE(8977), 1, - sym__class_parameters, - STATE(9190), 1, - sym_type_constraints, - STATE(9807), 1, - sym_class_body, - STATE(9955), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, anon_sym_expect, anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [76204] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - STATE(5351), 1, - sym__block, - STATE(5403), 1, - sym_function_body, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [61773] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4149), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4147), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4185), 26, + [61835] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5207), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [76271] = 23, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(3296), 1, - anon_sym_while, - ACTIONS(8727), 1, - anon_sym_constructor, - ACTIONS(8731), 1, - anon_sym_LPAREN, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(8765), 1, - anon_sym_LBRACE, - ACTIONS(9028), 1, - anon_sym_COLON, - STATE(8673), 1, - sym_primary_constructor, - STATE(8977), 1, - sym__class_parameters, - STATE(9162), 1, - sym_type_constraints, - STATE(9807), 1, - sym_enum_class_body, - STATE(9955), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [76370] = 21, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8741), 1, - anon_sym_by, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8797), 1, - anon_sym_EQ, - ACTIONS(8799), 1, - anon_sym_SEMI, - STATE(5795), 1, - sym_property_delegate, - STATE(9565), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3346), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9732), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [76465] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - STATE(5275), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4339), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5205), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4341), 26, + [61897] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5215), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [76532] = 23, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(3280), 1, - anon_sym_while, - ACTIONS(8727), 1, - anon_sym_constructor, - ACTIONS(8729), 1, - anon_sym_LBRACE, - ACTIONS(8731), 1, - anon_sym_LPAREN, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(9030), 1, - anon_sym_COLON, - STATE(8729), 1, - sym_primary_constructor, - STATE(8977), 1, - sym__class_parameters, - STATE(9086), 1, - sym_type_constraints, - STATE(9841), 1, - sym_class_body, - STATE(9955), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [76631] = 7, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - STATE(5283), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4530), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5213), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4532), 26, + [61959] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5211), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [76698] = 4, - ACTIONS(4377), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5032), 22, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5209), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5034), 27, - sym_safe_nav, + [62021] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4848), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [76759] = 23, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(3288), 1, - anon_sym_while, - ACTIONS(8727), 1, - anon_sym_constructor, - ACTIONS(8729), 1, - anon_sym_LBRACE, - ACTIONS(8731), 1, - anon_sym_LPAREN, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(9032), 1, - anon_sym_COLON, - STATE(8726), 1, - sym_primary_constructor, - STATE(8977), 1, - sym__class_parameters, - STATE(9364), 1, - sym_type_constraints, - STATE(9776), 1, - sym_class_body, - STATE(9955), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(4846), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [76858] = 7, - ACTIONS(8361), 1, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [62083] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8671), 1, + ACTIONS(8480), 1, anon_sym_EQ, - STATE(5297), 1, - sym_function_body, - STATE(5351), 1, + STATE(5091), 1, sym__block, + STATE(5141), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 20, + ACTIONS(4137), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -566328,13 +541983,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4293), 26, + ACTIONS(4139), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -566355,98 +542011,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [76925] = 23, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(3288), 1, - anon_sym_while, - ACTIONS(8727), 1, - anon_sym_constructor, - ACTIONS(8731), 1, - anon_sym_LPAREN, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(8765), 1, - anon_sym_LBRACE, - ACTIONS(9034), 1, - anon_sym_COLON, - STATE(8727), 1, - sym_primary_constructor, - STATE(8977), 1, - sym__class_parameters, - STATE(9366), 1, - sym_type_constraints, - STATE(9776), 1, - sym_enum_class_body, - STATE(9955), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7785), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7793), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5889), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7789), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7791), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7787), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7783), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7781), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5646), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [77024] = 7, - ACTIONS(8361), 1, + [62152] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8671), 1, + ACTIONS(8480), 1, anon_sym_EQ, - STATE(5261), 1, + STATE(5076), 1, sym_function_body, - STATE(5351), 1, + STATE(5091), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 20, + ACTIONS(4307), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -566464,13 +542045,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 26, + ACTIONS(4309), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -566491,435 +542073,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [77091] = 22, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9036), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [77188] = 22, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9038), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [77285] = 22, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9040), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [77382] = 5, - ACTIONS(4347), 1, - anon_sym_while, - ACTIONS(9042), 1, - anon_sym_LPAREN, + [62221] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8575), 1, + anon_sym_COLON, + STATE(4979), 1, + sym_type_constraints, + STATE(5106), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4010), 22, + ACTIONS(4216), 20, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4015), 26, + ACTIONS(4218), 27, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [77445] = 5, - ACTIONS(4236), 1, - anon_sym_while, - ACTIONS(9045), 1, - anon_sym_LPAREN, + [62292] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(6316), 1, + anon_sym_COLON, + STATE(4981), 1, + sym_type_constraints, + STATE(5246), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4010), 22, + ACTIONS(3286), 20, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4015), 26, + ACTIONS(3290), 27, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [77508] = 22, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9048), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [77605] = 7, - ACTIONS(8361), 1, + [62363] = 8, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_EQ, - STATE(5232), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8577), 1, + anon_sym_COLON, + STATE(4999), 1, + sym_type_constraints, + STATE(5231), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4453), 20, + ACTIONS(4321), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -566940,13 +542234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4455), 26, + ACTIONS(4323), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -566967,296 +542262,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [77672] = 22, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9050), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [77769] = 21, - ACTIONS(3328), 1, + [62434] = 23, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(5301), 1, - anon_sym_SEMI, - ACTIONS(7777), 1, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(7779), 1, + ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8741), 1, + ACTIONS(8579), 1, + anon_sym_EQ, + ACTIONS(8581), 1, anon_sym_by, - ACTIONS(8753), 1, + ACTIONS(8583), 1, + anon_sym_where, + ACTIONS(8585), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(9052), 1, - anon_sym_EQ, - STATE(5803), 1, + STATE(5549), 1, + sym_type_constraints, + STATE(5648), 1, sym_property_delegate, - STATE(9565), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1810), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9457), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [77864] = 22, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9054), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [77961] = 23, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9056), 1, - anon_sym_RBRACE, - ACTIONS(9058), 1, - anon_sym_SEMI, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8409), 1, + STATE(9322), 1, sym_modifiers, - STATE(8627), 1, - sym_simple_identifier, - STATE(9026), 1, - sym_enum_entry, - STATE(9395), 1, - sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, + ACTIONS(3346), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8852), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(6031), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, + STATE(9405), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8850), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8844), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8836), 6, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5833), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -567267,142 +542340,199 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78060] = 22, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9060), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, + [62535] = 4, + ACTIONS(8603), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, + ACTIONS(4267), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [78157] = 3, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4265), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [62598] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5167), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7313), 20, - sym__string_start, + ACTIONS(4447), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4449), 27, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(7311), 30, - anon_sym_fun, - anon_sym_val, - anon_sym_object, + [62667] = 8, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + ACTIONS(8605), 1, + anon_sym_COLON, + STATE(4763), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4307), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, + anon_sym_in, anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [78216] = 3, + ACTIONS(4309), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [62738] = 5, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(5440), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7323), 20, + ACTIONS(4155), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -567423,10 +542553,10 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(7321), 30, - anon_sym_fun, + ACTIONS(4153), 30, anon_sym_val, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -567454,71 +542584,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [78275] = 22, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, + [62803] = 23, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8846), 1, + ACTIONS(5261), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8583), 1, + anon_sym_where, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9062), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, + ACTIONS(8609), 1, + anon_sym_EQ, + STATE(5541), 1, + sym_type_constraints, + STATE(5633), 1, + sym_property_delegate, + STATE(9322), 1, sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, + ACTIONS(1798), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8852), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(6031), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, + STATE(9460), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8850), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8844), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8836), 6, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5833), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -567529,71 +542662,196 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78372] = 22, - ACTIONS(8824), 1, + [62904] = 8, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + ACTIONS(8611), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4813), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4275), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, sym__alpha_identifier, - ACTIONS(8826), 1, + ACTIONS(4277), 26, + sym_safe_nav, anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9064), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [62975] = 4, + ACTIONS(8613), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, + ACTIONS(4289), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4287), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [63038] = 23, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8583), 1, + anon_sym_where, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8615), 1, + anon_sym_EQ, + ACTIONS(8617), 1, + anon_sym_SEMI, + STATE(5594), 1, + sym_type_constraints, + STATE(5634), 1, + sym_property_delegate, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3360), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8852), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(6031), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, + STATE(9311), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8850), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8844), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8836), 6, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5833), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -567604,11 +542862,15 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78469] = 3, + [63139] = 5, + ACTIONS(8619), 1, + anon_sym_DOT, + STATE(5440), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7335), 20, + ACTIONS(4168), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -567629,10 +542891,10 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(7333), 30, - anon_sym_fun, + ACTIONS(4166), 30, anon_sym_val, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -567660,167 +542922,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [78528] = 22, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9066), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, + [63204] = 5, + ACTIONS(8622), 1, + anon_sym_SEMI, + ACTIONS(8624), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, + ACTIONS(4818), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, + anon_sym_in, + anon_sym_while, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [78625] = 23, - ACTIONS(8824), 1, + anon_sym_expect, + anon_sym_actual, sym__alpha_identifier, - ACTIONS(8826), 1, + ACTIONS(4820), 29, + sym_safe_nav, anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9068), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(9070), 1, - anon_sym_SEMI, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8409), 1, - sym_modifiers, - STATE(8627), 1, - sym_simple_identifier, - STATE(9026), 1, - sym_enum_entry, - STATE(9668), 1, - sym__enum_entries, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [78724] = 3, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [63269] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7263), 20, + ACTIONS(4181), 21, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_LT, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, @@ -567836,10 +543008,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(7261), 30, - anon_sym_fun, + ACTIONS(4179), 31, anon_sym_val, anon_sym_object, + anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, @@ -567867,161 +543040,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [78783] = 22, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9072), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [78880] = 22, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9074), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [78977] = 3, + [63330] = 5, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(5435), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5022), 20, + ACTIONS(4195), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -568042,10 +543069,10 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5020), 30, - anon_sym_fun, + ACTIONS(4193), 30, anon_sym_val, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, @@ -568073,15 +543100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [79036] = 5, - ACTIONS(9076), 1, - anon_sym_COMMA, - STATE(5758), 1, - aux_sym__delegation_specifiers_repeat1, + [63395] = 4, + ACTIONS(8624), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4705), 21, + ACTIONS(4818), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -568090,7 +543115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_else, + anon_sym_while, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -568103,16 +543128,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4707), 27, - sym__automatic_semicolon, + ACTIONS(4820), 30, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -568131,147 +543159,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [79099] = 23, - ACTIONS(8824), 1, + [63458] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(6336), 1, + anon_sym_COLON, + STATE(5029), 1, + sym_type_constraints, + STATE(5118), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3278), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, sym__alpha_identifier, - ACTIONS(8826), 1, + ACTIONS(3282), 27, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9079), 1, + anon_sym_LBRACK, anon_sym_RBRACE, - ACTIONS(9081), 1, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8409), 1, - sym_modifiers, - STATE(8627), 1, - sym_simple_identifier, - STATE(9026), 1, - sym_enum_entry, - STATE(9729), 1, - sym__enum_entries, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [63529] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(6350), 1, + anon_sym_COLON, + STATE(5049), 1, + sym_type_constraints, + STATE(5118), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 2, + ACTIONS(3278), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_expect, anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, + sym__alpha_identifier, + ACTIONS(3282), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [63600] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8626), 1, + anon_sym_COLON, + STATE(5057), 1, + sym_type_constraints, + STATE(5102), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4327), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [79198] = 3, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4329), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [63671] = 4, + ACTIONS(8628), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4974), 20, - sym__string_start, + ACTIONS(4874), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4876), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4972), 30, - anon_sym_fun, - anon_sym_val, - anon_sym_object, + [63734] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(6250), 1, + anon_sym_COLON, + STATE(4624), 1, + sym_type_constraints, + STATE(4759), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3270), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, + anon_sym_in, anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [79257] = 5, - ACTIONS(9008), 1, - anon_sym_COMMA, - STATE(5710), 1, - aux_sym__delegation_specifiers_repeat1, + ACTIONS(3274), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [63805] = 4, + ACTIONS(8630), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4671), 21, + ACTIONS(4892), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -568280,6 +543485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -568293,16 +543499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4673), 27, - sym__automatic_semicolon, + ACTIONS(4894), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -568321,124 +543529,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [79320] = 3, + [63868] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5140), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4215), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4217), 47, - anon_sym_AT, - anon_sym_COLON, - anon_sym_typealias, - anon_sym_EQ, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, + ACTIONS(4443), 21, + anon_sym_as, anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, anon_sym_DOT, - anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [79378] = 21, - ACTIONS(3328), 1, + sym__alpha_identifier, + ACTIONS(4445), 27, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(3346), 1, - anon_sym_while, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8909), 1, - anon_sym_by, - ACTIONS(8915), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [63937] = 23, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5273), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(8917), 1, + ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8956), 1, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8583), 1, + anon_sym_where, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8632), 1, anon_sym_EQ, - ACTIONS(8958), 1, - anon_sym_SEMI, - STATE(5826), 1, + STATE(5575), 1, + sym_type_constraints, + STATE(5640), 1, sym_property_delegate, - STATE(9692), 1, + STATE(9322), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, + ACTIONS(1804), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9819), 2, + STATE(9265), 2, sym_getter, sym_setter, - ACTIONS(8755), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -568449,69 +543669,76 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79472] = 21, - ACTIONS(1818), 1, - anon_sym_while, - ACTIONS(3328), 1, + [64038] = 25, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(5414), 1, - anon_sym_SEMI, - ACTIONS(8753), 1, + ACTIONS(3206), 1, + anon_sym_while, + ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8909), 1, - anon_sym_by, - ACTIONS(8915), 1, - anon_sym_get, - ACTIONS(8917), 1, - anon_sym_set, - ACTIONS(8937), 1, - anon_sym_EQ, - STATE(5823), 1, - sym_property_delegate, - STATE(9692), 1, + ACTIONS(8634), 1, + anon_sym_COLON, + ACTIONS(8636), 1, + anon_sym_constructor, + ACTIONS(8638), 1, + anon_sym_LBRACE, + ACTIONS(8640), 1, + anon_sym_LPAREN, + ACTIONS(8642), 1, + anon_sym_LT, + ACTIONS(8644), 1, + anon_sym_where, + STATE(5597), 1, + sym_type_parameters, + STATE(8407), 1, + sym_primary_constructor, + STATE(8733), 1, + sym__class_parameters, + STATE(9064), 1, + sym_type_constraints, + STATE(9529), 1, sym_modifiers, + STATE(9882), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9768), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -568522,69 +543749,76 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79566] = 21, - ACTIONS(1810), 1, - anon_sym_while, - ACTIONS(3328), 1, + [64143] = 25, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(5498), 1, - anon_sym_SEMI, - ACTIONS(8753), 1, + ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8909), 1, - anon_sym_by, - ACTIONS(8915), 1, - anon_sym_get, - ACTIONS(8917), 1, - anon_sym_set, - ACTIONS(9083), 1, - anon_sym_EQ, - STATE(5825), 1, - sym_property_delegate, - STATE(9692), 1, + ACTIONS(3248), 1, + anon_sym_while, + ACTIONS(8636), 1, + anon_sym_constructor, + ACTIONS(8640), 1, + anon_sym_LPAREN, + ACTIONS(8642), 1, + anon_sym_LT, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8646), 1, + anon_sym_COLON, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(5586), 1, + sym_type_parameters, + STATE(8420), 1, + sym_primary_constructor, + STATE(8733), 1, + sym__class_parameters, + STATE(8939), 1, + sym_type_constraints, + STATE(9501), 1, + sym_enum_class_body, + STATE(9529), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9856), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -568595,17 +543829,21 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79660] = 6, - ACTIONS(5864), 1, + [64248] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(9085), 1, + ACTIONS(8650), 1, anon_sym_COLON, - STATE(5383), 1, + STATE(4676), 1, + sym_type_constraints, + STATE(4891), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4443), 20, + ACTIONS(4327), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -568613,6 +543851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -568626,13 +543865,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4445), 26, - sym__automatic_semicolon, + ACTIONS(4329), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -568653,15 +543892,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [79724] = 5, - ACTIONS(9087), 1, - anon_sym_SEMI, - ACTIONS(9089), 1, - anon_sym_else, + [64319] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5174), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 20, + ACTIONS(4439), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -568670,6 +543913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -568682,15 +543926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 27, + ACTIONS(4441), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, sym_label, anon_sym_DOT_DOT, @@ -568710,159 +543954,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [79786] = 21, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8409), 1, - sym_modifiers, - STATE(8627), 1, - sym_simple_identifier, - STATE(9125), 1, - sym_enum_entry, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - ACTIONS(9091), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [79880] = 21, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8093), 1, - sym_modifiers, - STATE(9492), 1, - sym_class_parameter, - STATE(9872), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8832), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [79974] = 4, - ACTIONS(9089), 1, - anon_sym_else, + [64388] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5073), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 20, + ACTIONS(4299), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -568871,6 +543975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -568883,12 +543988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 28, + ACTIONS(4301), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -568912,21 +544016,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [80034] = 4, - ACTIONS(9093), 1, + [64457] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4009), 21, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_LT, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4004), 31, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [64518] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(6284), 1, + anon_sym_COLON, + STATE(4659), 1, + sym_type_constraints, + STATE(4748), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5177), 21, + ACTIONS(3278), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -568940,14 +544110,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5179), 27, - sym__automatic_semicolon, + ACTIONS(3282), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -568968,21 +544137,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [80094] = 4, - ACTIONS(9095), 1, - anon_sym_LPAREN, + [64589] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(6298), 1, + anon_sym_COLON, + STATE(4621), 1, + sym_type_constraints, + STATE(4748), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4355), 21, + ACTIONS(3278), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -568996,14 +544173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4353), 27, - sym__automatic_semicolon, + ACTIONS(3282), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -569024,20 +544200,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [80154] = 6, - ACTIONS(5864), 1, + [64660] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(9097), 1, - anon_sym_COLON, - STATE(5334), 1, - sym_class_body, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5194), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 20, + ACTIONS(4295), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -569055,13 +544234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 26, + ACTIONS(4297), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -569082,17 +544262,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [80218] = 4, - ACTIONS(9099), 1, - anon_sym_LPAREN, + [64729] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(6352), 1, + anon_sym_COLON, + STATE(5030), 1, + sym_type_constraints, + STATE(5175), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5171), 21, + ACTIONS(3270), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -569110,13 +544297,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5173), 27, + ACTIONS(3274), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, @@ -569138,195 +544325,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [80278] = 5, - ACTIONS(9101), 1, - anon_sym_LT, - STATE(5801), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4177), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4179), 45, - anon_sym_AT, - anon_sym_typealias, - anon_sym_EQ, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, + [64800] = 9, + ACTIONS(5776), 1, anon_sym_where, - anon_sym_object, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [80340] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4010), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4015), 47, - anon_sym_AT, - anon_sym_COLON, - anon_sym_typealias, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, anon_sym_EQ, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_LT, - anon_sym_where, - anon_sym_object, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [80398] = 14, - ACTIONS(9103), 1, - anon_sym_AT, - ACTIONS(9118), 1, - sym_property_modifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8863), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(9112), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(9127), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9121), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(9124), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(9115), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(9109), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(9106), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - ACTIONS(8861), 8, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_get, - anon_sym_set, - STATE(5777), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [80478] = 4, - ACTIONS(9130), 1, - anon_sym_LPAREN, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, + STATE(5577), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4244), 21, + ACTIONS(4147), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -569344,14 +544362,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4242), 27, + ACTIONS(4149), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -569372,362 +544389,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [80538] = 21, - ACTIONS(1828), 1, - anon_sym_while, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(5487), 1, - anon_sym_SEMI, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8909), 1, - anon_sym_by, - ACTIONS(8915), 1, - anon_sym_get, - ACTIONS(8917), 1, - anon_sym_set, - ACTIONS(8941), 1, - anon_sym_EQ, - STATE(5817), 1, - sym_property_delegate, - STATE(9692), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9784), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [80632] = 21, - ACTIONS(1734), 1, - anon_sym_while, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(5442), 1, - anon_sym_SEMI, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8909), 1, - anon_sym_by, - ACTIONS(8915), 1, - anon_sym_get, - ACTIONS(8917), 1, - anon_sym_set, - ACTIONS(8952), 1, - anon_sym_EQ, - STATE(5812), 1, - sym_property_delegate, - STATE(9692), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9790), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [80726] = 14, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(9132), 1, - sym_property_modifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - ACTIONS(8899), 2, - anon_sym_val, - anon_sym_var, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - ACTIONS(8897), 8, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_get, - anon_sym_set, - STATE(5777), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [80806] = 21, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8826), 1, - anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8409), 1, - sym_modifiers, - STATE(8627), 1, - sym_simple_identifier, - STATE(9125), 1, - sym_enum_entry, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8834), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - ACTIONS(9134), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [80900] = 5, - ACTIONS(8643), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4242), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(4015), 19, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + [64873] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4010), 26, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [80961] = 4, - ACTIONS(9136), 1, - anon_sym_else, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5220), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 20, + ACTIONS(4183), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -569740,14 +544423,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 27, + ACTIONS(4185), 27, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -569768,13 +544451,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [81020] = 4, - ACTIONS(9138), 1, - anon_sym_LPAREN, + [64942] = 8, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + ACTIONS(8652), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4802), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4244), 21, + ACTIONS(4229), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -569796,12 +544487,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4242), 26, + ACTIONS(4231), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, @@ -569823,71 +544514,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [81079] = 5, - ACTIONS(9140), 1, - anon_sym_DOT, - STATE(5786), 1, - aux_sym_user_type_repeat1, + [65013] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4191), 44, + ACTIONS(8446), 22, + sym__string_start, anon_sym_AT, - anon_sym_typealias, - anon_sym_EQ, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(8444), 30, anon_sym_object, - anon_sym_SEMI, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81140] = 5, - ACTIONS(9136), 1, - anon_sym_else, - ACTIONS(9143), 1, - anon_sym_SEMI, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [65074] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5240), 1, + sym_function_body, + STATE(5580), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 20, + ACTIONS(4160), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -569895,7 +544596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -569908,14 +544609,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 26, + ACTIONS(4162), 26, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, sym_label, anon_sym_DOT_DOT, @@ -569935,13 +544636,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [81201] = 4, - ACTIONS(9145), 1, - anon_sym_LPAREN, + [65147] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8654), 1, + anon_sym_COLON, + STATE(4672), 1, + sym_type_constraints, + STATE(4809), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4355), 21, + ACTIONS(4216), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -569963,12 +544672,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4353), 26, + ACTIONS(4218), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, @@ -569990,77 +544699,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [81260] = 5, - ACTIONS(9147), 1, - anon_sym_DOT, - STATE(5786), 1, - aux_sym_user_type_repeat1, + [65218] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4202), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4204), 44, + ACTIONS(8658), 22, + sym__string_start, anon_sym_AT, - anon_sym_typealias, - anon_sym_EQ, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(8656), 30, anon_sym_object, - anon_sym_SEMI, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81321] = 4, - ACTIONS(9149), 1, - anon_sym_LPAREN, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [65279] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5240), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5171), 21, + ACTIONS(4160), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -570074,13 +544791,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5173), 26, + ACTIONS(4162), 27, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -570101,13 +544819,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [81380] = 4, - ACTIONS(9151), 1, - anon_sym_LPAREN, + [65348] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8660), 1, + anon_sym_COLON, + STATE(4682), 1, + sym_type_constraints, + STATE(4809), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5177), 21, + ACTIONS(4216), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -570129,12 +544855,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5179), 26, + ACTIONS(4218), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, @@ -570156,69 +544882,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [81439] = 5, - ACTIONS(8640), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4353), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(4015), 19, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + [65419] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4010), 26, - anon_sym_fun, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [81500] = 4, - ACTIONS(9153), 1, - anon_sym_LPAREN, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5220), 1, + sym_function_body, + STATE(5592), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4244), 20, + ACTIONS(4183), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -570239,13 +544919,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4242), 26, + ACTIONS(4185), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -570266,13 +544946,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [81558] = 4, - ACTIONS(9155), 1, - anon_sym_LPAREN, + [65492] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5194), 1, + sym_function_body, + STATE(5583), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5171), 20, + ACTIONS(4295), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -570293,13 +544983,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5173), 26, + ACTIONS(4297), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -570320,64 +545010,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [81616] = 18, - ACTIONS(3328), 1, + [65565] = 23, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(5293), 1, + ACTIONS(5265), 1, anon_sym_SEMI, - ACTIONS(7777), 1, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(7779), 1, + ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8753), 1, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8583), 1, + anon_sym_where, + ACTIONS(8595), 1, sym_property_modifier, - STATE(9565), 1, + ACTIONS(8662), 1, + anon_sym_EQ, + STATE(5584), 1, + sym_type_constraints, + STATE(5636), 1, + sym_property_delegate, + STATE(9322), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1828), 2, + ACTIONS(1792), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8749), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9553), 2, + STATE(9110), 2, sym_getter, sym_setter, - ACTIONS(8755), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -570388,202 +545088,202 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81702] = 18, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(5297), 1, - anon_sym_SEMI, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8753), 1, - sym_property_modifier, - STATE(9565), 1, - sym_modifiers, + [65666] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(6300), 1, + anon_sym_COLON, + STATE(4694), 1, + sym_type_constraints, + STATE(4786), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1818), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9408), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(3286), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [81788] = 20, - ACTIONS(8824), 1, + anon_sym_expect, + anon_sym_actual, sym__alpha_identifier, - ACTIONS(8826), 1, + ACTIONS(3290), 26, + sym_safe_nav, anon_sym_AT, - ACTIONS(8846), 1, - sym_property_modifier, - ACTIONS(8854), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8409), 1, - sym_modifiers, - STATE(8627), 1, - sym_simple_identifier, - STATE(9125), 1, - sym_enum_entry, + [65737] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8664), 1, + anon_sym_COLON, + STATE(4634), 1, + sym_type_constraints, + STATE(4846), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 2, + ACTIONS(4321), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - ACTIONS(8838), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8842), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8852), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8840), 3, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8848), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8850), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8844), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8836), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5833), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [81878] = 18, - ACTIONS(3328), 1, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4323), 26, + sym_safe_nav, anon_sym_AT, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8799), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(9565), 1, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [65808] = 25, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(3238), 1, + anon_sym_while, + ACTIONS(8636), 1, + anon_sym_constructor, + ACTIONS(8640), 1, + anon_sym_LPAREN, + ACTIONS(8642), 1, + anon_sym_LT, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, + anon_sym_LBRACE, + ACTIONS(8666), 1, + anon_sym_COLON, + STATE(5569), 1, + sym_type_parameters, + STATE(8449), 1, + sym_primary_constructor, + STATE(8733), 1, + sym__class_parameters, + STATE(9051), 1, + sym_type_constraints, + STATE(9529), 1, sym_modifiers, + STATE(9814), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3346), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9732), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -570594,20 +545294,28 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81964] = 4, - ACTIONS(9157), 1, - anon_sym_else, + [65913] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 19, + ACTIONS(4147), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -570620,14 +545328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 27, + ACTIONS(4149), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -570648,134 +545356,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [82022] = 18, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(5283), 1, - anon_sym_SEMI, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8753), 1, - sym_property_modifier, - STATE(9565), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1734), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9431), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [82108] = 3, + [65982] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5073), 1, + sym_function_body, + STATE(5091), 1, + sym__block, + STATE(5563), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4319), 45, - anon_sym_AT, - anon_sym_typealias, - anon_sym_EQ, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_object, + ACTIONS(4299), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_DOT, - anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82164] = 4, - ACTIONS(9159), 1, + sym__alpha_identifier, + ACTIONS(4301), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66055] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8668), 1, + anon_sym_COLON, + STATE(4972), 1, + sym_type_constraints, + STATE(5106), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5177), 20, + ACTIONS(4216), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -570796,13 +545455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5179), 26, + ACTIONS(4218), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -570823,64 +545483,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [82222] = 18, - ACTIONS(3328), 1, + [66126] = 25, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(5309), 1, - anon_sym_SEMI, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8753), 1, + ACTIONS(3226), 1, sym_property_modifier, - STATE(9565), 1, + ACTIONS(3238), 1, + anon_sym_while, + ACTIONS(8636), 1, + anon_sym_constructor, + ACTIONS(8638), 1, + anon_sym_LBRACE, + ACTIONS(8640), 1, + anon_sym_LPAREN, + ACTIONS(8642), 1, + anon_sym_LT, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8670), 1, + anon_sym_COLON, + STATE(5564), 1, + sym_type_parameters, + STATE(8448), 1, + sym_primary_constructor, + STATE(8733), 1, + sym__class_parameters, + STATE(9017), 1, + sym_type_constraints, + STATE(9529), 1, sym_modifiers, + STATE(9814), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1792), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9484), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -570891,66 +545563,19 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [82308] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4232), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4234), 45, - anon_sym_AT, - anon_sym_typealias, + [66231] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, anon_sym_EQ, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [82364] = 4, - ACTIONS(9161), 1, - anon_sym_LPAREN, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4355), 20, + ACTIONS(4147), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -570958,6 +545583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -570971,13 +545597,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4353), 26, - sym__automatic_semicolon, + ACTIONS(4149), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -570998,72 +545624,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [82422] = 3, + [66299] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4881), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4335), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4337), 45, - anon_sym_AT, - anon_sym_typealias, - anon_sym_EQ, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_object, + ACTIONS(4443), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_DOT, - anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, + anon_sym_in, anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82478] = 5, - ACTIONS(4355), 1, - anon_sym_while, - ACTIONS(9042), 1, + sym__alpha_identifier, + ACTIONS(4445), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66367] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 19, + ACTIONS(4337), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, @@ -571079,14 +545710,19 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4010), 26, - anon_sym_fun, + ACTIONS(4335), 31, + anon_sym_val, anon_sym_object, + anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, anon_sym_null, anon_sym_if, anon_sym_when, @@ -571106,117 +545742,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [82538] = 3, + [66427] = 4, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4191), 45, - anon_sym_AT, - anon_sym_typealias, + ACTIONS(4479), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4812), 22, + anon_sym_as, anon_sym_EQ, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_object, + anon_sym_LT, + anon_sym_GT, anon_sym_DOT, - anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82594] = 18, - ACTIONS(3328), 1, + sym__alpha_identifier, + ACTIONS(4814), 27, + sym_safe_nav, anon_sym_AT, - ACTIONS(5301), 1, - anon_sym_SEMI, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8753), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66489] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8676), 1, + anon_sym_COMMA, + ACTIONS(8678), 1, + anon_sym_RPAREN, + ACTIONS(8694), 1, sym_property_modifier, - STATE(9565), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, sym_modifiers, + STATE(9086), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1810), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - STATE(9457), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -571227,15 +545877,76 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [82680] = 5, - ACTIONS(9157), 1, - anon_sym_else, - ACTIONS(9163), 1, - anon_sym_SEMI, + [66589] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 19, + ACTIONS(4315), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4313), 31, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [66649] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4699), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4299), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -571243,6 +545954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -571255,14 +545968,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 26, - sym__automatic_semicolon, + ACTIONS(4301), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, sym_label, anon_sym_DOT_DOT, @@ -571282,19 +545995,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [82740] = 5, - ACTIONS(4244), 1, - anon_sym_while, - ACTIONS(9045), 1, - anon_sym_LPAREN, + [66717] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 19, + ACTIONS(4319), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, @@ -571310,14 +546020,19 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4010), 26, - anon_sym_fun, + ACTIONS(4317), 31, + anon_sym_val, anon_sym_object, + anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, anon_sym_null, anon_sym_if, anon_sym_when, @@ -571337,63 +546052,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [82800] = 18, - ACTIONS(1810), 1, - anon_sym_while, - ACTIONS(3328), 1, + [66777] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8704), 1, + anon_sym_COMMA, + ACTIONS(8706), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9008), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [66877] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8708), 1, + anon_sym_COMMA, + ACTIONS(8710), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(8935), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [66977] = 23, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(5498), 1, - anon_sym_SEMI, - ACTIONS(8753), 1, + ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8915), 1, - anon_sym_get, - ACTIONS(8917), 1, - anon_sym_set, - STATE(9692), 1, + ACTIONS(8509), 1, + anon_sym_constructor, + ACTIONS(8513), 1, + anon_sym_LPAREN, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(8712), 1, + anon_sym_COLON, + STATE(8383), 1, + sym_primary_constructor, + STATE(8563), 1, + sym__class_parameters, + STATE(8655), 1, + sym_type_constraints, + STATE(9445), 1, + sym_class_body, + STATE(9757), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, + ACTIONS(3274), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9856), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -571404,62 +546283,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [82885] = 17, - ACTIONS(3328), 1, + [67077] = 23, + ACTIONS(1792), 1, + anon_sym_while, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(7777), 1, + ACTIONS(5322), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8714), 1, + anon_sym_EQ, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8718), 1, + anon_sym_where, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(7779), 1, + ACTIONS(8722), 1, anon_sym_set, - ACTIONS(8753), 1, - sym_property_modifier, - STATE(9565), 1, + STATE(5607), 1, + sym_type_constraints, + STATE(5656), 1, + sym_property_delegate, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3346), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9732), 2, + STATE(9565), 2, sym_getter, sym_setter, - ACTIONS(8755), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -571470,62 +546360,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [82968] = 17, - ACTIONS(3328), 1, + [67177] = 23, + ACTIONS(1798), 1, + anon_sym_while, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(7777), 1, + ACTIONS(5428), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8718), 1, + anon_sym_where, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(7779), 1, + ACTIONS(8722), 1, anon_sym_set, - ACTIONS(8753), 1, - sym_property_modifier, - STATE(9565), 1, + ACTIONS(8724), 1, + anon_sym_EQ, + STATE(5609), 1, + sym_type_constraints, + STATE(5668), 1, + sym_property_delegate, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1818), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9408), 2, + STATE(9522), 2, sym_getter, sym_setter, - ACTIONS(8755), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -571536,169 +546437,150 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [83051] = 5, - ACTIONS(9147), 1, - anon_sym_DOT, - STATE(5789), 1, - aux_sym_user_type_repeat1, + [67277] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8726), 1, + anon_sym_COMMA, + ACTIONS(8728), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(8981), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4225), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(4227), 42, - anon_sym_AT, - anon_sym_typealias, - anon_sym_EQ, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_SEMI, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_while, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [83110] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4215), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4217), 43, - anon_sym_AT, - anon_sym_COLON, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_where, - anon_sym_companion, - anon_sym_object, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [83165] = 18, - ACTIONS(1818), 1, - anon_sym_while, - ACTIONS(3328), 1, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [67377] = 23, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(5414), 1, - anon_sym_SEMI, - ACTIONS(8753), 1, + ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8915), 1, - anon_sym_get, - ACTIONS(8917), 1, - anon_sym_set, - STATE(9692), 1, + ACTIONS(8509), 1, + anon_sym_constructor, + ACTIONS(8511), 1, + anon_sym_LBRACE, + ACTIONS(8513), 1, + anon_sym_LPAREN, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8730), 1, + anon_sym_COLON, + STATE(8367), 1, + sym_primary_constructor, + STATE(8563), 1, + sym__class_parameters, + STATE(8722), 1, + sym_type_constraints, + STATE(9418), 1, + sym_enum_class_body, + STATE(9757), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, + ACTIONS(3282), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9768), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -571709,25 +546591,26 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [83250] = 6, - ACTIONS(8396), 1, - anon_sym_COLON_COLON, - ACTIONS(8636), 1, + [67477] = 6, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8732), 1, anon_sym_COLON, + STATE(5172), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4221), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5038), 19, + ACTIONS(4497), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -571740,18 +546623,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5040), 23, + ACTIONS(4499), 27, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -571764,62 +546651,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [83311] = 17, - ACTIONS(3328), 1, + [67543] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8753), 1, + ACTIONS(8694), 1, sym_property_modifier, - STATE(9565), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8734), 1, + anon_sym_COMMA, + ACTIONS(8736), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, sym_modifiers, + STATE(8984), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1802), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - STATE(9500), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -571830,49 +546728,40 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [83394] = 17, - ACTIONS(3328), 1, + [67643] = 14, + ACTIONS(8738), 1, anon_sym_AT, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8753), 1, + ACTIONS(8757), 1, sym_property_modifier, - STATE(9565), 1, - sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1734), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8751), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8766), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9431), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(8760), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8763), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8754), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(8748), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, @@ -571885,7 +546774,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + ACTIONS(8741), 10, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + STATE(5499), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -571896,62 +546796,191 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [83477] = 17, - ACTIONS(3328), 1, + [67725] = 5, + ACTIONS(8769), 1, + anon_sym_by, + STATE(5127), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4505), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4507), 28, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67789] = 5, + ACTIONS(8771), 1, + anon_sym_LPAREN, + STATE(5593), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7089), 19, + sym__string_start, anon_sym_AT, - ACTIONS(7777), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7087), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_get, - ACTIONS(7779), 1, anon_sym_set, - ACTIONS(8753), 1, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [67853] = 23, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, sym_property_modifier, - STATE(9565), 1, + ACTIONS(8509), 1, + anon_sym_constructor, + ACTIONS(8511), 1, + anon_sym_LBRACE, + ACTIONS(8513), 1, + anon_sym_LPAREN, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8774), 1, + anon_sym_COLON, + STATE(8393), 1, + sym_primary_constructor, + STATE(8563), 1, + sym__class_parameters, + STATE(8653), 1, + sym_type_constraints, + STATE(9402), 1, + sym_enum_class_body, + STATE(9757), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3438), 2, + ACTIONS(3290), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8749), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9504), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -571962,129 +546991,316 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [83560] = 17, - ACTIONS(3328), 1, + [67953] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4168), 20, + sym__string_start, anon_sym_AT, - ACTIONS(7777), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4166), 31, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, anon_sym_get, - ACTIONS(7779), 1, anon_sym_set, - ACTIONS(8753), 1, - sym_property_modifier, - STATE(9565), 1, - sym_modifiers, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [68013] = 8, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + ACTIONS(8776), 1, + anon_sym_COLON, + STATE(5076), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1828), 2, + ACTIONS(4307), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4309), 26, sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACE, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [68083] = 8, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + ACTIONS(8778), 1, + anon_sym_COLON, + STATE(5091), 1, + sym__block, + STATE(5163), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4275), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9553), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, + sym__alpha_identifier, + ACTIONS(4277), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [68153] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8780), 1, + anon_sym_COLON, + STATE(5057), 1, + sym_type_constraints, + STATE(5102), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4327), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [83643] = 18, - ACTIONS(1734), 1, - anon_sym_while, - ACTIONS(3328), 1, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4329), 26, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(5442), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(8753), 1, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [68223] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8915), 1, - anon_sym_get, - ACTIONS(8917), 1, - anon_sym_set, - STATE(9692), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8782), 1, + anon_sym_COMMA, + ACTIONS(8784), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, sym_modifiers, + STATE(9072), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - STATE(9790), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -572095,15 +547311,80 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [83728] = 5, - ACTIONS(8396), 1, + [68323] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4838), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4439), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4441), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - ACTIONS(9165), 1, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [68391] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4886), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5038), 19, + ACTIONS(4447), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -572111,6 +547392,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -572123,20 +547406,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5040), 25, + ACTIONS(4449), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [68459] = 6, + ACTIONS(5788), 1, anon_sym_LBRACE, + ACTIONS(8786), 1, + anon_sym_COLON, + STATE(5093), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4349), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4351), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -572149,63 +547493,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [83787] = 18, - ACTIONS(1792), 1, + [68525] = 5, + ACTIONS(8788), 1, + anon_sym_COMMA, + STATE(5321), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4736), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, anon_sym_while, - ACTIONS(3328), 1, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4738), 27, + sym_safe_nav, anon_sym_AT, - ACTIONS(5437), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(8753), 1, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [68589] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8915), 1, - anon_sym_get, - ACTIONS(8917), 1, - anon_sym_set, - STATE(9692), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8790), 1, + anon_sym_COMMA, + ACTIONS(8792), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, sym_modifiers, + STATE(8834), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - STATE(9904), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -572216,63 +547629,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [83872] = 18, - ACTIONS(1828), 1, - anon_sym_while, - ACTIONS(3328), 1, + [68689] = 23, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(5487), 1, - anon_sym_SEMI, - ACTIONS(8753), 1, + ACTIONS(3346), 1, + anon_sym_while, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8915), 1, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8718), 1, + anon_sym_where, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(8917), 1, + ACTIONS(8722), 1, anon_sym_set, - STATE(9692), 1, + ACTIONS(8794), 1, + anon_sym_EQ, + ACTIONS(8796), 1, + anon_sym_SEMI, + STATE(5608), 1, + sym_type_constraints, + STATE(5664), 1, + sym_property_delegate, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9784), 2, + STATE(9806), 2, sym_getter, sym_setter, - ACTIONS(8755), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -572283,62 +547706,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [83957] = 17, - ACTIONS(3328), 1, + [68789] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8753), 1, + ACTIONS(8694), 1, sym_property_modifier, - STATE(9565), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8798), 1, + anon_sym_COMMA, + ACTIONS(8800), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, sym_modifiers, + STATE(8835), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1810), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - STATE(9457), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -572349,114 +547783,188 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [84040] = 3, + [68889] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(6398), 1, + anon_sym_COLON, + STATE(5049), 1, + sym_type_constraints, + STATE(5118), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4010), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4015), 43, + ACTIONS(3278), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3282), 26, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - anon_sym_COLON, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LT, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [68959] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, anon_sym_where, - anon_sym_companion, - anon_sym_object, + ACTIONS(8802), 1, + anon_sym_COLON, + STATE(4999), 1, + sym_type_constraints, + STATE(5231), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4321), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [84095] = 17, - ACTIONS(3328), 1, + sym__alpha_identifier, + ACTIONS(4323), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [69029] = 14, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(7777), 1, - anon_sym_get, - ACTIONS(7779), 1, - anon_sym_set, - ACTIONS(8753), 1, + ACTIONS(8808), 1, sym_property_modifier, - STATE(9565), 1, - sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1792), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8749), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + ACTIONS(8806), 2, + anon_sym_val, + anon_sym_var, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9484), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + ACTIONS(8804), 10, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + STATE(5499), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -572467,15 +547975,21 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [84178] = 5, - ACTIONS(8396), 1, - anon_sym_COLON_COLON, - ACTIONS(9167), 1, - anon_sym_EQ, + [69111] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(6384), 1, + anon_sym_COLON, + STATE(5029), 1, + sym_type_constraints, + STATE(5118), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5038), 19, + ACTIONS(3278), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -572483,6 +547997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -572495,20 +548010,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5040), 25, + ACTIONS(3282), 26, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -572521,63 +548037,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [84237] = 18, - ACTIONS(3328), 1, + [69181] = 23, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(3346), 1, + ACTIONS(3360), 1, anon_sym_while, - ACTIONS(8753), 1, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8915), 1, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8718), 1, + anon_sym_where, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(8917), 1, + ACTIONS(8722), 1, anon_sym_set, - ACTIONS(8958), 1, + ACTIONS(8810), 1, + anon_sym_EQ, + ACTIONS(8812), 1, anon_sym_SEMI, - STATE(9692), 1, + STATE(5612), 1, + sym_type_constraints, + STATE(5655), 1, + sym_property_delegate, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9819), 2, + STATE(9870), 2, sym_getter, sym_setter, - ACTIONS(8755), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -572588,61 +548114,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [84322] = 17, - ACTIONS(3328), 1, + [69281] = 23, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(3346), 1, - anon_sym_while, - ACTIONS(8753), 1, + ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8915), 1, - anon_sym_get, - ACTIONS(8917), 1, - anon_sym_set, - STATE(9692), 1, + ACTIONS(8509), 1, + anon_sym_constructor, + ACTIONS(8513), 1, + anon_sym_LPAREN, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(8814), 1, + anon_sym_COLON, + STATE(8399), 1, + sym_primary_constructor, + STATE(8563), 1, + sym__class_parameters, + STATE(8719), 1, + sym_type_constraints, + STATE(9418), 1, + sym_class_body, + STATE(9757), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, + ACTIONS(3282), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9819), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -572653,57 +548191,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [84404] = 13, - ACTIONS(8826), 1, + [69381] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8897), 1, - sym__backtick_identifier, - ACTIONS(9169), 1, + ACTIONS(8694), 1, sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8816), 1, + anon_sym_COMMA, + ACTIONS(8818), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9060), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8838), 2, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8842), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - STATE(6031), 2, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8848), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8850), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8844), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8836), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - ACTIONS(8899), 10, - anon_sym_val, - anon_sym_var, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - STATE(5838), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -572714,61 +548268,135 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [84478] = 17, - ACTIONS(1792), 1, + [69481] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8820), 1, + anon_sym_COLON, + STATE(4972), 1, + sym_type_constraints, + STATE(5106), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4218), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [69551] = 23, + ACTIONS(1804), 1, anon_sym_while, - ACTIONS(3328), 1, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8753), 1, + ACTIONS(5405), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8915), 1, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8718), 1, + anon_sym_where, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(8917), 1, + ACTIONS(8722), 1, anon_sym_set, - STATE(9692), 1, + ACTIONS(8822), 1, + anon_sym_EQ, + STATE(5621), 1, + sym_type_constraints, + STATE(5669), 1, + sym_property_delegate, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9904), 2, + STATE(9599), 2, sym_getter, sym_setter, - ACTIONS(8755), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -572779,191 +548407,914 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [84560] = 17, - ACTIONS(1734), 1, + [69651] = 5, + ACTIONS(8788), 1, + anon_sym_COMMA, + STATE(5511), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4684), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, anon_sym_while, - ACTIONS(3328), 1, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4686), 27, + sym_safe_nav, anon_sym_AT, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8915), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [69715] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4763), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4307), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, - ACTIONS(8917), 1, anon_sym_set, - STATE(9692), 1, - sym_modifiers, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4309), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [69783] = 8, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + ACTIONS(8824), 1, + anon_sym_COLON, + STATE(5090), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(4229), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9790), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, + sym__alpha_identifier, + ACTIONS(4231), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [69853] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4871), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4137), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [84642] = 17, - ACTIONS(3328), 1, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4139), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [69921] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8826), 1, + anon_sym_COLON, + STATE(4979), 1, + sym_type_constraints, + STATE(5106), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4218), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [69991] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(6376), 1, + anon_sym_COLON, + STATE(5030), 1, + sym_type_constraints, + STATE(5175), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3270), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3274), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70061] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(6372), 1, + anon_sym_COLON, + STATE(4981), 1, + sym_type_constraints, + STATE(5246), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3286), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3290), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70131] = 4, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4453), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(5020), 22, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5022), 27, + sym_safe_nav, anon_sym_AT, - ACTIONS(3438), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70193] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4160), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, anon_sym_while, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8915), 1, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4162), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70261] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4183), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, - ACTIONS(8917), 1, anon_sym_set, - STATE(9692), 1, - sym_modifiers, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4185), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70329] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(4295), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9924), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, + sym__alpha_identifier, + ACTIONS(4297), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70397] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7193), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7191), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [84724] = 17, - ACTIONS(1818), 1, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [70456] = 5, + ACTIONS(4259), 1, anon_sym_while, - ACTIONS(3328), 1, + ACTIONS(8828), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4004), 22, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4009), 26, + sym_safe_nav, anon_sym_AT, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8915), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70519] = 6, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8831), 1, + anon_sym_COLON, + STATE(4774), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4497), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, - ACTIONS(8917), 1, anon_sym_set, - STATE(9692), 1, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4499), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70584] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8833), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - STATE(9768), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -572974,188 +549325,129 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [84806] = 14, - ACTIONS(8861), 1, - sym__backtick_identifier, - ACTIONS(9171), 1, - anon_sym_AT, - ACTIONS(9186), 1, - sym_property_modifier, + [70681] = 5, + ACTIONS(8835), 1, + anon_sym_COMMA, + STATE(5539), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9180), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(9195), 2, - anon_sym_expect, - anon_sym_actual, - STATE(6031), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9189), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(9192), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(9183), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8863), 5, - anon_sym_val, - anon_sym_var, + ACTIONS(4633), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__alpha_identifier, - ACTIONS(9177), 5, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(9174), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5838), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [84882] = 17, - ACTIONS(1802), 1, - anon_sym_while, - ACTIONS(3328), 1, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4635), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70744] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8753), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8915), 1, - anon_sym_get, - ACTIONS(8917), 1, - anon_sym_set, - STATE(9692), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8838), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - STATE(9920), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8757), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8751), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5781), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [84964] = 17, - ACTIONS(1810), 1, - anon_sym_while, - ACTIONS(3328), 1, - anon_sym_AT, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8915), 1, - anon_sym_get, - ACTIONS(8917), 1, - anon_sym_set, - STATE(9692), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8749), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8759), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5941), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9856), 2, - sym_getter, - sym_setter, - ACTIONS(8755), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -573166,61 +549458,70 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [85046] = 17, - ACTIONS(1828), 1, - anon_sym_while, - ACTIONS(3328), 1, + [70841] = 21, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8753), 1, - sym_property_modifier, - ACTIONS(8915), 1, + ACTIONS(5265), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(8917), 1, + ACTIONS(7647), 1, anon_sym_set, - STATE(9692), 1, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8662), 1, + anon_sym_EQ, + STATE(5636), 1, + sym_property_delegate, + STATE(9322), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8749), 2, + ACTIONS(1792), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8759), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5941), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9784), 2, + STATE(9110), 2, sym_getter, sym_setter, - ACTIONS(8755), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8757), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8751), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8747), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8745), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5781), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -573231,3200 +549532,4078 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [85128] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4010), 2, - anon_sym_DOT, - sym_property_modifier, - ACTIONS(4015), 41, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_RBRACE, + [70936] = 5, + ACTIONS(4281), 1, + anon_sym_while, + ACTIONS(8840), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_LT, - anon_sym_where, - anon_sym_AMP, - sym__quest, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [85180] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 9, - anon_sym_AT, - anon_sym_COLON, + ACTIONS(4004), 22, + anon_sym_as, anon_sym_EQ, - anon_sym_LPAREN, anon_sym_LT, + anon_sym_GT, anon_sym_DOT, - anon_sym_SEMI, - sym__quest, - sym__backtick_identifier, - ACTIONS(4010), 34, - anon_sym_val, - anon_sym_var, - anon_sym_by, - anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85232] = 3, + ACTIONS(4009), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70999] = 5, + ACTIONS(8843), 1, + anon_sym_COMMA, + STATE(5539), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 9, - anon_sym_AT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LPAREN, + ACTIONS(4736), 21, + anon_sym_as, anon_sym_LT, - anon_sym_DOT, - anon_sym_SEMI, - sym__quest, - sym__backtick_identifier, - ACTIONS(4215), 34, - anon_sym_val, - anon_sym_var, - anon_sym_by, + anon_sym_GT, anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85284] = 4, - ACTIONS(9198), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4010), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4015), 39, + ACTIONS(4738), 27, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_companion, - anon_sym_object, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [85338] = 5, - ACTIONS(9200), 1, - anon_sym_LT, - STATE(5872), 1, - sym_type_arguments, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [71062] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8845), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4177), 3, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(4179), 38, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LPAREN, - anon_sym_companion, - anon_sym_object, - anon_sym_DOT, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - [85394] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4215), 2, - anon_sym_DOT, - sym_property_modifier, - ACTIONS(4217), 41, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_LT, - anon_sym_where, - anon_sym_AMP, - sym__quest, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [85446] = 4, - ACTIONS(9202), 1, - anon_sym_LT, - STATE(5871), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4179), 41, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [85500] = 8, - ACTIONS(4177), 1, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [71159] = 22, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9204), 1, - anon_sym_COLON, - STATE(6730), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4179), 4, - anon_sym_LPAREN, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4221), 5, - sym__automatic_semicolon, + ACTIONS(8674), 1, anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(4219), 30, - anon_sym_by, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, + ACTIONS(8694), 1, sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [85562] = 5, - ACTIONS(9206), 1, - anon_sym_DOT, - STATE(5850), 1, - aux_sym_user_type_repeat1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8847), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(4191), 37, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LPAREN, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - [85617] = 5, - ACTIONS(9209), 1, - anon_sym_DOT, - STATE(5850), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4202), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4204), 37, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LPAREN, - anon_sym_companion, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [85672] = 8, - ACTIONS(4177), 1, - sym__alpha_identifier, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9211), 1, - anon_sym_COLON, - STATE(6730), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4221), 3, - anon_sym_AT, - anon_sym_EQ, - anon_sym_SEMI, - ACTIONS(4179), 4, - anon_sym_LPAREN, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4219), 31, - anon_sym_by, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [85733] = 5, - ACTIONS(9209), 1, - anon_sym_DOT, - STATE(5851), 1, - aux_sym_user_type_repeat1, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [71256] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5167), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4225), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4227), 37, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LPAREN, - anon_sym_companion, - anon_sym_object, + ACTIONS(4447), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85788] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4015), 11, + sym__alpha_identifier, + ACTIONS(4449), 26, sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, anon_sym_SEMI, - sym__quest, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4010), 31, - anon_sym_by, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [85839] = 3, + [71323] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 11, - sym__automatic_semicolon, + ACTIONS(5185), 20, + sym__string_start, anon_sym_AT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - anon_sym_SEMI, - sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4215), 31, - anon_sym_by, - anon_sym_where, + ACTIONS(5183), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - [85890] = 3, + [71382] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5140), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4335), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4337), 38, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LPAREN, - anon_sym_companion, - anon_sym_object, + ACTIONS(4443), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85940] = 27, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9213), 1, + ACTIONS(4445), 26, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(9215), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(9217), 1, - anon_sym_COMMA, - ACTIONS(9219), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(7591), 1, - sym_annotation, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(8621), 1, - sym_simple_identifier, - STATE(9148), 1, - sym_parameter, - STATE(9280), 1, - sym__function_value_parameter, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [71449] = 21, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5261), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8609), 1, + anon_sym_EQ, + STATE(5633), 1, + sym_property_delegate, + STATE(9322), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7456), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7464), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - STATE(7562), 2, + ACTIONS(1798), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - ACTIONS(9221), 3, + STATE(9460), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(10104), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [86038] = 3, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [71544] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8849), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4232), 3, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(4234), 38, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LPAREN, - anon_sym_companion, - anon_sym_object, - anon_sym_DOT, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [86088] = 2, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [71641] = 5, + ACTIONS(8843), 1, + anon_sym_COMMA, + STATE(5543), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4234), 41, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, + ACTIONS(4684), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_where, anon_sym_DOT, - anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86136] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4191), 41, + sym__alpha_identifier, + ACTIONS(4686), 27, sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_DOT, anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [71704] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5076), 1, + sym_function_body, + STATE(5091), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4307), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86184] = 4, - ACTIONS(9198), 1, - anon_sym_COLON, + sym__alpha_identifier, + ACTIONS(4309), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [71771] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8851), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4010), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(4015), 38, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_object, - anon_sym_DOT, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [86236] = 27, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9213), 1, - anon_sym_AT, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9223), 1, - anon_sym_COMMA, - ACTIONS(9225), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(7591), 1, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, sym_annotation, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(8621), 1, - sym_simple_identifier, - STATE(9148), 1, - sym_parameter, - STATE(9155), 1, - sym__function_value_parameter, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + aux_sym_modifiers_repeat1, + [71868] = 6, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8853), 1, + anon_sym_COLON, + STATE(4749), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7456), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7464), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - STATE(7562), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(10104), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4349), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [86334] = 27, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9213), 1, + ACTIONS(4351), 26, + sym_safe_nav, anon_sym_AT, - ACTIONS(9215), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(9227), 1, - anon_sym_COMMA, - ACTIONS(9229), 1, anon_sym_RPAREN, - STATE(6406), 1, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [71933] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8855), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(7591), 1, - sym_annotation, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(8621), 1, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, sym_simple_identifier, - STATE(9148), 1, - sym_parameter, - STATE(9306), 1, - sym__function_value_parameter, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7456), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7464), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - STATE(7562), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(10104), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [86432] = 27, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8684), 6, anon_sym_suspend, - ACTIONS(8824), 1, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72030] = 22, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9213), 1, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9231), 1, - anon_sym_COMMA, - ACTIONS(9233), 1, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8857), 1, anon_sym_RPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(7591), 1, - sym_annotation, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(8621), 1, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, sym_simple_identifier, - STATE(9146), 1, - sym__function_value_parameter, - STATE(9148), 1, - sym_parameter, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7456), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7464), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - STATE(7562), 2, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - ACTIONS(9221), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(10104), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8692), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72127] = 4, + ACTIONS(8769), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4505), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [86530] = 5, - ACTIONS(9235), 1, + sym__alpha_identifier, + ACTIONS(4507), 28, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - STATE(5884), 1, - sym_value_arguments, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [72188] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8859), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7246), 3, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(7248), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [86584] = 3, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72285] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8861), 1, + anon_sym_RBRACE, + ACTIONS(8863), 1, + anon_sym_SEMI, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, + sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9391), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4191), 38, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LPAREN, - anon_sym_companion, - anon_sym_object, - anon_sym_DOT, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [86634] = 2, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72384] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8865), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 41, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_LT, - anon_sym_where, - anon_sym_DOT, - anon_sym_SEMI, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [86682] = 3, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72481] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4234), 12, + ACTIONS(7173), 20, + sym__string_start, anon_sym_AT, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - sym_label, - ACTIONS(4232), 29, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7171), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86732] = 3, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [72540] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8867), 1, + anon_sym_RBRACE, + ACTIONS(8869), 1, + anon_sym_SEMI, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, + sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9434), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4337), 12, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - sym_label, - ACTIONS(4335), 29, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_while, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [86782] = 2, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72639] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5174), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 41, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, + ACTIONS(4439), 20, + anon_sym_as, anon_sym_LT, - anon_sym_where, + anon_sym_GT, anon_sym_DOT, - anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4441), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [72706] = 23, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(3282), 1, + anon_sym_while, + ACTIONS(8636), 1, + anon_sym_constructor, + ACTIONS(8638), 1, + anon_sym_LBRACE, + ACTIONS(8640), 1, + anon_sym_LPAREN, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8871), 1, + anon_sym_COLON, + STATE(8429), 1, + sym_primary_constructor, + STATE(8733), 1, + sym__class_parameters, + STATE(8941), 1, + sym_type_constraints, + STATE(9529), 1, + sym_modifiers, + STATE(9545), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7657), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7659), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7649), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5517), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72805] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [86830] = 2, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8873), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4319), 41, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_DOT, - anon_sym_SEMI, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72902] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [86878] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8875), 1, + anon_sym_RBRACE, + ACTIONS(8877), 1, + anon_sym_SEMI, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, + sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9186), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4319), 38, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LPAREN, - anon_sym_companion, - anon_sym_object, - anon_sym_DOT, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [86928] = 2, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [73001] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5141), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4337), 41, + ACTIONS(4137), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4139), 26, sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_DOT, anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [73068] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7181), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7179), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [73127] = 23, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(3282), 1, + anon_sym_while, + ACTIONS(8636), 1, + anon_sym_constructor, + ACTIONS(8640), 1, + anon_sym_LPAREN, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, + anon_sym_LBRACE, + ACTIONS(8879), 1, + anon_sym_COLON, + STATE(8433), 1, + sym_primary_constructor, + STATE(8733), 1, + sym__class_parameters, + STATE(9000), 1, + sym_type_constraints, + STATE(9529), 1, + sym_modifiers, + STATE(9545), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7657), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7659), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7649), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [86976] = 27, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9213), 1, - anon_sym_AT, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9237), 1, - anon_sym_COMMA, - ACTIONS(9239), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(7591), 1, + STATE(5517), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, sym_annotation, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(8621), 1, - sym_simple_identifier, - STATE(9083), 1, - sym__function_value_parameter, - STATE(9148), 1, - sym_parameter, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + aux_sym_modifiers_repeat1, + [73226] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7456), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7464), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - STATE(7562), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(10104), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4147), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [87074] = 27, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9213), 1, + ACTIONS(4149), 26, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(9215), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(9241), 1, - anon_sym_COMMA, - ACTIONS(9243), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(7591), 1, - sym_annotation, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(8621), 1, - sym_simple_identifier, - STATE(9148), 1, - sym_parameter, - STATE(9268), 1, - sym__function_value_parameter, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [73293] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7456), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7464), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - STATE(7562), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(10104), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(5161), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5159), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [87172] = 3, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [73352] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8881), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9245), 3, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(7926), 38, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_RBRACE, - anon_sym_init, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [87222] = 4, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(5878), 1, - aux_sym_user_type_repeat1, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [73449] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 38, - sym__automatic_semicolon, + ACTIONS(5181), 20, + sym__string_start, anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5179), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87273] = 4, - ACTIONS(9249), 1, - anon_sym_DOT, - STATE(5879), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4204), 38, - sym__automatic_semicolon, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [73508] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - anon_sym_EQ, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8883), 1, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, + ACTIONS(8885), 1, anon_sym_SEMI, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, + sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9198), 1, + sym__enum_entries, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [73607] = 21, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5247), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8595), 1, sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [87324] = 4, - ACTIONS(9251), 1, - anon_sym_DOT, - STATE(5879), 1, - aux_sym_user_type_repeat1, + ACTIONS(8887), 1, + anon_sym_EQ, + STATE(5635), 1, + sym_property_delegate, + STATE(9322), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 38, + ACTIONS(1734), 2, sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9131), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [87375] = 4, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [73702] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9254), 2, + ACTIONS(7145), 20, + sym__string_start, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4015), 6, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4017), 31, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7143), 30, anon_sym_val, - anon_sym_var, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - [87425] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9258), 1, - anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9323), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [73761] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5240), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4160), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [87515] = 3, + sym__alpha_identifier, + ACTIONS(4162), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [73828] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8889), 1, + anon_sym_RBRACE, + ACTIONS(8891), 1, + anon_sym_SEMI, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, + sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9233), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7321), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(7323), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [87563] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9258), 1, - anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9277), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [87653] = 3, + aux_sym_modifiers_repeat1, + [73927] = 4, + ACTIONS(4451), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5020), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(5022), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, + ACTIONS(5020), 22, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87701] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(5022), 27, + sym_safe_nav, anon_sym_AT, - ACTIONS(9258), 1, - anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9152), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [73988] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5220), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, - sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + sym_line_comment, + ACTIONS(4183), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [87791] = 3, + sym__alpha_identifier, + ACTIONS(4185), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [74055] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8893), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7333), 3, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(7335), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [87839] = 3, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74152] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8895), 1, + anon_sym_RBRACE, + ACTIONS(8897), 1, + anon_sym_SEMI, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, + sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9125), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7297), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(7299), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [87887] = 5, - ACTIONS(9260), 1, - anon_sym_LPAREN, - STATE(5940), 1, - sym_value_arguments, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74251] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5073), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7246), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(7248), 35, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, + ACTIONS(4299), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4301), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [74318] = 21, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5273), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8632), 1, + anon_sym_EQ, + STATE(5640), 1, + sym_property_delegate, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1804), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9265), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [87939] = 3, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74413] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7261), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(7263), 36, + ACTIONS(7189), 20, + sym__string_start, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7187), 30, + anon_sym_val, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [74472] = 23, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(3290), 1, + anon_sym_while, + ACTIONS(8636), 1, + anon_sym_constructor, + ACTIONS(8640), 1, + anon_sym_LPAREN, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, + anon_sym_LBRACE, + ACTIONS(8899), 1, + anon_sym_COLON, + STATE(8437), 1, + sym_primary_constructor, + STATE(8733), 1, + sym__class_parameters, + STATE(8903), 1, + sym_type_constraints, + STATE(9529), 1, + sym_modifiers, + STATE(9585), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7657), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7659), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7649), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, + STATE(5517), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74571] = 4, + STATE(5539), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4736), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_expect, anon_sym_actual, - [87987] = 3, + sym__alpha_identifier, + ACTIONS(4738), 28, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [74632] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8901), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9264), 3, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(9262), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [88035] = 3, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74729] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8903), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9268), 3, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(9266), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74826] = 4, + ACTIONS(4477), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4812), 22, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_expect, anon_sym_actual, - [88083] = 3, + sym__alpha_identifier, + ACTIONS(4814), 27, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [74887] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8905), 1, + anon_sym_RBRACE, + ACTIONS(8907), 1, + anon_sym_SEMI, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, + sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9298), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9272), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(9270), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [88131] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9258), 1, - anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9286), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74986] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5194), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4295), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [88221] = 4, - ACTIONS(9274), 1, - sym__quest, - STATE(5900), 1, - aux_sym_nullable_type_repeat1, + sym__alpha_identifier, + ACTIONS(4297), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [75053] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4252), 37, - sym__automatic_semicolon, + ACTIONS(5189), 20, + sym__string_start, anon_sym_AT, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5187), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [75112] = 21, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8579), 1, + anon_sym_EQ, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8585), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(5648), 1, + sym_property_delegate, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3346), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9405), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75207] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [88271] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8909), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4940), 3, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(4942), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [88319] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75304] = 22, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(9258), 1, - anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8911), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9236), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [88409] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4934), 3, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(4936), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [88457] = 3, - ACTIONS(4315), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4313), 38, - sym__automatic_semicolon, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75401] = 23, + ACTIONS(3202), 1, anon_sym_AT, - anon_sym_EQ, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(3274), 1, + anon_sym_while, + ACTIONS(8636), 1, + anon_sym_constructor, + ACTIONS(8638), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, + ACTIONS(8640), 1, + anon_sym_LPAREN, + ACTIONS(8644), 1, anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - sym__quest, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8913), 1, + anon_sym_COLON, + STATE(8403), 1, + sym_primary_constructor, + STATE(8733), 1, + sym__class_parameters, + STATE(9052), 1, + sym_type_constraints, + STATE(9529), 1, + sym_modifiers, + STATE(9819), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7657), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7659), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7649), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5517), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75500] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [88505] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8915), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9278), 3, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(9276), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [88553] = 4, - ACTIONS(9280), 1, - sym__quest, - STATE(5922), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4365), 37, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [88603] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9258), 1, - anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9114), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75597] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(5165), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5163), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [88693] = 3, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [75656] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8917), 1, + anon_sym_RBRACE, + ACTIONS(8919), 1, + anon_sym_SEMI, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, + sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9397), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4025), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(9282), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [88741] = 3, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75755] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8921), 1, + anon_sym_RBRACE, + ACTIONS(8923), 1, + anon_sym_SEMI, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, + sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9167), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9286), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(9284), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [88789] = 4, - ACTIONS(9288), 1, - anon_sym_DOT, - STATE(5789), 1, - aux_sym_user_type_repeat1, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75854] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 37, + ACTIONS(4004), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4009), 47, anon_sym_AT, + anon_sym_COLON, + anon_sym_typealias, anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, + anon_sym_LT, anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -576457,203 +553636,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88839] = 3, + [75912] = 14, + ACTIONS(8925), 1, + anon_sym_AT, + ACTIONS(8940), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4972), 3, + ACTIONS(8743), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(4974), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8934), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8949), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8943), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8946), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8937), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8931), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8928), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [88887] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9258), 1, - anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9267), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + ACTIONS(8741), 8, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + STATE(5603), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75992] = 6, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8952), 1, + anon_sym_COLON, + STATE(5172), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4497), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [88977] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(4499), 26, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(9258), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9352), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [89067] = 3, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76056] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7311), 3, + ACTIONS(4179), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(7313), 36, + ACTIONS(4181), 47, anon_sym_AT, + anon_sym_COLON, anon_sym_typealias, + anon_sym_EQ, anon_sym_class, - anon_sym_fun, anon_sym_interface, anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_LT, + anon_sym_where, anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -576671,6 +553806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, + sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -576679,822 +553815,756 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89115] = 3, + [76114] = 21, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5004), 3, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(5006), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [89163] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9258), 1, - anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9258), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + aux_sym_modifiers_repeat1, + [76208] = 21, + ACTIONS(1804), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5405), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8720), 1, anon_sym_get, + ACTIONS(8722), 1, anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [89253] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9258), 1, - anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9088), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + ACTIONS(8822), 1, + anon_sym_EQ, + STATE(5669), 1, + sym_property_delegate, + STATE(9271), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, + STATE(9599), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [89343] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(8587), 6, anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9258), 1, - anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9228), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + aux_sym_modifiers_repeat1, + [76302] = 21, + ACTIONS(1798), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5428), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8720), 1, anon_sym_get, + ACTIONS(8722), 1, anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [89433] = 4, - ACTIONS(9274), 1, - sym__quest, - STATE(5900), 1, - aux_sym_nullable_type_repeat1, + ACTIONS(8724), 1, + anon_sym_EQ, + STATE(5668), 1, + sym_property_delegate, + STATE(9271), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4329), 37, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9522), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [76396] = 21, + ACTIONS(1792), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5322), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, sym_property_modifier, + ACTIONS(8714), 1, + anon_sym_EQ, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + STATE(5656), 1, + sym_property_delegate, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9565), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [89483] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9258), 1, - anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9377), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [89573] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(8587), 6, anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [76490] = 4, + ACTIONS(8954), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9258), 1, - anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9361), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4267), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [89663] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(4265), 27, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(9258), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9096), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76550] = 5, + ACTIONS(8956), 1, + anon_sym_SEMI, + ACTIONS(8958), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4818), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [89753] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(4820), 27, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(9258), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9294), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76612] = 21, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(3346), 1, + anon_sym_while, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + ACTIONS(8794), 1, + anon_sym_EQ, + ACTIONS(8796), 1, + anon_sym_SEMI, + STATE(5664), 1, + sym_property_delegate, + STATE(9271), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, + STATE(9806), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [89843] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(8587), 6, anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [76706] = 4, + ACTIONS(8960), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9258), 1, - anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9516), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4289), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [89933] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(4287), 27, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(9258), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9343), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76766] = 4, + ACTIONS(8962), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4874), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [90023] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(4876), 27, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(9258), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9334), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76826] = 4, + ACTIONS(8964), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4892), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [90113] = 3, + sym__alpha_identifier, + ACTIONS(4894), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76886] = 21, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, + sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(9009), 1, + sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4017), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(9254), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + ACTIONS(8966), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [90161] = 4, - ACTIONS(9290), 1, - sym__quest, - STATE(5922), 1, - aux_sym_nullable_type_repeat1, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [76980] = 5, + ACTIONS(8968), 1, + anon_sym_LT, + STATE(5647), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 37, - sym__automatic_semicolon, + ACTIONS(4128), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4189), 45, anon_sym_AT, + anon_sym_typealias, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -577521,532 +554591,693 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90211] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [77042] = 21, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(9258), 1, - anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(8107), 1, + sym_modifiers, + STATE(8388), 1, sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9304), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + STATE(9009), 1, + sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - [90301] = 4, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9282), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4015), 6, - anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(8970), 2, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4025), 31, - anon_sym_val, - anon_sym_var, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [90351] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9258), 1, - anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9309), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [77136] = 6, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8972), 1, + anon_sym_COLON, + STATE(5093), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4349), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [90441] = 24, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(4351), 26, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(9258), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_STAR, - STATE(6188), 1, - sym_type_projection_modifiers, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(9319), 1, - sym_type_projection, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [77200] = 14, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(8974), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - STATE(8094), 2, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + ACTIONS(8806), 2, + anon_sym_val, + anon_sym_var, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7454), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9603), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [90531] = 3, - ACTIONS(9293), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4299), 37, - sym__automatic_semicolon, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + ACTIONS(8804), 8, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + STATE(5603), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [77280] = 21, + ACTIONS(1734), 1, + anon_sym_while, + ACTIONS(3316), 1, anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, + ACTIONS(5435), 1, anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8720), 1, anon_sym_get, + ACTIONS(8722), 1, anon_sym_set, - sym__quest, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8976), 1, + anon_sym_EQ, + STATE(5654), 1, + sym_property_delegate, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9620), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [90578] = 4, - ACTIONS(9249), 1, - anon_sym_DOT, - STATE(5878), 1, - aux_sym_user_type_repeat1, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [77374] = 4, + ACTIONS(8958), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 36, + ACTIONS(4818), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4820), 28, sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_by, - anon_sym_where, anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [77434] = 4, + ACTIONS(8978), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4874), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90627] = 3, - ACTIONS(9295), 1, - anon_sym_AMP, + sym__alpha_identifier, + ACTIONS(4876), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [77493] = 4, + ACTIONS(8980), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 37, - sym__automatic_semicolon, + ACTIONS(4289), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4287), 26, + sym_safe_nav, anon_sym_AT, - anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [77552] = 4, + ACTIONS(8982), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4818), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_while, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90674] = 4, - ACTIONS(9297), 1, - sym__quest, - STATE(5937), 1, - aux_sym_nullable_type_repeat1, + sym__alpha_identifier, + ACTIONS(4820), 27, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [77611] = 4, + ACTIONS(8984), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4329), 35, - anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + ACTIONS(4892), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90722] = 4, - ACTIONS(9299), 1, - sym__quest, - STATE(5931), 1, - aux_sym_nullable_type_repeat1, + sym__alpha_identifier, + ACTIONS(4894), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [77670] = 5, + ACTIONS(8982), 1, + anon_sym_else, + ACTIONS(8986), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 35, - anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + ACTIONS(4818), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90770] = 4, - ACTIONS(9198), 1, - anon_sym_COLON, + sym__alpha_identifier, + ACTIONS(4820), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [77731] = 4, + ACTIONS(8988), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 5, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4267), 21, + anon_sym_as, anon_sym_LT, + anon_sym_GT, anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4010), 31, - anon_sym_val, - anon_sym_var, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90818] = 3, + ACTIONS(4265), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [77790] = 5, + ACTIONS(8990), 1, + anon_sym_DOT, + STATE(5629), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4934), 2, + ACTIONS(4166), 2, anon_sym_val, anon_sym_var, - ACTIONS(4936), 35, + ACTIONS(4168), 44, anon_sym_AT, anon_sym_typealias, + anon_sym_EQ, anon_sym_class, - anon_sym_fun, anon_sym_interface, anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, anon_sym_object, + anon_sym_fun, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -578073,23 +555304,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90864] = 3, + [77851] = 5, + ACTIONS(8993), 1, + anon_sym_DOT, + STATE(5629), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7333), 2, + ACTIONS(4153), 2, anon_sym_val, anon_sym_var, - ACTIONS(7335), 35, + ACTIONS(4155), 44, anon_sym_AT, anon_sym_typealias, + anon_sym_EQ, anon_sym_class, - anon_sym_fun, anon_sym_interface, anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, anon_sym_object, + anon_sym_fun, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -578116,281 +555360,472 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90910] = 2, + [77912] = 5, + ACTIONS(8491), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4329), 37, + ACTIONS(4287), 2, sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4009), 19, + sym__string_start, anon_sym_AT, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4004), 26, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90954] = 3, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [77973] = 5, + ACTIONS(8486), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7297), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(7299), 35, + ACTIONS(4265), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4009), 19, + sym__string_start, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4004), 26, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [78034] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5265), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1792), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9110), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78120] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8585), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3346), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9405), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [91000] = 4, - ACTIONS(9302), 1, - sym__quest, - STATE(5931), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4365), 35, - anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_while, - anon_sym_suspend, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78206] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5257), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1810), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9150), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [91048] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5004), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(5006), 35, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78292] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5273), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1804), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9265), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [91094] = 3, - ACTIONS(4315), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4313), 36, - anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - sym__quest, - anon_sym_while, - anon_sym_suspend, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [91140] = 3, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78378] = 5, + ACTIONS(4267), 1, + anon_sym_while, + ACTIONS(8828), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5020), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(5022), 35, + ACTIONS(4009), 19, + sym__string_start, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4004), 26, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91186] = 3, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [78438] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7261), 2, + ACTIONS(4313), 2, anon_sym_val, anon_sym_var, - ACTIONS(7263), 35, + ACTIONS(4315), 45, anon_sym_AT, anon_sym_typealias, + anon_sym_EQ, anon_sym_class, - anon_sym_fun, anon_sym_interface, anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -578417,106 +555852,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91232] = 3, + [78494] = 5, + ACTIONS(4289), 1, + anon_sym_while, + ACTIONS(8840), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4017), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(9254), 35, + ACTIONS(4009), 19, + sym__string_start, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4004), 26, anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [78554] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5247), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1734), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9131), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [91278] = 2, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78640] = 4, + ACTIONS(8995), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4733), 37, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + ACTIONS(4267), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91322] = 3, - ACTIONS(9304), 1, - anon_sym_AMP, + sym__alpha_identifier, + ACTIONS(4265), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [78698] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 36, + ACTIONS(4317), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4319), 45, anon_sym_AT, + anon_sym_typealias, anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, sym__quest, anon_sym_while, anon_sym_suspend, @@ -578545,152 +556082,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91368] = 4, - ACTIONS(9297), 1, - sym__quest, - STATE(5937), 1, - aux_sym_nullable_type_repeat1, + [78754] = 4, + ACTIONS(8997), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4252), 35, + ACTIONS(4289), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4287), 26, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [78812] = 4, + ACTIONS(8999), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4874), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91416] = 3, + sym__alpha_identifier, + ACTIONS(4876), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [78870] = 4, + ACTIONS(9001), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7311), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(7313), 35, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, + ACTIONS(4818), 19, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91462] = 3, + sym__alpha_identifier, + ACTIONS(4820), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [78928] = 5, + ACTIONS(9001), 1, + anon_sym_else, + ACTIONS(9003), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9286), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(9284), 35, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, + ACTIONS(4818), 19, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91508] = 2, + sym__alpha_identifier, + ACTIONS(4820), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [78988] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4769), 37, - sym__automatic_semicolon, + ACTIONS(4335), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4337), 45, anon_sym_AT, + anon_sym_typealias, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -578717,65 +556352,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91552] = 2, + [79044] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5261), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(9322), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4750), 37, + ACTIONS(1798), 2, sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9460), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [91596] = 3, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [79130] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4025), 2, + ACTIONS(4166), 2, anon_sym_val, anon_sym_var, - ACTIONS(9282), 35, + ACTIONS(4168), 45, anon_sym_AT, anon_sym_typealias, + anon_sym_EQ, anon_sym_class, - anon_sym_fun, anon_sym_interface, anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -578802,66 +556473,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91642] = 3, + [79186] = 20, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, + sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(9009), 1, + sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4940), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4942), 35, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [79276] = 4, + ACTIONS(9005), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4892), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4894), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [79334] = 17, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1804), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9265), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [91688] = 3, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [79417] = 5, + ACTIONS(8993), 1, + anon_sym_DOT, + STATE(5630), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4972), 2, + ACTIONS(4193), 2, anon_sym_val, anon_sym_var, - ACTIONS(4974), 35, + ACTIONS(4195), 42, anon_sym_AT, anon_sym_typealias, + anon_sym_EQ, anon_sym_class, - anon_sym_fun, anon_sym_interface, anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, anon_sym_object, + anon_sym_fun, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -578888,109 +556717,432 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91734] = 3, - ACTIONS(9306), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4299), 36, + [79476] = 18, + ACTIONS(1810), 1, + anon_sym_while, + ACTIONS(3316), 1, anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, + ACTIONS(5393), 1, anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8720), 1, anon_sym_get, + ACTIONS(8722), 1, anon_sym_set, - sym__quest, - anon_sym_while, - anon_sym_suspend, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9634), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [79561] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(3346), 1, + anon_sym_while, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + ACTIONS(8796), 1, + anon_sym_SEMI, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9806), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [79646] = 18, + ACTIONS(1804), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5405), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, sym_property_modifier, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9599), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [91780] = 2, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [79731] = 17, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(9322), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4778), 37, + ACTIONS(1816), 2, sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9156), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [79814] = 17, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3422), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9160), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [79897] = 17, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3346), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9405), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [91824] = 5, - ACTIONS(9308), 1, - anon_sym_LT, - STATE(5989), 1, - sym_type_arguments, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [79980] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 4, + ACTIONS(4004), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4009), 43, anon_sym_AT, + anon_sym_COLON, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_LT, + anon_sym_where, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4177), 31, - anon_sym_val, - anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -579008,7 +557160,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -579017,66 +557168,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [91874] = 2, + [80035] = 17, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(9322), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4728), 37, + ACTIONS(1734), 2, sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9131), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80118] = 17, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1798), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9460), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [91918] = 3, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80201] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9264), 2, + ACTIONS(4179), 3, anon_sym_val, anon_sym_var, - ACTIONS(9262), 35, + sym_property_modifier, + ACTIONS(4181), 43, anon_sym_AT, + anon_sym_COLON, anon_sym_typealias, anon_sym_class, - anon_sym_fun, anon_sym_interface, anon_sym_enum, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_where, + anon_sym_companion, anon_sym_object, + anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -579094,7 +557344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -579103,744 +557352,1167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91964] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9268), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(9266), 35, + [80256] = 18, + ACTIONS(1798), 1, + anon_sym_while, + ACTIONS(3316), 1, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, + ACTIONS(5428), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8720), 1, anon_sym_get, + ACTIONS(8722), 1, anon_sym_set, - anon_sym_suspend, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9522), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80341] = 17, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1810), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9150), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80424] = 17, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1792), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9110), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [92010] = 3, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80507] = 6, + ACTIONS(8313), 1, + anon_sym_COLON_COLON, + ACTIONS(8494), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7321), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(7323), 35, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, + ACTIONS(4124), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5024), 19, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5026), 23, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [80568] = 18, + ACTIONS(1792), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5322), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9565), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80653] = 18, + ACTIONS(1734), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5435), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, sym_property_modifier, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9620), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80738] = 5, + ACTIONS(8313), 1, + anon_sym_COLON_COLON, + ACTIONS(9007), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5024), 19, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_expect, anon_sym_actual, - [92056] = 3, + sym__alpha_identifier, + ACTIONS(5026), 25, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [80797] = 5, + ACTIONS(8313), 1, + anon_sym_COLON_COLON, + ACTIONS(9009), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9272), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(9270), 35, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, + ACTIONS(5024), 19, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5026), 25, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [80856] = 17, + ACTIONS(1792), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9565), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [92102] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9278), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(9276), 35, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_fun, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80938] = 17, + ACTIONS(1798), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(8595), 1, sym_property_modifier, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9522), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [92148] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4669), 37, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81020] = 17, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(3422), 1, + anon_sym_while, + ACTIONS(8595), 1, sym_property_modifier, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9660), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [92192] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4683), 37, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81102] = 13, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8804), 1, + sym__backtick_identifier, + ACTIONS(9011), 1, sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [92236] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4589), 37, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [92280] = 5, - ACTIONS(9310), 1, - anon_sym_DOT, - STATE(5970), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4227), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4225), 31, - anon_sym_val, - anon_sym_var, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [92329] = 5, - ACTIONS(9312), 1, - anon_sym_DOT, - STATE(5966), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4191), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4189), 31, + ACTIONS(8806), 10, anon_sym_val, anon_sym_var, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92378] = 3, - ACTIONS(9204), 1, - anon_sym_COLON, + STATE(5676), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81176] = 14, + ACTIONS(8741), 1, + sym__backtick_identifier, + ACTIONS(9013), 1, + anon_sym_AT, + ACTIONS(9028), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4221), 35, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(9022), 2, anon_sym_override, anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, + ACTIONS(9037), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9031), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(9034), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [92423] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4720), 36, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_SEMI, + ACTIONS(9025), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8743), 5, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, - anon_sym_suspend, + sym__alpha_identifier, + ACTIONS(9019), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, + ACTIONS(9016), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5676), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81252] = 17, + ACTIONS(1810), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(8595), 1, sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [92466] = 2, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + STATE(9271), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4738), 36, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9634), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [92509] = 5, - ACTIONS(9310), 1, - anon_sym_DOT, - STATE(5966), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4204), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4202), 31, - anon_sym_val, - anon_sym_var, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81334] = 17, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(3346), 1, + anon_sym_while, + ACTIONS(8595), 1, sym_property_modifier, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9806), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [92558] = 4, - ACTIONS(9315), 1, - anon_sym_COMMA, - STATE(5973), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4543), 34, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_by, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81416] = 17, + ACTIONS(1816), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(8595), 1, sym_property_modifier, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9655), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [92605] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4497), 36, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81498] = 17, + ACTIONS(1804), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(8595), 1, sym_property_modifier, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9599), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [92648] = 4, - ACTIONS(9315), 1, - anon_sym_COMMA, - STATE(5974), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4508), 34, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_by, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81580] = 17, + ACTIONS(1734), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(8595), 1, sym_property_modifier, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9620), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [92695] = 4, - ACTIONS(9317), 1, - anon_sym_COMMA, - STATE(5974), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4497), 34, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_by, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, + ACTIONS(8587), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [92742] = 3, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81662] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4234), 4, + ACTIONS(4009), 9, anon_sym_AT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LPAREN, + anon_sym_LT, anon_sym_DOT, + anon_sym_SEMI, + sym__quest, sym__backtick_identifier, - ACTIONS(4232), 31, + ACTIONS(4004), 34, anon_sym_val, anon_sym_var, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -579868,23 +558540,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92786] = 5, - ACTIONS(9320), 1, - anon_sym_LT, - STATE(6022), 1, - sym_type_arguments, + [81714] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 5, + ACTIONS(4179), 2, + anon_sym_DOT, + sym_property_modifier, + ACTIONS(4181), 41, + sym__automatic_semicolon, anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_as, + anon_sym_EQ, + anon_sym_constructor, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_DOT, - sym_label, - ACTIONS(4177), 28, - anon_sym_get, - anon_sym_set, + anon_sym_COMMA, + anon_sym_by, + anon_sym_LT, + anon_sym_where, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -579902,7 +558581,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -579911,18 +558589,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [92834] = 3, + [81766] = 5, + ACTIONS(9040), 1, + anon_sym_LT, + STATE(5709), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4337), 4, + ACTIONS(4128), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4189), 38, anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4335), 31, - anon_sym_val, - anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -579942,7 +558632,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -579951,23 +558640,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [92878] = 4, - ACTIONS(9198), 1, - anon_sym_COLON, + [81822] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 6, + ACTIONS(4004), 2, + anon_sym_DOT, + sym_property_modifier, + ACTIONS(4009), 41, + sym__automatic_semicolon, anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_as, + anon_sym_EQ, + anon_sym_constructor, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, anon_sym_LT, - anon_sym_DOT, - sym_label, - ACTIONS(4010), 28, - anon_sym_get, - anon_sym_set, + anon_sym_where, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -579985,7 +558681,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -579994,21 +558689,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [92924] = 3, - ACTIONS(9211), 1, - anon_sym_COLON, + [81874] = 4, + ACTIONS(9042), 1, + anon_sym_LT, + STATE(5704), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4221), 34, + ACTIONS(4189), 41, + sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_by, anon_sym_where, + anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -580035,20 +558739,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [92968] = 2, + [81928] = 8, + ACTIONS(4128), 1, + sym__alpha_identifier, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9044), 1, + anon_sym_COLON, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4329), 35, + ACTIONS(4189), 4, + anon_sym_LPAREN, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4124), 5, + sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4122), 30, anon_sym_by, anon_sym_where, - anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -580075,20 +558793,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93010] = 2, + [81990] = 4, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4669), 35, + ACTIONS(4004), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4009), 39, anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -580106,7 +558835,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -580115,17 +558843,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93052] = 2, + [82044] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4738), 35, + ACTIONS(4181), 9, anon_sym_AT, + anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_by, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, anon_sym_SEMI, + sym__quest, + sym__backtick_identifier, + ACTIONS(4179), 34, + anon_sym_val, + anon_sym_var, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_while, @@ -580155,17 +558891,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93094] = 2, + sym__alpha_identifier, + [82096] = 8, + ACTIONS(4128), 1, + sym__alpha_identifier, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9048), 1, + anon_sym_COLON, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4589), 35, + ACTIONS(4124), 3, anon_sym_AT, anon_sym_EQ, - anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4189), 4, + anon_sym_LPAREN, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4122), 31, anon_sym_by, anon_sym_where, - anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_while, @@ -580195,20 +558945,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93136] = 2, + [82157] = 5, + ACTIONS(9050), 1, + anon_sym_DOT, + STATE(5691), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4720), 35, + ACTIONS(4166), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4168), 37, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -580226,7 +558987,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -580235,20 +558995,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93178] = 2, + [82212] = 5, + ACTIONS(9053), 1, + anon_sym_DOT, + STATE(5695), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4497), 35, + ACTIONS(4193), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4195), 37, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -580266,7 +559037,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -580275,20 +559045,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93220] = 2, + [82267] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4683), 35, + ACTIONS(4181), 11, + sym__automatic_semicolon, anon_sym_AT, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + anon_sym_SEMI, + sym__quest, + sym__backtick_identifier, + ACTIONS(4179), 31, anon_sym_by, anon_sym_where, - anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -580315,20 +559092,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93262] = 2, + sym__alpha_identifier, + [82318] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4728), 35, + ACTIONS(4009), 11, + sym__automatic_semicolon, anon_sym_AT, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + anon_sym_SEMI, + sym__quest, + sym__backtick_identifier, + ACTIONS(4004), 31, anon_sym_by, anon_sym_where, - anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -580355,18 +559140,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93304] = 3, + sym__alpha_identifier, + [82369] = 5, + ACTIONS(9053), 1, + anon_sym_DOT, + STATE(5691), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4189), 31, + ACTIONS(4153), 3, anon_sym_val, anon_sym_var, + sym_property_modifier, + ACTIONS(4155), 37, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -580386,7 +559183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -580395,19 +559191,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [93348] = 3, + [82424] = 4, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4319), 4, + ACTIONS(4004), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4009), 38, anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, anon_sym_LPAREN, + anon_sym_LT, + anon_sym_object, + anon_sym_fun, anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4317), 31, - anon_sym_val, - anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -580436,101 +559239,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [82476] = 27, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [93392] = 2, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9055), 1, + anon_sym_AT, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9059), 1, + anon_sym_COMMA, + ACTIONS(9061), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7311), 1, + sym_annotation, + STATE(8005), 1, + sym_parameter_modifiers, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8343), 1, + sym_simple_identifier, + STATE(8805), 1, + sym__function_value_parameter, + STATE(8883), 1, + sym_parameter, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4782), 35, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, + STATE(7213), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7223), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7284), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [93434] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4733), 35, - anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + STATE(9742), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93476] = 2, + [82574] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4750), 35, + ACTIONS(9065), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7732), 38, anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_RBRACE, + anon_sym_init, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -580548,7 +559349,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -580557,20 +559357,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93518] = 2, + [82624] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4769), 35, + ACTIONS(4315), 41, + sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, anon_sym_where, + anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -580597,17 +559403,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93560] = 2, + [82672] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4778), 35, + ACTIONS(4315), 12, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym_label, + ACTIONS(4313), 29, anon_sym_get, anon_sym_set, anon_sym_while, @@ -580637,22 +559450,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93602] = 4, - ACTIONS(9322), 1, - anon_sym_COMMA, - STATE(5996), 1, - aux_sym_type_constraints_repeat1, + [82722] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4543), 33, + ACTIONS(4181), 41, + sym__automatic_semicolon, anon_sym_AT, + anon_sym_COLON, anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_by, + anon_sym_LT, + anon_sym_where, + anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -580679,60 +559496,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93648] = 4, - ACTIONS(9322), 1, + [82770] = 27, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9055), 1, + anon_sym_AT, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9067), 1, anon_sym_COMMA, - STATE(5999), 1, - aux_sym_type_constraints_repeat1, + ACTIONS(9069), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7311), 1, + sym_annotation, + STATE(8005), 1, + sym_parameter_modifiers, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8343), 1, + sym_simple_identifier, + STATE(8829), 1, + sym__function_value_parameter, + STATE(8883), 1, + sym_parameter, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4508), 33, - anon_sym_AT, - anon_sym_EQ, - anon_sym_by, - anon_sym_SEMI, + STATE(7213), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7223), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7284), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9742), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93694] = 2, + [82868] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4802), 35, - sym__automatic_semicolon, + ACTIONS(4317), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4319), 38, anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -580752,7 +559606,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -580761,20 +559614,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93736] = 2, + [82918] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4649), 35, + ACTIONS(4337), 41, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_by, anon_sym_where, + anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -580801,22 +559660,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93778] = 4, - ACTIONS(9324), 1, - anon_sym_COMMA, - STATE(5999), 1, - aux_sym_type_constraints_repeat1, + [82966] = 5, + ACTIONS(9071), 1, + anon_sym_LPAREN, + STATE(5750), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4497), 33, + ACTIONS(7087), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7089), 36, anon_sym_AT, - anon_sym_EQ, - anon_sym_by, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -580834,7 +559701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -580843,20 +559709,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93824] = 5, - ACTIONS(9327), 1, - anon_sym_LPAREN, - STATE(6035), 1, - sym_value_arguments, + [83020] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7248), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7246), 31, + ACTIONS(4166), 3, anon_sym_val, anon_sym_var, + sym_property_modifier, + ACTIONS(4168), 38, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -580876,7 +559748,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -580885,22 +559756,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [93872] = 3, - ACTIONS(4473), 1, - sym_property_modifier, + [83070] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4475), 33, - sym__automatic_semicolon, + ACTIONS(4313), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4315), 38, anon_sym_AT, - anon_sym_COLON, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_where, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -580926,19 +559803,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93915] = 2, + [83120] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4649), 34, + ACTIONS(4168), 41, + sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_by, anon_sym_where, + anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -580965,20 +559849,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93956] = 5, - ACTIONS(9329), 1, - anon_sym_DOT, - STATE(6003), 1, - aux_sym_user_type_repeat1, + [83168] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 4, + ACTIONS(4335), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4337), 38, anon_sym_AT, - anon_sym_LBRACE, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, anon_sym_LPAREN, - sym_label, - ACTIONS(4189), 28, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -580998,7 +559888,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -581007,60 +559896,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [94003] = 3, + [83218] = 27, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9055), 1, + anon_sym_AT, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9073), 1, + anon_sym_COMMA, + ACTIONS(9075), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7311), 1, + sym_annotation, + STATE(8005), 1, + sym_parameter_modifiers, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8343), 1, + sym_simple_identifier, + STATE(8883), 1, + sym_parameter, + STATE(9094), 1, + sym__function_value_parameter, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 6, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym_label, - ACTIONS(4010), 28, + STATE(7213), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7223), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7284), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9742), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, + anon_sym_expect, + anon_sym_actual, + [83316] = 27, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9055), 1, + anon_sym_AT, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9077), 1, + anon_sym_COMMA, + ACTIONS(9079), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7311), 1, + sym_annotation, + STATE(8005), 1, + sym_parameter_modifiers, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8343), 1, + sym_simple_identifier, + STATE(8881), 1, + sym__function_value_parameter, + STATE(8883), 1, + sym_parameter, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7213), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7223), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7284), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, + STATE(9742), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_expect, anon_sym_actual, - [94046] = 3, + [83414] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 6, + ACTIONS(4319), 12, anon_sym_AT, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_LT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, sym_label, - ACTIONS(4215), 28, + ACTIONS(4317), 29, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -581087,19 +560085,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [94089] = 2, + [83464] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4782), 34, + ACTIONS(4009), 41, + sym__automatic_semicolon, anon_sym_AT, + anon_sym_COLON, anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_by, + anon_sym_LT, anon_sym_where, + anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -581126,101 +560131,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [94130] = 5, - ACTIONS(9332), 1, - anon_sym_DOT, - STATE(6003), 1, - aux_sym_user_type_repeat1, + [83512] = 27, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9055), 1, + anon_sym_AT, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9081), 1, + anon_sym_COMMA, + ACTIONS(9083), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7311), 1, + sym_annotation, + STATE(8005), 1, + sym_parameter_modifiers, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8343), 1, + sym_simple_identifier, + STATE(8883), 1, + sym_parameter, + STATE(9063), 1, + sym__function_value_parameter, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 4, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_label, - ACTIONS(4202), 28, + STATE(7213), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7223), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7284), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9742), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [94177] = 3, - ACTIONS(4502), 1, - sym_property_modifier, + [83610] = 27, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9055), 1, + anon_sym_AT, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9085), 1, + anon_sym_COMMA, + ACTIONS(9087), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7311), 1, + sym_annotation, + STATE(8005), 1, + sym_parameter_modifiers, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8343), 1, + sym_simple_identifier, + STATE(8883), 1, + sym_parameter, + STATE(8905), 1, + sym__function_value_parameter, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4504), 33, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_COLON, - anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, + STATE(7213), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7223), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7284), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, + STATE(9742), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_expect, anon_sym_actual, - [94220] = 2, + [83708] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4802), 34, + ACTIONS(4319), 41, + sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_by, anon_sym_where, + anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -581247,22 +560319,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [94261] = 5, - ACTIONS(9332), 1, + [83756] = 4, + ACTIONS(9089), 1, anon_sym_DOT, - STATE(6007), 1, + STATE(5717), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 4, + ACTIONS(4168), 38, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_label, - ACTIONS(4225), 28, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -581289,75 +560366,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [94308] = 21, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9334), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8621), 1, - sym_simple_identifier, - STATE(9076), 1, - sym_user_type, - STATE(9120), 1, - sym_parameter, - STATE(9685), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9168), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [94386] = 3, + [83807] = 4, + ACTIONS(9092), 1, + anon_sym_DOT, + STATE(5719), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9254), 2, + ACTIONS(4195), 38, + sym__automatic_semicolon, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4017), 31, - anon_sym_val, - anon_sym_var, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -581384,19 +560413,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [94428] = 3, + [83858] = 4, + ACTIONS(9094), 1, + anon_sym_DOT, + STATE(5717), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9266), 2, + ACTIONS(4155), 38, + sym__automatic_semicolon, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(9268), 31, - anon_sym_val, - anon_sym_var, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -581423,73 +560460,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [94470] = 20, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9334), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(8621), 1, - sym_simple_identifier, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9120), 5, - sym_parameter, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [94546] = 3, + [83909] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9270), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(9272), 31, + ACTIONS(9098), 3, anon_sym_val, anon_sym_var, + sym_property_modifier, + ACTIONS(9096), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -581509,7 +560497,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -581518,17 +560505,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [94588] = 3, + [83957] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9276), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(9278), 31, + ACTIONS(7179), 3, anon_sym_val, anon_sym_var, + sym_property_modifier, + ACTIONS(7181), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -581548,7 +560542,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -581557,17 +560550,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [94630] = 3, + [84005] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9282), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4025), 31, + ACTIONS(5179), 3, anon_sym_val, anon_sym_var, + sym_property_modifier, + ACTIONS(5181), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -581587,7 +560587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -581596,17 +560595,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [94672] = 3, + [84053] = 4, + ACTIONS(9100), 1, + sym__quest, + STATE(5723), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7299), 2, + ACTIONS(4224), 37, + sym__automatic_semicolon, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7297), 31, - anon_sym_val, - anon_sym_var, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -581635,21 +560641,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [94714] = 3, - ACTIONS(4473), 1, - sym_property_modifier, + [84103] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4475), 32, + ACTIONS(4011), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9103), 36, anon_sym_AT, - anon_sym_COLON, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_while, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -581675,56 +560686,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [94756] = 21, - ACTIONS(7560), 1, + [84151] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9334), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8621), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9076), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(9120), 1, - sym_parameter, - STATE(9685), 1, + STATE(8946), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9145), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581732,152 +560752,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94834] = 21, - ACTIONS(7560), 1, + [84241] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9334), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8621), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9076), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(9120), 1, - sym_parameter, - STATE(9685), 1, + STATE(8933), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9080), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [94912] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4319), 5, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - sym_label, - ACTIONS(4317), 28, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [94954] = 21, - ACTIONS(7560), 1, + [84331] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9334), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8621), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9076), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(9120), 1, - sym_parameter, - STATE(9685), 1, + STATE(8796), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9229), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581885,16 +560884,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95032] = 3, + [84421] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9284), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(9286), 31, + ACTIONS(7191), 3, anon_sym_val, anon_sym_var, + sym_property_modifier, + ACTIONS(7193), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -581914,7 +560921,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -581923,17 +560929,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [95074] = 3, + [84469] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4942), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4940), 31, + ACTIONS(5183), 3, anon_sym_val, anon_sym_var, + sym_property_modifier, + ACTIONS(5185), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -581953,7 +560966,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -581962,98 +560974,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [84517] = 24, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [95116] = 5, - ACTIONS(9336), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(6334), 1, - sym_value_arguments, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8977), 1, + sym_type_projection, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7248), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7246), 28, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [95162] = 21, - ACTIONS(7560), 1, + [84607] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9334), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8621), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9076), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(9120), 1, - sym_parameter, - STATE(9685), 1, + STATE(8958), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9079), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582061,55 +561106,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95240] = 3, + [84697] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7335), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7333), 31, + ACTIONS(7171), 3, anon_sym_val, anon_sym_var, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [95282] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9262), 2, + ACTIONS(7173), 36, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(9264), 31, - anon_sym_val, - anon_sym_var, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -582129,7 +561143,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -582138,57 +561151,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [95324] = 21, - ACTIONS(7560), 1, + [84745] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9334), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8621), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9076), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(9120), 1, - sym_parameter, - STATE(9685), 1, + STATE(8971), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9367), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582196,95 +561217,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95402] = 3, + [84835] = 24, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8940), 1, + sym_type_projection, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7263), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7261), 31, - anon_sym_val, - anon_sym_var, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [95444] = 21, - ACTIONS(7560), 1, + [84925] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9334), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8621), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9076), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(9120), 1, - sym_parameter, - STATE(9685), 1, + STATE(9035), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9133), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582292,16 +561349,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95522] = 3, + [85015] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5006), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(5004), 31, + ACTIONS(5163), 3, anon_sym_val, anon_sym_var, + sym_property_modifier, + ACTIONS(5165), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -582321,7 +561386,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -582330,19 +561394,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [95564] = 3, + [85063] = 3, + ACTIONS(4214), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4936), 2, + ACTIONS(4212), 38, + sym__automatic_semicolon, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4934), 31, - anon_sym_val, - anon_sym_var, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -582369,17 +561439,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [95606] = 3, + [85111] = 5, + ACTIONS(9109), 1, + anon_sym_LPAREN, + STATE(5770), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5022), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(5020), 31, + ACTIONS(7087), 2, anon_sym_val, anon_sym_var, + ACTIONS(7089), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -582408,57 +561486,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [95648] = 21, - ACTIONS(7560), 1, + [85163] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9334), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8621), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9076), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(9120), 1, - sym_parameter, - STATE(9685), 1, + STATE(9061), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9216), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582466,56 +561552,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95726] = 21, - ACTIONS(7560), 1, + [85253] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9334), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8621), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9076), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(9120), 1, - sym_parameter, - STATE(9685), 1, + STATE(8983), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9365), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582523,56 +561618,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95804] = 21, - ACTIONS(7560), 1, + [85343] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9334), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8498), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, - STATE(8621), 1, + STATE(8332), 1, + sym_user_type, + STATE(8992), 1, + sym_type_projection, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [85433] = 24, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(9076), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(9120), 1, - sym_parameter, - STATE(9685), 1, + STATE(8827), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9346), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582580,16 +561750,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95882] = 3, + [85523] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7313), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7311), 31, + ACTIONS(7187), 3, anon_sym_val, anon_sym_var, + sym_property_modifier, + ACTIONS(7189), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -582609,7 +561787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -582618,17 +561795,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [95924] = 3, + [85571] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4974), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4972), 31, + ACTIONS(5159), 3, anon_sym_val, anon_sym_var, + sym_property_modifier, + ACTIONS(5161), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -582648,7 +561832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, anon_sym_abstract, anon_sym_final, anon_sym_open, @@ -582657,18 +561840,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [95966] = 3, + [85619] = 4, + ACTIONS(9111), 1, + sym__quest, + STATE(5760), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 5, + ACTIONS(4206), 37, + sym__automatic_semicolon, anon_sym_AT, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - sym_label, - ACTIONS(4189), 28, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -582697,56 +561886,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [96008] = 21, - ACTIONS(7560), 1, + [85669] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9334), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8498), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, - STATE(8621), 1, + STATE(8332), 1, + sym_user_type, + STATE(9074), 1, + sym_type_projection, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [85759] = 24, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(9076), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(9120), 1, - sym_parameter, - STATE(9685), 1, + STATE(9004), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9180), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582754,18 +562018,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96086] = 3, + [85849] = 4, + ACTIONS(9113), 1, + anon_sym_DOT, + STATE(5630), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7323), 2, + ACTIONS(4195), 37, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7321), 31, - anon_sym_val, - anon_sym_var, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -582792,21 +562064,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [96128] = 3, - ACTIONS(4502), 1, - sym_property_modifier, + [85899] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4504), 32, + ACTIONS(7143), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7145), 36, anon_sym_AT, - anon_sym_COLON, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_while, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -582832,219 +562109,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [96170] = 20, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(8617), 1, - sym_simple_identifier, - STATE(9253), 1, - sym_variable_declaration, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [85947] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(10104), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(5187), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(5189), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [96245] = 20, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(8617), 1, - sym_simple_identifier, - STATE(9356), 1, - sym_variable_declaration, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [85995] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(10104), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4021), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9115), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [96320] = 20, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(8617), 1, - sym_simple_identifier, - STATE(9274), 1, - sym_variable_declaration, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [86043] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(10104), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9119), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9117), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [96395] = 20, - ACTIONS(7560), 1, + [86091] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8498), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(8617), 1, - sym_simple_identifier, - STATE(9269), 1, - sym_variable_declaration, - STATE(10099), 1, + STATE(9362), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10104), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583052,163 +562310,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96470] = 20, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(8617), 1, - sym_simple_identifier, - STATE(9126), 1, - sym_variable_declaration, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [86181] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(10104), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9123), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9121), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [96545] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(8621), 1, - sym_simple_identifier, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [86229] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9397), 5, - sym_parameter, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9127), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9125), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [96618] = 20, - ACTIONS(7560), 1, + [86277] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8498), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(8617), 1, - sym_simple_identifier, - STATE(9314), 1, - sym_variable_declaration, - STATE(10099), 1, + STATE(9013), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10104), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583216,105 +562466,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96693] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + [86367] = 4, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9115), 2, anon_sym_AT, - ACTIONS(9338), 1, + sym__backtick_identifier, + ACTIONS(4009), 6, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4696), 1, - sym_user_type, - STATE(6630), 1, - sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, - sym_function_type_parameters, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4021), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [86417] = 4, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4689), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1842), 7, + ACTIONS(9103), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4009), 6, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4011), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [96765] = 19, - ACTIONS(7560), 1, + sym__alpha_identifier, + [86467] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9089), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8994), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583322,265 +562624,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96837] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9342), 1, - anon_sym_interface, - ACTIONS(9344), 1, - anon_sym_LPAREN, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - STATE(5105), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6703), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7629), 1, - sym_simple_identifier, - STATE(8210), 1, - sym__simple_user_type, + [86557] = 4, + ACTIONS(9129), 1, + sym__quest, + STATE(5723), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8212), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(4249), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [96911] = 19, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9352), 1, - sym__alpha_identifier, - ACTIONS(9354), 1, - anon_sym_LPAREN, - ACTIONS(9358), 1, - sym__backtick_identifier, - STATE(5849), 1, - sym_simple_identifier, - STATE(5854), 1, - sym__lexical_identifier, - STATE(6693), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + [86607] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5592), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7627), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9356), 7, + ACTIONS(9133), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9131), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [96983] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, - anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(874), 1, - sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, - sym_parenthesized_user_type, + [86655] = 4, + ACTIONS(9111), 1, + sym__quest, + STATE(5760), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(1401), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + ACTIONS(4305), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [97055] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [86705] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, - anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3395), 1, - sym_simple_identifier, - STATE(6647), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2740), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7682), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [97127] = 19, - ACTIONS(345), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, - anon_sym_dynamic, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6620), 1, - sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9027), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4371), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583588,105 +562827,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97199] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [86795] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, - anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3395), 1, - sym_simple_identifier, - STATE(6690), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2739), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7691), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [97271] = 19, - ACTIONS(515), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, - anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(2936), 1, - sym_user_type, - STATE(6600), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8969), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3068), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583694,52 +562893,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97343] = 19, - ACTIONS(7560), 1, + [86885] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(8908), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10073), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583747,52 +562959,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97415] = 19, - ACTIONS(211), 1, + [86975] = 24, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, - anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, sym__lexical_identifier, - STATE(3071), 1, - sym_user_type, - STATE(6604), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8999), 1, + sym_type_projection, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3434), 4, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583800,3627 +563025,2976 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97487] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9378), 1, - anon_sym_interface, - ACTIONS(9380), 1, - anon_sym_LPAREN, - STATE(4686), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6720), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7715), 1, - sym_simple_identifier, - STATE(8238), 1, - sym__simple_user_type, + [87065] = 3, + ACTIONS(9135), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8121), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(4239), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [97561] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9374), 1, - anon_sym_LPAREN, - ACTIONS(9376), 1, - anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3071), 1, - sym_user_type, - STATE(6604), 1, - sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, - sym_parenthesized_user_type, + [87112] = 4, + ACTIONS(9094), 1, + anon_sym_DOT, + STATE(5719), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3424), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1630), 7, + ACTIONS(4195), 36, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [97633] = 19, - ACTIONS(515), 1, - sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9370), 1, - anon_sym_LPAREN, - ACTIONS(9372), 1, - anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2936), 1, - sym_user_type, - STATE(6600), 1, - sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, - sym_parenthesized_user_type, + [87161] = 3, + ACTIONS(9137), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3104), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1910), 7, + ACTIONS(4239), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [97705] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, - sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, - sym_function_type_parameters, + [87208] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5044), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + ACTIONS(5187), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(5189), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [97777] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4696), 1, - sym_user_type, - STATE(6630), 1, - sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, - sym_function_type_parameters, + [87254] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4782), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1842), 7, + ACTIONS(4021), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9115), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [97849] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9366), 1, - anon_sym_LPAREN, - ACTIONS(9368), 1, - anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(3681), 1, - sym_user_type, - STATE(6620), 1, - sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, - sym_parenthesized_user_type, + [87300] = 4, + ACTIONS(9139), 1, + sym__quest, + STATE(5781), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4367), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1652), 7, + ACTIONS(4206), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [97921] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9386), 1, - sym__alpha_identifier, - ACTIONS(9390), 1, - anon_sym_dynamic, - ACTIONS(9392), 1, - sym__backtick_identifier, - STATE(6634), 1, - sym_type_modifiers, - STATE(8591), 1, - sym_simple_identifier, - STATE(8598), 1, - sym__lexical_identifier, - STATE(8848), 1, - sym__simple_user_type, - STATE(9335), 1, - sym_user_type, - STATE(10080), 1, - sym_function_type_parameters, - STATE(10089), 1, - sym_parenthesized_user_type, + [87348] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9242), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8882), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9388), 7, + ACTIONS(9133), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9131), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [97993] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9366), 1, - anon_sym_LPAREN, - ACTIONS(9368), 1, - anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(3681), 1, - sym_user_type, - STATE(6620), 1, - sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, - sym_parenthesized_user_type, + [87394] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4372), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1652), 7, + ACTIONS(9127), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9125), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [98065] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9366), 1, - anon_sym_LPAREN, - ACTIONS(9368), 1, - anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(3681), 1, - sym_user_type, - STATE(6620), 1, - sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, - sym_parenthesized_user_type, + [87440] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3944), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1652), 7, + ACTIONS(7191), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7193), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [98137] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9366), 1, - anon_sym_LPAREN, - ACTIONS(9368), 1, - anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(3681), 1, - sym_user_type, - STATE(6620), 1, - sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, - sym_parenthesized_user_type, + [87486] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3948), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1652), 7, + ACTIONS(5183), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(5185), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [98209] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9394), 1, - sym__alpha_identifier, - ACTIONS(9396), 1, - anon_sym_LPAREN, - ACTIONS(9400), 1, - anon_sym_dynamic, - ACTIONS(9402), 1, - sym__backtick_identifier, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, - sym__lexical_identifier, - STATE(4664), 1, - sym__simple_user_type, - STATE(4777), 1, - sym_user_type, - STATE(6623), 1, - sym_type_modifiers, - STATE(9901), 1, - sym_function_type_parameters, - STATE(10230), 1, - sym_parenthesized_user_type, + [87532] = 3, + ACTIONS(9141), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4768), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4839), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9398), 7, + ACTIONS(4239), 36, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [98281] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9394), 1, - sym__alpha_identifier, - ACTIONS(9396), 1, - anon_sym_LPAREN, - ACTIONS(9400), 1, - anon_sym_dynamic, - ACTIONS(9402), 1, - sym__backtick_identifier, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, - sym__lexical_identifier, - STATE(4664), 1, - sym__simple_user_type, - STATE(4777), 1, - sym_user_type, - STATE(6623), 1, - sym_type_modifiers, - STATE(9901), 1, - sym_function_type_parameters, - STATE(10230), 1, - sym_parenthesized_user_type, + [87578] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4768), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4831), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9398), 7, + ACTIONS(7187), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7189), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [98353] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9394), 1, - sym__alpha_identifier, - ACTIONS(9396), 1, - anon_sym_LPAREN, - ACTIONS(9400), 1, - anon_sym_dynamic, - ACTIONS(9402), 1, - sym__backtick_identifier, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, - sym__lexical_identifier, - STATE(4664), 1, - sym__simple_user_type, - STATE(4777), 1, - sym_user_type, - STATE(6623), 1, - sym_type_modifiers, - STATE(9901), 1, - sym_function_type_parameters, - STATE(10230), 1, - sym_parenthesized_user_type, + [87624] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4768), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5062), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9398), 7, + ACTIONS(9123), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9121), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [98425] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9404), 1, - sym__alpha_identifier, - ACTIONS(9406), 1, - anon_sym_LPAREN, - ACTIONS(9410), 1, - anon_sym_dynamic, - ACTIONS(9412), 1, - sym__backtick_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(5867), 1, - sym__lexical_identifier, - STATE(5877), 1, - sym__simple_user_type, - STATE(5929), 1, - sym_user_type, - STATE(6638), 1, - sym_type_modifiers, - STATE(9984), 1, - sym_parenthesized_user_type, - STATE(10253), 1, - sym_function_type_parameters, + [87670] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5963), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9408), 7, + ACTIONS(7143), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7145), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [98497] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [87716] = 4, + ACTIONS(9143), 1, + sym__quest, + STATE(5792), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9016), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4249), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [98569] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + [87764] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7179), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7181), 35, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [87810] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(10027), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9119), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9117), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [98641] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9394), 1, - sym__alpha_identifier, - ACTIONS(9396), 1, - anon_sym_LPAREN, - ACTIONS(9400), 1, - anon_sym_dynamic, - ACTIONS(9402), 1, - sym__backtick_identifier, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, - sym__lexical_identifier, - STATE(4664), 1, - sym__simple_user_type, - STATE(4777), 1, - sym_user_type, - STATE(6623), 1, - sym_type_modifiers, - STATE(9901), 1, - sym_function_type_parameters, - STATE(10230), 1, - sym_parenthesized_user_type, + [87856] = 3, + ACTIONS(9145), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4768), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4960), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9398), 7, + ACTIONS(4239), 36, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [98713] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9404), 1, - sym__alpha_identifier, - ACTIONS(9406), 1, - anon_sym_LPAREN, - ACTIONS(9410), 1, - anon_sym_dynamic, - ACTIONS(9412), 1, - sym__backtick_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(5867), 1, - sym__lexical_identifier, - STATE(5877), 1, - sym__simple_user_type, - STATE(5929), 1, - sym_user_type, - STATE(6638), 1, - sym_type_modifiers, - STATE(9984), 1, - sym_parenthesized_user_type, - STATE(10253), 1, - sym_function_type_parameters, + [87902] = 4, + ACTIONS(9139), 1, + sym__quest, + STATE(5781), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5969), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9408), 7, + ACTIONS(4305), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [98785] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [87950] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9065), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4206), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [98857] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9394), 1, - sym__alpha_identifier, - ACTIONS(9396), 1, - anon_sym_LPAREN, - ACTIONS(9400), 1, - anon_sym_dynamic, - ACTIONS(9402), 1, - sym__backtick_identifier, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, - sym__lexical_identifier, - STATE(4664), 1, - sym__simple_user_type, - STATE(4777), 1, - sym_user_type, - STATE(6623), 1, - sym_type_modifiers, - STATE(9901), 1, - sym_function_type_parameters, - STATE(10230), 1, - sym_parenthesized_user_type, + [87994] = 5, + ACTIONS(9147), 1, + anon_sym_LT, + STATE(5818), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4768), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5474), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9398), 7, + ACTIONS(4189), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4128), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [98929] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [88044] = 3, + ACTIONS(4214), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9064), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4212), 36, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [99001] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9394), 1, - sym__alpha_identifier, - ACTIONS(9396), 1, - anon_sym_LPAREN, - ACTIONS(9400), 1, - anon_sym_dynamic, - ACTIONS(9402), 1, - sym__backtick_identifier, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, - sym__lexical_identifier, - STATE(4664), 1, - sym__simple_user_type, - STATE(4777), 1, - sym_user_type, - STATE(6623), 1, - sym_type_modifiers, - STATE(9901), 1, - sym_function_type_parameters, - STATE(10230), 1, - sym_parenthesized_user_type, + [88090] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4768), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4881), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9398), 7, + ACTIONS(7171), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7173), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [99073] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, - anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(874), 1, - sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, - sym_parenthesized_user_type, + [88136] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(1008), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + ACTIONS(4672), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [99145] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9394), 1, - sym__alpha_identifier, - ACTIONS(9396), 1, - anon_sym_LPAREN, - ACTIONS(9400), 1, - anon_sym_dynamic, - ACTIONS(9402), 1, - sym__backtick_identifier, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, - sym__lexical_identifier, - STATE(4664), 1, - sym__simple_user_type, - STATE(4777), 1, - sym_user_type, - STATE(6623), 1, - sym_type_modifiers, - STATE(9901), 1, - sym_function_type_parameters, - STATE(10230), 1, - sym_parenthesized_user_type, + [88180] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4768), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4879), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9398), 7, + ACTIONS(4011), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9103), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [99217] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, - sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, - sym_function_type_parameters, + [88226] = 4, + ACTIONS(9149), 1, + sym__quest, + STATE(5792), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5323), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + ACTIONS(4224), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [99289] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, - sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, - sym_function_type_parameters, + [88274] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4845), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + ACTIONS(9098), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9096), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [99361] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, - sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, - sym_function_type_parameters, + [88320] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4848), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + ACTIONS(4573), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [99433] = 19, - ACTIONS(515), 1, - sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9370), 1, - anon_sym_LPAREN, - ACTIONS(9372), 1, - anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2936), 1, - sym_user_type, - STATE(6600), 1, - sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, - sym_parenthesized_user_type, + [88364] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3522), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1910), 7, + ACTIONS(4681), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [99505] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, - sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, - sym_function_type_parameters, + [88408] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4852), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + ACTIONS(5159), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(5161), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [99577] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9404), 1, - sym__alpha_identifier, - ACTIONS(9406), 1, - anon_sym_LPAREN, - ACTIONS(9410), 1, - anon_sym_dynamic, - ACTIONS(9412), 1, - sym__backtick_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(5867), 1, - sym__lexical_identifier, - STATE(5877), 1, - sym__simple_user_type, - STATE(5929), 1, - sym_user_type, - STATE(6638), 1, - sym_type_modifiers, - STATE(9984), 1, - sym_parenthesized_user_type, - STATE(10253), 1, - sym_function_type_parameters, + [88454] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5968), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9408), 7, + ACTIONS(4765), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [99649] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, - sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, - sym_function_type_parameters, + [88498] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4859), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + ACTIONS(4730), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [99721] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, - sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, - sym_function_type_parameters, + [88542] = 4, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5249), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + ACTIONS(4009), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4004), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [88590] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4676), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [99793] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, - sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, - sym_function_type_parameters, + [88634] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5390), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + ACTIONS(4708), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [99865] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [88678] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8984), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(5163), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(5165), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [99937] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, - sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, - sym_function_type_parameters, + [88724] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4875), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + ACTIONS(4698), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100009] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9394), 1, - sym__alpha_identifier, - ACTIONS(9396), 1, - anon_sym_LPAREN, - ACTIONS(9400), 1, - anon_sym_dynamic, - ACTIONS(9402), 1, - sym__backtick_identifier, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, - sym__lexical_identifier, - STATE(4664), 1, - sym__simple_user_type, - STATE(4777), 1, - sym_user_type, - STATE(6623), 1, - sym_type_modifiers, - STATE(9901), 1, - sym_function_type_parameters, - STATE(10230), 1, - sym_parenthesized_user_type, + [88768] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4768), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5572), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9398), 7, + ACTIONS(5179), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(5181), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100081] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9380), 1, - anon_sym_LPAREN, - ACTIONS(9414), 1, - anon_sym_interface, - STATE(5075), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6740), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7648), 1, - sym_simple_identifier, - STATE(8249), 1, - sym__simple_user_type, + [88814] = 4, + ACTIONS(9152), 1, + anon_sym_COMMA, + STATE(5805), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8164), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(4432), 34, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100155] = 19, - ACTIONS(515), 1, - sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9370), 1, - anon_sym_LPAREN, - ACTIONS(9372), 1, - anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2936), 1, - sym_user_type, - STATE(6600), 1, - sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, - sym_parenthesized_user_type, + [88861] = 5, + ACTIONS(9155), 1, + anon_sym_DOT, + STATE(5809), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3531), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1910), 7, + ACTIONS(4155), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4153), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100227] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [88910] = 3, + ACTIONS(9044), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8981), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4124), 35, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100299] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, - sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, - sym_function_type_parameters, + [88955] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5042), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + ACTIONS(4724), 36, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100371] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, - sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, - sym_function_type_parameters, + [88998] = 5, + ACTIONS(9157), 1, + anon_sym_DOT, + STATE(5809), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5040), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + ACTIONS(4168), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4166), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100443] = 19, - ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, - sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, - sym_function_type_parameters, + [89047] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5036), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + ACTIONS(4662), 36, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100515] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [89090] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8979), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4432), 36, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100587] = 19, - ACTIONS(515), 1, - sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9370), 1, - anon_sym_LPAREN, - ACTIONS(9372), 1, - anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2936), 1, - sym_user_type, - STATE(6600), 1, - sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, - sym_parenthesized_user_type, + [89133] = 4, + ACTIONS(9160), 1, + anon_sym_COMMA, + STATE(5814), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3543), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1910), 7, + ACTIONS(4341), 34, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100659] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [89180] = 5, + ACTIONS(9155), 1, + anon_sym_DOT, + STATE(5806), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8958), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4195), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4193), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100731] = 19, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9416), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(840), 1, - sym_simple_identifier, - STATE(6683), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + [89229] = 4, + ACTIONS(9160), 1, + anon_sym_COMMA, + STATE(5805), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(444), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7713), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(4426), 34, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100803] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [89276] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(10175), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4168), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4166), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100875] = 19, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9416), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(840), 1, - sym_simple_identifier, - STATE(6677), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + [89320] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(430), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7723), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(4672), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100947] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6613), 1, - sym_type_modifiers, - STATE(6750), 1, - sym_simple_identifier, - STATE(8478), 1, - sym__simple_user_type, - STATE(8613), 1, - sym_user_type, - STATE(10077), 1, - sym_parenthesized_user_type, - STATE(10123), 1, - sym_function_type_parameters, + [89362] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8651), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4662), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [101019] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, - sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, - sym_function_type_parameters, + [89404] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5025), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + ACTIONS(4337), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4335), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [101091] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [89448] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8967), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4718), 35, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [101163] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9416), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(840), 1, - sym_simple_identifier, - STATE(6675), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + [89490] = 3, + ACTIONS(9048), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(429), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7731), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(4124), 34, + anon_sym_AT, + anon_sym_EQ, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [101235] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9418), 1, - anon_sym_interface, - ACTIONS(9420), 1, - anon_sym_LPAREN, - STATE(3096), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6696), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7791), 1, - sym_simple_identifier, - STATE(8175), 1, - sym__simple_user_type, + [89534] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8158), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(4573), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [101309] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9364), 1, - anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3395), 1, - sym_simple_identifier, - STATE(6657), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + [89576] = 4, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2442), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7717), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(4009), 6, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym_label, + ACTIONS(4004), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [101381] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9344), 1, - anon_sym_LPAREN, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9422), 1, - anon_sym_interface, - STATE(5015), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6712), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7633), 1, - sym_simple_identifier, - STATE(8261), 1, - sym__simple_user_type, + [89622] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8254), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(4681), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [101455] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9420), 1, - anon_sym_LPAREN, - ACTIONS(9424), 1, - anon_sym_interface, - STATE(3096), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6704), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7769), 1, - sym_simple_identifier, - STATE(8175), 1, - sym__simple_user_type, + [89664] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8143), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(4676), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [101529] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9380), 1, - anon_sym_LPAREN, - ACTIONS(9426), 1, - anon_sym_interface, - STATE(4686), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6731), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7616), 1, - sym_simple_identifier, - STATE(8238), 1, - sym__simple_user_type, + [89706] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8226), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(4315), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4313), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [101603] = 19, - ACTIONS(515), 1, sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9370), 1, - anon_sym_LPAREN, - ACTIONS(9372), 1, - anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2936), 1, - sym_user_type, - STATE(6600), 1, - sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, - sym_parenthesized_user_type, + [89750] = 5, + ACTIONS(9162), 1, + anon_sym_LT, + STATE(5867), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3553), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1910), 7, + ACTIONS(4189), 5, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + sym_label, + ACTIONS(4128), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [101675] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, + [89798] = 5, + ACTIONS(9164), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(874), 1, - sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, - sym_parenthesized_user_type, + STATE(5851), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(1003), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + ACTIONS(7089), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7087), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [101747] = 19, - ACTIONS(515), 1, sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9370), 1, - anon_sym_LPAREN, - ACTIONS(9372), 1, - anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2936), 1, - sym_user_type, - STATE(6600), 1, - sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, - sym_parenthesized_user_type, + [89846] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3578), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1910), 7, + ACTIONS(4730), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [101819] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9428), 1, - anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(6664), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + [89888] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2418), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7780), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + ACTIONS(4206), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [101891] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9428), 1, - anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(6666), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + [89930] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2173), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7792), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + ACTIONS(4704), 35, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [101963] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9428), 1, - anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(6640), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + [89972] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2416), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7783), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + ACTIONS(4765), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [102035] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9428), 1, - anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(6659), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + [90014] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2171), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7813), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + ACTIONS(4734), 35, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [102107] = 19, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9352), 1, - sym__alpha_identifier, - ACTIONS(9354), 1, - anon_sym_LPAREN, - ACTIONS(9358), 1, - sym__backtick_identifier, - STATE(5849), 1, - sym_simple_identifier, - STATE(5854), 1, - sym__lexical_identifier, - STATE(6656), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + [90056] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5615), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7662), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9356), 7, + ACTIONS(4432), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [102179] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, - anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(874), 1, - sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, - sym_parenthesized_user_type, + [90098] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(1287), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + ACTIONS(4724), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [102251] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [90140] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8975), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4708), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [102323] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9394), 1, - sym__alpha_identifier, - ACTIONS(9396), 1, - anon_sym_LPAREN, - ACTIONS(9400), 1, - anon_sym_dynamic, - ACTIONS(9402), 1, - sym__backtick_identifier, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, - sym__lexical_identifier, - STATE(4664), 1, - sym__simple_user_type, - STATE(4777), 1, - sym_user_type, - STATE(6623), 1, - sym_type_modifiers, - STATE(9901), 1, - sym_function_type_parameters, - STATE(10230), 1, - sym_parenthesized_user_type, + [90182] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4768), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5022), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9398), 7, + ACTIONS(4698), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [102395] = 3, + [90224] = 4, + ACTIONS(9166), 1, + anon_sym_COMMA, + STATE(5837), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7263), 3, + ACTIONS(4432), 33, anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7261), 28, + anon_sym_EQ, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -587447,439 +566021,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [102435] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, - anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(874), 1, - sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, - sym_parenthesized_user_type, + [90270] = 4, + ACTIONS(9169), 1, + anon_sym_COMMA, + STATE(5837), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(1303), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + ACTIONS(4426), 33, + anon_sym_AT, + anon_sym_EQ, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [102507] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [90316] = 4, + ACTIONS(9169), 1, + anon_sym_COMMA, + STATE(5838), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8952), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4341), 33, + anon_sym_AT, + anon_sym_EQ, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [102579] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [90362] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8946), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4319), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4317), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [102651] = 19, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, - anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(874), 1, - sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, - sym_parenthesized_user_type, + [90406] = 5, + ACTIONS(9171), 1, + anon_sym_DOT, + STATE(5843), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(1313), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + ACTIONS(4195), 4, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4193), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [102723] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [90453] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8930), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4009), 6, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym_label, + ACTIONS(4004), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [102795] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, - anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(874), 1, - sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, - sym_parenthesized_user_type, + [90496] = 5, + ACTIONS(9171), 1, + anon_sym_DOT, + STATE(5850), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(1321), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + ACTIONS(4155), 4, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4153), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [102867] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, - anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(874), 1, - sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, - sym_parenthesized_user_type, + [90543] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(1295), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + ACTIONS(4718), 34, + anon_sym_AT, + anon_sym_EQ, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [102939] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [90584] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8961), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4734), 34, + anon_sym_AT, + anon_sym_EQ, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [103011] = 3, + [90625] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7299), 3, + ACTIONS(4181), 6, anon_sym_AT, anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, sym_label, - ACTIONS(7297), 28, + ACTIONS(4179), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -587908,317 +566388,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [103051] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9366), 1, - anon_sym_LPAREN, - ACTIONS(9368), 1, - anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(3681), 1, - sym_user_type, - STATE(6620), 1, - sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, - sym_parenthesized_user_type, + [90668] = 3, + ACTIONS(4489), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3846), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, + ACTIONS(4491), 33, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_COLON, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [103123] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [90711] = 3, + ACTIONS(4471), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8970), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, + ACTIONS(4473), 33, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_COLON, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [103195] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [90754] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8971), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4704), 34, + anon_sym_AT, + anon_sym_EQ, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [103267] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [90795] = 5, + ACTIONS(9173), 1, + anon_sym_DOT, + STATE(5850), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9010), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4168), 4, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4166), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [103339] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [90842] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9008), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(5189), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(5187), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [103411] = 19, - ACTIONS(7560), 1, + sym__alpha_identifier, + [90884] = 20, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8959), 4, + STATE(8961), 5, + sym_parameter, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588226,52 +566644,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103483] = 19, - ACTIONS(7560), 1, + [90960] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(8673), 1, sym_user_type, - STATE(10099), 1, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9005), 4, + STATE(9033), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588279,212 +566701,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103555] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9406), 1, - anon_sym_LPAREN, - ACTIONS(9410), 1, - anon_sym_dynamic, - ACTIONS(9430), 1, - sym__alpha_identifier, - ACTIONS(9434), 1, - sym__backtick_identifier, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(6632), 1, - sym_type_modifiers, - STATE(8229), 1, - sym__simple_user_type, - STATE(8590), 1, - sym_user_type, - STATE(9945), 1, - sym_function_type_parameters, - STATE(10085), 1, - sym_parenthesized_user_type, + [91038] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9667), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9432), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [103627] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9131), 2, anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9420), 1, - anon_sym_LPAREN, - ACTIONS(9436), 1, - anon_sym_interface, - STATE(3096), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6749), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7809), 1, - sym_simple_identifier, - STATE(8175), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8117), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + sym__backtick_identifier, + ACTIONS(9133), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [103701] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [91080] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8962), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9096), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9098), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [103773] = 19, - ACTIONS(7560), 1, + sym__alpha_identifier, + [91122] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(8673), 1, sym_user_type, - STATE(10099), 1, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8964), 4, + STATE(9084), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588492,105 +566836,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103845] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [91200] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9004), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4168), 5, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + sym_label, + ACTIONS(4166), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [103917] = 19, - ACTIONS(7560), 1, + [91242] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(8673), 1, sym_user_type, - STATE(10099), 1, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9033), 4, + STATE(9071), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588598,158 +566932,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103989] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [91320] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8973), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9103), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4011), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [104061] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + [91362] = 3, + ACTIONS(4471), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4473), 32, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + anon_sym_COLON, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [91404] = 3, + ACTIONS(4489), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(10104), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, + ACTIONS(4491), 32, + anon_sym_AT, + anon_sym_COLON, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [104133] = 19, - ACTIONS(7560), 1, + [91446] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(8673), 1, sym_user_type, - STATE(10099), 1, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10057), 4, + STATE(8838), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588757,318 +567106,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104205] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, + [91524] = 5, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(874), 1, - sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, - sym_parenthesized_user_type, + STATE(6268), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(1396), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + ACTIONS(7089), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7087), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [104277] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, - sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, - sym_function_type_parameters, + [91570] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5396), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + ACTIONS(7145), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7143), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [104349] = 19, - ACTIONS(345), 1, sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9364), 1, - anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3395), 1, - sym_simple_identifier, - STATE(6667), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + [91612] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2444), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7617), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(9115), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4021), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [104421] = 20, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9344), 1, - anon_sym_LPAREN, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9438), 1, - anon_sym_interface, - STATE(5105), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6695), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7657), 1, - sym_simple_identifier, - STATE(8210), 1, - sym__simple_user_type, + [91654] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8110), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(5161), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(5159), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [104495] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [91696] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8882), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4337), 5, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + sym_label, + ACTIONS(4335), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [104567] = 19, - ACTIONS(7560), 1, + [91738] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(8673), 1, sym_user_type, - STATE(10099), 1, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9052), 4, + STATE(9054), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589076,52 +567360,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104639] = 19, - ACTIONS(7560), 1, + [91816] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(8673), 1, sym_user_type, - STATE(10099), 1, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9055), 4, + STATE(8869), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589129,333 +567417,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104711] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9374), 1, - anon_sym_LPAREN, - ACTIONS(9376), 1, - anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3071), 1, - sym_user_type, - STATE(6604), 1, - sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, - sym_parenthesized_user_type, + [91894] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3481), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1630), 7, + ACTIONS(7189), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7187), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [104783] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [91936] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9049), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(5165), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(5163), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [104855] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [91978] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9038), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9125), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9127), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [104927] = 19, - ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4696), 1, - sym_user_type, - STATE(6630), 1, - sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, - sym_function_type_parameters, + [92020] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4843), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1842), 7, + ACTIONS(5181), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(5179), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [104999] = 19, - ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9374), 1, - anon_sym_LPAREN, - ACTIONS(9376), 1, - anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3071), 1, - sym_user_type, - STATE(6604), 1, - sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, - sym_parenthesized_user_type, + [92062] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3480), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1630), 7, + ACTIONS(9121), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9123), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [105071] = 19, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, - anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(874), 1, - sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, - sym_parenthesized_user_type, + [92104] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(909), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + ACTIONS(5185), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(5183), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [105143] = 3, + sym__alpha_identifier, + [92146] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7335), 3, + ACTIONS(7193), 2, anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7333), 28, + sym__backtick_identifier, + ACTIONS(7191), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -589484,105 +567689,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [105183] = 19, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [92188] = 21, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(8138), 1, sym__simple_user_type, - STATE(874), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(8673), 1, sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(896), 4, + STATE(8988), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [92266] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7181), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7179), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [105255] = 19, - ACTIONS(7560), 1, + sym__alpha_identifier, + [92308] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(8673), 1, sym_user_type, - STATE(10099), 1, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8999), 4, + STATE(9026), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589590,105 +567843,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105327] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, - anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(874), 1, - sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, - sym_parenthesized_user_type, + [92386] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(931), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + ACTIONS(7173), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7171), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [105399] = 19, - ACTIONS(7560), 1, + sym__alpha_identifier, + [92428] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(8673), 1, sym_user_type, - STATE(10099), 1, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8965), 4, + STATE(8962), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589696,105 +567939,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105471] = 19, - ACTIONS(7560), 1, + [92506] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(8673), 1, sym_user_type, - STATE(10099), 1, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9029), 4, + STATE(9059), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [92584] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9117), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9119), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [105543] = 19, - ACTIONS(7560), 1, + sym__alpha_identifier, + [92626] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(8673), 1, sym_user_type, - STATE(10099), 1, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8947), 4, + STATE(8842), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589802,52 +568092,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105615] = 19, - ACTIONS(7560), 1, + [92704] = 20, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(8348), 1, + sym_simple_identifier, + STATE(8967), 1, + sym_variable_declaration, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8911), 4, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589855,52 +568147,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105687] = 19, - ACTIONS(7560), 1, + [92779] = 20, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(8348), 1, + sym_simple_identifier, + STATE(8929), 1, + sym_variable_declaration, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9746), 4, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589908,52 +568202,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105759] = 19, - ACTIONS(431), 1, + [92854] = 20, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(8138), 1, sym__simple_user_type, - STATE(874), 1, + STATE(8332), 1, sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(8348), 1, + sym_simple_identifier, + STATE(8822), 1, + sym_variable_declaration, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(932), 4, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589961,52 +568257,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105831] = 19, - ACTIONS(7560), 1, + [92929] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8974), 4, + STATE(9181), 5, + sym_parameter, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590014,52 +568311,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105903] = 19, - ACTIONS(7567), 1, + [93002] = 20, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9394), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9396), 1, - anon_sym_LPAREN, - ACTIONS(9400), 1, - anon_sym_dynamic, - ACTIONS(9402), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(8138), 1, sym__simple_user_type, - STATE(4777), 1, + STATE(8332), 1, sym_user_type, - STATE(6623), 1, - sym_type_modifiers, - STATE(9901), 1, - sym_function_type_parameters, - STATE(10230), 1, + STATE(8348), 1, + sym_simple_identifier, + STATE(9092), 1, + sym_variable_declaration, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4768), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5519), 4, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9398), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590067,52 +568366,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105975] = 19, - ACTIONS(115), 1, + [93077] = 20, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4696), 1, - sym_user_type, - STATE(6630), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8348), 1, + sym_simple_identifier, + STATE(9096), 1, + sym_variable_declaration, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4705), 4, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590120,52 +568421,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106047] = 19, - ACTIONS(431), 1, + [93152] = 20, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(8138), 1, sym__simple_user_type, - STATE(874), 1, + STATE(8332), 1, sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(8348), 1, + sym_simple_identifier, + STATE(8806), 1, + sym_variable_declaration, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(940), 4, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590173,52 +568476,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106119] = 19, - ACTIONS(115), 1, + [93227] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6630), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4707), 4, + STATE(889), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590226,105 +568529,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106191] = 19, - ACTIONS(211), 1, + [93299] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9428), 1, - anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3042), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(6668), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(6477), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2482), 2, + STATE(2735), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7773), 2, + STATE(7439), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1630), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [106263] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4696), 1, - sym_user_type, - STATE(6630), 1, - sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4694), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4713), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590332,158 +568582,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106335] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, + [93371] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9192), 1, + sym__alpha_identifier, + ACTIONS(9194), 1, anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3042), 1, + ACTIONS(9198), 1, + sym__backtick_identifier, + STATE(5687), 1, sym_simple_identifier, - STATE(6649), 1, + STATE(5694), 1, + sym__lexical_identifier, + STATE(6481), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2485), 2, + STATE(5439), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7826), 2, + STATE(7564), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [106407] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(7852), 3, sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9745), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [106479] = 19, - ACTIONS(515), 1, - sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9370), 1, - anon_sym_LPAREN, - ACTIONS(9372), 1, - anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2936), 1, sym_user_type, - STATE(6600), 1, - sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2937), 2, - sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3784), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1910), 7, + ACTIONS(9196), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590491,52 +568635,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106551] = 19, + [93443] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(2973), 1, sym_user_type, - STATE(6630), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4945), 4, + STATE(3544), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590544,52 +568688,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106623] = 19, - ACTIONS(515), 1, + [93515] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2936), 1, + STATE(4815), 1, sym_user_type, - STATE(6600), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3776), 4, + STATE(5254), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590597,52 +568741,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106695] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, + [93587] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + sym__backtick_identifier, + STATE(6422), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(8325), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8551), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8921), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9494), 1, sym_function_type_parameters, + STATE(9703), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8825), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8940), 4, + STATE(8588), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590650,158 +568794,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106767] = 19, - ACTIONS(431), 1, + [93659] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(840), 1, - sym_simple_identifier, - STATE(6642), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(575), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7738), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [106839] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9416), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(840), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(6643), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(570), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7739), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [106911] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9416), 1, - anon_sym_LPAREN, - STATE(829), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(840), 1, - sym_simple_identifier, - STATE(6644), 1, + STATE(6457), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(600), 2, + STATE(2362), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7757), 2, + STATE(7428), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590809,52 +568847,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106983] = 19, - ACTIONS(515), 1, + [93731] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2936), 1, + STATE(4815), 1, sym_user_type, - STATE(6600), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3774), 4, + STATE(5467), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590862,52 +568900,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107055] = 19, - ACTIONS(7567), 1, + [93803] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9404), 1, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(9406), 1, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9410), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - ACTIONS(9412), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(5867), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(5877), 1, + STATE(5686), 1, + sym_simple_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(5929), 1, + STATE(8324), 1, sym_user_type, - STATE(6638), 1, - sym_type_modifiers, - STATE(9984), 1, + STATE(9645), 1, sym_parenthesized_user_type, - STATE(10253), 1, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5949), 4, + STATE(8337), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9408), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590915,52 +568953,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107127] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [93875] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(860), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8937), 4, + STATE(967), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590968,105 +569006,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107199] = 19, - ACTIONS(431), 1, + [93947] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9226), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(840), 1, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, sym_simple_identifier, - STATE(6645), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, + sym_user_type, + STATE(6419), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(598), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7764), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(3393), 2, sym__type_reference, - sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [107271] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9428), 1, - anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(6646), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2419), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7840), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(3761), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591074,52 +569059,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107343] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [94019] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(10099), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8933), 4, + STATE(3971), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591127,52 +569112,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107415] = 19, - ACTIONS(515), 1, + [94091] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(3392), 1, sym_user_type, - STATE(6600), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3772), 4, + STATE(3977), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591180,52 +569165,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107487] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [94163] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6469), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(2384), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7416), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9044), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591233,52 +569218,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107559] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, + [94235] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + ACTIONS(9238), 1, + anon_sym_dynamic, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(4665), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6440), 1, + sym_type_modifiers, + STATE(9741), 1, sym_function_type_parameters, + STATE(9901), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8928), 4, + STATE(4821), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591286,52 +569271,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107631] = 19, - ACTIONS(115), 1, + [94307] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4696), 1, + STATE(4815), 1, sym_user_type, - STATE(6630), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5126), 4, + STATE(5463), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591339,52 +569324,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107703] = 19, - ACTIONS(211), 1, + [94379] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3071), 1, + STATE(4815), 1, sym_user_type, - STATE(6604), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3469), 4, + STATE(5472), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591392,52 +569377,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107775] = 19, - ACTIONS(515), 1, + [94451] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6600), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9832), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10197), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3697), 4, + STATE(4675), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591445,52 +569430,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107847] = 19, - ACTIONS(211), 1, + [94523] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3042), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(6648), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6473), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2412), 2, + STATE(2381), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7842), 2, + STATE(7414), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591498,52 +569483,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107919] = 19, - ACTIONS(345), 1, + [94595] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3395), 1, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(6650), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(2931), 1, sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, + sym_user_type, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, + sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2443), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7790), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(2977), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(4147), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591551,52 +569536,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107991] = 19, - ACTIONS(345), 1, + [94667] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9242), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(3395), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(6651), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(4540), 1, sym__simple_user_type, + STATE(4578), 1, + sym_user_type, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, + sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2373), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7727), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4580), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(4843), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591604,52 +569589,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108063] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + [94739] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3395), 1, + ACTIONS(9238), 1, + anon_sym_dynamic, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(6653), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, + STATE(4665), 1, + sym_user_type, + STATE(6440), 1, + sym_type_modifiers, + STATE(9741), 1, + sym_function_type_parameters, + STATE(9901), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2399), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7718), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4663), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(4847), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591657,52 +569642,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108135] = 19, - ACTIONS(7560), 1, + [94811] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8966), 4, + STATE(8714), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591710,52 +569695,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108207] = 19, - ACTIONS(345), 1, + [94883] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(3395), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, - STATE(6652), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2445), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7778), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(5095), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591763,52 +569748,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108279] = 19, - ACTIONS(345), 1, + [94955] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(3366), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(4815), 1, sym_user_type, - STATE(6620), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3838), 4, + STATE(5473), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591816,52 +569801,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108351] = 19, - ACTIONS(431), 1, + [95027] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(841), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(874), 1, + STATE(8332), 1, sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1214), 4, + STATE(8658), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591869,52 +569854,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108423] = 19, - ACTIONS(115), 1, + [95099] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4696), 1, + STATE(4815), 1, sym_user_type, - STATE(6630), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4949), 4, + STATE(4926), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591922,52 +569907,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108495] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [95171] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(840), 1, - sym_simple_identifier, - STATE(6686), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(447), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7701), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(9899), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591975,52 +569960,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108567] = 19, - ACTIONS(431), 1, + [95243] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(841), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(874), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6602), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1213), 4, + STATE(3524), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592028,47 +570013,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108639] = 19, - ACTIONS(431), 1, + [95315] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(824), 1, sym_simple_identifier, - STATE(841), 1, + STATE(825), 1, sym__simple_user_type, - STATE(874), 1, + STATE(860), 1, sym_user_type, - STATE(6602), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9938), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10244), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1212), 4, + STATE(988), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -592081,52 +570066,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108711] = 19, - ACTIONS(7567), 1, + [95387] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9440), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9442), 1, - anon_sym_LPAREN, - ACTIONS(9446), 1, - anon_sym_dynamic, - ACTIONS(9448), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5775), 1, - sym_simple_identifier, - STATE(5776), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5904), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, - STATE(5953), 1, + STATE(8332), 1, sym_user_type, - STATE(6608), 1, - sym_type_modifiers, - STATE(9898), 1, - sym_function_type_parameters, - STATE(10136), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5945), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5984), 4, + STATE(8716), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9444), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592134,52 +570119,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108783] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [95459] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4665), 1, sym_user_type, - STATE(6604), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9757), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(10178), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3814), 4, + STATE(5200), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592187,52 +570172,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108855] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9406), 1, - anon_sym_LPAREN, - ACTIONS(9410), 1, - anon_sym_dynamic, - ACTIONS(9430), 1, + [95531] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(469), 1, sym__backtick_identifier, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5848), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, sym_simple_identifier, - STATE(6632), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(6504), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(8229), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8590), 1, - sym_user_type, - STATE(9945), 1, - sym_function_type_parameters, - STATE(10085), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(562), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7386), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9725), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9432), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592240,53 +570225,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108927] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + [95603] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9420), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9248), 1, + sym__alpha_identifier, + ACTIONS(9250), 1, anon_sym_LPAREN, - ACTIONS(9450), 1, - anon_sym_interface, - STATE(2901), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9254), 1, + anon_sym_dynamic, + ACTIONS(9256), 1, + sym__backtick_identifier, + STATE(5602), 1, sym__lexical_identifier, - STATE(6746), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7759), 1, + STATE(5617), 1, sym_simple_identifier, - STATE(8111), 1, + STATE(5748), 1, sym__simple_user_type, + STATE(5784), 1, + sym_user_type, + STATE(6449), 1, + sym_type_modifiers, + STATE(9753), 1, + sym_parenthesized_user_type, + STATE(10117), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(5785), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8193), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(5844), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592294,52 +570278,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109001] = 19, - ACTIONS(211), 1, + [95675] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, - anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3071), 1, - sym_user_type, - STATE(6604), 1, + STATE(6525), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(584), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7382), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3815), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1630), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592347,52 +570331,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109073] = 19, - ACTIONS(7560), 1, + [95747] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8969), 4, + STATE(10067), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592400,52 +570384,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109145] = 19, + [95819] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(2973), 1, sym_user_type, - STATE(6630), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5155), 4, + STATE(4134), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592453,52 +570437,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109217] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [95891] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(10099), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9025), 4, + STATE(3821), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592506,52 +570490,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109289] = 19, - ACTIONS(7560), 1, + [95963] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8583), 4, + STATE(8677), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592559,52 +570543,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109361] = 19, - ACTIONS(115), 1, + [96035] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4696), 1, + STATE(4815), 1, sym_user_type, - STATE(6630), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4850), 4, + STATE(5479), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592612,52 +570596,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109433] = 19, - ACTIONS(515), 1, + [96107] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(2973), 1, sym_user_type, - STATE(6600), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3323), 4, + STATE(3502), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592665,52 +570649,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109505] = 19, - ACTIONS(7560), 1, + [96179] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9295), 4, + STATE(8671), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592718,52 +570702,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109577] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [96251] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4665), 1, sym_user_type, - STATE(6604), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9757), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(10178), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3816), 4, + STATE(5258), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592771,52 +570755,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109649] = 19, - ACTIONS(7560), 1, + [96323] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8995), 4, + STATE(8649), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592824,53 +570808,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109721] = 20, - ACTIONS(8824), 1, + [96395] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9380), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9452), 1, - anon_sym_interface, - STATE(5075), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6718), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7710), 1, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8249), 1, + STATE(2931), 1, sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, + sym_user_type, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, + sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(2977), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8122), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(3468), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592878,52 +570861,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109795] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, + [96467] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, + ACTIONS(9222), 1, + anon_sym_dynamic, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8324), 1, sym_user_type, - STATE(10099), 1, + STATE(9645), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9073), 4, + STATE(5798), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592931,52 +570914,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109867] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [96539] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(10099), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9042), 4, + STATE(4123), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592984,52 +570967,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109939] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [96611] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(10099), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9655), 4, + STATE(3474), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593037,52 +571020,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110011] = 19, - ACTIONS(211), 1, + [96683] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(2973), 1, sym_user_type, - STATE(6604), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3817), 4, + STATE(4201), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593090,52 +571073,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110083] = 19, - ACTIONS(7560), 1, + [96755] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9077), 4, + STATE(9557), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593143,52 +571126,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110155] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [96827] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(10099), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9001), 4, + STATE(4224), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593196,52 +571179,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110227] = 19, - ACTIONS(7567), 1, + [96899] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9440), 1, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(9442), 1, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9446), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - ACTIONS(9448), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(5775), 1, - sym_simple_identifier, - STATE(5776), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(5904), 1, + STATE(5686), 1, + sym_simple_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(5953), 1, + STATE(8324), 1, sym_user_type, - STATE(6608), 1, - sym_type_modifiers, - STATE(9898), 1, - sym_function_type_parameters, - STATE(10136), 1, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5945), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5982), 4, + STATE(8335), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9444), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593249,52 +571232,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110299] = 19, - ACTIONS(211), 1, + [96971] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3071), 1, + STATE(4815), 1, sym_user_type, - STATE(6604), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3810), 4, + STATE(4915), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593302,47 +571285,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110371] = 19, - ACTIONS(115), 1, + [97043] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6630), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5183), 4, + STATE(5509), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -593355,52 +571338,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110443] = 19, - ACTIONS(7567), 1, + [97115] = 19, + ACTIONS(211), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9406), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9410), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - ACTIONS(9430), 1, - sym__alpha_identifier, - ACTIONS(9434), 1, - sym__backtick_identifier, - STATE(5842), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(5848), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(6632), 1, - sym_type_modifiers, - STATE(8229), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8590), 1, + STATE(4578), 1, sym_user_type, - STATE(9945), 1, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, sym_function_type_parameters, - STATE(10085), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8623), 4, + STATE(5483), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9432), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593408,52 +571391,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110515] = 19, - ACTIONS(7560), 1, + [97187] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8955), 4, + STATE(8665), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593461,52 +571444,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110587] = 19, - ACTIONS(115), 1, + [97259] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4696), 1, - sym_user_type, - STATE(6630), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5180), 4, + STATE(8296), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593514,52 +571497,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110659] = 19, - ACTIONS(515), 1, - sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [97331] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(2936), 1, - sym_user_type, - STATE(6600), 1, + STATE(5686), 1, + sym_simple_identifier, + STATE(6429), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(7891), 1, + sym__simple_user_type, + STATE(8324), 1, + sym_user_type, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3935), 4, + STATE(8355), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593567,52 +571550,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110731] = 19, - ACTIONS(515), 1, + [97403] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(2973), 1, sym_user_type, - STATE(6600), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4068), 4, + STATE(4116), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593620,52 +571603,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110803] = 19, - ACTIONS(515), 1, + [97475] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6600), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9832), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10197), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4072), 4, + STATE(5525), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593673,47 +571656,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110875] = 19, - ACTIONS(115), 1, + [97547] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6630), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5137), 4, + STATE(5010), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -593726,52 +571709,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110947] = 19, - ACTIONS(211), 1, + [97619] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(2973), 1, sym_user_type, - STATE(6604), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3555), 4, + STATE(4106), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593779,52 +571762,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111019] = 19, - ACTIONS(345), 1, + [97691] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6620), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3734), 4, + STATE(3567), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593832,52 +571815,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111091] = 19, - ACTIONS(211), 1, + [97763] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6604), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9757), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10178), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3548), 4, + STATE(1074), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593885,52 +571868,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111163] = 19, - ACTIONS(211), 1, + [97835] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6604), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9757), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10178), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4325), 4, + STATE(1078), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593938,52 +571921,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111235] = 19, - ACTIONS(345), 1, + [97907] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, - anon_sym_dynamic, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6620), 1, - sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3730), 4, + STATE(8662), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593991,52 +571974,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111307] = 19, - ACTIONS(7567), 1, + [97979] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9440), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9442), 1, - anon_sym_LPAREN, - ACTIONS(9446), 1, - anon_sym_dynamic, - ACTIONS(9448), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5775), 1, - sym_simple_identifier, - STATE(5776), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5904), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, - STATE(5953), 1, + STATE(8332), 1, sym_user_type, - STATE(6608), 1, - sym_type_modifiers, - STATE(9898), 1, - sym_function_type_parameters, - STATE(10136), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5945), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(6002), 4, + STATE(8661), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9444), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594044,52 +572027,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111379] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, + [98051] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9258), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9260), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + ACTIONS(9264), 1, + anon_sym_dynamic, + ACTIONS(9266), 1, + sym__backtick_identifier, + STATE(2826), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(2853), 1, + sym__lexical_identifier, + STATE(2881), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(3064), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6448), 1, + sym_type_modifiers, + STATE(9673), 1, sym_function_type_parameters, + STATE(9910), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(3066), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8945), 4, + STATE(3626), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594097,52 +572080,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111451] = 19, - ACTIONS(211), 1, + [98123] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6604), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9757), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10178), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4318), 4, + STATE(1451), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594150,52 +572133,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111523] = 19, - ACTIONS(7560), 1, + [98195] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8934), 4, + STATE(9517), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594203,52 +572186,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111595] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [98267] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(3366), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, + sym_simple_identifier, + STATE(4545), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(4548), 1, sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(3681), 1, + STATE(4665), 1, sym_user_type, - STATE(6620), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9828), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(10162), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3727), 4, + STATE(4885), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594256,52 +572239,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111667] = 19, - ACTIONS(7560), 1, + [98339] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9041), 4, + STATE(8660), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594309,52 +572292,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111739] = 19, - ACTIONS(7560), 1, + [98411] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8931), 4, + STATE(8657), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594362,52 +572345,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111811] = 19, - ACTIONS(211), 1, + [98483] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6604), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9757), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10178), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3512), 4, + STATE(1708), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594415,52 +572398,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111883] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [98555] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(10099), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8932), 4, + STATE(3304), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594468,52 +572451,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111955] = 19, - ACTIONS(7560), 1, + [98627] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10083), 4, + STATE(9484), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594521,52 +572504,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112027] = 19, - ACTIONS(345), 1, + [98699] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, - anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, sym_simple_identifier, - STATE(3681), 1, - sym_user_type, - STATE(6620), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(6456), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(570), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7368), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3724), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1652), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594574,52 +572557,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112099] = 19, - ACTIONS(211), 1, + [98771] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3071), 1, - sym_user_type, - STATE(6604), 1, + STATE(6522), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(2357), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7431), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4334), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1630), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594627,52 +572610,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112171] = 19, - ACTIONS(7560), 1, + [98843] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8942), 4, + STATE(8693), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594680,52 +572663,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112243] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, + [98915] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9222), 1, + anon_sym_dynamic, + ACTIONS(9268), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5718), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(5769), 1, sym_user_type, - STATE(10099), 1, + STATE(6430), 1, + sym_type_modifiers, + STATE(9676), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(10064), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8956), 4, + STATE(5808), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594733,52 +572716,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112315] = 19, - ACTIONS(345), 1, + [98987] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, - anon_sym_dynamic, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6620), 1, - sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3720), 4, + STATE(8692), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594786,52 +572769,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112387] = 19, - ACTIONS(515), 1, + [99059] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6600), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9832), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10197), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3270), 4, + STATE(1300), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594839,89 +572822,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112459] = 3, + [99131] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4936), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(4934), 28, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8690), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [112499] = 19, - ACTIONS(9256), 1, + [99203] = 19, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9454), 1, - sym__alpha_identifier, - ACTIONS(9456), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9460), 1, - sym__backtick_identifier, - STATE(5843), 1, - sym__lexical_identifier, - STATE(5852), 1, + STATE(812), 1, sym_simple_identifier, - STATE(6654), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(6452), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5675), 2, + STATE(569), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7822), 2, + STATE(7365), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9458), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594929,52 +572928,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112571] = 19, - ACTIONS(7560), 1, + [99275] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6613), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(6750), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8613), 1, + STATE(8332), 1, sym_user_type, - STATE(10077), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10123), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8647), 4, + STATE(8703), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594982,89 +572981,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112643] = 3, + [99347] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, + anon_sym_LPAREN, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7323), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7321), 28, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4987), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [112683] = 19, - ACTIONS(7), 1, + [99419] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4726), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(860), 1, sym_user_type, - STATE(6617), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5516), 4, + STATE(1250), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595072,52 +573087,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112755] = 19, - ACTIONS(7567), 1, + [99491] = 19, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9406), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9410), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - ACTIONS(9430), 1, - sym__alpha_identifier, - ACTIONS(9434), 1, - sym__backtick_identifier, - STATE(5842), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5848), 1, + STATE(824), 1, sym_simple_identifier, - STATE(6632), 1, - sym_type_modifiers, - STATE(8229), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8590), 1, + STATE(860), 1, sym_user_type, - STATE(9945), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, - STATE(10085), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9513), 4, + STATE(1253), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9432), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595125,52 +573140,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112827] = 19, - ACTIONS(345), 1, + [99563] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3366), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6620), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9828), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10162), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4251), 4, + STATE(1807), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595178,52 +573193,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112899] = 19, - ACTIONS(7560), 1, + [99635] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6613), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(6750), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8613), 1, + STATE(8332), 1, sym_user_type, - STATE(10077), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10123), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8586), 4, + STATE(8689), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595231,52 +573246,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112971] = 19, - ACTIONS(115), 1, + [99707] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4696), 1, - sym_user_type, - STATE(6630), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5399), 4, + STATE(8639), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595284,52 +573299,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113043] = 19, - ACTIONS(7567), 1, + [99779] = 19, + ACTIONS(211), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9440), 1, - sym__alpha_identifier, - ACTIONS(9442), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9446), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - ACTIONS(9448), 1, - sym__backtick_identifier, - STATE(5775), 1, - sym_simple_identifier, - STATE(5776), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(5904), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, sym__simple_user_type, - STATE(5953), 1, + STATE(4578), 1, sym_user_type, - STATE(6608), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9898), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10136), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5945), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5992), 4, + STATE(4611), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9444), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595337,47 +573352,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113115] = 19, + [99851] = 19, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4726), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6617), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9753), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5563), 4, + STATE(5121), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -595390,52 +573405,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113187] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [99923] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6613), 1, - sym_type_modifiers, - STATE(6750), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8613), 1, + STATE(860), 1, sym_user_type, - STATE(10077), 1, - sym_parenthesized_user_type, - STATE(10123), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8643), 4, + STATE(1254), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595443,53 +573458,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113259] = 20, - ACTIONS(8824), 1, + [99995] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9462), 1, - anon_sym_interface, - ACTIONS(9464), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(3820), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(6733), 1, + STATE(6471), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7721), 1, - sym_simple_identifier, - STATE(8157), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8217), 2, + STATE(441), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7423), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595497,52 +573511,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113333] = 19, - ACTIONS(211), 1, + [100067] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, - anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3071), 1, - sym_user_type, - STATE(6604), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3476), 4, + STATE(8709), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595550,52 +573564,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113405] = 19, - ACTIONS(515), 1, + [100139] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6600), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9832), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10197), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3802), 4, + STATE(1306), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595603,52 +573617,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113477] = 19, - ACTIONS(7), 1, + [100211] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, - sym_user_type, - STATE(6617), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6527), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(2435), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7577), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5186), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595656,52 +573670,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113549] = 19, - ACTIONS(7560), 1, + [100283] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5982), 4, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595709,52 +573723,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113621] = 19, - ACTIONS(515), 1, + [100355] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2936), 1, + STATE(4815), 1, sym_user_type, - STATE(6600), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3799), 4, + STATE(5546), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595762,52 +573776,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113693] = 19, - ACTIONS(515), 1, + [100427] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6600), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9832), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10197), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3796), 4, + STATE(4996), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595815,52 +573829,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113765] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [100499] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(860), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9773), 4, + STATE(1153), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595868,52 +573882,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113837] = 19, - ACTIONS(7), 1, + [100571] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(8332), 1, sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5567), 4, + STATE(8688), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595921,52 +573935,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113909] = 19, - ACTIONS(431), 1, + [100643] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9416), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(840), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(6497), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(611), 2, + STATE(2688), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7833), 2, + STATE(7461), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595974,52 +573988,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113981] = 19, - ACTIONS(211), 1, + [100715] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3071), 1, + STATE(4815), 1, sym_user_type, - STATE(6604), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4076), 4, + STATE(5548), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596027,52 +574041,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114053] = 19, - ACTIONS(211), 1, + [100787] = 4, + ACTIONS(9274), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9277), 2, + anon_sym_LBRACE, + sym_label, + ACTIONS(2082), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [100829] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2996), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(3392), 1, sym_user_type, - STATE(6604), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4040), 4, + STATE(4166), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596080,52 +574132,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114125] = 19, - ACTIONS(431), 1, + [100901] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(874), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6602), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1351), 4, + STATE(3802), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596133,52 +574185,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114197] = 19, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [100973] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9466), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9468), 1, - anon_sym_LPAREN, - ACTIONS(9472), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2904), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2976), 1, - sym_simple_identifier, - STATE(6689), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2314), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7637), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9470), 7, + STATE(8647), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596186,52 +574238,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114269] = 19, - ACTIONS(7), 1, + [101045] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4726), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(860), 1, sym_user_type, - STATE(6617), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5574), 4, + STATE(1340), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596239,52 +574291,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114341] = 19, - ACTIONS(7567), 1, + [101117] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9406), 1, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9410), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - ACTIONS(9430), 1, - sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(5842), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(5848), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(6632), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(8229), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(8590), 1, + STATE(8324), 1, sym_user_type, - STATE(9945), 1, - sym_function_type_parameters, - STATE(10085), 1, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5963), 4, + STATE(5808), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9432), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596292,52 +574344,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114413] = 19, - ACTIONS(211), 1, + [101189] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, - anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3071), 1, - sym_user_type, - STATE(6604), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8641), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101261] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4078), 4, + STATE(8711), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596345,52 +574450,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114485] = 19, - ACTIONS(345), 1, + [101333] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(3366), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6620), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9828), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10162), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4214), 4, + STATE(4844), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596398,52 +574503,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114557] = 19, - ACTIONS(345), 1, + [101405] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(3366), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(4815), 1, sym_user_type, - STATE(6620), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4205), 4, + STATE(4910), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596451,52 +574556,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114629] = 19, - ACTIONS(7560), 1, + [101477] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8990), 4, + STATE(9755), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596504,52 +574609,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114701] = 19, - ACTIONS(345), 1, + [101549] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3366), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6620), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9828), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10162), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4234), 4, + STATE(1256), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596557,52 +574662,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114773] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [101621] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(840), 1, - sym_simple_identifier, - STATE(6661), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(626), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7821), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(8685), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596610,52 +574715,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114845] = 19, - ACTIONS(115), 1, + [101693] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4696), 1, + STATE(4815), 1, sym_user_type, - STATE(6630), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5533), 4, + STATE(5203), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596663,52 +574768,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114917] = 19, - ACTIONS(7), 1, + [101765] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(8332), 1, sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5575), 4, + STATE(8635), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596716,142 +574821,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114989] = 19, - ACTIONS(115), 1, + [101837] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4696), 1, - sym_user_type, - STATE(6630), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5380), 4, + STATE(8762), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [115061] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4942), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(4940), 28, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, + anon_sym_inner, + anon_sym_value, anon_sym_expect, anon_sym_actual, - [115101] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [101909] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(860), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9161), 4, + STATE(1258), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596859,52 +574927,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115173] = 19, - ACTIONS(115), 1, + [101981] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4696), 1, - sym_user_type, - STATE(6630), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5539), 4, + STATE(8764), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596912,52 +574980,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115245] = 19, - ACTIONS(7560), 1, + [102053] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8997), 4, + STATE(8765), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596965,52 +575033,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115317] = 19, - ACTIONS(7560), 1, + [102125] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8998), 4, + STATE(8928), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597018,52 +575086,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115389] = 19, - ACTIONS(115), 1, + [102197] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4647), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(3392), 1, sym_user_type, - STATE(6630), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5542), 4, + STATE(4151), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597071,52 +575139,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115461] = 19, - ACTIONS(7560), 1, + [102269] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6613), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(6750), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8613), 1, + STATE(8332), 1, sym_user_type, - STATE(10077), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10123), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8633), 4, + STATE(8769), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597124,52 +575192,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115533] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [102341] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6496), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(2323), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7399), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9000), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597177,52 +575245,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115605] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [102413] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(3366), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, + sym_simple_identifier, + STATE(4545), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(4548), 1, sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(3681), 1, + STATE(4665), 1, sym_user_type, - STATE(6620), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9828), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(10162), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4253), 4, + STATE(5330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597230,52 +575298,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115677] = 19, - ACTIONS(115), 1, + [102485] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4696), 1, + STATE(4815), 1, sym_user_type, - STATE(6630), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5547), 4, + STATE(5552), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597283,52 +575351,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115749] = 19, - ACTIONS(7567), 1, + [102557] = 19, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9440), 1, - sym__alpha_identifier, - ACTIONS(9442), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9446), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - ACTIONS(9448), 1, - sym__backtick_identifier, - STATE(5775), 1, - sym_simple_identifier, - STATE(5776), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5904), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, sym__simple_user_type, - STATE(5953), 1, + STATE(860), 1, sym_user_type, - STATE(6608), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9898), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10136), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5945), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5986), 4, + STATE(1327), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9444), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597336,52 +575404,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115821] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + [102629] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, anon_sym_LPAREN, - ACTIONS(9410), 1, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6509), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2324), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7535), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [102701] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9430), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5842), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(6632), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8229), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, - STATE(8590), 1, + STATE(8332), 1, sym_user_type, - STATE(9945), 1, - sym_function_type_parameters, - STATE(10085), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5968), 4, + STATE(8706), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9432), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597389,52 +575510,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115893] = 19, - ACTIONS(7560), 1, + [102773] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6613), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(6750), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8613), 1, + STATE(8332), 1, sym_user_type, - STATE(10077), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10123), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8583), 4, + STATE(8707), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597442,52 +575563,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115965] = 19, - ACTIONS(7560), 1, + [102845] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9003), 4, + STATE(8708), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597495,52 +575616,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116037] = 19, - ACTIONS(211), 1, + [102917] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6604), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9757), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10178), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3381), 4, + STATE(985), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597548,52 +575669,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116109] = 19, - ACTIONS(7560), 1, + [102989] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8996), 4, + STATE(8710), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597601,52 +575722,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116181] = 19, - ACTIONS(115), 1, + [103061] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4696), 1, + STATE(4815), 1, sym_user_type, - STATE(6630), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5161), 4, + STATE(5101), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597654,52 +575775,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116253] = 19, - ACTIONS(7560), 1, + [103133] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8354), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9549), 1, sym_function_type_parameters, + STATE(9550), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9071), 4, + STATE(8368), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597707,52 +575828,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116325] = 19, + [103205] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6493), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2456), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7533), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103277] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8659), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103349] = 19, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4647), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4696), 1, + STATE(2840), 1, sym_user_type, - STATE(6630), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5162), 4, + STATE(3378), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597760,52 +575987,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116397] = 19, - ACTIONS(115), 1, + [103421] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4647), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(3392), 1, sym_user_type, - STATE(6630), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5570), 4, + STATE(4229), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597813,52 +576040,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116469] = 19, - ACTIONS(115), 1, + [103493] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4647), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(3392), 1, sym_user_type, - STATE(6630), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5163), 4, + STATE(4226), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597866,52 +576093,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116541] = 19, - ACTIONS(7), 1, + [103565] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4726), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(860), 1, sym_user_type, - STATE(6617), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5578), 4, + STATE(892), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597919,52 +576146,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116613] = 19, - ACTIONS(7), 1, + [103637] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4726), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6617), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5603), 4, + STATE(3204), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597972,52 +576199,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116685] = 19, - ACTIONS(7), 1, + [103709] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6617), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9753), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5602), 4, + STATE(4196), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598025,52 +576252,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116757] = 19, - ACTIONS(7560), 1, + [103781] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9400), 4, + STATE(9284), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598078,89 +576305,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116829] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5022), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(5020), 28, - anon_sym_get, - anon_sym_set, + [103853] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [116869] = 19, - ACTIONS(345), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3395), 1, - sym_simple_identifier, - STATE(6678), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2791), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7664), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(8718), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598168,52 +576358,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116941] = 19, - ACTIONS(7560), 1, + [103925] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8978), 4, + STATE(8777), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598221,89 +576411,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117013] = 3, + [103997] = 19, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, + sym_user_type, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, + sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4974), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(4972), 28, + STATE(851), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(895), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [117053] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [104069] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, + sym__backtick_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(5713), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(5718), 1, + sym__simple_user_type, + STATE(5769), 1, sym_user_type, - STATE(6604), 1, + STATE(6430), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(9676), 1, sym_parenthesized_user_type, + STATE(10064), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3358), 4, + STATE(5798), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598311,52 +576517,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117125] = 19, - ACTIONS(7560), 1, + [104141] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5984), 4, + STATE(8720), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598364,52 +576570,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117197] = 19, - ACTIONS(7567), 1, + [104213] = 19, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9406), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9410), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - ACTIONS(9430), 1, - sym__alpha_identifier, - ACTIONS(9434), 1, - sym__backtick_identifier, - STATE(5842), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(6632), 1, - sym_type_modifiers, - STATE(8229), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8590), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(9945), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, - STATE(10085), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8603), 4, + STATE(3379), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9432), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598417,52 +576623,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117269] = 19, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + [104285] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9466), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(9468), 1, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9472), 1, + ACTIONS(9222), 1, + anon_sym_dynamic, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(2904), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(2976), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(6684), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7891), 1, sym__simple_user_type, + STATE(8324), 1, + sym_user_type, + STATE(9645), 1, + sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2310), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7634), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(5762), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9470), 7, + STATE(9354), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598470,52 +576676,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117341] = 19, - ACTIONS(211), 1, + [104357] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, - anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3071), 1, - sym_user_type, - STATE(6604), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3903), 4, + STATE(8721), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598523,52 +576729,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117413] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [104429] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(860), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8985), 4, + STATE(897), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598576,52 +576782,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117485] = 19, - ACTIONS(211), 1, + [104501] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6604), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9757), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10178), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3902), 4, + STATE(1181), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598629,52 +576835,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117557] = 19, - ACTIONS(7560), 1, + [104573] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9837), 4, + STATE(8638), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598682,52 +576888,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117629] = 19, - ACTIONS(7), 1, + [104645] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(8332), 1, sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5330), 4, + STATE(8683), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598735,53 +576941,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117701] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [104717] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9474), 1, - anon_sym_interface, - ACTIONS(9476), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(848), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6725), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7796), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8244), 1, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8196), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(8724), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598789,52 +576994,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117775] = 19, - ACTIONS(211), 1, + [104789] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6604), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9757), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10178), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3899), 4, + STATE(902), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598842,52 +577047,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117847] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [104861] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4665), 1, sym_user_type, - STATE(6630), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9741), 1, sym_function_type_parameters, + STATE(9901), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4988), 4, + STATE(4835), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598895,52 +577100,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117919] = 19, - ACTIONS(345), 1, + [104933] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(3366), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(2840), 1, sym_user_type, - STATE(6620), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9828), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(10162), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4122), 4, + STATE(3380), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598948,53 +577153,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117991] = 20, - ACTIONS(8824), 1, + [105005] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8682), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105077] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9478), 1, - anon_sym_interface, - ACTIONS(9480), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(3051), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, sym__lexical_identifier, - STATE(6734), 1, + STATE(6503), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7714), 1, - sym_simple_identifier, - STATE(8242), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8213), 2, + STATE(2460), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7479), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105149] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8681), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599002,52 +577312,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118065] = 19, - ACTIONS(345), 1, + [105221] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, + sym_user_type, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, + sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2812), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3382), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105293] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3395), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(6691), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6480), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2789), 2, + STATE(2463), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7659), 2, + STATE(7568), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599055,53 +577418,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118137] = 20, - ACTIONS(8824), 1, + [105365] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9112), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105437] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9464), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9482), 1, - anon_sym_interface, - STATE(3583), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6744), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7750), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8240), 1, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8222), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, + STATE(8680), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105509] = 19, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, + sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2812), 2, + sym__type_reference, sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3383), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599109,53 +577577,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118211] = 20, - ACTIONS(8824), 1, + [105581] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9420), 1, - anon_sym_LPAREN, - ACTIONS(9484), 1, - anon_sym_interface, - STATE(2901), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(6728), 1, + STATE(6482), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7805), 1, - sym_simple_identifier, - STATE(8111), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8201), 2, + STATE(2625), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7503), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599163,52 +577630,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118285] = 19, - ACTIONS(115), 1, + [105653] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4647), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4696), 1, + STATE(2840), 1, sym_user_type, - STATE(6630), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4992), 4, + STATE(3662), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599216,47 +577683,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118357] = 19, - ACTIONS(115), 1, + [105725] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(6484), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2626), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7500), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105797] = 19, + ACTIONS(211), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6630), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5000), 4, + STATE(4585), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -599269,52 +577789,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118429] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [105869] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(6613), 1, + STATE(6512), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(6750), 1, - sym_simple_identifier, - STATE(8478), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8613), 1, - sym_user_type, - STATE(10077), 1, - sym_parenthesized_user_type, - STATE(10123), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(451), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7409), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8655), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599322,52 +577842,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118501] = 19, - ACTIONS(115), 1, + [105941] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4647), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4696), 1, + STATE(2840), 1, sym_user_type, - STATE(6630), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5007), 4, + STATE(3665), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599375,90 +577895,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118573] = 4, - ACTIONS(9486), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9489), 2, - anon_sym_LBRACE, - sym_label, - ACTIONS(2082), 28, - anon_sym_get, - anon_sym_set, + [106013] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [118615] = 19, - ACTIONS(7), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(8332), 1, sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5203), 4, + STATE(9469), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599466,52 +577948,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118687] = 19, - ACTIONS(7560), 1, + [106085] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8972), 4, + STATE(8739), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599519,52 +578001,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118759] = 19, - ACTIONS(115), 1, + [106157] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6630), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5012), 4, + STATE(1343), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599572,52 +578054,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118831] = 19, - ACTIONS(7567), 1, + [106229] = 19, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9394), 1, - sym__alpha_identifier, - ACTIONS(9396), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9400), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - ACTIONS(9402), 1, - sym__backtick_identifier, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4777), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6623), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9901), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(10230), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4768), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5566), 4, + STATE(3677), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9398), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599625,51 +578107,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118903] = 19, - ACTIONS(431), 1, + [106301] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9180), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(840), 1, + STATE(824), 1, sym_simple_identifier, - STATE(6692), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(825), 1, sym__simple_user_type, + STATE(860), 1, + sym_user_type, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, + sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(458), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7719), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(851), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, + STATE(1341), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, ACTIONS(1664), 7, anon_sym_get, anon_sym_set, @@ -599678,52 +578160,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118975] = 19, - ACTIONS(7560), 1, + [106373] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10342), 4, + STATE(8740), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599731,52 +578213,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119047] = 19, - ACTIONS(7560), 1, + [106445] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9812), 4, + STATE(8741), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599784,51 +578266,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119119] = 19, - ACTIONS(345), 1, + [106517] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(3681), 1, - sym_user_type, - STATE(6620), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(6461), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(2728), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7430), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4133), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, ACTIONS(1652), 7, anon_sym_get, anon_sym_set, @@ -599837,52 +578319,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119191] = 19, - ACTIONS(7567), 1, + [106589] = 19, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9406), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9410), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - ACTIONS(9430), 1, - sym__alpha_identifier, - ACTIONS(9434), 1, - sym__backtick_identifier, - STATE(5842), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(6632), 1, - sym_type_modifiers, - STATE(8229), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8590), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(9945), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, - STATE(10085), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9419), 4, + STATE(3684), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9432), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599890,52 +578372,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119263] = 19, - ACTIONS(7560), 1, + [106661] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9970), 4, + STATE(8746), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599943,52 +578425,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119335] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [106733] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9971), 4, + STATE(3705), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599996,52 +578478,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119407] = 19, - ACTIONS(7560), 1, + [106805] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9021), 4, + STATE(8786), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600049,47 +578531,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119479] = 19, - ACTIONS(431), 1, + [106877] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(824), 1, sym_simple_identifier, - STATE(841), 1, + STATE(825), 1, sym__simple_user_type, - STATE(874), 1, + STATE(860), 1, sym_user_type, - STATE(6602), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9938), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10244), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1400), 4, + STATE(1344), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -600102,105 +578584,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119551] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9416), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(840), 1, - sym_simple_identifier, - STATE(6685), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(455), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7808), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [119623] = 19, - ACTIONS(431), 1, + [106949] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(841), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(874), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6602), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(964), 4, + STATE(3385), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600208,52 +578637,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119695] = 19, - ACTIONS(431), 1, + [107021] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(6590), 1, sym_simple_identifier, - STATE(841), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(874), 1, + STATE(8354), 1, sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, + STATE(9549), 1, sym_function_type_parameters, - STATE(10244), 1, + STATE(9550), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1360), 4, + STATE(8385), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600261,52 +578690,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119767] = 19, - ACTIONS(431), 1, + [107093] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(841), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(874), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6602), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1158), 4, + STATE(3386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600314,52 +578743,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119839] = 19, - ACTIONS(7560), 1, + [107165] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9022), 4, + STATE(8704), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600367,89 +578796,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119911] = 3, + [107237] = 19, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(6489), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5006), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(5004), 28, + STATE(2403), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7575), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [119951] = 19, - ACTIONS(431), 1, + [107309] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(841), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(874), 1, + STATE(8332), 1, sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1411), 4, + STATE(8645), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600457,52 +578902,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120023] = 19, - ACTIONS(7567), 1, + [107381] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9466), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9491), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9493), 1, - anon_sym_dynamic, - STATE(2904), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2945), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2965), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(3346), 1, + STATE(8332), 1, sym_user_type, - STATE(6611), 1, - sym_type_modifiers, - STATE(9931), 1, - sym_function_type_parameters, - STATE(10238), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3343), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3547), 4, + STATE(8932), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9470), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600510,52 +578955,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120095] = 19, + [107453] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(2973), 1, sym_user_type, - STATE(6630), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4943), 4, + STATE(3388), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600563,52 +579008,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120167] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [107525] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6499), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(2412), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7555), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9024), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600616,47 +579061,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120239] = 19, - ACTIONS(431), 1, + [107597] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(824), 1, sym_simple_identifier, - STATE(841), 1, + STATE(825), 1, sym__simple_user_type, - STATE(874), 1, + STATE(860), 1, sym_user_type, - STATE(6602), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9938), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10244), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1055), 4, + STATE(1326), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -600669,52 +579114,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120311] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [107669] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(860), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9030), 4, + STATE(1111), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600722,52 +579167,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120383] = 19, - ACTIONS(7560), 1, + [107741] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9151), 4, + STATE(9093), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600775,47 +579220,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120455] = 19, - ACTIONS(431), 1, + [107813] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(824), 1, sym_simple_identifier, - STATE(841), 1, + STATE(825), 1, sym__simple_user_type, - STATE(874), 1, + STATE(860), 1, sym_user_type, - STATE(6602), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9938), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10244), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1329), 4, + STATE(1113), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -600828,52 +579273,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120527] = 19, - ACTIONS(345), 1, + [107885] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3366), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6620), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9828), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10162), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3778), 4, + STATE(1119), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600881,52 +579326,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120599] = 19, - ACTIONS(7560), 1, + [107957] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8914), 4, + STATE(5817), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600934,52 +579379,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120671] = 19, - ACTIONS(345), 1, + [108029] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6620), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3771), 4, + STATE(3716), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600987,52 +579432,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120743] = 19, - ACTIONS(345), 1, + [108101] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6620), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3768), 4, + STATE(3713), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601040,52 +579485,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120815] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [108173] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(10099), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8918), 4, + STATE(3840), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601093,52 +579538,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120887] = 19, - ACTIONS(115), 1, + [108245] = 19, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9258), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(4696), 1, - sym_user_type, - STATE(6630), 1, + STATE(2926), 1, + sym_simple_identifier, + STATE(6508), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, - sym_function_type_parameters, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(2287), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7410), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4870), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1842), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601146,52 +579591,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120959] = 19, - ACTIONS(345), 1, + [108317] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(3366), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6620), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9828), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10162), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4300), 4, + STATE(4614), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601199,52 +579644,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121031] = 19, - ACTIONS(115), 1, + [108389] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4696), 1, - sym_user_type, - STATE(6630), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4685), 4, + STATE(8793), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601252,89 +579697,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121103] = 3, + [108461] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(6590), 1, + sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8354), 1, + sym_user_type, + STATE(9549), 1, + sym_function_type_parameters, + STATE(9550), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7313), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7311), 28, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8397), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [121143] = 19, - ACTIONS(515), 1, + [108533] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(3392), 1, sym_user_type, - STATE(6600), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3001), 4, + STATE(3878), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601342,52 +579803,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121215] = 19, + [108605] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(2973), 1, sym_user_type, - STATE(6630), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4684), 4, + STATE(3728), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601395,52 +579856,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121287] = 19, + [108677] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(6533), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2609), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7449), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, sym_user_type, - STATE(6630), 1, + sym_parenthesized_type, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [108749] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4667), 4, + STATE(8646), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601448,52 +579962,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121359] = 19, - ACTIONS(7560), 1, + [108821] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9061), 4, + STATE(8772), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601501,52 +580015,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121431] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [108893] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9212), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + ACTIONS(9214), 1, + sym__backtick_identifier, + STATE(6422), 1, + sym_type_modifiers, + STATE(8325), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(8551), 1, + sym__simple_user_type, + STATE(8921), 1, sym_user_type, - STATE(6630), 1, - sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9494), 1, sym_function_type_parameters, + STATE(9703), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8825), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4666), 4, + STATE(8318), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601554,52 +580068,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121503] = 19, - ACTIONS(211), 1, + [108965] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, - anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3071), 1, - sym_user_type, - STATE(6604), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8644), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109037] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3350), 4, + STATE(8648), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601607,52 +580174,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121575] = 19, - ACTIONS(211), 1, + [109109] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(2973), 1, sym_user_type, - STATE(6604), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3349), 4, + STATE(3732), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601660,52 +580227,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121647] = 19, - ACTIONS(211), 1, + [109181] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(2973), 1, sym_user_type, - STATE(6604), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3347), 4, + STATE(3292), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601713,52 +580280,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121719] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [109253] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, + sym__backtick_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(841), 1, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5718), 1, sym__simple_user_type, - STATE(874), 1, + STATE(5769), 1, sym_user_type, - STATE(6602), 1, + STATE(6430), 1, sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(9676), 1, sym_parenthesized_user_type, + STATE(10064), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1365), 4, + STATE(5800), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601766,52 +580333,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121791] = 19, - ACTIONS(7560), 1, + [109325] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8920), 4, + STATE(8789), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601819,89 +580386,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121863] = 3, + [109397] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9222), 1, + anon_sym_dynamic, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, + sym_simple_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, + sym__simple_user_type, + STATE(8324), 1, + sym_user_type, + STATE(9645), 1, + sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4010), 14, - anon_sym_by, - anon_sym_where, + STATE(5762), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8334), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [109469] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(4015), 17, - anon_sym_AT, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, + ACTIONS(203), 1, sym__backtick_identifier, - [121903] = 19, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9404), 1, - sym__alpha_identifier, - ACTIONS(9406), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9410), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - ACTIONS(9412), 1, - sym__backtick_identifier, - STATE(5848), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(5867), 1, - sym__lexical_identifier, - STATE(5877), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5929), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6638), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9984), 1, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10253), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5998), 4, + STATE(3738), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9408), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601909,52 +580492,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121975] = 19, - ACTIONS(345), 1, + [109541] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(3366), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(2840), 1, sym_user_type, - STATE(6620), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9828), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(10162), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3556), 4, + STATE(3060), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601962,52 +580545,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122047] = 19, - ACTIONS(431), 1, + [109613] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9222), 1, + anon_sym_dynamic, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, + sym_simple_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, + sym__simple_user_type, + STATE(8324), 1, + sym_user_type, + STATE(9645), 1, + sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5762), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5810), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9220), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109685] = 19, + ACTIONS(211), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(829), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(874), 1, + STATE(4578), 1, sym_user_type, - STATE(6602), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9938), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10244), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1204), 4, + STATE(4771), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602015,52 +580651,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122119] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, + [109757] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9222), 1, + anon_sym_dynamic, + ACTIONS(9268), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5718), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(5769), 1, sym_user_type, - STATE(10099), 1, + STATE(6430), 1, + sym_type_modifiers, + STATE(9676), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(10064), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9027), 4, + STATE(5810), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602068,52 +580704,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122191] = 19, - ACTIONS(345), 1, + [109829] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(3366), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6620), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9828), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10162), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3560), 4, + STATE(4761), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602121,52 +580757,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122263] = 19, - ACTIONS(7560), 1, + [109901] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8922), 4, + STATE(9264), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602174,52 +580810,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122335] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, + [109973] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9248), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9250), 1, anon_sym_LPAREN, + ACTIONS(9254), 1, + anon_sym_dynamic, ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, + sym__backtick_identifier, + STATE(5602), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(5617), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(5748), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(5784), 1, sym_user_type, - STATE(10099), 1, + STATE(6449), 1, + sym_type_modifiers, + STATE(9753), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(10117), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(5785), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9020), 4, + STATE(5828), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602227,52 +580863,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122407] = 19, - ACTIONS(7560), 1, + [110045] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9019), 4, + STATE(8845), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602280,52 +580916,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122479] = 19, - ACTIONS(345), 1, + [110117] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(3366), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(2840), 1, sym_user_type, - STATE(6620), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9828), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(10162), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3563), 4, + STATE(3951), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602333,52 +580969,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122551] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [110189] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9018), 4, + STATE(3855), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602386,52 +581022,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122623] = 19, - ACTIONS(345), 1, + [110261] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6620), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3577), 4, + STATE(3389), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602439,52 +581075,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122695] = 19, - ACTIONS(115), 1, + [110333] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4647), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(3392), 1, sym_user_type, - STATE(6630), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5265), 4, + STATE(3613), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602492,52 +581128,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122767] = 19, - ACTIONS(345), 1, + [110405] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, - anon_sym_dynamic, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6620), 1, - sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3579), 4, + STATE(8651), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602545,47 +581181,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122839] = 19, - ACTIONS(515), 1, + [110477] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2936), 1, + STATE(2840), 1, sym_user_type, - STATE(6600), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9832), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(10197), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2967), 4, + STATE(3869), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -602598,52 +581234,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122911] = 19, - ACTIONS(515), 1, + [110549] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(3392), 1, sym_user_type, - STATE(6600), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2971), 4, + STATE(3615), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602651,52 +581287,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122983] = 19, - ACTIONS(515), 1, + [110621] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(3392), 1, sym_user_type, - STATE(6600), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2969), 4, + STATE(3673), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602704,52 +581340,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123055] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9386), 1, + [110693] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(9390), 1, - anon_sym_dynamic, - ACTIONS(9392), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(6634), 1, - sym_type_modifiers, - STATE(8591), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(8598), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(8848), 1, + STATE(6518), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, sym__simple_user_type, - STATE(9335), 1, - sym_user_type, - STATE(10080), 1, - sym_function_type_parameters, - STATE(10089), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(2656), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7390), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(9242), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8586), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9388), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602757,52 +581393,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123127] = 19, - ACTIONS(7), 1, + [110765] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6617), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9753), 1, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5060), 4, + STATE(3369), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602810,52 +581446,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123199] = 19, - ACTIONS(211), 1, + [110837] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6604), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9757), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(10178), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3092), 4, + STATE(1139), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602863,52 +581499,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123271] = 19, - ACTIONS(7560), 1, + [110909] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9023), 4, + STATE(8684), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602916,52 +581552,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123343] = 19, - ACTIONS(211), 1, + [110981] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3071), 1, - sym_user_type, - STATE(6604), 1, + STATE(6521), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(2602), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7384), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3090), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1630), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602969,52 +581605,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123415] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [111053] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(10099), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9012), 4, + STATE(3669), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603022,52 +581658,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123487] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [111125] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8987), 4, + STATE(3708), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603075,158 +581711,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123559] = 19, - ACTIONS(211), 1, + [111197] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2996), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(3392), 1, sym_user_type, - STATE(6604), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3087), 4, + STATE(3616), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1652), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111269] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7181), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7179), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [123631] = 19, - ACTIONS(431), 1, + [111309] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(829), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(874), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6602), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9938), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(10244), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1140), 4, + STATE(3706), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1910), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111381] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5165), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(5163), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [123703] = 19, - ACTIONS(431), 1, + [111421] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(840), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(6680), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6454), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(462), 2, + STATE(2664), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7843), 2, + STATE(7373), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603234,52 +581944,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123775] = 19, - ACTIONS(7560), 1, + [111493] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8982), 4, + STATE(8686), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603287,52 +581997,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123847] = 19, - ACTIONS(211), 1, + [111565] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, - anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3071), 1, - sym_user_type, - STATE(6604), 1, + STATE(6530), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(2661), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7457), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3083), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1630), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603340,52 +582050,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123919] = 19, - ACTIONS(431), 1, + [111637] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(840), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, - STATE(6676), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(463), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7839), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(5182), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603393,52 +582103,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123991] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [111709] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(6681), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2730), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7613), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(8752), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603446,52 +582156,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124063] = 19, - ACTIONS(211), 1, + [111781] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2996), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(3392), 1, sym_user_type, - STATE(6604), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3081), 4, + STATE(3663), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603499,52 +582209,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124135] = 19, - ACTIONS(431), 1, + [111853] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(874), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6602), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(944), 4, + STATE(4102), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603552,52 +582262,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124207] = 19, - ACTIONS(7560), 1, + [111925] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9057), 4, + STATE(8754), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603605,52 +582315,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124279] = 19, - ACTIONS(431), 1, + [111997] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(874), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6602), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(942), 4, + STATE(4104), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603658,52 +582368,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124351] = 19, - ACTIONS(431), 1, + [112069] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, - anon_sym_dynamic, - STATE(829), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(841), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(874), 1, + STATE(8332), 1, sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(936), 4, + STATE(8755), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603711,47 +582421,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124423] = 19, - ACTIONS(345), 1, + [112141] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6620), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4286), 4, + STATE(3655), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -603764,195 +582474,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124495] = 19, - ACTIONS(345), 1, + [112213] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9242), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(3395), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(6671), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(4540), 1, sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2409), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7751), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, + STATE(4578), 1, sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [124567] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9416), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(840), 1, - sym_simple_identifier, - STATE(6673), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9487), 1, + sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(612), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7802), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4580), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [124639] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4215), 14, - anon_sym_by, - anon_sym_where, + STATE(4579), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4217), 17, - anon_sym_AT, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - sym__backtick_identifier, - [124679] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [112285] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3395), 1, - sym_simple_identifier, - STATE(6669), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2405), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7758), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(8757), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603960,52 +582580,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124751] = 19, - ACTIONS(431), 1, + [112357] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9242), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(840), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(6670), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(4540), 1, sym__simple_user_type, + STATE(4578), 1, + sym_user_type, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, + sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(627), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7801), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4580), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(4576), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604013,52 +582633,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124823] = 19, - ACTIONS(345), 1, + [112429] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, - anon_sym_dynamic, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(6590), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(8125), 1, + sym__simple_user_type, + STATE(8354), 1, sym_user_type, - STATE(6620), 1, - sym_type_modifiers, - STATE(9828), 1, + STATE(9549), 1, sym_function_type_parameters, - STATE(10162), 1, + STATE(9550), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4291), 4, + STATE(8296), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604066,53 +582686,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124895] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [112501] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9464), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9495), 1, - anon_sym_interface, - STATE(3583), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6708), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7681), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8240), 1, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8171), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(8670), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604120,52 +582739,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124969] = 19, - ACTIONS(211), 1, + [112573] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9226), 1, anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3042), 1, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, sym_simple_identifier, - STATE(6674), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, + sym_user_type, + STATE(6419), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2729), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7743), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(3393), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(3643), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604173,52 +582792,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125041] = 19, - ACTIONS(515), 1, + [112645] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6600), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9832), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10197), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2922), 4, + STATE(4572), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604226,47 +582845,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125113] = 19, - ACTIONS(345), 1, + [112717] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6620), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4301), 4, + STATE(4105), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -604279,52 +582898,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125185] = 19, - ACTIONS(345), 1, + [112789] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(3366), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6620), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9828), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10162), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4147), 4, + STATE(4570), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604332,52 +582951,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125257] = 19, - ACTIONS(7567), 1, + [112861] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9386), 1, - sym__alpha_identifier, - ACTIONS(9390), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, anon_sym_dynamic, - ACTIONS(9392), 1, - sym__backtick_identifier, - STATE(6634), 1, - sym_type_modifiers, - STATE(8591), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(8598), 1, - sym__lexical_identifier, - STATE(8848), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(9335), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(10080), 1, - sym_function_type_parameters, - STATE(10089), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9242), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8583), 4, + STATE(3282), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9388), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604385,53 +583004,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125329] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [112933] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9480), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9497), 1, - anon_sym_interface, - STATE(3051), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6710), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7835), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8242), 1, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8136), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(8669), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604439,52 +583057,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125403] = 19, - ACTIONS(7560), 1, + [113005] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10000), 4, + STATE(9566), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604492,52 +583110,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125475] = 19, - ACTIONS(211), 1, + [113077] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, - anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3071), 1, - sym_user_type, - STATE(6604), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3389), 4, + STATE(9567), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604545,52 +583163,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125547] = 19, - ACTIONS(7560), 1, + [113149] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8991), 4, + STATE(8588), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604598,53 +583216,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125619] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + [113221] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9476), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9499), 1, - anon_sym_interface, - STATE(1031), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6701), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7735), 1, + ACTIONS(9222), 1, + anon_sym_dynamic, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, + sym__backtick_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(8227), 1, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5718), 1, sym__simple_user_type, + STATE(5769), 1, + sym_user_type, + STATE(6430), 1, + sym_type_modifiers, + STATE(9676), 1, + sym_parenthesized_user_type, + STATE(10064), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(5762), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8151), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(5819), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604652,52 +583269,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125693] = 19, - ACTIONS(211), 1, + [113293] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3042), 1, + STATE(812), 1, sym_simple_identifier, - STATE(6665), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(6526), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2735), 2, + STATE(607), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7615), 2, + STATE(7472), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604705,52 +583322,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125765] = 19, - ACTIONS(515), 1, + [113365] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, - anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2936), 1, - sym_user_type, - STATE(6600), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9832), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8354), 1, + sym_user_type, + STATE(9549), 1, sym_function_type_parameters, - STATE(10197), 1, + STATE(9550), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2920), 4, + STATE(8318), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604758,52 +583375,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125837] = 19, - ACTIONS(345), 1, + [113437] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(3366), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(4815), 1, sym_user_type, - STATE(6620), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4081), 4, + STATE(5224), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604811,52 +583428,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125909] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [113509] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(10099), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8988), 4, + STATE(3740), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604864,106 +583481,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125981] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + [113581] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9476), 1, - anon_sym_LPAREN, - ACTIONS(9501), 1, - anon_sym_interface, - STATE(848), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6715), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7677), 1, - sym_simple_identifier, - STATE(8244), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8203), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [126055] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(6663), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + ACTIONS(9238), 1, + anon_sym_dynamic, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, + sym_simple_identifier, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, + STATE(4665), 1, + sym_user_type, + STATE(6440), 1, + sym_type_modifiers, + STATE(9741), 1, + sym_function_type_parameters, + STATE(9901), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2724), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7614), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4663), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(5422), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604971,105 +583534,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126127] = 19, - ACTIONS(515), 1, + [113653] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6600), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9832), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10197), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2960), 4, + STATE(4571), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1842), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [113725] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5181), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(5179), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [126199] = 19, - ACTIONS(345), 1, + [113765] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6620), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4082), 4, + STATE(3180), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605077,52 +583677,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126271] = 19, - ACTIONS(7560), 1, + [113837] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8986), 4, + STATE(8691), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605130,52 +583730,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126343] = 19, - ACTIONS(7560), 1, + [113909] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9051), 4, + STATE(8744), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605183,52 +583783,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126415] = 19, - ACTIONS(515), 1, + [113981] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(2973), 1, sym_user_type, - STATE(6600), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2919), 4, + STATE(3191), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605236,52 +583836,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126487] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [114053] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(10099), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8980), 4, + STATE(3214), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605289,52 +583889,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126559] = 19, - ACTIONS(515), 1, + [114125] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, - anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2936), 1, - sym_user_type, - STATE(6600), 1, + STATE(6523), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(616), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7505), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2917), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1910), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605342,52 +583942,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126631] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [114197] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9248), 1, + sym__alpha_identifier, + ACTIONS(9250), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9254), 1, anon_sym_dynamic, - STATE(3366), 1, + ACTIONS(9256), 1, + sym__backtick_identifier, + STATE(5602), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(5617), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(5748), 1, + sym__simple_user_type, + STATE(5784), 1, sym_user_type, - STATE(6620), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9753), 1, sym_parenthesized_user_type, + STATE(10117), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(5785), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4083), 4, + STATE(5824), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605395,52 +583995,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126703] = 19, - ACTIONS(515), 1, + [114269] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, - anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2936), 1, - sym_user_type, - STATE(6600), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2916), 4, + STATE(9738), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605448,52 +584048,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126775] = 19, - ACTIONS(211), 1, + [114341] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9428), 1, - anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3042), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(6660), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(6507), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1878), 2, + STATE(2391), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7838), 2, + STATE(7598), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605501,52 +584101,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126847] = 19, - ACTIONS(515), 1, + [114413] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, - anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2936), 1, - sym_user_type, - STATE(6600), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2956), 4, + STATE(8668), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605554,101 +584154,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126919] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9480), 1, - anon_sym_LPAREN, - ACTIONS(9503), 1, - anon_sym_interface, - STATE(3725), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6727), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7774), 1, - sym_simple_identifier, - STATE(8119), 1, - sym__simple_user_type, + [114485] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8183), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(7145), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7143), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [126993] = 19, - ACTIONS(345), 1, + [114525] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6620), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3811), 4, + STATE(4109), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -605661,52 +584244,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127065] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [114597] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(6641), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1857), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7765), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(9821), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605714,52 +584297,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127137] = 19, - ACTIONS(7567), 1, + [114669] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9466), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9491), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9493), 1, - anon_sym_dynamic, - STATE(2904), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2945), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2965), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(3346), 1, + STATE(8332), 1, sym_user_type, - STATE(6611), 1, - sym_type_modifiers, - STATE(9931), 1, - sym_function_type_parameters, - STATE(10238), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3343), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3781), 4, + STATE(8666), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9470), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605767,52 +584350,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127209] = 19, - ACTIONS(7560), 1, + [114741] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8929), 4, + STATE(9994), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605820,52 +584403,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127281] = 19, - ACTIONS(7560), 1, + [114813] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9842), 4, + STATE(8694), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605873,52 +584456,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127353] = 19, - ACTIONS(431), 1, + [114885] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(874), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6602), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(859), 4, + STATE(4117), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605926,52 +584509,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127425] = 19, - ACTIONS(515), 1, + [114957] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(2973), 1, sym_user_type, - STATE(6600), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3205), 4, + STATE(3285), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605979,52 +584562,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127497] = 19, - ACTIONS(7560), 1, + [115029] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9625), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115101] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9222), 1, + anon_sym_dynamic, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, + sym_simple_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, + sym__simple_user_type, + STATE(8324), 1, + sym_user_type, + STATE(9645), 1, + sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8915), 4, + STATE(9432), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606032,52 +584668,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127569] = 19, - ACTIONS(7560), 1, + [115173] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8950), 4, + STATE(8675), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606085,52 +584721,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127641] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [115245] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(874), 1, + STATE(4665), 1, sym_user_type, - STATE(6602), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9938), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(10244), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(858), 4, + STATE(4720), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606138,52 +584774,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127713] = 19, - ACTIONS(515), 1, + [115317] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6600), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9832), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10197), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2955), 4, + STATE(4976), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606191,53 +584827,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127785] = 20, - ACTIONS(8824), 1, + [115389] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9464), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9505), 1, - anon_sym_interface, - STATE(3820), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(6716), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(3392), 1, + sym_user_type, + STATE(6419), 1, sym_type_modifiers, - STATE(7766), 1, - sym_simple_identifier, - STATE(8157), 1, - sym__simple_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(3393), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8125), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(3425), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606245,52 +584880,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127859] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [115461] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3395), 1, - sym_simple_identifier, - STATE(6658), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2728), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7607), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(8756), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606298,52 +584933,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127931] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [115533] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(10099), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8939), 4, + STATE(3427), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606351,105 +584986,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128003] = 19, - ACTIONS(7560), 1, + [115605] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8938), 4, + STATE(8734), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115677] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5185), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(5183), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [128075] = 19, - ACTIONS(431), 1, + [115717] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(874), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6602), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(857), 4, + STATE(3870), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606457,52 +585129,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128147] = 19, - ACTIONS(345), 1, + [115789] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3395), 1, + STATE(812), 1, sym_simple_identifier, - STATE(6655), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(6498), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2658), 2, + STATE(444), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7632), 2, + STATE(7488), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606510,52 +585182,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128219] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [115861] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8936), 4, + STATE(3086), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606563,52 +585235,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128291] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9466), 1, + [115933] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9491), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9493), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2904), 1, - sym__lexical_identifier, - STATE(2945), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2965), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(3346), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6611), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9931), 1, - sym_function_type_parameters, - STATE(10238), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3343), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3753), 4, + STATE(3727), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9470), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606616,52 +585288,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128363] = 19, - ACTIONS(431), 1, + [116005] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4179), 14, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(4181), 17, anon_sym_AT, - ACTIONS(9360), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(9362), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + [116045] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - STATE(829), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(841), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(874), 1, + STATE(8332), 1, sym_user_type, - STATE(6602), 1, - sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(855), 4, + STATE(8712), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606669,52 +585378,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128435] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [116117] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(874), 1, + STATE(4665), 1, sym_user_type, - STATE(6602), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9938), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(10244), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(854), 4, + STATE(5377), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606722,52 +585431,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128507] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [116189] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(10099), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8921), 4, + STATE(3729), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606775,52 +585484,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128579] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [116261] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8924), 4, + STATE(2994), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606828,52 +585537,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128651] = 19, - ACTIONS(7560), 1, + [116333] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8926), 4, + STATE(8759), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606881,52 +585590,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128723] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [116405] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(860), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8927), 4, + STATE(1177), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606934,52 +585643,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128795] = 19, - ACTIONS(515), 1, - sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [116477] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9248), 1, + sym__alpha_identifier, + ACTIONS(9250), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9254), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9256), 1, + sym__backtick_identifier, + STATE(5602), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(5617), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__simple_user_type, + STATE(5784), 1, sym_user_type, - STATE(6600), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(9753), 1, sym_parenthesized_user_type, + STATE(10117), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(5785), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3332), 4, + STATE(5834), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606987,52 +585696,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128867] = 19, - ACTIONS(7567), 1, + [116549] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9406), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9410), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - ACTIONS(9430), 1, - sym__alpha_identifier, - ACTIONS(9434), 1, - sym__backtick_identifier, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5848), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(6632), 1, - sym_type_modifiers, - STATE(8229), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8590), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(9945), 1, - sym_function_type_parameters, - STATE(10085), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5969), 4, + STATE(3734), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9432), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607040,52 +585749,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128939] = 19, - ACTIONS(7560), 1, + [116621] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8925), 4, + STATE(8788), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607093,47 +585802,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129011] = 19, - ACTIONS(115), 1, + [116693] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6630), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4835), 4, + STATE(4849), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -607146,52 +585855,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129083] = 19, - ACTIONS(7), 1, + [116765] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4726), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(4578), 1, sym_user_type, - STATE(6617), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5236), 4, + STATE(4850), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607199,52 +585908,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129155] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [116837] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(4578), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8586), 4, + STATE(4858), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607252,158 +585961,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129227] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, - sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, + [116909] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9048), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + ACTIONS(4004), 14, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [129299] = 19, - ACTIONS(345), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(4009), 17, + anon_sym_AT, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + [116949] = 19, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(3681), 1, - sym_user_type, - STATE(6620), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(6467), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(2410), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7456), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4115), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [129371] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117021] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - STATE(4726), 1, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(8324), 1, sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, + STATE(9645), 1, sym_parenthesized_user_type, - STATE(10095), 1, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5373), 4, + STATE(5800), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607411,105 +586104,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129443] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + [117093] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9406), 1, - anon_sym_LPAREN, - ACTIONS(9410), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9430), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9192), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, sym__backtick_identifier, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5848), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(6632), 1, + STATE(5694), 1, + sym__lexical_identifier, + STATE(6501), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(8229), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8590), 1, - sym_user_type, - STATE(9945), 1, - sym_function_type_parameters, - STATE(10085), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(5431), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7415), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8604), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9432), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9196), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117165] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7173), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7171), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [129515] = 19, - ACTIONS(515), 1, + [117205] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2936), 1, + STATE(4815), 1, sym_user_type, - STATE(6600), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3006), 4, + STATE(5184), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607517,52 +586247,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129587] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [117277] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(4578), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9047), 4, + STATE(4762), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607570,47 +586300,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129659] = 19, - ACTIONS(345), 1, + [117349] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6620), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3819), 4, + STATE(3431), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -607623,52 +586353,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129731] = 19, - ACTIONS(7), 1, + [117421] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(8332), 1, sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5282), 4, + STATE(8760), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607676,52 +586406,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129803] = 19, - ACTIONS(345), 1, + [117493] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, - anon_sym_dynamic, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6620), 1, - sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4257), 4, + STATE(8731), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607729,47 +586459,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129875] = 19, - ACTIONS(345), 1, + [117565] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6620), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4271), 4, + STATE(3432), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -607782,52 +586512,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129947] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [117637] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(10099), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9035), 4, + STATE(4189), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607835,52 +586565,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130019] = 19, - ACTIONS(345), 1, + [117709] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(3366), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(2840), 1, sym_user_type, - STATE(6620), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9828), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(10162), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4294), 4, + STATE(3604), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607888,52 +586618,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130091] = 19, - ACTIONS(345), 1, + [117781] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, - anon_sym_dynamic, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6620), 1, - sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4296), 4, + STATE(8318), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607941,52 +586671,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130163] = 19, - ACTIONS(7567), 1, + [117853] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9466), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9491), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9493), 1, - anon_sym_dynamic, - STATE(2904), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2945), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2965), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(3346), 1, + STATE(8332), 1, sym_user_type, - STATE(6611), 1, - sym_type_modifiers, - STATE(9931), 1, - sym_function_type_parameters, - STATE(10238), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3343), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3623), 4, + STATE(8697), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9470), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607994,52 +586724,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130235] = 19, - ACTIONS(515), 1, + [117925] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(3392), 1, sym_user_type, - STATE(6600), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3213), 4, + STATE(3455), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608047,52 +586777,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130307] = 19, - ACTIONS(345), 1, + [117997] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3395), 1, + STATE(812), 1, sym_simple_identifier, - STATE(6672), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(6492), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2753), 2, + STATE(443), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7623), 2, + STATE(7483), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608100,47 +586830,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130379] = 19, - ACTIONS(515), 1, + [118069] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2936), 1, + STATE(2840), 1, sym_user_type, - STATE(6600), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9832), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(10197), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3214), 4, + STATE(2962), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -608153,52 +586883,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130451] = 19, - ACTIONS(515), 1, + [118141] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(2973), 1, sym_user_type, - STATE(6600), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3217), 4, + STATE(3911), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608206,52 +586936,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130523] = 19, - ACTIONS(345), 1, + [118213] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9368), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3681), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6620), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9828), 1, - sym_function_type_parameters, - STATE(10162), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3683), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3925), 4, + STATE(3918), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608259,52 +586989,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130595] = 19, - ACTIONS(515), 1, + [118285] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, - anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2936), 1, - sym_user_type, - STATE(6600), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3243), 4, + STATE(8636), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608312,52 +587042,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130667] = 19, - ACTIONS(515), 1, - sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [118357] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(2936), 1, - sym_user_type, - STATE(6600), 1, + STATE(5686), 1, + sym_simple_identifier, + STATE(6429), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10197), 1, + STATE(7891), 1, + sym__simple_user_type, + STATE(8324), 1, + sym_user_type, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3256), 4, + STATE(9294), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608365,52 +587095,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130739] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [118429] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10260), 4, + STATE(3057), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608418,52 +587148,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130811] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [118501] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(10099), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9072), 4, + STATE(3980), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608471,47 +587201,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130883] = 19, - ACTIONS(515), 1, + [118573] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2936), 1, + STATE(2840), 1, sym_user_type, - STATE(6600), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9832), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(10197), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3296), 4, + STATE(2956), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -608524,52 +587254,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130955] = 19, - ACTIONS(7), 1, + [118645] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5161), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(5159), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [118685] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4726), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6617), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5333), 4, + STATE(2957), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608577,47 +587344,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131027] = 19, - ACTIONS(115), 1, + [118757] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6630), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4771), 4, + STATE(5350), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -608630,107 +587397,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131099] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9344), 1, - anon_sym_LPAREN, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9507), 1, - anon_sym_interface, - STATE(5015), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6735), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7732), 1, - sym_simple_identifier, - STATE(8261), 1, - sym__simple_user_type, + [118829] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8145), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(7189), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7187), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [131173] = 20, - ACTIONS(8824), 1, + [118869] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9480), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9509), 1, - anon_sym_interface, - STATE(3725), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(6745), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7746), 1, - sym_simple_identifier, - STATE(8119), 1, + STATE(4678), 1, sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8234), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(5100), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608738,52 +587487,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131247] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, + [118941] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9266), 1, + sym__backtick_identifier, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(3032), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(3042), 1, + STATE(2926), 1, sym_simple_identifier, - STATE(6679), 1, + STATE(6460), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2500), 2, + STATE(2269), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7744), 2, + STATE(7595), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1630), 7, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608791,52 +587540,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131319] = 19, - ACTIONS(431), 1, + [119013] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(841), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(874), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6602), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1013), 4, + STATE(3050), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608844,52 +587593,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131391] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [119085] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(4578), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9084), 4, + STATE(5319), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608897,52 +587646,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131463] = 19, - ACTIONS(7560), 1, + [119157] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9791), 4, + STATE(8726), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608950,52 +587699,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131535] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9406), 1, - anon_sym_LPAREN, - ACTIONS(9410), 1, - anon_sym_dynamic, - ACTIONS(9430), 1, + [119229] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5848), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, - STATE(6632), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6491), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(8229), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8590), 1, - sym_user_type, - STATE(9945), 1, - sym_function_type_parameters, - STATE(10085), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(2615), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7498), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8612), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9432), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609003,52 +587752,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131607] = 19, + [119301] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(2973), 1, sym_user_type, - STATE(6630), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4838), 4, + STATE(3045), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609056,52 +587805,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131679] = 19, - ACTIONS(7), 1, + [119373] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6617), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9753), 1, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5727), 4, + STATE(3360), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609109,52 +587858,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131751] = 19, - ACTIONS(515), 1, + [119445] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9372), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2936), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6600), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9832), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10197), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3259), 4, + STATE(5320), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609162,52 +587911,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131823] = 19, - ACTIONS(7560), 1, + [119517] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10163), 4, + STATE(8728), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609215,212 +587964,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131895] = 19, - ACTIONS(211), 1, + [119589] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, - anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(6688), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2480), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7753), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [131967] = 20, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9380), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9511), 1, - anon_sym_interface, - STATE(5075), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6699), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7645), 1, - sym_simple_identifier, - STATE(8249), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8228), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [132041] = 19, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9454), 1, - sym__alpha_identifier, - ACTIONS(9456), 1, - anon_sym_LPAREN, - ACTIONS(9460), 1, - sym__backtick_identifier, - STATE(5843), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5852), 1, - sym_simple_identifier, - STATE(6682), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(2796), 1, sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5648), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7734), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9458), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [132113] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(4970), 1, + STATE(2840), 1, sym_user_type, - STATE(6617), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5729), 4, + STATE(2951), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609428,52 +588017,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132185] = 19, + [119661] = 19, ACTIONS(211), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6604), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9757), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10178), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3467), 4, + STATE(5322), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609481,52 +588070,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132257] = 19, - ACTIONS(7), 1, + [119733] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(8332), 1, sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5706), 4, + STATE(8729), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609534,52 +588123,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132329] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9406), 1, - anon_sym_LPAREN, - ACTIONS(9410), 1, + [119805] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9430), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5842), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(6632), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8229), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, - STATE(8590), 1, + STATE(8332), 1, sym_user_type, - STATE(9945), 1, - sym_function_type_parameters, - STATE(10085), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8606), 4, + STATE(9602), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9432), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609587,52 +588176,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132401] = 19, - ACTIONS(115), 1, + [119877] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4696), 1, - sym_user_type, - STATE(6630), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5674), 4, + STATE(8792), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609640,105 +588229,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132473] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4696), 1, - sym_user_type, - STATE(6630), 1, - sym_type_modifiers, - STATE(9956), 1, - sym_parenthesized_user_type, - STATE(10042), 1, - sym_function_type_parameters, + [119949] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7464), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5662), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1842), 7, + ACTIONS(5189), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(5187), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [132545] = 19, + [119989] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4696), 1, + STATE(2973), 1, sym_user_type, - STATE(6630), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9956), 1, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5659), 4, + STATE(3044), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609746,52 +588319,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132617] = 19, - ACTIONS(211), 1, + [120061] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(2996), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3071), 1, + STATE(2840), 1, sym_user_type, - STATE(6604), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9757), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(10178), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3496), 4, + STATE(2949), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609799,52 +588372,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132689] = 19, - ACTIONS(7), 1, + [120133] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4726), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(4578), 1, sym_user_type, - STATE(6617), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5625), 4, + STATE(4863), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609852,52 +588425,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132761] = 19, - ACTIONS(345), 1, + [120205] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3395), 1, + STATE(812), 1, sym_simple_identifier, - STATE(6687), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(6476), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2752), 2, + STATE(597), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7610), 2, + STATE(7491), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609905,52 +588478,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132833] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [120277] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(4665), 1, sym_user_type, - STATE(6617), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9741), 1, sym_function_type_parameters, + STATE(9901), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5027), 4, + STATE(5337), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609958,53 +588531,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132905] = 20, - ACTIONS(8824), 1, + [120349] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9476), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9513), 1, - anon_sym_interface, - STATE(1031), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6719), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7795), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8227), 1, + STATE(4540), 1, sym__simple_user_type, + STATE(4578), 1, + sym_user_type, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, + sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(4580), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8139), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(5325), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610012,52 +588584,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132979] = 19, - ACTIONS(431), 1, + [120421] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(829), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(874), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6602), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9938), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(10244), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2099), 4, + STATE(2824), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610065,52 +588637,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133051] = 19, - ACTIONS(431), 1, + [120493] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(829), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(874), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6602), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9938), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(10244), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2132), 4, + STATE(3271), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610118,52 +588690,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133123] = 19, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9466), 1, + [120565] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9491), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9493), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2904), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2945), 1, - sym_simple_identifier, - STATE(2965), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3346), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6611), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9931), 1, - sym_function_type_parameters, - STATE(10238), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3343), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3805), 4, + STATE(4948), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9470), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610171,52 +588743,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133195] = 19, - ACTIONS(431), 1, + [120637] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(829), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(874), 1, + STATE(4578), 1, sym_user_type, - STATE(6602), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9938), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10244), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1526), 4, + STATE(4866), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610224,52 +588796,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133267] = 19, - ACTIONS(7), 1, + [120709] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6617), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9753), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5632), 4, + STATE(3987), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610277,52 +588849,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133339] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, + [120781] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, - anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(829), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9285), 1, + sym__alpha_identifier, + ACTIONS(9287), 1, + anon_sym_LPAREN, + ACTIONS(9291), 1, + sym__backtick_identifier, + STATE(5682), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(5690), 1, sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(874), 1, - sym_user_type, - STATE(6602), 1, + STATE(6505), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10244), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(5513), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7538), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1062), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9289), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610330,52 +588902,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133411] = 19, - ACTIONS(7560), 1, + [120853] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8354), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9549), 1, sym_function_type_parameters, + STATE(9550), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10016), 4, + STATE(8369), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610383,52 +588955,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133483] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [120925] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10020), 4, + STATE(3257), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610436,52 +589008,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133555] = 19, - ACTIONS(431), 1, + [120997] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(829), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(874), 1, + STATE(4578), 1, sym_user_type, - STATE(6602), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9938), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10244), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1064), 4, + STATE(5117), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610489,52 +589061,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133627] = 19, - ACTIONS(211), 1, + [121069] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, - anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3071), 1, - sym_user_type, - STATE(6604), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4237), 4, + STATE(8642), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610542,52 +589114,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133699] = 19, - ACTIONS(211), 1, + [121141] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(2973), 1, sym_user_type, - STATE(6604), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4223), 4, + STATE(3038), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610595,52 +589167,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133771] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [121213] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(10099), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9054), 4, + STATE(3054), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610648,52 +589220,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133843] = 19, - ACTIONS(7), 1, + [121285] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4726), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(4578), 1, sym_user_type, - STATE(6617), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5582), 4, + STATE(5206), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610701,52 +589273,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133915] = 19, - ACTIONS(211), 1, + [121357] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6474), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2169), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7594), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121429] = 19, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2996), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(3392), 1, sym_user_type, - STATE(6604), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4222), 4, + STATE(4165), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610754,52 +589379,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133987] = 19, - ACTIONS(211), 1, + [121501] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2996), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(3392), 1, sym_user_type, - STATE(6604), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4232), 4, + STATE(4169), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610807,52 +589432,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134059] = 19, - ACTIONS(7567), 1, + [121573] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9394), 1, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(9396), 1, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9400), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - ACTIONS(9402), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - STATE(4650), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(4657), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(4548), 1, sym__simple_user_type, - STATE(4777), 1, + STATE(4665), 1, sym_user_type, - STATE(6623), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9901), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(10230), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4768), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5319), 4, + STATE(4925), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9398), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610860,52 +589485,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134131] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [121645] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(10099), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9040), 4, + STATE(4173), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610913,52 +589538,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134203] = 19, - ACTIONS(431), 1, + [121717] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9360), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(829), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(874), 1, + STATE(4578), 1, sym_user_type, - STATE(6602), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9938), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10244), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(844), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(974), 4, + STATE(5059), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610966,52 +589591,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134275] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [121789] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6470), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(8161), 1, - sym_simple_identifier, - STATE(8498), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(2173), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7600), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10068), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611019,52 +589644,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134347] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, + [121861] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, + ACTIONS(9222), 1, + anon_sym_dynamic, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8324), 1, sym_user_type, - STATE(10099), 1, + STATE(9645), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10070), 4, + STATE(9359), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611072,52 +589697,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134419] = 19, - ACTIONS(7560), 1, + [121933] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8332), 1, sym_user_type, - STATE(10099), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10153), 4, + STATE(9578), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611125,52 +589750,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134491] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [122005] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4665), 1, sym_user_type, - STATE(6604), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9757), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(10178), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3596), 4, + STATE(4937), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611178,52 +589803,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134563] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [122077] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9248), 1, + sym__alpha_identifier, + ACTIONS(9250), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9254), 1, anon_sym_dynamic, - STATE(4726), 1, + ACTIONS(9256), 1, + sym__backtick_identifier, + STATE(5602), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(5617), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(5748), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(5784), 1, sym_user_type, - STATE(6617), 1, + STATE(6449), 1, sym_type_modifiers, STATE(9753), 1, sym_parenthesized_user_type, - STATE(10095), 1, + STATE(10117), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(5785), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5096), 4, + STATE(5817), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611231,52 +589856,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134635] = 19, - ACTIONS(7560), 1, + [122149] = 19, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, + sym__lexical_identifier, + STATE(6466), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(436), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7510), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122221] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(4578), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9034), 4, + STATE(4819), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611284,52 +589962,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134707] = 19, - ACTIONS(7560), 1, + [122293] = 19, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, + sym__lexical_identifier, + STATE(6464), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(437), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7504), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122365] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(860), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10152), 4, + STATE(887), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611337,52 +590068,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134779] = 19, - ACTIONS(7), 1, + [122437] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4726), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(860), 1, sym_user_type, - STATE(6617), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5285), 4, + STATE(900), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611390,52 +590121,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134851] = 19, - ACTIONS(7567), 1, + [122509] = 19, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9406), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9410), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - ACTIONS(9430), 1, - sym__alpha_identifier, - ACTIONS(9434), 1, - sym__backtick_identifier, - STATE(5842), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(6632), 1, - sym_type_modifiers, - STATE(8229), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8590), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(9945), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, - STATE(10085), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5894), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5949), 4, + STATE(2945), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9432), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611443,52 +590174,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134923] = 19, - ACTIONS(7), 1, + [122581] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_dynamic, - STATE(4726), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(8332), 1, sym_user_type, - STATE(6617), 1, - sym_type_modifiers, - STATE(9753), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5256), 4, + STATE(8784), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611496,53 +590227,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134995] = 20, - ACTIONS(8824), 1, + [122653] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9344), 1, - anon_sym_LPAREN, - ACTIONS(9346), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9515), 1, - anon_sym_interface, - STATE(5105), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(6697), 1, + STATE(6463), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7760), 1, - sym_simple_identifier, - STATE(8210), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8176), 2, + STATE(435), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7490), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611550,52 +590280,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135069] = 19, + [122725] = 19, ACTIONS(211), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6604), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9757), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(10178), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4210), 4, + STATE(5034), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611603,52 +590333,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135141] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, - anon_sym_suspend, - ACTIONS(8824), 1, + [122797] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(6633), 1, + STATE(6453), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(431), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7473), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122869] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + sym__backtick_identifier, + STATE(6422), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(8325), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8551), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(8921), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9494), 1, sym_function_type_parameters, + STATE(9703), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, + STATE(8825), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10096), 4, + STATE(8296), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611656,52 +590439,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135213] = 19, - ACTIONS(7560), 1, - anon_sym_dynamic, - ACTIONS(7567), 1, + [122941] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9258), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9260), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + ACTIONS(9264), 1, + anon_sym_dynamic, + ACTIONS(9266), 1, + sym__backtick_identifier, + STATE(2826), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(2853), 1, + sym__lexical_identifier, + STATE(2881), 1, sym__simple_user_type, - STATE(8597), 1, + STATE(3064), 1, sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, + STATE(6448), 1, + sym_type_modifiers, + STATE(9673), 1, sym_function_type_parameters, + STATE(9910), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8493), 2, + STATE(3066), 2, sym__type_reference, sym_parenthesized_type, - STATE(7464), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10097), 4, + STATE(3446), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611709,52 +590492,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135285] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7567), 1, + [123013] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9260), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9264), 1, anon_sym_dynamic, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + ACTIONS(9266), 1, + sym__backtick_identifier, + STATE(2826), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(2853), 1, + sym__lexical_identifier, + STATE(2881), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(3064), 1, sym_user_type, - STATE(6617), 1, + STATE(6448), 1, sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9673), 1, sym_function_type_parameters, + STATE(9910), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(3066), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5623), 4, + STATE(3518), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611762,52 +590545,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135357] = 19, - ACTIONS(7560), 1, + [123085] = 19, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7567), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8824), 1, + ACTIONS(9285), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9287), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - STATE(6406), 1, + ACTIONS(9291), 1, + sym__backtick_identifier, + STATE(5682), 1, sym__lexical_identifier, - STATE(6633), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(5690), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(6475), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, sym__simple_user_type, - STATE(8597), 1, - sym_user_type, - STATE(10099), 1, - sym_parenthesized_user_type, - STATE(10100), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(5519), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7593), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8493), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7464), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8989), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8834), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9289), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611815,52 +590598,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135429] = 19, - ACTIONS(211), 1, + [123157] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3071), 1, + STATE(4815), 1, sym_user_type, - STATE(6604), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10178), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3043), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3495), 4, + STATE(4913), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611868,52 +590651,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135501] = 19, - ACTIONS(7), 1, + [123229] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7567), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4726), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4970), 1, + STATE(860), 1, sym_user_type, - STATE(6617), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5019), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5579), 4, + STATE(901), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611921,52 +590704,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135573] = 19, - ACTIONS(7567), 1, + [123301] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9394), 1, - sym__alpha_identifier, - ACTIONS(9396), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9400), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - ACTIONS(9402), 1, - sym__backtick_identifier, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4777), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6623), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9901), 1, - sym_function_type_parameters, - STATE(10230), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4768), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5377), 4, + STATE(5427), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9398), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611974,51 +590757,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135645] = 19, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [123373] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9517), 1, - anon_sym_interface, - ACTIONS(9519), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6700), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7696), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(8125), 1, sym__simple_user_type, + STATE(8354), 1, + sym_user_type, + STATE(9549), 1, + sym_function_type_parameters, + STATE(9550), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8221), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(8380), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612026,51 +590810,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135716] = 19, - ACTIONS(8824), 1, + [123445] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9521), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(6732), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7827), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(4678), 1, sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8209), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(4914), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612078,51 +590863,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135787] = 19, - ACTIONS(515), 1, + [123517] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9370), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9523), 1, - anon_sym_dynamic, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2910), 1, - sym_user_type, - STATE(7770), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(9832), 1, - sym_function_type_parameters, - STATE(10201), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2893), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(3055), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1910), 7, + STATE(8672), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612130,51 +590916,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135858] = 19, - ACTIONS(8824), 1, + [123589] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9525), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(6698), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(3392), 1, + sym_user_type, + STATE(6419), 1, sym_type_modifiers, - STATE(7733), 1, - sym_simple_identifier, - STATE(8104), 1, - sym__simple_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(3393), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8152), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(4257), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612182,51 +590969,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135929] = 19, - ACTIONS(431), 1, + [123661] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9360), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9527), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(841), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(861), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(7784), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9938), 1, - sym_function_type_parameters, - STATE(10247), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(868), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(1009), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1664), 7, + STATE(4208), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612234,51 +591022,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136000] = 19, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [123733] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9529), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6709), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7836), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8148), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(8667), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612286,51 +591075,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136071] = 19, - ACTIONS(211), 1, + [123805] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9374), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9531), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3131), 1, + STATE(4815), 1, sym_user_type, - STATE(7768), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9757), 1, - sym_function_type_parameters, - STATE(10183), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3060), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(3410), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1630), 7, + STATE(5451), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612338,51 +591128,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136142] = 19, - ACTIONS(8824), 1, + [123877] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9533), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(6713), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7630), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(4678), 1, sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8252), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(5433), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612390,51 +591181,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136213] = 19, - ACTIONS(8824), 1, + [123949] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, - anon_sym_LPAREN, - ACTIONS(9535), 1, - anon_sym_interface, - STATE(6406), 1, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(6702), 1, + STATE(6515), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7767), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8146), 2, + STATE(2350), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7361), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612442,51 +591234,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136284] = 19, - ACTIONS(8824), 1, + [124021] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9537), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6737), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7807), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(825), 1, sym__simple_user_type, + STATE(860), 1, + sym_user_type, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, + sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(851), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8185), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(973), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612494,51 +591287,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136355] = 19, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9440), 1, + [124093] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(9442), 1, - anon_sym_LPAREN, - ACTIONS(9448), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(5775), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(5776), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(5904), 1, - sym__simple_user_type, - STATE(5944), 1, - sym_user_type, - STATE(7742), 1, + STATE(6455), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9898), 1, - sym_function_type_parameters, - STATE(10140), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5930), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(8094), 2, + STATE(2727), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7444), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(5980), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9444), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612546,51 +591340,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136426] = 19, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [124165] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9541), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6714), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7781), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8127), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(8676), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612598,51 +591393,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136497] = 19, - ACTIONS(8824), 1, + [124237] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9543), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(6723), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(3392), 1, + sym_user_type, + STATE(6419), 1, sym_type_modifiers, - STATE(7711), 1, - sym_simple_identifier, - STATE(8104), 1, - sym__simple_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(3393), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8204), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(4195), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612650,51 +591446,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136568] = 19, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, + [124309] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9466), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9258), 1, sym__alpha_identifier, - ACTIONS(9472), 1, - sym__backtick_identifier, - ACTIONS(9491), 1, + ACTIONS(9260), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9264), 1, anon_sym_dynamic, - STATE(2904), 1, - sym__lexical_identifier, - STATE(2945), 1, + ACTIONS(9266), 1, + sym__backtick_identifier, + STATE(2826), 1, sym_simple_identifier, - STATE(2965), 1, + STATE(2853), 1, + sym__lexical_identifier, + STATE(2881), 1, sym__simple_user_type, - STATE(3295), 1, + STATE(3064), 1, sym_user_type, - STATE(7779), 1, + STATE(6448), 1, sym_type_modifiers, - STATE(9931), 1, + STATE(9673), 1, sym_function_type_parameters, - STATE(10239), 1, + STATE(9910), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3288), 2, + STATE(3066), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(3509), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9470), 7, + STATE(3606), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612702,51 +591499,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136639] = 19, - ACTIONS(8824), 1, + [124381] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9547), 1, - anon_sym_interface, - STATE(6406), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(6741), 1, + STATE(6465), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7650), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8166), 2, + STATE(614), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7512), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612754,51 +591552,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136710] = 19, - ACTIONS(8824), 1, + [124453] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9549), 1, - anon_sym_dynamic, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(7625), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8478), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, - STATE(8608), 1, + STATE(8332), 1, sym_user_type, - STATE(10086), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10123), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8442), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8559), 3, + STATE(8640), 4, + sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612806,51 +591605,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136781] = 19, - ACTIONS(8824), 1, + [124525] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9551), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6711), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7622), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(825), 1, sym__simple_user_type, + STATE(860), 1, + sym_user_type, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, + sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(851), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8224), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(991), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612858,51 +591658,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136852] = 19, - ACTIONS(8824), 1, + [124597] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9553), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6724), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7794), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(2796), 1, sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, + sym_user_type, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, + sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(2812), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8194), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(3205), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612910,51 +591711,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136923] = 19, - ACTIONS(8824), 1, + [124669] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, - anon_sym_LPAREN, - ACTIONS(9555), 1, - anon_sym_interface, - STATE(6406), 1, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(6743), 1, + STATE(6528), 1, sym_type_parameters, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7754), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8219), 2, + STATE(2346), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7363), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612962,50 +591764,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136994] = 19, + [124741] = 19, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9382), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9557), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4726), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4880), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(7747), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(10053), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(10095), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4969), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(5213), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, + STATE(5396), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, ACTIONS(1920), 7, anon_sym_get, anon_sym_set, @@ -613014,51 +591817,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137065] = 19, - ACTIONS(8824), 1, + [124813] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9559), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6742), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7686), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(4540), 1, sym__simple_user_type, + STATE(4578), 1, + sym_user_type, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, + sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(4580), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8174), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(5098), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613066,51 +591870,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137136] = 19, - ACTIONS(8824), 1, + [124885] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9561), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(6721), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7635), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(4678), 1, sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8169), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(5042), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613118,51 +591923,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137207] = 19, - ACTIONS(345), 1, + [124957] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9563), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(3366), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3668), 1, + STATE(2840), 1, sym_user_type, - STATE(7761), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9828), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(10170), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3464), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(3833), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1652), 7, + STATE(3067), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613170,103 +591976,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137278] = 19, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [125029] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, - anon_sym_LPAREN, - ACTIONS(9565), 1, - anon_sym_interface, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6707), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7749), 1, - sym_simple_identifier, - STATE(8104), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8195), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [137349] = 19, - ACTIONS(8824), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9567), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6729), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7782), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8184), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(9826), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613274,51 +592029,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137420] = 19, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, + [125101] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9394), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(9396), 1, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9402), 1, - sym__backtick_identifier, - ACTIONS(9569), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(5686), 1, + sym_simple_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(4784), 1, + STATE(8324), 1, sym_user_type, - STATE(7775), 1, - sym_type_modifiers, - STATE(9901), 1, - sym_function_type_parameters, - STATE(10233), 1, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4744), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(5030), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9398), 7, + STATE(8356), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613326,51 +592082,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137491] = 19, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [125173] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9571), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6706), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7820), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8141), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(8753), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613378,51 +592135,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137562] = 19, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [125245] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9573), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6722), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7661), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8113), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(8679), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613430,51 +592188,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137633] = 19, - ACTIONS(8824), 1, + [125317] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9575), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(6694), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7831), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(4678), 1, sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8137), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(4917), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613482,51 +592241,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137704] = 19, - ACTIONS(8824), 1, + [125389] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9577), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(6736), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7730), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(4678), 1, sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8147), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(5389), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613534,51 +592294,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137775] = 19, - ACTIONS(8824), 1, + [125461] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9579), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6738), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7725), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(2796), 1, sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, + sym_user_type, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, + sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(2812), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8120), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(3269), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613586,51 +592347,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137846] = 19, - ACTIONS(8824), 1, + [125533] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9581), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(6747), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7624), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(4678), 1, sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8211), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(5383), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613638,51 +592400,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137917] = 19, - ACTIONS(115), 1, + [125605] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9583), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4682), 1, + STATE(4815), 1, sym_user_type, - STATE(7655), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9961), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4683), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(4793), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1842), 7, + STATE(5379), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613690,103 +592453,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137988] = 19, - ACTIONS(8824), 1, + [125677] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, - anon_sym_LPAREN, - ACTIONS(9585), 1, - anon_sym_interface, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6748), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7687), 1, - sym_simple_identifier, - STATE(8104), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8178), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [138059] = 19, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9406), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9430), 1, - sym__alpha_identifier, - ACTIONS(9434), 1, - sym__backtick_identifier, - ACTIONS(9587), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(5842), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(7626), 1, - sym_type_modifiers, - STATE(8229), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8595), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(9945), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, - STATE(10008), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5913), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(5935), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9432), 7, + STATE(3152), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613794,51 +592506,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138130] = 19, - ACTIONS(8824), 1, + [125749] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9215), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9549), 1, - anon_sym_dynamic, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7706), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8498), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8596), 1, + STATE(8332), 1, sym_user_type, - STATE(9840), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10100), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8442), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8559), 3, + STATE(8634), 4, + sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613846,51 +592559,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138201] = 19, - ACTIONS(9215), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9386), 1, + [125821] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9589), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(7726), 1, - sym_type_modifiers, - STATE(8591), 1, - sym_simple_identifier, - STATE(8598), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(8848), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(9303), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(10080), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, - STATE(10091), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9382), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8559), 3, + STATE(2901), 4, + sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9388), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613898,103 +592612,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138272] = 19, - ACTIONS(8824), 1, + [125893] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7193), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7191), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [125933] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9591), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(6717), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7712), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(4678), 1, sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8123), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(4765), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [138343] = 19, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9342), 1, - anon_sym_interface, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126005] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6703), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7629), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8212), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(8745), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614002,51 +592755,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138414] = 19, - ACTIONS(8824), 1, + [126077] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9593), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6739), 1, - sym_type_parameters, - STATE(7459), 1, - sym_type_modifiers, - STATE(7620), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(4540), 1, sym__simple_user_type, + STATE(4578), 1, + sym_user_type, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, + sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(4580), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8256), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(4639), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614054,51 +592808,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138485] = 19, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9404), 1, + [126149] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9406), 1, - anon_sym_LPAREN, - ACTIONS(9412), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9587), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, + anon_sym_LPAREN, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(5848), 1, - sym_simple_identifier, - STATE(5867), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5877), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(5927), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(7685), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(10058), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(10253), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5913), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(5935), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9408), 7, + STATE(5371), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614106,51 +592861,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138556] = 19, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(9348), 1, + [126221] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9595), 1, - anon_sym_interface, - STATE(6406), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6726), 1, - sym_type_parameters, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7804), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8199), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(8742), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614158,48 +592914,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138627] = 17, - ACTIONS(211), 1, + [126293] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(3042), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2366), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7771), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(4747), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614207,48 +592967,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138693] = 17, - ACTIONS(211), 1, + [126365] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(3042), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(2840), 1, + sym_user_type, + STATE(6433), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9798), 1, + sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1840), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7741), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(2812), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(2830), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614256,48 +593020,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138759] = 17, - ACTIONS(431), 1, + [126437] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9242), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(840), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(4540), 1, sym__simple_user_type, + STATE(4578), 1, + sym_user_type, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, + sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(557), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7729), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4580), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(5067), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614305,48 +593073,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138825] = 17, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [126509] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(840), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(575), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7738), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(8768), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614354,48 +593126,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138891] = 17, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [126581] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(840), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(554), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7748), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(5834), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614403,48 +593179,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138957] = 17, - ACTIONS(431), 1, + [126653] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(840), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(600), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7757), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(4743), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614452,48 +593232,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139023] = 17, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [126725] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2420), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7818), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(9662), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614501,48 +593285,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139089] = 17, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [126797] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3395), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2739), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7691), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(9665), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614550,48 +593338,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139155] = 17, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [126869] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2419), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7840), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(8771), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614599,48 +593391,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139221] = 17, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [126941] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2482), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7773), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(8773), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614648,48 +593444,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139287] = 17, - ACTIONS(345), 1, + [127013] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(3395), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(2840), 1, + sym_user_type, + STATE(6433), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9798), 1, + sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2461), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7824), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(2812), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(3188), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614697,48 +593497,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139353] = 17, - ACTIONS(345), 1, + [127085] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(3395), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(2840), 1, + sym_user_type, + STATE(6433), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9798), 1, + sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2363), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7755), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(2812), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(2819), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614746,48 +593550,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139419] = 17, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + [127157] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9260), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3395), 1, + ACTIONS(9264), 1, + anon_sym_dynamic, + ACTIONS(9266), 1, + sym__backtick_identifier, + STATE(2826), 1, sym_simple_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(2853), 1, + sym__lexical_identifier, + STATE(2881), 1, sym__simple_user_type, + STATE(3064), 1, + sym_user_type, + STATE(6448), 1, + sym_type_modifiers, + STATE(9673), 1, + sym_function_type_parameters, + STATE(9910), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2443), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7790), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(3066), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(3617), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614795,48 +593603,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139485] = 17, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [127229] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3395), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2373), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7727), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(8774), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614844,48 +593656,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139551] = 17, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9454), 1, + [127301] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(9456), 1, - anon_sym_LPAREN, - ACTIONS(9460), 1, + ACTIONS(293), 1, sym__backtick_identifier, - STATE(5843), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(5852), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(4540), 1, sym__simple_user_type, + STATE(4578), 1, + sym_user_type, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, + sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5666), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7672), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4580), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9458), 7, + STATE(4854), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614893,48 +593709,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139617] = 17, - ACTIONS(345), 1, + [127373] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(3395), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(2840), 1, + sym_user_type, + STATE(6433), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9798), 1, + sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2728), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7607), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(2812), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(2825), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614942,48 +593762,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139683] = 17, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [127445] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9352), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9354), 1, - anon_sym_LPAREN, - ACTIONS(9358), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5849), 1, - sym_simple_identifier, - STATE(5854), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5610), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7638), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9356), 7, + STATE(8794), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614991,48 +593815,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139749] = 17, - ACTIONS(345), 1, + [127517] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(3395), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(2840), 1, + sym_user_type, + STATE(6433), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9798), 1, + sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2444), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7617), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(2812), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(2847), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615040,48 +593868,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139815] = 17, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [127589] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3395), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2738), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7602), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(9685), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615089,48 +593921,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139881] = 17, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [127661] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2173), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7792), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(9686), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615138,48 +593974,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139947] = 17, - ACTIONS(211), 1, + [127733] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3042), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6487), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1857), 2, + STATE(1747), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7765), 2, + STATE(7527), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615187,48 +594027,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140013] = 17, - ACTIONS(431), 1, + [127805] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9242), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(840), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(4540), 1, sym__simple_user_type, + STATE(4578), 1, + sym_user_type, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, + sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(611), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7833), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4580), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(5064), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615236,48 +594080,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140079] = 17, - ACTIONS(431), 1, + [127877] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(840), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6468), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(635), 2, + STATE(1746), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7815), 2, + STATE(7545), 2, sym__receiver_type, sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615285,48 +594133,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140145] = 17, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [127949] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2735), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7615), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(8791), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615334,48 +594186,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140211] = 17, - ACTIONS(211), 1, + [128021] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(3042), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2416), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7783), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(4899), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615383,48 +594239,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140277] = 17, - ACTIONS(211), 1, + [128093] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9180), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(3042), 1, + STATE(824), 1, sym_simple_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(825), 1, sym__simple_user_type, + STATE(860), 1, + sym_user_type, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, + sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2722), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7692), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(851), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(837), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615432,48 +594292,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140343] = 17, - ACTIONS(211), 1, + [128165] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(3042), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(2840), 1, + sym_user_type, + STATE(6433), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9798), 1, + sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2177), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7789), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(2812), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(3238), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615481,48 +594345,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140409] = 17, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [128237] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3395), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2452), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7618), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(8779), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615530,48 +594398,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140475] = 17, - ACTIONS(211), 1, + [128309] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9226), 1, anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3042), 1, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, + sym_user_type, + STATE(6419), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2517), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7787), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(3393), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(3885), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615579,48 +594451,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140541] = 17, - ACTIONS(345), 1, + [128381] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9180), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(3395), 1, + STATE(824), 1, sym_simple_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(825), 1, sym__simple_user_type, + STATE(860), 1, + sym_user_type, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, + sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2406), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7763), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(851), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(844), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615628,48 +594504,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140607] = 17, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [128453] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(840), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(612), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7802), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(9725), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615677,48 +594557,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140673] = 17, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [128525] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3395), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2405), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7758), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(9726), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615726,47 +594610,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140739] = 17, - ACTIONS(345), 1, + [128597] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9226), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3395), 1, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, + sym_user_type, + STATE(6419), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2746), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7797), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(3393), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, + STATE(3880), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, ACTIONS(1652), 7, anon_sym_get, anon_sym_set, @@ -615775,48 +594663,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140805] = 17, - ACTIONS(431), 1, + [128669] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9226), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(840), 1, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, + sym_user_type, + STATE(6419), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(622), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7810), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(3393), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(3756), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615824,48 +594716,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140871] = 17, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [128741] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2730), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7613), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(8781), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615873,48 +594769,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140937] = 17, - ACTIONS(431), 1, + [128813] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9226), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(840), 1, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, + sym_user_type, + STATE(6419), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(430), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7723), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(3393), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(3850), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615922,48 +594822,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141003] = 17, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [128885] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(840), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(462), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7843), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(8633), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615971,48 +594875,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141069] = 17, - ACTIONS(431), 1, + [128957] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(840), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(2840), 1, + sym_user_type, + STATE(6433), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9798), 1, + sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(433), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7716), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(2812), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(2916), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616020,48 +594928,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141135] = 17, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [129029] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3395), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2797), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7671), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(9454), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616069,48 +594981,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141201] = 17, - ACTIONS(211), 1, + [129101] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(3042), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2480), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7753), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(4704), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616118,48 +595034,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141267] = 17, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [129173] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(840), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(464), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7639), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(8782), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616167,48 +595087,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141333] = 17, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [129245] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3042), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2737), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7651), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(9777), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616216,48 +595140,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141399] = 17, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [129317] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9454), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9456), 1, - anon_sym_LPAREN, - ACTIONS(9460), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5843), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5852), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5675), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7822), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9458), 7, + STATE(9778), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616265,48 +595193,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141465] = 17, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [129389] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(840), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(447), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7701), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(8790), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616314,48 +595246,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141531] = 17, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9466), 1, + [129461] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(9468), 1, - anon_sym_LPAREN, - ACTIONS(9472), 1, + ACTIONS(293), 1, sym__backtick_identifier, - STATE(2904), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(2976), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(4540), 1, sym__simple_user_type, + STATE(4578), 1, + sym_user_type, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, + sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2297), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7705), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4580), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9470), 7, + STATE(5070), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616363,48 +595299,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141597] = 17, - ACTIONS(431), 1, + [129533] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(840), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(458), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7719), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(4707), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616412,48 +595352,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141663] = 17, - ACTIONS(431), 1, + [129605] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(840), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(432), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7700), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(5146), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616461,48 +595405,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141729] = 17, - ACTIONS(345), 1, + [129677] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9180), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(3395), 1, + STATE(824), 1, sym_simple_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(825), 1, sym__simple_user_type, + STATE(860), 1, + sym_user_type, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, + sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2753), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7623), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(851), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(845), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616510,48 +595458,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141795] = 17, - ACTIONS(211), 1, + [129749] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(3042), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, - STATE(7459), 1, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, sym_type_modifiers, - STATE(8104), 1, - sym__simple_user_type, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2518), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7693), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1630), 7, + STATE(5097), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616559,48 +595511,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141861] = 17, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [129821] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9466), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9468), 1, - anon_sym_LPAREN, - ACTIONS(9472), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2904), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2976), 1, - sym_simple_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2310), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7634), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9470), 7, + STATE(8785), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616608,48 +595564,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141927] = 17, - ACTIONS(345), 1, + [129893] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9242), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(3395), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(4540), 1, sym__simple_user_type, + STATE(4578), 1, + sym_user_type, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, + sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2711), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7699), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(4580), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(4890), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616657,48 +595617,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141993] = 17, - ACTIONS(345), 1, + [129965] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9364), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9180), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(3395), 1, + STATE(824), 1, sym_simple_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(825), 1, sym__simple_user_type, + STATE(860), 1, + sym_user_type, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, + sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2791), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7664), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(851), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(848), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616706,47 +595670,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142059] = 17, - ACTIONS(431), 1, + [130037] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9416), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9180), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(840), 1, + STATE(824), 1, sym_simple_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(8104), 1, + STATE(825), 1, sym__simple_user_type, + STATE(860), 1, + sym_user_type, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, + sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(457), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7652), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(851), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, + STATE(849), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, ACTIONS(1664), 7, anon_sym_get, anon_sym_set, @@ -616755,48 +595723,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142125] = 17, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9348), 1, + [130109] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9352), 1, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9354), 1, - anon_sym_LPAREN, - ACTIONS(9358), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5849), 1, - sym_simple_identifier, - STATE(5854), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8104), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5615), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7662), 2, - sym__receiver_type, - sym_nullable_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9356), 7, + STATE(8787), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616804,45 +595776,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142191] = 16, - ACTIONS(8824), 1, + [130181] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9293), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4983), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6568), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7817), 1, + STATE(7599), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7903), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8138), 2, + STATE(8002), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616850,45 +595828,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142253] = 16, - ACTIONS(8824), 1, + [130252] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9293), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4741), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6567), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7661), 1, + STATE(7383), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7871), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8113), 2, + STATE(7917), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616896,45 +595880,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142315] = 16, - ACTIONS(8824), 1, + [130323] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9295), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(978), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6579), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7836), 1, + STATE(7494), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7942), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8148), 2, + STATE(7898), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616942,45 +595932,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142377] = 16, - ACTIONS(8824), 1, + [130394] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9297), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(7635), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(4540), 1, sym__simple_user_type, + STATE(4573), 1, + sym_user_type, + STATE(7425), 1, + sym_type_modifiers, + STATE(9487), 1, + sym_function_type_parameters, + STATE(9574), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(4574), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8169), 2, - sym__receiver_type, + STATE(4631), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7462), 3, + sym_function_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616988,45 +595984,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142439] = 16, - ACTIONS(8824), 1, + [130465] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4919), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6559), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7601), 1, + STATE(7442), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(8016), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8153), 2, + STATE(7938), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617034,45 +596036,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142501] = 16, - ACTIONS(8824), 1, + [130536] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(2837), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6575), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7696), 1, + STATE(7578), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7925), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8221), 2, + STATE(7973), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617080,45 +596088,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142563] = 16, - ACTIONS(8824), 1, + [130607] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4563), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6586), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7673), 1, + STATE(7532), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7884), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8207), 2, + STATE(8009), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617126,45 +596140,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142625] = 16, - ACTIONS(8824), 1, + [130678] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(2837), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6543), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7733), 1, + STATE(7405), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7925), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8152), 2, + STATE(7901), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617172,45 +596192,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142687] = 16, - ACTIONS(8824), 1, + [130749] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9303), 1, + anon_sym_dynamic, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(3371), 1, + sym_user_type, + STATE(7569), 1, sym_type_modifiers, - STATE(7752), 1, - sym_simple_identifier, - STATE(8104), 1, - sym__simple_user_type, + STATE(9801), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(3558), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8150), 2, - sym__receiver_type, + STATE(3819), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7462), 3, + sym_function_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617218,45 +596244,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142749] = 16, - ACTIONS(8824), 1, + [130820] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, - anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9305), 1, + anon_sym_dynamic, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(7374), 1, sym_type_modifiers, - STATE(7687), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(8138), 1, sym__simple_user_type, + STATE(8323), 1, + sym_user_type, + STATE(9490), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8178), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(8185), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(8290), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617264,45 +596296,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142811] = 16, - ACTIONS(8824), 1, + [130891] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(3059), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6570), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7767), 1, + STATE(7421), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(8001), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8146), 2, + STATE(7906), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617310,78 +596348,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142873] = 3, + [130962] = 19, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9307), 1, + anon_sym_dynamic, + STATE(7515), 1, + sym_type_modifiers, + STATE(8325), 1, + sym_simple_identifier, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8551), 1, + sym__simple_user_type, + STATE(8915), 1, + sym_user_type, + STATE(9494), 1, + sym_function_type_parameters, + STATE(9829), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 13, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - sym__backtick_identifier, - ACTIONS(4189), 14, - anon_sym_by, - anon_sym_where, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9016), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8290), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [131033] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [142909] = 16, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9309), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(3730), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6560), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7799), 1, + STATE(7559), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7992), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8142), 2, + STATE(7950), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617389,45 +596452,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142971] = 16, - ACTIONS(8824), 1, + [131104] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9311), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(3026), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6541), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7740), 1, + STATE(7565), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7880), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8200), 2, + STATE(7957), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617435,45 +596504,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143033] = 16, - ACTIONS(8824), 1, + [131175] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(7686), 1, + ACTIONS(9313), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(2931), 1, sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2979), 1, + sym_user_type, + STATE(7590), 1, + sym_type_modifiers, + STATE(9862), 1, + sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(3037), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8174), 2, - sym__receiver_type, + STATE(3359), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7462), 3, + sym_function_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617481,45 +596556,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143095] = 16, - ACTIONS(8824), 1, + [131246] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4563), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6581), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7776), 1, + STATE(7543), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7884), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8132), 2, + STATE(7983), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617527,45 +596608,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143157] = 16, - ACTIONS(8824), 1, + [131317] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9295), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(978), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6554), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7820), 1, + STATE(7517), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7942), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8141), 2, + STATE(7969), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617573,45 +596660,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143219] = 16, - ACTIONS(8824), 1, + [131388] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(3059), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6561), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7628), 1, + STATE(7602), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(8001), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8223), 2, + STATE(7993), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617619,45 +596712,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143281] = 16, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, + [131459] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9224), 1, + sym__backtick_identifier, + ACTIONS(9315), 1, + anon_sym_dynamic, + STATE(5685), 1, sym__lexical_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(7630), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7466), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, + STATE(8330), 1, + sym_user_type, + STATE(9649), 1, + sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(5745), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8252), 2, - sym__receiver_type, + STATE(5786), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7462), 3, + sym_function_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617665,45 +596764,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143343] = 16, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, + [131530] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9218), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(7609), 1, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, + sym__backtick_identifier, + ACTIONS(9315), 1, + anon_sym_dynamic, + STATE(5686), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5718), 1, sym__simple_user_type, + STATE(5767), 1, + sym_user_type, + STATE(7489), 1, + sym_type_modifiers, + STATE(9680), 1, + sym_parenthesized_user_type, + STATE(10064), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(5745), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8255), 2, - sym__receiver_type, + STATE(5786), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7462), 3, + sym_function_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617711,45 +596816,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143405] = 16, - ACTIONS(8824), 1, + [131601] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9311), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(3671), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6569), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7823), 1, + STATE(7484), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7980), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8134), 2, + STATE(7918), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617757,45 +596868,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143467] = 16, - ACTIONS(8824), 1, + [131672] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, - anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9305), 1, + anon_sym_dynamic, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(7711), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7427), 1, + sym_type_modifiers, + STATE(8125), 1, sym__simple_user_type, + STATE(8347), 1, + sym_user_type, + STATE(9549), 1, + sym_function_type_parameters, + STATE(9579), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8204), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7462), 3, + STATE(8185), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(8290), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617803,45 +596920,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143529] = 16, - ACTIONS(8824), 1, + [131743] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9317), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(7781), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(2796), 1, sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2811), 1, + sym_user_type, + STATE(7552), 1, + sym_type_modifiers, + STATE(9798), 1, + sym_function_type_parameters, + STATE(9885), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(2842), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8127), 2, - sym__receiver_type, + STATE(3033), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7462), 3, + sym_function_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617849,45 +596972,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143591] = 16, - ACTIONS(8824), 1, + [131814] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9293), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4983), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6534), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7720), 1, + STATE(7548), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7903), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8124), 2, + STATE(7902), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617895,45 +597024,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143653] = 16, - ACTIONS(8824), 1, + [131885] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9309), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(3730), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6578), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7712), 1, + STATE(7462), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7992), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8123), 2, + STATE(7944), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617941,45 +597076,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143715] = 16, - ACTIONS(8824), 1, + [131956] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9295), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(831), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6553), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7831), 1, + STATE(7596), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7878), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8137), 2, + STATE(7984), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617987,45 +597128,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143777] = 16, - ACTIONS(8824), 1, + [132027] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9293), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4741), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6551), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7782), 1, + STATE(7380), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7871), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8184), 2, + STATE(7885), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618033,45 +597180,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143839] = 16, - ACTIONS(8824), 1, + [132098] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9293), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4983), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6576), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7605), 1, + STATE(7441), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7903), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8160), 2, + STATE(7924), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618079,45 +597232,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143901] = 16, - ACTIONS(8824), 1, + [132169] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9319), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(7669), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(825), 1, sym__simple_user_type, + STATE(833), 1, + sym_user_type, + STATE(7445), 1, + sym_type_modifiers, + STATE(9593), 1, + sym_function_type_parameters, + STATE(9919), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(827), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8118), 2, - sym__receiver_type, + STATE(1012), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7462), 3, + sym_function_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618125,45 +597284,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143963] = 16, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, + [132240] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(7702), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + ACTIONS(9321), 1, + anon_sym_dynamic, + STATE(4544), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, + STATE(4668), 1, + sym_user_type, + STATE(7481), 1, + sym_type_modifiers, + STATE(9741), 1, + sym_function_type_parameters, + STATE(9903), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(4645), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8208), 2, - sym__receiver_type, + STATE(4918), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7462), 3, + sym_function_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618171,45 +597336,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144025] = 16, - ACTIONS(8824), 1, + [132311] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9311), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(3671), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6587), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7536), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7980), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8191), 2, + STATE(7962), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618217,45 +597388,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144087] = 16, - ACTIONS(8824), 1, + [132382] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9309), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(3429), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6577), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7794), 1, + STATE(7480), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7882), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8194), 2, + STATE(7868), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618263,45 +597440,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144149] = 16, - ACTIONS(8824), 1, + [132453] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9311), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(3026), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6564), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7800), 1, + STATE(7528), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7880), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8197), 2, + STATE(7920), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618309,45 +597492,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144211] = 16, - ACTIONS(8824), 1, + [132524] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9295), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(831), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6544), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7807), 1, + STATE(7551), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7878), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8185), 2, + STATE(7933), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618355,45 +597544,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144273] = 16, - ACTIONS(8824), 1, + [132595] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9309), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(3429), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6574), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7804), 1, + STATE(7502), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7882), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8199), 2, + STATE(7949), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618401,45 +597596,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144335] = 16, - ACTIONS(8824), 1, + [132666] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4919), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6547), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7694), 1, + STATE(7589), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(8016), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8189), 2, + STATE(8014), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618447,78 +597648,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144397] = 3, + [132737] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9204), 1, + anon_sym_LPAREN, + ACTIONS(9323), 1, + anon_sym_dynamic, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4722), 1, + sym_user_type, + STATE(7588), 1, + sym_type_modifiers, + STATE(9784), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4319), 13, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - sym__backtick_identifier, - ACTIONS(4317), 14, - anon_sym_by, - anon_sym_where, + STATE(4723), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(4975), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [144433] = 16, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, + [132808] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9260), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(7622), 1, + ACTIONS(9266), 1, + sym__backtick_identifier, + ACTIONS(9325), 1, + anon_sym_dynamic, + STATE(2826), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(2853), 1, + sym__lexical_identifier, + STATE(2881), 1, sym__simple_user_type, + STATE(3199), 1, + sym_user_type, + STATE(7458), 1, + sym_type_modifiers, + STATE(9673), 1, + sym_function_type_parameters, + STATE(9912), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(3176), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8224), 2, - sym__receiver_type, + STATE(3407), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7462), 3, + sym_function_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618526,45 +597752,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144495] = 16, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, + [132879] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, - anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9248), 1, + sym__alpha_identifier, + ACTIONS(9250), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9256), 1, + sym__backtick_identifier, + ACTIONS(9327), 1, + anon_sym_dynamic, + STATE(5602), 1, sym__lexical_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(7814), 1, + STATE(5617), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(5748), 1, sym__simple_user_type, + STATE(5777), 1, + sym_user_type, + STATE(7537), 1, + sym_type_modifiers, + STATE(9768), 1, + sym_parenthesized_user_type, + STATE(10117), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(5772), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8205), 2, - sym__receiver_type, + STATE(5829), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7462), 3, + sym_function_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618572,45 +597804,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144557] = 16, - ACTIONS(8824), 1, + [132950] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4919), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6580), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7620), 1, + STATE(7455), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(8016), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8256), 2, + STATE(7939), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618618,45 +597856,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144619] = 16, - ACTIONS(8824), 1, + [133021] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(3059), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6537), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7827), 1, + STATE(7542), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(8001), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8209), 2, + STATE(7961), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618664,45 +597908,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144681] = 16, - ACTIONS(8824), 1, + [133092] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7730), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8147), 2, + STATE(591), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7367), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618710,45 +597957,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144743] = 16, - ACTIONS(8824), 1, + [133158] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7724), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8154), 2, + STATE(434), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7470), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618756,45 +598006,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144805] = 16, - ACTIONS(8824), 1, + [133224] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7834), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8190), 2, + STATE(2661), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7457), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618802,45 +598055,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144867] = 16, - ACTIONS(8824), 1, + [133290] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, - anon_sym_LPAREN, - STATE(6406), 1, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7806), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8129), 2, + STATE(2735), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7439), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618848,45 +598104,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144929] = 16, - ACTIONS(8824), 1, + [133356] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7788), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8173), 2, + STATE(569), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7365), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618894,45 +598153,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144991] = 16, - ACTIONS(8824), 1, + [133422] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, - anon_sym_LPAREN, - STATE(6406), 1, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7650), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8166), 2, + STATE(2364), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7422), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618940,45 +598202,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145053] = 16, - ACTIONS(8824), 1, + [133488] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6585), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7658), 1, + STATE(7394), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8170), 2, + STATE(7905), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618986,45 +598252,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145115] = 16, - ACTIONS(8824), 1, + [133556] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6589), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7698), 1, + STATE(7547), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8180), 2, + STATE(7965), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619032,45 +598302,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145177] = 16, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, + [133624] = 17, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9266), 1, + sym__backtick_identifier, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(7762), 1, + STATE(2926), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8214), 2, + STATE(2287), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7410), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619078,45 +598351,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145239] = 16, - ACTIONS(8824), 1, + [133690] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, - anon_sym_LPAREN, - STATE(6406), 1, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7754), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8219), 2, + STATE(2695), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7529), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619124,45 +598400,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145301] = 16, - ACTIONS(8824), 1, + [133756] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(6566), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7624), 1, + STATE(7448), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8211), 2, + STATE(7911), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619170,45 +598450,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145363] = 16, - ACTIONS(8824), 1, + [133824] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7749), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8195), 2, + STATE(431), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7473), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619216,45 +598499,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145425] = 16, - ACTIONS(8824), 1, + [133890] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7646), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8112), 2, + STATE(433), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7493), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619262,45 +598548,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145487] = 16, - ACTIONS(8824), 1, + [133956] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7608), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8215), 2, + STATE(622), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7546), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619308,122 +598597,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145549] = 16, - ACTIONS(8824), 1, + [134022] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9350), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9519), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(7459), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7725), 1, - sym_simple_identifier, - STATE(8104), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8120), 2, + STATE(437), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7504), 2, sym__receiver_type, sym_nullable_type, - STATE(7462), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8092), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [145611] = 5, - ACTIONS(6638), 1, - anon_sym_LT, - STATE(6730), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4179), 10, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 14, - anon_sym_by, - anon_sym_where, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [134088] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [145650] = 15, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9227), 1, - anon_sym_COMMA, - ACTIONS(9229), 1, - anon_sym_RPAREN, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9306), 1, - sym__function_value_parameter, - STATE(9890), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(2395), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7389), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619431,75 +598695,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145708] = 5, - ACTIONS(9599), 1, - anon_sym_DOT, - STATE(6761), 1, - aux_sym_user_type_repeat1, + [134154] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 9, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - sym__backtick_identifier, - ACTIONS(4202), 14, - anon_sym_by, - anon_sym_where, + STATE(2135), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7524), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [134220] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [145746] = 15, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9231), 1, - anon_sym_COMMA, - ACTIONS(9233), 1, - anon_sym_RPAREN, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9146), 1, - sym__function_value_parameter, - STATE(9148), 1, - sym_parameter, - STATE(9890), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(2381), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7414), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619507,42 +598793,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145804] = 15, - ACTIONS(8824), 1, + [134286] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9601), 1, - anon_sym_COMMA, - ACTIONS(9603), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9233), 1, - sym__function_value_parameter, - STATE(9890), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(2180), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7583), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619550,42 +598842,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145862] = 15, - ACTIONS(8824), 1, + [134352] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9605), 1, - anon_sym_COMMA, - ACTIONS(9607), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9098), 1, - sym__function_value_parameter, - STATE(9148), 1, - sym_parameter, - STATE(9890), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, sym_simple_identifier, + STATE(823), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(451), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7409), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619593,42 +598891,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145920] = 15, - ACTIONS(8824), 1, + [134418] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9223), 1, - anon_sym_COMMA, - ACTIONS(9225), 1, - anon_sym_RPAREN, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9155), 1, - sym__function_value_parameter, - STATE(9890), 1, + STATE(6588), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7413), 1, sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7926), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619636,42 +598941,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145978] = 15, - ACTIONS(8824), 1, + [134486] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9241), 1, - anon_sym_COMMA, - ACTIONS(9243), 1, - anon_sym_RPAREN, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9268), 1, - sym__function_value_parameter, - STATE(9890), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(2377), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7404), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619679,42 +598990,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146036] = 15, - ACTIONS(8824), 1, + [134552] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9609), 1, - anon_sym_COMMA, - ACTIONS(9611), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9299), 1, - sym__function_value_parameter, - STATE(9890), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(2173), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7600), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619722,42 +599039,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146094] = 15, - ACTIONS(8824), 1, + [134618] = 17, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9285), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9287), 1, + anon_sym_LPAREN, + ACTIONS(9291), 1, sym__backtick_identifier, - ACTIONS(9237), 1, - anon_sym_COMMA, - ACTIONS(9239), 1, - anon_sym_RPAREN, - ACTIONS(9597), 1, - anon_sym_AT, - STATE(6406), 1, + STATE(5682), 1, sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9083), 1, - sym__function_value_parameter, - STATE(9148), 1, - sym_parameter, - STATE(9890), 1, + STATE(5690), 1, sym_simple_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(5513), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7538), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9289), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619765,42 +599088,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146152] = 15, - ACTIONS(8824), 1, + [134684] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9217), 1, - anon_sym_COMMA, - ACTIONS(9219), 1, - anon_sym_RPAREN, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9280), 1, - sym__function_value_parameter, - STATE(9890), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, sym_simple_identifier, + STATE(823), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(614), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7512), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619808,73 +599137,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146210] = 5, - ACTIONS(9613), 1, - anon_sym_DOT, - STATE(6761), 1, - aux_sym_user_type_repeat1, + [134750] = 17, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 9, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - sym__backtick_identifier, - ACTIONS(4189), 14, - anon_sym_by, - anon_sym_where, + STATE(2734), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7407), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [134816] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [146248] = 14, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9616), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + STATE(6584), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7540), 1, sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(8010), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619882,40 +599236,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146303] = 14, - ACTIONS(8824), 1, + [134884] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9618), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + STATE(6534), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7548), 1, sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7902), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619923,40 +599286,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146358] = 14, - ACTIONS(8824), 1, + [134952] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9620), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(2460), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7479), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619964,40 +599335,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146413] = 14, - ACTIONS(8824), 1, + [135018] = 17, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9192), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, sym__backtick_identifier, - ACTIONS(9597), 1, - anon_sym_AT, - ACTIONS(9622), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + STATE(5687), 1, sym_simple_identifier, + STATE(5694), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(5431), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7415), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9196), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620005,70 +599384,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146468] = 3, + [135084] = 17, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4234), 10, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - sym__backtick_identifier, - ACTIONS(4232), 14, - anon_sym_by, - anon_sym_where, + STATE(2659), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7516), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [135150] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [146501] = 14, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9624), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + STATE(6573), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7523), 1, sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7897), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620076,40 +599483,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146556] = 14, - ACTIONS(8824), 1, + [135218] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9626), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(2625), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7503), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620117,40 +599532,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146611] = 14, - ACTIONS(8824), 1, + [135284] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9628), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + STATE(6583), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7508), 1, sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7953), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620158,40 +599582,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146666] = 14, - ACTIONS(8824), 1, + [135352] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9630), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + STATE(6582), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7443), 1, sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7999), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620199,40 +599632,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146721] = 14, - ACTIONS(8824), 1, + [135420] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9632), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(1746), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7545), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620240,40 +599681,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146776] = 14, - ACTIONS(8824), 1, + [135486] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9634), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + STATE(6572), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7377), 1, sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(8004), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620281,40 +599731,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146831] = 14, - ACTIONS(8824), 1, + [135554] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9636), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(2392), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7587), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620322,81 +599780,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146886] = 14, - ACTIONS(9638), 1, + [135620] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9640), 1, - anon_sym_file, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9650), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(3479), 1, - sym_simple_identifier, - STATE(3719), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(3804), 1, + STATE(6556), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7573), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, - STATE(3924), 1, - sym_user_type, - STATE(7537), 1, - sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9644), 2, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7978), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - STATE(4041), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9646), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9648), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [146941] = 14, - ACTIONS(8824), 1, + [135688] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9652), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(2609), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7449), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620404,40 +599879,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146996] = 14, - ACTIONS(8824), 1, + [135754] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9654), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, sym_simple_identifier, + STATE(823), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(459), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7469), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620445,70 +599928,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147051] = 3, + [135820] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4337), 10, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - sym__backtick_identifier, - ACTIONS(4335), 14, - anon_sym_by, - anon_sym_where, + STATE(2435), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7577), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [135886] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [147084] = 14, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9656), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + STATE(6571), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7601), 1, sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7986), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620516,40 +600027,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147139] = 14, - ACTIONS(8824), 1, + [135954] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9658), 1, - anon_sym_RPAREN, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + STATE(6565), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7476), 1, sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(8007), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620557,40 +600077,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147194] = 14, - ACTIONS(8824), 1, + [136022] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9660), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(2330), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7391), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620598,40 +600126,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147249] = 14, - ACTIONS(8824), 1, + [136088] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9662), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(2728), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7430), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620639,40 +600175,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147304] = 14, - ACTIONS(8824), 1, + [136154] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9664), 1, - anon_sym_RPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, sym_simple_identifier, + STATE(823), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(443), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7483), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620680,39 +600224,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147359] = 14, - ACTIONS(115), 1, + [136220] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9666), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - STATE(4653), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4730), 1, - sym__simple_user_type, - STATE(7665), 1, + STATE(7216), 1, sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4774), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(2403), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7575), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1842), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620720,39 +600273,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147413] = 14, - ACTIONS(8824), 1, + [136286] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9668), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6562), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7463), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(7830), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8571), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7462), 3, + STATE(7945), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8834), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620760,38 +600323,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147467] = 13, - ACTIONS(8824), 1, + [136354] = 17, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9192), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, sym__backtick_identifier, - ACTIONS(9670), 1, - anon_sym_AT, - ACTIONS(9674), 1, - sym_reification_modifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8512), 1, - sym_type_parameter_modifiers, - STATE(9172), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(9301), 1, - sym_type_parameter, + STATE(5694), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9672), 2, - anon_sym_in, - anon_sym_out, - STATE(8078), 2, + STATE(5436), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7509), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7435), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9196), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620799,38 +600372,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147519] = 13, - ACTIONS(8824), 1, + [136420] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9674), 1, - sym_reification_modifier, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8512), 1, - sym_type_parameter_modifiers, - STATE(9172), 1, + STATE(6557), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7435), 1, sym_simple_identifier, - STATE(9659), 1, - sym_type_parameter, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9672), 2, - anon_sym_in, - anon_sym_out, - STATE(8078), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7435), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(7929), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620838,39 +600422,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147571] = 14, - ACTIONS(515), 1, + [136488] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9676), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(2840), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(2981), 1, - sym__simple_user_type, - STATE(7680), 1, + STATE(7216), 1, sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3067), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(2447), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7417), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1910), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620878,39 +600471,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147625] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9386), 1, + [136554] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(7674), 1, - sym_type_modifiers, - STATE(8591), 1, + STATE(812), 1, sym_simple_identifier, - STATE(8598), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(584), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7382), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8574), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9388), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620918,39 +600520,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147679] = 14, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9256), 1, + [136620] = 17, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9668), 1, + ACTIONS(9285), 1, + sym__alpha_identifier, + ACTIONS(9287), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9291), 1, + sym__backtick_identifier, + STATE(5682), 1, sym__lexical_identifier, - STATE(7621), 1, - sym_type_modifiers, - STATE(8161), 1, + STATE(5690), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(5494), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7440), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8581), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8834), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9289), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620958,39 +600569,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147733] = 14, - ACTIONS(515), 1, + [136686] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9676), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2981), 1, - sym__simple_user_type, - STATE(7644), 1, + STATE(6535), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, + STATE(7450), 1, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3112), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7941), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1910), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620998,38 +600619,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147787] = 13, - ACTIONS(8824), 1, + [136754] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9674), 1, - sym_reification_modifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8512), 1, - sym_type_parameter_modifiers, - STATE(9172), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(9243), 1, - sym_type_parameter, + STATE(3332), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9672), 2, - anon_sym_in, - anon_sym_out, - STATE(8078), 2, + STATE(2410), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7456), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7435), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621037,39 +600668,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147839] = 14, - ACTIONS(9256), 1, + [136820] = 17, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9394), 1, + ACTIONS(9258), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9678), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(4814), 1, - sym__simple_user_type, - STATE(7675), 1, + STATE(2926), 1, + sym_simple_identifier, + STATE(7216), 1, sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5058), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(2314), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7396), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9398), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621077,78 +600717,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147893] = 13, - ACTIONS(9680), 1, + [136886] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9682), 1, - anon_sym_LBRACK, - ACTIONS(9688), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(7571), 1, - sym_use_site_target, - STATE(7595), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, - STATE(7643), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(7819), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, sym__simple_user_type, - STATE(8065), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9684), 2, + STATE(2323), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7399), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, - STATE(8091), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9686), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9648), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [147945] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9386), 1, + [136952] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(7670), 1, - sym_type_modifiers, - STATE(8591), 1, - sym_simple_identifier, - STATE(8598), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(6539), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7521), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8571), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7462), 3, + STATE(7989), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9388), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621156,39 +600816,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147999] = 14, - ACTIONS(345), 1, + [137020] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9690), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3400), 1, + STATE(6545), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7591), 1, sym_simple_identifier, - STATE(3696), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(7703), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3844), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7951), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1652), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621196,39 +600866,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148053] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9440), 1, + [137088] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9448), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(5775), 1, + STATE(812), 1, sym_simple_identifier, - STATE(5776), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5815), 1, - sym__simple_user_type, - STATE(7832), 1, + STATE(7216), 1, sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5991), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(450), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7397), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9444), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621236,39 +600915,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148107] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9404), 1, + [137154] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9412), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(5848), 1, - sym_simple_identifier, - STATE(5867), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5928), 1, - sym__simple_user_type, - STATE(7654), 1, + STATE(6558), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, + STATE(7513), 1, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5943), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7971), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9408), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621276,39 +600965,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148161] = 14, - ACTIONS(431), 1, + [137222] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9696), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(6546), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7580), 1, sym_simple_identifier, - STATE(945), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(7785), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1007), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7976), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1664), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621316,39 +601015,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148215] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9404), 1, + [137290] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(9412), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9184), 1, anon_sym_LPAREN, - STATE(5848), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(5867), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(5928), 1, - sym__simple_user_type, - STATE(7631), 1, + STATE(7216), 1, sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5964), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(2346), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7363), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9408), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621356,38 +601064,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148269] = 13, - ACTIONS(8824), 1, + [137356] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8198), 1, - sym_parameter_modifiers, - STATE(9148), 1, - sym_parameter, - STATE(9672), 1, - sym__function_value_parameter, - STATE(9890), 1, + STATE(6536), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7379), 1, sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7921), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621395,78 +601114,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148321] = 13, - ACTIONS(1724), 1, + [137424] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(1788), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9698), 1, - anon_sym_LBRACK, - STATE(5569), 1, - sym_simple_identifier, - STATE(5583), 1, - sym__simple_user_type, - STATE(5586), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(5669), 1, - sym_user_type, + STATE(6542), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, STATE(7554), 1, - sym_use_site_target, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9700), 2, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7874), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - STATE(5705), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(3095), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9648), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [148373] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9440), 1, + [137492] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(9448), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9184), 1, anon_sym_LPAREN, - STATE(5775), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(5776), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(5815), 1, - sym__simple_user_type, - STATE(7772), 1, + STATE(7216), 1, sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5987), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(2602), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7384), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9444), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621474,39 +601213,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148427] = 14, - ACTIONS(8824), 1, + [137558] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9668), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7704), 1, + STATE(6555), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7531), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8571), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7462), 3, + STATE(8020), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8834), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621514,39 +601263,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148481] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9430), 1, + [137626] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(7663), 1, + STATE(6552), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(8587), 1, + STATE(7544), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5964), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7935), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9432), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621554,38 +601313,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148535] = 13, - ACTIONS(8824), 1, + [137694] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9674), 1, - sym_reification_modifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8512), 1, - sym_type_parameter_modifiers, - STATE(9166), 1, - sym_type_parameter, - STATE(9172), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9672), 2, - anon_sym_in, - anon_sym_out, - STATE(8078), 2, + STATE(2646), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7526), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7435), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621593,38 +601362,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148587] = 14, - ACTIONS(345), 1, + [137760] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9690), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3400), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(3696), 1, - sym__simple_user_type, - STATE(7786), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(2362), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7428), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, ACTIONS(1652), 7, anon_sym_get, anon_sym_set, @@ -621633,39 +601411,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148641] = 14, - ACTIONS(345), 1, + [137826] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9690), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3400), 1, + STATE(812), 1, sym_simple_identifier, - STATE(3696), 1, - sym__simple_user_type, - STATE(7689), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3837), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(606), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7553), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1652), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621673,77 +601460,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148695] = 13, - ACTIONS(9702), 1, + [137892] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9704), 1, - anon_sym_LBRACK, - ACTIONS(9710), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(7519), 1, - sym_simple_identifier, - STATE(7559), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(7566), 1, - sym_use_site_target, - STATE(7594), 1, + STATE(6548), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7539), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, - STATE(7695), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9706), 2, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7967), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - STATE(8090), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9708), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9648), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [148747] = 13, - ACTIONS(8824), 1, + [137960] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9674), 1, - sym_reification_modifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8512), 1, - sym_type_parameter_modifiers, - STATE(9172), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, sym_simple_identifier, - STATE(9275), 1, - sym_type_parameter, + STATE(823), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9672), 2, - anon_sym_in, - anon_sym_out, - STATE(8078), 2, + STATE(581), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7378), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7435), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621751,39 +601559,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148799] = 14, - ACTIONS(7), 1, + [138026] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9712), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(812), 1, sym_simple_identifier, - STATE(5048), 1, - sym__simple_user_type, - STATE(7649), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5204), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(616), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7505), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1920), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621791,39 +601608,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148853] = 14, + [138092] = 17, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9666), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(4653), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4730), 1, - sym__simple_user_type, - STATE(7611), 1, + STATE(7216), 1, sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4752), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(2457), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7541), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1842), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621831,39 +601657,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148907] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9404), 1, + [138158] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(9412), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9184), 1, anon_sym_LPAREN, - STATE(5848), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(5867), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(5928), 1, - sym__simple_user_type, - STATE(7656), 1, + STATE(7216), 1, sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5956), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(2335), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7412), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9408), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621871,78 +601706,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148961] = 13, - ACTIONS(9386), 1, + [138224] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9714), 1, - anon_sym_LBRACK, - STATE(7523), 1, - sym_use_site_target, - STATE(8591), 1, - sym_simple_identifier, - STATE(8598), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(6550), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7507), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, - STATE(9032), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9716), 2, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7870), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - STATE(9607), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9388), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9648), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [149013] = 14, - ACTIONS(7), 1, + [138292] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9712), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(5048), 1, - sym__simple_user_type, - STATE(7816), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5189), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(2607), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7400), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1920), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621950,39 +601805,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149067] = 14, - ACTIONS(8824), 1, + [138358] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9668), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6540), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7579), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(7829), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8574), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7462), 3, + STATE(7914), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8834), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621990,39 +601855,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149121] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9440), 1, + [138426] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9448), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(5775), 1, - sym_simple_identifier, - STATE(5776), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5815), 1, - sym__simple_user_type, - STATE(7812), 1, + STATE(6563), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, + STATE(7563), 1, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5983), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7958), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9444), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622030,156 +601905,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149175] = 13, - ACTIONS(9638), 1, + [138494] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9650), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(3479), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, - STATE(3719), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3804), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, sym__simple_user_type, - STATE(3924), 1, - sym_user_type, - STATE(7537), 1, - sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9644), 2, + STATE(2652), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7467), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, - STATE(4041), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9646), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9648), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [149227] = 13, - ACTIONS(8824), 1, + [138560] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9718), 1, - anon_sym_LBRACK, - STATE(6406), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7476), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(7547), 1, - sym_use_site_target, - STATE(8188), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9720), 2, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8007), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - STATE(8071), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(8834), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9648), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [149279] = 13, - ACTIONS(9722), 1, + [138622] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9724), 1, - anon_sym_LBRACK, - ACTIONS(9730), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(7446), 1, - sym_simple_identifier, - STATE(7457), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7468), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, - STATE(7494), 1, - sym_user_type, - STATE(7538), 1, - sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9726), 2, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7946), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - STATE(7556), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9728), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9648), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [149331] = 14, - ACTIONS(115), 1, + [138684] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9666), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4730), 1, - sym__simple_user_type, - STATE(7653), 1, + STATE(7216), 1, sym_type_modifiers, + STATE(7372), 1, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4747), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7927), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1842), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622187,39 +602092,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149385] = 14, - ACTIONS(515), 1, + [138746] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9676), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2981), 1, - sym__simple_user_type, - STATE(7636), 1, + STATE(7216), 1, sym_type_modifiers, + STATE(7539), 1, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3114), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7967), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1910), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622227,79 +602138,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149439] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9466), 1, - sym__alpha_identifier, - ACTIONS(9472), 1, - sym__backtick_identifier, - ACTIONS(9732), 1, - anon_sym_LPAREN, - STATE(2904), 1, - sym__lexical_identifier, - STATE(2945), 1, - sym_simple_identifier, - STATE(3352), 1, - sym__simple_user_type, - STATE(7707), 1, - sym_type_modifiers, + [138808] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3587), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7462), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9470), 7, + ACTIONS(4337), 13, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4335), 14, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [149493] = 14, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, + [138844] = 16, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9696), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7411), 1, sym_simple_identifier, - STATE(945), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(7777), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(950), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7987), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1664), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622307,78 +602217,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149547] = 13, - ACTIONS(9454), 1, + [138906] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9460), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9734), 1, - anon_sym_LBRACK, - STATE(5843), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(5955), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7571), 1, sym_simple_identifier, - STATE(5965), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(6000), 1, - sym_user_type, - STATE(7526), 1, - sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9736), 2, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7928), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - STATE(6018), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9458), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9648), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [149599] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9466), 1, + [138968] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2904), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2945), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7563), 1, sym_simple_identifier, - STATE(3352), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(7676), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3546), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7958), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9470), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622386,78 +602309,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149653] = 13, - ACTIONS(8824), 1, + [139030] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9718), 1, - anon_sym_LBRACK, - STATE(6406), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7525), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(7540), 1, - sym_user_type, - STATE(7569), 1, - sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9720), 2, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7909), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - STATE(8071), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(8834), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9648), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [149705] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9386), 1, + [139092] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(7600), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(8591), 1, + STATE(7579), 1, sym_simple_identifier, - STATE(8598), 1, - sym__lexical_identifier, - STATE(8732), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8581), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7462), 3, + STATE(7914), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9388), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622465,39 +602401,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149759] = 14, - ACTIONS(211), 1, + [139154] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9738), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3318), 1, - sym__simple_user_type, - STATE(7642), 1, + STATE(7216), 1, sym_type_modifiers, + STATE(7544), 1, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3431), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7935), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1630), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622505,39 +602447,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149813] = 14, - ACTIONS(211), 1, + [139216] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9738), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3318), 1, - sym__simple_user_type, - STATE(7640), 1, + STATE(7216), 1, sym_type_modifiers, + STATE(7586), 1, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3423), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7954), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1630), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622545,39 +602493,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149867] = 14, - ACTIONS(8824), 1, + [139278] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9668), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7581), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(7828), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8581), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7462), 3, + STATE(7981), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8834), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622585,77 +602539,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149921] = 13, - ACTIONS(9440), 1, + [139340] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9448), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9740), 1, - anon_sym_LBRACK, - STATE(5775), 1, - sym_simple_identifier, - STATE(5776), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(5815), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7531), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, - STATE(5888), 1, - sym_user_type, - STATE(7598), 1, - sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9742), 2, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8020), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - STATE(5936), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9444), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9648), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [149973] = 13, - ACTIONS(8824), 1, + [139402] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9674), 1, - sym_reification_modifier, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8512), 1, - sym_type_parameter_modifiers, - STATE(9172), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7530), 1, sym_simple_identifier, - STATE(9270), 1, - sym_type_parameter, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9672), 2, - anon_sym_in, - anon_sym_out, - STATE(8078), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7435), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(7968), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622663,23 +602631,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150025] = 5, - ACTIONS(9599), 1, - anon_sym_DOT, - STATE(6752), 1, - aux_sym_user_type_repeat1, + [139464] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 7, + ACTIONS(4168), 13, anon_sym_AT, anon_sym_RBRACK, anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, sym__backtick_identifier, - ACTIONS(4225), 14, + ACTIONS(4166), 14, anon_sym_by, anon_sym_where, anon_sym_get, @@ -622694,38 +602664,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150061] = 13, - ACTIONS(8824), 1, + [139500] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9674), 1, - sym_reification_modifier, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8512), 1, - sym_type_parameter_modifiers, - STATE(9081), 1, - sym_type_parameter, - STATE(9172), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7561), 1, sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9672), 2, - anon_sym_in, - anon_sym_out, - STATE(8078), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7435), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(7899), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622733,78 +602710,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150113] = 13, - ACTIONS(9744), 1, + [139562] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9746), 1, - anon_sym_LBRACK, - ACTIONS(9752), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5976), 1, - sym_simple_identifier, - STATE(6004), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6010), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7507), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, - STATE(6026), 1, - sym_user_type, - STATE(7530), 1, - sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9748), 2, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7870), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - STATE(6140), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9750), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9648), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [150165] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9394), 1, + [139624] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9678), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4814), 1, - sym__simple_user_type, - STATE(7697), 1, + STATE(7216), 1, sym_type_modifiers, + STATE(7520), 1, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5059), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7963), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9398), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622812,39 +602802,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150219] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9394), 1, + [139686] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9678), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4814), 1, - sym__simple_user_type, - STATE(7708), 1, + STATE(7216), 1, sym_type_modifiers, + STATE(7601), 1, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5086), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7986), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9398), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622852,39 +602848,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150273] = 14, - ACTIONS(8824), 1, + [139748] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9668), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7647), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8161), 1, + STATE(7513), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8574), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7462), 3, + STATE(7971), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8834), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622892,38 +602894,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150327] = 13, - ACTIONS(8824), 1, + [139810] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9674), 1, - sym_reification_modifier, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8512), 1, - sym_type_parameter_modifiers, - STATE(9172), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7437), 1, sym_simple_identifier, - STATE(9240), 1, - sym_type_parameter, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9672), 2, - anon_sym_in, - anon_sym_out, - STATE(8078), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7435), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(8024), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622931,39 +602940,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150379] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9466), 1, + [139872] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2904), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2945), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7459), 1, sym_simple_identifier, - STATE(3352), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(7688), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3589), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7964), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9470), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622971,39 +602986,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150433] = 14, - ACTIONS(431), 1, + [139934] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9696), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7398), 1, sym_simple_identifier, - STATE(945), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(7798), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1006), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7937), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1664), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623011,78 +603032,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150487] = 13, - ACTIONS(9754), 1, + [139996] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9756), 1, - anon_sym_LBRACK, - ACTIONS(9762), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5828), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(5846), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7511), 1, sym_simple_identifier, - STATE(5853), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(5865), 1, - sym_user_type, - STATE(7567), 1, - sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9758), 2, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7975), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - STATE(5887), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9760), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9648), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [150539] = 14, - ACTIONS(7), 1, + [140058] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9712), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7450), 1, sym_simple_identifier, - STATE(5048), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(7837), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5188), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7941), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1920), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623090,39 +603124,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150593] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9430), 1, + [140120] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(7728), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8587), 1, + STATE(7591), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5956), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7951), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9432), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623130,39 +603170,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150647] = 14, - ACTIONS(9256), 1, - anon_sym_AT, - ACTIONS(9350), 1, - anon_sym_suspend, - ACTIONS(9430), 1, + [140182] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(7678), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(8587), 1, + STATE(7521), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5943), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7989), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9432), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623170,39 +603216,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150701] = 14, - ACTIONS(211), 1, + [140244] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9256), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9738), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3318), 1, - sym__simple_user_type, - STATE(7603), 1, + STATE(7216), 1, sym_type_modifiers, + STATE(7487), 1, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3432), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(8094), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7462), 3, + STATE(7947), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1630), 7, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623210,36 +603262,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150755] = 12, - ACTIONS(8824), 1, + [140306] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7557), 1, sym_simple_identifier, - STATE(9903), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7960), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623247,36 +603308,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150804] = 12, - ACTIONS(8824), 1, + [140368] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7554), 1, sym_simple_identifier, - STATE(9893), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7874), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623284,36 +603354,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150853] = 12, - ACTIONS(8824), 1, + [140430] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7584), 1, sym_simple_identifier, - STATE(9785), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(8021), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623321,66 +603400,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150902] = 5, - ACTIONS(9764), 1, - sym__quest, - STATE(6850), 1, - aux_sym_nullable_type_repeat1, + [140492] = 16, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7464), 1, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 9, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_DASH_GT, - sym__backtick_identifier, - ACTIONS(4262), 11, - anon_sym_by, - anon_sym_where, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7910), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [140554] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [150937] = 12, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7379), 1, sym_simple_identifier, - STATE(10002), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7921), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623388,36 +603492,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150986] = 12, - ACTIONS(8824), 1, + [140616] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7443), 1, sym_simple_identifier, - STATE(9981), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7999), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623425,36 +603538,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151035] = 12, - ACTIONS(8824), 1, + [140678] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7448), 1, sym_simple_identifier, - STATE(9861), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7911), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623462,36 +603584,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151084] = 12, - ACTIONS(8824), 1, + [140740] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7394), 1, sym_simple_identifier, - STATE(10126), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7905), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623499,36 +603630,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151133] = 12, - ACTIONS(8824), 1, + [140802] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7478), 1, sym_simple_identifier, - STATE(9850), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7990), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623536,36 +603676,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151182] = 12, - ACTIONS(8824), 1, + [140864] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7418), 1, sym_simple_identifier, - STATE(9976), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7934), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623573,36 +603722,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151231] = 12, - ACTIONS(8824), 1, + [140926] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7550), 1, sym_simple_identifier, - STATE(9912), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7896), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623610,36 +603768,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151280] = 12, - ACTIONS(8824), 1, + [140988] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7508), 1, sym_simple_identifier, - STATE(9831), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7953), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623647,36 +603814,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151329] = 12, - ACTIONS(8824), 1, + [141050] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7580), 1, sym_simple_identifier, - STATE(10224), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7976), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623684,36 +603860,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151378] = 12, - ACTIONS(8824), 1, + [141112] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7435), 1, sym_simple_identifier, - STATE(10200), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7929), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623721,36 +603906,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151427] = 12, - ACTIONS(8824), 1, + [141174] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7377), 1, sym_simple_identifier, - STATE(10059), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(8004), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623758,36 +603952,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151476] = 12, - ACTIONS(8824), 1, + [141236] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7413), 1, sym_simple_identifier, - STATE(10187), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7926), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623795,66 +603998,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151525] = 5, - ACTIONS(9767), 1, - sym__quest, - STATE(6850), 1, - aux_sym_nullable_type_repeat1, + [141298] = 16, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7523), 1, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4365), 9, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_DASH_GT, - sym__backtick_identifier, - ACTIONS(4363), 11, - anon_sym_by, - anon_sym_where, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7897), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [141360] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [151560] = 12, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7463), 1, sym_simple_identifier, - STATE(10006), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7945), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623862,36 +604090,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151609] = 12, - ACTIONS(8824), 1, + [141422] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7573), 1, sym_simple_identifier, - STATE(10180), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7978), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623899,36 +604136,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151658] = 12, - ACTIONS(8824), 1, + [141484] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7392), 1, sym_simple_identifier, - STATE(9847), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7996), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623936,36 +604182,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151707] = 12, - ACTIONS(8824), 1, + [141546] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7518), 1, sym_simple_identifier, - STATE(9928), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7959), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623973,36 +604228,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151756] = 12, - ACTIONS(8824), 1, + [141608] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7556), 1, sym_simple_identifier, - STATE(9917), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(8025), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624010,36 +604274,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151805] = 12, - ACTIONS(8824), 1, + [141670] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7406), 1, sym_simple_identifier, - STATE(10165), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7900), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624047,36 +604320,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151854] = 12, - ACTIONS(8824), 1, + [141732] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7540), 1, sym_simple_identifier, - STATE(9957), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(8010), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624084,36 +604366,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151903] = 12, - ACTIONS(8824), 1, + [141794] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7547), 1, sym_simple_identifier, - STATE(10141), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7965), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624121,36 +604412,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151952] = 12, - ACTIONS(8824), 1, + [141856] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7522), 1, sym_simple_identifier, - STATE(9915), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7922), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624158,36 +604458,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152001] = 12, - ACTIONS(8824), 1, + [141918] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7560), 1, sym_simple_identifier, - STATE(10160), 1, - sym_parameter_with_optional_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, + STATE(7970), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624195,110 +604504,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152050] = 12, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9597), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, - sym_simple_identifier, - STATE(10149), 1, - sym_parameter_with_optional_type, + [141980] = 5, + ACTIONS(6552), 1, + anon_sym_LT, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(4189), 10, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 14, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [152099] = 12, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9597), 1, + [142019] = 5, + ACTIONS(9331), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4168), 9, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8508), 1, - sym_parameter_modifiers, - STATE(9576), 1, - sym_simple_identifier, - STATE(9993), 1, - sym_parameter_with_optional_type, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + sym__backtick_identifier, + ACTIONS(4166), 14, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [142057] = 5, + ACTIONS(9334), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7456), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(4155), 9, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 14, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [152148] = 12, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [142095] = 15, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9081), 1, + anon_sym_COMMA, + ACTIONS(9083), 1, + anon_sym_RPAREN, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9063), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(10146), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624306,36 +604647,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152197] = 12, - ACTIONS(8824), 1, + [142153] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9085), 1, + anon_sym_COMMA, + ACTIONS(9087), 1, + anon_sym_RPAREN, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(8905), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(10120), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624343,36 +604690,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152246] = 12, - ACTIONS(8824), 1, + [142211] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9338), 1, + anon_sym_COMMA, + ACTIONS(9340), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(8949), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9914), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624380,36 +604733,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152295] = 12, - ACTIONS(8824), 1, + [142269] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9077), 1, + anon_sym_COMMA, + ACTIONS(9079), 1, + anon_sym_RPAREN, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8881), 1, + sym__function_value_parameter, + STATE(8883), 1, + sym_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9964), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624417,36 +604776,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152344] = 12, - ACTIONS(8824), 1, + [142327] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9073), 1, + anon_sym_COMMA, + ACTIONS(9075), 1, + anon_sym_RPAREN, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9094), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(10030), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624454,36 +604819,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152393] = 12, - ACTIONS(8824), 1, + [142385] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9342), 1, + anon_sym_COMMA, + ACTIONS(9344), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9076), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9910), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624491,36 +604862,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152442] = 12, - ACTIONS(8824), 1, + [142443] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9346), 1, + anon_sym_COMMA, + ACTIONS(9348), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9058), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9803), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624528,36 +604905,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152491] = 12, - ACTIONS(8824), 1, + [142501] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9067), 1, + anon_sym_COMMA, + ACTIONS(9069), 1, + anon_sym_RPAREN, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8829), 1, + sym__function_value_parameter, + STATE(8883), 1, + sym_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(10142), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624565,36 +604948,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152540] = 12, - ACTIONS(8824), 1, + [142559] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9059), 1, + anon_sym_COMMA, + ACTIONS(9061), 1, + anon_sym_RPAREN, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8805), 1, + sym__function_value_parameter, + STATE(8883), 1, + sym_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(10001), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624602,36 +604991,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152589] = 12, - ACTIONS(8824), 1, + [142617] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9350), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(10133), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624639,36 +605032,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152638] = 12, - ACTIONS(8824), 1, + [142672] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9352), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9908), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624676,36 +605073,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152687] = 12, - ACTIONS(8824), 1, + [142727] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9354), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9881), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624713,36 +605114,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152736] = 12, - ACTIONS(8824), 1, + [142782] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4315), 10, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + sym__backtick_identifier, + ACTIONS(4313), 14, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [142815] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9356), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9834), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624750,36 +605185,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152785] = 12, - ACTIONS(8824), 1, + [142870] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9358), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9887), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624787,36 +605226,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152834] = 12, - ACTIONS(8824), 1, + [142925] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9360), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(10128), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624824,36 +605267,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152883] = 12, - ACTIONS(8824), 1, + [142980] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9362), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9868), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624861,36 +605308,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152932] = 12, - ACTIONS(8824), 1, + [143035] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9364), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9863), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624898,36 +605349,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152981] = 12, - ACTIONS(8824), 1, + [143090] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9366), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(10248), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624935,36 +605390,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153030] = 12, - ACTIONS(8824), 1, + [143145] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9368), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9848), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624972,36 +605431,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153079] = 12, - ACTIONS(8824), 1, + [143200] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9370), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9867), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625009,36 +605472,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153128] = 12, - ACTIONS(8824), 1, + [143255] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9372), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9886), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625046,36 +605513,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153177] = 12, - ACTIONS(8824), 1, + [143310] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9374), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9826), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625083,36 +605554,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153226] = 12, - ACTIONS(8824), 1, + [143365] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9376), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9879), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625120,36 +605595,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153275] = 12, - ACTIONS(8824), 1, + [143420] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9378), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(10107), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625157,36 +605636,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153324] = 12, - ACTIONS(8824), 1, + [143475] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9380), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(9810), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625194,36 +605677,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153373] = 12, - ACTIONS(8824), 1, + [143530] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9382), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(10103), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625231,138 +605718,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153422] = 12, - ACTIONS(8824), 1, + [143585] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6406), 1, + ACTIONS(9384), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(9576), 1, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(10071), 1, - sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7456), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [153471] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5006), 8, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym__backtick_identifier, - ACTIONS(5004), 13, - anon_sym_where, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [143640] = 14, + ACTIONS(9386), 1, sym__alpha_identifier, - [153501] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4936), 8, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(9388), 1, + anon_sym_file, + ACTIONS(9390), 1, + anon_sym_LBRACK, + ACTIONS(9398), 1, sym__backtick_identifier, - ACTIONS(4934), 13, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_out, - sym_reification_modifier, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [153531] = 3, + STATE(3554), 1, + sym_simple_identifier, + STATE(3648), 1, + sym__lexical_identifier, + STATE(3688), 1, + sym__simple_user_type, + STATE(3724), 1, + sym_user_type, + STATE(7317), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4942), 8, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym__backtick_identifier, - ACTIONS(4940), 13, - anon_sym_where, + ACTIONS(9392), 2, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, + STATE(3889), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9394), 5, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [153561] = 3, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [143695] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4974), 8, + ACTIONS(4319), 10, anon_sym_AT, anon_sym_RBRACK, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, sym__backtick_identifier, - ACTIONS(4972), 13, + ACTIONS(4317), 14, + anon_sym_by, anon_sym_where, anon_sym_get, anon_sym_set, @@ -625376,107 +605830,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153591] = 14, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4736), 1, - sym_user_type, - STATE(4738), 1, - sym__delegation_specifiers, - STATE(4775), 1, - sym_function_type, - STATE(5046), 1, - sym_delegation_specifier, - STATE(10042), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4985), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1842), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [153642] = 13, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(3712), 1, - sym_user_type, - STATE(3823), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3737), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [153691] = 13, - ACTIONS(431), 1, + [143728] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(824), 1, sym_simple_identifier, - STATE(841), 1, + STATE(884), 1, sym__simple_user_type, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, + STATE(7465), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(900), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, + STATE(974), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, ACTIONS(1664), 7, anon_sym_get, anon_sym_set, @@ -625485,72 +605870,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153740] = 14, - ACTIONS(431), 1, + [143782] = 13, + ACTIONS(9402), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9404), 1, + anon_sym_LBRACK, + ACTIONS(9410), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(5826), 1, sym_simple_identifier, - STATE(841), 1, + STATE(5841), 1, sym__simple_user_type, - STATE(892), 1, + STATE(5842), 1, + sym__lexical_identifier, + STATE(5863), 1, sym_user_type, - STATE(900), 1, - sym__delegation_specifiers, - STATE(972), 1, - sym_delegation_specifier, - STATE(996), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, + STATE(7329), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9406), 2, anon_sym_get, anon_sym_set, + STATE(6143), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9408), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [153791] = 13, - ACTIONS(431), 1, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [143834] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(8005), 1, + sym_parameter_modifiers, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1005), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625558,35 +605948,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153840] = 14, - ACTIONS(345), 1, + [143886] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9412), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(3636), 1, sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(3787), 1, - sym__delegation_specifiers, - STATE(4338), 1, - sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(7434), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, + STATE(3817), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, ACTIONS(1652), 7, anon_sym_get, anon_sym_set, @@ -625595,181 +605988,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153891] = 13, - ACTIONS(431), 1, + [143940] = 13, + ACTIONS(1724), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(1788), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + ACTIONS(9414), 1, + anon_sym_LBRACK, + STATE(5340), 1, sym_simple_identifier, - STATE(841), 1, + STATE(5443), 1, sym__simple_user_type, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(903), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [153940] = 13, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(829), 1, + STATE(5458), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(1439), 1, + STATE(5501), 1, sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, + STATE(7355), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(906), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9416), 2, anon_sym_get, anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [153989] = 13, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(929), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, + STATE(5568), 2, sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, + sym__unescaped_annotation, + ACTIONS(3092), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [154038] = 14, - ACTIONS(515), 1, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [143992] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9268), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(5713), 1, sym__lexical_identifier, - STATE(2979), 1, - sym__delegation_specifiers, - STATE(3824), 1, - sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [154089] = 14, - ACTIONS(515), 1, - sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2837), 1, + STATE(5768), 1, sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2978), 1, - sym__delegation_specifiers, - STATE(3824), 1, - sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, + STATE(7496), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + STATE(5803), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625777,36 +606067,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154140] = 14, - ACTIONS(7), 1, + [144046] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8206), 1, + sym_type_parameter_modifiers, + STATE(8863), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5069), 1, - sym__delegation_specifiers, - STATE(5073), 1, - sym_user_type, - STATE(5154), 1, - sym_function_type, - STATE(5156), 1, - sym_delegation_specifier, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9095), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7163), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625814,73 +606106,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154191] = 14, - ACTIONS(515), 1, + [144098] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9258), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9426), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(2826), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(2951), 1, - sym__delegation_specifiers, - STATE(3824), 1, - sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [154242] = 14, - ACTIONS(515), 1, - sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2837), 1, + STATE(3261), 1, sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2983), 1, - sym__delegation_specifiers, - STATE(3824), 1, - sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, + STATE(7562), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + STATE(3484), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625888,73 +606146,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154293] = 14, - ACTIONS(7), 1, + [144152] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(5073), 1, - sym_user_type, - STATE(5100), 1, - sym__delegation_specifiers, - STATE(5154), 1, - sym_function_type, - STATE(5156), 1, - sym_delegation_specifier, - STATE(10095), 1, - sym_function_type_parameters, + STATE(7499), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [154344] = 14, - ACTIONS(515), 1, - sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2963), 1, - sym__delegation_specifiers, - STATE(3824), 1, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8292), 2, sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + sym_parenthesized_user_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625962,36 +606186,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154395] = 14, - ACTIONS(515), 1, + [144206] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9268), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(5713), 1, sym__lexical_identifier, - STATE(2982), 1, - sym__delegation_specifiers, - STATE(3824), 1, - sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, + STATE(5768), 1, + sym__simple_user_type, + STATE(7475), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + STATE(5795), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625999,35 +606226,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154446] = 13, - ACTIONS(345), 1, + [144260] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9248), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9430), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(5617), 1, sym_simple_identifier, - STATE(4338), 1, - sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(5653), 1, + sym__simple_user_type, + STATE(7362), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3806), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(5823), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626035,35 +606266,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154495] = 13, - ACTIONS(431), 1, + [144314] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(7364), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(841), 1, + STATE(8293), 1, sym__simple_user_type, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1017), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8287), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626071,71 +606306,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154544] = 13, + [144368] = 14, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9432), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(4897), 1, sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(7514), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5031), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [154593] = 13, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(1439), 1, + STATE(5005), 2, sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(911), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626143,35 +606346,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154642] = 14, + [144422] = 14, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9432), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(4897), 1, sym__simple_user_type, - STATE(5047), 1, - sym__delegation_specifiers, - STATE(5073), 1, - sym_user_type, - STATE(5154), 1, - sym_function_type, - STATE(5156), 1, - sym_delegation_specifier, - STATE(10095), 1, - sym_function_type_parameters, + STATE(7366), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, + STATE(4985), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, ACTIONS(1920), 7, anon_sym_get, anon_sym_set, @@ -626180,72 +606386,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154693] = 13, - ACTIONS(431), 1, + [144476] = 13, + ACTIONS(9434), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9436), 1, + anon_sym_LBRACK, + ACTIONS(9442), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(829), 1, + STATE(5660), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(5684), 1, sym_simple_identifier, - STATE(841), 1, + STATE(5692), 1, sym__simple_user_type, - STATE(1439), 1, + STATE(5705), 1, sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, + STATE(7299), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(926), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9438), 2, anon_sym_get, anon_sym_set, + STATE(5721), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9440), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [154742] = 14, - ACTIONS(8824), 1, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [144528] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9258), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9426), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, + STATE(2826), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(2853), 1, + sym__lexical_identifier, + STATE(3261), 1, sym__simple_user_type, - STATE(8654), 1, - sym_user_type, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, - sym_function_type, - STATE(9116), 1, - sym__delegation_specifiers, - STATE(10123), 1, - sym_function_type_parameters, + STATE(7572), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(8834), 7, + STATE(3486), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626253,35 +606465,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154793] = 13, - ACTIONS(431), 1, + [144582] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9444), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(841), 1, + STATE(2915), 1, sym__simple_user_type, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, + STATE(7395), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(889), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + STATE(3029), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626289,35 +606505,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154842] = 13, - ACTIONS(431), 1, + [144636] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9446), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4633), 1, sym__simple_user_type, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, + STATE(7376), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(897), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + STATE(4924), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626325,36 +606545,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154891] = 14, - ACTIONS(7), 1, + [144690] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9412), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3636), 1, sym__simple_user_type, - STATE(5034), 1, - sym__delegation_specifiers, - STATE(5073), 1, - sym_user_type, - STATE(5154), 1, - sym_function_type, - STATE(5156), 1, - sym_delegation_specifier, - STATE(10095), 1, - sym_function_type_parameters, + STATE(7426), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(3793), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626362,35 +606585,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154942] = 13, - ACTIONS(431), 1, + [144744] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(8206), 1, + sym_type_parameter_modifiers, + STATE(8863), 1, sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, + STATE(9080), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(934), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7163), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626398,35 +606624,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154991] = 13, - ACTIONS(431), 1, + [144796] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(841), 1, + STATE(7420), 1, + sym_type_modifiers, + STATE(8314), 1, sym__simple_user_type, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(923), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + STATE(5803), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626434,73 +606664,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155040] = 14, - ACTIONS(431), 1, + [144850] = 13, + ACTIONS(9448), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9450), 1, + anon_sym_LBRACK, + ACTIONS(9456), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(7266), 1, sym_simple_identifier, - STATE(841), 1, + STATE(7314), 1, + sym__lexical_identifier, + STATE(7328), 1, + sym_use_site_target, + STATE(7333), 1, sym__simple_user_type, - STATE(903), 1, - sym__delegation_specifiers, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(2113), 1, - sym_delegation_specifier, - STATE(9938), 1, - sym_function_type_parameters, + STATE(7534), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9452), 2, anon_sym_get, anon_sym_set, + STATE(7844), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9454), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [155091] = 14, - ACTIONS(431), 1, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [144902] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9458), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4616), 1, sym__simple_user_type, - STATE(929), 1, - sym__delegation_specifiers, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(2113), 1, - sym_delegation_specifier, - STATE(9938), 1, - sym_function_type_parameters, + STATE(7401), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + STATE(4692), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626508,35 +606743,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155142] = 13, - ACTIONS(431), 1, + [144956] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(8206), 1, + sym_type_parameter_modifiers, + STATE(8828), 1, + sym_type_parameter, + STATE(8863), 1, sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(910), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7163), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626544,36 +606782,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155191] = 14, - ACTIONS(7), 1, + [145008] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9248), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9430), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(5617), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(5653), 1, sym__simple_user_type, - STATE(5026), 1, - sym__delegation_specifiers, - STATE(5073), 1, - sym_user_type, - STATE(5154), 1, - sym_function_type, - STATE(5156), 1, - sym_delegation_specifier, - STATE(10095), 1, - sym_function_type_parameters, + STATE(7446), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(5821), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626581,36 +606822,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155242] = 14, - ACTIONS(515), 1, + [145062] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(7387), 1, + sym_type_modifiers, + STATE(8325), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(2954), 1, - sym__delegation_specifiers, - STATE(3824), 1, - sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, + STATE(8452), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8287), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626618,108 +606862,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155293] = 14, - ACTIONS(515), 1, + [145116] = 13, + ACTIONS(9248), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(5602), 1, sym__lexical_identifier, - STATE(2970), 1, - sym__delegation_specifiers, - STATE(3824), 1, + STATE(5617), 1, + sym_simple_identifier, + STATE(5653), 1, + sym__simple_user_type, + STATE(5738), 1, sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, + STATE(7335), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(9462), 2, anon_sym_get, anon_sym_set, + STATE(5782), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9252), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [155344] = 13, - ACTIONS(431), 1, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [145168] = 13, + ACTIONS(9464), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9466), 1, + anon_sym_LBRACK, + ACTIONS(9472), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(7349), 1, + sym_use_site_target, + STATE(7357), 1, sym_simple_identifier, - STATE(841), 1, + STATE(7388), 1, + sym__lexical_identifier, + STATE(7566), 1, sym__simple_user_type, - STATE(1439), 1, + STATE(7828), 1, sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(904), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9468), 2, anon_sym_get, anon_sym_set, + STATE(7847), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9470), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [155393] = 13, - ACTIONS(431), 1, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [145220] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(841), 1, + STATE(7519), 1, + sym_type_modifiers, + STATE(8314), 1, sym__simple_user_type, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(902), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + STATE(5795), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626727,36 +606980,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155442] = 14, - ACTIONS(431), 1, + [145274] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9258), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9426), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(2826), 1, sym_simple_identifier, - STATE(841), 1, + STATE(2853), 1, + sym__lexical_identifier, + STATE(3261), 1, sym__simple_user_type, - STATE(1005), 1, - sym__delegation_specifiers, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(2113), 1, - sym_delegation_specifier, - STATE(9938), 1, - sym_function_type_parameters, + STATE(7585), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + STATE(3445), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626764,36 +607020,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155493] = 14, - ACTIONS(7), 1, + [145328] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(884), 1, sym__simple_user_type, - STATE(5073), 1, - sym_user_type, - STATE(5080), 1, - sym__delegation_specifiers, - STATE(5154), 1, - sym_function_type, - STATE(5156), 1, - sym_delegation_specifier, - STATE(10095), 1, - sym_function_type_parameters, + STATE(7495), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(979), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626801,71 +607060,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155544] = 13, - ACTIONS(431), 1, + [145382] = 13, + ACTIONS(9285), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9291), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9474), 1, + anon_sym_LBRACK, + STATE(5682), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(5787), 1, sym_simple_identifier, - STATE(841), 1, + STATE(5813), 1, sym__simple_user_type, - STATE(1439), 1, + STATE(5827), 1, sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, + STATE(7346), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(887), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9476), 2, anon_sym_get, anon_sym_set, + STATE(5878), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9289), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [155593] = 13, - ACTIONS(431), 1, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [145434] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9458), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4616), 1, sym__simple_user_type, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(9938), 1, - sym_function_type_parameters, + STATE(7369), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(884), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + STATE(4685), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626873,36 +607139,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155642] = 14, - ACTIONS(345), 1, + [145488] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9444), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3785), 1, - sym__delegation_specifiers, - STATE(4338), 1, - sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(2915), 1, + sym__simple_user_type, + STATE(7574), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(2993), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626910,36 +607179,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155693] = 14, - ACTIONS(345), 1, + [145542] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9248), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9430), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(5617), 1, sym_simple_identifier, - STATE(3773), 1, - sym__delegation_specifiers, - STATE(4338), 1, - sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(5653), 1, + sym__simple_user_type, + STATE(7436), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(5836), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626947,36 +607219,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155744] = 14, - ACTIONS(345), 1, + [145596] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8206), 1, + sym_type_parameter_modifiers, + STATE(8863), 1, sym_simple_identifier, - STATE(3766), 1, - sym__delegation_specifiers, - STATE(4338), 1, - sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(8942), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7163), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626984,35 +607258,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155795] = 14, - ACTIONS(431), 1, + [145648] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(824), 1, sym_simple_identifier, - STATE(841), 1, + STATE(884), 1, sym__simple_user_type, - STATE(900), 1, - sym__delegation_specifiers, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(2113), 1, - sym_delegation_specifier, - STATE(9938), 1, - sym_function_type_parameters, + STATE(7359), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, + STATE(938), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, ACTIONS(1664), 7, anon_sym_get, anon_sym_set, @@ -627021,36 +607298,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155846] = 14, - ACTIONS(431), 1, + [145702] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(8206), 1, + sym_type_parameter_modifiers, + STATE(8863), 1, sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(1017), 1, - sym__delegation_specifiers, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(2113), 1, - sym_delegation_specifier, - STATE(9938), 1, - sym_function_type_parameters, + STATE(8970), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7163), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627058,36 +607337,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155897] = 14, - ACTIONS(515), 1, + [145754] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3007), 1, - sym__delegation_specifiers, - STATE(3824), 1, - sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, + STATE(7576), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8286), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627095,110 +607377,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155948] = 14, - ACTIONS(515), 1, - sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2964), 1, - sym__delegation_specifiers, - STATE(3824), 1, - sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, + [145808] = 5, + ACTIONS(9334), 1, + anon_sym_DOT, + STATE(6592), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(4195), 7, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__backtick_identifier, + ACTIONS(4193), 14, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [155999] = 14, - ACTIONS(515), 1, sym__alpha_identifier, - ACTIONS(595), 1, + [145844] = 13, + ACTIONS(9386), 1, + sym__alpha_identifier, + ACTIONS(9390), 1, + anon_sym_LBRACK, + ACTIONS(9398), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(3554), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3648), 1, sym__lexical_identifier, - STATE(2968), 1, - sym__delegation_specifiers, - STATE(3824), 1, + STATE(3688), 1, + sym__simple_user_type, + STATE(3724), 1, sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, + STATE(7317), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(9392), 2, anon_sym_get, anon_sym_set, + STATE(3889), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9394), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [156050] = 14, - ACTIONS(515), 1, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [145896] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6224), 1, sym__lexical_identifier, - STATE(3103), 1, - sym__delegation_specifiers, - STATE(3824), 1, - sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, + STATE(8206), 1, + sym_type_parameter_modifiers, + STATE(8860), 1, + sym_type_parameter, + STATE(8863), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7163), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627206,36 +607486,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156101] = 14, - ACTIONS(345), 1, + [145948] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8206), 1, + sym_type_parameter_modifiers, + STATE(8801), 1, + sym_type_parameter, + STATE(8863), 1, sym_simple_identifier, - STATE(3806), 1, - sym__delegation_specifiers, - STATE(4338), 1, - sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7163), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627243,35 +607525,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156152] = 14, - ACTIONS(345), 1, + [146000] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9412), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(3636), 1, sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(3756), 1, - sym__delegation_specifiers, - STATE(4338), 1, - sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(7452), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, + STATE(3800), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, ACTIONS(1652), 7, anon_sym_get, anon_sym_set, @@ -627280,36 +607565,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156203] = 14, - ACTIONS(345), 1, + [146054] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9478), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(2899), 1, + sym_simple_identifier, + STATE(2955), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(3222), 1, sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(3755), 1, - sym__delegation_specifiers, - STATE(4338), 1, - sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(7433), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(3307), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627317,73 +607605,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156254] = 14, - ACTIONS(7), 1, + [146108] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9480), 1, + anon_sym_LBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(5056), 1, - sym__delegation_specifiers, - STATE(5073), 1, + STATE(7294), 1, + sym_use_site_target, + STATE(7888), 1, sym_user_type, - STATE(5154), 1, - sym_function_type, - STATE(5156), 1, - sym_delegation_specifier, - STATE(10095), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9482), 2, anon_sym_get, anon_sym_set, + STATE(7612), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(8682), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [156305] = 14, - ACTIONS(515), 1, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [146160] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9446), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(3004), 1, - sym__delegation_specifiers, - STATE(3824), 1, - sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, + STATE(4633), 1, + sym__simple_user_type, + STATE(7370), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + STATE(4936), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627391,73 +607684,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156356] = 14, - ACTIONS(515), 1, + [146214] = 13, + ACTIONS(9484), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(9486), 1, + anon_sym_LBRACK, + ACTIONS(9492), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(7150), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(7215), 1, sym__lexical_identifier, - STATE(3028), 1, - sym__delegation_specifiers, - STATE(3824), 1, + STATE(7220), 1, + sym__simple_user_type, + STATE(7229), 1, sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, + STATE(7300), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(9488), 2, anon_sym_get, anon_sym_set, + STATE(7322), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9490), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [156407] = 14, - ACTIONS(515), 1, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [146266] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9446), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(3035), 1, - sym__delegation_specifiers, - STATE(3824), 1, - sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, + STATE(4633), 1, + sym__simple_user_type, + STATE(7371), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + STATE(4935), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627465,36 +607763,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156458] = 14, - ACTIONS(345), 1, + [146320] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8206), 1, + sym_type_parameter_modifiers, + STATE(8863), 1, sym_simple_identifier, - STATE(3789), 1, - sym__delegation_specifiers, - STATE(4338), 1, - sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9457), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7163), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627502,36 +607802,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156509] = 14, - ACTIONS(515), 1, + [146372] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3047), 1, - sym__delegation_specifiers, - STATE(3824), 1, - sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, + STATE(7477), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8292), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627539,36 +607842,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156560] = 14, - ACTIONS(9394), 1, + [146426] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9478), 1, anon_sym_LPAREN, - STATE(4650), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4657), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(3222), 1, sym__simple_user_type, - STATE(5045), 1, - sym_user_type, - STATE(5114), 1, - sym__delegation_specifiers, - STATE(5182), 1, - sym_delegation_specifier, - STATE(5184), 1, - sym_function_type, - STATE(9901), 1, - sym_function_type_parameters, + STATE(7474), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(9398), 7, + STATE(3281), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627576,35 +607882,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156611] = 13, - ACTIONS(345), 1, + [146480] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(4338), 1, - sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(6662), 1, + sym__simple_user_type, + STATE(7492), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3798), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8286), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627612,36 +607922,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156660] = 14, - ACTIONS(515), 1, + [146534] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(3009), 1, - sym__delegation_specifiers, - STATE(3824), 1, - sym_user_type, - STATE(3959), 1, - sym_delegation_specifier, - STATE(4064), 1, - sym_function_type, - STATE(9832), 1, - sym_function_type_parameters, + STATE(5686), 1, + sym_simple_identifier, + STATE(7485), 1, + sym_type_modifiers, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + STATE(5794), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627649,35 +607962,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156711] = 13, - ACTIONS(345), 1, + [146588] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(7393), 1, + sym_type_modifiers, + STATE(8325), 1, + sym_simple_identifier, + STATE(8333), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(8452), 1, sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(4338), 1, - sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3797), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8286), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627685,36 +608002,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156760] = 14, + [146642] = 14, ACTIONS(211), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9458), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3201), 1, - sym__delegation_specifiers, - STATE(3382), 1, - sym_function_type, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + STATE(4538), 1, + sym_simple_identifier, + STATE(4616), 1, + sym__simple_user_type, + STATE(7402), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(4638), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627722,36 +608042,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156811] = 14, - ACTIONS(345), 1, + [146696] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9432), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3884), 1, - sym__delegation_specifiers, - STATE(4338), 1, - sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(4897), 1, + sym__simple_user_type, + STATE(7582), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(5006), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627759,36 +608082,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156862] = 14, - ACTIONS(211), 1, + [146750] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + STATE(7451), 1, + sym_type_modifiers, + STATE(8325), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3199), 1, - sym__delegation_specifiers, - STATE(3382), 1, - sym_function_type, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + STATE(8452), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8292), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627796,36 +608122,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156913] = 14, - ACTIONS(211), 1, + [146804] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9478), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3190), 1, - sym__delegation_specifiers, - STATE(3382), 1, - sym_function_type, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + STATE(3222), 1, + sym__simple_user_type, + STATE(7454), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(3320), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627833,36 +608162,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156964] = 14, - ACTIONS(211), 1, + [146858] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3188), 1, - sym__delegation_specifiers, - STATE(3382), 1, - sym_function_type, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7486), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8287), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627870,36 +608202,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157015] = 14, - ACTIONS(211), 1, + [146912] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3181), 1, - sym__delegation_specifiers, - STATE(3382), 1, - sym_function_type, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9444), 1, + anon_sym_LPAREN, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym_simple_identifier, + STATE(2915), 1, + sym__simple_user_type, + STATE(7597), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(3031), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627907,36 +608242,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157066] = 14, - ACTIONS(211), 1, + [146966] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9268), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(5713), 1, sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3176), 1, - sym__delegation_specifiers, - STATE(3382), 1, - sym_function_type, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + STATE(5768), 1, + sym__simple_user_type, + STATE(7432), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(5794), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627944,109 +608282,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157117] = 14, - ACTIONS(431), 1, + [147020] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9480), 1, + anon_sym_LBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(841), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(911), 1, - sym__delegation_specifiers, - STATE(1439), 1, + STATE(7289), 1, + sym_use_site_target, + STATE(7307), 1, sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(2113), 1, - sym_delegation_specifier, - STATE(9938), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9482), 2, anon_sym_get, anon_sym_set, + STATE(7612), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(8682), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [157168] = 13, - ACTIONS(345), 1, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [147072] = 13, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9494), 1, + anon_sym_LBRACK, + STATE(7286), 1, + sym_use_site_target, + STATE(8325), 1, + sym_simple_identifier, + STATE(8333), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(8452), 1, sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(4338), 1, + STATE(8743), 1, sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3795), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(9496), 2, anon_sym_get, anon_sym_set, + STATE(9120), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9210), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [157217] = 14, - ACTIONS(211), 1, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [147124] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3169), 1, - sym__delegation_specifiers, - STATE(3382), 1, - sym_function_type, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, + sym_simple_identifier, + STATE(9624), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628054,73 +608397,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157268] = 14, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3165), 1, - sym__delegation_specifiers, - STATE(3382), 1, - sym_function_type, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + [147173] = 5, + ACTIONS(9498), 1, + sym__quest, + STATE(6688), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(4224), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4222), 11, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [157319] = 14, - ACTIONS(345), 1, sym__alpha_identifier, - ACTIONS(427), 1, + [147208] = 12, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(3795), 1, - sym__delegation_specifiers, - STATE(4338), 1, - sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9730), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628128,35 +608464,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157370] = 13, - ACTIONS(7), 1, + [147257] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9832), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5032), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628164,36 +608501,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157419] = 14, - ACTIONS(211), 1, + [147306] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3161), 1, - sym__delegation_specifiers, - STATE(3382), 1, - sym_function_type, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, + sym_simple_identifier, + STATE(9541), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628201,36 +608538,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157470] = 14, - ACTIONS(431), 1, + [147355] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(841), 1, - sym__simple_user_type, - STATE(926), 1, - sym__delegation_specifiers, - STATE(1439), 1, - sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(2113), 1, - sym_delegation_specifier, - STATE(9938), 1, - sym_function_type_parameters, + STATE(9805), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628238,35 +608575,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157521] = 13, - ACTIONS(7), 1, + [147404] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9799), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5112), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628274,36 +608612,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157570] = 14, - ACTIONS(211), 1, + [147453] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3154), 1, - sym__delegation_specifiers, - STATE(3382), 1, - sym_function_type, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, + sym_simple_identifier, + STATE(9843), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628311,35 +608649,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157621] = 13, - ACTIONS(7), 1, + [147502] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9581), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5069), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628347,35 +608686,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157670] = 13, - ACTIONS(7), 1, + [147551] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9713), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5071), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628383,36 +608723,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157719] = 14, - ACTIONS(211), 1, + [147600] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3151), 1, - sym__delegation_specifiers, - STATE(3153), 1, - sym_user_type, - STATE(3382), 1, - sym_function_type, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, + sym_simple_identifier, + STATE(9844), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628420,35 +608760,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157770] = 13, - ACTIONS(7), 1, + [147649] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9765), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5099), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628456,35 +608797,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157819] = 13, - ACTIONS(345), 1, + [147698] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4338), 1, - sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9865), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3789), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628492,36 +608834,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157868] = 14, - ACTIONS(211), 1, + [147747] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3382), 1, - sym_function_type, - STATE(3425), 1, - sym__delegation_specifiers, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, + sym_simple_identifier, + STATE(9559), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628529,35 +608871,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157919] = 13, - ACTIONS(345), 1, + [147796] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4338), 1, - sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9872), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3787), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628565,35 +608908,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157968] = 13, - ACTIONS(7), 1, + [147845] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9830), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5080), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628601,35 +608945,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158017] = 13, - ACTIONS(7), 1, + [147894] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9822), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5026), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628637,35 +608982,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158066] = 13, - ACTIONS(345), 1, + [147943] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4338), 1, - sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9594), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3785), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628673,35 +609019,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158115] = 13, - ACTIONS(345), 1, + [147992] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4338), 1, - sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9638), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3773), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628709,36 +609056,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158164] = 14, - ACTIONS(7), 1, + [148041] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5073), 1, - sym_user_type, - STATE(5099), 1, - sym__delegation_specifiers, - STATE(5154), 1, - sym_function_type, - STATE(5156), 1, - sym_delegation_specifier, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9758), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628746,36 +609093,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158215] = 14, - ACTIONS(7), 1, + [148090] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5070), 1, - sym__delegation_specifiers, - STATE(5073), 1, - sym_user_type, - STATE(5154), 1, - sym_function_type, - STATE(5156), 1, - sym_delegation_specifier, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9610), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628783,35 +609130,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158266] = 13, - ACTIONS(7), 1, + [148139] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9889), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5034), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628819,36 +609167,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158315] = 14, - ACTIONS(211), 1, + [148188] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3258), 1, - sym__delegation_specifiers, - STATE(3382), 1, - sym_function_type, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, + sym_simple_identifier, + STATE(9605), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628856,35 +609204,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158366] = 13, - ACTIONS(345), 1, + [148237] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4338), 1, - sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9988), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3766), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628892,36 +609241,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158415] = 14, - ACTIONS(211), 1, + [148286] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3275), 1, - sym__delegation_specifiers, - STATE(3382), 1, - sym_function_type, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, + sym_simple_identifier, + STATE(9927), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628929,36 +609278,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158466] = 14, - ACTIONS(211), 1, + [148335] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3279), 1, - sym__delegation_specifiers, - STATE(3382), 1, - sym_function_type, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, + sym_simple_identifier, + STATE(9538), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628966,35 +609315,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158517] = 13, - ACTIONS(345), 1, + [148384] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4338), 1, - sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9743), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3756), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629002,36 +609352,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158566] = 14, - ACTIONS(211), 1, + [148433] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3382), 1, - sym_function_type, - STATE(3448), 1, - sym__delegation_specifiers, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, + sym_simple_identifier, + STATE(10056), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629039,35 +609389,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158617] = 13, - ACTIONS(345), 1, + [148482] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4338), 1, - sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9547), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3755), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629075,35 +609426,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158666] = 13, - ACTIONS(345), 1, + [148531] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4338), 1, - sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9772), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3884), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629111,35 +609463,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158715] = 13, - ACTIONS(7), 1, + [148580] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9761), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5047), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629147,36 +609500,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158764] = 14, - ACTIONS(515), 1, + [148629] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2979), 1, - sym__delegation_specifiers, - STATE(2999), 1, - sym_user_type, - STATE(3077), 1, - sym_function_type, - STATE(3084), 1, - sym_delegation_specifier, - STATE(9832), 1, - sym_function_type_parameters, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, + sym_simple_identifier, + STATE(9780), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629184,36 +609537,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158815] = 14, - ACTIONS(8824), 1, + [148678] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(8478), 1, - sym__simple_user_type, - STATE(8654), 1, - sym_user_type, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, - sym_function_type, - STATE(9743), 1, - sym__delegation_specifiers, - STATE(10123), 1, - sym_function_type_parameters, + STATE(10125), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(8834), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629221,35 +609574,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158866] = 13, - ACTIONS(7), 1, + [148727] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9472), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5079), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629257,36 +609611,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158915] = 14, - ACTIONS(345), 1, + [148776] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(3797), 1, - sym__delegation_specifiers, - STATE(4338), 1, - sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9930), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629294,36 +609648,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158966] = 14, - ACTIONS(345), 1, + [148825] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(3740), 1, - sym__delegation_specifiers, - STATE(4338), 1, - sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9555), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629331,35 +609685,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159017] = 13, - ACTIONS(7), 1, + [148874] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9678), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5100), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629367,36 +609722,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159066] = 14, - ACTIONS(211), 1, + [148923] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3153), 1, - sym_user_type, - STATE(3315), 1, - sym__delegation_specifiers, - STATE(3382), 1, - sym_function_type, - STATE(3800), 1, - sym_delegation_specifier, - STATE(9757), 1, - sym_function_type_parameters, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, + sym_simple_identifier, + STATE(9509), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1630), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629404,36 +609759,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159117] = 14, - ACTIONS(345), 1, + [148972] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(3712), 1, - sym_user_type, - STATE(3798), 1, - sym__delegation_specifiers, - STATE(3823), 1, - sym_function_type, - STATE(3900), 1, - sym_delegation_specifier, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9967), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629441,36 +609796,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159168] = 14, - ACTIONS(345), 1, + [149021] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(3712), 1, - sym_user_type, - STATE(3797), 1, - sym__delegation_specifiers, - STATE(3823), 1, - sym_function_type, - STATE(3900), 1, - sym_delegation_specifier, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9921), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629478,36 +609833,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159219] = 14, - ACTIONS(345), 1, + [149070] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(3712), 1, - sym_user_type, - STATE(3795), 1, - sym__delegation_specifiers, - STATE(3823), 1, - sym_function_type, - STATE(3900), 1, - sym_delegation_specifier, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9970), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629515,35 +609870,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159270] = 13, - ACTIONS(345), 1, + [149119] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4338), 1, - sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9918), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3740), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629551,36 +609907,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159319] = 14, - ACTIONS(345), 1, + [149168] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(3798), 1, - sym__delegation_specifiers, - STATE(4338), 1, - sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9896), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629588,35 +609944,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159370] = 13, - ACTIONS(7), 1, + [149217] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9690), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5142), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629624,35 +609981,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159419] = 13, - ACTIONS(7), 1, + [149266] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(10119), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5070), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629660,36 +610018,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159468] = 14, - ACTIONS(345), 1, + [149315] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(3712), 1, - sym_user_type, - STATE(3789), 1, - sym__delegation_specifiers, - STATE(3823), 1, - sym_function_type, - STATE(3900), 1, - sym_delegation_specifier, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9707), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629697,35 +610055,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159519] = 13, - ACTIONS(7), 1, + [149364] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + STATE(9933), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5039), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629733,36 +610092,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159568] = 14, - ACTIONS(345), 1, + [149413] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(3712), 1, - sym_user_type, - STATE(3787), 1, - sym__delegation_specifiers, - STATE(3823), 1, - sym_function_type, - STATE(3900), 1, - sym_delegation_specifier, - STATE(9828), 1, - sym_function_type_parameters, + STATE(10068), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629770,36 +610129,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159619] = 14, - ACTIONS(345), 1, + [149462] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(3712), 1, - sym_user_type, - STATE(3785), 1, - sym__delegation_specifiers, - STATE(3823), 1, - sym_function_type, - STATE(3900), 1, - sym_delegation_specifier, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9488), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629807,35 +610166,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159670] = 13, - ACTIONS(345), 1, + [149511] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4338), 1, - sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9983), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3737), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629843,35 +610203,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159719] = 13, - ACTIONS(345), 1, + [149560] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(4338), 1, - sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9827), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3733), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629879,72 +610240,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159768] = 13, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(5645), 1, - sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(10095), 1, - sym_function_type_parameters, + [149609] = 5, + ACTIONS(9501), 1, + sym__quest, + STATE(6688), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5056), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(4249), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4247), 11, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [159817] = 14, - ACTIONS(345), 1, sym__alpha_identifier, - ACTIONS(427), 1, + [149644] = 12, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(3712), 1, - sym_user_type, - STATE(3773), 1, - sym__delegation_specifiers, - STATE(3823), 1, - sym_function_type, - STATE(3900), 1, - sym_delegation_specifier, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9710), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629952,36 +610307,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159868] = 14, - ACTIONS(345), 1, + [149693] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(3712), 1, - sym_user_type, - STATE(3766), 1, - sym__delegation_specifiers, - STATE(3823), 1, - sym_function_type, - STATE(3900), 1, - sym_delegation_specifier, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9762), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629989,36 +610344,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159919] = 14, - ACTIONS(345), 1, + [149742] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(3712), 1, - sym_user_type, - STATE(3806), 1, - sym__delegation_specifiers, - STATE(3823), 1, - sym_function_type, - STATE(3900), 1, - sym_delegation_specifier, - STATE(9828), 1, - sym_function_type_parameters, + STATE(9908), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630026,35 +610381,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159970] = 13, - ACTIONS(115), 1, + [149791] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5426), 1, - sym_user_type, - STATE(5470), 1, - sym_function_type, - STATE(10042), 1, - sym_function_type_parameters, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, + sym_simple_identifier, + STATE(10039), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4733), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4985), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1842), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630062,183 +610418,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160019] = 14, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(3712), 1, - sym_user_type, - STATE(3756), 1, - sym__delegation_specifiers, - STATE(3823), 1, - sym_function_type, - STATE(3900), 1, - sym_delegation_specifier, - STATE(9828), 1, - sym_function_type_parameters, + [149840] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(5185), 8, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym__backtick_identifier, + ACTIONS(5183), 13, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [160070] = 14, - ACTIONS(345), 1, sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(3712), 1, - sym_user_type, - STATE(3755), 1, - sym__delegation_specifiers, - STATE(3823), 1, - sym_function_type, - STATE(3900), 1, - sym_delegation_specifier, - STATE(9828), 1, - sym_function_type_parameters, + [149870] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(5161), 8, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym__backtick_identifier, + ACTIONS(5159), 13, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [160121] = 14, - ACTIONS(9394), 1, sym__alpha_identifier, - ACTIONS(9402), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, - sym__lexical_identifier, - STATE(4664), 1, - sym__simple_user_type, - STATE(5045), 1, - sym_user_type, - STATE(5119), 1, - sym__delegation_specifiers, - STATE(5182), 1, - sym_delegation_specifier, - STATE(5184), 1, - sym_function_type, - STATE(9901), 1, - sym_function_type_parameters, + [149900] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(5165), 8, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym__backtick_identifier, + ACTIONS(5163), 13, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [160172] = 13, - ACTIONS(345), 1, sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(4338), 1, - sym_user_type, - STATE(4370), 1, - sym_function_type, - STATE(9828), 1, - sym_function_type_parameters, + [149930] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3873), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(5181), 8, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym__backtick_identifier, + ACTIONS(5179), 13, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [160221] = 14, - ACTIONS(9394), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + [149960] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4657), 1, - sym__lexical_identifier, - STATE(4664), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5045), 1, - sym_user_type, - STATE(5158), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3142), 1, sym__delegation_specifiers, - STATE(5182), 1, - sym_delegation_specifier, - STATE(5184), 1, + STATE(4049), 1, + sym_user_type, + STATE(4132), 1, sym_function_type, - STATE(9901), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630246,36 +610563,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160272] = 14, - ACTIONS(515), 1, + [150011] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2978), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(907), 1, sym__delegation_specifiers, - STATE(2999), 1, + STATE(1397), 1, sym_user_type, - STATE(3077), 1, + STATE(1684), 1, sym_function_type, - STATE(3084), 1, + STATE(1868), 1, sym_delegation_specifier, - STATE(9832), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630283,36 +610600,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160323] = 14, - ACTIONS(9394), 1, + [150062] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(5045), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(3796), 1, sym_user_type, - STATE(5182), 1, - sym_delegation_specifier, - STATE(5184), 1, + STATE(3939), 1, sym_function_type, - STATE(5195), 1, - sym__delegation_specifiers, - STATE(9901), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(2933), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630320,36 +610636,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160374] = 14, - ACTIONS(345), 1, + [150111] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3712), 1, - sym_user_type, - STATE(3823), 1, - sym_function_type, - STATE(3884), 1, + STATE(4900), 1, sym__delegation_specifiers, - STATE(3900), 1, + STATE(4951), 1, + sym_user_type, + STATE(5025), 1, sym_delegation_specifier, - STATE(9828), 1, + STATE(5041), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630357,36 +610673,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160425] = 14, - ACTIONS(345), 1, + [150162] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3737), 1, - sym__delegation_specifiers, - STATE(4338), 1, + STATE(3796), 1, sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, + STATE(3939), 1, sym_function_type, - STATE(9828), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, + STATE(2936), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630394,36 +610709,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160476] = 14, - ACTIONS(345), 1, + [150211] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3733), 1, - sym__delegation_specifiers, - STATE(4338), 1, + STATE(3796), 1, sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, + STATE(3939), 1, sym_function_type, - STATE(9828), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, + STATE(2942), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630431,36 +610745,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160527] = 14, - ACTIONS(345), 1, + [150260] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(3796), 1, sym_user_type, - STATE(3740), 1, - sym__delegation_specifiers, - STATE(3823), 1, + STATE(3939), 1, sym_function_type, - STATE(3900), 1, - sym_delegation_specifier, - STATE(9828), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, + STATE(2946), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630468,36 +610781,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160578] = 14, - ACTIONS(345), 1, + [150309] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(3796), 1, sym_user_type, - STATE(3737), 1, - sym__delegation_specifiers, - STATE(3823), 1, + STATE(3939), 1, sym_function_type, - STATE(3900), 1, - sym_delegation_specifier, - STATE(9828), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, + STATE(2947), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630505,35 +610817,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160629] = 13, - ACTIONS(345), 1, + [150358] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4338), 1, + STATE(3796), 1, sym_user_type, - STATE(4370), 1, + STATE(3939), 1, sym_function_type, - STATE(9828), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3726), 2, + STATE(2950), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4099), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630541,35 +610853,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160678] = 13, - ACTIONS(515), 1, + [150407] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(4199), 1, sym_user_type, - STATE(4064), 1, + STATE(4236), 1, sym_function_type, - STATE(9832), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2979), 2, + STATE(3605), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630577,36 +610889,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160727] = 14, - ACTIONS(345), 1, + [150456] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3712), 1, - sym_user_type, - STATE(3733), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4602), 1, sym__delegation_specifiers, - STATE(3823), 1, + STATE(5273), 1, + sym_user_type, + STATE(5324), 1, sym_function_type, - STATE(3900), 1, + STATE(5524), 1, sym_delegation_specifier, - STATE(9828), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630614,33 +610926,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160778] = 14, - ACTIONS(345), 1, + [150507] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(3823), 1, + STATE(4236), 1, sym_function_type, - STATE(3873), 1, - sym__delegation_specifiers, - STATE(3900), 1, - sym_delegation_specifier, - STATE(9828), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, + STATE(3731), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1652), 7, @@ -630651,36 +610962,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160829] = 14, - ACTIONS(345), 1, + [150556] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(4544), 1, + sym_simple_identifier, + STATE(4545), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(4548), 1, sym__simple_user_type, - STATE(3400), 1, - sym_simple_identifier, - STATE(3712), 1, + STATE(4939), 1, sym_user_type, - STATE(3726), 1, + STATE(5021), 1, sym__delegation_specifiers, - STATE(3823), 1, + STATE(5032), 1, sym_function_type, - STATE(3900), 1, + STATE(5040), 1, sym_delegation_specifier, - STATE(9828), 1, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630688,35 +610999,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160880] = 13, - ACTIONS(515), 1, + [150607] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(3801), 1, + sym__delegation_specifiers, + STATE(4199), 1, sym_user_type, - STATE(4064), 1, + STATE(4236), 1, sym_function_type, - STATE(9832), 1, + STATE(4243), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2978), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3141), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630724,35 +611036,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160929] = 13, - ACTIONS(515), 1, + [150658] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(5686), 1, + sym_simple_identifier, + STATE(7891), 1, + sym__simple_user_type, + STATE(8345), 1, sym_user_type, - STATE(4064), 1, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8422), 1, sym_function_type, - STATE(9832), 1, + STATE(9069), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2951), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3141), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630760,35 +611073,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160978] = 13, - ACTIONS(515), 1, + [150709] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(4064), 1, + STATE(5324), 1, sym_function_type, - STATE(9832), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2983), 2, + STATE(4690), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630796,36 +611109,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161027] = 14, - ACTIONS(8824), 1, + [150758] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(4939), 1, sym_user_type, - STATE(8750), 1, + STATE(5022), 1, sym__delegation_specifiers, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(5032), 1, sym_function_type, - STATE(10123), 1, + STATE(5040), 1, + sym_delegation_specifier, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630833,36 +611146,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161078] = 14, - ACTIONS(8824), 1, + [150809] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(8478), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(8776), 1, - sym__delegation_specifiers, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(4236), 1, sym_function_type, - STATE(10123), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(3666), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630870,35 +611182,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161129] = 13, - ACTIONS(515), 1, + [150858] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(4199), 1, sym_user_type, - STATE(4064), 1, + STATE(4236), 1, sym_function_type, - STATE(9832), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2963), 2, + STATE(3661), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630906,35 +611218,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161178] = 13, - ACTIONS(7), 1, + [150907] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(5645), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(5697), 1, + STATE(4236), 1, sym_function_type, - STATE(10095), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5033), 2, + STATE(3635), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5384), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630942,36 +611254,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161227] = 14, - ACTIONS(7), 1, + [150956] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(5039), 1, - sym__delegation_specifiers, - STATE(5073), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(5154), 1, + STATE(4236), 1, sym_function_type, - STATE(5156), 1, - sym_delegation_specifier, - STATE(10095), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(3801), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630979,35 +611290,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161278] = 13, - ACTIONS(515), 1, + [151005] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(4199), 1, sym_user_type, - STATE(4064), 1, + STATE(4236), 1, sym_function_type, - STATE(9832), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2982), 2, + STATE(3608), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631015,32 +611326,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161327] = 13, - ACTIONS(515), 1, + [151054] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3824), 1, + STATE(3796), 1, sym_user_type, - STATE(4064), 1, + STATE(3939), 1, sym_function_type, - STATE(9832), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2954), 2, + STATE(2924), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1910), 7, @@ -631051,35 +611362,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161376] = 13, - ACTIONS(515), 1, + [151103] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(4199), 1, sym_user_type, - STATE(4064), 1, + STATE(4236), 1, sym_function_type, - STATE(9832), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2970), 2, + STATE(3660), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631087,35 +611398,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161425] = 13, - ACTIONS(515), 1, + [151152] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(4199), 1, sym_user_type, - STATE(4064), 1, + STATE(4236), 1, sym_function_type, - STATE(9832), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3007), 2, + STATE(3607), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631123,35 +611434,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161474] = 13, - ACTIONS(115), 1, + [151201] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(5426), 1, + STATE(4199), 1, sym_user_type, - STATE(5470), 1, + STATE(4236), 1, sym_function_type, - STATE(10042), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4797), 2, + STATE(3614), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631159,36 +611470,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161523] = 14, - ACTIONS(211), 1, + [151250] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3315), 1, - sym__delegation_specifiers, - STATE(4196), 1, + STATE(4199), 1, sym_user_type, - STATE(4252), 1, + STATE(4236), 1, sym_function_type, - STATE(4313), 1, - sym_delegation_specifier, - STATE(9757), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(3622), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631196,36 +611506,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161574] = 14, - ACTIONS(9430), 1, + [151299] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5848), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(8229), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(4939), 1, sym_user_type, - STATE(8681), 1, - sym__delegation_specifiers, - STATE(8715), 1, + STATE(5032), 1, sym_function_type, - STATE(8719), 1, + STATE(5040), 1, sym_delegation_specifier, - STATE(9945), 1, + STATE(5058), 1, + sym__delegation_specifiers, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631233,35 +611543,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161625] = 13, - ACTIONS(515), 1, + [151350] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(4199), 1, sym_user_type, - STATE(4064), 1, + STATE(4236), 1, sym_function_type, - STATE(9832), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2964), 2, + STATE(3624), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631269,36 +611579,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161674] = 14, - ACTIONS(515), 1, + [151399] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(2951), 1, - sym__delegation_specifiers, - STATE(2999), 1, + STATE(4199), 1, sym_user_type, - STATE(3077), 1, + STATE(4236), 1, sym_function_type, - STATE(3084), 1, - sym_delegation_specifier, - STATE(9832), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(3650), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631306,36 +611615,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161725] = 14, - ACTIONS(8824), 1, + [151448] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(1397), 1, sym_user_type, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(1684), 1, sym_function_type, - STATE(9590), 1, - sym__delegation_specifiers, - STATE(10123), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(894), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631343,36 +611651,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161776] = 14, - ACTIONS(345), 1, + [151497] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3873), 1, - sym__delegation_specifiers, - STATE(4338), 1, + STATE(3796), 1, sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, + STATE(3939), 1, sym_function_type, - STATE(9828), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, + STATE(3011), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631380,35 +611687,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161827] = 13, - ACTIONS(115), 1, + [151546] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(5426), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4939), 1, sym_user_type, - STATE(5470), 1, + STATE(5032), 1, sym_function_type, - STATE(10042), 1, + STATE(5040), 1, + sym_delegation_specifier, + STATE(5061), 1, + sym__delegation_specifiers, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4755), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4985), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631416,36 +611724,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161876] = 14, - ACTIONS(345), 1, + [151597] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3726), 1, - sym__delegation_specifiers, - STATE(4338), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(1397), 1, sym_user_type, - STATE(4344), 1, - sym_delegation_specifier, - STATE(4370), 1, + STATE(1684), 1, sym_function_type, - STATE(9828), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, + STATE(932), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631453,35 +611760,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161927] = 13, - ACTIONS(515), 1, + [151646] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(3610), 1, + sym__delegation_specifiers, + STATE(4199), 1, sym_user_type, - STATE(4064), 1, + STATE(4236), 1, sym_function_type, - STATE(9832), 1, + STATE(4243), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2968), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3141), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631489,36 +611797,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161976] = 14, - ACTIONS(9394), 1, + [151697] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(4657), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(4548), 1, sym__simple_user_type, - STATE(5045), 1, + STATE(4939), 1, sym_user_type, - STATE(5182), 1, - sym_delegation_specifier, - STATE(5184), 1, + STATE(5032), 1, sym_function_type, - STATE(5455), 1, + STATE(5040), 1, + sym_delegation_specifier, + STATE(5060), 1, sym__delegation_specifiers, - STATE(9901), 1, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631526,36 +611834,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162027] = 14, - ACTIONS(515), 1, + [151748] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2983), 1, - sym__delegation_specifiers, - STATE(2999), 1, + STATE(4951), 1, sym_user_type, - STATE(3077), 1, - sym_function_type, - STATE(3084), 1, + STATE(4955), 1, + sym__delegation_specifiers, + STATE(5025), 1, sym_delegation_specifier, - STATE(9832), 1, + STATE(5041), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631563,36 +611871,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162078] = 14, - ACTIONS(211), 1, + [151799] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(3448), 1, - sym__delegation_specifiers, - STATE(4196), 1, + STATE(5686), 1, + sym_simple_identifier, + STATE(7891), 1, + sym__simple_user_type, + STATE(8345), 1, sym_user_type, - STATE(4252), 1, - sym_function_type, - STATE(4313), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9757), 1, + STATE(8422), 1, + sym_function_type, + STATE(8445), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631600,33 +611908,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162129] = 14, - ACTIONS(515), 1, + [151850] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2963), 1, - sym__delegation_specifiers, - STATE(2999), 1, + STATE(3796), 1, sym_user_type, - STATE(3077), 1, + STATE(3939), 1, sym_function_type, - STATE(3084), 1, - sym_delegation_specifier, - STATE(9832), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(2917), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1910), 7, @@ -631637,36 +611944,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162180] = 14, - ACTIONS(431), 1, + [151899] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(892), 1, + STATE(4939), 1, sym_user_type, - STATE(972), 1, - sym_delegation_specifier, - STATE(996), 1, - sym_function_type, - STATE(1005), 1, + STATE(5019), 1, sym__delegation_specifiers, - STATE(9938), 1, + STATE(5032), 1, + sym_function_type, + STATE(5040), 1, + sym_delegation_specifier, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631674,35 +611981,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162231] = 13, - ACTIONS(515), 1, + [151950] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(3608), 1, + sym__delegation_specifiers, + STATE(4199), 1, sym_user_type, - STATE(4064), 1, + STATE(4236), 1, sym_function_type, - STATE(9832), 1, + STATE(4243), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3103), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3141), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631710,36 +612018,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162280] = 14, - ACTIONS(515), 1, + [152001] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(2982), 1, + STATE(3731), 1, sym__delegation_specifiers, - STATE(2999), 1, + STATE(4199), 1, sym_user_type, - STATE(3077), 1, + STATE(4236), 1, sym_function_type, - STATE(3084), 1, + STATE(4243), 1, sym_delegation_specifier, - STATE(9832), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631747,35 +612055,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162331] = 13, - ACTIONS(115), 1, + [152052] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(5426), 1, + STATE(3796), 1, sym_user_type, - STATE(5470), 1, + STATE(3939), 1, sym_function_type, - STATE(10042), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4698), 2, + STATE(2904), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631783,36 +612091,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162380] = 14, - ACTIONS(8824), 1, + [152101] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(8478), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(3796), 1, sym_user_type, - STATE(8815), 1, - sym__delegation_specifiers, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(3939), 1, sym_function_type, - STATE(10123), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(2902), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631820,36 +612127,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162431] = 14, - ACTIONS(431), 1, + [152150] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(889), 1, + STATE(4690), 1, sym__delegation_specifiers, - STATE(1439), 1, + STATE(5273), 1, sym_user_type, - STATE(1647), 1, + STATE(5324), 1, sym_function_type, - STATE(2113), 1, + STATE(5524), 1, sym_delegation_specifier, - STATE(9938), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631857,36 +612164,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162482] = 14, - ACTIONS(431), 1, + [152201] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(841), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(897), 1, - sym__delegation_specifiers, - STATE(1439), 1, + STATE(8345), 1, sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(2113), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9938), 1, + STATE(8422), 1, + sym_function_type, + STATE(9088), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631894,33 +612201,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162533] = 14, - ACTIONS(431), 1, + [152252] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(824), 1, sym_simple_identifier, - STATE(841), 1, + STATE(825), 1, sym__simple_user_type, - STATE(892), 1, + STATE(1397), 1, sym_user_type, - STATE(903), 1, - sym__delegation_specifiers, - STATE(972), 1, - sym_delegation_specifier, - STATE(996), 1, + STATE(1684), 1, sym_function_type, - STATE(9938), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(868), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -631931,36 +612237,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162584] = 14, - ACTIONS(211), 1, + [152301] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3279), 1, - sym__delegation_specifiers, - STATE(4196), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(1397), 1, sym_user_type, - STATE(4252), 1, + STATE(1684), 1, sym_function_type, - STATE(4313), 1, - sym_delegation_specifier, - STATE(9757), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(871), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631968,35 +612273,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162635] = 13, - ACTIONS(515), 1, + [152350] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4939), 1, sym_user_type, - STATE(4064), 1, + STATE(5032), 1, sym_function_type, - STATE(9832), 1, + STATE(5040), 1, + sym_delegation_specifier, + STATE(5048), 1, + sym__delegation_specifiers, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3004), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3141), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632004,36 +612310,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162684] = 14, - ACTIONS(431), 1, + [152401] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(934), 1, - sym__delegation_specifiers, - STATE(1439), 1, + STATE(4939), 1, sym_user_type, - STATE(1647), 1, + STATE(5032), 1, sym_function_type, - STATE(2113), 1, + STATE(5040), 1, sym_delegation_specifier, - STATE(9938), 1, + STATE(5044), 1, + sym__delegation_specifiers, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632041,36 +612347,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162735] = 14, - ACTIONS(431), 1, + [152452] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(892), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(906), 1, + STATE(4952), 1, sym__delegation_specifiers, - STATE(972), 1, + STATE(5025), 1, sym_delegation_specifier, - STATE(996), 1, + STATE(5041), 1, sym_function_type, - STATE(9938), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632078,35 +612384,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162786] = 13, - ACTIONS(515), 1, + [152503] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(1397), 1, sym_user_type, - STATE(4064), 1, + STATE(1684), 1, sym_function_type, - STATE(9832), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3028), 2, + STATE(924), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632114,36 +612420,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162835] = 14, - ACTIONS(515), 1, + [152552] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2954), 1, - sym__delegation_specifiers, - STATE(2999), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(1397), 1, sym_user_type, - STATE(3077), 1, + STATE(1684), 1, sym_function_type, - STATE(3084), 1, - sym_delegation_specifier, - STATE(9832), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(930), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632151,36 +612456,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162886] = 14, - ACTIONS(515), 1, + [152601] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2970), 1, - sym__delegation_specifiers, - STATE(2999), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(1397), 1, sym_user_type, - STATE(3077), 1, + STATE(1684), 1, sym_function_type, - STATE(3084), 1, - sym_delegation_specifier, - STATE(9832), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(920), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632188,36 +612492,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162937] = 14, - ACTIONS(9394), 1, + [152650] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(4657), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(4548), 1, sym__simple_user_type, - STATE(5045), 1, + STATE(4939), 1, sym_user_type, - STATE(5182), 1, - sym_delegation_specifier, - STATE(5184), 1, + STATE(5032), 1, sym_function_type, - STATE(5421), 1, + STATE(5040), 1, + sym_delegation_specifier, + STATE(5297), 1, sym__delegation_specifiers, - STATE(9901), 1, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632225,36 +612529,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162988] = 14, - ACTIONS(8824), 1, + [152701] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(1397), 1, sym_user_type, - STATE(8792), 1, - sym__delegation_specifiers, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(1684), 1, sym_function_type, - STATE(10123), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(919), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632262,35 +612565,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163039] = 13, - ACTIONS(515), 1, + [152750] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(3660), 1, + sym__delegation_specifiers, + STATE(4199), 1, sym_user_type, - STATE(4064), 1, + STATE(4236), 1, sym_function_type, - STATE(9832), 1, + STATE(4243), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3035), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3141), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632298,35 +612602,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163088] = 13, - ACTIONS(7), 1, + [152801] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(3796), 1, sym_user_type, - STATE(5154), 1, + STATE(3939), 1, sym_function_type, - STATE(10095), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5056), 2, + STATE(3028), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5384), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632334,33 +612638,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163137] = 14, - ACTIONS(431), 1, + [152850] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(824), 1, sym_simple_identifier, - STATE(841), 1, + STATE(825), 1, sym__simple_user_type, - STATE(892), 1, + STATE(1397), 1, sym_user_type, - STATE(929), 1, - sym__delegation_specifiers, - STATE(972), 1, - sym_delegation_specifier, - STATE(996), 1, + STATE(1684), 1, sym_function_type, - STATE(9938), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(908), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -632371,35 +612674,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163188] = 13, - ACTIONS(7), 1, + [152899] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(825), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(1397), 1, sym_user_type, - STATE(5154), 1, + STATE(1684), 1, sym_function_type, - STATE(10095), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5142), 2, + STATE(907), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5384), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632407,36 +612710,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163237] = 14, - ACTIONS(7), 1, + [152948] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(825), 1, sym__simple_user_type, - STATE(5056), 1, - sym__delegation_specifiers, - STATE(5645), 1, + STATE(1397), 1, sym_user_type, - STATE(5697), 1, + STATE(1684), 1, sym_function_type, - STATE(5761), 1, - sym_delegation_specifier, - STATE(10095), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(886), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632444,35 +612746,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163288] = 13, - ACTIONS(7), 1, + [152997] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3607), 1, + sym__delegation_specifiers, + STATE(4199), 1, sym_user_type, - STATE(5154), 1, + STATE(4236), 1, sym_function_type, - STATE(10095), 1, + STATE(4243), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5033), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632480,35 +612783,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163337] = 13, - ACTIONS(7), 1, + [153048] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(3796), 1, sym_user_type, - STATE(5154), 1, + STATE(3939), 1, sym_function_type, - STATE(10095), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5031), 2, + STATE(2898), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5384), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632516,35 +612819,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163386] = 13, - ACTIONS(7), 1, + [153097] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(825), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(1397), 1, sym_user_type, - STATE(5154), 1, + STATE(1684), 1, sym_function_type, - STATE(10095), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5032), 2, + STATE(869), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5384), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632552,36 +612855,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163435] = 14, - ACTIONS(8824), 1, + [153146] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(1397), 1, sym_user_type, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(1684), 1, sym_function_type, - STATE(9567), 1, - sym__delegation_specifiers, - STATE(10123), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(910), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632589,36 +612891,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163486] = 14, - ACTIONS(9430), 1, + [153195] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5848), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(8229), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(8715), 1, + STATE(4132), 1, sym_function_type, - STATE(8719), 1, - sym_delegation_specifier, - STATE(8917), 1, - sym__delegation_specifiers, - STATE(9945), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(3096), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632626,35 +612927,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163537] = 13, - ACTIONS(7), 1, + [153244] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3605), 1, + sym__delegation_specifiers, + STATE(3609), 1, sym_user_type, - STATE(5154), 1, + STATE(3754), 1, + sym_delegation_specifier, + STATE(3825), 1, sym_function_type, - STATE(10095), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5112), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632662,36 +612964,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163586] = 14, - ACTIONS(8824), 1, + [153295] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(1397), 1, sym_user_type, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(1684), 1, sym_function_type, - STATE(9385), 1, - sym__delegation_specifiers, - STATE(10123), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(915), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632699,35 +613000,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163637] = 13, - ACTIONS(7), 1, + [153344] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(5154), 1, + STATE(4132), 1, sym_function_type, - STATE(10095), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5069), 2, + STATE(3081), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5384), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632735,35 +613036,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163686] = 13, - ACTIONS(7), 1, + [153393] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(4939), 1, sym_user_type, - STATE(5154), 1, + STATE(5026), 1, + sym__delegation_specifiers, + STATE(5032), 1, sym_function_type, - STATE(10095), 1, + STATE(5040), 1, + sym_delegation_specifier, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5071), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632771,36 +613073,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163735] = 14, - ACTIONS(211), 1, + [153444] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3275), 1, + STATE(3614), 1, sym__delegation_specifiers, - STATE(4196), 1, + STATE(4199), 1, sym_user_type, - STATE(4252), 1, + STATE(4236), 1, sym_function_type, - STATE(4313), 1, + STATE(4243), 1, sym_delegation_specifier, - STATE(9757), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632808,35 +613110,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163786] = 13, - ACTIONS(7), 1, + [153495] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(5154), 1, + STATE(4132), 1, sym_function_type, - STATE(10095), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5099), 2, + STATE(3078), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5384), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632844,36 +613146,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163835] = 14, - ACTIONS(431), 1, + [153544] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(923), 1, - sym__delegation_specifiers, - STATE(1439), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(2113), 1, + STATE(5020), 1, + sym__delegation_specifiers, + STATE(5025), 1, sym_delegation_specifier, - STATE(9938), 1, + STATE(5041), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632881,36 +613183,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163886] = 14, - ACTIONS(515), 1, + [153595] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(2999), 1, + STATE(4049), 1, sym_user_type, - STATE(3007), 1, - sym__delegation_specifiers, - STATE(3077), 1, + STATE(4132), 1, sym_function_type, - STATE(3084), 1, - sym_delegation_specifier, - STATE(9832), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(3068), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632918,35 +613219,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163937] = 13, - ACTIONS(7), 1, + [153644] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(5154), 1, + STATE(4132), 1, sym_function_type, - STATE(10095), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5080), 2, + STATE(3139), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5384), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632954,35 +613255,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163986] = 13, - ACTIONS(7), 1, + [153693] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(5154), 1, + STATE(4236), 1, sym_function_type, - STATE(10095), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5026), 2, + STATE(3610), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5384), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632990,36 +613291,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164035] = 14, - ACTIONS(9394), 1, + [153742] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(4657), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(4548), 1, sym__simple_user_type, - STATE(5045), 1, + STATE(4939), 1, sym_user_type, - STATE(5182), 1, - sym_delegation_specifier, - STATE(5184), 1, - sym_function_type, - STATE(5194), 1, + STATE(5002), 1, sym__delegation_specifiers, - STATE(9901), 1, + STATE(5032), 1, + sym_function_type, + STATE(5040), 1, + sym_delegation_specifier, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633027,35 +613328,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164086] = 13, - ACTIONS(7), 1, + [153793] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(4939), 1, sym_user_type, - STATE(5154), 1, + STATE(5000), 1, + sym__delegation_specifiers, + STATE(5032), 1, sym_function_type, - STATE(10095), 1, + STATE(5040), 1, + sym_delegation_specifier, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5034), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633063,36 +613365,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164135] = 14, - ACTIONS(211), 1, + [153844] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(3258), 1, - sym__delegation_specifiers, - STATE(4196), 1, + STATE(4049), 1, sym_user_type, - STATE(4252), 1, + STATE(4132), 1, sym_function_type, - STATE(4313), 1, - sym_delegation_specifier, - STATE(9757), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(3142), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633100,35 +613401,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164186] = 13, - ACTIONS(7), 1, + [153893] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(5273), 1, sym_user_type, - STATE(5154), 1, + STATE(5324), 1, sym_function_type, - STATE(10095), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5047), 2, + STATE(4601), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5384), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633136,36 +613437,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164235] = 14, - ACTIONS(8824), 1, + [153942] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(8478), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(8897), 1, + STATE(3731), 1, + sym__delegation_specifiers, + STATE(3754), 1, sym_delegation_specifier, - STATE(8904), 1, + STATE(3825), 1, sym_function_type, - STATE(8910), 1, - sym__delegation_specifiers, - STATE(10123), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633173,36 +613474,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164286] = 14, - ACTIONS(431), 1, + [153993] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(841), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(910), 1, - sym__delegation_specifiers, - STATE(1439), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(1647), 1, + STATE(4132), 1, sym_function_type, - STATE(2113), 1, - sym_delegation_specifier, - STATE(9938), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(3202), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633210,35 +613510,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164337] = 13, - ACTIONS(7), 1, + [154042] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(5154), 1, + STATE(4132), 1, sym_function_type, - STATE(10095), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5079), 2, + STATE(3208), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5384), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633246,35 +613546,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164386] = 13, - ACTIONS(7), 1, + [154091] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(5273), 1, sym_user_type, - STATE(5154), 1, + STATE(5324), 1, sym_function_type, - STATE(10095), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5100), 2, + STATE(4600), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5384), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633282,36 +613582,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164435] = 14, - ACTIONS(7), 1, + [154140] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(5142), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3622), 1, sym__delegation_specifiers, - STATE(5645), 1, + STATE(4199), 1, sym_user_type, - STATE(5697), 1, + STATE(4236), 1, sym_function_type, - STATE(5761), 1, + STATE(4243), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633319,36 +613619,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164486] = 14, - ACTIONS(7), 1, + [154191] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5033), 1, - sym__delegation_specifiers, - STATE(5645), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(5697), 1, + STATE(4132), 1, sym_function_type, - STATE(5761), 1, - sym_delegation_specifier, - STATE(10095), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(3341), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633356,35 +613655,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164537] = 13, - ACTIONS(7), 1, + [154240] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3624), 1, + sym__delegation_specifiers, + STATE(4199), 1, sym_user_type, - STATE(5154), 1, + STATE(4236), 1, sym_function_type, - STATE(10095), 1, + STATE(4243), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5070), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5384), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633392,35 +613692,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164586] = 13, - ACTIONS(7), 1, + [154291] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(5154), 1, + STATE(4132), 1, sym_function_type, - STATE(10095), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5039), 2, + STATE(3253), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5384), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633428,36 +613728,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164635] = 14, - ACTIONS(431), 1, + [154340] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(841), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(892), 1, + STATE(8345), 1, sym_user_type, - STATE(972), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(996), 1, + STATE(8422), 1, sym_function_type, - STATE(1017), 1, + STATE(8810), 1, sym__delegation_specifiers, - STATE(9938), 1, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633465,36 +613765,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164686] = 14, - ACTIONS(9394), 1, + [154391] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, sym__simple_user_type, - STATE(5045), 1, + STATE(5273), 1, sym_user_type, - STATE(5182), 1, - sym_delegation_specifier, - STATE(5184), 1, + STATE(5324), 1, sym_function_type, - STATE(5201), 1, - sym__delegation_specifiers, - STATE(9901), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(4681), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633502,36 +613801,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164737] = 14, - ACTIONS(431), 1, + [154440] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(841), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(892), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(911), 1, - sym__delegation_specifiers, - STATE(972), 1, - sym_delegation_specifier, - STATE(996), 1, + STATE(4132), 1, sym_function_type, - STATE(9938), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(3125), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633539,36 +613837,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164788] = 14, - ACTIONS(9430), 1, + [154489] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(8229), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(8715), 1, - sym_function_type, - STATE(8719), 1, - sym_delegation_specifier, - STATE(8992), 1, + STATE(3666), 1, sym__delegation_specifiers, - STATE(9945), 1, + STATE(3754), 1, + sym_delegation_specifier, + STATE(3825), 1, + sym_function_type, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633576,36 +613874,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164839] = 14, - ACTIONS(9430), 1, + [154540] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5848), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(8229), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(8674), 1, - sym__delegation_specifiers, - STATE(8715), 1, + STATE(4132), 1, sym_function_type, - STATE(8719), 1, - sym_delegation_specifier, - STATE(9945), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(3117), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633613,36 +613910,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164890] = 14, - ACTIONS(431), 1, + [154589] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(904), 1, - sym__delegation_specifiers, - STATE(1439), 1, + STATE(4939), 1, sym_user_type, - STATE(1647), 1, + STATE(5032), 1, sym_function_type, - STATE(2113), 1, + STATE(5040), 1, sym_delegation_specifier, - STATE(9938), 1, + STATE(5291), 1, + sym__delegation_specifiers, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633650,36 +613947,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164941] = 14, - ACTIONS(7), 1, + [154640] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(5031), 1, - sym__delegation_specifiers, - STATE(5645), 1, + STATE(8345), 1, sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(5761), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(8422), 1, + sym_function_type, + STATE(8451), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633687,36 +613984,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164992] = 14, - ACTIONS(431), 1, + [154691] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(892), 1, - sym_user_type, - STATE(926), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4944), 1, sym__delegation_specifiers, - STATE(972), 1, + STATE(4951), 1, + sym_user_type, + STATE(5025), 1, sym_delegation_specifier, - STATE(996), 1, + STATE(5041), 1, sym_function_type, - STATE(9938), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633724,36 +614021,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165043] = 14, - ACTIONS(7), 1, + [154742] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(5032), 1, - sym__delegation_specifiers, - STATE(5645), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(5761), 1, + STATE(3661), 1, + sym__delegation_specifiers, + STATE(3754), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(3825), 1, + sym_function_type, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633761,36 +614058,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165094] = 14, - ACTIONS(431), 1, + [154793] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(841), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(902), 1, - sym__delegation_specifiers, - STATE(1439), 1, + STATE(8345), 1, sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(2113), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9938), 1, + STATE(8422), 1, + sym_function_type, + STATE(9073), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633798,36 +614095,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165145] = 14, - ACTIONS(515), 1, + [154844] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(2964), 1, + STATE(3650), 1, sym__delegation_specifiers, - STATE(2999), 1, + STATE(4199), 1, sym_user_type, - STATE(3077), 1, + STATE(4236), 1, sym_function_type, - STATE(3084), 1, + STATE(4243), 1, sym_delegation_specifier, - STATE(9832), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633835,36 +614132,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165196] = 14, - ACTIONS(431), 1, + [154895] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(889), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4907), 1, sym__delegation_specifiers, - STATE(892), 1, + STATE(4951), 1, sym_user_type, - STATE(972), 1, + STATE(5025), 1, sym_delegation_specifier, - STATE(996), 1, + STATE(5041), 1, sym_function_type, - STATE(9938), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633872,36 +614169,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165247] = 14, - ACTIONS(515), 1, + [154946] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(4534), 1, sym__lexical_identifier, - STATE(2968), 1, - sym__delegation_specifiers, - STATE(2999), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(3077), 1, + STATE(5324), 1, sym_function_type, - STATE(3084), 1, - sym_delegation_specifier, - STATE(9832), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(4589), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633909,36 +614205,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165298] = 14, - ACTIONS(8824), 1, + [154995] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(8345), 1, sym_user_type, - STATE(8884), 1, - sym__delegation_specifiers, - STATE(8897), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(8904), 1, + STATE(8422), 1, sym_function_type, - STATE(10123), 1, + STATE(8457), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633946,36 +614242,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165349] = 14, - ACTIONS(7), 1, + [155046] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5112), 1, - sym__delegation_specifiers, - STATE(5645), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(5697), 1, + STATE(4132), 1, sym_function_type, - STATE(5761), 1, - sym_delegation_specifier, - STATE(10095), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(3312), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633983,35 +614278,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165400] = 13, - ACTIONS(115), 1, + [155095] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(5426), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4939), 1, sym_user_type, - STATE(5470), 1, + STATE(4977), 1, + sym__delegation_specifiers, + STATE(5032), 1, sym_function_type, - STATE(10042), 1, + STATE(5040), 1, + sym_delegation_specifier, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4699), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4985), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634019,36 +614315,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165449] = 14, - ACTIONS(431), 1, + [155146] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(841), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(887), 1, - sym__delegation_specifiers, - STATE(1439), 1, + STATE(8394), 1, sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(2113), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(9938), 1, + STATE(8625), 1, + sym_function_type, + STATE(9219), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634056,36 +614352,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165500] = 14, - ACTIONS(7), 1, + [155197] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(5142), 1, - sym__delegation_specifiers, - STATE(5154), 1, + STATE(4132), 1, sym_function_type, - STATE(5156), 1, - sym_delegation_specifier, - STATE(10095), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(3070), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634093,36 +614388,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165551] = 14, - ACTIONS(431), 1, + [155246] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(841), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(884), 1, - sym__delegation_specifiers, - STATE(1439), 1, + STATE(8345), 1, sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(2113), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9938), 1, + STATE(8422), 1, + sym_function_type, + STATE(8738), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634130,36 +614425,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165602] = 14, - ACTIONS(7), 1, + [155297] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(825), 1, sym__simple_user_type, - STATE(5069), 1, + STATE(915), 1, sym__delegation_specifiers, - STATE(5645), 1, + STATE(1397), 1, sym_user_type, - STATE(5697), 1, + STATE(1684), 1, sym_function_type, - STATE(5761), 1, + STATE(1868), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634167,36 +614462,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165653] = 14, - ACTIONS(7), 1, + [155348] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(825), 1, sym__simple_user_type, - STATE(5071), 1, + STATE(910), 1, sym__delegation_specifiers, - STATE(5645), 1, + STATE(1397), 1, sym_user_type, - STATE(5697), 1, + STATE(1684), 1, sym_function_type, - STATE(5761), 1, + STATE(1868), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634204,36 +614499,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165704] = 14, - ACTIONS(7), 1, + [155399] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(825), 1, sym__simple_user_type, - STATE(5099), 1, + STATE(869), 1, sym__delegation_specifiers, - STATE(5645), 1, + STATE(1397), 1, sym_user_type, - STATE(5697), 1, + STATE(1684), 1, sym_function_type, - STATE(5761), 1, + STATE(1868), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634241,33 +614536,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165755] = 14, - ACTIONS(431), 1, + [155450] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(824), 1, sym_simple_identifier, - STATE(841), 1, + STATE(825), 1, sym__simple_user_type, - STATE(892), 1, - sym_user_type, - STATE(897), 1, + STATE(886), 1, sym__delegation_specifiers, - STATE(972), 1, - sym_delegation_specifier, - STATE(996), 1, + STATE(1397), 1, + sym_user_type, + STATE(1684), 1, sym_function_type, - STATE(9938), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -634278,35 +614573,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165806] = 13, - ACTIONS(115), 1, + [155501] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(5426), 1, + STATE(3609), 1, sym_user_type, - STATE(5470), 1, + STATE(3635), 1, + sym__delegation_specifiers, + STATE(3754), 1, + sym_delegation_specifier, + STATE(3825), 1, sym_function_type, - STATE(10042), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4703), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4985), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634314,36 +614610,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165855] = 14, - ACTIONS(7), 1, + [155552] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(5080), 1, - sym__delegation_specifiers, - STATE(5645), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(5761), 1, + STATE(3754), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(3801), 1, + sym__delegation_specifiers, + STATE(3825), 1, + sym_function_type, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634351,33 +614647,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165906] = 14, + [155603] = 14, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(5026), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4928), 1, sym__delegation_specifiers, - STATE(5645), 1, + STATE(4951), 1, sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(5761), 1, + STATE(5025), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(5041), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1920), 7, @@ -634388,35 +614684,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165957] = 13, - ACTIONS(115), 1, + [155654] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(5426), 1, + STATE(3796), 1, sym_user_type, - STATE(5470), 1, + STATE(3939), 1, sym_function_type, - STATE(10042), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4706), 2, + STATE(2925), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634424,33 +614720,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166006] = 14, - ACTIONS(431), 1, + [155703] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(824), 1, sym_simple_identifier, - STATE(841), 1, + STATE(825), 1, sym__simple_user_type, - STATE(892), 1, - sym_user_type, - STATE(934), 1, + STATE(908), 1, sym__delegation_specifiers, - STATE(972), 1, - sym_delegation_specifier, - STATE(996), 1, + STATE(1397), 1, + sym_user_type, + STATE(1684), 1, sym_function_type, - STATE(9938), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -634461,36 +614757,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166057] = 14, - ACTIONS(7), 1, + [155754] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(5034), 1, - sym__delegation_specifiers, - STATE(5645), 1, + STATE(8345), 1, sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(5761), 1, + STATE(8416), 1, + sym__delegation_specifiers, + STATE(8418), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(8422), 1, + sym_function_type, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634498,36 +614794,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166108] = 14, - ACTIONS(515), 1, + [155805] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2999), 1, + STATE(4896), 1, + sym__delegation_specifiers, + STATE(4951), 1, sym_user_type, - STATE(3077), 1, - sym_function_type, - STATE(3084), 1, + STATE(5025), 1, sym_delegation_specifier, - STATE(3103), 1, - sym__delegation_specifiers, - STATE(9832), 1, + STATE(5041), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634535,36 +614831,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166159] = 14, - ACTIONS(7), 1, + [155856] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(5047), 1, - sym__delegation_specifiers, - STATE(5645), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(5761), 1, + STATE(3610), 1, + sym__delegation_specifiers, + STATE(3754), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(3825), 1, + sym_function_type, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634572,33 +614868,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166210] = 14, + [155907] = 14, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(5079), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4894), 1, sym__delegation_specifiers, - STATE(5645), 1, + STATE(4951), 1, sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(5761), 1, + STATE(5025), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(5041), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1920), 7, @@ -634609,36 +614905,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166261] = 14, - ACTIONS(7), 1, + [155958] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(5100), 1, - sym__delegation_specifiers, - STATE(5645), 1, + STATE(8345), 1, sym_user_type, - STATE(5697), 1, - sym_function_type, - STATE(5761), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(8422), 1, + sym_function_type, + STATE(8428), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634646,35 +614942,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166312] = 13, - ACTIONS(115), 1, + [156009] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(5426), 1, + STATE(3608), 1, + sym__delegation_specifiers, + STATE(3609), 1, sym_user_type, - STATE(5470), 1, + STATE(3754), 1, + sym_delegation_specifier, + STATE(3825), 1, sym_function_type, - STATE(10042), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4738), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4985), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634682,36 +614979,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166361] = 14, - ACTIONS(7), 1, + [156060] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(825), 1, sym__simple_user_type, - STATE(5070), 1, + STATE(919), 1, sym__delegation_specifiers, - STATE(5645), 1, + STATE(1397), 1, sym_user_type, - STATE(5697), 1, + STATE(1684), 1, sym_function_type, - STATE(5761), 1, + STATE(1868), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634719,36 +615016,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166412] = 14, - ACTIONS(7), 1, + [156111] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(825), 1, sym__simple_user_type, - STATE(5039), 1, + STATE(920), 1, sym__delegation_specifiers, - STATE(5645), 1, + STATE(1397), 1, sym_user_type, - STATE(5697), 1, + STATE(1684), 1, sym_function_type, - STATE(5761), 1, + STATE(1868), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634756,32 +615053,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166463] = 13, - ACTIONS(115), 1, + [156162] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(5426), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4597), 1, + sym__delegation_specifiers, + STATE(5273), 1, sym_user_type, - STATE(5470), 1, + STATE(5324), 1, sym_function_type, - STATE(10042), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4725), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4985), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -634792,35 +615090,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166512] = 13, - ACTIONS(115), 1, + [156213] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(5426), 1, + STATE(3609), 1, sym_user_type, - STATE(5470), 1, + STATE(3660), 1, + sym__delegation_specifiers, + STATE(3754), 1, + sym_delegation_specifier, + STATE(3825), 1, sym_function_type, - STATE(10042), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4702), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4985), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634828,36 +615127,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166561] = 14, - ACTIONS(431), 1, + [156264] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(892), 1, - sym_user_type, - STATE(923), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4923), 1, sym__delegation_specifiers, - STATE(972), 1, + STATE(4951), 1, + sym_user_type, + STATE(5025), 1, sym_delegation_specifier, - STATE(996), 1, + STATE(5041), 1, sym_function_type, - STATE(9938), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634865,36 +615164,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166612] = 14, + [156315] = 13, ACTIONS(211), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3425), 1, - sym__delegation_specifiers, - STATE(4196), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(4252), 1, + STATE(5324), 1, sym_function_type, - STATE(4313), 1, - sym_delegation_specifier, - STATE(9757), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(4590), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634902,35 +615200,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166663] = 13, - ACTIONS(115), 1, + [156364] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(5426), 1, + STATE(4922), 1, + sym__delegation_specifiers, + STATE(4951), 1, sym_user_type, - STATE(5470), 1, + STATE(5025), 1, + sym_delegation_specifier, + STATE(5041), 1, sym_function_type, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4737), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4985), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634938,35 +615237,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166712] = 13, - ACTIONS(211), 1, + [156415] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4196), 1, + STATE(3607), 1, + sym__delegation_specifiers, + STATE(3609), 1, sym_user_type, - STATE(4252), 1, + STATE(3754), 1, + sym_delegation_specifier, + STATE(3825), 1, sym_function_type, - STATE(9757), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3154), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3470), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634974,33 +615274,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166761] = 14, - ACTIONS(431), 1, + [156466] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(824), 1, sym_simple_identifier, - STATE(841), 1, + STATE(825), 1, sym__simple_user_type, - STATE(892), 1, + STATE(925), 1, sym_user_type, - STATE(910), 1, - sym__delegation_specifiers, - STATE(972), 1, - sym_delegation_specifier, - STATE(996), 1, + STATE(929), 1, sym_function_type, - STATE(9938), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(915), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -635011,36 +615310,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166812] = 14, - ACTIONS(8824), 1, + [156515] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8654), 1, - sym_user_type, - STATE(8829), 1, + STATE(930), 1, sym__delegation_specifiers, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(1397), 1, + sym_user_type, + STATE(1684), 1, sym_function_type, - STATE(10123), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635048,35 +615347,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166863] = 13, - ACTIONS(115), 1, + [156566] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5426), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(924), 1, + sym__delegation_specifiers, + STATE(1397), 1, sym_user_type, - STATE(5470), 1, + STATE(1684), 1, sym_function_type, - STATE(10042), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4728), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4985), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635084,36 +615384,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166912] = 14, - ACTIONS(9394), 1, + [156617] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, sym__simple_user_type, - STATE(5045), 1, + STATE(925), 1, sym_user_type, - STATE(5182), 1, - sym_delegation_specifier, - STATE(5184), 1, + STATE(929), 1, sym_function_type, - STATE(5187), 1, - sym__delegation_specifiers, - STATE(9901), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(910), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635121,36 +615420,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166963] = 14, - ACTIONS(9394), 1, + [156666] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, sym_simple_identifier, - STATE(4657), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4664), 1, - sym__simple_user_type, - STATE(5045), 1, + STATE(3609), 1, sym_user_type, - STATE(5182), 1, + STATE(3614), 1, + sym__delegation_specifiers, + STATE(3754), 1, sym_delegation_specifier, - STATE(5184), 1, + STATE(3825), 1, sym_function_type, - STATE(5193), 1, - sym__delegation_specifiers, - STATE(9901), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635158,36 +615457,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167014] = 14, - ACTIONS(9430), 1, + [156717] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(5848), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8229), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8607), 1, - sym_user_type, - STATE(8700), 1, + STATE(4589), 1, sym__delegation_specifiers, - STATE(8715), 1, + STATE(5273), 1, + sym_user_type, + STATE(5324), 1, sym_function_type, - STATE(8719), 1, + STATE(5524), 1, sym_delegation_specifier, - STATE(9945), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635195,36 +615494,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167065] = 14, - ACTIONS(7), 1, + [156768] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(5071), 1, - sym__delegation_specifiers, - STATE(5073), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(5154), 1, - sym_function_type, - STATE(5156), 1, + STATE(3622), 1, + sym__delegation_specifiers, + STATE(3754), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(3825), 1, + sym_function_type, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635232,36 +615531,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167116] = 14, - ACTIONS(431), 1, + [156819] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(892), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(904), 1, + STATE(3624), 1, sym__delegation_specifiers, - STATE(972), 1, + STATE(3754), 1, sym_delegation_specifier, - STATE(996), 1, + STATE(3825), 1, sym_function_type, - STATE(9938), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635269,36 +615568,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167167] = 14, - ACTIONS(8824), 1, + [156870] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8654), 1, - sym_user_type, - STATE(8747), 1, + STATE(4601), 1, sym__delegation_specifiers, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(5273), 1, + sym_user_type, + STATE(5324), 1, sym_function_type, - STATE(10123), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635306,35 +615605,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167218] = 13, - ACTIONS(515), 1, + [156921] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(925), 1, sym_user_type, - STATE(4064), 1, + STATE(929), 1, sym_function_type, - STATE(9832), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3047), 2, + STATE(869), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635342,36 +615641,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167267] = 14, - ACTIONS(8824), 1, + [156970] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(925), 1, sym_user_type, - STATE(8748), 1, - sym__delegation_specifiers, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(929), 1, sym_function_type, - STATE(10123), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(886), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635379,36 +615677,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167318] = 14, - ACTIONS(9394), 1, + [157019] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, sym__simple_user_type, - STATE(5045), 1, + STATE(925), 1, sym_user_type, - STATE(5182), 1, - sym_delegation_specifier, - STATE(5184), 1, + STATE(929), 1, sym_function_type, - STATE(5197), 1, - sym__delegation_specifiers, - STATE(9901), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(907), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635416,35 +615713,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167369] = 13, - ACTIONS(115), 1, + [157068] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5426), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(925), 1, sym_user_type, - STATE(5470), 1, + STATE(929), 1, sym_function_type, - STATE(10042), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4717), 2, + STATE(908), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635452,35 +615749,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167418] = 13, - ACTIONS(515), 1, + [157117] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3824), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(871), 1, + sym__delegation_specifiers, + STATE(1397), 1, sym_user_type, - STATE(4064), 1, + STATE(1684), 1, sym_function_type, - STATE(9832), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3009), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3141), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635488,35 +615786,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167467] = 13, - ACTIONS(115), 1, + [157168] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5426), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(925), 1, sym_user_type, - STATE(5470), 1, + STATE(929), 1, sym_function_type, - STATE(10042), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4716), 2, + STATE(919), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635524,36 +615822,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167516] = 14, - ACTIONS(9394), 1, + [157217] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(5045), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(5182), 1, - sym_delegation_specifier, - STATE(5184), 1, + STATE(5041), 1, sym_function_type, - STATE(5202), 1, - sym__delegation_specifiers, - STATE(9901), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(4958), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635561,35 +615858,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167567] = 13, - ACTIONS(115), 1, + [157266] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(5426), 1, + STATE(4951), 1, sym_user_type, - STATE(5470), 1, + STATE(5041), 1, sym_function_type, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4724), 2, + STATE(5062), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635597,36 +615894,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167616] = 14, - ACTIONS(211), 1, + [157315] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3199), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(868), 1, sym__delegation_specifiers, - STATE(4196), 1, + STATE(1397), 1, sym_user_type, - STATE(4252), 1, + STATE(1684), 1, sym_function_type, - STATE(4313), 1, + STATE(1868), 1, sym_delegation_specifier, - STATE(9757), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635634,36 +615931,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167667] = 14, - ACTIONS(8824), 1, + [157366] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(8478), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(8751), 1, + STATE(3650), 1, sym__delegation_specifiers, - STATE(8897), 1, + STATE(3754), 1, sym_delegation_specifier, - STATE(8904), 1, + STATE(3825), 1, sym_function_type, - STATE(10123), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635671,36 +615968,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167718] = 14, - ACTIONS(211), 1, + [157417] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3151), 1, - sym__delegation_specifiers, - STATE(4196), 1, + STATE(4951), 1, sym_user_type, - STATE(4252), 1, + STATE(5041), 1, sym_function_type, - STATE(4313), 1, - sym_delegation_specifier, - STATE(9757), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(4894), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635708,36 +616004,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167769] = 14, - ACTIONS(115), 1, + [157466] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4716), 1, - sym__delegation_specifiers, - STATE(5426), 1, + STATE(4951), 1, sym_user_type, - STATE(5470), 1, + STATE(5041), 1, sym_function_type, - STATE(5684), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(4896), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635745,36 +616040,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167820] = 14, - ACTIONS(211), 1, + [157515] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3154), 1, - sym__delegation_specifiers, - STATE(4196), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(925), 1, sym_user_type, - STATE(4252), 1, + STATE(929), 1, sym_function_type, - STATE(4313), 1, - sym_delegation_specifier, - STATE(9757), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(920), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635782,36 +616076,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167871] = 14, - ACTIONS(9430), 1, + [157564] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5848), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8229), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(925), 1, sym_user_type, - STATE(8685), 1, - sym__delegation_specifiers, - STATE(8715), 1, + STATE(929), 1, sym_function_type, - STATE(8719), 1, - sym_delegation_specifier, - STATE(9945), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(930), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635819,36 +616112,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167922] = 14, - ACTIONS(9430), 1, + [157613] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(8229), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(8684), 1, - sym__delegation_specifiers, - STATE(8715), 1, + STATE(5041), 1, sym_function_type, - STATE(8719), 1, - sym_delegation_specifier, - STATE(9945), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(4900), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635856,36 +616148,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167973] = 14, - ACTIONS(8824), 1, + [157662] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(8478), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(8756), 1, - sym__delegation_specifiers, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(5041), 1, sym_function_type, - STATE(10123), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(5020), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635893,33 +616184,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168024] = 14, - ACTIONS(431), 1, + [157711] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(824), 1, sym_simple_identifier, - STATE(841), 1, + STATE(825), 1, sym__simple_user_type, - STATE(892), 1, + STATE(925), 1, sym_user_type, - STATE(902), 1, - sym__delegation_specifiers, - STATE(972), 1, - sym_delegation_specifier, - STATE(996), 1, + STATE(929), 1, sym_function_type, - STATE(9938), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(924), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -635930,36 +616220,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168075] = 14, - ACTIONS(115), 1, + [157760] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4717), 1, - sym__delegation_specifiers, - STATE(5426), 1, + STATE(4951), 1, sym_user_type, - STATE(5470), 1, + STATE(5041), 1, sym_function_type, - STATE(5684), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(4955), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635967,36 +616256,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168126] = 14, - ACTIONS(115), 1, + [157809] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4728), 1, - sym__delegation_specifiers, - STATE(5426), 1, + STATE(4951), 1, sym_user_type, - STATE(5470), 1, + STATE(5041), 1, sym_function_type, - STATE(5684), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(4952), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636004,36 +616292,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168177] = 14, - ACTIONS(8824), 1, + [157858] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(925), 1, sym_user_type, - STATE(8759), 1, - sym__delegation_specifiers, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(929), 1, sym_function_type, - STATE(10123), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(871), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636041,36 +616328,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168228] = 14, - ACTIONS(115), 1, + [157907] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4737), 1, + STATE(3605), 1, sym__delegation_specifiers, - STATE(5426), 1, + STATE(4199), 1, sym_user_type, - STATE(5470), 1, + STATE(4236), 1, sym_function_type, - STATE(5684), 1, + STATE(4243), 1, sym_delegation_specifier, - STATE(10042), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636078,33 +616365,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168279] = 14, - ACTIONS(431), 1, + [157958] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(824), 1, sym_simple_identifier, - STATE(841), 1, + STATE(825), 1, sym__simple_user_type, - STATE(887), 1, - sym__delegation_specifiers, - STATE(892), 1, + STATE(925), 1, sym_user_type, - STATE(972), 1, - sym_delegation_specifier, - STATE(996), 1, + STATE(929), 1, sym_function_type, - STATE(9938), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(868), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -636115,33 +616401,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168330] = 14, + [158007] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(5112), 1, - sym__delegation_specifiers, - STATE(5154), 1, + STATE(5041), 1, sym_function_type, - STATE(5156), 1, - sym_delegation_specifier, - STATE(10095), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(4944), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1920), 7, @@ -636152,36 +616437,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168381] = 14, - ACTIONS(431), 1, + [158056] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(884), 1, - sym__delegation_specifiers, - STATE(892), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(972), 1, - sym_delegation_specifier, - STATE(996), 1, + STATE(5041), 1, sym_function_type, - STATE(9938), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(4907), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636189,36 +616473,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168432] = 14, - ACTIONS(8824), 1, + [158105] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(925), 1, sym_user_type, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(929), 1, sym_function_type, - STATE(9317), 1, - sym__delegation_specifiers, - STATE(10123), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(932), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636226,35 +616509,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168483] = 13, - ACTIONS(115), 1, + [158154] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(5426), 1, + STATE(4951), 1, sym_user_type, - STATE(5470), 1, + STATE(5041), 1, sym_function_type, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4723), 2, + STATE(4928), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636262,36 +616545,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168532] = 14, - ACTIONS(115), 1, + [158203] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4725), 1, - sym__delegation_specifiers, - STATE(5426), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(925), 1, sym_user_type, - STATE(5470), 1, + STATE(929), 1, sym_function_type, - STATE(5684), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(894), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636299,36 +616581,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168583] = 14, - ACTIONS(115), 1, + [158252] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4738), 1, - sym__delegation_specifiers, - STATE(5426), 1, + STATE(5500), 1, sym_user_type, - STATE(5470), 1, + STATE(5557), 1, sym_function_type, - STATE(5684), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(4911), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636336,36 +616617,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168634] = 14, - ACTIONS(515), 1, + [158301] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(2999), 1, + STATE(3609), 1, sym_user_type, - STATE(3004), 1, - sym__delegation_specifiers, - STATE(3077), 1, + STATE(3825), 1, sym_function_type, - STATE(3084), 1, - sym_delegation_specifier, - STATE(9832), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(3650), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636373,35 +616653,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168685] = 13, - ACTIONS(211), 1, + [158350] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3153), 1, + STATE(4951), 1, sym_user_type, - STATE(3382), 1, + STATE(5041), 1, sym_function_type, - STATE(9757), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3315), 2, + STATE(4923), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636409,36 +616689,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168734] = 14, - ACTIONS(515), 1, + [158399] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2999), 1, + STATE(4951), 1, sym_user_type, - STATE(3028), 1, - sym__delegation_specifiers, - STATE(3077), 1, + STATE(5041), 1, sym_function_type, - STATE(3084), 1, - sym_delegation_specifier, - STATE(9832), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(4922), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636446,35 +616725,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168785] = 13, - ACTIONS(211), 1, + [158448] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3153), 1, + STATE(5500), 1, sym_user_type, - STATE(3382), 1, + STATE(5557), 1, sym_function_type, - STATE(9757), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3448), 2, + STATE(4922), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636482,36 +616761,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168834] = 14, - ACTIONS(9430), 1, + [158497] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(8229), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(5500), 1, sym_user_type, - STATE(8715), 1, + STATE(5557), 1, sym_function_type, - STATE(8719), 1, - sym_delegation_specifier, - STATE(9108), 1, - sym__delegation_specifiers, - STATE(9945), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(4923), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636519,35 +616797,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168885] = 13, - ACTIONS(211), 1, + [158546] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(4196), 1, + STATE(4951), 1, sym_user_type, - STATE(4252), 1, + STATE(5041), 1, sym_function_type, - STATE(9757), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3201), 2, + STATE(4911), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636555,35 +616833,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168934] = 13, - ACTIONS(211), 1, + [158595] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3153), 1, + STATE(3609), 1, sym_user_type, - STATE(3382), 1, + STATE(3825), 1, sym_function_type, - STATE(9757), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3279), 2, + STATE(3624), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636591,35 +616869,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168983] = 13, - ACTIONS(211), 1, + [158644] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3153), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(932), 1, + sym__delegation_specifiers, + STATE(1397), 1, sym_user_type, - STATE(3382), 1, + STATE(1684), 1, sym_function_type, - STATE(9757), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3275), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3470), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636627,35 +616906,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169032] = 13, - ACTIONS(211), 1, + [158695] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4196), 1, + STATE(3609), 1, sym_user_type, - STATE(4252), 1, + STATE(3825), 1, sym_function_type, - STATE(9757), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3199), 2, + STATE(3622), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636663,36 +616942,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169081] = 14, - ACTIONS(9394), 1, + [158744] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, sym_simple_identifier, - STATE(4657), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4664), 1, - sym__simple_user_type, - STATE(5045), 1, + STATE(3609), 1, sym_user_type, - STATE(5182), 1, - sym_delegation_specifier, - STATE(5184), 1, + STATE(3825), 1, sym_function_type, - STATE(5207), 1, - sym__delegation_specifiers, - STATE(9901), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(3614), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636700,36 +616978,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169132] = 14, - ACTIONS(9430), 1, + [158793] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(8229), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(5500), 1, sym_user_type, - STATE(8715), 1, + STATE(5557), 1, sym_function_type, - STATE(8719), 1, - sym_delegation_specifier, - STATE(9106), 1, - sym__delegation_specifiers, - STATE(9945), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(4928), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636737,36 +617014,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169183] = 14, - ACTIONS(115), 1, + [158842] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4706), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(894), 1, sym__delegation_specifiers, - STATE(5426), 1, + STATE(1397), 1, sym_user_type, - STATE(5470), 1, + STATE(1684), 1, sym_function_type, - STATE(5684), 1, + STATE(1868), 1, sym_delegation_specifier, - STATE(10042), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636774,36 +617051,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169234] = 14, - ACTIONS(115), 1, + [158893] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4703), 1, - sym__delegation_specifiers, - STATE(5426), 1, + STATE(3609), 1, sym_user_type, - STATE(5470), 1, + STATE(3825), 1, sym_function_type, - STATE(5684), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(3607), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636811,35 +617087,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169285] = 13, - ACTIONS(211), 1, + [158942] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(4196), 1, + STATE(4951), 1, sym_user_type, - STATE(4252), 1, + STATE(5025), 1, + sym_delegation_specifier, + STATE(5041), 1, sym_function_type, - STATE(9757), 1, + STATE(5062), 1, + sym__delegation_specifiers, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3190), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3470), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636847,36 +617124,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169334] = 14, - ACTIONS(8824), 1, + [158993] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(8478), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(8897), 1, + STATE(2924), 1, + sym__delegation_specifiers, + STATE(2981), 1, sym_delegation_specifier, - STATE(8904), 1, + STATE(3042), 1, sym_function_type, - STATE(9462), 1, - sym__delegation_specifiers, - STATE(10123), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636884,35 +617161,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169385] = 13, + [159044] = 13, ACTIONS(211), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4196), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(4252), 1, + STATE(5324), 1, sym_function_type, - STATE(9757), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3188), 2, + STATE(4592), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636920,36 +617197,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169434] = 14, - ACTIONS(7), 1, + [159093] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(5079), 1, - sym__delegation_specifiers, - STATE(5154), 1, + STATE(3825), 1, sym_function_type, - STATE(5156), 1, - sym_delegation_specifier, - STATE(10095), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(3660), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636957,35 +617233,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169485] = 13, + [159142] = 13, ACTIONS(211), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3153), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(3382), 1, + STATE(5324), 1, sym_function_type, - STATE(9757), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3258), 2, + STATE(4617), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636993,33 +617269,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169534] = 14, - ACTIONS(115), 1, + [159191] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4699), 1, - sym__delegation_specifiers, - STATE(5426), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(5470), 1, + STATE(5324), 1, sym_function_type, - STATE(5684), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(4581), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -637030,35 +617305,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169585] = 13, - ACTIONS(211), 1, + [159240] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3153), 1, + STATE(3609), 1, sym_user_type, - STATE(3382), 1, + STATE(3825), 1, sym_function_type, - STATE(9757), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3425), 2, + STATE(3608), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637066,35 +617341,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169634] = 13, - ACTIONS(211), 1, + [159289] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3153), 1, + STATE(3609), 1, sym_user_type, - STATE(3382), 1, + STATE(3825), 1, sym_function_type, - STATE(9757), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3151), 2, + STATE(3610), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637102,35 +617377,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169683] = 13, - ACTIONS(211), 1, + [159338] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3153), 1, + STATE(3609), 1, sym_user_type, - STATE(3382), 1, + STATE(3825), 1, sym_function_type, - STATE(9757), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3154), 2, + STATE(3801), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637138,35 +617413,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169732] = 13, - ACTIONS(211), 1, + [159387] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3153), 1, + STATE(4911), 1, + sym__delegation_specifiers, + STATE(4951), 1, sym_user_type, - STATE(3382), 1, + STATE(5025), 1, + sym_delegation_specifier, + STATE(5041), 1, sym_function_type, - STATE(9757), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3161), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3470), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637174,35 +617450,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169781] = 13, - ACTIONS(211), 1, + [159438] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3153), 1, + STATE(2900), 1, sym_user_type, - STATE(3382), 1, + STATE(2950), 1, + sym__delegation_specifiers, + STATE(2981), 1, + sym_delegation_specifier, + STATE(3042), 1, sym_function_type, - STATE(9757), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3165), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3470), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637210,36 +617487,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169830] = 14, - ACTIONS(9430), 1, + [159489] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5848), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(8229), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(8680), 1, + STATE(3070), 1, sym__delegation_specifiers, - STATE(8715), 1, + STATE(3363), 1, sym_function_type, - STATE(8719), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(9945), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637247,35 +617524,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169881] = 13, - ACTIONS(211), 1, + [159540] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3153), 1, + STATE(5500), 1, sym_user_type, - STATE(3382), 1, + STATE(5557), 1, sym_function_type, - STATE(9757), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3169), 2, + STATE(4907), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637283,35 +617560,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169930] = 13, - ACTIONS(211), 1, + [159589] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3153), 1, + STATE(5500), 1, sym_user_type, - STATE(3382), 1, + STATE(5557), 1, sym_function_type, - STATE(9757), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3176), 2, + STATE(4944), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637319,33 +617596,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169979] = 14, - ACTIONS(115), 1, + [159638] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4698), 1, - sym__delegation_specifiers, - STATE(5426), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(5470), 1, + STATE(5324), 1, sym_function_type, - STATE(5684), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(4615), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -637356,36 +617632,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170030] = 14, - ACTIONS(9430), 1, + [159687] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(8229), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(8715), 1, + STATE(3825), 1, sym_function_type, - STATE(8719), 1, - sym_delegation_specifier, - STATE(8720), 1, - sym__delegation_specifiers, - STATE(9945), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(3635), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637393,35 +617668,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170081] = 13, - ACTIONS(211), 1, + [159736] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3153), 1, + STATE(2900), 1, sym_user_type, - STATE(3382), 1, + STATE(2947), 1, + sym__delegation_specifiers, + STATE(2981), 1, + sym_delegation_specifier, + STATE(3042), 1, sym_function_type, - STATE(9757), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3181), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3470), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637429,36 +617705,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170130] = 14, - ACTIONS(515), 1, + [159787] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(2999), 1, + STATE(5686), 1, + sym_simple_identifier, + STATE(7891), 1, + sym__simple_user_type, + STATE(8345), 1, sym_user_type, - STATE(3035), 1, + STATE(8409), 1, sym__delegation_specifiers, - STATE(3077), 1, - sym_function_type, - STATE(3084), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9832), 1, + STATE(8422), 1, + sym_function_type, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637466,35 +617742,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170181] = 13, - ACTIONS(211), 1, + [159838] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(3153), 1, + STATE(3070), 1, + sym__delegation_specifiers, + STATE(4049), 1, sym_user_type, - STATE(3382), 1, + STATE(4132), 1, sym_function_type, - STATE(9757), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3188), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3470), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637502,35 +617779,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170230] = 13, - ACTIONS(211), 1, + [159889] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3153), 1, + STATE(5500), 1, sym_user_type, - STATE(3382), 1, + STATE(5557), 1, sym_function_type, - STATE(9757), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3190), 2, + STATE(4952), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637538,35 +617815,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170279] = 13, - ACTIONS(115), 1, + [159938] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4736), 1, + STATE(5500), 1, sym_user_type, - STATE(4775), 1, + STATE(5557), 1, sym_function_type, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4733), 2, + STATE(4955), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637574,36 +617851,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170328] = 14, - ACTIONS(431), 1, + [159987] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(906), 1, - sym__delegation_specifiers, - STATE(1439), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(1647), 1, - sym_function_type, - STATE(2113), 1, + STATE(2946), 1, + sym__delegation_specifiers, + STATE(2981), 1, sym_delegation_specifier, - STATE(9938), 1, + STATE(3042), 1, + sym_function_type, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637611,33 +617888,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170379] = 14, - ACTIONS(115), 1, + [160038] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4702), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4600), 1, sym__delegation_specifiers, - STATE(5426), 1, + STATE(5273), 1, sym_user_type, - STATE(5470), 1, + STATE(5324), 1, sym_function_type, - STATE(5684), 1, + STATE(5524), 1, sym_delegation_specifier, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -637648,32 +617925,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170430] = 13, - ACTIONS(115), 1, + [160089] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4736), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(4775), 1, + STATE(5324), 1, sym_function_type, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4755), 2, + STATE(4583), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -637684,36 +617961,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170479] = 14, - ACTIONS(8824), 1, + [160138] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(8478), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3635), 1, + sym__delegation_specifiers, + STATE(4199), 1, sym_user_type, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(4236), 1, sym_function_type, - STATE(8908), 1, - sym__delegation_specifiers, - STATE(10123), 1, + STATE(4243), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637721,36 +617998,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170530] = 14, + [160189] = 14, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4797), 1, - sym__delegation_specifiers, - STATE(5426), 1, + STATE(3069), 1, sym_user_type, - STATE(5470), 1, + STATE(3312), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(5684), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(10042), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637758,35 +618035,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170581] = 13, + [160240] = 14, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4736), 1, + STATE(3069), 1, sym_user_type, - STATE(4775), 1, + STATE(3117), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(10042), 1, + STATE(3629), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4724), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4985), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637794,32 +618072,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170630] = 13, - ACTIONS(115), 1, + [160291] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4736), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4681), 1, + sym__delegation_specifiers, + STATE(5273), 1, sym_user_type, - STATE(4775), 1, + STATE(5324), 1, sym_function_type, - STATE(10042), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4723), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4985), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -637830,35 +618109,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170679] = 13, - ACTIONS(211), 1, + [160342] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4196), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, sym_user_type, - STATE(4252), 1, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8625), 1, sym_function_type, - STATE(9757), 1, + STATE(9452), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3181), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3470), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637866,36 +618146,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170728] = 14, - ACTIONS(9430), 1, + [160393] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(5848), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8229), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(8345), 1, sym_user_type, - STATE(8702), 1, - sym__delegation_specifiers, - STATE(8715), 1, - sym_function_type, - STATE(8719), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9945), 1, + STATE(8422), 1, + sym_function_type, + STATE(8700), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637903,35 +618183,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170779] = 13, - ACTIONS(115), 1, + [160444] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4736), 1, + STATE(3609), 1, sym_user_type, - STATE(4775), 1, + STATE(3825), 1, sym_function_type, - STATE(10042), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4720), 2, + STATE(3661), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637939,35 +618219,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170828] = 13, - ACTIONS(211), 1, + [160493] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3153), 1, + STATE(5500), 1, sym_user_type, - STATE(3382), 1, + STATE(5557), 1, sym_function_type, - STATE(9757), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3199), 2, + STATE(5020), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637975,36 +618255,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170877] = 14, - ACTIONS(211), 1, + [160542] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(3161), 1, - sym__delegation_specifiers, - STATE(4196), 1, + STATE(3069), 1, sym_user_type, - STATE(4252), 1, + STATE(3125), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(4313), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(9757), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638012,36 +618292,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170928] = 14, - ACTIONS(9430), 1, + [160593] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(8229), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(8715), 1, + STATE(3825), 1, sym_function_type, - STATE(8719), 1, - sym_delegation_specifier, - STATE(8721), 1, - sym__delegation_specifiers, - STATE(9945), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(3666), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638049,35 +618328,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170979] = 13, + [160642] = 13, ACTIONS(211), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4196), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(4252), 1, + STATE(5324), 1, sym_function_type, - STATE(9757), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3176), 2, + STATE(4606), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638085,35 +618364,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171028] = 13, - ACTIONS(115), 1, + [160691] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4736), 1, + STATE(5500), 1, sym_user_type, - STATE(4775), 1, + STATE(5557), 1, sym_function_type, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4797), 2, + STATE(4900), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638121,35 +618400,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171077] = 13, - ACTIONS(211), 1, + [160740] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4196), 1, + STATE(3666), 1, + sym__delegation_specifiers, + STATE(4199), 1, sym_user_type, - STATE(4252), 1, + STATE(4236), 1, sym_function_type, - STATE(9757), 1, + STATE(4243), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3169), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3470), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638157,35 +618437,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171126] = 13, - ACTIONS(115), 1, + [160791] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4736), 1, + STATE(3609), 1, sym_user_type, - STATE(4775), 1, + STATE(3825), 1, sym_function_type, - STATE(10042), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4702), 2, + STATE(3731), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638193,35 +618473,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171175] = 13, - ACTIONS(115), 1, + [160840] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4736), 1, + STATE(4951), 1, sym_user_type, - STATE(4775), 1, + STATE(4958), 1, + sym__delegation_specifiers, + STATE(5025), 1, + sym_delegation_specifier, + STATE(5041), 1, sym_function_type, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4698), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4985), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638229,36 +618510,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171224] = 14, - ACTIONS(115), 1, + [160891] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4720), 1, - sym__delegation_specifiers, - STATE(5426), 1, + STATE(2900), 1, sym_user_type, - STATE(5470), 1, - sym_function_type, - STATE(5684), 1, + STATE(2942), 1, + sym__delegation_specifiers, + STATE(2981), 1, sym_delegation_specifier, - STATE(10042), 1, + STATE(3042), 1, + sym_function_type, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638266,35 +618547,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171275] = 13, - ACTIONS(115), 1, + [160942] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4736), 1, + STATE(2900), 1, sym_user_type, - STATE(4775), 1, + STATE(2936), 1, + sym__delegation_specifiers, + STATE(2981), 1, + sym_delegation_specifier, + STATE(3042), 1, sym_function_type, - STATE(10042), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4699), 2, + STATE(3153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1910), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160993] = 14, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, + sym_user_type, + STATE(2933), 1, sym__delegation_specifiers, + STATE(2981), 1, sym_delegation_specifier, - STATE(4985), 2, + STATE(3042), 1, + sym_function_type, + STATE(9798), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638302,35 +618621,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171324] = 13, - ACTIONS(211), 1, + [161044] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3153), 1, + STATE(5500), 1, sym_user_type, - STATE(3382), 1, + STATE(5557), 1, sym_function_type, - STATE(9757), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3201), 2, + STATE(4896), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638338,36 +618657,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171373] = 14, + [161093] = 14, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4723), 1, - sym__delegation_specifiers, - STATE(5426), 1, + STATE(3069), 1, sym_user_type, - STATE(5470), 1, + STATE(3253), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(5684), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(10042), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638375,35 +618694,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171424] = 13, - ACTIONS(115), 1, + [161144] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4736), 1, + STATE(3609), 1, sym_user_type, - STATE(4775), 1, + STATE(3825), 1, sym_function_type, - STATE(10042), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4703), 2, + STATE(3605), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638411,35 +618730,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171473] = 13, - ACTIONS(115), 1, + [161193] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4736), 1, + STATE(2900), 1, sym_user_type, - STATE(4775), 1, + STATE(3042), 1, sym_function_type, - STATE(10042), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4706), 2, + STATE(2950), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638447,36 +618766,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171522] = 14, + [161242] = 14, ACTIONS(211), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3165), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4590), 1, sym__delegation_specifiers, - STATE(4196), 1, + STATE(5273), 1, sym_user_type, - STATE(4252), 1, + STATE(5324), 1, sym_function_type, - STATE(4313), 1, + STATE(5524), 1, sym_delegation_specifier, - STATE(9757), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638484,35 +618803,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171573] = 13, - ACTIONS(115), 1, + [161293] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4736), 1, + STATE(5500), 1, sym_user_type, - STATE(4775), 1, + STATE(5557), 1, sym_function_type, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4738), 2, + STATE(4894), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638520,36 +618839,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171622] = 14, - ACTIONS(211), 1, + [161342] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3169), 1, - sym__delegation_specifiers, - STATE(4196), 1, + STATE(5500), 1, sym_user_type, - STATE(4252), 1, + STATE(5557), 1, sym_function_type, - STATE(4313), 1, - sym_delegation_specifier, - STATE(9757), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(5062), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638557,35 +618875,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171673] = 13, - ACTIONS(115), 1, + [161391] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4736), 1, + STATE(5500), 1, sym_user_type, - STATE(4775), 1, + STATE(5557), 1, sym_function_type, - STATE(10042), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4725), 2, + STATE(4958), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638593,32 +618911,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171722] = 13, - ACTIONS(515), 1, + [161440] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2999), 1, + STATE(2900), 1, sym_user_type, - STATE(3077), 1, + STATE(2925), 1, + sym__delegation_specifiers, + STATE(2981), 1, + sym_delegation_specifier, + STATE(3042), 1, sym_function_type, - STATE(9832), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3009), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3141), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1910), 7, @@ -638629,35 +618948,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171771] = 13, - ACTIONS(115), 1, + [161491] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4736), 1, + STATE(2900), 1, sym_user_type, - STATE(4775), 1, + STATE(3042), 1, sym_function_type, - STATE(10042), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4737), 2, + STATE(2947), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638665,35 +618984,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171820] = 13, + [161540] = 14, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4736), 1, + STATE(3208), 1, + sym__delegation_specifiers, + STATE(4049), 1, sym_user_type, - STATE(4775), 1, + STATE(4132), 1, sym_function_type, - STATE(10042), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4728), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4985), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638701,36 +619021,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171869] = 14, - ACTIONS(115), 1, + [161591] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4724), 1, - sym__delegation_specifiers, - STATE(5426), 1, + STATE(2900), 1, sym_user_type, - STATE(5470), 1, + STATE(3042), 1, sym_function_type, - STATE(5684), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(2946), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638738,35 +619057,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171920] = 13, - ACTIONS(211), 1, + [161640] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4196), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, sym_user_type, - STATE(4252), 1, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8591), 1, + sym__delegation_specifiers, + STATE(8625), 1, sym_function_type, - STATE(9757), 1, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3165), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3470), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638774,36 +619094,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171969] = 14, - ACTIONS(9394), 1, + [161691] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(8125), 1, sym__simple_user_type, - STATE(5045), 1, + STATE(8394), 1, sym_user_type, - STATE(5182), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(5184), 1, + STATE(8625), 1, sym_function_type, - STATE(5209), 1, + STATE(9193), 1, sym__delegation_specifiers, - STATE(9901), 1, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638811,35 +619131,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172020] = 13, + [161742] = 14, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4736), 1, + STATE(3069), 1, sym_user_type, - STATE(4775), 1, + STATE(3341), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(10042), 1, + STATE(3629), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4717), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4985), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638847,35 +619168,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172069] = 13, - ACTIONS(115), 1, + [161793] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4736), 1, + STATE(2900), 1, sym_user_type, - STATE(4775), 1, + STATE(3042), 1, sym_function_type, - STATE(10042), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4716), 2, + STATE(2942), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4985), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638883,36 +619204,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172118] = 14, - ACTIONS(9430), 1, + [161842] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(8229), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(8715), 1, - sym_function_type, - STATE(8719), 1, + STATE(2981), 1, sym_delegation_specifier, - STATE(9194), 1, + STATE(3011), 1, sym__delegation_specifiers, - STATE(9945), 1, + STATE(3042), 1, + sym_function_type, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638920,36 +619241,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172169] = 14, - ACTIONS(8824), 1, + [161893] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(8769), 1, + STATE(3208), 1, sym__delegation_specifiers, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(3363), 1, sym_function_type, - STATE(10123), 1, + STATE(3629), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638957,33 +619278,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172220] = 14, - ACTIONS(515), 1, + [161944] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2999), 1, + STATE(2900), 1, sym_user_type, - STATE(3047), 1, + STATE(2917), 1, sym__delegation_specifiers, - STATE(3077), 1, - sym_function_type, - STATE(3084), 1, + STATE(2981), 1, sym_delegation_specifier, - STATE(9832), 1, + STATE(3042), 1, + sym_function_type, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1910), 7, @@ -638994,36 +619315,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172271] = 14, - ACTIONS(211), 1, + [161995] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(3176), 1, + STATE(3312), 1, sym__delegation_specifiers, - STATE(4196), 1, + STATE(4049), 1, sym_user_type, - STATE(4252), 1, + STATE(4132), 1, sym_function_type, - STATE(4313), 1, + STATE(4217), 1, sym_delegation_specifier, - STATE(9757), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639031,36 +619352,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172322] = 14, - ACTIONS(8824), 1, + [162046] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(8478), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(8821), 1, - sym__delegation_specifiers, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(3042), 1, sym_function_type, - STATE(10123), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(2936), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639068,35 +619388,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172373] = 13, + [162095] = 13, ACTIONS(211), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4196), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(4252), 1, + STATE(5324), 1, sym_function_type, - STATE(9757), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3161), 2, + STATE(4597), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639104,36 +619424,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172422] = 14, - ACTIONS(9394), 1, + [162144] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(5045), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(5102), 1, - sym__delegation_specifiers, - STATE(5182), 1, - sym_delegation_specifier, - STATE(5184), 1, + STATE(3042), 1, sym_function_type, - STATE(9901), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(2933), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639141,32 +619460,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172473] = 13, - ACTIONS(515), 1, + [162193] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2999), 1, + STATE(2900), 1, sym_user_type, - STATE(3077), 1, + STATE(3042), 1, sym_function_type, - STATE(9832), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3047), 2, + STATE(2925), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1910), 7, @@ -639177,35 +619496,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172522] = 13, - ACTIONS(515), 1, + [162242] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2999), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, sym_user_type, - STATE(3077), 1, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8604), 1, + sym__delegation_specifiers, + STATE(8625), 1, sym_function_type, - STATE(9832), 1, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3035), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3141), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639213,32 +619533,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172571] = 13, - ACTIONS(515), 1, + [162293] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2999), 1, + STATE(2900), 1, sym_user_type, - STATE(3077), 1, + STATE(3042), 1, sym_function_type, - STATE(9832), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3028), 2, + STATE(2924), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1910), 7, @@ -639249,35 +619569,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172620] = 13, - ACTIONS(115), 1, + [162342] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5426), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, sym_user_type, - STATE(5470), 1, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8620), 1, + sym__delegation_specifiers, + STATE(8625), 1, sym_function_type, - STATE(10042), 1, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4720), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4985), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639285,32 +619606,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172669] = 13, - ACTIONS(515), 1, + [162393] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2999), 1, + STATE(2900), 1, sym_user_type, - STATE(3077), 1, + STATE(3042), 1, sym_function_type, - STATE(9832), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3004), 2, + STATE(3011), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1910), 7, @@ -639321,35 +619642,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172718] = 13, - ACTIONS(431), 1, + [162442] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(841), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(892), 1, + STATE(8394), 1, sym_user_type, - STATE(996), 1, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8625), 1, sym_function_type, - STATE(9938), 1, + STATE(9111), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(884), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639357,32 +619679,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172767] = 13, - ACTIONS(515), 1, + [162493] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2999), 1, + STATE(2900), 1, sym_user_type, - STATE(3077), 1, + STATE(3042), 1, sym_function_type, - STATE(9832), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3103), 2, + STATE(2917), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1910), 7, @@ -639393,35 +619715,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172816] = 13, - ACTIONS(431), 1, + [162542] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(841), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(892), 1, + STATE(8394), 1, sym_user_type, - STATE(996), 1, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8605), 1, + sym__delegation_specifiers, + STATE(8625), 1, sym_function_type, - STATE(9938), 1, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(887), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639429,35 +619752,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172865] = 13, - ACTIONS(431), 1, + [162593] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(892), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(996), 1, + STATE(3042), 1, sym_function_type, - STATE(9938), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(902), 2, + STATE(2904), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1120), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639465,36 +619788,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172914] = 14, - ACTIONS(8824), 1, + [162642] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(4592), 1, + sym__delegation_specifiers, + STATE(5273), 1, sym_user_type, - STATE(8897), 1, - sym_delegation_specifier, - STATE(8904), 1, + STATE(5324), 1, sym_function_type, - STATE(9556), 1, - sym__delegation_specifiers, - STATE(10123), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639502,36 +619825,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172965] = 14, - ACTIONS(115), 1, + [162693] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4733), 1, - sym__delegation_specifiers, - STATE(4736), 1, + STATE(2900), 1, sym_user_type, - STATE(4775), 1, + STATE(3042), 1, sym_function_type, - STATE(5046), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(2902), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639539,35 +619861,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173016] = 13, - ACTIONS(431), 1, + [162742] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(892), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(996), 1, + STATE(2904), 1, + sym__delegation_specifiers, + STATE(2981), 1, + sym_delegation_specifier, + STATE(3042), 1, sym_function_type, - STATE(9938), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(904), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639575,35 +619898,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173065] = 13, - ACTIONS(211), 1, + [162793] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(4196), 1, + STATE(2900), 1, sym_user_type, - STATE(4252), 1, + STATE(3042), 1, sym_function_type, - STATE(9757), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3315), 2, + STATE(3028), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639611,35 +619934,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173114] = 13, - ACTIONS(431), 1, + [162842] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(892), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(996), 1, + STATE(2902), 1, + sym__delegation_specifiers, + STATE(2981), 1, + sym_delegation_specifier, + STATE(3042), 1, sym_function_type, - STATE(9938), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(910), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639647,35 +619971,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173163] = 13, - ACTIONS(515), 1, + [162893] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2999), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, sym_user_type, - STATE(3077), 1, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8625), 1, sym_function_type, - STATE(9832), 1, + STATE(8629), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2968), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3141), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639683,36 +620008,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173212] = 14, - ACTIONS(115), 1, + [162944] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4736), 1, + STATE(2900), 1, sym_user_type, - STATE(4755), 1, - sym__delegation_specifiers, - STATE(4775), 1, + STATE(3042), 1, sym_function_type, - STATE(5046), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(2898), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639720,35 +620044,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173263] = 13, - ACTIONS(431), 1, + [162993] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(841), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(892), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(996), 1, + STATE(3363), 1, sym_function_type, - STATE(9938), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(923), 2, + STATE(3096), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1120), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639756,35 +620080,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173312] = 13, - ACTIONS(211), 1, + [163042] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4196), 1, + STATE(3069), 1, sym_user_type, - STATE(4252), 1, + STATE(3363), 1, sym_function_type, - STATE(9757), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3448), 2, + STATE(3081), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639792,36 +620116,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173361] = 14, + [163091] = 13, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4724), 1, - sym__delegation_specifiers, - STATE(4736), 1, + STATE(3069), 1, sym_user_type, - STATE(4775), 1, + STATE(3363), 1, sym_function_type, - STATE(5046), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(3078), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639829,36 +620152,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173412] = 14, + [163140] = 13, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4723), 1, - sym__delegation_specifiers, - STATE(4736), 1, + STATE(3069), 1, sym_user_type, - STATE(4775), 1, + STATE(3363), 1, sym_function_type, - STATE(5046), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(3068), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639866,35 +620188,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173463] = 13, - ACTIONS(431), 1, + [163189] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(841), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(892), 1, + STATE(8345), 1, sym_user_type, - STATE(996), 1, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8422), 1, sym_function_type, - STATE(9938), 1, + STATE(8440), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(934), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639902,36 +620225,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173512] = 14, - ACTIONS(7), 1, + [163240] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(5032), 1, - sym__delegation_specifiers, - STATE(5073), 1, + STATE(8394), 1, sym_user_type, - STATE(5154), 1, - sym_function_type, - STATE(5156), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(8625), 1, + sym_function_type, + STATE(8632), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639939,35 +620262,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173563] = 13, - ACTIONS(431), 1, + [163291] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(892), 1, + STATE(4617), 1, + sym__delegation_specifiers, + STATE(5273), 1, sym_user_type, - STATE(996), 1, + STATE(5324), 1, sym_function_type, - STATE(9938), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(897), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639975,33 +620299,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173612] = 14, - ACTIONS(115), 1, + [163342] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4720), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4581), 1, sym__delegation_specifiers, - STATE(4736), 1, + STATE(5273), 1, sym_user_type, - STATE(4775), 1, + STATE(5324), 1, sym_function_type, - STATE(5046), 1, + STATE(5524), 1, sym_delegation_specifier, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -640012,35 +620336,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173663] = 13, - ACTIONS(431), 1, + [163393] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(841), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(892), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(996), 1, + STATE(3363), 1, sym_function_type, - STATE(9938), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(889), 2, + STATE(3139), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1120), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640048,35 +620372,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173712] = 13, - ACTIONS(515), 1, + [163442] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(2999), 1, + STATE(3069), 1, sym_user_type, - STATE(3077), 1, + STATE(3363), 1, sym_function_type, - STATE(9832), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2964), 2, + STATE(3142), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640084,35 +620408,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173761] = 13, - ACTIONS(431), 1, + [163491] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(841), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(892), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(996), 1, + STATE(3363), 1, sym_function_type, - STATE(9938), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(926), 2, + STATE(3202), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1120), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640120,35 +620444,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173810] = 13, - ACTIONS(431), 1, + [163540] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(892), 1, + STATE(4615), 1, + sym__delegation_specifiers, + STATE(5273), 1, sym_user_type, - STATE(996), 1, + STATE(5324), 1, sym_function_type, - STATE(9938), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(911), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640156,36 +620481,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173859] = 14, + [163591] = 13, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4736), 1, + STATE(3069), 1, sym_user_type, - STATE(4775), 1, + STATE(3363), 1, sym_function_type, - STATE(4797), 1, - sym__delegation_specifiers, - STATE(5046), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(3208), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640193,35 +620517,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173910] = 13, - ACTIONS(431), 1, + [163640] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(892), 1, + STATE(4583), 1, + sym__delegation_specifiers, + STATE(5273), 1, sym_user_type, - STATE(996), 1, + STATE(5324), 1, sym_function_type, - STATE(9938), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1017), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640229,36 +620554,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173959] = 14, + [163691] = 13, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4702), 1, - sym__delegation_specifiers, - STATE(4736), 1, + STATE(3069), 1, sym_user_type, - STATE(4775), 1, + STATE(3363), 1, sym_function_type, - STATE(5046), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(3341), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640266,33 +620590,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174010] = 14, - ACTIONS(115), 1, + [163740] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4698), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4606), 1, sym__delegation_specifiers, - STATE(4736), 1, + STATE(5273), 1, sym_user_type, - STATE(4775), 1, + STATE(5324), 1, sym_function_type, - STATE(5046), 1, + STATE(5524), 1, sym_delegation_specifier, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -640303,35 +620627,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174061] = 13, - ACTIONS(515), 1, + [163791] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(2999), 1, + STATE(3069), 1, sym_user_type, - STATE(3077), 1, + STATE(3363), 1, sym_function_type, - STATE(9832), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3007), 2, + STATE(3253), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640339,35 +620663,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174110] = 13, - ACTIONS(515), 1, + [163840] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(2999), 1, + STATE(3069), 1, sym_user_type, - STATE(3077), 1, + STATE(3363), 1, sym_function_type, - STATE(9832), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2970), 2, + STATE(3125), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640375,36 +620699,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174159] = 14, + [163889] = 14, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(4699), 1, - sym__delegation_specifiers, - STATE(4736), 1, + STATE(3069), 1, sym_user_type, - STATE(4775), 1, + STATE(3202), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(5046), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(10042), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640412,35 +620736,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174210] = 13, - ACTIONS(431), 1, + [163940] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(832), 1, - sym_simple_identifier, - STATE(841), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(892), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(996), 1, + STATE(2981), 1, + sym_delegation_specifier, + STATE(3028), 1, + sym__delegation_specifiers, + STATE(3042), 1, sym_function_type, - STATE(9938), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(929), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640448,33 +620773,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174259] = 14, - ACTIONS(115), 1, + [163991] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4755), 1, - sym__delegation_specifiers, - STATE(5426), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(5470), 1, + STATE(4680), 1, sym_function_type, - STATE(5684), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(4602), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -640485,36 +620809,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174310] = 14, - ACTIONS(115), 1, + [164040] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(4703), 1, - sym__delegation_specifiers, - STATE(4736), 1, + STATE(5686), 1, + sym_simple_identifier, + STATE(7891), 1, + sym__simple_user_type, + STATE(8345), 1, sym_user_type, - STATE(4775), 1, - sym_function_type, - STATE(5046), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(10042), 1, + STATE(8422), 1, + sym_function_type, + STATE(8443), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640522,33 +620846,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174361] = 14, - ACTIONS(115), 1, + [164091] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4706), 1, - sym__delegation_specifiers, - STATE(4736), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(4775), 1, + STATE(4680), 1, sym_function_type, - STATE(5046), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(4690), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -640559,35 +620882,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174412] = 13, - ACTIONS(431), 1, + [164140] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(841), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(892), 1, + STATE(8394), 1, sym_user_type, - STATE(996), 1, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8622), 1, + sym__delegation_specifiers, + STATE(8625), 1, sym_function_type, - STATE(9938), 1, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(906), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640595,35 +620919,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174461] = 13, - ACTIONS(515), 1, + [164191] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(2999), 1, + STATE(3069), 1, sym_user_type, - STATE(3077), 1, + STATE(3363), 1, sym_function_type, - STATE(9832), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2954), 2, + STATE(3117), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640631,35 +620955,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174510] = 13, - ACTIONS(431), 1, + [164240] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(841), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(892), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(996), 1, + STATE(3363), 1, sym_function_type, - STATE(9938), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(903), 2, + STATE(3312), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1120), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640667,33 +620991,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174559] = 14, - ACTIONS(115), 1, + [164289] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4725), 1, - sym__delegation_specifiers, - STATE(4736), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(4775), 1, + STATE(4680), 1, sym_function_type, - STATE(5046), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(4589), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -640704,36 +621027,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174610] = 14, - ACTIONS(9394), 1, + [164338] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, sym__simple_user_type, - STATE(5045), 1, + STATE(4587), 1, sym_user_type, - STATE(5135), 1, - sym__delegation_specifiers, - STATE(5182), 1, - sym_delegation_specifier, - STATE(5184), 1, + STATE(4680), 1, sym_function_type, - STATE(9901), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(4601), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640741,36 +621063,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174661] = 14, - ACTIONS(115), 1, + [164387] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4736), 1, - sym_user_type, - STATE(4737), 1, + STATE(2898), 1, sym__delegation_specifiers, - STATE(4775), 1, - sym_function_type, - STATE(5046), 1, + STATE(2900), 1, + sym_user_type, + STATE(2981), 1, sym_delegation_specifier, - STATE(10042), 1, + STATE(3042), 1, + sym_function_type, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640778,36 +621100,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174712] = 14, - ACTIONS(211), 1, + [164438] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3181), 1, - sym__delegation_specifiers, - STATE(4196), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, sym_user_type, - STATE(4252), 1, - sym_function_type, - STATE(4313), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(9757), 1, + STATE(8619), 1, + sym__delegation_specifiers, + STATE(8625), 1, + sym_function_type, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640815,36 +621137,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174763] = 14, - ACTIONS(115), 1, + [164489] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(4728), 1, - sym__delegation_specifiers, - STATE(4736), 1, + STATE(5686), 1, + sym_simple_identifier, + STATE(7891), 1, + sym__simple_user_type, + STATE(8345), 1, sym_user_type, - STATE(4775), 1, - sym_function_type, - STATE(5046), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(10042), 1, + STATE(8422), 1, + sym_function_type, + STATE(8435), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640852,35 +621174,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174814] = 13, - ACTIONS(431), 1, + [164540] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(841), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(892), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(996), 1, + STATE(3363), 1, sym_function_type, - STATE(9938), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1005), 2, + STATE(3070), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1120), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640888,35 +621210,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174863] = 13, - ACTIONS(431), 1, + [164589] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(841), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(892), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3096), 1, + sym__delegation_specifiers, + STATE(4049), 1, sym_user_type, - STATE(996), 1, + STATE(4132), 1, sym_function_type, - STATE(9938), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(900), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1120), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640924,36 +621247,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174912] = 14, - ACTIONS(9430), 1, + [164640] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5848), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8229), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8607), 1, - sym_user_type, - STATE(8677), 1, + STATE(915), 1, sym__delegation_specifiers, - STATE(8715), 1, + STATE(925), 1, + sym_user_type, + STATE(929), 1, sym_function_type, - STATE(8719), 1, + STATE(975), 1, sym_delegation_specifier, - STATE(9945), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640961,33 +621284,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174963] = 14, - ACTIONS(115), 1, + [164691] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4717), 1, - sym__delegation_specifiers, - STATE(4736), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(4775), 1, + STATE(4680), 1, sym_function_type, - STATE(5046), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(4600), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -640998,33 +621320,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175014] = 14, - ACTIONS(115), 1, + [164740] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4716), 1, - sym__delegation_specifiers, - STATE(4736), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(4775), 1, + STATE(4680), 1, sym_function_type, - STATE(5046), 1, - sym_delegation_specifier, - STATE(10042), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(4681), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -641035,35 +621356,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175065] = 13, - ACTIONS(345), 1, + [164789] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, sym_user_type, - STATE(3823), 1, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8625), 1, sym_function_type, - STATE(9828), 1, + STATE(9442), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3798), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641071,35 +621393,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175114] = 13, - ACTIONS(345), 1, + [164840] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(3823), 1, + STATE(4680), 1, sym_function_type, - STATE(9828), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3797), 2, + STATE(4590), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4099), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641107,35 +621429,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175163] = 13, + [164889] = 13, ACTIONS(211), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4196), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(4252), 1, + STATE(4680), 1, sym_function_type, - STATE(9757), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3151), 2, + STATE(4592), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641143,36 +621465,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175212] = 14, - ACTIONS(515), 1, + [164938] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(2999), 1, - sym_user_type, - STATE(3009), 1, + STATE(3081), 1, sym__delegation_specifiers, - STATE(3077), 1, + STATE(4049), 1, + sym_user_type, + STATE(4132), 1, sym_function_type, - STATE(3084), 1, + STATE(4217), 1, sym_delegation_specifier, - STATE(9832), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641180,35 +621502,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175263] = 13, - ACTIONS(345), 1, + [164989] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3078), 1, + sym__delegation_specifiers, + STATE(4049), 1, sym_user_type, - STATE(3823), 1, + STATE(4132), 1, sym_function_type, - STATE(9828), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3795), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641216,35 +621539,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175312] = 13, - ACTIONS(515), 1, + [165040] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2999), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(910), 1, + sym__delegation_specifiers, + STATE(925), 1, sym_user_type, - STATE(3077), 1, + STATE(929), 1, sym_function_type, - STATE(9832), 1, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2982), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3141), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641252,35 +621576,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175361] = 13, - ACTIONS(345), 1, + [165091] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(3823), 1, + STATE(4680), 1, sym_function_type, - STATE(9828), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3789), 2, + STATE(4617), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4099), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641288,35 +621612,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175410] = 13, - ACTIONS(515), 1, + [165140] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2999), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(3077), 1, + STATE(4680), 1, sym_function_type, - STATE(9832), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2963), 2, + STATE(4581), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641324,36 +621648,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175459] = 14, - ACTIONS(211), 1, + [165189] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(3188), 1, - sym__delegation_specifiers, - STATE(4196), 1, + STATE(3069), 1, sym_user_type, - STATE(4252), 1, + STATE(3142), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(4313), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(9757), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641361,35 +621685,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175510] = 13, + [165240] = 13, ACTIONS(211), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4196), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(4252), 1, + STATE(4680), 1, sym_function_type, - STATE(9757), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3425), 2, + STATE(4615), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3470), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641397,35 +621721,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175559] = 13, - ACTIONS(345), 1, + [165289] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3068), 1, + sym__delegation_specifiers, + STATE(4049), 1, sym_user_type, - STATE(3823), 1, + STATE(4132), 1, sym_function_type, - STATE(9828), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3787), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641433,36 +621758,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175608] = 14, - ACTIONS(7), 1, + [165340] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5031), 1, - sym__delegation_specifiers, - STATE(5073), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(5154), 1, + STATE(3139), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(5156), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641470,35 +621795,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175659] = 13, - ACTIONS(515), 1, + [165391] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__simple_user_type, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2999), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(3077), 1, + STATE(4680), 1, sym_function_type, - STATE(9832), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2983), 2, + STATE(4583), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3141), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641506,36 +621831,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175708] = 14, + [165440] = 13, ACTIONS(211), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3190), 1, - sym__delegation_specifiers, - STATE(4196), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(4252), 1, + STATE(4680), 1, sym_function_type, - STATE(4313), 1, - sym_delegation_specifier, - STATE(9757), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(4606), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641543,35 +621867,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175759] = 13, - ACTIONS(345), 1, + [165489] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(7891), 1, + sym__simple_user_type, + STATE(8345), 1, sym_user_type, - STATE(3823), 1, + STATE(8408), 1, + sym__delegation_specifiers, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8422), 1, sym_function_type, - STATE(9828), 1, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3785), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641579,35 +621904,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175808] = 13, - ACTIONS(345), 1, + [165540] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, sym_user_type, - STATE(3823), 1, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8625), 1, sym_function_type, - STATE(9828), 1, + STATE(8925), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3773), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641615,35 +621941,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175857] = 13, - ACTIONS(345), 1, + [165591] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3139), 1, + sym__delegation_specifiers, + STATE(4049), 1, sym_user_type, - STATE(3823), 1, + STATE(4132), 1, sym_function_type, - STATE(9828), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3766), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641651,35 +621978,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175906] = 13, - ACTIONS(345), 1, + [165642] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(3823), 1, + STATE(4680), 1, sym_function_type, - STATE(9828), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3806), 2, + STATE(4597), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4099), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641687,36 +622014,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175955] = 14, - ACTIONS(7), 1, + [165691] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5033), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3068), 1, sym__delegation_specifiers, - STATE(5073), 1, + STATE(3069), 1, sym_user_type, - STATE(5154), 1, + STATE(3363), 1, sym_function_type, - STATE(5156), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641724,35 +622051,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176006] = 13, - ACTIONS(211), 1, + [165742] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(3022), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(4196), 1, + STATE(4911), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(4252), 1, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, sym_function_type, - STATE(9757), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3279), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3470), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641760,36 +622088,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176055] = 14, - ACTIONS(9430), 1, + [165793] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5848), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8229), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(869), 1, + sym__delegation_specifiers, + STATE(925), 1, sym_user_type, - STATE(8715), 1, + STATE(929), 1, sym_function_type, - STATE(8719), 1, + STATE(975), 1, sym_delegation_specifier, - STATE(9143), 1, - sym__delegation_specifiers, - STATE(9945), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641797,35 +622125,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176106] = 13, - ACTIONS(211), 1, + [165844] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4196), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(886), 1, + sym__delegation_specifiers, + STATE(925), 1, sym_user_type, - STATE(4252), 1, + STATE(929), 1, sym_function_type, - STATE(9757), 1, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3275), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3470), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641833,35 +622162,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176155] = 13, - ACTIONS(345), 1, + [165895] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(3823), 1, + STATE(3078), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(9828), 1, + STATE(3629), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3756), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641869,35 +622199,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176204] = 13, - ACTIONS(345), 1, + [165946] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(4922), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(3823), 1, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, sym_function_type, - STATE(9828), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3755), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641905,36 +622236,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176253] = 14, - ACTIONS(9430), 1, + [165997] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(8229), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8607), 1, - sym_user_type, - STATE(8704), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4923), 1, sym__delegation_specifiers, - STATE(8715), 1, - sym_function_type, - STATE(8719), 1, + STATE(5500), 1, + sym_user_type, + STATE(5551), 1, sym_delegation_specifier, - STATE(9945), 1, + STATE(5557), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641942,36 +622273,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176304] = 14, - ACTIONS(9430), 1, + [166048] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5848), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(8229), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(8686), 1, + STATE(3081), 1, sym__delegation_specifiers, - STATE(8715), 1, + STATE(3363), 1, sym_function_type, - STATE(8719), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(9945), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641979,35 +622310,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176355] = 13, - ACTIONS(515), 1, + [166099] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2999), 1, + STATE(4928), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(3077), 1, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, sym_function_type, - STATE(9832), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2951), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3141), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642015,36 +622347,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176404] = 14, - ACTIONS(9430), 1, + [166150] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(8229), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8607), 1, - sym_user_type, - STATE(8672), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4907), 1, sym__delegation_specifiers, - STATE(8715), 1, - sym_function_type, - STATE(8719), 1, + STATE(5500), 1, + sym_user_type, + STATE(5551), 1, sym_delegation_specifier, - STATE(9945), 1, + STATE(5557), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642052,36 +622384,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176455] = 14, - ACTIONS(9430), 1, + [166201] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(8229), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4944), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(8715), 1, - sym_function_type, - STATE(8719), 1, + STATE(5551), 1, sym_delegation_specifier, - STATE(8724), 1, - sym__delegation_specifiers, - STATE(9945), 1, + STATE(5557), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642089,36 +622421,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176506] = 14, - ACTIONS(115), 1, + [166252] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4733), 1, - sym__delegation_specifiers, - STATE(5426), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, sym_user_type, - STATE(5470), 1, - sym_function_type, - STATE(5684), 1, + STATE(8559), 1, + sym__delegation_specifiers, + STATE(8587), 1, sym_delegation_specifier, - STATE(10042), 1, + STATE(8625), 1, + sym_function_type, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642126,35 +622458,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176557] = 13, - ACTIONS(515), 1, + [166303] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2999), 1, + STATE(4952), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(3077), 1, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, sym_function_type, - STATE(9832), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2978), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3141), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642162,35 +622495,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176606] = 13, - ACTIONS(515), 1, + [166354] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2999), 1, + STATE(4955), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(3077), 1, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, sym_function_type, - STATE(9832), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2979), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3141), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642198,36 +622532,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176655] = 14, - ACTIONS(9394), 1, + [166405] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4657), 1, - sym__lexical_identifier, - STATE(4664), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5045), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(5182), 1, - sym_delegation_specifier, - STATE(5184), 1, - sym_function_type, - STATE(5211), 1, + STATE(3096), 1, sym__delegation_specifiers, - STATE(9901), 1, + STATE(3363), 1, + sym_function_type, + STATE(3629), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642235,36 +622569,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176706] = 14, - ACTIONS(211), 1, + [166456] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, sym__lexical_identifier, - STATE(3201), 1, + STATE(3202), 1, sym__delegation_specifiers, - STATE(4196), 1, + STATE(4049), 1, sym_user_type, - STATE(4252), 1, + STATE(4132), 1, sym_function_type, - STATE(4313), 1, + STATE(4217), 1, sym_delegation_specifier, - STATE(9757), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642272,35 +622606,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176757] = 13, - ACTIONS(345), 1, + [166507] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(907), 1, + sym__delegation_specifiers, + STATE(925), 1, sym_user_type, - STATE(3823), 1, + STATE(929), 1, sym_function_type, - STATE(9828), 1, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3884), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642308,35 +622643,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176806] = 13, + [166558] = 14, ACTIONS(211), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4196), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(4252), 1, + STATE(4602), 1, + sym__delegation_specifiers, + STATE(4680), 1, sym_function_type, - STATE(9757), 1, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3258), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3470), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642344,35 +622680,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176855] = 13, - ACTIONS(345), 1, + [166609] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(908), 1, + sym__delegation_specifiers, + STATE(925), 1, sym_user_type, - STATE(3823), 1, + STATE(929), 1, sym_function_type, - STATE(9828), 1, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3740), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642380,35 +622717,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176904] = 13, - ACTIONS(345), 1, + [166660] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(3823), 1, + STATE(4680), 1, sym_function_type, - STATE(9828), 1, + STATE(4690), 1, + sym__delegation_specifiers, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3726), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642416,36 +622754,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176953] = 14, - ACTIONS(9430), 1, + [166711] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5848), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8229), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8607), 1, - sym_user_type, - STATE(8690), 1, + STATE(919), 1, sym__delegation_specifiers, - STATE(8715), 1, + STATE(925), 1, + sym_user_type, + STATE(929), 1, sym_function_type, - STATE(8719), 1, + STATE(975), 1, sym_delegation_specifier, - STATE(9945), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642453,35 +622791,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177004] = 13, - ACTIONS(345), 1, + [166762] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(920), 1, + sym__delegation_specifiers, + STATE(925), 1, sym_user_type, - STATE(3823), 1, + STATE(929), 1, sym_function_type, - STATE(9828), 1, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3873), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642489,35 +622828,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177053] = 13, - ACTIONS(345), 1, + [166813] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3341), 1, + sym__delegation_specifiers, + STATE(4049), 1, sym_user_type, - STATE(3823), 1, + STATE(4132), 1, sym_function_type, - STATE(9828), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3733), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4099), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642525,32 +622865,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177102] = 11, - ACTIONS(9386), 1, + [166864] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, - sym__lexical_identifier, - STATE(9684), 1, + STATE(2899), 1, sym_simple_identifier, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3253), 1, + sym__delegation_specifiers, + STATE(4049), 1, + sym_user_type, + STATE(4132), 1, + sym_function_type, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10394), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(3599), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642558,34 +622902,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177146] = 13, - ACTIONS(9394), 1, + [166915] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4664), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, sym__simple_user_type, - STATE(5045), 1, + STATE(925), 1, sym_user_type, - STATE(5184), 1, + STATE(929), 1, sym_function_type, - STATE(5362), 1, + STATE(930), 1, + sym__delegation_specifiers, + STATE(975), 1, sym_delegation_specifier, - STATE(9901), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5340), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9398), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642593,32 +622939,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177194] = 11, - ACTIONS(9386), 1, + [166966] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(4538), 1, sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, + sym_user_type, + STATE(4589), 1, + sym__delegation_specifiers, + STATE(4680), 1, + sym_function_type, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9775), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(4792), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642626,32 +622976,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177238] = 11, - ACTIONS(9386), 1, + [167017] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(4538), 1, sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, + sym_user_type, + STATE(4601), 1, + sym__delegation_specifiers, + STATE(4680), 1, + sym_function_type, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10304), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(4792), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642659,32 +623013,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177282] = 11, - ACTIONS(9386), 1, + [167068] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(824), 1, sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(924), 1, + sym__delegation_specifiers, + STATE(925), 1, + sym_user_type, + STATE(929), 1, + sym_function_type, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7379), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10302), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(1030), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642692,32 +623050,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177326] = 11, - ACTIONS(9386), 1, + [167119] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(5686), 1, sym_simple_identifier, + STATE(7891), 1, + sym__simple_user_type, + STATE(8345), 1, + sym_user_type, + STATE(8417), 1, + sym__delegation_specifiers, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8422), 1, + sym_function_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10273), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(8525), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642725,32 +623087,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177370] = 11, - ACTIONS(9386), 1, + [167170] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(824), 1, sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(871), 1, + sym__delegation_specifiers, + STATE(925), 1, + sym_user_type, + STATE(929), 1, + sym_function_type, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7381), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10271), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(1030), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642758,31 +623124,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177414] = 13, - ACTIONS(431), 1, + [167221] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(824), 1, sym_simple_identifier, - STATE(841), 1, + STATE(825), 1, sym__simple_user_type, - STATE(892), 1, + STATE(868), 1, + sym__delegation_specifiers, + STATE(925), 1, sym_user_type, - STATE(996), 1, + STATE(929), 1, sym_function_type, - STATE(1177), 1, + STATE(975), 1, sym_delegation_specifier, - STATE(9938), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -642793,32 +623161,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177462] = 11, - ACTIONS(9386), 1, + [167272] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(824), 1, sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(925), 1, + sym_user_type, + STATE(929), 1, + sym_function_type, + STATE(932), 1, + sym__delegation_specifiers, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7430), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10323), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(1030), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642826,34 +623198,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177506] = 13, - ACTIONS(115), 1, + [167323] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4653), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4736), 1, + STATE(3661), 1, + sym__delegation_specifiers, + STATE(4199), 1, sym_user_type, - STATE(4775), 1, + STATE(4236), 1, sym_function_type, - STATE(4862), 1, + STATE(4243), 1, sym_delegation_specifier, - STATE(10042), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642861,34 +623235,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177554] = 13, - ACTIONS(345), 1, + [167374] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3384), 1, - sym__simple_user_type, - STATE(3400), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3712), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(3823), 1, + STATE(4600), 1, + sym__delegation_specifiers, + STATE(4680), 1, sym_function_type, - STATE(4120), 1, + STATE(4909), 1, sym_delegation_specifier, - STATE(9828), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642896,32 +623272,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177602] = 11, - ACTIONS(9386), 1, + [167425] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(4538), 1, sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, + sym_user_type, + STATE(4680), 1, + sym_function_type, + STATE(4681), 1, + sym__delegation_specifiers, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10332), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(4792), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642929,32 +623309,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177646] = 11, - ACTIONS(9386), 1, + [167476] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(824), 1, sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(894), 1, + sym__delegation_specifiers, + STATE(925), 1, + sym_user_type, + STATE(929), 1, + sym_function_type, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7387), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10330), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(1030), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642962,32 +623346,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177690] = 11, - ACTIONS(9386), 1, + [167527] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_user_type, + STATE(8562), 1, + sym__delegation_specifiers, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8625), 1, + sym_function_type, + STATE(9549), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10429), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(8643), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642995,32 +623383,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177734] = 11, - ACTIONS(9386), 1, + [167578] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(4538), 1, sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, + sym_user_type, + STATE(4590), 1, + sym__delegation_specifiers, + STATE(4680), 1, + sym_function_type, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7389), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10428), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(4792), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643028,32 +623420,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177778] = 11, - ACTIONS(9386), 1, + [167629] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(4538), 1, sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, + sym_user_type, + STATE(4592), 1, + sym__delegation_specifiers, + STATE(4680), 1, + sym_function_type, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7447), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10335), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(4792), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643061,32 +623457,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177822] = 11, - ACTIONS(9386), 1, + [167680] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(4538), 1, sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, + sym_user_type, + STATE(5324), 1, + sym_function_type, + STATE(9487), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10425), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(4602), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643094,31 +623493,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177866] = 13, - ACTIONS(515), 1, + [167729] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2999), 1, + STATE(2950), 1, + sym__delegation_specifiers, + STATE(3796), 1, sym_user_type, - STATE(3077), 1, + STATE(3939), 1, sym_function_type, - STATE(3325), 1, + STATE(3965), 1, sym_delegation_specifier, - STATE(9832), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1910), 7, @@ -643129,67 +623530,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177914] = 11, - ACTIONS(9386), 1, - sym__alpha_identifier, - ACTIONS(9392), 1, - sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, - anon_sym_LPAREN, - STATE(8598), 1, - sym__lexical_identifier, - STATE(9684), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7392), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10424), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [177958] = 13, - ACTIONS(7), 1, + [167780] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(5299), 1, - sym_delegation_specifier, - STATE(5645), 1, + STATE(8394), 1, sym_user_type, - STATE(5697), 1, + STATE(8550), 1, + sym__delegation_specifiers, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8625), 1, sym_function_type, - STATE(10095), 1, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643197,32 +623567,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178006] = 11, - ACTIONS(9386), 1, + [167831] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, + STATE(2947), 1, + sym__delegation_specifiers, + STATE(3796), 1, + sym_user_type, + STATE(3939), 1, + sym_function_type, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, - sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10414), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + sym_line_comment, + STATE(3153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643230,34 +623604,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178050] = 13, - ACTIONS(8824), 1, + [167882] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8478), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8654), 1, + STATE(4587), 1, sym_user_type, - STATE(8904), 1, + STATE(4617), 1, + sym__delegation_specifiers, + STATE(4680), 1, sym_function_type, - STATE(8960), 1, + STATE(4909), 1, sym_delegation_specifier, - STATE(10123), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8916), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8834), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643265,32 +623641,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178098] = 11, - ACTIONS(9386), 1, + [167933] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(4538), 1, sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__delegation_specifiers, + STATE(4587), 1, + sym_user_type, + STATE(4680), 1, + sym_function_type, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7396), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10412), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(4792), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643298,57 +623678,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178142] = 3, + [167984] = 14, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2898), 1, + sym__delegation_specifiers, + STATE(3796), 1, + sym_user_type, + STATE(3939), 1, + sym_function_type, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5022), 6, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - sym__backtick_identifier, - ACTIONS(5020), 13, - anon_sym_where, + STATE(3153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [168035] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [178170] = 11, - ACTIONS(9386), 1, - sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(4538), 1, sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, + sym_user_type, + STATE(4615), 1, + sym__delegation_specifiers, + STATE(4680), 1, + sym_function_type, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10409), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(4792), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643356,32 +623752,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178214] = 11, - ACTIONS(9386), 1, + [168086] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, + STATE(2946), 1, + sym__delegation_specifiers, + STATE(3796), 1, + sym_user_type, + STATE(3939), 1, + sym_function_type, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7400), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10408), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(3153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643389,58 +623789,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178258] = 4, - ACTIONS(9198), 1, - anon_sym_COLON, + [168137] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4958), 1, + sym__delegation_specifiers, + STATE(5500), 1, + sym_user_type, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, + sym_function_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4010), 13, + STATE(5153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [168188] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [178288] = 11, - ACTIONS(9386), 1, - sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(4538), 1, sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4583), 1, + sym__delegation_specifiers, + STATE(4587), 1, + sym_user_type, + STATE(4680), 1, + sym_function_type, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7448), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10308), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(4792), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643448,34 +623863,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178332] = 13, + [168239] = 14, ACTIONS(211), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3539), 1, - sym_delegation_specifier, - STATE(4196), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(4252), 1, + STATE(4606), 1, + sym__delegation_specifiers, + STATE(4680), 1, sym_function_type, - STATE(9757), 1, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643483,32 +623900,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178380] = 11, - ACTIONS(9386), 1, + [168290] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, + STATE(2942), 1, + sym__delegation_specifiers, + STATE(3796), 1, + sym_user_type, + STATE(3939), 1, + sym_function_type, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10404), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(3153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643516,31 +623937,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178424] = 13, - ACTIONS(515), 1, + [168341] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2791), 1, + sym__lexical_identifier, + STATE(2796), 1, sym__simple_user_type, - STATE(2840), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3325), 1, - sym_delegation_specifier, - STATE(3824), 1, + STATE(2936), 1, + sym__delegation_specifiers, + STATE(3796), 1, sym_user_type, - STATE(4064), 1, + STATE(3939), 1, sym_function_type, - STATE(9832), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3141), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1910), 7, @@ -643551,32 +623974,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178472] = 11, - ACTIONS(9386), 1, + [168392] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, + STATE(2933), 1, + sym__delegation_specifiers, + STATE(3796), 1, + sym_user_type, + STATE(3939), 1, + sym_function_type, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7405), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10403), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(3153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643584,32 +624011,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178516] = 11, - ACTIONS(9386), 1, + [168443] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, - sym__lexical_identifier, - STATE(9684), 1, + STATE(2899), 1, sym_simple_identifier, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3125), 1, + sym__delegation_specifiers, + STATE(4049), 1, + sym_user_type, + STATE(4132), 1, + sym_function_type, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10401), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(3599), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643617,32 +624048,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178560] = 11, - ACTIONS(9386), 1, + [168494] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(4538), 1, sym_simple_identifier, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, + sym_user_type, + STATE(4597), 1, + sym__delegation_specifiers, + STATE(4680), 1, + sym_function_type, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7408), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10400), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(4792), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643650,32 +624085,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178604] = 11, - ACTIONS(9386), 1, + [168545] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, + STATE(2925), 1, + sym__delegation_specifiers, + STATE(3796), 1, + sym_user_type, + STATE(3939), 1, + sym_function_type, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10398), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(3153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643683,61 +624122,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178648] = 7, - ACTIONS(9775), 1, - anon_sym_LBRACK, - STATE(7875), 1, - sym__member_access_operator, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9780), 3, - sym_safe_nav, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(9783), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - STATE(7411), 5, - sym_indexing_suffix, - sym_navigation_suffix, - sym__postfix_unary_operator, - sym__postfix_unary_suffix, - aux_sym__postfix_unary_expression_repeat1, - ACTIONS(9778), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [178684] = 11, - ACTIONS(9386), 1, + [168596] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, - sym__lexical_identifier, - STATE(9684), 1, + STATE(2899), 1, sym_simple_identifier, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3117), 1, + sym__delegation_specifiers, + STATE(4049), 1, + sym_user_type, + STATE(4132), 1, + sym_function_type, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7410), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10397), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(3599), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643745,32 +624159,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178728] = 11, - ACTIONS(9386), 1, + [168647] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(5686), 1, sym_simple_identifier, + STATE(7891), 1, + sym__simple_user_type, + STATE(8345), 1, + sym_user_type, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8421), 1, + sym__delegation_specifiers, + STATE(8422), 1, + sym_function_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7376), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10393), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(8525), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643778,32 +624196,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178772] = 11, - ACTIONS(9386), 1, + [168698] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, + STATE(5062), 1, + sym__delegation_specifiers, + STATE(5500), 1, + sym_user_type, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, + sym_function_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10390), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(5153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643811,34 +624233,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178816] = 13, - ACTIONS(115), 1, + [168749] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4647), 1, - sym__simple_user_type, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4862), 1, - sym_delegation_specifier, - STATE(5426), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, sym_user_type, - STATE(5470), 1, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8625), 1, sym_function_type, - STATE(10042), 1, + STATE(9050), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643846,32 +624270,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178864] = 11, - ACTIONS(9386), 1, + [168800] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, + STATE(2924), 1, + sym__delegation_specifiers, + STATE(3796), 1, + sym_user_type, + STATE(3939), 1, + sym_function_type, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7414), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10389), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(3153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643879,32 +624307,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178908] = 11, - ACTIONS(9386), 1, + [168851] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, + STATE(3011), 1, + sym__delegation_specifiers, + STATE(3796), 1, + sym_user_type, + STATE(3939), 1, + sym_function_type, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10386), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(3153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643912,32 +624344,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178952] = 11, - ACTIONS(9386), 1, + [168902] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, + STATE(4894), 1, + sym__delegation_specifiers, + STATE(5500), 1, + sym_user_type, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, + sym_function_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7417), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10385), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(5153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643945,34 +624381,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178996] = 13, - ACTIONS(345), 1, + [168953] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3384), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3400), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4120), 1, - sym_delegation_specifier, - STATE(4338), 1, + STATE(2917), 1, + sym__delegation_specifiers, + STATE(3796), 1, sym_user_type, - STATE(4370), 1, + STATE(3939), 1, sym_function_type, - STATE(9828), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4099), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643980,32 +624418,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179044] = 11, - ACTIONS(9386), 1, + [169004] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_user_type, + STATE(8529), 1, + sym__delegation_specifiers, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8625), 1, + sym_function_type, + STATE(9549), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10382), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(8643), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644013,31 +624455,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179088] = 13, + [169055] = 14, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(4788), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(5073), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4896), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(5154), 1, - sym_function_type, - STATE(5299), 1, + STATE(5551), 1, sym_delegation_specifier, - STATE(10095), 1, + STATE(5557), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5384), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1920), 7, @@ -644048,32 +624492,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179136] = 11, - ACTIONS(9386), 1, + [169106] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_user_type, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8625), 1, + sym_function_type, + STATE(9349), 1, + sym__delegation_specifiers, + STATE(9549), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7420), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10381), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(8643), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644081,32 +624529,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179180] = 11, - ACTIONS(9386), 1, + [169157] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, + STATE(2904), 1, + sym__delegation_specifiers, + STATE(3796), 1, + sym_user_type, + STATE(3939), 1, + sym_function_type, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10378), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(3153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644114,32 +624566,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179224] = 11, - ACTIONS(9386), 1, + [169208] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, + STATE(2902), 1, + sym__delegation_specifiers, + STATE(3796), 1, + sym_user_type, + STATE(3939), 1, + sym_function_type, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7423), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10377), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(3153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644147,32 +624603,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179268] = 11, - ACTIONS(9386), 1, + [169259] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, + STATE(4900), 1, + sym__delegation_specifiers, + STATE(5500), 1, + sym_user_type, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, + sym_function_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10374), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(5153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644180,32 +624640,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179312] = 11, - ACTIONS(9386), 1, + [169310] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, + STATE(5020), 1, + sym__delegation_specifiers, + STATE(5500), 1, + sym_user_type, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, + sym_function_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7425), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10372), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(5153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644213,32 +624677,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179356] = 11, - ACTIONS(9386), 1, + [169361] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, + STATE(3028), 1, + sym__delegation_specifiers, + STATE(3796), 1, + sym_user_type, + STATE(3939), 1, + sym_function_type, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10369), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(3153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644246,34 +624714,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179400] = 13, - ACTIONS(211), 1, + [169412] = 13, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym__simple_user_type, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(3153), 1, + STATE(5686), 1, + sym_simple_identifier, + STATE(7891), 1, + sym__simple_user_type, + STATE(8345), 1, sym_user_type, - STATE(3382), 1, + STATE(8422), 1, sym_function_type, - STATE(3539), 1, + STATE(8571), 1, sym_delegation_specifier, - STATE(9757), 1, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3470), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1630), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644281,32 +624749,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179448] = 11, - ACTIONS(9386), 1, + [169460] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7427), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10368), 2, + STATE(10114), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9388), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644314,32 +624782,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179492] = 11, - ACTIONS(9386), 1, + [169504] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, + STATE(7140), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10326), 2, + STATE(10116), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9388), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644347,32 +624815,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179536] = 11, - ACTIONS(9386), 1, - sym__alpha_identifier, - ACTIONS(9392), 1, - sym__backtick_identifier, - ACTIONS(9771), 1, + [169548] = 8, + ACTIONS(9511), 1, anon_sym_AT, - ACTIONS(9773), 1, - anon_sym_LPAREN, - STATE(8598), 1, - sym__lexical_identifier, - STATE(9684), 1, - sym_simple_identifier, + ACTIONS(9517), 1, + sym_reification_modifier, + ACTIONS(9520), 1, + sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + ACTIONS(9514), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10361), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + STATE(7138), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(9509), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644380,32 +624844,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179580] = 11, - ACTIONS(9386), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + [169586] = 7, + ACTIONS(9522), 1, + anon_sym_LBRACK, + STATE(7730), 1, + sym__member_access_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9527), 3, + sym_safe_nav, + anon_sym_DOT, + anon_sym_COLON_COLON, + ACTIONS(9530), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + STATE(7139), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(9525), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [169622] = 11, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7431), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10360), 2, + STATE(10118), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9388), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644413,32 +624907,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179624] = 11, - ACTIONS(9386), 1, + [169666] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10357), 2, + STATE(10007), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9388), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644446,61 +624940,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179668] = 11, - ACTIONS(9386), 1, + [169710] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7433), 2, + STATE(7161), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10356), 2, + STATE(10121), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9388), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [179712] = 8, - ACTIONS(9670), 1, - anon_sym_AT, - ACTIONS(9788), 1, - sym_reification_modifier, - ACTIONS(9790), 1, - sym__backtick_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9672), 2, - anon_sym_in, - anon_sym_out, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7449), 4, - sym_variance_modifier, - sym__type_parameter_modifier, - sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(9786), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644508,33 +624973,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169754] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [179750] = 11, - ACTIONS(9386), 1, - sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, + STATE(7141), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10353), 2, + STATE(10005), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9388), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644542,34 +625006,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179794] = 13, - ACTIONS(431), 1, + [169798] = 13, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(832), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(841), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(1177), 1, - sym_delegation_specifier, - STATE(1439), 1, + STATE(4939), 1, sym_user_type, - STATE(1647), 1, + STATE(5032), 1, sym_function_type, - STATE(9938), 1, + STATE(5185), 1, + sym_delegation_specifier, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1120), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644577,32 +625041,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179842] = 11, - ACTIONS(9386), 1, + [169846] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7436), 2, + STATE(7136), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10352), 2, + STATE(10113), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9388), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644610,32 +625074,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179886] = 11, - ACTIONS(9386), 1, + [169890] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7451), 2, + STATE(7147), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10315), 2, + STATE(10019), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9388), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644643,32 +625107,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179930] = 11, - ACTIONS(9386), 1, + [169934] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10349), 2, + STATE(10023), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9388), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644676,32 +625140,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179974] = 11, - ACTIONS(9386), 1, + [169978] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7440), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10348), 2, + STATE(10026), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9388), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644709,129 +625173,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180018] = 13, - ACTIONS(9430), 1, + [170022] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5848), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(8229), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8607), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3535), 1, + sym_delegation_specifier, + STATE(4049), 1, sym_user_type, - STATE(8715), 1, + STATE(4132), 1, sym_function_type, - STATE(8879), 1, - sym_delegation_specifier, - STATE(9945), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8852), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9432), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [180066] = 7, - ACTIONS(6824), 1, - anon_sym_LBRACK, - STATE(7875), 1, - sym__member_access_operator, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(6840), 3, - sym_safe_nav, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(9794), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - STATE(7411), 5, - sym_indexing_suffix, - sym_navigation_suffix, - sym__postfix_unary_operator, - sym__postfix_unary_suffix, - aux_sym__postfix_unary_expression_repeat1, - ACTIONS(9792), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [180102] = 11, - ACTIONS(9386), 1, - sym__alpha_identifier, - ACTIONS(9392), 1, - sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, - anon_sym_LPAREN, - STATE(8598), 1, - sym__lexical_identifier, - STATE(9684), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10345), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [180146] = 11, - ACTIONS(9386), 1, - sym__alpha_identifier, - ACTIONS(9392), 1, - sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, - anon_sym_LPAREN, - STATE(8598), 1, - sym__lexical_identifier, - STATE(9684), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7444), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10341), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644839,20 +625208,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180190] = 5, - ACTIONS(9796), 1, + [170070] = 5, + ACTIONS(9533), 1, anon_sym_LT, - STATE(7467), 1, + STATE(7246), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 4, + ACTIONS(4189), 4, anon_sym_AT, anon_sym_LPAREN, anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4177), 13, + ACTIONS(4128), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -644866,32 +625235,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180222] = 11, - ACTIONS(9386), 1, + [170102] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10337), 2, + STATE(10111), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9388), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644899,61 +625268,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180266] = 11, - ACTIONS(9386), 1, + [170146] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10310), 2, + STATE(10029), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9388), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [180310] = 8, - ACTIONS(9800), 1, - anon_sym_AT, - ACTIONS(9806), 1, - sym_reification_modifier, - ACTIONS(9809), 1, - sym__backtick_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9803), 2, - anon_sym_in, - anon_sym_out, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7449), 4, - sym_variance_modifier, - sym__type_parameter_modifier, - sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(9798), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644961,33 +625301,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170190] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [180348] = 11, - ACTIONS(9386), 1, - sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7378), 2, + STATE(7151), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10026), 2, + STATE(10110), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9388), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644995,165 +625334,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180392] = 11, - ACTIONS(9386), 1, + [170234] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9771), 1, - anon_sym_AT, - ACTIONS(9773), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8598), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(9684), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, + STATE(5135), 1, + sym_delegation_specifier, + STATE(5500), 1, + sym_user_type, + STATE(5557), 1, + sym_function_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10313), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9388), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [180436] = 5, - ACTIONS(9811), 1, - anon_sym_DOT, - STATE(7452), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4191), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4189), 13, + STATE(5153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [170282] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [180467] = 7, - ACTIONS(9816), 1, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9821), 1, - anon_sym_suspend, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, + sym__lexical_identifier, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9819), 2, - anon_sym_LPAREN, - sym__backtick_identifier, - STATE(8094), 2, + STATE(7158), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(7453), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9814), 9, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [180502] = 5, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7565), 2, - anon_sym_in, - anon_sym_out, - ACTIONS(9826), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - STATE(7458), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - ACTIONS(9824), 10, + STATE(10033), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [170326] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [180533] = 5, - ACTIONS(9828), 1, - anon_sym_DOT, - STATE(7452), 1, - aux_sym_user_type_repeat1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, + sym_user_type, + STATE(3825), 1, + sym_function_type, + STATE(3961), 1, + sym_delegation_specifier, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4202), 13, + STATE(3888), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [170374] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [180564] = 7, - ACTIONS(9597), 1, - anon_sym_AT, - ACTIONS(9832), 1, + ACTIONS(9214), 1, sym__backtick_identifier, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, + sym__lexical_identifier, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9221), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7461), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(9830), 8, + STATE(10107), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645161,82 +625470,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170418] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [180599] = 3, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, + sym__lexical_identifier, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4010), 13, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10035), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [170462] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [180626] = 5, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, + sym__lexical_identifier, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9838), 2, - anon_sym_in, - anon_sym_out, - ACTIONS(9836), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - STATE(7458), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - ACTIONS(9834), 10, + STATE(7162), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10040), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [170506] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [180657] = 11, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9519), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - ACTIONS(9841), 1, - anon_sym_dynamic, - STATE(6406), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8104), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8538), 1, - sym_nullable_type, + STATE(4587), 1, + sym_user_type, + STATE(4680), 1, + sym_function_type, + STATE(4737), 1, + sym_delegation_specifier, + STATE(9487), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8105), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8834), 7, + STATE(4792), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645244,50 +625571,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180700] = 3, + [170554] = 11, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, + sym__lexical_identifier, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4215), 13, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10122), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [170598] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [180727] = 7, - ACTIONS(9845), 1, - anon_sym_AT, - ACTIONS(9851), 1, + ACTIONS(9214), 1, sym__backtick_identifier, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, + sym__lexical_identifier, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8101), 2, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9848), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7461), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(9843), 8, + STATE(10042), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645295,112 +625637,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [180762] = 7, - ACTIONS(9256), 1, + [170642] = 8, + ACTIONS(9420), 1, anon_sym_AT, - ACTIONS(9857), 1, - anon_sym_suspend, + ACTIONS(9537), 1, + sym_reification_modifier, + ACTIONS(9539), 1, + sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9855), 2, - anon_sym_LPAREN, - sym__backtick_identifier, - STATE(8094), 2, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(7453), 3, - sym__type_modifier, + STATE(7138), 4, + sym_variance_modifier, + sym__type_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9853), 9, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(9535), 8, anon_sym_get, anon_sym_set, - anon_sym_dynamic, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180797] = 5, - ACTIONS(9828), 1, - anon_sym_DOT, - STATE(7455), 1, - aux_sym_user_type_repeat1, + [170680] = 11, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, + sym__lexical_identifier, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4225), 13, + STATE(7166), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10126), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [170724] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [180828] = 7, - ACTIONS(9859), 1, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9862), 1, - anon_sym_suspend, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, + sym__lexical_identifier, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9855), 2, - anon_sym_LPAREN, - sym__backtick_identifier, - STATE(8094), 2, + STATE(7169), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(7453), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9853), 9, + STATE(10045), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [170768] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [180863] = 10, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(5971), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(9960), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7543), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(10127), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645408,29 +625766,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180903] = 10, - ACTIONS(8824), 1, + [170812] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9865), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7168), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10137), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645438,52 +625799,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180943] = 3, + [170856] = 11, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, + sym__lexical_identifier, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4319), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4317), 13, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10139), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [170900] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [180969] = 10, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9867), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10048), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645491,29 +625865,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181009] = 10, - ACTIONS(8824), 1, + [170944] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(5263), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(9965), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7596), 2, + STATE(7173), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(10051), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645521,29 +625898,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181049] = 10, - ACTIONS(8824), 1, + [170988] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9869), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7172), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10141), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645551,29 +625931,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181089] = 10, - ACTIONS(8824), 1, + [171032] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(980), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(10231), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7557), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(10142), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645581,29 +625964,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181129] = 10, - ACTIONS(8824), 1, + [171076] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9871), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10052), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645611,29 +625997,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181169] = 10, - ACTIONS(8824), 1, + [171120] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(5995), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(10007), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7585), 2, + STATE(7175), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(10055), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645641,29 +626030,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181209] = 10, - ACTIONS(8824), 1, + [171164] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9873), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10058), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645671,29 +626063,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181249] = 10, - ACTIONS(8824), 1, + [171208] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9875), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7177), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10061), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645701,29 +626096,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181289] = 10, - ACTIONS(8824), 1, + [171252] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9877), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10062), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645731,29 +626129,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181329] = 10, - ACTIONS(8824), 1, + [171296] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9879), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7179), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10071), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645761,29 +626162,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181369] = 10, - ACTIONS(8824), 1, + [171340] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(3052), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(10198), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7553), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(10072), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645791,29 +626195,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181409] = 10, - ACTIONS(8824), 1, + [171384] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9881), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7181), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10089), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645821,29 +626228,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181449] = 10, - ACTIONS(8824), 1, + [171428] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(3602), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(10139), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7532), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(10076), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645851,29 +626261,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181489] = 10, - ACTIONS(8824), 1, + [171472] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5189), 6, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__backtick_identifier, + ACTIONS(5187), 13, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, sym__alpha_identifier, - ACTIONS(8854), 1, + [171500] = 13, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9883), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(823), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(824), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(825), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(925), 1, sym_user_type, + STATE(929), 1, + sym_function_type, + STATE(1161), 1, + sym_delegation_specifier, + STATE(9593), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, + STATE(1030), 2, sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + sym_explicit_delegation, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645881,29 +626321,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181529] = 10, - ACTIONS(8824), 1, + [171548] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, - anon_sym_AT, - STATE(6406), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8739), 1, - sym_type_constraint, - STATE(10012), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_user_type, + STATE(8625), 1, + sym_function_type, + STATE(8678), 1, + sym_delegation_specifier, + STATE(9549), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7536), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8834), 7, + STATE(8643), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645911,29 +626356,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181569] = 10, - ACTIONS(8824), 1, + [171596] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(3263), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(10181), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7544), 2, + STATE(7189), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(10084), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645941,29 +626389,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181609] = 10, - ACTIONS(8824), 1, + [171640] = 4, + ACTIONS(9046), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4009), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4004), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, sym__alpha_identifier, - ACTIONS(8854), 1, + [171670] = 13, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9885), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(2791), 1, sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(6833), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(3226), 1, + sym_delegation_specifier, + STATE(3796), 1, sym_user_type, + STATE(3939), 1, + sym_function_type, + STATE(9798), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, + STATE(3153), 2, sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + sym_explicit_delegation, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645971,29 +626450,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181649] = 10, - ACTIONS(8824), 1, + [171718] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(3826), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(10054), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7564), 2, + STATE(7157), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(10106), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646001,29 +626483,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181689] = 10, - ACTIONS(8824), 1, + [171762] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(5369), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(10158), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7551), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(10085), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646031,29 +626516,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181729] = 10, - ACTIONS(8824), 1, + [171806] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(3406), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(10181), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7544), 2, + STATE(7202), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(9601), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646061,29 +626549,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181769] = 10, - ACTIONS(8824), 1, + [171850] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(3779), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(10054), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7564), 2, + STATE(7210), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(10011), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646091,53 +626582,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181809] = 4, - ACTIONS(9198), 1, - anon_sym_COLON, + [171894] = 11, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, + sym__lexical_identifier, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4010), 11, + STATE(7194), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9965), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [171938] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [181837] = 10, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9887), 1, - anon_sym_RBRACK, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(2899), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, + STATE(3363), 1, + sym_function_type, + STATE(3535), 1, + sym_delegation_specifier, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, + STATE(3599), 2, sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + sym_explicit_delegation, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646145,29 +626650,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181877] = 10, - ACTIONS(8824), 1, + [171986] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(4941), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(10169), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7541), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(9968), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646175,29 +626683,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181917] = 10, - ACTIONS(8824), 1, + [172030] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9889), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(4612), 1, sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(6833), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, + STATE(5041), 1, + sym_function_type, + STATE(5135), 1, + sym_delegation_specifier, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, + STATE(5153), 2, sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + sym_explicit_delegation, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646205,84 +626718,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181957] = 10, - ACTIONS(8824), 1, + [172078] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9891), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(4534), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(4737), 1, + sym_delegation_specifier, + STATE(5273), 1, sym_user_type, + STATE(5324), 1, + sym_function_type, + STATE(9487), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, + STATE(4792), 2, sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [181997] = 5, - ACTIONS(9893), 1, - anon_sym_LPAREN, - STATE(7578), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7248), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7246), 13, + sym_explicit_delegation, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [172126] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [182027] = 10, - ACTIONS(9896), 1, - sym__alpha_identifier, - ACTIONS(9899), 1, - anon_sym_RBRACK, - ACTIONS(9904), 1, + ACTIONS(469), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(823), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(824), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(825), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(1161), 1, + sym_delegation_specifier, + STATE(1397), 1, sym_user_type, + STATE(1684), 1, + sym_function_type, + STATE(9593), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, + STATE(1030), 2, sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(9901), 7, + sym_explicit_delegation, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646290,83 +626788,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182067] = 10, - ACTIONS(8824), 1, + [172174] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9907), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [182107] = 4, - ACTIONS(9198), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4010), 11, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10099), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [172218] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [182135] = 10, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(5985), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(10007), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7585), 2, + STATE(7198), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(10098), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646374,52 +626854,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182175] = 3, + [172262] = 11, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, + sym__lexical_identifier, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4189), 13, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10095), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [172306] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [182201] = 10, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9909), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10103), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646427,29 +626920,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182241] = 10, - ACTIONS(8824), 1, + [172350] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(3257), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(10198), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7553), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(9733), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646457,52 +626953,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182281] = 3, + [172394] = 11, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, + sym__lexical_identifier, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4234), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4232), 13, + STATE(7207), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10152), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [172438] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [182307] = 10, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9911), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7200), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10094), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646510,29 +627019,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182347] = 10, - ACTIONS(8824), 1, + [172482] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(5972), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(9870), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7570), 2, + STATE(7201), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(10102), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646540,29 +627052,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182387] = 10, - ACTIONS(8824), 1, + [172526] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9913), 1, - anon_sym_RBRACK, - STATE(6406), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(2791), 1, sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(6833), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, + STATE(3042), 1, + sym_function_type, + STATE(3226), 1, + sym_delegation_specifier, + STATE(9798), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, + STATE(3153), 2, sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + sym_explicit_delegation, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646570,29 +627087,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182427] = 10, - ACTIONS(8824), 1, + [172574] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(5104), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(10158), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7551), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(10091), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646600,29 +627120,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182467] = 10, - ACTIONS(8824), 1, + [172618] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9670), 1, - anon_sym_AT, - STATE(5150), 1, - sym_type_constraint, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9965), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3961), 1, + sym_delegation_specifier, + STATE(4199), 1, + sym_user_type, + STATE(4236), 1, + sym_function_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7596), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8834), 7, + STATE(3888), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646630,29 +627155,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182507] = 10, - ACTIONS(8824), 1, + [172666] = 7, + ACTIONS(6716), 1, + anon_sym_LBRACK, + STATE(7730), 1, + sym__member_access_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(6740), 3, + sym_safe_nav, + anon_sym_DOT, + anon_sym_COLON_COLON, + ACTIONS(9543), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + STATE(7139), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(9541), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [172702] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9505), 1, anon_sym_AT, - STATE(947), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, sym__lexical_identifier, - STATE(10231), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7557), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(10014), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646660,172 +627217,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182547] = 10, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9915), 1, - anon_sym_RBRACK, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, + [172746] = 5, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(9549), 2, + anon_sym_in, + anon_sym_out, + ACTIONS(9547), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7211), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + ACTIONS(9545), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [182587] = 3, + sym__alpha_identifier, + [172777] = 7, + ACTIONS(9554), 1, + anon_sym_AT, + ACTIONS(9560), 1, + sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4337), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4335), 13, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9557), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7212), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(9552), 8, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [182613] = 10, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9917), 1, - anon_sym_RBRACK, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, + [172812] = 7, + ACTIONS(9564), 1, + anon_sym_AT, + ACTIONS(9569), 1, + anon_sym_suspend, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(9567), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7219), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9562), 9, anon_sym_get, anon_sym_set, + anon_sym_dynamic, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [182653] = 10, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9919), 1, - anon_sym_RBRACK, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, + [172847] = 5, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + ACTIONS(9574), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7211), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + ACTIONS(9572), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [182693] = 10, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9921), 1, - anon_sym_RBRACK, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, + [172878] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(4009), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4004), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [182733] = 10, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [172905] = 11, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, - anon_sym_AT, - STATE(5972), 1, - sym_type_constraint, - STATE(6406), 1, + ACTIONS(9329), 1, + anon_sym_LPAREN, + ACTIONS(9576), 1, + anon_sym_dynamic, + STATE(6224), 1, sym__lexical_identifier, - STATE(9960), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, + STATE(8144), 1, + sym_nullable_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7543), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8834), 7, + STATE(7856), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646833,142 +627381,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182773] = 10, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9670), 1, + [172948] = 7, + ACTIONS(9105), 1, anon_sym_AT, - STATE(3769), 1, - sym_type_constraint, - STATE(6406), 1, - sym__lexical_identifier, - STATE(10139), 1, - sym_simple_identifier, + ACTIONS(9578), 1, + anon_sym_suspend, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7532), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + ACTIONS(9567), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(7219), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9562), 9, anon_sym_get, anon_sym_set, + anon_sym_dynamic, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [182813] = 10, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9670), 1, - anon_sym_AT, - STATE(5985), 1, - sym_type_constraint, - STATE(6406), 1, - sym__lexical_identifier, - STATE(10012), 1, - sym_simple_identifier, + [172983] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7536), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(4181), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4179), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [182853] = 10, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9670), 1, + [173010] = 7, + ACTIONS(9582), 1, anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8693), 1, - sym_type_constraint, - STATE(9870), 1, - sym_simple_identifier, + ACTIONS(9587), 1, + anon_sym_suspend, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7570), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + ACTIONS(9585), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + STATE(7219), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9580), 9, anon_sym_get, anon_sym_set, + anon_sym_dynamic, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [182893] = 10, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9670), 1, - anon_sym_AT, - STATE(4815), 1, - sym_type_constraint, - STATE(6406), 1, - sym__lexical_identifier, - STATE(10169), 1, - sym_simple_identifier, + [173045] = 5, + ACTIONS(9590), 1, + anon_sym_DOT, + STATE(7222), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7541), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(4195), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4193), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [182933] = 5, - ACTIONS(9923), 1, - anon_sym_LT, - STATE(7736), 1, - sym_type_arguments, + sym__alpha_identifier, + [173076] = 5, + ACTIONS(9592), 1, + anon_sym_DOT, + STATE(7221), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 4, + ACTIONS(4168), 3, anon_sym_AT, anon_sym_LPAREN, - anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4177), 11, + ACTIONS(4166), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -646978,57 +627513,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [182963] = 10, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9925), 1, - anon_sym_RBRACK, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, + [173107] = 5, + ACTIONS(9590), 1, + anon_sym_DOT, + STATE(7221), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7495), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(4155), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4153), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [183003] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [173138] = 7, + ACTIONS(9336), 1, + anon_sym_AT, + ACTIONS(9597), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7490), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7212), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(9595), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647036,27 +627566,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183040] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [173173] = 10, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(3016), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9878), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7509), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7352), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647064,78 +627597,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183077] = 10, - ACTIONS(9386), 1, + [173213] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9927), 1, - anon_sym_LBRACK, - STATE(8591), 1, - sym_simple_identifier, - STATE(8598), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5833), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(8732), 1, - sym__simple_user_type, - STATE(9032), 1, - sym_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(9614), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9388), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [183116] = 3, + STATE(9795), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4936), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4934), 13, + STATE(7356), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [173253] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [183141] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9599), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7511), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647143,28 +627657,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183178] = 10, - ACTIONS(9454), 1, + [173293] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9460), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9929), 1, - anon_sym_LBRACK, - STATE(5843), 1, + ACTIONS(9601), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(5955), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(5965), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(6000), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6028), 2, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9458), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647172,38 +627687,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183217] = 4, - ACTIONS(9198), 1, + [173333] = 4, + ACTIONS(9046), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 5, + ACTIONS(4009), 5, anon_sym_AT, anon_sym_LPAREN, anon_sym_LT, anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4010), 10, + ACTIONS(4004), 11, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183244] = 3, + [173361] = 5, + ACTIONS(9603), 1, + anon_sym_LPAREN, + STATE(7350), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7313), 3, + ACTIONS(7089), 2, anon_sym_AT, - anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7311), 13, + ACTIONS(7087), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -647217,27 +627736,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183269] = 9, - ACTIONS(8824), 1, + [173391] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9606), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7496), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647245,28 +627766,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183306] = 10, - ACTIONS(9744), 1, + [173431] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9752), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9931), 1, - anon_sym_LBRACK, - STATE(5976), 1, - sym_simple_identifier, - STATE(6004), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(3172), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(6010), 1, - sym__simple_user_type, - STATE(6026), 1, - sym_user_type, + STATE(9861), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6170), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9750), 7, + STATE(7347), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647274,27 +627796,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183345] = 9, - ACTIONS(8824), 1, + [173471] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9608), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7513), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647302,27 +627826,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183382] = 9, - ACTIONS(8824), 1, + [173511] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, - anon_sym_AT, - STATE(6406), 1, + ACTIONS(9610), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(10148), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8834), 7, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647330,79 +627856,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183419] = 9, - ACTIONS(8824), 1, + [173551] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9612), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7468), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [183456] = 5, - ACTIONS(9933), 1, - anon_sym_DOT, - STATE(7534), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4191), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4189), 11, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [173591] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [183485] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6406), 1, + STATE(864), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(10025), 1, + STATE(9902), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, + STATE(7332), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647410,27 +627916,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183522] = 9, - ACTIONS(8824), 1, + [173631] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, - anon_sym_AT, - STATE(6406), 1, + ACTIONS(9614), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(10251), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8834), 7, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647438,28 +627946,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183559] = 10, - ACTIONS(9638), 1, + [173671] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9650), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9936), 1, - anon_sym_LBRACK, - STATE(3479), 1, - sym_simple_identifier, - STATE(3719), 1, + ACTIONS(9616), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(3804), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, sym__simple_user_type, - STATE(3924), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4144), 2, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9646), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647467,28 +627976,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183598] = 10, - ACTIONS(9722), 1, + [173711] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9730), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9938), 1, - anon_sym_LBRACK, - STATE(7446), 1, - sym_simple_identifier, - STATE(7457), 1, + ACTIONS(9618), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, sym__simple_user_type, - STATE(7494), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7579), 2, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9728), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647496,27 +628006,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183637] = 9, - ACTIONS(8824), 1, + [173751] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9620), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7493), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647524,51 +628036,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183674] = 5, - ACTIONS(9940), 1, - anon_sym_LPAREN, - STATE(7399), 1, - sym_value_arguments, + [173791] = 10, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(3089), 1, + sym_type_constraint, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9878), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7248), 3, - anon_sym_AT, - anon_sym_RBRACK, - sym__backtick_identifier, - ACTIONS(7246), 11, + STATE(7352), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [173831] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [183703] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6406), 1, + STATE(5016), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(10172), 1, + STATE(9508), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, + STATE(7292), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647576,27 +628096,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183740] = 9, - ACTIONS(8824), 1, + [173871] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9622), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7481), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647604,27 +628126,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183777] = 9, - ACTIONS(8824), 1, + [173911] = 10, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9624), 1, + anon_sym_RBRACK, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173951] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6406), 1, + STATE(5133), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(9966), 1, + STATE(9714), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, + STATE(7293), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647632,27 +628186,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183814] = 9, - ACTIONS(8824), 1, + [173991] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6406), 1, + STATE(5811), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(10190), 1, + STATE(9548), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, + STATE(7296), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647660,55 +628216,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183851] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + [174031] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4337), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, + ACTIONS(4335), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [174057] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7466), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(4315), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4313), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [183888] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [174083] = 10, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9626), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7492), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647716,28 +628292,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183925] = 10, - ACTIONS(8824), 1, + [174123] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9942), 1, - anon_sym_LBRACK, - STATE(6406), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5833), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9648), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(8188), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8063), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(8834), 7, + STATE(7304), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647745,99 +628322,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183964] = 3, + [174163] = 4, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7323), 3, + ACTIONS(4009), 5, anon_sym_AT, anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, sym__backtick_identifier, - ACTIONS(7321), 13, + ACTIONS(4004), 11, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183989] = 9, - ACTIONS(8824), 1, + [174191] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9628), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7505), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [184026] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4942), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4940), 13, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [174231] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [184051] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6406), 1, + STATE(5839), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(10093), 1, + STATE(9648), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, + STATE(7304), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647845,27 +628406,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184088] = 9, - ACTIONS(8824), 1, + [174271] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, - anon_sym_AT, - STATE(6406), 1, + ACTIONS(9630), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(10031), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7535), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8834), 7, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647873,27 +628436,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184125] = 9, - ACTIONS(8824), 1, + [174311] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6406), 1, + STATE(4652), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(10281), 1, + STATE(9797), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, + STATE(7301), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647901,28 +628466,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184162] = 10, - ACTIONS(1724), 1, + [174351] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(1788), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9944), 1, - anon_sym_LBRACK, - STATE(5569), 1, + ACTIONS(9632), 1, + anon_sym_RBRACK, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(5583), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(5586), 1, - sym__lexical_identifier, - STATE(5669), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5751), 2, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(3095), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647930,71 +628496,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184201] = 3, + [174391] = 10, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8405), 1, + sym_type_constraint, + STATE(9493), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4974), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4972), 13, + STATE(7345), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [174431] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [184226] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(968), 1, + sym_type_constraint, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9902), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7299), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7297), 13, + STATE(7332), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [174471] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [184251] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6406), 1, + STATE(3408), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(10234), 1, + STATE(9766), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, + STATE(7281), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648002,71 +628586,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184288] = 3, + [174511] = 10, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9634), 1, + anon_sym_RBRACK, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5006), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(5004), 13, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [174551] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [184313] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9636), 1, + anon_sym_RBRACK, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4010), 11, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [174591] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [184338] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(4845), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9797), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7475), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7301), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648074,28 +628676,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184375] = 10, - ACTIONS(9430), 1, + [174631] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9946), 1, - anon_sym_LBRACK, - STATE(5842), 1, + ACTIONS(9638), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(5848), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(9244), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9656), 2, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9432), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648103,15 +628706,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184414] = 3, + [174671] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7263), 3, + ACTIONS(4319), 4, anon_sym_AT, anon_sym_LPAREN, + anon_sym_DOT, sym__backtick_identifier, - ACTIONS(7261), 13, + ACTIONS(4317), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -648125,27 +628729,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184439] = 9, - ACTIONS(8824), 1, + [174697] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9640), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7512), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648153,27 +628759,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184476] = 9, - ACTIONS(8824), 1, + [174737] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6406), 1, + STATE(4988), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(10064), 1, + STATE(9714), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, + STATE(7293), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648181,19 +628789,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184513] = 5, - ACTIONS(9948), 1, - anon_sym_DOT, - STATE(7534), 1, - aux_sym_user_type_repeat1, + [174777] = 5, + ACTIONS(9642), 1, + anon_sym_LT, + STATE(7506), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 3, + ACTIONS(4189), 4, anon_sym_AT, anon_sym_LPAREN, + anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4202), 11, + ACTIONS(4128), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648205,28 +628814,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184542] = 10, - ACTIONS(9702), 1, + [174807] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9710), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9950), 1, - anon_sym_LBRACK, - STATE(7519), 1, - sym_simple_identifier, - STATE(7559), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5197), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(7594), 1, - sym__simple_user_type, - STATE(7695), 1, - sym_user_type, + STATE(9508), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8100), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9708), 7, + STATE(7292), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648234,28 +628844,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184581] = 10, - ACTIONS(9754), 1, + [174847] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9762), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9952), 1, - anon_sym_LBRACK, - STATE(5828), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(3623), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(5846), 1, + STATE(9679), 1, sym_simple_identifier, - STATE(5853), 1, - sym__simple_user_type, - STATE(5865), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5886), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9760), 7, + STATE(7334), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648263,27 +628874,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184620] = 9, - ACTIONS(8824), 1, + [174887] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6406), 1, + STATE(3618), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(9804), 1, + STATE(9766), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7574), 2, + STATE(7281), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648291,28 +628904,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184657] = 10, - ACTIONS(8824), 1, + [174927] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9942), 1, - anon_sym_LBRACK, - STATE(6406), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5812), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9548), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8063), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(8834), 7, + STATE(7296), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648320,27 +628934,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184696] = 9, - ACTIONS(8824), 1, + [174967] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9839), 1, + STATE(8533), 1, + sym_type_constraint, + STATE(9795), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, + STATE(7356), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648348,28 +628964,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184733] = 10, - ACTIONS(9680), 1, + [175007] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9688), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9954), 1, - anon_sym_LBRACK, - STATE(7595), 1, - sym_simple_identifier, - STATE(7643), 1, + ACTIONS(9644), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(7819), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, sym__simple_user_type, - STATE(8065), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8088), 2, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9686), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648377,27 +628994,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184772] = 9, - ACTIONS(8824), 1, + [175047] = 10, + ACTIONS(9646), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9649), 1, + anon_sym_RBRACK, + ACTIONS(9654), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7472), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(9651), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648405,55 +629024,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184809] = 9, - ACTIONS(8824), 1, + [175087] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9657), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7500), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [184846] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9670), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9754), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7932), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648461,27 +629054,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184883] = 9, - ACTIONS(8824), 1, + [175127] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9659), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7479), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648489,27 +629084,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184920] = 9, - ACTIONS(8824), 1, + [175167] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6406), 1, + STATE(3283), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(10041), 1, + STATE(9861), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, + STATE(7347), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648517,27 +629114,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184957] = 9, - ACTIONS(8824), 1, + [175207] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(3763), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(9679), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7520), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7334), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648545,37 +629144,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184994] = 3, + [175247] = 10, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5811), 1, + sym_type_constraint, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9493), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5022), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(5020), 13, + STATE(7345), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [185019] = 3, + [175287] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7335), 3, + ACTIONS(4168), 4, anon_sym_AT, anon_sym_LPAREN, + anon_sym_DOT, sym__backtick_identifier, - ACTIONS(7333), 13, + ACTIONS(4166), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -648589,77 +629197,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [185044] = 9, - ACTIONS(8824), 1, + [175313] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, - anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(10039), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7576), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [185081] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4217), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4215), 11, + STATE(7272), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [175350] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185106] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(10032), 1, + STATE(9773), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, + STATE(7613), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648667,27 +629253,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185143] = 9, - ACTIONS(8824), 1, + [175387] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, - anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(10116), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7592), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8834), 7, + STATE(7236), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648695,27 +629281,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185180] = 9, - ACTIONS(8824), 1, + [175424] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(10029), 1, + STATE(9480), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7582), 2, + STATE(7613), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648723,55 +629309,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185217] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9670), 1, - anon_sym_AT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(10013), 1, - sym_simple_identifier, + [175461] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(7173), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7171), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [185254] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [175486] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7476), 3, + STATE(7227), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648779,27 +629359,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185291] = 9, - ACTIONS(8824), 1, + [175523] = 10, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, + ACTIONS(9661), 1, + anon_sym_LBRACK, + STATE(8325), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8452), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(8743), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7477), 3, + STATE(9121), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648807,27 +629388,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185328] = 9, - ACTIONS(8824), 1, + [175562] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7503), 3, + STATE(7239), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648835,27 +629416,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185365] = 9, - ACTIONS(8824), 1, + [175599] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(10151), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, - STATE(7540), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7474), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648863,27 +629444,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185402] = 9, - ACTIONS(8824), 1, + [175636] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9663), 1, + anon_sym_LBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7484), 3, + STATE(7608), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648891,52 +629473,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185439] = 6, - ACTIONS(9962), 1, - anon_sym_LPAREN, + [175675] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9959), 2, + ACTIONS(5185), 3, anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(9964), 2, - anon_sym_dynamic, - anon_sym_suspend, - ACTIONS(9966), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(9956), 8, + ACTIONS(5183), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [185470] = 9, - ACTIONS(8824), 1, + [175700] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, - anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(10411), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8834), 7, + STATE(7232), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648944,27 +629523,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185507] = 9, - ACTIONS(8824), 1, + [175737] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(10436), 1, + STATE(9564), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, + STATE(7613), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648972,75 +629551,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185544] = 5, - ACTIONS(9948), 1, - anon_sym_DOT, - STATE(7565), 1, - aux_sym_user_type_repeat1, + [175774] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9722), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4225), 11, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [175811] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [185573] = 5, - ACTIONS(9968), 1, - anon_sym_LT, - STATE(8080), 1, - sym_type_arguments, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9663), 1, + anon_sym_LBRACK, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7888), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4177), 10, + STATE(7608), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [175850] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185602] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, - anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9906), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7932), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8834), 7, + STATE(7262), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649048,27 +629636,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185639] = 9, - ACTIONS(8824), 1, + [175887] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(10435), 1, + STATE(9560), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7593), 2, + STATE(7613), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649076,56 +629664,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185676] = 10, - ACTIONS(9440), 1, - sym__alpha_identifier, - ACTIONS(9448), 1, - sym__backtick_identifier, - ACTIONS(9970), 1, - anon_sym_LBRACK, - STATE(5775), 1, - sym_simple_identifier, - STATE(5776), 1, - sym__lexical_identifier, - STATE(5815), 1, - sym__simple_user_type, - STATE(5888), 1, - sym_user_type, + [175924] = 5, + ACTIONS(9665), 1, + anon_sym_DOT, + STATE(7338), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5934), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9444), 7, + ACTIONS(4155), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4153), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [185715] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [175953] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6833), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7540), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7470), 3, + STATE(7238), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649133,50 +629716,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185752] = 9, - ACTIONS(9386), 1, + [175990] = 10, + ACTIONS(9434), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(9442), 1, sym__backtick_identifier, - ACTIONS(9668), 1, - anon_sym_LPAREN, - STATE(8591), 1, - sym_simple_identifier, - STATE(8598), 1, + ACTIONS(9667), 1, + anon_sym_LBRACK, + STATE(5660), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(5684), 1, + sym_simple_identifier, + STATE(5692), 1, sym__simple_user_type, + STATE(5705), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8571), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9388), 7, + STATE(5728), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9440), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [185788] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9972), 1, - anon_sym_LPAREN, - STATE(864), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + anon_sym_expect, + anon_sym_actual, + [176029] = 10, + ACTIONS(9484), 1, + sym__alpha_identifier, + ACTIONS(9492), 1, + sym__backtick_identifier, + ACTIONS(9669), 1, + anon_sym_LBRACK, + STATE(7150), 1, + sym_simple_identifier, + STATE(7215), 1, + sym__lexical_identifier, + STATE(7220), 1, + sym__simple_user_type, + STATE(7229), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(7326), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9490), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649184,27 +629774,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176068] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185820] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9974), 1, - anon_sym_LPAREN, - ACTIONS(9976), 1, - anon_sym_DOT, - STATE(3366), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(9820), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2686), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649212,26 +629802,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185856] = 9, - ACTIONS(211), 1, + [176105] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9738), 1, - anon_sym_LPAREN, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3318), 1, - sym__simple_user_type, + STATE(9475), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3436), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1630), 7, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649239,26 +629830,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185892] = 9, - ACTIONS(8824), 1, + [176142] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, - anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(6662), 1, sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10316), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(7226), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649266,23 +629858,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185928] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9978), 1, - anon_sym_LPAREN, - STATE(5005), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + [176179] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9652), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649290,27 +629886,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176216] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185960] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, - anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(10148), 1, sym_simple_identifier, - STATE(8555), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10413), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(7288), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649318,26 +629914,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185996] = 9, - ACTIONS(345), 1, + [176253] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9974), 1, - anon_sym_LPAREN, - ACTIONS(9980), 1, - anon_sym_DOT, - STATE(3366), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2738), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(7233), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649345,48 +629942,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186032] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9982), 1, + [176290] = 5, + ACTIONS(9671), 1, anon_sym_LPAREN, - STATE(6730), 1, - sym_type_arguments, - STATE(8601), 1, - sym_function_value_parameters, + STATE(7182), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, + ACTIONS(7089), 3, + anon_sym_AT, + anon_sym_RBRACK, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(7087), 11, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [186064] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9978), 1, - anon_sym_LPAREN, - STATE(4806), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + [176319] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9474), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(7302), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649394,27 +629994,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176356] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186096] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9974), 1, - anon_sym_LPAREN, - ACTIONS(9984), 1, - anon_sym_DOT, - STATE(3366), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2753), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(7234), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649422,26 +630022,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186132] = 9, - ACTIONS(115), 1, + [176393] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9666), 1, - anon_sym_LPAREN, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4730), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4819), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1842), 7, + STATE(7251), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649449,47 +630050,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186168] = 3, + [176430] = 6, + ACTIONS(9679), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9988), 3, + ACTIONS(9676), 2, anon_sym_AT, - anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(9986), 12, - anon_sym_get, - anon_sym_set, + ACTIONS(9681), 2, anon_sym_dynamic, - anon_sym_in, anon_sym_suspend, + ACTIONS(9683), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(9673), 8, + anon_sym_get, + anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [186192] = 9, - ACTIONS(211), 1, + [176461] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9990), 1, - anon_sym_LPAREN, - ACTIONS(9992), 1, - anon_sym_DOT, - STATE(3032), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2737), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + STATE(7274), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649497,26 +630103,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186228] = 9, - ACTIONS(211), 1, + [176498] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9990), 1, - anon_sym_LPAREN, - ACTIONS(9994), 1, - anon_sym_DOT, - STATE(3032), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2735), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + STATE(7253), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649524,78 +630131,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186264] = 9, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9990), 1, - anon_sym_LPAREN, - ACTIONS(9996), 1, - anon_sym_DOT, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3330), 1, - sym_simple_identifier, + [176535] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2722), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(4009), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4004), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [186300] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9998), 1, - anon_sym_LPAREN, - STATE(4649), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + sym__alpha_identifier, + [176560] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, + ACTIONS(5161), 3, + anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(5159), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [186332] = 9, - ACTIONS(345), 1, + [176585] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9974), 1, - anon_sym_LPAREN, - ACTIONS(10000), 1, - anon_sym_DOT, - STATE(3366), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2452), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(7259), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649603,26 +630203,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186368] = 9, - ACTIONS(345), 1, + [176622] = 10, + ACTIONS(9386), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9398), 1, sym__backtick_identifier, - ACTIONS(9974), 1, - anon_sym_LPAREN, - ACTIONS(10002), 1, - anon_sym_DOT, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3710), 1, + ACTIONS(9685), 1, + anon_sym_LBRACK, + STATE(3554), 1, sym_simple_identifier, + STATE(3648), 1, + sym__lexical_identifier, + STATE(3688), 1, + sym__simple_user_type, + STATE(3724), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2464), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(3979), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9394), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649630,27 +630232,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186404] = 10, - ACTIONS(8662), 1, - anon_sym_LBRACE, - ACTIONS(9430), 1, + [176661] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10004), 1, - anon_sym_COLON, - ACTIONS(10006), 1, - sym__automatic_semicolon, - STATE(5842), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8963), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(10355), 1, - sym_class_body, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649658,23 +630260,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186442] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10008), 1, - anon_sym_LPAREN, - STATE(4250), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + [176698] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9477), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(7283), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649682,27 +630288,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176735] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186474] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, - anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(6662), 1, sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8571), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(7230), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649710,103 +630316,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186510] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9998), 1, - anon_sym_LPAREN, - STATE(4652), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + [176772] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, + ACTIONS(5165), 3, + anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(5163), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [186542] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9974), 1, - anon_sym_LPAREN, - ACTIONS(10010), 1, - anon_sym_DOT, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3710), 1, - sym_simple_identifier, + [176797] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2746), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [186578] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10012), 1, + ACTIONS(7181), 3, + anon_sym_AT, anon_sym_LPAREN, - STATE(4197), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(7179), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [186610] = 9, - ACTIONS(8824), 1, + [176822] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, - anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(6662), 1, sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10101), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(7243), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649814,26 +630388,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186646] = 9, - ACTIONS(8824), 1, + [176859] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, - anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(6662), 1, sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10014), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(7255), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649841,26 +630416,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186682] = 9, - ACTIONS(9404), 1, + [176896] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9412), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10014), 1, - anon_sym_LPAREN, - ACTIONS(10016), 1, - anon_sym_DOT, - STATE(5867), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5967), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5615), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9408), 7, + STATE(7260), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649868,73 +630444,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186718] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9998), 1, - anon_sym_LPAREN, - STATE(4655), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + [176933] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, + ACTIONS(7193), 3, + anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(7191), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [186750] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9982), 1, - anon_sym_LPAREN, - STATE(6730), 1, - sym_type_arguments, - STATE(8592), 1, - sym_function_value_parameters, + [176958] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, + ACTIONS(7189), 3, + anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(7187), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [186782] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9978), 1, - anon_sym_LPAREN, - STATE(4799), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + [176983] = 10, + ACTIONS(9448), 1, + sym__alpha_identifier, + ACTIONS(9456), 1, + sym__backtick_identifier, + ACTIONS(9687), 1, + anon_sym_LBRACK, + STATE(7266), 1, + sym_simple_identifier, + STATE(7314), 1, + sym__lexical_identifier, + STATE(7333), 1, + sym__simple_user_type, + STATE(7534), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(7861), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9454), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649942,26 +630517,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177022] = 10, + ACTIONS(9402), 1, sym__alpha_identifier, - [186814] = 9, - ACTIONS(9404), 1, - sym__alpha_identifier, - ACTIONS(9412), 1, + ACTIONS(9410), 1, sym__backtick_identifier, - ACTIONS(9694), 1, - anon_sym_LPAREN, - STATE(5848), 1, + ACTIONS(9689), 1, + anon_sym_LBRACK, + STATE(5826), 1, sym_simple_identifier, - STATE(5867), 1, - sym__lexical_identifier, - STATE(5928), 1, + STATE(5841), 1, sym__simple_user_type, + STATE(5842), 1, + sym__lexical_identifier, + STATE(5863), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5956), 2, - sym_user_type, - sym_parenthesized_user_type, + STATE(6351), 2, + sym_constructor_invocation, + sym__unescaped_annotation, ACTIONS(9408), 7, anon_sym_get, anon_sym_set, @@ -649970,26 +630546,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186850] = 9, - ACTIONS(345), 1, + [177061] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9974), 1, - anon_sym_LPAREN, - ACTIONS(10018), 1, - anon_sym_DOT, - STATE(3366), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2728), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(7242), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649997,23 +630574,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186886] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9978), 1, - anon_sym_LPAREN, - STATE(4795), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + [177098] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(7248), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650021,27 +630602,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177135] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186918] = 9, - ACTIONS(9466), 1, - sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10020), 1, - anon_sym_LPAREN, - ACTIONS(10022), 1, - anon_sym_DOT, - STATE(2904), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3619), 1, + STATE(9904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2297), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9470), 7, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650049,51 +630630,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186954] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9978), 1, - anon_sym_LPAREN, - STATE(4947), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + [177172] = 5, + ACTIONS(9665), 1, + anon_sym_DOT, + STATE(7297), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, + ACTIONS(4195), 3, + anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4193), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [186986] = 9, - ACTIONS(515), 1, + [177201] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9676), 1, - anon_sym_LPAREN, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2981), 1, - sym__simple_user_type, + STATE(9683), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3105), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1910), 7, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650101,26 +630682,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187022] = 9, - ACTIONS(9466), 1, + [177238] = 10, + ACTIONS(9248), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(10020), 1, - anon_sym_LPAREN, - ACTIONS(10024), 1, - anon_sym_DOT, - STATE(2904), 1, + ACTIONS(9691), 1, + anon_sym_LBRACK, + STATE(5602), 1, sym__lexical_identifier, - STATE(3619), 1, + STATE(5617), 1, sym_simple_identifier, + STATE(5653), 1, + sym__simple_user_type, + STATE(5738), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2310), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9470), 7, + STATE(5775), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650128,53 +630711,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187058] = 9, - ACTIONS(9404), 1, - sym__alpha_identifier, - ACTIONS(9412), 1, - sym__backtick_identifier, - ACTIONS(10014), 1, - anon_sym_LPAREN, - ACTIONS(10026), 1, - anon_sym_DOT, - STATE(5867), 1, - sym__lexical_identifier, - STATE(5967), 1, - sym_simple_identifier, + [177277] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5622), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9408), 7, + ACTIONS(5181), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(5179), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [187094] = 9, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, + [177302] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10028), 1, - anon_sym_LPAREN, - ACTIONS(10030), 1, - anon_sym_DOT, - STATE(829), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(9774), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(456), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650182,53 +630761,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187130] = 9, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9738), 1, - anon_sym_LPAREN, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3318), 1, - sym__simple_user_type, + [177339] = 5, + ACTIONS(9693), 1, + anon_sym_DOT, + STATE(7338), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3431), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1630), 7, + ACTIONS(4168), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4166), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [187166] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [177368] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, - anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(9771), 1, sym_simple_identifier, - STATE(8555), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9781), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(7337), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650236,44 +630813,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187202] = 9, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9738), 1, - anon_sym_LPAREN, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3318), 1, - sym__simple_user_type, + [177405] = 4, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3444), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1630), 7, + ACTIONS(4009), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4004), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [187238] = 3, + sym__alpha_identifier, + [177432] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 5, + ACTIONS(7145), 3, anon_sym_AT, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4010), 10, + ACTIONS(7143), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -650281,53 +630852,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [187262] = 9, - ACTIONS(515), 1, + [177457] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9676), 1, - anon_sym_LPAREN, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2981), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3091), 2, + STATE(7307), 1, sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1910), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [187298] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10032), 1, - anon_sym_LPAREN, - STATE(6730), 1, - sym_type_arguments, - STATE(8616), 1, - sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(7237), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650335,24 +630886,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177494] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187330] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10012), 1, - anon_sym_LPAREN, - STATE(4198), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9654), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650360,27 +630914,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177531] = 10, + ACTIONS(9216), 1, sym__alpha_identifier, - [187362] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9668), 1, - anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9696), 1, + anon_sym_LBRACK, + STATE(5685), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(8314), 1, sym__simple_user_type, + STATE(8804), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8584), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(9412), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650388,23 +630943,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187398] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9998), 1, - anon_sym_LPAREN, - STATE(4759), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + [177570] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9697), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650412,51 +630971,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177607] = 10, + ACTIONS(9285), 1, sym__alpha_identifier, - [187430] = 9, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9291), 1, sym__backtick_identifier, - ACTIONS(9712), 1, - anon_sym_LPAREN, - STATE(4726), 1, + ACTIONS(9698), 1, + anon_sym_LBRACK, + STATE(5682), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(5787), 1, sym_simple_identifier, - STATE(5048), 1, + STATE(5813), 1, sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5189), 2, + STATE(5827), 1, sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1920), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [187466] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9998), 1, - anon_sym_LPAREN, - STATE(4765), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(5876), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9289), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650464,27 +631000,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177646] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187498] = 9, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9990), 1, - anon_sym_LPAREN, - ACTIONS(10034), 1, - anon_sym_DOT, - STATE(3032), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(9868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2695), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650492,26 +631028,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187534] = 9, - ACTIONS(431), 1, + [177683] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10028), 1, - anon_sym_LPAREN, - ACTIONS(10036), 1, - anon_sym_DOT, - STATE(829), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(9695), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(459), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(7351), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650519,26 +631056,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187570] = 9, - ACTIONS(115), 1, + [177720] = 10, + ACTIONS(9464), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9472), 1, sym__backtick_identifier, - ACTIONS(9666), 1, - anon_sym_LPAREN, - STATE(4653), 1, + ACTIONS(9700), 1, + anon_sym_LBRACK, + STATE(7357), 1, sym_simple_identifier, - STATE(4661), 1, + STATE(7388), 1, sym__lexical_identifier, - STATE(4730), 1, + STATE(7566), 1, sym__simple_user_type, + STATE(7828), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4785), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1842), 7, + STATE(7840), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9470), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650546,53 +631085,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187606] = 9, - ACTIONS(9404), 1, - sym__alpha_identifier, - ACTIONS(9412), 1, - sym__backtick_identifier, - ACTIONS(9694), 1, - anon_sym_LPAREN, - STATE(5848), 1, - sym_simple_identifier, - STATE(5867), 1, - sym__lexical_identifier, - STATE(5928), 1, - sym__simple_user_type, + [177759] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5948), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9408), 7, + ACTIONS(5189), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(5187), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [187642] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [177784] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, - anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(9694), 1, sym_simple_identifier, - STATE(8555), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9967), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650600,26 +631135,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187678] = 9, - ACTIONS(9404), 1, + [177821] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9412), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9694), 1, - anon_sym_LPAREN, - STATE(5848), 1, - sym_simple_identifier, - STATE(5867), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5928), 1, - sym__simple_user_type, + STATE(9886), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5954), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9408), 7, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650627,48 +631163,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187714] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9978), 1, - anon_sym_LPAREN, - STATE(5535), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + [177858] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4181), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, anon_sym_DOT, - sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4179), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [187746] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9998), 1, - anon_sym_LPAREN, - STATE(4767), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + [177883] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(7264), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650676,27 +631213,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177920] = 10, + ACTIONS(1724), 1, sym__alpha_identifier, - [187778] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(1788), 1, sym__backtick_identifier, - ACTIONS(9974), 1, - anon_sym_LPAREN, - ACTIONS(10038), 1, - anon_sym_DOT, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3710), 1, + ACTIONS(9702), 1, + anon_sym_LBRACK, + STATE(5340), 1, sym_simple_identifier, + STATE(5443), 1, + sym__simple_user_type, + STATE(5458), 1, + sym__lexical_identifier, + STATE(5501), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2791), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(5535), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(3092), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650704,26 +631242,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187814] = 9, - ACTIONS(8824), 1, + [177959] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, - anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(9734), 1, sym_simple_identifier, - STATE(8555), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9978), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650731,51 +631270,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187850] = 7, - ACTIONS(6638), 1, + [177996] = 5, + ACTIONS(9704), 1, anon_sym_LT, - ACTIONS(9978), 1, - anon_sym_LPAREN, - STATE(5500), 1, - sym_function_value_parameters, - STATE(6730), 1, + STATE(7653), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 4, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, - sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [187882] = 9, - ACTIONS(9404), 1, + [178025] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9412), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10014), 1, - anon_sym_LPAREN, - ACTIONS(10040), 1, - anon_sym_DOT, - STATE(5867), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5967), 1, + STATE(9591), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5610), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9408), 7, + STATE(7343), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650783,26 +631322,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187918] = 9, - ACTIONS(9430), 1, + [178062] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5848), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8587), 1, + STATE(884), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5956), 2, + STATE(972), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9432), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650810,53 +631349,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187954] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9974), 1, - anon_sym_LPAREN, - ACTIONS(10042), 1, - anon_sym_DOT, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3710), 1, - sym_simple_identifier, + [178098] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2797), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(4319), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4317), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [187990] = 9, - ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(203), 1, + [178122] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9666), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + ACTIONS(9708), 1, + anon_sym_DOT, + STATE(3332), 1, sym__lexical_identifier, - STATE(4730), 1, - sym__simple_user_type, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4752), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1842), 7, + STATE(2346), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650864,25 +631397,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188026] = 8, - ACTIONS(8824), 1, + [178158] = 9, + ACTIONS(9248), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9773), 1, + ACTIONS(9430), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(8803), 1, + STATE(5617), 1, sym_simple_identifier, + STATE(5653), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9728), 3, - sym_variable_declaration, - sym_multi_variable_declaration, - sym__lambda_parameter, - ACTIONS(8834), 7, + STATE(5831), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650890,26 +631424,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188060] = 9, - ACTIONS(8824), 1, + [178194] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9710), 1, + anon_sym_DOT, + STATE(3332), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(3670), 1, sym_simple_identifier, - STATE(8555), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9761), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(2335), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650917,26 +631451,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188096] = 9, - ACTIONS(8824), 1, + [178230] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9927), 2, + STATE(8292), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650944,23 +631478,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188132] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9978), 1, + [178266] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(5502), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + ACTIONS(9714), 1, + anon_sym_DOT, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(591), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650968,27 +631505,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178302] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - [188164] = 9, - ACTIONS(9386), 1, - sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - STATE(8591), 1, - sym_simple_identifier, - STATE(8598), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4897), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8573), 2, + STATE(5005), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9388), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650996,26 +631532,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188200] = 9, - ACTIONS(345), 1, + [178338] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(10044), 1, + ACTIONS(9716), 1, anon_sym_DOT, - STATE(3366), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2799), 2, + STATE(593), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651023,50 +631559,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188236] = 9, - ACTIONS(9440), 1, + [178374] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9448), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10046), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(10048), 1, + ACTIONS(9718), 1, anon_sym_DOT, - STATE(5776), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5979), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5664), 2, + STATE(569), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9444), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [188272] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10032), 1, - anon_sym_LPAREN, - STATE(6730), 1, - sym_type_arguments, - STATE(8618), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651074,27 +631586,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178410] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - [188304] = 9, - ACTIONS(9386), 1, - sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9458), 1, anon_sym_LPAREN, - STATE(8591), 1, - sym_simple_identifier, - STATE(8598), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4616), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8584), 2, + STATE(4674), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9388), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651102,26 +631613,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188340] = 9, - ACTIONS(9394), 1, + [178446] = 9, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9678), 1, + ACTIONS(9446), 1, anon_sym_LPAREN, - STATE(4650), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(4657), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(4814), 1, + STATE(4633), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5085), 2, + STATE(4945), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9398), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651129,26 +631640,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188376] = 9, - ACTIONS(9466), 1, + [178482] = 9, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9446), 1, anon_sym_LPAREN, - STATE(2904), 1, - sym__lexical_identifier, - STATE(2945), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(3352), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4633), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3587), 2, + STATE(4946), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9470), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651156,23 +631667,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188412] = 7, - ACTIONS(6638), 1, + [178518] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9972), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(1244), 1, + STATE(5306), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651181,26 +631692,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188444] = 9, - ACTIONS(9430), 1, + [178550] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(5842), 1, + ACTIONS(9724), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(5848), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(8587), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5948), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9432), 7, + STATE(2661), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651208,53 +631719,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188480] = 9, - ACTIONS(8824), 1, + [178586] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10255), 2, + STATE(9467), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178622] = 5, + ACTIONS(9726), 1, + anon_sym_DOT, + STATE(7375), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4168), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4166), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [188516] = 9, - ACTIONS(515), 1, sym__alpha_identifier, - ACTIONS(595), 1, + [178650] = 9, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9676), 1, + ACTIONS(9446), 1, anon_sym_LPAREN, - STATE(2840), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(2981), 1, + STATE(4633), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3112), 2, + STATE(4935), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1910), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651262,23 +631796,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188552] = 7, - ACTIONS(6638), 1, + [178686] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10008), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(4201), 1, + STATE(3358), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651287,26 +631821,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188584] = 9, - ACTIONS(345), 1, + [178718] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(10050), 1, + ACTIONS(9731), 1, anon_sym_DOT, - STATE(3366), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2739), 2, + STATE(588), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651314,26 +631848,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188620] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9668), 1, + [178754] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8161), 1, - sym_simple_identifier, - STATE(8555), 1, - sym__simple_user_type, + STATE(5310), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10159), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651341,49 +631872,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188656] = 5, - ACTIONS(10052), 1, - anon_sym_DOT, - STATE(7684), 1, - aux_sym_user_type_repeat1, + sym__alpha_identifier, + [178786] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(4687), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 3, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(4189), 10, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188684] = 9, - ACTIONS(8824), 1, + [178818] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10065), 2, + STATE(9618), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651391,23 +631925,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188720] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10008), 1, + [178854] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(4204), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + ACTIONS(9733), 1, + anon_sym_DOT, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(581), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651415,24 +631952,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [188752] = 7, - ACTIONS(6638), 1, + [178890] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9982), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(6730), 1, - sym_type_arguments, - STATE(8599), 1, + STATE(5313), 1, sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651441,26 +631977,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188784] = 9, - ACTIONS(9466), 1, + [178922] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(2904), 1, + ACTIONS(9735), 1, + anon_sym_DOT, + STATE(3332), 1, sym__lexical_identifier, - STATE(2945), 1, + STATE(3670), 1, sym_simple_identifier, - STATE(3352), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3624), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9470), 7, + STATE(2646), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651468,26 +632004,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188820] = 9, - ACTIONS(345), 1, + [178958] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9690), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3400), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(3696), 1, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(9796), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651495,26 +632031,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188856] = 9, - ACTIONS(8824), 1, + [178994] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9737), 1, + anon_sym_DOT, + STATE(823), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(866), 1, sym_simple_identifier, - STATE(8555), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10440), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(584), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651522,26 +632058,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188892] = 9, - ACTIONS(345), 1, + [179030] = 9, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(10055), 1, - anon_sym_DOT, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3710), 1, + STATE(8325), 1, sym_simple_identifier, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8452), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2711), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(8292), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651549,53 +632085,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188928] = 9, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9990), 1, - anon_sym_LPAREN, - ACTIONS(10057), 1, - anon_sym_DOT, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3330), 1, - sym_simple_identifier, + [179066] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2718), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(4009), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4004), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [188964] = 9, - ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(293), 1, + [179090] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(10059), 1, + ACTIONS(9739), 1, anon_sym_DOT, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2496), 2, + STATE(2417), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651603,23 +632133,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189000] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9998), 1, + [179126] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(5035), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + ACTIONS(9741), 1, + anon_sym_DOT, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(2602), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651627,47 +632160,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179162] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [189032] = 5, - ACTIONS(10061), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(8102), 1, - sym_value_arguments, + ACTIONS(9743), 1, + anon_sym_DOT, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3108), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7248), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7246), 11, + STATE(2319), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [189060] = 7, - ACTIONS(6638), 1, + [179198] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10032), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(6730), 1, - sym_type_arguments, - STATE(8614), 1, + STATE(4869), 1, sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651676,26 +632212,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189092] = 9, - ACTIONS(9394), 1, + [179230] = 9, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9678), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(4650), 1, + STATE(8325), 1, sym_simple_identifier, - STATE(4657), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(4814), 1, + STATE(8452), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5050), 2, + STATE(8291), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9398), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651703,23 +632239,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189128] = 7, - ACTIONS(6638), 1, + [179266] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10008), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(4203), 1, + STATE(2849), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651728,26 +632264,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189160] = 9, - ACTIONS(345), 1, + [179298] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9444), 1, anon_sym_LPAREN, - ACTIONS(10063), 1, - anon_sym_DOT, - STATE(3366), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(2803), 1, sym_simple_identifier, + STATE(2915), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2713), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(2971), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651755,26 +632291,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189196] = 9, - ACTIONS(431), 1, + [179334] = 9, + ACTIONS(9258), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(10065), 1, + ACTIONS(9749), 1, anon_sym_DOT, - STATE(829), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(3399), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(441), 2, + STATE(2304), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651782,23 +632318,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189232] = 9, - ACTIONS(431), 1, + [179370] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(10067), 1, + ACTIONS(9751), 1, anon_sym_DOT, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(432), 2, + STATE(452), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -651809,23 +632345,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189268] = 7, - ACTIONS(6638), 1, + [179406] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9972), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(1236), 1, + STATE(5387), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651834,53 +632370,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189300] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9690), 1, - anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3400), 1, - sym_simple_identifier, - STATE(3696), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3847), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [189336] = 9, - ACTIONS(8824), 1, + [179438] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9753), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(8555), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8573), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(2330), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651888,26 +632397,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189372] = 9, - ACTIONS(9466), 1, + [179474] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(10020), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(10069), 1, + ACTIONS(9755), 1, anon_sym_DOT, - STATE(2904), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3619), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2341), 2, + STATE(2660), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9470), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651915,26 +632424,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189408] = 9, - ACTIONS(8824), 1, + [179510] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9458), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(4616), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9891), 2, + STATE(4669), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8834), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651942,26 +632451,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189444] = 9, - ACTIONS(9466), 1, + [179546] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9458), 1, anon_sym_LPAREN, - STATE(2904), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2945), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3352), 1, + STATE(4616), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3648), 2, + STATE(4692), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9470), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651969,53 +632478,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189480] = 9, - ACTIONS(9394), 1, - sym__alpha_identifier, - ACTIONS(9402), 1, - sym__backtick_identifier, - ACTIONS(9678), 1, - anon_sym_LPAREN, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, - sym__lexical_identifier, - STATE(4814), 1, - sym__simple_user_type, + [179582] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5058), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9398), 7, + ACTIONS(4181), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4179), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [189516] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [179606] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9757), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(8555), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10119), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(2372), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652023,23 +632526,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189552] = 7, - ACTIONS(6638), 1, + [179642] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9998), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(5436), 1, + STATE(2768), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652048,23 +632551,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189584] = 7, - ACTIONS(6638), 1, + [179674] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9972), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(1238), 1, + STATE(2817), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652073,23 +632576,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189616] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9998), 1, + [179706] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(5418), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + ACTIONS(9759), 1, + anon_sym_DOT, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(2718), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652097,24 +632603,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179742] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [189648] = 9, - ACTIONS(431), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9552), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179778] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(10071), 1, + ACTIONS(9761), 1, anon_sym_DOT, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(447), 2, + STATE(450), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -652125,23 +632657,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189684] = 7, - ACTIONS(6638), 1, + [179814] = 9, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9266), 1, + sym__backtick_identifier, + ACTIONS(9747), 1, + anon_sym_LPAREN, + ACTIONS(9763), 1, + anon_sym_DOT, + STATE(2853), 1, + sym__lexical_identifier, + STATE(3399), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2314), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9262), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179850] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10012), 1, + ACTIONS(9765), 1, anon_sym_LPAREN, - STATE(2973), 1, + STATE(4673), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652150,23 +632709,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189716] = 7, - ACTIONS(6638), 1, + [179882] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, + anon_sym_LPAREN, + ACTIONS(9767), 1, + anon_sym_DOT, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2341), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179918] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9998), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(5068), 1, + STATE(4129), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652175,26 +632761,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189748] = 9, - ACTIONS(431), 1, + [179950] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(10073), 1, + ACTIONS(9769), 1, anon_sym_DOT, - STATE(829), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(446), 2, + STATE(2377), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652202,26 +632788,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189784] = 9, - ACTIONS(345), 1, + [179986] = 9, + ACTIONS(9268), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9771), 1, anon_sym_LPAREN, - ACTIONS(10075), 1, + ACTIONS(9773), 1, anon_sym_DOT, - STATE(3366), 1, + STATE(5713), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(5807), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2444), 2, + STATE(5436), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652229,26 +632815,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189820] = 9, - ACTIONS(345), 1, + [180022] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(10077), 1, + ACTIONS(9775), 1, anon_sym_DOT, - STATE(3366), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2373), 2, + STATE(2381), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652256,26 +632842,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189856] = 9, - ACTIONS(431), 1, + [180058] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(10079), 1, + ACTIONS(9777), 1, anon_sym_DOT, - STATE(829), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(457), 2, + STATE(2446), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652283,23 +632869,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189892] = 7, - ACTIONS(6638), 1, + [180094] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9998), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(5414), 1, + STATE(3355), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [180126] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(10030), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652307,24 +632921,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180162] = 9, + ACTIONS(9216), 1, sym__alpha_identifier, - [189924] = 7, - ACTIONS(6638), 1, + ACTIONS(9224), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, + anon_sym_LPAREN, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, + sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5794), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9220), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180198] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10008), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(4215), 1, + STATE(2867), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652333,44 +632973,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189956] = 3, + [180230] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, + anon_sym_LPAREN, + ACTIONS(9779), 1, + anon_sym_DOT, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4215), 10, + STATE(2367), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [180266] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [189980] = 9, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(10081), 1, + ACTIONS(9781), 1, anon_sym_DOT, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(433), 2, + STATE(451), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -652381,23 +633027,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190016] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9978), 1, + [180302] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(5439), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(9955), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652405,24 +633054,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180338] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [190048] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10083), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(2889), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(9561), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652430,27 +633081,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180374] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [190080] = 9, - ACTIONS(8824), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9412), 1, + anon_sym_LPAREN, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3636), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3807), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1652), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180410] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10094), 2, + STATE(9615), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652458,23 +633135,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190116] = 9, - ACTIONS(345), 1, + [180446] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(10085), 1, + ACTIONS(9783), 1, anon_sym_DOT, - STATE(3366), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2363), 2, + STATE(2364), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1652), 7, @@ -652485,26 +633162,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190152] = 9, - ACTIONS(9430), 1, + [180482] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(5842), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5848), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8587), 1, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5954), 2, + STATE(9759), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9432), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652512,26 +633189,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190188] = 9, - ACTIONS(431), 1, + [180518] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(10087), 1, + ACTIONS(9785), 1, anon_sym_DOT, - STATE(829), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(556), 2, + STATE(2695), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652539,23 +633216,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190224] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9978), 1, + [180554] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(5437), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + ACTIONS(9787), 1, + anon_sym_DOT, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(2362), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652563,27 +633243,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180590] = 9, + ACTIONS(9268), 1, sym__alpha_identifier, - [190256] = 9, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - ACTIONS(10089), 1, - anon_sym_DOT, - STATE(829), 1, - sym__lexical_identifier, - STATE(888), 1, + STATE(5686), 1, sym_simple_identifier, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5768), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(430), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(5790), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652591,23 +633270,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190292] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9978), 1, + [180626] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9478), 1, anon_sym_LPAREN, - STATE(5431), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + STATE(2899), 1, + sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3222), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(3281), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652615,24 +633297,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180662] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [190324] = 7, - ACTIONS(6638), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9412), 1, + anon_sym_LPAREN, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3636), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3826), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1652), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180698] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9972), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(863), 1, + STATE(5392), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652641,26 +633349,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [190356] = 9, - ACTIONS(9440), 1, + [180730] = 9, + ACTIONS(9248), 1, sym__alpha_identifier, - ACTIONS(9448), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(10046), 1, + ACTIONS(9430), 1, anon_sym_LPAREN, - ACTIONS(10091), 1, - anon_sym_DOT, - STATE(5776), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(5979), 1, + STATE(5617), 1, sym_simple_identifier, + STATE(5653), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5675), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9444), 7, + STATE(5821), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652668,23 +633376,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190392] = 7, - ACTIONS(6638), 1, + [180766] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9972), 1, + ACTIONS(9789), 1, anon_sym_LPAREN, - STATE(862), 1, - sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, + STATE(8353), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652693,68 +633401,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [190424] = 3, + [180798] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4319), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4317), 11, + STATE(9974), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [180834] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [190448] = 3, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, + anon_sym_LPAREN, + ACTIONS(9791), 1, + anon_sym_DOT, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4189), 11, + STATE(2734), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [180870] = 9, + ACTIONS(9248), 1, sym__alpha_identifier, - [190472] = 9, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9793), 1, anon_sym_LPAREN, - ACTIONS(10093), 1, + ACTIONS(9795), 1, anon_sym_DOT, - STATE(829), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(5820), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(557), 2, + STATE(5493), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652762,26 +633482,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190508] = 9, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(10028), 1, + [180906] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9720), 1, anon_sym_LPAREN, - ACTIONS(10095), 1, + STATE(5395), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4189), 3, anon_sym_DOT, - STATE(829), 1, - sym__lexical_identifier, - STATE(888), 1, - sym_simple_identifier, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [180938] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4655), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(575), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652789,23 +633531,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190544] = 7, - ACTIONS(6638), 1, + sym__alpha_identifier, + [180970] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10083), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3437), 1, + STATE(4814), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652814,26 +633557,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [190576] = 9, - ACTIONS(211), 1, + [181002] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(10097), 1, + ACTIONS(9799), 1, anon_sym_DOT, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1833), 2, + STATE(2735), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652841,26 +633584,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190612] = 9, - ACTIONS(8824), 1, + [181038] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10150), 2, + STATE(9922), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652868,26 +633611,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190648] = 9, - ACTIONS(211), 1, + [181074] = 9, + ACTIONS(9248), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9430), 1, anon_sym_LPAREN, - ACTIONS(10099), 1, - anon_sym_DOT, - STATE(3032), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(5617), 1, sym_simple_identifier, + STATE(5653), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2730), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + STATE(5816), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652895,26 +633638,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190684] = 9, - ACTIONS(211), 1, + [181110] = 8, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - ACTIONS(10101), 1, - anon_sym_DOT, - STATE(3032), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(8564), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2480), 2, + STATE(9451), 3, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + sym__lambda_parameter, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652922,44 +633664,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190720] = 3, + [181144] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(4095), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4234), 4, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4189), 3, anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(4232), 11, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [190744] = 7, - ACTIONS(6638), 1, + [181176] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + ACTIONS(9803), 1, + anon_sym_DOT, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3108), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2652), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181212] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10012), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4194), 1, + STATE(4649), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652968,26 +633741,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [190776] = 9, - ACTIONS(8824), 1, + [181244] = 9, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8161), 1, + STATE(8325), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8452), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10259), 2, + STATE(8306), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8834), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652995,50 +633768,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190812] = 9, - ACTIONS(431), 1, + [181280] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9412), 1, anon_sym_LPAREN, - ACTIONS(10103), 1, - anon_sym_DOT, - STATE(829), 1, - sym__lexical_identifier, - STATE(888), 1, + STATE(3308), 1, sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3636), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(569), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [190848] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10083), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(3793), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653046,24 +633795,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181316] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [190880] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10008), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(3368), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(9563), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653071,27 +633822,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181352] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [190912] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9478), 1, anon_sym_LPAREN, - ACTIONS(10105), 1, - anon_sym_DOT, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3710), 1, + STATE(2899), 1, sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3222), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2405), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(3297), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653099,23 +633849,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190948] = 7, - ACTIONS(6638), 1, + [181388] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10083), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3529), 1, + STATE(5292), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653124,26 +633874,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [190980] = 9, - ACTIONS(211), 1, + [181420] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(10107), 1, + ACTIONS(9805), 1, anon_sym_DOT, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2518), 2, + STATE(2395), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653151,23 +633901,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191016] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10008), 1, + [181456] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3371), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + ACTIONS(9807), 1, + anon_sym_DOT, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3108), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(2607), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653175,27 +633928,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181492] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [191048] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(10109), 1, - anon_sym_DOT, - STATE(3366), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2404), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(9913), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653203,47 +633955,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191084] = 3, + [181528] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4904), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4337), 4, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4189), 3, anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(4335), 11, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [191108] = 9, - ACTIONS(431), 1, + [181560] = 10, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(10028), 1, - anon_sym_LPAREN, - ACTIONS(10111), 1, - anon_sym_DOT, - STATE(829), 1, + ACTIONS(9809), 1, + anon_sym_COLON, + ACTIONS(9811), 1, + sym__automatic_semicolon, + STATE(5685), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(8727), 1, sym_simple_identifier, + STATE(9486), 1, + sym_class_body, ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(554), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653251,23 +634008,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191144] = 9, - ACTIONS(345), 1, + [181598] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(10113), 1, + ACTIONS(9813), 1, anon_sym_DOT, - STATE(3366), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2406), 2, + STATE(2728), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1652), 7, @@ -653278,23 +634035,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191180] = 7, - ACTIONS(6638), 1, + [181634] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10083), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(3440), 1, + STATE(4111), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653303,23 +634060,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [191212] = 7, - ACTIONS(6638), 1, + [181666] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9978), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4876), 1, + STATE(5304), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653328,50 +634085,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [191244] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9668), 1, - anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8161), 1, - sym_simple_identifier, - STATE(8555), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(10173), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [191280] = 7, - ACTIONS(6638), 1, + [181698] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10008), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3374), 1, + STATE(4075), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653380,26 +634110,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [191312] = 9, - ACTIONS(345), 1, + [181730] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - ACTIONS(10115), 1, - anon_sym_DOT, - STATE(3366), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(824), 1, sym_simple_identifier, + STATE(884), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2411), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(1004), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653407,26 +634137,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191348] = 9, - ACTIONS(431), 1, + [181766] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(10117), 1, - anon_sym_DOT, - STATE(829), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(600), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(9657), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653434,26 +634164,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191384] = 9, - ACTIONS(211), 1, + [181802] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(10119), 1, + ACTIONS(9815), 1, anon_sym_DOT, - STATE(3032), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1840), 2, + STATE(2671), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653461,23 +634191,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191420] = 7, - ACTIONS(6638), 1, + [181838] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10008), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3687), 1, + STATE(4667), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653486,23 +634216,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [191452] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10083), 1, + [181870] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3532), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + ACTIONS(9817), 1, + anon_sym_DOT, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(457), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653510,27 +634243,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181906] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [191484] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9819), 1, + anon_sym_DOT, + STATE(823), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(866), 1, sym_simple_identifier, - STATE(8555), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10191), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(425), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653538,51 +634270,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191520] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10083), 1, - anon_sym_LPAREN, - STATE(3533), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + [181942] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4315), 4, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, - sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4313), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [191552] = 9, - ACTIONS(8824), 1, + [181966] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9821), 1, + anon_sym_DOT, + STATE(823), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(866), 1, sym_simple_identifier, - STATE(8555), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10226), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(616), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653590,26 +634318,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191588] = 9, - ACTIONS(211), 1, + [182002] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(10121), 1, + ACTIONS(9823), 1, anon_sym_DOT, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2376), 2, + STATE(434), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653617,26 +634345,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191624] = 9, - ACTIONS(9440), 1, + [182038] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9448), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9478), 1, anon_sym_LPAREN, - STATE(5775), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(5776), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(5815), 1, + STATE(3222), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5994), 2, + STATE(3300), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9444), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653644,26 +634372,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191660] = 9, - ACTIONS(211), 1, + [182074] = 9, + ACTIONS(9268), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - ACTIONS(10123), 1, - anon_sym_DOT, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3330), 1, + STATE(5686), 1, sym_simple_identifier, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5768), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2517), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + STATE(5797), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653671,23 +634399,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191696] = 7, - ACTIONS(6638), 1, + [182110] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10012), 1, + ACTIONS(9825), 1, anon_sym_LPAREN, - STATE(3363), 1, - sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, + STATE(8327), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653696,26 +634424,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [191728] = 9, - ACTIONS(8824), 1, + [182142] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10235), 2, + STATE(8306), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653723,23 +634451,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191764] = 7, - ACTIONS(6638), 1, + [182178] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10125), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(4763), 1, + STATE(1235), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653748,26 +634476,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [191796] = 9, - ACTIONS(431), 1, + [182210] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9696), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9829), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(945), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1006), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1664), 7, + STATE(2447), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653775,26 +634503,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191832] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9974), 1, + [182246] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9729), 1, anon_sym_LPAREN, - ACTIONS(10127), 1, - anon_sym_DOT, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3710), 1, - sym_simple_identifier, + STATE(3275), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2443), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653802,26 +634527,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191868] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [182278] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10240), 2, + STATE(9905), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653829,50 +634555,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191904] = 9, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9990), 1, - anon_sym_LPAREN, - ACTIONS(10129), 1, - anon_sym_DOT, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3330), 1, - sym_simple_identifier, + [182314] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2416), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(9833), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(9831), 12, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_in, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, anon_sym_expect, anon_sym_actual, - [191940] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10008), 1, + sym__alpha_identifier, + [182338] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3674), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + ACTIONS(9835), 1, + anon_sym_DOT, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(459), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653880,24 +634603,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [191972] = 7, - ACTIONS(6638), 1, + [182374] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9998), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(5067), 1, + STATE(4087), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653906,53 +634628,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [192004] = 9, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9990), 1, - anon_sym_LPAREN, - ACTIONS(10131), 1, - anon_sym_DOT, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3330), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2366), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [192040] = 9, - ACTIONS(8824), 1, + [182406] = 9, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10249), 2, + STATE(5790), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8834), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653960,26 +634655,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192076] = 9, - ACTIONS(431), 1, + [182442] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9696), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(945), 1, + STATE(6662), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1025), 2, + STATE(8292), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -653987,26 +634682,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192112] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9690), 1, + [182478] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3400), 1, - sym_simple_identifier, - STATE(3696), 1, - sym__simple_user_type, + STATE(5267), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3857), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1652), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654014,26 +634706,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192148] = 9, - ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(293), 1, + [182510] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(10133), 1, + ACTIONS(9837), 1, anon_sym_DOT, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2514), 2, + STATE(443), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654041,23 +634734,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192184] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10008), 1, + [182546] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(4212), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(9684), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654065,27 +634761,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182582] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [192216] = 9, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(10135), 1, + ACTIONS(9839), 1, anon_sym_DOT, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2182), 2, + STATE(431), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654093,26 +634788,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192252] = 9, - ACTIONS(345), 1, + [182618] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(10137), 1, + ACTIONS(9841), 1, anon_sym_DOT, - STATE(3366), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2461), 2, + STATE(614), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654120,23 +634815,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192288] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10125), 1, + [182654] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(4817), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(8291), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654144,27 +634842,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182690] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [192320] = 9, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(10139), 1, + ACTIONS(9843), 1, anon_sym_DOT, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2177), 2, + STATE(424), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654172,23 +634869,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192356] = 7, - ACTIONS(6638), 1, + [182726] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9972), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(828), 1, + STATE(1277), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654197,23 +634894,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [192388] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9972), 1, + [182758] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(835), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, + sym_simple_identifier, + STATE(884), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(938), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654221,24 +634921,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182794] = 9, + ACTIONS(9268), 1, sym__alpha_identifier, - [192420] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9972), 1, + ACTIONS(9272), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(1291), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + STATE(5686), 1, + sym_simple_identifier, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5768), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(5794), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654246,24 +634948,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182830] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [192452] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(9972), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(838), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(9787), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654271,27 +634975,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182866] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [192484] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(10141), 1, + ACTIONS(9845), 1, anon_sym_DOT, - STATE(3366), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2788), 2, + STATE(2609), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654299,26 +635002,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192520] = 9, - ACTIONS(431), 1, + [182902] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9696), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(945), 1, + STATE(6662), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1027), 2, + STATE(8306), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654326,48 +635029,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192556] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10012), 1, + [182938] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3745), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + ACTIONS(9847), 1, + anon_sym_DOT, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + STATE(2625), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182974] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4168), 4, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, - sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4166), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [192588] = 7, - ACTIONS(6638), 1, + [182998] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10083), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(2843), 1, + STATE(4066), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654376,26 +635102,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [192620] = 9, - ACTIONS(431), 1, + [183030] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(10143), 1, + ACTIONS(9849), 1, anon_sym_DOT, - STATE(829), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(612), 2, + STATE(2659), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654403,23 +635129,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192656] = 9, - ACTIONS(431), 1, + [183066] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(10145), 1, + ACTIONS(9851), 1, anon_sym_DOT, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(622), 2, + STATE(433), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -654430,27 +635156,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192692] = 10, - ACTIONS(8662), 1, - anon_sym_LBRACE, - ACTIONS(9430), 1, + [183102] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10147), 1, - anon_sym_COLON, - ACTIONS(10149), 1, - sym__automatic_semicolon, - STATE(5842), 1, + ACTIONS(9712), 1, + anon_sym_LPAREN, + ACTIONS(9853), 1, + anon_sym_DOT, + STATE(823), 1, sym__lexical_identifier, - STATE(8993), 1, + STATE(866), 1, sym_simple_identifier, - STATE(10075), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + STATE(606), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654458,48 +635183,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192730] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10083), 1, - anon_sym_LPAREN, - STATE(2842), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + [183138] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4337), 4, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, - sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4335), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [192762] = 7, - ACTIONS(6638), 1, + [183162] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10083), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(2839), 1, + STATE(4651), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654508,23 +635229,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [192794] = 7, - ACTIONS(6638), 1, + [183194] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10083), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(2911), 1, + STATE(4074), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654533,23 +635254,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [192826] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10012), 1, + [183226] = 9, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, + sym__backtick_identifier, + ACTIONS(9771), 1, anon_sym_LPAREN, - STATE(3361), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, + ACTIONS(9855), 1, + anon_sym_DOT, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5807), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + STATE(5474), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654557,24 +635281,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [183262] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [192858] = 9, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(10151), 1, + ACTIONS(9857), 1, anon_sym_DOT, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(458), 2, + STATE(437), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -654585,23 +635308,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192894] = 7, - ACTIONS(6638), 1, + [183298] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10083), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(826), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654610,23 +635333,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [192926] = 9, - ACTIONS(431), 1, + [183330] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(10153), 1, + ACTIONS(9859), 1, anon_sym_DOT, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(617), 2, + STATE(622), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -654637,26 +635360,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192962] = 9, - ACTIONS(8824), 1, + [183366] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, sym__alpha_identifier, - ACTIONS(8854), 1, + [183398] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(8555), 1, + STATE(4897), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10283), 2, + STATE(5050), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8834), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654664,26 +635412,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192998] = 9, - ACTIONS(9440), 1, + [183434] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9448), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(5775), 1, - sym_simple_identifier, - STATE(5776), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5815), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5987), 2, + STATE(9723), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9444), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654691,26 +635439,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193034] = 9, - ACTIONS(211), 1, + [183470] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(10155), 1, + ACTIONS(9861), 1, anon_sym_DOT, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2173), 2, + STATE(2677), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654718,23 +635466,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193070] = 7, - ACTIONS(6638), 1, + [183506] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10012), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(2977), 1, + STATE(836), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654743,26 +635491,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [193102] = 9, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(10028), 1, + [183538] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9729), 1, anon_sym_LPAREN, - ACTIONS(10157), 1, - anon_sym_DOT, - STATE(829), 1, - sym__lexical_identifier, - STATE(888), 1, - sym_simple_identifier, + STATE(4076), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(624), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654770,26 +635515,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193138] = 9, - ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(111), 1, + [183570] = 9, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(5048), 1, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5178), 2, + STATE(5797), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1920), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654797,23 +635543,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193174] = 7, - ACTIONS(6638), 1, + [183606] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9972), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(1308), 1, + STATE(815), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654822,26 +635568,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [193206] = 9, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9990), 1, + [183638] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9765), 1, anon_sym_LPAREN, - ACTIONS(10159), 1, - anon_sym_DOT, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3330), 1, - sym_simple_identifier, + STATE(4661), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2425), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654849,46 +635592,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193242] = 5, - ACTIONS(10161), 1, - anon_sym_DOT, - STATE(7825), 1, - aux_sym_user_type_repeat1, + sym__alpha_identifier, + [183670] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(4145), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 3, - anon_sym_AT, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [183702] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9827), 1, anon_sym_LPAREN, + STATE(1264), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(4225), 10, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [193270] = 7, - ACTIONS(6638), 1, + [183734] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + ACTIONS(9863), 1, + anon_sym_DOT, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3108), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2170), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183770] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10012), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3739), 1, + STATE(2897), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654897,26 +635695,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [193302] = 9, - ACTIONS(431), 1, + [183802] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(10163), 1, + ACTIONS(9865), 1, anon_sym_DOT, - STATE(829), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(611), 2, + STATE(2658), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654924,26 +635722,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193338] = 9, - ACTIONS(9440), 1, + [183838] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9448), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(10046), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(10165), 1, + ACTIONS(9867), 1, anon_sym_DOT, - STATE(5776), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(5979), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5666), 2, + STATE(1746), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9444), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654951,23 +635749,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193374] = 7, - ACTIONS(6638), 1, + [183874] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10008), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3618), 1, + STATE(2909), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -654976,23 +635774,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [193406] = 9, - ACTIONS(345), 1, + [183906] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(10167), 1, + ACTIONS(9869), 1, anon_sym_DOT, - STATE(3366), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2456), 2, + STATE(2715), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1652), 7, @@ -655003,49 +635801,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193442] = 5, - ACTIONS(10161), 1, - anon_sym_DOT, - STATE(7684), 1, - aux_sym_user_type_repeat1, + [183942] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(3563), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 3, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(4202), 10, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [193470] = 9, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9990), 1, + [183974] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9789), 1, anon_sym_LPAREN, - ACTIONS(10169), 1, - anon_sym_DOT, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3330), 1, - sym_simple_identifier, + STATE(6538), 1, + sym_type_arguments, + STATE(8349), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2482), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655053,23 +635850,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193506] = 7, - ACTIONS(6638), 1, + sym__alpha_identifier, + [184006] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10012), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(2975), 1, + STATE(4533), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655078,26 +635876,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [193538] = 9, - ACTIONS(8824), 1, + [184038] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9871), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8571), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(2435), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655105,53 +635903,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193574] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9668), 1, + [184074] = 5, + ACTIONS(9873), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6750), 1, - sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, + STATE(7863), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8584), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + ACTIONS(7089), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7087), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [193610] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [184102] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9668), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(6406), 1, + ACTIONS(9875), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(6750), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(6833), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8573), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8834), 7, + STATE(2323), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655159,23 +635953,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193646] = 7, - ACTIONS(6638), 1, + [184138] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9972), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(1282), 1, + STATE(3313), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655184,26 +635978,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [193678] = 9, - ACTIONS(9440), 1, + [184170] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9448), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(5775), 1, - sym_simple_identifier, - STATE(5776), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5815), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5993), 2, + STATE(9775), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9444), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655211,50 +636005,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193714] = 9, - ACTIONS(431), 1, + [184206] = 9, + ACTIONS(9248), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9793), 1, anon_sym_LPAREN, - ACTIONS(10171), 1, + ACTIONS(9877), 1, anon_sym_DOT, - STATE(829), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(5820), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(635), 2, + STATE(5494), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [193750] = 7, - ACTIONS(6638), 1, - anon_sym_LT, - ACTIONS(10012), 1, - anon_sym_LPAREN, - STATE(3456), 1, - sym_function_value_parameters, - STATE(6730), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4179), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655262,24 +636032,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [193782] = 7, - ACTIONS(6638), 1, + [184242] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10012), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3738), 1, + STATE(3564), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655288,23 +636057,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [193814] = 7, - ACTIONS(6638), 1, + [184274] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(10125), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4818), 1, + STATE(4535), 1, sym_function_value_parameters, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4177), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655313,53 +636082,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [193846] = 9, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(9712), 1, - anon_sym_LPAREN, - STATE(4726), 1, - sym__lexical_identifier, - STATE(4770), 1, - sym_simple_identifier, - STATE(5048), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5185), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1920), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [193882] = 9, - ACTIONS(211), 1, + [184306] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(10173), 1, + ACTIONS(9879), 1, anon_sym_DOT, - STATE(3032), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1857), 2, + STATE(2437), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655367,26 +636109,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193918] = 9, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(10028), 1, + [184342] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9745), 1, anon_sym_LPAREN, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(829), 1, - sym__lexical_identifier, - STATE(888), 1, - sym_simple_identifier, + STATE(3566), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(462), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655394,26 +636133,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193954] = 9, - ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9990), 1, + [184374] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9797), 1, anon_sym_LPAREN, - ACTIONS(10177), 1, - anon_sym_DOT, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3330), 1, - sym_simple_identifier, + STATE(4927), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2420), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655421,22 +636158,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193990] = 6, - ACTIONS(10181), 1, - anon_sym_AT, + sym__alpha_identifier, + [184406] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(814), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10184), 2, - anon_sym_LPAREN, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - STATE(7841), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(10179), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655445,26 +636184,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194020] = 9, - ACTIONS(211), 1, + [184438] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(10186), 1, + ACTIONS(9881), 1, anon_sym_DOT, - STATE(3032), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2419), 2, + STATE(2135), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655472,23 +636211,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194056] = 9, - ACTIONS(431), 1, + [184474] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(10188), 1, + ACTIONS(9883), 1, anon_sym_DOT, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(464), 2, + STATE(598), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -655499,25 +636238,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194092] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10012), 1, + [184510] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3843), 1, + STATE(3314), 1, sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, - sym_simple_identifier, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655525,25 +636262,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194127] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9978), 1, + [184542] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9825), 1, anon_sym_LPAREN, - STATE(5105), 1, + STATE(6538), 1, + sym_type_arguments, + STATE(8322), 1, sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8161), 1, - sym_simple_identifier, - STATE(9476), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655551,24 +636287,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194162] = 8, - ACTIONS(9440), 1, sym__alpha_identifier, - ACTIONS(9448), 1, - sym__backtick_identifier, - ACTIONS(10046), 1, - anon_sym_LPAREN, - STATE(5776), 1, - sym__lexical_identifier, - STATE(5979), 1, - sym_simple_identifier, + [184574] = 6, + ACTIONS(9887), 1, + anon_sym_AT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5666), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9444), 7, + ACTIONS(9890), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9885), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655576,25 +636311,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194195] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9998), 1, + [184604] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(5210), 1, + STATE(1290), 1, sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, - sym_simple_identifier, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655602,69 +636336,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194230] = 8, - ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9990), 1, + [184636] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3330), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2435), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [194263] = 3, + STATE(820), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4337), 4, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4189), 3, anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(4335), 10, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194286] = 8, - ACTIONS(431), 1, + [184668] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(614), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(9890), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655672,25 +636389,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194319] = 9, - ACTIONS(8824), 1, + [184704] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9998), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(4686), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9892), 1, + anon_sym_DOT, + STATE(823), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(866), 1, sym_simple_identifier, - STATE(9612), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(602), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655698,25 +636416,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194354] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9978), 1, + [184740] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(5682), 1, + STATE(2906), 1, sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, - sym_simple_identifier, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655724,24 +636440,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194389] = 8, - ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(293), 1, + [184772] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9894), 1, + anon_sym_DOT, + STATE(3332), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2420), 2, + STATE(2403), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655749,50 +636468,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194422] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, + [184808] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(6750), 1, - sym_simple_identifier, - STATE(9751), 1, - sym_function_type_parameters, + STATE(4539), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [194457] = 8, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(9974), 1, - anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3710), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2768), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655800,25 +636492,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194490] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9978), 1, + [184840] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(5683), 1, + STATE(3681), 1, sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, - sym_simple_identifier, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655826,25 +636517,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194525] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [184872] = 10, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(10083), 1, - anon_sym_LPAREN, - STATE(2901), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9896), 1, + anon_sym_COLON, + ACTIONS(9898), 1, + sym__automatic_semicolon, + STATE(5685), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(8770), 1, sym_simple_identifier, - STATE(9393), 1, - sym__simple_user_type, + STATE(9812), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655852,25 +636546,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194560] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10008), 1, + [184910] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(4317), 1, + STATE(3595), 1, sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, - sym_simple_identifier, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655878,24 +636570,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194595] = 8, - ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9990), 1, + [184942] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3330), 1, - sym_simple_identifier, + STATE(3316), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2425), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655903,25 +636595,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194628] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10012), 1, + [184974] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(4290), 1, + STATE(4697), 1, sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, - sym_simple_identifier, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655929,24 +636620,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194663] = 8, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, + [185006] = 9, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9426), 1, anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(888), 1, + STATE(2826), 1, sym_simple_identifier, + STATE(2853), 1, + sym__lexical_identifier, + STATE(3261), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(635), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(3541), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655954,25 +636648,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194696] = 9, - ACTIONS(515), 1, - sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, + [185042] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(2840), 1, - sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2928), 1, - sym__simple_user_type, - STATE(9875), 1, - sym_function_type_parameters, + STATE(3678), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -655980,24 +636672,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194731] = 8, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, + [185074] = 9, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9771), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9900), 1, + anon_sym_DOT, + STATE(5713), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(5807), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(624), 2, + STATE(5431), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656005,25 +636700,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194764] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9998), 1, + [185110] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(5075), 1, + STATE(3675), 1, sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8161), 1, - sym_simple_identifier, - STATE(9688), 1, - sym__simple_user_type, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656031,77 +636724,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194799] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9978), 1, - anon_sym_LPAREN, - STATE(5015), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8161), 1, - sym_simple_identifier, - STATE(9620), 1, - sym__simple_user_type, + [185142] = 5, + ACTIONS(9902), 1, + anon_sym_DOT, + STATE(7567), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4195), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4193), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [194834] = 9, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(3236), 1, - anon_sym_LBRACE, - ACTIONS(10190), 1, - anon_sym_COLON, - STATE(829), 1, - sym__lexical_identifier, - STATE(1060), 1, - sym_simple_identifier, - STATE(1104), 1, - sym_class_body, + [185170] = 5, + ACTIONS(9902), 1, + anon_sym_DOT, + STATE(7375), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(4155), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4153), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [194869] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [185198] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9972), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(1315), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9904), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(9719), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2460), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656109,25 +636798,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194904] = 9, - ACTIONS(431), 1, + [185234] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(3236), 1, - anon_sym_LBRACE, - ACTIONS(10190), 1, - anon_sym_COLON, - STATE(829), 1, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(894), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(1104), 1, - sym_class_body, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + STATE(9828), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656135,24 +636825,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194939] = 8, - ACTIONS(431), 1, + [185270] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(617), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(9689), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656160,24 +636852,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194972] = 8, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(225), 1, + [185306] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9745), 1, anon_sym_LPAREN, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(10192), 1, - anon_sym_class, - STATE(3032), 1, - sym__lexical_identifier, + STATE(2789), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3610), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(1630), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656185,25 +636876,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195005] = 9, - ACTIONS(515), 1, sym__alpha_identifier, - ACTIONS(595), 1, + [185338] = 9, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(3256), 1, - anon_sym_LBRACE, - ACTIONS(10194), 1, - anon_sym_COLON, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2966), 1, + ACTIONS(9426), 1, + anon_sym_LPAREN, + STATE(2826), 1, sym_simple_identifier, - STATE(3148), 1, - sym_class_body, + STATE(2853), 1, + sym__lexical_identifier, + STATE(3261), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + STATE(3519), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656211,25 +636904,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195040] = 9, - ACTIONS(515), 1, - sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(3256), 1, - anon_sym_LBRACE, - ACTIONS(10194), 1, - anon_sym_COLON, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3148), 1, - sym_class_body, - STATE(4180), 1, - sym_simple_identifier, + [185374] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4963), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656237,24 +636928,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195075] = 8, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, + [185406] = 9, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9444), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(2803), 1, sym_simple_identifier, + STATE(2915), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(622), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(3029), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656262,25 +636956,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195108] = 9, - ACTIONS(211), 1, + [185442] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(5590), 1, - anon_sym_LBRACE, - ACTIONS(10196), 1, - anon_sym_COLON, - STATE(3032), 1, + ACTIONS(9706), 1, + anon_sym_LPAREN, + ACTIONS(9906), 1, + anon_sym_DOT, + STATE(3332), 1, sym__lexical_identifier, - STATE(3638), 1, - sym_class_body, - STATE(3897), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1630), 7, + STATE(2392), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656288,24 +636983,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195143] = 8, - ACTIONS(115), 1, + [185478] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(135), 1, - anon_sym_LPAREN, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10198), 1, - anon_sym_class, - STATE(4661), 1, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6224), 1, sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4832), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(1842), 7, + STATE(8291), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656313,24 +637010,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195176] = 8, - ACTIONS(211), 1, + [185514] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9908), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2366), 2, + STATE(2457), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656338,24 +637037,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195209] = 8, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9990), 1, + [185550] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3330), 1, - sym_simple_identifier, + STATE(3305), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2516), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656363,25 +637061,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195242] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9998), 1, + [185582] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(4688), 1, + STATE(2771), 1, sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(6750), 1, - sym_simple_identifier, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656389,25 +637086,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195277] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10012), 1, + [185614] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3725), 1, + STATE(3322), 1, sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8161), 1, - sym_simple_identifier, - STATE(9714), 1, - sym__simple_user_type, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656415,25 +637111,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195312] = 9, - ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(5590), 1, - anon_sym_LBRACE, - ACTIONS(10196), 1, - anon_sym_COLON, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3187), 1, - sym_simple_identifier, - STATE(3638), 1, - sym_class_body, + [185646] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(3273), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656441,24 +637136,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195347] = 8, - ACTIONS(345), 1, sym__alpha_identifier, - ACTIONS(427), 1, + [185678] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(4683), 1, sym_simple_identifier, + STATE(4897), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2788), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(5043), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656466,25 +637164,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195380] = 9, - ACTIONS(345), 1, + [185714] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(5806), 1, - anon_sym_LBRACE, - ACTIONS(10200), 1, - anon_sym_COLON, - STATE(3366), 1, + ACTIONS(9722), 1, + anon_sym_LPAREN, + ACTIONS(9910), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(3949), 1, - sym_class_body, - STATE(4151), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + STATE(2181), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656492,25 +637191,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195415] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10083), 1, + [185750] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9825), 1, anon_sym_LPAREN, - STATE(3639), 1, + STATE(6538), 1, + sym_type_arguments, + STATE(8328), 1, sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8161), 1, - sym_simple_identifier, - STATE(9399), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656518,25 +637215,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195450] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [185782] = 9, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9998), 1, + ACTIONS(9426), 1, anon_sym_LPAREN, - STATE(4662), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(2826), 1, + sym_simple_identifier, + STATE(2853), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(3261), 1, sym__simple_user_type, - STATE(6750), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(3484), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656544,25 +637243,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195485] = 9, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(9430), 1, - sym__alpha_identifier, - ACTIONS(9434), 1, - sym__backtick_identifier, - ACTIONS(10202), 1, - anon_sym_COLON, - STATE(5251), 1, - sym_class_body, - STATE(5842), 1, - sym__lexical_identifier, - STATE(8899), 1, - sym_simple_identifier, + [185818] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(3578), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656570,24 +637267,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195520] = 8, - ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(293), 1, + [185850] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9912), 1, + anon_sym_DOT, + STATE(3332), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2376), 2, + STATE(2390), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656595,25 +637295,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195553] = 9, - ACTIONS(8824), 1, + [185886] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9998), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(5082), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(9719), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656621,24 +637322,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195588] = 8, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9990), 1, + [185922] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9789), 1, anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3330), 1, - sym_simple_identifier, + STATE(6538), 1, + sym_type_arguments, + STATE(8338), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2514), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656646,24 +637346,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195621] = 8, - ACTIONS(345), 1, sym__alpha_identifier, - ACTIONS(427), 1, + [185954] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2417), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(9869), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656671,25 +637374,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195654] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9998), 1, + [185990] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(5088), 1, + STATE(3581), 1, sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, - sym_simple_identifier, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656697,24 +637398,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195689] = 8, - ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(293), 1, + [186022] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(3032), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2386), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + STATE(10027), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656722,25 +637426,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195722] = 9, - ACTIONS(8824), 1, + [186058] = 9, + ACTIONS(9248), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(10008), 1, + ACTIONS(9793), 1, anon_sym_LPAREN, - STATE(3523), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9914), 1, + anon_sym_DOT, + STATE(5602), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(6750), 1, + STATE(5820), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(5513), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656748,25 +637453,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195757] = 9, - ACTIONS(8824), 1, + [186094] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(10008), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3527), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9916), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(6750), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2173), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656774,25 +637480,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195792] = 9, - ACTIONS(9430), 1, + [186130] = 9, + ACTIONS(9258), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - STATE(5842), 1, + ACTIONS(9918), 1, + anon_sym_DOT, + STATE(2853), 1, sym__lexical_identifier, - STATE(5848), 1, + STATE(3399), 1, sym_simple_identifier, - STATE(5860), 1, - sym__simple_user_type, - STATE(10432), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + STATE(2287), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656800,51 +637507,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195827] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10012), 1, + [186166] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(3123), 1, + STATE(1198), 1, sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(6750), 1, - sym_simple_identifier, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [195862] = 9, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(10202), 1, - anon_sym_COLON, - STATE(4726), 1, - sym__lexical_identifier, - STATE(5251), 1, - sym_class_body, - STATE(5685), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656852,25 +637531,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195897] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [186198] = 9, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9972), 1, + ACTIONS(9444), 1, anon_sym_LPAREN, - STATE(1463), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(2803), 1, sym_simple_identifier, + STATE(2915), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(3058), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656878,25 +637559,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195932] = 9, - ACTIONS(431), 1, + [186234] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9920), 1, + anon_sym_DOT, + STATE(3332), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(3670), 1, sym_simple_identifier, - STATE(869), 1, - sym__simple_user_type, - STATE(9943), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + STATE(2410), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656904,25 +637586,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195967] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10012), 1, + [186270] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3122), 1, + STATE(4712), 1, sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(6750), 1, - sym_simple_identifier, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656930,25 +637610,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196002] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [186302] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(10083), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3489), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9922), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2180), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656956,24 +637638,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196037] = 8, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9974), 1, + [186338] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3710), 1, - sym_simple_identifier, + STATE(1207), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2411), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -656981,25 +637662,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196070] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9978), 1, + [186370] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9765), 1, anon_sym_LPAREN, - STATE(5532), 1, + STATE(4630), 1, sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8161), 1, - sym_simple_identifier, - STATE(9406), 1, - sym__simple_user_type, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657007,25 +637687,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196105] = 9, - ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(293), 1, + [186402] = 8, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(5590), 1, - anon_sym_LBRACE, - ACTIONS(10196), 1, - anon_sym_COLON, - STATE(3032), 1, + ACTIONS(9771), 1, + anon_sym_LPAREN, + STATE(5713), 1, sym__lexical_identifier, - STATE(3638), 1, - sym_class_body, - STATE(4369), 1, + STATE(5807), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1630), 7, + STATE(5436), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657033,25 +637713,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196140] = 9, - ACTIONS(8824), 1, + [186435] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9972), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(867), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(2899), 1, + sym_simple_identifier, + STATE(2955), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(3021), 1, sym__simple_user_type, - STATE(8161), 1, - sym_simple_identifier, + STATE(9817), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657059,24 +637739,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196175] = 8, - ACTIONS(211), 1, + [186470] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2517), 2, + STATE(618), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657084,25 +637764,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196208] = 9, - ACTIONS(8824), 1, + [186503] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10083), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(3486), 1, + STATE(4210), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9378), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657110,70 +637790,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196243] = 3, + [186538] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4234), 4, + ACTIONS(7145), 3, anon_sym_AT, anon_sym_LPAREN, - anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4232), 10, + ACTIONS(7143), 11, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [196266] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9972), 1, - anon_sym_LPAREN, - STATE(873), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(6750), 1, - sym_simple_identifier, + [186561] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(7193), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7191), 11, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [196301] = 8, - ACTIONS(345), 1, sym__alpha_identifier, - ACTIONS(427), 1, + [186584] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(4683), 1, sym_simple_identifier, + STATE(4857), 1, + sym__simple_user_type, + STATE(9720), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2406), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657181,24 +637856,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196334] = 8, - ACTIONS(345), 1, + [186619] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(359), 1, - anon_sym_LPAREN, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10204), 1, - anon_sym_class, - STATE(3366), 1, + ACTIONS(3210), 1, + anon_sym_LBRACE, + ACTIONS(9924), 1, + anon_sym_COLON, + STATE(823), 1, sym__lexical_identifier, + STATE(1083), 1, + sym_class_body, + STATE(2219), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3943), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657206,24 +637882,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196367] = 8, - ACTIONS(345), 1, + [186654] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2410), 2, + STATE(2437), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657231,50 +637907,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196400] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(9972), 1, - anon_sym_LPAREN, - STATE(1031), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8161), 1, - sym_simple_identifier, - STATE(9555), 1, - sym__simple_user_type, + [186687] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(7181), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7179), 11, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [196435] = 8, - ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(293), 1, + [186710] = 6, + ACTIONS(9890), 1, sym__backtick_identifier, - ACTIONS(9990), 1, - anon_sym_LPAREN, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3330), 1, - sym_simple_identifier, + ACTIONS(9926), 1, + anon_sym_AT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2661), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9885), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657282,25 +637949,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196468] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [186739] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9972), 1, - anon_sym_LPAREN, - STATE(873), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(9929), 1, + anon_sym_COLON, + STATE(2955), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(3526), 1, + sym_class_body, + STATE(4248), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657308,51 +637976,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196503] = 9, - ACTIONS(8824), 1, + [186774] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9972), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(867), 1, + STATE(5434), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6750), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [196538] = 9, - ACTIONS(9440), 1, - sym__alpha_identifier, - ACTIONS(9448), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(5775), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(5776), 1, - sym__lexical_identifier, - STATE(5808), 1, - sym__simple_user_type, - STATE(9846), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9444), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657360,24 +638002,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196573] = 8, - ACTIONS(9404), 1, + [186809] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(9412), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(10014), 1, - anon_sym_LPAREN, - STATE(5867), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(9931), 1, + anon_sym_COLON, + STATE(4534), 1, sym__lexical_identifier, - STATE(5967), 1, + STATE(4880), 1, + sym_class_body, + STATE(5537), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5622), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9408), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657385,24 +638028,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196606] = 8, - ACTIONS(431), 1, + [186844] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(5437), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(554), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657410,24 +638054,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196639] = 8, - ACTIONS(431), 1, + [186879] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10028), 1, - anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(5836), 1, + anon_sym_LBRACE, + ACTIONS(9933), 1, + anon_sym_COLON, + STATE(3332), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(3674), 1, sym_simple_identifier, + STATE(3969), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(569), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657435,24 +638080,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196672] = 8, - ACTIONS(211), 1, + [186914] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3032), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2718), 2, + STATE(2180), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657460,24 +638105,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196705] = 8, - ACTIONS(211), 1, + [186947] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2722), 2, + STATE(2390), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657485,24 +638130,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196738] = 8, - ACTIONS(431), 1, + [186980] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(954), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(561), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657510,25 +638156,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196771] = 9, - ACTIONS(8824), 1, + [187015] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(10083), 1, - anon_sym_LPAREN, - STATE(3096), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(9931), 1, + anon_sym_COLON, + STATE(4534), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(4880), 1, + sym_class_body, + STATE(5274), 1, sym_simple_identifier, - STATE(9618), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657536,25 +638182,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196806] = 9, - ACTIONS(115), 1, + [187050] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(5552), 1, + ACTIONS(5836), 1, anon_sym_LBRACE, - ACTIONS(10206), 1, + ACTIONS(9933), 1, anon_sym_COLON, - STATE(4661), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4704), 1, - sym_simple_identifier, - STATE(4991), 1, + STATE(3969), 1, sym_class_body, + STATE(4207), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657562,21 +638208,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196841] = 8, - ACTIONS(431), 1, + [187085] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(557), 2, + STATE(598), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -657587,25 +638233,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196874] = 9, - ACTIONS(8824), 1, + [187118] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9998), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5596), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(2803), 1, sym_simple_identifier, + STATE(2818), 1, + sym__simple_user_type, + STATE(9756), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657613,24 +638259,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196909] = 8, - ACTIONS(345), 1, + [187153] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9974), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(9929), 1, + anon_sym_COLON, + STATE(2955), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(3526), 1, + sym_class_body, + STATE(4054), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2404), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657638,25 +638285,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196942] = 9, - ACTIONS(8824), 1, + [187188] = 9, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(10008), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4216), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(8325), 1, + sym_simple_identifier, + STATE(8333), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(8373), 1, sym__simple_user_type, - STATE(8161), 1, - sym_simple_identifier, + STATE(9963), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657664,49 +638311,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196977] = 8, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9974), 1, - anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3710), 1, - sym_simple_identifier, + [187223] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2363), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(7173), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7171), 11, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [197010] = 8, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, + [187246] = 8, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(556), 2, + STATE(2658), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657714,47 +638356,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197043] = 9, - ACTIONS(8824), 1, + [187279] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(10008), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4227), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [197078] = 6, - ACTIONS(10184), 1, - sym__backtick_identifier, - ACTIONS(10208), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7932), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8078), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(10179), 8, + STATE(2319), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657762,26 +638381,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187312] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - [197107] = 9, - ACTIONS(3256), 1, - anon_sym_LBRACE, - ACTIONS(9394), 1, - sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(10194), 1, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(9935), 1, anon_sym_COLON, - STATE(3148), 1, - sym_class_body, - STATE(4657), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5244), 1, + STATE(3071), 1, + sym_class_body, + STATE(3736), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9398), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657789,25 +638407,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197142] = 9, - ACTIONS(8824), 1, + [187347] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10012), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3821), 1, + STATE(3720), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9544), 1, + STATE(9327), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657815,24 +638433,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197177] = 8, - ACTIONS(345), 1, + [187382] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2464), 2, + STATE(622), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657840,25 +638458,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197210] = 9, - ACTIONS(8824), 1, + [187415] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9998), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(5597), 1, + STATE(3049), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657866,49 +638484,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197245] = 8, - ACTIONS(9466), 1, - sym__alpha_identifier, - ACTIONS(9472), 1, - sym__backtick_identifier, - ACTIONS(10020), 1, - anon_sym_LPAREN, - STATE(2904), 1, - sym__lexical_identifier, - STATE(3619), 1, - sym_simple_identifier, + [187450] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2341), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9470), 7, + ACTIONS(7189), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7187), 11, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [197278] = 8, - ACTIONS(345), 1, sym__alpha_identifier, - ACTIONS(427), 1, + [187473] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9974), 1, - anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(3210), 1, + anon_sym_LBRACE, + ACTIONS(9924), 1, + anon_sym_COLON, + STATE(823), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(1083), 1, + sym_class_body, + STATE(1393), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2732), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657916,24 +638530,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197311] = 8, - ACTIONS(431), 1, + [187508] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(4191), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9336), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(451), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657941,24 +638556,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197344] = 8, - ACTIONS(345), 1, + [187543] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(3026), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9390), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2686), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657966,24 +638582,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197377] = 8, - ACTIONS(345), 1, + [187578] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(133), 1, anon_sym_LPAREN, - STATE(3366), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9937), 1, + anon_sym_class, + STATE(2955), 1, sym__lexical_identifier, - STATE(3710), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2738), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(3404), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -657991,24 +638607,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197410] = 8, - ACTIONS(431), 1, + [187611] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(560), 2, + STATE(2646), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658016,51 +638632,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197443] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10083), 1, - anon_sym_LPAREN, - STATE(2913), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, - sym_simple_identifier, + [187644] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4319), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4317), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [197478] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [187667] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10083), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(2938), 1, + STATE(4983), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9229), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658068,25 +638678,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197513] = 9, - ACTIONS(8824), 1, + [187702] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9972), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(966), 1, + STATE(4974), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658094,24 +638704,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197548] = 8, - ACTIONS(9404), 1, + [187737] = 8, + ACTIONS(9258), 1, sym__alpha_identifier, - ACTIONS(9412), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(10014), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - STATE(5867), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(5967), 1, + STATE(3399), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5610), 2, + STATE(2283), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9408), 7, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658119,24 +638729,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197581] = 9, - ACTIONS(345), 1, + [187770] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(5806), 1, - anon_sym_LBRACE, - ACTIONS(10200), 1, - anon_sym_COLON, - STATE(3366), 1, + ACTIONS(9706), 1, + anon_sym_LPAREN, + STATE(3332), 1, sym__lexical_identifier, - STATE(3711), 1, + STATE(3670), 1, sym_simple_identifier, - STATE(3949), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, + STATE(2392), 2, + sym_variable_declaration, + sym_multi_variable_declaration, ACTIONS(1652), 7, anon_sym_get, anon_sym_set, @@ -658145,24 +638754,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197616] = 8, - ACTIONS(431), 1, + [187803] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(10028), 1, - anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(9939), 1, + anon_sym_COLON, + STATE(4612), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(5103), 1, + sym_class_body, + STATE(5497), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(633), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658170,50 +638780,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197649] = 8, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(10028), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym__lexical_identifier, - STATE(888), 1, - sym_simple_identifier, + [187838] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(456), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(4315), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4313), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [197682] = 9, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [187861] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9972), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(957), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(6750), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2447), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658221,25 +638825,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197717] = 9, - ACTIONS(8824), 1, + [187894] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10008), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(3820), 1, + STATE(3429), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9537), 1, + STATE(9347), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658247,25 +638851,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197752] = 9, - ACTIONS(7), 1, + [187929] = 8, + ACTIONS(9268), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(10202), 1, - anon_sym_COLON, - STATE(4726), 1, + ACTIONS(9771), 1, + anon_sym_LPAREN, + STATE(5713), 1, sym__lexical_identifier, - STATE(5251), 1, - sym_class_body, - STATE(5766), 1, + STATE(5807), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + STATE(5452), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658273,25 +638876,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197787] = 9, - ACTIONS(8824), 1, + [187962] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10083), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3830), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2395), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658299,25 +638901,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197822] = 9, - ACTIONS(8824), 1, + [187995] = 9, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(10008), 1, - anon_sym_LPAREN, - STATE(4255), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(9935), 1, + anon_sym_COLON, + STATE(3071), 1, + sym_class_body, + STATE(4545), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(5148), 1, sym_simple_identifier, - STATE(9711), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658325,51 +638927,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197857] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10083), 1, - anon_sym_LPAREN, - STATE(3828), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, - sym_simple_identifier, + [188030] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4337), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4335), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [197892] = 9, + sym__alpha_identifier, + [188053] = 8, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(10206), 1, - anon_sym_COLON, - STATE(4661), 1, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(2955), 1, sym__lexical_identifier, - STATE(4991), 1, - sym_class_body, - STATE(5717), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + STATE(2446), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658377,25 +638972,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197927] = 9, - ACTIONS(345), 1, + [188086] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(5806), 1, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(10200), 1, + ACTIONS(9929), 1, anon_sym_COLON, - STATE(3366), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3949), 1, - sym_class_body, - STATE(4333), 1, + STATE(3109), 1, sym_simple_identifier, + STATE(3526), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658403,25 +638998,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197962] = 9, - ACTIONS(8824), 1, + [188121] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10012), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3788), 1, + STATE(3035), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6750), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658429,25 +639024,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197997] = 9, - ACTIONS(211), 1, + [188156] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(5590), 1, - anon_sym_LBRACE, - ACTIONS(10196), 1, - anon_sym_COLON, - STATE(3032), 1, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(823), 1, sym__lexical_identifier, - STATE(3638), 1, - sym_class_body, - STATE(4189), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1630), 7, + STATE(447), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658455,25 +639049,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198032] = 9, - ACTIONS(515), 1, + [188189] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(3256), 1, - anon_sym_LBRACE, - ACTIONS(10194), 1, - anon_sym_COLON, - STATE(2868), 1, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(1394), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3148), 1, - sym_class_body, - STATE(3825), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9281), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658481,25 +639075,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198067] = 9, - ACTIONS(431), 1, + [188224] = 9, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(3236), 1, - anon_sym_LBRACE, - ACTIONS(10190), 1, - anon_sym_COLON, - STATE(829), 1, - sym__lexical_identifier, - STATE(1104), 1, - sym_class_body, - STATE(1445), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(4544), 1, sym_simple_identifier, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(9711), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658507,25 +639101,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198102] = 9, - ACTIONS(8824), 1, + [188259] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10012), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3786), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(6750), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2406), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658533,25 +639126,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198137] = 9, - ACTIONS(8824), 1, + [188292] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10008), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3840), 1, + STATE(4905), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6750), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658559,24 +639152,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198172] = 8, - ACTIONS(9466), 1, + [188327] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10020), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(2904), 1, + STATE(3373), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3619), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2297), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9470), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658584,45 +639178,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198205] = 3, + [188362] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4902), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4475), 4, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4473), 10, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [188397] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [198228] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9978), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(5507), 1, + STATE(3372), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658630,21 +639230,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198263] = 8, - ACTIONS(345), 1, + [188432] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2746), 2, + STATE(2734), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1652), 7, @@ -658655,25 +639255,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198296] = 9, - ACTIONS(8824), 1, + [188465] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10008), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(3841), 1, + STATE(4103), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(6750), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658681,25 +639281,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198331] = 9, - ACTIONS(8824), 1, + [188500] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9972), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(1454), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2457), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658707,25 +639306,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198366] = 9, - ACTIONS(8824), 1, + [188533] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9998), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(5088), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(6750), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2364), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658733,25 +639331,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198401] = 9, - ACTIONS(8824), 1, + [188566] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9998), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(5082), 1, + STATE(3722), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6750), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658759,24 +639357,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198436] = 8, - ACTIONS(211), 1, + [188601] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2737), 2, + STATE(2367), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658784,24 +639382,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198469] = 8, - ACTIONS(9466), 1, + [188634] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10020), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(2904), 1, + STATE(4204), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3619), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2333), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9470), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658809,25 +639408,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198502] = 9, - ACTIONS(8824), 1, + [188669] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(10012), 1, - anon_sym_LPAREN, - STATE(3786), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(9939), 1, + anon_sym_COLON, + STATE(4612), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(5103), 1, + sym_class_body, + STATE(5604), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658835,24 +639434,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198537] = 8, - ACTIONS(431), 1, + [188704] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(449), 2, + STATE(2375), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658860,71 +639459,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198570] = 9, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(8824), 1, + [188737] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10206), 1, - anon_sym_COLON, - STATE(4991), 1, - sym_class_body, - STATE(6406), 1, + ACTIONS(9706), 1, + anon_sym_LPAREN, + STATE(3332), 1, sym__lexical_identifier, - STATE(8957), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [198605] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7313), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7311), 11, + STATE(2718), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [188770] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [198628] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10012), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3788), 1, + STATE(3671), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9287), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658932,25 +639510,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198663] = 9, - ACTIONS(431), 1, + [188805] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(485), 1, + anon_sym_LPAREN, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(3236), 1, - anon_sym_LBRACE, - ACTIONS(10190), 1, - anon_sym_COLON, - STATE(829), 1, + ACTIONS(9941), 1, + anon_sym_class, + STATE(3332), 1, sym__lexical_identifier, - STATE(1104), 1, - sym_class_body, - STATE(2278), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + STATE(3966), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658958,25 +639535,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198698] = 9, - ACTIONS(8824), 1, + [188838] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9978), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(5508), 1, + STATE(3052), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -658984,25 +639561,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198733] = 9, - ACTIONS(8824), 1, + [188873] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9998), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(5131), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(9489), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2377), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659010,25 +639586,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198768] = 9, - ACTIONS(8824), 1, + [188906] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10008), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(3841), 1, + STATE(3718), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659036,24 +639612,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198803] = 8, - ACTIONS(345), 1, + [188941] = 9, + ACTIONS(9248), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(5617), 1, sym_simple_identifier, + STATE(5649), 1, + sym__simple_user_type, + STATE(9982), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2452), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659061,25 +639638,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198836] = 9, - ACTIONS(8824), 1, + [188976] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9978), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4971), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2372), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659087,25 +639663,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198871] = 9, - ACTIONS(8824), 1, + [189009] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(10008), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4314), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2358), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659113,25 +639688,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198906] = 9, - ACTIONS(9386), 1, + [189042] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(8591), 1, - sym_simple_identifier, - STATE(8598), 1, + STATE(1259), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(8665), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(9280), 1, sym__simple_user_type, - STATE(9983), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9388), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659139,25 +639714,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198941] = 9, - ACTIONS(9466), 1, + [189077] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(2904), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(2945), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(3136), 1, - sym__simple_user_type, - STATE(9935), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9470), 7, + STATE(2652), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659165,25 +639739,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198976] = 9, - ACTIONS(8824), 1, + [189110] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(10012), 1, - anon_sym_LPAREN, - STATE(3122), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(9935), 1, + anon_sym_COLON, + STATE(2791), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(2941), 1, sym_simple_identifier, + STATE(3071), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659191,25 +639765,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199011] = 9, - ACTIONS(8824), 1, + [189145] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9978), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(4967), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2707), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659217,25 +639790,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199046] = 9, - ACTIONS(8824), 1, + [189178] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9978), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(5179), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2330), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659243,21 +639815,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199081] = 8, - ACTIONS(345), 1, + [189211] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2797), 2, + STATE(2672), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1652), 7, @@ -659268,25 +639840,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199114] = 9, - ACTIONS(8824), 1, + [189244] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9978), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(5168), 1, + STATE(3770), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9283), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659294,25 +639866,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199149] = 9, - ACTIONS(8824), 1, + [189279] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10008), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(3840), 1, + STATE(954), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659320,25 +639892,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199184] = 9, - ACTIONS(8824), 1, + [189314] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10012), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3123), 1, + STATE(4190), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659346,24 +639918,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199219] = 8, - ACTIONS(345), 1, + [189349] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2799), 2, + STATE(2383), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659371,50 +639943,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199252] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9769), 1, - anon_sym_LPAREN, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3400), 1, - sym_simple_identifier, - STATE(3591), 1, - sym__simple_user_type, - STATE(9802), 1, - sym_function_type_parameters, + [189382] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(4473), 4, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4471), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [199287] = 8, - ACTIONS(345), 1, sym__alpha_identifier, - ACTIONS(427), 1, + [189405] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(5046), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9254), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2798), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659422,25 +639989,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199320] = 9, - ACTIONS(8824), 1, + [189440] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10083), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3079), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9807), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659448,25 +640015,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199355] = 9, - ACTIONS(8824), 1, + [189475] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10083), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3089), 1, + STATE(5327), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9106), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659474,44 +640041,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199390] = 3, + [189510] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(940), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7323), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7321), 11, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [189545] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [199413] = 8, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3032), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2695), 2, + STATE(2186), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659519,25 +640092,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199446] = 9, - ACTIONS(8824), 1, + [189578] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9972), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(1438), 1, + STATE(3812), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, - sym_simple_identifier, - STATE(9506), 1, + STATE(6549), 1, sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659545,24 +640118,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199481] = 8, - ACTIONS(7), 1, + [189613] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(111), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10211), 1, - anon_sym_class, - STATE(4726), 1, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(823), 1, sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5404), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(1920), 7, + STATE(581), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659570,24 +640143,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199514] = 8, - ACTIONS(515), 1, + [189646] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(529), 1, - anon_sym_LPAREN, - ACTIONS(595), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10213), 1, - anon_sym_class, - STATE(2868), 1, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(823), 1, sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3303), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(1910), 7, + STATE(588), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659595,25 +640168,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199547] = 9, - ACTIONS(8824), 1, + [189679] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9978), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(5179), 1, + STATE(4113), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6750), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659621,21 +640194,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199582] = 8, - ACTIONS(431), 1, + [189714] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(459), 2, + STATE(602), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -659646,25 +640219,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199615] = 9, - ACTIONS(211), 1, + [189747] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + STATE(3808), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3059), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(9806), 1, - sym_function_type_parameters, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659672,25 +640245,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199650] = 9, - ACTIONS(8824), 1, + [189782] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9978), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(4967), 1, + STATE(4115), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6750), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659698,25 +640271,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199685] = 9, - ACTIONS(8824), 1, + [189817] = 9, + ACTIONS(9268), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9978), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4971), 1, - sym_function_value_parameters, - STATE(6406), 1, - sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(6750), 1, + STATE(5686), 1, sym_simple_identifier, + STATE(5708), 1, + sym__simple_user_type, + STATE(5713), 1, + sym__lexical_identifier, + STATE(9669), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659724,24 +640297,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199720] = 8, - ACTIONS(9440), 1, + [189852] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9448), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10046), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(5776), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5979), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5672), 2, + STATE(596), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9444), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659749,25 +640322,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199753] = 9, - ACTIONS(7), 1, + [189885] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(10202), 1, - anon_sym_COLON, - STATE(4726), 1, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(831), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(5065), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(5251), 1, - sym_class_body, + STATE(9419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659775,16 +640348,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199788] = 3, + [189920] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 4, + ACTIONS(4491), 4, anon_sym_AT, + anon_sym_EQ, anon_sym_LPAREN, - anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4189), 10, + ACTIONS(4489), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -659795,25 +640368,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [199811] = 9, - ACTIONS(8824), 1, + [189943] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10008), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3527), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(452), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659821,25 +640393,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199846] = 9, - ACTIONS(8824), 1, + [189976] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9998), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(5580), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(866), 1, sym_simple_identifier, - STATE(9548), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(606), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659847,25 +640418,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199881] = 9, - ACTIONS(8824), 1, + [190009] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10012), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3831), 1, + STATE(3694), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659873,24 +640444,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199916] = 8, - ACTIONS(431), 1, + [190044] = 8, + ACTIONS(9268), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9771), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(5713), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(5807), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(443), 2, + STATE(5474), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659898,24 +640469,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199949] = 8, - ACTIONS(431), 1, + [190077] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(3690), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(441), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659923,25 +640495,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199982] = 9, - ACTIONS(8824), 1, + [190112] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10008), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3523), 1, + STATE(5063), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659949,25 +640521,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200017] = 9, - ACTIONS(115), 1, + [190147] = 9, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(10206), 1, - anon_sym_COLON, - STATE(4661), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(5685), 1, sym__lexical_identifier, - STATE(4991), 1, - sym_class_body, - STATE(5424), 1, + STATE(5686), 1, sym_simple_identifier, + STATE(5708), 1, + sym__simple_user_type, + STATE(9521), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -659975,25 +640547,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200052] = 9, - ACTIONS(345), 1, + [190182] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(5806), 1, + ACTIONS(3210), 1, anon_sym_LBRACE, - ACTIONS(10200), 1, + ACTIONS(9924), 1, anon_sym_COLON, - STATE(3366), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3949), 1, - sym_class_body, - STATE(4383), 1, + STATE(921), 1, sym_simple_identifier, + STATE(1083), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660001,24 +640573,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200087] = 8, - ACTIONS(431), 1, + [190217] = 9, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(10028), 1, - anon_sym_LPAREN, - STATE(829), 1, + ACTIONS(9939), 1, + anon_sym_COLON, + STATE(5103), 1, + sym_class_body, + STATE(5685), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(8548), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(432), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660026,21 +640599,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200120] = 8, - ACTIONS(431), 1, + [190252] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(457), 2, + STATE(591), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -660051,44 +640624,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200153] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4504), 4, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4502), 10, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, + [190285] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [200176] = 8, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(4974), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2440), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660096,25 +640650,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200209] = 9, - ACTIONS(8824), 1, + [190320] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10083), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3822), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(3670), 1, sym_simple_identifier, - STATE(9531), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2417), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660122,24 +640675,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200244] = 8, - ACTIONS(431), 1, + [190353] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(445), 1, + ACTIONS(569), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(10215), 1, + ACTIONS(9943), 1, anon_sym_class, - STATE(829), 1, + STATE(2791), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1191), 2, + STATE(3197), 2, sym_parenthesized_expression, sym_simple_identifier, - ACTIONS(1664), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660147,25 +640700,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200277] = 9, - ACTIONS(8824), 1, + [190386] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9998), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(5191), 1, + STATE(3391), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9104), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660173,25 +640726,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200312] = 9, - ACTIONS(8824), 1, + [190421] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10083), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(2913), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(6750), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(593), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660199,21 +640751,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200347] = 8, - ACTIONS(431), 1, + [190454] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(464), 2, + STATE(594), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -660224,24 +640776,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200380] = 8, - ACTIONS(9440), 1, + [190487] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9448), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10046), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(5776), 1, + STATE(4214), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(5979), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5664), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9444), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660249,25 +640802,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200413] = 9, - ACTIONS(8824), 1, + [190522] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4168), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4166), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, sym__alpha_identifier, - ACTIONS(8854), 1, + [190545] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10083), 1, - anon_sym_LPAREN, - STATE(2938), 1, - sym_function_value_parameters, - STATE(6406), 1, + ACTIONS(5836), 1, + anon_sym_LBRACE, + ACTIONS(9933), 1, + anon_sym_COLON, + STATE(3332), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(6750), 1, + STATE(3865), 1, sym_simple_identifier, + STATE(3969), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660275,24 +640848,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200448] = 8, - ACTIONS(431), 1, + [190580] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(2835), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(446), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660300,24 +640874,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200481] = 8, + [190615] = 8, ACTIONS(211), 1, sym__alpha_identifier, + ACTIONS(223), 1, + anon_sym_LPAREN, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9990), 1, - anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(9945), 1, + anon_sym_class, + STATE(4534), 1, sym__lexical_identifier, - STATE(3330), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2503), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + STATE(4760), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660325,24 +640899,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200514] = 8, - ACTIONS(431), 1, + [190648] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(3049), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(433), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660350,25 +640925,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200547] = 9, - ACTIONS(115), 1, + [190683] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + STATE(2975), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(4671), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(9888), 1, - sym_function_type_parameters, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660376,24 +640951,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200582] = 8, - ACTIONS(211), 1, + [190718] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1722), 2, + STATE(2716), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660401,24 +640976,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200615] = 8, - ACTIONS(211), 1, + [190751] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9990), 1, - anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(9939), 1, + anon_sym_COLON, + STATE(4612), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(5078), 1, sym_simple_identifier, + STATE(5103), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1833), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660426,25 +641002,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200648] = 9, - ACTIONS(8824), 1, + [190786] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(6406), 1, + STATE(3718), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(9884), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660452,25 +641028,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200683] = 9, - ACTIONS(8824), 1, + [190821] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9978), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(5168), 1, + STATE(2833), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6750), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660478,25 +641054,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200718] = 9, - ACTIONS(8824), 1, + [190856] = 8, + ACTIONS(9248), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(10012), 1, + ACTIONS(9793), 1, anon_sym_LPAREN, - STATE(4287), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(5820), 1, sym_simple_identifier, - STATE(9569), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(5523), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660504,25 +641079,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200753] = 9, - ACTIONS(7), 1, + [190889] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(5864), 1, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(10202), 1, + ACTIONS(9929), 1, anon_sym_COLON, - STATE(4726), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(5251), 1, + STATE(3526), 1, sym_class_body, - STATE(5395), 1, + STATE(3744), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660530,24 +641105,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200788] = 8, - ACTIONS(211), 1, + [190924] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1840), 2, + STATE(2335), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660555,25 +641130,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200821] = 9, - ACTIONS(8824), 1, + [190957] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9972), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(848), 1, + STATE(2835), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, - STATE(9581), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190992] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(3722), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, sym__simple_user_type, + STATE(6590), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660581,25 +641182,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200856] = 9, - ACTIONS(8824), 1, + [191027] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9972), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(1293), 1, + STATE(1411), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660607,25 +641208,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200891] = 9, - ACTIONS(7), 1, + [191062] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(4726), 1, + STATE(978), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(4973), 1, + STATE(9288), 1, sym__simple_user_type, - STATE(10258), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660633,24 +641234,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200926] = 8, - ACTIONS(345), 1, + [191097] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(852), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2711), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660658,25 +641260,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200959] = 9, - ACTIONS(115), 1, + [191132] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(5552), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - ACTIONS(10206), 1, + ACTIONS(9935), 1, anon_sym_COLON, - STATE(4661), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4991), 1, + STATE(3071), 1, sym_class_body, - STATE(5101), 1, + STATE(4086), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660684,25 +641286,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200994] = 9, - ACTIONS(8824), 1, + [191167] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9978), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(5665), 1, + STATE(4805), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, - sym_simple_identifier, - STATE(9626), 1, + STATE(6549), 1, sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660710,24 +641312,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201029] = 8, - ACTIONS(211), 1, + [191202] = 8, + ACTIONS(9258), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - STATE(3032), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3399), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2206), 2, + STATE(2304), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660735,25 +641337,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201062] = 9, - ACTIONS(8824), 1, + [191235] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9998), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(4662), 1, + STATE(3690), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660761,24 +641363,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201097] = 8, - ACTIONS(211), 1, + [191270] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3032), 1, + STATE(4807), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2496), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660786,25 +641389,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201130] = 9, - ACTIONS(8824), 1, + [191305] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9972), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(1292), 1, + STATE(1419), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660812,25 +641415,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201165] = 9, - ACTIONS(8824), 1, + [191340] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9972), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(957), 1, + STATE(5338), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660838,24 +641441,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201200] = 8, - ACTIONS(345), 1, + [191375] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(3694), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2713), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660863,25 +641467,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201233] = 9, - ACTIONS(8824), 1, + [191410] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9998), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4688), 1, + STATE(4902), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660889,24 +641493,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201268] = 8, - ACTIONS(345), 1, + [191445] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2461), 2, + STATE(2620), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660914,24 +641518,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201301] = 8, - ACTIONS(9404), 1, + [191478] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(9412), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10014), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(5867), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(5967), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5585), 2, + STATE(2341), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9408), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660939,25 +641543,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201334] = 9, - ACTIONS(8824), 1, + [191511] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10083), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3079), 1, + STATE(4905), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660965,25 +641569,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201369] = 9, - ACTIONS(9404), 1, + [191546] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9412), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(5848), 1, - sym_simple_identifier, - STATE(5860), 1, - sym__simple_user_type, - STATE(5867), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(10124), 1, - sym_function_type_parameters, + STATE(3108), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9408), 7, + STATE(2440), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -660991,24 +641594,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201404] = 8, - ACTIONS(211), 1, + [191579] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3032), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2182), 2, + STATE(2715), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661016,24 +641619,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201437] = 8, - ACTIONS(211), 1, + [191612] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9990), 1, - anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(3210), 1, + anon_sym_LBRACE, + ACTIONS(9924), 1, + anon_sym_COLON, + STATE(823), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(1083), 1, + sym_class_body, + STATE(1127), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2177), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661041,24 +641645,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201470] = 8, - ACTIONS(211), 1, + [191647] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(3032), 1, + STATE(846), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2733), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661066,44 +641671,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201503] = 3, + [191682] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(4148), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7335), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7333), 11, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [191717] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [201526] = 8, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2714), 2, + STATE(2660), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661111,47 +641722,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201559] = 5, - ACTIONS(10217), 1, + [191750] = 8, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(8089), 1, - sym_value_arguments, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7248), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7246), 10, + STATE(450), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [191783] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [201586] = 9, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10012), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(4292), 1, + STATE(3726), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661159,25 +641773,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201621] = 9, - ACTIONS(8824), 1, + [191818] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9972), 1, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3108), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2181), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191851] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(966), 1, + STATE(4805), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(8161), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661185,24 +641824,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201656] = 8, - ACTIONS(345), 1, + [191886] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2456), 2, + STATE(2135), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661210,25 +641849,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201689] = 9, - ACTIONS(9394), 1, + [191919] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9769), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + STATE(3743), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(4697), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(9925), 1, - sym_function_type_parameters, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9398), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661236,25 +641875,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201724] = 9, - ACTIONS(8824), 1, + [191954] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10012), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3051), 1, + STATE(5334), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, - sym_simple_identifier, - STATE(9585), 1, + STATE(6549), 1, sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661262,44 +641901,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201759] = 3, + [191989] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3108), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7299), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7297), 11, + STATE(2607), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [192022] = 8, + ACTIONS(9248), 1, sym__alpha_identifier, - [201782] = 8, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9793), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(888), 1, + STATE(5820), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(440), 2, + STATE(5494), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661307,24 +641951,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201815] = 8, - ACTIONS(211), 1, + [192055] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9990), 1, - anon_sym_LPAREN, - STATE(3032), 1, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(9935), 1, + anon_sym_COLON, + STATE(2791), 1, sym__lexical_identifier, - STATE(3330), 1, + STATE(3071), 1, + sym_class_body, + STATE(3127), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2518), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1630), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661332,25 +641977,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201848] = 9, - ACTIONS(8824), 1, + [192090] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10083), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3089), 1, + STATE(4807), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6750), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661358,21 +642003,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201883] = 8, - ACTIONS(345), 1, + [192125] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(3730), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(9333), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192160] = 8, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3366), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3710), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2453), 2, + STATE(2695), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1652), 7, @@ -661383,25 +642054,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201916] = 9, - ACTIONS(8824), 1, + [192193] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10008), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3583), 1, + STATE(5526), 1, sym_function_value_parameters, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9589), 1, + STATE(9409), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661409,25 +642080,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201951] = 9, - ACTIONS(515), 1, + [192228] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(3256), 1, - anon_sym_LBRACE, - ACTIONS(10194), 1, - anon_sym_COLON, - STATE(2868), 1, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(5063), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3148), 1, - sym_class_body, - STATE(3218), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661435,45 +642106,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201986] = 3, + [192263] = 9, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9266), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(2826), 1, + sym_simple_identifier, + STATE(2853), 1, + sym__lexical_identifier, + STATE(3014), 1, + sym__simple_user_type, + STATE(9603), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7263), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7261), 11, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [192298] = 9, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8672), 1, sym__alpha_identifier, - [202009] = 9, - ACTIONS(8824), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9931), 1, + anon_sym_COLON, + STATE(4880), 1, + sym_class_body, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8758), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192333] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(10008), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4324), 1, - sym_function_value_parameters, - STATE(6406), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(8161), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(9600), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2617), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661481,115 +642183,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202044] = 3, + [192366] = 8, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, + anon_sym_LPAREN, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4319), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4317), 10, + STATE(2347), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [192399] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [202067] = 3, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3108), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4974), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4972), 10, + STATE(2444), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [192432] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [202089] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(5465), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(9396), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4974), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4972), 11, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [192467] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [202111] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(4741), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(9325), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4936), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4934), 11, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [192502] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [202133] = 3, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4942), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4940), 11, + STATE(455), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [192535] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [202155] = 5, - ACTIONS(10220), 1, - anon_sym_DOT, - STATE(6761), 1, - aux_sym_user_type_repeat1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4919), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(9414), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 3, - anon_sym_LPAREN, - sym__quest, - sym__backtick_identifier, - ACTIONS(4202), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661597,134 +642336,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192570] = 8, + ACTIONS(9258), 1, sym__alpha_identifier, - [202181] = 3, + ACTIONS(9266), 1, + sym__backtick_identifier, + ACTIONS(9747), 1, + anon_sym_LPAREN, + STATE(2853), 1, + sym__lexical_identifier, + STATE(3399), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5006), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(5004), 11, + STATE(2314), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [192603] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [202203] = 3, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(5836), 1, + anon_sym_LBRACE, + ACTIONS(9933), 1, + anon_sym_COLON, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3969), 1, + sym_class_body, + STATE(4280), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7313), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7311), 10, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [192638] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [202225] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(2837), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(9100), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7335), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7333), 10, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [192673] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [202247] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(940), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5022), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(5020), 10, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [192708] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - [202269] = 3, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(9931), 1, + anon_sym_COLON, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4880), 1, + sym_class_body, + STATE(5047), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7299), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7297), 11, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [192743] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [202291] = 3, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7299), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7297), 10, + STATE(430), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [192776] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [202313] = 5, - ACTIONS(10227), 1, - sym__quest, - STATE(6863), 1, - aux_sym_nullable_type_repeat1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, + anon_sym_LPAREN, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10225), 3, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(10223), 8, + STATE(2393), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661732,23 +642515,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192809] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [202339] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4563), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(9815), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9319), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10229), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661756,209 +642541,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202369] = 3, + [192844] = 8, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7263), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7261), 10, + STATE(457), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [192877] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [202391] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(5504), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5006), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(5004), 10, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [192912] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [202413] = 3, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9988), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(9986), 11, + STATE(425), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [192945] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [202435] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(2833), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9262), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(9264), 11, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [192980] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [202457] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, + sym_simple_identifier, + STATE(9612), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7313), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7311), 11, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [193015] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [202479] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(5505), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7323), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7321), 11, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [193050] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [202501] = 3, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7335), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7333), 11, + STATE(434), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [193083] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [202523] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4992), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7263), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7261), 11, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [193118] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [202545] = 3, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5022), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(5020), 11, + STATE(459), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [193151] = 8, + ACTIONS(9248), 1, sym__alpha_identifier, - [202567] = 3, + ACTIONS(9256), 1, + sym__backtick_identifier, + ACTIONS(9793), 1, + anon_sym_LPAREN, + STATE(5602), 1, + sym__lexical_identifier, + STATE(5820), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7323), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7321), 10, + STATE(5493), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [193184] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - [202589] = 5, - ACTIONS(10231), 1, - anon_sym_DOT, - STATE(8085), 1, - aux_sym_user_type_repeat1, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, + sym_simple_identifier, + STATE(4577), 1, + sym__simple_user_type, + STATE(9728), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 3, - anon_sym_LPAREN, - sym__quest, - sym__backtick_identifier, - ACTIONS(4225), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661966,20 +642822,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193219] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [202615] = 5, - ACTIONS(10227), 1, - sym__quest, - STATE(6863), 1, - aux_sym_nullable_type_repeat1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3108), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10236), 3, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(10234), 8, + STATE(2671), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -661987,60 +642847,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193252] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [202641] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(846), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4942), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4940), 10, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [193287] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [202663] = 3, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4936), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4934), 10, + STATE(438), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [193320] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [202685] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(3059), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(8803), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9561), 1, - sym_variable_declaration, + STATE(9351), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662048,21 +642924,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202714] = 7, - ACTIONS(8824), 1, + [193355] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4970), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(8803), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, - STATE(9274), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662070,21 +642950,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202743] = 7, - ACTIONS(8824), 1, + [193390] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10238), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9439), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(3308), 1, sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3548), 1, + sym__simple_user_type, + STATE(9887), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662092,18 +642976,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202772] = 5, - ACTIONS(10240), 1, - anon_sym_DOT, - STATE(8115), 1, - aux_sym_user_type_repeat1, + [193425] = 8, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4225), 8, + STATE(424), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662111,22 +643001,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193458] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [202797] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10243), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(852), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(9698), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662134,21 +643027,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202826] = 7, - ACTIONS(8824), 1, + [193493] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10245), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(3409), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(9445), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662156,16 +643053,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202855] = 3, + [193528] = 8, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(399), 1, + anon_sym_LPAREN, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9947), 1, + anon_sym_class, + STATE(823), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4313), 4, - anon_sym_LPAREN, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4311), 8, + STATE(1036), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662173,19 +643078,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193561] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [202876] = 5, - ACTIONS(10247), 1, - anon_sym_DOT, - STATE(6761), 1, - aux_sym_user_type_repeat1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, + anon_sym_LPAREN, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4202), 8, + STATE(2659), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662193,19 +643103,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193594] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [202901] = 5, - ACTIONS(10250), 1, - anon_sym_DOT, - STATE(6761), 1, - aux_sym_user_type_repeat1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(3412), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4202), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662213,22 +643129,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193629] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [202926] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10253), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(823), 1, sym__lexical_identifier, - STATE(9710), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(433), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662236,21 +643154,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202955] = 7, - ACTIONS(8824), 1, + [193662] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10255), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(3035), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(9449), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662258,18 +643180,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202984] = 5, - ACTIONS(10257), 1, - anon_sym_DOT, - STATE(8186), 1, - aux_sym_user_type_repeat1, + [193697] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(1268), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4225), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662277,22 +643206,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193732] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [203009] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10260), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(3052), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(9722), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662300,21 +643232,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203038] = 7, - ACTIONS(8824), 1, + [193767] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10262), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(823), 1, sym__lexical_identifier, - STATE(9454), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(611), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662322,21 +643257,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203067] = 7, - ACTIONS(8824), 1, + [193800] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10264), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(3373), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(9458), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662344,21 +643283,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203096] = 7, - ACTIONS(8824), 1, + [193835] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10266), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(9706), 1, + anon_sym_LPAREN, + STATE(3332), 1, sym__lexical_identifier, - STATE(9519), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2677), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662366,21 +643308,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203125] = 7, - ACTIONS(8824), 1, + [193868] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10268), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(3372), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(9463), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662388,21 +643334,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203154] = 7, - ACTIONS(8824), 1, + [193903] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10270), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4564), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(9466), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662410,21 +643360,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203183] = 7, - ACTIONS(1724), 1, + [193938] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(1788), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5569), 1, - sym_simple_identifier, - STATE(5586), 1, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(1267), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(5652), 1, + STATE(6549), 1, sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3095), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662432,43 +643386,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203212] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10272), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9467), 1, - sym_simple_identifier, + [193973] = 5, + ACTIONS(9949), 1, + anon_sym_LPAREN, + STATE(7854), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(7089), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7087), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [203241] = 7, - ACTIONS(515), 1, sym__alpha_identifier, - ACTIONS(595), 1, + [194000] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10274), 1, - anon_sym_class, - STATE(2868), 1, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4561), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3149), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662476,21 +643434,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203270] = 7, - ACTIONS(8824), 1, + [194035] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(10276), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(2955), 1, sym__lexical_identifier, - STATE(9733), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2068), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662498,21 +643459,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203299] = 7, - ACTIONS(115), 1, + [194068] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(4653), 1, - sym_simple_identifier, - STATE(4661), 1, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4561), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(4671), 1, + STATE(6549), 1, sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662520,21 +643485,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203328] = 7, - ACTIONS(431), 1, + [194103] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10278), 1, - anon_sym_class, - STATE(829), 1, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4564), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(1058), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662542,21 +643511,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203357] = 7, - ACTIONS(8824), 1, + [194138] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10280), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(823), 1, sym__lexical_identifier, - STATE(9394), 1, + STATE(824), 1, sym_simple_identifier, + STATE(858), 1, + sym__simple_user_type, + STATE(9546), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662564,21 +643537,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203386] = 7, - ACTIONS(8824), 1, + [194173] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9706), 1, + anon_sym_LPAREN, + STATE(3332), 1, sym__lexical_identifier, - STATE(8803), 1, + STATE(3670), 1, sym_simple_identifier, - STATE(9356), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2600), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662586,21 +643562,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203415] = 7, - ACTIONS(8824), 1, + [194206] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(10282), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(9939), 1, + anon_sym_COLON, + STATE(4612), 1, sym__lexical_identifier, - STATE(9469), 1, + STATE(4912), 1, sym_simple_identifier, + STATE(5103), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662608,21 +643588,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203444] = 7, - ACTIONS(431), 1, + [194241] = 8, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(27), 1, + anon_sym_LPAREN, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(10284), 1, + ACTIONS(9952), 1, anon_sym_class, - STATE(829), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(1102), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + STATE(5186), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662630,21 +643613,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203473] = 7, - ACTIONS(8824), 1, + [194274] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(10286), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(2955), 1, sym__lexical_identifier, - STATE(9475), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + STATE(2170), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662652,21 +643638,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203502] = 7, - ACTIONS(8824), 1, + [194307] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10288), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(2975), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(9740), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662674,21 +643664,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203531] = 7, - ACTIONS(8824), 1, + [194342] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(10290), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(9931), 1, + anon_sym_COLON, + STATE(4534), 1, sym__lexical_identifier, - STATE(9727), 1, + STATE(4591), 1, sym_simple_identifier, + STATE(4880), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662696,87 +643690,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203560] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10292), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9386), 1, - sym_simple_identifier, + [194377] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(7193), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7191), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [203589] = 7, - ACTIONS(9702), 1, sym__alpha_identifier, - ACTIONS(9710), 1, - sym__backtick_identifier, - STATE(7519), 1, - sym_simple_identifier, - STATE(7559), 1, - sym__lexical_identifier, - STATE(7737), 1, - sym__simple_user_type, + [194399] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9708), 7, + ACTIONS(5165), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(5163), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [203618] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10294), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9478), 1, - sym_simple_identifier, + [194421] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9833), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9831), 11, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [203647] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10296), 1, + [194443] = 5, + ACTIONS(9954), 1, anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9480), 1, - sym_simple_identifier, + STATE(7857), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4195), 3, + anon_sym_LPAREN, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662784,197 +643767,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203676] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10298), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9486), 1, - sym_simple_identifier, + [194469] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(7181), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7179), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [203705] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8803), 1, - sym_simple_identifier, - STATE(9126), 1, - sym_variable_declaration, + [194491] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(7173), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7171), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [203734] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10300), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9636), 1, - sym_simple_identifier, + [194513] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(5161), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(5159), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [203763] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10302), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9490), 1, - sym_simple_identifier, + [194535] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(7181), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7179), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [203792] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10304), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9642), 1, - sym_simple_identifier, + [194557] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(7173), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7171), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [203821] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10306), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9487), 1, - sym_simple_identifier, + [194579] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(7189), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7187), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [203850] = 7, - ACTIONS(515), 1, sym__alpha_identifier, - ACTIONS(595), 1, - sym__backtick_identifier, - ACTIONS(10308), 1, - anon_sym_class, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3215), 1, - sym_simple_identifier, + [194601] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(7189), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7187), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [203879] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10310), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9494), 1, - sym_simple_identifier, + [194623] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(7145), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7143), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [203908] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10312), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9558), 1, - sym_simple_identifier, + [194645] = 5, + ACTIONS(9961), 1, + sym__quest, + STATE(6738), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9959), 3, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(9957), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -662982,65 +643940,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203937] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10314), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9522), 1, - sym_simple_identifier, + [194671] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9131), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9133), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [203966] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10316), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9523), 1, - sym_simple_identifier, + [194693] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(5189), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(5187), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [203995] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [194715] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5161), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(10318), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9638), 1, - sym_simple_identifier, + ACTIONS(5159), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [194737] = 5, + ACTIONS(9961), 1, + sym__quest, + STATE(6738), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9965), 3, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(9963), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663048,130 +644018,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204024] = 4, - ACTIONS(10320), 1, + sym__alpha_identifier, + [194763] = 5, + ACTIONS(9967), 1, anon_sym_DOT, - STATE(8155), 1, + STATE(6591), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4155), 3, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_AMP, sym__quest, - [204047] = 11, - ACTIONS(10323), 1, - anon_sym_typealias, - ACTIONS(10327), 1, - anon_sym_fun, - ACTIONS(10329), 1, - anon_sym_enum, - ACTIONS(10331), 1, - anon_sym_constructor, - ACTIONS(10335), 1, - anon_sym_companion, - ACTIONS(10337), 1, - anon_sym_object, - ACTIONS(10339), 1, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, - ACTIONS(10341), 1, anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [194789] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10325), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10333), 2, - anon_sym_val, - anon_sym_var, - [204084] = 5, - ACTIONS(10343), 1, - anon_sym_DOT, - STATE(8179), 1, - aux_sym_user_type_repeat1, + ACTIONS(5165), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(5163), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [194811] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 2, - sym__quest, + ACTIONS(5181), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(4225), 8, + ACTIONS(5179), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [204109] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10346), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9621), 1, - sym_simple_identifier, + [194833] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(5185), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(5183), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [204138] = 7, - ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(10348), 1, - anon_sym_class, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4995), 1, - sym_simple_identifier, + [194855] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(7193), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7191), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [204167] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [194877] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10350), 1, - anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9663), 1, + STATE(9718), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9970), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663179,128 +644139,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204196] = 4, - ACTIONS(9320), 1, - anon_sym_LT, - STATE(6730), 1, - sym_type_arguments, + [194907] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 10, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - anon_sym_while, - [204219] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(5189), 2, + anon_sym_AT, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8803), 1, - sym_simple_identifier, - STATE(9770), 1, - sym_variable_declaration, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(5187), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [204248] = 7, - ACTIONS(9440), 1, sym__alpha_identifier, - ACTIONS(9448), 1, - sym__backtick_identifier, - STATE(5775), 1, - sym_simple_identifier, - STATE(5776), 1, - sym__lexical_identifier, - STATE(5808), 1, - sym__simple_user_type, + [194929] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9444), 7, + ACTIONS(5181), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(5179), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [204277] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10352), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9645), 1, - sym_simple_identifier, + [194951] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(5185), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(5183), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [204306] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(8803), 1, - sym_simple_identifier, - STATE(9314), 1, - sym_variable_declaration, + [194973] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(7145), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7143), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [204335] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [194995] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10354), 1, - anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9648), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663308,21 +644237,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204364] = 7, - ACTIONS(8824), 1, + [195024] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9972), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(8161), 1, + STATE(9395), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663330,18 +644259,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204393] = 5, - ACTIONS(10356), 1, - anon_sym_DOT, - STATE(6761), 1, - aux_sym_user_type_repeat1, + [195053] = 7, + ACTIONS(9402), 1, + sym__alpha_identifier, + ACTIONS(9410), 1, + sym__backtick_identifier, + STATE(5826), 1, + sym_simple_identifier, + STATE(5842), 1, + sym__lexical_identifier, + STATE(5857), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4202), 8, + ACTIONS(9408), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663349,22 +644281,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195082] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [204418] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10359), 1, + ACTIONS(9974), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9631), 1, + STATE(9238), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663372,21 +644303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204447] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10361), 1, + [195111] = 5, + ACTIONS(9976), 1, anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9649), 1, - sym_simple_identifier, + STATE(7889), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663394,21 +644322,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204476] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [195136] = 7, + ACTIONS(9285), 1, + sym__alpha_identifier, + ACTIONS(9291), 1, sym__backtick_identifier, - ACTIONS(10363), 1, - anon_sym_DOT, - STATE(6406), 1, + STATE(5682), 1, sym__lexical_identifier, - STATE(9658), 1, + STATE(5787), 1, sym_simple_identifier, + STATE(5815), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9289), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663416,21 +644345,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204505] = 7, - ACTIONS(8824), 1, + [195165] = 4, + ACTIONS(9979), 1, + anon_sym_DOT, + STATE(7887), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4155), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_AMP, + sym__quest, + [195188] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(9981), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8803), 1, + STATE(9225), 1, sym_simple_identifier, - STATE(9269), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663438,21 +644386,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204534] = 7, - ACTIONS(8824), 1, + [195217] = 7, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(10365), 1, - anon_sym_DOT, - STATE(6406), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(9609), 1, + STATE(8516), 1, sym_simple_identifier, + STATE(9168), 1, + sym_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663460,21 +644408,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204563] = 7, - ACTIONS(8824), 1, + [195246] = 7, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(10367), 1, - anon_sym_DOT, - STATE(6406), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(9664), 1, + STATE(8516), 1, sym_simple_identifier, + STATE(8517), 1, + sym_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663482,18 +644430,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204592] = 5, - ACTIONS(10369), 1, + [195275] = 5, + ACTIONS(9983), 1, anon_sym_DOT, - STATE(8168), 1, + STATE(6591), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 2, + ACTIONS(4155), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4225), 8, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663502,21 +644450,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [204617] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10372), 1, + [195300] = 5, + ACTIONS(9986), 1, anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9577), 1, - sym_simple_identifier, + STATE(7877), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663524,21 +644469,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204646] = 7, - ACTIONS(9430), 1, sym__alpha_identifier, - ACTIONS(9434), 1, - sym__backtick_identifier, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(5860), 1, - sym__simple_user_type, + [195325] = 5, + ACTIONS(9989), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + ACTIONS(4155), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663546,21 +644489,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204675] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10374), 1, + [195350] = 5, + ACTIONS(9992), 1, anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9706), 1, - sym_simple_identifier, + STATE(7879), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663568,18 +644509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204704] = 5, - ACTIONS(10376), 1, + sym__alpha_identifier, + [195375] = 5, + ACTIONS(9995), 1, anon_sym_DOT, - STATE(6761), 1, + STATE(6591), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 2, + ACTIONS(4155), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4202), 8, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663588,21 +644530,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [204729] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10379), 1, + [195400] = 5, + ACTIONS(9998), 1, anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9669), 1, - sym_simple_identifier, + STATE(7881), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663610,21 +644549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204758] = 7, - ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(10381), 1, - anon_sym_class, - STATE(3032), 1, - sym__lexical_identifier, - STATE(3640), 1, - sym_simple_identifier, + [195425] = 5, + ACTIONS(10001), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(4155), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663632,40 +644569,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204787] = 4, - ACTIONS(10383), 1, + sym__alpha_identifier, + [195450] = 5, + ACTIONS(10004), 1, anon_sym_DOT, - STATE(8155), 1, + STATE(7883), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_AMP, + ACTIONS(4195), 2, sym__quest, - [204810] = 7, - ACTIONS(8824), 1, + sym__backtick_identifier, + ACTIONS(4193), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195475] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10385), 1, + ACTIONS(10007), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9674), 1, + STATE(9252), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663673,21 +644612,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204839] = 7, - ACTIONS(8824), 1, + [195504] = 7, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(10387), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(10009), 1, + anon_sym_class, + STATE(4612), 1, sym__lexical_identifier, - STATE(9499), 1, + STATE(5227), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663695,21 +644634,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204868] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - ACTIONS(10389), 1, + [195533] = 4, + ACTIONS(10011), 1, anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9677), 1, - sym_simple_identifier, + STATE(7887), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4168), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_AMP, + sym__quest, + [195556] = 5, + ACTIONS(10014), 1, + anon_sym_LPAREN, + STATE(7182), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(7089), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7087), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663717,18 +644672,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204897] = 5, - ACTIONS(10391), 1, + sym__alpha_identifier, + [195581] = 5, + ACTIONS(10017), 1, anon_sym_DOT, - STATE(6761), 1, + STATE(6591), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 2, + ACTIONS(4155), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4202), 8, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663737,21 +644693,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [204922] = 7, - ACTIONS(9754), 1, + [195606] = 7, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(9762), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(5828), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(5846), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(5866), 1, + STATE(5708), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9760), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663759,18 +644715,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204951] = 5, - ACTIONS(10394), 1, - anon_sym_LPAREN, - STATE(7399), 1, - sym_value_arguments, + [195635] = 4, + ACTIONS(10020), 1, + anon_sym_DOT, + STATE(7873), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7248), 2, - anon_sym_AT, + ACTIONS(4195), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_AMP, + sym__quest, + [195658] = 7, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7246), 8, + ACTIONS(10022), 1, + anon_sym_class, + STATE(2791), 1, + sym__lexical_identifier, + STATE(3065), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663778,22 +644756,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195687] = 4, + ACTIONS(9162), 1, + anon_sym_LT, + STATE(6538), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4189), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [195710] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [204976] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10397), 1, - anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9507), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663801,21 +644797,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205005] = 7, - ACTIONS(8824), 1, + [195739] = 7, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(10399), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(10024), 1, + anon_sym_class, + STATE(4534), 1, sym__lexical_identifier, - STATE(9681), 1, + STATE(4879), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663823,21 +644819,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205034] = 7, - ACTIONS(8824), 1, + [195768] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10401), 1, + ACTIONS(10026), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9592), 1, + STATE(9191), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663845,21 +644841,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205063] = 7, - ACTIONS(345), 1, + [195797] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10403), 1, - anon_sym_class, - STATE(3366), 1, + ACTIONS(10028), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3998), 1, + STATE(9224), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663867,21 +644863,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205092] = 7, - ACTIONS(8824), 1, + [195826] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10405), 1, + ACTIONS(10030), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9691), 1, + STATE(9214), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663889,21 +644885,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205121] = 7, - ACTIONS(8824), 1, + [195855] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10407), 1, + ACTIONS(10032), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9593), 1, + STATE(9226), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663911,21 +644907,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205150] = 7, - ACTIONS(8824), 1, + [195884] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10409), 1, + ACTIONS(10034), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9694), 1, + STATE(9200), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663933,21 +644929,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205179] = 7, - ACTIONS(8824), 1, + [195913] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10411), 1, + ACTIONS(10036), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9566), 1, + STATE(9267), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663955,21 +644951,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205208] = 7, - ACTIONS(8824), 1, + [195942] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10413), 1, + ACTIONS(10038), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9597), 1, + STATE(9367), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663977,21 +644973,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205237] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9100), 1, - sym_parameter, - STATE(9890), 1, - sym_simple_identifier, + [195971] = 5, + ACTIONS(10040), 1, + anon_sym_DOT, + STATE(8008), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -663999,21 +644992,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205266] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [195996] = 7, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(10415), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9599), 1, + STATE(5686), 1, sym_simple_identifier, + STATE(5708), 1, + sym__simple_user_type, + STATE(5713), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664021,21 +645015,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205295] = 7, - ACTIONS(8824), 1, + [196025] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10417), 1, + ACTIONS(10043), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9695), 1, + STATE(9192), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664043,21 +645037,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205324] = 7, - ACTIONS(8824), 1, + [196054] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10419), 1, + ACTIONS(10045), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9602), 1, + STATE(9178), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664065,21 +645059,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205353] = 7, - ACTIONS(9454), 1, + [196083] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9460), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5843), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5955), 1, + STATE(8564), 1, sym_simple_identifier, - STATE(5988), 1, - sym__simple_user_type, + STATE(8857), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9458), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664087,21 +645081,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205382] = 7, - ACTIONS(8824), 1, + [196112] = 7, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(10421), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(10047), 1, + anon_sym_class, + STATE(4612), 1, sym__lexical_identifier, - STATE(9702), 1, + STATE(5191), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664109,21 +645103,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205411] = 7, - ACTIONS(8824), 1, + [196141] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10423), 1, + ACTIONS(10049), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9703), 1, + STATE(9250), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664131,21 +645125,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205440] = 7, - ACTIONS(8824), 1, + [196170] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10425), 1, + ACTIONS(10051), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9611), 1, + STATE(9169), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664153,21 +645147,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205469] = 7, - ACTIONS(9680), 1, + [196199] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9688), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(7595), 1, - sym_simple_identifier, - STATE(7643), 1, + ACTIONS(10053), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8012), 1, - sym__simple_user_type, + STATE(9158), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9686), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664175,21 +645169,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205498] = 7, - ACTIONS(8824), 1, + [196228] = 7, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10427), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9442), 1, + STATE(3308), 1, sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3548), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664197,21 +645191,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205527] = 7, - ACTIONS(8824), 1, + [196257] = 7, + ACTIONS(9386), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9398), 1, sym__backtick_identifier, - ACTIONS(10429), 1, - anon_sym_DOT, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9704), 1, + STATE(3554), 1, sym_simple_identifier, + STATE(3648), 1, + sym__lexical_identifier, + STATE(3742), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9394), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664219,21 +645213,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205556] = 7, - ACTIONS(8824), 1, + [196286] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10431), 1, + ACTIONS(10055), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9613), 1, + STATE(9273), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664241,18 +645235,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205585] = 5, - ACTIONS(10433), 1, - anon_sym_DOT, - STATE(8116), 1, - aux_sym_user_type_repeat1, + [196315] = 7, + ACTIONS(9464), 1, + sym__alpha_identifier, + ACTIONS(9472), 1, + sym__backtick_identifier, + STATE(7357), 1, + sym_simple_identifier, + STATE(7388), 1, + sym__lexical_identifier, + STATE(7727), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4225), 8, + ACTIONS(9470), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664260,22 +645257,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196344] = 7, + ACTIONS(115), 1, sym__alpha_identifier, - [205610] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(10436), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(10057), 1, + anon_sym_class, + STATE(2955), 1, sym__lexical_identifier, - STATE(9689), 1, + STATE(3459), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664283,21 +645279,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205639] = 7, - ACTIONS(8824), 1, + [196373] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10438), 1, + ACTIONS(10059), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9542), 1, + STATE(9449), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664305,21 +645301,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205668] = 7, - ACTIONS(8824), 1, + [196402] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10440), 1, + ACTIONS(10061), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9624), 1, + STATE(9118), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664327,21 +645323,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205697] = 7, - ACTIONS(8824), 1, + [196431] = 7, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10442), 1, - anon_sym_DOT, - STATE(6406), 1, + ACTIONS(10063), 1, + anon_sym_class, + STATE(823), 1, sym__lexical_identifier, - STATE(9639), 1, + STATE(1098), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664349,21 +645345,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205726] = 7, - ACTIONS(8824), 1, + [196460] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10444), 1, + ACTIONS(10065), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9654), 1, + STATE(9213), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664371,21 +645367,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205755] = 7, - ACTIONS(8824), 1, + [196489] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(10067), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8803), 1, + STATE(9446), 1, sym_simple_identifier, - STATE(9253), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664393,21 +645389,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205784] = 7, - ACTIONS(8824), 1, + [196518] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10446), 1, + ACTIONS(10069), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9550), 1, + STATE(9166), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664415,18 +645411,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205813] = 5, - ACTIONS(10448), 1, + [196547] = 5, + ACTIONS(10071), 1, anon_sym_DOT, - STATE(6761), 1, + STATE(6591), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 2, + ACTIONS(4155), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4202), 8, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664435,21 +645431,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [205838] = 7, - ACTIONS(8824), 1, + [196572] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10451), 1, + ACTIONS(10074), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9644), 1, + STATE(9140), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664457,21 +645453,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205867] = 7, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(10453), 1, - anon_sym_class, - STATE(3366), 1, - sym__lexical_identifier, - STATE(3942), 1, - sym_simple_identifier, + [196601] = 5, + ACTIONS(10076), 1, + anon_sym_DOT, + STATE(7930), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664479,21 +645472,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205896] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [196626] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10455), 1, + ACTIONS(10079), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9459), 1, + STATE(9255), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664501,21 +645495,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205925] = 7, - ACTIONS(8824), 1, + [196655] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10457), 1, + ACTIONS(10081), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9647), 1, + STATE(9439), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664523,21 +645517,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205954] = 7, - ACTIONS(8824), 1, + [196684] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10459), 1, + ACTIONS(10083), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9657), 1, + STATE(9299), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664545,21 +645539,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205983] = 7, - ACTIONS(8824), 1, + [196713] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10461), 1, + ACTIONS(10085), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9661), 1, + STATE(9141), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664567,21 +645561,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206012] = 7, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(10463), 1, - anon_sym_class, - STATE(4726), 1, - sym__lexical_identifier, - STATE(5264), 1, - sym_simple_identifier, + [196742] = 5, + ACTIONS(10087), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(4155), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664589,21 +645580,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206041] = 7, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [196767] = 7, + ACTIONS(211), 1, + sym__alpha_identifier, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(10465), 1, - anon_sym_DOT, - STATE(6406), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9666), 1, + STATE(4538), 1, sym_simple_identifier, + STATE(4577), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664611,18 +645603,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206070] = 5, - ACTIONS(10467), 1, - anon_sym_DOT, - STATE(8260), 1, - aux_sym_user_type_repeat1, + [196796] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8564), 1, + sym_simple_identifier, + STATE(9096), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4225), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664630,22 +645625,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196825] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [206095] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10470), 1, + ACTIONS(10090), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9744), 1, + STATE(9320), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664653,40 +645647,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206124] = 4, - ACTIONS(10472), 1, - anon_sym_DOT, - STATE(8182), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4227), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_AMP, - sym__quest, - [206147] = 7, - ACTIONS(115), 1, + [196854] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10474), 1, - anon_sym_class, - STATE(4661), 1, + ACTIONS(10092), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4892), 1, + STATE(9183), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664694,21 +645669,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206176] = 7, - ACTIONS(431), 1, + [196883] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(829), 1, + ACTIONS(10094), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(832), 1, + STATE(9332), 1, sym_simple_identifier, - STATE(869), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664716,21 +645691,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206205] = 7, - ACTIONS(9638), 1, + [196912] = 7, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9650), 1, + ACTIONS(469), 1, sym__backtick_identifier, - STATE(3479), 1, - sym_simple_identifier, - STATE(3719), 1, + ACTIONS(10096), 1, + anon_sym_class, + STATE(823), 1, sym__lexical_identifier, - STATE(3871), 1, - sym__simple_user_type, + STATE(1073), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9646), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664738,21 +645713,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206234] = 7, - ACTIONS(9466), 1, + [196941] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2904), 1, + ACTIONS(10098), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2945), 1, + STATE(9143), 1, sym_simple_identifier, - STATE(3136), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9470), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664760,21 +645735,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206263] = 7, - ACTIONS(8824), 1, + [196970] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10476), 1, + ACTIONS(10100), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9660), 1, + STATE(9306), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664782,21 +645757,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206292] = 7, - ACTIONS(9394), 1, + [196999] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(4650), 1, - sym_simple_identifier, - STATE(4657), 1, + ACTIONS(10102), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4697), 1, - sym__simple_user_type, + STATE(9179), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9398), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664804,21 +645779,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206321] = 7, - ACTIONS(9722), 1, + [197028] = 7, + ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(9730), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - STATE(7446), 1, + STATE(8325), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(7499), 1, + STATE(8373), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9728), 7, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664826,21 +645801,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206350] = 7, - ACTIONS(211), 1, + [197057] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10478), 1, - anon_sym_class, - STATE(3032), 1, + ACTIONS(10104), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3517), 1, + STATE(9381), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664848,18 +645823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206379] = 5, - ACTIONS(10480), 1, + [197086] = 5, + ACTIONS(10106), 1, anon_sym_DOT, - STATE(8239), 1, + STATE(7923), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 2, + ACTIONS(4195), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4225), 8, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664868,18 +645843,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [206404] = 5, - ACTIONS(10483), 1, - anon_sym_DOT, - STATE(6761), 1, - aux_sym_user_type_repeat1, + [197111] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8564), 1, + sym_simple_identifier, + STATE(9584), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4202), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664887,19 +645865,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197140] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [206429] = 5, - ACTIONS(10486), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10109), 1, anon_sym_DOT, - STATE(8241), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9437), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4225), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664907,19 +645887,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197169] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [206454] = 5, - ACTIONS(10489), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10111), 1, anon_sym_DOT, - STATE(6761), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9180), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4202), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664927,19 +645909,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197198] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [206479] = 5, - ACTIONS(10492), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10113), 1, anon_sym_DOT, - STATE(8243), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9375), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4225), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664947,19 +645931,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197227] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [206504] = 5, - ACTIONS(10495), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10115), 1, anon_sym_DOT, - STATE(6761), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9182), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4202), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664967,19 +645953,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197256] = 7, + ACTIONS(9258), 1, sym__alpha_identifier, - [206529] = 5, - ACTIONS(10498), 1, - anon_sym_DOT, - STATE(8245), 1, - aux_sym_user_type_repeat1, + ACTIONS(9266), 1, + sym__backtick_identifier, + STATE(2826), 1, + sym_simple_identifier, + STATE(2853), 1, + sym__lexical_identifier, + STATE(3014), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4225), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -664987,19 +645975,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197285] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [206554] = 5, - ACTIONS(10501), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10117), 1, anon_sym_DOT, - STATE(6761), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9369), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4202), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665007,22 +645997,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197314] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [206579] = 7, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(10119), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8803), 1, + STATE(9195), 1, sym_simple_identifier, - STATE(9192), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665030,21 +646019,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206608] = 7, - ACTIONS(7), 1, + [197343] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(4726), 1, + ACTIONS(10121), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4770), 1, + STATE(9196), 1, sym_simple_identifier, - STATE(4973), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665052,21 +646041,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206637] = 7, - ACTIONS(515), 1, + [197372] = 7, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(2840), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(2928), 1, + STATE(3021), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665074,18 +646063,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206666] = 5, - ACTIONS(10504), 1, + [197401] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10123), 1, anon_sym_DOT, - STATE(8218), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9365), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4225), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665093,22 +646085,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197430] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [206691] = 7, - ACTIONS(9430), 1, - sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5842), 1, + ACTIONS(10125), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8786), 1, + STATE(9197), 1, sym_simple_identifier, - STATE(8788), 1, - sym_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665116,21 +646107,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206720] = 7, - ACTIONS(8824), 1, + [197459] = 7, + ACTIONS(9434), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9442), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(5660), 1, sym__lexical_identifier, - STATE(8803), 1, + STATE(5684), 1, sym_simple_identifier, - STATE(10114), 1, - sym_variable_declaration, + STATE(5706), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9440), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665138,21 +646129,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206749] = 7, - ACTIONS(8824), 1, + [197488] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10507), 1, - anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9391), 1, + STATE(8564), 1, sym_simple_identifier, + STATE(8822), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665160,21 +646151,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206778] = 7, - ACTIONS(9404), 1, + [197517] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9412), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5848), 1, - sym_simple_identifier, - STATE(5860), 1, - sym__simple_user_type, - STATE(5867), 1, + ACTIONS(10127), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9202), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9408), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665182,21 +646173,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206807] = 7, - ACTIONS(8824), 1, + [197546] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10509), 1, + ACTIONS(10129), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9392), 1, + STATE(9203), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665204,21 +646195,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206836] = 7, - ACTIONS(8824), 1, + [197575] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10511), 1, + ACTIONS(10131), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9390), 1, + STATE(9348), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665226,21 +646217,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206865] = 7, - ACTIONS(8824), 1, + [197604] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10513), 1, + ACTIONS(10133), 1, anon_sym_DOT, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9582), 1, + STATE(9208), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665248,21 +646239,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206894] = 7, - ACTIONS(9744), 1, + [197633] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9752), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5976), 1, - sym_simple_identifier, - STATE(6004), 1, + ACTIONS(10135), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6041), 1, - sym__simple_user_type, + STATE(9216), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9750), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665270,21 +646261,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206923] = 7, - ACTIONS(211), 1, + [197662] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(3022), 1, - sym_simple_identifier, - STATE(3032), 1, + ACTIONS(10137), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3059), 1, - sym__simple_user_type, + STATE(9335), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665292,21 +646283,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206952] = 7, - ACTIONS(9430), 1, + [197691] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5842), 1, + ACTIONS(10139), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8786), 1, + STATE(9340), 1, sym_simple_identifier, - STATE(9421), 1, - sym_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665314,18 +646305,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206981] = 5, - ACTIONS(10515), 1, + [197720] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10141), 1, anon_sym_DOT, - STATE(6761), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9338), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4202), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665333,19 +646327,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197749] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [207006] = 5, - ACTIONS(10518), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10143), 1, anon_sym_DOT, - STATE(8263), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9331), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4225), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665353,22 +646349,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197778] = 7, + ACTIONS(557), 1, sym__alpha_identifier, - [207031] = 7, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(637), 1, sym__backtick_identifier, - STATE(3366), 1, + ACTIONS(10145), 1, + anon_sym_class, + STATE(2791), 1, sym__lexical_identifier, - STATE(3400), 1, + STATE(3140), 1, sym_simple_identifier, - STATE(3591), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665376,18 +646371,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207060] = 5, - ACTIONS(10521), 1, + [197807] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10147), 1, anon_sym_DOT, - STATE(6761), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9218), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4202), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665395,22 +646393,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197836] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [207085] = 7, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10524), 1, - anon_sym_class, - STATE(4726), 1, + ACTIONS(10149), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5391), 1, + STATE(9228), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665418,21 +646415,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207114] = 7, - ACTIONS(9386), 1, + [197865] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9392), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(8591), 1, - sym_simple_identifier, - STATE(8598), 1, + ACTIONS(10151), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8665), 1, - sym__simple_user_type, + STATE(9235), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9388), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665440,21 +646437,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207143] = 7, - ACTIONS(8824), 1, + [197894] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(10153), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6705), 1, - sym__simple_user_type, - STATE(6750), 1, + STATE(9328), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665462,19 +646459,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207172] = 6, - ACTIONS(8824), 1, + [197923] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(10155), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(9403), 1, + STATE(9236), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665482,19 +646481,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207198] = 6, - ACTIONS(10526), 1, + [197952] = 7, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(637), 1, sym__backtick_identifier, - STATE(2450), 1, - sym_simple_identifier, - STATE(3305), 1, + STATE(2791), 1, sym__lexical_identifier, + STATE(2803), 1, + sym_simple_identifier, + STATE(2818), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665502,19 +646503,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207224] = 6, - ACTIONS(8824), 1, + [197981] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(10157), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(9149), 1, + STATE(9324), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665522,55 +646525,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207250] = 4, - ACTIONS(10532), 1, - anon_sym_DOT, - STATE(8270), 1, - aux_sym_user_type_repeat1, + [198010] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 9, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - anon_sym_while, - [207272] = 4, - ACTIONS(10535), 1, + ACTIONS(4212), 4, + anon_sym_LPAREN, anon_sym_DOT, - STATE(8270), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4204), 9, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_AMP, sym__quest, - anon_sym_DASH_GT, - anon_sym_while, - [207294] = 6, - ACTIONS(10526), 1, + sym__backtick_identifier, + ACTIONS(4210), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [198031] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1384), 1, - sym_simple_identifier, - STATE(3305), 1, + ACTIONS(10159), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9239), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665578,19 +646565,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207320] = 6, - ACTIONS(8824), 1, + [198060] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(10161), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(9308), 1, + STATE(9321), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665598,19 +646587,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207346] = 6, - ACTIONS(9430), 1, - sym__alpha_identifier, - ACTIONS(9434), 1, - sym__backtick_identifier, - STATE(5540), 1, - sym_simple_identifier, - STATE(5842), 1, - sym__lexical_identifier, + [198089] = 5, + ACTIONS(10163), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + ACTIONS(4155), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665618,19 +646606,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207372] = 6, - ACTIONS(10537), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + [198114] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(409), 1, - sym_simple_identifier, - STATE(913), 1, + ACTIONS(10166), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9270), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665638,19 +646629,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207398] = 6, - ACTIONS(10537), 1, + [198143] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(421), 1, - sym_simple_identifier, - STATE(913), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(8564), 1, + sym_simple_identifier, + STATE(8967), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665658,19 +646651,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207424] = 6, - ACTIONS(10537), 1, - sym__alpha_identifier, - ACTIONS(10541), 1, - sym__backtick_identifier, - STATE(425), 1, - sym_simple_identifier, - STATE(913), 1, - sym__lexical_identifier, + [198172] = 5, + ACTIONS(10168), 1, + anon_sym_DOT, + STATE(7977), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665678,19 +646670,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207450] = 6, - ACTIONS(10537), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + [198197] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(426), 1, - sym_simple_identifier, - STATE(913), 1, + ACTIONS(10171), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665698,19 +646693,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207476] = 6, - ACTIONS(7), 1, + [198226] = 7, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, - STATE(4726), 1, + ACTIONS(10173), 1, + anon_sym_class, + STATE(4534), 1, sym__lexical_identifier, - STATE(5374), 1, + STATE(4756), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665718,19 +646715,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207502] = 6, - ACTIONS(10537), 1, + [198255] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(411), 1, - sym_simple_identifier, - STATE(913), 1, + ACTIONS(10175), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9172), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665738,19 +646737,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207528] = 6, - ACTIONS(10537), 1, + [198284] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(571), 1, - sym_simple_identifier, - STATE(913), 1, + ACTIONS(10177), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9315), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665758,19 +646759,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207554] = 6, - ACTIONS(10526), 1, + [198313] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1377), 1, - sym_simple_identifier, - STATE(3305), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(8564), 1, + sym_simple_identifier, + STATE(9425), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665778,19 +646781,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207580] = 6, - ACTIONS(10537), 1, + [198342] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(572), 1, - sym_simple_identifier, - STATE(913), 1, + ACTIONS(10179), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9314), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665798,19 +646803,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207606] = 6, - ACTIONS(431), 1, + [198371] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(829), 1, + ACTIONS(10181), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(1059), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665818,19 +646825,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207632] = 6, - ACTIONS(10537), 1, + [198400] = 7, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - STATE(577), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(913), 1, + STATE(4545), 1, sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665838,19 +646847,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207658] = 6, - ACTIONS(10537), 1, + [198429] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(578), 1, - sym_simple_identifier, - STATE(913), 1, + ACTIONS(10183), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9097), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665858,19 +646869,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207684] = 6, - ACTIONS(10537), 1, + [198458] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(581), 1, - sym_simple_identifier, - STATE(913), 1, + ACTIONS(10185), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9313), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665878,19 +646891,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207710] = 6, - ACTIONS(10526), 1, + [198487] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2243), 1, - sym_simple_identifier, - STATE(3305), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(8564), 1, + sym_simple_identifier, + STATE(8806), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665898,19 +646913,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207736] = 6, - ACTIONS(10526), 1, - sym__alpha_identifier, - ACTIONS(10530), 1, - sym__backtick_identifier, - STATE(2244), 1, - sym_simple_identifier, - STATE(3305), 1, - sym__lexical_identifier, + [198516] = 5, + ACTIONS(10187), 1, + anon_sym_DOT, + STATE(8012), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665918,19 +646932,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207762] = 6, - ACTIONS(515), 1, sym__alpha_identifier, - ACTIONS(595), 1, + [198541] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2868), 1, + ACTIONS(10190), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4183), 1, + STATE(9261), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665938,19 +646955,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207788] = 6, - ACTIONS(10526), 1, + [198570] = 7, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(2247), 1, - sym_simple_identifier, - STATE(3305), 1, + ACTIONS(10192), 1, + anon_sym_class, + STATE(2955), 1, sym__lexical_identifier, + STATE(3583), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665958,19 +646977,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207814] = 6, - ACTIONS(10543), 1, + [198599] = 7, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(2591), 1, - sym_simple_identifier, - STATE(3741), 1, + ACTIONS(10194), 1, + anon_sym_class, + STATE(3332), 1, sym__lexical_identifier, + STATE(3960), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665978,19 +646999,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207840] = 6, - ACTIONS(10543), 1, + [198628] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2587), 1, - sym_simple_identifier, - STATE(3741), 1, + ACTIONS(10196), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9380), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -665998,19 +647021,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207866] = 6, - ACTIONS(10526), 1, - sym__alpha_identifier, - ACTIONS(10530), 1, - sym__backtick_identifier, - STATE(1376), 1, - sym_simple_identifier, - STATE(3305), 1, - sym__lexical_identifier, + [198657] = 5, + ACTIONS(10198), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(4155), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666018,19 +647040,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207892] = 6, - ACTIONS(8824), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + [198682] = 7, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(9058), 1, + STATE(4683), 1, sym_simple_identifier, + STATE(4857), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666038,19 +647063,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207918] = 6, - ACTIONS(10526), 1, + [198711] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2249), 1, - sym_simple_identifier, - STATE(3305), 1, + ACTIONS(10201), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9413), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666058,19 +647085,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207944] = 6, - ACTIONS(515), 1, + [198740] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2952), 1, + STATE(8564), 1, sym_simple_identifier, + STATE(9092), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666078,19 +647107,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207970] = 6, - ACTIONS(8824), 1, - sym__alpha_identifier, - ACTIONS(8854), 1, - sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9657), 1, - sym_simple_identifier, + [198769] = 5, + ACTIONS(10203), 1, + anon_sym_DOT, + STATE(7997), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666098,19 +647126,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [207996] = 6, - ACTIONS(10526), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + [198794] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2258), 1, - sym_simple_identifier, - STATE(3305), 1, + ACTIONS(10206), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9459), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666118,19 +647149,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208022] = 6, - ACTIONS(10543), 1, + [198823] = 11, + ACTIONS(10208), 1, + anon_sym_typealias, + ACTIONS(10212), 1, + anon_sym_enum, + ACTIONS(10214), 1, + anon_sym_constructor, + ACTIONS(10218), 1, + anon_sym_companion, + ACTIONS(10220), 1, + anon_sym_object, + ACTIONS(10222), 1, + anon_sym_fun, + ACTIONS(10224), 1, + anon_sym_get, + ACTIONS(10226), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10210), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10216), 2, + anon_sym_val, + anon_sym_var, + [198860] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2358), 1, - sym_simple_identifier, - STATE(3741), 1, + ACTIONS(10228), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9165), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666138,19 +647197,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208048] = 6, - ACTIONS(10543), 1, + [198889] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2354), 1, - sym_simple_identifier, - STATE(3741), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9022), 1, + sym_parameter, + STATE(9513), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666158,19 +647219,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208074] = 6, - ACTIONS(211), 1, + [198918] = 7, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(469), 1, sym__backtick_identifier, - STATE(3032), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3904), 1, + STATE(824), 1, sym_simple_identifier, + STATE(858), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666178,19 +647241,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208100] = 6, - ACTIONS(10543), 1, + [198947] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2305), 1, - sym_simple_identifier, - STATE(3741), 1, + ACTIONS(10230), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9304), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666198,19 +647263,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208126] = 6, - ACTIONS(10543), 1, - sym__alpha_identifier, - ACTIONS(10547), 1, - sym__backtick_identifier, - STATE(2332), 1, - sym_simple_identifier, - STATE(3741), 1, - sym__lexical_identifier, + [198976] = 5, + ACTIONS(10232), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(4155), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666218,19 +647282,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208152] = 6, - ACTIONS(10543), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + [199001] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2298), 1, - sym_simple_identifier, - STATE(3741), 1, + ACTIONS(10235), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9361), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666238,19 +647305,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208178] = 6, - ACTIONS(345), 1, + [199030] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(3366), 1, + ACTIONS(10237), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4128), 1, + STATE(9116), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666258,19 +647327,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208204] = 6, - ACTIONS(10526), 1, + [199059] = 7, + ACTIONS(9484), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(9492), 1, sym__backtick_identifier, - STATE(1368), 1, + STATE(7150), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(7215), 1, sym__lexical_identifier, + STATE(7279), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(9490), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199088] = 5, + ACTIONS(10239), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4155), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666278,19 +647368,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208230] = 6, - ACTIONS(10526), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + [199113] = 7, + ACTIONS(1724), 1, + sym__alpha_identifier, + ACTIONS(1788), 1, sym__backtick_identifier, - STATE(1391), 1, + STATE(5340), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(5458), 1, sym__lexical_identifier, + STATE(5503), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(3092), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666298,19 +647391,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208256] = 6, - ACTIONS(8824), 1, + [199142] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(10242), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(9090), 1, + STATE(9227), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666318,19 +647413,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208282] = 6, - ACTIONS(8824), 1, + [199171] = 7, + ACTIONS(9448), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9456), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9651), 1, + STATE(7266), 1, sym_simple_identifier, + STATE(7314), 1, + sym__lexical_identifier, + STATE(7501), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9454), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199200] = 5, + ACTIONS(10244), 1, + anon_sym_DOT, + STATE(8022), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666338,19 +647454,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208308] = 6, - ACTIONS(10549), 1, sym__alpha_identifier, - ACTIONS(10553), 1, + [199225] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(8951), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9075), 1, + STATE(8564), 1, sym_simple_identifier, + STATE(9748), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10551), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666358,19 +647477,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208334] = 6, - ACTIONS(8824), 1, + [199254] = 7, + ACTIONS(9248), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(9109), 1, + STATE(5617), 1, sym_simple_identifier, + STATE(5649), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666378,19 +647499,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208360] = 6, - ACTIONS(10526), 1, + [199283] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2605), 1, - sym_simple_identifier, - STATE(3305), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(8564), 1, + sym_simple_identifier, + STATE(8929), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666398,19 +647521,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208386] = 6, - ACTIONS(8824), 1, + [199312] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(10247), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(9101), 1, + STATE(9259), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666418,19 +647543,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208412] = 6, - ACTIONS(8824), 1, + [199341] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(10249), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(9154), 1, + STATE(9435), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666438,19 +647565,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208438] = 6, - ACTIONS(10543), 1, - sym__alpha_identifier, - ACTIONS(10547), 1, - sym__backtick_identifier, - STATE(2267), 1, - sym_simple_identifier, - STATE(3741), 1, - sym__lexical_identifier, + [199370] = 5, + ACTIONS(10251), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(4155), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666458,19 +647584,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208464] = 6, - ACTIONS(10543), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + [199395] = 7, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(2266), 1, - sym_simple_identifier, - STATE(3741), 1, + ACTIONS(10254), 1, + anon_sym_class, + STATE(3332), 1, sym__lexical_identifier, + STATE(3994), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666478,19 +647607,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208490] = 6, - ACTIONS(8824), 1, + [199424] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + ACTIONS(10256), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(9174), 1, + STATE(9305), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666498,19 +647629,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208516] = 6, - ACTIONS(10537), 1, + [199453] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(398), 1, - sym_simple_identifier, - STATE(913), 1, + ACTIONS(10258), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, + STATE(9122), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666518,19 +647651,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208542] = 6, - ACTIONS(8824), 1, + [199482] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9644), 1, + STATE(9385), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666538,19 +647671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208568] = 6, - ACTIONS(9430), 1, + [199508] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(5498), 1, + STATE(577), 1, sym_simple_identifier, - STATE(5842), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666558,19 +647691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208594] = 6, - ACTIONS(8824), 1, + [199534] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9188), 1, + STATE(8833), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666578,19 +647711,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208620] = 6, - ACTIONS(8824), 1, + [199560] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(2308), 1, + sym_simple_identifier, + STATE(3630), 1, sym__lexical_identifier, - STATE(9226), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10268), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199586] = 6, + ACTIONS(10260), 1, + sym__alpha_identifier, + ACTIONS(10264), 1, + sym__backtick_identifier, + STATE(576), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666598,19 +647751,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208646] = 6, - ACTIONS(8824), 1, + [199612] = 6, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9245), 1, + STATE(4595), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666618,19 +647771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208672] = 6, - ACTIONS(10526), 1, + [199638] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(1385), 1, + STATE(2576), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666638,19 +647791,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208698] = 6, - ACTIONS(10526), 1, + [199664] = 10, + ACTIONS(1646), 1, + anon_sym_LBRACE, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(3656), 1, + anon_sym_LPAREN, + ACTIONS(3670), 1, + sym_label, + STATE(2976), 1, + sym_value_arguments, + STATE(3981), 1, + sym_annotated_lambda, + STATE(4039), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8352), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [199698] = 6, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(1378), 1, + STATE(5328), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(5685), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666658,19 +647835,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208724] = 6, - ACTIONS(9430), 1, + [199724] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5509), 1, - sym_simple_identifier, - STATE(5842), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9259), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666678,19 +647855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208750] = 6, - ACTIONS(10526), 1, + [199750] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(1352), 1, + STATE(2262), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666698,19 +647875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208776] = 6, - ACTIONS(10526), 1, + [199776] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(1348), 1, + STATE(1383), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666718,19 +647895,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208802] = 6, - ACTIONS(8824), 1, + [199802] = 4, + ACTIONS(10278), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4168), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [199824] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9459), 1, + STATE(9305), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666738,19 +647933,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208828] = 6, - ACTIONS(10537), 1, + [199850] = 4, + ACTIONS(10281), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4155), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [199872] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(401), 1, + STATE(399), 1, sym_simple_identifier, - STATE(913), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666758,19 +647971,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208854] = 6, - ACTIONS(8824), 1, + [199898] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9262), 1, + STATE(9226), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666778,19 +647991,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208880] = 6, - ACTIONS(10526), 1, + [199924] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(1405), 1, + STATE(384), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666798,19 +648011,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208906] = 6, - ACTIONS(115), 1, + [199950] = 10, + ACTIONS(1586), 1, + anon_sym_LBRACE, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(3576), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + sym_label, + STATE(2795), 1, + sym_value_arguments, + STATE(3370), 1, + sym_lambda_literal, + STATE(3476), 1, + sym_annotated_lambda, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8350), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [199984] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(4710), 1, + STATE(1359), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666818,19 +648055,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208932] = 6, - ACTIONS(211), 1, + [200010] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(3032), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3194), 1, + STATE(9330), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666838,19 +648075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208958] = 6, - ACTIONS(8824), 1, + [200036] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9278), 1, + STATE(8809), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666858,19 +648095,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [208984] = 6, - ACTIONS(10543), 1, + [200062] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(2742), 1, + STATE(2290), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666878,19 +648115,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209010] = 6, - ACTIONS(10543), 1, + [200088] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2741), 1, - sym_simple_identifier, - STATE(3741), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9129), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666898,19 +648135,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209036] = 6, - ACTIONS(8824), 1, + [200114] = 6, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9639), 1, + STATE(5331), 1, sym_simple_identifier, + STATE(5685), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666918,19 +648155,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209062] = 6, - ACTIONS(10543), 1, + [200140] = 6, + ACTIONS(10283), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10287), 1, sym__backtick_identifier, - STATE(2725), 1, + STATE(2195), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3680), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10285), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666938,19 +648175,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209088] = 6, - ACTIONS(8824), 1, + [200166] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9635), 1, + STATE(1358), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666958,19 +648195,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209114] = 6, - ACTIONS(10543), 1, + [200192] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2723), 1, + STATE(1323), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666978,19 +648215,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209140] = 6, - ACTIONS(10555), 1, + [200218] = 6, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(10559), 1, + ACTIONS(293), 1, sym__backtick_identifier, - STATE(2287), 1, - sym_simple_identifier, - STATE(3791), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(5290), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10557), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -666998,19 +648235,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209166] = 6, - ACTIONS(10537), 1, + [200244] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(404), 1, - sym_simple_identifier, - STATE(913), 1, + STATE(4612), 1, sym__lexical_identifier, + STATE(5510), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667018,19 +648255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209192] = 6, - ACTIONS(10543), 1, + [200270] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(2601), 1, + STATE(393), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667038,19 +648275,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209218] = 6, - ACTIONS(8824), 1, + [200296] = 6, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9082), 1, + STATE(2940), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667058,19 +648295,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209244] = 6, - ACTIONS(10543), 1, + [200322] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2596), 1, + STATE(1304), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667078,19 +648315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209270] = 6, - ACTIONS(10543), 1, + [200348] = 6, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(293), 1, sym__backtick_identifier, - STATE(2717), 1, - sym_simple_identifier, - STATE(3741), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(5554), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667098,19 +648335,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209296] = 6, - ACTIONS(431), 1, + [200374] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(829), 1, - sym__lexical_identifier, - STATE(890), 1, + STATE(2597), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667118,19 +648355,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209322] = 6, - ACTIONS(10537), 1, + [200400] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(400), 1, + STATE(1303), 1, sym_simple_identifier, - STATE(913), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667138,19 +648375,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209348] = 6, - ACTIONS(10537), 1, + [200426] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(403), 1, + STATE(2563), 1, sym_simple_identifier, - STATE(913), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667158,19 +648395,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209374] = 6, - ACTIONS(8824), 1, + [200452] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9613), 1, + STATE(2599), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667178,19 +648415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209400] = 6, - ACTIONS(8824), 1, + [200478] = 6, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(9442), 1, + STATE(4211), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667198,19 +648435,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209426] = 6, - ACTIONS(10537), 1, + [200504] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(392), 1, + STATE(2595), 1, sym_simple_identifier, - STATE(913), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667218,19 +648455,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209452] = 6, - ACTIONS(10543), 1, + [200530] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(2265), 1, + STATE(2590), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667238,19 +648475,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209478] = 6, - ACTIONS(10537), 1, + [200556] = 6, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + STATE(823), 1, + sym__lexical_identifier, + STATE(867), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1664), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200582] = 6, + ACTIONS(10266), 1, + sym__alpha_identifier, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(391), 1, + STATE(2584), 1, sym_simple_identifier, - STATE(913), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667258,19 +648515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209504] = 6, - ACTIONS(10543), 1, + [200608] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(2624), 1, + STATE(2582), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667278,19 +648535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209530] = 6, - ACTIONS(8824), 1, + [200634] = 6, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(9611), 1, + STATE(4052), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667298,19 +648555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209556] = 6, - ACTIONS(10537), 1, + [200660] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(390), 1, + STATE(2564), 1, sym_simple_identifier, - STATE(913), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667318,19 +648575,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209582] = 6, - ACTIONS(8824), 1, + [200686] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9435), 1, + STATE(2415), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667338,19 +648595,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209608] = 6, - ACTIONS(8824), 1, + [200712] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9681), 1, + STATE(1351), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667358,19 +648615,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209634] = 6, - ACTIONS(8824), 1, + [200738] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9604), 1, + STATE(1317), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667378,19 +648635,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209660] = 6, - ACTIONS(8824), 1, + [200764] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(2416), 1, + sym_simple_identifier, + STATE(3193), 1, sym__lexical_identifier, - STATE(9705), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10274), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200790] = 6, + ACTIONS(10266), 1, + sym__alpha_identifier, + ACTIONS(10270), 1, + sym__backtick_identifier, + STATE(2585), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667398,19 +648675,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209686] = 6, - ACTIONS(8824), 1, + [200816] = 6, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9704), 1, + STATE(3735), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667418,43 +648695,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209712] = 10, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(1838), 1, - anon_sym_LBRACE, - ACTIONS(6828), 1, - anon_sym_LPAREN, - ACTIONS(6834), 1, - sym_label, - STATE(4644), 1, - sym_value_arguments, - STATE(4864), 1, - sym_annotated_lambda, - STATE(5013), 1, - sym_lambda_literal, + [200842] = 6, + ACTIONS(10272), 1, + sym__alpha_identifier, + ACTIONS(10276), 1, + sym__backtick_identifier, + STATE(2387), 1, + sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6131), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8615), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [209746] = 6, - ACTIONS(8824), 1, + ACTIONS(10274), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200868] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9703), 1, + STATE(417), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667462,19 +648735,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209772] = 6, - ACTIONS(7), 1, + [200894] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(4726), 1, + STATE(413), 1, + sym_simple_identifier, + STATE(877), 1, sym__lexical_identifier, - STATE(5676), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10262), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200920] = 6, + ACTIONS(10260), 1, + sym__alpha_identifier, + ACTIONS(10264), 1, + sym__backtick_identifier, + STATE(408), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667482,19 +648775,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209798] = 6, - ACTIONS(8824), 1, + [200946] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(536), 1, + sym_simple_identifier, + STATE(877), 1, sym__lexical_identifier, - STATE(9599), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10262), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200972] = 6, + ACTIONS(10260), 1, + sym__alpha_identifier, + ACTIONS(10264), 1, + sym__backtick_identifier, + STATE(558), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667502,19 +648815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209824] = 6, - ACTIONS(8824), 1, + [200998] = 6, + ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(9697), 1, + STATE(5151), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667522,19 +648835,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209850] = 6, - ACTIONS(8824), 1, + [201024] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(416), 1, + sym_simple_identifier, + STATE(877), 1, sym__lexical_identifier, - STATE(9695), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10262), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201050] = 6, + ACTIONS(10260), 1, + sym__alpha_identifier, + ACTIONS(10264), 1, + sym__backtick_identifier, + STATE(542), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667542,19 +648875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209876] = 6, - ACTIONS(8824), 1, + [201076] = 6, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(4228), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667562,19 +648895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209902] = 6, - ACTIONS(8824), 1, + [201102] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9694), 1, + STATE(539), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667582,19 +648915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209928] = 6, - ACTIONS(8824), 1, + [201128] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9682), 1, + STATE(9122), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667602,19 +648935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209954] = 6, - ACTIONS(10543), 1, + [201154] = 6, + ACTIONS(10283), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10287), 1, sym__backtick_identifier, - STATE(2260), 1, + STATE(2192), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3680), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10285), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667622,19 +648955,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [209980] = 6, - ACTIONS(8824), 1, + [201180] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9677), 1, + STATE(552), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667642,19 +648975,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210006] = 6, - ACTIONS(8824), 1, + [201206] = 6, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(9673), 1, + STATE(1387), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667662,19 +648995,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210032] = 6, - ACTIONS(8824), 1, + [201232] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(541), 1, + sym_simple_identifier, + STATE(877), 1, sym__lexical_identifier, - STATE(9669), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10262), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201258] = 6, + ACTIONS(10266), 1, + sym__alpha_identifier, + ACTIONS(10270), 1, + sym__backtick_identifier, + STATE(2641), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667682,19 +649035,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210058] = 6, - ACTIONS(8824), 1, + [201284] = 6, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(469), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(9384), 1, + STATE(1015), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667702,19 +649055,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210084] = 6, - ACTIONS(8824), 1, + [201310] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(592), 1, + sym_simple_identifier, + STATE(877), 1, sym__lexical_identifier, - STATE(9664), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10262), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201336] = 6, + ACTIONS(10260), 1, + sym__alpha_identifier, + ACTIONS(10264), 1, + sym__backtick_identifier, + STATE(578), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667722,43 +649095,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210110] = 10, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(7165), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - sym_label, - STATE(4663), 1, - sym_value_arguments, - STATE(5302), 1, - sym_lambda_literal, - STATE(5387), 1, - sym_annotated_lambda, + [201362] = 6, + ACTIONS(10260), 1, + sym__alpha_identifier, + ACTIONS(10264), 1, + sym__backtick_identifier, + STATE(540), 1, + sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6131), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8622), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [210144] = 6, - ACTIONS(8824), 1, + ACTIONS(10262), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201388] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(546), 1, + sym_simple_identifier, + STATE(877), 1, sym__lexical_identifier, - STATE(9653), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10262), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201414] = 6, + ACTIONS(10272), 1, + sym__alpha_identifier, + ACTIONS(10276), 1, + sym__backtick_identifier, + STATE(2214), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667766,19 +649155,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210170] = 6, - ACTIONS(8824), 1, + [201440] = 6, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9649), 1, + STATE(4081), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667786,19 +649175,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210196] = 6, - ACTIONS(8824), 1, + [201466] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9648), 1, + STATE(2247), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667806,19 +649195,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210222] = 6, - ACTIONS(8824), 1, + [201492] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9597), 1, + STATE(9292), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667826,19 +649215,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210248] = 6, - ACTIONS(7), 1, + [201518] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(4726), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5773), 1, + STATE(9116), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667846,19 +649235,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210274] = 6, - ACTIONS(10537), 1, + [201544] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(573), 1, + STATE(2206), 1, sym_simple_identifier, - STATE(913), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667866,19 +649255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210300] = 6, - ACTIONS(10537), 1, + [201570] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(389), 1, + STATE(2212), 1, sym_simple_identifier, - STATE(913), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667886,19 +649275,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210326] = 6, - ACTIONS(8824), 1, + [201596] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9595), 1, + STATE(8400), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667906,19 +649295,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210352] = 6, - ACTIONS(10537), 1, + [201622] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(380), 1, + STATE(2662), 1, sym_simple_identifier, - STATE(913), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667926,19 +649315,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210378] = 6, - ACTIONS(8824), 1, + [201648] = 10, + ACTIONS(1658), 1, + anon_sym_LBRACE, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(1736), 1, + anon_sym_LPAREN, + ACTIONS(10289), 1, + sym_label, + STATE(773), 1, + sym_value_arguments, + STATE(1044), 1, + sym_lambda_literal, + STATE(1171), 1, + sym_annotated_lambda, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8342), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [201682] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9718), 1, + STATE(8818), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667946,19 +649359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210404] = 6, - ACTIONS(8824), 1, + [201708] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9593), 1, + STATE(537), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667966,19 +649379,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210430] = 6, - ACTIONS(10543), 1, + [201734] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(2704), 1, + STATE(518), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -667986,19 +649399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210456] = 6, - ACTIONS(8824), 1, + [201760] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9592), 1, + STATE(2291), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668006,19 +649419,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210482] = 6, - ACTIONS(10537), 1, + [201786] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(601), 1, + STATE(538), 1, sym_simple_identifier, - STATE(913), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668026,19 +649439,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210508] = 6, - ACTIONS(8824), 1, + [201812] = 6, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(9727), 1, + STATE(3762), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668046,19 +649459,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210534] = 6, - ACTIONS(8824), 1, + [201838] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9391), 1, + STATE(8917), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668066,19 +649479,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210560] = 6, - ACTIONS(8824), 1, + [201864] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9591), 1, + STATE(2573), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668086,19 +649499,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210586] = 6, - ACTIONS(8824), 1, + [201890] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9740), 1, + STATE(2259), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668106,19 +649519,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210612] = 6, - ACTIONS(10543), 1, + [201916] = 6, + ACTIONS(10283), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10287), 1, sym__backtick_identifier, - STATE(2702), 1, + STATE(2215), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3680), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10285), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668126,19 +649539,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210638] = 6, - ACTIONS(8824), 1, + [201942] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9390), 1, + STATE(9304), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668146,19 +649559,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210664] = 6, - ACTIONS(10526), 1, + [201968] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(2470), 1, + STATE(2282), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668166,19 +649579,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210690] = 6, - ACTIONS(8824), 1, + [201994] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(2252), 1, + sym_simple_identifier, + STATE(3630), 1, sym__lexical_identifier, - STATE(9736), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10268), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202020] = 6, + ACTIONS(10266), 1, + sym__alpha_identifier, + ACTIONS(10270), 1, + sym__backtick_identifier, + STATE(2533), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668186,19 +649619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210716] = 6, - ACTIONS(8824), 1, + [202046] = 6, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(9389), 1, + STATE(4029), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668206,19 +649639,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210742] = 6, - ACTIONS(10543), 1, + [202072] = 4, + ACTIONS(10291), 1, + anon_sym_DOT, + STATE(6592), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4195), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_AMP, + sym__quest, + anon_sym_while, + [202094] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(2240), 1, + STATE(2221), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668226,19 +649677,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210768] = 6, - ACTIONS(8824), 1, + [202120] = 6, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(9640), 1, + STATE(3113), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668246,14 +649697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210794] = 6, - ACTIONS(345), 1, + [202146] = 6, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(3366), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3713), 1, + STATE(4270), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -668266,19 +649717,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210820] = 6, - ACTIONS(8824), 1, + [202172] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9638), 1, + STATE(9718), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668286,19 +649737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210846] = 6, - ACTIONS(10537), 1, + [202198] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(584), 1, + STATE(2405), 1, sym_simple_identifier, - STATE(913), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668306,19 +649757,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210872] = 6, - ACTIONS(8824), 1, + [202224] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8661), 1, + STATE(9165), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668326,19 +649777,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210898] = 6, - ACTIONS(115), 1, + [202250] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(5711), 1, + STATE(395), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668346,19 +649797,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210924] = 6, - ACTIONS(10526), 1, + [202276] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2595), 1, - sym_simple_identifier, - STATE(3305), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(8973), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668366,19 +649817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210950] = 6, - ACTIONS(10526), 1, + [202302] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2593), 1, + STATE(2402), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668386,19 +649837,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [210976] = 6, - ACTIONS(8824), 1, + [202328] = 6, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(9642), 1, + STATE(8548), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668406,19 +649857,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211002] = 6, - ACTIONS(345), 1, + [202354] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(3366), 1, - sym__lexical_identifier, - STATE(4335), 1, + STATE(2653), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668426,19 +649877,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211028] = 6, - ACTIONS(10526), 1, + [202380] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2590), 1, + STATE(2594), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668446,19 +649897,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211054] = 6, - ACTIONS(10526), 1, + [202406] = 4, + ACTIONS(10293), 1, + anon_sym_DOT, + STATE(8040), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4195), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [202428] = 10, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(1904), 1, + anon_sym_LBRACE, + ACTIONS(4593), 1, + anon_sym_LPAREN, + ACTIONS(10295), 1, + sym_label, + STATE(2753), 1, + sym_value_arguments, + STATE(3161), 1, + sym_annotated_lambda, + STATE(3174), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8336), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [202462] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2588), 1, - sym_simple_identifier, - STATE(3305), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(8836), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668466,19 +649959,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211080] = 6, - ACTIONS(10543), 1, + [202488] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(2622), 1, + STATE(2240), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668486,19 +649979,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211106] = 6, - ACTIONS(10543), 1, + [202514] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2609), 1, - sym_simple_identifier, - STATE(3741), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9413), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668506,19 +649999,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211132] = 6, - ACTIONS(10526), 1, + [202540] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2465), 1, + STATE(2596), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(10274), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202566] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9965), 3, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(9963), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668526,19 +650035,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211158] = 6, - ACTIONS(10543), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + [202586] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2606), 1, - sym_simple_identifier, - STATE(3741), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9380), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668546,19 +650056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211184] = 6, - ACTIONS(211), 1, + [202612] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(3032), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4188), 1, + STATE(9345), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668566,19 +650076,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211210] = 6, - ACTIONS(8824), 1, + [202638] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9722), 1, + STATE(8840), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668586,19 +650096,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211236] = 6, - ACTIONS(10543), 1, + [202664] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2592), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9339), 1, sym_simple_identifier, - STATE(3741), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202690] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, sym__lexical_identifier, + STATE(8851), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668606,19 +650136,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211262] = 6, - ACTIONS(10543), 1, + [202716] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2301), 1, + STATE(2409), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668626,19 +650156,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211288] = 6, - ACTIONS(10537), 1, + [202742] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(427), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8859), 1, sym_simple_identifier, - STATE(913), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202768] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, sym__lexical_identifier, + STATE(8871), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668646,19 +650196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211314] = 6, - ACTIONS(10543), 1, + [202794] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2586), 1, + STATE(2386), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668666,19 +650216,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211340] = 6, - ACTIONS(10537), 1, + [202820] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(408), 1, + STATE(2654), 1, sym_simple_identifier, - STATE(913), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668686,19 +650236,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211366] = 6, - ACTIONS(10526), 1, + [202846] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2469), 1, - sym_simple_identifier, - STATE(3305), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9250), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668706,19 +650256,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211392] = 6, - ACTIONS(8824), 1, + [202872] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9701), 1, + STATE(9312), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668726,19 +650276,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211418] = 6, - ACTIONS(10526), 1, + [202898] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2460), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9097), 1, sym_simple_identifier, - STATE(3305), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202924] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, sym__lexical_identifier, + STATE(9197), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668746,19 +650316,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211444] = 6, - ACTIONS(8824), 1, + [202950] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(10134), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668766,19 +650336,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211470] = 6, - ACTIONS(10526), 1, + [202976] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2449), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9313), 1, sym_simple_identifier, - STATE(3305), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203002] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, sym__lexical_identifier, + STATE(9238), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668786,19 +650376,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211496] = 6, - ACTIONS(8824), 1, + [203028] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9654), 1, + STATE(8872), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668806,19 +650396,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211522] = 6, - ACTIONS(8824), 1, + [203054] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9698), 1, + STATE(9314), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668826,19 +650416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211548] = 6, - ACTIONS(10526), 1, + [203080] = 6, + ACTIONS(10297), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(10301), 1, sym__backtick_identifier, - STATE(2467), 1, + STATE(8695), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(8761), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(10299), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668846,19 +650436,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211574] = 6, - ACTIONS(515), 1, + [203106] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3827), 1, + STATE(9316), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668866,19 +650456,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211600] = 6, - ACTIONS(8824), 1, + [203132] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9689), 1, + STATE(8874), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668886,19 +650476,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211626] = 6, - ACTIONS(10526), 1, + [203158] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(2454), 1, + STATE(4612), 1, + sym__lexical_identifier, + STATE(5265), 1, sym_simple_identifier, - STATE(3305), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1920), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203184] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668906,19 +650516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211652] = 6, - ACTIONS(9754), 1, + [203210] = 6, + ACTIONS(10283), 1, sym__alpha_identifier, - ACTIONS(9762), 1, + ACTIONS(10287), 1, sym__backtick_identifier, - STATE(5590), 1, + STATE(2223), 1, sym_simple_identifier, - STATE(5828), 1, + STATE(3680), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9760), 7, + ACTIONS(10285), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668926,19 +650536,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211678] = 6, - ACTIONS(10526), 1, + [203236] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2458), 1, - sym_simple_identifier, - STATE(3305), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9270), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668946,19 +650556,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211704] = 6, - ACTIONS(10537), 1, + [203262] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(548), 1, + STATE(2598), 1, sym_simple_identifier, - STATE(913), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -668966,37 +650576,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211730] = 4, - ACTIONS(10227), 1, - sym__quest, - STATE(6863), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4329), 9, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - anon_sym_DASH_GT, - anon_sym_while, - [211752] = 6, - ACTIONS(9430), 1, + [203288] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5842), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8838), 1, + STATE(9240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669004,43 +650596,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211778] = 10, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(1906), 1, - anon_sym_LBRACE, - ACTIONS(4551), 1, - anon_sym_LPAREN, - ACTIONS(10561), 1, - sym_label, - STATE(2805), 1, - sym_value_arguments, - STATE(3173), 1, - sym_lambda_literal, - STATE(3211), 1, - sym_annotated_lambda, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(6131), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8605), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [211812] = 6, - ACTIONS(10537), 1, + [203314] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(538), 1, - sym_simple_identifier, - STATE(913), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9321), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669048,19 +650616,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211838] = 6, - ACTIONS(10537), 1, + [203340] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(546), 1, - sym_simple_identifier, - STATE(913), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9239), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669068,19 +650636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211864] = 6, - ACTIONS(345), 1, + [203366] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(3366), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4379), 1, + STATE(9236), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669088,19 +650656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211890] = 6, - ACTIONS(8824), 1, + [203392] = 6, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(637), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9634), 1, + STATE(3164), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669108,19 +650676,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211916] = 6, - ACTIONS(431), 1, + [203418] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(829), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(1452), 1, + STATE(9326), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669128,19 +650696,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211942] = 6, - ACTIONS(10537), 1, + [203444] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(545), 1, + STATE(419), 1, sym_simple_identifier, - STATE(913), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669148,19 +650716,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211968] = 6, - ACTIONS(10537), 1, + [203470] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(551), 1, - sym_simple_identifier, - STATE(913), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9234), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669168,19 +650736,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [211994] = 6, - ACTIONS(10537), 1, + [203496] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(543), 1, - sym_simple_identifier, - STATE(913), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9328), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669188,19 +650756,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212020] = 6, - ACTIONS(431), 1, + [203522] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(829), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2269), 1, + STATE(9228), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669208,19 +650776,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212046] = 6, - ACTIONS(10526), 1, + [203548] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2656), 1, - sym_simple_identifier, - STATE(3305), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9338), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669228,19 +650796,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212072] = 6, - ACTIONS(10555), 1, + [203574] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10559), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2289), 1, - sym_simple_identifier, - STATE(3791), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9218), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10557), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669248,19 +650816,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212098] = 6, - ACTIONS(10537), 1, + [203600] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(541), 1, - sym_simple_identifier, - STATE(913), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9344), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669268,19 +650836,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212124] = 6, - ACTIONS(10537), 1, + [203626] = 4, + ACTIONS(9961), 1, + sym__quest, + STATE(6738), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4206), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_while, + [203648] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(552), 1, - sym_simple_identifier, - STATE(913), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9331), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669288,19 +650874,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212150] = 6, - ACTIONS(10537), 1, + [203674] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(595), 1, - sym_simple_identifier, - STATE(913), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(8875), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669308,19 +650894,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212176] = 6, - ACTIONS(10526), 1, + [203700] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2654), 1, - sym_simple_identifier, - STATE(3305), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9211), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669328,19 +650914,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212202] = 6, - ACTIONS(10537), 1, + [203726] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(540), 1, - sym_simple_identifier, - STATE(913), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9223), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669348,19 +650934,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212228] = 6, - ACTIONS(10537), 1, + [203752] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(596), 1, - sym_simple_identifier, - STATE(913), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(8878), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669368,19 +650954,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212254] = 6, - ACTIONS(8824), 1, + [203778] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9609), 1, + STATE(9208), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669388,19 +650974,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212280] = 6, - ACTIONS(515), 1, + [203804] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(595), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3255), 1, + STATE(9357), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669408,19 +650994,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212306] = 6, - ACTIONS(10537), 1, + [203830] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(525), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9420), 1, sym_simple_identifier, - STATE(913), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203856] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, sym__lexical_identifier, + STATE(9203), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669428,19 +651034,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212332] = 6, - ACTIONS(8824), 1, + [203882] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9121), 1, + STATE(8885), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669448,19 +651054,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212358] = 6, - ACTIONS(115), 1, + [203908] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(4661), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5462), 1, + STATE(9348), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669468,19 +651074,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212384] = 6, - ACTIONS(10543), 1, + [203934] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(2359), 1, + STATE(403), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669488,19 +651094,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212410] = 6, - ACTIONS(10543), 1, + [203960] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2357), 1, - sym_simple_identifier, - STATE(3741), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9199), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669508,19 +651114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212436] = 6, - ACTIONS(10537), 1, + [203986] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(413), 1, + STATE(2293), 1, sym_simple_identifier, - STATE(913), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669528,19 +651134,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212462] = 6, - ACTIONS(8824), 1, + [204012] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9582), 1, + STATE(402), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669548,19 +651154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212488] = 6, - ACTIONS(10537), 1, + [204038] = 6, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(469), 1, sym__backtick_identifier, - STATE(415), 1, - sym_simple_identifier, - STATE(913), 1, + STATE(823), 1, sym__lexical_identifier, + STATE(2217), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669568,19 +651174,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212514] = 6, - ACTIONS(10543), 1, + [204064] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2300), 1, + STATE(2209), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669588,19 +651194,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212540] = 6, - ACTIONS(8824), 1, + [204090] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9273), 1, + STATE(406), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669608,19 +651214,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212566] = 6, - ACTIONS(9430), 1, + [204116] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5842), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9015), 1, + STATE(9196), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669628,19 +651234,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212592] = 6, - ACTIONS(9754), 1, + [204142] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9762), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5581), 1, - sym_simple_identifier, - STATE(5828), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9365), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9760), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669648,19 +651254,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212618] = 6, - ACTIONS(8824), 1, + [204168] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9733), 1, + STATE(8978), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669668,19 +651274,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212644] = 6, - ACTIONS(10537), 1, + [204194] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10541), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(423), 1, + STATE(2399), 1, sym_simple_identifier, - STATE(913), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10539), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669688,37 +651294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212670] = 4, - ACTIONS(10563), 1, - anon_sym_DOT, - STATE(6752), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4227), 9, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_AMP, - sym__quest, - anon_sym_while, - [212692] = 6, - ACTIONS(9430), 1, + [204220] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(5842), 1, - sym__lexical_identifier, - STATE(9882), 1, + STATE(418), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669726,19 +651314,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212718] = 6, - ACTIONS(10543), 1, + [204246] = 6, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(2306), 1, - sym_simple_identifier, - STATE(3741), 1, + STATE(5685), 1, sym__lexical_identifier, + STATE(9505), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669746,19 +651334,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212744] = 6, - ACTIONS(10543), 1, + [204272] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(2274), 1, + STATE(2618), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669766,19 +651354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212770] = 6, - ACTIONS(10543), 1, + [204298] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(2276), 1, + STATE(2239), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669786,43 +651374,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212796] = 10, - ACTIONS(1626), 1, - anon_sym_LBRACE, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(3608), 1, - anon_sym_LPAREN, - ACTIONS(3622), 1, - sym_label, - STATE(2863), 1, - sym_value_arguments, - STATE(3581), 1, - sym_annotated_lambda, - STATE(3670), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(6131), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8609), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [212830] = 6, - ACTIONS(8824), 1, + [204324] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9485), 1, + STATE(412), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669830,19 +651394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212856] = 6, - ACTIONS(10543), 1, + [204350] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2277), 1, - sym_simple_identifier, - STATE(3741), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9184), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669850,19 +651414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212882] = 6, - ACTIONS(10543), 1, + [204376] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2281), 1, - sym_simple_identifier, - STATE(3741), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9340), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669870,19 +651434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212908] = 6, - ACTIONS(10543), 1, + [204402] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2285), 1, - sym_simple_identifier, - STATE(3741), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9182), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669890,19 +651454,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212934] = 6, - ACTIONS(8824), 1, + [204428] = 4, + ACTIONS(9961), 1, + sym__quest, + STATE(6738), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4305), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_while, + [204450] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9815), 1, + STATE(9180), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669910,19 +651492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212960] = 6, - ACTIONS(9754), 1, + [204476] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9762), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5607), 1, - sym_simple_identifier, - STATE(5828), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9374), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9760), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669930,19 +651512,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [212986] = 6, - ACTIONS(8824), 1, + [204502] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9631), 1, + STATE(9375), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669950,19 +651532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213012] = 6, - ACTIONS(9754), 1, + [204528] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(9762), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(5600), 1, + STATE(2667), 1, sym_simple_identifier, - STATE(5828), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9760), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669970,19 +651552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213038] = 6, - ACTIONS(211), 1, + [204554] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(3032), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4360), 1, + STATE(9381), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -669990,37 +651572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213064] = 4, - ACTIONS(10227), 1, - sym__quest, - STATE(6863), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4252), 9, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - anon_sym_DASH_GT, - anon_sym_while, - [213086] = 6, - ACTIONS(10543), 1, + [204580] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2666), 1, - sym_simple_identifier, - STATE(3741), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9145), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670028,19 +651592,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213112] = 6, - ACTIONS(9754), 1, + [204606] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9762), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5617), 1, - sym_simple_identifier, - STATE(5828), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(8918), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9760), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670048,43 +651612,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213138] = 10, - ACTIONS(1660), 1, - anon_sym_LBRACE, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(1736), 1, - anon_sym_LPAREN, - ACTIONS(10565), 1, - sym_label, - STATE(808), 1, - sym_value_arguments, - STATE(1065), 1, - sym_annotated_lambda, - STATE(1089), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(6131), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8602), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [213172] = 6, - ACTIONS(10555), 1, + [204632] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10559), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2284), 1, - sym_simple_identifier, - STATE(3791), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9143), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10557), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670092,37 +651632,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213198] = 4, - ACTIONS(10567), 1, - anon_sym_DOT, - STATE(8271), 1, - aux_sym_user_type_repeat1, + [204658] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9332), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 9, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - anon_sym_while, - [213220] = 6, - ACTIONS(10555), 1, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204684] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10559), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2288), 1, - sym_simple_identifier, - STATE(3791), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9183), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10557), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670130,19 +651672,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213246] = 6, - ACTIONS(10555), 1, + [204710] = 6, + ACTIONS(9434), 1, sym__alpha_identifier, - ACTIONS(10559), 1, + ACTIONS(9442), 1, sym__backtick_identifier, - STATE(2283), 1, + STATE(5453), 1, sym_simple_identifier, - STATE(3791), 1, + STATE(5660), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10557), 7, + ACTIONS(9440), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670150,19 +651692,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213272] = 6, - ACTIONS(8824), 1, + [204736] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9661), 1, + STATE(9141), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670170,19 +651712,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213298] = 6, - ACTIONS(10526), 1, + [204762] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2457), 1, - sym_simple_identifier, - STATE(3305), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9308), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670190,19 +651732,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213324] = 6, - ACTIONS(7), 1, + [204788] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(4726), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5052), 1, + STATE(9433), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670210,19 +651752,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213350] = 6, - ACTIONS(8824), 1, + [204814] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9663), 1, + STATE(9255), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670230,19 +651772,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213376] = 6, - ACTIONS(8824), 1, + [204840] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9716), 1, + STATE(9439), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670250,19 +651792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213402] = 6, - ACTIONS(8824), 1, + [204866] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9511), 1, + STATE(9188), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670270,19 +651812,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213428] = 6, - ACTIONS(8824), 1, + [204892] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9182), 1, + STATE(8943), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670290,19 +651832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213454] = 6, - ACTIONS(8824), 1, + [204918] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9742), 1, + STATE(9247), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670310,19 +651852,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213480] = 6, - ACTIONS(10543), 1, + [204944] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2675), 1, + STATE(2218), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670330,19 +651872,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213506] = 6, - ACTIONS(9430), 1, + [204970] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(5842), 1, - sym__lexical_identifier, - STATE(8899), 1, + STATE(2220), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670350,19 +651892,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213532] = 6, - ACTIONS(8824), 1, + [204996] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9525), 1, + STATE(386), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670370,19 +651912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213558] = 6, - ACTIONS(8824), 1, + [205022] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9111), 1, + STATE(2229), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670390,19 +651932,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213584] = 6, - ACTIONS(8824), 1, + [205048] = 6, + ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(293), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9499), 1, + STATE(5053), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670410,19 +651952,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213610] = 6, - ACTIONS(8824), 1, + [205074] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(9523), 1, + STATE(5619), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670430,19 +651972,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213636] = 6, - ACTIONS(10526), 1, + [205100] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(2645), 1, + STATE(555), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670450,19 +651992,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213662] = 6, - ACTIONS(115), 1, + [205126] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(4661), 1, - sym__lexical_identifier, - STATE(5177), 1, + STATE(2670), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670470,19 +652012,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213688] = 6, - ACTIONS(10526), 1, + [205152] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(2280), 1, + STATE(387), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670490,19 +652032,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213714] = 6, - ACTIONS(10526), 1, + [205178] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2644), 1, - sym_simple_identifier, - STATE(3305), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9166), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670510,19 +652052,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213740] = 6, - ACTIONS(10526), 1, + [205204] = 6, + ACTIONS(9434), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(9442), 1, sym__backtick_identifier, - STATE(2642), 1, + STATE(5477), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(5660), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(9440), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670530,19 +652072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213766] = 6, - ACTIONS(10526), 1, + [205230] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2286), 1, + STATE(2538), 1, sym_simple_identifier, - STATE(3305), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670550,19 +652092,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213792] = 6, - ACTIONS(8824), 1, + [205256] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9522), 1, + STATE(9191), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670570,19 +652112,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213818] = 6, - ACTIONS(8824), 1, + [205282] = 10, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(1836), 1, + anon_sym_LBRACE, + ACTIONS(6720), 1, + anon_sym_LPAREN, + ACTIONS(6728), 1, + sym_label, + STATE(4531), 1, + sym_value_arguments, + STATE(4777), 1, + sym_annotated_lambda, + STATE(4864), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8340), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [205316] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9510), 1, + STATE(9138), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670590,19 +652156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213844] = 6, - ACTIONS(10526), 1, + [205342] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2225), 1, - sym_simple_identifier, - STATE(3305), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9446), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670610,19 +652176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213870] = 6, - ACTIONS(9430), 1, + [205368] = 6, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(5480), 1, - sym_simple_identifier, - STATE(5842), 1, + STATE(5685), 1, sym__lexical_identifier, + STATE(8654), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670630,19 +652196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213896] = 6, - ACTIONS(9430), 1, + [205394] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9434), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5482), 1, - sym_simple_identifier, - STATE(5842), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9299), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9432), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670650,19 +652216,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213922] = 6, - ACTIONS(10526), 1, + [205420] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2275), 1, - sym_simple_identifier, - STATE(3305), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9224), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670670,19 +652236,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213948] = 6, - ACTIONS(10526), 1, + [205446] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(10530), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2273), 1, - sym_simple_identifier, - STATE(3305), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9273), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10528), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670690,19 +652256,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [213974] = 6, - ACTIONS(8824), 1, + [205472] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9494), 1, + STATE(2236), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670710,19 +652276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214000] = 6, - ACTIONS(8824), 1, + [205498] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(9490), 1, + STATE(4916), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670730,19 +652296,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214026] = 6, - ACTIONS(8824), 1, + [205524] = 6, + ACTIONS(9434), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9442), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9487), 1, + STATE(5481), 1, sym_simple_identifier, + STATE(5660), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9440), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670750,19 +652316,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214052] = 6, - ACTIONS(8824), 1, + [205550] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9706), 1, + STATE(8725), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670770,35 +652336,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214078] = 10, - ACTIONS(1648), 1, - anon_sym_LBRACE, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(3688), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_label, - STATE(3132), 1, - sym_value_arguments, - STATE(3940), 1, - sym_annotated_lambda, - STATE(3987), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(6131), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8624), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [214112] = 2, + [205576] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4669), 11, + ACTIONS(4708), 11, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -670810,19 +652352,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [214130] = 6, - ACTIONS(8824), 1, + [205594] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9445), 1, + STATE(9158), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670830,19 +652372,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214156] = 6, - ACTIONS(8824), 1, + [205620] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9507), 1, + STATE(2627), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670850,19 +652392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214182] = 6, - ACTIONS(8824), 1, + [205646] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9423), 1, + STATE(9171), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670870,19 +652412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214208] = 6, - ACTIONS(8824), 1, + [205672] = 6, + ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(9449), 1, + STATE(3667), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670890,15 +652432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214234] = 3, + [205698] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9169), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10236), 3, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(10234), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670906,37 +652452,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205724] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [214254] = 3, - ACTIONS(4315), 1, - anon_sym_DASH_GT, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9204), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4313), 10, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - sym__quest, - anon_sym_in, - anon_sym_while, - [214274] = 6, - ACTIONS(8824), 1, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205750] = 6, + ACTIONS(9434), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9442), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9480), 1, + STATE(5454), 1, sym_simple_identifier, + STATE(5660), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9440), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670944,19 +652492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214300] = 6, - ACTIONS(8824), 1, + [205776] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9453), 1, + STATE(9776), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670964,19 +652512,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214326] = 6, - ACTIONS(8824), 1, + [205802] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9478), 1, + STATE(9262), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -670984,19 +652532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214352] = 6, - ACTIONS(8824), 1, + [205828] = 6, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(9394), 1, + STATE(8617), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -671004,19 +652552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214378] = 6, - ACTIONS(8824), 1, + [205854] = 6, + ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9471), 1, + STATE(5362), 1, sym_simple_identifier, + STATE(5685), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -671024,19 +652572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214404] = 6, - ACTIONS(10543), 1, + [205880] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10547), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(2682), 1, + STATE(2193), 1, sym_simple_identifier, - STATE(3741), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10545), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -671044,19 +652592,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214430] = 6, - ACTIONS(9394), 1, + [205906] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9402), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(4657), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5392), 1, + STATE(9200), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9398), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -671064,19 +652612,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214456] = 6, - ACTIONS(8824), 1, + [205932] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9469), 1, + STATE(9225), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -671084,19 +652632,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214482] = 6, - ACTIONS(8824), 1, + [205958] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9519), 1, + STATE(8919), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -671104,19 +652652,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214508] = 6, - ACTIONS(8824), 1, + [205984] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6406), 1, - sym__lexical_identifier, - STATE(9467), 1, + STATE(2201), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -671124,19 +652672,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214534] = 6, - ACTIONS(8824), 1, + [206010] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(2203), 1, + sym_simple_identifier, + STATE(3630), 1, sym__lexical_identifier, - STATE(9465), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10268), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206036] = 3, + ACTIONS(4214), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4212), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + sym__quest, + anon_sym_in, + anon_sym_while, + [206056] = 6, + ACTIONS(10266), 1, + sym__alpha_identifier, + ACTIONS(10270), 1, + sym__backtick_identifier, + STATE(2204), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -671144,19 +652729,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214560] = 6, - ACTIONS(8824), 1, + [206082] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8854), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6406), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9463), 1, + STATE(9192), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8834), 7, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -671164,160 +652749,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [214586] = 9, - ACTIONS(10569), 1, - anon_sym_typealias, - ACTIONS(10573), 1, - anon_sym_fun, - ACTIONS(10575), 1, - anon_sym_enum, - ACTIONS(10579), 1, - anon_sym_object, - ACTIONS(10581), 1, + [206108] = 10, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(7041), 1, + anon_sym_LPAREN, + ACTIONS(7049), 1, + sym_label, + STATE(4566), 1, + sym_value_arguments, + STATE(5158), 1, + sym_lambda_literal, + STATE(5180), 1, + sym_annotated_lambda, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8351), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [206142] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9435), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 7, anon_sym_get, - ACTIONS(10583), 1, anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206168] = 6, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5376), 1, + sym_simple_identifier, + STATE(5685), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10571), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10577), 2, - anon_sym_val, - anon_sym_var, - [214617] = 9, - ACTIONS(10569), 1, + ACTIONS(9220), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206194] = 9, + ACTIONS(10303), 1, anon_sym_typealias, - ACTIONS(10587), 1, - anon_sym_fun, - ACTIONS(10589), 1, + ACTIONS(10307), 1, anon_sym_enum, - ACTIONS(10593), 1, + ACTIONS(10311), 1, anon_sym_object, - ACTIONS(10595), 1, + ACTIONS(10313), 1, + anon_sym_fun, + ACTIONS(10315), 1, anon_sym_get, - ACTIONS(10597), 1, + ACTIONS(10317), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10585), 2, + ACTIONS(10305), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10591), 2, + ACTIONS(10309), 2, anon_sym_val, anon_sym_var, - [214648] = 9, - ACTIONS(10599), 1, + [206225] = 9, + ACTIONS(10319), 1, anon_sym_typealias, - ACTIONS(10603), 1, - anon_sym_fun, - ACTIONS(10605), 1, + ACTIONS(10323), 1, anon_sym_enum, - ACTIONS(10609), 1, + ACTIONS(10327), 1, anon_sym_object, - ACTIONS(10611), 1, + ACTIONS(10329), 1, + anon_sym_fun, + ACTIONS(10331), 1, anon_sym_get, - ACTIONS(10613), 1, + ACTIONS(10333), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10601), 2, + ACTIONS(10321), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10607), 2, + ACTIONS(10325), 2, anon_sym_val, anon_sym_var, - [214679] = 4, - ACTIONS(10535), 1, - anon_sym_DOT, - STATE(8271), 1, - aux_sym_user_type_repeat1, + [206256] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 8, + ACTIONS(4681), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_by, anon_sym_GT, - anon_sym_AMP, + anon_sym_where, anon_sym_DASH_GT, + anon_sym_in, anon_sym_while, - [214700] = 9, - ACTIONS(10615), 1, - anon_sym_typealias, - ACTIONS(10619), 1, - anon_sym_fun, - ACTIONS(10621), 1, - anon_sym_enum, - ACTIONS(10625), 1, - anon_sym_object, - ACTIONS(10627), 1, - anon_sym_get, - ACTIONS(10629), 1, - anon_sym_set, + [206273] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10617), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10623), 2, - anon_sym_val, - anon_sym_var, - [214731] = 9, - ACTIONS(10631), 1, + ACTIONS(4698), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [206290] = 9, + ACTIONS(10303), 1, anon_sym_typealias, - ACTIONS(10635), 1, - anon_sym_fun, - ACTIONS(10637), 1, + ACTIONS(10337), 1, anon_sym_enum, - ACTIONS(10641), 1, + ACTIONS(10341), 1, anon_sym_object, - ACTIONS(10643), 1, + ACTIONS(10343), 1, + anon_sym_fun, + ACTIONS(10345), 1, anon_sym_get, - ACTIONS(10645), 1, + ACTIONS(10347), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10633), 2, + ACTIONS(10335), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10639), 2, + ACTIONS(10339), 2, anon_sym_val, anon_sym_var, - [214762] = 9, - ACTIONS(10647), 1, + [206321] = 9, + ACTIONS(10349), 1, anon_sym_typealias, - ACTIONS(10651), 1, - anon_sym_fun, - ACTIONS(10653), 1, + ACTIONS(10353), 1, anon_sym_enum, - ACTIONS(10657), 1, + ACTIONS(10357), 1, anon_sym_object, - ACTIONS(10659), 1, + ACTIONS(10359), 1, + anon_sym_fun, + ACTIONS(10361), 1, anon_sym_get, - ACTIONS(10661), 1, + ACTIONS(10363), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10649), 2, + ACTIONS(10351), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10655), 2, + ACTIONS(10355), 2, anon_sym_val, anon_sym_var, - [214793] = 2, + [206352] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4329), 10, + ACTIONS(4206), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -671328,247 +652946,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [214810] = 9, - ACTIONS(10599), 1, + [206369] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4765), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [206386] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4573), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [206403] = 4, + ACTIONS(10281), 1, + anon_sym_DOT, + STATE(8040), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4195), 8, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_while, + [206424] = 9, + ACTIONS(10349), 1, anon_sym_typealias, - ACTIONS(10665), 1, - anon_sym_fun, - ACTIONS(10667), 1, + ACTIONS(10367), 1, anon_sym_enum, - ACTIONS(10671), 1, + ACTIONS(10371), 1, anon_sym_object, - ACTIONS(10673), 1, + ACTIONS(10373), 1, + anon_sym_fun, + ACTIONS(10375), 1, anon_sym_get, - ACTIONS(10675), 1, + ACTIONS(10377), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10663), 2, + ACTIONS(10365), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10669), 2, + ACTIONS(10369), 2, anon_sym_val, anon_sym_var, - [214841] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10679), 2, - anon_sym_LBRACK, - sym__backtick_identifier, - ACTIONS(10677), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [214860] = 9, - ACTIONS(10323), 1, + [206455] = 9, + ACTIONS(10379), 1, anon_sym_typealias, - ACTIONS(10327), 1, - anon_sym_fun, - ACTIONS(10329), 1, + ACTIONS(10383), 1, anon_sym_enum, - ACTIONS(10337), 1, + ACTIONS(10387), 1, anon_sym_object, - ACTIONS(10339), 1, + ACTIONS(10389), 1, + anon_sym_fun, + ACTIONS(10391), 1, anon_sym_get, - ACTIONS(10341), 1, + ACTIONS(10393), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10325), 2, + ACTIONS(10381), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10333), 2, + ACTIONS(10385), 2, anon_sym_val, anon_sym_var, - [214891] = 9, - ACTIONS(10569), 1, + [206486] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4730), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [206503] = 9, + ACTIONS(10395), 1, anon_sym_typealias, - ACTIONS(10683), 1, - anon_sym_fun, - ACTIONS(10685), 1, + ACTIONS(10399), 1, anon_sym_enum, - ACTIONS(10689), 1, + ACTIONS(10403), 1, anon_sym_object, - ACTIONS(10691), 1, + ACTIONS(10405), 1, + anon_sym_fun, + ACTIONS(10407), 1, anon_sym_get, - ACTIONS(10693), 1, + ACTIONS(10409), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10681), 2, + ACTIONS(10397), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10687), 2, + ACTIONS(10401), 2, anon_sym_val, anon_sym_var, - [214922] = 9, - ACTIONS(10695), 1, + [206534] = 9, + ACTIONS(10411), 1, anon_sym_typealias, - ACTIONS(10699), 1, - anon_sym_fun, - ACTIONS(10701), 1, + ACTIONS(10415), 1, anon_sym_enum, - ACTIONS(10705), 1, + ACTIONS(10419), 1, anon_sym_object, - ACTIONS(10707), 1, + ACTIONS(10421), 1, + anon_sym_fun, + ACTIONS(10423), 1, anon_sym_get, - ACTIONS(10709), 1, + ACTIONS(10425), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10697), 2, + ACTIONS(10413), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10703), 2, + ACTIONS(10417), 2, anon_sym_val, anon_sym_var, - [214953] = 9, - ACTIONS(10615), 1, + [206565] = 9, + ACTIONS(10303), 1, anon_sym_typealias, - ACTIONS(10713), 1, - anon_sym_fun, - ACTIONS(10715), 1, + ACTIONS(10429), 1, anon_sym_enum, - ACTIONS(10719), 1, + ACTIONS(10433), 1, anon_sym_object, - ACTIONS(10721), 1, + ACTIONS(10435), 1, + anon_sym_fun, + ACTIONS(10437), 1, anon_sym_get, - ACTIONS(10723), 1, + ACTIONS(10439), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10711), 2, + ACTIONS(10427), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10717), 2, + ACTIONS(10431), 2, anon_sym_val, anon_sym_var, - [214984] = 9, - ACTIONS(10615), 1, + [206596] = 9, + ACTIONS(10303), 1, anon_sym_typealias, - ACTIONS(10727), 1, - anon_sym_fun, - ACTIONS(10729), 1, + ACTIONS(10443), 1, anon_sym_enum, - ACTIONS(10733), 1, + ACTIONS(10447), 1, anon_sym_object, - ACTIONS(10735), 1, + ACTIONS(10449), 1, + anon_sym_fun, + ACTIONS(10451), 1, anon_sym_get, - ACTIONS(10737), 1, + ACTIONS(10453), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10725), 2, + ACTIONS(10441), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10731), 2, + ACTIONS(10445), 2, anon_sym_val, anon_sym_var, - [215015] = 9, - ACTIONS(10739), 1, + [206627] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10457), 2, + anon_sym_LBRACK, + sym__backtick_identifier, + ACTIONS(10455), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [206646] = 9, + ACTIONS(10395), 1, anon_sym_typealias, - ACTIONS(10743), 1, - anon_sym_fun, - ACTIONS(10745), 1, + ACTIONS(10461), 1, anon_sym_enum, - ACTIONS(10749), 1, + ACTIONS(10465), 1, anon_sym_object, - ACTIONS(10751), 1, + ACTIONS(10467), 1, + anon_sym_fun, + ACTIONS(10469), 1, anon_sym_get, - ACTIONS(10753), 1, + ACTIONS(10471), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10741), 2, + ACTIONS(10459), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10747), 2, + ACTIONS(10463), 2, anon_sym_val, anon_sym_var, - [215046] = 9, - ACTIONS(10569), 1, + [206677] = 9, + ACTIONS(10319), 1, anon_sym_typealias, - ACTIONS(10757), 1, - anon_sym_fun, - ACTIONS(10759), 1, + ACTIONS(10475), 1, anon_sym_enum, - ACTIONS(10763), 1, + ACTIONS(10479), 1, anon_sym_object, - ACTIONS(10765), 1, + ACTIONS(10481), 1, + anon_sym_fun, + ACTIONS(10483), 1, anon_sym_get, - ACTIONS(10767), 1, + ACTIONS(10485), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10755), 2, + ACTIONS(10473), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10761), 2, + ACTIONS(10477), 2, anon_sym_val, anon_sym_var, - [215077] = 9, - ACTIONS(10695), 1, + [206708] = 9, + ACTIONS(10349), 1, anon_sym_typealias, - ACTIONS(10771), 1, - anon_sym_fun, - ACTIONS(10773), 1, + ACTIONS(10489), 1, anon_sym_enum, - ACTIONS(10777), 1, + ACTIONS(10493), 1, anon_sym_object, - ACTIONS(10779), 1, + ACTIONS(10495), 1, + anon_sym_fun, + ACTIONS(10497), 1, anon_sym_get, - ACTIONS(10781), 1, + ACTIONS(10499), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10769), 2, + ACTIONS(10487), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10775), 2, + ACTIONS(10491), 2, anon_sym_val, anon_sym_var, - [215108] = 9, - ACTIONS(10599), 1, + [206739] = 9, + ACTIONS(10379), 1, anon_sym_typealias, - ACTIONS(10785), 1, - anon_sym_fun, - ACTIONS(10787), 1, + ACTIONS(10503), 1, anon_sym_enum, - ACTIONS(10791), 1, + ACTIONS(10507), 1, anon_sym_object, - ACTIONS(10793), 1, + ACTIONS(10509), 1, + anon_sym_fun, + ACTIONS(10511), 1, anon_sym_get, - ACTIONS(10795), 1, + ACTIONS(10513), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10783), 2, + ACTIONS(10501), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10789), 2, + ACTIONS(10505), 2, anon_sym_val, anon_sym_var, - [215139] = 2, + [206770] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4728), 10, + ACTIONS(4672), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -671579,284 +653259,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [215156] = 9, - ACTIONS(10599), 1, + [206787] = 9, + ACTIONS(10411), 1, anon_sym_typealias, - ACTIONS(10799), 1, - anon_sym_fun, - ACTIONS(10801), 1, + ACTIONS(10517), 1, anon_sym_enum, - ACTIONS(10805), 1, + ACTIONS(10521), 1, anon_sym_object, - ACTIONS(10807), 1, + ACTIONS(10523), 1, + anon_sym_fun, + ACTIONS(10525), 1, anon_sym_get, - ACTIONS(10809), 1, + ACTIONS(10527), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10797), 2, + ACTIONS(10515), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10803), 2, + ACTIONS(10519), 2, anon_sym_val, anon_sym_var, - [215187] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4778), 10, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - anon_sym_DASH_GT, - anon_sym_in, - anon_sym_while, - [215204] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4733), 10, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - anon_sym_DASH_GT, - anon_sym_in, - anon_sym_while, - [215221] = 9, - ACTIONS(10739), 1, + [206818] = 9, + ACTIONS(10319), 1, anon_sym_typealias, - ACTIONS(10813), 1, - anon_sym_fun, - ACTIONS(10815), 1, + ACTIONS(10531), 1, anon_sym_enum, - ACTIONS(10819), 1, + ACTIONS(10535), 1, anon_sym_object, - ACTIONS(10821), 1, + ACTIONS(10537), 1, + anon_sym_fun, + ACTIONS(10539), 1, anon_sym_get, - ACTIONS(10823), 1, + ACTIONS(10541), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10811), 2, + ACTIONS(10529), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10817), 2, + ACTIONS(10533), 2, anon_sym_val, anon_sym_var, - [215252] = 9, - ACTIONS(10695), 1, + [206849] = 9, + ACTIONS(10319), 1, anon_sym_typealias, - ACTIONS(10827), 1, - anon_sym_fun, - ACTIONS(10829), 1, + ACTIONS(10545), 1, anon_sym_enum, - ACTIONS(10833), 1, + ACTIONS(10549), 1, anon_sym_object, - ACTIONS(10835), 1, + ACTIONS(10551), 1, + anon_sym_fun, + ACTIONS(10553), 1, anon_sym_get, - ACTIONS(10837), 1, + ACTIONS(10555), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10825), 2, + ACTIONS(10543), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10831), 2, + ACTIONS(10547), 2, anon_sym_val, anon_sym_var, - [215283] = 9, - ACTIONS(10647), 1, + [206880] = 9, + ACTIONS(10208), 1, anon_sym_typealias, - ACTIONS(10841), 1, - anon_sym_fun, - ACTIONS(10843), 1, + ACTIONS(10212), 1, anon_sym_enum, - ACTIONS(10847), 1, + ACTIONS(10220), 1, anon_sym_object, - ACTIONS(10849), 1, + ACTIONS(10222), 1, + anon_sym_fun, + ACTIONS(10224), 1, anon_sym_get, - ACTIONS(10851), 1, + ACTIONS(10226), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10839), 2, + ACTIONS(10210), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10845), 2, + ACTIONS(10216), 2, anon_sym_val, anon_sym_var, - [215314] = 9, - ACTIONS(10853), 1, + [206911] = 9, + ACTIONS(10379), 1, anon_sym_typealias, - ACTIONS(10857), 1, - anon_sym_fun, - ACTIONS(10859), 1, + ACTIONS(10559), 1, anon_sym_enum, - ACTIONS(10863), 1, + ACTIONS(10563), 1, anon_sym_object, - ACTIONS(10865), 1, + ACTIONS(10565), 1, + anon_sym_fun, + ACTIONS(10567), 1, anon_sym_get, - ACTIONS(10867), 1, + ACTIONS(10569), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10855), 2, + ACTIONS(10557), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10861), 2, + ACTIONS(10561), 2, anon_sym_val, anon_sym_var, - [215345] = 9, - ACTIONS(10615), 1, + [206942] = 9, + ACTIONS(10571), 1, anon_sym_typealias, - ACTIONS(10871), 1, - anon_sym_fun, - ACTIONS(10873), 1, + ACTIONS(10575), 1, anon_sym_enum, - ACTIONS(10877), 1, + ACTIONS(10579), 1, anon_sym_object, - ACTIONS(10879), 1, + ACTIONS(10581), 1, + anon_sym_fun, + ACTIONS(10583), 1, anon_sym_get, - ACTIONS(10881), 1, + ACTIONS(10585), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10869), 2, + ACTIONS(10573), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10875), 2, + ACTIONS(10577), 2, anon_sym_val, anon_sym_var, - [215376] = 9, - ACTIONS(10739), 1, + [206973] = 9, + ACTIONS(10395), 1, anon_sym_typealias, - ACTIONS(10885), 1, - anon_sym_fun, - ACTIONS(10887), 1, + ACTIONS(10589), 1, anon_sym_enum, - ACTIONS(10891), 1, + ACTIONS(10593), 1, anon_sym_object, - ACTIONS(10893), 1, + ACTIONS(10595), 1, + anon_sym_fun, + ACTIONS(10597), 1, anon_sym_get, - ACTIONS(10895), 1, + ACTIONS(10599), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10883), 2, + ACTIONS(10587), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10889), 2, + ACTIONS(10591), 2, anon_sym_val, anon_sym_var, - [215407] = 2, + [207004] = 4, + ACTIONS(9979), 1, + anon_sym_DOT, + STATE(7873), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4589), 10, + ACTIONS(4195), 8, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_by, - anon_sym_GT, anon_sym_where, - anon_sym_DASH_GT, - anon_sym_in, - anon_sym_while, - [215424] = 9, - ACTIONS(10739), 1, + [207025] = 9, + ACTIONS(10601), 1, anon_sym_typealias, - ACTIONS(10899), 1, - anon_sym_fun, - ACTIONS(10901), 1, + ACTIONS(10605), 1, anon_sym_enum, - ACTIONS(10905), 1, + ACTIONS(10609), 1, anon_sym_object, - ACTIONS(10907), 1, + ACTIONS(10611), 1, + anon_sym_fun, + ACTIONS(10613), 1, anon_sym_get, - ACTIONS(10909), 1, + ACTIONS(10615), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10897), 2, + ACTIONS(10603), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10903), 2, + ACTIONS(10607), 2, anon_sym_val, anon_sym_var, - [215455] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4683), 10, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - anon_sym_DASH_GT, - anon_sym_in, - anon_sym_while, - [215472] = 2, + [207056] = 9, + ACTIONS(10411), 1, + anon_sym_typealias, + ACTIONS(10619), 1, + anon_sym_enum, + ACTIONS(10623), 1, + anon_sym_object, + ACTIONS(10625), 1, + anon_sym_fun, + ACTIONS(10627), 1, + anon_sym_get, + ACTIONS(10629), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4769), 10, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - anon_sym_DASH_GT, - anon_sym_in, - anon_sym_while, - [215489] = 9, - ACTIONS(10695), 1, + ACTIONS(10617), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10621), 2, + anon_sym_val, + anon_sym_var, + [207087] = 9, + ACTIONS(10379), 1, anon_sym_typealias, - ACTIONS(10913), 1, - anon_sym_fun, - ACTIONS(10915), 1, + ACTIONS(10633), 1, anon_sym_enum, - ACTIONS(10919), 1, + ACTIONS(10637), 1, anon_sym_object, - ACTIONS(10921), 1, + ACTIONS(10639), 1, + anon_sym_fun, + ACTIONS(10641), 1, anon_sym_get, - ACTIONS(10923), 1, + ACTIONS(10643), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10911), 2, + ACTIONS(10631), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10917), 2, + ACTIONS(10635), 2, anon_sym_val, anon_sym_var, - [215520] = 2, + [207118] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4750), 10, + ACTIONS(4676), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -671867,176 +653511,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [215537] = 4, - ACTIONS(10383), 1, - anon_sym_DOT, - STATE(8182), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4227), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - [215558] = 9, - ACTIONS(10647), 1, + [207135] = 9, + ACTIONS(10411), 1, anon_sym_typealias, - ACTIONS(10927), 1, - anon_sym_fun, - ACTIONS(10929), 1, + ACTIONS(10647), 1, anon_sym_enum, - ACTIONS(10933), 1, + ACTIONS(10651), 1, anon_sym_object, - ACTIONS(10935), 1, + ACTIONS(10653), 1, + anon_sym_fun, + ACTIONS(10655), 1, anon_sym_get, - ACTIONS(10937), 1, + ACTIONS(10657), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10925), 2, + ACTIONS(10645), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10931), 2, + ACTIONS(10649), 2, anon_sym_val, anon_sym_var, - [215589] = 9, - ACTIONS(10647), 1, + [207166] = 9, + ACTIONS(10349), 1, anon_sym_typealias, - ACTIONS(10941), 1, - anon_sym_fun, - ACTIONS(10943), 1, + ACTIONS(10661), 1, anon_sym_enum, - ACTIONS(10947), 1, + ACTIONS(10665), 1, anon_sym_object, - ACTIONS(10949), 1, + ACTIONS(10667), 1, + anon_sym_fun, + ACTIONS(10669), 1, anon_sym_get, - ACTIONS(10951), 1, + ACTIONS(10671), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10939), 2, + ACTIONS(10659), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10945), 2, + ACTIONS(10663), 2, anon_sym_val, anon_sym_var, - [215620] = 3, - ACTIONS(10953), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4299), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - sym__quest, - [215638] = 4, - ACTIONS(10955), 1, - anon_sym_LT, - STATE(8671), 1, - sym_type_arguments, + [207197] = 9, + ACTIONS(10395), 1, + anon_sym_typealias, + ACTIONS(10675), 1, + anon_sym_enum, + ACTIONS(10679), 1, + anon_sym_object, + ACTIONS(10681), 1, + anon_sym_fun, + ACTIONS(10683), 1, + anon_sym_get, + ACTIONS(10685), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 7, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(10673), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10677), 2, anon_sym_val, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [215658] = 9, - ACTIONS(8658), 1, + anon_sym_var, + [207228] = 9, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(10957), 1, + ACTIONS(10687), 1, anon_sym_COLON, - ACTIONS(10959), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10961), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(8703), 1, + STATE(8438), 1, sym_type_constraints, - STATE(9633), 1, + STATE(9175), 1, sym__block, - STATE(9713), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4211), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215688] = 9, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(10961), 1, - anon_sym_LBRACE, - ACTIONS(10963), 1, - anon_sym_COLON, - STATE(8698), 1, - sym_type_constraints, - STATE(9470), 1, + STATE(9296), 1, sym_function_body, - STATE(9633), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4185), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215718] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 9, - anon_sym_AT, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_LT, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [215734] = 3, - ACTIONS(10965), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4299), 8, + ACTIONS(4175), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - sym__quest, - [215752] = 3, - ACTIONS(10967), 1, + [207258] = 3, + ACTIONS(10693), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 8, + ACTIONS(4239), 8, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -672045,22162 +653613,21811 @@ static const uint16_t ts_small_parse_table[] = { sym__quest, anon_sym_DASH_GT, anon_sym_while, - [215770] = 3, - ACTIONS(10969), 1, + [207276] = 3, + ACTIONS(10695), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 8, + ACTIONS(4239), 8, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, + anon_sym_by, + anon_sym_where, sym__quest, - anon_sym_DASH_GT, - anon_sym_while, - [215788] = 2, + [207294] = 4, + ACTIONS(10697), 1, + anon_sym_LT, + STATE(8396), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 9, + ACTIONS(4189), 7, anon_sym_AT, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_val, - anon_sym_LT, anon_sym_DOT, anon_sym_AMP, sym__quest, anon_sym_in, - [215804] = 9, - ACTIONS(8658), 1, + [207314] = 9, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(10959), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10961), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(10971), 1, + ACTIONS(10699), 1, anon_sym_COLON, - STATE(8678), 1, + STATE(8453), 1, sym_type_constraints, - STATE(9633), 1, - sym__block, - STATE(9650), 1, + STATE(9136), 1, sym_function_body, + STATE(9175), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4198), 2, + ACTIONS(4185), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [215834] = 9, - ACTIONS(8658), 1, + [207344] = 9, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(10959), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10961), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(10973), 1, + ACTIONS(10701), 1, anon_sym_COLON, - STATE(8697), 1, + STATE(8447), 1, sym_type_constraints, + STATE(9175), 1, + sym__block, STATE(9429), 1, sym_function_body, - STATE(9633), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4166), 2, + ACTIONS(4139), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [215864] = 9, - ACTIONS(8658), 1, + [207374] = 9, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(10959), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10961), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(10975), 1, + ACTIONS(10703), 1, anon_sym_COLON, - STATE(8694), 1, + STATE(8426), 1, sym_type_constraints, - STATE(9387), 1, - sym_function_body, - STATE(9633), 1, + STATE(9175), 1, sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4156), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215894] = 7, - ACTIONS(1660), 1, - anon_sym_LBRACE, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(10977), 1, - sym_label, - STATE(1066), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(6131), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8641), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [215919] = 8, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(10961), 1, - anon_sym_LBRACE, - STATE(8697), 1, - sym_type_constraints, - STATE(9429), 1, + STATE(9256), 1, sym_function_body, - STATE(9633), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4166), 2, + ACTIONS(4149), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [215946] = 8, - ACTIONS(8658), 1, + [207404] = 9, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(10959), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10961), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(8698), 1, + ACTIONS(10705), 1, + anon_sym_COLON, + STATE(8450), 1, sym_type_constraints, - STATE(9470), 1, + STATE(9135), 1, sym_function_body, - STATE(9633), 1, + STATE(9175), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4185), 2, + ACTIONS(4162), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [215973] = 7, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(1906), 1, - anon_sym_LBRACE, - ACTIONS(10979), 1, - sym_label, - STATE(3210), 1, - sym_lambda_literal, + [207434] = 3, + ACTIONS(10707), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6131), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8641), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [215998] = 8, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(10959), 1, + ACTIONS(4239), 8, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(10961), 1, anon_sym_LBRACE, - STATE(8696), 1, - sym_type_constraints, - STATE(9497), 1, - sym_function_body, - STATE(9633), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4289), 2, - sym__automatic_semicolon, anon_sym_RBRACE, - [216025] = 5, - ACTIONS(10981), 1, - anon_sym_LPAREN, - ACTIONS(10983), 1, + anon_sym_COMMA, anon_sym_by, - STATE(8900), 1, - sym_value_arguments, + anon_sym_where, + sym__quest, + [207452] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4437), 5, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [216046] = 3, - ACTIONS(10985), 1, + ACTIONS(4181), 9, + anon_sym_AT, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_LT, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [207468] = 3, + ACTIONS(10709), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 7, + ACTIONS(4239), 8, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - sym__quest, - anon_sym_while, - [216063] = 7, - ACTIONS(1626), 1, - anon_sym_LBRACE, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(10987), 1, - sym_label, - STATE(3614), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(6131), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8641), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [216088] = 4, - ACTIONS(10989), 1, - anon_sym_DOT, - STATE(8619), 1, - aux_sym_user_type_repeat1, + anon_sym_RPAREN, + anon_sym_GT, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [207486] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 6, + ACTIONS(4009), 9, anon_sym_AT, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_val, + anon_sym_LT, + anon_sym_DOT, anon_sym_AMP, sym__quest, anon_sym_in, - [216107] = 9, - ACTIONS(4185), 1, - anon_sym_while, - ACTIONS(8735), 1, + [207502] = 8, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(10991), 1, - anon_sym_COLON, - ACTIONS(10993), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10995), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(8737), 1, + STATE(8413), 1, sym_type_constraints, - STATE(9830), 1, + STATE(9157), 1, sym_function_body, - STATE(10166), 1, + STATE(9175), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216136] = 8, - ACTIONS(8658), 1, + ACTIONS(4301), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [207529] = 8, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(10959), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10961), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(8689), 1, + STATE(8450), 1, sym_type_constraints, - STATE(9483), 1, + STATE(9135), 1, sym_function_body, - STATE(9633), 1, + STATE(9175), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4293), 2, + ACTIONS(4162), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [216163] = 3, - ACTIONS(10997), 1, - anon_sym_AMP, + [207556] = 7, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(1904), 1, + anon_sym_LBRACE, + ACTIONS(10711), 1, + sym_label, + STATE(3165), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 7, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8360), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [207581] = 8, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(10689), 1, anon_sym_EQ, + ACTIONS(10691), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - sym__quest, + STATE(8453), 1, + sym_type_constraints, + STATE(9136), 1, + sym_function_body, + STATE(9175), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4185), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [207608] = 9, + ACTIONS(4175), 1, anon_sym_while, - [216180] = 9, - ACTIONS(4198), 1, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(10713), 1, + anon_sym_COLON, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(8536), 1, + sym_type_constraints, + STATE(9782), 1, + sym_function_body, + STATE(9998), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [207637] = 9, + ACTIONS(4185), 1, anon_sym_while, - ACTIONS(8735), 1, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(10993), 1, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10995), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - ACTIONS(10999), 1, + ACTIONS(10719), 1, anon_sym_COLON, - STATE(8885), 1, + STATE(8596), 1, sym_type_constraints, - STATE(9797), 1, + STATE(9621), 1, sym_function_body, - STATE(10166), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216209] = 7, + [207666] = 7, ACTIONS(1726), 1, anon_sym_AT, - ACTIONS(1838), 1, + ACTIONS(1836), 1, anon_sym_LBRACE, - ACTIONS(11001), 1, + ACTIONS(10721), 1, sym_label, - STATE(4889), 1, + STATE(4785), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6131), 2, + STATE(6228), 2, sym__single_annotation, sym__multi_annotation, - STATE(8641), 2, + STATE(8360), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [216234] = 9, - ACTIONS(4211), 1, - anon_sym_while, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(10993), 1, - anon_sym_EQ, - ACTIONS(10995), 1, + [207691] = 4, + ACTIONS(10723), 1, + anon_sym_DOT, + STATE(8346), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4155), 6, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [207710] = 7, + ACTIONS(1658), 1, anon_sym_LBRACE, - ACTIONS(11003), 1, - anon_sym_COLON, - STATE(8745), 1, - sym_type_constraints, - STATE(9827), 1, - sym_function_body, - STATE(10166), 1, - sym__block, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(10725), 1, + sym_label, + STATE(1018), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216263] = 6, - ACTIONS(9320), 1, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8360), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [207735] = 5, + ACTIONS(9162), 1, anon_sym_LT, - ACTIONS(11005), 1, + ACTIONS(10727), 1, anon_sym_COLON, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4221), 2, + ACTIONS(4189), 5, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4179), 3, anon_sym_DOT, anon_sym_AMP, sym__quest, - [216286] = 9, - ACTIONS(4156), 1, + [207756] = 9, + ACTIONS(4162), 1, anon_sym_while, - ACTIONS(8735), 1, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(10993), 1, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10995), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(10729), 1, anon_sym_COLON, - STATE(8753), 1, + STATE(8624), 1, sym_type_constraints, - STATE(9764), 1, + STATE(9600), 1, sym_function_body, - STATE(10166), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216315] = 4, - ACTIONS(11009), 1, + [207785] = 5, + ACTIONS(10731), 1, + anon_sym_LPAREN, + ACTIONS(10733), 1, + anon_sym_by, + STATE(8479), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4507), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [207806] = 4, + ACTIONS(10735), 1, anon_sym_DOT, - STATE(8619), 1, + STATE(8346), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 6, + ACTIONS(4168), 6, anon_sym_AT, anon_sym_LPAREN, anon_sym_val, anon_sym_AMP, sym__quest, anon_sym_in, - [216334] = 9, - ACTIONS(4166), 1, - anon_sym_while, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(10993), 1, - anon_sym_EQ, - ACTIONS(10995), 1, - anon_sym_LBRACE, - ACTIONS(11012), 1, - anon_sym_COLON, - STATE(8843), 1, - sym_type_constraints, - STATE(9787), 1, - sym_function_body, - STATE(10166), 1, - sym__block, + [207825] = 3, + ACTIONS(10738), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216363] = 5, - ACTIONS(9320), 1, + ACTIONS(4239), 7, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + sym__quest, + anon_sym_while, + [207842] = 6, + ACTIONS(9162), 1, anon_sym_LT, - ACTIONS(11014), 1, + ACTIONS(10740), 1, anon_sym_COLON, - STATE(6730), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 5, + ACTIONS(4124), 2, anon_sym_COMMA, anon_sym_RPAREN, + ACTIONS(4189), 3, anon_sym_DOT, anon_sym_AMP, sym__quest, - [216384] = 7, - ACTIONS(27), 1, + [207865] = 9, + ACTIONS(4139), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, + anon_sym_LBRACE, + ACTIONS(10742), 1, + anon_sym_COLON, + STATE(8572), 1, + sym_type_constraints, + STATE(9464), 1, + sym_function_body, + STATE(9998), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [207894] = 7, + ACTIONS(1586), 1, anon_sym_LBRACE, ACTIONS(1726), 1, anon_sym_AT, - ACTIONS(11016), 1, + ACTIONS(10744), 1, sym_label, - STATE(5389), 1, + STATE(3453), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6131), 2, + STATE(6228), 2, sym__single_annotation, sym__multi_annotation, - STATE(8641), 2, + STATE(8360), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [216409] = 8, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(10961), 1, + [207919] = 7, + ACTIONS(25), 1, anon_sym_LBRACE, - STATE(8694), 1, - sym_type_constraints, - STATE(9387), 1, - sym_function_body, - STATE(9633), 1, - sym__block, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(10746), 1, + sym_label, + STATE(5176), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [216436] = 7, - ACTIONS(1648), 1, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8360), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [207944] = 7, + ACTIONS(1646), 1, anon_sym_LBRACE, ACTIONS(1726), 1, anon_sym_AT, - ACTIONS(11018), 1, + ACTIONS(10748), 1, sym_label, - STATE(3950), 1, + STATE(3983), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6131), 2, + STATE(6228), 2, sym__single_annotation, sym__multi_annotation, - STATE(8641), 2, + STATE(8360), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [216461] = 7, - ACTIONS(8658), 1, + [207969] = 9, + ACTIONS(4149), 1, + anon_sym_while, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(8662), 1, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, anon_sym_LBRACE, - ACTIONS(8948), 1, + ACTIONS(10750), 1, anon_sym_COLON, - STATE(9050), 1, + STATE(8623), 1, sym_type_constraints, - STATE(9676), 1, - sym_class_body, + STATE(9571), 1, + sym_function_body, + STATE(9998), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [216485] = 3, - STATE(1657), 1, - sym__assignment_and_operator, + [207998] = 3, + ACTIONS(10752), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11020), 6, + ACTIONS(4239), 7, anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [216501] = 6, - ACTIONS(8729), 1, anon_sym_LBRACE, - ACTIONS(9940), 1, - anon_sym_LPAREN, - STATE(8872), 1, - sym_value_arguments, - STATE(9209), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11022), 3, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [216523] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4234), 7, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_DOT, - anon_sym_AMP, + anon_sym_by, + anon_sym_where, sym__quest, - anon_sym_in, - [216537] = 7, - ACTIONS(8658), 1, + anon_sym_while, + [208015] = 8, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(8662), 1, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(8943), 1, - anon_sym_COLON, - STATE(9009), 1, + STATE(8426), 1, sym_type_constraints, - STATE(9422), 1, - sym_class_body, + STATE(9175), 1, + sym__block, + STATE(9256), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 2, + ACTIONS(4149), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [216561] = 2, + [208042] = 8, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10691), 1, + anon_sym_LBRACE, + STATE(8436), 1, + sym_type_constraints, + STATE(9152), 1, + sym_function_body, + STATE(9175), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4337), 7, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [216575] = 7, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8662), 1, + ACTIONS(4297), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208069] = 7, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(11024), 1, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8730), 1, anon_sym_COLON, - STATE(8913), 1, + STATE(8722), 1, sym_type_constraints, - STATE(9396), 1, - sym_class_body, + STATE(9418), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 2, + ACTIONS(3282), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [216599] = 3, - STATE(1745), 1, + [208093] = 3, + STATE(1742), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11026), 6, + ACTIONS(10754), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [216615] = 8, - ACTIONS(4166), 1, - anon_sym_while, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(10993), 1, - anon_sym_EQ, - ACTIONS(10995), 1, - anon_sym_LBRACE, - STATE(8843), 1, - sym_type_constraints, - STATE(9787), 1, - sym_function_body, - STATE(10166), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216641] = 3, - STATE(1997), 1, + [208109] = 3, + STATE(1758), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11028), 6, + ACTIONS(10756), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [216657] = 3, - STATE(1735), 1, + [208125] = 5, + ACTIONS(10758), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9890), 2, + anon_sym_LBRACE, + sym_label, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8360), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [208145] = 3, + STATE(2020), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11030), 6, + ACTIONS(10761), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [216673] = 3, - STATE(2164), 1, + [208161] = 3, + STATE(1464), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11032), 6, + ACTIONS(10763), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [216689] = 3, - STATE(2220), 1, + [208177] = 3, + STATE(1447), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11034), 6, + ACTIONS(10765), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [216705] = 3, - STATE(1478), 1, + [208193] = 3, + STATE(1573), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11036), 6, + ACTIONS(10767), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [216721] = 3, - STATE(2067), 1, + [208209] = 3, + STATE(1935), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11038), 6, + ACTIONS(10769), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [216737] = 3, - STATE(1500), 1, + [208225] = 3, + STATE(1930), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11040), 6, + ACTIONS(10771), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [216753] = 5, - ACTIONS(11042), 1, - anon_sym_AT, + [208241] = 7, + ACTIONS(8511), 1, + anon_sym_LBRACE, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(10773), 1, + anon_sym_COLON, + STATE(8767), 1, + sym_type_constraints, + STATE(9248), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10184), 2, + ACTIONS(4218), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208265] = 8, + ACTIONS(4149), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, anon_sym_LBRACE, - sym_label, - STATE(6131), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8641), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [216773] = 3, - STATE(1964), 1, - sym__assignment_and_operator, + STATE(8623), 1, + sym_type_constraints, + STATE(9571), 1, + sym_function_body, + STATE(9998), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11045), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [216789] = 8, - ACTIONS(4185), 1, + [208291] = 8, + ACTIONS(4162), 1, anon_sym_while, - ACTIONS(8735), 1, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(10993), 1, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10995), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(8737), 1, + STATE(8624), 1, sym_type_constraints, - STATE(9830), 1, + STATE(9600), 1, sym_function_body, - STATE(10166), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216815] = 3, - STATE(1771), 1, + [208317] = 3, + STATE(1539), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11047), 6, + ACTIONS(10775), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [216831] = 7, - ACTIONS(8652), 1, - anon_sym_LBRACE, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(11049), 1, - anon_sym_COLON, - STATE(8935), 1, - sym_type_constraints, - STATE(9396), 1, - sym_enum_class_body, + [208333] = 3, + STATE(2130), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [216855] = 3, - STATE(1886), 1, + ACTIONS(10777), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208349] = 3, + STATE(1816), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11051), 6, + ACTIONS(10779), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [216871] = 8, - ACTIONS(4293), 1, - anon_sym_while, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(10993), 1, - anon_sym_EQ, - ACTIONS(10995), 1, - anon_sym_LBRACE, - STATE(8837), 1, - sym_type_constraints, - STATE(9900), 1, - sym_function_body, - STATE(10166), 1, - sym__block, + [208365] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216897] = 7, - ACTIONS(8652), 1, - anon_sym_LBRACE, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8856), 1, - anon_sym_COLON, - STATE(9014), 1, - sym_type_constraints, - STATE(9422), 1, - sym_enum_class_body, + ACTIONS(4168), 7, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208379] = 3, + STATE(1732), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [216921] = 7, - ACTIONS(8658), 1, + ACTIONS(10781), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208395] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4319), 7, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208409] = 7, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(8662), 1, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(11053), 1, + ACTIONS(8712), 1, anon_sym_COLON, - STATE(9074), 1, + STATE(8655), 1, sym_type_constraints, - STATE(9447), 1, + STATE(9445), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4283), 2, + ACTIONS(3274), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [216945] = 3, - STATE(2144), 1, + [208433] = 3, + STATE(1748), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11055), 6, + ACTIONS(10783), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [216961] = 8, - ACTIONS(4289), 1, - anon_sym_while, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(10993), 1, - anon_sym_EQ, - ACTIONS(10995), 1, - anon_sym_LBRACE, - STATE(8858), 1, - sym_type_constraints, - STATE(9918), 1, - sym_function_body, - STATE(10166), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216987] = 3, - STATE(2072), 1, + [208449] = 3, + STATE(1503), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11057), 6, + ACTIONS(10785), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [217003] = 3, - STATE(2030), 1, + [208465] = 3, + STATE(2158), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11059), 6, + ACTIONS(10787), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [217019] = 5, - ACTIONS(9940), 1, - anon_sym_LPAREN, - ACTIONS(11061), 1, - anon_sym_by, - STATE(7399), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4437), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_where, - anon_sym_while, - [217039] = 8, - ACTIONS(4156), 1, + [208481] = 8, + ACTIONS(4185), 1, anon_sym_while, - ACTIONS(8735), 1, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(10993), 1, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10995), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(8753), 1, + STATE(8596), 1, sym_type_constraints, - STATE(9764), 1, + STATE(9621), 1, sym_function_body, - STATE(10166), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217065] = 3, - STATE(1782), 1, - sym__assignment_and_operator, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11063), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [217081] = 3, - STATE(1569), 1, - sym__assignment_and_operator, + [208507] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11065), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [217097] = 7, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8662), 1, + ACTIONS(4315), 7, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208521] = 7, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(8970), 1, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8774), 1, anon_sym_COLON, - STATE(8912), 1, + STATE(8653), 1, sym_type_constraints, - STATE(9696), 1, - sym_class_body, + STATE(9402), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3296), 2, + ACTIONS(3290), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [217121] = 7, - ACTIONS(8658), 1, + [208545] = 7, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(8662), 1, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(11067), 1, + ACTIONS(10789), 1, anon_sym_COLON, - STATE(9046), 1, + STATE(8766), 1, sym_type_constraints, - STATE(9724), 1, + STATE(9297), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4277), 2, + ACTIONS(4329), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [217145] = 3, - STATE(1705), 1, + [208569] = 3, + STATE(2052), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11069), 6, + ACTIONS(10791), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [217161] = 6, - ACTIONS(8729), 1, + [208585] = 8, + ACTIONS(4301), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, anon_sym_LBRACE, - ACTIONS(9940), 1, - anon_sym_LPAREN, - STATE(8762), 1, - sym_value_arguments, - STATE(9122), 1, - sym_class_body, + STATE(8585), 1, + sym_type_constraints, + STATE(9656), 1, + sym_function_body, + STATE(9998), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11071), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [217183] = 3, - STATE(1482), 1, + [208611] = 3, + STATE(1560), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11073), 6, + ACTIONS(10793), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [217199] = 7, - ACTIONS(8652), 1, - anon_sym_LBRACE, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8935), 1, - anon_sym_COLON, - STATE(8954), 1, - sym_type_constraints, - STATE(9696), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3296), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217223] = 3, - STATE(1740), 1, + [208627] = 3, + STATE(1843), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11075), 6, + ACTIONS(10795), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [217239] = 2, + [208643] = 6, + ACTIONS(8638), 1, + anon_sym_LBRACE, + ACTIONS(9671), 1, + anon_sym_LPAREN, + STATE(8474), 1, + sym_value_arguments, + STATE(8824), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4191), 7, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [217253] = 3, - STATE(1873), 1, - sym__assignment_and_operator, + ACTIONS(10797), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [208665] = 7, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(8814), 1, + anon_sym_COLON, + STATE(8719), 1, + sym_type_constraints, + STATE(9418), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11077), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [217269] = 3, - STATE(1689), 1, + ACTIONS(3282), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208689] = 3, + STATE(1547), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11079), 6, + ACTIONS(10799), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [217285] = 3, - STATE(1918), 1, + [208705] = 3, + STATE(1941), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11081), 6, + ACTIONS(10801), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [217301] = 3, - STATE(2104), 1, + [208721] = 3, + STATE(1785), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11083), 6, + ACTIONS(10803), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [217317] = 7, - ACTIONS(8652), 1, + [208737] = 7, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(8658), 1, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(11085), 1, + ACTIONS(10805), 1, anon_sym_COLON, - STATE(9062), 1, + STATE(8778), 1, sym_type_constraints, - STATE(9447), 1, + STATE(9113), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4283), 2, + ACTIONS(4323), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [217341] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4319), 7, - anon_sym_AT, + [208761] = 5, + ACTIONS(9671), 1, anon_sym_LPAREN, - anon_sym_val, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [217355] = 6, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8662), 1, - anon_sym_LBRACE, - STATE(9007), 1, - sym_type_constraints, - STATE(9491), 1, - sym_class_body, + ACTIONS(10807), 1, + anon_sym_by, + STATE(7182), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4387), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217376] = 7, - ACTIONS(4258), 1, - anon_sym_while, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(8765), 1, + ACTIONS(4507), 4, anon_sym_LBRACE, - ACTIONS(11087), 1, - anon_sym_COLON, - STATE(9355), 1, - sym_type_constraints, - STATE(9760), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [217399] = 6, - ACTIONS(8658), 1, + anon_sym_COMMA, anon_sym_where, - ACTIONS(8662), 1, - anon_sym_LBRACE, - STATE(9067), 1, - sym_type_constraints, - STATE(9452), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4467), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217420] = 2, + anon_sym_while, + [208781] = 3, + STATE(1606), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4701), 6, - sym__automatic_semicolon, - anon_sym_COLON, + ACTIONS(10809), 6, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [217433] = 6, - ACTIONS(11089), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11091), 1, - anon_sym_DOLLAR, - ACTIONS(11093), 1, - sym__string_end, - ACTIONS(11095), 1, - sym__string_content, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208797] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8699), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [217454] = 6, - ACTIONS(8658), 1, + ACTIONS(4337), 7, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208811] = 8, + ACTIONS(4297), 1, + anon_sym_while, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(8662), 1, - anon_sym_LBRACE, - STATE(9046), 1, - sym_type_constraints, - STATE(9724), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4277), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217475] = 6, - ACTIONS(10959), 1, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10961), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(9387), 1, + STATE(8590), 1, + sym_type_constraints, + STATE(9650), 1, sym_function_body, - STATE(9633), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217496] = 2, + [208837] = 3, + STATE(1709), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4687), 6, - sym__automatic_semicolon, - anon_sym_COLON, + ACTIONS(10811), 6, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [217509] = 6, - ACTIONS(8652), 1, - anon_sym_LBRACE, - ACTIONS(8658), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208853] = 7, + ACTIONS(8517), 1, anon_sym_where, - STATE(9062), 1, - sym_type_constraints, - STATE(9447), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4283), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217530] = 6, - ACTIONS(8652), 1, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(8658), 1, - anon_sym_where, - STATE(9059), 1, - sym_type_constraints, - STATE(9427), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4425), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217551] = 6, - ACTIONS(11097), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11100), 1, - anon_sym_DOLLAR, - ACTIONS(11103), 1, - sym__string_end, - ACTIONS(11105), 1, - sym__string_content, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8682), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [217572] = 3, - ACTIONS(9198), 1, + ACTIONS(10813), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4015), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_LT, - anon_sym_DOT, - [217587] = 6, - ACTIONS(8652), 1, - anon_sym_LBRACE, - ACTIONS(8658), 1, - anon_sym_where, - STATE(8935), 1, - sym_type_constraints, - STATE(9396), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4258), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217608] = 6, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8662), 1, - anon_sym_LBRACE, - STATE(9074), 1, + STATE(8715), 1, sym_type_constraints, - STATE(9447), 1, + STATE(9248), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4283), 2, + ACTIONS(4218), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [217629] = 6, - ACTIONS(8652), 1, + [208877] = 6, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(8658), 1, - anon_sym_where, - STATE(9002), 1, - sym_type_constraints, - STATE(9491), 1, - sym_enum_class_body, + ACTIONS(9671), 1, + anon_sym_LPAREN, + STATE(8503), 1, + sym_value_arguments, + STATE(9011), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4387), 2, - sym__automatic_semicolon, + ACTIONS(10815), 3, anon_sym_RBRACE, - [217650] = 7, - ACTIONS(4258), 1, - anon_sym_while, - ACTIONS(8729), 1, - anon_sym_LBRACE, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(11108), 1, - anon_sym_COLON, - STATE(9345), 1, - sym_type_constraints, - STATE(9760), 1, - sym_class_body, + anon_sym_COMMA, + anon_sym_SEMI, + [208899] = 3, + STATE(1676), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217673] = 5, - ACTIONS(11110), 1, + ACTIONS(10817), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208915] = 5, + ACTIONS(10819), 1, anon_sym_AT, - ACTIONS(11112), 1, + ACTIONS(10821), 1, anon_sym_val, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8706), 2, + STATE(8415), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9606), 2, + STATE(9130), 2, sym__single_annotation, sym__multi_annotation, - [217692] = 6, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(10961), 1, - anon_sym_LBRACE, - STATE(9497), 1, - sym_function_body, - STATE(9633), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4289), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217713] = 6, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8662), 1, - anon_sym_LBRACE, - STATE(8913), 1, - sym_type_constraints, - STATE(9396), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4258), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217734] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4679), 6, - sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [217747] = 7, - ACTIONS(3280), 1, + [208934] = 7, + ACTIONS(4329), 1, anon_sym_while, - ACTIONS(8729), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(8735), 1, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(9030), 1, + ACTIONS(10823), 1, anon_sym_COLON, - STATE(9086), 1, + STATE(9007), 1, sym_type_constraints, - STATE(9841), 1, + STATE(9623), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217770] = 4, - ACTIONS(11114), 1, - anon_sym_COMMA, - STATE(8713), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4543), 4, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - [217787] = 6, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(10961), 1, - anon_sym_LBRACE, - STATE(9429), 1, - sym_function_body, - STATE(9633), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4166), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217808] = 4, - ACTIONS(11116), 1, - anon_sym_COMMA, - STATE(8695), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4497), 4, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - [217825] = 6, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(10961), 1, - anon_sym_LBRACE, - STATE(9503), 1, - sym_function_body, - STATE(9633), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4455), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217846] = 6, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(10961), 1, - anon_sym_LBRACE, - STATE(9470), 1, - sym_function_body, - STATE(9633), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4185), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217867] = 6, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(10961), 1, - anon_sym_LBRACE, - STATE(9483), 1, - sym_function_body, - STATE(9633), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4293), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217888] = 6, - ACTIONS(11089), 1, + [208957] = 6, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11091), 1, + ACTIONS(10827), 1, anon_sym_DOLLAR, - ACTIONS(11119), 1, + ACTIONS(10829), 1, sym__string_end, - ACTIONS(11121), 1, - sym__string_content, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8682), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [217909] = 6, - ACTIONS(8652), 1, - anon_sym_LBRACE, - ACTIONS(8658), 1, - anon_sym_where, - STATE(9053), 1, - sym_type_constraints, - STATE(9452), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4467), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217930] = 6, - ACTIONS(11089), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11091), 1, - anon_sym_DOLLAR, - ACTIONS(11121), 1, + ACTIONS(10831), 1, sym__string_content, - ACTIONS(11123), 1, - sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8682), 2, + STATE(8441), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [217951] = 6, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8662), 1, - anon_sym_LBRACE, - STATE(9045), 1, - sym_type_constraints, - STATE(9427), 1, - sym_class_body, + [208978] = 4, + ACTIONS(10833), 1, + anon_sym_COMMA, + STATE(8431), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 2, + ACTIONS(4341), 4, sym__automatic_semicolon, - anon_sym_RBRACE, - [217972] = 6, - ACTIONS(10959), 1, anon_sym_EQ, - ACTIONS(10961), 1, - anon_sym_LBRACE, - STATE(9633), 1, - sym__block, - STATE(9650), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4198), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217993] = 6, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8662), 1, anon_sym_LBRACE, - STATE(9036), 1, - sym_type_constraints, - STATE(9426), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4471), 2, - sym__automatic_semicolon, anon_sym_RBRACE, - [218014] = 6, - ACTIONS(11089), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11091), 1, - anon_sym_DOLLAR, - ACTIONS(11125), 1, - sym__string_end, - ACTIONS(11127), 1, - sym__string_content, + [208995] = 3, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8723), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [218035] = 5, - ACTIONS(10184), 1, - anon_sym_val, - ACTIONS(11129), 1, + ACTIONS(4009), 5, anon_sym_AT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8706), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(9606), 2, - sym__single_annotation, - sym__multi_annotation, - [218054] = 6, - ACTIONS(11089), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11091), 1, - anon_sym_DOLLAR, - ACTIONS(11132), 1, - sym__string_end, - ACTIONS(11134), 1, - sym__string_content, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8731), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [218075] = 4, - ACTIONS(11136), 1, - anon_sym_COMMA, - STATE(8708), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4707), 4, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [218092] = 6, - ACTIONS(11089), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11091), 1, - anon_sym_DOLLAR, - ACTIONS(11139), 1, - sym__string_end, - ACTIONS(11141), 1, - sym__string_content, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8711), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [218113] = 4, - ACTIONS(11143), 1, - anon_sym_COMMA, - STATE(8708), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4742), 4, - sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_LT, + anon_sym_DOT, + [209010] = 7, + ACTIONS(3274), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(8644), 1, anon_sym_where, - [218130] = 6, - ACTIONS(11089), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11091), 1, - anon_sym_DOLLAR, - ACTIONS(11121), 1, - sym__string_content, - ACTIONS(11145), 1, - sym__string_end, + ACTIONS(8913), 1, + anon_sym_COLON, + STATE(9052), 1, + sym_type_constraints, + STATE(9819), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8682), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [218151] = 7, - ACTIONS(3296), 1, - anon_sym_while, - ACTIONS(8735), 1, + [209033] = 6, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(8765), 1, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(9028), 1, - anon_sym_COLON, - STATE(9162), 1, + STATE(8749), 1, sym_type_constraints, - STATE(9807), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218174] = 4, - ACTIONS(11114), 1, - anon_sym_COMMA, - STATE(8695), 1, - aux_sym_type_constraints_repeat1, + STATE(9147), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4508), 4, + ACTIONS(4361), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - [218191] = 7, - ACTIONS(3288), 1, - anon_sym_while, - ACTIONS(8729), 1, + [209054] = 6, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(8735), 1, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(9032), 1, - anon_sym_COLON, - STATE(9364), 1, + STATE(8747), 1, sym_type_constraints, - STATE(9776), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218214] = 3, - ACTIONS(10983), 1, - anon_sym_by, + STATE(9144), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4437), 5, + ACTIONS(4469), 2, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [218229] = 6, - ACTIONS(11089), 1, + [209075] = 6, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11091), 1, + ACTIONS(10827), 1, anon_sym_DOLLAR, - ACTIONS(11147), 1, + ACTIONS(10835), 1, sym__string_end, - ACTIONS(11149), 1, + ACTIONS(10837), 1, sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8718), 2, + STATE(8423), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [218250] = 7, - ACTIONS(3288), 1, - anon_sym_while, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(8765), 1, - anon_sym_LBRACE, - ACTIONS(9034), 1, - anon_sym_COLON, - STATE(9366), 1, - sym_type_constraints, - STATE(9776), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218273] = 6, - ACTIONS(11089), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11091), 1, - anon_sym_DOLLAR, - ACTIONS(11121), 1, - sym__string_content, - ACTIONS(11151), 1, - sym__string_end, + [209096] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8682), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [218294] = 4, - ACTIONS(11143), 1, - anon_sym_COMMA, - STATE(8710), 1, - aux_sym__delegation_specifiers_repeat1, + ACTIONS(5057), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209109] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4673), 4, + ACTIONS(4748), 6, sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, - [218311] = 6, - ACTIONS(8658), 1, - anon_sym_where, - ACTIONS(8662), 1, - anon_sym_LBRACE, - STATE(9031), 1, - sym_type_constraints, - STATE(9521), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4459), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [218332] = 6, - ACTIONS(8652), 1, + [209122] = 6, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(8658), 1, - anon_sym_where, - STATE(9028), 1, - sym_type_constraints, - STATE(9521), 1, - sym_enum_class_body, + STATE(9161), 1, + sym_function_body, + STATE(9175), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4459), 2, + ACTIONS(4441), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [218353] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5055), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [218366] = 6, - ACTIONS(11089), 1, + [209143] = 6, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11091), 1, + ACTIONS(10827), 1, anon_sym_DOLLAR, - ACTIONS(11121), 1, - sym__string_content, - ACTIONS(11153), 1, + ACTIONS(10839), 1, sym__string_end, + ACTIONS(10841), 1, + sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8682), 2, + STATE(8444), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [218387] = 6, - ACTIONS(8658), 1, + [209164] = 5, + ACTIONS(9890), 1, + anon_sym_val, + ACTIONS(10843), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8415), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9130), 2, + sym__single_annotation, + sym__multi_annotation, + [209183] = 6, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(8662), 1, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(8919), 1, + STATE(8715), 1, sym_type_constraints, - STATE(9495), 1, + STATE(9248), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4463), 2, + ACTIONS(4218), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [218408] = 7, - ACTIONS(3296), 1, - anon_sym_while, - ACTIONS(8729), 1, - anon_sym_LBRACE, - ACTIONS(8735), 1, + [209204] = 6, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(9026), 1, - anon_sym_COLON, - STATE(9190), 1, + ACTIONS(8521), 1, + anon_sym_LBRACE, + STATE(8766), 1, sym_type_constraints, - STATE(9807), 1, + STATE(9297), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218431] = 7, - ACTIONS(4283), 1, - anon_sym_while, - ACTIONS(8729), 1, + ACTIONS(4329), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209225] = 4, + ACTIONS(10846), 1, + anon_sym_COMMA, + STATE(8425), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4686), 4, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(8735), 1, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(11155), 1, - anon_sym_COLON, - STATE(9250), 1, - sym_type_constraints, - STATE(9800), 1, - sym_class_body, + [209242] = 6, + ACTIONS(10825), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10827), 1, + anon_sym_DOLLAR, + ACTIONS(10848), 1, + sym__string_end, + ACTIONS(10850), 1, + sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218454] = 7, - ACTIONS(4283), 1, + STATE(8430), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209263] = 7, + ACTIONS(3290), 1, anon_sym_while, - ACTIONS(8735), 1, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(8765), 1, + ACTIONS(8648), 1, anon_sym_LBRACE, - ACTIONS(11157), 1, + ACTIONS(8899), 1, anon_sym_COLON, - STATE(9232), 1, + STATE(8903), 1, sym_type_constraints, - STATE(9800), 1, + STATE(9585), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218477] = 2, + [209286] = 6, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8521), 1, + anon_sym_LBRACE, + STATE(8750), 1, + sym_type_constraints, + STATE(9443), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4693), 6, + ACTIONS(4495), 2, sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_where, - [218490] = 7, - ACTIONS(4277), 1, - anon_sym_while, - ACTIONS(8729), 1, - anon_sym_LBRACE, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(11159), 1, - anon_sym_COLON, - STATE(9159), 1, - sym_type_constraints, - STATE(9809), 1, - sym_class_body, + [209307] = 3, + ACTIONS(10733), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218513] = 6, - ACTIONS(11089), 1, + ACTIONS(4507), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [209322] = 6, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11091), 1, + ACTIONS(10827), 1, anon_sym_DOLLAR, - ACTIONS(11161), 1, - sym__string_end, - ACTIONS(11163), 1, + ACTIONS(10831), 1, sym__string_content, + ACTIONS(10852), 1, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8701), 2, + STATE(8441), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [218534] = 6, - ACTIONS(11089), 1, + [209343] = 6, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11091), 1, + ACTIONS(10827), 1, anon_sym_DOLLAR, - ACTIONS(11121), 1, + ACTIONS(10831), 1, sym__string_content, - ACTIONS(11165), 1, + ACTIONS(10854), 1, sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8682), 2, + STATE(8441), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [218555] = 4, - ACTIONS(10989), 1, - anon_sym_DOT, - STATE(8610), 1, - aux_sym_user_type_repeat1, + [209364] = 4, + ACTIONS(10846), 1, + anon_sym_COMMA, + STATE(8455), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_in, - [218572] = 6, - ACTIONS(6547), 1, + ACTIONS(4738), 4, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(11167), 1, - anon_sym_COLON, - ACTIONS(11169), 1, + anon_sym_RBRACE, + anon_sym_where, + [209381] = 6, + ACTIONS(10689), 1, anon_sym_EQ, - STATE(3289), 1, + ACTIONS(10691), 1, + anon_sym_LBRACE, + STATE(9135), 1, sym_function_body, - STATE(3335), 1, + STATE(9175), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218592] = 6, - ACTIONS(6632), 1, - anon_sym_LBRACE, - ACTIONS(11171), 1, - anon_sym_COLON, - ACTIONS(11173), 1, - anon_sym_EQ, - STATE(3541), 1, - sym_function_body, - STATE(3620), 1, - sym__block, + ACTIONS(4162), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209402] = 4, + ACTIONS(10856), 1, + anon_sym_COMMA, + STATE(8427), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218612] = 6, - ACTIONS(6854), 1, - anon_sym_LBRACE, - ACTIONS(11175), 1, - anon_sym_COLON, - ACTIONS(11177), 1, + ACTIONS(4432), 4, + sym__automatic_semicolon, anon_sym_EQ, - STATE(4073), 1, - sym__block, - STATE(4131), 1, - sym_function_body, + anon_sym_LBRACE, + anon_sym_RBRACE, + [209419] = 6, + ACTIONS(8511), 1, + anon_sym_LBRACE, + ACTIONS(8517), 1, + anon_sym_where, + STATE(8748), 1, + sym_type_constraints, + STATE(9453), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218632] = 7, - ACTIONS(3), 1, - sym_multiline_comment, - ACTIONS(11179), 1, - sym_line_comment, - ACTIONS(11181), 1, - aux_sym_character_literal_token1, - ACTIONS(11183), 1, - anon_sym_BSLASHu, - ACTIONS(11185), 1, - sym__escaped_identifier, - STATE(10262), 1, - sym__uni_character_literal, - STATE(10407), 1, - sym_character_escape_seq, - [218654] = 6, - ACTIONS(4293), 1, + ACTIONS(4465), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209440] = 7, + ACTIONS(4218), 1, anon_sym_while, - ACTIONS(10993), 1, - anon_sym_EQ, - ACTIONS(10995), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(9900), 1, - sym_function_body, - STATE(10166), 1, - sym__block, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(10859), 1, + anon_sym_COLON, + STATE(8904), 1, + sym_type_constraints, + STATE(9543), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218674] = 6, - ACTIONS(6854), 1, - anon_sym_LBRACE, - ACTIONS(11177), 1, - anon_sym_EQ, - ACTIONS(11187), 1, - anon_sym_COLON, - STATE(4073), 1, - sym__block, - STATE(4112), 1, - sym_function_body, + [209463] = 6, + ACTIONS(10825), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10827), 1, + anon_sym_DOLLAR, + ACTIONS(10831), 1, + sym__string_content, + ACTIONS(10861), 1, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218694] = 4, - ACTIONS(11189), 1, + STATE(8441), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209484] = 4, + ACTIONS(10833), 1, anon_sym_COMMA, - STATE(8763), 1, + STATE(8427), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4543), 3, + ACTIONS(4426), 4, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, - anon_sym_while, - [218710] = 6, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(11191), 1, - anon_sym_COLON, - ACTIONS(11193), 1, - anon_sym_EQ, - STATE(5278), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + anon_sym_RBRACE, + [209501] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218730] = 6, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(11195), 1, + ACTIONS(4561), 6, + sym__automatic_semicolon, anon_sym_COLON, - ACTIONS(11197), 1, anon_sym_EQ, - STATE(4913), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218750] = 6, - ACTIONS(6854), 1, anon_sym_LBRACE, - ACTIONS(11177), 1, - anon_sym_EQ, - ACTIONS(11199), 1, + anon_sym_RBRACE, + anon_sym_where, + [209514] = 7, + ACTIONS(4218), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, + anon_sym_LBRACE, + ACTIONS(10863), 1, anon_sym_COLON, - STATE(4073), 1, - sym__block, - STATE(4143), 1, - sym_function_body, + STATE(8795), 1, + sym_type_constraints, + STATE(9543), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218770] = 6, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(11201), 1, - anon_sym_COLON, - ACTIONS(11203), 1, - anon_sym_EQ, - STATE(5342), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + [209537] = 6, + ACTIONS(10825), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10827), 1, + anon_sym_DOLLAR, + ACTIONS(10865), 1, + sym__string_end, + ACTIONS(10867), 1, + sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218790] = 6, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(10961), 1, + STATE(8424), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209558] = 6, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(11205), 1, - anon_sym_COLON, - STATE(9538), 1, - sym_function_body, - STATE(9633), 1, - sym__block, + STATE(8783), 1, + sym_type_constraints, + STATE(9453), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218810] = 6, - ACTIONS(4198), 1, - anon_sym_while, - ACTIONS(10993), 1, + ACTIONS(4465), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209579] = 6, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10995), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(9797), 1, + STATE(9157), 1, sym_function_body, - STATE(10166), 1, + STATE(9175), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218830] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4679), 5, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [218842] = 6, - ACTIONS(4283), 1, + ACTIONS(4301), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209600] = 7, + ACTIONS(4323), 1, anon_sym_while, - ACTIONS(8735), 1, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(8765), 1, + ACTIONS(8648), 1, anon_sym_LBRACE, - STATE(9232), 1, + ACTIONS(10869), 1, + anon_sym_COLON, + STATE(8893), 1, sym_type_constraints, - STATE(9800), 1, + STATE(9611), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218862] = 6, - ACTIONS(4283), 1, - anon_sym_while, - ACTIONS(8729), 1, - anon_sym_LBRACE, - ACTIONS(8735), 1, - anon_sym_where, - STATE(9250), 1, - sym_type_constraints, - STATE(9800), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218882] = 6, - ACTIONS(8329), 1, + [209623] = 6, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(8331), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(11207), 1, - anon_sym_COLON, - STATE(5534), 1, + STATE(9175), 1, sym__block, - STATE(5546), 1, + STATE(9429), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218902] = 6, - ACTIONS(4277), 1, - anon_sym_while, - ACTIONS(8729), 1, - anon_sym_LBRACE, - ACTIONS(8735), 1, - anon_sym_where, - STATE(9159), 1, - sym_type_constraints, - STATE(9809), 1, - sym_class_body, + ACTIONS(4139), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209644] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218922] = 6, - ACTIONS(4425), 1, - anon_sym_while, - ACTIONS(8735), 1, + ACTIONS(4545), 6, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(8765), 1, + [209657] = 6, + ACTIONS(8511), 1, anon_sym_LBRACE, - STATE(9261), 1, + ACTIONS(8517), 1, + anon_sym_where, + STATE(8778), 1, sym_type_constraints, - STATE(9786), 1, + STATE(9113), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218942] = 6, - ACTIONS(6547), 1, - anon_sym_LBRACE, - ACTIONS(11209), 1, - anon_sym_COLON, - ACTIONS(11211), 1, - anon_sym_EQ, - STATE(3289), 1, - sym_function_body, - STATE(3335), 1, - sym__block, + ACTIONS(4323), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209678] = 6, + ACTIONS(10871), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10874), 1, + anon_sym_DOLLAR, + ACTIONS(10877), 1, + sym__string_end, + ACTIONS(10879), 1, + sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218962] = 6, - ACTIONS(4166), 1, - anon_sym_while, - ACTIONS(10993), 1, - anon_sym_EQ, - ACTIONS(10995), 1, - anon_sym_LBRACE, - STATE(9787), 1, - sym_function_body, - STATE(10166), 1, - sym__block, + STATE(8441), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209699] = 6, + ACTIONS(10825), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10827), 1, + anon_sym_DOLLAR, + ACTIONS(10882), 1, + sym__string_end, + ACTIONS(10884), 1, + sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218982] = 6, - ACTIONS(6547), 1, + STATE(8454), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209720] = 6, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(11211), 1, - anon_sym_EQ, - ACTIONS(11213), 1, - anon_sym_COLON, - STATE(3328), 1, - sym_function_body, - STATE(3335), 1, - sym__block, + ACTIONS(8517), 1, + anon_sym_where, + STATE(8736), 1, + sym_type_constraints, + STATE(9154), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219002] = 6, - ACTIONS(6547), 1, - anon_sym_LBRACE, - ACTIONS(11211), 1, - anon_sym_EQ, - ACTIONS(11215), 1, - anon_sym_COLON, - STATE(3335), 1, - sym__block, - STATE(3339), 1, - sym_function_body, + ACTIONS(4483), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209741] = 6, + ACTIONS(10825), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10827), 1, + anon_sym_DOLLAR, + ACTIONS(10831), 1, + sym__string_content, + ACTIONS(10886), 1, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219022] = 6, - ACTIONS(4425), 1, - anon_sym_while, - ACTIONS(8729), 1, + STATE(8441), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209762] = 6, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(8735), 1, + ACTIONS(8517), 1, anon_sym_where, - STATE(9197), 1, + STATE(8776), 1, sym_type_constraints, - STATE(9786), 1, - sym_class_body, + STATE(9147), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219042] = 6, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_LBRACE, - ACTIONS(11217), 1, - anon_sym_COLON, - STATE(5534), 1, - sym__block, - STATE(5552), 1, - sym_function_body, + ACTIONS(4361), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209783] = 6, + ACTIONS(10825), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10827), 1, + anon_sym_DOLLAR, + ACTIONS(10888), 1, + sym__string_end, + ACTIONS(10890), 1, + sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219062] = 6, - ACTIONS(10993), 1, + STATE(8404), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209804] = 6, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10995), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(11219), 1, - anon_sym_COLON, - STATE(9778), 1, - sym_function_body, - STATE(10166), 1, + STATE(9175), 1, sym__block, + STATE(9256), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219082] = 6, - ACTIONS(4471), 1, + ACTIONS(4149), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209825] = 7, + ACTIONS(3282), 1, anon_sym_while, - ACTIONS(8729), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(8735), 1, + ACTIONS(8644), 1, anon_sym_where, - STATE(9379), 1, + ACTIONS(8871), 1, + anon_sym_COLON, + STATE(8941), 1, sym_type_constraints, - STATE(9782), 1, + STATE(9545), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219102] = 6, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(11197), 1, - anon_sym_EQ, - ACTIONS(11221), 1, - anon_sym_COLON, - STATE(4930), 1, - sym__block, - STATE(4955), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [219122] = 6, - ACTIONS(8242), 1, + [209848] = 7, + ACTIONS(3282), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, anon_sym_LBRACE, - ACTIONS(11197), 1, - anon_sym_EQ, - ACTIONS(11223), 1, + ACTIONS(8879), 1, anon_sym_COLON, - STATE(4822), 1, - sym_function_body, - STATE(4930), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [219142] = 4, - ACTIONS(8729), 1, - anon_sym_LBRACE, - STATE(9128), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11225), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [219158] = 4, - ACTIONS(11189), 1, - anon_sym_COMMA, - STATE(8768), 1, - aux_sym_type_constraints_repeat1, + STATE(9000), 1, + sym_type_constraints, + STATE(9545), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4508), 3, + [209871] = 6, + ACTIONS(10689), 1, anon_sym_EQ, + ACTIONS(10691), 1, anon_sym_LBRACE, - anon_sym_while, - [219174] = 6, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(11197), 1, - anon_sym_EQ, - ACTIONS(11227), 1, - anon_sym_COLON, - STATE(4925), 1, + STATE(9136), 1, sym_function_body, - STATE(4930), 1, + STATE(9175), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219194] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4760), 5, + ACTIONS(4185), 2, sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, + [209892] = 6, + ACTIONS(8511), 1, + anon_sym_LBRACE, + ACTIONS(8517), 1, anon_sym_where, - [219206] = 7, - ACTIONS(3), 1, - sym_multiline_comment, - ACTIONS(11179), 1, - sym_line_comment, - ACTIONS(11183), 1, - anon_sym_BSLASHu, - ACTIONS(11185), 1, - sym__escaped_identifier, - ACTIONS(11229), 1, - aux_sym_character_literal_token1, - STATE(10262), 1, - sym__uni_character_literal, - STATE(10267), 1, - sym_character_escape_seq, - [219228] = 2, + STATE(8767), 1, + sym_type_constraints, + STATE(9248), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4746), 5, + ACTIONS(4218), 2, sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_where, - [219240] = 4, - ACTIONS(11231), 1, - anon_sym_COMMA, - STATE(8768), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4497), 3, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_while, - [219256] = 6, - ACTIONS(4387), 1, - anon_sym_while, - ACTIONS(8729), 1, - anon_sym_LBRACE, - ACTIONS(8735), 1, - anon_sym_where, - STATE(9230), 1, - sym_type_constraints, - STATE(9750), 1, - sym_class_body, + [209913] = 4, + ACTIONS(10723), 1, + anon_sym_DOT, + STATE(8341), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219276] = 6, - ACTIONS(6854), 1, - anon_sym_LBRACE, - ACTIONS(11234), 1, - anon_sym_COLON, - ACTIONS(11236), 1, + ACTIONS(4195), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_in, + [209930] = 6, + ACTIONS(10689), 1, anon_sym_EQ, - STATE(4073), 1, - sym__block, - STATE(4131), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [219296] = 6, - ACTIONS(4162), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(11238), 1, - anon_sym_COLON, - ACTIONS(11240), 1, - anon_sym_EQ, - STATE(1074), 1, + STATE(9152), 1, sym_function_body, - STATE(1092), 1, + STATE(9175), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219316] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4788), 5, + ACTIONS(4297), 2, sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_where, - [219328] = 6, - ACTIONS(6547), 1, - anon_sym_LBRACE, - ACTIONS(11211), 1, - anon_sym_EQ, - ACTIONS(11242), 1, - anon_sym_COLON, - STATE(3198), 1, - sym_function_body, - STATE(3335), 1, - sym__block, + [209951] = 6, + ACTIONS(10825), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10827), 1, + anon_sym_DOLLAR, + ACTIONS(10831), 1, + sym__string_content, + ACTIONS(10892), 1, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219348] = 2, + STATE(8441), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209972] = 4, + ACTIONS(10894), 1, + anon_sym_COMMA, + STATE(8455), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4792), 5, + ACTIONS(4635), 4, sym__automatic_semicolon, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, - [219360] = 2, + [209989] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4697), 5, + ACTIONS(4583), 6, sym__automatic_semicolon, anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, - [219372] = 6, - ACTIONS(4387), 1, - anon_sym_while, - ACTIONS(8735), 1, + [210002] = 6, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(8765), 1, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(9239), 1, + STATE(8763), 1, sym_type_constraints, - STATE(9750), 1, - sym_enum_class_body, + STATE(9274), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219392] = 6, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, + ACTIONS(4357), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210023] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11244), 1, + ACTIONS(10897), 1, anon_sym_COLON, - STATE(5511), 1, + ACTIONS(10899), 1, + anon_sym_EQ, + STATE(1079), 1, sym_function_body, - STATE(5534), 1, + STATE(1129), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219412] = 6, - ACTIONS(6854), 1, + [210043] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11246), 1, + ACTIONS(10901), 1, anon_sym_COLON, - ACTIONS(11248), 1, + ACTIONS(10903), 1, anon_sym_EQ, - STATE(4073), 1, + STATE(1129), 1, sym__block, - STATE(4112), 1, + STATE(1183), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219432] = 6, - ACTIONS(4162), 1, + [210063] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11240), 1, - anon_sym_EQ, - ACTIONS(11250), 1, + ACTIONS(10905), 1, anon_sym_COLON, - STATE(1092), 1, - sym__block, - STATE(1138), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [219452] = 6, - ACTIONS(10993), 1, + ACTIONS(10907), 1, anon_sym_EQ, - ACTIONS(10995), 1, - anon_sym_LBRACE, - ACTIONS(11252), 1, - anon_sym_COLON, - STATE(9779), 1, - sym_function_body, - STATE(10166), 1, + STATE(3882), 1, sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [219472] = 4, - ACTIONS(11256), 1, - anon_sym_DOT, - STATE(8781), 1, - aux_sym_identifier_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11254), 3, - sym__automatic_semicolon, - anon_sym_DOT_STAR, - anon_sym_as, - [219488] = 6, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(11259), 1, - anon_sym_COLON, - ACTIONS(11261), 1, - anon_sym_EQ, - STATE(4913), 1, + STATE(3910), 1, sym_function_body, - STATE(4930), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219508] = 6, - ACTIONS(4162), 1, + [210083] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11240), 1, + ACTIONS(10907), 1, anon_sym_EQ, - ACTIONS(11263), 1, + ACTIONS(10909), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(3882), 1, sym__block, - STATE(1173), 1, + STATE(3890), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219528] = 6, - ACTIONS(6854), 1, + [210103] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11177), 1, + ACTIONS(10907), 1, anon_sym_EQ, - ACTIONS(11265), 1, + ACTIONS(10911), 1, anon_sym_COLON, - STATE(4073), 1, - sym__block, - STATE(4149), 1, + STATE(3836), 1, sym_function_body, + STATE(3882), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219548] = 6, - ACTIONS(6854), 1, + [210123] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11248), 1, - anon_sym_EQ, - ACTIONS(11267), 1, + ACTIONS(10913), 1, anon_sym_COLON, - STATE(4073), 1, + ACTIONS(10915), 1, + anon_sym_EQ, + STATE(1129), 1, sym__block, - STATE(4149), 1, + STATE(1143), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219568] = 4, - ACTIONS(11271), 1, - anon_sym_DOT, - STATE(8817), 1, - aux_sym_identifier_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11269), 3, - sym__automatic_semicolon, - anon_sym_DOT_STAR, - anon_sym_as, - [219584] = 6, - ACTIONS(6854), 1, + [210143] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11248), 1, + ACTIONS(10907), 1, anon_sym_EQ, - ACTIONS(11273), 1, + ACTIONS(10917), 1, anon_sym_COLON, - STATE(4073), 1, - sym__block, - STATE(4143), 1, + STATE(3867), 1, sym_function_body, + STATE(3882), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219604] = 6, - ACTIONS(11275), 1, - anon_sym_DOT_STAR, - ACTIONS(11277), 1, - anon_sym_as, - ACTIONS(11279), 1, - sym__automatic_semicolon, - STATE(9501), 1, - sym_import_alias, - STATE(9505), 1, - sym__semi, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [219624] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4701), 5, - anon_sym_COLON, - anon_sym_EQ, + [210163] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [219636] = 6, - ACTIONS(6854), 1, - anon_sym_LBRACE, - ACTIONS(11248), 1, + ACTIONS(10915), 1, anon_sym_EQ, - ACTIONS(11281), 1, + ACTIONS(10919), 1, anon_sym_COLON, - STATE(4073), 1, + STATE(1129), 1, sym__block, - STATE(4131), 1, + STATE(1173), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219656] = 6, - ACTIONS(8242), 1, + [210183] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11261), 1, + ACTIONS(10915), 1, anon_sym_EQ, - ACTIONS(11283), 1, + ACTIONS(10921), 1, anon_sym_COLON, - STATE(4930), 1, + STATE(1129), 1, sym__block, - STATE(4955), 1, + STATE(1183), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219676] = 6, - ACTIONS(4459), 1, - anon_sym_while, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(8765), 1, + [210203] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - STATE(9207), 1, - sym_type_constraints, - STATE(9869), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [219696] = 6, - ACTIONS(8329), 1, + ACTIONS(10915), 1, anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_LBRACE, - ACTIONS(11285), 1, + ACTIONS(10923), 1, anon_sym_COLON, - STATE(5523), 1, + STATE(1079), 1, sym_function_body, - STATE(5534), 1, + STATE(1129), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219716] = 6, - ACTIONS(6854), 1, - anon_sym_LBRACE, - ACTIONS(11236), 1, + [210223] = 6, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(11287), 1, - anon_sym_COLON, - STATE(4073), 1, - sym__block, - STATE(4143), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [219736] = 6, - ACTIONS(8242), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11261), 1, - anon_sym_EQ, - ACTIONS(11289), 1, + ACTIONS(10925), 1, anon_sym_COLON, - STATE(4822), 1, + STATE(5359), 1, sym_function_body, - STATE(4930), 1, + STATE(5420), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219756] = 2, + [210243] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4936), 5, + ACTIONS(5185), 5, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_where, - [219768] = 2, + [210255] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4942), 5, + ACTIONS(5181), 5, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_where, - [219780] = 2, - ACTIONS(3), 2, + [210267] = 7, + ACTIONS(3), 1, sym_multiline_comment, + ACTIONS(10927), 1, sym_line_comment, - ACTIONS(4974), 5, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [219792] = 6, - ACTIONS(4162), 1, + ACTIONS(10929), 1, + aux_sym_character_literal_token1, + ACTIONS(10931), 1, + anon_sym_BSLASHu, + ACTIONS(10933), 1, + sym__escaped_identifier, + STATE(9836), 1, + sym__uni_character_literal, + STATE(9838), 1, + sym_character_escape_seq, + [210289] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11240), 1, - anon_sym_EQ, - ACTIONS(11291), 1, + ACTIONS(10935), 1, anon_sym_COLON, - STATE(1092), 1, + ACTIONS(10937), 1, + anon_sym_EQ, + STATE(3082), 1, sym__block, - STATE(1209), 1, + STATE(3249), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219812] = 2, + [210309] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4593), 5, + ACTIONS(5165), 5, sym__automatic_semicolon, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_where, - [219824] = 2, + [210321] = 4, + ACTIONS(8638), 1, + anon_sym_LBRACE, + STATE(9011), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5006), 5, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(10815), 3, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_where, - [219836] = 6, - ACTIONS(6854), 1, + anon_sym_SEMI, + [210337] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11236), 1, + ACTIONS(10937), 1, anon_sym_EQ, - ACTIONS(11293), 1, + ACTIONS(10939), 1, anon_sym_COLON, - STATE(4073), 1, + STATE(3082), 1, sym__block, - STATE(4149), 1, + STATE(3246), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219856] = 3, - ACTIONS(11005), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4221), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - [219870] = 6, - ACTIONS(6854), 1, + [210357] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11295), 1, - anon_sym_COLON, - ACTIONS(11297), 1, + ACTIONS(10937), 1, anon_sym_EQ, - STATE(4073), 1, + ACTIONS(10941), 1, + anon_sym_COLON, + STATE(3082), 1, sym__block, - STATE(4112), 1, + STATE(3234), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219890] = 6, - ACTIONS(8242), 1, + [210377] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11261), 1, + ACTIONS(10937), 1, anon_sym_EQ, - ACTIONS(11299), 1, + ACTIONS(10943), 1, anon_sym_COLON, - STATE(4925), 1, - sym_function_body, - STATE(4930), 1, + STATE(3082), 1, sym__block, + STATE(3196), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219910] = 6, - ACTIONS(10993), 1, - anon_sym_EQ, - ACTIONS(10995), 1, - anon_sym_LBRACE, - ACTIONS(11301), 1, - anon_sym_COLON, - STATE(9758), 1, - sym_function_body, - STATE(10166), 1, - sym__block, + [210397] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219930] = 6, - ACTIONS(6854), 1, + ACTIONS(5161), 5, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(11236), 1, - anon_sym_EQ, - ACTIONS(11303), 1, - anon_sym_COLON, - STATE(4073), 1, - sym__block, - STATE(4112), 1, - sym_function_body, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [210409] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219950] = 7, - ACTIONS(3), 1, - sym_multiline_comment, - ACTIONS(11179), 1, - sym_line_comment, - ACTIONS(11183), 1, - anon_sym_BSLASHu, - ACTIONS(11185), 1, - sym__escaped_identifier, - ACTIONS(11305), 1, - aux_sym_character_literal_token1, - STATE(10090), 1, - sym_character_escape_seq, - STATE(10262), 1, - sym__uni_character_literal, - [219972] = 6, - ACTIONS(6632), 1, + ACTIONS(5189), 5, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(11307), 1, - anon_sym_COLON, - ACTIONS(11309), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [210421] = 6, + ACTIONS(8187), 1, anon_sym_EQ, - STATE(3459), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(10945), 1, + anon_sym_COLON, + STATE(5400), 1, sym_function_body, - STATE(3620), 1, + STATE(5420), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219992] = 6, - ACTIONS(8361), 1, + [210441] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11193), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(11311), 1, + ACTIONS(10947), 1, anon_sym_COLON, - STATE(5342), 1, + STATE(5082), 1, sym_function_body, - STATE(5351), 1, + STATE(5091), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220012] = 6, - ACTIONS(8361), 1, + [210461] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11193), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(11313), 1, + ACTIONS(10949), 1, anon_sym_COLON, - STATE(5292), 1, - sym_function_body, - STATE(5351), 1, + STATE(5091), 1, sym__block, + STATE(5162), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220032] = 6, - ACTIONS(6632), 1, + [210481] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11315), 1, + ACTIONS(10951), 1, anon_sym_COLON, - ACTIONS(11317), 1, + ACTIONS(10953), 1, anon_sym_EQ, - STATE(3459), 1, - sym_function_body, - STATE(3620), 1, + STATE(3402), 1, sym__block, + STATE(3497), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220052] = 6, - ACTIONS(6854), 1, - anon_sym_LBRACE, - ACTIONS(11297), 1, - anon_sym_EQ, - ACTIONS(11319), 1, - anon_sym_COLON, - STATE(4073), 1, - sym__block, - STATE(4131), 1, - sym_function_body, + [210501] = 5, + ACTIONS(10955), 1, + anon_sym_catch, + ACTIONS(10957), 1, + anon_sym_finally, + STATE(3230), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220072] = 6, - ACTIONS(8361), 1, + STATE(2763), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [210519] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11193), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(11321), 1, + ACTIONS(10959), 1, anon_sym_COLON, - STATE(5318), 1, - sym_function_body, - STATE(5351), 1, + STATE(5091), 1, sym__block, + STATE(5261), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220092] = 6, - ACTIONS(4463), 1, - anon_sym_while, - ACTIONS(8729), 1, - anon_sym_LBRACE, - ACTIONS(8735), 1, - anon_sym_where, - STATE(9342), 1, - sym_type_constraints, - STATE(9759), 1, - sym_class_body, + [210539] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220112] = 6, - ACTIONS(6632), 1, + ACTIONS(4756), 5, + sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(11309), 1, + anon_sym_RBRACE, + anon_sym_where, + [210551] = 6, + ACTIONS(6511), 1, + anon_sym_LBRACE, + ACTIONS(10953), 1, anon_sym_EQ, - ACTIONS(11323), 1, + ACTIONS(10961), 1, anon_sym_COLON, - STATE(3541), 1, - sym_function_body, - STATE(3620), 1, + STATE(3402), 1, sym__block, + STATE(3520), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220132] = 4, - ACTIONS(11271), 1, - anon_sym_DOT, - STATE(8781), 1, - aux_sym_identifier_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11325), 3, - sym__automatic_semicolon, - anon_sym_DOT_STAR, - anon_sym_as, - [220148] = 6, - ACTIONS(8242), 1, + [210571] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11327), 1, - anon_sym_COLON, - ACTIONS(11329), 1, + ACTIONS(10953), 1, anon_sym_EQ, - STATE(4913), 1, - sym_function_body, - STATE(4930), 1, + ACTIONS(10963), 1, + anon_sym_COLON, + STATE(3402), 1, sym__block, + STATE(3528), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220168] = 6, - ACTIONS(8242), 1, + [210591] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11329), 1, + ACTIONS(10953), 1, anon_sym_EQ, - ACTIONS(11331), 1, + ACTIONS(10965), 1, anon_sym_COLON, - STATE(4930), 1, + STATE(3402), 1, sym__block, - STATE(4955), 1, + STATE(3551), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220188] = 6, - ACTIONS(8242), 1, + [210611] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11329), 1, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(11333), 1, + ACTIONS(10967), 1, anon_sym_COLON, - STATE(4822), 1, + STATE(4713), 1, sym_function_body, - STATE(4930), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220208] = 6, - ACTIONS(4258), 1, - anon_sym_while, - ACTIONS(8729), 1, + [210631] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8735), 1, - anon_sym_where, - STATE(9345), 1, - sym_type_constraints, - STATE(9760), 1, - sym_class_body, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10969), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4856), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220228] = 6, - ACTIONS(8242), 1, + [210651] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11329), 1, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(11335), 1, + ACTIONS(10971), 1, anon_sym_COLON, - STATE(4925), 1, + STATE(4750), 1, sym_function_body, - STATE(4930), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220248] = 6, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(10961), 1, + [210671] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11337), 1, + ACTIONS(10973), 1, anon_sym_COLON, - STATE(9498), 1, + ACTIONS(10975), 1, + anon_sym_EQ, + STATE(4780), 1, sym_function_body, - STATE(9633), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220268] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4716), 5, - sym__automatic_semicolon, - anon_sym_COLON, + [210691] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [220280] = 6, - ACTIONS(10959), 1, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10961), 1, - anon_sym_LBRACE, - ACTIONS(11339), 1, + ACTIONS(10977), 1, anon_sym_COLON, - STATE(9425), 1, + STATE(4780), 1, sym_function_body, - STATE(9633), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220300] = 6, - ACTIONS(6632), 1, + [210711] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11309), 1, + ACTIONS(10975), 1, anon_sym_EQ, - ACTIONS(11341), 1, + ACTIONS(10979), 1, anon_sym_COLON, - STATE(3601), 1, + STATE(4750), 1, sym_function_body, - STATE(3620), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220320] = 5, - ACTIONS(11343), 1, - anon_sym_catch, - ACTIONS(11345), 1, - anon_sym_finally, - STATE(3954), 1, - sym_finally_block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3355), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [220338] = 6, - ACTIONS(4162), 1, + [210731] = 6, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11347), 1, + ACTIONS(10981), 1, anon_sym_COLON, - ACTIONS(11349), 1, - anon_sym_EQ, - STATE(1074), 1, - sym_function_body, - STATE(1092), 1, + STATE(5420), 1, sym__block, + STATE(5423), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220358] = 6, - ACTIONS(4467), 1, - anon_sym_while, - ACTIONS(8729), 1, - anon_sym_LBRACE, - ACTIONS(8735), 1, - anon_sym_where, - STATE(9136), 1, - sym_type_constraints, - STATE(9824), 1, - sym_class_body, + [210751] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220378] = 6, - ACTIONS(6632), 1, - anon_sym_LBRACE, - ACTIONS(11351), 1, + ACTIONS(4752), 5, + sym__automatic_semicolon, anon_sym_COLON, - ACTIONS(11353), 1, - anon_sym_EQ, - STATE(3459), 1, - sym_function_body, - STATE(3620), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [220398] = 6, - ACTIONS(6632), 1, anon_sym_LBRACE, - ACTIONS(11353), 1, - anon_sym_EQ, - ACTIONS(11355), 1, - anon_sym_COLON, - STATE(3541), 1, - sym_function_body, - STATE(3620), 1, - sym__block, + anon_sym_RBRACE, + anon_sym_where, + [210763] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220418] = 6, - ACTIONS(6632), 1, - anon_sym_LBRACE, - ACTIONS(11353), 1, - anon_sym_EQ, - ACTIONS(11357), 1, + ACTIONS(4553), 5, + sym__automatic_semicolon, anon_sym_COLON, - STATE(3572), 1, - sym_function_body, - STATE(3620), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [220438] = 6, - ACTIONS(4162), 1, anon_sym_LBRACE, - ACTIONS(11349), 1, + anon_sym_RBRACE, + anon_sym_where, + [210775] = 6, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(10975), 1, anon_sym_EQ, - ACTIONS(11359), 1, + ACTIONS(10983), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(4800), 1, sym__block, - STATE(1138), 1, + STATE(4856), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220458] = 6, - ACTIONS(6632), 1, + [210795] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11353), 1, + ACTIONS(10975), 1, anon_sym_EQ, - ACTIONS(11361), 1, + ACTIONS(10985), 1, anon_sym_COLON, - STATE(3601), 1, + STATE(4713), 1, sym_function_body, - STATE(3620), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220478] = 6, - ACTIONS(4162), 1, + [210815] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11349), 1, - anon_sym_EQ, - ACTIONS(11363), 1, + ACTIONS(10987), 1, anon_sym_COLON, - STATE(1092), 1, + ACTIONS(10989), 1, + anon_sym_EQ, + STATE(3402), 1, sym__block, - STATE(1173), 1, + STATE(3551), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220498] = 6, - ACTIONS(6547), 1, + [210835] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(8329), 1, + ACTIONS(10989), 1, anon_sym_EQ, - ACTIONS(11365), 1, + ACTIONS(10991), 1, anon_sym_COLON, - STATE(3198), 1, - sym_function_body, - STATE(3335), 1, + STATE(3402), 1, sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [220518] = 6, - ACTIONS(4289), 1, - anon_sym_while, - ACTIONS(10993), 1, - anon_sym_EQ, - ACTIONS(10995), 1, - anon_sym_LBRACE, - STATE(9918), 1, + STATE(3528), 1, sym_function_body, - STATE(10166), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220538] = 5, - ACTIONS(8662), 1, + [210855] = 4, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(11367), 1, - anon_sym_COLON, - STATE(9730), 1, + STATE(9090), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 2, - sym__automatic_semicolon, + ACTIONS(10993), 3, anon_sym_RBRACE, - [220556] = 6, - ACTIONS(4162), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [210871] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11349), 1, + ACTIONS(10989), 1, anon_sym_EQ, - ACTIONS(11369), 1, + ACTIONS(10995), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(3402), 1, sym__block, - STATE(1209), 1, + STATE(3520), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220576] = 6, - ACTIONS(6547), 1, + [210891] = 6, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(11371), 1, + ACTIONS(10997), 1, anon_sym_COLON, - ACTIONS(11373), 1, - anon_sym_EQ, - STATE(3289), 1, - sym_function_body, - STATE(3335), 1, + STATE(9175), 1, sym__block, + STATE(9424), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220596] = 6, - ACTIONS(8361), 1, + [210911] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10959), 1, + ACTIONS(10989), 1, anon_sym_EQ, - ACTIONS(11375), 1, + ACTIONS(10999), 1, anon_sym_COLON, - STATE(5342), 1, - sym_function_body, - STATE(5351), 1, + STATE(3402), 1, sym__block, + STATE(3497), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220616] = 6, - ACTIONS(6547), 1, - anon_sym_LBRACE, - ACTIONS(11373), 1, - anon_sym_EQ, - ACTIONS(11377), 1, - anon_sym_COLON, - STATE(3328), 1, - sym_function_body, - STATE(3335), 1, - sym__block, + [210931] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220636] = 6, - ACTIONS(4185), 1, - anon_sym_while, - ACTIONS(10993), 1, + ACTIONS(4748), 5, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(10995), 1, anon_sym_LBRACE, - STATE(9830), 1, - sym_function_body, - STATE(10166), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [220656] = 6, - ACTIONS(8361), 1, + anon_sym_where, + anon_sym_while, + [210943] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(11379), 1, + ACTIONS(11001), 1, anon_sym_COLON, - STATE(5292), 1, - sym_function_body, - STATE(5351), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [220676] = 6, - ACTIONS(6547), 1, - anon_sym_LBRACE, - ACTIONS(11373), 1, + ACTIONS(11003), 1, anon_sym_EQ, - ACTIONS(11381), 1, - anon_sym_COLON, - STATE(3335), 1, + STATE(5091), 1, sym__block, - STATE(3339), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [220696] = 6, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(11383), 1, - anon_sym_COLON, - STATE(5278), 1, + STATE(5261), 1, sym_function_body, - STATE(5351), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220716] = 6, - ACTIONS(6632), 1, + [210963] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11309), 1, - anon_sym_EQ, - ACTIONS(11385), 1, + ACTIONS(11005), 1, anon_sym_COLON, - STATE(3572), 1, - sym_function_body, - STATE(3620), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [220736] = 4, - ACTIONS(11387), 1, - anon_sym_DOT, - STATE(8610), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4227), 3, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [220752] = 7, - ACTIONS(3), 1, + ACTIONS(11007), 1, + anon_sym_EQ, + STATE(3867), 1, + sym_function_body, + STATE(3882), 1, + sym__block, + ACTIONS(3), 2, sym_multiline_comment, - ACTIONS(11179), 1, sym_line_comment, - ACTIONS(11183), 1, - anon_sym_BSLASHu, - ACTIONS(11185), 1, - sym__escaped_identifier, - ACTIONS(11389), 1, - aux_sym_character_literal_token1, - STATE(10084), 1, - sym_character_escape_seq, - STATE(10262), 1, - sym__uni_character_literal, - [220774] = 5, - ACTIONS(11391), 1, + [210983] = 5, + ACTIONS(11009), 1, anon_sym_catch, - ACTIONS(11393), 1, + ACTIONS(11011), 1, anon_sym_finally, - STATE(4896), 1, + STATE(3491), 1, sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4646), 2, + STATE(2834), 2, sym_catch_block, aux_sym_try_expression_repeat1, - [220792] = 6, - ACTIONS(8361), 1, + [211001] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10959), 1, + ACTIONS(11007), 1, anon_sym_EQ, - ACTIONS(11395), 1, + ACTIONS(11013), 1, anon_sym_COLON, - STATE(5318), 1, - sym_function_body, - STATE(5351), 1, + STATE(3882), 1, sym__block, + STATE(3910), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220812] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4437), 5, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [220824] = 6, - ACTIONS(6632), 1, + [211021] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11317), 1, + ACTIONS(11003), 1, anon_sym_EQ, - ACTIONS(11397), 1, + ACTIONS(11015), 1, anon_sym_COLON, - STATE(3541), 1, - sym_function_body, - STATE(3620), 1, + STATE(5091), 1, sym__block, + STATE(5162), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220844] = 6, - ACTIONS(6547), 1, + [211041] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8329), 1, + ACTIONS(11003), 1, anon_sym_EQ, - ACTIONS(11399), 1, + ACTIONS(11017), 1, anon_sym_COLON, - STATE(3335), 1, + STATE(5091), 1, sym__block, - STATE(3339), 1, + STATE(5143), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220864] = 6, - ACTIONS(4162), 1, + [211061] = 6, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(11401), 1, + ACTIONS(11019), 1, anon_sym_COLON, - ACTIONS(11403), 1, - anon_sym_EQ, - STATE(1074), 1, - sym_function_body, - STATE(1092), 1, + STATE(9175), 1, sym__block, + STATE(9278), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220884] = 6, - ACTIONS(6547), 1, + [211081] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11373), 1, + ACTIONS(11003), 1, anon_sym_EQ, - ACTIONS(11405), 1, + ACTIONS(11021), 1, anon_sym_COLON, - STATE(3198), 1, + STATE(5082), 1, sym_function_body, - STATE(3335), 1, + STATE(5091), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220904] = 7, - ACTIONS(3), 1, + [211101] = 4, + ACTIONS(11025), 1, + anon_sym_DOT, + STATE(8555), 1, + aux_sym_identifier_repeat1, + ACTIONS(3), 2, sym_multiline_comment, - ACTIONS(11179), 1, sym_line_comment, - ACTIONS(11183), 1, - anon_sym_BSLASHu, - ACTIONS(11185), 1, - sym__escaped_identifier, - ACTIONS(11407), 1, - aux_sym_character_literal_token1, - STATE(10262), 1, - sym__uni_character_literal, - STATE(10266), 1, - sym_character_escape_seq, - [220926] = 6, - ACTIONS(4455), 1, - anon_sym_while, - ACTIONS(10993), 1, - anon_sym_EQ, - ACTIONS(10995), 1, - anon_sym_LBRACE, - STATE(9922), 1, - sym_function_body, - STATE(10166), 1, - sym__block, + ACTIONS(11023), 3, + sym__automatic_semicolon, + anon_sym_DOT_STAR, + anon_sym_as, + [211117] = 6, + ACTIONS(11027), 1, + anon_sym_DOT_STAR, + ACTIONS(11029), 1, + anon_sym_as, + ACTIONS(11031), 1, + sym__automatic_semicolon, + STATE(9260), 1, + sym_import_alias, + STATE(9263), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220946] = 6, - ACTIONS(4162), 1, + [211137] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11403), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(11409), 1, + ACTIONS(11033), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(5091), 1, sym__block, - STATE(1138), 1, + STATE(5143), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220966] = 4, - ACTIONS(11411), 1, - anon_sym_COMMA, - STATE(8860), 1, - aux_sym__delegation_specifiers_repeat1, + [211157] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4707), 3, + ACTIONS(4545), 5, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_where, anon_sym_while, - [220982] = 6, - ACTIONS(6547), 1, + [211169] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(8329), 1, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(11414), 1, + ACTIONS(11035), 1, + anon_sym_COLON, + STATE(3082), 1, + sym__block, + STATE(3196), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211189] = 6, + ACTIONS(6714), 1, + anon_sym_LBRACE, + ACTIONS(11037), 1, anon_sym_COLON, - STATE(3328), 1, + ACTIONS(11039), 1, + anon_sym_EQ, + STATE(3836), 1, sym_function_body, - STATE(3335), 1, + STATE(3882), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221002] = 6, - ACTIONS(4162), 1, + [211209] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11403), 1, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(11416), 1, + ACTIONS(11041), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(3082), 1, sym__block, - STATE(1173), 1, + STATE(3234), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221022] = 6, - ACTIONS(6547), 1, + [211229] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(8329), 1, + ACTIONS(11039), 1, anon_sym_EQ, - ACTIONS(11418), 1, + ACTIONS(11043), 1, anon_sym_COLON, - STATE(3289), 1, + STATE(3882), 1, + sym__block, + STATE(3910), 1, sym_function_body, - STATE(3335), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211249] = 6, + ACTIONS(6714), 1, + anon_sym_LBRACE, + ACTIONS(11039), 1, + anon_sym_EQ, + ACTIONS(11045), 1, + anon_sym_COLON, + STATE(3882), 1, sym__block, + STATE(3890), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221042] = 2, + [211269] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4687), 5, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(4507), 5, + sym__automatic_semicolon, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_where, - anon_sym_while, - [221054] = 6, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(11203), 1, + [211281] = 6, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(11420), 1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + ACTIONS(11047), 1, anon_sym_COLON, - STATE(5292), 1, + STATE(9811), 1, sym_function_body, - STATE(5351), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221074] = 6, - ACTIONS(6547), 1, + [211301] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11169), 1, + ACTIONS(11039), 1, anon_sym_EQ, - ACTIONS(11422), 1, + ACTIONS(11049), 1, anon_sym_COLON, - STATE(3328), 1, + STATE(3867), 1, sym_function_body, - STATE(3335), 1, + STATE(3882), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221094] = 6, - ACTIONS(6547), 1, + [211321] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11169), 1, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(11424), 1, + ACTIONS(11051), 1, anon_sym_COLON, - STATE(3335), 1, + STATE(3082), 1, sym__block, - STATE(3339), 1, + STATE(3246), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221114] = 6, - ACTIONS(10993), 1, - anon_sym_EQ, - ACTIONS(10995), 1, + [211341] = 6, + ACTIONS(4329), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(11426), 1, - anon_sym_COLON, - STATE(9817), 1, - sym_function_body, - STATE(10166), 1, - sym__block, + ACTIONS(8644), 1, + anon_sym_where, + STATE(9007), 1, + sym_type_constraints, + STATE(9623), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221134] = 6, - ACTIONS(4162), 1, + [211361] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11403), 1, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(11428), 1, + ACTIONS(11053), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(3082), 1, sym__block, - STATE(1209), 1, + STATE(3249), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221154] = 6, - ACTIONS(8361), 1, + [211381] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11203), 1, + ACTIONS(11007), 1, anon_sym_EQ, - ACTIONS(11430), 1, + ACTIONS(11055), 1, anon_sym_COLON, - STATE(5278), 1, - sym_function_body, - STATE(5351), 1, + STATE(3882), 1, sym__block, + STATE(3890), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221174] = 6, - ACTIONS(6632), 1, - anon_sym_LBRACE, - ACTIONS(11317), 1, + [211401] = 6, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(11432), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(11057), 1, anon_sym_COLON, - STATE(3572), 1, + STATE(5317), 1, sym_function_body, - STATE(3620), 1, + STATE(5420), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221194] = 4, - ACTIONS(8729), 1, + [211421] = 4, + ACTIONS(11059), 1, + anon_sym_COMMA, + STATE(8549), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4341), 3, + anon_sym_EQ, anon_sym_LBRACE, - STATE(9122), 1, - sym_class_body, + anon_sym_while, + [211437] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11071), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [221210] = 6, - ACTIONS(8242), 1, + ACTIONS(4561), 5, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [211449] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10993), 1, + ACTIONS(10903), 1, anon_sym_EQ, - ACTIONS(11434), 1, + ACTIONS(11061), 1, anon_sym_COLON, - STATE(4913), 1, + STATE(1079), 1, sym_function_body, - STATE(4930), 1, + STATE(1129), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221230] = 6, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(10993), 1, + [211469] = 6, + ACTIONS(4139), 1, + anon_sym_while, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(11436), 1, - anon_sym_COLON, - STATE(4930), 1, - sym__block, - STATE(4955), 1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(9464), 1, sym_function_body, + STATE(9998), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221250] = 6, - ACTIONS(6547), 1, - anon_sym_LBRACE, - ACTIONS(11169), 1, + [211489] = 6, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(11438), 1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + ACTIONS(11063), 1, anon_sym_COLON, - STATE(3198), 1, + STATE(9471), 1, sym_function_body, - STATE(3335), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221270] = 6, - ACTIONS(8242), 1, + [211509] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10993), 1, + ACTIONS(10903), 1, anon_sym_EQ, - ACTIONS(11440), 1, + ACTIONS(11065), 1, anon_sym_COLON, - STATE(4822), 1, - sym_function_body, - STATE(4930), 1, + STATE(1129), 1, sym__block, + STATE(1173), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221290] = 6, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(11203), 1, + [211529] = 6, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(11442), 1, + ACTIONS(10691), 1, + anon_sym_LBRACE, + ACTIONS(11067), 1, anon_sym_COLON, - STATE(5318), 1, - sym_function_body, - STATE(5351), 1, + STATE(9175), 1, sym__block, + STATE(9393), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221310] = 6, - ACTIONS(8242), 1, + [211549] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10993), 1, + ACTIONS(10903), 1, anon_sym_EQ, - ACTIONS(11444), 1, + ACTIONS(11069), 1, anon_sym_COLON, - STATE(4925), 1, + STATE(1129), 1, + sym__block, + STATE(1143), 1, sym_function_body, - STATE(4930), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211569] = 6, + ACTIONS(6430), 1, + anon_sym_LBRACE, + ACTIONS(11071), 1, + anon_sym_COLON, + ACTIONS(11073), 1, + anon_sym_EQ, + STATE(3082), 1, sym__block, + STATE(3249), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221330] = 2, + [211589] = 5, + ACTIONS(11075), 1, + anon_sym_catch, + ACTIONS(11077), 1, + anon_sym_finally, + STATE(4793), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4707), 5, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [221342] = 6, - ACTIONS(6854), 1, + STATE(4532), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [211607] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11297), 1, + ACTIONS(11073), 1, anon_sym_EQ, - ACTIONS(11446), 1, + ACTIONS(11079), 1, anon_sym_COLON, - STATE(4073), 1, + STATE(3082), 1, sym__block, - STATE(4143), 1, + STATE(3246), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221362] = 6, - ACTIONS(6632), 1, + [211627] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11173), 1, + ACTIONS(11073), 1, anon_sym_EQ, - ACTIONS(11448), 1, + ACTIONS(11081), 1, anon_sym_COLON, - STATE(3601), 1, - sym_function_body, - STATE(3620), 1, + STATE(3082), 1, sym__block, + STATE(3234), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221382] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4649), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_in, - [221394] = 6, - ACTIONS(8361), 1, + [211647] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11450), 1, - anon_sym_COLON, - ACTIONS(11452), 1, + ACTIONS(11073), 1, anon_sym_EQ, - STATE(5342), 1, - sym_function_body, - STATE(5351), 1, + ACTIONS(11083), 1, + anon_sym_COLON, + STATE(3082), 1, sym__block, + STATE(3196), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221414] = 6, - ACTIONS(4467), 1, - anon_sym_while, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(8765), 1, + [211667] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - STATE(9089), 1, - sym_type_constraints, - STATE(9824), 1, - sym_enum_class_body, + ACTIONS(11007), 1, + anon_sym_EQ, + ACTIONS(11085), 1, + anon_sym_COLON, + STATE(3836), 1, + sym_function_body, + STATE(3882), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221434] = 6, - ACTIONS(4156), 1, - anon_sym_while, - ACTIONS(10993), 1, + [211687] = 6, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10995), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(9764), 1, + ACTIONS(11087), 1, + anon_sym_COLON, + STATE(9511), 1, sym_function_body, - STATE(10166), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221454] = 6, - ACTIONS(8361), 1, + [211707] = 5, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(11452), 1, - anon_sym_EQ, - ACTIONS(11454), 1, + ACTIONS(11089), 1, anon_sym_COLON, - STATE(5292), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + STATE(9358), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221474] = 6, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(11452), 1, + ACTIONS(4499), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [211725] = 4, + ACTIONS(11059), 1, + anon_sym_COMMA, + STATE(8615), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4426), 3, anon_sym_EQ, - ACTIONS(11456), 1, - anon_sym_COLON, - STATE(5278), 1, - sym_function_body, - STATE(5351), 1, - sym__block, + anon_sym_LBRACE, + anon_sym_while, + [211741] = 6, + ACTIONS(4357), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + ACTIONS(8644), 1, + anon_sym_where, + STATE(8920), 1, + sym_type_constraints, + STATE(9518), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211761] = 4, + ACTIONS(11091), 1, + anon_sym_DOT, + STATE(8341), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221494] = 5, - ACTIONS(11458), 1, + ACTIONS(4195), 3, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [211777] = 5, + ACTIONS(11093), 1, anon_sym_catch, - ACTIONS(11460), 1, + ACTIONS(11095), 1, anon_sym_finally, - STATE(5364), 1, + STATE(5099), 1, sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4714), 2, + STATE(4599), 2, sym_catch_block, aux_sym_try_expression_repeat1, - [221512] = 6, - ACTIONS(4162), 1, + [211795] = 4, + ACTIONS(11097), 1, + anon_sym_COMMA, + STATE(8580), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4738), 3, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [211811] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11462), 1, + ACTIONS(11099), 1, anon_sym_COLON, - ACTIONS(11464), 1, + ACTIONS(11101), 1, anon_sym_EQ, - STATE(1074), 1, + STATE(5082), 1, sym_function_body, - STATE(1092), 1, + STATE(5091), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221532] = 4, - ACTIONS(11466), 1, - anon_sym_COMMA, - STATE(8860), 1, - aux_sym__delegation_specifiers_repeat1, + [211831] = 4, + ACTIONS(11025), 1, + anon_sym_DOT, + STATE(8609), 1, + aux_sym_identifier_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4742), 3, + ACTIONS(11103), 3, + sym__automatic_semicolon, + anon_sym_DOT_STAR, + anon_sym_as, + [211847] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [221548] = 2, + ACTIONS(11101), 1, + anon_sym_EQ, + ACTIONS(11105), 1, + anon_sym_COLON, + STATE(5091), 1, + sym__block, + STATE(5143), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4693), 5, + [211867] = 6, + ACTIONS(4145), 1, + anon_sym_LBRACE, + ACTIONS(11107), 1, anon_sym_COLON, + ACTIONS(11109), 1, anon_sym_EQ, + STATE(1129), 1, + sym__block, + STATE(1143), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211887] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [221560] = 6, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(11452), 1, + ACTIONS(10899), 1, anon_sym_EQ, - ACTIONS(11468), 1, + ACTIONS(11111), 1, anon_sym_COLON, - STATE(5318), 1, - sym_function_body, - STATE(5351), 1, + STATE(1129), 1, sym__block, + STATE(1143), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221580] = 5, - ACTIONS(11470), 1, - anon_sym_catch, - ACTIONS(11472), 1, - anon_sym_finally, - STATE(1069), 1, - sym_finally_block, + [211907] = 6, + ACTIONS(4218), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + ACTIONS(8644), 1, + anon_sym_where, + STATE(8904), 1, + sym_type_constraints, + STATE(9543), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(819), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [221598] = 6, - ACTIONS(4162), 1, + [211927] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11464), 1, + ACTIONS(10899), 1, anon_sym_EQ, - ACTIONS(11474), 1, + ACTIONS(11113), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(1129), 1, sym__block, - STATE(1138), 1, + STATE(1173), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221618] = 6, - ACTIONS(4162), 1, + [211947] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11464), 1, + ACTIONS(10899), 1, anon_sym_EQ, - ACTIONS(11476), 1, + ACTIONS(11115), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(1129), 1, sym__block, - STATE(1173), 1, + STATE(1183), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221638] = 5, - ACTIONS(11478), 1, - anon_sym_catch, - ACTIONS(11480), 1, - anon_sym_finally, - STATE(3688), 1, - sym_finally_block, + [211967] = 6, + ACTIONS(4218), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(8795), 1, + sym_type_constraints, + STATE(9543), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2898), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [221656] = 4, - ACTIONS(11466), 1, - anon_sym_COMMA, - STATE(8890), 1, - aux_sym__delegation_specifiers_repeat1, + [211987] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4673), 3, + ACTIONS(4565), 5, + sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, - anon_sym_while, - [221672] = 6, - ACTIONS(4162), 1, + [211999] = 3, + ACTIONS(10740), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4124), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [212013] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11464), 1, + ACTIONS(11101), 1, anon_sym_EQ, - ACTIONS(11482), 1, + ACTIONS(11117), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(5091), 1, sym__block, - STATE(1209), 1, + STATE(5162), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221692] = 5, - ACTIONS(8662), 1, + [212033] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11484), 1, + ACTIONS(11119), 1, anon_sym_COLON, - STATE(9574), 1, - sym_class_body, + ACTIONS(11121), 1, + anon_sym_EQ, + STATE(3082), 1, + sym__block, + STATE(3249), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4445), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [221710] = 2, + [212053] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5022), 5, - sym__automatic_semicolon, + ACTIONS(4583), 5, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_where, - [221722] = 6, - ACTIONS(6632), 1, + anon_sym_while, + [212065] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11173), 1, + ACTIONS(11121), 1, anon_sym_EQ, - ACTIONS(11486), 1, + ACTIONS(11123), 1, anon_sym_COLON, - STATE(3572), 1, - sym_function_body, - STATE(3620), 1, + STATE(3082), 1, sym__block, + STATE(3246), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221742] = 6, - ACTIONS(6632), 1, + [212085] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11317), 1, + ACTIONS(11121), 1, anon_sym_EQ, - ACTIONS(11488), 1, + ACTIONS(11125), 1, anon_sym_COLON, - STATE(3601), 1, - sym_function_body, - STATE(3620), 1, + STATE(3082), 1, sym__block, + STATE(3234), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221762] = 6, - ACTIONS(6632), 1, + [212105] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11173), 1, + ACTIONS(11121), 1, anon_sym_EQ, - ACTIONS(11490), 1, + ACTIONS(11127), 1, anon_sym_COLON, - STATE(3459), 1, - sym_function_body, - STATE(3620), 1, + STATE(3082), 1, sym__block, + STATE(3196), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221782] = 3, - ACTIONS(11061), 1, - anon_sym_by, + [212125] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4437), 4, + ACTIONS(4635), 5, + sym__automatic_semicolon, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_where, + [212137] = 6, + ACTIONS(4149), 1, anon_sym_while, - [221796] = 7, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(9571), 1, + sym_function_body, + STATE(9998), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212157] = 6, + ACTIONS(4145), 1, + anon_sym_LBRACE, + ACTIONS(11109), 1, + anon_sym_EQ, + ACTIONS(11129), 1, + anon_sym_COLON, + STATE(1129), 1, + sym__block, + STATE(1173), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212177] = 7, ACTIONS(3), 1, sym_multiline_comment, - ACTIONS(11179), 1, + ACTIONS(10927), 1, sym_line_comment, - ACTIONS(11183), 1, + ACTIONS(10931), 1, anon_sym_BSLASHu, - ACTIONS(11185), 1, + ACTIONS(10933), 1, sym__escaped_identifier, - ACTIONS(11492), 1, + ACTIONS(11131), 1, aux_sym_character_literal_token1, - STATE(9876), 1, + STATE(9540), 1, sym_character_escape_seq, - STATE(10262), 1, + STATE(9836), 1, sym__uni_character_literal, - [221818] = 5, - ACTIONS(11494), 1, - anon_sym_catch, - ACTIONS(11496), 1, - anon_sym_finally, - STATE(3206), 1, - sym_finally_block, + [212199] = 6, + ACTIONS(4145), 1, + anon_sym_LBRACE, + ACTIONS(11109), 1, + anon_sym_EQ, + ACTIONS(11133), 1, + anon_sym_COLON, + STATE(1129), 1, + sym__block, + STATE(1183), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2826), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [221836] = 6, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(10961), 1, + [212219] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11498), 1, + ACTIONS(11135), 1, anon_sym_COLON, - STATE(9633), 1, + ACTIONS(11137), 1, + anon_sym_EQ, + STATE(3402), 1, sym__block, - STATE(9741), 1, + STATE(3497), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221856] = 6, - ACTIONS(4258), 1, - anon_sym_while, - ACTIONS(8735), 1, - anon_sym_where, - ACTIONS(8765), 1, + [212239] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - STATE(9355), 1, - sym_type_constraints, - STATE(9760), 1, - sym_enum_class_body, + ACTIONS(11109), 1, + anon_sym_EQ, + ACTIONS(11139), 1, + anon_sym_COLON, + STATE(1079), 1, + sym_function_body, + STATE(1129), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221876] = 6, - ACTIONS(6854), 1, + [212259] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11297), 1, + ACTIONS(11101), 1, anon_sym_EQ, - ACTIONS(11500), 1, + ACTIONS(11141), 1, anon_sym_COLON, - STATE(4073), 1, + STATE(5091), 1, sym__block, - STATE(4149), 1, + STATE(5261), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221896] = 6, - ACTIONS(4459), 1, - anon_sym_while, - ACTIONS(8729), 1, + [212279] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(8735), 1, - anon_sym_where, - STATE(9142), 1, - sym_type_constraints, - STATE(9869), 1, - sym_class_body, + ACTIONS(11137), 1, + anon_sym_EQ, + ACTIONS(11143), 1, + anon_sym_COLON, + STATE(3402), 1, + sym__block, + STATE(3520), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221916] = 5, - ACTIONS(6547), 1, + [212299] = 4, + ACTIONS(11145), 1, + anon_sym_COMMA, + STATE(8580), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4635), 3, anon_sym_LBRACE, - ACTIONS(8329), 1, + anon_sym_where, + anon_sym_while, + [212315] = 6, + ACTIONS(6511), 1, + anon_sym_LBRACE, + ACTIONS(11137), 1, anon_sym_EQ, - STATE(3179), 1, - sym_function_body, - STATE(3335), 1, + ACTIONS(11148), 1, + anon_sym_COLON, + STATE(3402), 1, sym__block, + STATE(3528), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221933] = 4, - ACTIONS(8662), 1, + [212335] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - STATE(9396), 1, - sym_class_body, + ACTIONS(11137), 1, + anon_sym_EQ, + ACTIONS(11150), 1, + anon_sym_COLON, + STATE(3402), 1, + sym__block, + STATE(3551), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [221948] = 4, - ACTIONS(8662), 1, - anon_sym_LBRACE, - STATE(9427), 1, - sym_class_body, - ACTIONS(3), 2, + [212355] = 7, + ACTIONS(3), 1, sym_multiline_comment, + ACTIONS(10927), 1, sym_line_comment, - ACTIONS(4425), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [221963] = 5, - ACTIONS(8361), 1, - anon_sym_LBRACE, - ACTIONS(11452), 1, + ACTIONS(10931), 1, + anon_sym_BSLASHu, + ACTIONS(10933), 1, + sym__escaped_identifier, + ACTIONS(11152), 1, + aux_sym_character_literal_token1, + STATE(9732), 1, + sym_character_escape_seq, + STATE(9836), 1, + sym__uni_character_literal, + [212377] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10927), 1, + sym_line_comment, + ACTIONS(10931), 1, + anon_sym_BSLASHu, + ACTIONS(10933), 1, + sym__escaped_identifier, + ACTIONS(11154), 1, + aux_sym_character_literal_token1, + STATE(9818), 1, + sym_character_escape_seq, + STATE(9836), 1, + sym__uni_character_literal, + [212399] = 6, + ACTIONS(4441), 1, + anon_sym_while, + ACTIONS(10715), 1, anon_sym_EQ, - STATE(5316), 1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(9661), 1, sym_function_body, - STATE(5351), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221980] = 5, - ACTIONS(6632), 1, + [212419] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11317), 1, + ACTIONS(11156), 1, + anon_sym_COLON, + ACTIONS(11158), 1, anon_sym_EQ, - STATE(3620), 1, - sym__block, - STATE(3631), 1, + STATE(4713), 1, sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221997] = 2, + [212439] = 4, + ACTIONS(11097), 1, + anon_sym_COMMA, + STATE(8553), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4437), 4, + ACTIONS(4686), 3, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_where, anon_sym_while, - [222008] = 4, - ACTIONS(8662), 1, - anon_sym_LBRACE, - STATE(9541), 1, - sym_class_body, + [212455] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4724), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222023] = 5, - ACTIONS(8361), 1, + ACTIONS(4718), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_in, + [212467] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11452), 1, + ACTIONS(11160), 1, + anon_sym_COLON, + ACTIONS(11162), 1, anon_sym_EQ, - STATE(5351), 1, - sym__block, - STATE(5397), 1, + STATE(4780), 1, sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222040] = 4, - ACTIONS(8662), 1, + [212487] = 6, + ACTIONS(4301), 1, + anon_sym_while, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(9426), 1, - sym_class_body, + STATE(9656), 1, + sym_function_body, + STATE(9998), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4471), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222055] = 5, - ACTIONS(8361), 1, + [212507] = 6, + ACTIONS(4483), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, anon_sym_LBRACE, - ACTIONS(11452), 1, - anon_sym_EQ, - STATE(5351), 1, - sym__block, - STATE(5360), 1, - sym_function_body, + STATE(8877), 1, + sym_type_constraints, + STATE(9653), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222072] = 5, - ACTIONS(4162), 1, + [212527] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11464), 1, + ACTIONS(11158), 1, anon_sym_EQ, - STATE(1052), 1, + ACTIONS(11164), 1, + anon_sym_COLON, + STATE(4750), 1, sym_function_body, - STATE(1092), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222089] = 5, - ACTIONS(8361), 1, + [212547] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11452), 1, + ACTIONS(11162), 1, anon_sym_EQ, - STATE(5226), 1, + ACTIONS(11166), 1, + anon_sym_COLON, + STATE(4750), 1, sym_function_body, - STATE(5351), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222106] = 5, - ACTIONS(10961), 1, + [212567] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11502), 1, + ACTIONS(11162), 1, + anon_sym_EQ, + ACTIONS(11168), 1, anon_sym_COLON, - ACTIONS(11504), 1, - sym__automatic_semicolon, - STATE(10074), 1, + STATE(4800), 1, sym__block, + STATE(4856), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222123] = 5, - ACTIONS(4162), 1, + [212587] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11464), 1, + ACTIONS(11162), 1, anon_sym_EQ, - STATE(1092), 1, - sym__block, - STATE(1128), 1, + ACTIONS(11170), 1, + anon_sym_COLON, + STATE(4713), 1, sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222140] = 5, - ACTIONS(6632), 1, - anon_sym_LBRACE, - ACTIONS(11317), 1, + [212607] = 6, + ACTIONS(4297), 1, + anon_sym_while, + ACTIONS(10715), 1, anon_sym_EQ, - STATE(3593), 1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(9650), 1, sym_function_body, - STATE(3620), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222157] = 5, - ACTIONS(4162), 1, + [212627] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10927), 1, + sym_line_comment, + ACTIONS(10931), 1, + anon_sym_BSLASHu, + ACTIONS(10933), 1, + sym__escaped_identifier, + ACTIONS(11172), 1, + aux_sym_character_literal_token1, + STATE(9533), 1, + sym_character_escape_seq, + STATE(9836), 1, + sym__uni_character_literal, + [212649] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11464), 1, + ACTIONS(11174), 1, + anon_sym_COLON, + ACTIONS(11176), 1, anon_sym_EQ, - STATE(1092), 1, - sym__block, - STATE(1144), 1, + STATE(3867), 1, sym_function_body, + STATE(3882), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222174] = 5, - ACTIONS(4162), 1, + [212669] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11464), 1, + ACTIONS(11178), 1, + anon_sym_COLON, + ACTIONS(11180), 1, anon_sym_EQ, - STATE(1092), 1, + STATE(5091), 1, sym__block, - STATE(1178), 1, + STATE(5261), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222191] = 5, - ACTIONS(6632), 1, + [212689] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11173), 1, + ACTIONS(11158), 1, anon_sym_EQ, - STATE(3593), 1, + ACTIONS(11182), 1, + anon_sym_COLON, + STATE(4780), 1, sym_function_body, - STATE(3620), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222208] = 5, - ACTIONS(6632), 1, + [212709] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11317), 1, + ACTIONS(11180), 1, anon_sym_EQ, - STATE(3620), 1, + ACTIONS(11184), 1, + anon_sym_COLON, + STATE(5091), 1, sym__block, - STATE(3656), 1, + STATE(5162), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222225] = 5, - ACTIONS(6547), 1, + [212729] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11373), 1, + ACTIONS(11180), 1, anon_sym_EQ, - STATE(3144), 1, - sym_function_body, - STATE(3335), 1, + ACTIONS(11186), 1, + anon_sym_COLON, + STATE(5091), 1, sym__block, + STATE(5143), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222242] = 5, - ACTIONS(8242), 1, + [212749] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10993), 1, + ACTIONS(11180), 1, anon_sym_EQ, - STATE(4844), 1, + ACTIONS(11188), 1, + anon_sym_COLON, + STATE(5082), 1, sym_function_body, - STATE(4930), 1, + STATE(5091), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222259] = 5, - ACTIONS(8242), 1, + [212769] = 6, + ACTIONS(4469), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, anon_sym_LBRACE, - ACTIONS(10993), 1, - anon_sym_EQ, - STATE(4825), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + STATE(8880), 1, + sym_type_constraints, + STATE(9627), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222276] = 5, - ACTIONS(6632), 1, + [212789] = 6, + ACTIONS(4361), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, anon_sym_LBRACE, - ACTIONS(11173), 1, - anon_sym_EQ, - STATE(3620), 1, - sym__block, - STATE(3631), 1, - sym_function_body, + STATE(8887), 1, + sym_type_constraints, + STATE(9617), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222293] = 5, - ACTIONS(8242), 1, + [212809] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10993), 1, + ACTIONS(11176), 1, anon_sym_EQ, - STATE(4930), 1, + ACTIONS(11190), 1, + anon_sym_COLON, + STATE(3882), 1, sym__block, - STATE(4946), 1, + STATE(3890), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222310] = 4, - ACTIONS(8652), 1, - anon_sym_LBRACE, - STATE(9427), 1, - sym_enum_class_body, + [212829] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 2, + ACTIONS(4587), 5, sym__automatic_semicolon, - anon_sym_RBRACE, - [222325] = 5, - ACTIONS(6547), 1, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(11169), 1, - anon_sym_EQ, - STATE(3144), 1, - sym_function_body, - STATE(3335), 1, - sym__block, + anon_sym_RBRACE, + anon_sym_where, + [212841] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222342] = 5, - ACTIONS(6632), 1, + ACTIONS(4579), 5, + sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(11173), 1, - anon_sym_EQ, - STATE(3620), 1, - sym__block, - STATE(3656), 1, - sym_function_body, + anon_sym_RBRACE, + anon_sym_where, + [212853] = 4, + ACTIONS(11194), 1, + anon_sym_DOT, + STATE(8609), 1, + aux_sym_identifier_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11192), 3, + sym__automatic_semicolon, + anon_sym_DOT_STAR, + anon_sym_as, + [212869] = 5, + ACTIONS(11197), 1, + anon_sym_catch, + ACTIONS(11199), 1, + anon_sym_finally, + STATE(1021), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222359] = 5, - ACTIONS(6547), 1, + STATE(801), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [212887] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10927), 1, + sym_line_comment, + ACTIONS(10931), 1, + anon_sym_BSLASHu, + ACTIONS(10933), 1, + sym__escaped_identifier, + ACTIONS(11201), 1, + aux_sym_character_literal_token1, + STATE(9836), 1, + sym__uni_character_literal, + STATE(9884), 1, + sym_character_escape_seq, + [212909] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11169), 1, + ACTIONS(11203), 1, + anon_sym_COLON, + ACTIONS(11205), 1, anon_sym_EQ, - STATE(3167), 1, - sym_function_body, - STATE(3335), 1, + STATE(3402), 1, sym__block, + STATE(3520), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222376] = 5, - ACTIONS(6547), 1, - anon_sym_LBRACE, - ACTIONS(11169), 1, + [212929] = 6, + ACTIONS(10715), 1, anon_sym_EQ, - STATE(3179), 1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + ACTIONS(11207), 1, + anon_sym_COLON, + STATE(9587), 1, sym_function_body, - STATE(3335), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222393] = 5, - ACTIONS(6632), 1, + [212949] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11173), 1, + ACTIONS(11176), 1, anon_sym_EQ, - STATE(3569), 1, - sym_function_body, - STATE(3620), 1, + ACTIONS(11209), 1, + anon_sym_COLON, + STATE(3882), 1, sym__block, + STATE(3910), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222410] = 2, + [212969] = 4, + ACTIONS(11211), 1, + anon_sym_COMMA, + STATE(8615), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5257), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(4432), 3, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_while, - [222421] = 5, - ACTIONS(8242), 1, + [212985] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10993), 1, + ACTIONS(11176), 1, anon_sym_EQ, - STATE(4854), 1, + ACTIONS(11214), 1, + anon_sym_COLON, + STATE(3836), 1, sym_function_body, - STATE(4930), 1, + STATE(3882), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222438] = 4, - ACTIONS(11506), 1, - anon_sym_COMMA, - STATE(9056), 1, - aux_sym__enum_entries_repeat1, + [213005] = 5, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(11216), 1, + anon_sym_COLON, + STATE(9243), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9091), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [222453] = 5, - ACTIONS(11508), 1, - anon_sym_RBRACE, - ACTIONS(11510), 1, + ACTIONS(4351), 2, sym__automatic_semicolon, - STATE(259), 1, - sym__semi, - STATE(8944), 1, - aux_sym_statements_repeat1, + anon_sym_RBRACE, + [213023] = 5, + ACTIONS(11218), 1, + anon_sym_catch, + ACTIONS(11220), 1, + anon_sym_finally, + STATE(4005), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222470] = 5, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(10961), 1, + STATE(3075), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [213041] = 6, + ACTIONS(4495), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(9413), 1, - sym_function_body, - STATE(9633), 1, - sym__block, + ACTIONS(8644), 1, + anon_sym_where, + STATE(8899), 1, + sym_type_constraints, + STATE(9588), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222487] = 5, - ACTIONS(6547), 1, + [213061] = 6, + ACTIONS(4361), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(11373), 1, + ACTIONS(8644), 1, + anon_sym_where, + STATE(8884), 1, + sym_type_constraints, + STATE(9617), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213081] = 6, + ACTIONS(10689), 1, anon_sym_EQ, - STATE(3167), 1, - sym_function_body, - STATE(3335), 1, + ACTIONS(10691), 1, + anon_sym_LBRACE, + ACTIONS(11222), 1, + anon_sym_COLON, + STATE(9175), 1, sym__block, + STATE(9258), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222504] = 5, - ACTIONS(8361), 1, + [213101] = 6, + ACTIONS(4465), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, anon_sym_LBRACE, - ACTIONS(11203), 1, + STATE(8897), 1, + sym_type_constraints, + STATE(9515), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213121] = 6, + ACTIONS(4162), 1, + anon_sym_while, + ACTIONS(10715), 1, anon_sym_EQ, - STATE(5226), 1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(9600), 1, sym_function_body, - STATE(5351), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222521] = 5, - ACTIONS(10961), 1, + [213141] = 6, + ACTIONS(4185), 1, + anon_sym_while, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, anon_sym_LBRACE, - ACTIONS(11513), 1, - anon_sym_COLON, - ACTIONS(11515), 1, - sym__automatic_semicolon, - STATE(10362), 1, + STATE(9621), 1, + sym_function_body, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222538] = 4, - ACTIONS(8652), 1, + [213161] = 3, + ACTIONS(10807), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4507), 4, anon_sym_LBRACE, - STATE(9696), 1, - sym_enum_class_body, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [213175] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3296), 2, + ACTIONS(4760), 5, sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, - [222553] = 5, - ACTIONS(6547), 1, + anon_sym_where, + [213187] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11169), 1, + ACTIONS(11205), 1, anon_sym_EQ, - STATE(3212), 1, + ACTIONS(11224), 1, + anon_sym_COLON, + STATE(3402), 1, + sym__block, + STATE(3551), 1, sym_function_body, - STATE(3335), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213207] = 6, + ACTIONS(6511), 1, + anon_sym_LBRACE, + ACTIONS(11205), 1, + anon_sym_EQ, + ACTIONS(11226), 1, + anon_sym_COLON, + STATE(3402), 1, sym__block, + STATE(3497), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222570] = 3, - ACTIONS(4010), 1, - anon_sym_DOLLAR, + [213227] = 6, + ACTIONS(4323), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(8893), 1, + sym_type_constraints, + STATE(9611), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 3, - sym__string_end, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - [222583] = 5, - ACTIONS(6547), 1, + [213247] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11373), 1, + ACTIONS(11158), 1, anon_sym_EQ, - STATE(3179), 1, + ACTIONS(11228), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4856), 1, sym_function_body, - STATE(3335), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213267] = 6, + ACTIONS(6511), 1, + anon_sym_LBRACE, + ACTIONS(11205), 1, + anon_sym_EQ, + ACTIONS(11230), 1, + anon_sym_COLON, + STATE(3402), 1, sym__block, + STATE(3528), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222600] = 5, - ACTIONS(1642), 1, - anon_sym_RBRACE, - ACTIONS(11517), 1, - sym__automatic_semicolon, - STATE(258), 1, - sym__semi, - STATE(8944), 1, - aux_sym_statements_repeat1, + [213287] = 6, + ACTIONS(4465), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + ACTIONS(8644), 1, + anon_sym_where, + STATE(8895), 1, + sym_type_constraints, + STATE(9515), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222617] = 4, - ACTIONS(8652), 1, + [213307] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - STATE(9396), 1, - sym_enum_class_body, + ACTIONS(11205), 1, + anon_sym_EQ, + STATE(3402), 1, + sym__block, + STATE(3505), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222632] = 5, - ACTIONS(8329), 1, + [213324] = 5, + ACTIONS(6511), 1, + anon_sym_LBRACE, + ACTIONS(11205), 1, anon_sym_EQ, - ACTIONS(8331), 1, + STATE(3402), 1, + sym__block, + STATE(3488), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213341] = 5, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(5485), 1, + STATE(9613), 1, sym_function_body, - STATE(5534), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222649] = 5, - ACTIONS(8361), 1, + [213358] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11203), 1, + ACTIONS(11158), 1, anon_sym_EQ, - STATE(5351), 1, + STATE(4800), 1, sym__block, - STATE(5397), 1, + STATE(4810), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222666] = 5, - ACTIONS(4445), 1, - anon_sym_while, - ACTIONS(8729), 1, - anon_sym_LBRACE, - ACTIONS(11519), 1, - anon_sym_COLON, - STATE(9851), 1, - sym_class_body, + [213375] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222683] = 5, - ACTIONS(10993), 1, + ACTIONS(4760), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [213386] = 5, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10995), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(9771), 1, + STATE(9604), 1, sym_function_body, - STATE(10166), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222700] = 5, - ACTIONS(8361), 1, + [213403] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10959), 1, + ACTIONS(11158), 1, anon_sym_EQ, - STATE(5316), 1, + STATE(4727), 1, sym_function_body, - STATE(5351), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222717] = 2, + [213420] = 5, + ACTIONS(6511), 1, + anon_sym_LBRACE, + ACTIONS(11205), 1, + anon_sym_EQ, + STATE(3402), 1, + sym__block, + STATE(3481), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4707), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_where, - anon_sym_while, - [222728] = 5, - ACTIONS(4162), 1, + [213437] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11403), 1, + ACTIONS(11158), 1, anon_sym_EQ, - STATE(1052), 1, + STATE(4714), 1, sym_function_body, - STATE(1092), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222745] = 5, - ACTIONS(8361), 1, + [213454] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10959), 1, + ACTIONS(11205), 1, anon_sym_EQ, - STATE(5351), 1, + STATE(3402), 1, sym__block, - STATE(5397), 1, + STATE(3471), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222762] = 5, - ACTIONS(8662), 1, - anon_sym_LBRACE, - ACTIONS(11521), 1, - anon_sym_COLON, - ACTIONS(11523), 1, - sym__automatic_semicolon, - STATE(10274), 1, - sym_class_body, + [213471] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222779] = 5, - ACTIONS(8361), 1, + ACTIONS(4507), 4, anon_sym_LBRACE, - ACTIONS(10959), 1, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [213482] = 5, + ACTIONS(6714), 1, + anon_sym_LBRACE, + ACTIONS(10907), 1, anon_sym_EQ, - STATE(5351), 1, + STATE(3882), 1, sym__block, - STATE(5360), 1, + STATE(3938), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222796] = 5, - ACTIONS(6547), 1, + [213499] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(8329), 1, + ACTIONS(11176), 1, anon_sym_EQ, - STATE(3167), 1, + STATE(3882), 1, + sym__block, + STATE(4030), 1, sym_function_body, - STATE(3335), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213516] = 5, + ACTIONS(6714), 1, + anon_sym_LBRACE, + ACTIONS(11176), 1, + anon_sym_EQ, + STATE(3882), 1, sym__block, + STATE(3959), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222813] = 5, - ACTIONS(8329), 1, + [213533] = 5, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(8331), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(5469), 1, + STATE(9115), 1, sym_function_body, - STATE(5534), 1, + STATE(9175), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222830] = 5, - ACTIONS(4162), 1, + [213550] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11403), 1, + ACTIONS(11176), 1, anon_sym_EQ, - STATE(1092), 1, + STATE(3882), 1, sym__block, - STATE(1128), 1, + STATE(3938), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222847] = 4, - ACTIONS(8662), 1, + [213567] = 5, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(9422), 1, - sym_class_body, + STATE(9175), 1, + sym__block, + STATE(9279), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222862] = 5, - ACTIONS(6854), 1, + [213584] = 3, + ACTIONS(11234), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11232), 3, + sym__string_end, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + [213597] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11177), 1, + ACTIONS(11176), 1, anon_sym_EQ, - STATE(4051), 1, + STATE(3844), 1, sym_function_body, - STATE(4073), 1, + STATE(3882), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222879] = 5, - ACTIONS(4162), 1, + [213614] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4553), 4, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(11403), 1, - anon_sym_EQ, - STATE(1092), 1, - sym__block, - STATE(1144), 1, - sym_function_body, + anon_sym_where, + anon_sym_while, + [213625] = 4, + ACTIONS(8511), 1, + anon_sym_LBRACE, + STATE(9113), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222896] = 5, - ACTIONS(4162), 1, + ACTIONS(4323), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [213640] = 3, + ACTIONS(11236), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11192), 3, + sym__automatic_semicolon, + anon_sym_DOT_STAR, + anon_sym_as, + [213653] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(11403), 1, + STATE(9297), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4329), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [213668] = 4, + ACTIONS(8511), 1, + anon_sym_LBRACE, + STATE(9418), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3282), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [213683] = 5, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(11180), 1, anon_sym_EQ, - STATE(1092), 1, + STATE(5091), 1, sym__block, - STATE(1178), 1, + STATE(5193), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222913] = 5, - ACTIONS(10959), 1, + [213700] = 5, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10961), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(9440), 1, + STATE(9631), 1, sym_function_body, - STATE(9633), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222930] = 5, - ACTIONS(8361), 1, + [213717] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10959), 1, + ACTIONS(11158), 1, anon_sym_EQ, - STATE(5226), 1, - sym_function_body, - STATE(5351), 1, + STATE(4800), 1, sym__block, + STATE(4887), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222947] = 5, - ACTIONS(6547), 1, + [213734] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8329), 1, + ACTIONS(11180), 1, anon_sym_EQ, - STATE(3212), 1, - sym_function_body, - STATE(3335), 1, + STATE(5091), 1, sym__block, + STATE(5238), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222964] = 5, - ACTIONS(6547), 1, + [213751] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11373), 1, + ACTIONS(11180), 1, anon_sym_EQ, - STATE(3212), 1, + STATE(5091), 1, + sym__block, + STATE(5230), 1, sym_function_body, - STATE(3335), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213768] = 5, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(11180), 1, + anon_sym_EQ, + STATE(5091), 1, sym__block, + STATE(5202), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222981] = 5, - ACTIONS(11525), 1, + [213785] = 5, + ACTIONS(11238), 1, anon_sym_RBRACE, - ACTIONS(11527), 1, + ACTIONS(11240), 1, sym__automatic_semicolon, - STATE(257), 1, + STATE(259), 1, sym__semi, - STATE(8953), 1, + STATE(8663), 1, aux_sym_statements_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222998] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4697), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [223009] = 5, - ACTIONS(6632), 1, + [213802] = 5, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(11353), 1, - anon_sym_EQ, - STATE(3569), 1, - sym_function_body, - STATE(3620), 1, + ACTIONS(11243), 1, + anon_sym_COLON, + ACTIONS(11245), 1, + sym__automatic_semicolon, + STATE(9855), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223026] = 5, - ACTIONS(6632), 1, + [213819] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11353), 1, + ACTIONS(11007), 1, anon_sym_EQ, - STATE(3620), 1, + STATE(3882), 1, sym__block, - STATE(3656), 1, + STATE(4030), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223043] = 5, - ACTIONS(6632), 1, + [213836] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11309), 1, + ACTIONS(11162), 1, anon_sym_EQ, - STATE(3569), 1, - sym_function_body, - STATE(3620), 1, + STATE(4800), 1, sym__block, + STATE(4887), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223060] = 5, - ACTIONS(6632), 1, + [213853] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11353), 1, + ACTIONS(11101), 1, anon_sym_EQ, - STATE(3620), 1, + STATE(5091), 1, sym__block, - STATE(3631), 1, + STATE(5230), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223077] = 5, - ACTIONS(6854), 1, + [213870] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11236), 1, + ACTIONS(11162), 1, anon_sym_EQ, - STATE(4051), 1, + STATE(4714), 1, sym_function_body, - STATE(4073), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223094] = 4, - ACTIONS(8652), 1, - anon_sym_LBRACE, - STATE(9422), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3288), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223109] = 5, - ACTIONS(6632), 1, + [213887] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11353), 1, + ACTIONS(11162), 1, anon_sym_EQ, - STATE(3593), 1, + STATE(4727), 1, sym_function_body, - STATE(3620), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223126] = 5, - ACTIONS(4162), 1, + [213904] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11349), 1, + ACTIONS(11162), 1, anon_sym_EQ, - STATE(1052), 1, - sym_function_body, - STATE(1092), 1, + STATE(4800), 1, sym__block, + STATE(4810), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223143] = 5, - ACTIONS(6632), 1, + [213921] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11309), 1, + ACTIONS(11007), 1, anon_sym_EQ, - STATE(3620), 1, + STATE(3882), 1, sym__block, - STATE(3656), 1, + STATE(3959), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223160] = 5, - ACTIONS(6854), 1, + [213938] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11236), 1, + ACTIONS(11101), 1, anon_sym_EQ, - STATE(4073), 1, + STATE(5091), 1, sym__block, - STATE(4090), 1, + STATE(5202), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223177] = 5, - ACTIONS(6632), 1, - anon_sym_LBRACE, - ACTIONS(11309), 1, - anon_sym_EQ, - STATE(3620), 1, - sym__block, - STATE(3631), 1, - sym_function_body, + [213955] = 3, + ACTIONS(10709), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223194] = 5, - ACTIONS(6854), 1, + ACTIONS(4239), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + sym__quest, + [213968] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(11297), 1, + STATE(9445), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3274), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [213983] = 5, + ACTIONS(10715), 1, anon_sym_EQ, - STATE(4073), 1, - sym__block, - STATE(4117), 1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(9573), 1, sym_function_body, + STATE(9998), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223211] = 5, - ACTIONS(8242), 1, + [214000] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11329), 1, + ACTIONS(11101), 1, anon_sym_EQ, - STATE(4930), 1, + STATE(5091), 1, sym__block, - STATE(4946), 1, + STATE(5238), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223228] = 5, - ACTIONS(6632), 1, + [214017] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11309), 1, + ACTIONS(11007), 1, anon_sym_EQ, - STATE(3593), 1, - sym_function_body, - STATE(3620), 1, + STATE(3882), 1, sym__block, + STATE(3938), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223245] = 4, - ACTIONS(8662), 1, - anon_sym_LBRACE, - STATE(9424), 1, - sym_class_body, + [214034] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4756), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223260] = 5, - ACTIONS(8662), 1, + ACTIONS(4635), 4, anon_sym_LBRACE, - ACTIONS(11529), 1, - anon_sym_COLON, - ACTIONS(11531), 1, - sym__automatic_semicolon, - STATE(10405), 1, - sym_class_body, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [214045] = 5, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(11101), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5193), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223277] = 5, - ACTIONS(8361), 1, + [214062] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11203), 1, + ACTIONS(11137), 1, anon_sym_EQ, - STATE(5351), 1, + STATE(3402), 1, sym__block, - STATE(5360), 1, + STATE(3505), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223294] = 5, - ACTIONS(6854), 1, + [214079] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11177), 1, + ACTIONS(11137), 1, anon_sym_EQ, - STATE(4073), 1, + STATE(3402), 1, sym__block, - STATE(4090), 1, + STATE(3488), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223311] = 5, - ACTIONS(4162), 1, + [214096] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11349), 1, + ACTIONS(11137), 1, anon_sym_EQ, - STATE(1092), 1, + STATE(3402), 1, sym__block, - STATE(1144), 1, + STATE(3481), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223328] = 5, - ACTIONS(8242), 1, + [214113] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11329), 1, + ACTIONS(11137), 1, anon_sym_EQ, - STATE(4844), 1, - sym_function_body, - STATE(4930), 1, + STATE(3402), 1, sym__block, + STATE(3471), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223345] = 5, - ACTIONS(4162), 1, + [214130] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11349), 1, + ACTIONS(11109), 1, anon_sym_EQ, - STATE(1092), 1, + STATE(1129), 1, sym__block, - STATE(1178), 1, + STATE(1155), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223362] = 5, - ACTIONS(6547), 1, + [214147] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(8329), 1, + ACTIONS(11121), 1, anon_sym_EQ, - STATE(3144), 1, - sym_function_body, - STATE(3335), 1, + STATE(3082), 1, sym__block, + STATE(3270), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223379] = 5, - ACTIONS(8242), 1, + [214164] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11329), 1, + ACTIONS(11121), 1, anon_sym_EQ, - STATE(4825), 1, - sym_function_body, - STATE(4930), 1, + STATE(3082), 1, sym__block, + STATE(3216), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223396] = 5, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, + [214181] = 5, + ACTIONS(1642), 1, + anon_sym_RBRACE, + ACTIONS(11247), 1, + sym__automatic_semicolon, + STATE(258), 1, + sym__semi, + STATE(8663), 1, + aux_sym_statements_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214198] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - STATE(5499), 1, - sym_function_body, - STATE(5534), 1, + ACTIONS(11121), 1, + anon_sym_EQ, + STATE(3082), 1, sym__block, + STATE(3179), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223413] = 4, - ACTIONS(8652), 1, + [214215] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - STATE(9502), 1, - sym_enum_class_body, + ACTIONS(11121), 1, + anon_sym_EQ, + STATE(3082), 1, + sym__block, + STATE(3138), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4597), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223428] = 5, - ACTIONS(8242), 1, + [214232] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11329), 1, + ACTIONS(10899), 1, anon_sym_EQ, - STATE(4854), 1, + STATE(1017), 1, sym_function_body, - STATE(4930), 1, + STATE(1129), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223445] = 5, - ACTIONS(8361), 1, + [214249] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11193), 1, + ACTIONS(11109), 1, anon_sym_EQ, - STATE(5316), 1, + STATE(1017), 1, sym_function_body, - STATE(5351), 1, + STATE(1129), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223462] = 5, - ACTIONS(8361), 1, + [214266] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11193), 1, + ACTIONS(10899), 1, anon_sym_EQ, - STATE(5351), 1, + STATE(1129), 1, sym__block, - STATE(5397), 1, + STATE(1165), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223479] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4746), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [223490] = 4, - ACTIONS(8662), 1, + [214283] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - STATE(9502), 1, - sym_class_body, + ACTIONS(10899), 1, + anon_sym_EQ, + STATE(1129), 1, + sym__block, + STATE(1135), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4597), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223505] = 5, - ACTIONS(8361), 1, + [214300] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11193), 1, + ACTIONS(11109), 1, anon_sym_EQ, - STATE(5351), 1, + STATE(1129), 1, sym__block, - STATE(5360), 1, + STATE(1165), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223522] = 4, - ACTIONS(8662), 1, - anon_sym_LBRACE, - STATE(9447), 1, - sym_class_body, + [214317] = 3, + ACTIONS(11251), 1, + anon_sym_DOLLAR, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4283), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223537] = 5, - ACTIONS(8361), 1, + ACTIONS(11249), 3, + sym__string_end, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + [214330] = 4, + ACTIONS(11253), 1, + anon_sym_import, + ACTIONS(11256), 1, + sym__import_list_delimiter, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8696), 2, + sym_import_header, + aux_sym_import_list_repeat1, + [214345] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11193), 1, + ACTIONS(11109), 1, anon_sym_EQ, - STATE(5226), 1, - sym_function_body, - STATE(5351), 1, + STATE(1129), 1, sym__block, + STATE(1135), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223554] = 2, + [214362] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4760), 4, + ACTIONS(4752), 4, anon_sym_COLON, anon_sym_LBRACE, anon_sym_where, anon_sym_while, - [223565] = 5, - ACTIONS(6854), 1, + [214373] = 5, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(11236), 1, - anon_sym_EQ, - STATE(4073), 1, + ACTIONS(11258), 1, + anon_sym_COLON, + ACTIONS(11260), 1, + sym__automatic_semicolon, + STATE(9481), 1, sym__block, - STATE(4093), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [223582] = 3, - ACTIONS(11535), 1, - anon_sym_DOLLAR, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11533), 3, - sym__string_end, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - [223595] = 4, - ACTIONS(8652), 1, + [214390] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(9447), 1, - sym_enum_class_body, + STATE(9440), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4283), 2, + ACTIONS(4557), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [223610] = 3, - ACTIONS(11537), 1, - anon_sym_DOT, + [214405] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11254), 3, + ACTIONS(4756), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [214416] = 5, + ACTIONS(11262), 1, + anon_sym_RBRACE, + ACTIONS(11264), 1, sym__automatic_semicolon, - anon_sym_DOT_STAR, - anon_sym_as, - [223623] = 5, - ACTIONS(10993), 1, - anon_sym_EQ, - ACTIONS(10995), 1, + STATE(257), 1, + sym__semi, + STATE(8687), 1, + aux_sym_statements_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214433] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - STATE(9895), 1, + ACTIONS(10899), 1, + anon_sym_EQ, + STATE(1129), 1, + sym__block, + STATE(1155), 1, sym_function_body, - STATE(10166), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214450] = 5, + ACTIONS(6430), 1, + anon_sym_LBRACE, + ACTIONS(11073), 1, + anon_sym_EQ, + STATE(3082), 1, sym__block, + STATE(3270), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223640] = 2, + [214467] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5097), 4, + ACTIONS(4886), 4, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_while, - [223651] = 5, - ACTIONS(8242), 1, + [214478] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11261), 1, + ACTIONS(10903), 1, anon_sym_EQ, - STATE(4930), 1, + STATE(1129), 1, sym__block, - STATE(4946), 1, + STATE(1135), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223668] = 5, - ACTIONS(8242), 1, + [214495] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11261), 1, + ACTIONS(10903), 1, anon_sym_EQ, - STATE(4844), 1, - sym_function_body, - STATE(4930), 1, + STATE(1129), 1, sym__block, + STATE(1165), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223685] = 5, - ACTIONS(8242), 1, + [214512] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11261), 1, + ACTIONS(10903), 1, anon_sym_EQ, - STATE(4825), 1, + STATE(1017), 1, sym_function_body, - STATE(4930), 1, + STATE(1129), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223702] = 5, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(10961), 1, + [214529] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - STATE(9450), 1, - sym_function_body, - STATE(9633), 1, + ACTIONS(11073), 1, + anon_sym_EQ, + STATE(3082), 1, sym__block, + STATE(3216), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223719] = 5, - ACTIONS(6547), 1, + [214546] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11211), 1, + ACTIONS(10903), 1, anon_sym_EQ, - STATE(3144), 1, - sym_function_body, - STATE(3335), 1, + STATE(1129), 1, sym__block, + STATE(1155), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223736] = 5, - ACTIONS(6854), 1, + [214563] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11236), 1, + ACTIONS(11073), 1, anon_sym_EQ, - STATE(4073), 1, + STATE(3082), 1, sym__block, - STATE(4117), 1, + STATE(3138), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223753] = 5, - ACTIONS(6547), 1, + [214580] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11211), 1, + ACTIONS(10975), 1, anon_sym_EQ, - STATE(3167), 1, + STATE(4714), 1, sym_function_body, - STATE(3335), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223770] = 5, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8331), 1, + [214597] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(5534), 1, - sym__block, - STATE(5545), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [223787] = 4, - ACTIONS(11541), 1, - anon_sym_COMMA, - STATE(8943), 1, - aux_sym__enum_entries_repeat1, + STATE(9418), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11539), 2, + ACTIONS(3282), 2, + sym__automatic_semicolon, anon_sym_RBRACE, - anon_sym_SEMI, - [223802] = 5, - ACTIONS(8242), 1, + [214612] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11261), 1, + ACTIONS(11007), 1, anon_sym_EQ, - STATE(4854), 1, + STATE(3844), 1, sym_function_body, - STATE(4930), 1, + STATE(3882), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223819] = 4, - ACTIONS(8652), 1, + [214629] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(9491), 1, - sym_enum_class_body, + STATE(9453), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4387), 2, + ACTIONS(4465), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [223834] = 5, - ACTIONS(8361), 1, + [214644] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11203), 1, + ACTIONS(11073), 1, anon_sym_EQ, - STATE(5316), 1, - sym_function_body, - STATE(5351), 1, + STATE(3082), 1, sym__block, + STATE(3179), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223851] = 5, - ACTIONS(6547), 1, + [214661] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4587), 4, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(11211), 1, + anon_sym_where, + anon_sym_while, + [214672] = 5, + ACTIONS(6430), 1, + anon_sym_LBRACE, + ACTIONS(8187), 1, anon_sym_EQ, - STATE(3179), 1, - sym_function_body, - STATE(3335), 1, + STATE(3082), 1, sym__block, + STATE(3138), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223868] = 4, - ACTIONS(8662), 1, + [214689] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(9491), 1, + STATE(9248), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4387), 2, + ACTIONS(4218), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [223883] = 4, - ACTIONS(11543), 1, - anon_sym_LPAREN, - STATE(9622), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7248), 2, - anon_sym_AT, - anon_sym_val, - [223898] = 5, - ACTIONS(6854), 1, + [214704] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11248), 1, + ACTIONS(8187), 1, anon_sym_EQ, - STATE(4073), 1, + STATE(3082), 1, sym__block, - STATE(4117), 1, + STATE(3179), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223915] = 5, - ACTIONS(6854), 1, + [214721] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(11297), 1, + ACTIONS(8187), 1, anon_sym_EQ, - STATE(4073), 1, + STATE(3082), 1, sym__block, - STATE(4093), 1, + STATE(3216), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223932] = 5, - ACTIONS(8242), 1, + [214738] = 4, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(11197), 1, + STATE(9248), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4218), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214753] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4579), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [214764] = 5, + ACTIONS(6430), 1, + anon_sym_LBRACE, + ACTIONS(8187), 1, anon_sym_EQ, - STATE(4930), 1, + STATE(3082), 1, sym__block, - STATE(4946), 1, + STATE(3270), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223949] = 4, - ACTIONS(8662), 1, + [214781] = 5, + ACTIONS(4351), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(9451), 1, + ACTIONS(11266), 1, + anon_sym_COLON, + STATE(9664), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4639), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223964] = 4, - ACTIONS(11545), 1, - anon_sym_import, - ACTIONS(11547), 1, - sym__import_list_delimiter, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(9070), 2, - sym_import_header, - aux_sym_import_list_repeat1, - [223979] = 5, - ACTIONS(4162), 1, + [214798] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11240), 1, + ACTIONS(11039), 1, anon_sym_EQ, - STATE(1052), 1, + STATE(3844), 1, sym_function_body, - STATE(1092), 1, + STATE(3882), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223996] = 4, - ACTIONS(8662), 1, + [214815] = 5, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(9676), 1, + ACTIONS(11268), 1, + anon_sym_COLON, + ACTIONS(11270), 1, + sym__automatic_semicolon, + STATE(9895), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [224011] = 5, - ACTIONS(6854), 1, + [214832] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11297), 1, + ACTIONS(11039), 1, anon_sym_EQ, - STATE(4073), 1, + STATE(3882), 1, sym__block, - STATE(4090), 1, + STATE(3938), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224028] = 5, - ACTIONS(6854), 1, + [214849] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11248), 1, + ACTIONS(11039), 1, anon_sym_EQ, - STATE(4073), 1, + STATE(3882), 1, sym__block, - STATE(4093), 1, + STATE(3959), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224045] = 5, - ACTIONS(6854), 1, + [214866] = 4, + ACTIONS(11274), 1, + anon_sym_COMMA, + STATE(8775), 1, + aux_sym__enum_entries_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11272), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [214881] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11248), 1, + ACTIONS(11039), 1, anon_sym_EQ, - STATE(4073), 1, + STATE(3882), 1, sym__block, - STATE(4090), 1, + STATE(4030), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224062] = 2, + [214898] = 4, + ACTIONS(8511), 1, + anon_sym_LBRACE, + STATE(9402), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3290), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214913] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4716), 4, + ACTIONS(4565), 4, anon_sym_COLON, anon_sym_LBRACE, anon_sym_where, anon_sym_while, - [224073] = 5, - ACTIONS(6854), 1, + [214924] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11248), 1, + ACTIONS(11003), 1, anon_sym_EQ, - STATE(4051), 1, - sym_function_body, - STATE(4073), 1, + STATE(5091), 1, sym__block, + STATE(5193), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224090] = 4, - ACTIONS(8662), 1, - anon_sym_LBRACE, - STATE(9452), 1, - sym_class_body, + [214941] = 4, + ACTIONS(11278), 1, + anon_sym_COMMA, + STATE(8735), 1, + aux_sym__enum_entries_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4467), 2, - sym__automatic_semicolon, + ACTIONS(11276), 2, anon_sym_RBRACE, - [224105] = 4, - ACTIONS(8662), 1, + anon_sym_SEMI, + [214956] = 4, + ACTIONS(8511), 1, anon_sym_LBRACE, - STATE(9495), 1, - sym_class_body, + STATE(9159), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4463), 2, + ACTIONS(4569), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [224120] = 5, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(11197), 1, - anon_sym_EQ, - STATE(4844), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + [214971] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224137] = 5, - ACTIONS(8242), 1, + ACTIONS(4848), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_while, + [214982] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(11197), 1, - anon_sym_EQ, - STATE(4825), 1, - sym_function_body, - STATE(4930), 1, - sym__block, + STATE(9404), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224154] = 5, - ACTIONS(4162), 1, + ACTIONS(4549), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214997] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11240), 1, + ACTIONS(10989), 1, anon_sym_EQ, - STATE(1092), 1, + STATE(3402), 1, sym__block, - STATE(1128), 1, + STATE(3471), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224171] = 4, - ACTIONS(8662), 1, + [215014] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - STATE(9724), 1, - sym_class_body, + ACTIONS(10989), 1, + anon_sym_EQ, + STATE(3402), 1, + sym__block, + STATE(3481), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4277), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [224186] = 5, - ACTIONS(6632), 1, + [215031] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11317), 1, + ACTIONS(10989), 1, anon_sym_EQ, - STATE(3569), 1, - sym_function_body, - STATE(3620), 1, + STATE(3402), 1, sym__block, + STATE(3488), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224203] = 5, - ACTIONS(4162), 1, + [215048] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11240), 1, + ACTIONS(11003), 1, anon_sym_EQ, - STATE(1092), 1, + STATE(5091), 1, sym__block, - STATE(1178), 1, + STATE(5238), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224220] = 4, - ACTIONS(8652), 1, - anon_sym_LBRACE, - STATE(9482), 1, - sym_enum_class_body, + [215065] = 4, + ACTIONS(11281), 1, + anon_sym_LPAREN, + STATE(9132), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4774), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [224235] = 5, - ACTIONS(6854), 1, - anon_sym_LBRACE, - ACTIONS(11297), 1, + ACTIONS(7089), 2, + anon_sym_AT, + anon_sym_val, + [215080] = 5, + ACTIONS(10689), 1, anon_sym_EQ, - STATE(4051), 1, + ACTIONS(10691), 1, + anon_sym_LBRACE, + STATE(9098), 1, sym_function_body, - STATE(4073), 1, + STATE(9175), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224252] = 5, - ACTIONS(4162), 1, + [215097] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11240), 1, + ACTIONS(11003), 1, anon_sym_EQ, - STATE(1092), 1, + STATE(5091), 1, sym__block, - STATE(1144), 1, + STATE(5230), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224269] = 4, - ACTIONS(11551), 1, - anon_sym_COMMA, - STATE(9056), 1, - aux_sym__enum_entries_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11549), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [224284] = 5, - ACTIONS(8242), 1, + [215114] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11197), 1, + ACTIONS(10989), 1, anon_sym_EQ, - STATE(4854), 1, - sym_function_body, - STATE(4930), 1, + STATE(3402), 1, sym__block, + STATE(3505), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224301] = 5, - ACTIONS(4429), 1, - anon_sym_while, - ACTIONS(8729), 1, + [215131] = 4, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(11554), 1, - anon_sym_COLON, - STATE(9814), 1, - sym_class_body, + STATE(9154), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224318] = 4, - ACTIONS(8652), 1, + ACTIONS(4483), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215146] = 4, + ACTIONS(8511), 1, anon_sym_LBRACE, - STATE(9452), 1, + STATE(9147), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4467), 2, + ACTIONS(4361), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [224333] = 4, - ACTIONS(8662), 1, + [215161] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(9696), 1, + STATE(9149), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3296), 2, + ACTIONS(4654), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [224348] = 5, - ACTIONS(6547), 1, - anon_sym_LBRACE, - ACTIONS(11211), 1, - anon_sym_EQ, - STATE(3212), 1, - sym_function_body, - STATE(3335), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224365] = 4, - ACTIONS(8652), 1, + [215176] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(9521), 1, - sym_enum_class_body, + STATE(9119), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4459), 2, + ACTIONS(4646), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [224380] = 3, - ACTIONS(4215), 1, - anon_sym_DOLLAR, + [215191] = 4, + ACTIONS(11283), 1, + anon_sym_import, + ACTIONS(11285), 1, + sym__import_list_delimiter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 3, - sym__string_end, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - [224393] = 5, - ACTIONS(10993), 1, - anon_sym_EQ, - ACTIONS(10995), 1, + STATE(8696), 2, + sym_import_header, + aux_sym_import_list_repeat1, + [215206] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(9793), 1, - sym_function_body, - STATE(10166), 1, + ACTIONS(10715), 1, + anon_sym_EQ, + STATE(4800), 1, sym__block, + STATE(4810), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224410] = 5, - ACTIONS(10993), 1, - anon_sym_EQ, - ACTIONS(10995), 1, + [215223] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - STATE(9820), 1, - sym_function_body, - STATE(10166), 1, + ACTIONS(11003), 1, + anon_sym_EQ, + STATE(5091), 1, sym__block, + STATE(5202), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224427] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4792), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [224438] = 4, - ACTIONS(8662), 1, + [215240] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(9482), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4774), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [224453] = 2, + ACTIONS(10715), 1, + anon_sym_EQ, + STATE(4727), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4593), 4, - anon_sym_COLON, + [215257] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [224464] = 2, + ACTIONS(10715), 1, + anon_sym_EQ, + STATE(4714), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4788), 4, - anon_sym_COLON, + [215274] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [224475] = 4, - ACTIONS(11556), 1, - anon_sym_import, - ACTIONS(11559), 1, - sym__import_list_delimiter, + ACTIONS(10975), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4887), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9070), 2, - sym_import_header, - aux_sym_import_list_repeat1, - [224490] = 5, - ACTIONS(4162), 1, + [215291] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11349), 1, + ACTIONS(10715), 1, anon_sym_EQ, - STATE(1092), 1, + STATE(4800), 1, sym__block, - STATE(1128), 1, + STATE(4887), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224507] = 5, - ACTIONS(10959), 1, - anon_sym_EQ, - ACTIONS(10961), 1, + [215308] = 5, + ACTIONS(4499), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(9474), 1, - sym_function_body, - STATE(9633), 1, - sym__block, + ACTIONS(11287), 1, + anon_sym_COLON, + STATE(9864), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224524] = 5, - ACTIONS(6854), 1, + [215325] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11177), 1, + ACTIONS(10975), 1, anon_sym_EQ, - STATE(4073), 1, - sym__block, - STATE(4093), 1, + STATE(4727), 1, sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224541] = 4, - ACTIONS(8662), 1, + [215342] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(9521), 1, - sym_class_body, + ACTIONS(10975), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4810), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4459), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [224556] = 3, - ACTIONS(11563), 1, + [215359] = 3, + ACTIONS(4004), 1, anon_sym_DOLLAR, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11561), 3, + ACTIONS(4009), 3, sym__string_end, sym__string_content, anon_sym_DOLLAR_LBRACE, - [224569] = 3, - ACTIONS(10969), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4299), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - sym__quest, - [224582] = 5, - ACTIONS(6854), 1, + [215372] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11177), 1, + ACTIONS(10689), 1, anon_sym_EQ, - STATE(4073), 1, + STATE(5091), 1, sym__block, - STATE(4117), 1, + STATE(5202), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224599] = 4, - ACTIONS(11565), 1, - anon_sym_COMMA, - ACTIONS(11567), 1, - anon_sym_RPAREN, - STATE(9202), 1, - aux_sym__class_parameters_repeat1, + [215389] = 4, + ACTIONS(8521), 1, + anon_sym_LBRACE, + STATE(9443), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224613] = 4, - ACTIONS(11569), 1, - anon_sym_COMMA, - ACTIONS(11571), 1, - anon_sym_RPAREN, - STATE(9224), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(4495), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215404] = 5, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(10689), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5230), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224627] = 4, - ACTIONS(11569), 1, - anon_sym_COMMA, - ACTIONS(11573), 1, - anon_sym_RPAREN, - STATE(9224), 1, - aux_sym_function_type_parameters_repeat1, + [215421] = 5, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(10689), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5238), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224641] = 4, - ACTIONS(11575), 1, - anon_sym_COMMA, - ACTIONS(11577), 1, - anon_sym_GT, - STATE(9171), 1, - aux_sym_type_parameters_repeat1, + [215438] = 4, + ACTIONS(8521), 1, + anon_sym_LBRACE, + STATE(9274), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224655] = 4, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(11579), 1, - anon_sym_EQ, - STATE(10143), 1, - sym_type_parameters, + ACTIONS(4357), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215453] = 4, + ACTIONS(8511), 1, + anon_sym_LBRACE, + STATE(9453), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224669] = 4, - ACTIONS(11581), 1, - anon_sym_COMMA, - ACTIONS(11583), 1, - anon_sym_RPAREN, - STATE(9169), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(4465), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215468] = 5, + ACTIONS(6511), 1, + anon_sym_LBRACE, + ACTIONS(10953), 1, + anon_sym_EQ, + STATE(3402), 1, + sym__block, + STATE(3505), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224683] = 3, - ACTIONS(11585), 1, + [215485] = 5, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(10689), 1, anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5193), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7906), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [224695] = 4, - ACTIONS(5806), 1, + [215502] = 5, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(10200), 1, + ACTIONS(11289), 1, anon_sym_COLON, - STATE(3949), 1, + ACTIONS(11291), 1, + sym__automatic_semicolon, + STATE(9984), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224709] = 4, - ACTIONS(4277), 1, - anon_sym_while, - ACTIONS(8729), 1, + [215519] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - STATE(9809), 1, - sym_class_body, + ACTIONS(10953), 1, + anon_sym_EQ, + STATE(3402), 1, + sym__block, + STATE(3488), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224723] = 4, - ACTIONS(3296), 1, - anon_sym_while, - ACTIONS(8729), 1, + [215536] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - STATE(9807), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224737] = 4, - ACTIONS(11587), 1, - anon_sym_COMMA, - ACTIONS(11589), 1, - anon_sym_GT, - STATE(9137), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(10907), 1, + anon_sym_EQ, + STATE(3882), 1, + sym__block, + STATE(3959), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224751] = 4, - ACTIONS(4774), 1, - anon_sym_while, - ACTIONS(8765), 1, + [215553] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - STATE(9897), 1, - sym_enum_class_body, + ACTIONS(10953), 1, + anon_sym_EQ, + STATE(3402), 1, + sym__block, + STATE(3481), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224765] = 4, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(11591), 1, + [215570] = 5, + ACTIONS(6511), 1, + anon_sym_LBRACE, + ACTIONS(10953), 1, anon_sym_EQ, - STATE(10242), 1, - sym_type_parameters, + STATE(3402), 1, + sym__block, + STATE(3471), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224779] = 4, - ACTIONS(7727), 1, + [215587] = 4, + ACTIONS(11293), 1, anon_sym_COMMA, - ACTIONS(11593), 1, - anon_sym_RBRACK, - STATE(9160), 1, - aux_sym_indexing_suffix_repeat1, + STATE(8735), 1, + aux_sym__enum_entries_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224793] = 3, - ACTIONS(11595), 1, - anon_sym_LPAREN, + ACTIONS(8966), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [215602] = 4, + ACTIONS(8511), 1, + anon_sym_LBRACE, + STATE(9149), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5173), 2, + ACTIONS(4654), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [224805] = 4, - ACTIONS(9618), 1, - anon_sym_RPAREN, - ACTIONS(11597), 1, - anon_sym_COMMA, - STATE(9238), 1, - aux_sym_function_value_parameters_repeat1, + [215617] = 5, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10691), 1, + anon_sym_LBRACE, + STATE(9146), 1, + sym_function_body, + STATE(9175), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224819] = 3, - ACTIONS(11599), 1, - anon_sym_LPAREN, + [215634] = 4, + ACTIONS(8511), 1, + anon_sym_LBRACE, + STATE(9144), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5179), 2, + ACTIONS(4469), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [224831] = 4, - ACTIONS(5590), 1, + [215649] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10196), 1, - anon_sym_COLON, - STATE(3638), 1, - sym_class_body, + ACTIONS(10937), 1, + anon_sym_EQ, + STATE(3082), 1, + sym__block, + STATE(3270), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224845] = 4, - ACTIONS(11587), 1, - anon_sym_COMMA, - ACTIONS(11601), 1, - anon_sym_GT, - STATE(9199), 1, - aux_sym_type_arguments_repeat1, + [215666] = 3, + ACTIONS(4179), 1, + anon_sym_DOLLAR, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224859] = 4, - ACTIONS(11603), 1, - anon_sym_COMMA, - ACTIONS(11605), 1, - anon_sym_RPAREN, - STATE(9127), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(4181), 3, + sym__string_end, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + [215679] = 5, + ACTIONS(6430), 1, + anon_sym_LBRACE, + ACTIONS(10937), 1, + anon_sym_EQ, + STATE(3082), 1, + sym__block, + STATE(3216), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224873] = 4, - ACTIONS(11607), 1, - anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_RPAREN, - STATE(9135), 1, - aux_sym_function_value_parameters_repeat1, + [215696] = 5, + ACTIONS(6430), 1, + anon_sym_LBRACE, + ACTIONS(10937), 1, + anon_sym_EQ, + STATE(3082), 1, + sym__block, + STATE(3179), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224887] = 3, - STATE(3994), 1, - sym__lexical_identifier, + [215713] = 4, + ACTIONS(8521), 1, + anon_sym_LBRACE, + STATE(9147), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(427), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [224899] = 3, - ACTIONS(11611), 1, + ACTIONS(4361), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215728] = 5, + ACTIONS(8187), 1, anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5341), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11613), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [224911] = 4, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(11615), 1, + [215745] = 5, + ACTIONS(6430), 1, + anon_sym_LBRACE, + ACTIONS(10937), 1, anon_sym_EQ, - STATE(10193), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224925] = 3, - STATE(3995), 1, - sym__lexical_identifier, + STATE(3082), 1, + sym__block, + STATE(3138), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(427), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [224937] = 3, - STATE(3996), 1, - sym__lexical_identifier, + [215762] = 5, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5398), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(427), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [224949] = 3, - STATE(3997), 1, - sym__lexical_identifier, + [215779] = 5, + ACTIONS(4145), 1, + anon_sym_LBRACE, + ACTIONS(10915), 1, + anon_sym_EQ, + STATE(1129), 1, + sym__block, + STATE(1155), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(427), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [224961] = 3, - STATE(1047), 1, - sym__lexical_identifier, + [215796] = 5, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5414), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(511), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [224973] = 4, - ACTIONS(8662), 1, + [215813] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(11617), 1, - sym__automatic_semicolon, - STATE(10186), 1, - sym_class_body, + ACTIONS(10907), 1, + anon_sym_EQ, + STATE(3844), 1, + sym_function_body, + STATE(3882), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224987] = 4, - ACTIONS(10961), 1, + [215830] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11619), 1, - sym__automatic_semicolon, - STATE(10188), 1, + ACTIONS(10915), 1, + anon_sym_EQ, + STATE(1017), 1, + sym_function_body, + STATE(1129), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225001] = 4, - ACTIONS(8662), 1, + [215847] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(11621), 1, - sym__automatic_semicolon, - STATE(10245), 1, - sym_class_body, + ACTIONS(10915), 1, + anon_sym_EQ, + STATE(1129), 1, + sym__block, + STATE(1165), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225015] = 4, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(11623), 1, + [215864] = 5, + ACTIONS(8187), 1, anon_sym_EQ, - STATE(10171), 1, - sym_type_parameters, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5418), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225029] = 4, - ACTIONS(11575), 1, - anon_sym_COMMA, - ACTIONS(11625), 1, - anon_sym_GT, - STATE(9276), 1, - aux_sym_type_parameters_repeat1, + [215881] = 5, + ACTIONS(6714), 1, + anon_sym_LBRACE, + ACTIONS(10907), 1, + anon_sym_EQ, + STATE(3882), 1, + sym__block, + STATE(4030), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225043] = 3, - ACTIONS(11627), 1, - anon_sym_COLON, + [215898] = 5, + ACTIONS(4145), 1, + anon_sym_LBRACE, + ACTIONS(10915), 1, + anon_sym_EQ, + STATE(1129), 1, + sym__block, + STATE(1135), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11629), 2, - anon_sym_COMMA, - anon_sym_GT, - [225055] = 4, - ACTIONS(3296), 1, + [215915] = 4, + ACTIONS(4465), 1, anon_sym_while, - ACTIONS(8765), 1, + ACTIONS(8648), 1, anon_sym_LBRACE, - STATE(9807), 1, + STATE(9515), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225069] = 4, - ACTIONS(11631), 1, - anon_sym_COMMA, - ACTIONS(11633), 1, - anon_sym_RPAREN, - STATE(9153), 1, - aux_sym_value_arguments_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225083] = 4, - ACTIONS(11587), 1, + [215929] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11635), 1, + ACTIONS(11297), 1, anon_sym_GT, - STATE(9164), 1, + STATE(8855), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225097] = 4, - ACTIONS(8998), 1, - anon_sym_RPAREN, - ACTIONS(11637), 1, - anon_sym_COMMA, - STATE(9165), 1, - aux_sym__class_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225111] = 4, - ACTIONS(4724), 1, - anon_sym_while, - ACTIONS(8729), 1, + [215943] = 4, + ACTIONS(11299), 1, anon_sym_LBRACE, - STATE(9780), 1, - sym_class_body, + ACTIONS(11301), 1, + anon_sym_LPAREN, + STATE(9848), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225125] = 3, - STATE(3654), 1, + [215957] = 3, + STATE(3166), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(293), 2, + ACTIONS(637), 2, sym__alpha_identifier, sym__backtick_identifier, - [225137] = 4, - ACTIONS(11575), 1, - anon_sym_COMMA, - ACTIONS(11639), 1, - anon_sym_GT, - STATE(9276), 1, - aux_sym_type_parameters_repeat1, + [215969] = 3, + STATE(5072), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225151] = 3, - STATE(4996), 1, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [215981] = 3, + STATE(5251), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 2, + ACTIONS(111), 2, sym__alpha_identifier, sym__backtick_identifier, - [225163] = 4, - ACTIONS(11569), 1, + [215993] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - ACTIONS(11641), 1, - anon_sym_RPAREN, - STATE(9224), 1, - aux_sym_function_type_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225177] = 4, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(11643), 1, - anon_sym_EQ, - STATE(10060), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225191] = 2, + ACTIONS(11305), 1, + anon_sym_GT, + STATE(8844), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11225), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [225201] = 4, - ACTIONS(7727), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, - anon_sym_RBRACK, - STATE(9160), 1, - aux_sym_indexing_suffix_repeat1, + [216007] = 3, + STATE(5189), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225215] = 4, - ACTIONS(3256), 1, - anon_sym_LBRACE, - ACTIONS(10194), 1, - anon_sym_COLON, - STATE(3148), 1, - sym_class_body, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216019] = 3, + STATE(5187), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225229] = 2, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216031] = 4, + ACTIONS(7089), 1, + sym__automatic_semicolon, + ACTIONS(10731), 1, + anon_sym_LPAREN, + STATE(8479), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11549), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [225239] = 4, - ACTIONS(11647), 1, + [216045] = 4, + ACTIONS(11307), 1, anon_sym_COMMA, - ACTIONS(11649), 1, + ACTIONS(11309), 1, anon_sym_RPAREN, - STATE(9131), 1, - aux_sym_multi_variable_declaration_repeat1, + STATE(8850), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225253] = 4, - ACTIONS(5610), 1, - anon_sym_RPAREN, - ACTIONS(11651), 1, + [216059] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - STATE(9241), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11313), 1, + anon_sym_RPAREN, + STATE(8839), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225267] = 2, + [216073] = 4, + ACTIONS(10691), 1, + anon_sym_LBRACE, + ACTIONS(11315), 1, + sym__automatic_semicolon, + STATE(9834), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11653), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [225277] = 4, - ACTIONS(11655), 1, - anon_sym_COMMA, - ACTIONS(11657), 1, - anon_sym_RPAREN, - STATE(9203), 1, - aux_sym__class_parameters_repeat1, + [216087] = 4, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(9931), 1, + anon_sym_COLON, + STATE(4880), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225291] = 4, - ACTIONS(11659), 1, - anon_sym_COMMA, - ACTIONS(11661), 1, - anon_sym_RPAREN, - STATE(9198), 1, - aux_sym_value_arguments_repeat1, + [216101] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11317), 1, + anon_sym_EQ, + STATE(9767), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225305] = 4, - ACTIONS(11647), 1, - anon_sym_COMMA, - ACTIONS(11663), 1, - anon_sym_RPAREN, - STATE(9279), 1, - aux_sym_multi_variable_declaration_repeat1, + [216115] = 4, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(11319), 1, + sym__automatic_semicolon, + STATE(9873), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225319] = 3, - STATE(3644), 1, + [216129] = 3, + STATE(2850), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(293), 2, + ACTIONS(11321), 2, sym__alpha_identifier, - sym__backtick_identifier, - [225331] = 4, - ACTIONS(11569), 1, - anon_sym_COMMA, - ACTIONS(11665), 1, - anon_sym_RPAREN, - STATE(9224), 1, - aux_sym_function_type_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225345] = 4, - ACTIONS(9060), 1, - anon_sym_RPAREN, - ACTIONS(11667), 1, - anon_sym_COMMA, - STATE(9165), 1, - aux_sym__class_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225359] = 4, - ACTIONS(9632), 1, - anon_sym_RPAREN, - ACTIONS(11669), 1, - anon_sym_COMMA, - STATE(9238), 1, - aux_sym_function_value_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225373] = 4, - ACTIONS(4774), 1, - anon_sym_while, - ACTIONS(8729), 1, - anon_sym_LBRACE, - STATE(9897), 1, - sym_class_body, + sym__backtick_identifier, + [216141] = 4, + ACTIONS(11323), 1, + anon_sym_COMMA, + ACTIONS(11326), 1, + anon_sym_RPAREN, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225387] = 4, - ACTIONS(11587), 1, + [216155] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11671), 1, - anon_sym_GT, - STATE(9204), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11328), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225401] = 3, - STATE(3162), 1, + [216169] = 3, + STATE(4878), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(595), 2, + ACTIONS(293), 2, sym__alpha_identifier, sym__backtick_identifier, - [225413] = 3, - STATE(3158), 1, + [216181] = 3, + STATE(4876), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(595), 2, + ACTIONS(293), 2, sym__alpha_identifier, sym__backtick_identifier, - [225425] = 3, - STATE(3156), 1, + [216193] = 3, + STATE(4875), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(595), 2, + ACTIONS(293), 2, sym__alpha_identifier, sym__backtick_identifier, - [225437] = 4, - ACTIONS(9656), 1, - anon_sym_RPAREN, - ACTIONS(11673), 1, - anon_sym_COMMA, - STATE(9238), 1, - aux_sym_function_value_parameters_repeat1, + [216205] = 4, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(9939), 1, + anon_sym_COLON, + STATE(5103), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225451] = 4, - ACTIONS(4387), 1, - anon_sym_while, - ACTIONS(8729), 1, - anon_sym_LBRACE, - STATE(9750), 1, - sym_class_body, + [216219] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11330), 1, + anon_sym_EQ, + STATE(9866), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225465] = 4, - ACTIONS(8662), 1, - anon_sym_LBRACE, - ACTIONS(11675), 1, - sym__automatic_semicolon, - STATE(10137), 1, - sym_class_body, + [216233] = 3, + STATE(4877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225479] = 4, - ACTIONS(11677), 1, + ACTIONS(293), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216245] = 4, + ACTIONS(11332), 1, anon_sym_COMMA, - ACTIONS(11679), 1, - anon_sym_RPAREN, - STATE(9115), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11334), 1, + anon_sym_DASH_GT, + STATE(8858), 1, + aux_sym_lambda_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225493] = 4, - ACTIONS(11569), 1, + [216259] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11681), 1, - anon_sym_RPAREN, - STATE(9224), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11336), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225507] = 4, - ACTIONS(11683), 1, + [216273] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - ACTIONS(11685), 1, + ACTIONS(11338), 1, anon_sym_RPAREN, - STATE(9093), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8837), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225521] = 3, - STATE(3155), 1, - sym__lexical_identifier, + [216287] = 3, + STATE(9070), 1, + sym_constructor_delegation_call, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(595), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [225533] = 3, - ACTIONS(11687), 1, - anon_sym_EQ, + ACTIONS(11340), 2, + anon_sym_this, + anon_sym_super, + [216299] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11689), 2, + ACTIONS(10815), 3, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [225545] = 4, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(11691), 1, - anon_sym_EQ, - STATE(10062), 1, - sym_type_parameters, + anon_sym_SEMI, + [216309] = 4, + ACTIONS(4305), 1, + anon_sym_in, + ACTIONS(11342), 1, + sym__quest, + STATE(8922), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225559] = 4, - ACTIONS(11693), 1, + [216323] = 4, + ACTIONS(11344), 1, anon_sym_COMMA, - ACTIONS(11695), 1, + ACTIONS(11346), 1, anon_sym_RPAREN, - STATE(9178), 1, + STATE(8854), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225573] = 3, - ACTIONS(11697), 1, - anon_sym_EQ, + [216337] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11348), 1, + anon_sym_GT, + STATE(8856), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11699), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [225585] = 4, - ACTIONS(11587), 1, + [216351] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - ACTIONS(11701), 1, + ACTIONS(11350), 1, anon_sym_GT, - STATE(9179), 1, - aux_sym_type_arguments_repeat1, + STATE(8841), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225599] = 4, - ACTIONS(5504), 1, + [216365] = 4, + ACTIONS(11352), 1, + anon_sym_COMMA, + ACTIONS(11354), 1, anon_sym_RPAREN, - ACTIONS(11703), 1, + STATE(8846), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216379] = 4, + ACTIONS(11356), 1, anon_sym_COMMA, - STATE(9241), 1, + ACTIONS(11358), 1, + anon_sym_RPAREN, + STATE(8852), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225613] = 4, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(11705), 1, - anon_sym_EQ, - STATE(10125), 1, - sym_type_parameters, + [216393] = 3, + ACTIONS(11360), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225627] = 4, - ACTIONS(11707), 1, - anon_sym_COMMA, - ACTIONS(11709), 1, - anon_sym_RPAREN, - STATE(9141), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(4894), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216405] = 3, + ACTIONS(11362), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225641] = 3, - STATE(3641), 1, - sym__lexical_identifier, + ACTIONS(4876), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216417] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11364), 1, + anon_sym_EQ, + STATE(9754), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(293), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [225653] = 4, - ACTIONS(11647), 1, + [216431] = 4, + ACTIONS(11366), 1, anon_sym_COMMA, - ACTIONS(11711), 1, + ACTIONS(11368), 1, anon_sym_RPAREN, - STATE(9279), 1, - aux_sym_multi_variable_declaration_repeat1, + STATE(8879), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225667] = 4, - ACTIONS(11713), 1, - anon_sym_LBRACE, - ACTIONS(11715), 1, - anon_sym_LPAREN, - STATE(10105), 1, - sym_when_subject, + [216445] = 4, + ACTIONS(11370), 1, + anon_sym_COMMA, + ACTIONS(11372), 1, + anon_sym_RPAREN, + STATE(8870), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225681] = 4, - ACTIONS(4463), 1, - anon_sym_while, - ACTIONS(8729), 1, - anon_sym_LBRACE, - STATE(9759), 1, - sym_class_body, + [216459] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11374), 1, + anon_sym_EQ, + STATE(9808), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225695] = 4, - ACTIONS(7867), 1, - anon_sym_RBRACK, - ACTIONS(11717), 1, + [216473] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - STATE(9160), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11376), 1, + anon_sym_RPAREN, + STATE(8985), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225709] = 3, - ACTIONS(11720), 1, - anon_sym_EQ, + [216487] = 4, + ACTIONS(11378), 1, + anon_sym_COMMA, + ACTIONS(11380), 1, + anon_sym_RPAREN, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11722), 2, + [216501] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, + ACTIONS(11382), 1, anon_sym_RPAREN, - [225721] = 4, - ACTIONS(4258), 1, - anon_sym_while, - ACTIONS(8765), 1, - anon_sym_LBRACE, - STATE(9760), 1, - sym_enum_class_body, + STATE(8985), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225735] = 4, - ACTIONS(11724), 1, - anon_sym_COMMA, - ACTIONS(11726), 1, - anon_sym_RPAREN, - STATE(9181), 1, - aux_sym__class_parameters_repeat1, + [216515] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11384), 1, + anon_sym_EQ, + STATE(9791), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225749] = 4, - ACTIONS(11587), 1, + [216529] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - ACTIONS(11728), 1, + ACTIONS(11386), 1, anon_sym_GT, - STATE(9204), 1, - aux_sym_type_arguments_repeat1, + STATE(8960), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225763] = 4, - ACTIONS(11730), 1, + [216543] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(11733), 1, + ACTIONS(11388), 1, anon_sym_RPAREN, - STATE(9165), 1, - aux_sym__class_parameters_repeat1, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225777] = 4, - ACTIONS(11575), 1, + [216557] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11735), 1, - anon_sym_GT, - STATE(9110), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(11390), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225791] = 4, - ACTIONS(11575), 1, + [216571] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - ACTIONS(11737), 1, + ACTIONS(11392), 1, anon_sym_GT, - STATE(9276), 1, + STATE(8960), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225805] = 4, - ACTIONS(11569), 1, - anon_sym_COMMA, - ACTIONS(11739), 1, - anon_sym_RPAREN, - STATE(9224), 1, - aux_sym_function_type_parameters_repeat1, + [216585] = 3, + ACTIONS(11394), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225819] = 4, - ACTIONS(9630), 1, + ACTIONS(11396), 2, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(11741), 1, + [216597] = 4, + ACTIONS(9360), 1, + anon_sym_RPAREN, + ACTIONS(11398), 1, anon_sym_COMMA, - STATE(9238), 1, + STATE(8934), 1, aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225833] = 3, - STATE(3653), 1, - sym__lexical_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(293), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [225845] = 4, - ACTIONS(11575), 1, + [216611] = 4, + ACTIONS(11400), 1, anon_sym_COMMA, - ACTIONS(11743), 1, - anon_sym_GT, - STATE(9276), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(11403), 1, + anon_sym_RPAREN, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225859] = 3, - ACTIONS(11745), 1, + [216625] = 4, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(9935), 1, anon_sym_COLON, + STATE(3071), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11747), 2, + [216639] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - anon_sym_GT, - [225871] = 4, - ACTIONS(9624), 1, + ACTIONS(11405), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216653] = 4, + ACTIONS(9374), 1, anon_sym_RPAREN, - ACTIONS(11749), 1, + ACTIONS(11407), 1, anon_sym_COMMA, - STATE(9238), 1, + STATE(8934), 1, aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225885] = 4, - ACTIONS(9346), 1, + [216667] = 4, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(11751), 1, + ACTIONS(11409), 1, anon_sym_EQ, - STATE(10092), 1, + STATE(9760), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225899] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4379), 3, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [225909] = 4, - ACTIONS(5864), 1, - anon_sym_LBRACE, - ACTIONS(10202), 1, - anon_sym_COLON, - STATE(5251), 1, - sym_class_body, + [216681] = 4, + ACTIONS(5528), 1, + anon_sym_RPAREN, + ACTIONS(11411), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225923] = 4, - ACTIONS(7727), 1, + [216695] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11753), 1, + ACTIONS(11413), 1, anon_sym_RBRACK, - STATE(9160), 1, + STATE(8926), 1, aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225937] = 4, - ACTIONS(5652), 1, + [216709] = 4, + ACTIONS(5548), 1, anon_sym_RPAREN, - ACTIONS(11755), 1, + ACTIONS(11415), 1, anon_sym_COMMA, - STATE(9241), 1, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225951] = 4, - ACTIONS(11587), 1, + [216723] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11757), 1, + ACTIONS(11417), 1, anon_sym_GT, - STATE(9204), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225965] = 4, - ACTIONS(11569), 1, + [216737] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11759), 1, - anon_sym_RPAREN, - STATE(9224), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11419), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225979] = 4, - ACTIONS(9040), 1, + [216751] = 4, + ACTIONS(11311), 1, + anon_sym_COMMA, + ACTIONS(11421), 1, anon_sym_RPAREN, - ACTIONS(11761), 1, + STATE(8953), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216765] = 4, + ACTIONS(11332), 1, anon_sym_COMMA, - STATE(9165), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11423), 1, + anon_sym_DASH_GT, + STATE(8959), 1, + aux_sym_lambda_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225993] = 4, - ACTIONS(9346), 1, + [216779] = 4, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(11763), 1, + ACTIONS(11425), 1, anon_sym_EQ, - STATE(9774), 1, + STATE(9750), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226007] = 3, - STATE(3250), 1, + [216793] = 4, + ACTIONS(11303), 1, + anon_sym_COMMA, + ACTIONS(11427), 1, + anon_sym_GT, + STATE(8976), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216807] = 3, + STATE(3123), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(595), 2, + ACTIONS(637), 2, sym__alpha_identifier, sym__backtick_identifier, - [226019] = 4, - ACTIONS(11647), 1, - anon_sym_COMMA, - ACTIONS(11765), 1, - anon_sym_RPAREN, - STATE(9279), 1, - aux_sym_multi_variable_declaration_repeat1, + [216819] = 3, + STATE(3120), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(637), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216831] = 3, + ACTIONS(11429), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226033] = 4, - ACTIONS(11587), 1, + ACTIONS(11431), 2, anon_sym_COMMA, - ACTIONS(11767), 1, anon_sym_GT, - STATE(9204), 1, - aux_sym_type_arguments_repeat1, + [216843] = 3, + STATE(3062), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226047] = 4, - ACTIONS(5668), 1, - anon_sym_RPAREN, - ACTIONS(11769), 1, - anon_sym_COMMA, - STATE(9241), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(637), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216855] = 3, + STATE(3063), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(637), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216867] = 4, + ACTIONS(11301), 1, + anon_sym_LPAREN, + ACTIONS(11433), 1, + anon_sym_LBRACE, + STATE(9744), 1, + sym_when_subject, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216881] = 3, + ACTIONS(11435), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226061] = 4, - ACTIONS(11647), 1, + ACTIONS(4287), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216893] = 3, + ACTIONS(11437), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4265), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216905] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(11771), 1, + ACTIONS(11439), 1, anon_sym_RPAREN, - STATE(9279), 1, - aux_sym_multi_variable_declaration_repeat1, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226075] = 4, - ACTIONS(9346), 1, + [216919] = 4, + ACTIONS(8849), 1, + anon_sym_RPAREN, + ACTIONS(11441), 1, + anon_sym_COMMA, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216933] = 4, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(11773), 1, + ACTIONS(11443), 1, anon_sym_EQ, - STATE(10087), 1, + STATE(9721), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226089] = 4, - ACTIONS(11715), 1, + [216947] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11445), 1, + anon_sym_EQ, + STATE(9698), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216961] = 4, + ACTIONS(11301), 1, + anon_sym_LPAREN, + ACTIONS(11447), 1, + anon_sym_LBRACE, + STATE(9693), 1, + sym_when_subject, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216975] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11449), 1, + anon_sym_EQ, + STATE(9682), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216989] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11451), 1, + anon_sym_EQ, + STATE(9674), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217003] = 4, + ACTIONS(11301), 1, anon_sym_LPAREN, - ACTIONS(11775), 1, + ACTIONS(11453), 1, anon_sym_LBRACE, - STATE(10078), 1, + STATE(9671), 1, sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226103] = 4, - ACTIONS(4258), 1, + [217017] = 4, + ACTIONS(4569), 1, anon_sym_while, - ACTIONS(8729), 1, + ACTIONS(8648), 1, anon_sym_LBRACE, - STATE(9760), 1, - sym_class_body, + STATE(9658), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226117] = 3, - STATE(9107), 1, - sym_constructor_delegation_call, + [217031] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11455), 1, + anon_sym_EQ, + STATE(9651), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11777), 2, - anon_sym_this, - anon_sym_super, - [226129] = 4, - ACTIONS(11647), 1, + [217045] = 4, + ACTIONS(8838), 1, + anon_sym_RPAREN, + ACTIONS(11457), 1, + anon_sym_COMMA, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217059] = 4, + ACTIONS(4483), 1, + anon_sym_while, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(9653), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217073] = 4, + ACTIONS(11459), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(11461), 1, anon_sym_RPAREN, - STATE(9206), 1, - aux_sym_multi_variable_declaration_repeat1, + STATE(9021), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226143] = 4, - ACTIONS(11575), 1, + [217087] = 4, + ACTIONS(11463), 1, anon_sym_COMMA, - ACTIONS(11781), 1, + ACTIONS(11466), 1, anon_sym_GT, - STATE(9276), 1, - aux_sym_type_parameters_repeat1, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226157] = 4, - ACTIONS(8662), 1, + [217101] = 3, + ACTIONS(11468), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11470), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [217113] = 4, + ACTIONS(4654), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(11783), 1, - sym__automatic_semicolon, - STATE(10280), 1, + STATE(9633), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226171] = 4, - ACTIONS(10961), 1, - anon_sym_LBRACE, - ACTIONS(11785), 1, - sym__automatic_semicolon, - STATE(10317), 1, - sym__block, + [217127] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11472), 1, + anon_sym_EQ, + STATE(9642), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226185] = 4, - ACTIONS(7727), 1, - anon_sym_COMMA, - ACTIONS(11787), 1, - anon_sym_RBRACK, - STATE(9160), 1, - aux_sym_indexing_suffix_repeat1, + [217141] = 3, + STATE(1145), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226199] = 4, - ACTIONS(4467), 1, + ACTIONS(469), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217153] = 4, + ACTIONS(4654), 1, anon_sym_while, - ACTIONS(8729), 1, + ACTIONS(8648), 1, anon_sym_LBRACE, - STATE(9824), 1, - sym_class_body, + STATE(9633), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226213] = 4, - ACTIONS(5670), 1, - anon_sym_RPAREN, - ACTIONS(11789), 1, - anon_sym_COMMA, - STATE(9241), 1, - aux_sym_value_arguments_repeat1, + [217167] = 3, + STATE(1072), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226227] = 4, - ACTIONS(11587), 1, - anon_sym_COMMA, - ACTIONS(11791), 1, - anon_sym_GT, - STATE(9204), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(469), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217179] = 3, + STATE(1071), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226241] = 3, - STATE(871), 1, + ACTIONS(469), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217191] = 3, + STATE(3904), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11793), 2, + ACTIONS(553), 2, sym__alpha_identifier, sym__backtick_identifier, - [226253] = 4, - ACTIONS(11795), 1, - anon_sym_COMMA, - ACTIONS(11797), 1, - anon_sym_DASH_GT, - STATE(9218), 1, - aux_sym_lambda_parameters_repeat1, + [217203] = 3, + STATE(3259), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226267] = 4, - ACTIONS(9050), 1, - anon_sym_RPAREN, - ACTIONS(11799), 1, - anon_sym_COMMA, - STATE(9165), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(637), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217215] = 4, + ACTIONS(11301), 1, + anon_sym_LPAREN, + ACTIONS(11474), 1, + anon_sym_LBRACE, + STATE(9635), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226281] = 4, - ACTIONS(9038), 1, - anon_sym_RPAREN, - ACTIONS(11801), 1, - anon_sym_COMMA, - STATE(9165), 1, - aux_sym__class_parameters_repeat1, + [217229] = 4, + ACTIONS(4469), 1, + anon_sym_while, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(9627), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226295] = 4, - ACTIONS(11803), 1, + [217243] = 4, + ACTIONS(11476), 1, anon_sym_COMMA, - ACTIONS(11806), 1, - anon_sym_GT, - STATE(9204), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11479), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226309] = 2, + [217257] = 4, + ACTIONS(4361), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + STATE(9617), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4802), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_in, - [226319] = 4, - ACTIONS(11647), 1, - anon_sym_COMMA, - ACTIONS(11808), 1, - anon_sym_RPAREN, - STATE(9279), 1, - aux_sym_multi_variable_declaration_repeat1, + [217271] = 3, + STATE(1070), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226333] = 4, - ACTIONS(4387), 1, + ACTIONS(469), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217283] = 4, + ACTIONS(4361), 1, anon_sym_while, - ACTIONS(8765), 1, + ACTIONS(8648), 1, anon_sym_LBRACE, - STATE(9750), 1, + STATE(9617), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226347] = 3, - STATE(4999), 1, + [217297] = 3, + STATE(1069), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 2, + ACTIONS(469), 2, sym__alpha_identifier, sym__backtick_identifier, - [226359] = 2, + [217309] = 4, + ACTIONS(4646), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + STATE(9614), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11071), 3, - anon_sym_RBRACE, + [217323] = 4, + ACTIONS(11481), 1, anon_sym_COMMA, - anon_sym_SEMI, - [226369] = 4, - ACTIONS(7727), 1, - anon_sym_COMMA, - ACTIONS(11810), 1, - anon_sym_RBRACK, - STATE(9160), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11483), 1, + anon_sym_DASH_GT, + STATE(9030), 1, + aux_sym_when_entry_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226383] = 4, - ACTIONS(9664), 1, - anon_sym_RPAREN, - ACTIONS(11812), 1, - anon_sym_COMMA, - STATE(9238), 1, - aux_sym_function_value_parameters_repeat1, + [217337] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226397] = 3, - STATE(1205), 1, - sym__lexical_identifier, + ACTIONS(4453), 3, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [217347] = 4, + ACTIONS(11485), 1, + anon_sym_COMMA, + ACTIONS(11488), 1, + anon_sym_DASH_GT, + STATE(8902), 1, + aux_sym_when_entry_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(511), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [226409] = 3, - STATE(4998), 1, - sym__lexical_identifier, + [217361] = 4, + ACTIONS(4323), 1, + anon_sym_while, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(9611), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [226421] = 3, - STATE(4997), 1, - sym__lexical_identifier, + [217375] = 4, + ACTIONS(4465), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + STATE(9515), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [226433] = 4, - ACTIONS(11814), 1, + [217389] = 4, + ACTIONS(11490), 1, anon_sym_COMMA, - ACTIONS(11816), 1, + ACTIONS(11492), 1, anon_sym_RPAREN, - STATE(9292), 1, - aux_sym__class_parameters_repeat1, + STATE(9042), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226447] = 4, - ACTIONS(11569), 1, + [217403] = 4, + ACTIONS(11494), 1, anon_sym_COMMA, - ACTIONS(11818), 1, + ACTIONS(11496), 1, anon_sym_RPAREN, - STATE(9224), 1, - aux_sym_function_type_parameters_repeat1, + STATE(9036), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226461] = 3, - ACTIONS(11820), 1, - anon_sym_LPAREN, + [217417] = 4, + ACTIONS(3210), 1, + anon_sym_LBRACE, + ACTIONS(9924), 1, + anon_sym_COLON, + STATE(1083), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [226473] = 4, - ACTIONS(11822), 1, + [217431] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11825), 1, - anon_sym_DASH_GT, - STATE(9218), 1, - aux_sym_lambda_parameters_repeat1, + ACTIONS(11498), 1, + anon_sym_GT, + STATE(9041), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226487] = 4, - ACTIONS(9074), 1, - anon_sym_RPAREN, - ACTIONS(11827), 1, - anon_sym_COMMA, - STATE(9165), 1, - aux_sym__class_parameters_repeat1, + [217445] = 3, + STATE(1022), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226501] = 3, - STATE(1101), 1, + ACTIONS(469), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217457] = 3, + STATE(5165), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(511), 2, + ACTIONS(111), 2, sym__alpha_identifier, sym__backtick_identifier, - [226513] = 3, - STATE(1100), 1, + [217469] = 3, + STATE(3996), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(511), 2, + ACTIONS(553), 2, sym__alpha_identifier, sym__backtick_identifier, - [226525] = 3, - STATE(1098), 1, + [217481] = 3, + STATE(3997), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(511), 2, + ACTIONS(553), 2, sym__alpha_identifier, sym__backtick_identifier, - [226537] = 3, - STATE(1097), 1, + [217493] = 3, + STATE(4032), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(511), 2, + ACTIONS(553), 2, sym__alpha_identifier, sym__backtick_identifier, - [226549] = 4, - ACTIONS(11569), 1, - anon_sym_COMMA, - ACTIONS(11829), 1, - anon_sym_RPAREN, - STATE(9246), 1, - aux_sym_function_type_parameters_repeat1, + [217505] = 3, + STATE(4025), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226563] = 3, - ACTIONS(11831), 1, - anon_sym_LPAREN, + ACTIONS(553), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217517] = 3, + ACTIONS(11500), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4353), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [226575] = 4, - ACTIONS(9346), 1, + ACTIONS(4239), 2, + sym__quest, + anon_sym_in, + [217529] = 4, + ACTIONS(5836), 1, + anon_sym_LBRACE, + ACTIONS(9933), 1, + anon_sym_COLON, + STATE(3969), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217543] = 4, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(11833), 1, + ACTIONS(11502), 1, anon_sym_EQ, - STATE(10061), 1, + STATE(9516), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226589] = 4, - ACTIONS(11835), 1, - anon_sym_COMMA, - ACTIONS(11837), 1, - anon_sym_RPAREN, - STATE(9234), 1, - aux_sym_value_arguments_repeat1, + [217557] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11504), 1, + anon_sym_EQ, + STATE(9553), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226603] = 4, - ACTIONS(11587), 1, - anon_sym_COMMA, - ACTIONS(11839), 1, - anon_sym_GT, - STATE(9235), 1, - aux_sym_type_arguments_repeat1, + [217571] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11506), 1, + anon_sym_EQ, + STATE(9779), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217585] = 4, + ACTIONS(4495), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + STATE(9588), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217599] = 3, + ACTIONS(11508), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4239), 2, + sym__quest, + anon_sym_in, + [217611] = 4, + ACTIONS(4249), 1, + anon_sym_in, + ACTIONS(11510), 1, + sym__quest, + STATE(9019), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226617] = 4, - ACTIONS(11569), 1, + [217625] = 4, + ACTIONS(11512), 1, anon_sym_COMMA, - ACTIONS(11841), 1, + ACTIONS(11514), 1, anon_sym_RPAREN, - STATE(9224), 1, - aux_sym_function_type_parameters_repeat1, + STATE(8982), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217639] = 4, + ACTIONS(7591), 1, + anon_sym_COMMA, + ACTIONS(11516), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226631] = 4, - ACTIONS(4597), 1, + [217653] = 4, + ACTIONS(4549), 1, anon_sym_while, - ACTIONS(8729), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(9921), 1, + STATE(9586), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226645] = 4, - ACTIONS(11843), 1, + [217667] = 4, + ACTIONS(7673), 1, + anon_sym_RBRACK, + ACTIONS(11518), 1, anon_sym_COMMA, - ACTIONS(11845), 1, - anon_sym_RPAREN, - STATE(9134), 1, - aux_sym__class_parameters_repeat1, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226659] = 4, - ACTIONS(4459), 1, - anon_sym_while, - ACTIONS(8765), 1, + [217681] = 4, + ACTIONS(11301), 1, + anon_sym_LPAREN, + ACTIONS(11521), 1, anon_sym_LBRACE, - STATE(9869), 1, - sym_enum_class_body, + STATE(9551), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226673] = 4, - ACTIONS(11847), 1, - anon_sym_COMMA, - ACTIONS(11849), 1, - anon_sym_RPAREN, - STATE(9374), 1, - aux_sym_function_value_parameters_repeat1, + [217695] = 3, + ACTIONS(11523), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226687] = 4, - ACTIONS(5572), 1, + ACTIONS(11525), 2, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(11851), 1, + [217707] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - STATE(9241), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11527), 1, + anon_sym_RPAREN, + STATE(8987), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226701] = 4, - ACTIONS(11587), 1, + [217721] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11853), 1, - anon_sym_GT, - STATE(9204), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11529), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226715] = 4, - ACTIONS(11587), 1, + [217735] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11855), 1, + ACTIONS(11531), 1, anon_sym_GT, - STATE(9185), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226729] = 4, - ACTIONS(11857), 1, + [217749] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11533), 3, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(11859), 1, anon_sym_RPAREN, - STATE(9186), 1, - aux_sym_value_arguments_repeat1, + [217759] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11535), 1, + anon_sym_GT, + STATE(8931), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226743] = 4, - ACTIONS(11861), 1, + [217773] = 4, + ACTIONS(11537), 1, anon_sym_COMMA, - ACTIONS(11864), 1, + ACTIONS(11540), 1, anon_sym_RPAREN, - STATE(9238), 1, + STATE(8934), 1, aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226757] = 4, - ACTIONS(4597), 1, - anon_sym_while, - ACTIONS(8765), 1, - anon_sym_LBRACE, - STATE(9921), 1, - sym_enum_class_body, + [217787] = 4, + ACTIONS(11542), 1, + anon_sym_COMMA, + ACTIONS(11544), 1, + anon_sym_RPAREN, + STATE(9023), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226771] = 4, - ACTIONS(11575), 1, + [217801] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11866), 1, + ACTIONS(11546), 1, anon_sym_GT, - STATE(9383), 1, - aux_sym_type_parameters_repeat1, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226785] = 4, - ACTIONS(11868), 1, + [217815] = 4, + ACTIONS(8855), 1, + anon_sym_RPAREN, + ACTIONS(11548), 1, anon_sym_COMMA, - ACTIONS(11871), 1, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217829] = 4, + ACTIONS(5624), 1, anon_sym_RPAREN, - STATE(9241), 1, + ACTIONS(11550), 1, + anon_sym_COMMA, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226799] = 4, - ACTIONS(4252), 1, - anon_sym_in, - ACTIONS(11873), 1, - sym__quest, - STATE(9373), 1, - aux_sym_nullable_type_repeat1, + [217843] = 4, + ACTIONS(3290), 1, + anon_sym_while, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(9585), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226813] = 4, - ACTIONS(11575), 1, + [217857] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11875), 1, + ACTIONS(11552), 1, anon_sym_GT, - STATE(9118), 1, - aux_sym_type_parameters_repeat1, + STATE(8936), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226827] = 4, - ACTIONS(7248), 1, - sym__automatic_semicolon, - ACTIONS(10981), 1, - anon_sym_LPAREN, - STATE(8900), 1, - sym_value_arguments, + [217871] = 4, + ACTIONS(4218), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + STATE(9543), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226841] = 4, - ACTIONS(9346), 1, + [217885] = 4, + ACTIONS(11303), 1, + anon_sym_COMMA, + ACTIONS(11554), 1, + anon_sym_GT, + STATE(8989), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217899] = 4, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(11877), 1, + ACTIONS(11556), 1, anon_sym_EQ, - STATE(10046), 1, + STATE(9528), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226855] = 4, - ACTIONS(11879), 1, + [217913] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11882), 1, - anon_sym_RPAREN, - STATE(9246), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11558), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226869] = 4, - ACTIONS(3236), 1, - anon_sym_LBRACE, - ACTIONS(10190), 1, - anon_sym_COLON, - STATE(1104), 1, - sym_class_body, + [217927] = 4, + ACTIONS(5630), 1, + anon_sym_RPAREN, + ACTIONS(11560), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226883] = 4, - ACTIONS(11587), 1, + [217941] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11884), 1, + ACTIONS(11562), 1, anon_sym_GT, - STATE(9204), 1, + STATE(8944), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226897] = 4, - ACTIONS(5664), 1, - anon_sym_RPAREN, - ACTIONS(11886), 1, - anon_sym_COMMA, - STATE(9241), 1, - aux_sym_value_arguments_repeat1, + [217955] = 3, + STATE(8807), 1, + sym_constructor_delegation_call, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226911] = 4, - ACTIONS(4459), 1, - anon_sym_while, - ACTIONS(8729), 1, - anon_sym_LBRACE, - STATE(9869), 1, - sym_class_body, + ACTIONS(11340), 2, + anon_sym_this, + anon_sym_super, + [217967] = 4, + ACTIONS(11564), 1, + anon_sym_COMMA, + ACTIONS(11566), 1, + anon_sym_RPAREN, + STATE(8945), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226925] = 4, - ACTIONS(11715), 1, - anon_sym_LPAREN, - ACTIONS(11888), 1, - anon_sym_LBRACE, - STATE(10037), 1, - sym_when_subject, + [217981] = 4, + ACTIONS(11568), 1, + anon_sym_COMMA, + ACTIONS(11570), 1, + anon_sym_RPAREN, + STATE(8993), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226939] = 3, - STATE(2914), 1, + [217995] = 3, + STATE(4823), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11890), 2, + ACTIONS(293), 2, sym__alpha_identifier, sym__backtick_identifier, - [226951] = 4, - ACTIONS(11647), 1, - anon_sym_COMMA, - ACTIONS(11892), 1, - anon_sym_RPAREN, - STATE(9298), 1, - aux_sym_multi_variable_declaration_repeat1, + [218007] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226965] = 4, - ACTIONS(11894), 1, + ACTIONS(4734), 3, anon_sym_COMMA, - ACTIONS(11896), 1, anon_sym_DASH_GT, - STATE(9362), 1, - aux_sym_when_entry_repeat1, + anon_sym_in, + [218017] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11572), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226979] = 4, - ACTIONS(7727), 1, + [218031] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - ACTIONS(11898), 1, - anon_sym_RBRACK, - STATE(9160), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11574), 1, + anon_sym_RPAREN, + STATE(8985), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226993] = 4, - ACTIONS(11900), 1, + [218045] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11903), 1, - anon_sym_DASH_GT, - STATE(9256), 1, - aux_sym_when_entry_repeat1, + ACTIONS(11576), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227007] = 3, - STATE(9195), 1, - sym_constructor_delegation_call, + [218059] = 4, + ACTIONS(5534), 1, + anon_sym_RPAREN, + ACTIONS(11578), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11777), 2, - anon_sym_this, - anon_sym_super, - [227019] = 4, - ACTIONS(11587), 1, + [218073] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11905), 1, - anon_sym_GT, - STATE(9349), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11580), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227033] = 4, - ACTIONS(11907), 1, - anon_sym_COMMA, - ACTIONS(11909), 1, + [218087] = 4, + ACTIONS(5604), 1, anon_sym_RPAREN, - STATE(9351), 1, + ACTIONS(11582), 1, + anon_sym_COMMA, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227047] = 3, - STATE(5305), 1, - sym__lexical_identifier, + [218101] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11584), 1, + anon_sym_GT, + STATE(8952), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [227059] = 4, - ACTIONS(4467), 1, - anon_sym_while, - ACTIONS(8765), 1, - anon_sym_LBRACE, - STATE(9824), 1, - sym_enum_class_body, + [218115] = 4, + ACTIONS(11586), 1, + anon_sym_COMMA, + ACTIONS(11589), 1, + anon_sym_DASH_GT, + STATE(8959), 1, + aux_sym_lambda_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227073] = 4, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(11911), 1, - anon_sym_EQ, - STATE(10011), 1, - sym_type_parameters, + [218129] = 4, + ACTIONS(11591), 1, + anon_sym_COMMA, + ACTIONS(11594), 1, + anon_sym_GT, + STATE(8960), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227087] = 4, - ACTIONS(7727), 1, + [218143] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(11913), 1, - anon_sym_RBRACK, - STATE(9160), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11596), 1, + anon_sym_RPAREN, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227101] = 4, - ACTIONS(7727), 1, + [218157] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(11915), 1, - anon_sym_RBRACK, - STATE(9160), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11598), 1, + anon_sym_RPAREN, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227115] = 4, - ACTIONS(11917), 1, + [218171] = 4, + ACTIONS(11600), 1, anon_sym_COMMA, - ACTIONS(11919), 1, + ACTIONS(11602), 1, anon_sym_RPAREN, - STATE(9249), 1, + STATE(8957), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227129] = 4, - ACTIONS(7727), 1, + [218185] = 4, + ACTIONS(9356), 1, + anon_sym_RPAREN, + ACTIONS(11604), 1, anon_sym_COMMA, - ACTIONS(11921), 1, - anon_sym_RBRACK, - STATE(9160), 1, - aux_sym_indexing_suffix_repeat1, + STATE(8934), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227143] = 4, - ACTIONS(11587), 1, + [218199] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11923), 1, + ACTIONS(11606), 1, anon_sym_GT, - STATE(9248), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227157] = 4, - ACTIONS(11925), 1, - anon_sym_COMMA, - ACTIONS(11927), 1, + [218213] = 4, + ACTIONS(5590), 1, anon_sym_RPAREN, - STATE(9347), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11608), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227171] = 4, - ACTIONS(11647), 1, + [218227] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - ACTIONS(11929), 1, + ACTIONS(11610), 1, anon_sym_RPAREN, - STATE(9187), 1, + STATE(9020), 1, aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227185] = 4, - ACTIONS(11575), 1, + [218241] = 4, + ACTIONS(11612), 1, + anon_sym_COMMA, + ACTIONS(11614), 1, + anon_sym_RPAREN, + STATE(8996), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218255] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11616), 1, + anon_sym_GT, + STATE(8997), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218269] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - ACTIONS(11931), 1, + ACTIONS(11618), 1, anon_sym_GT, - STATE(9363), 1, + STATE(9040), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227199] = 4, - ACTIONS(9048), 1, - anon_sym_RPAREN, - ACTIONS(11933), 1, + [218283] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - STATE(9165), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11620), 1, + anon_sym_GT, + STATE(8965), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227213] = 4, - ACTIONS(11715), 1, - anon_sym_LPAREN, - ACTIONS(11935), 1, - anon_sym_LBRACE, - STATE(9951), 1, - sym_when_subject, + [218297] = 4, + ACTIONS(11378), 1, + anon_sym_COMMA, + ACTIONS(11622), 1, + anon_sym_RPAREN, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227227] = 4, - ACTIONS(9346), 1, + [218311] = 4, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(11937), 1, + ACTIONS(11624), 1, anon_sym_EQ, - STATE(9798), 1, + STATE(9534), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227241] = 4, - ACTIONS(11647), 1, + [218325] = 4, + ACTIONS(11626), 1, anon_sym_COMMA, - ACTIONS(11939), 1, + ACTIONS(11628), 1, anon_sym_RPAREN, - STATE(9381), 1, - aux_sym_multi_variable_declaration_repeat1, + STATE(8966), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227255] = 4, - ACTIONS(11575), 1, + [218339] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - ACTIONS(11941), 1, + ACTIONS(11630), 1, anon_sym_GT, - STATE(9193), 1, + STATE(8960), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227269] = 4, - ACTIONS(11943), 1, + [218353] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - ACTIONS(11946), 1, + ACTIONS(11632), 1, anon_sym_GT, - STATE(9276), 1, + STATE(8960), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227283] = 4, - ACTIONS(11587), 1, + [218367] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11948), 1, + ACTIONS(11634), 1, anon_sym_GT, - STATE(9288), 1, + STATE(8954), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227297] = 4, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(11950), 1, - anon_sym_EQ, - STATE(9994), 1, - sym_type_parameters, + [218381] = 3, + ACTIONS(11636), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227311] = 4, - ACTIONS(11952), 1, + ACTIONS(11638), 2, + anon_sym_COMMA, + anon_sym_GT, + [218393] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - ACTIONS(11955), 1, + ACTIONS(11640), 1, anon_sym_RPAREN, - STATE(9279), 1, + STATE(8985), 1, aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227325] = 4, - ACTIONS(11957), 1, + [218407] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11642), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218421] = 4, + ACTIONS(11644), 1, anon_sym_COMMA, - ACTIONS(11959), 1, + ACTIONS(11646), 1, anon_sym_RPAREN, - STATE(9211), 1, - aux_sym_function_value_parameters_repeat1, + STATE(9002), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218435] = 4, + ACTIONS(5536), 1, + anon_sym_RPAREN, + ACTIONS(11648), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218449] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11650), 1, + anon_sym_GT, + STATE(8980), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218463] = 4, + ACTIONS(11652), 1, + anon_sym_COMMA, + ACTIONS(11654), 1, + anon_sym_RPAREN, + STATE(8937), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218477] = 4, + ACTIONS(11656), 1, + anon_sym_COMMA, + ACTIONS(11659), 1, + anon_sym_RPAREN, + STATE(8985), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227339] = 2, + [218491] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4782), 3, + ACTIONS(4704), 3, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_in, - [227349] = 4, - ACTIONS(11795), 1, + [218501] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - ACTIONS(11961), 1, - anon_sym_DASH_GT, - STATE(9201), 1, - aux_sym_lambda_parameters_repeat1, + ACTIONS(11661), 1, + anon_sym_RPAREN, + STATE(8985), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227363] = 3, - STATE(4900), 1, - sym__lexical_identifier, + [218515] = 4, + ACTIONS(11378), 1, + anon_sym_COMMA, + ACTIONS(11663), 1, + anon_sym_RPAREN, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [227375] = 4, - ACTIONS(11963), 1, + [218529] = 4, + ACTIONS(11303), 1, + anon_sym_COMMA, + ACTIONS(11665), 1, + anon_sym_GT, + STATE(8960), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218543] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11965), 1, + ACTIONS(11667), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218557] = 4, + ACTIONS(5524), 1, anon_sym_RPAREN, - STATE(9372), 1, + ACTIONS(11669), 1, + anon_sym_COMMA, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227389] = 4, - ACTIONS(11715), 1, - anon_sym_LPAREN, - ACTIONS(11967), 1, - anon_sym_LBRACE, - STATE(9990), 1, - sym_when_subject, + [218571] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11671), 1, + anon_sym_GT, + STATE(8990), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227403] = 4, - ACTIONS(11587), 1, + [218585] = 4, + ACTIONS(9378), 1, + anon_sym_RPAREN, + ACTIONS(11673), 1, anon_sym_COMMA, - ACTIONS(11969), 1, - anon_sym_GT, - STATE(9370), 1, - aux_sym_type_arguments_repeat1, + STATE(8934), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227417] = 4, - ACTIONS(11587), 1, + [218599] = 4, + ACTIONS(11675), 1, anon_sym_COMMA, - ACTIONS(11971), 1, - anon_sym_GT, - STATE(9204), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11677), 1, + anon_sym_RPAREN, + STATE(8991), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227431] = 4, - ACTIONS(11587), 1, + [218613] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11973), 1, - anon_sym_GT, - STATE(9204), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11679), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227445] = 4, - ACTIONS(5518), 1, + [218627] = 4, + ACTIONS(5562), 1, anon_sym_RPAREN, - ACTIONS(11975), 1, + ACTIONS(11681), 1, anon_sym_COMMA, - STATE(9241), 1, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227459] = 4, - ACTIONS(7727), 1, + [218641] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11977), 1, - anon_sym_RBRACK, - STATE(9160), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11683), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227473] = 4, - ACTIONS(11979), 1, + [218655] = 4, + ACTIONS(11685), 1, anon_sym_COMMA, - ACTIONS(11981), 1, + ACTIONS(11687), 1, anon_sym_RPAREN, - STATE(9296), 1, + STATE(9047), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227487] = 4, - ACTIONS(9000), 1, - anon_sym_RPAREN, - ACTIONS(11983), 1, + [218669] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - STATE(9165), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11689), 1, + anon_sym_GT, + STATE(9049), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227501] = 4, - ACTIONS(3280), 1, + [218683] = 4, + ACTIONS(4218), 1, anon_sym_while, - ACTIONS(8729), 1, + ACTIONS(8648), 1, anon_sym_LBRACE, - STATE(9841), 1, - sym_class_body, + STATE(9543), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227515] = 4, - ACTIONS(11587), 1, + [218697] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11985), 1, + ACTIONS(11691), 1, anon_sym_GT, - STATE(9297), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227529] = 2, + [218711] = 4, + ACTIONS(8833), 1, + anon_sym_RPAREN, + ACTIONS(11693), 1, + anon_sym_COMMA, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11987), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - [227539] = 4, - ACTIONS(5560), 1, + [218725] = 4, + ACTIONS(5498), 1, anon_sym_RPAREN, - ACTIONS(11989), 1, + ACTIONS(11695), 1, anon_sym_COMMA, - STATE(9241), 1, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227553] = 4, - ACTIONS(11587), 1, + [218739] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11991), 1, + ACTIONS(11697), 1, anon_sym_GT, - STATE(9204), 1, + STATE(9001), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227567] = 4, - ACTIONS(11647), 1, + [218753] = 4, + ACTIONS(11699), 1, anon_sym_COMMA, - ACTIONS(11993), 1, - anon_sym_RPAREN, - STATE(9279), 1, - aux_sym_multi_variable_declaration_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [227581] = 4, - ACTIONS(11995), 1, - anon_sym_COMMA, - ACTIONS(11997), 1, + ACTIONS(11701), 1, anon_sym_RPAREN, - STATE(9173), 1, - aux_sym_function_value_parameters_repeat1, + STATE(9003), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227595] = 4, - ACTIONS(11999), 1, + [218767] = 4, + ACTIONS(11703), 1, anon_sym_COMMA, - ACTIONS(12001), 1, + ACTIONS(11705), 1, anon_sym_RPAREN, - STATE(9315), 1, + STATE(8938), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227609] = 4, - ACTIONS(11575), 1, - anon_sym_COMMA, - ACTIONS(12003), 1, - anon_sym_GT, - STATE(9167), 1, - aux_sym_type_parameters_repeat1, + [218781] = 4, + ACTIONS(4357), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + STATE(9518), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227623] = 4, - ACTIONS(12005), 1, + [218795] = 4, + ACTIONS(11707), 1, anon_sym_COMMA, - ACTIONS(12007), 1, + ACTIONS(11709), 1, anon_sym_RPAREN, - STATE(9344), 1, - aux_sym_value_arguments_repeat1, + STATE(9067), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227637] = 3, - ACTIONS(12009), 1, - anon_sym_AMP, + [218809] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 2, - sym__quest, - anon_sym_in, - [227649] = 4, - ACTIONS(11587), 1, + ACTIONS(11276), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [218819] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(11711), 1, anon_sym_GT, - STATE(9305), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227663] = 4, - ACTIONS(11587), 1, - anon_sym_COMMA, - ACTIONS(12013), 1, - anon_sym_GT, - STATE(9204), 1, - aux_sym_type_arguments_repeat1, + [218833] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227677] = 4, - ACTIONS(12015), 1, + ACTIONS(10993), 3, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(12017), 1, + anon_sym_SEMI, + [218843] = 4, + ACTIONS(5470), 1, anon_sym_RPAREN, - STATE(9371), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11713), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227691] = 4, - ACTIONS(12019), 1, + [218857] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(12021), 1, - anon_sym_RPAREN, - STATE(9310), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11715), 1, + anon_sym_GT, + STATE(9010), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227705] = 4, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(12023), 1, - anon_sym_EQ, - STATE(10122), 1, - sym_type_parameters, + [218871] = 4, + ACTIONS(11717), 1, + anon_sym_COMMA, + ACTIONS(11719), 1, + anon_sym_RPAREN, + STATE(9012), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227719] = 4, - ACTIONS(11587), 1, + [218885] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(12025), 1, + ACTIONS(11721), 1, anon_sym_GT, - STATE(9313), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227733] = 4, - ACTIONS(5536), 1, - anon_sym_RPAREN, - ACTIONS(12027), 1, - anon_sym_COMMA, - STATE(9241), 1, - aux_sym_value_arguments_repeat1, + [218899] = 4, + ACTIONS(4206), 1, + anon_sym_in, + ACTIONS(11342), 1, + sym__quest, + STATE(8922), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227747] = 4, - ACTIONS(3288), 1, + [218913] = 4, + ACTIONS(3282), 1, anon_sym_while, - ACTIONS(8729), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(9776), 1, + STATE(9545), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227761] = 4, - ACTIONS(5552), 1, - anon_sym_LBRACE, - ACTIONS(10206), 1, - anon_sym_COLON, - STATE(4991), 1, - sym_class_body, + [218927] = 4, + ACTIONS(11723), 1, + anon_sym_COMMA, + ACTIONS(11725), 1, + anon_sym_RPAREN, + STATE(8955), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227775] = 4, - ACTIONS(11587), 1, - anon_sym_COMMA, - ACTIONS(12029), 1, - anon_sym_GT, - STATE(9204), 1, - aux_sym_type_arguments_repeat1, + [218941] = 4, + ACTIONS(4224), 1, + anon_sym_in, + ACTIONS(11727), 1, + sym__quest, + STATE(9019), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227789] = 4, - ACTIONS(11647), 1, + [218955] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - ACTIONS(12031), 1, + ACTIONS(11730), 1, anon_sym_RPAREN, - STATE(9157), 1, + STATE(8985), 1, aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227803] = 4, - ACTIONS(5574), 1, + [218969] = 4, + ACTIONS(9362), 1, anon_sym_RPAREN, - ACTIONS(12033), 1, + ACTIONS(11732), 1, anon_sym_COMMA, - STATE(9241), 1, - aux_sym_value_arguments_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [227817] = 4, - ACTIONS(3288), 1, - anon_sym_while, - ACTIONS(8765), 1, - anon_sym_LBRACE, - STATE(9776), 1, - sym_enum_class_body, + STATE(8934), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227831] = 4, - ACTIONS(4756), 1, - anon_sym_while, - ACTIONS(8729), 1, - anon_sym_LBRACE, - STATE(9777), 1, - sym_class_body, + [218983] = 3, + ACTIONS(11734), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227845] = 4, - ACTIONS(12035), 1, + ACTIONS(11736), 2, anon_sym_COMMA, - ACTIONS(12037), 1, anon_sym_RPAREN, - STATE(9320), 1, - aux_sym_value_arguments_repeat1, + [218995] = 4, + ACTIONS(8909), 1, + anon_sym_RPAREN, + ACTIONS(11738), 1, + anon_sym_COMMA, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227859] = 4, - ACTIONS(11587), 1, + [219009] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(12039), 1, + ACTIONS(11740), 1, anon_sym_GT, - STATE(9321), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227873] = 4, - ACTIONS(5532), 1, + [219023] = 4, + ACTIONS(5620), 1, anon_sym_RPAREN, - ACTIONS(12041), 1, + ACTIONS(11742), 1, anon_sym_COMMA, - STATE(9241), 1, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227887] = 4, - ACTIONS(11587), 1, + [219037] = 4, + ACTIONS(11378), 1, + anon_sym_COMMA, + ACTIONS(11744), 1, + anon_sym_RPAREN, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219051] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(12043), 1, + ACTIONS(11746), 1, anon_sym_GT, - STATE(9204), 1, + STATE(9024), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227901] = 4, - ACTIONS(12045), 1, + [219065] = 4, + ACTIONS(11748), 1, anon_sym_COMMA, - ACTIONS(12047), 1, + ACTIONS(11750), 1, anon_sym_RPAREN, - STATE(9324), 1, + STATE(9025), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227915] = 4, - ACTIONS(11587), 1, - anon_sym_COMMA, - ACTIONS(12049), 1, - anon_sym_GT, - STATE(9325), 1, - aux_sym_type_arguments_repeat1, + [219079] = 3, + STATE(3424), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227929] = 4, - ACTIONS(5526), 1, - anon_sym_RPAREN, - ACTIONS(12051), 1, + ACTIONS(203), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219091] = 4, + ACTIONS(11481), 1, anon_sym_COMMA, - STATE(9241), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11752), 1, + anon_sym_DASH_GT, + STATE(8902), 1, + aux_sym_when_entry_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227943] = 4, - ACTIONS(11587), 1, + [219105] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4479), 3, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [219115] = 4, + ACTIONS(5614), 1, + anon_sym_RPAREN, + ACTIONS(11754), 1, anon_sym_COMMA, - ACTIONS(12053), 1, - anon_sym_GT, - STATE(9204), 1, - aux_sym_type_arguments_repeat1, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227957] = 4, - ACTIONS(12055), 1, + [219129] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(12057), 1, + ACTIONS(11756), 1, anon_sym_RPAREN, - STATE(9339), 1, - aux_sym__class_parameters_repeat1, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227971] = 4, - ACTIONS(12059), 1, + [219143] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(12061), 1, - anon_sym_RPAREN, - STATE(9289), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11758), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227985] = 4, - ACTIONS(12063), 1, + [219157] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(12065), 1, - anon_sym_RPAREN, - STATE(9219), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11760), 1, + anon_sym_GT, + STATE(9015), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227999] = 3, - STATE(5273), 1, - sym__lexical_identifier, + [219171] = 4, + ACTIONS(5552), 1, + anon_sym_RPAREN, + ACTIONS(11762), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [228011] = 3, - STATE(5272), 1, + [219185] = 3, + STATE(840), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 2, + ACTIONS(11764), 2, sym__alpha_identifier, sym__backtick_identifier, - [228023] = 3, - STATE(5271), 1, + [219197] = 3, + STATE(3584), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 2, + ACTIONS(203), 2, sym__alpha_identifier, sym__backtick_identifier, - [228035] = 3, - STATE(5269), 1, + [219209] = 3, + STATE(3585), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 2, + ACTIONS(203), 2, sym__alpha_identifier, sym__backtick_identifier, - [228047] = 3, - STATE(3284), 1, - sym__lexical_identifier, + [219221] = 4, + ACTIONS(11303), 1, + anon_sym_COMMA, + ACTIONS(11766), 1, + anon_sym_GT, + STATE(8960), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(595), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [228059] = 4, - ACTIONS(11587), 1, + [219235] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(12067), 1, + ACTIONS(11768), 1, anon_sym_GT, - STATE(9337), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228073] = 3, - ACTIONS(12069), 1, - anon_sym_AMP, + [219249] = 4, + ACTIONS(9352), 1, + anon_sym_RPAREN, + ACTIONS(11770), 1, + anon_sym_COMMA, + STATE(8934), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 2, - sym__quest, - anon_sym_in, - [228085] = 3, - STATE(3967), 1, + [219263] = 3, + STATE(3587), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(427), 2, + ACTIONS(203), 2, sym__alpha_identifier, sym__backtick_identifier, - [228097] = 4, - ACTIONS(11587), 1, - anon_sym_COMMA, - ACTIONS(12071), 1, - anon_sym_GT, - STATE(9204), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228111] = 4, - ACTIONS(11715), 1, - anon_sym_LPAREN, - ACTIONS(12073), 1, - anon_sym_LBRACE, - STATE(10276), 1, - sym_when_subject, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228125] = 4, - ACTIONS(9064), 1, - anon_sym_RPAREN, - ACTIONS(12075), 1, - anon_sym_COMMA, - STATE(9165), 1, - aux_sym__class_parameters_repeat1, + [219275] = 3, + STATE(3591), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228139] = 4, - ACTIONS(12077), 1, + ACTIONS(203), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219287] = 4, + ACTIONS(11772), 1, anon_sym_COMMA, - ACTIONS(12079), 1, + ACTIONS(11774), 1, anon_sym_RPAREN, - STATE(9348), 1, + STATE(9032), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228153] = 4, - ACTIONS(7727), 1, + [219301] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(12081), 1, + ACTIONS(11776), 1, anon_sym_RBRACK, - STATE(9160), 1, + STATE(8926), 1, aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228167] = 4, - ACTIONS(4471), 1, - anon_sym_while, - ACTIONS(8729), 1, + [219315] = 4, + ACTIONS(5508), 1, + anon_sym_RPAREN, + ACTIONS(11778), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219329] = 4, + ACTIONS(5496), 1, anon_sym_LBRACE, - STATE(9782), 1, + ACTIONS(9929), 1, + anon_sym_COLON, + STATE(3526), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228181] = 4, - ACTIONS(11587), 1, + [219343] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(12083), 1, + ACTIONS(11780), 1, anon_sym_GT, - STATE(9354), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228195] = 4, - ACTIONS(5542), 1, - anon_sym_RPAREN, - ACTIONS(12085), 1, - anon_sym_COMMA, - STATE(9241), 1, - aux_sym_value_arguments_repeat1, + [219357] = 4, + ACTIONS(4557), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + STATE(9507), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219371] = 4, + ACTIONS(3282), 1, + anon_sym_while, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(9545), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228209] = 4, - ACTIONS(4425), 1, + [219385] = 4, + ACTIONS(4329), 1, anon_sym_while, - ACTIONS(8729), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(9786), 1, + STATE(9623), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228223] = 4, - ACTIONS(11569), 1, + [219399] = 4, + ACTIONS(8901), 1, + anon_sym_RPAREN, + ACTIONS(11782), 1, + anon_sym_COMMA, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219413] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(12087), 1, + ACTIONS(11784), 1, anon_sym_RPAREN, - STATE(9224), 1, + STATE(8972), 1, aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228237] = 4, - ACTIONS(9662), 1, - anon_sym_RPAREN, - ACTIONS(12089), 1, + [219427] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - STATE(9238), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11786), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228251] = 4, - ACTIONS(5514), 1, + [219441] = 4, + ACTIONS(5606), 1, anon_sym_RPAREN, - ACTIONS(12091), 1, + ACTIONS(11788), 1, anon_sym_COMMA, - STATE(9241), 1, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228265] = 4, - ACTIONS(11587), 1, + [219455] = 4, + ACTIONS(9368), 1, + anon_sym_RPAREN, + ACTIONS(11790), 1, anon_sym_COMMA, - ACTIONS(12093), 1, - anon_sym_GT, - STATE(9204), 1, - aux_sym_type_arguments_repeat1, + STATE(8934), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228279] = 4, - ACTIONS(12095), 1, + [219469] = 4, + ACTIONS(11792), 1, anon_sym_COMMA, - ACTIONS(12097), 1, + ACTIONS(11794), 1, anon_sym_RPAREN, - STATE(9375), 1, - aux_sym_value_arguments_repeat1, + STATE(8964), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228293] = 4, - ACTIONS(5660), 1, + [219483] = 4, + ACTIONS(11378), 1, + anon_sym_COMMA, + ACTIONS(11796), 1, anon_sym_RPAREN, - ACTIONS(12099), 1, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219497] = 4, + ACTIONS(11798), 1, anon_sym_COMMA, - STATE(9241), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11800), 1, + anon_sym_RPAREN, + STATE(9053), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228307] = 4, - ACTIONS(11587), 1, + [219511] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(12101), 1, + ACTIONS(11802), 1, anon_sym_GT, - STATE(9287), 1, + STATE(9055), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228321] = 4, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(12103), 1, - anon_sym_EQ, - STATE(9963), 1, - sym_type_parameters, + [219525] = 4, + ACTIONS(11804), 1, + anon_sym_COMMA, + ACTIONS(11806), 1, + anon_sym_RPAREN, + STATE(9056), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228335] = 4, - ACTIONS(11587), 1, + [219539] = 4, + ACTIONS(11808), 1, anon_sym_COMMA, - ACTIONS(12105), 1, - anon_sym_GT, - STATE(9204), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11810), 1, + anon_sym_RPAREN, + STATE(9057), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228349] = 4, - ACTIONS(4425), 1, + [219553] = 4, + ACTIONS(3274), 1, anon_sym_while, - ACTIONS(8765), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(9786), 1, - sym_enum_class_body, + STATE(9819), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228363] = 4, - ACTIONS(11647), 1, - anon_sym_COMMA, - ACTIONS(12107), 1, + [219567] = 4, + ACTIONS(8857), 1, anon_sym_RPAREN, - STATE(9184), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11812), 1, + anon_sym_COMMA, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228377] = 4, - ACTIONS(12109), 1, + [219581] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(12111), 1, - anon_sym_RPAREN, - STATE(9368), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11814), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228391] = 4, - ACTIONS(7727), 1, + [219595] = 4, + ACTIONS(8881), 1, + anon_sym_RPAREN, + ACTIONS(11816), 1, anon_sym_COMMA, - ACTIONS(12113), 1, - anon_sym_RBRACK, - STATE(9160), 1, - aux_sym_indexing_suffix_repeat1, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228405] = 4, - ACTIONS(12115), 1, - anon_sym_COMMA, - ACTIONS(12117), 1, + [219609] = 4, + ACTIONS(5542), 1, anon_sym_RPAREN, - STATE(9271), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11818), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228419] = 2, + [219623] = 4, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(11820), 1, + sym__automatic_semicolon, + STATE(10021), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4383), 3, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [228429] = 4, - ACTIONS(11587), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, - anon_sym_GT, - STATE(9376), 1, - aux_sym_type_arguments_repeat1, + [219637] = 4, + ACTIONS(10691), 1, + anon_sym_LBRACE, + ACTIONS(11822), 1, + sym__automatic_semicolon, + STATE(9891), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228443] = 4, - ACTIONS(11894), 1, + [219651] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(12121), 1, - anon_sym_DASH_GT, - STATE(9256), 1, - aux_sym_when_entry_repeat1, + ACTIONS(11824), 1, + anon_sym_RPAREN, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228457] = 4, - ACTIONS(11575), 1, + [219665] = 4, + ACTIONS(11826), 1, anon_sym_COMMA, - ACTIONS(12123), 1, - anon_sym_GT, - STATE(9276), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(11828), 1, + anon_sym_RPAREN, + STATE(9065), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228471] = 4, - ACTIONS(4283), 1, - anon_sym_while, - ACTIONS(8729), 1, + [219679] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(9800), 1, + ACTIONS(11830), 1, + sym__automatic_semicolon, + STATE(10013), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228485] = 4, - ACTIONS(11569), 1, + [219693] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(12125), 1, - anon_sym_RPAREN, - STATE(9224), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11832), 1, + anon_sym_GT, + STATE(9066), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228499] = 4, - ACTIONS(4283), 1, - anon_sym_while, - ACTIONS(8765), 1, - anon_sym_LBRACE, - STATE(9800), 1, - sym_enum_class_body, + [219707] = 4, + ACTIONS(11834), 1, + anon_sym_COMMA, + ACTIONS(11836), 1, + anon_sym_RPAREN, + STATE(9068), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228513] = 4, - ACTIONS(11569), 1, + [219721] = 4, + ACTIONS(11838), 1, anon_sym_COMMA, - ACTIONS(12127), 1, + ACTIONS(11840), 1, anon_sym_RPAREN, - STATE(9224), 1, - aux_sym_function_type_parameters_repeat1, + STATE(9087), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228527] = 4, - ACTIONS(5508), 1, + [219735] = 4, + ACTIONS(5514), 1, anon_sym_RPAREN, - ACTIONS(12129), 1, + ACTIONS(11842), 1, anon_sym_COMMA, - STATE(9241), 1, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228541] = 3, - STATE(3542), 1, - sym__lexical_identifier, + [219749] = 4, + ACTIONS(8845), 1, + anon_sym_RPAREN, + ACTIONS(11844), 1, + anon_sym_COMMA, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(293), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [228553] = 4, - ACTIONS(11587), 1, + [219763] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(12131), 1, + ACTIONS(11846), 1, anon_sym_GT, - STATE(9204), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228567] = 4, - ACTIONS(9620), 1, - anon_sym_RPAREN, - ACTIONS(12133), 1, + [219777] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - STATE(9238), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11848), 1, + anon_sym_GT, + STATE(8975), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228581] = 4, - ACTIONS(5616), 1, + [219791] = 4, + ACTIONS(9364), 1, anon_sym_RPAREN, - ACTIONS(12135), 1, + ACTIONS(11850), 1, anon_sym_COMMA, - STATE(9241), 1, - aux_sym_value_arguments_repeat1, + STATE(8934), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228595] = 4, - ACTIONS(4365), 1, - anon_sym_in, - ACTIONS(12137), 1, - sym__quest, - STATE(9380), 1, - aux_sym_nullable_type_repeat1, + [219805] = 4, + ACTIONS(7591), 1, + anon_sym_COMMA, + ACTIONS(11852), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228609] = 4, - ACTIONS(9616), 1, - anon_sym_RPAREN, - ACTIONS(12139), 1, + [219819] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - STATE(9238), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11854), 1, + anon_sym_GT, + STATE(8960), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228623] = 4, - ACTIONS(5626), 1, + [219833] = 4, + ACTIONS(11378), 1, + anon_sym_COMMA, + ACTIONS(11856), 1, anon_sym_RPAREN, - ACTIONS(12141), 1, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219847] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - STATE(9241), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11858), 1, + anon_sym_RPAREN, + STATE(8985), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228637] = 4, - ACTIONS(11587), 1, + [219861] = 4, + ACTIONS(11860), 1, anon_sym_COMMA, - ACTIONS(12143), 1, - anon_sym_GT, - STATE(9204), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11862), 1, + anon_sym_RPAREN, + STATE(9078), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228651] = 4, - ACTIONS(11587), 1, + [219875] = 4, + ACTIONS(9350), 1, + anon_sym_RPAREN, + ACTIONS(11864), 1, anon_sym_COMMA, - ACTIONS(12145), 1, - anon_sym_GT, - STATE(9378), 1, - aux_sym_type_arguments_repeat1, + STATE(8934), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219889] = 4, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(11866), 1, + sym__automatic_semicolon, + STATE(9987), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228665] = 4, - ACTIONS(11587), 1, + [219903] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(12147), 1, + ACTIONS(11868), 1, anon_sym_GT, - STATE(9204), 1, + STATE(9079), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228679] = 4, - ACTIONS(4639), 1, - anon_sym_while, - ACTIONS(8729), 1, - anon_sym_LBRACE, - STATE(9822), 1, - sym_class_body, + [219917] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228693] = 4, - ACTIONS(4264), 1, - anon_sym_in, - ACTIONS(12149), 1, - sym__quest, - STATE(9380), 1, - aux_sym_nullable_type_repeat1, + ACTIONS(11870), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [219927] = 4, + ACTIONS(11872), 1, + anon_sym_COMMA, + ACTIONS(11874), 1, + anon_sym_RPAREN, + STATE(9077), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228707] = 4, - ACTIONS(11647), 1, + [219941] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - ACTIONS(12152), 1, + ACTIONS(11876), 1, anon_sym_RPAREN, - STATE(9279), 1, + STATE(8979), 1, aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228721] = 4, - ACTIONS(4329), 1, - anon_sym_in, - ACTIONS(11873), 1, - sym__quest, - STATE(9373), 1, - aux_sym_nullable_type_repeat1, + [219955] = 3, + ACTIONS(11878), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228735] = 4, - ACTIONS(11575), 1, + ACTIONS(7824), 2, anon_sym_COMMA, - ACTIONS(12154), 1, - anon_sym_GT, - STATE(9276), 1, - aux_sym_type_parameters_repeat1, + anon_sym_RPAREN, + [219967] = 4, + ACTIONS(11880), 1, + anon_sym_COMMA, + ACTIONS(11882), 1, + anon_sym_RPAREN, + STATE(9081), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228749] = 4, - ACTIONS(9346), 1, - anon_sym_LT, - ACTIONS(12156), 1, - anon_sym_EQ, - STATE(9954), 1, - sym_type_parameters, + [219981] = 4, + ACTIONS(11303), 1, + anon_sym_COMMA, + ACTIONS(11884), 1, + anon_sym_GT, + STATE(9083), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228763] = 3, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(3477), 1, - sym_class_body, + [219995] = 4, + ACTIONS(11311), 1, + anon_sym_COMMA, + ACTIONS(11886), 1, + anon_sym_RPAREN, + STATE(9085), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228774] = 3, - ACTIONS(9972), 1, + [220009] = 3, + ACTIONS(9765), 1, anon_sym_LPAREN, - STATE(1282), 1, + STATE(4673), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228785] = 2, + [220020] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4166), 2, + ACTIONS(4776), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [228794] = 3, - ACTIONS(12158), 1, + [220029] = 3, + ACTIONS(11888), 1, anon_sym_DOT, - STATE(8270), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228805] = 3, - ACTIONS(9978), 1, - anon_sym_LPAREN, - STATE(4821), 1, - sym_function_value_parameters, + [220040] = 3, + ACTIONS(11890), 1, + anon_sym_DOT, + STATE(9099), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228816] = 3, - ACTIONS(9978), 1, - anon_sym_LPAREN, - STATE(4808), 1, - sym_function_value_parameters, + [220051] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228827] = 3, - ACTIONS(9978), 1, + ACTIONS(121), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220060] = 3, + ACTIONS(5488), 1, anon_sym_LPAREN, - STATE(4806), 1, - sym_function_value_parameters, + STATE(3365), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228838] = 3, - ACTIONS(9978), 1, - anon_sym_LPAREN, - STATE(4799), 1, - sym_function_value_parameters, + [220071] = 3, + ACTIONS(11892), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228849] = 3, - ACTIONS(12160), 1, + [220082] = 3, + ACTIONS(11894), 1, anon_sym_DOT, - STATE(9388), 1, + STATE(9103), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228860] = 3, - ACTIONS(10125), 1, - anon_sym_LPAREN, - STATE(4804), 1, - sym_function_value_parameters, + [220093] = 3, + ACTIONS(11896), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228871] = 3, - ACTIONS(7769), 1, - anon_sym_RBRACE, - ACTIONS(12162), 1, - anon_sym_SEMI, + [220104] = 3, + ACTIONS(11898), 1, + anon_sym_DOT, + STATE(9105), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228882] = 2, + [220115] = 3, + ACTIONS(10683), 1, + anon_sym_get, + ACTIONS(10685), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [228891] = 2, + [220126] = 3, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(8552), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11882), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [228900] = 3, - ACTIONS(12164), 1, - anon_sym_DOT, - STATE(8270), 1, - aux_sym_user_type_repeat1, + [220137] = 3, + ACTIONS(10391), 1, + anon_sym_get, + ACTIONS(10393), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228911] = 3, - ACTIONS(12166), 1, - anon_sym_DOT, - STATE(9398), 1, - aux_sym_user_type_repeat1, + [220148] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228922] = 2, + ACTIONS(1804), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220157] = 3, + ACTIONS(3262), 1, + anon_sym_LBRACE, + STATE(3077), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220168] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(12168), 2, + ACTIONS(11900), 2, anon_sym_COMMA, anon_sym_GT, - [228931] = 3, - ACTIONS(12170), 1, - anon_sym_DOT, - STATE(8270), 1, - aux_sym_user_type_repeat1, + [220177] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4469), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220186] = 3, + ACTIONS(11902), 1, + sym__automatic_semicolon, + STATE(3790), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228942] = 2, + [220197] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4854), 2, + ACTIONS(5173), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [228951] = 3, - ACTIONS(10125), 1, + [220206] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4811), 1, + STATE(4539), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228962] = 3, - ACTIONS(1838), 1, - anon_sym_LBRACE, - STATE(4889), 1, - sym_lambda_literal, + [220217] = 3, + ACTIONS(10331), 1, + anon_sym_get, + ACTIONS(10333), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228973] = 3, - ACTIONS(12172), 1, - anon_sym_LBRACE, - STATE(3196), 1, - sym__block, + [220228] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(4095), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228984] = 3, - ACTIONS(12174), 1, - anon_sym_DOT, - STATE(9401), 1, - aux_sym_user_type_repeat1, + [220239] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228995] = 3, - ACTIONS(12172), 1, - anon_sym_LBRACE, - STATE(3260), 1, - sym__block, + ACTIONS(4908), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220248] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229006] = 2, + ACTIONS(7181), 2, + anon_sym_AT, + anon_sym_val, + [220257] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1734), 2, + ACTIONS(7193), 2, + anon_sym_AT, + anon_sym_val, + [220266] = 3, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4536), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220277] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4904), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229015] = 3, - ACTIONS(10981), 1, - anon_sym_LPAREN, - STATE(9433), 1, - sym_value_arguments, + [220286] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229026] = 3, - ACTIONS(10995), 1, + ACTIONS(7189), 2, + anon_sym_AT, + anon_sym_val, + [220295] = 3, + ACTIONS(7783), 1, + anon_sym_RBRACE, + ACTIONS(11904), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220306] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7145), 2, + anon_sym_AT, + anon_sym_val, + [220315] = 3, + ACTIONS(11906), 1, anon_sym_LBRACE, - STATE(8888), 1, + STATE(917), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229037] = 3, - ACTIONS(10765), 1, - anon_sym_get, - ACTIONS(10767), 1, - anon_sym_set, + [220326] = 3, + ACTIONS(11906), 1, + anon_sym_LBRACE, + STATE(865), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229048] = 3, - ACTIONS(12176), 1, + [220337] = 3, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4543), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220348] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7173), 2, + anon_sym_AT, + anon_sym_val, + [220357] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1810), 2, sym__automatic_semicolon, - STATE(3889), 1, - sym__semi, + anon_sym_RBRACE, + [220366] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229059] = 2, + ACTIONS(5189), 2, + anon_sym_AT, + anon_sym_val, + [220375] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4858), 2, + ACTIONS(4886), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229068] = 3, - ACTIONS(7900), 1, + [220384] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4453), 2, + sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(12178), 1, - anon_sym_SEMI, + [220393] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229079] = 2, + ACTIONS(4185), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220402] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4862), 2, + ACTIONS(4297), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229088] = 3, - ACTIONS(10893), 1, + [220411] = 3, + ACTIONS(10583), 1, anon_sym_get, - ACTIONS(10895), 1, + ACTIONS(10585), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229099] = 3, - ACTIONS(1906), 1, - anon_sym_LBRACE, - STATE(3210), 1, - sym_lambda_literal, + [220422] = 3, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(4135), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229110] = 3, - ACTIONS(10611), 1, - anon_sym_get, - ACTIONS(10613), 1, - anon_sym_set, + [220433] = 3, + ACTIONS(5488), 1, + anon_sym_LPAREN, + STATE(3334), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229121] = 2, + [220444] = 3, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(5392), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4870), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229130] = 3, - ACTIONS(8242), 1, + [220455] = 3, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(5387), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220466] = 3, + ACTIONS(8223), 1, anon_sym_LBRACE, - STATE(4722), 1, + STATE(4949), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229141] = 3, - ACTIONS(12180), 1, - sym__automatic_semicolon, - STATE(3742), 1, - sym__semi, + [220477] = 3, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(5380), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229152] = 2, + [220488] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4283), 2, + ACTIONS(4483), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229161] = 3, - ACTIONS(9982), 1, + [220497] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(8593), 1, + STATE(5372), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229172] = 2, + [220508] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4920), 2, + ACTIONS(5101), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229181] = 2, + [220517] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4924), 2, + ACTIONS(4654), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229190] = 2, + [220526] = 3, + ACTIONS(5580), 1, + anon_sym_LPAREN, + STATE(4622), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220537] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4639), 2, + ACTIONS(4968), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229199] = 2, + [220546] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4467), 2, + ACTIONS(1816), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229208] = 3, - ACTIONS(10627), 1, - anon_sym_get, - ACTIONS(10629), 1, - anon_sym_set, + [220555] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229219] = 2, + ACTIONS(5185), 2, + anon_sym_AT, + anon_sym_val, + [220564] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4185), 2, + ACTIONS(4301), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229228] = 2, + [220573] = 3, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(4938), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5089), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229237] = 2, + [220584] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1810), 2, + ACTIONS(4569), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229246] = 3, - ACTIONS(10849), 1, - anon_sym_get, - ACTIONS(10851), 1, - anon_sym_set, + [220593] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229257] = 2, + ACTIONS(5181), 2, + anon_sym_AT, + anon_sym_val, + [220602] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(12182), 2, + ACTIONS(3422), 2, sym__automatic_semicolon, - anon_sym_LBRACE, - [229266] = 3, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(4735), 1, - sym__block, + anon_sym_RBRACE, + [220611] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229277] = 3, - ACTIONS(10032), 1, + ACTIONS(4441), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220620] = 3, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(8611), 1, + STATE(4075), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229288] = 2, + [220631] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4379), 2, + ACTIONS(5087), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229297] = 3, - ACTIONS(10659), 1, - anon_sym_get, - ACTIONS(10661), 1, - anon_sym_set, + [220640] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229308] = 2, + ACTIONS(5041), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220649] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4383), 2, + ACTIONS(4976), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229317] = 3, - ACTIONS(9978), 1, - anon_sym_LPAREN, - STATE(5500), 1, - sym_function_value_parameters, + [220658] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229328] = 2, + ACTIONS(5165), 2, + anon_sym_AT, + anon_sym_val, + [220667] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5093), 2, + ACTIONS(4900), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229337] = 2, + [220676] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(207), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229346] = 3, - ACTIONS(10032), 1, + ACTIONS(5161), 2, + anon_sym_AT, + anon_sym_val, + [220685] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(8620), 1, + STATE(3355), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229357] = 3, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(5389), 1, - sym_lambda_literal, + [220696] = 3, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(4142), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229368] = 3, - ACTIONS(7807), 1, + [220707] = 3, + ACTIONS(7711), 1, anon_sym_RBRACE, - ACTIONS(12184), 1, + ACTIONS(11908), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229379] = 3, - ACTIONS(9978), 1, + [220718] = 3, + ACTIONS(11910), 1, + sym__automatic_semicolon, + STATE(3637), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220729] = 3, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(5502), 1, + STATE(4064), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229390] = 3, - ACTIONS(10691), 1, + [220740] = 3, + ACTIONS(10315), 1, anon_sym_get, - ACTIONS(10693), 1, + ACTIONS(10317), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229401] = 2, + [220751] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(4088), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4459), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229410] = 3, - ACTIONS(5554), 1, + [220762] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4748), 1, - sym__class_parameters, + STATE(4963), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229421] = 3, - ACTIONS(9978), 1, + [220773] = 3, + ACTIONS(3254), 1, anon_sym_LPAREN, - STATE(5522), 1, - sym_function_value_parameters, + STATE(3041), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220784] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229432] = 2, + ACTIONS(4479), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220793] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5121), 2, + ACTIONS(5097), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229441] = 2, + [220802] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5125), 2, + ACTIONS(4848), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229450] = 2, + [220811] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4774), 2, + ACTIONS(4800), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229459] = 3, - ACTIONS(9978), 1, + [220820] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(5528), 1, + STATE(2849), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229470] = 3, - ACTIONS(9998), 1, + [220831] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(5067), 1, + STATE(5304), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229481] = 2, + [220842] = 3, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(5267), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5143), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229490] = 3, - ACTIONS(10835), 1, + [220853] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11326), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [220862] = 3, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(5311), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220873] = 3, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(3350), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220884] = 3, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(5286), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220895] = 3, + ACTIONS(10345), 1, anon_sym_get, - ACTIONS(10837), 1, + ACTIONS(10347), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229501] = 2, + [220906] = 3, + ACTIONS(7671), 1, + anon_sym_RBRACE, + ACTIONS(11912), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1792), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229510] = 3, - ACTIONS(9998), 1, + [220917] = 3, + ACTIONS(3254), 1, anon_sym_LPAREN, - STATE(5418), 1, + STATE(3022), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220928] = 3, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(3349), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229521] = 3, - ACTIONS(10032), 1, + [220939] = 3, + ACTIONS(4894), 1, + anon_sym_while, + ACTIONS(11914), 1, anon_sym_LPAREN, - STATE(8618), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220950] = 3, + ACTIONS(4876), 1, + anon_sym_while, + ACTIONS(11916), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220961] = 3, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(1289), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229532] = 3, - ACTIONS(10865), 1, + [220972] = 3, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(2817), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220983] = 3, + ACTIONS(5496), 1, + anon_sym_LBRACE, + STATE(3451), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220994] = 3, + ACTIONS(10497), 1, anon_sym_get, - ACTIONS(10867), 1, + ACTIONS(10499), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229543] = 2, + [221005] = 3, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(3581), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5167), 2, - sym__automatic_semicolon, + [221016] = 3, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(3578), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221027] = 3, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(3574), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221038] = 3, + ACTIONS(7715), 1, anon_sym_RBRACE, - [229552] = 3, - ACTIONS(3256), 1, - anon_sym_LBRACE, - STATE(3224), 1, - sym_class_body, + ACTIONS(11918), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229563] = 3, - ACTIONS(9998), 1, + [221049] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(5416), 1, + STATE(3572), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229574] = 3, - ACTIONS(8361), 1, + [221060] = 3, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(2866), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221071] = 3, + ACTIONS(1836), 1, anon_sym_LBRACE, - STATE(5094), 1, - sym__block, + STATE(4785), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229585] = 3, - ACTIONS(9998), 1, + [221082] = 3, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(5412), 1, + STATE(3678), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229596] = 3, - ACTIONS(10008), 1, + [221093] = 3, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3674), 1, + STATE(3681), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229607] = 3, - ACTIONS(10008), 1, + [221104] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3618), 1, + STATE(2814), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229618] = 3, - ACTIONS(10907), 1, + [221115] = 3, + ACTIONS(4124), 1, + anon_sym_in, + ACTIONS(11920), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221126] = 3, + ACTIONS(4287), 1, + anon_sym_while, + ACTIONS(11922), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221137] = 3, + ACTIONS(4265), 1, + anon_sym_while, + ACTIONS(11924), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221148] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(3687), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221159] = 3, + ACTIONS(8640), 1, + anon_sym_LPAREN, + STATE(8723), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221170] = 3, + ACTIONS(3212), 1, + anon_sym_LPAREN, + STATE(941), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221181] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(3707), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221192] = 3, + ACTIONS(6430), 1, + anon_sym_LBRACE, + STATE(3248), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221203] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(2906), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221214] = 3, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(1264), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221225] = 3, + ACTIONS(10407), 1, anon_sym_get, - ACTIONS(10909), 1, + ACTIONS(10409), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229629] = 3, - ACTIONS(10008), 1, + [221236] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3616), 1, + STATE(3564), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229640] = 2, + [221247] = 3, + ACTIONS(1904), 1, + anon_sym_LBRACE, + STATE(3076), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4293), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229649] = 3, - ACTIONS(10008), 1, + [221258] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3599), 1, + STATE(3563), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229660] = 3, - ACTIONS(6547), 1, + [221269] = 3, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(3231), 1, - sym__block, + STATE(4703), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229671] = 3, - ACTIONS(1906), 1, + [221280] = 3, + ACTIONS(1904), 1, anon_sym_LBRACE, - STATE(3234), 1, + STATE(3165), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229682] = 2, + [221291] = 3, + ACTIONS(3212), 1, + anon_sym_LPAREN, + STATE(999), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5203), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229691] = 3, - ACTIONS(10012), 1, + [221302] = 3, + ACTIONS(25), 1, + anon_sym_LBRACE, + STATE(5176), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221313] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3739), 1, + STATE(4686), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229702] = 3, - ACTIONS(12186), 1, - anon_sym_DOT, - STATE(9479), 1, - aux_sym_user_type_repeat1, + [221324] = 3, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(1290), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229713] = 2, + [221335] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(2897), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3158), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229722] = 3, - ACTIONS(10012), 1, + [221346] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3745), 1, + STATE(4696), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229733] = 3, - ACTIONS(12188), 1, - anon_sym_DOT, - STATE(8270), 1, - aux_sym_user_type_repeat1, + [221357] = 3, + ACTIONS(9789), 1, + anon_sym_LPAREN, + STATE(8349), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229744] = 3, - ACTIONS(10012), 1, + [221368] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3750), 1, + STATE(3561), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229755] = 3, - ACTIONS(12190), 1, + [221379] = 3, + ACTIONS(11926), 1, anon_sym_DOT, - STATE(8270), 1, + STATE(9232), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229766] = 2, + [221390] = 3, + ACTIONS(10511), 1, + anon_sym_get, + ACTIONS(10513), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221401] = 3, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4700), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5211), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229775] = 2, + [221412] = 3, + ACTIONS(11928), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 2, - sym__automatic_semicolon, + [221423] = 3, + ACTIONS(7812), 1, anon_sym_RBRACE, - [229784] = 2, + ACTIONS(11930), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1802), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229793] = 3, - ACTIONS(10012), 1, + [221434] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3757), 1, + STATE(3555), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229804] = 3, - ACTIONS(10083), 1, + [221445] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(3532), 1, + STATE(838), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229815] = 3, - ACTIONS(10125), 1, + [221456] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(4763), 1, + STATE(826), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229826] = 3, - ACTIONS(8361), 1, + [221467] = 3, + ACTIONS(1586), 1, anon_sym_LBRACE, - STATE(5084), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [229837] = 3, - ACTIONS(12192), 1, - anon_sym_DOT, - STATE(9662), 1, - aux_sym_user_type_repeat1, + STATE(3453), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229848] = 3, - ACTIONS(10083), 1, + [221478] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3529), 1, + STATE(4697), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229859] = 2, + [221489] = 3, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(841), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4597), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229868] = 2, + [221500] = 3, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(843), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11733), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [229877] = 3, - ACTIONS(5554), 1, - anon_sym_LPAREN, - STATE(4762), 1, - sym__class_parameters, + [221511] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229888] = 3, - ACTIONS(10083), 1, + ACTIONS(11932), 2, + sym__automatic_semicolon, + anon_sym_LBRACE, + [221520] = 3, + ACTIONS(10731), 1, anon_sym_LPAREN, - STATE(3528), 1, - sym_function_value_parameters, + STATE(9241), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229899] = 2, + [221531] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4471), 2, + ACTIONS(5105), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229908] = 3, - ACTIONS(12194), 1, - sym__automatic_semicolon, - STATE(3622), 1, - sym__semi, + [221540] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229919] = 2, + ACTIONS(5177), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221549] = 3, + ACTIONS(1836), 1, + anon_sym_LBRACE, + STATE(4724), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4455), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229928] = 2, + [221560] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5113), 2, + ACTIONS(3115), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229937] = 3, - ACTIONS(9998), 1, + [221569] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(5035), 1, + STATE(1291), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229948] = 2, + [221580] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3438), 2, + ACTIONS(4465), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [229957] = 3, - ACTIONS(12196), 1, - sym__automatic_semicolon, - STATE(9665), 1, - sym__semi, + [221589] = 3, + ACTIONS(10539), 1, + anon_sym_get, + ACTIONS(10541), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229968] = 2, + [221600] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5225), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229977] = 2, + [221611] = 3, + ACTIONS(8640), 1, + anon_sym_LPAREN, + STATE(8698), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5229), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229986] = 2, + [221622] = 3, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(4651), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5233), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [229995] = 2, + [221633] = 3, + ACTIONS(5580), 1, + anon_sym_LPAREN, + STATE(4664), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(12198), 2, - sym__import_list_delimiter, - anon_sym_import, - [230004] = 3, - ACTIONS(12200), 1, + [221644] = 3, + ACTIONS(11934), 1, anon_sym_DOT, - STATE(9481), 1, + STATE(9422), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230015] = 3, - ACTIONS(9998), 1, + [221655] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(5072), 1, + STATE(4145), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230026] = 3, - ACTIONS(10807), 1, + [221666] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4162), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221675] = 3, + ACTIONS(10655), 1, anon_sym_get, - ACTIONS(10809), 1, + ACTIONS(10657), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230037] = 2, + [221686] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 2, + ACTIONS(4964), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [230046] = 3, - ACTIONS(10083), 1, + [221695] = 3, + ACTIONS(9789), 1, anon_sym_LPAREN, - STATE(3524), 1, + STATE(8353), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230057] = 3, - ACTIONS(9998), 1, - anon_sym_LPAREN, - STATE(5028), 1, - sym_function_value_parameters, + [221706] = 3, + ACTIONS(11936), 1, + sym__automatic_semicolon, + STATE(9430), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230068] = 3, - ACTIONS(5890), 1, + [221717] = 3, + ACTIONS(9765), 1, anon_sym_LPAREN, - STATE(5343), 1, - sym__class_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [230079] = 2, + STATE(4661), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5147), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [230088] = 3, - ACTIONS(10779), 1, - anon_sym_get, - ACTIONS(10781), 1, - anon_sym_set, + [221728] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(2883), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230099] = 3, - ACTIONS(6547), 1, - anon_sym_LBRACE, - STATE(3018), 1, - sym__block, + [221739] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230110] = 2, + ACTIONS(11938), 2, + sym__import_list_delimiter, + anon_sym_import, + [221748] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11806), 2, + ACTIONS(11940), 2, anon_sym_COMMA, anon_sym_GT, - [230119] = 3, - ACTIONS(6547), 1, - anon_sym_LBRACE, - STATE(2986), 1, - sym__block, + [221757] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230130] = 3, - ACTIONS(8654), 1, + ACTIONS(1734), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221766] = 3, + ACTIONS(8513), 1, anon_sym_LPAREN, - STATE(8774), 1, + STATE(8608), 1, sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230141] = 3, - ACTIONS(9998), 1, + [221777] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(5414), 1, + STATE(2771), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230152] = 2, + [221788] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11871), 2, + ACTIONS(11403), 2, anon_sym_COMMA, anon_sym_RPAREN, - [230161] = 2, + [221797] = 3, + ACTIONS(11942), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4387), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [230170] = 3, - ACTIONS(9972), 1, + [221808] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(864), 1, + STATE(4904), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230181] = 3, - ACTIONS(9972), 1, - anon_sym_LPAREN, - STATE(876), 1, - sym_function_value_parameters, + [221819] = 3, + ACTIONS(10613), 1, + anon_sym_get, + ACTIONS(10615), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230192] = 2, + [221830] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, + ACTIONS(3274), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [230201] = 3, - ACTIONS(9972), 1, + [221839] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(878), 1, + STATE(2789), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230212] = 3, - ACTIONS(10995), 1, - anon_sym_LBRACE, - STATE(8893), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [230223] = 3, - ACTIONS(10735), 1, - anon_sym_get, - ACTIONS(10737), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [230234] = 2, + [221850] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11903), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [230243] = 3, - ACTIONS(12202), 1, + ACTIONS(4495), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221859] = 3, + ACTIONS(11944), 1, anon_sym_DOT, - STATE(8270), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230254] = 3, - ACTIONS(1626), 1, - anon_sym_LBRACE, - STATE(3501), 1, - sym_lambda_literal, + [221870] = 3, + ACTIONS(11946), 1, + sym__automatic_semicolon, + STATE(3515), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230265] = 3, - ACTIONS(12204), 1, + [221881] = 3, + ACTIONS(11948), 1, anon_sym_DOT, - STATE(9529), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230276] = 3, - ACTIONS(1660), 1, - anon_sym_LBRACE, - STATE(1066), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [230287] = 2, + [221892] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5185), 2, + ACTIONS(5193), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [230296] = 3, - ACTIONS(6632), 1, - anon_sym_LBRACE, - STATE(3485), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [230307] = 3, - ACTIONS(8731), 1, - anon_sym_LPAREN, - STATE(9006), 1, - sym__class_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [230318] = 3, - ACTIONS(1648), 1, - anon_sym_LBRACE, - STATE(3950), 1, - sym_lambda_literal, + [221901] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230329] = 3, - ACTIONS(12206), 1, + ACTIONS(5155), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221910] = 3, + ACTIONS(11950), 1, anon_sym_DOT, - STATE(9543), 1, + STATE(9277), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230340] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5189), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [230349] = 3, - ACTIONS(12208), 1, + [221921] = 3, + ACTIONS(11952), 1, anon_sym_DOT, - STATE(8270), 1, + STATE(9269), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230360] = 3, - ACTIONS(5808), 1, - anon_sym_LPAREN, - STATE(3867), 1, - sym__class_parameters, + [221932] = 3, + ACTIONS(10375), 1, + anon_sym_get, + ACTIONS(10377), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230371] = 2, + [221943] = 3, + ACTIONS(11954), 1, + anon_sym_DOT, + STATE(9286), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5199), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [230380] = 3, - ACTIONS(9982), 1, - anon_sym_LPAREN, - STATE(8599), 1, - sym_function_value_parameters, + [221954] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230391] = 3, - ACTIONS(12210), 1, + ACTIONS(11956), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [221963] = 3, + ACTIONS(11958), 1, anon_sym_DOT, - STATE(8270), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230402] = 3, - ACTIONS(12212), 1, + [221974] = 3, + ACTIONS(11960), 1, anon_sym_DOT, - STATE(9547), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230413] = 3, - ACTIONS(10995), 1, - anon_sym_LBRACE, - STATE(8906), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [230424] = 3, - ACTIONS(1660), 1, - anon_sym_LBRACE, - STATE(1124), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [230435] = 3, - ACTIONS(12214), 1, + [221985] = 3, + ACTIONS(11962), 1, anon_sym_DOT, - STATE(8270), 1, + STATE(9285), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230446] = 3, - ACTIONS(12216), 1, + [221996] = 3, + ACTIONS(11964), 1, anon_sym_DOT, - STATE(9539), 1, + STATE(9295), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230457] = 3, - ACTIONS(1626), 1, + [222007] = 3, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(3614), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [230468] = 3, - ACTIONS(10008), 1, - anon_sym_LPAREN, - STATE(4250), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [230479] = 2, + STATE(8610), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5067), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [230488] = 3, - ACTIONS(10879), 1, - anon_sym_get, - ACTIONS(10881), 1, - anon_sym_set, + [222018] = 3, + ACTIONS(11966), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230499] = 2, + [222029] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1818), 2, + ACTIONS(3290), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [230508] = 3, - ACTIONS(10935), 1, - anon_sym_get, - ACTIONS(10937), 1, - anon_sym_set, + [222038] = 3, + ACTIONS(11968), 1, + anon_sym_COLON, + ACTIONS(11970), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230519] = 3, - ACTIONS(12218), 1, + [222049] = 3, + ACTIONS(11972), 1, anon_sym_DOT, - STATE(9557), 1, + STATE(9290), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230530] = 3, - ACTIONS(3236), 1, - anon_sym_LBRACE, - STATE(1044), 1, - sym_class_body, + [222060] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230541] = 3, - ACTIONS(12220), 1, + ACTIONS(5109), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222069] = 3, + ACTIONS(11974), 1, anon_sym_DOT, - STATE(8270), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230552] = 3, - ACTIONS(9972), 1, - anon_sym_LPAREN, - STATE(863), 1, - sym_function_value_parameters, + [222080] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230563] = 3, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(5152), 1, - sym__class_parameters, + ACTIONS(4139), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222089] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230574] = 3, - ACTIONS(12222), 1, - anon_sym_DOT, - STATE(8270), 1, - aux_sym_user_type_repeat1, + ACTIONS(4357), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222098] = 3, + ACTIONS(7691), 1, + anon_sym_RBRACE, + ACTIONS(11976), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230585] = 2, + [222109] = 3, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(2798), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11955), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [230594] = 2, + [222120] = 3, + ACTIONS(11978), 1, + anon_sym_LBRACE, + STATE(3664), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3346), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [230603] = 3, - ACTIONS(4162), 1, + [222131] = 3, + ACTIONS(11978), 1, anon_sym_LBRACE, - STATE(1113), 1, + STATE(3672), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230614] = 3, - ACTIONS(10595), 1, + [222142] = 3, + ACTIONS(10627), 1, anon_sym_get, - ACTIONS(10597), 1, + ACTIONS(10629), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230625] = 3, - ACTIONS(10339), 1, - anon_sym_get, - ACTIONS(10341), 1, - anon_sym_set, + [222153] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230636] = 3, - ACTIONS(9972), 1, + ACTIONS(5151), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222162] = 3, + ACTIONS(9825), 1, anon_sym_LPAREN, - STATE(835), 1, + STATE(8328), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230647] = 3, - ACTIONS(5864), 1, - anon_sym_LBRACE, - STATE(5335), 1, - sym_class_body, + [222173] = 3, + ACTIONS(9789), 1, + anon_sym_LPAREN, + STATE(8344), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230658] = 3, - ACTIONS(7829), 1, - anon_sym_RBRACE, - ACTIONS(12224), 1, - anon_sym_SEMI, + [222184] = 3, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4649), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230669] = 3, - ACTIONS(12226), 1, + [222195] = 3, + ACTIONS(11980), 1, anon_sym_DOT, - STATE(9560), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230680] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5221), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [230689] = 3, - ACTIONS(9982), 1, + [222206] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(8923), 1, + STATE(2805), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230700] = 3, - ACTIONS(10961), 1, + [222217] = 3, + ACTIONS(6511), 1, anon_sym_LBRACE, - STATE(9789), 1, + STATE(3440), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230711] = 3, - ACTIONS(12228), 1, - sym__automatic_semicolon, - STATE(5876), 1, - sym__semi, + [222228] = 3, + ACTIONS(10451), 1, + anon_sym_get, + ACTIONS(10453), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230722] = 2, + [222239] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5101), 2, + ACTIONS(3346), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [230731] = 3, - ACTIONS(10995), 1, - anon_sym_LBRACE, - STATE(8896), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [230742] = 3, - ACTIONS(12230), 1, - anon_sym_COLON, - ACTIONS(12232), 1, - anon_sym_RPAREN, + [222248] = 3, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(1227), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230753] = 3, - ACTIONS(9978), 1, + [222259] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(4947), 1, + STATE(1232), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230764] = 3, - ACTIONS(10751), 1, - anon_sym_get, - ACTIONS(10753), 1, - anon_sym_set, + [222270] = 3, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(1235), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230775] = 3, - ACTIONS(5808), 1, + [222281] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(3876), 1, - sym__class_parameters, + STATE(1207), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230786] = 3, - ACTIONS(12234), 1, - anon_sym_DOT, - STATE(8270), 1, - aux_sym_user_type_repeat1, + [222292] = 3, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(3323), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230797] = 3, - ACTIONS(12236), 1, + [222303] = 3, + ACTIONS(11982), 1, anon_sym_DOT, - STATE(9580), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230808] = 3, - ACTIONS(10008), 1, + [222314] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(4212), 1, + STATE(3274), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230819] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7827), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [230828] = 3, - ACTIONS(12238), 1, - anon_sym_DOT, - STATE(8270), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [230839] = 3, - ACTIONS(12240), 1, + [222325] = 3, + ACTIONS(11984), 1, anon_sym_DOT, - STATE(9584), 1, + STATE(9317), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230850] = 3, - ACTIONS(5179), 1, - anon_sym_while, - ACTIONS(12242), 1, + [222336] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, + STATE(814), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230861] = 3, - ACTIONS(5173), 1, - anon_sym_while, - ACTIONS(12244), 1, + [222347] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, + STATE(3273), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230872] = 3, - ACTIONS(12246), 1, - anon_sym_DOT, - STATE(8270), 1, - aux_sym_user_type_repeat1, + [222358] = 3, + ACTIONS(10224), 1, + anon_sym_get, + ACTIONS(10226), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230883] = 3, - ACTIONS(12248), 1, + [222369] = 3, + ACTIONS(11986), 1, anon_sym_DOT, - STATE(9588), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230894] = 3, - ACTIONS(5806), 1, - anon_sym_LBRACE, - STATE(3938), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [230905] = 3, - ACTIONS(9972), 1, + [222380] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(833), 1, + STATE(3322), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230916] = 3, - ACTIONS(9972), 1, - anon_sym_LPAREN, - STATE(830), 1, - sym_function_value_parameters, + [222391] = 3, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(9323), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230927] = 3, - ACTIONS(9972), 1, + [222402] = 3, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(828), 1, + STATE(3318), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230938] = 3, - ACTIONS(12250), 1, + [222413] = 3, + ACTIONS(11990), 1, anon_sym_DOT, - STATE(8270), 1, + STATE(9307), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230949] = 3, - ACTIONS(10083), 1, + [222424] = 3, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(2845), 1, + STATE(3317), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230960] = 3, - ACTIONS(8361), 1, + [222435] = 3, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(5284), 1, + STATE(8484), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230971] = 3, - ACTIONS(10083), 1, + [222446] = 3, + ACTIONS(9789), 1, anon_sym_LPAREN, - STATE(2844), 1, + STATE(8339), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230982] = 3, - ACTIONS(6854), 1, - anon_sym_LBRACE, - STATE(3936), 1, - sym__block, + [222457] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [230993] = 3, - ACTIONS(10083), 1, + [222468] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(2843), 1, + STATE(815), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231004] = 3, - ACTIONS(12252), 1, + [222479] = 3, + ACTIONS(11992), 1, anon_sym_DOT, - STATE(9594), 1, + STATE(9275), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231015] = 3, - ACTIONS(1648), 1, - anon_sym_LBRACE, - STATE(3958), 1, - sym_lambda_literal, + [222490] = 3, + ACTIONS(11994), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231026] = 3, - ACTIONS(10083), 1, + [222501] = 3, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(2842), 1, + STATE(3314), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231037] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(12254), 2, - anon_sym_COMMA, - anon_sym_GT, - [231046] = 3, - ACTIONS(10012), 1, - anon_sym_LPAREN, - STATE(2993), 1, - sym_function_value_parameters, + [222512] = 3, + ACTIONS(11996), 1, + anon_sym_DOT, + STATE(9350), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231057] = 3, - ACTIONS(10995), 1, + [222523] = 3, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(8827), 1, + STATE(8510), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231068] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7263), 2, - anon_sym_AT, - anon_sym_val, - [231077] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7299), 2, - anon_sym_AT, - anon_sym_val, - [231086] = 3, - ACTIONS(12256), 1, - anon_sym_DOT, - STATE(8270), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [231097] = 3, - ACTIONS(10008), 1, + [222534] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4248), 1, + STATE(4957), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231108] = 3, - ACTIONS(7857), 1, - anon_sym_RBRACE, - ACTIONS(12258), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [231119] = 3, - ACTIONS(10012), 1, + [222545] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(2985), 1, + STATE(4788), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231130] = 3, - ACTIONS(12260), 1, - anon_sym_DOT, - STATE(9608), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [231141] = 3, - ACTIONS(10012), 1, + [222556] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(2977), 1, + STATE(818), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231152] = 2, + [222567] = 3, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4598), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7335), 2, - anon_sym_AT, - anon_sym_val, - [231161] = 2, + [222578] = 3, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4596), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7323), 2, - anon_sym_AT, - anon_sym_val, - [231170] = 2, + [222589] = 3, + ACTIONS(11998), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7313), 2, - anon_sym_AT, - anon_sym_val, - [231179] = 3, - ACTIONS(12262), 1, - anon_sym_DOT, - STATE(8270), 1, - aux_sym_user_type_repeat1, + [222600] = 3, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(822), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231190] = 3, - ACTIONS(12264), 1, - anon_sym_DOT, - STATE(9619), 1, - aux_sym_user_type_repeat1, + [222611] = 3, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(4084), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231201] = 3, - ACTIONS(12266), 1, - anon_sym_DOT, - STATE(8270), 1, - aux_sym_user_type_repeat1, + [222622] = 3, + ACTIONS(5822), 1, + anon_sym_LPAREN, + STATE(3747), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231212] = 3, - ACTIONS(12268), 1, + [222633] = 3, + ACTIONS(12000), 1, anon_sym_DOT, - STATE(9617), 1, + STATE(9364), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231223] = 3, - ACTIONS(10125), 1, + [222644] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(4818), 1, + STATE(4078), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231234] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5022), 2, - anon_sym_AT, - anon_sym_val, - [231243] = 3, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(5134), 1, - sym__class_parameters, + [222655] = 3, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5094), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231254] = 3, - ACTIONS(10012), 1, - anon_sym_LPAREN, - STATE(2975), 1, - sym_function_value_parameters, + [222666] = 3, + ACTIONS(12002), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231265] = 3, - ACTIONS(12270), 1, + [222677] = 3, + ACTIONS(12004), 1, anon_sym_DOT, - STATE(8270), 1, + STATE(9352), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231276] = 3, - ACTIONS(12272), 1, + [222688] = 3, + ACTIONS(12006), 1, anon_sym_DOT, - STATE(9625), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231287] = 3, - ACTIONS(10995), 1, - anon_sym_LBRACE, - STATE(8850), 1, - sym__block, + [222699] = 3, + ACTIONS(9825), 1, + anon_sym_LPAREN, + STATE(8699), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231298] = 2, + [222710] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5257), 2, + ACTIONS(5147), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [231307] = 3, - ACTIONS(10793), 1, - anon_sym_get, - ACTIONS(10795), 1, - anon_sym_set, + [222719] = 3, + ACTIONS(10691), 1, + anon_sym_LBRACE, + STATE(9590), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231318] = 2, + [222730] = 3, + ACTIONS(12008), 1, + sym__automatic_semicolon, + STATE(5698), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5097), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [231327] = 3, - ACTIONS(9978), 1, + [222741] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(5005), 1, + STATE(4954), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231338] = 3, - ACTIONS(10707), 1, - anon_sym_get, - ACTIONS(10709), 1, - anon_sym_set, + [222752] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231349] = 2, + ACTIONS(4852), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222761] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4978), 2, + ACTIONS(5207), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [231358] = 3, - ACTIONS(10008), 1, - anon_sym_LPAREN, - STATE(4242), 1, - sym_function_value_parameters, + [222770] = 3, + ACTIONS(6430), 1, + anon_sym_LBRACE, + STATE(2934), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231369] = 3, - ACTIONS(10008), 1, + [222781] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3377), 1, + STATE(4535), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231380] = 3, - ACTIONS(9978), 1, - anon_sym_LPAREN, - STATE(5437), 1, - sym_function_value_parameters, + [222792] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231391] = 3, - ACTIONS(12274), 1, + ACTIONS(11466), 2, + anon_sym_COMMA, + anon_sym_GT, + [222801] = 3, + ACTIONS(6430), 1, anon_sym_LBRACE, - STATE(895), 1, + STATE(2935), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231402] = 3, - ACTIONS(9978), 1, - anon_sym_LPAREN, - STATE(5441), 1, - sym_function_value_parameters, + [222812] = 3, + ACTIONS(12010), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231413] = 3, - ACTIONS(10008), 1, + [222823] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(3376), 1, + STATE(4076), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231424] = 3, - ACTIONS(9978), 1, + [222834] = 3, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(8618), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222845] = 3, + ACTIONS(9825), 1, anon_sym_LPAREN, - STATE(5446), 1, + STATE(8327), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231435] = 3, - ACTIONS(5890), 1, - anon_sym_LPAREN, - STATE(5381), 1, - sym__class_parameters, + [222856] = 3, + ACTIONS(10553), 1, + anon_sym_get, + ACTIONS(10555), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231446] = 3, - ACTIONS(9978), 1, + [222867] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(5439), 1, + STATE(4074), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231457] = 3, - ACTIONS(12274), 1, - anon_sym_LBRACE, - STATE(880), 1, - sym__block, + [222878] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231468] = 3, - ACTIONS(10008), 1, - anon_sym_LPAREN, - STATE(3374), 1, - sym_function_value_parameters, + ACTIONS(4920), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222887] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231479] = 3, - ACTIONS(9998), 1, - anon_sym_LPAREN, - STATE(4765), 1, - sym_function_value_parameters, + ACTIONS(11479), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [222896] = 3, + ACTIONS(12012), 1, + anon_sym_COLON, + ACTIONS(12014), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231490] = 3, - ACTIONS(27), 1, + [222907] = 3, + ACTIONS(12016), 1, anon_sym_LBRACE, - STATE(5217), 1, - sym_lambda_literal, + STATE(3104), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231501] = 3, - ACTIONS(10008), 1, + [222918] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3371), 1, + STATE(4642), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231512] = 3, - ACTIONS(9998), 1, + [222929] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4767), 1, + STATE(4647), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231523] = 3, - ACTIONS(9998), 1, - anon_sym_LPAREN, - STATE(4773), 1, - sym_function_value_parameters, + [222940] = 3, + ACTIONS(10597), 1, + anon_sym_get, + ACTIONS(10599), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231534] = 2, + [222951] = 3, + ACTIONS(9825), 1, + anon_sym_LPAREN, + STATE(8664), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [231543] = 3, - ACTIONS(9998), 1, - anon_sym_LPAREN, - STATE(4654), 1, - sym_function_value_parameters, + [222962] = 3, + ACTIONS(12018), 1, + anon_sym_DOT, + STATE(9343), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231554] = 3, - ACTIONS(5592), 1, - anon_sym_LPAREN, - STATE(3449), 1, - sym__class_parameters, + [222973] = 3, + ACTIONS(12016), 1, + anon_sym_LBRACE, + STATE(3106), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231565] = 3, - ACTIONS(9998), 1, + [222984] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(4778), 1, + STATE(4725), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231576] = 3, - ACTIONS(9982), 1, + [222995] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(8600), 1, + STATE(4667), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231587] = 2, + [223006] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(12276), 2, + ACTIONS(7801), 2, anon_sym_COMMA, - anon_sym_GT, - [231596] = 3, - ACTIONS(12278), 1, - sym__automatic_semicolon, - STATE(3607), 1, - sym__semi, + anon_sym_DASH_GT, + [223015] = 3, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(5205), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231607] = 3, - ACTIONS(9998), 1, - anon_sym_LPAREN, - STATE(4651), 1, - sym_function_value_parameters, + [223026] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231618] = 3, - ACTIONS(10008), 1, + ACTIONS(11488), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [223035] = 3, + ACTIONS(9765), 1, anon_sym_LPAREN, - STATE(4204), 1, + STATE(4640), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231629] = 2, + [223046] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11946), 2, + ACTIONS(12020), 2, anon_sym_COMMA, anon_sym_GT, - [231638] = 3, - ACTIONS(10012), 1, - anon_sym_LPAREN, - STATE(4197), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [231649] = 3, - ACTIONS(9998), 1, - anon_sym_LPAREN, - STATE(4655), 1, - sym_function_value_parameters, + [223055] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231660] = 3, - ACTIONS(12280), 1, - anon_sym_DOT, - STATE(8270), 1, - aux_sym_user_type_repeat1, + ACTIONS(5079), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223064] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231671] = 3, - ACTIONS(9978), 1, - anon_sym_LPAREN, - STATE(4858), 1, - sym_function_value_parameters, + ACTIONS(5211), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223073] = 3, + ACTIONS(10567), 1, + anon_sym_get, + ACTIONS(10569), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231682] = 3, - ACTIONS(10008), 1, - anon_sym_LPAREN, - STATE(4203), 1, - sym_function_value_parameters, + [223084] = 3, + ACTIONS(12022), 1, + anon_sym_DOT, + STATE(9394), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231693] = 2, + [223095] = 3, + ACTIONS(7699), 1, + anon_sym_RBRACE, + ACTIONS(12024), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(12282), 2, - sym__import_list_delimiter, - anon_sym_import, - [231702] = 3, - ACTIONS(9998), 1, - anon_sym_LPAREN, - STATE(4652), 1, - sym_function_value_parameters, + [223106] = 3, + ACTIONS(10423), 1, + anon_sym_get, + ACTIONS(10425), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231713] = 2, + [223117] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5117), 2, + ACTIONS(5215), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [231722] = 3, - ACTIONS(7871), 1, - anon_sym_RBRACE, - ACTIONS(12284), 1, - anon_sym_SEMI, + [223126] = 3, + ACTIONS(12026), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231733] = 3, - ACTIONS(10008), 1, + [223137] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(4192), 1, + STATE(3358), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231744] = 2, + [223148] = 3, + ACTIONS(12028), 1, + anon_sym_DOT, + STATE(9334), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5006), 2, - anon_sym_AT, - anon_sym_val, - [231753] = 3, - ACTIONS(8731), 1, - anon_sym_LPAREN, - STATE(9066), 1, - sym__class_parameters, + [223159] = 3, + ACTIONS(7822), 1, + anon_sym_RBRACE, + ACTIONS(12030), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231764] = 2, + [223170] = 3, + ACTIONS(1658), 1, + anon_sym_LBRACE, + STATE(1077), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11864), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [231773] = 3, - ACTIONS(10008), 1, - anon_sym_LPAREN, - STATE(4202), 1, - sym_function_value_parameters, + [223181] = 3, + ACTIONS(12032), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231784] = 3, - ACTIONS(10012), 1, - anon_sym_LPAREN, - STATE(3361), 1, - sym_function_value_parameters, + [223192] = 3, + ACTIONS(25), 1, + anon_sym_LBRACE, + STATE(5245), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231795] = 3, - ACTIONS(10673), 1, + [223203] = 3, + ACTIONS(10483), 1, anon_sym_get, - ACTIONS(10675), 1, + ACTIONS(10485), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231806] = 2, + [223214] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4277), 2, + ACTIONS(4323), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [231815] = 3, - ACTIONS(10012), 1, - anon_sym_LPAREN, - STATE(3456), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [231826] = 3, - ACTIONS(8654), 1, - anon_sym_LPAREN, - STATE(8767), 1, - sym__class_parameters, + [223223] = 3, + ACTIONS(10361), 1, + anon_sym_get, + ACTIONS(10363), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231837] = 2, + [223234] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4974), 2, - anon_sym_AT, - anon_sym_val, - [231846] = 2, + ACTIONS(5123), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223243] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3296), 2, + ACTIONS(1798), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [231855] = 3, - ACTIONS(10012), 1, - anon_sym_LPAREN, - STATE(3451), 1, - sym_function_value_parameters, + [223252] = 3, + ACTIONS(10641), 1, + anon_sym_get, + ACTIONS(10643), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231866] = 3, - ACTIONS(10012), 1, - anon_sym_LPAREN, - STATE(3393), 1, - sym_function_value_parameters, + [223263] = 3, + ACTIONS(1646), 1, + anon_sym_LBRACE, + STATE(3983), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231877] = 3, - ACTIONS(5592), 1, + [223274] = 3, + ACTIONS(5760), 1, anon_sym_LPAREN, - STATE(3441), 1, + STATE(5242), 1, sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231888] = 3, - ACTIONS(4221), 1, - anon_sym_in, - ACTIONS(12286), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [231899] = 3, - ACTIONS(10969), 1, - anon_sym_AMP, - ACTIONS(12288), 1, - anon_sym_RPAREN, + [223285] = 3, + ACTIONS(12034), 1, + anon_sym_DOT, + STATE(9399), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231910] = 3, - ACTIONS(4242), 1, - anon_sym_while, - ACTIONS(12290), 1, - anon_sym_LPAREN, + [223296] = 3, + ACTIONS(1586), 1, + anon_sym_LBRACE, + STATE(3437), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231921] = 3, - ACTIONS(4353), 1, - anon_sym_while, - ACTIONS(12292), 1, - anon_sym_LPAREN, + [223307] = 3, + ACTIONS(4145), 1, + anon_sym_LBRACE, + STATE(1150), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231932] = 3, - ACTIONS(12294), 1, - anon_sym_DOT, - STATE(9690), 1, - aux_sym_user_type_repeat1, + [223318] = 3, + ACTIONS(12036), 1, + sym__automatic_semicolon, + STATE(3405), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231943] = 3, - ACTIONS(10012), 1, + [223329] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(4198), 1, + STATE(4869), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231954] = 3, - ACTIONS(12296), 1, + [223340] = 3, + ACTIONS(12038), 1, anon_sym_DOT, - STATE(8270), 1, + STATE(9416), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231965] = 3, - ACTIONS(10083), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [231976] = 3, - ACTIONS(10643), 1, + [223351] = 3, + ACTIONS(10525), 1, anon_sym_get, - ACTIONS(10645), 1, + ACTIONS(10527), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [231987] = 3, - ACTIONS(1838), 1, - anon_sym_LBRACE, - STATE(4860), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [231998] = 3, - ACTIONS(10083), 1, - anon_sym_LPAREN, - STATE(3437), 1, - sym_function_value_parameters, + [223362] = 3, + ACTIONS(12040), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232009] = 3, - ACTIONS(10083), 1, + [223373] = 3, + ACTIONS(9765), 1, anon_sym_LPAREN, - STATE(3433), 1, + STATE(4695), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232020] = 2, + [223384] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 2, + ACTIONS(4218), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [232029] = 3, - ACTIONS(10083), 1, - anon_sym_LPAREN, - STATE(3428), 1, - sym_function_value_parameters, + [223393] = 3, + ACTIONS(12042), 1, + anon_sym_DOT, + STATE(9431), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232040] = 3, - ACTIONS(10012), 1, + [223404] = 3, + ACTIONS(9825), 1, anon_sym_LPAREN, - STATE(4200), 1, + STATE(8326), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232051] = 3, - ACTIONS(7813), 1, - anon_sym_RBRACE, - ACTIONS(12298), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [232062] = 3, - ACTIONS(10721), 1, - anon_sym_get, - ACTIONS(10723), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [232073] = 3, - ACTIONS(10012), 1, + [223415] = 3, + ACTIONS(5772), 1, anon_sym_LPAREN, - STATE(4199), 1, - sym_function_value_parameters, + STATE(4982), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232084] = 3, - ACTIONS(9972), 1, - anon_sym_LPAREN, - STATE(1238), 1, - sym_function_value_parameters, + [223426] = 3, + ACTIONS(12044), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232095] = 3, - ACTIONS(9972), 1, - anon_sym_LPAREN, - STATE(1236), 1, - sym_function_value_parameters, + [223437] = 3, + ACTIONS(1658), 1, + anon_sym_LBRACE, + STATE(1018), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232106] = 3, - ACTIONS(9972), 1, - anon_sym_LPAREN, - STATE(1231), 1, - sym_function_value_parameters, + [223448] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232117] = 3, - ACTIONS(9972), 1, - anon_sym_LPAREN, - STATE(1220), 1, - sym_function_value_parameters, + ACTIONS(5119), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223457] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232128] = 3, - ACTIONS(9982), 1, - anon_sym_LPAREN, - STATE(8601), 1, - sym_function_value_parameters, + ACTIONS(11659), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [223466] = 3, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(8542), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232139] = 3, - ACTIONS(3258), 1, + [223477] = 3, + ACTIONS(5772), 1, anon_sym_LPAREN, - STATE(3070), 1, + STATE(5051), 1, sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232150] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4942), 2, - anon_sym_AT, - anon_sym_val, - [232159] = 2, + [223488] = 3, + ACTIONS(5760), 1, + anon_sym_LPAREN, + STATE(5232), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4936), 2, - anon_sym_AT, - anon_sym_val, - [232168] = 3, - ACTIONS(10083), 1, - anon_sym_LPAREN, - STATE(2889), 1, - sym_function_value_parameters, + [223499] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232179] = 3, - ACTIONS(12300), 1, - anon_sym_DOT, - STATE(9712), 1, - aux_sym_user_type_repeat1, + ACTIONS(4149), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223508] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232190] = 3, - ACTIONS(12302), 1, + ACTIONS(12046), 2, + sym__import_list_delimiter, + anon_sym_import, + [223517] = 3, + ACTIONS(12048), 1, anon_sym_DOT, - STATE(8270), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232201] = 2, + [223528] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4198), 2, + ACTIONS(5201), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [232210] = 3, - ACTIONS(12304), 1, - anon_sym_DOT, - STATE(9715), 1, - aux_sym_user_type_repeat1, + [223537] = 3, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(5302), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232221] = 3, - ACTIONS(12306), 1, - anon_sym_DOT, - STATE(8270), 1, - aux_sym_user_type_repeat1, + [223548] = 3, + ACTIONS(7687), 1, + anon_sym_RBRACE, + ACTIONS(12050), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232232] = 3, - ACTIONS(9978), 1, + [223559] = 3, + ACTIONS(9825), 1, anon_sym_LPAREN, - STATE(4938), 1, + STATE(8329), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232243] = 3, - ACTIONS(10949), 1, - anon_sym_get, - ACTIONS(10951), 1, - anon_sym_set, + [223570] = 3, + ACTIONS(5822), 1, + anon_sym_LPAREN, + STATE(3714), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232254] = 3, - ACTIONS(9972), 1, + [223581] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(1297), 1, + STATE(4129), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232265] = 3, - ACTIONS(12308), 1, - anon_sym_DOT, - STATE(9723), 1, - aux_sym_user_type_repeat1, + [223592] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232276] = 3, - ACTIONS(3258), 1, + ACTIONS(11540), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [223601] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3050), 1, - sym__class_parameters, + STATE(5303), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232287] = 3, - ACTIONS(10921), 1, - anon_sym_get, - ACTIONS(10923), 1, - anon_sym_set, + [223612] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232298] = 3, - ACTIONS(10083), 1, - anon_sym_LPAREN, - STATE(2911), 1, - sym_function_value_parameters, + ACTIONS(5221), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223621] = 3, + ACTIONS(1646), 1, + anon_sym_LBRACE, + STATE(3989), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232309] = 3, - ACTIONS(12310), 1, - anon_sym_DOT, - STATE(8270), 1, - aux_sym_user_type_repeat1, + [223632] = 3, + ACTIONS(3210), 1, + anon_sym_LBRACE, + STATE(1125), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232320] = 2, + [223643] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4463), 2, + ACTIONS(4646), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [232329] = 2, + [223652] = 3, + ACTIONS(10669), 1, + anon_sym_get, + ACTIONS(10671), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5237), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [232338] = 2, + [223663] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11508), 2, + ACTIONS(4329), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [232347] = 3, - ACTIONS(9972), 1, + [223672] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(1271), 1, + STATE(5306), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232358] = 2, + [223683] = 3, + ACTIONS(10437), 1, + anon_sym_get, + ACTIONS(10439), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11825), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [232367] = 3, - ACTIONS(7819), 1, - anon_sym_RBRACE, - ACTIONS(12312), 1, - anon_sym_SEMI, + [223694] = 3, + ACTIONS(10469), 1, + anon_sym_get, + ACTIONS(10471), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232378] = 2, + [223705] = 3, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(5310), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5249), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [232387] = 3, - ACTIONS(8242), 1, + [223716] = 3, + ACTIONS(6714), 1, anon_sym_LBRACE, - STATE(4959), 1, + STATE(3862), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232398] = 2, + [223727] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1828), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [232407] = 3, - ACTIONS(10083), 1, - anon_sym_LPAREN, - STATE(2921), 1, - sym_function_value_parameters, + ACTIONS(11589), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [223736] = 3, + ACTIONS(5836), 1, + anon_sym_LBRACE, + STATE(3841), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232418] = 3, - ACTIONS(7882), 1, - anon_sym_RBRACE, - ACTIONS(12314), 1, - anon_sym_SEMI, + [223747] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232429] = 3, - ACTIONS(10581), 1, - anon_sym_get, - ACTIONS(10583), 1, - anon_sym_set, + ACTIONS(4361), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223756] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232440] = 3, - ACTIONS(10083), 1, - anon_sym_LPAREN, - STATE(2918), 1, - sym_function_value_parameters, + ACTIONS(12052), 2, + anon_sym_COMMA, + anon_sym_GT, + [223765] = 3, + ACTIONS(10709), 1, + anon_sym_AMP, + ACTIONS(12054), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232451] = 3, - ACTIONS(12316), 1, - anon_sym_LBRACE, - STATE(3723), 1, - sym__block, + [223776] = 3, + ACTIONS(8513), 1, + anon_sym_LPAREN, + STATE(8497), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232462] = 3, - ACTIONS(12316), 1, - anon_sym_LBRACE, - STATE(3722), 1, - sym__block, + [223787] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232473] = 3, - ACTIONS(9982), 1, - anon_sym_LPAREN, - STATE(8948), 1, - sym_function_value_parameters, + ACTIONS(11594), 2, + anon_sym_COMMA, + anon_sym_GT, + [223796] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232484] = 3, - ACTIONS(9972), 1, + ACTIONS(11238), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223805] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(1308), 1, + STATE(4814), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232495] = 2, + [223816] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5253), 2, + ACTIONS(1792), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [232504] = 3, - ACTIONS(12318), 1, - anon_sym_COLON, - ACTIONS(12320), 1, - anon_sym_RPAREN, + [223825] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232515] = 3, - ACTIONS(5552), 1, - anon_sym_LBRACE, - STATE(5020), 1, - sym_class_body, + ACTIONS(3282), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223834] = 2, + ACTIONS(12056), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232526] = 3, - ACTIONS(10032), 1, - anon_sym_LPAREN, - STATE(8614), 1, - sym_function_value_parameters, + [223842] = 2, + ACTIONS(1624), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232537] = 2, + [223850] = 2, + ACTIONS(4149), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(12322), 2, - anon_sym_COMMA, - anon_sym_GT, - [232546] = 2, + [223858] = 2, + ACTIONS(12058), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(12324), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [232555] = 3, - ACTIONS(10821), 1, - anon_sym_get, - ACTIONS(10823), 1, - anon_sym_set, + [223866] = 2, + ACTIONS(12060), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232566] = 3, - ACTIONS(3212), 1, - anon_sym_LPAREN, - STATE(1033), 1, - sym__class_parameters, + [223874] = 2, + ACTIONS(12062), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232577] = 3, - ACTIONS(3212), 1, - anon_sym_LPAREN, - STATE(1012), 1, - sym__class_parameters, + [223882] = 2, + ACTIONS(12064), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232588] = 2, - ACTIONS(4597), 1, - anon_sym_while, + [223890] = 2, + ACTIONS(12066), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232596] = 2, - ACTIONS(12326), 1, + [223898] = 2, + ACTIONS(12068), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232604] = 2, - ACTIONS(5185), 1, + [223906] = 2, + ACTIONS(5215), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232612] = 2, - ACTIONS(12328), 1, - anon_sym_AMP, + [223914] = 2, + ACTIONS(12070), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232620] = 2, - ACTIONS(12330), 1, - anon_sym_COLON, + [223922] = 2, + ACTIONS(12072), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232628] = 2, - ACTIONS(12017), 1, - anon_sym_RPAREN, + [223930] = 2, + ACTIONS(12074), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232636] = 2, - ACTIONS(3288), 1, - anon_sym_while, + [223938] = 2, + ACTIONS(12076), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232644] = 2, - ACTIONS(12332), 1, - anon_sym_DASH_GT, + [223946] = 2, + ACTIONS(12078), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232652] = 2, - ACTIONS(5113), 1, - anon_sym_while, + [223954] = 2, + ACTIONS(12080), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232660] = 2, - ACTIONS(4471), 1, + [223962] = 2, + ACTIONS(5211), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232668] = 2, - ACTIONS(4425), 1, - anon_sym_while, + [223970] = 2, + ACTIONS(11570), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232676] = 2, - ACTIONS(12334), 1, - anon_sym_RPAREN, + [223978] = 2, + ACTIONS(12082), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232684] = 2, - ACTIONS(12336), 1, - anon_sym_RBRACE, + [223986] = 2, + ACTIONS(11245), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232692] = 2, - ACTIONS(12338), 1, - anon_sym_RBRACE, + [223994] = 2, + ACTIONS(12084), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232700] = 2, - ACTIONS(4166), 1, + [224002] = 2, + ACTIONS(12086), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232708] = 2, - ACTIONS(1636), 1, - anon_sym_RBRACE, + [224010] = 2, + ACTIONS(5207), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232716] = 2, - ACTIONS(4854), 1, + [224018] = 2, + ACTIONS(12088), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232724] = 2, - ACTIONS(12117), 1, - anon_sym_RPAREN, + [224026] = 2, + ACTIONS(9898), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232732] = 2, - ACTIONS(1734), 1, - anon_sym_while, + [224034] = 2, + ACTIONS(12090), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232740] = 2, - ACTIONS(12340), 1, - anon_sym_LBRACE, + [224042] = 2, + ACTIONS(12092), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232748] = 2, - ACTIONS(12342), 1, - anon_sym_EQ, + [224050] = 2, + ACTIONS(11646), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232756] = 2, - ACTIONS(4858), 1, - anon_sym_while, + [224058] = 2, + ACTIONS(10693), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232764] = 2, - ACTIONS(4862), 1, - anon_sym_while, + [224066] = 2, + ACTIONS(1618), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232772] = 2, - ACTIONS(4870), 1, - anon_sym_while, + [224074] = 2, + ACTIONS(12094), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232780] = 2, - ACTIONS(12344), 1, - anon_sym_EQ, + [224082] = 2, + ACTIONS(12096), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232788] = 2, - ACTIONS(12346), 1, - anon_sym_in, + [224090] = 2, + ACTIONS(12098), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232796] = 2, - ACTIONS(4283), 1, - anon_sym_while, + [224098] = 2, + ACTIONS(12100), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232804] = 2, - ACTIONS(4920), 1, - anon_sym_while, + [224106] = 2, + ACTIONS(11492), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232812] = 2, - ACTIONS(5189), 1, - anon_sym_while, + [224114] = 2, + ACTIONS(12102), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232820] = 2, - ACTIONS(4924), 1, - anon_sym_while, + [224122] = 2, + ACTIONS(12104), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232828] = 2, - ACTIONS(5199), 1, - anon_sym_while, + [224130] = 2, + ACTIONS(12106), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232836] = 2, - ACTIONS(12348), 1, + [224138] = 2, + ACTIONS(11544), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232844] = 2, - ACTIONS(4639), 1, + [224146] = 2, + ACTIONS(3290), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232852] = 2, - ACTIONS(12350), 1, - anon_sym_object, + [224154] = 2, + ACTIONS(12108), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232860] = 2, - ACTIONS(1818), 1, - anon_sym_while, + [224162] = 2, + ACTIONS(12110), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232868] = 2, - ACTIONS(12352), 1, - anon_sym_RPAREN, + [224170] = 2, + ACTIONS(4214), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232876] = 2, - ACTIONS(4467), 1, - anon_sym_while, + [224178] = 2, + ACTIONS(12112), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232884] = 2, - ACTIONS(4185), 1, - anon_sym_while, + [224186] = 2, + ACTIONS(12114), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232892] = 2, - ACTIONS(5089), 1, + [224194] = 2, + ACTIONS(5221), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232900] = 2, - ACTIONS(12354), 1, - sym__automatic_semicolon, + [224202] = 2, + ACTIONS(12116), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232908] = 2, - ACTIONS(1810), 1, - anon_sym_while, + [224210] = 2, + ACTIONS(12118), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232916] = 2, - ACTIONS(12356), 1, - anon_sym_GT, + [224218] = 2, + ACTIONS(12120), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232924] = 2, - ACTIONS(5221), 1, + [224226] = 2, + ACTIONS(5193), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232932] = 2, - ACTIONS(5093), 1, - anon_sym_while, + [224234] = 2, + ACTIONS(11654), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232940] = 2, - ACTIONS(12358), 1, - anon_sym_RBRACE, + [224242] = 2, + ACTIONS(10727), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232948] = 2, - ACTIONS(12360), 1, - anon_sym_RPAREN, + [224250] = 2, + ACTIONS(12122), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232956] = 2, - ACTIONS(207), 1, + [224258] = 2, + ACTIONS(4361), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232964] = 2, - ACTIONS(4156), 1, - anon_sym_while, + [224266] = 2, + ACTIONS(12124), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232972] = 2, - ACTIONS(12362), 1, - anon_sym_EQ, + [224274] = 2, + ACTIONS(12126), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232980] = 2, - ACTIONS(12364), 1, - anon_sym_else, + [224282] = 2, + ACTIONS(4495), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232988] = 2, - ACTIONS(4459), 1, - anon_sym_while, + [224290] = 2, + ACTIONS(12128), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [232996] = 2, - ACTIONS(12366), 1, - anon_sym_RBRACE, + [224298] = 2, + ACTIONS(12130), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233004] = 2, - ACTIONS(12368), 1, + [224306] = 2, + ACTIONS(12132), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233012] = 2, - ACTIONS(12370), 1, - anon_sym_RPAREN, + [224314] = 2, + ACTIONS(1792), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233020] = 2, - ACTIONS(12372), 1, - anon_sym_COLON, + [224322] = 2, + ACTIONS(12134), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233028] = 2, - ACTIONS(12374), 1, - anon_sym_while, + [224330] = 2, + ACTIONS(12136), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233036] = 2, - ACTIONS(12376), 1, - anon_sym_DASH_GT, + [224338] = 2, + ACTIONS(12138), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233044] = 2, - ACTIONS(4258), 1, - anon_sym_while, + [224346] = 2, + ACTIONS(12140), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233052] = 2, - ACTIONS(12378), 1, - anon_sym_RBRACE, + [224354] = 2, + ACTIONS(12142), 1, + anon_sym_file, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233060] = 2, - ACTIONS(4463), 1, - anon_sym_while, + [224362] = 2, + ACTIONS(12144), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233068] = 2, - ACTIONS(12380), 1, - anon_sym_RPAREN, + [224370] = 2, + ACTIONS(12146), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233076] = 2, - ACTIONS(12382), 1, + [224378] = 2, + ACTIONS(12148), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233084] = 2, - ACTIONS(5237), 1, - anon_sym_while, + [224386] = 2, + ACTIONS(12150), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233092] = 2, - ACTIONS(12384), 1, - anon_sym_else, + [224394] = 2, + ACTIONS(12152), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233100] = 2, - ACTIONS(5249), 1, - anon_sym_while, + [224402] = 2, + ACTIONS(12154), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233108] = 2, - ACTIONS(12386), 1, - anon_sym_COLON, + [224410] = 2, + ACTIONS(12156), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224418] = 2, + ACTIONS(12158), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233116] = 2, - ACTIONS(11657), 1, + [224426] = 2, + ACTIONS(12160), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233124] = 2, - ACTIONS(5253), 1, - anon_sym_while, + [224434] = 2, + ACTIONS(12162), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233132] = 2, - ACTIONS(12388), 1, + [224442] = 2, + ACTIONS(12164), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233140] = 2, - ACTIONS(1828), 1, - anon_sym_while, + [224450] = 2, + ACTIONS(1610), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233148] = 2, - ACTIONS(5121), 1, - anon_sym_while, + [224458] = 2, + ACTIONS(12166), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233156] = 2, - ACTIONS(12390), 1, - anon_sym_RBRACE, + [224466] = 2, + ACTIONS(12168), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224474] = 2, + ACTIONS(12170), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233164] = 2, - ACTIONS(5125), 1, + [224482] = 2, + ACTIONS(4465), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233172] = 2, - ACTIONS(12392), 1, - anon_sym_else, + [224490] = 2, + ACTIONS(12172), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233180] = 2, - ACTIONS(4774), 1, + [224498] = 2, + ACTIONS(4218), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233188] = 2, - ACTIONS(12394), 1, - anon_sym_RBRACE, + [224506] = 2, + ACTIONS(12174), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233196] = 2, - ACTIONS(12396), 1, + [224514] = 2, + ACTIONS(12176), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233204] = 2, - ACTIONS(4198), 1, - anon_sym_while, + [224522] = 2, + ACTIONS(12178), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233212] = 2, - ACTIONS(12398), 1, + [224530] = 2, + ACTIONS(12180), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233220] = 2, - ACTIONS(11609), 1, - anon_sym_RPAREN, + [224538] = 2, + ACTIONS(10752), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233228] = 2, - ACTIONS(4293), 1, - anon_sym_while, + [224546] = 2, + ACTIONS(12182), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233236] = 2, - ACTIONS(12400), 1, + [224554] = 2, + ACTIONS(12184), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233244] = 2, - ACTIONS(12402), 1, - anon_sym_DASH_GT, + [224562] = 2, + ACTIONS(12186), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233252] = 2, - ACTIONS(12404), 1, + [224570] = 2, + ACTIONS(12188), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233260] = 2, - ACTIONS(12406), 1, + [224578] = 2, + ACTIONS(12190), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233268] = 2, - ACTIONS(5143), 1, - anon_sym_while, + [224586] = 2, + ACTIONS(12192), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233276] = 2, - ACTIONS(12408), 1, + [224594] = 2, + ACTIONS(12194), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233284] = 2, - ACTIONS(5147), 1, - anon_sym_while, + [224602] = 2, + ACTIONS(1616), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233292] = 2, - ACTIONS(3296), 1, - anon_sym_while, + [224610] = 2, + ACTIONS(12196), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233300] = 2, - ACTIONS(12410), 1, + [224618] = 2, + ACTIONS(12198), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233308] = 2, - ACTIONS(10967), 1, + [224626] = 2, + ACTIONS(12200), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233316] = 2, - ACTIONS(4277), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [233324] = 2, - ACTIONS(5117), 1, - anon_sym_while, + [224634] = 2, + ACTIONS(12202), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233332] = 2, - ACTIONS(12412), 1, - anon_sym_else, + [224642] = 2, + ACTIONS(12204), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233340] = 2, - ACTIONS(12414), 1, - anon_sym_RBRACE, + [224650] = 2, + ACTIONS(12206), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233348] = 2, - ACTIONS(12416), 1, - anon_sym_RBRACE, + [224658] = 2, + ACTIONS(1804), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233356] = 2, - ACTIONS(12418), 1, - anon_sym_DASH_GT, + [224666] = 2, + ACTIONS(12208), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233364] = 2, - ACTIONS(12420), 1, + [224674] = 2, + ACTIONS(12210), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233372] = 2, - ACTIONS(12422), 1, - anon_sym_RPAREN, + [224682] = 2, + ACTIONS(4920), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233380] = 2, - ACTIONS(12424), 1, + [224690] = 2, + ACTIONS(11709), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233388] = 2, - ACTIONS(12426), 1, - anon_sym_RPAREN, + [224698] = 2, + ACTIONS(12212), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233396] = 2, - ACTIONS(5101), 1, + [224706] = 2, + ACTIONS(4162), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233404] = 2, - ACTIONS(1423), 1, + [224714] = 2, + ACTIONS(1614), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233412] = 2, - ACTIONS(3346), 1, + [224722] = 2, + ACTIONS(5155), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233420] = 2, - ACTIONS(12428), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [233428] = 2, - ACTIONS(11709), 1, - anon_sym_RPAREN, + [224730] = 2, + ACTIONS(12214), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233436] = 2, - ACTIONS(1792), 1, + [224738] = 2, + ACTIONS(5151), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233444] = 2, - ACTIONS(12430), 1, - anon_sym_DASH_GT, + [224746] = 2, + ACTIONS(12216), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233452] = 2, - ACTIONS(5167), 1, + [224754] = 2, + ACTIONS(5177), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233460] = 2, - ACTIONS(4315), 1, - anon_sym_DASH_GT, + [224762] = 2, + ACTIONS(5147), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233468] = 2, - ACTIONS(12432), 1, - anon_sym_LPAREN, + [224770] = 2, + ACTIONS(10738), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233476] = 2, - ACTIONS(12434), 1, + [224778] = 2, + ACTIONS(12218), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233484] = 2, - ACTIONS(12436), 1, + [224786] = 2, + ACTIONS(12220), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233492] = 2, - ACTIONS(12438), 1, - anon_sym_RPAREN, + [224794] = 2, + ACTIONS(12222), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233500] = 2, - ACTIONS(12440), 1, - anon_sym_RPAREN, + [224802] = 2, + ACTIONS(12224), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233508] = 2, - ACTIONS(12442), 1, - anon_sym_RPAREN, + [224810] = 2, + ACTIONS(12226), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233516] = 2, - ACTIONS(11845), 1, - anon_sym_RPAREN, + [224818] = 2, + ACTIONS(4323), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233524] = 2, - ACTIONS(12444), 1, - anon_sym_RPAREN, + [224826] = 2, + ACTIONS(5123), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233532] = 2, - ACTIONS(12446), 1, - anon_sym_RPAREN, + [224834] = 2, + ACTIONS(5119), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233540] = 2, - ACTIONS(4387), 1, + [224842] = 2, + ACTIONS(4646), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233548] = 2, - ACTIONS(12448), 1, - anon_sym_COLON, + [224850] = 2, + ACTIONS(12228), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233556] = 2, - ACTIONS(12450), 1, - anon_sym_RPAREN, + [224858] = 2, + ACTIONS(12230), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233564] = 2, - ACTIONS(12452), 1, + [224866] = 2, + ACTIONS(12232), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233572] = 2, - ACTIONS(12454), 1, - anon_sym_else, + [224874] = 2, + ACTIONS(11483), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233580] = 2, - ACTIONS(12456), 1, - anon_sym_RPAREN, + [224882] = 2, + ACTIONS(12234), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233588] = 2, - ACTIONS(12458), 1, - anon_sym_DASH_GT, + [224890] = 2, + ACTIONS(12236), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233596] = 2, - ACTIONS(12460), 1, - anon_sym_SQUOTE, + [224898] = 2, + ACTIONS(5079), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233604] = 2, - ACTIONS(11679), 1, - anon_sym_RPAREN, + [224906] = 2, + ACTIONS(12238), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233612] = 2, - ACTIONS(12462), 1, + [224914] = 2, + ACTIONS(12240), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233620] = 2, - ACTIONS(12464), 1, - anon_sym_RPAREN, + [224922] = 2, + ACTIONS(12242), 1, + anon_sym_object, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233628] = 2, - ACTIONS(12466), 1, - anon_sym_RPAREN, + [224930] = 2, + ACTIONS(1734), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233636] = 2, - ACTIONS(12468), 1, - anon_sym_RPAREN, + [224938] = 2, + ACTIONS(4185), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233644] = 2, - ACTIONS(12470), 1, - sym__automatic_semicolon, + [224946] = 2, + ACTIONS(12244), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233652] = 2, - ACTIONS(12472), 1, - anon_sym_RBRACE, + [224954] = 2, + ACTIONS(12246), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233660] = 2, - ACTIONS(12474), 1, + [224962] = 2, + ACTIONS(12248), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233668] = 2, - ACTIONS(12476), 1, - anon_sym_RPAREN, + [224970] = 2, + ACTIONS(4776), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233676] = 2, - ACTIONS(12478), 1, + [224978] = 2, + ACTIONS(12250), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233684] = 2, - ACTIONS(12480), 1, - anon_sym_RPAREN, + [224986] = 2, + ACTIONS(121), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233692] = 2, - ACTIONS(12482), 1, - anon_sym_DASH_GT, + [224994] = 2, + ACTIONS(12252), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233700] = 2, - ACTIONS(12484), 1, - anon_sym_RPAREN, + [225002] = 2, + ACTIONS(12254), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233708] = 2, - ACTIONS(11014), 1, - anon_sym_COLON, + [225010] = 2, + ACTIONS(12256), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233716] = 2, - ACTIONS(12486), 1, - anon_sym_AMP, + [225018] = 2, + ACTIONS(12258), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233724] = 2, - ACTIONS(12488), 1, - anon_sym_else, + [225026] = 2, + ACTIONS(4469), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233732] = 2, - ACTIONS(12490), 1, - anon_sym_RPAREN, + [225034] = 2, + ACTIONS(12260), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233740] = 2, - ACTIONS(12492), 1, - anon_sym_RPAREN, + [225042] = 2, + ACTIONS(5173), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233748] = 2, - ACTIONS(5203), 1, + [225050] = 2, + ACTIONS(4908), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233756] = 2, - ACTIONS(12494), 1, - anon_sym_file, + [225058] = 2, + ACTIONS(12262), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233764] = 2, - ACTIONS(5211), 1, + [225066] = 2, + ACTIONS(4904), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233772] = 2, - ACTIONS(12496), 1, - anon_sym_DASH_GT, + [225074] = 2, + ACTIONS(4654), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233780] = 2, - ACTIONS(12498), 1, + [225082] = 2, + ACTIONS(12264), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233788] = 2, - ACTIONS(4289), 1, - anon_sym_while, + [225090] = 2, + ACTIONS(12266), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233796] = 2, - ACTIONS(12500), 1, - anon_sym_DASH_GT, + [225098] = 2, + ACTIONS(1810), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233804] = 2, - ACTIONS(11959), 1, - anon_sym_RPAREN, + [225106] = 2, + ACTIONS(4297), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233812] = 2, - ACTIONS(12502), 1, - anon_sym_RPAREN, + [225114] = 2, + ACTIONS(4900), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233820] = 2, - ACTIONS(1802), 1, + [225122] = 2, + ACTIONS(4357), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233828] = 2, - ACTIONS(12504), 1, + [225130] = 2, + ACTIONS(12268), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233836] = 2, - ACTIONS(12506), 1, - anon_sym_COLON, + [225138] = 2, + ACTIONS(5109), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233844] = 2, - ACTIONS(12508), 1, - anon_sym_RPAREN, + [225146] = 2, + ACTIONS(12270), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233852] = 2, - ACTIONS(12510), 1, - anon_sym_RPAREN, + [225154] = 2, + ACTIONS(4483), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233860] = 2, - ACTIONS(12512), 1, + [225162] = 2, + ACTIONS(11461), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233868] = 2, - ACTIONS(12514), 1, - anon_sym_RPAREN, + [225170] = 2, + ACTIONS(12272), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233876] = 2, - ACTIONS(12516), 1, - anon_sym_RPAREN, + [225178] = 2, + ACTIONS(12274), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233884] = 2, - ACTIONS(12518), 1, - anon_sym_RPAREN, + [225186] = 2, + ACTIONS(5101), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233892] = 2, - ACTIONS(12520), 1, - anon_sym_RBRACE, + [225194] = 2, + ACTIONS(12276), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233900] = 2, - ACTIONS(12522), 1, - anon_sym_RPAREN, + [225202] = 2, + ACTIONS(4968), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233908] = 2, - ACTIONS(12524), 1, - anon_sym_RPAREN, + [225210] = 2, + ACTIONS(1816), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233916] = 2, - ACTIONS(12526), 1, - anon_sym_RPAREN, + [225218] = 2, + ACTIONS(12278), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233924] = 2, - ACTIONS(12528), 1, - anon_sym_RPAREN, + [225226] = 2, + ACTIONS(12280), 1, + anon_sym_object, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233932] = 2, - ACTIONS(4455), 1, - anon_sym_while, + [225234] = 2, + ACTIONS(12282), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233940] = 2, - ACTIONS(12530), 1, + [225242] = 2, + ACTIONS(12284), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233948] = 2, - ACTIONS(3438), 1, - anon_sym_while, + [225250] = 2, + ACTIONS(12286), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233956] = 2, - ACTIONS(5225), 1, - anon_sym_while, + [225258] = 2, + ACTIONS(12288), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233964] = 2, - ACTIONS(5229), 1, - anon_sym_while, + [225266] = 2, + ACTIONS(12290), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233972] = 2, - ACTIONS(12532), 1, - anon_sym_RPAREN, + [225274] = 2, + ACTIONS(12292), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233980] = 2, - ACTIONS(5233), 1, - anon_sym_while, + [225282] = 2, + ACTIONS(12294), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233988] = 2, - ACTIONS(12534), 1, - anon_sym_DASH_GT, + [225290] = 2, + ACTIONS(12296), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [233996] = 2, - ACTIONS(12536), 1, - anon_sym_while, + [225298] = 2, + ACTIONS(10695), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234004] = 2, - ACTIONS(12538), 1, - anon_sym_RPAREN, + [225306] = 2, + ACTIONS(12298), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234012] = 2, - ACTIONS(12540), 1, - anon_sym_RPAREN, + [225314] = 2, + ACTIONS(12300), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234020] = 2, - ACTIONS(12542), 1, - anon_sym_RBRACE, + [225322] = 2, + ACTIONS(12302), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234028] = 2, - ACTIONS(12544), 1, - anon_sym_RBRACE, + [225330] = 2, + ACTIONS(10707), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234036] = 2, - ACTIONS(12546), 1, - anon_sym_DASH_GT, + [225338] = 2, + ACTIONS(4301), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234044] = 2, - ACTIONS(12548), 1, - anon_sym_RPAREN, + [225346] = 2, + ACTIONS(12304), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234052] = 2, - ACTIONS(12550), 1, - anon_sym_RBRACE, + [225354] = 2, + ACTIONS(12306), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234060] = 2, - ACTIONS(12552), 1, - anon_sym_RBRACE, + [225362] = 2, + ACTIONS(4569), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234068] = 2, - ACTIONS(12554), 1, - anon_sym_DASH_GT, + [225370] = 2, + ACTIONS(12308), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234076] = 2, - ACTIONS(12556), 1, - anon_sym_RBRACE, + [225378] = 2, + ACTIONS(3422), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234084] = 2, - ACTIONS(3280), 1, + [225386] = 2, + ACTIONS(4441), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234092] = 2, - ACTIONS(12558), 1, - anon_sym_DASH_GT, + [225394] = 2, + ACTIONS(12310), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234100] = 2, - ACTIONS(11997), 1, - anon_sym_RPAREN, + [225402] = 2, + ACTIONS(5087), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234108] = 2, - ACTIONS(12560), 1, - anon_sym_RBRACE, + [225410] = 2, + ACTIONS(12312), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234116] = 2, - ACTIONS(12562), 1, - anon_sym_else, + [225418] = 2, + ACTIONS(5041), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234124] = 2, - ACTIONS(12564), 1, - anon_sym_class, + [225426] = 2, + ACTIONS(4976), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234132] = 2, - ACTIONS(12566), 1, - anon_sym_DASH_GT, + [225434] = 2, + ACTIONS(12314), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234140] = 2, - ACTIONS(12568), 1, + [225442] = 2, + ACTIONS(12316), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234148] = 2, - ACTIONS(12570), 1, - anon_sym_DASH_GT, + [225450] = 2, + ACTIONS(5105), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234156] = 2, - ACTIONS(12572), 1, + [225458] = 2, + ACTIONS(12318), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225466] = 2, + ACTIONS(12320), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234164] = 2, - ACTIONS(12574), 1, + [225474] = 2, + ACTIONS(12322), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234172] = 2, - ACTIONS(12576), 1, + [225482] = 2, + ACTIONS(12324), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234180] = 2, - ACTIONS(12578), 1, + [225490] = 2, + ACTIONS(12326), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234188] = 2, - ACTIONS(12580), 1, - anon_sym_RPAREN, + [225498] = 2, + ACTIONS(12328), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234196] = 2, - ACTIONS(12582), 1, + [225506] = 2, + ACTIONS(12330), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234204] = 2, - ACTIONS(12584), 1, + [225514] = 2, + ACTIONS(12332), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234212] = 2, - ACTIONS(12586), 1, - anon_sym_RPAREN, + [225522] = 2, + ACTIONS(12334), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234220] = 2, - ACTIONS(12588), 1, + [225530] = 2, + ACTIONS(12336), 1, anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234228] = 2, - ACTIONS(12590), 1, + [225538] = 2, + ACTIONS(12338), 1, anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234236] = 2, - ACTIONS(12592), 1, + [225546] = 2, + ACTIONS(9137), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234244] = 2, - ACTIONS(12594), 1, + [225554] = 2, + ACTIONS(12340), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234252] = 2, - ACTIONS(12596), 1, + [225562] = 2, + ACTIONS(12342), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234260] = 2, - ACTIONS(12598), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [234268] = 2, - ACTIONS(12600), 1, + [225570] = 2, + ACTIONS(12344), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234276] = 2, - ACTIONS(12602), 1, + [225578] = 2, + ACTIONS(9135), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234284] = 2, - ACTIONS(12604), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [234292] = 2, - ACTIONS(12606), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [234300] = 2, - ACTIONS(12608), 1, + [225586] = 2, + ACTIONS(12346), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234308] = 2, - ACTIONS(12610), 1, - anon_sym_COLON, + [225594] = 2, + ACTIONS(12348), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234316] = 2, - ACTIONS(12612), 1, + [225602] = 2, + ACTIONS(12350), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234324] = 2, - ACTIONS(12614), 1, + [225610] = 2, + ACTIONS(12352), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234332] = 2, - ACTIONS(12616), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [234340] = 2, - ACTIONS(12618), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [234348] = 2, - ACTIONS(12620), 1, + [225618] = 2, + ACTIONS(12354), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234356] = 2, - ACTIONS(12622), 1, + [225626] = 2, + ACTIONS(12356), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234364] = 2, - ACTIONS(12624), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [234372] = 2, - ACTIONS(12626), 1, - anon_sym_class, + [225634] = 2, + ACTIONS(12358), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234380] = 2, - ACTIONS(12628), 1, + [225642] = 2, + ACTIONS(12360), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234388] = 2, - ACTIONS(12630), 1, - anon_sym_class, + [225650] = 2, + ACTIONS(12362), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234396] = 2, - ACTIONS(12632), 1, + [225658] = 2, + ACTIONS(12364), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234404] = 2, - ACTIONS(12065), 1, - anon_sym_RPAREN, + [225666] = 2, + ACTIONS(12366), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234412] = 2, - ACTIONS(12634), 1, - anon_sym_RPAREN, + [225674] = 2, + ACTIONS(12368), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234420] = 2, - ACTIONS(12636), 1, - anon_sym_LPAREN, + [225682] = 2, + ACTIONS(12370), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234428] = 2, - ACTIONS(12638), 1, - anon_sym_RPAREN, + [225690] = 2, + ACTIONS(12372), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234436] = 2, - ACTIONS(12640), 1, - anon_sym_RPAREN, + [225698] = 2, + ACTIONS(12374), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234444] = 2, - ACTIONS(12642), 1, + [225706] = 2, + ACTIONS(12376), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234452] = 2, - ACTIONS(12644), 1, - anon_sym_DASH_GT, + [225714] = 2, + ACTIONS(12378), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234460] = 2, - ACTIONS(9295), 1, - anon_sym_AMP, + [225722] = 2, + ACTIONS(12380), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234468] = 2, - ACTIONS(12646), 1, - anon_sym_RPAREN, + [225730] = 2, + ACTIONS(12382), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234476] = 2, - ACTIONS(12648), 1, - anon_sym_class, + [225738] = 2, + ACTIONS(12384), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234484] = 2, - ACTIONS(1415), 1, - anon_sym_RBRACE, + [225746] = 2, + ACTIONS(12386), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234492] = 2, - ACTIONS(12650), 1, - anon_sym_class, + [225754] = 2, + ACTIONS(12388), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234500] = 2, - ACTIONS(12652), 1, - anon_sym_DASH_GT, + [225762] = 2, + ACTIONS(11508), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234508] = 2, - ACTIONS(12654), 1, - anon_sym_LBRACE, + [225770] = 2, + ACTIONS(12390), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234516] = 2, - ACTIONS(12656), 1, + [225778] = 2, + ACTIONS(12392), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234524] = 2, - ACTIONS(12658), 1, - anon_sym_RPAREN, + [225786] = 2, + ACTIONS(12394), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234532] = 2, - ACTIONS(12660), 1, + [225794] = 2, + ACTIONS(12396), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234540] = 2, - ACTIONS(12662), 1, - anon_sym_EQ, + [225802] = 2, + ACTIONS(12398), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234548] = 2, - ACTIONS(12664), 1, + [225810] = 2, + ACTIONS(12400), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234556] = 2, - ACTIONS(12666), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [234564] = 2, - ACTIONS(12668), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [234572] = 2, - ACTIONS(11567), 1, + [225818] = 2, + ACTIONS(12402), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234580] = 2, - ACTIONS(12670), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [234588] = 2, - ACTIONS(12672), 1, - anon_sym_GT, + [225826] = 2, + ACTIONS(12404), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234596] = 2, - ACTIONS(12674), 1, + [225834] = 2, + ACTIONS(12406), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234604] = 2, - ACTIONS(12676), 1, + [225842] = 2, + ACTIONS(12408), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234612] = 2, - ACTIONS(12678), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [234620] = 2, - ACTIONS(12680), 1, - anon_sym_RBRACE, + [225850] = 2, + ACTIONS(12410), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234628] = 2, - ACTIONS(12682), 1, + [225858] = 2, + ACTIONS(12412), 1, anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234636] = 2, - ACTIONS(12684), 1, + [225866] = 2, + ACTIONS(12414), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234644] = 2, - ACTIONS(12686), 1, - anon_sym_COLON, + [225874] = 2, + ACTIONS(12416), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234652] = 2, - ACTIONS(10965), 1, - anon_sym_AMP, + [225882] = 2, + ACTIONS(12418), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234660] = 2, - ACTIONS(12688), 1, - anon_sym_RPAREN, + [225890] = 2, + ACTIONS(12420), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234668] = 2, - ACTIONS(3158), 1, - anon_sym_while, + [225898] = 2, + ACTIONS(12422), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234676] = 2, - ACTIONS(12690), 1, + [225906] = 2, + ACTIONS(12424), 1, anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234684] = 2, - ACTIONS(12692), 1, + [225914] = 2, + ACTIONS(12426), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234692] = 2, - ACTIONS(12694), 1, - anon_sym_COLON, + [225922] = 2, + ACTIONS(12428), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234700] = 2, - ACTIONS(12696), 1, - anon_sym_AMP, + [225930] = 2, + ACTIONS(12430), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234708] = 2, - ACTIONS(12698), 1, - anon_sym_else, + [225938] = 2, + ACTIONS(12432), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234716] = 2, - ACTIONS(12700), 1, + [225946] = 2, + ACTIONS(12434), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234724] = 2, - ACTIONS(11896), 1, - anon_sym_DASH_GT, + [225954] = 2, + ACTIONS(12436), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234732] = 2, - ACTIONS(12702), 1, - anon_sym_RBRACE, + [225962] = 2, + ACTIONS(12438), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234740] = 2, - ACTIONS(1606), 1, + [225970] = 2, + ACTIONS(12440), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234748] = 2, - ACTIONS(12704), 1, + [225978] = 2, + ACTIONS(12442), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234756] = 2, - ACTIONS(12706), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [234764] = 2, - ACTIONS(12708), 1, + [225986] = 2, + ACTIONS(12444), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234772] = 2, - ACTIONS(12710), 1, - anon_sym_class, + [225994] = 2, + ACTIONS(12446), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234780] = 2, - ACTIONS(12057), 1, - anon_sym_RPAREN, + [226002] = 2, + ACTIONS(12448), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234788] = 2, - ACTIONS(12712), 1, + [226010] = 2, + ACTIONS(12450), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234796] = 2, - ACTIONS(12714), 1, - anon_sym_in, + [226018] = 2, + ACTIONS(10709), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234804] = 2, - ACTIONS(12716), 1, - anon_sym_GT, + [226026] = 2, + ACTIONS(12452), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234812] = 2, - ACTIONS(12718), 1, - anon_sym_while, + [226034] = 2, + ACTIONS(12454), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234820] = 2, - ACTIONS(12720), 1, - anon_sym_COLON, + [226042] = 2, + ACTIONS(12456), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234828] = 2, - ACTIONS(12722), 1, - anon_sym_RPAREN, + [226050] = 2, + ACTIONS(12458), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234836] = 2, - ACTIONS(12724), 1, - anon_sym_COLON, + [226058] = 2, + ACTIONS(12460), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234844] = 2, - ACTIONS(12726), 1, - anon_sym_COLON, + [226066] = 2, + ACTIONS(12462), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234852] = 2, - ACTIONS(12728), 1, - anon_sym_while, + [226074] = 2, + ACTIONS(12464), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234860] = 2, - ACTIONS(12730), 1, - anon_sym_DASH_GT, + [226082] = 2, + ACTIONS(12466), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234868] = 2, - ACTIONS(12732), 1, - anon_sym_while, + [226090] = 2, + ACTIONS(12468), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234876] = 2, - ACTIONS(12734), 1, - anon_sym_LPAREN, + [226098] = 2, + ACTIONS(12470), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234884] = 2, - ACTIONS(12736), 1, - anon_sym_LBRACE, + [226106] = 2, + ACTIONS(12472), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234892] = 2, - ACTIONS(12738), 1, - anon_sym_object, + [226114] = 2, + ACTIONS(12474), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234900] = 2, - ACTIONS(12740), 1, - anon_sym_COLON, + [226122] = 2, + ACTIONS(12476), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234908] = 2, - ACTIONS(12742), 1, - anon_sym_class, + [226130] = 2, + ACTIONS(12478), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234916] = 2, - ACTIONS(12744), 1, - anon_sym_COLON, + [226138] = 2, + ACTIONS(12480), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234924] = 2, - ACTIONS(12746), 1, - anon_sym_DASH_GT, + [226146] = 2, + ACTIONS(12482), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234932] = 2, - ACTIONS(12748), 1, - anon_sym_class, + [226154] = 2, + ACTIONS(1630), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234940] = 2, - ACTIONS(12750), 1, - anon_sym_class, + [226162] = 2, + ACTIONS(9145), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234948] = 2, - ACTIONS(12752), 1, - anon_sym_while, + [226170] = 2, + ACTIONS(12484), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234956] = 2, - ACTIONS(12754), 1, - anon_sym_EQ, + [226178] = 2, + ACTIONS(12486), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234964] = 2, - ACTIONS(12756), 1, - anon_sym_while, + [226186] = 2, + ACTIONS(12488), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234972] = 2, - ACTIONS(12758), 1, + [226194] = 2, + ACTIONS(12490), 1, anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234980] = 2, - ACTIONS(11816), 1, + [226202] = 2, + ACTIONS(12492), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234988] = 2, - ACTIONS(12760), 1, - anon_sym_LPAREN, + [226210] = 2, + ACTIONS(12494), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [234996] = 2, - ACTIONS(12762), 1, - anon_sym_LPAREN, + [226218] = 2, + ACTIONS(12496), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235004] = 2, - ACTIONS(11849), 1, + [226226] = 2, + ACTIONS(12498), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235012] = 2, - ACTIONS(12764), 1, - anon_sym_AMP, + [226234] = 2, + ACTIONS(12500), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235020] = 2, - ACTIONS(12766), 1, - anon_sym_COLON, + [226242] = 2, + ACTIONS(12502), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235028] = 2, - ACTIONS(12768), 1, - anon_sym_RBRACE, + [226250] = 2, + ACTIONS(12504), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235036] = 2, - ACTIONS(12770), 1, - anon_sym_RBRACE, + [226258] = 2, + ACTIONS(12506), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235044] = 2, - ACTIONS(12772), 1, - anon_sym_GT, + [226266] = 2, + ACTIONS(12508), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235052] = 2, - ACTIONS(9293), 1, + [226274] = 2, + ACTIONS(12510), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226282] = 2, + ACTIONS(9141), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235060] = 2, - ACTIONS(12774), 1, + [226290] = 2, + ACTIONS(12512), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235068] = 2, - ACTIONS(12776), 1, - anon_sym_EQ, + [226298] = 2, + ACTIONS(12514), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235076] = 2, - ACTIONS(12778), 1, - anon_sym_EQ, + [226306] = 2, + ACTIONS(12516), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235084] = 2, - ACTIONS(12780), 1, - anon_sym_EQ, + [226314] = 2, + ACTIONS(12518), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235092] = 2, - ACTIONS(12782), 1, - anon_sym_class, + [226322] = 2, + ACTIONS(12520), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235100] = 2, - ACTIONS(12784), 1, + [226330] = 2, + ACTIONS(12522), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235108] = 2, - ACTIONS(12786), 1, + [226338] = 2, + ACTIONS(12524), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235116] = 2, - ACTIONS(12788), 1, - anon_sym_class, + [226346] = 2, + ACTIONS(12526), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235124] = 2, - ACTIONS(1425), 1, - anon_sym_RBRACE, + [226354] = 2, + ACTIONS(12528), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235132] = 2, - ACTIONS(12790), 1, + [226362] = 2, + ACTIONS(12530), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235140] = 2, - ACTIONS(1441), 1, - anon_sym_RBRACE, + [226370] = 2, + ACTIONS(12532), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235148] = 2, - ACTIONS(12792), 1, + [226378] = 2, + ACTIONS(12534), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235156] = 2, - ACTIONS(12794), 1, - anon_sym_RPAREN, + [226386] = 2, + ACTIONS(12536), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235164] = 2, - ACTIONS(12796), 1, - anon_sym_class, + [226394] = 2, + ACTIONS(4139), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235172] = 2, - ACTIONS(12798), 1, - anon_sym_GT, + [226402] = 2, + ACTIONS(1634), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235180] = 2, - ACTIONS(11515), 1, - sym__automatic_semicolon, + [226410] = 2, + ACTIONS(12538), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235188] = 2, - ACTIONS(10006), 1, - sym__automatic_semicolon, + [226418] = 2, + ACTIONS(12540), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235196] = 2, - ACTIONS(12800), 1, - anon_sym_DASH_GT, + [226426] = 2, + ACTIONS(12542), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235204] = 2, - ACTIONS(10997), 1, - anon_sym_AMP, + [226434] = 2, + ACTIONS(12544), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235212] = 2, - ACTIONS(12802), 1, - anon_sym_LBRACE, + [226442] = 2, + ACTIONS(12546), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235220] = 2, - ACTIONS(12804), 1, + [226450] = 2, + ACTIONS(12548), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235228] = 2, - ACTIONS(12806), 1, - anon_sym_DASH_GT, + [226458] = 2, + ACTIONS(12550), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235236] = 2, - ACTIONS(11927), 1, - anon_sym_RPAREN, + [226466] = 2, + ACTIONS(12552), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235244] = 2, - ACTIONS(12808), 1, + [226474] = 2, + ACTIONS(12554), 1, + anon_sym_constructor, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226482] = 2, + ACTIONS(12556), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235252] = 2, - ACTIONS(12810), 1, - anon_sym_RPAREN, + [226490] = 2, + ACTIONS(12558), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235260] = 2, - ACTIONS(12812), 1, - anon_sym_SQUOTE, + [226498] = 2, + ACTIONS(12560), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235268] = 2, - ACTIONS(10953), 1, - anon_sym_AMP, + [226506] = 2, + ACTIONS(12562), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235276] = 2, - ACTIONS(10985), 1, - anon_sym_AMP, + [226514] = 2, + ACTIONS(12564), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235284] = 2, - ACTIONS(12814), 1, - anon_sym_EQ, + [226522] = 2, + ACTIONS(12566), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235292] = 2, - ACTIONS(12816), 1, - anon_sym_constructor, + [226530] = 2, + ACTIONS(12568), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226538] = 2, + ACTIONS(11372), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235300] = 2, - ACTIONS(12069), 1, + [226546] = 2, + ACTIONS(12570), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235308] = 2, - ACTIONS(12818), 1, - anon_sym_SQUOTE, + [226554] = 2, + ACTIONS(11368), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235316] = 2, - ACTIONS(12009), 1, - anon_sym_AMP, + [226562] = 2, + ACTIONS(12572), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235324] = 2, - ACTIONS(12820), 1, - anon_sym_EQ, + [226570] = 2, + ACTIONS(12574), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235332] = 2, - ACTIONS(12822), 1, - anon_sym_COLON, + [226578] = 2, + ACTIONS(12576), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235340] = 2, - ACTIONS(12824), 1, - anon_sym_AMP, + [226586] = 2, + ACTIONS(1798), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235348] = 2, - ACTIONS(12826), 1, + [226594] = 2, + ACTIONS(12578), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235356] = 2, - ACTIONS(12828), 1, - anon_sym_RPAREN, + [226602] = 2, + ACTIONS(12580), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235364] = 2, - ACTIONS(12830), 1, - anon_sym_RPAREN, + [226610] = 2, + ACTIONS(12582), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235372] = 2, - ACTIONS(12832), 1, - anon_sym_class, + [226618] = 2, + ACTIONS(12584), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235380] = 2, - ACTIONS(10969), 1, - anon_sym_AMP, + [226626] = 2, + ACTIONS(4964), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235388] = 2, - ACTIONS(12834), 1, - anon_sym_DASH_GT, + [226634] = 2, + ACTIONS(11319), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235396] = 2, - ACTIONS(12836), 1, - anon_sym_AMP, + [226642] = 2, + ACTIONS(12586), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235404] = 2, - ACTIONS(12838), 1, - anon_sym_DASH_GT, + [226650] = 2, + ACTIONS(3282), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235412] = 2, - ACTIONS(12840), 1, + [226658] = 2, + ACTIONS(12588), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235420] = 2, - ACTIONS(12842), 1, - anon_sym_RPAREN, + [226666] = 2, + ACTIONS(12590), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235428] = 2, - ACTIONS(12844), 1, - anon_sym_LBRACE, + [226674] = 2, + ACTIONS(12592), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235436] = 2, - ACTIONS(12846), 1, - anon_sym_RPAREN, + [226682] = 2, + ACTIONS(12594), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235444] = 2, - ACTIONS(12848), 1, - anon_sym_RPAREN, + [226690] = 2, + ACTIONS(4329), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235452] = 2, - ACTIONS(11685), 1, - anon_sym_RPAREN, + [226698] = 2, + ACTIONS(12596), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235460] = 2, - ACTIONS(12850), 1, - anon_sym_RPAREN, + [226706] = 2, + ACTIONS(5201), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235468] = 2, - ACTIONS(12852), 1, + [226714] = 2, + ACTIONS(12598), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235476] = 2, - ACTIONS(12854), 1, - anon_sym_constructor, + [226722] = 2, + ACTIONS(12600), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235484] = 2, - ACTIONS(12856), 1, - anon_sym_class, + [226730] = 2, + ACTIONS(12602), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235492] = 2, - ACTIONS(1421), 1, + [226738] = 2, + ACTIONS(12604), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235500] = 2, - ACTIONS(12858), 1, - anon_sym_EQ, + [226746] = 2, + ACTIONS(12606), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235508] = 2, - ACTIONS(12860), 1, + [226754] = 2, + ACTIONS(12608), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235516] = 2, - ACTIONS(12862), 1, - anon_sym_COLON, + [226762] = 2, + ACTIONS(12610), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235524] = 2, - ACTIONS(1427), 1, - anon_sym_RBRACE, + [226770] = 2, + ACTIONS(11500), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235532] = 2, - ACTIONS(12864), 1, + [226778] = 2, + ACTIONS(12612), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235540] = 2, - ACTIONS(12866), 1, + [226786] = 2, + ACTIONS(12614), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235548] = 2, - ACTIONS(12868), 1, + [226794] = 2, + ACTIONS(12616), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235556] = 2, - ACTIONS(12870), 1, - anon_sym_else, + [226802] = 2, + ACTIONS(12618), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235564] = 2, - ACTIONS(12872), 1, - anon_sym_EQ, + [226810] = 2, + ACTIONS(11822), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235572] = 2, - ACTIONS(12874), 1, - anon_sym_DASH_GT, + [226818] = 2, + ACTIONS(11354), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235580] = 2, - ACTIONS(12876), 1, - anon_sym_DASH_GT, + [226826] = 2, + ACTIONS(12620), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235588] = 2, - ACTIONS(12878), 1, - anon_sym_EQ, + [226834] = 2, + ACTIONS(12622), 1, + aux_sym__uni_character_literal_token1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235596] = 2, - ACTIONS(12880), 1, - anon_sym_RPAREN, + [226842] = 2, + ACTIONS(12624), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235604] = 2, - ACTIONS(12882), 1, - anon_sym_RBRACE, + [226850] = 2, + ACTIONS(12626), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235612] = 2, - ACTIONS(12884), 1, + [226858] = 2, + ACTIONS(12628), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235620] = 2, - ACTIONS(12886), 1, - anon_sym_constructor, + [226866] = 2, + ACTIONS(11800), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235628] = 2, - ACTIONS(12888), 1, - anon_sym_RBRACE, + [226874] = 2, + ACTIONS(12630), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235636] = 2, - ACTIONS(11726), 1, + [226882] = 2, + ACTIONS(12632), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235644] = 2, - ACTIONS(12890), 1, + [226890] = 2, + ACTIONS(12634), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235652] = 2, - ACTIONS(12892), 1, - anon_sym_RPAREN, + [226898] = 2, + ACTIONS(12636), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235660] = 2, - ACTIONS(12894), 1, - anon_sym_COLON, + [226906] = 2, + ACTIONS(12638), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235668] = 2, - ACTIONS(12896), 1, + [226914] = 2, + ACTIONS(11794), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235676] = 2, - ACTIONS(9306), 1, - anon_sym_AMP, + [226922] = 2, + ACTIONS(12640), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235684] = 2, - ACTIONS(12898), 1, - sym__automatic_semicolon, + [226930] = 2, + ACTIONS(12642), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235692] = 2, - ACTIONS(12900), 1, - anon_sym_RPAREN, + [226938] = 2, + ACTIONS(12644), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235700] = 2, - ACTIONS(12902), 1, - anon_sym_COLON, + [226946] = 2, + ACTIONS(4800), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235708] = 2, - ACTIONS(9304), 1, - anon_sym_AMP, + [226954] = 2, + ACTIONS(12646), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235716] = 2, - ACTIONS(12904), 1, - anon_sym_RPAREN, + [226962] = 2, + ACTIONS(12648), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235724] = 2, - ACTIONS(12906), 1, - anon_sym_RPAREN, + [226970] = 2, + ACTIONS(12650), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235732] = 2, - ACTIONS(12908), 1, - anon_sym_EQ, + [226978] = 2, + ACTIONS(11315), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235740] = 2, - ACTIONS(12910), 1, + [226986] = 2, + ACTIONS(1413), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235748] = 2, - ACTIONS(12912), 1, - anon_sym_RPAREN, + [226994] = 2, + ACTIONS(12652), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235756] = 2, - ACTIONS(12914), 1, + [227002] = 2, + ACTIONS(12654), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235764] = 2, - ACTIONS(12916), 1, - anon_sym_RPAREN, + [227010] = 2, + ACTIONS(12656), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235772] = 2, - ACTIONS(12918), 1, - anon_sym_COLON, + [227018] = 2, + ACTIONS(11810), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235780] = 2, - ACTIONS(12920), 1, - anon_sym_RPAREN, + [227026] = 2, + ACTIONS(12658), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235788] = 2, - ACTIONS(12922), 1, + [227034] = 2, + ACTIONS(12660), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235796] = 2, - ACTIONS(12924), 1, - anon_sym_RPAREN, + [227042] = 2, + ACTIONS(12662), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235804] = 2, - ACTIONS(12926), 1, - anon_sym_RPAREN, + [227050] = 2, + ACTIONS(4852), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235812] = 2, - ACTIONS(12928), 1, + [227058] = 2, + ACTIONS(12664), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235820] = 2, - ACTIONS(12930), 1, - anon_sym_class, + [227066] = 2, + ACTIONS(12666), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235828] = 2, - ACTIONS(12932), 1, - anon_sym_class, + [227074] = 2, + ACTIONS(12668), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235836] = 2, - ACTIONS(12934), 1, - anon_sym_RPAREN, + [227082] = 2, + ACTIONS(12670), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235844] = 2, - ACTIONS(12936), 1, - anon_sym_class, + [227090] = 2, + ACTIONS(12672), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235852] = 2, - ACTIONS(12938), 1, - anon_sym_COLON, + [227098] = 2, + ACTIONS(3346), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235860] = 2, - ACTIONS(12940), 1, + [227106] = 2, + ACTIONS(12674), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235868] = 2, - ACTIONS(12942), 1, + [227114] = 2, + ACTIONS(12676), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235876] = 2, - ACTIONS(12944), 1, - anon_sym_constructor, + [227122] = 2, + ACTIONS(11830), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235884] = 2, - ACTIONS(12946), 1, - anon_sym_AMP, + [227130] = 2, + ACTIONS(12678), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235892] = 2, - ACTIONS(12948), 1, + [227138] = 2, + ACTIONS(12680), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235900] = 2, - ACTIONS(12950), 1, - anon_sym_RPAREN, + [227146] = 2, + ACTIONS(12682), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235908] = 2, - ACTIONS(12952), 1, - anon_sym_RPAREN, + [227154] = 2, + ACTIONS(12684), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235916] = 2, - ACTIONS(4978), 1, - anon_sym_while, + [227162] = 2, + ACTIONS(12686), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235924] = 2, - ACTIONS(12954), 1, - anon_sym_RBRACE, + [227170] = 2, + ACTIONS(12688), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235932] = 2, - ACTIONS(12956), 1, - anon_sym_RPAREN, + [227178] = 2, + ACTIONS(12690), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235940] = 2, - ACTIONS(12958), 1, - anon_sym_COLON, + [227186] = 2, + ACTIONS(12692), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235948] = 2, - ACTIONS(12960), 1, - anon_sym_AMP, + [227194] = 2, + ACTIONS(3274), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235956] = 2, - ACTIONS(12962), 1, - anon_sym_EQ, + [227202] = 2, + ACTIONS(1572), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235964] = 2, - ACTIONS(12964), 1, - anon_sym_COLON, + [227210] = 2, + ACTIONS(12694), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235972] = 2, - ACTIONS(12966), 1, + [227218] = 2, + ACTIONS(12696), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235980] = 2, - ACTIONS(12968), 1, - anon_sym_class, + [227226] = 2, + ACTIONS(12698), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235988] = 2, - ACTIONS(12970), 1, - anon_sym_GT, + [227234] = 2, + ACTIONS(12700), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [235996] = 2, - ACTIONS(12972), 1, - anon_sym_class, + [227242] = 2, + ACTIONS(12702), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236004] = 2, - ACTIONS(12974), 1, - anon_sym_constructor, + [227250] = 2, + ACTIONS(12704), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236012] = 2, - ACTIONS(12976), 1, + [227258] = 2, + ACTIONS(12706), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236020] = 2, - ACTIONS(1409), 1, - anon_sym_RBRACE, + [227266] = 2, + ACTIONS(12708), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236028] = 2, - ACTIONS(12978), 1, - anon_sym_RPAREN, + [227274] = 2, + ACTIONS(1574), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236036] = 2, - ACTIONS(12980), 1, - anon_sym_COLON, + [227282] = 2, + ACTIONS(12710), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236044] = 2, - ACTIONS(12982), 1, - anon_sym_LBRACE, + [227290] = 2, + ACTIONS(12712), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236052] = 2, - ACTIONS(12984), 1, - anon_sym_AMP, + [227298] = 2, + ACTIONS(12714), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236060] = 2, - ACTIONS(12986), 1, + [227306] = 2, + ACTIONS(12716), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236068] = 2, - ACTIONS(12988), 1, - anon_sym_LPAREN, + [227314] = 2, + ACTIONS(12718), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236076] = 2, - ACTIONS(12990), 1, - sym__automatic_semicolon, + [227322] = 2, + ACTIONS(12720), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236084] = 2, - ACTIONS(12992), 1, - anon_sym_RPAREN, + [227330] = 2, + ACTIONS(12722), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236092] = 2, - ACTIONS(12994), 1, - sym__automatic_semicolon, + [227338] = 2, + ACTIONS(12724), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236100] = 2, - ACTIONS(12996), 1, - anon_sym_RPAREN, + [227346] = 2, + ACTIONS(8231), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236108] = 2, - ACTIONS(12998), 1, + [227354] = 2, + ACTIONS(12726), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236116] = 2, - ACTIONS(13000), 1, + [227362] = 2, + ACTIONS(8235), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236124] = 2, - ACTIONS(13002), 1, - anon_sym_class, + [227370] = 2, + ACTIONS(12728), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236132] = 2, - ACTIONS(13004), 1, - anon_sym_EQ, + [227378] = 2, + ACTIONS(12730), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236140] = 2, - ACTIONS(13006), 1, + [227386] = 2, + ACTIONS(12732), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236148] = 2, - ACTIONS(13008), 1, - anon_sym_constructor, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [236156] = 2, - ACTIONS(13010), 1, - anon_sym_LPAREN, + [227394] = 2, + ACTIONS(3115), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236164] = 2, - ACTIONS(13012), 1, - anon_sym_AMP, + [227402] = 2, + ACTIONS(12734), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236172] = 2, - ACTIONS(13014), 1, - anon_sym_COLON, + [227410] = 2, + ACTIONS(12736), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236180] = 2, - ACTIONS(13016), 1, - anon_sym_LPAREN, + [227418] = 2, + ACTIONS(6619), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236188] = 2, - ACTIONS(13018), 1, + [227426] = 2, + ACTIONS(11828), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236196] = 2, - ACTIONS(13020), 1, + [227434] = 2, + ACTIONS(6688), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236204] = 2, - ACTIONS(13022), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [236212] = 2, - ACTIONS(13024), 1, - anon_sym_LPAREN, + [227442] = 2, + ACTIONS(12738), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236220] = 2, - ACTIONS(13026), 1, - anon_sym_LPAREN, + [227450] = 2, + ACTIONS(12740), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236228] = 2, - ACTIONS(13028), 1, - anon_sym_LPAREN, + [227458] = 2, + ACTIONS(12742), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236236] = 2, - ACTIONS(13030), 1, - anon_sym_LPAREN, + [227466] = 2, + ACTIONS(12744), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236244] = 2, - ACTIONS(13032), 1, - anon_sym_LPAREN, + [227474] = 2, + ACTIONS(12746), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236252] = 2, - ACTIONS(13034), 1, - anon_sym_LPAREN, + [227482] = 2, + ACTIONS(12748), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236260] = 2, - ACTIONS(13036), 1, - anon_sym_LPAREN, + [227490] = 2, + ACTIONS(12750), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236268] = 2, - ACTIONS(13038), 1, - anon_sym_LPAREN, + [227498] = 2, + ACTIONS(12752), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236276] = 2, - ACTIONS(13040), 1, - anon_sym_LPAREN, + [227506] = 2, + ACTIONS(12754), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236284] = 2, - ACTIONS(13042), 1, - anon_sym_LPAREN, + [227514] = 2, + ACTIONS(12756), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236292] = 2, - ACTIONS(13044), 1, - anon_sym_LPAREN, + [227522] = 2, + ACTIONS(12758), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236300] = 2, - ACTIONS(13046), 1, - anon_sym_LPAREN, + [227530] = 2, + ACTIONS(12760), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236308] = 2, - ACTIONS(13048), 1, - anon_sym_LPAREN, + [227538] = 2, + ACTIONS(12762), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236316] = 2, - ACTIONS(13050), 1, - anon_sym_LPAREN, + [227546] = 2, + ACTIONS(12764), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236324] = 2, - ACTIONS(13052), 1, - anon_sym_LPAREN, + [227554] = 2, + ACTIONS(12766), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236332] = 2, - ACTIONS(13054), 1, + [227562] = 2, + ACTIONS(12768), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236340] = 2, - ACTIONS(13056), 1, - anon_sym_LPAREN, + [227570] = 2, + ACTIONS(12770), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236348] = 2, - ACTIONS(13058), 1, - anon_sym_LPAREN, + [227578] = 2, + ACTIONS(12772), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236356] = 2, - ACTIONS(13060), 1, + [227586] = 2, + ACTIONS(12774), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236364] = 2, - ACTIONS(13062), 1, - anon_sym_LPAREN, + [227594] = 2, + ACTIONS(12776), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236372] = 2, - ACTIONS(13064), 1, + [227602] = 2, + ACTIONS(12778), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236380] = 2, - ACTIONS(13066), 1, - anon_sym_RPAREN, + [227610] = 2, + ACTIONS(12780), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236388] = 2, - ACTIONS(13068), 1, - anon_sym_RPAREN, + [227618] = 2, + ACTIONS(12782), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236396] = 2, - ACTIONS(13070), 1, - anon_sym_AMP, + [227626] = 2, + ACTIONS(12784), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236404] = 2, - ACTIONS(13072), 1, - anon_sym_RBRACE, + [227634] = 2, + ACTIONS(12786), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236412] = 2, - ACTIONS(13074), 1, - anon_sym_class, + [227642] = 2, + ACTIONS(12788), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236420] = 2, - ACTIONS(13076), 1, - anon_sym_class, + [227650] = 2, + ACTIONS(12790), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236428] = 2, - ACTIONS(8345), 1, - anon_sym_AMP, + [227658] = 2, + ACTIONS(12792), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236436] = 2, - ACTIONS(13078), 1, - anon_sym_COLON, + [227666] = 2, + ACTIONS(12794), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236444] = 2, - ACTIONS(13080), 1, + [227674] = 2, + ACTIONS(12796), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236452] = 2, - ACTIONS(8352), 1, - anon_sym_AMP, + [227682] = 2, + ACTIONS(12798), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236460] = 2, - ACTIONS(13082), 1, - anon_sym_COLON, + [227690] = 2, + ACTIONS(12800), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236468] = 2, - ACTIONS(13084), 1, - anon_sym_AMP, + [227698] = 2, + ACTIONS(12802), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236476] = 2, - ACTIONS(13086), 1, - anon_sym_class, + [227706] = 2, + ACTIONS(12804), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236484] = 2, - ACTIONS(13088), 1, - anon_sym_class, + [227714] = 2, + ACTIONS(12806), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236492] = 2, - ACTIONS(6808), 1, - anon_sym_AMP, + [227722] = 2, + ACTIONS(12808), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236500] = 2, - ACTIONS(6785), 1, - anon_sym_AMP, + [227730] = 2, + ACTIONS(12810), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236508] = 2, - ACTIONS(13090), 1, - anon_sym_AMP, + [227738] = 2, + ACTIONS(12812), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236516] = 2, - ACTIONS(13092), 1, - anon_sym_class, + [227746] = 2, + ACTIONS(12814), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236524] = 2, - ACTIONS(13094), 1, - anon_sym_EQ, + [227754] = 2, + ACTIONS(12816), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236532] = 2, - ACTIONS(13096), 1, - anon_sym_class, + [227762] = 2, + ACTIONS(12818), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236540] = 2, - ACTIONS(13098), 1, - anon_sym_AMP, + [227770] = 2, + ACTIONS(12820), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236548] = 2, - ACTIONS(13100), 1, - sym__automatic_semicolon, + [227778] = 2, + ACTIONS(12054), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236556] = 2, - ACTIONS(1439), 1, - anon_sym_RBRACE, + [227786] = 2, + ACTIONS(12822), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236564] = 2, - ACTIONS(13102), 1, - anon_sym_AMP, + [227794] = 2, + ACTIONS(12824), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236572] = 2, - ACTIONS(13104), 1, - anon_sym_RPAREN, + [227802] = 2, + ACTIONS(12826), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236580] = 2, - ACTIONS(13106), 1, - anon_sym_AMP, + [227810] = 2, + ACTIONS(12828), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236588] = 2, - ACTIONS(13108), 1, - anon_sym_class, + [227818] = 2, + ACTIONS(12830), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236596] = 2, - ACTIONS(13110), 1, - anon_sym_COLON, + [227826] = 2, + ACTIONS(12832), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236604] = 2, - ACTIONS(13112), 1, - anon_sym_class, + [227834] = 2, + ACTIONS(12834), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236612] = 2, - ACTIONS(13114), 1, + [227842] = 2, + ACTIONS(12836), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236620] = 2, - ACTIONS(13116), 1, - anon_sym_class, + [227850] = 2, + ACTIONS(12838), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236628] = 2, - ACTIONS(13118), 1, - anon_sym_RPAREN, + [227858] = 2, + ACTIONS(12840), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236636] = 2, - ACTIONS(13120), 1, - anon_sym_class, + [227866] = 2, + ACTIONS(12842), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236644] = 2, - ACTIONS(11583), 1, + [227874] = 2, + ACTIONS(12844), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236652] = 2, - ACTIONS(13122), 1, - anon_sym_DASH_GT, + [227882] = 2, + ACTIONS(12846), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236660] = 2, - ACTIONS(13124), 1, - anon_sym_AMP, + [227890] = 2, + ACTIONS(12848), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236668] = 2, - ACTIONS(13126), 1, + [227898] = 2, + ACTIONS(12850), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236676] = 2, - ACTIONS(13128), 1, - anon_sym_LBRACE, + [227906] = 2, + ACTIONS(12852), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236684] = 2, - ACTIONS(13130), 1, - anon_sym_SQUOTE, + [227914] = 2, + ACTIONS(12854), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236692] = 2, - ACTIONS(13132), 1, + [227922] = 2, + ACTIONS(12856), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236700] = 2, - ACTIONS(13134), 1, - anon_sym_class, + [227930] = 2, + ACTIONS(12858), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236708] = 2, - ACTIONS(13136), 1, - aux_sym__uni_character_literal_token1, + [227938] = 2, + ACTIONS(11840), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236716] = 2, - ACTIONS(13138), 1, - anon_sym_SQUOTE, + [227946] = 2, + ACTIONS(12860), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236724] = 2, - ACTIONS(13140), 1, - anon_sym_SQUOTE, + [227954] = 2, + ACTIONS(12862), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236732] = 2, - ACTIONS(13142), 1, + [227962] = 2, + ACTIONS(12864), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236740] = 2, - ACTIONS(13144), 1, - anon_sym_LPAREN, + [227970] = 2, + ACTIONS(12866), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236748] = 2, - ACTIONS(13146), 1, - anon_sym_LPAREN, + [227978] = 2, + ACTIONS(12868), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236756] = 2, - ACTIONS(13148), 1, - anon_sym_in, + [227986] = 2, + ACTIONS(12870), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236764] = 2, - ACTIONS(13150), 1, - anon_sym_LPAREN, + [227994] = 2, + ACTIONS(12872), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236772] = 2, - ACTIONS(13152), 1, - anon_sym_in, + [228002] = 2, + ACTIONS(12874), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236780] = 2, - ACTIONS(13154), 1, + [228010] = 2, + ACTIONS(12876), 1, sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236788] = 2, - ACTIONS(13156), 1, + [228018] = 2, + ACTIONS(12878), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236796] = 2, - ACTIONS(13158), 1, - anon_sym_LBRACE, + [228026] = 2, + ACTIONS(12880), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236804] = 2, - ACTIONS(13160), 1, - anon_sym_while, + [228034] = 2, + ACTIONS(12882), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236812] = 2, - ACTIONS(5067), 1, - anon_sym_while, + [228042] = 2, + ACTIONS(12884), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236820] = 2, - ACTIONS(13162), 1, - anon_sym_LPAREN, + [228050] = 2, + ACTIONS(12886), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236828] = 2, - ACTIONS(11617), 1, - sym__automatic_semicolon, + [228058] = 2, + ACTIONS(12888), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236836] = 2, - ACTIONS(13164), 1, - anon_sym_COLON, + [228066] = 2, + ACTIONS(12890), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236844] = 2, - ACTIONS(13166), 1, + [228074] = 2, + ACTIONS(12892), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236852] = 2, - ACTIONS(13168), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [236860] = 2, - ACTIONS(13170), 1, + [228082] = 2, + ACTIONS(12894), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236868] = 2, - ACTIONS(13172), 1, + [228090] = 2, + ACTIONS(12896), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236876] = 2, - ACTIONS(13174), 1, + [228098] = 2, + ACTIONS(12898), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236884] = 2, - ACTIONS(13176), 1, + [228106] = 2, + ACTIONS(12900), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236892] = 2, - ACTIONS(13178), 1, - anon_sym_else, + [228114] = 2, + ACTIONS(12902), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236900] = 2, - ACTIONS(1612), 1, - anon_sym_RBRACE, + [228122] = 2, + ACTIONS(5097), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236908] = 2, - ACTIONS(13180), 1, - anon_sym_else, + [228130] = 2, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236916] = 2, - ACTIONS(13182), 1, - anon_sym_RPAREN, + [228138] = 2, + ACTIONS(12904), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236924] = 2, - ACTIONS(13184), 1, - anon_sym_else, + [228146] = 2, + ACTIONS(12906), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236932] = 2, - ACTIONS(13186), 1, - anon_sym_else, + [228154] = 2, + ACTIONS(12908), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236940] = 2, - ACTIONS(13188), 1, - anon_sym_else, + [228162] = 2, + ACTIONS(12910), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236948] = 2, - ACTIONS(13190), 1, - anon_sym_else, + [228170] = 2, + ACTIONS(12912), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236956] = 2, - ACTIONS(13192), 1, - anon_sym_else, + [228178] = 2, + ACTIONS(12914), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236964] = 2, - ACTIONS(13194), 1, - anon_sym_LPAREN, + [228186] = 2, + ACTIONS(11862), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236972] = 2, - ACTIONS(13196), 1, - anon_sym_DASH_GT, + [228194] = 2, + ACTIONS(12916), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236980] = 2, - ACTIONS(13198), 1, + [228202] = 2, + ACTIONS(12918), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236988] = 2, - ACTIONS(1433), 1, - anon_sym_RBRACE, + [228210] = 2, + ACTIONS(12920), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [236996] = 2, - ACTIONS(13200), 1, + [228218] = 2, + ACTIONS(12922), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237004] = 2, - ACTIONS(13202), 1, + [228226] = 2, + ACTIONS(12924), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237012] = 2, - ACTIONS(13204), 1, + [228234] = 2, + ACTIONS(12926), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237020] = 2, - ACTIONS(13206), 1, - anon_sym_in, + [228242] = 2, + ACTIONS(12928), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237028] = 2, - ACTIONS(13208), 1, - anon_sym_LPAREN, + [228250] = 2, + ACTIONS(12930), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237036] = 2, - ACTIONS(13210), 1, + [228258] = 2, + ACTIONS(12932), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237044] = 2, - ACTIONS(13212), 1, + [228266] = 2, + ACTIONS(12934), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237052] = 2, - ACTIONS(13214), 1, - anon_sym_in, + [228274] = 2, + ACTIONS(12936), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237060] = 2, - ACTIONS(13216), 1, - anon_sym_LPAREN, + [228282] = 2, + ACTIONS(12938), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237068] = 2, - ACTIONS(13218), 1, + [228290] = 2, + ACTIONS(12940), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237076] = 2, - ACTIONS(13220), 1, + [228298] = 2, + ACTIONS(12942), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237084] = 2, - ACTIONS(13222), 1, - anon_sym_RBRACE, + [228306] = 2, + ACTIONS(12944), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228314] = 2, + ACTIONS(12946), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237092] = 2, - ACTIONS(13224), 1, + [228322] = 2, + ACTIONS(12948), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237100] = 2, - ACTIONS(13226), 1, + [228330] = 2, + ACTIONS(12950), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237108] = 2, - ACTIONS(13228), 1, - anon_sym_in, + [228338] = 2, + ACTIONS(12952), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237116] = 2, - ACTIONS(13230), 1, - anon_sym_RPAREN, + [228346] = 2, + ACTIONS(12954), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237124] = 2, - ACTIONS(11619), 1, - sym__automatic_semicolon, + [228354] = 2, + ACTIONS(12956), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237132] = 2, - ACTIONS(13232), 1, + [228362] = 2, + ACTIONS(12958), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237140] = 2, - ACTIONS(13234), 1, - anon_sym_else, + [228370] = 2, + ACTIONS(12960), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237148] = 2, - ACTIONS(13236), 1, + [228378] = 2, + ACTIONS(12962), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237156] = 2, - ACTIONS(13238), 1, - anon_sym_LPAREN, + [228386] = 2, + ACTIONS(12964), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237164] = 2, - ACTIONS(13240), 1, + [228394] = 2, + ACTIONS(12966), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237172] = 2, - ACTIONS(13242), 1, + [228402] = 2, + ACTIONS(12968), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237180] = 2, - ACTIONS(13244), 1, + [228410] = 2, + ACTIONS(12970), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237188] = 2, - ACTIONS(9198), 1, - anon_sym_COLON, + [228418] = 2, + ACTIONS(12972), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237196] = 2, - ACTIONS(13246), 1, - anon_sym_in, + [228426] = 2, + ACTIONS(12974), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237204] = 2, - ACTIONS(13248), 1, - anon_sym_COLON, + [228434] = 2, + ACTIONS(12976), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237212] = 2, - ACTIONS(13250), 1, + [228442] = 2, + ACTIONS(12978), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237220] = 2, - ACTIONS(13252), 1, - anon_sym_LPAREN, + [228450] = 2, + ACTIONS(12980), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237228] = 2, - ACTIONS(13254), 1, + [228458] = 2, + ACTIONS(12982), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237236] = 2, - ACTIONS(13256), 1, + [228466] = 2, + ACTIONS(12984), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237244] = 2, - ACTIONS(13258), 1, + [228474] = 2, + ACTIONS(12986), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237252] = 2, - ACTIONS(13260), 1, + [228482] = 2, + ACTIONS(12988), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237260] = 2, - ACTIONS(13262), 1, + [228490] = 2, + ACTIONS(12990), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237268] = 2, - ACTIONS(13264), 1, + [228498] = 2, + ACTIONS(12992), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237276] = 2, - ACTIONS(13266), 1, - anon_sym_LPAREN, + [228506] = 2, + ACTIONS(1632), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237284] = 2, - ACTIONS(13268), 1, - anon_sym_in, + [228514] = 2, + ACTIONS(12994), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237292] = 2, - ACTIONS(13270), 1, - anon_sym_LPAREN, + [228522] = 2, + ACTIONS(12996), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237300] = 2, - ACTIONS(13272), 1, - anon_sym_else, + [228530] = 2, + ACTIONS(12998), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237308] = 2, - ACTIONS(13274), 1, + [228538] = 2, + ACTIONS(13000), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237316] = 2, - ACTIONS(13276), 1, + [228546] = 2, + ACTIONS(13002), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237324] = 2, - ACTIONS(13278), 1, - anon_sym_RPAREN, + [228554] = 2, + ACTIONS(13004), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237332] = 2, - ACTIONS(13280), 1, - ts_builtin_sym_end, + [228562] = 2, + ACTIONS(13006), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237340] = 2, - ACTIONS(13282), 1, + [228570] = 2, + ACTIONS(13008), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237348] = 2, - ACTIONS(13284), 1, + [228578] = 2, + ACTIONS(13010), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237356] = 2, - ACTIONS(13286), 1, - anon_sym_LPAREN, + [228586] = 2, + ACTIONS(13012), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237364] = 2, - ACTIONS(13288), 1, - anon_sym_LPAREN, + [228594] = 2, + ACTIONS(13014), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237372] = 2, - ACTIONS(13290), 1, + [228602] = 2, + ACTIONS(13016), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237380] = 2, - ACTIONS(13292), 1, - anon_sym_in, + [228610] = 2, + ACTIONS(13018), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237388] = 2, - ACTIONS(13294), 1, + [228618] = 2, + ACTIONS(13020), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237396] = 2, - ACTIONS(13296), 1, - anon_sym_LPAREN, + [228626] = 2, + ACTIONS(13022), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237404] = 2, - ACTIONS(13298), 1, + [228634] = 2, + ACTIONS(13024), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237412] = 2, - ACTIONS(13300), 1, - anon_sym_in, + [228642] = 2, + ACTIONS(1638), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237420] = 2, - ACTIONS(13302), 1, - anon_sym_LPAREN, + [228650] = 2, + ACTIONS(13026), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237428] = 2, - ACTIONS(11783), 1, - sym__automatic_semicolon, + [228658] = 2, + ACTIONS(11882), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237436] = 2, - ACTIONS(13304), 1, - anon_sym_in, + [228666] = 2, + ACTIONS(13028), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237444] = 2, - ACTIONS(13306), 1, - anon_sym_in, + [228674] = 2, + ACTIONS(13030), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228682] = 2, + ACTIONS(13032), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237452] = 2, - ACTIONS(13308), 1, + [228690] = 2, + ACTIONS(13034), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237460] = 2, - ACTIONS(13310), 1, + [228698] = 2, + ACTIONS(13036), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237468] = 2, - ACTIONS(13312), 1, + [228706] = 2, + ACTIONS(13038), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237476] = 2, - ACTIONS(13314), 1, + [228714] = 2, + ACTIONS(13040), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237484] = 2, - ACTIONS(11785), 1, - sym__automatic_semicolon, + [228722] = 2, + ACTIONS(13042), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237492] = 2, - ACTIONS(13316), 1, + [228730] = 2, + ACTIONS(13044), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237500] = 2, - ACTIONS(13318), 1, + [228738] = 2, + ACTIONS(13046), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237508] = 2, - ACTIONS(13320), 1, - anon_sym_LPAREN, + [228746] = 2, + ACTIONS(13048), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237516] = 2, - ACTIONS(13322), 1, + [228754] = 2, + ACTIONS(13050), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237524] = 2, - ACTIONS(13324), 1, - anon_sym_LPAREN, + [228762] = 2, + ACTIONS(13052), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237532] = 2, - ACTIONS(13326), 1, - anon_sym_in, + [228770] = 2, + ACTIONS(11309), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237540] = 2, - ACTIONS(13328), 1, - anon_sym_in, + [228778] = 2, + ACTIONS(13054), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237548] = 2, - ACTIONS(13330), 1, + [228786] = 2, + ACTIONS(13056), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237556] = 2, - ACTIONS(13332), 1, + [228794] = 2, + ACTIONS(13058), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237564] = 2, - ACTIONS(13334), 1, - anon_sym_in, + [228802] = 2, + ACTIONS(13060), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237572] = 2, - ACTIONS(13336), 1, - anon_sym_class, + [228810] = 2, + ACTIONS(13062), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237580] = 2, - ACTIONS(13338), 1, + [228818] = 2, + ACTIONS(13064), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237588] = 2, - ACTIONS(13340), 1, + [228826] = 2, + ACTIONS(13066), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237596] = 2, - ACTIONS(13342), 1, + [228834] = 2, + ACTIONS(13068), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228842] = 2, + ACTIONS(13070), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237604] = 2, - ACTIONS(13344), 1, + [228850] = 2, + ACTIONS(13072), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237612] = 2, - ACTIONS(13346), 1, + [228858] = 2, + ACTIONS(13074), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228866] = 2, + ACTIONS(13076), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237620] = 2, - ACTIONS(13348), 1, + [228874] = 2, + ACTIONS(13078), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237628] = 2, - ACTIONS(13350), 1, + [228882] = 2, + ACTIONS(13080), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237636] = 2, - ACTIONS(13352), 1, + [228890] = 2, + ACTIONS(13082), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237644] = 2, - ACTIONS(13354), 1, + [228898] = 2, + ACTIONS(13084), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237652] = 2, - ACTIONS(13356), 1, + [228906] = 2, + ACTIONS(13086), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237660] = 2, - ACTIONS(13358), 1, + [228914] = 2, + ACTIONS(13088), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237668] = 2, - ACTIONS(13360), 1, + [228922] = 2, + ACTIONS(13090), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237676] = 2, - ACTIONS(13362), 1, + [228930] = 2, + ACTIONS(13092), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237684] = 2, - ACTIONS(13364), 1, + [228938] = 2, + ACTIONS(13094), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237692] = 2, - ACTIONS(13366), 1, + [228946] = 2, + ACTIONS(13096), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237700] = 2, - ACTIONS(13368), 1, + [228954] = 2, + ACTIONS(13098), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237708] = 2, - ACTIONS(13370), 1, + [228962] = 2, + ACTIONS(13100), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237716] = 2, - ACTIONS(13372), 1, + [228970] = 2, + ACTIONS(13102), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237724] = 2, - ACTIONS(13374), 1, + [228978] = 2, + ACTIONS(13104), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237732] = 2, - ACTIONS(13376), 1, + [228986] = 2, + ACTIONS(13106), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237740] = 2, - ACTIONS(13378), 1, + [228994] = 2, + ACTIONS(13108), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237748] = 2, - ACTIONS(13380), 1, + [229002] = 2, + ACTIONS(13110), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237756] = 2, - ACTIONS(13382), 1, + [229010] = 2, + ACTIONS(13112), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237764] = 2, - ACTIONS(13384), 1, + [229018] = 2, + ACTIONS(13114), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237772] = 2, - ACTIONS(13386), 1, + [229026] = 2, + ACTIONS(13116), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237780] = 2, - ACTIONS(13388), 1, + [229034] = 2, + ACTIONS(13118), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237788] = 2, - ACTIONS(13390), 1, + [229042] = 2, + ACTIONS(13120), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237796] = 2, - ACTIONS(13392), 1, + [229050] = 2, + ACTIONS(13122), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237804] = 2, - ACTIONS(13394), 1, + [229058] = 2, + ACTIONS(13124), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237812] = 2, - ACTIONS(13396), 1, + [229066] = 2, + ACTIONS(13126), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237820] = 2, - ACTIONS(13398), 1, - anon_sym_in, + [229074] = 2, + ACTIONS(13128), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237828] = 2, - ACTIONS(13400), 1, - sym__automatic_semicolon, + [229082] = 2, + ACTIONS(13130), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237836] = 2, - ACTIONS(13402), 1, - anon_sym_LPAREN, + [229090] = 2, + ACTIONS(13132), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237844] = 2, - ACTIONS(13404), 1, - anon_sym_SQUOTE, + [229098] = 2, + ACTIONS(13134), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237852] = 2, - ACTIONS(13406), 1, + [229106] = 2, + ACTIONS(13136), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237860] = 2, - ACTIONS(13408), 1, + [229114] = 2, + ACTIONS(13138), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237868] = 2, - ACTIONS(13410), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [237876] = 2, - ACTIONS(13412), 1, - anon_sym_COLON, + [229122] = 2, + ACTIONS(13140), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237884] = 2, - ACTIONS(13414), 1, - anon_sym_in, + [229130] = 2, + ACTIONS(13142), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237892] = 2, - ACTIONS(12288), 1, + [229138] = 2, + ACTIONS(13144), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237900] = 2, - ACTIONS(13416), 1, + [229146] = 2, + ACTIONS(13146), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237908] = 2, - ACTIONS(13418), 1, - anon_sym_LPAREN, + [229154] = 2, + ACTIONS(13148), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237916] = 2, - ACTIONS(13420), 1, + [229162] = 2, + ACTIONS(13150), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237924] = 2, - ACTIONS(13422), 1, + [229170] = 2, + ACTIONS(13152), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237932] = 2, - ACTIONS(13424), 1, + [229178] = 2, + ACTIONS(13154), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237940] = 2, - ACTIONS(13426), 1, + [229186] = 2, + ACTIONS(13156), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237948] = 2, - ACTIONS(13428), 1, + [229194] = 2, + ACTIONS(13158), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237956] = 2, - ACTIONS(13430), 1, + [229202] = 2, + ACTIONS(13160), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237964] = 2, - ACTIONS(13432), 1, + [229210] = 2, + ACTIONS(13162), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237972] = 2, - ACTIONS(13434), 1, + [229218] = 2, + ACTIONS(13164), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237980] = 2, - ACTIONS(13436), 1, - anon_sym_in, + [229226] = 2, + ACTIONS(13166), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237988] = 2, - ACTIONS(13438), 1, + [229234] = 2, + ACTIONS(13168), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [237996] = 2, - ACTIONS(13440), 1, + [229242] = 2, + ACTIONS(13170), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [238004] = 2, - ACTIONS(13442), 1, - anon_sym_LPAREN, + [229250] = 2, + ACTIONS(13172), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [238012] = 2, - ACTIONS(13444), 1, - anon_sym_in, + [229258] = 2, + ACTIONS(13174), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [238020] = 2, - ACTIONS(13446), 1, + [229266] = 2, + ACTIONS(13176), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [238028] = 2, - ACTIONS(13448), 1, - anon_sym_LPAREN, + [229274] = 2, + ACTIONS(13178), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [238036] = 2, - ACTIONS(13450), 1, + [229282] = 2, + ACTIONS(13180), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [238044] = 2, - ACTIONS(13452), 1, - anon_sym_DASH_GT, + [229290] = 2, + ACTIONS(13182), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [238052] = 2, - ACTIONS(13454), 1, - anon_sym_while, + [229298] = 2, + ACTIONS(13184), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [238060] = 2, - ACTIONS(13456), 1, + [229306] = 2, + ACTIONS(13186), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [238068] = 2, - ACTIONS(13458), 1, - anon_sym_COLON, + [229314] = 2, + ACTIONS(13188), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [238076] = 2, - ACTIONS(13460), 1, + [229322] = 2, + ACTIONS(13190), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [238084] = 2, - ACTIONS(13462), 1, + [229330] = 2, + ACTIONS(13192), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [238092] = 2, - ACTIONS(13464), 1, + [229338] = 2, + ACTIONS(13194), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [238100] = 2, - ACTIONS(13466), 1, - anon_sym_LPAREN, + [229346] = 2, + ACTIONS(13196), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [238108] = 2, - ACTIONS(13468), 1, - anon_sym_RPAREN, + [229354] = 2, + ACTIONS(13198), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [238116] = 3, + [229362] = 3, ACTIONS(3), 1, sym_multiline_comment, - ACTIONS(11179), 1, + ACTIONS(10927), 1, sym_line_comment, - ACTIONS(13470), 1, + ACTIONS(13200), 1, aux_sym_shebang_line_token1, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(4647)] = 0, - [SMALL_STATE(4648)] = 75, - [SMALL_STATE(4649)] = 150, - [SMALL_STATE(4650)] = 235, - [SMALL_STATE(4651)] = 310, - [SMALL_STATE(4652)] = 395, - [SMALL_STATE(4653)] = 480, - [SMALL_STATE(4654)] = 555, - [SMALL_STATE(4655)] = 640, - [SMALL_STATE(4656)] = 725, - [SMALL_STATE(4657)] = 800, - [SMALL_STATE(4658)] = 871, - [SMALL_STATE(4659)] = 942, - [SMALL_STATE(4660)] = 1013, - [SMALL_STATE(4661)] = 1088, - [SMALL_STATE(4662)] = 1159, - [SMALL_STATE(4663)] = 1239, - [SMALL_STATE(4664)] = 1317, - [SMALL_STATE(4665)] = 1391, - [SMALL_STATE(4666)] = 1461, - [SMALL_STATE(4667)] = 1543, - [SMALL_STATE(4668)] = 1625, - [SMALL_STATE(4669)] = 1695, - [SMALL_STATE(4670)] = 1775, - [SMALL_STATE(4671)] = 1861, - [SMALL_STATE(4672)] = 1931, - [SMALL_STATE(4673)] = 2011, - [SMALL_STATE(4674)] = 2081, - [SMALL_STATE(4675)] = 2161, - [SMALL_STATE(4676)] = 2239, - [SMALL_STATE(4677)] = 2319, - [SMALL_STATE(4678)] = 2399, - [SMALL_STATE(4679)] = 2479, - [SMALL_STATE(4680)] = 2559, - [SMALL_STATE(4681)] = 2633, - [SMALL_STATE(4682)] = 2713, - [SMALL_STATE(4683)] = 2785, - [SMALL_STATE(4684)] = 2859, - [SMALL_STATE(4685)] = 2941, - [SMALL_STATE(4686)] = 3023, - [SMALL_STATE(4687)] = 3103, - [SMALL_STATE(4688)] = 3183, - [SMALL_STATE(4689)] = 3263, - [SMALL_STATE(4690)] = 3345, - [SMALL_STATE(4691)] = 3425, - [SMALL_STATE(4692)] = 3511, - [SMALL_STATE(4693)] = 3585, - [SMALL_STATE(4694)] = 3659, - [SMALL_STATE(4695)] = 3733, - [SMALL_STATE(4696)] = 3807, - [SMALL_STATE(4697)] = 3879, - [SMALL_STATE(4698)] = 3948, - [SMALL_STATE(4699)] = 4025, - [SMALL_STATE(4700)] = 4102, - [SMALL_STATE(4701)] = 4175, - [SMALL_STATE(4702)] = 4244, - [SMALL_STATE(4703)] = 4321, - [SMALL_STATE(4704)] = 4398, - [SMALL_STATE(4705)] = 4473, - [SMALL_STATE(4706)] = 4550, - [SMALL_STATE(4707)] = 4627, - [SMALL_STATE(4708)] = 4704, - [SMALL_STATE(4709)] = 4781, - [SMALL_STATE(4710)] = 4858, - [SMALL_STATE(4711)] = 4933, - [SMALL_STATE(4712)] = 5002, - [SMALL_STATE(4713)] = 5079, - [SMALL_STATE(4714)] = 5156, - [SMALL_STATE(4715)] = 5233, - [SMALL_STATE(4716)] = 5310, - [SMALL_STATE(4717)] = 5387, - [SMALL_STATE(4718)] = 5464, - [SMALL_STATE(4719)] = 5533, - [SMALL_STATE(4720)] = 5604, - [SMALL_STATE(4721)] = 5681, - [SMALL_STATE(4722)] = 5750, - [SMALL_STATE(4723)] = 5819, - [SMALL_STATE(4724)] = 5896, - [SMALL_STATE(4725)] = 5973, - [SMALL_STATE(4726)] = 6050, - [SMALL_STATE(4727)] = 6119, - [SMALL_STATE(4728)] = 6188, - [SMALL_STATE(4729)] = 6265, - [SMALL_STATE(4730)] = 6342, - [SMALL_STATE(4731)] = 6415, - [SMALL_STATE(4732)] = 6492, - [SMALL_STATE(4733)] = 6561, - [SMALL_STATE(4734)] = 6638, - [SMALL_STATE(4735)] = 6715, - [SMALL_STATE(4736)] = 6784, - [SMALL_STATE(4737)] = 6857, - [SMALL_STATE(4738)] = 6934, - [SMALL_STATE(4739)] = 7011, - [SMALL_STATE(4740)] = 7083, - [SMALL_STATE(4741)] = 7155, - [SMALL_STATE(4742)] = 7223, - [SMALL_STATE(4743)] = 7295, - [SMALL_STATE(4744)] = 7367, - [SMALL_STATE(4745)] = 7439, - [SMALL_STATE(4746)] = 7511, - [SMALL_STATE(4747)] = 7583, - [SMALL_STATE(4748)] = 7651, - [SMALL_STATE(4749)] = 7719, - [SMALL_STATE(4750)] = 7787, - [SMALL_STATE(4751)] = 7859, - [SMALL_STATE(4752)] = 7931, - [SMALL_STATE(4753)] = 7999, - [SMALL_STATE(4754)] = 8071, - [SMALL_STATE(4755)] = 8143, - [SMALL_STATE(4756)] = 8215, - [SMALL_STATE(4757)] = 8285, - [SMALL_STATE(4758)] = 8357, - [SMALL_STATE(4759)] = 8425, - [SMALL_STATE(4760)] = 8507, - [SMALL_STATE(4761)] = 8575, - [SMALL_STATE(4762)] = 8647, - [SMALL_STATE(4763)] = 8715, - [SMALL_STATE(4764)] = 8797, - [SMALL_STATE(4765)] = 8867, - [SMALL_STATE(4766)] = 8949, - [SMALL_STATE(4767)] = 9021, - [SMALL_STATE(4768)] = 9103, - [SMALL_STATE(4769)] = 9175, - [SMALL_STATE(4770)] = 9247, - [SMALL_STATE(4771)] = 9319, - [SMALL_STATE(4772)] = 9387, - [SMALL_STATE(4773)] = 9455, - [SMALL_STATE(4774)] = 9537, - [SMALL_STATE(4775)] = 9605, - [SMALL_STATE(4776)] = 9675, - [SMALL_STATE(4777)] = 9745, - [SMALL_STATE(4778)] = 9815, - [SMALL_STATE(4779)] = 9897, - [SMALL_STATE(4780)] = 9969, - [SMALL_STATE(4781)] = 10037, - [SMALL_STATE(4782)] = 10109, - [SMALL_STATE(4783)] = 10177, - [SMALL_STATE(4784)] = 10249, - [SMALL_STATE(4785)] = 10319, - [SMALL_STATE(4786)] = 10387, - [SMALL_STATE(4787)] = 10459, - [SMALL_STATE(4788)] = 10531, - [SMALL_STATE(4789)] = 10603, - [SMALL_STATE(4790)] = 10675, - [SMALL_STATE(4791)] = 10743, - [SMALL_STATE(4792)] = 10815, - [SMALL_STATE(4793)] = 10887, - [SMALL_STATE(4794)] = 10955, - [SMALL_STATE(4795)] = 11027, - [SMALL_STATE(4796)] = 11109, - [SMALL_STATE(4797)] = 11177, - [SMALL_STATE(4798)] = 11249, - [SMALL_STATE(4799)] = 11317, - [SMALL_STATE(4800)] = 11399, - [SMALL_STATE(4801)] = 11471, - [SMALL_STATE(4802)] = 11543, - [SMALL_STATE(4803)] = 11611, - [SMALL_STATE(4804)] = 11683, - [SMALL_STATE(4805)] = 11765, - [SMALL_STATE(4806)] = 11837, - [SMALL_STATE(4807)] = 11919, - [SMALL_STATE(4808)] = 11991, - [SMALL_STATE(4809)] = 12073, - [SMALL_STATE(4810)] = 12145, - [SMALL_STATE(4811)] = 12217, - [SMALL_STATE(4812)] = 12299, - [SMALL_STATE(4813)] = 12371, - [SMALL_STATE(4814)] = 12443, - [SMALL_STATE(4815)] = 12515, - [SMALL_STATE(4816)] = 12587, - [SMALL_STATE(4817)] = 12657, - [SMALL_STATE(4818)] = 12739, - [SMALL_STATE(4819)] = 12821, - [SMALL_STATE(4820)] = 12889, - [SMALL_STATE(4821)] = 12961, - [SMALL_STATE(4822)] = 13043, - [SMALL_STATE(4823)] = 13110, - [SMALL_STATE(4824)] = 13177, - [SMALL_STATE(4825)] = 13244, - [SMALL_STATE(4826)] = 13311, - [SMALL_STATE(4827)] = 13378, - [SMALL_STATE(4828)] = 13445, - [SMALL_STATE(4829)] = 13512, - [SMALL_STATE(4830)] = 13579, - [SMALL_STATE(4831)] = 13646, - [SMALL_STATE(4832)] = 13725, - [SMALL_STATE(4833)] = 13792, - [SMALL_STATE(4834)] = 13863, - [SMALL_STATE(4835)] = 13930, - [SMALL_STATE(4836)] = 13997, - [SMALL_STATE(4837)] = 14064, - [SMALL_STATE(4838)] = 14131, - [SMALL_STATE(4839)] = 14198, - [SMALL_STATE(4840)] = 14277, - [SMALL_STATE(4841)] = 14344, - [SMALL_STATE(4842)] = 14411, - [SMALL_STATE(4843)] = 14478, - [SMALL_STATE(4844)] = 14545, - [SMALL_STATE(4845)] = 14612, - [SMALL_STATE(4846)] = 14691, - [SMALL_STATE(4847)] = 14758, - [SMALL_STATE(4848)] = 14825, - [SMALL_STATE(4849)] = 14904, - [SMALL_STATE(4850)] = 14981, - [SMALL_STATE(4851)] = 15048, - [SMALL_STATE(4852)] = 15115, - [SMALL_STATE(4853)] = 15194, - [SMALL_STATE(4854)] = 15261, - [SMALL_STATE(4855)] = 15328, - [SMALL_STATE(4856)] = 15395, - [SMALL_STATE(4857)] = 15462, - [SMALL_STATE(4858)] = 15529, - [SMALL_STATE(4859)] = 15610, - [SMALL_STATE(4860)] = 15689, - [SMALL_STATE(4861)] = 15756, - [SMALL_STATE(4862)] = 15823, - [SMALL_STATE(4863)] = 15890, - [SMALL_STATE(4864)] = 15967, - [SMALL_STATE(4865)] = 16034, - [SMALL_STATE(4866)] = 16103, - [SMALL_STATE(4867)] = 16170, - [SMALL_STATE(4868)] = 16247, - [SMALL_STATE(4869)] = 16314, - [SMALL_STATE(4870)] = 16381, - [SMALL_STATE(4871)] = 16448, - [SMALL_STATE(4872)] = 16515, - [SMALL_STATE(4873)] = 16584, - [SMALL_STATE(4874)] = 16651, - [SMALL_STATE(4875)] = 16718, - [SMALL_STATE(4876)] = 16797, - [SMALL_STATE(4877)] = 16878, - [SMALL_STATE(4878)] = 16945, - [SMALL_STATE(4879)] = 17012, - [SMALL_STATE(4880)] = 17091, - [SMALL_STATE(4881)] = 17160, - [SMALL_STATE(4882)] = 17239, - [SMALL_STATE(4883)] = 17306, - [SMALL_STATE(4884)] = 17373, - [SMALL_STATE(4885)] = 17450, - [SMALL_STATE(4886)] = 17517, - [SMALL_STATE(4887)] = 17594, - [SMALL_STATE(4888)] = 17671, - [SMALL_STATE(4889)] = 17738, - [SMALL_STATE(4890)] = 17805, - [SMALL_STATE(4891)] = 17872, - [SMALL_STATE(4892)] = 17949, - [SMALL_STATE(4893)] = 18016, - [SMALL_STATE(4894)] = 18083, - [SMALL_STATE(4895)] = 18160, - [SMALL_STATE(4896)] = 18227, - [SMALL_STATE(4897)] = 18294, - [SMALL_STATE(4898)] = 18361, - [SMALL_STATE(4899)] = 18428, - [SMALL_STATE(4900)] = 18495, - [SMALL_STATE(4901)] = 18562, - [SMALL_STATE(4902)] = 18629, - [SMALL_STATE(4903)] = 18698, - [SMALL_STATE(4904)] = 18765, - [SMALL_STATE(4905)] = 18832, - [SMALL_STATE(4906)] = 18899, - [SMALL_STATE(4907)] = 18966, - [SMALL_STATE(4908)] = 19043, - [SMALL_STATE(4909)] = 19120, - [SMALL_STATE(4910)] = 19189, - [SMALL_STATE(4911)] = 19256, - [SMALL_STATE(4912)] = 19333, - [SMALL_STATE(4913)] = 19410, - [SMALL_STATE(4914)] = 19477, - [SMALL_STATE(4915)] = 19544, - [SMALL_STATE(4916)] = 19611, - [SMALL_STATE(4917)] = 19682, - [SMALL_STATE(4918)] = 19749, - [SMALL_STATE(4919)] = 19816, - [SMALL_STATE(4920)] = 19883, - [SMALL_STATE(4921)] = 19950, - [SMALL_STATE(4922)] = 20017, - [SMALL_STATE(4923)] = 20084, - [SMALL_STATE(4924)] = 20155, - [SMALL_STATE(4925)] = 20222, - [SMALL_STATE(4926)] = 20289, - [SMALL_STATE(4927)] = 20358, - [SMALL_STATE(4928)] = 20431, - [SMALL_STATE(4929)] = 20508, - [SMALL_STATE(4930)] = 20577, - [SMALL_STATE(4931)] = 20644, - [SMALL_STATE(4932)] = 20713, - [SMALL_STATE(4933)] = 20780, - [SMALL_STATE(4934)] = 20847, - [SMALL_STATE(4935)] = 20916, - [SMALL_STATE(4936)] = 20983, - [SMALL_STATE(4937)] = 21050, - [SMALL_STATE(4938)] = 21117, - [SMALL_STATE(4939)] = 21198, - [SMALL_STATE(4940)] = 21265, - [SMALL_STATE(4941)] = 21332, - [SMALL_STATE(4942)] = 21399, - [SMALL_STATE(4943)] = 21466, - [SMALL_STATE(4944)] = 21533, - [SMALL_STATE(4945)] = 21600, - [SMALL_STATE(4946)] = 21667, - [SMALL_STATE(4947)] = 21734, - [SMALL_STATE(4948)] = 21815, - [SMALL_STATE(4949)] = 21882, - [SMALL_STATE(4950)] = 21949, - [SMALL_STATE(4951)] = 22026, - [SMALL_STATE(4952)] = 22093, - [SMALL_STATE(4953)] = 22160, - [SMALL_STATE(4954)] = 22237, - [SMALL_STATE(4955)] = 22304, - [SMALL_STATE(4956)] = 22371, - [SMALL_STATE(4957)] = 22438, - [SMALL_STATE(4958)] = 22505, - [SMALL_STATE(4959)] = 22572, - [SMALL_STATE(4960)] = 22639, - [SMALL_STATE(4961)] = 22718, - [SMALL_STATE(4962)] = 22785, - [SMALL_STATE(4963)] = 22852, - [SMALL_STATE(4964)] = 22929, - [SMALL_STATE(4965)] = 22998, - [SMALL_STATE(4966)] = 23065, - [SMALL_STATE(4967)] = 23132, - [SMALL_STATE(4968)] = 23209, - [SMALL_STATE(4969)] = 23280, - [SMALL_STATE(4970)] = 23351, - [SMALL_STATE(4971)] = 23420, - [SMALL_STATE(4972)] = 23497, - [SMALL_STATE(4973)] = 23564, - [SMALL_STATE(4974)] = 23631, - [SMALL_STATE(4975)] = 23698, - [SMALL_STATE(4976)] = 23765, - [SMALL_STATE(4977)] = 23832, - [SMALL_STATE(4978)] = 23901, - [SMALL_STATE(4979)] = 23968, - [SMALL_STATE(4980)] = 24035, - [SMALL_STATE(4981)] = 24102, - [SMALL_STATE(4982)] = 24169, - [SMALL_STATE(4983)] = 24236, - [SMALL_STATE(4984)] = 24303, - [SMALL_STATE(4985)] = 24380, - [SMALL_STATE(4986)] = 24447, - [SMALL_STATE(4987)] = 24514, - [SMALL_STATE(4988)] = 24581, - [SMALL_STATE(4989)] = 24660, - [SMALL_STATE(4990)] = 24727, - [SMALL_STATE(4991)] = 24794, - [SMALL_STATE(4992)] = 24861, - [SMALL_STATE(4993)] = 24940, - [SMALL_STATE(4994)] = 25007, - [SMALL_STATE(4995)] = 25074, - [SMALL_STATE(4996)] = 25141, - [SMALL_STATE(4997)] = 25208, - [SMALL_STATE(4998)] = 25275, - [SMALL_STATE(4999)] = 25342, - [SMALL_STATE(5000)] = 25409, - [SMALL_STATE(5001)] = 25488, - [SMALL_STATE(5002)] = 25555, - [SMALL_STATE(5003)] = 25626, - [SMALL_STATE(5004)] = 25693, - [SMALL_STATE(5005)] = 25770, - [SMALL_STATE(5006)] = 25851, - [SMALL_STATE(5007)] = 25918, - [SMALL_STATE(5008)] = 25997, - [SMALL_STATE(5009)] = 26064, - [SMALL_STATE(5010)] = 26131, - [SMALL_STATE(5011)] = 26198, - [SMALL_STATE(5012)] = 26275, - [SMALL_STATE(5013)] = 26354, - [SMALL_STATE(5014)] = 26421, - [SMALL_STATE(5015)] = 26488, - [SMALL_STATE(5016)] = 26565, - [SMALL_STATE(5017)] = 26638, - [SMALL_STATE(5018)] = 26711, - [SMALL_STATE(5019)] = 26788, - [SMALL_STATE(5020)] = 26859, - [SMALL_STATE(5021)] = 26926, - [SMALL_STATE(5022)] = 26993, - [SMALL_STATE(5023)] = 27059, - [SMALL_STATE(5024)] = 27135, - [SMALL_STATE(5025)] = 27211, - [SMALL_STATE(5026)] = 27289, - [SMALL_STATE(5027)] = 27363, - [SMALL_STATE(5028)] = 27441, - [SMALL_STATE(5029)] = 27521, - [SMALL_STATE(5030)] = 27597, - [SMALL_STATE(5031)] = 27663, - [SMALL_STATE(5032)] = 27737, - [SMALL_STATE(5033)] = 27811, - [SMALL_STATE(5034)] = 27885, - [SMALL_STATE(5035)] = 27959, - [SMALL_STATE(5036)] = 28039, - [SMALL_STATE(5037)] = 28113, - [SMALL_STATE(5038)] = 28189, - [SMALL_STATE(5039)] = 28255, - [SMALL_STATE(5040)] = 28329, - [SMALL_STATE(5041)] = 28403, - [SMALL_STATE(5042)] = 28473, - [SMALL_STATE(5043)] = 28547, - [SMALL_STATE(5044)] = 28623, - [SMALL_STATE(5045)] = 28701, - [SMALL_STATE(5046)] = 28771, - [SMALL_STATE(5047)] = 28841, - [SMALL_STATE(5048)] = 28915, - [SMALL_STATE(5049)] = 28985, - [SMALL_STATE(5050)] = 29061, - [SMALL_STATE(5051)] = 29127, - [SMALL_STATE(5052)] = 29203, - [SMALL_STATE(5053)] = 29275, - [SMALL_STATE(5054)] = 29351, - [SMALL_STATE(5055)] = 29427, - [SMALL_STATE(5056)] = 29503, - [SMALL_STATE(5057)] = 29577, - [SMALL_STATE(5058)] = 29653, - [SMALL_STATE(5059)] = 29719, - [SMALL_STATE(5060)] = 29785, - [SMALL_STATE(5061)] = 29863, - [SMALL_STATE(5062)] = 29939, - [SMALL_STATE(5063)] = 30005, - [SMALL_STATE(5064)] = 30079, - [SMALL_STATE(5065)] = 30155, - [SMALL_STATE(5066)] = 30227, - [SMALL_STATE(5067)] = 30293, - [SMALL_STATE(5068)] = 30373, - [SMALL_STATE(5069)] = 30453, - [SMALL_STATE(5070)] = 30527, - [SMALL_STATE(5071)] = 30601, - [SMALL_STATE(5072)] = 30675, - [SMALL_STATE(5073)] = 30755, - [SMALL_STATE(5074)] = 30825, - [SMALL_STATE(5075)] = 30901, - [SMALL_STATE(5076)] = 30977, - [SMALL_STATE(5077)] = 31051, - [SMALL_STATE(5078)] = 31127, - [SMALL_STATE(5079)] = 31203, - [SMALL_STATE(5080)] = 31277, - [SMALL_STATE(5081)] = 31351, - [SMALL_STATE(5082)] = 31427, - [SMALL_STATE(5083)] = 31503, - [SMALL_STATE(5084)] = 31577, - [SMALL_STATE(5085)] = 31643, - [SMALL_STATE(5086)] = 31709, - [SMALL_STATE(5087)] = 31775, - [SMALL_STATE(5088)] = 31849, - [SMALL_STATE(5089)] = 31925, - [SMALL_STATE(5090)] = 31999, - [SMALL_STATE(5091)] = 32073, - [SMALL_STATE(5092)] = 32149, - [SMALL_STATE(5093)] = 32219, - [SMALL_STATE(5094)] = 32293, - [SMALL_STATE(5095)] = 32359, - [SMALL_STATE(5096)] = 32435, - [SMALL_STATE(5097)] = 32513, - [SMALL_STATE(5098)] = 32589, - [SMALL_STATE(5099)] = 32655, - [SMALL_STATE(5100)] = 32729, - [SMALL_STATE(5101)] = 32803, - [SMALL_STATE(5102)] = 32874, - [SMALL_STATE(5103)] = 32947, - [SMALL_STATE(5104)] = 33016, - [SMALL_STATE(5105)] = 33085, - [SMALL_STATE(5106)] = 33160, - [SMALL_STATE(5107)] = 33229, - [SMALL_STATE(5108)] = 33298, - [SMALL_STATE(5109)] = 33367, - [SMALL_STATE(5110)] = 33436, - [SMALL_STATE(5111)] = 33501, - [SMALL_STATE(5112)] = 33566, - [SMALL_STATE(5113)] = 33635, - [SMALL_STATE(5114)] = 33702, - [SMALL_STATE(5115)] = 33775, - [SMALL_STATE(5116)] = 33844, - [SMALL_STATE(5117)] = 33913, - [SMALL_STATE(5118)] = 33982, - [SMALL_STATE(5119)] = 34051, - [SMALL_STATE(5120)] = 34124, - [SMALL_STATE(5121)] = 34193, - [SMALL_STATE(5122)] = 34266, - [SMALL_STATE(5123)] = 34339, - [SMALL_STATE(5124)] = 34412, - [SMALL_STATE(5125)] = 34481, - [SMALL_STATE(5126)] = 34554, - [SMALL_STATE(5127)] = 34631, - [SMALL_STATE(5128)] = 34696, - [SMALL_STATE(5129)] = 34769, - [SMALL_STATE(5130)] = 34842, - [SMALL_STATE(5131)] = 34915, - [SMALL_STATE(5132)] = 34990, - [SMALL_STATE(5133)] = 35059, - [SMALL_STATE(5134)] = 35128, - [SMALL_STATE(5135)] = 35193, - [SMALL_STATE(5136)] = 35266, - [SMALL_STATE(5137)] = 35335, - [SMALL_STATE(5138)] = 35412, - [SMALL_STATE(5139)] = 35477, - [SMALL_STATE(5140)] = 35546, - [SMALL_STATE(5141)] = 35615, - [SMALL_STATE(5142)] = 35688, - [SMALL_STATE(5143)] = 35757, - [SMALL_STATE(5144)] = 35826, - [SMALL_STATE(5145)] = 35895, - [SMALL_STATE(5146)] = 35960, - [SMALL_STATE(5147)] = 36029, - [SMALL_STATE(5148)] = 36098, - [SMALL_STATE(5149)] = 36167, - [SMALL_STATE(5150)] = 36236, - [SMALL_STATE(5151)] = 36305, - [SMALL_STATE(5152)] = 36370, - [SMALL_STATE(5153)] = 36435, - [SMALL_STATE(5154)] = 36504, - [SMALL_STATE(5155)] = 36571, - [SMALL_STATE(5156)] = 36648, - [SMALL_STATE(5157)] = 36717, - [SMALL_STATE(5158)] = 36786, - [SMALL_STATE(5159)] = 36859, - [SMALL_STATE(5160)] = 36928, - [SMALL_STATE(5161)] = 36993, - [SMALL_STATE(5162)] = 37066, - [SMALL_STATE(5163)] = 37139, - [SMALL_STATE(5164)] = 37212, - [SMALL_STATE(5165)] = 37277, - [SMALL_STATE(5166)] = 37346, - [SMALL_STATE(5167)] = 37411, - [SMALL_STATE(5168)] = 37480, - [SMALL_STATE(5169)] = 37555, - [SMALL_STATE(5170)] = 37624, - [SMALL_STATE(5171)] = 37693, - [SMALL_STATE(5172)] = 37762, - [SMALL_STATE(5173)] = 37829, - [SMALL_STATE(5174)] = 37898, - [SMALL_STATE(5175)] = 37963, - [SMALL_STATE(5176)] = 38032, - [SMALL_STATE(5177)] = 38097, - [SMALL_STATE(5178)] = 38168, - [SMALL_STATE(5179)] = 38233, - [SMALL_STATE(5180)] = 38308, - [SMALL_STATE(5181)] = 38385, - [SMALL_STATE(5182)] = 38450, - [SMALL_STATE(5183)] = 38519, - [SMALL_STATE(5184)] = 38596, - [SMALL_STATE(5185)] = 38663, - [SMALL_STATE(5186)] = 38728, - [SMALL_STATE(5187)] = 38793, - [SMALL_STATE(5188)] = 38866, - [SMALL_STATE(5189)] = 38931, - [SMALL_STATE(5190)] = 38996, - [SMALL_STATE(5191)] = 39069, - [SMALL_STATE(5192)] = 39144, - [SMALL_STATE(5193)] = 39217, - [SMALL_STATE(5194)] = 39290, - [SMALL_STATE(5195)] = 39363, - [SMALL_STATE(5196)] = 39436, - [SMALL_STATE(5197)] = 39501, - [SMALL_STATE(5198)] = 39574, - [SMALL_STATE(5199)] = 39647, - [SMALL_STATE(5200)] = 39720, - [SMALL_STATE(5201)] = 39793, - [SMALL_STATE(5202)] = 39866, - [SMALL_STATE(5203)] = 39939, - [SMALL_STATE(5204)] = 40004, - [SMALL_STATE(5205)] = 40069, - [SMALL_STATE(5206)] = 40136, - [SMALL_STATE(5207)] = 40201, - [SMALL_STATE(5208)] = 40274, - [SMALL_STATE(5209)] = 40347, - [SMALL_STATE(5210)] = 40420, - [SMALL_STATE(5211)] = 40495, - [SMALL_STATE(5212)] = 40568, - [SMALL_STATE(5213)] = 40637, - [SMALL_STATE(5214)] = 40702, - [SMALL_STATE(5215)] = 40766, - [SMALL_STATE(5216)] = 40838, - [SMALL_STATE(5217)] = 40910, - [SMALL_STATE(5218)] = 40974, - [SMALL_STATE(5219)] = 41038, - [SMALL_STATE(5220)] = 41102, - [SMALL_STATE(5221)] = 41166, - [SMALL_STATE(5222)] = 41232, - [SMALL_STATE(5223)] = 41296, - [SMALL_STATE(5224)] = 41360, - [SMALL_STATE(5225)] = 41424, - [SMALL_STATE(5226)] = 41488, - [SMALL_STATE(5227)] = 41552, - [SMALL_STATE(5228)] = 41616, - [SMALL_STATE(5229)] = 41680, - [SMALL_STATE(5230)] = 41744, - [SMALL_STATE(5231)] = 41808, - [SMALL_STATE(5232)] = 41878, - [SMALL_STATE(5233)] = 41942, - [SMALL_STATE(5234)] = 42006, - [SMALL_STATE(5235)] = 42070, - [SMALL_STATE(5236)] = 42142, - [SMALL_STATE(5237)] = 42206, - [SMALL_STATE(5238)] = 42270, - [SMALL_STATE(5239)] = 42334, - [SMALL_STATE(5240)] = 42408, - [SMALL_STATE(5241)] = 42482, - [SMALL_STATE(5242)] = 42546, - [SMALL_STATE(5243)] = 42610, - [SMALL_STATE(5244)] = 42674, - [SMALL_STATE(5245)] = 42744, - [SMALL_STATE(5246)] = 42812, - [SMALL_STATE(5247)] = 42878, - [SMALL_STATE(5248)] = 42942, - [SMALL_STATE(5249)] = 43014, - [SMALL_STATE(5250)] = 43078, - [SMALL_STATE(5251)] = 43150, - [SMALL_STATE(5252)] = 43214, - [SMALL_STATE(5253)] = 43288, - [SMALL_STATE(5254)] = 43352, - [SMALL_STATE(5255)] = 43416, - [SMALL_STATE(5256)] = 43480, - [SMALL_STATE(5257)] = 43544, - [SMALL_STATE(5258)] = 43608, - [SMALL_STATE(5259)] = 43672, - [SMALL_STATE(5260)] = 43736, - [SMALL_STATE(5261)] = 43800, - [SMALL_STATE(5262)] = 43864, - [SMALL_STATE(5263)] = 43934, - [SMALL_STATE(5264)] = 43998, - [SMALL_STATE(5265)] = 44062, - [SMALL_STATE(5266)] = 44134, - [SMALL_STATE(5267)] = 44204, - [SMALL_STATE(5268)] = 44268, - [SMALL_STATE(5269)] = 44332, - [SMALL_STATE(5270)] = 44396, - [SMALL_STATE(5271)] = 44468, - [SMALL_STATE(5272)] = 44532, - [SMALL_STATE(5273)] = 44596, - [SMALL_STATE(5274)] = 44660, - [SMALL_STATE(5275)] = 44724, - [SMALL_STATE(5276)] = 44788, - [SMALL_STATE(5277)] = 44852, - [SMALL_STATE(5278)] = 44916, - [SMALL_STATE(5279)] = 44980, - [SMALL_STATE(5280)] = 45044, - [SMALL_STATE(5281)] = 45108, - [SMALL_STATE(5282)] = 45174, - [SMALL_STATE(5283)] = 45246, - [SMALL_STATE(5284)] = 45310, - [SMALL_STATE(5285)] = 45374, - [SMALL_STATE(5286)] = 45438, - [SMALL_STATE(5287)] = 45510, - [SMALL_STATE(5288)] = 45576, - [SMALL_STATE(5289)] = 45640, - [SMALL_STATE(5290)] = 45704, - [SMALL_STATE(5291)] = 45768, - [SMALL_STATE(5292)] = 45832, - [SMALL_STATE(5293)] = 45896, - [SMALL_STATE(5294)] = 45968, - [SMALL_STATE(5295)] = 46032, - [SMALL_STATE(5296)] = 46096, - [SMALL_STATE(5297)] = 46160, - [SMALL_STATE(5298)] = 46224, - [SMALL_STATE(5299)] = 46288, - [SMALL_STATE(5300)] = 46352, - [SMALL_STATE(5301)] = 46416, - [SMALL_STATE(5302)] = 46480, - [SMALL_STATE(5303)] = 46544, - [SMALL_STATE(5304)] = 46608, - [SMALL_STATE(5305)] = 46672, - [SMALL_STATE(5306)] = 46736, - [SMALL_STATE(5307)] = 46802, - [SMALL_STATE(5308)] = 46866, - [SMALL_STATE(5309)] = 46932, - [SMALL_STATE(5310)] = 46998, - [SMALL_STATE(5311)] = 47064, - [SMALL_STATE(5312)] = 47138, - [SMALL_STATE(5313)] = 47202, - [SMALL_STATE(5314)] = 47266, - [SMALL_STATE(5315)] = 47338, - [SMALL_STATE(5316)] = 47402, - [SMALL_STATE(5317)] = 47466, - [SMALL_STATE(5318)] = 47530, - [SMALL_STATE(5319)] = 47594, - [SMALL_STATE(5320)] = 47658, - [SMALL_STATE(5321)] = 47722, - [SMALL_STATE(5322)] = 47790, - [SMALL_STATE(5323)] = 47854, - [SMALL_STATE(5324)] = 47918, - [SMALL_STATE(5325)] = 47982, - [SMALL_STATE(5326)] = 48056, - [SMALL_STATE(5327)] = 48120, - [SMALL_STATE(5328)] = 48184, - [SMALL_STATE(5329)] = 48248, - [SMALL_STATE(5330)] = 48312, - [SMALL_STATE(5331)] = 48384, - [SMALL_STATE(5332)] = 48448, - [SMALL_STATE(5333)] = 48512, - [SMALL_STATE(5334)] = 48576, - [SMALL_STATE(5335)] = 48640, - [SMALL_STATE(5336)] = 48704, - [SMALL_STATE(5337)] = 48776, - [SMALL_STATE(5338)] = 48842, - [SMALL_STATE(5339)] = 48906, - [SMALL_STATE(5340)] = 48980, - [SMALL_STATE(5341)] = 49044, - [SMALL_STATE(5342)] = 49108, - [SMALL_STATE(5343)] = 49172, - [SMALL_STATE(5344)] = 49236, - [SMALL_STATE(5345)] = 49308, - [SMALL_STATE(5346)] = 49372, - [SMALL_STATE(5347)] = 49436, - [SMALL_STATE(5348)] = 49500, - [SMALL_STATE(5349)] = 49572, - [SMALL_STATE(5350)] = 49636, - [SMALL_STATE(5351)] = 49700, - [SMALL_STATE(5352)] = 49764, - [SMALL_STATE(5353)] = 49838, - [SMALL_STATE(5354)] = 49902, - [SMALL_STATE(5355)] = 49966, - [SMALL_STATE(5356)] = 50030, - [SMALL_STATE(5357)] = 50104, - [SMALL_STATE(5358)] = 50168, - [SMALL_STATE(5359)] = 50232, - [SMALL_STATE(5360)] = 50296, - [SMALL_STATE(5361)] = 50360, - [SMALL_STATE(5362)] = 50424, - [SMALL_STATE(5363)] = 50488, - [SMALL_STATE(5364)] = 50552, - [SMALL_STATE(5365)] = 50616, - [SMALL_STATE(5366)] = 50680, - [SMALL_STATE(5367)] = 50744, - [SMALL_STATE(5368)] = 50808, - [SMALL_STATE(5369)] = 50872, - [SMALL_STATE(5370)] = 50936, - [SMALL_STATE(5371)] = 51000, - [SMALL_STATE(5372)] = 51068, - [SMALL_STATE(5373)] = 51132, - [SMALL_STATE(5374)] = 51196, - [SMALL_STATE(5375)] = 51266, - [SMALL_STATE(5376)] = 51330, - [SMALL_STATE(5377)] = 51394, - [SMALL_STATE(5378)] = 51458, - [SMALL_STATE(5379)] = 51522, - [SMALL_STATE(5380)] = 51594, - [SMALL_STATE(5381)] = 51666, - [SMALL_STATE(5382)] = 51730, - [SMALL_STATE(5383)] = 51794, - [SMALL_STATE(5384)] = 51858, - [SMALL_STATE(5385)] = 51922, - [SMALL_STATE(5386)] = 51986, - [SMALL_STATE(5387)] = 52050, - [SMALL_STATE(5388)] = 52114, - [SMALL_STATE(5389)] = 52178, - [SMALL_STATE(5390)] = 52242, - [SMALL_STATE(5391)] = 52306, - [SMALL_STATE(5392)] = 52370, - [SMALL_STATE(5393)] = 52440, - [SMALL_STATE(5394)] = 52504, - [SMALL_STATE(5395)] = 52568, - [SMALL_STATE(5396)] = 52638, - [SMALL_STATE(5397)] = 52710, - [SMALL_STATE(5398)] = 52774, - [SMALL_STATE(5399)] = 52848, - [SMALL_STATE(5400)] = 52920, - [SMALL_STATE(5401)] = 52984, - [SMALL_STATE(5402)] = 53048, - [SMALL_STATE(5403)] = 53112, - [SMALL_STATE(5404)] = 53176, - [SMALL_STATE(5405)] = 53240, - [SMALL_STATE(5406)] = 53312, - [SMALL_STATE(5407)] = 53376, - [SMALL_STATE(5408)] = 53440, - [SMALL_STATE(5409)] = 53504, - [SMALL_STATE(5410)] = 53568, - [SMALL_STATE(5411)] = 53642, - [SMALL_STATE(5412)] = 53709, - [SMALL_STATE(5413)] = 53786, - [SMALL_STATE(5414)] = 53853, - [SMALL_STATE(5415)] = 53930, - [SMALL_STATE(5416)] = 53997, - [SMALL_STATE(5417)] = 54074, - [SMALL_STATE(5418)] = 54141, - [SMALL_STATE(5419)] = 54218, - [SMALL_STATE(5420)] = 54285, - [SMALL_STATE(5421)] = 54352, - [SMALL_STATE(5422)] = 54419, - [SMALL_STATE(5423)] = 54486, - [SMALL_STATE(5424)] = 54553, - [SMALL_STATE(5425)] = 54622, - [SMALL_STATE(5426)] = 54689, - [SMALL_STATE(5427)] = 54756, - [SMALL_STATE(5428)] = 54823, - [SMALL_STATE(5429)] = 54890, - [SMALL_STATE(5430)] = 54957, - [SMALL_STATE(5431)] = 55024, - [SMALL_STATE(5432)] = 55101, - [SMALL_STATE(5433)] = 55168, - [SMALL_STATE(5434)] = 55235, - [SMALL_STATE(5435)] = 55302, - [SMALL_STATE(5436)] = 55369, - [SMALL_STATE(5437)] = 55446, - [SMALL_STATE(5438)] = 55523, - [SMALL_STATE(5439)] = 55590, - [SMALL_STATE(5440)] = 55667, - [SMALL_STATE(5441)] = 55734, - [SMALL_STATE(5442)] = 55811, - [SMALL_STATE(5443)] = 55878, - [SMALL_STATE(5444)] = 55943, - [SMALL_STATE(5445)] = 56010, - [SMALL_STATE(5446)] = 56077, - [SMALL_STATE(5447)] = 56154, - [SMALL_STATE(5448)] = 56219, - [SMALL_STATE(5449)] = 56286, - [SMALL_STATE(5450)] = 56351, - [SMALL_STATE(5451)] = 56418, - [SMALL_STATE(5452)] = 56483, - [SMALL_STATE(5453)] = 56548, - [SMALL_STATE(5454)] = 56615, - [SMALL_STATE(5455)] = 56680, - [SMALL_STATE(5456)] = 56747, - [SMALL_STATE(5457)] = 56812, - [SMALL_STATE(5458)] = 56879, - [SMALL_STATE(5459)] = 56948, - [SMALL_STATE(5460)] = 57017, - [SMALL_STATE(5461)] = 57090, - [SMALL_STATE(5462)] = 57157, - [SMALL_STATE(5463)] = 57226, - [SMALL_STATE(5464)] = 57293, - [SMALL_STATE(5465)] = 57360, - [SMALL_STATE(5466)] = 57427, - [SMALL_STATE(5467)] = 57489, - [SMALL_STATE(5468)] = 57553, - [SMALL_STATE(5469)] = 57615, - [SMALL_STATE(5470)] = 57677, - [SMALL_STATE(5471)] = 57741, - [SMALL_STATE(5472)] = 57803, - [SMALL_STATE(5473)] = 57865, - [SMALL_STATE(5474)] = 57927, - [SMALL_STATE(5475)] = 57989, - [SMALL_STATE(5476)] = 58051, - [SMALL_STATE(5477)] = 58113, - [SMALL_STATE(5478)] = 58175, - [SMALL_STATE(5479)] = 58237, - [SMALL_STATE(5480)] = 58299, - [SMALL_STATE(5481)] = 58405, - [SMALL_STATE(5482)] = 58467, - [SMALL_STATE(5483)] = 58573, - [SMALL_STATE(5484)] = 58641, - [SMALL_STATE(5485)] = 58707, - [SMALL_STATE(5486)] = 58769, - [SMALL_STATE(5487)] = 58831, - [SMALL_STATE(5488)] = 58893, - [SMALL_STATE(5489)] = 58957, - [SMALL_STATE(5490)] = 59021, - [SMALL_STATE(5491)] = 59083, - [SMALL_STATE(5492)] = 59145, - [SMALL_STATE(5493)] = 59207, - [SMALL_STATE(5494)] = 59269, - [SMALL_STATE(5495)] = 59331, - [SMALL_STATE(5496)] = 59393, - [SMALL_STATE(5497)] = 59455, - [SMALL_STATE(5498)] = 59517, - [SMALL_STATE(5499)] = 59623, - [SMALL_STATE(5500)] = 59685, - [SMALL_STATE(5501)] = 59761, - [SMALL_STATE(5502)] = 59825, - [SMALL_STATE(5503)] = 59901, - [SMALL_STATE(5504)] = 59965, - [SMALL_STATE(5505)] = 60027, - [SMALL_STATE(5506)] = 60089, - [SMALL_STATE(5507)] = 60159, - [SMALL_STATE(5508)] = 60231, - [SMALL_STATE(5509)] = 60303, - [SMALL_STATE(5510)] = 60409, - [SMALL_STATE(5511)] = 60473, - [SMALL_STATE(5512)] = 60535, - [SMALL_STATE(5513)] = 60597, - [SMALL_STATE(5514)] = 60659, - [SMALL_STATE(5515)] = 60721, - [SMALL_STATE(5516)] = 60783, - [SMALL_STATE(5517)] = 60857, - [SMALL_STATE(5518)] = 60919, - [SMALL_STATE(5519)] = 60981, - [SMALL_STATE(5520)] = 61043, - [SMALL_STATE(5521)] = 61111, - [SMALL_STATE(5522)] = 61173, - [SMALL_STATE(5523)] = 61249, - [SMALL_STATE(5524)] = 61311, - [SMALL_STATE(5525)] = 61373, - [SMALL_STATE(5526)] = 61435, - [SMALL_STATE(5527)] = 61497, - [SMALL_STATE(5528)] = 61559, - [SMALL_STATE(5529)] = 61635, - [SMALL_STATE(5530)] = 61699, - [SMALL_STATE(5531)] = 61761, - [SMALL_STATE(5532)] = 61829, - [SMALL_STATE(5533)] = 61901, - [SMALL_STATE(5534)] = 61975, - [SMALL_STATE(5535)] = 62037, - [SMALL_STATE(5536)] = 62113, - [SMALL_STATE(5537)] = 62175, - [SMALL_STATE(5538)] = 62237, - [SMALL_STATE(5539)] = 62299, - [SMALL_STATE(5540)] = 62373, - [SMALL_STATE(5541)] = 62479, - [SMALL_STATE(5542)] = 62541, - [SMALL_STATE(5543)] = 62615, - [SMALL_STATE(5544)] = 62679, - [SMALL_STATE(5545)] = 62741, - [SMALL_STATE(5546)] = 62803, - [SMALL_STATE(5547)] = 62865, - [SMALL_STATE(5548)] = 62939, - [SMALL_STATE(5549)] = 63001, - [SMALL_STATE(5550)] = 63065, - [SMALL_STATE(5551)] = 63127, - [SMALL_STATE(5552)] = 63193, - [SMALL_STATE(5553)] = 63255, - [SMALL_STATE(5554)] = 63317, - [SMALL_STATE(5555)] = 63379, - [SMALL_STATE(5556)] = 63441, - [SMALL_STATE(5557)] = 63503, - [SMALL_STATE(5558)] = 63567, - [SMALL_STATE(5559)] = 63631, - [SMALL_STATE(5560)] = 63695, - [SMALL_STATE(5561)] = 63757, - [SMALL_STATE(5562)] = 63819, - [SMALL_STATE(5563)] = 63881, - [SMALL_STATE(5564)] = 63955, - [SMALL_STATE(5565)] = 64023, - [SMALL_STATE(5566)] = 64085, - [SMALL_STATE(5567)] = 64147, - [SMALL_STATE(5568)] = 64221, - [SMALL_STATE(5569)] = 64283, - [SMALL_STATE(5570)] = 64349, - [SMALL_STATE(5571)] = 64423, - [SMALL_STATE(5572)] = 64485, - [SMALL_STATE(5573)] = 64547, - [SMALL_STATE(5574)] = 64609, - [SMALL_STATE(5575)] = 64683, - [SMALL_STATE(5576)] = 64757, - [SMALL_STATE(5577)] = 64821, - [SMALL_STATE(5578)] = 64892, - [SMALL_STATE(5579)] = 64961, - [SMALL_STATE(5580)] = 65034, - [SMALL_STATE(5581)] = 65105, - [SMALL_STATE(5582)] = 65210, - [SMALL_STATE(5583)] = 65283, - [SMALL_STATE(5584)] = 65348, - [SMALL_STATE(5585)] = 65419, - [SMALL_STATE(5586)] = 65520, - [SMALL_STATE(5587)] = 65581, - [SMALL_STATE(5588)] = 65652, - [SMALL_STATE(5589)] = 65723, - [SMALL_STATE(5590)] = 65792, - [SMALL_STATE(5591)] = 65897, - [SMALL_STATE(5592)] = 65968, - [SMALL_STATE(5593)] = 66069, - [SMALL_STATE(5594)] = 66138, - [SMALL_STATE(5595)] = 66209, - [SMALL_STATE(5596)] = 66280, - [SMALL_STATE(5597)] = 66351, - [SMALL_STATE(5598)] = 66422, - [SMALL_STATE(5599)] = 66491, - [SMALL_STATE(5600)] = 66552, - [SMALL_STATE(5601)] = 66657, - [SMALL_STATE(5602)] = 66720, - [SMALL_STATE(5603)] = 66789, - [SMALL_STATE(5604)] = 66858, - [SMALL_STATE(5605)] = 66927, - [SMALL_STATE(5606)] = 66996, - [SMALL_STATE(5607)] = 67057, - [SMALL_STATE(5608)] = 67162, - [SMALL_STATE(5609)] = 67233, - [SMALL_STATE(5610)] = 67298, - [SMALL_STATE(5611)] = 67399, - [SMALL_STATE(5612)] = 67460, - [SMALL_STATE(5613)] = 67531, - [SMALL_STATE(5614)] = 67602, - [SMALL_STATE(5615)] = 67673, - [SMALL_STATE(5616)] = 67774, - [SMALL_STATE(5617)] = 67845, - [SMALL_STATE(5618)] = 67950, - [SMALL_STATE(5619)] = 68013, - [SMALL_STATE(5620)] = 68078, - [SMALL_STATE(5621)] = 68141, - [SMALL_STATE(5622)] = 68212, - [SMALL_STATE(5623)] = 68313, - [SMALL_STATE(5624)] = 68386, - [SMALL_STATE(5625)] = 68457, - [SMALL_STATE(5626)] = 68530, - [SMALL_STATE(5627)] = 68593, - [SMALL_STATE(5628)] = 68664, - [SMALL_STATE(5629)] = 68735, - [SMALL_STATE(5630)] = 68806, - [SMALL_STATE(5631)] = 68871, - [SMALL_STATE(5632)] = 68934, - [SMALL_STATE(5633)] = 69007, - [SMALL_STATE(5634)] = 69076, - [SMALL_STATE(5635)] = 69147, - [SMALL_STATE(5636)] = 69218, - [SMALL_STATE(5637)] = 69287, - [SMALL_STATE(5638)] = 69358, - [SMALL_STATE(5639)] = 69426, - [SMALL_STATE(5640)] = 69526, - [SMALL_STATE(5641)] = 69626, - [SMALL_STATE(5642)] = 69708, - [SMALL_STATE(5643)] = 69808, - [SMALL_STATE(5644)] = 69876, - [SMALL_STATE(5645)] = 69946, - [SMALL_STATE(5646)] = 70010, - [SMALL_STATE(5647)] = 70092, - [SMALL_STATE(5648)] = 70192, - [SMALL_STATE(5649)] = 70292, - [SMALL_STATE(5650)] = 70392, - [SMALL_STATE(5651)] = 70462, - [SMALL_STATE(5652)] = 70562, - [SMALL_STATE(5653)] = 70622, - [SMALL_STATE(5654)] = 70690, - [SMALL_STATE(5655)] = 70758, - [SMALL_STATE(5656)] = 70858, - [SMALL_STATE(5657)] = 70958, - [SMALL_STATE(5658)] = 71028, - [SMALL_STATE(5659)] = 71128, - [SMALL_STATE(5660)] = 71196, - [SMALL_STATE(5661)] = 71256, - [SMALL_STATE(5662)] = 71318, - [SMALL_STATE(5663)] = 71386, - [SMALL_STATE(5664)] = 71456, - [SMALL_STATE(5665)] = 71556, - [SMALL_STATE(5666)] = 71626, - [SMALL_STATE(5667)] = 71726, - [SMALL_STATE(5668)] = 71796, - [SMALL_STATE(5669)] = 71896, - [SMALL_STATE(5670)] = 71960, - [SMALL_STATE(5671)] = 72060, - [SMALL_STATE(5672)] = 72130, - [SMALL_STATE(5673)] = 72230, - [SMALL_STATE(5674)] = 72294, - [SMALL_STATE(5675)] = 72362, - [SMALL_STATE(5676)] = 72462, - [SMALL_STATE(5677)] = 72528, - [SMALL_STATE(5678)] = 72588, - [SMALL_STATE(5679)] = 72688, - [SMALL_STATE(5680)] = 72788, - [SMALL_STATE(5681)] = 72850, - [SMALL_STATE(5682)] = 72950, - [SMALL_STATE(5683)] = 73020, - [SMALL_STATE(5684)] = 73090, - [SMALL_STATE(5685)] = 73154, - [SMALL_STATE(5686)] = 73220, - [SMALL_STATE(5687)] = 73280, - [SMALL_STATE(5688)] = 73350, - [SMALL_STATE(5689)] = 73418, - [SMALL_STATE(5690)] = 73488, - [SMALL_STATE(5691)] = 73556, - [SMALL_STATE(5692)] = 73624, - [SMALL_STATE(5693)] = 73694, - [SMALL_STATE(5694)] = 73764, - [SMALL_STATE(5695)] = 73823, - [SMALL_STATE(5696)] = 73922, - [SMALL_STATE(5697)] = 74019, - [SMALL_STATE(5698)] = 74080, - [SMALL_STATE(5699)] = 74179, - [SMALL_STATE(5700)] = 74278, - [SMALL_STATE(5701)] = 74375, - [SMALL_STATE(5702)] = 74434, - [SMALL_STATE(5703)] = 74493, - [SMALL_STATE(5704)] = 74554, - [SMALL_STATE(5705)] = 74651, - [SMALL_STATE(5706)] = 74710, - [SMALL_STATE(5707)] = 74777, - [SMALL_STATE(5708)] = 74876, - [SMALL_STATE(5709)] = 74973, - [SMALL_STATE(5710)] = 75068, - [SMALL_STATE(5711)] = 75131, - [SMALL_STATE(5712)] = 75196, - [SMALL_STATE(5713)] = 75293, - [SMALL_STATE(5714)] = 75360, - [SMALL_STATE(5715)] = 75457, - [SMALL_STATE(5716)] = 75552, - [SMALL_STATE(5717)] = 75619, - [SMALL_STATE(5718)] = 75684, - [SMALL_STATE(5719)] = 75745, - [SMALL_STATE(5720)] = 75812, - [SMALL_STATE(5721)] = 75911, - [SMALL_STATE(5722)] = 76006, - [SMALL_STATE(5723)] = 76105, - [SMALL_STATE(5724)] = 76204, - [SMALL_STATE(5725)] = 76271, - [SMALL_STATE(5726)] = 76370, - [SMALL_STATE(5727)] = 76465, - [SMALL_STATE(5728)] = 76532, - [SMALL_STATE(5729)] = 76631, - [SMALL_STATE(5730)] = 76698, - [SMALL_STATE(5731)] = 76759, - [SMALL_STATE(5732)] = 76858, - [SMALL_STATE(5733)] = 76925, - [SMALL_STATE(5734)] = 77024, - [SMALL_STATE(5735)] = 77091, - [SMALL_STATE(5736)] = 77188, - [SMALL_STATE(5737)] = 77285, - [SMALL_STATE(5738)] = 77382, - [SMALL_STATE(5739)] = 77445, - [SMALL_STATE(5740)] = 77508, - [SMALL_STATE(5741)] = 77605, - [SMALL_STATE(5742)] = 77672, - [SMALL_STATE(5743)] = 77769, - [SMALL_STATE(5744)] = 77864, - [SMALL_STATE(5745)] = 77961, - [SMALL_STATE(5746)] = 78060, - [SMALL_STATE(5747)] = 78157, - [SMALL_STATE(5748)] = 78216, - [SMALL_STATE(5749)] = 78275, - [SMALL_STATE(5750)] = 78372, - [SMALL_STATE(5751)] = 78469, - [SMALL_STATE(5752)] = 78528, - [SMALL_STATE(5753)] = 78625, - [SMALL_STATE(5754)] = 78724, - [SMALL_STATE(5755)] = 78783, - [SMALL_STATE(5756)] = 78880, - [SMALL_STATE(5757)] = 78977, - [SMALL_STATE(5758)] = 79036, - [SMALL_STATE(5759)] = 79099, - [SMALL_STATE(5760)] = 79198, - [SMALL_STATE(5761)] = 79257, - [SMALL_STATE(5762)] = 79320, - [SMALL_STATE(5763)] = 79378, - [SMALL_STATE(5764)] = 79472, - [SMALL_STATE(5765)] = 79566, - [SMALL_STATE(5766)] = 79660, - [SMALL_STATE(5767)] = 79724, - [SMALL_STATE(5768)] = 79786, - [SMALL_STATE(5769)] = 79880, - [SMALL_STATE(5770)] = 79974, - [SMALL_STATE(5771)] = 80034, - [SMALL_STATE(5772)] = 80094, - [SMALL_STATE(5773)] = 80154, - [SMALL_STATE(5774)] = 80218, - [SMALL_STATE(5775)] = 80278, - [SMALL_STATE(5776)] = 80340, - [SMALL_STATE(5777)] = 80398, - [SMALL_STATE(5778)] = 80478, - [SMALL_STATE(5779)] = 80538, - [SMALL_STATE(5780)] = 80632, - [SMALL_STATE(5781)] = 80726, - [SMALL_STATE(5782)] = 80806, - [SMALL_STATE(5783)] = 80900, - [SMALL_STATE(5784)] = 80961, - [SMALL_STATE(5785)] = 81020, - [SMALL_STATE(5786)] = 81079, - [SMALL_STATE(5787)] = 81140, - [SMALL_STATE(5788)] = 81201, - [SMALL_STATE(5789)] = 81260, - [SMALL_STATE(5790)] = 81321, - [SMALL_STATE(5791)] = 81380, - [SMALL_STATE(5792)] = 81439, - [SMALL_STATE(5793)] = 81500, - [SMALL_STATE(5794)] = 81558, - [SMALL_STATE(5795)] = 81616, - [SMALL_STATE(5796)] = 81702, - [SMALL_STATE(5797)] = 81788, - [SMALL_STATE(5798)] = 81878, - [SMALL_STATE(5799)] = 81964, - [SMALL_STATE(5800)] = 82022, - [SMALL_STATE(5801)] = 82108, - [SMALL_STATE(5802)] = 82164, - [SMALL_STATE(5803)] = 82222, - [SMALL_STATE(5804)] = 82308, - [SMALL_STATE(5805)] = 82364, - [SMALL_STATE(5806)] = 82422, - [SMALL_STATE(5807)] = 82478, - [SMALL_STATE(5808)] = 82538, - [SMALL_STATE(5809)] = 82594, - [SMALL_STATE(5810)] = 82680, - [SMALL_STATE(5811)] = 82740, - [SMALL_STATE(5812)] = 82800, - [SMALL_STATE(5813)] = 82885, - [SMALL_STATE(5814)] = 82968, - [SMALL_STATE(5815)] = 83051, - [SMALL_STATE(5816)] = 83110, - [SMALL_STATE(5817)] = 83165, - [SMALL_STATE(5818)] = 83250, - [SMALL_STATE(5819)] = 83311, - [SMALL_STATE(5820)] = 83394, - [SMALL_STATE(5821)] = 83477, - [SMALL_STATE(5822)] = 83560, - [SMALL_STATE(5823)] = 83643, - [SMALL_STATE(5824)] = 83728, - [SMALL_STATE(5825)] = 83787, - [SMALL_STATE(5826)] = 83872, - [SMALL_STATE(5827)] = 83957, - [SMALL_STATE(5828)] = 84040, - [SMALL_STATE(5829)] = 84095, - [SMALL_STATE(5830)] = 84178, - [SMALL_STATE(5831)] = 84237, - [SMALL_STATE(5832)] = 84322, - [SMALL_STATE(5833)] = 84404, - [SMALL_STATE(5834)] = 84478, - [SMALL_STATE(5835)] = 84560, - [SMALL_STATE(5836)] = 84642, - [SMALL_STATE(5837)] = 84724, - [SMALL_STATE(5838)] = 84806, - [SMALL_STATE(5839)] = 84882, - [SMALL_STATE(5840)] = 84964, - [SMALL_STATE(5841)] = 85046, - [SMALL_STATE(5842)] = 85128, - [SMALL_STATE(5843)] = 85180, - [SMALL_STATE(5844)] = 85232, - [SMALL_STATE(5845)] = 85284, - [SMALL_STATE(5846)] = 85338, - [SMALL_STATE(5847)] = 85394, - [SMALL_STATE(5848)] = 85446, - [SMALL_STATE(5849)] = 85500, - [SMALL_STATE(5850)] = 85562, - [SMALL_STATE(5851)] = 85617, - [SMALL_STATE(5852)] = 85672, - [SMALL_STATE(5853)] = 85733, - [SMALL_STATE(5854)] = 85788, - [SMALL_STATE(5855)] = 85839, - [SMALL_STATE(5856)] = 85890, - [SMALL_STATE(5857)] = 85940, - [SMALL_STATE(5858)] = 86038, - [SMALL_STATE(5859)] = 86088, - [SMALL_STATE(5860)] = 86136, - [SMALL_STATE(5861)] = 86184, - [SMALL_STATE(5862)] = 86236, - [SMALL_STATE(5863)] = 86334, - [SMALL_STATE(5864)] = 86432, - [SMALL_STATE(5865)] = 86530, - [SMALL_STATE(5866)] = 86584, - [SMALL_STATE(5867)] = 86634, - [SMALL_STATE(5868)] = 86682, - [SMALL_STATE(5869)] = 86732, - [SMALL_STATE(5870)] = 86782, - [SMALL_STATE(5871)] = 86830, - [SMALL_STATE(5872)] = 86878, - [SMALL_STATE(5873)] = 86928, - [SMALL_STATE(5874)] = 86976, - [SMALL_STATE(5875)] = 87074, - [SMALL_STATE(5876)] = 87172, - [SMALL_STATE(5877)] = 87222, - [SMALL_STATE(5878)] = 87273, - [SMALL_STATE(5879)] = 87324, - [SMALL_STATE(5880)] = 87375, - [SMALL_STATE(5881)] = 87425, - [SMALL_STATE(5882)] = 87515, - [SMALL_STATE(5883)] = 87563, - [SMALL_STATE(5884)] = 87653, - [SMALL_STATE(5885)] = 87701, - [SMALL_STATE(5886)] = 87791, - [SMALL_STATE(5887)] = 87839, - [SMALL_STATE(5888)] = 87887, - [SMALL_STATE(5889)] = 87939, - [SMALL_STATE(5890)] = 87987, - [SMALL_STATE(5891)] = 88035, - [SMALL_STATE(5892)] = 88083, - [SMALL_STATE(5893)] = 88131, - [SMALL_STATE(5894)] = 88221, - [SMALL_STATE(5895)] = 88271, - [SMALL_STATE(5896)] = 88319, - [SMALL_STATE(5897)] = 88409, - [SMALL_STATE(5898)] = 88457, - [SMALL_STATE(5899)] = 88505, - [SMALL_STATE(5900)] = 88553, - [SMALL_STATE(5901)] = 88603, - [SMALL_STATE(5902)] = 88693, - [SMALL_STATE(5903)] = 88741, - [SMALL_STATE(5904)] = 88789, - [SMALL_STATE(5905)] = 88839, - [SMALL_STATE(5906)] = 88887, - [SMALL_STATE(5907)] = 88977, - [SMALL_STATE(5908)] = 89067, - [SMALL_STATE(5909)] = 89115, - [SMALL_STATE(5910)] = 89163, - [SMALL_STATE(5911)] = 89253, - [SMALL_STATE(5912)] = 89343, - [SMALL_STATE(5913)] = 89433, - [SMALL_STATE(5914)] = 89483, - [SMALL_STATE(5915)] = 89573, - [SMALL_STATE(5916)] = 89663, - [SMALL_STATE(5917)] = 89753, - [SMALL_STATE(5918)] = 89843, - [SMALL_STATE(5919)] = 89933, - [SMALL_STATE(5920)] = 90023, - [SMALL_STATE(5921)] = 90113, - [SMALL_STATE(5922)] = 90161, - [SMALL_STATE(5923)] = 90211, - [SMALL_STATE(5924)] = 90301, - [SMALL_STATE(5925)] = 90351, - [SMALL_STATE(5926)] = 90441, - [SMALL_STATE(5927)] = 90531, - [SMALL_STATE(5928)] = 90578, - [SMALL_STATE(5929)] = 90627, - [SMALL_STATE(5930)] = 90674, - [SMALL_STATE(5931)] = 90722, - [SMALL_STATE(5932)] = 90770, - [SMALL_STATE(5933)] = 90818, - [SMALL_STATE(5934)] = 90864, - [SMALL_STATE(5935)] = 90910, - [SMALL_STATE(5936)] = 90954, - [SMALL_STATE(5937)] = 91000, - [SMALL_STATE(5938)] = 91048, - [SMALL_STATE(5939)] = 91094, - [SMALL_STATE(5940)] = 91140, - [SMALL_STATE(5941)] = 91186, - [SMALL_STATE(5942)] = 91232, - [SMALL_STATE(5943)] = 91278, - [SMALL_STATE(5944)] = 91322, - [SMALL_STATE(5945)] = 91368, - [SMALL_STATE(5946)] = 91416, - [SMALL_STATE(5947)] = 91462, - [SMALL_STATE(5948)] = 91508, - [SMALL_STATE(5949)] = 91552, - [SMALL_STATE(5950)] = 91596, - [SMALL_STATE(5951)] = 91642, - [SMALL_STATE(5952)] = 91688, - [SMALL_STATE(5953)] = 91734, - [SMALL_STATE(5954)] = 91780, - [SMALL_STATE(5955)] = 91824, - [SMALL_STATE(5956)] = 91874, - [SMALL_STATE(5957)] = 91918, - [SMALL_STATE(5958)] = 91964, - [SMALL_STATE(5959)] = 92010, - [SMALL_STATE(5960)] = 92056, - [SMALL_STATE(5961)] = 92102, - [SMALL_STATE(5962)] = 92148, - [SMALL_STATE(5963)] = 92192, - [SMALL_STATE(5964)] = 92236, - [SMALL_STATE(5965)] = 92280, - [SMALL_STATE(5966)] = 92329, - [SMALL_STATE(5967)] = 92378, - [SMALL_STATE(5968)] = 92423, - [SMALL_STATE(5969)] = 92466, - [SMALL_STATE(5970)] = 92509, - [SMALL_STATE(5971)] = 92558, - [SMALL_STATE(5972)] = 92605, - [SMALL_STATE(5973)] = 92648, - [SMALL_STATE(5974)] = 92695, - [SMALL_STATE(5975)] = 92742, - [SMALL_STATE(5976)] = 92786, - [SMALL_STATE(5977)] = 92834, - [SMALL_STATE(5978)] = 92878, - [SMALL_STATE(5979)] = 92924, - [SMALL_STATE(5980)] = 92968, - [SMALL_STATE(5981)] = 93010, - [SMALL_STATE(5982)] = 93052, - [SMALL_STATE(5983)] = 93094, - [SMALL_STATE(5984)] = 93136, - [SMALL_STATE(5985)] = 93178, - [SMALL_STATE(5986)] = 93220, - [SMALL_STATE(5987)] = 93262, - [SMALL_STATE(5988)] = 93304, - [SMALL_STATE(5989)] = 93348, - [SMALL_STATE(5990)] = 93392, - [SMALL_STATE(5991)] = 93434, - [SMALL_STATE(5992)] = 93476, - [SMALL_STATE(5993)] = 93518, - [SMALL_STATE(5994)] = 93560, - [SMALL_STATE(5995)] = 93602, - [SMALL_STATE(5996)] = 93648, - [SMALL_STATE(5997)] = 93694, - [SMALL_STATE(5998)] = 93736, - [SMALL_STATE(5999)] = 93778, - [SMALL_STATE(6000)] = 93824, - [SMALL_STATE(6001)] = 93872, - [SMALL_STATE(6002)] = 93915, - [SMALL_STATE(6003)] = 93956, - [SMALL_STATE(6004)] = 94003, - [SMALL_STATE(6005)] = 94046, - [SMALL_STATE(6006)] = 94089, - [SMALL_STATE(6007)] = 94130, - [SMALL_STATE(6008)] = 94177, - [SMALL_STATE(6009)] = 94220, - [SMALL_STATE(6010)] = 94261, - [SMALL_STATE(6011)] = 94308, - [SMALL_STATE(6012)] = 94386, - [SMALL_STATE(6013)] = 94428, - [SMALL_STATE(6014)] = 94470, - [SMALL_STATE(6015)] = 94546, - [SMALL_STATE(6016)] = 94588, - [SMALL_STATE(6017)] = 94630, - [SMALL_STATE(6018)] = 94672, - [SMALL_STATE(6019)] = 94714, - [SMALL_STATE(6020)] = 94756, - [SMALL_STATE(6021)] = 94834, - [SMALL_STATE(6022)] = 94912, - [SMALL_STATE(6023)] = 94954, - [SMALL_STATE(6024)] = 95032, - [SMALL_STATE(6025)] = 95074, - [SMALL_STATE(6026)] = 95116, - [SMALL_STATE(6027)] = 95162, - [SMALL_STATE(6028)] = 95240, - [SMALL_STATE(6029)] = 95282, - [SMALL_STATE(6030)] = 95324, - [SMALL_STATE(6031)] = 95402, - [SMALL_STATE(6032)] = 95444, - [SMALL_STATE(6033)] = 95522, - [SMALL_STATE(6034)] = 95564, - [SMALL_STATE(6035)] = 95606, - [SMALL_STATE(6036)] = 95648, - [SMALL_STATE(6037)] = 95726, - [SMALL_STATE(6038)] = 95804, - [SMALL_STATE(6039)] = 95882, - [SMALL_STATE(6040)] = 95924, - [SMALL_STATE(6041)] = 95966, - [SMALL_STATE(6042)] = 96008, - [SMALL_STATE(6043)] = 96086, - [SMALL_STATE(6044)] = 96128, - [SMALL_STATE(6045)] = 96170, - [SMALL_STATE(6046)] = 96245, - [SMALL_STATE(6047)] = 96320, - [SMALL_STATE(6048)] = 96395, - [SMALL_STATE(6049)] = 96470, - [SMALL_STATE(6050)] = 96545, - [SMALL_STATE(6051)] = 96618, - [SMALL_STATE(6052)] = 96693, - [SMALL_STATE(6053)] = 96765, - [SMALL_STATE(6054)] = 96837, - [SMALL_STATE(6055)] = 96911, - [SMALL_STATE(6056)] = 96983, - [SMALL_STATE(6057)] = 97055, - [SMALL_STATE(6058)] = 97127, - [SMALL_STATE(6059)] = 97199, - [SMALL_STATE(6060)] = 97271, - [SMALL_STATE(6061)] = 97343, - [SMALL_STATE(6062)] = 97415, - [SMALL_STATE(6063)] = 97487, - [SMALL_STATE(6064)] = 97561, - [SMALL_STATE(6065)] = 97633, - [SMALL_STATE(6066)] = 97705, - [SMALL_STATE(6067)] = 97777, - [SMALL_STATE(6068)] = 97849, - [SMALL_STATE(6069)] = 97921, - [SMALL_STATE(6070)] = 97993, - [SMALL_STATE(6071)] = 98065, - [SMALL_STATE(6072)] = 98137, - [SMALL_STATE(6073)] = 98209, - [SMALL_STATE(6074)] = 98281, - [SMALL_STATE(6075)] = 98353, - [SMALL_STATE(6076)] = 98425, - [SMALL_STATE(6077)] = 98497, - [SMALL_STATE(6078)] = 98569, - [SMALL_STATE(6079)] = 98641, - [SMALL_STATE(6080)] = 98713, - [SMALL_STATE(6081)] = 98785, - [SMALL_STATE(6082)] = 98857, - [SMALL_STATE(6083)] = 98929, - [SMALL_STATE(6084)] = 99001, - [SMALL_STATE(6085)] = 99073, - [SMALL_STATE(6086)] = 99145, - [SMALL_STATE(6087)] = 99217, - [SMALL_STATE(6088)] = 99289, - [SMALL_STATE(6089)] = 99361, - [SMALL_STATE(6090)] = 99433, - [SMALL_STATE(6091)] = 99505, - [SMALL_STATE(6092)] = 99577, - [SMALL_STATE(6093)] = 99649, - [SMALL_STATE(6094)] = 99721, - [SMALL_STATE(6095)] = 99793, - [SMALL_STATE(6096)] = 99865, - [SMALL_STATE(6097)] = 99937, - [SMALL_STATE(6098)] = 100009, - [SMALL_STATE(6099)] = 100081, - [SMALL_STATE(6100)] = 100155, - [SMALL_STATE(6101)] = 100227, - [SMALL_STATE(6102)] = 100299, - [SMALL_STATE(6103)] = 100371, - [SMALL_STATE(6104)] = 100443, - [SMALL_STATE(6105)] = 100515, - [SMALL_STATE(6106)] = 100587, - [SMALL_STATE(6107)] = 100659, - [SMALL_STATE(6108)] = 100731, - [SMALL_STATE(6109)] = 100803, - [SMALL_STATE(6110)] = 100875, - [SMALL_STATE(6111)] = 100947, - [SMALL_STATE(6112)] = 101019, - [SMALL_STATE(6113)] = 101091, - [SMALL_STATE(6114)] = 101163, - [SMALL_STATE(6115)] = 101235, - [SMALL_STATE(6116)] = 101309, - [SMALL_STATE(6117)] = 101381, - [SMALL_STATE(6118)] = 101455, - [SMALL_STATE(6119)] = 101529, - [SMALL_STATE(6120)] = 101603, - [SMALL_STATE(6121)] = 101675, - [SMALL_STATE(6122)] = 101747, - [SMALL_STATE(6123)] = 101819, - [SMALL_STATE(6124)] = 101891, - [SMALL_STATE(6125)] = 101963, - [SMALL_STATE(6126)] = 102035, - [SMALL_STATE(6127)] = 102107, - [SMALL_STATE(6128)] = 102179, - [SMALL_STATE(6129)] = 102251, - [SMALL_STATE(6130)] = 102323, - [SMALL_STATE(6131)] = 102395, - [SMALL_STATE(6132)] = 102435, - [SMALL_STATE(6133)] = 102507, - [SMALL_STATE(6134)] = 102579, - [SMALL_STATE(6135)] = 102651, - [SMALL_STATE(6136)] = 102723, - [SMALL_STATE(6137)] = 102795, - [SMALL_STATE(6138)] = 102867, - [SMALL_STATE(6139)] = 102939, - [SMALL_STATE(6140)] = 103011, - [SMALL_STATE(6141)] = 103051, - [SMALL_STATE(6142)] = 103123, - [SMALL_STATE(6143)] = 103195, - [SMALL_STATE(6144)] = 103267, - [SMALL_STATE(6145)] = 103339, - [SMALL_STATE(6146)] = 103411, - [SMALL_STATE(6147)] = 103483, - [SMALL_STATE(6148)] = 103555, - [SMALL_STATE(6149)] = 103627, - [SMALL_STATE(6150)] = 103701, - [SMALL_STATE(6151)] = 103773, - [SMALL_STATE(6152)] = 103845, - [SMALL_STATE(6153)] = 103917, - [SMALL_STATE(6154)] = 103989, - [SMALL_STATE(6155)] = 104061, - [SMALL_STATE(6156)] = 104133, - [SMALL_STATE(6157)] = 104205, - [SMALL_STATE(6158)] = 104277, - [SMALL_STATE(6159)] = 104349, - [SMALL_STATE(6160)] = 104421, - [SMALL_STATE(6161)] = 104495, - [SMALL_STATE(6162)] = 104567, - [SMALL_STATE(6163)] = 104639, - [SMALL_STATE(6164)] = 104711, - [SMALL_STATE(6165)] = 104783, - [SMALL_STATE(6166)] = 104855, - [SMALL_STATE(6167)] = 104927, - [SMALL_STATE(6168)] = 104999, - [SMALL_STATE(6169)] = 105071, - [SMALL_STATE(6170)] = 105143, - [SMALL_STATE(6171)] = 105183, - [SMALL_STATE(6172)] = 105255, - [SMALL_STATE(6173)] = 105327, - [SMALL_STATE(6174)] = 105399, - [SMALL_STATE(6175)] = 105471, - [SMALL_STATE(6176)] = 105543, - [SMALL_STATE(6177)] = 105615, - [SMALL_STATE(6178)] = 105687, - [SMALL_STATE(6179)] = 105759, - [SMALL_STATE(6180)] = 105831, - [SMALL_STATE(6181)] = 105903, - [SMALL_STATE(6182)] = 105975, - [SMALL_STATE(6183)] = 106047, - [SMALL_STATE(6184)] = 106119, - [SMALL_STATE(6185)] = 106191, - [SMALL_STATE(6186)] = 106263, - [SMALL_STATE(6187)] = 106335, - [SMALL_STATE(6188)] = 106407, - [SMALL_STATE(6189)] = 106479, - [SMALL_STATE(6190)] = 106551, - [SMALL_STATE(6191)] = 106623, - [SMALL_STATE(6192)] = 106695, - [SMALL_STATE(6193)] = 106767, - [SMALL_STATE(6194)] = 106839, - [SMALL_STATE(6195)] = 106911, - [SMALL_STATE(6196)] = 106983, - [SMALL_STATE(6197)] = 107055, - [SMALL_STATE(6198)] = 107127, - [SMALL_STATE(6199)] = 107199, - [SMALL_STATE(6200)] = 107271, - [SMALL_STATE(6201)] = 107343, - [SMALL_STATE(6202)] = 107415, - [SMALL_STATE(6203)] = 107487, - [SMALL_STATE(6204)] = 107559, - [SMALL_STATE(6205)] = 107631, - [SMALL_STATE(6206)] = 107703, - [SMALL_STATE(6207)] = 107775, - [SMALL_STATE(6208)] = 107847, - [SMALL_STATE(6209)] = 107919, - [SMALL_STATE(6210)] = 107991, - [SMALL_STATE(6211)] = 108063, - [SMALL_STATE(6212)] = 108135, - [SMALL_STATE(6213)] = 108207, - [SMALL_STATE(6214)] = 108279, - [SMALL_STATE(6215)] = 108351, - [SMALL_STATE(6216)] = 108423, - [SMALL_STATE(6217)] = 108495, - [SMALL_STATE(6218)] = 108567, - [SMALL_STATE(6219)] = 108639, - [SMALL_STATE(6220)] = 108711, - [SMALL_STATE(6221)] = 108783, - [SMALL_STATE(6222)] = 108855, - [SMALL_STATE(6223)] = 108927, - [SMALL_STATE(6224)] = 109001, - [SMALL_STATE(6225)] = 109073, - [SMALL_STATE(6226)] = 109145, - [SMALL_STATE(6227)] = 109217, - [SMALL_STATE(6228)] = 109289, - [SMALL_STATE(6229)] = 109361, - [SMALL_STATE(6230)] = 109433, - [SMALL_STATE(6231)] = 109505, - [SMALL_STATE(6232)] = 109577, - [SMALL_STATE(6233)] = 109649, - [SMALL_STATE(6234)] = 109721, - [SMALL_STATE(6235)] = 109795, - [SMALL_STATE(6236)] = 109867, - [SMALL_STATE(6237)] = 109939, - [SMALL_STATE(6238)] = 110011, - [SMALL_STATE(6239)] = 110083, - [SMALL_STATE(6240)] = 110155, - [SMALL_STATE(6241)] = 110227, - [SMALL_STATE(6242)] = 110299, - [SMALL_STATE(6243)] = 110371, - [SMALL_STATE(6244)] = 110443, - [SMALL_STATE(6245)] = 110515, - [SMALL_STATE(6246)] = 110587, - [SMALL_STATE(6247)] = 110659, - [SMALL_STATE(6248)] = 110731, - [SMALL_STATE(6249)] = 110803, - [SMALL_STATE(6250)] = 110875, - [SMALL_STATE(6251)] = 110947, - [SMALL_STATE(6252)] = 111019, - [SMALL_STATE(6253)] = 111091, - [SMALL_STATE(6254)] = 111163, - [SMALL_STATE(6255)] = 111235, - [SMALL_STATE(6256)] = 111307, - [SMALL_STATE(6257)] = 111379, - [SMALL_STATE(6258)] = 111451, - [SMALL_STATE(6259)] = 111523, - [SMALL_STATE(6260)] = 111595, - [SMALL_STATE(6261)] = 111667, - [SMALL_STATE(6262)] = 111739, - [SMALL_STATE(6263)] = 111811, - [SMALL_STATE(6264)] = 111883, - [SMALL_STATE(6265)] = 111955, - [SMALL_STATE(6266)] = 112027, - [SMALL_STATE(6267)] = 112099, - [SMALL_STATE(6268)] = 112171, - [SMALL_STATE(6269)] = 112243, - [SMALL_STATE(6270)] = 112315, - [SMALL_STATE(6271)] = 112387, - [SMALL_STATE(6272)] = 112459, - [SMALL_STATE(6273)] = 112499, - [SMALL_STATE(6274)] = 112571, - [SMALL_STATE(6275)] = 112643, - [SMALL_STATE(6276)] = 112683, - [SMALL_STATE(6277)] = 112755, - [SMALL_STATE(6278)] = 112827, - [SMALL_STATE(6279)] = 112899, - [SMALL_STATE(6280)] = 112971, - [SMALL_STATE(6281)] = 113043, - [SMALL_STATE(6282)] = 113115, - [SMALL_STATE(6283)] = 113187, - [SMALL_STATE(6284)] = 113259, - [SMALL_STATE(6285)] = 113333, - [SMALL_STATE(6286)] = 113405, - [SMALL_STATE(6287)] = 113477, - [SMALL_STATE(6288)] = 113549, - [SMALL_STATE(6289)] = 113621, - [SMALL_STATE(6290)] = 113693, - [SMALL_STATE(6291)] = 113765, - [SMALL_STATE(6292)] = 113837, - [SMALL_STATE(6293)] = 113909, - [SMALL_STATE(6294)] = 113981, - [SMALL_STATE(6295)] = 114053, - [SMALL_STATE(6296)] = 114125, - [SMALL_STATE(6297)] = 114197, - [SMALL_STATE(6298)] = 114269, - [SMALL_STATE(6299)] = 114341, - [SMALL_STATE(6300)] = 114413, - [SMALL_STATE(6301)] = 114485, - [SMALL_STATE(6302)] = 114557, - [SMALL_STATE(6303)] = 114629, - [SMALL_STATE(6304)] = 114701, - [SMALL_STATE(6305)] = 114773, - [SMALL_STATE(6306)] = 114845, - [SMALL_STATE(6307)] = 114917, - [SMALL_STATE(6308)] = 114989, - [SMALL_STATE(6309)] = 115061, - [SMALL_STATE(6310)] = 115101, - [SMALL_STATE(6311)] = 115173, - [SMALL_STATE(6312)] = 115245, - [SMALL_STATE(6313)] = 115317, - [SMALL_STATE(6314)] = 115389, - [SMALL_STATE(6315)] = 115461, - [SMALL_STATE(6316)] = 115533, - [SMALL_STATE(6317)] = 115605, - [SMALL_STATE(6318)] = 115677, - [SMALL_STATE(6319)] = 115749, - [SMALL_STATE(6320)] = 115821, - [SMALL_STATE(6321)] = 115893, - [SMALL_STATE(6322)] = 115965, - [SMALL_STATE(6323)] = 116037, - [SMALL_STATE(6324)] = 116109, - [SMALL_STATE(6325)] = 116181, - [SMALL_STATE(6326)] = 116253, - [SMALL_STATE(6327)] = 116325, - [SMALL_STATE(6328)] = 116397, - [SMALL_STATE(6329)] = 116469, - [SMALL_STATE(6330)] = 116541, - [SMALL_STATE(6331)] = 116613, - [SMALL_STATE(6332)] = 116685, - [SMALL_STATE(6333)] = 116757, - [SMALL_STATE(6334)] = 116829, - [SMALL_STATE(6335)] = 116869, - [SMALL_STATE(6336)] = 116941, - [SMALL_STATE(6337)] = 117013, - [SMALL_STATE(6338)] = 117053, - [SMALL_STATE(6339)] = 117125, - [SMALL_STATE(6340)] = 117197, - [SMALL_STATE(6341)] = 117269, - [SMALL_STATE(6342)] = 117341, - [SMALL_STATE(6343)] = 117413, - [SMALL_STATE(6344)] = 117485, - [SMALL_STATE(6345)] = 117557, - [SMALL_STATE(6346)] = 117629, - [SMALL_STATE(6347)] = 117701, - [SMALL_STATE(6348)] = 117775, - [SMALL_STATE(6349)] = 117847, - [SMALL_STATE(6350)] = 117919, - [SMALL_STATE(6351)] = 117991, - [SMALL_STATE(6352)] = 118065, - [SMALL_STATE(6353)] = 118137, - [SMALL_STATE(6354)] = 118211, - [SMALL_STATE(6355)] = 118285, - [SMALL_STATE(6356)] = 118357, - [SMALL_STATE(6357)] = 118429, - [SMALL_STATE(6358)] = 118501, - [SMALL_STATE(6359)] = 118573, - [SMALL_STATE(6360)] = 118615, - [SMALL_STATE(6361)] = 118687, - [SMALL_STATE(6362)] = 118759, - [SMALL_STATE(6363)] = 118831, - [SMALL_STATE(6364)] = 118903, - [SMALL_STATE(6365)] = 118975, - [SMALL_STATE(6366)] = 119047, - [SMALL_STATE(6367)] = 119119, - [SMALL_STATE(6368)] = 119191, - [SMALL_STATE(6369)] = 119263, - [SMALL_STATE(6370)] = 119335, - [SMALL_STATE(6371)] = 119407, - [SMALL_STATE(6372)] = 119479, - [SMALL_STATE(6373)] = 119551, - [SMALL_STATE(6374)] = 119623, - [SMALL_STATE(6375)] = 119695, - [SMALL_STATE(6376)] = 119767, - [SMALL_STATE(6377)] = 119839, - [SMALL_STATE(6378)] = 119911, - [SMALL_STATE(6379)] = 119951, - [SMALL_STATE(6380)] = 120023, - [SMALL_STATE(6381)] = 120095, - [SMALL_STATE(6382)] = 120167, - [SMALL_STATE(6383)] = 120239, - [SMALL_STATE(6384)] = 120311, - [SMALL_STATE(6385)] = 120383, - [SMALL_STATE(6386)] = 120455, - [SMALL_STATE(6387)] = 120527, - [SMALL_STATE(6388)] = 120599, - [SMALL_STATE(6389)] = 120671, - [SMALL_STATE(6390)] = 120743, - [SMALL_STATE(6391)] = 120815, - [SMALL_STATE(6392)] = 120887, - [SMALL_STATE(6393)] = 120959, - [SMALL_STATE(6394)] = 121031, - [SMALL_STATE(6395)] = 121103, - [SMALL_STATE(6396)] = 121143, - [SMALL_STATE(6397)] = 121215, - [SMALL_STATE(6398)] = 121287, - [SMALL_STATE(6399)] = 121359, - [SMALL_STATE(6400)] = 121431, - [SMALL_STATE(6401)] = 121503, - [SMALL_STATE(6402)] = 121575, - [SMALL_STATE(6403)] = 121647, - [SMALL_STATE(6404)] = 121719, - [SMALL_STATE(6405)] = 121791, - [SMALL_STATE(6406)] = 121863, - [SMALL_STATE(6407)] = 121903, - [SMALL_STATE(6408)] = 121975, - [SMALL_STATE(6409)] = 122047, - [SMALL_STATE(6410)] = 122119, - [SMALL_STATE(6411)] = 122191, - [SMALL_STATE(6412)] = 122263, - [SMALL_STATE(6413)] = 122335, - [SMALL_STATE(6414)] = 122407, - [SMALL_STATE(6415)] = 122479, - [SMALL_STATE(6416)] = 122551, - [SMALL_STATE(6417)] = 122623, - [SMALL_STATE(6418)] = 122695, - [SMALL_STATE(6419)] = 122767, - [SMALL_STATE(6420)] = 122839, - [SMALL_STATE(6421)] = 122911, - [SMALL_STATE(6422)] = 122983, - [SMALL_STATE(6423)] = 123055, - [SMALL_STATE(6424)] = 123127, - [SMALL_STATE(6425)] = 123199, - [SMALL_STATE(6426)] = 123271, - [SMALL_STATE(6427)] = 123343, - [SMALL_STATE(6428)] = 123415, - [SMALL_STATE(6429)] = 123487, - [SMALL_STATE(6430)] = 123559, - [SMALL_STATE(6431)] = 123631, - [SMALL_STATE(6432)] = 123703, - [SMALL_STATE(6433)] = 123775, - [SMALL_STATE(6434)] = 123847, - [SMALL_STATE(6435)] = 123919, - [SMALL_STATE(6436)] = 123991, - [SMALL_STATE(6437)] = 124063, - [SMALL_STATE(6438)] = 124135, - [SMALL_STATE(6439)] = 124207, - [SMALL_STATE(6440)] = 124279, - [SMALL_STATE(6441)] = 124351, - [SMALL_STATE(6442)] = 124423, - [SMALL_STATE(6443)] = 124495, - [SMALL_STATE(6444)] = 124567, - [SMALL_STATE(6445)] = 124639, - [SMALL_STATE(6446)] = 124679, - [SMALL_STATE(6447)] = 124751, - [SMALL_STATE(6448)] = 124823, - [SMALL_STATE(6449)] = 124895, - [SMALL_STATE(6450)] = 124969, - [SMALL_STATE(6451)] = 125041, - [SMALL_STATE(6452)] = 125113, - [SMALL_STATE(6453)] = 125185, - [SMALL_STATE(6454)] = 125257, - [SMALL_STATE(6455)] = 125329, - [SMALL_STATE(6456)] = 125403, - [SMALL_STATE(6457)] = 125475, - [SMALL_STATE(6458)] = 125547, - [SMALL_STATE(6459)] = 125619, - [SMALL_STATE(6460)] = 125693, - [SMALL_STATE(6461)] = 125765, - [SMALL_STATE(6462)] = 125837, - [SMALL_STATE(6463)] = 125909, - [SMALL_STATE(6464)] = 125981, - [SMALL_STATE(6465)] = 126055, - [SMALL_STATE(6466)] = 126127, - [SMALL_STATE(6467)] = 126199, - [SMALL_STATE(6468)] = 126271, - [SMALL_STATE(6469)] = 126343, - [SMALL_STATE(6470)] = 126415, - [SMALL_STATE(6471)] = 126487, - [SMALL_STATE(6472)] = 126559, - [SMALL_STATE(6473)] = 126631, - [SMALL_STATE(6474)] = 126703, - [SMALL_STATE(6475)] = 126775, - [SMALL_STATE(6476)] = 126847, - [SMALL_STATE(6477)] = 126919, - [SMALL_STATE(6478)] = 126993, - [SMALL_STATE(6479)] = 127065, - [SMALL_STATE(6480)] = 127137, - [SMALL_STATE(6481)] = 127209, - [SMALL_STATE(6482)] = 127281, - [SMALL_STATE(6483)] = 127353, - [SMALL_STATE(6484)] = 127425, - [SMALL_STATE(6485)] = 127497, - [SMALL_STATE(6486)] = 127569, - [SMALL_STATE(6487)] = 127641, - [SMALL_STATE(6488)] = 127713, - [SMALL_STATE(6489)] = 127785, - [SMALL_STATE(6490)] = 127859, - [SMALL_STATE(6491)] = 127931, - [SMALL_STATE(6492)] = 128003, - [SMALL_STATE(6493)] = 128075, - [SMALL_STATE(6494)] = 128147, - [SMALL_STATE(6495)] = 128219, - [SMALL_STATE(6496)] = 128291, - [SMALL_STATE(6497)] = 128363, - [SMALL_STATE(6498)] = 128435, - [SMALL_STATE(6499)] = 128507, - [SMALL_STATE(6500)] = 128579, - [SMALL_STATE(6501)] = 128651, - [SMALL_STATE(6502)] = 128723, - [SMALL_STATE(6503)] = 128795, - [SMALL_STATE(6504)] = 128867, - [SMALL_STATE(6505)] = 128939, - [SMALL_STATE(6506)] = 129011, - [SMALL_STATE(6507)] = 129083, - [SMALL_STATE(6508)] = 129155, - [SMALL_STATE(6509)] = 129227, - [SMALL_STATE(6510)] = 129299, - [SMALL_STATE(6511)] = 129371, - [SMALL_STATE(6512)] = 129443, - [SMALL_STATE(6513)] = 129515, - [SMALL_STATE(6514)] = 129587, - [SMALL_STATE(6515)] = 129659, - [SMALL_STATE(6516)] = 129731, - [SMALL_STATE(6517)] = 129803, - [SMALL_STATE(6518)] = 129875, - [SMALL_STATE(6519)] = 129947, - [SMALL_STATE(6520)] = 130019, - [SMALL_STATE(6521)] = 130091, - [SMALL_STATE(6522)] = 130163, - [SMALL_STATE(6523)] = 130235, - [SMALL_STATE(6524)] = 130307, - [SMALL_STATE(6525)] = 130379, - [SMALL_STATE(6526)] = 130451, - [SMALL_STATE(6527)] = 130523, - [SMALL_STATE(6528)] = 130595, - [SMALL_STATE(6529)] = 130667, - [SMALL_STATE(6530)] = 130739, - [SMALL_STATE(6531)] = 130811, - [SMALL_STATE(6532)] = 130883, - [SMALL_STATE(6533)] = 130955, - [SMALL_STATE(6534)] = 131027, - [SMALL_STATE(6535)] = 131099, - [SMALL_STATE(6536)] = 131173, - [SMALL_STATE(6537)] = 131247, - [SMALL_STATE(6538)] = 131319, - [SMALL_STATE(6539)] = 131391, - [SMALL_STATE(6540)] = 131463, - [SMALL_STATE(6541)] = 131535, - [SMALL_STATE(6542)] = 131607, - [SMALL_STATE(6543)] = 131679, - [SMALL_STATE(6544)] = 131751, - [SMALL_STATE(6545)] = 131823, - [SMALL_STATE(6546)] = 131895, - [SMALL_STATE(6547)] = 131967, - [SMALL_STATE(6548)] = 132041, - [SMALL_STATE(6549)] = 132113, - [SMALL_STATE(6550)] = 132185, - [SMALL_STATE(6551)] = 132257, - [SMALL_STATE(6552)] = 132329, - [SMALL_STATE(6553)] = 132401, - [SMALL_STATE(6554)] = 132473, - [SMALL_STATE(6555)] = 132545, - [SMALL_STATE(6556)] = 132617, - [SMALL_STATE(6557)] = 132689, - [SMALL_STATE(6558)] = 132761, - [SMALL_STATE(6559)] = 132833, - [SMALL_STATE(6560)] = 132905, - [SMALL_STATE(6561)] = 132979, - [SMALL_STATE(6562)] = 133051, - [SMALL_STATE(6563)] = 133123, - [SMALL_STATE(6564)] = 133195, - [SMALL_STATE(6565)] = 133267, - [SMALL_STATE(6566)] = 133339, - [SMALL_STATE(6567)] = 133411, - [SMALL_STATE(6568)] = 133483, - [SMALL_STATE(6569)] = 133555, - [SMALL_STATE(6570)] = 133627, - [SMALL_STATE(6571)] = 133699, - [SMALL_STATE(6572)] = 133771, - [SMALL_STATE(6573)] = 133843, - [SMALL_STATE(6574)] = 133915, - [SMALL_STATE(6575)] = 133987, - [SMALL_STATE(6576)] = 134059, - [SMALL_STATE(6577)] = 134131, - [SMALL_STATE(6578)] = 134203, - [SMALL_STATE(6579)] = 134275, - [SMALL_STATE(6580)] = 134347, - [SMALL_STATE(6581)] = 134419, - [SMALL_STATE(6582)] = 134491, - [SMALL_STATE(6583)] = 134563, - [SMALL_STATE(6584)] = 134635, - [SMALL_STATE(6585)] = 134707, - [SMALL_STATE(6586)] = 134779, - [SMALL_STATE(6587)] = 134851, - [SMALL_STATE(6588)] = 134923, - [SMALL_STATE(6589)] = 134995, - [SMALL_STATE(6590)] = 135069, - [SMALL_STATE(6591)] = 135141, - [SMALL_STATE(6592)] = 135213, - [SMALL_STATE(6593)] = 135285, - [SMALL_STATE(6594)] = 135357, - [SMALL_STATE(6595)] = 135429, - [SMALL_STATE(6596)] = 135501, - [SMALL_STATE(6597)] = 135573, - [SMALL_STATE(6598)] = 135645, - [SMALL_STATE(6599)] = 135716, - [SMALL_STATE(6600)] = 135787, - [SMALL_STATE(6601)] = 135858, - [SMALL_STATE(6602)] = 135929, - [SMALL_STATE(6603)] = 136000, - [SMALL_STATE(6604)] = 136071, - [SMALL_STATE(6605)] = 136142, - [SMALL_STATE(6606)] = 136213, - [SMALL_STATE(6607)] = 136284, - [SMALL_STATE(6608)] = 136355, - [SMALL_STATE(6609)] = 136426, - [SMALL_STATE(6610)] = 136497, - [SMALL_STATE(6611)] = 136568, - [SMALL_STATE(6612)] = 136639, - [SMALL_STATE(6613)] = 136710, - [SMALL_STATE(6614)] = 136781, - [SMALL_STATE(6615)] = 136852, - [SMALL_STATE(6616)] = 136923, - [SMALL_STATE(6617)] = 136994, - [SMALL_STATE(6618)] = 137065, - [SMALL_STATE(6619)] = 137136, - [SMALL_STATE(6620)] = 137207, - [SMALL_STATE(6621)] = 137278, - [SMALL_STATE(6622)] = 137349, - [SMALL_STATE(6623)] = 137420, - [SMALL_STATE(6624)] = 137491, - [SMALL_STATE(6625)] = 137562, - [SMALL_STATE(6626)] = 137633, - [SMALL_STATE(6627)] = 137704, - [SMALL_STATE(6628)] = 137775, - [SMALL_STATE(6629)] = 137846, - [SMALL_STATE(6630)] = 137917, - [SMALL_STATE(6631)] = 137988, - [SMALL_STATE(6632)] = 138059, - [SMALL_STATE(6633)] = 138130, - [SMALL_STATE(6634)] = 138201, - [SMALL_STATE(6635)] = 138272, - [SMALL_STATE(6636)] = 138343, - [SMALL_STATE(6637)] = 138414, - [SMALL_STATE(6638)] = 138485, - [SMALL_STATE(6639)] = 138556, - [SMALL_STATE(6640)] = 138627, - [SMALL_STATE(6641)] = 138693, - [SMALL_STATE(6642)] = 138759, - [SMALL_STATE(6643)] = 138825, - [SMALL_STATE(6644)] = 138891, - [SMALL_STATE(6645)] = 138957, - [SMALL_STATE(6646)] = 139023, - [SMALL_STATE(6647)] = 139089, - [SMALL_STATE(6648)] = 139155, - [SMALL_STATE(6649)] = 139221, - [SMALL_STATE(6650)] = 139287, - [SMALL_STATE(6651)] = 139353, - [SMALL_STATE(6652)] = 139419, - [SMALL_STATE(6653)] = 139485, - [SMALL_STATE(6654)] = 139551, - [SMALL_STATE(6655)] = 139617, - [SMALL_STATE(6656)] = 139683, - [SMALL_STATE(6657)] = 139749, - [SMALL_STATE(6658)] = 139815, - [SMALL_STATE(6659)] = 139881, - [SMALL_STATE(6660)] = 139947, - [SMALL_STATE(6661)] = 140013, - [SMALL_STATE(6662)] = 140079, - [SMALL_STATE(6663)] = 140145, - [SMALL_STATE(6664)] = 140211, - [SMALL_STATE(6665)] = 140277, - [SMALL_STATE(6666)] = 140343, - [SMALL_STATE(6667)] = 140409, - [SMALL_STATE(6668)] = 140475, - [SMALL_STATE(6669)] = 140541, - [SMALL_STATE(6670)] = 140607, - [SMALL_STATE(6671)] = 140673, - [SMALL_STATE(6672)] = 140739, - [SMALL_STATE(6673)] = 140805, - [SMALL_STATE(6674)] = 140871, - [SMALL_STATE(6675)] = 140937, - [SMALL_STATE(6676)] = 141003, - [SMALL_STATE(6677)] = 141069, - [SMALL_STATE(6678)] = 141135, - [SMALL_STATE(6679)] = 141201, - [SMALL_STATE(6680)] = 141267, - [SMALL_STATE(6681)] = 141333, - [SMALL_STATE(6682)] = 141399, - [SMALL_STATE(6683)] = 141465, - [SMALL_STATE(6684)] = 141531, - [SMALL_STATE(6685)] = 141597, - [SMALL_STATE(6686)] = 141663, - [SMALL_STATE(6687)] = 141729, - [SMALL_STATE(6688)] = 141795, - [SMALL_STATE(6689)] = 141861, - [SMALL_STATE(6690)] = 141927, - [SMALL_STATE(6691)] = 141993, - [SMALL_STATE(6692)] = 142059, - [SMALL_STATE(6693)] = 142125, - [SMALL_STATE(6694)] = 142191, - [SMALL_STATE(6695)] = 142253, - [SMALL_STATE(6696)] = 142315, - [SMALL_STATE(6697)] = 142377, - [SMALL_STATE(6698)] = 142439, - [SMALL_STATE(6699)] = 142501, - [SMALL_STATE(6700)] = 142563, - [SMALL_STATE(6701)] = 142625, - [SMALL_STATE(6702)] = 142687, - [SMALL_STATE(6703)] = 142749, - [SMALL_STATE(6704)] = 142811, - [SMALL_STATE(6705)] = 142873, - [SMALL_STATE(6706)] = 142909, - [SMALL_STATE(6707)] = 142971, - [SMALL_STATE(6708)] = 143033, - [SMALL_STATE(6709)] = 143095, - [SMALL_STATE(6710)] = 143157, - [SMALL_STATE(6711)] = 143219, - [SMALL_STATE(6712)] = 143281, - [SMALL_STATE(6713)] = 143343, - [SMALL_STATE(6714)] = 143405, - [SMALL_STATE(6715)] = 143467, - [SMALL_STATE(6716)] = 143529, - [SMALL_STATE(6717)] = 143591, - [SMALL_STATE(6718)] = 143653, - [SMALL_STATE(6719)] = 143715, - [SMALL_STATE(6720)] = 143777, - [SMALL_STATE(6721)] = 143839, - [SMALL_STATE(6722)] = 143901, - [SMALL_STATE(6723)] = 143963, - [SMALL_STATE(6724)] = 144025, - [SMALL_STATE(6725)] = 144087, - [SMALL_STATE(6726)] = 144149, - [SMALL_STATE(6727)] = 144211, - [SMALL_STATE(6728)] = 144273, - [SMALL_STATE(6729)] = 144335, - [SMALL_STATE(6730)] = 144397, - [SMALL_STATE(6731)] = 144433, - [SMALL_STATE(6732)] = 144495, - [SMALL_STATE(6733)] = 144557, - [SMALL_STATE(6734)] = 144619, - [SMALL_STATE(6735)] = 144681, - [SMALL_STATE(6736)] = 144743, - [SMALL_STATE(6737)] = 144805, - [SMALL_STATE(6738)] = 144867, - [SMALL_STATE(6739)] = 144929, - [SMALL_STATE(6740)] = 144991, - [SMALL_STATE(6741)] = 145053, - [SMALL_STATE(6742)] = 145115, - [SMALL_STATE(6743)] = 145177, - [SMALL_STATE(6744)] = 145239, - [SMALL_STATE(6745)] = 145301, - [SMALL_STATE(6746)] = 145363, - [SMALL_STATE(6747)] = 145425, - [SMALL_STATE(6748)] = 145487, - [SMALL_STATE(6749)] = 145549, - [SMALL_STATE(6750)] = 145611, - [SMALL_STATE(6751)] = 145650, - [SMALL_STATE(6752)] = 145708, - [SMALL_STATE(6753)] = 145746, - [SMALL_STATE(6754)] = 145804, - [SMALL_STATE(6755)] = 145862, - [SMALL_STATE(6756)] = 145920, - [SMALL_STATE(6757)] = 145978, - [SMALL_STATE(6758)] = 146036, - [SMALL_STATE(6759)] = 146094, - [SMALL_STATE(6760)] = 146152, - [SMALL_STATE(6761)] = 146210, - [SMALL_STATE(6762)] = 146248, - [SMALL_STATE(6763)] = 146303, - [SMALL_STATE(6764)] = 146358, - [SMALL_STATE(6765)] = 146413, - [SMALL_STATE(6766)] = 146468, - [SMALL_STATE(6767)] = 146501, - [SMALL_STATE(6768)] = 146556, - [SMALL_STATE(6769)] = 146611, - [SMALL_STATE(6770)] = 146666, - [SMALL_STATE(6771)] = 146721, - [SMALL_STATE(6772)] = 146776, - [SMALL_STATE(6773)] = 146831, - [SMALL_STATE(6774)] = 146886, - [SMALL_STATE(6775)] = 146941, - [SMALL_STATE(6776)] = 146996, - [SMALL_STATE(6777)] = 147051, - [SMALL_STATE(6778)] = 147084, - [SMALL_STATE(6779)] = 147139, - [SMALL_STATE(6780)] = 147194, - [SMALL_STATE(6781)] = 147249, - [SMALL_STATE(6782)] = 147304, - [SMALL_STATE(6783)] = 147359, - [SMALL_STATE(6784)] = 147413, - [SMALL_STATE(6785)] = 147467, - [SMALL_STATE(6786)] = 147519, - [SMALL_STATE(6787)] = 147571, - [SMALL_STATE(6788)] = 147625, - [SMALL_STATE(6789)] = 147679, - [SMALL_STATE(6790)] = 147733, - [SMALL_STATE(6791)] = 147787, - [SMALL_STATE(6792)] = 147839, - [SMALL_STATE(6793)] = 147893, - [SMALL_STATE(6794)] = 147945, - [SMALL_STATE(6795)] = 147999, - [SMALL_STATE(6796)] = 148053, - [SMALL_STATE(6797)] = 148107, - [SMALL_STATE(6798)] = 148161, - [SMALL_STATE(6799)] = 148215, - [SMALL_STATE(6800)] = 148269, - [SMALL_STATE(6801)] = 148321, - [SMALL_STATE(6802)] = 148373, - [SMALL_STATE(6803)] = 148427, - [SMALL_STATE(6804)] = 148481, - [SMALL_STATE(6805)] = 148535, - [SMALL_STATE(6806)] = 148587, - [SMALL_STATE(6807)] = 148641, - [SMALL_STATE(6808)] = 148695, - [SMALL_STATE(6809)] = 148747, - [SMALL_STATE(6810)] = 148799, - [SMALL_STATE(6811)] = 148853, - [SMALL_STATE(6812)] = 148907, - [SMALL_STATE(6813)] = 148961, - [SMALL_STATE(6814)] = 149013, - [SMALL_STATE(6815)] = 149067, - [SMALL_STATE(6816)] = 149121, - [SMALL_STATE(6817)] = 149175, - [SMALL_STATE(6818)] = 149227, - [SMALL_STATE(6819)] = 149279, - [SMALL_STATE(6820)] = 149331, - [SMALL_STATE(6821)] = 149385, - [SMALL_STATE(6822)] = 149439, - [SMALL_STATE(6823)] = 149493, - [SMALL_STATE(6824)] = 149547, - [SMALL_STATE(6825)] = 149599, - [SMALL_STATE(6826)] = 149653, - [SMALL_STATE(6827)] = 149705, - [SMALL_STATE(6828)] = 149759, - [SMALL_STATE(6829)] = 149813, - [SMALL_STATE(6830)] = 149867, - [SMALL_STATE(6831)] = 149921, - [SMALL_STATE(6832)] = 149973, - [SMALL_STATE(6833)] = 150025, - [SMALL_STATE(6834)] = 150061, - [SMALL_STATE(6835)] = 150113, - [SMALL_STATE(6836)] = 150165, - [SMALL_STATE(6837)] = 150219, - [SMALL_STATE(6838)] = 150273, - [SMALL_STATE(6839)] = 150327, - [SMALL_STATE(6840)] = 150379, - [SMALL_STATE(6841)] = 150433, - [SMALL_STATE(6842)] = 150487, - [SMALL_STATE(6843)] = 150539, - [SMALL_STATE(6844)] = 150593, - [SMALL_STATE(6845)] = 150647, - [SMALL_STATE(6846)] = 150701, - [SMALL_STATE(6847)] = 150755, - [SMALL_STATE(6848)] = 150804, - [SMALL_STATE(6849)] = 150853, - [SMALL_STATE(6850)] = 150902, - [SMALL_STATE(6851)] = 150937, - [SMALL_STATE(6852)] = 150986, - [SMALL_STATE(6853)] = 151035, - [SMALL_STATE(6854)] = 151084, - [SMALL_STATE(6855)] = 151133, - [SMALL_STATE(6856)] = 151182, - [SMALL_STATE(6857)] = 151231, - [SMALL_STATE(6858)] = 151280, - [SMALL_STATE(6859)] = 151329, - [SMALL_STATE(6860)] = 151378, - [SMALL_STATE(6861)] = 151427, - [SMALL_STATE(6862)] = 151476, - [SMALL_STATE(6863)] = 151525, - [SMALL_STATE(6864)] = 151560, - [SMALL_STATE(6865)] = 151609, - [SMALL_STATE(6866)] = 151658, - [SMALL_STATE(6867)] = 151707, - [SMALL_STATE(6868)] = 151756, - [SMALL_STATE(6869)] = 151805, - [SMALL_STATE(6870)] = 151854, - [SMALL_STATE(6871)] = 151903, - [SMALL_STATE(6872)] = 151952, - [SMALL_STATE(6873)] = 152001, - [SMALL_STATE(6874)] = 152050, - [SMALL_STATE(6875)] = 152099, - [SMALL_STATE(6876)] = 152148, - [SMALL_STATE(6877)] = 152197, - [SMALL_STATE(6878)] = 152246, - [SMALL_STATE(6879)] = 152295, - [SMALL_STATE(6880)] = 152344, - [SMALL_STATE(6881)] = 152393, - [SMALL_STATE(6882)] = 152442, - [SMALL_STATE(6883)] = 152491, - [SMALL_STATE(6884)] = 152540, - [SMALL_STATE(6885)] = 152589, - [SMALL_STATE(6886)] = 152638, - [SMALL_STATE(6887)] = 152687, - [SMALL_STATE(6888)] = 152736, - [SMALL_STATE(6889)] = 152785, - [SMALL_STATE(6890)] = 152834, - [SMALL_STATE(6891)] = 152883, - [SMALL_STATE(6892)] = 152932, - [SMALL_STATE(6893)] = 152981, - [SMALL_STATE(6894)] = 153030, - [SMALL_STATE(6895)] = 153079, - [SMALL_STATE(6896)] = 153128, - [SMALL_STATE(6897)] = 153177, - [SMALL_STATE(6898)] = 153226, - [SMALL_STATE(6899)] = 153275, - [SMALL_STATE(6900)] = 153324, - [SMALL_STATE(6901)] = 153373, - [SMALL_STATE(6902)] = 153422, - [SMALL_STATE(6903)] = 153471, - [SMALL_STATE(6904)] = 153501, - [SMALL_STATE(6905)] = 153531, - [SMALL_STATE(6906)] = 153561, - [SMALL_STATE(6907)] = 153591, - [SMALL_STATE(6908)] = 153642, - [SMALL_STATE(6909)] = 153691, - [SMALL_STATE(6910)] = 153740, - [SMALL_STATE(6911)] = 153791, - [SMALL_STATE(6912)] = 153840, - [SMALL_STATE(6913)] = 153891, - [SMALL_STATE(6914)] = 153940, - [SMALL_STATE(6915)] = 153989, - [SMALL_STATE(6916)] = 154038, - [SMALL_STATE(6917)] = 154089, - [SMALL_STATE(6918)] = 154140, - [SMALL_STATE(6919)] = 154191, - [SMALL_STATE(6920)] = 154242, - [SMALL_STATE(6921)] = 154293, - [SMALL_STATE(6922)] = 154344, - [SMALL_STATE(6923)] = 154395, - [SMALL_STATE(6924)] = 154446, - [SMALL_STATE(6925)] = 154495, - [SMALL_STATE(6926)] = 154544, - [SMALL_STATE(6927)] = 154593, - [SMALL_STATE(6928)] = 154642, - [SMALL_STATE(6929)] = 154693, - [SMALL_STATE(6930)] = 154742, - [SMALL_STATE(6931)] = 154793, - [SMALL_STATE(6932)] = 154842, - [SMALL_STATE(6933)] = 154891, - [SMALL_STATE(6934)] = 154942, - [SMALL_STATE(6935)] = 154991, - [SMALL_STATE(6936)] = 155040, - [SMALL_STATE(6937)] = 155091, - [SMALL_STATE(6938)] = 155142, - [SMALL_STATE(6939)] = 155191, - [SMALL_STATE(6940)] = 155242, - [SMALL_STATE(6941)] = 155293, - [SMALL_STATE(6942)] = 155344, - [SMALL_STATE(6943)] = 155393, - [SMALL_STATE(6944)] = 155442, - [SMALL_STATE(6945)] = 155493, - [SMALL_STATE(6946)] = 155544, - [SMALL_STATE(6947)] = 155593, - [SMALL_STATE(6948)] = 155642, - [SMALL_STATE(6949)] = 155693, - [SMALL_STATE(6950)] = 155744, - [SMALL_STATE(6951)] = 155795, - [SMALL_STATE(6952)] = 155846, - [SMALL_STATE(6953)] = 155897, - [SMALL_STATE(6954)] = 155948, - [SMALL_STATE(6955)] = 155999, - [SMALL_STATE(6956)] = 156050, - [SMALL_STATE(6957)] = 156101, - [SMALL_STATE(6958)] = 156152, - [SMALL_STATE(6959)] = 156203, - [SMALL_STATE(6960)] = 156254, - [SMALL_STATE(6961)] = 156305, - [SMALL_STATE(6962)] = 156356, - [SMALL_STATE(6963)] = 156407, - [SMALL_STATE(6964)] = 156458, - [SMALL_STATE(6965)] = 156509, - [SMALL_STATE(6966)] = 156560, - [SMALL_STATE(6967)] = 156611, - [SMALL_STATE(6968)] = 156660, - [SMALL_STATE(6969)] = 156711, - [SMALL_STATE(6970)] = 156760, - [SMALL_STATE(6971)] = 156811, - [SMALL_STATE(6972)] = 156862, - [SMALL_STATE(6973)] = 156913, - [SMALL_STATE(6974)] = 156964, - [SMALL_STATE(6975)] = 157015, - [SMALL_STATE(6976)] = 157066, - [SMALL_STATE(6977)] = 157117, - [SMALL_STATE(6978)] = 157168, - [SMALL_STATE(6979)] = 157217, - [SMALL_STATE(6980)] = 157268, - [SMALL_STATE(6981)] = 157319, - [SMALL_STATE(6982)] = 157370, - [SMALL_STATE(6983)] = 157419, - [SMALL_STATE(6984)] = 157470, - [SMALL_STATE(6985)] = 157521, - [SMALL_STATE(6986)] = 157570, - [SMALL_STATE(6987)] = 157621, - [SMALL_STATE(6988)] = 157670, - [SMALL_STATE(6989)] = 157719, - [SMALL_STATE(6990)] = 157770, - [SMALL_STATE(6991)] = 157819, - [SMALL_STATE(6992)] = 157868, - [SMALL_STATE(6993)] = 157919, - [SMALL_STATE(6994)] = 157968, - [SMALL_STATE(6995)] = 158017, - [SMALL_STATE(6996)] = 158066, - [SMALL_STATE(6997)] = 158115, - [SMALL_STATE(6998)] = 158164, - [SMALL_STATE(6999)] = 158215, - [SMALL_STATE(7000)] = 158266, - [SMALL_STATE(7001)] = 158315, - [SMALL_STATE(7002)] = 158366, - [SMALL_STATE(7003)] = 158415, - [SMALL_STATE(7004)] = 158466, - [SMALL_STATE(7005)] = 158517, - [SMALL_STATE(7006)] = 158566, - [SMALL_STATE(7007)] = 158617, - [SMALL_STATE(7008)] = 158666, - [SMALL_STATE(7009)] = 158715, - [SMALL_STATE(7010)] = 158764, - [SMALL_STATE(7011)] = 158815, - [SMALL_STATE(7012)] = 158866, - [SMALL_STATE(7013)] = 158915, - [SMALL_STATE(7014)] = 158966, - [SMALL_STATE(7015)] = 159017, - [SMALL_STATE(7016)] = 159066, - [SMALL_STATE(7017)] = 159117, - [SMALL_STATE(7018)] = 159168, - [SMALL_STATE(7019)] = 159219, - [SMALL_STATE(7020)] = 159270, - [SMALL_STATE(7021)] = 159319, - [SMALL_STATE(7022)] = 159370, - [SMALL_STATE(7023)] = 159419, - [SMALL_STATE(7024)] = 159468, - [SMALL_STATE(7025)] = 159519, - [SMALL_STATE(7026)] = 159568, - [SMALL_STATE(7027)] = 159619, - [SMALL_STATE(7028)] = 159670, - [SMALL_STATE(7029)] = 159719, - [SMALL_STATE(7030)] = 159768, - [SMALL_STATE(7031)] = 159817, - [SMALL_STATE(7032)] = 159868, - [SMALL_STATE(7033)] = 159919, - [SMALL_STATE(7034)] = 159970, - [SMALL_STATE(7035)] = 160019, - [SMALL_STATE(7036)] = 160070, - [SMALL_STATE(7037)] = 160121, - [SMALL_STATE(7038)] = 160172, - [SMALL_STATE(7039)] = 160221, - [SMALL_STATE(7040)] = 160272, - [SMALL_STATE(7041)] = 160323, - [SMALL_STATE(7042)] = 160374, - [SMALL_STATE(7043)] = 160425, - [SMALL_STATE(7044)] = 160476, - [SMALL_STATE(7045)] = 160527, - [SMALL_STATE(7046)] = 160578, - [SMALL_STATE(7047)] = 160629, - [SMALL_STATE(7048)] = 160678, - [SMALL_STATE(7049)] = 160727, - [SMALL_STATE(7050)] = 160778, - [SMALL_STATE(7051)] = 160829, - [SMALL_STATE(7052)] = 160880, - [SMALL_STATE(7053)] = 160929, - [SMALL_STATE(7054)] = 160978, - [SMALL_STATE(7055)] = 161027, - [SMALL_STATE(7056)] = 161078, - [SMALL_STATE(7057)] = 161129, - [SMALL_STATE(7058)] = 161178, - [SMALL_STATE(7059)] = 161227, - [SMALL_STATE(7060)] = 161278, - [SMALL_STATE(7061)] = 161327, - [SMALL_STATE(7062)] = 161376, - [SMALL_STATE(7063)] = 161425, - [SMALL_STATE(7064)] = 161474, - [SMALL_STATE(7065)] = 161523, - [SMALL_STATE(7066)] = 161574, - [SMALL_STATE(7067)] = 161625, - [SMALL_STATE(7068)] = 161674, - [SMALL_STATE(7069)] = 161725, - [SMALL_STATE(7070)] = 161776, - [SMALL_STATE(7071)] = 161827, - [SMALL_STATE(7072)] = 161876, - [SMALL_STATE(7073)] = 161927, - [SMALL_STATE(7074)] = 161976, - [SMALL_STATE(7075)] = 162027, - [SMALL_STATE(7076)] = 162078, - [SMALL_STATE(7077)] = 162129, - [SMALL_STATE(7078)] = 162180, - [SMALL_STATE(7079)] = 162231, - [SMALL_STATE(7080)] = 162280, - [SMALL_STATE(7081)] = 162331, - [SMALL_STATE(7082)] = 162380, - [SMALL_STATE(7083)] = 162431, - [SMALL_STATE(7084)] = 162482, - [SMALL_STATE(7085)] = 162533, - [SMALL_STATE(7086)] = 162584, - [SMALL_STATE(7087)] = 162635, - [SMALL_STATE(7088)] = 162684, - [SMALL_STATE(7089)] = 162735, - [SMALL_STATE(7090)] = 162786, - [SMALL_STATE(7091)] = 162835, - [SMALL_STATE(7092)] = 162886, - [SMALL_STATE(7093)] = 162937, - [SMALL_STATE(7094)] = 162988, - [SMALL_STATE(7095)] = 163039, - [SMALL_STATE(7096)] = 163088, - [SMALL_STATE(7097)] = 163137, - [SMALL_STATE(7098)] = 163188, - [SMALL_STATE(7099)] = 163237, - [SMALL_STATE(7100)] = 163288, - [SMALL_STATE(7101)] = 163337, - [SMALL_STATE(7102)] = 163386, - [SMALL_STATE(7103)] = 163435, - [SMALL_STATE(7104)] = 163486, - [SMALL_STATE(7105)] = 163537, - [SMALL_STATE(7106)] = 163586, - [SMALL_STATE(7107)] = 163637, - [SMALL_STATE(7108)] = 163686, - [SMALL_STATE(7109)] = 163735, - [SMALL_STATE(7110)] = 163786, - [SMALL_STATE(7111)] = 163835, - [SMALL_STATE(7112)] = 163886, - [SMALL_STATE(7113)] = 163937, - [SMALL_STATE(7114)] = 163986, - [SMALL_STATE(7115)] = 164035, - [SMALL_STATE(7116)] = 164086, - [SMALL_STATE(7117)] = 164135, - [SMALL_STATE(7118)] = 164186, - [SMALL_STATE(7119)] = 164235, - [SMALL_STATE(7120)] = 164286, - [SMALL_STATE(7121)] = 164337, - [SMALL_STATE(7122)] = 164386, - [SMALL_STATE(7123)] = 164435, - [SMALL_STATE(7124)] = 164486, - [SMALL_STATE(7125)] = 164537, - [SMALL_STATE(7126)] = 164586, - [SMALL_STATE(7127)] = 164635, - [SMALL_STATE(7128)] = 164686, - [SMALL_STATE(7129)] = 164737, - [SMALL_STATE(7130)] = 164788, - [SMALL_STATE(7131)] = 164839, - [SMALL_STATE(7132)] = 164890, - [SMALL_STATE(7133)] = 164941, - [SMALL_STATE(7134)] = 164992, - [SMALL_STATE(7135)] = 165043, - [SMALL_STATE(7136)] = 165094, - [SMALL_STATE(7137)] = 165145, - [SMALL_STATE(7138)] = 165196, - [SMALL_STATE(7139)] = 165247, - [SMALL_STATE(7140)] = 165298, - [SMALL_STATE(7141)] = 165349, - [SMALL_STATE(7142)] = 165400, - [SMALL_STATE(7143)] = 165449, - [SMALL_STATE(7144)] = 165500, - [SMALL_STATE(7145)] = 165551, - [SMALL_STATE(7146)] = 165602, - [SMALL_STATE(7147)] = 165653, - [SMALL_STATE(7148)] = 165704, - [SMALL_STATE(7149)] = 165755, - [SMALL_STATE(7150)] = 165806, - [SMALL_STATE(7151)] = 165855, - [SMALL_STATE(7152)] = 165906, - [SMALL_STATE(7153)] = 165957, - [SMALL_STATE(7154)] = 166006, - [SMALL_STATE(7155)] = 166057, - [SMALL_STATE(7156)] = 166108, - [SMALL_STATE(7157)] = 166159, - [SMALL_STATE(7158)] = 166210, - [SMALL_STATE(7159)] = 166261, - [SMALL_STATE(7160)] = 166312, - [SMALL_STATE(7161)] = 166361, - [SMALL_STATE(7162)] = 166412, - [SMALL_STATE(7163)] = 166463, - [SMALL_STATE(7164)] = 166512, - [SMALL_STATE(7165)] = 166561, - [SMALL_STATE(7166)] = 166612, - [SMALL_STATE(7167)] = 166663, - [SMALL_STATE(7168)] = 166712, - [SMALL_STATE(7169)] = 166761, - [SMALL_STATE(7170)] = 166812, - [SMALL_STATE(7171)] = 166863, - [SMALL_STATE(7172)] = 166912, - [SMALL_STATE(7173)] = 166963, - [SMALL_STATE(7174)] = 167014, - [SMALL_STATE(7175)] = 167065, - [SMALL_STATE(7176)] = 167116, - [SMALL_STATE(7177)] = 167167, - [SMALL_STATE(7178)] = 167218, - [SMALL_STATE(7179)] = 167267, - [SMALL_STATE(7180)] = 167318, - [SMALL_STATE(7181)] = 167369, - [SMALL_STATE(7182)] = 167418, - [SMALL_STATE(7183)] = 167467, - [SMALL_STATE(7184)] = 167516, - [SMALL_STATE(7185)] = 167567, - [SMALL_STATE(7186)] = 167616, - [SMALL_STATE(7187)] = 167667, - [SMALL_STATE(7188)] = 167718, - [SMALL_STATE(7189)] = 167769, - [SMALL_STATE(7190)] = 167820, - [SMALL_STATE(7191)] = 167871, - [SMALL_STATE(7192)] = 167922, - [SMALL_STATE(7193)] = 167973, - [SMALL_STATE(7194)] = 168024, - [SMALL_STATE(7195)] = 168075, - [SMALL_STATE(7196)] = 168126, - [SMALL_STATE(7197)] = 168177, - [SMALL_STATE(7198)] = 168228, - [SMALL_STATE(7199)] = 168279, - [SMALL_STATE(7200)] = 168330, - [SMALL_STATE(7201)] = 168381, - [SMALL_STATE(7202)] = 168432, - [SMALL_STATE(7203)] = 168483, - [SMALL_STATE(7204)] = 168532, - [SMALL_STATE(7205)] = 168583, - [SMALL_STATE(7206)] = 168634, - [SMALL_STATE(7207)] = 168685, - [SMALL_STATE(7208)] = 168734, - [SMALL_STATE(7209)] = 168785, - [SMALL_STATE(7210)] = 168834, - [SMALL_STATE(7211)] = 168885, - [SMALL_STATE(7212)] = 168934, - [SMALL_STATE(7213)] = 168983, - [SMALL_STATE(7214)] = 169032, - [SMALL_STATE(7215)] = 169081, - [SMALL_STATE(7216)] = 169132, - [SMALL_STATE(7217)] = 169183, - [SMALL_STATE(7218)] = 169234, - [SMALL_STATE(7219)] = 169285, - [SMALL_STATE(7220)] = 169334, - [SMALL_STATE(7221)] = 169385, - [SMALL_STATE(7222)] = 169434, - [SMALL_STATE(7223)] = 169485, - [SMALL_STATE(7224)] = 169534, - [SMALL_STATE(7225)] = 169585, - [SMALL_STATE(7226)] = 169634, - [SMALL_STATE(7227)] = 169683, - [SMALL_STATE(7228)] = 169732, - [SMALL_STATE(7229)] = 169781, - [SMALL_STATE(7230)] = 169830, - [SMALL_STATE(7231)] = 169881, - [SMALL_STATE(7232)] = 169930, - [SMALL_STATE(7233)] = 169979, - [SMALL_STATE(7234)] = 170030, - [SMALL_STATE(7235)] = 170081, - [SMALL_STATE(7236)] = 170130, - [SMALL_STATE(7237)] = 170181, - [SMALL_STATE(7238)] = 170230, - [SMALL_STATE(7239)] = 170279, - [SMALL_STATE(7240)] = 170328, - [SMALL_STATE(7241)] = 170379, - [SMALL_STATE(7242)] = 170430, - [SMALL_STATE(7243)] = 170479, - [SMALL_STATE(7244)] = 170530, - [SMALL_STATE(7245)] = 170581, - [SMALL_STATE(7246)] = 170630, - [SMALL_STATE(7247)] = 170679, - [SMALL_STATE(7248)] = 170728, - [SMALL_STATE(7249)] = 170779, - [SMALL_STATE(7250)] = 170828, - [SMALL_STATE(7251)] = 170877, - [SMALL_STATE(7252)] = 170928, - [SMALL_STATE(7253)] = 170979, - [SMALL_STATE(7254)] = 171028, - [SMALL_STATE(7255)] = 171077, - [SMALL_STATE(7256)] = 171126, - [SMALL_STATE(7257)] = 171175, - [SMALL_STATE(7258)] = 171224, - [SMALL_STATE(7259)] = 171275, - [SMALL_STATE(7260)] = 171324, - [SMALL_STATE(7261)] = 171373, - [SMALL_STATE(7262)] = 171424, - [SMALL_STATE(7263)] = 171473, - [SMALL_STATE(7264)] = 171522, - [SMALL_STATE(7265)] = 171573, - [SMALL_STATE(7266)] = 171622, - [SMALL_STATE(7267)] = 171673, - [SMALL_STATE(7268)] = 171722, - [SMALL_STATE(7269)] = 171771, - [SMALL_STATE(7270)] = 171820, - [SMALL_STATE(7271)] = 171869, - [SMALL_STATE(7272)] = 171920, - [SMALL_STATE(7273)] = 171969, - [SMALL_STATE(7274)] = 172020, - [SMALL_STATE(7275)] = 172069, - [SMALL_STATE(7276)] = 172118, - [SMALL_STATE(7277)] = 172169, - [SMALL_STATE(7278)] = 172220, - [SMALL_STATE(7279)] = 172271, - [SMALL_STATE(7280)] = 172322, - [SMALL_STATE(7281)] = 172373, - [SMALL_STATE(7282)] = 172422, - [SMALL_STATE(7283)] = 172473, - [SMALL_STATE(7284)] = 172522, - [SMALL_STATE(7285)] = 172571, - [SMALL_STATE(7286)] = 172620, - [SMALL_STATE(7287)] = 172669, - [SMALL_STATE(7288)] = 172718, - [SMALL_STATE(7289)] = 172767, - [SMALL_STATE(7290)] = 172816, - [SMALL_STATE(7291)] = 172865, - [SMALL_STATE(7292)] = 172914, - [SMALL_STATE(7293)] = 172965, - [SMALL_STATE(7294)] = 173016, - [SMALL_STATE(7295)] = 173065, - [SMALL_STATE(7296)] = 173114, - [SMALL_STATE(7297)] = 173163, - [SMALL_STATE(7298)] = 173212, - [SMALL_STATE(7299)] = 173263, - [SMALL_STATE(7300)] = 173312, - [SMALL_STATE(7301)] = 173361, - [SMALL_STATE(7302)] = 173412, - [SMALL_STATE(7303)] = 173463, - [SMALL_STATE(7304)] = 173512, - [SMALL_STATE(7305)] = 173563, - [SMALL_STATE(7306)] = 173612, - [SMALL_STATE(7307)] = 173663, - [SMALL_STATE(7308)] = 173712, - [SMALL_STATE(7309)] = 173761, - [SMALL_STATE(7310)] = 173810, - [SMALL_STATE(7311)] = 173859, - [SMALL_STATE(7312)] = 173910, - [SMALL_STATE(7313)] = 173959, - [SMALL_STATE(7314)] = 174010, - [SMALL_STATE(7315)] = 174061, - [SMALL_STATE(7316)] = 174110, - [SMALL_STATE(7317)] = 174159, - [SMALL_STATE(7318)] = 174210, - [SMALL_STATE(7319)] = 174259, - [SMALL_STATE(7320)] = 174310, - [SMALL_STATE(7321)] = 174361, - [SMALL_STATE(7322)] = 174412, - [SMALL_STATE(7323)] = 174461, - [SMALL_STATE(7324)] = 174510, - [SMALL_STATE(7325)] = 174559, - [SMALL_STATE(7326)] = 174610, - [SMALL_STATE(7327)] = 174661, - [SMALL_STATE(7328)] = 174712, - [SMALL_STATE(7329)] = 174763, - [SMALL_STATE(7330)] = 174814, - [SMALL_STATE(7331)] = 174863, - [SMALL_STATE(7332)] = 174912, - [SMALL_STATE(7333)] = 174963, - [SMALL_STATE(7334)] = 175014, - [SMALL_STATE(7335)] = 175065, - [SMALL_STATE(7336)] = 175114, - [SMALL_STATE(7337)] = 175163, - [SMALL_STATE(7338)] = 175212, - [SMALL_STATE(7339)] = 175263, - [SMALL_STATE(7340)] = 175312, - [SMALL_STATE(7341)] = 175361, - [SMALL_STATE(7342)] = 175410, - [SMALL_STATE(7343)] = 175459, - [SMALL_STATE(7344)] = 175510, - [SMALL_STATE(7345)] = 175559, - [SMALL_STATE(7346)] = 175608, - [SMALL_STATE(7347)] = 175659, - [SMALL_STATE(7348)] = 175708, - [SMALL_STATE(7349)] = 175759, - [SMALL_STATE(7350)] = 175808, - [SMALL_STATE(7351)] = 175857, - [SMALL_STATE(7352)] = 175906, - [SMALL_STATE(7353)] = 175955, - [SMALL_STATE(7354)] = 176006, - [SMALL_STATE(7355)] = 176055, - [SMALL_STATE(7356)] = 176106, - [SMALL_STATE(7357)] = 176155, - [SMALL_STATE(7358)] = 176204, - [SMALL_STATE(7359)] = 176253, - [SMALL_STATE(7360)] = 176304, - [SMALL_STATE(7361)] = 176355, - [SMALL_STATE(7362)] = 176404, - [SMALL_STATE(7363)] = 176455, - [SMALL_STATE(7364)] = 176506, - [SMALL_STATE(7365)] = 176557, - [SMALL_STATE(7366)] = 176606, - [SMALL_STATE(7367)] = 176655, - [SMALL_STATE(7368)] = 176706, - [SMALL_STATE(7369)] = 176757, - [SMALL_STATE(7370)] = 176806, - [SMALL_STATE(7371)] = 176855, - [SMALL_STATE(7372)] = 176904, - [SMALL_STATE(7373)] = 176953, - [SMALL_STATE(7374)] = 177004, - [SMALL_STATE(7375)] = 177053, - [SMALL_STATE(7376)] = 177102, - [SMALL_STATE(7377)] = 177146, - [SMALL_STATE(7378)] = 177194, - [SMALL_STATE(7379)] = 177238, - [SMALL_STATE(7380)] = 177282, - [SMALL_STATE(7381)] = 177326, - [SMALL_STATE(7382)] = 177370, - [SMALL_STATE(7383)] = 177414, - [SMALL_STATE(7384)] = 177462, - [SMALL_STATE(7385)] = 177506, - [SMALL_STATE(7386)] = 177554, - [SMALL_STATE(7387)] = 177602, - [SMALL_STATE(7388)] = 177646, - [SMALL_STATE(7389)] = 177690, - [SMALL_STATE(7390)] = 177734, - [SMALL_STATE(7391)] = 177778, - [SMALL_STATE(7392)] = 177822, - [SMALL_STATE(7393)] = 177866, - [SMALL_STATE(7394)] = 177914, - [SMALL_STATE(7395)] = 177958, - [SMALL_STATE(7396)] = 178006, - [SMALL_STATE(7397)] = 178050, - [SMALL_STATE(7398)] = 178098, - [SMALL_STATE(7399)] = 178142, - [SMALL_STATE(7400)] = 178170, - [SMALL_STATE(7401)] = 178214, - [SMALL_STATE(7402)] = 178258, - [SMALL_STATE(7403)] = 178288, - [SMALL_STATE(7404)] = 178332, - [SMALL_STATE(7405)] = 178380, - [SMALL_STATE(7406)] = 178424, - [SMALL_STATE(7407)] = 178472, - [SMALL_STATE(7408)] = 178516, - [SMALL_STATE(7409)] = 178560, - [SMALL_STATE(7410)] = 178604, - [SMALL_STATE(7411)] = 178648, - [SMALL_STATE(7412)] = 178684, - [SMALL_STATE(7413)] = 178728, - [SMALL_STATE(7414)] = 178772, - [SMALL_STATE(7415)] = 178816, - [SMALL_STATE(7416)] = 178864, - [SMALL_STATE(7417)] = 178908, - [SMALL_STATE(7418)] = 178952, - [SMALL_STATE(7419)] = 178996, - [SMALL_STATE(7420)] = 179044, - [SMALL_STATE(7421)] = 179088, - [SMALL_STATE(7422)] = 179136, - [SMALL_STATE(7423)] = 179180, - [SMALL_STATE(7424)] = 179224, - [SMALL_STATE(7425)] = 179268, - [SMALL_STATE(7426)] = 179312, - [SMALL_STATE(7427)] = 179356, - [SMALL_STATE(7428)] = 179400, - [SMALL_STATE(7429)] = 179448, - [SMALL_STATE(7430)] = 179492, - [SMALL_STATE(7431)] = 179536, - [SMALL_STATE(7432)] = 179580, - [SMALL_STATE(7433)] = 179624, - [SMALL_STATE(7434)] = 179668, - [SMALL_STATE(7435)] = 179712, - [SMALL_STATE(7436)] = 179750, - [SMALL_STATE(7437)] = 179794, - [SMALL_STATE(7438)] = 179842, - [SMALL_STATE(7439)] = 179886, - [SMALL_STATE(7440)] = 179930, - [SMALL_STATE(7441)] = 179974, - [SMALL_STATE(7442)] = 180018, - [SMALL_STATE(7443)] = 180066, - [SMALL_STATE(7444)] = 180102, - [SMALL_STATE(7445)] = 180146, - [SMALL_STATE(7446)] = 180190, - [SMALL_STATE(7447)] = 180222, - [SMALL_STATE(7448)] = 180266, - [SMALL_STATE(7449)] = 180310, - [SMALL_STATE(7450)] = 180348, - [SMALL_STATE(7451)] = 180392, - [SMALL_STATE(7452)] = 180436, - [SMALL_STATE(7453)] = 180467, - [SMALL_STATE(7454)] = 180502, - [SMALL_STATE(7455)] = 180533, - [SMALL_STATE(7456)] = 180564, - [SMALL_STATE(7457)] = 180599, - [SMALL_STATE(7458)] = 180626, - [SMALL_STATE(7459)] = 180657, - [SMALL_STATE(7460)] = 180700, - [SMALL_STATE(7461)] = 180727, - [SMALL_STATE(7462)] = 180762, - [SMALL_STATE(7463)] = 180797, - [SMALL_STATE(7464)] = 180828, - [SMALL_STATE(7465)] = 180863, - [SMALL_STATE(7466)] = 180903, - [SMALL_STATE(7467)] = 180943, - [SMALL_STATE(7468)] = 180969, - [SMALL_STATE(7469)] = 181009, - [SMALL_STATE(7470)] = 181049, - [SMALL_STATE(7471)] = 181089, - [SMALL_STATE(7472)] = 181129, - [SMALL_STATE(7473)] = 181169, - [SMALL_STATE(7474)] = 181209, - [SMALL_STATE(7475)] = 181249, - [SMALL_STATE(7476)] = 181289, - [SMALL_STATE(7477)] = 181329, - [SMALL_STATE(7478)] = 181369, - [SMALL_STATE(7479)] = 181409, - [SMALL_STATE(7480)] = 181449, - [SMALL_STATE(7481)] = 181489, - [SMALL_STATE(7482)] = 181529, - [SMALL_STATE(7483)] = 181569, - [SMALL_STATE(7484)] = 181609, - [SMALL_STATE(7485)] = 181649, - [SMALL_STATE(7486)] = 181689, - [SMALL_STATE(7487)] = 181729, - [SMALL_STATE(7488)] = 181769, - [SMALL_STATE(7489)] = 181809, - [SMALL_STATE(7490)] = 181837, - [SMALL_STATE(7491)] = 181877, - [SMALL_STATE(7492)] = 181917, - [SMALL_STATE(7493)] = 181957, - [SMALL_STATE(7494)] = 181997, - [SMALL_STATE(7495)] = 182027, - [SMALL_STATE(7496)] = 182067, - [SMALL_STATE(7497)] = 182107, - [SMALL_STATE(7498)] = 182135, - [SMALL_STATE(7499)] = 182175, - [SMALL_STATE(7500)] = 182201, - [SMALL_STATE(7501)] = 182241, - [SMALL_STATE(7502)] = 182281, - [SMALL_STATE(7503)] = 182307, - [SMALL_STATE(7504)] = 182347, - [SMALL_STATE(7505)] = 182387, - [SMALL_STATE(7506)] = 182427, - [SMALL_STATE(7507)] = 182467, - [SMALL_STATE(7508)] = 182507, - [SMALL_STATE(7509)] = 182547, - [SMALL_STATE(7510)] = 182587, - [SMALL_STATE(7511)] = 182613, - [SMALL_STATE(7512)] = 182653, - [SMALL_STATE(7513)] = 182693, - [SMALL_STATE(7514)] = 182733, - [SMALL_STATE(7515)] = 182773, - [SMALL_STATE(7516)] = 182813, - [SMALL_STATE(7517)] = 182853, - [SMALL_STATE(7518)] = 182893, - [SMALL_STATE(7519)] = 182933, - [SMALL_STATE(7520)] = 182963, - [SMALL_STATE(7521)] = 183003, - [SMALL_STATE(7522)] = 183040, - [SMALL_STATE(7523)] = 183077, - [SMALL_STATE(7524)] = 183116, - [SMALL_STATE(7525)] = 183141, - [SMALL_STATE(7526)] = 183178, - [SMALL_STATE(7527)] = 183217, - [SMALL_STATE(7528)] = 183244, - [SMALL_STATE(7529)] = 183269, - [SMALL_STATE(7530)] = 183306, - [SMALL_STATE(7531)] = 183345, - [SMALL_STATE(7532)] = 183382, - [SMALL_STATE(7533)] = 183419, - [SMALL_STATE(7534)] = 183456, - [SMALL_STATE(7535)] = 183485, - [SMALL_STATE(7536)] = 183522, - [SMALL_STATE(7537)] = 183559, - [SMALL_STATE(7538)] = 183598, - [SMALL_STATE(7539)] = 183637, - [SMALL_STATE(7540)] = 183674, - [SMALL_STATE(7541)] = 183703, - [SMALL_STATE(7542)] = 183740, - [SMALL_STATE(7543)] = 183777, - [SMALL_STATE(7544)] = 183814, - [SMALL_STATE(7545)] = 183851, - [SMALL_STATE(7546)] = 183888, - [SMALL_STATE(7547)] = 183925, - [SMALL_STATE(7548)] = 183964, - [SMALL_STATE(7549)] = 183989, - [SMALL_STATE(7550)] = 184026, - [SMALL_STATE(7551)] = 184051, - [SMALL_STATE(7552)] = 184088, - [SMALL_STATE(7553)] = 184125, - [SMALL_STATE(7554)] = 184162, - [SMALL_STATE(7555)] = 184201, - [SMALL_STATE(7556)] = 184226, - [SMALL_STATE(7557)] = 184251, - [SMALL_STATE(7558)] = 184288, - [SMALL_STATE(7559)] = 184313, - [SMALL_STATE(7560)] = 184338, - [SMALL_STATE(7561)] = 184375, - [SMALL_STATE(7562)] = 184414, - [SMALL_STATE(7563)] = 184439, - [SMALL_STATE(7564)] = 184476, - [SMALL_STATE(7565)] = 184513, - [SMALL_STATE(7566)] = 184542, - [SMALL_STATE(7567)] = 184581, - [SMALL_STATE(7568)] = 184620, - [SMALL_STATE(7569)] = 184657, - [SMALL_STATE(7570)] = 184696, - [SMALL_STATE(7571)] = 184733, - [SMALL_STATE(7572)] = 184772, - [SMALL_STATE(7573)] = 184809, - [SMALL_STATE(7574)] = 184846, - [SMALL_STATE(7575)] = 184883, - [SMALL_STATE(7576)] = 184920, - [SMALL_STATE(7577)] = 184957, - [SMALL_STATE(7578)] = 184994, - [SMALL_STATE(7579)] = 185019, - [SMALL_STATE(7580)] = 185044, - [SMALL_STATE(7581)] = 185081, - [SMALL_STATE(7582)] = 185106, - [SMALL_STATE(7583)] = 185143, - [SMALL_STATE(7584)] = 185180, - [SMALL_STATE(7585)] = 185217, - [SMALL_STATE(7586)] = 185254, - [SMALL_STATE(7587)] = 185291, - [SMALL_STATE(7588)] = 185328, - [SMALL_STATE(7589)] = 185365, - [SMALL_STATE(7590)] = 185402, - [SMALL_STATE(7591)] = 185439, - [SMALL_STATE(7592)] = 185470, - [SMALL_STATE(7593)] = 185507, - [SMALL_STATE(7594)] = 185544, - [SMALL_STATE(7595)] = 185573, - [SMALL_STATE(7596)] = 185602, - [SMALL_STATE(7597)] = 185639, - [SMALL_STATE(7598)] = 185676, - [SMALL_STATE(7599)] = 185715, - [SMALL_STATE(7600)] = 185752, - [SMALL_STATE(7601)] = 185788, - [SMALL_STATE(7602)] = 185820, - [SMALL_STATE(7603)] = 185856, - [SMALL_STATE(7604)] = 185892, - [SMALL_STATE(7605)] = 185928, - [SMALL_STATE(7606)] = 185960, - [SMALL_STATE(7607)] = 185996, - [SMALL_STATE(7608)] = 186032, - [SMALL_STATE(7609)] = 186064, - [SMALL_STATE(7610)] = 186096, - [SMALL_STATE(7611)] = 186132, - [SMALL_STATE(7612)] = 186168, - [SMALL_STATE(7613)] = 186192, - [SMALL_STATE(7614)] = 186228, - [SMALL_STATE(7615)] = 186264, - [SMALL_STATE(7616)] = 186300, - [SMALL_STATE(7617)] = 186332, - [SMALL_STATE(7618)] = 186368, - [SMALL_STATE(7619)] = 186404, - [SMALL_STATE(7620)] = 186442, - [SMALL_STATE(7621)] = 186474, - [SMALL_STATE(7622)] = 186510, - [SMALL_STATE(7623)] = 186542, - [SMALL_STATE(7624)] = 186578, - [SMALL_STATE(7625)] = 186610, - [SMALL_STATE(7626)] = 186646, - [SMALL_STATE(7627)] = 186682, - [SMALL_STATE(7628)] = 186718, - [SMALL_STATE(7629)] = 186750, - [SMALL_STATE(7630)] = 186782, - [SMALL_STATE(7631)] = 186814, - [SMALL_STATE(7632)] = 186850, - [SMALL_STATE(7633)] = 186886, - [SMALL_STATE(7634)] = 186918, - [SMALL_STATE(7635)] = 186954, - [SMALL_STATE(7636)] = 186986, - [SMALL_STATE(7637)] = 187022, - [SMALL_STATE(7638)] = 187058, - [SMALL_STATE(7639)] = 187094, - [SMALL_STATE(7640)] = 187130, - [SMALL_STATE(7641)] = 187166, - [SMALL_STATE(7642)] = 187202, - [SMALL_STATE(7643)] = 187238, - [SMALL_STATE(7644)] = 187262, - [SMALL_STATE(7645)] = 187298, - [SMALL_STATE(7646)] = 187330, - [SMALL_STATE(7647)] = 187362, - [SMALL_STATE(7648)] = 187398, - [SMALL_STATE(7649)] = 187430, - [SMALL_STATE(7650)] = 187466, - [SMALL_STATE(7651)] = 187498, - [SMALL_STATE(7652)] = 187534, - [SMALL_STATE(7653)] = 187570, - [SMALL_STATE(7654)] = 187606, - [SMALL_STATE(7655)] = 187642, - [SMALL_STATE(7656)] = 187678, - [SMALL_STATE(7657)] = 187714, - [SMALL_STATE(7658)] = 187746, - [SMALL_STATE(7659)] = 187778, - [SMALL_STATE(7660)] = 187814, - [SMALL_STATE(7661)] = 187850, - [SMALL_STATE(7662)] = 187882, - [SMALL_STATE(7663)] = 187918, - [SMALL_STATE(7664)] = 187954, - [SMALL_STATE(7665)] = 187990, - [SMALL_STATE(7666)] = 188026, - [SMALL_STATE(7667)] = 188060, - [SMALL_STATE(7668)] = 188096, - [SMALL_STATE(7669)] = 188132, - [SMALL_STATE(7670)] = 188164, - [SMALL_STATE(7671)] = 188200, - [SMALL_STATE(7672)] = 188236, - [SMALL_STATE(7673)] = 188272, - [SMALL_STATE(7674)] = 188304, - [SMALL_STATE(7675)] = 188340, - [SMALL_STATE(7676)] = 188376, - [SMALL_STATE(7677)] = 188412, - [SMALL_STATE(7678)] = 188444, - [SMALL_STATE(7679)] = 188480, - [SMALL_STATE(7680)] = 188516, - [SMALL_STATE(7681)] = 188552, - [SMALL_STATE(7682)] = 188584, - [SMALL_STATE(7683)] = 188620, - [SMALL_STATE(7684)] = 188656, - [SMALL_STATE(7685)] = 188684, - [SMALL_STATE(7686)] = 188720, - [SMALL_STATE(7687)] = 188752, - [SMALL_STATE(7688)] = 188784, - [SMALL_STATE(7689)] = 188820, - [SMALL_STATE(7690)] = 188856, - [SMALL_STATE(7691)] = 188892, - [SMALL_STATE(7692)] = 188928, - [SMALL_STATE(7693)] = 188964, - [SMALL_STATE(7694)] = 189000, - [SMALL_STATE(7695)] = 189032, - [SMALL_STATE(7696)] = 189060, - [SMALL_STATE(7697)] = 189092, - [SMALL_STATE(7698)] = 189128, - [SMALL_STATE(7699)] = 189160, - [SMALL_STATE(7700)] = 189196, - [SMALL_STATE(7701)] = 189232, - [SMALL_STATE(7702)] = 189268, - [SMALL_STATE(7703)] = 189300, - [SMALL_STATE(7704)] = 189336, - [SMALL_STATE(7705)] = 189372, - [SMALL_STATE(7706)] = 189408, - [SMALL_STATE(7707)] = 189444, - [SMALL_STATE(7708)] = 189480, - [SMALL_STATE(7709)] = 189516, - [SMALL_STATE(7710)] = 189552, - [SMALL_STATE(7711)] = 189584, - [SMALL_STATE(7712)] = 189616, - [SMALL_STATE(7713)] = 189648, - [SMALL_STATE(7714)] = 189684, - [SMALL_STATE(7715)] = 189716, - [SMALL_STATE(7716)] = 189748, - [SMALL_STATE(7717)] = 189784, - [SMALL_STATE(7718)] = 189820, - [SMALL_STATE(7719)] = 189856, - [SMALL_STATE(7720)] = 189892, - [SMALL_STATE(7721)] = 189924, - [SMALL_STATE(7722)] = 189956, - [SMALL_STATE(7723)] = 189980, - [SMALL_STATE(7724)] = 190016, - [SMALL_STATE(7725)] = 190048, - [SMALL_STATE(7726)] = 190080, - [SMALL_STATE(7727)] = 190116, - [SMALL_STATE(7728)] = 190152, - [SMALL_STATE(7729)] = 190188, - [SMALL_STATE(7730)] = 190224, - [SMALL_STATE(7731)] = 190256, - [SMALL_STATE(7732)] = 190292, - [SMALL_STATE(7733)] = 190324, - [SMALL_STATE(7734)] = 190356, - [SMALL_STATE(7735)] = 190392, - [SMALL_STATE(7736)] = 190424, - [SMALL_STATE(7737)] = 190448, - [SMALL_STATE(7738)] = 190472, - [SMALL_STATE(7739)] = 190508, - [SMALL_STATE(7740)] = 190544, - [SMALL_STATE(7741)] = 190576, - [SMALL_STATE(7742)] = 190612, - [SMALL_STATE(7743)] = 190648, - [SMALL_STATE(7744)] = 190684, - [SMALL_STATE(7745)] = 190720, - [SMALL_STATE(7746)] = 190744, - [SMALL_STATE(7747)] = 190776, - [SMALL_STATE(7748)] = 190812, - [SMALL_STATE(7749)] = 190848, - [SMALL_STATE(7750)] = 190880, - [SMALL_STATE(7751)] = 190912, - [SMALL_STATE(7752)] = 190948, - [SMALL_STATE(7753)] = 190980, - [SMALL_STATE(7754)] = 191016, - [SMALL_STATE(7755)] = 191048, - [SMALL_STATE(7756)] = 191084, - [SMALL_STATE(7757)] = 191108, - [SMALL_STATE(7758)] = 191144, - [SMALL_STATE(7759)] = 191180, - [SMALL_STATE(7760)] = 191212, - [SMALL_STATE(7761)] = 191244, - [SMALL_STATE(7762)] = 191280, - [SMALL_STATE(7763)] = 191312, - [SMALL_STATE(7764)] = 191348, - [SMALL_STATE(7765)] = 191384, - [SMALL_STATE(7766)] = 191420, - [SMALL_STATE(7767)] = 191452, - [SMALL_STATE(7768)] = 191484, - [SMALL_STATE(7769)] = 191520, - [SMALL_STATE(7770)] = 191552, - [SMALL_STATE(7771)] = 191588, - [SMALL_STATE(7772)] = 191624, - [SMALL_STATE(7773)] = 191660, - [SMALL_STATE(7774)] = 191696, - [SMALL_STATE(7775)] = 191728, - [SMALL_STATE(7776)] = 191764, - [SMALL_STATE(7777)] = 191796, - [SMALL_STATE(7778)] = 191832, - [SMALL_STATE(7779)] = 191868, - [SMALL_STATE(7780)] = 191904, - [SMALL_STATE(7781)] = 191940, - [SMALL_STATE(7782)] = 191972, - [SMALL_STATE(7783)] = 192004, - [SMALL_STATE(7784)] = 192040, - [SMALL_STATE(7785)] = 192076, - [SMALL_STATE(7786)] = 192112, - [SMALL_STATE(7787)] = 192148, - [SMALL_STATE(7788)] = 192184, - [SMALL_STATE(7789)] = 192216, - [SMALL_STATE(7790)] = 192252, - [SMALL_STATE(7791)] = 192288, - [SMALL_STATE(7792)] = 192320, - [SMALL_STATE(7793)] = 192356, - [SMALL_STATE(7794)] = 192388, - [SMALL_STATE(7795)] = 192420, - [SMALL_STATE(7796)] = 192452, - [SMALL_STATE(7797)] = 192484, - [SMALL_STATE(7798)] = 192520, - [SMALL_STATE(7799)] = 192556, - [SMALL_STATE(7800)] = 192588, - [SMALL_STATE(7801)] = 192620, - [SMALL_STATE(7802)] = 192656, - [SMALL_STATE(7803)] = 192692, - [SMALL_STATE(7804)] = 192730, - [SMALL_STATE(7805)] = 192762, - [SMALL_STATE(7806)] = 192794, - [SMALL_STATE(7807)] = 192826, - [SMALL_STATE(7808)] = 192858, - [SMALL_STATE(7809)] = 192894, - [SMALL_STATE(7810)] = 192926, - [SMALL_STATE(7811)] = 192962, - [SMALL_STATE(7812)] = 192998, - [SMALL_STATE(7813)] = 193034, - [SMALL_STATE(7814)] = 193070, - [SMALL_STATE(7815)] = 193102, - [SMALL_STATE(7816)] = 193138, - [SMALL_STATE(7817)] = 193174, - [SMALL_STATE(7818)] = 193206, - [SMALL_STATE(7819)] = 193242, - [SMALL_STATE(7820)] = 193270, - [SMALL_STATE(7821)] = 193302, - [SMALL_STATE(7822)] = 193338, - [SMALL_STATE(7823)] = 193374, - [SMALL_STATE(7824)] = 193406, - [SMALL_STATE(7825)] = 193442, - [SMALL_STATE(7826)] = 193470, - [SMALL_STATE(7827)] = 193506, - [SMALL_STATE(7828)] = 193538, - [SMALL_STATE(7829)] = 193574, - [SMALL_STATE(7830)] = 193610, - [SMALL_STATE(7831)] = 193646, - [SMALL_STATE(7832)] = 193678, - [SMALL_STATE(7833)] = 193714, - [SMALL_STATE(7834)] = 193750, - [SMALL_STATE(7835)] = 193782, - [SMALL_STATE(7836)] = 193814, - [SMALL_STATE(7837)] = 193846, - [SMALL_STATE(7838)] = 193882, - [SMALL_STATE(7839)] = 193918, - [SMALL_STATE(7840)] = 193954, - [SMALL_STATE(7841)] = 193990, - [SMALL_STATE(7842)] = 194020, - [SMALL_STATE(7843)] = 194056, - [SMALL_STATE(7844)] = 194092, - [SMALL_STATE(7845)] = 194127, - [SMALL_STATE(7846)] = 194162, - [SMALL_STATE(7847)] = 194195, - [SMALL_STATE(7848)] = 194230, - [SMALL_STATE(7849)] = 194263, - [SMALL_STATE(7850)] = 194286, - [SMALL_STATE(7851)] = 194319, - [SMALL_STATE(7852)] = 194354, - [SMALL_STATE(7853)] = 194389, - [SMALL_STATE(7854)] = 194422, - [SMALL_STATE(7855)] = 194457, - [SMALL_STATE(7856)] = 194490, - [SMALL_STATE(7857)] = 194525, - [SMALL_STATE(7858)] = 194560, - [SMALL_STATE(7859)] = 194595, - [SMALL_STATE(7860)] = 194628, - [SMALL_STATE(7861)] = 194663, - [SMALL_STATE(7862)] = 194696, - [SMALL_STATE(7863)] = 194731, - [SMALL_STATE(7864)] = 194764, - [SMALL_STATE(7865)] = 194799, - [SMALL_STATE(7866)] = 194834, - [SMALL_STATE(7867)] = 194869, - [SMALL_STATE(7868)] = 194904, - [SMALL_STATE(7869)] = 194939, - [SMALL_STATE(7870)] = 194972, - [SMALL_STATE(7871)] = 195005, - [SMALL_STATE(7872)] = 195040, - [SMALL_STATE(7873)] = 195075, - [SMALL_STATE(7874)] = 195108, - [SMALL_STATE(7875)] = 195143, - [SMALL_STATE(7876)] = 195176, - [SMALL_STATE(7877)] = 195209, - [SMALL_STATE(7878)] = 195242, - [SMALL_STATE(7879)] = 195277, - [SMALL_STATE(7880)] = 195312, - [SMALL_STATE(7881)] = 195347, - [SMALL_STATE(7882)] = 195380, - [SMALL_STATE(7883)] = 195415, + [SMALL_STATE(4533)] = 0, + [SMALL_STATE(4534)] = 85, + [SMALL_STATE(4535)] = 156, + [SMALL_STATE(4536)] = 241, + [SMALL_STATE(4537)] = 326, + [SMALL_STATE(4538)] = 397, + [SMALL_STATE(4539)] = 472, + [SMALL_STATE(4540)] = 557, + [SMALL_STATE(4541)] = 632, + [SMALL_STATE(4542)] = 707, + [SMALL_STATE(4543)] = 782, + [SMALL_STATE(4544)] = 867, + [SMALL_STATE(4545)] = 942, + [SMALL_STATE(4546)] = 1013, + [SMALL_STATE(4547)] = 1088, + [SMALL_STATE(4548)] = 1159, + [SMALL_STATE(4549)] = 1233, + [SMALL_STATE(4550)] = 1319, + [SMALL_STATE(4551)] = 1389, + [SMALL_STATE(4552)] = 1475, + [SMALL_STATE(4553)] = 1555, + [SMALL_STATE(4554)] = 1635, + [SMALL_STATE(4555)] = 1705, + [SMALL_STATE(4556)] = 1783, + [SMALL_STATE(4557)] = 1863, + [SMALL_STATE(4558)] = 1943, + [SMALL_STATE(4559)] = 2023, + [SMALL_STATE(4560)] = 2097, + [SMALL_STATE(4561)] = 2177, + [SMALL_STATE(4562)] = 2257, + [SMALL_STATE(4563)] = 2337, + [SMALL_STATE(4564)] = 2417, + [SMALL_STATE(4565)] = 2497, + [SMALL_STATE(4566)] = 2577, + [SMALL_STATE(4567)] = 2655, + [SMALL_STATE(4568)] = 2729, + [SMALL_STATE(4569)] = 2803, + [SMALL_STATE(4570)] = 2877, + [SMALL_STATE(4571)] = 2959, + [SMALL_STATE(4572)] = 3041, + [SMALL_STATE(4573)] = 3123, + [SMALL_STATE(4574)] = 3195, + [SMALL_STATE(4575)] = 3269, + [SMALL_STATE(4576)] = 3339, + [SMALL_STATE(4577)] = 3421, + [SMALL_STATE(4578)] = 3491, + [SMALL_STATE(4579)] = 3563, + [SMALL_STATE(4580)] = 3645, + [SMALL_STATE(4581)] = 3719, + [SMALL_STATE(4582)] = 3796, + [SMALL_STATE(4583)] = 3873, + [SMALL_STATE(4584)] = 3950, + [SMALL_STATE(4585)] = 4027, + [SMALL_STATE(4586)] = 4104, + [SMALL_STATE(4587)] = 4181, + [SMALL_STATE(4588)] = 4254, + [SMALL_STATE(4589)] = 4331, + [SMALL_STATE(4590)] = 4408, + [SMALL_STATE(4591)] = 4485, + [SMALL_STATE(4592)] = 4560, + [SMALL_STATE(4593)] = 4637, + [SMALL_STATE(4594)] = 4706, + [SMALL_STATE(4595)] = 4775, + [SMALL_STATE(4596)] = 4850, + [SMALL_STATE(4597)] = 4919, + [SMALL_STATE(4598)] = 4996, + [SMALL_STATE(4599)] = 5065, + [SMALL_STATE(4600)] = 5142, + [SMALL_STATE(4601)] = 5219, + [SMALL_STATE(4602)] = 5296, + [SMALL_STATE(4603)] = 5373, + [SMALL_STATE(4604)] = 5444, + [SMALL_STATE(4605)] = 5513, + [SMALL_STATE(4606)] = 5582, + [SMALL_STATE(4607)] = 5659, + [SMALL_STATE(4608)] = 5736, + [SMALL_STATE(4609)] = 5805, + [SMALL_STATE(4610)] = 5874, + [SMALL_STATE(4611)] = 5943, + [SMALL_STATE(4612)] = 6020, + [SMALL_STATE(4613)] = 6089, + [SMALL_STATE(4614)] = 6162, + [SMALL_STATE(4615)] = 6239, + [SMALL_STATE(4616)] = 6316, + [SMALL_STATE(4617)] = 6389, + [SMALL_STATE(4618)] = 6466, + [SMALL_STATE(4619)] = 6543, + [SMALL_STATE(4620)] = 6620, + [SMALL_STATE(4621)] = 6692, + [SMALL_STATE(4622)] = 6764, + [SMALL_STATE(4623)] = 6832, + [SMALL_STATE(4624)] = 6900, + [SMALL_STATE(4625)] = 6972, + [SMALL_STATE(4626)] = 7044, + [SMALL_STATE(4627)] = 7116, + [SMALL_STATE(4628)] = 7188, + [SMALL_STATE(4629)] = 7260, + [SMALL_STATE(4630)] = 7332, + [SMALL_STATE(4631)] = 7414, + [SMALL_STATE(4632)] = 7482, + [SMALL_STATE(4633)] = 7550, + [SMALL_STATE(4634)] = 7622, + [SMALL_STATE(4635)] = 7694, + [SMALL_STATE(4636)] = 7764, + [SMALL_STATE(4637)] = 7834, + [SMALL_STATE(4638)] = 7902, + [SMALL_STATE(4639)] = 7970, + [SMALL_STATE(4640)] = 8038, + [SMALL_STATE(4641)] = 8120, + [SMALL_STATE(4642)] = 8192, + [SMALL_STATE(4643)] = 8274, + [SMALL_STATE(4644)] = 8346, + [SMALL_STATE(4645)] = 8418, + [SMALL_STATE(4646)] = 8490, + [SMALL_STATE(4647)] = 8562, + [SMALL_STATE(4648)] = 8644, + [SMALL_STATE(4649)] = 8716, + [SMALL_STATE(4650)] = 8798, + [SMALL_STATE(4651)] = 8870, + [SMALL_STATE(4652)] = 8952, + [SMALL_STATE(4653)] = 9024, + [SMALL_STATE(4654)] = 9096, + [SMALL_STATE(4655)] = 9164, + [SMALL_STATE(4656)] = 9246, + [SMALL_STATE(4657)] = 9314, + [SMALL_STATE(4658)] = 9386, + [SMALL_STATE(4659)] = 9458, + [SMALL_STATE(4660)] = 9530, + [SMALL_STATE(4661)] = 9602, + [SMALL_STATE(4662)] = 9684, + [SMALL_STATE(4663)] = 9752, + [SMALL_STATE(4664)] = 9824, + [SMALL_STATE(4665)] = 9892, + [SMALL_STATE(4666)] = 9962, + [SMALL_STATE(4667)] = 10030, + [SMALL_STATE(4668)] = 10112, + [SMALL_STATE(4669)] = 10182, + [SMALL_STATE(4670)] = 10250, + [SMALL_STATE(4671)] = 10320, + [SMALL_STATE(4672)] = 10388, + [SMALL_STATE(4673)] = 10460, + [SMALL_STATE(4674)] = 10542, + [SMALL_STATE(4675)] = 10610, + [SMALL_STATE(4676)] = 10678, + [SMALL_STATE(4677)] = 10750, + [SMALL_STATE(4678)] = 10822, + [SMALL_STATE(4679)] = 10894, + [SMALL_STATE(4680)] = 10966, + [SMALL_STATE(4681)] = 11036, + [SMALL_STATE(4682)] = 11108, + [SMALL_STATE(4683)] = 11180, + [SMALL_STATE(4684)] = 11252, + [SMALL_STATE(4685)] = 11322, + [SMALL_STATE(4686)] = 11390, + [SMALL_STATE(4687)] = 11472, + [SMALL_STATE(4688)] = 11554, + [SMALL_STATE(4689)] = 11622, + [SMALL_STATE(4690)] = 11694, + [SMALL_STATE(4691)] = 11766, + [SMALL_STATE(4692)] = 11838, + [SMALL_STATE(4693)] = 11906, + [SMALL_STATE(4694)] = 11974, + [SMALL_STATE(4695)] = 12046, + [SMALL_STATE(4696)] = 12128, + [SMALL_STATE(4697)] = 12210, + [SMALL_STATE(4698)] = 12292, + [SMALL_STATE(4699)] = 12359, + [SMALL_STATE(4700)] = 12426, + [SMALL_STATE(4701)] = 12493, + [SMALL_STATE(4702)] = 12560, + [SMALL_STATE(4703)] = 12627, + [SMALL_STATE(4704)] = 12694, + [SMALL_STATE(4705)] = 12773, + [SMALL_STATE(4706)] = 12840, + [SMALL_STATE(4707)] = 12907, + [SMALL_STATE(4708)] = 12986, + [SMALL_STATE(4709)] = 13057, + [SMALL_STATE(4710)] = 13124, + [SMALL_STATE(4711)] = 13191, + [SMALL_STATE(4712)] = 13258, + [SMALL_STATE(4713)] = 13339, + [SMALL_STATE(4714)] = 13406, + [SMALL_STATE(4715)] = 13473, + [SMALL_STATE(4716)] = 13540, + [SMALL_STATE(4717)] = 13607, + [SMALL_STATE(4718)] = 13676, + [SMALL_STATE(4719)] = 13745, + [SMALL_STATE(4720)] = 13812, + [SMALL_STATE(4721)] = 13891, + [SMALL_STATE(4722)] = 13960, + [SMALL_STATE(4723)] = 14029, + [SMALL_STATE(4724)] = 14100, + [SMALL_STATE(4725)] = 14167, + [SMALL_STATE(4726)] = 14248, + [SMALL_STATE(4727)] = 14315, + [SMALL_STATE(4728)] = 14382, + [SMALL_STATE(4729)] = 14449, + [SMALL_STATE(4730)] = 14516, + [SMALL_STATE(4731)] = 14583, + [SMALL_STATE(4732)] = 14650, + [SMALL_STATE(4733)] = 14717, + [SMALL_STATE(4734)] = 14786, + [SMALL_STATE(4735)] = 14853, + [SMALL_STATE(4736)] = 14920, + [SMALL_STATE(4737)] = 14987, + [SMALL_STATE(4738)] = 15054, + [SMALL_STATE(4739)] = 15125, + [SMALL_STATE(4740)] = 15192, + [SMALL_STATE(4741)] = 15259, + [SMALL_STATE(4742)] = 15336, + [SMALL_STATE(4743)] = 15403, + [SMALL_STATE(4744)] = 15482, + [SMALL_STATE(4745)] = 15549, + [SMALL_STATE(4746)] = 15616, + [SMALL_STATE(4747)] = 15683, + [SMALL_STATE(4748)] = 15762, + [SMALL_STATE(4749)] = 15829, + [SMALL_STATE(4750)] = 15896, + [SMALL_STATE(4751)] = 15963, + [SMALL_STATE(4752)] = 16032, + [SMALL_STATE(4753)] = 16099, + [SMALL_STATE(4754)] = 16166, + [SMALL_STATE(4755)] = 16235, + [SMALL_STATE(4756)] = 16312, + [SMALL_STATE(4757)] = 16379, + [SMALL_STATE(4758)] = 16446, + [SMALL_STATE(4759)] = 16513, + [SMALL_STATE(4760)] = 16580, + [SMALL_STATE(4761)] = 16647, + [SMALL_STATE(4762)] = 16714, + [SMALL_STATE(4763)] = 16781, + [SMALL_STATE(4764)] = 16848, + [SMALL_STATE(4765)] = 16915, + [SMALL_STATE(4766)] = 16994, + [SMALL_STATE(4767)] = 17071, + [SMALL_STATE(4768)] = 17138, + [SMALL_STATE(4769)] = 17209, + [SMALL_STATE(4770)] = 17276, + [SMALL_STATE(4771)] = 17343, + [SMALL_STATE(4772)] = 17410, + [SMALL_STATE(4773)] = 17477, + [SMALL_STATE(4774)] = 17544, + [SMALL_STATE(4775)] = 17611, + [SMALL_STATE(4776)] = 17678, + [SMALL_STATE(4777)] = 17755, + [SMALL_STATE(4778)] = 17822, + [SMALL_STATE(4779)] = 17899, + [SMALL_STATE(4780)] = 17966, + [SMALL_STATE(4781)] = 18033, + [SMALL_STATE(4782)] = 18110, + [SMALL_STATE(4783)] = 18177, + [SMALL_STATE(4784)] = 18254, + [SMALL_STATE(4785)] = 18321, + [SMALL_STATE(4786)] = 18388, + [SMALL_STATE(4787)] = 18455, + [SMALL_STATE(4788)] = 18522, + [SMALL_STATE(4789)] = 18603, + [SMALL_STATE(4790)] = 18670, + [SMALL_STATE(4791)] = 18737, + [SMALL_STATE(4792)] = 18814, + [SMALL_STATE(4793)] = 18881, + [SMALL_STATE(4794)] = 18948, + [SMALL_STATE(4795)] = 19025, + [SMALL_STATE(4796)] = 19092, + [SMALL_STATE(4797)] = 19169, + [SMALL_STATE(4798)] = 19236, + [SMALL_STATE(4799)] = 19313, + [SMALL_STATE(4800)] = 19390, + [SMALL_STATE(4801)] = 19457, + [SMALL_STATE(4802)] = 19534, + [SMALL_STATE(4803)] = 19601, + [SMALL_STATE(4804)] = 19678, + [SMALL_STATE(4805)] = 19745, + [SMALL_STATE(4806)] = 19822, + [SMALL_STATE(4807)] = 19893, + [SMALL_STATE(4808)] = 19970, + [SMALL_STATE(4809)] = 20047, + [SMALL_STATE(4810)] = 20114, + [SMALL_STATE(4811)] = 20181, + [SMALL_STATE(4812)] = 20248, + [SMALL_STATE(4813)] = 20315, + [SMALL_STATE(4814)] = 20382, + [SMALL_STATE(4815)] = 20463, + [SMALL_STATE(4816)] = 20532, + [SMALL_STATE(4817)] = 20603, + [SMALL_STATE(4818)] = 20670, + [SMALL_STATE(4819)] = 20737, + [SMALL_STATE(4820)] = 20804, + [SMALL_STATE(4821)] = 20871, + [SMALL_STATE(4822)] = 20950, + [SMALL_STATE(4823)] = 21017, + [SMALL_STATE(4824)] = 21084, + [SMALL_STATE(4825)] = 21151, + [SMALL_STATE(4826)] = 21218, + [SMALL_STATE(4827)] = 21295, + [SMALL_STATE(4828)] = 21362, + [SMALL_STATE(4829)] = 21439, + [SMALL_STATE(4830)] = 21506, + [SMALL_STATE(4831)] = 21577, + [SMALL_STATE(4832)] = 21646, + [SMALL_STATE(4833)] = 21713, + [SMALL_STATE(4834)] = 21780, + [SMALL_STATE(4835)] = 21847, + [SMALL_STATE(4836)] = 21926, + [SMALL_STATE(4837)] = 21993, + [SMALL_STATE(4838)] = 22060, + [SMALL_STATE(4839)] = 22127, + [SMALL_STATE(4840)] = 22196, + [SMALL_STATE(4841)] = 22269, + [SMALL_STATE(4842)] = 22342, + [SMALL_STATE(4843)] = 22409, + [SMALL_STATE(4844)] = 22476, + [SMALL_STATE(4845)] = 22543, + [SMALL_STATE(4846)] = 22610, + [SMALL_STATE(4847)] = 22677, + [SMALL_STATE(4848)] = 22756, + [SMALL_STATE(4849)] = 22823, + [SMALL_STATE(4850)] = 22902, + [SMALL_STATE(4851)] = 22981, + [SMALL_STATE(4852)] = 23048, + [SMALL_STATE(4853)] = 23117, + [SMALL_STATE(4854)] = 23190, + [SMALL_STATE(4855)] = 23257, + [SMALL_STATE(4856)] = 23324, + [SMALL_STATE(4857)] = 23391, + [SMALL_STATE(4858)] = 23458, + [SMALL_STATE(4859)] = 23537, + [SMALL_STATE(4860)] = 23604, + [SMALL_STATE(4861)] = 23671, + [SMALL_STATE(4862)] = 23738, + [SMALL_STATE(4863)] = 23805, + [SMALL_STATE(4864)] = 23884, + [SMALL_STATE(4865)] = 23951, + [SMALL_STATE(4866)] = 24020, + [SMALL_STATE(4867)] = 24099, + [SMALL_STATE(4868)] = 24166, + [SMALL_STATE(4869)] = 24233, + [SMALL_STATE(4870)] = 24314, + [SMALL_STATE(4871)] = 24381, + [SMALL_STATE(4872)] = 24448, + [SMALL_STATE(4873)] = 24515, + [SMALL_STATE(4874)] = 24582, + [SMALL_STATE(4875)] = 24649, + [SMALL_STATE(4876)] = 24716, + [SMALL_STATE(4877)] = 24783, + [SMALL_STATE(4878)] = 24850, + [SMALL_STATE(4879)] = 24917, + [SMALL_STATE(4880)] = 24984, + [SMALL_STATE(4881)] = 25051, + [SMALL_STATE(4882)] = 25118, + [SMALL_STATE(4883)] = 25185, + [SMALL_STATE(4884)] = 25252, + [SMALL_STATE(4885)] = 25319, + [SMALL_STATE(4886)] = 25398, + [SMALL_STATE(4887)] = 25465, + [SMALL_STATE(4888)] = 25532, + [SMALL_STATE(4889)] = 25599, + [SMALL_STATE(4890)] = 25666, + [SMALL_STATE(4891)] = 25733, + [SMALL_STATE(4892)] = 25800, + [SMALL_STATE(4893)] = 25867, + [SMALL_STATE(4894)] = 25934, + [SMALL_STATE(4895)] = 26008, + [SMALL_STATE(4896)] = 26084, + [SMALL_STATE(4897)] = 26158, + [SMALL_STATE(4898)] = 26228, + [SMALL_STATE(4899)] = 26304, + [SMALL_STATE(4900)] = 26382, + [SMALL_STATE(4901)] = 26456, + [SMALL_STATE(4902)] = 26532, + [SMALL_STATE(4903)] = 26608, + [SMALL_STATE(4904)] = 26684, + [SMALL_STATE(4905)] = 26764, + [SMALL_STATE(4906)] = 26840, + [SMALL_STATE(4907)] = 26910, + [SMALL_STATE(4908)] = 26984, + [SMALL_STATE(4909)] = 27054, + [SMALL_STATE(4910)] = 27124, + [SMALL_STATE(4911)] = 27202, + [SMALL_STATE(4912)] = 27276, + [SMALL_STATE(4913)] = 27348, + [SMALL_STATE(4914)] = 27422, + [SMALL_STATE(4915)] = 27496, + [SMALL_STATE(4916)] = 27574, + [SMALL_STATE(4917)] = 27646, + [SMALL_STATE(4918)] = 27720, + [SMALL_STATE(4919)] = 27786, + [SMALL_STATE(4920)] = 27862, + [SMALL_STATE(4921)] = 27928, + [SMALL_STATE(4922)] = 27994, + [SMALL_STATE(4923)] = 28068, + [SMALL_STATE(4924)] = 28142, + [SMALL_STATE(4925)] = 28208, + [SMALL_STATE(4926)] = 28274, + [SMALL_STATE(4927)] = 28352, + [SMALL_STATE(4928)] = 28432, + [SMALL_STATE(4929)] = 28506, + [SMALL_STATE(4930)] = 28580, + [SMALL_STATE(4931)] = 28656, + [SMALL_STATE(4932)] = 28732, + [SMALL_STATE(4933)] = 28806, + [SMALL_STATE(4934)] = 28880, + [SMALL_STATE(4935)] = 28956, + [SMALL_STATE(4936)] = 29022, + [SMALL_STATE(4937)] = 29088, + [SMALL_STATE(4938)] = 29154, + [SMALL_STATE(4939)] = 29220, + [SMALL_STATE(4940)] = 29290, + [SMALL_STATE(4941)] = 29366, + [SMALL_STATE(4942)] = 29442, + [SMALL_STATE(4943)] = 29518, + [SMALL_STATE(4944)] = 29594, + [SMALL_STATE(4945)] = 29668, + [SMALL_STATE(4946)] = 29734, + [SMALL_STATE(4947)] = 29800, + [SMALL_STATE(4948)] = 29874, + [SMALL_STATE(4949)] = 29952, + [SMALL_STATE(4950)] = 30018, + [SMALL_STATE(4951)] = 30094, + [SMALL_STATE(4952)] = 30164, + [SMALL_STATE(4953)] = 30238, + [SMALL_STATE(4954)] = 30312, + [SMALL_STATE(4955)] = 30392, + [SMALL_STATE(4956)] = 30466, + [SMALL_STATE(4957)] = 30540, + [SMALL_STATE(4958)] = 30620, + [SMALL_STATE(4959)] = 30694, + [SMALL_STATE(4960)] = 30768, + [SMALL_STATE(4961)] = 30844, + [SMALL_STATE(4962)] = 30920, + [SMALL_STATE(4963)] = 30986, + [SMALL_STATE(4964)] = 31066, + [SMALL_STATE(4965)] = 31142, + [SMALL_STATE(4966)] = 31218, + [SMALL_STATE(4967)] = 31291, + [SMALL_STATE(4968)] = 31360, + [SMALL_STATE(4969)] = 31425, + [SMALL_STATE(4970)] = 31492, + [SMALL_STATE(4971)] = 31567, + [SMALL_STATE(4972)] = 31636, + [SMALL_STATE(4973)] = 31705, + [SMALL_STATE(4974)] = 31774, + [SMALL_STATE(4975)] = 31849, + [SMALL_STATE(4976)] = 31914, + [SMALL_STATE(4977)] = 31991, + [SMALL_STATE(4978)] = 32064, + [SMALL_STATE(4979)] = 32131, + [SMALL_STATE(4980)] = 32200, + [SMALL_STATE(4981)] = 32265, + [SMALL_STATE(4982)] = 32334, + [SMALL_STATE(4983)] = 32399, + [SMALL_STATE(4984)] = 32474, + [SMALL_STATE(4985)] = 32539, + [SMALL_STATE(4986)] = 32604, + [SMALL_STATE(4987)] = 32673, + [SMALL_STATE(4988)] = 32738, + [SMALL_STATE(4989)] = 32807, + [SMALL_STATE(4990)] = 32872, + [SMALL_STATE(4991)] = 32945, + [SMALL_STATE(4992)] = 33010, + [SMALL_STATE(4993)] = 33085, + [SMALL_STATE(4994)] = 33154, + [SMALL_STATE(4995)] = 33219, + [SMALL_STATE(4996)] = 33288, + [SMALL_STATE(4997)] = 33365, + [SMALL_STATE(4998)] = 33430, + [SMALL_STATE(4999)] = 33499, + [SMALL_STATE(5000)] = 33568, + [SMALL_STATE(5001)] = 33641, + [SMALL_STATE(5002)] = 33710, + [SMALL_STATE(5003)] = 33783, + [SMALL_STATE(5004)] = 33852, + [SMALL_STATE(5005)] = 33917, + [SMALL_STATE(5006)] = 33982, + [SMALL_STATE(5007)] = 34047, + [SMALL_STATE(5008)] = 34116, + [SMALL_STATE(5009)] = 34185, + [SMALL_STATE(5010)] = 34254, + [SMALL_STATE(5011)] = 34331, + [SMALL_STATE(5012)] = 34400, + [SMALL_STATE(5013)] = 34473, + [SMALL_STATE(5014)] = 34538, + [SMALL_STATE(5015)] = 34607, + [SMALL_STATE(5016)] = 34680, + [SMALL_STATE(5017)] = 34749, + [SMALL_STATE(5018)] = 34814, + [SMALL_STATE(5019)] = 34887, + [SMALL_STATE(5020)] = 34960, + [SMALL_STATE(5021)] = 35029, + [SMALL_STATE(5022)] = 35102, + [SMALL_STATE(5023)] = 35175, + [SMALL_STATE(5024)] = 35248, + [SMALL_STATE(5025)] = 35317, + [SMALL_STATE(5026)] = 35386, + [SMALL_STATE(5027)] = 35459, + [SMALL_STATE(5028)] = 35532, + [SMALL_STATE(5029)] = 35605, + [SMALL_STATE(5030)] = 35674, + [SMALL_STATE(5031)] = 35743, + [SMALL_STATE(5032)] = 35816, + [SMALL_STATE(5033)] = 35883, + [SMALL_STATE(5034)] = 35956, + [SMALL_STATE(5035)] = 36033, + [SMALL_STATE(5036)] = 36102, + [SMALL_STATE(5037)] = 36175, + [SMALL_STATE(5038)] = 36248, + [SMALL_STATE(5039)] = 36317, + [SMALL_STATE(5040)] = 36382, + [SMALL_STATE(5041)] = 36451, + [SMALL_STATE(5042)] = 36518, + [SMALL_STATE(5043)] = 36583, + [SMALL_STATE(5044)] = 36648, + [SMALL_STATE(5045)] = 36721, + [SMALL_STATE(5046)] = 36788, + [SMALL_STATE(5047)] = 36863, + [SMALL_STATE(5048)] = 36934, + [SMALL_STATE(5049)] = 37007, + [SMALL_STATE(5050)] = 37076, + [SMALL_STATE(5051)] = 37141, + [SMALL_STATE(5052)] = 37206, + [SMALL_STATE(5053)] = 37275, + [SMALL_STATE(5054)] = 37346, + [SMALL_STATE(5055)] = 37419, + [SMALL_STATE(5056)] = 37484, + [SMALL_STATE(5057)] = 37553, + [SMALL_STATE(5058)] = 37622, + [SMALL_STATE(5059)] = 37695, + [SMALL_STATE(5060)] = 37772, + [SMALL_STATE(5061)] = 37845, + [SMALL_STATE(5062)] = 37918, + [SMALL_STATE(5063)] = 37987, + [SMALL_STATE(5064)] = 38062, + [SMALL_STATE(5065)] = 38135, + [SMALL_STATE(5066)] = 38208, + [SMALL_STATE(5067)] = 38273, + [SMALL_STATE(5068)] = 38346, + [SMALL_STATE(5069)] = 38411, + [SMALL_STATE(5070)] = 38480, + [SMALL_STATE(5071)] = 38553, + [SMALL_STATE(5072)] = 38625, + [SMALL_STATE(5073)] = 38689, + [SMALL_STATE(5074)] = 38753, + [SMALL_STATE(5075)] = 38819, + [SMALL_STATE(5076)] = 38891, + [SMALL_STATE(5077)] = 38955, + [SMALL_STATE(5078)] = 39019, + [SMALL_STATE(5079)] = 39089, + [SMALL_STATE(5080)] = 39153, + [SMALL_STATE(5081)] = 39225, + [SMALL_STATE(5082)] = 39289, + [SMALL_STATE(5083)] = 39353, + [SMALL_STATE(5084)] = 39417, + [SMALL_STATE(5085)] = 39481, + [SMALL_STATE(5086)] = 39545, + [SMALL_STATE(5087)] = 39609, + [SMALL_STATE(5088)] = 39673, + [SMALL_STATE(5089)] = 39737, + [SMALL_STATE(5090)] = 39809, + [SMALL_STATE(5091)] = 39873, + [SMALL_STATE(5092)] = 39937, + [SMALL_STATE(5093)] = 40001, + [SMALL_STATE(5094)] = 40065, + [SMALL_STATE(5095)] = 40129, + [SMALL_STATE(5096)] = 40201, + [SMALL_STATE(5097)] = 40265, + [SMALL_STATE(5098)] = 40329, + [SMALL_STATE(5099)] = 40401, + [SMALL_STATE(5100)] = 40465, + [SMALL_STATE(5101)] = 40529, + [SMALL_STATE(5102)] = 40593, + [SMALL_STATE(5103)] = 40657, + [SMALL_STATE(5104)] = 40721, + [SMALL_STATE(5105)] = 40785, + [SMALL_STATE(5106)] = 40853, + [SMALL_STATE(5107)] = 40917, + [SMALL_STATE(5108)] = 40983, + [SMALL_STATE(5109)] = 41047, + [SMALL_STATE(5110)] = 41113, + [SMALL_STATE(5111)] = 41179, + [SMALL_STATE(5112)] = 41243, + [SMALL_STATE(5113)] = 41307, + [SMALL_STATE(5114)] = 41371, + [SMALL_STATE(5115)] = 41435, + [SMALL_STATE(5116)] = 41501, + [SMALL_STATE(5117)] = 41565, + [SMALL_STATE(5118)] = 41637, + [SMALL_STATE(5119)] = 41701, + [SMALL_STATE(5120)] = 41765, + [SMALL_STATE(5121)] = 41831, + [SMALL_STATE(5122)] = 41903, + [SMALL_STATE(5123)] = 41967, + [SMALL_STATE(5124)] = 42031, + [SMALL_STATE(5125)] = 42095, + [SMALL_STATE(5126)] = 42159, + [SMALL_STATE(5127)] = 42225, + [SMALL_STATE(5128)] = 42289, + [SMALL_STATE(5129)] = 42353, + [SMALL_STATE(5130)] = 42417, + [SMALL_STATE(5131)] = 42481, + [SMALL_STATE(5132)] = 42545, + [SMALL_STATE(5133)] = 42615, + [SMALL_STATE(5134)] = 42679, + [SMALL_STATE(5135)] = 42743, + [SMALL_STATE(5136)] = 42807, + [SMALL_STATE(5137)] = 42871, + [SMALL_STATE(5138)] = 42935, + [SMALL_STATE(5139)] = 42999, + [SMALL_STATE(5140)] = 43063, + [SMALL_STATE(5141)] = 43127, + [SMALL_STATE(5142)] = 43191, + [SMALL_STATE(5143)] = 43255, + [SMALL_STATE(5144)] = 43319, + [SMALL_STATE(5145)] = 43383, + [SMALL_STATE(5146)] = 43447, + [SMALL_STATE(5147)] = 43511, + [SMALL_STATE(5148)] = 43581, + [SMALL_STATE(5149)] = 43651, + [SMALL_STATE(5150)] = 43715, + [SMALL_STATE(5151)] = 43779, + [SMALL_STATE(5152)] = 43849, + [SMALL_STATE(5153)] = 43913, + [SMALL_STATE(5154)] = 43977, + [SMALL_STATE(5155)] = 44045, + [SMALL_STATE(5156)] = 44109, + [SMALL_STATE(5157)] = 44173, + [SMALL_STATE(5158)] = 44237, + [SMALL_STATE(5159)] = 44301, + [SMALL_STATE(5160)] = 44367, + [SMALL_STATE(5161)] = 44431, + [SMALL_STATE(5162)] = 44495, + [SMALL_STATE(5163)] = 44559, + [SMALL_STATE(5164)] = 44623, + [SMALL_STATE(5165)] = 44695, + [SMALL_STATE(5166)] = 44759, + [SMALL_STATE(5167)] = 44823, + [SMALL_STATE(5168)] = 44887, + [SMALL_STATE(5169)] = 44951, + [SMALL_STATE(5170)] = 45021, + [SMALL_STATE(5171)] = 45085, + [SMALL_STATE(5172)] = 45149, + [SMALL_STATE(5173)] = 45213, + [SMALL_STATE(5174)] = 45285, + [SMALL_STATE(5175)] = 45349, + [SMALL_STATE(5176)] = 45413, + [SMALL_STATE(5177)] = 45477, + [SMALL_STATE(5178)] = 45541, + [SMALL_STATE(5179)] = 45605, + [SMALL_STATE(5180)] = 45677, + [SMALL_STATE(5181)] = 45741, + [SMALL_STATE(5182)] = 45805, + [SMALL_STATE(5183)] = 45869, + [SMALL_STATE(5184)] = 45933, + [SMALL_STATE(5185)] = 45997, + [SMALL_STATE(5186)] = 46061, + [SMALL_STATE(5187)] = 46125, + [SMALL_STATE(5188)] = 46189, + [SMALL_STATE(5189)] = 46261, + [SMALL_STATE(5190)] = 46325, + [SMALL_STATE(5191)] = 46397, + [SMALL_STATE(5192)] = 46461, + [SMALL_STATE(5193)] = 46525, + [SMALL_STATE(5194)] = 46589, + [SMALL_STATE(5195)] = 46653, + [SMALL_STATE(5196)] = 46717, + [SMALL_STATE(5197)] = 46789, + [SMALL_STATE(5198)] = 46853, + [SMALL_STATE(5199)] = 46917, + [SMALL_STATE(5200)] = 46981, + [SMALL_STATE(5201)] = 47045, + [SMALL_STATE(5202)] = 47109, + [SMALL_STATE(5203)] = 47173, + [SMALL_STATE(5204)] = 47245, + [SMALL_STATE(5205)] = 47309, + [SMALL_STATE(5206)] = 47373, + [SMALL_STATE(5207)] = 47445, + [SMALL_STATE(5208)] = 47519, + [SMALL_STATE(5209)] = 47583, + [SMALL_STATE(5210)] = 47647, + [SMALL_STATE(5211)] = 47711, + [SMALL_STATE(5212)] = 47777, + [SMALL_STATE(5213)] = 47851, + [SMALL_STATE(5214)] = 47915, + [SMALL_STATE(5215)] = 47979, + [SMALL_STATE(5216)] = 48043, + [SMALL_STATE(5217)] = 48111, + [SMALL_STATE(5218)] = 48175, + [SMALL_STATE(5219)] = 48239, + [SMALL_STATE(5220)] = 48311, + [SMALL_STATE(5221)] = 48375, + [SMALL_STATE(5222)] = 48439, + [SMALL_STATE(5223)] = 48503, + [SMALL_STATE(5224)] = 48577, + [SMALL_STATE(5225)] = 48641, + [SMALL_STATE(5226)] = 48705, + [SMALL_STATE(5227)] = 48769, + [SMALL_STATE(5228)] = 48833, + [SMALL_STATE(5229)] = 48897, + [SMALL_STATE(5230)] = 48971, + [SMALL_STATE(5231)] = 49035, + [SMALL_STATE(5232)] = 49099, + [SMALL_STATE(5233)] = 49163, + [SMALL_STATE(5234)] = 49237, + [SMALL_STATE(5235)] = 49311, + [SMALL_STATE(5236)] = 49375, + [SMALL_STATE(5237)] = 49439, + [SMALL_STATE(5238)] = 49511, + [SMALL_STATE(5239)] = 49575, + [SMALL_STATE(5240)] = 49649, + [SMALL_STATE(5241)] = 49713, + [SMALL_STATE(5242)] = 49777, + [SMALL_STATE(5243)] = 49841, + [SMALL_STATE(5244)] = 49913, + [SMALL_STATE(5245)] = 49977, + [SMALL_STATE(5246)] = 50041, + [SMALL_STATE(5247)] = 50105, + [SMALL_STATE(5248)] = 50169, + [SMALL_STATE(5249)] = 50233, + [SMALL_STATE(5250)] = 50297, + [SMALL_STATE(5251)] = 50369, + [SMALL_STATE(5252)] = 50433, + [SMALL_STATE(5253)] = 50497, + [SMALL_STATE(5254)] = 50561, + [SMALL_STATE(5255)] = 50625, + [SMALL_STATE(5256)] = 50689, + [SMALL_STATE(5257)] = 50753, + [SMALL_STATE(5258)] = 50817, + [SMALL_STATE(5259)] = 50881, + [SMALL_STATE(5260)] = 50945, + [SMALL_STATE(5261)] = 51009, + [SMALL_STATE(5262)] = 51073, + [SMALL_STATE(5263)] = 51137, + [SMALL_STATE(5264)] = 51211, + [SMALL_STATE(5265)] = 51275, + [SMALL_STATE(5266)] = 51345, + [SMALL_STATE(5267)] = 51412, + [SMALL_STATE(5268)] = 51489, + [SMALL_STATE(5269)] = 51556, + [SMALL_STATE(5270)] = 51623, + [SMALL_STATE(5271)] = 51690, + [SMALL_STATE(5272)] = 51757, + [SMALL_STATE(5273)] = 51824, + [SMALL_STATE(5274)] = 51891, + [SMALL_STATE(5275)] = 51960, + [SMALL_STATE(5276)] = 52027, + [SMALL_STATE(5277)] = 52092, + [SMALL_STATE(5278)] = 52157, + [SMALL_STATE(5279)] = 52222, + [SMALL_STATE(5280)] = 52287, + [SMALL_STATE(5281)] = 52354, + [SMALL_STATE(5282)] = 52419, + [SMALL_STATE(5283)] = 52484, + [SMALL_STATE(5284)] = 52553, + [SMALL_STATE(5285)] = 52622, + [SMALL_STATE(5286)] = 52687, + [SMALL_STATE(5287)] = 52764, + [SMALL_STATE(5288)] = 52831, + [SMALL_STATE(5289)] = 52898, + [SMALL_STATE(5290)] = 52965, + [SMALL_STATE(5291)] = 53034, + [SMALL_STATE(5292)] = 53101, + [SMALL_STATE(5293)] = 53178, + [SMALL_STATE(5294)] = 53245, + [SMALL_STATE(5295)] = 53312, + [SMALL_STATE(5296)] = 53379, + [SMALL_STATE(5297)] = 53446, + [SMALL_STATE(5298)] = 53513, + [SMALL_STATE(5299)] = 53580, + [SMALL_STATE(5300)] = 53647, + [SMALL_STATE(5301)] = 53714, + [SMALL_STATE(5302)] = 53781, + [SMALL_STATE(5303)] = 53858, + [SMALL_STATE(5304)] = 53935, + [SMALL_STATE(5305)] = 54012, + [SMALL_STATE(5306)] = 54079, + [SMALL_STATE(5307)] = 54156, + [SMALL_STATE(5308)] = 54223, + [SMALL_STATE(5309)] = 54296, + [SMALL_STATE(5310)] = 54363, + [SMALL_STATE(5311)] = 54440, + [SMALL_STATE(5312)] = 54517, + [SMALL_STATE(5313)] = 54584, + [SMALL_STATE(5314)] = 54661, + [SMALL_STATE(5315)] = 54728, + [SMALL_STATE(5316)] = 54795, + [SMALL_STATE(5317)] = 54857, + [SMALL_STATE(5318)] = 54919, + [SMALL_STATE(5319)] = 54987, + [SMALL_STATE(5320)] = 55061, + [SMALL_STATE(5321)] = 55135, + [SMALL_STATE(5322)] = 55201, + [SMALL_STATE(5323)] = 55275, + [SMALL_STATE(5324)] = 55337, + [SMALL_STATE(5325)] = 55401, + [SMALL_STATE(5326)] = 55475, + [SMALL_STATE(5327)] = 55543, + [SMALL_STATE(5328)] = 55615, + [SMALL_STATE(5329)] = 55721, + [SMALL_STATE(5330)] = 55789, + [SMALL_STATE(5331)] = 55851, + [SMALL_STATE(5332)] = 55957, + [SMALL_STATE(5333)] = 56021, + [SMALL_STATE(5334)] = 56085, + [SMALL_STATE(5335)] = 56157, + [SMALL_STATE(5336)] = 56219, + [SMALL_STATE(5337)] = 56281, + [SMALL_STATE(5338)] = 56343, + [SMALL_STATE(5339)] = 56415, + [SMALL_STATE(5340)] = 56481, + [SMALL_STATE(5341)] = 56547, + [SMALL_STATE(5342)] = 56609, + [SMALL_STATE(5343)] = 56671, + [SMALL_STATE(5344)] = 56735, + [SMALL_STATE(5345)] = 56797, + [SMALL_STATE(5346)] = 56867, + [SMALL_STATE(5347)] = 56929, + [SMALL_STATE(5348)] = 56991, + [SMALL_STATE(5349)] = 57055, + [SMALL_STATE(5350)] = 57117, + [SMALL_STATE(5351)] = 57191, + [SMALL_STATE(5352)] = 57253, + [SMALL_STATE(5353)] = 57317, + [SMALL_STATE(5354)] = 57379, + [SMALL_STATE(5355)] = 57443, + [SMALL_STATE(5356)] = 57507, + [SMALL_STATE(5357)] = 57569, + [SMALL_STATE(5358)] = 57631, + [SMALL_STATE(5359)] = 57693, + [SMALL_STATE(5360)] = 57755, + [SMALL_STATE(5361)] = 57817, + [SMALL_STATE(5362)] = 57879, + [SMALL_STATE(5363)] = 57985, + [SMALL_STATE(5364)] = 58047, + [SMALL_STATE(5365)] = 58109, + [SMALL_STATE(5366)] = 58171, + [SMALL_STATE(5367)] = 58239, + [SMALL_STATE(5368)] = 58303, + [SMALL_STATE(5369)] = 58365, + [SMALL_STATE(5370)] = 58427, + [SMALL_STATE(5371)] = 58489, + [SMALL_STATE(5372)] = 58563, + [SMALL_STATE(5373)] = 58639, + [SMALL_STATE(5374)] = 58701, + [SMALL_STATE(5375)] = 58765, + [SMALL_STATE(5376)] = 58827, + [SMALL_STATE(5377)] = 58933, + [SMALL_STATE(5378)] = 58995, + [SMALL_STATE(5379)] = 59057, + [SMALL_STATE(5380)] = 59131, + [SMALL_STATE(5381)] = 59207, + [SMALL_STATE(5382)] = 59269, + [SMALL_STATE(5383)] = 59331, + [SMALL_STATE(5384)] = 59405, + [SMALL_STATE(5385)] = 59467, + [SMALL_STATE(5386)] = 59529, + [SMALL_STATE(5387)] = 59591, + [SMALL_STATE(5388)] = 59667, + [SMALL_STATE(5389)] = 59729, + [SMALL_STATE(5390)] = 59803, + [SMALL_STATE(5391)] = 59865, + [SMALL_STATE(5392)] = 59927, + [SMALL_STATE(5393)] = 60003, + [SMALL_STATE(5394)] = 60065, + [SMALL_STATE(5395)] = 60127, + [SMALL_STATE(5396)] = 60203, + [SMALL_STATE(5397)] = 60277, + [SMALL_STATE(5398)] = 60339, + [SMALL_STATE(5399)] = 60401, + [SMALL_STATE(5400)] = 60463, + [SMALL_STATE(5401)] = 60525, + [SMALL_STATE(5402)] = 60589, + [SMALL_STATE(5403)] = 60653, + [SMALL_STATE(5404)] = 60715, + [SMALL_STATE(5405)] = 60777, + [SMALL_STATE(5406)] = 60839, + [SMALL_STATE(5407)] = 60901, + [SMALL_STATE(5408)] = 60963, + [SMALL_STATE(5409)] = 61027, + [SMALL_STATE(5410)] = 61091, + [SMALL_STATE(5411)] = 61153, + [SMALL_STATE(5412)] = 61215, + [SMALL_STATE(5413)] = 61277, + [SMALL_STATE(5414)] = 61339, + [SMALL_STATE(5415)] = 61401, + [SMALL_STATE(5416)] = 61463, + [SMALL_STATE(5417)] = 61525, + [SMALL_STATE(5418)] = 61587, + [SMALL_STATE(5419)] = 61649, + [SMALL_STATE(5420)] = 61711, + [SMALL_STATE(5421)] = 61773, + [SMALL_STATE(5422)] = 61835, + [SMALL_STATE(5423)] = 61897, + [SMALL_STATE(5424)] = 61959, + [SMALL_STATE(5425)] = 62021, + [SMALL_STATE(5426)] = 62083, + [SMALL_STATE(5427)] = 62152, + [SMALL_STATE(5428)] = 62221, + [SMALL_STATE(5429)] = 62292, + [SMALL_STATE(5430)] = 62363, + [SMALL_STATE(5431)] = 62434, + [SMALL_STATE(5432)] = 62535, + [SMALL_STATE(5433)] = 62598, + [SMALL_STATE(5434)] = 62667, + [SMALL_STATE(5435)] = 62738, + [SMALL_STATE(5436)] = 62803, + [SMALL_STATE(5437)] = 62904, + [SMALL_STATE(5438)] = 62975, + [SMALL_STATE(5439)] = 63038, + [SMALL_STATE(5440)] = 63139, + [SMALL_STATE(5441)] = 63204, + [SMALL_STATE(5442)] = 63269, + [SMALL_STATE(5443)] = 63330, + [SMALL_STATE(5444)] = 63395, + [SMALL_STATE(5445)] = 63458, + [SMALL_STATE(5446)] = 63529, + [SMALL_STATE(5447)] = 63600, + [SMALL_STATE(5448)] = 63671, + [SMALL_STATE(5449)] = 63734, + [SMALL_STATE(5450)] = 63805, + [SMALL_STATE(5451)] = 63868, + [SMALL_STATE(5452)] = 63937, + [SMALL_STATE(5453)] = 64038, + [SMALL_STATE(5454)] = 64143, + [SMALL_STATE(5455)] = 64248, + [SMALL_STATE(5456)] = 64319, + [SMALL_STATE(5457)] = 64388, + [SMALL_STATE(5458)] = 64457, + [SMALL_STATE(5459)] = 64518, + [SMALL_STATE(5460)] = 64589, + [SMALL_STATE(5461)] = 64660, + [SMALL_STATE(5462)] = 64729, + [SMALL_STATE(5463)] = 64800, + [SMALL_STATE(5464)] = 64873, + [SMALL_STATE(5465)] = 64942, + [SMALL_STATE(5466)] = 65013, + [SMALL_STATE(5467)] = 65074, + [SMALL_STATE(5468)] = 65147, + [SMALL_STATE(5469)] = 65218, + [SMALL_STATE(5470)] = 65279, + [SMALL_STATE(5471)] = 65348, + [SMALL_STATE(5472)] = 65419, + [SMALL_STATE(5473)] = 65492, + [SMALL_STATE(5474)] = 65565, + [SMALL_STATE(5475)] = 65666, + [SMALL_STATE(5476)] = 65737, + [SMALL_STATE(5477)] = 65808, + [SMALL_STATE(5478)] = 65913, + [SMALL_STATE(5479)] = 65982, + [SMALL_STATE(5480)] = 66055, + [SMALL_STATE(5481)] = 66126, + [SMALL_STATE(5482)] = 66231, + [SMALL_STATE(5483)] = 66299, + [SMALL_STATE(5484)] = 66367, + [SMALL_STATE(5485)] = 66427, + [SMALL_STATE(5486)] = 66489, + [SMALL_STATE(5487)] = 66589, + [SMALL_STATE(5488)] = 66649, + [SMALL_STATE(5489)] = 66717, + [SMALL_STATE(5490)] = 66777, + [SMALL_STATE(5491)] = 66877, + [SMALL_STATE(5492)] = 66977, + [SMALL_STATE(5493)] = 67077, + [SMALL_STATE(5494)] = 67177, + [SMALL_STATE(5495)] = 67277, + [SMALL_STATE(5496)] = 67377, + [SMALL_STATE(5497)] = 67477, + [SMALL_STATE(5498)] = 67543, + [SMALL_STATE(5499)] = 67643, + [SMALL_STATE(5500)] = 67725, + [SMALL_STATE(5501)] = 67789, + [SMALL_STATE(5502)] = 67853, + [SMALL_STATE(5503)] = 67953, + [SMALL_STATE(5504)] = 68013, + [SMALL_STATE(5505)] = 68083, + [SMALL_STATE(5506)] = 68153, + [SMALL_STATE(5507)] = 68223, + [SMALL_STATE(5508)] = 68323, + [SMALL_STATE(5509)] = 68391, + [SMALL_STATE(5510)] = 68459, + [SMALL_STATE(5511)] = 68525, + [SMALL_STATE(5512)] = 68589, + [SMALL_STATE(5513)] = 68689, + [SMALL_STATE(5514)] = 68789, + [SMALL_STATE(5515)] = 68889, + [SMALL_STATE(5516)] = 68959, + [SMALL_STATE(5517)] = 69029, + [SMALL_STATE(5518)] = 69111, + [SMALL_STATE(5519)] = 69181, + [SMALL_STATE(5520)] = 69281, + [SMALL_STATE(5521)] = 69381, + [SMALL_STATE(5522)] = 69481, + [SMALL_STATE(5523)] = 69551, + [SMALL_STATE(5524)] = 69651, + [SMALL_STATE(5525)] = 69715, + [SMALL_STATE(5526)] = 69783, + [SMALL_STATE(5527)] = 69853, + [SMALL_STATE(5528)] = 69921, + [SMALL_STATE(5529)] = 69991, + [SMALL_STATE(5530)] = 70061, + [SMALL_STATE(5531)] = 70131, + [SMALL_STATE(5532)] = 70193, + [SMALL_STATE(5533)] = 70261, + [SMALL_STATE(5534)] = 70329, + [SMALL_STATE(5535)] = 70397, + [SMALL_STATE(5536)] = 70456, + [SMALL_STATE(5537)] = 70519, + [SMALL_STATE(5538)] = 70584, + [SMALL_STATE(5539)] = 70681, + [SMALL_STATE(5540)] = 70744, + [SMALL_STATE(5541)] = 70841, + [SMALL_STATE(5542)] = 70936, + [SMALL_STATE(5543)] = 70999, + [SMALL_STATE(5544)] = 71062, + [SMALL_STATE(5545)] = 71159, + [SMALL_STATE(5546)] = 71256, + [SMALL_STATE(5547)] = 71323, + [SMALL_STATE(5548)] = 71382, + [SMALL_STATE(5549)] = 71449, + [SMALL_STATE(5550)] = 71544, + [SMALL_STATE(5551)] = 71641, + [SMALL_STATE(5552)] = 71704, + [SMALL_STATE(5553)] = 71771, + [SMALL_STATE(5554)] = 71868, + [SMALL_STATE(5555)] = 71933, + [SMALL_STATE(5556)] = 72030, + [SMALL_STATE(5557)] = 72127, + [SMALL_STATE(5558)] = 72188, + [SMALL_STATE(5559)] = 72285, + [SMALL_STATE(5560)] = 72384, + [SMALL_STATE(5561)] = 72481, + [SMALL_STATE(5562)] = 72540, + [SMALL_STATE(5563)] = 72639, + [SMALL_STATE(5564)] = 72706, + [SMALL_STATE(5565)] = 72805, + [SMALL_STATE(5566)] = 72902, + [SMALL_STATE(5567)] = 73001, + [SMALL_STATE(5568)] = 73068, + [SMALL_STATE(5569)] = 73127, + [SMALL_STATE(5570)] = 73226, + [SMALL_STATE(5571)] = 73293, + [SMALL_STATE(5572)] = 73352, + [SMALL_STATE(5573)] = 73449, + [SMALL_STATE(5574)] = 73508, + [SMALL_STATE(5575)] = 73607, + [SMALL_STATE(5576)] = 73702, + [SMALL_STATE(5577)] = 73761, + [SMALL_STATE(5578)] = 73828, + [SMALL_STATE(5579)] = 73927, + [SMALL_STATE(5580)] = 73988, + [SMALL_STATE(5581)] = 74055, + [SMALL_STATE(5582)] = 74152, + [SMALL_STATE(5583)] = 74251, + [SMALL_STATE(5584)] = 74318, + [SMALL_STATE(5585)] = 74413, + [SMALL_STATE(5586)] = 74472, + [SMALL_STATE(5587)] = 74571, + [SMALL_STATE(5588)] = 74632, + [SMALL_STATE(5589)] = 74729, + [SMALL_STATE(5590)] = 74826, + [SMALL_STATE(5591)] = 74887, + [SMALL_STATE(5592)] = 74986, + [SMALL_STATE(5593)] = 75053, + [SMALL_STATE(5594)] = 75112, + [SMALL_STATE(5595)] = 75207, + [SMALL_STATE(5596)] = 75304, + [SMALL_STATE(5597)] = 75401, + [SMALL_STATE(5598)] = 75500, + [SMALL_STATE(5599)] = 75597, + [SMALL_STATE(5600)] = 75656, + [SMALL_STATE(5601)] = 75755, + [SMALL_STATE(5602)] = 75854, + [SMALL_STATE(5603)] = 75912, + [SMALL_STATE(5604)] = 75992, + [SMALL_STATE(5605)] = 76056, + [SMALL_STATE(5606)] = 76114, + [SMALL_STATE(5607)] = 76208, + [SMALL_STATE(5608)] = 76302, + [SMALL_STATE(5609)] = 76396, + [SMALL_STATE(5610)] = 76490, + [SMALL_STATE(5611)] = 76550, + [SMALL_STATE(5612)] = 76612, + [SMALL_STATE(5613)] = 76706, + [SMALL_STATE(5614)] = 76766, + [SMALL_STATE(5615)] = 76826, + [SMALL_STATE(5616)] = 76886, + [SMALL_STATE(5617)] = 76980, + [SMALL_STATE(5618)] = 77042, + [SMALL_STATE(5619)] = 77136, + [SMALL_STATE(5620)] = 77200, + [SMALL_STATE(5621)] = 77280, + [SMALL_STATE(5622)] = 77374, + [SMALL_STATE(5623)] = 77434, + [SMALL_STATE(5624)] = 77493, + [SMALL_STATE(5625)] = 77552, + [SMALL_STATE(5626)] = 77611, + [SMALL_STATE(5627)] = 77670, + [SMALL_STATE(5628)] = 77731, + [SMALL_STATE(5629)] = 77790, + [SMALL_STATE(5630)] = 77851, + [SMALL_STATE(5631)] = 77912, + [SMALL_STATE(5632)] = 77973, + [SMALL_STATE(5633)] = 78034, + [SMALL_STATE(5634)] = 78120, + [SMALL_STATE(5635)] = 78206, + [SMALL_STATE(5636)] = 78292, + [SMALL_STATE(5637)] = 78378, + [SMALL_STATE(5638)] = 78438, + [SMALL_STATE(5639)] = 78494, + [SMALL_STATE(5640)] = 78554, + [SMALL_STATE(5641)] = 78640, + [SMALL_STATE(5642)] = 78698, + [SMALL_STATE(5643)] = 78754, + [SMALL_STATE(5644)] = 78812, + [SMALL_STATE(5645)] = 78870, + [SMALL_STATE(5646)] = 78928, + [SMALL_STATE(5647)] = 78988, + [SMALL_STATE(5648)] = 79044, + [SMALL_STATE(5649)] = 79130, + [SMALL_STATE(5650)] = 79186, + [SMALL_STATE(5651)] = 79276, + [SMALL_STATE(5652)] = 79334, + [SMALL_STATE(5653)] = 79417, + [SMALL_STATE(5654)] = 79476, + [SMALL_STATE(5655)] = 79561, + [SMALL_STATE(5656)] = 79646, + [SMALL_STATE(5657)] = 79731, + [SMALL_STATE(5658)] = 79814, + [SMALL_STATE(5659)] = 79897, + [SMALL_STATE(5660)] = 79980, + [SMALL_STATE(5661)] = 80035, + [SMALL_STATE(5662)] = 80118, + [SMALL_STATE(5663)] = 80201, + [SMALL_STATE(5664)] = 80256, + [SMALL_STATE(5665)] = 80341, + [SMALL_STATE(5666)] = 80424, + [SMALL_STATE(5667)] = 80507, + [SMALL_STATE(5668)] = 80568, + [SMALL_STATE(5669)] = 80653, + [SMALL_STATE(5670)] = 80738, + [SMALL_STATE(5671)] = 80797, + [SMALL_STATE(5672)] = 80856, + [SMALL_STATE(5673)] = 80938, + [SMALL_STATE(5674)] = 81020, + [SMALL_STATE(5675)] = 81102, + [SMALL_STATE(5676)] = 81176, + [SMALL_STATE(5677)] = 81252, + [SMALL_STATE(5678)] = 81334, + [SMALL_STATE(5679)] = 81416, + [SMALL_STATE(5680)] = 81498, + [SMALL_STATE(5681)] = 81580, + [SMALL_STATE(5682)] = 81662, + [SMALL_STATE(5683)] = 81714, + [SMALL_STATE(5684)] = 81766, + [SMALL_STATE(5685)] = 81822, + [SMALL_STATE(5686)] = 81874, + [SMALL_STATE(5687)] = 81928, + [SMALL_STATE(5688)] = 81990, + [SMALL_STATE(5689)] = 82044, + [SMALL_STATE(5690)] = 82096, + [SMALL_STATE(5691)] = 82157, + [SMALL_STATE(5692)] = 82212, + [SMALL_STATE(5693)] = 82267, + [SMALL_STATE(5694)] = 82318, + [SMALL_STATE(5695)] = 82369, + [SMALL_STATE(5696)] = 82424, + [SMALL_STATE(5697)] = 82476, + [SMALL_STATE(5698)] = 82574, + [SMALL_STATE(5699)] = 82624, + [SMALL_STATE(5700)] = 82672, + [SMALL_STATE(5701)] = 82722, + [SMALL_STATE(5702)] = 82770, + [SMALL_STATE(5703)] = 82868, + [SMALL_STATE(5704)] = 82918, + [SMALL_STATE(5705)] = 82966, + [SMALL_STATE(5706)] = 83020, + [SMALL_STATE(5707)] = 83070, + [SMALL_STATE(5708)] = 83120, + [SMALL_STATE(5709)] = 83168, + [SMALL_STATE(5710)] = 83218, + [SMALL_STATE(5711)] = 83316, + [SMALL_STATE(5712)] = 83414, + [SMALL_STATE(5713)] = 83464, + [SMALL_STATE(5714)] = 83512, + [SMALL_STATE(5715)] = 83610, + [SMALL_STATE(5716)] = 83708, + [SMALL_STATE(5717)] = 83756, + [SMALL_STATE(5718)] = 83807, + [SMALL_STATE(5719)] = 83858, + [SMALL_STATE(5720)] = 83909, + [SMALL_STATE(5721)] = 83957, + [SMALL_STATE(5722)] = 84005, + [SMALL_STATE(5723)] = 84053, + [SMALL_STATE(5724)] = 84103, + [SMALL_STATE(5725)] = 84151, + [SMALL_STATE(5726)] = 84241, + [SMALL_STATE(5727)] = 84331, + [SMALL_STATE(5728)] = 84421, + [SMALL_STATE(5729)] = 84469, + [SMALL_STATE(5730)] = 84517, + [SMALL_STATE(5731)] = 84607, + [SMALL_STATE(5732)] = 84697, + [SMALL_STATE(5733)] = 84745, + [SMALL_STATE(5734)] = 84835, + [SMALL_STATE(5735)] = 84925, + [SMALL_STATE(5736)] = 85015, + [SMALL_STATE(5737)] = 85063, + [SMALL_STATE(5738)] = 85111, + [SMALL_STATE(5739)] = 85163, + [SMALL_STATE(5740)] = 85253, + [SMALL_STATE(5741)] = 85343, + [SMALL_STATE(5742)] = 85433, + [SMALL_STATE(5743)] = 85523, + [SMALL_STATE(5744)] = 85571, + [SMALL_STATE(5745)] = 85619, + [SMALL_STATE(5746)] = 85669, + [SMALL_STATE(5747)] = 85759, + [SMALL_STATE(5748)] = 85849, + [SMALL_STATE(5749)] = 85899, + [SMALL_STATE(5750)] = 85947, + [SMALL_STATE(5751)] = 85995, + [SMALL_STATE(5752)] = 86043, + [SMALL_STATE(5753)] = 86091, + [SMALL_STATE(5754)] = 86181, + [SMALL_STATE(5755)] = 86229, + [SMALL_STATE(5756)] = 86277, + [SMALL_STATE(5757)] = 86367, + [SMALL_STATE(5758)] = 86417, + [SMALL_STATE(5759)] = 86467, + [SMALL_STATE(5760)] = 86557, + [SMALL_STATE(5761)] = 86607, + [SMALL_STATE(5762)] = 86655, + [SMALL_STATE(5763)] = 86705, + [SMALL_STATE(5764)] = 86795, + [SMALL_STATE(5765)] = 86885, + [SMALL_STATE(5766)] = 86975, + [SMALL_STATE(5767)] = 87065, + [SMALL_STATE(5768)] = 87112, + [SMALL_STATE(5769)] = 87161, + [SMALL_STATE(5770)] = 87208, + [SMALL_STATE(5771)] = 87254, + [SMALL_STATE(5772)] = 87300, + [SMALL_STATE(5773)] = 87348, + [SMALL_STATE(5774)] = 87394, + [SMALL_STATE(5775)] = 87440, + [SMALL_STATE(5776)] = 87486, + [SMALL_STATE(5777)] = 87532, + [SMALL_STATE(5778)] = 87578, + [SMALL_STATE(5779)] = 87624, + [SMALL_STATE(5780)] = 87670, + [SMALL_STATE(5781)] = 87716, + [SMALL_STATE(5782)] = 87764, + [SMALL_STATE(5783)] = 87810, + [SMALL_STATE(5784)] = 87856, + [SMALL_STATE(5785)] = 87902, + [SMALL_STATE(5786)] = 87950, + [SMALL_STATE(5787)] = 87994, + [SMALL_STATE(5788)] = 88044, + [SMALL_STATE(5789)] = 88090, + [SMALL_STATE(5790)] = 88136, + [SMALL_STATE(5791)] = 88180, + [SMALL_STATE(5792)] = 88226, + [SMALL_STATE(5793)] = 88274, + [SMALL_STATE(5794)] = 88320, + [SMALL_STATE(5795)] = 88364, + [SMALL_STATE(5796)] = 88408, + [SMALL_STATE(5797)] = 88454, + [SMALL_STATE(5798)] = 88498, + [SMALL_STATE(5799)] = 88542, + [SMALL_STATE(5800)] = 88590, + [SMALL_STATE(5801)] = 88634, + [SMALL_STATE(5802)] = 88678, + [SMALL_STATE(5803)] = 88724, + [SMALL_STATE(5804)] = 88768, + [SMALL_STATE(5805)] = 88814, + [SMALL_STATE(5806)] = 88861, + [SMALL_STATE(5807)] = 88910, + [SMALL_STATE(5808)] = 88955, + [SMALL_STATE(5809)] = 88998, + [SMALL_STATE(5810)] = 89047, + [SMALL_STATE(5811)] = 89090, + [SMALL_STATE(5812)] = 89133, + [SMALL_STATE(5813)] = 89180, + [SMALL_STATE(5814)] = 89229, + [SMALL_STATE(5815)] = 89276, + [SMALL_STATE(5816)] = 89320, + [SMALL_STATE(5817)] = 89362, + [SMALL_STATE(5818)] = 89404, + [SMALL_STATE(5819)] = 89448, + [SMALL_STATE(5820)] = 89490, + [SMALL_STATE(5821)] = 89534, + [SMALL_STATE(5822)] = 89576, + [SMALL_STATE(5823)] = 89622, + [SMALL_STATE(5824)] = 89664, + [SMALL_STATE(5825)] = 89706, + [SMALL_STATE(5826)] = 89750, + [SMALL_STATE(5827)] = 89798, + [SMALL_STATE(5828)] = 89846, + [SMALL_STATE(5829)] = 89888, + [SMALL_STATE(5830)] = 89930, + [SMALL_STATE(5831)] = 89972, + [SMALL_STATE(5832)] = 90014, + [SMALL_STATE(5833)] = 90056, + [SMALL_STATE(5834)] = 90098, + [SMALL_STATE(5835)] = 90140, + [SMALL_STATE(5836)] = 90182, + [SMALL_STATE(5837)] = 90224, + [SMALL_STATE(5838)] = 90270, + [SMALL_STATE(5839)] = 90316, + [SMALL_STATE(5840)] = 90362, + [SMALL_STATE(5841)] = 90406, + [SMALL_STATE(5842)] = 90453, + [SMALL_STATE(5843)] = 90496, + [SMALL_STATE(5844)] = 90543, + [SMALL_STATE(5845)] = 90584, + [SMALL_STATE(5846)] = 90625, + [SMALL_STATE(5847)] = 90668, + [SMALL_STATE(5848)] = 90711, + [SMALL_STATE(5849)] = 90754, + [SMALL_STATE(5850)] = 90795, + [SMALL_STATE(5851)] = 90842, + [SMALL_STATE(5852)] = 90884, + [SMALL_STATE(5853)] = 90960, + [SMALL_STATE(5854)] = 91038, + [SMALL_STATE(5855)] = 91080, + [SMALL_STATE(5856)] = 91122, + [SMALL_STATE(5857)] = 91200, + [SMALL_STATE(5858)] = 91242, + [SMALL_STATE(5859)] = 91320, + [SMALL_STATE(5860)] = 91362, + [SMALL_STATE(5861)] = 91404, + [SMALL_STATE(5862)] = 91446, + [SMALL_STATE(5863)] = 91524, + [SMALL_STATE(5864)] = 91570, + [SMALL_STATE(5865)] = 91612, + [SMALL_STATE(5866)] = 91654, + [SMALL_STATE(5867)] = 91696, + [SMALL_STATE(5868)] = 91738, + [SMALL_STATE(5869)] = 91816, + [SMALL_STATE(5870)] = 91894, + [SMALL_STATE(5871)] = 91936, + [SMALL_STATE(5872)] = 91978, + [SMALL_STATE(5873)] = 92020, + [SMALL_STATE(5874)] = 92062, + [SMALL_STATE(5875)] = 92104, + [SMALL_STATE(5876)] = 92146, + [SMALL_STATE(5877)] = 92188, + [SMALL_STATE(5878)] = 92266, + [SMALL_STATE(5879)] = 92308, + [SMALL_STATE(5880)] = 92386, + [SMALL_STATE(5881)] = 92428, + [SMALL_STATE(5882)] = 92506, + [SMALL_STATE(5883)] = 92584, + [SMALL_STATE(5884)] = 92626, + [SMALL_STATE(5885)] = 92704, + [SMALL_STATE(5886)] = 92779, + [SMALL_STATE(5887)] = 92854, + [SMALL_STATE(5888)] = 92929, + [SMALL_STATE(5889)] = 93002, + [SMALL_STATE(5890)] = 93077, + [SMALL_STATE(5891)] = 93152, + [SMALL_STATE(5892)] = 93227, + [SMALL_STATE(5893)] = 93299, + [SMALL_STATE(5894)] = 93371, + [SMALL_STATE(5895)] = 93443, + [SMALL_STATE(5896)] = 93515, + [SMALL_STATE(5897)] = 93587, + [SMALL_STATE(5898)] = 93659, + [SMALL_STATE(5899)] = 93731, + [SMALL_STATE(5900)] = 93803, + [SMALL_STATE(5901)] = 93875, + [SMALL_STATE(5902)] = 93947, + [SMALL_STATE(5903)] = 94019, + [SMALL_STATE(5904)] = 94091, + [SMALL_STATE(5905)] = 94163, + [SMALL_STATE(5906)] = 94235, + [SMALL_STATE(5907)] = 94307, + [SMALL_STATE(5908)] = 94379, + [SMALL_STATE(5909)] = 94451, + [SMALL_STATE(5910)] = 94523, + [SMALL_STATE(5911)] = 94595, + [SMALL_STATE(5912)] = 94667, + [SMALL_STATE(5913)] = 94739, + [SMALL_STATE(5914)] = 94811, + [SMALL_STATE(5915)] = 94883, + [SMALL_STATE(5916)] = 94955, + [SMALL_STATE(5917)] = 95027, + [SMALL_STATE(5918)] = 95099, + [SMALL_STATE(5919)] = 95171, + [SMALL_STATE(5920)] = 95243, + [SMALL_STATE(5921)] = 95315, + [SMALL_STATE(5922)] = 95387, + [SMALL_STATE(5923)] = 95459, + [SMALL_STATE(5924)] = 95531, + [SMALL_STATE(5925)] = 95603, + [SMALL_STATE(5926)] = 95675, + [SMALL_STATE(5927)] = 95747, + [SMALL_STATE(5928)] = 95819, + [SMALL_STATE(5929)] = 95891, + [SMALL_STATE(5930)] = 95963, + [SMALL_STATE(5931)] = 96035, + [SMALL_STATE(5932)] = 96107, + [SMALL_STATE(5933)] = 96179, + [SMALL_STATE(5934)] = 96251, + [SMALL_STATE(5935)] = 96323, + [SMALL_STATE(5936)] = 96395, + [SMALL_STATE(5937)] = 96467, + [SMALL_STATE(5938)] = 96539, + [SMALL_STATE(5939)] = 96611, + [SMALL_STATE(5940)] = 96683, + [SMALL_STATE(5941)] = 96755, + [SMALL_STATE(5942)] = 96827, + [SMALL_STATE(5943)] = 96899, + [SMALL_STATE(5944)] = 96971, + [SMALL_STATE(5945)] = 97043, + [SMALL_STATE(5946)] = 97115, + [SMALL_STATE(5947)] = 97187, + [SMALL_STATE(5948)] = 97259, + [SMALL_STATE(5949)] = 97331, + [SMALL_STATE(5950)] = 97403, + [SMALL_STATE(5951)] = 97475, + [SMALL_STATE(5952)] = 97547, + [SMALL_STATE(5953)] = 97619, + [SMALL_STATE(5954)] = 97691, + [SMALL_STATE(5955)] = 97763, + [SMALL_STATE(5956)] = 97835, + [SMALL_STATE(5957)] = 97907, + [SMALL_STATE(5958)] = 97979, + [SMALL_STATE(5959)] = 98051, + [SMALL_STATE(5960)] = 98123, + [SMALL_STATE(5961)] = 98195, + [SMALL_STATE(5962)] = 98267, + [SMALL_STATE(5963)] = 98339, + [SMALL_STATE(5964)] = 98411, + [SMALL_STATE(5965)] = 98483, + [SMALL_STATE(5966)] = 98555, + [SMALL_STATE(5967)] = 98627, + [SMALL_STATE(5968)] = 98699, + [SMALL_STATE(5969)] = 98771, + [SMALL_STATE(5970)] = 98843, + [SMALL_STATE(5971)] = 98915, + [SMALL_STATE(5972)] = 98987, + [SMALL_STATE(5973)] = 99059, + [SMALL_STATE(5974)] = 99131, + [SMALL_STATE(5975)] = 99203, + [SMALL_STATE(5976)] = 99275, + [SMALL_STATE(5977)] = 99347, + [SMALL_STATE(5978)] = 99419, + [SMALL_STATE(5979)] = 99491, + [SMALL_STATE(5980)] = 99563, + [SMALL_STATE(5981)] = 99635, + [SMALL_STATE(5982)] = 99707, + [SMALL_STATE(5983)] = 99779, + [SMALL_STATE(5984)] = 99851, + [SMALL_STATE(5985)] = 99923, + [SMALL_STATE(5986)] = 99995, + [SMALL_STATE(5987)] = 100067, + [SMALL_STATE(5988)] = 100139, + [SMALL_STATE(5989)] = 100211, + [SMALL_STATE(5990)] = 100283, + [SMALL_STATE(5991)] = 100355, + [SMALL_STATE(5992)] = 100427, + [SMALL_STATE(5993)] = 100499, + [SMALL_STATE(5994)] = 100571, + [SMALL_STATE(5995)] = 100643, + [SMALL_STATE(5996)] = 100715, + [SMALL_STATE(5997)] = 100787, + [SMALL_STATE(5998)] = 100829, + [SMALL_STATE(5999)] = 100901, + [SMALL_STATE(6000)] = 100973, + [SMALL_STATE(6001)] = 101045, + [SMALL_STATE(6002)] = 101117, + [SMALL_STATE(6003)] = 101189, + [SMALL_STATE(6004)] = 101261, + [SMALL_STATE(6005)] = 101333, + [SMALL_STATE(6006)] = 101405, + [SMALL_STATE(6007)] = 101477, + [SMALL_STATE(6008)] = 101549, + [SMALL_STATE(6009)] = 101621, + [SMALL_STATE(6010)] = 101693, + [SMALL_STATE(6011)] = 101765, + [SMALL_STATE(6012)] = 101837, + [SMALL_STATE(6013)] = 101909, + [SMALL_STATE(6014)] = 101981, + [SMALL_STATE(6015)] = 102053, + [SMALL_STATE(6016)] = 102125, + [SMALL_STATE(6017)] = 102197, + [SMALL_STATE(6018)] = 102269, + [SMALL_STATE(6019)] = 102341, + [SMALL_STATE(6020)] = 102413, + [SMALL_STATE(6021)] = 102485, + [SMALL_STATE(6022)] = 102557, + [SMALL_STATE(6023)] = 102629, + [SMALL_STATE(6024)] = 102701, + [SMALL_STATE(6025)] = 102773, + [SMALL_STATE(6026)] = 102845, + [SMALL_STATE(6027)] = 102917, + [SMALL_STATE(6028)] = 102989, + [SMALL_STATE(6029)] = 103061, + [SMALL_STATE(6030)] = 103133, + [SMALL_STATE(6031)] = 103205, + [SMALL_STATE(6032)] = 103277, + [SMALL_STATE(6033)] = 103349, + [SMALL_STATE(6034)] = 103421, + [SMALL_STATE(6035)] = 103493, + [SMALL_STATE(6036)] = 103565, + [SMALL_STATE(6037)] = 103637, + [SMALL_STATE(6038)] = 103709, + [SMALL_STATE(6039)] = 103781, + [SMALL_STATE(6040)] = 103853, + [SMALL_STATE(6041)] = 103925, + [SMALL_STATE(6042)] = 103997, + [SMALL_STATE(6043)] = 104069, + [SMALL_STATE(6044)] = 104141, + [SMALL_STATE(6045)] = 104213, + [SMALL_STATE(6046)] = 104285, + [SMALL_STATE(6047)] = 104357, + [SMALL_STATE(6048)] = 104429, + [SMALL_STATE(6049)] = 104501, + [SMALL_STATE(6050)] = 104573, + [SMALL_STATE(6051)] = 104645, + [SMALL_STATE(6052)] = 104717, + [SMALL_STATE(6053)] = 104789, + [SMALL_STATE(6054)] = 104861, + [SMALL_STATE(6055)] = 104933, + [SMALL_STATE(6056)] = 105005, + [SMALL_STATE(6057)] = 105077, + [SMALL_STATE(6058)] = 105149, + [SMALL_STATE(6059)] = 105221, + [SMALL_STATE(6060)] = 105293, + [SMALL_STATE(6061)] = 105365, + [SMALL_STATE(6062)] = 105437, + [SMALL_STATE(6063)] = 105509, + [SMALL_STATE(6064)] = 105581, + [SMALL_STATE(6065)] = 105653, + [SMALL_STATE(6066)] = 105725, + [SMALL_STATE(6067)] = 105797, + [SMALL_STATE(6068)] = 105869, + [SMALL_STATE(6069)] = 105941, + [SMALL_STATE(6070)] = 106013, + [SMALL_STATE(6071)] = 106085, + [SMALL_STATE(6072)] = 106157, + [SMALL_STATE(6073)] = 106229, + [SMALL_STATE(6074)] = 106301, + [SMALL_STATE(6075)] = 106373, + [SMALL_STATE(6076)] = 106445, + [SMALL_STATE(6077)] = 106517, + [SMALL_STATE(6078)] = 106589, + [SMALL_STATE(6079)] = 106661, + [SMALL_STATE(6080)] = 106733, + [SMALL_STATE(6081)] = 106805, + [SMALL_STATE(6082)] = 106877, + [SMALL_STATE(6083)] = 106949, + [SMALL_STATE(6084)] = 107021, + [SMALL_STATE(6085)] = 107093, + [SMALL_STATE(6086)] = 107165, + [SMALL_STATE(6087)] = 107237, + [SMALL_STATE(6088)] = 107309, + [SMALL_STATE(6089)] = 107381, + [SMALL_STATE(6090)] = 107453, + [SMALL_STATE(6091)] = 107525, + [SMALL_STATE(6092)] = 107597, + [SMALL_STATE(6093)] = 107669, + [SMALL_STATE(6094)] = 107741, + [SMALL_STATE(6095)] = 107813, + [SMALL_STATE(6096)] = 107885, + [SMALL_STATE(6097)] = 107957, + [SMALL_STATE(6098)] = 108029, + [SMALL_STATE(6099)] = 108101, + [SMALL_STATE(6100)] = 108173, + [SMALL_STATE(6101)] = 108245, + [SMALL_STATE(6102)] = 108317, + [SMALL_STATE(6103)] = 108389, + [SMALL_STATE(6104)] = 108461, + [SMALL_STATE(6105)] = 108533, + [SMALL_STATE(6106)] = 108605, + [SMALL_STATE(6107)] = 108677, + [SMALL_STATE(6108)] = 108749, + [SMALL_STATE(6109)] = 108821, + [SMALL_STATE(6110)] = 108893, + [SMALL_STATE(6111)] = 108965, + [SMALL_STATE(6112)] = 109037, + [SMALL_STATE(6113)] = 109109, + [SMALL_STATE(6114)] = 109181, + [SMALL_STATE(6115)] = 109253, + [SMALL_STATE(6116)] = 109325, + [SMALL_STATE(6117)] = 109397, + [SMALL_STATE(6118)] = 109469, + [SMALL_STATE(6119)] = 109541, + [SMALL_STATE(6120)] = 109613, + [SMALL_STATE(6121)] = 109685, + [SMALL_STATE(6122)] = 109757, + [SMALL_STATE(6123)] = 109829, + [SMALL_STATE(6124)] = 109901, + [SMALL_STATE(6125)] = 109973, + [SMALL_STATE(6126)] = 110045, + [SMALL_STATE(6127)] = 110117, + [SMALL_STATE(6128)] = 110189, + [SMALL_STATE(6129)] = 110261, + [SMALL_STATE(6130)] = 110333, + [SMALL_STATE(6131)] = 110405, + [SMALL_STATE(6132)] = 110477, + [SMALL_STATE(6133)] = 110549, + [SMALL_STATE(6134)] = 110621, + [SMALL_STATE(6135)] = 110693, + [SMALL_STATE(6136)] = 110765, + [SMALL_STATE(6137)] = 110837, + [SMALL_STATE(6138)] = 110909, + [SMALL_STATE(6139)] = 110981, + [SMALL_STATE(6140)] = 111053, + [SMALL_STATE(6141)] = 111125, + [SMALL_STATE(6142)] = 111197, + [SMALL_STATE(6143)] = 111269, + [SMALL_STATE(6144)] = 111309, + [SMALL_STATE(6145)] = 111381, + [SMALL_STATE(6146)] = 111421, + [SMALL_STATE(6147)] = 111493, + [SMALL_STATE(6148)] = 111565, + [SMALL_STATE(6149)] = 111637, + [SMALL_STATE(6150)] = 111709, + [SMALL_STATE(6151)] = 111781, + [SMALL_STATE(6152)] = 111853, + [SMALL_STATE(6153)] = 111925, + [SMALL_STATE(6154)] = 111997, + [SMALL_STATE(6155)] = 112069, + [SMALL_STATE(6156)] = 112141, + [SMALL_STATE(6157)] = 112213, + [SMALL_STATE(6158)] = 112285, + [SMALL_STATE(6159)] = 112357, + [SMALL_STATE(6160)] = 112429, + [SMALL_STATE(6161)] = 112501, + [SMALL_STATE(6162)] = 112573, + [SMALL_STATE(6163)] = 112645, + [SMALL_STATE(6164)] = 112717, + [SMALL_STATE(6165)] = 112789, + [SMALL_STATE(6166)] = 112861, + [SMALL_STATE(6167)] = 112933, + [SMALL_STATE(6168)] = 113005, + [SMALL_STATE(6169)] = 113077, + [SMALL_STATE(6170)] = 113149, + [SMALL_STATE(6171)] = 113221, + [SMALL_STATE(6172)] = 113293, + [SMALL_STATE(6173)] = 113365, + [SMALL_STATE(6174)] = 113437, + [SMALL_STATE(6175)] = 113509, + [SMALL_STATE(6176)] = 113581, + [SMALL_STATE(6177)] = 113653, + [SMALL_STATE(6178)] = 113725, + [SMALL_STATE(6179)] = 113765, + [SMALL_STATE(6180)] = 113837, + [SMALL_STATE(6181)] = 113909, + [SMALL_STATE(6182)] = 113981, + [SMALL_STATE(6183)] = 114053, + [SMALL_STATE(6184)] = 114125, + [SMALL_STATE(6185)] = 114197, + [SMALL_STATE(6186)] = 114269, + [SMALL_STATE(6187)] = 114341, + [SMALL_STATE(6188)] = 114413, + [SMALL_STATE(6189)] = 114485, + [SMALL_STATE(6190)] = 114525, + [SMALL_STATE(6191)] = 114597, + [SMALL_STATE(6192)] = 114669, + [SMALL_STATE(6193)] = 114741, + [SMALL_STATE(6194)] = 114813, + [SMALL_STATE(6195)] = 114885, + [SMALL_STATE(6196)] = 114957, + [SMALL_STATE(6197)] = 115029, + [SMALL_STATE(6198)] = 115101, + [SMALL_STATE(6199)] = 115173, + [SMALL_STATE(6200)] = 115245, + [SMALL_STATE(6201)] = 115317, + [SMALL_STATE(6202)] = 115389, + [SMALL_STATE(6203)] = 115461, + [SMALL_STATE(6204)] = 115533, + [SMALL_STATE(6205)] = 115605, + [SMALL_STATE(6206)] = 115677, + [SMALL_STATE(6207)] = 115717, + [SMALL_STATE(6208)] = 115789, + [SMALL_STATE(6209)] = 115861, + [SMALL_STATE(6210)] = 115933, + [SMALL_STATE(6211)] = 116005, + [SMALL_STATE(6212)] = 116045, + [SMALL_STATE(6213)] = 116117, + [SMALL_STATE(6214)] = 116189, + [SMALL_STATE(6215)] = 116261, + [SMALL_STATE(6216)] = 116333, + [SMALL_STATE(6217)] = 116405, + [SMALL_STATE(6218)] = 116477, + [SMALL_STATE(6219)] = 116549, + [SMALL_STATE(6220)] = 116621, + [SMALL_STATE(6221)] = 116693, + [SMALL_STATE(6222)] = 116765, + [SMALL_STATE(6223)] = 116837, + [SMALL_STATE(6224)] = 116909, + [SMALL_STATE(6225)] = 116949, + [SMALL_STATE(6226)] = 117021, + [SMALL_STATE(6227)] = 117093, + [SMALL_STATE(6228)] = 117165, + [SMALL_STATE(6229)] = 117205, + [SMALL_STATE(6230)] = 117277, + [SMALL_STATE(6231)] = 117349, + [SMALL_STATE(6232)] = 117421, + [SMALL_STATE(6233)] = 117493, + [SMALL_STATE(6234)] = 117565, + [SMALL_STATE(6235)] = 117637, + [SMALL_STATE(6236)] = 117709, + [SMALL_STATE(6237)] = 117781, + [SMALL_STATE(6238)] = 117853, + [SMALL_STATE(6239)] = 117925, + [SMALL_STATE(6240)] = 117997, + [SMALL_STATE(6241)] = 118069, + [SMALL_STATE(6242)] = 118141, + [SMALL_STATE(6243)] = 118213, + [SMALL_STATE(6244)] = 118285, + [SMALL_STATE(6245)] = 118357, + [SMALL_STATE(6246)] = 118429, + [SMALL_STATE(6247)] = 118501, + [SMALL_STATE(6248)] = 118573, + [SMALL_STATE(6249)] = 118645, + [SMALL_STATE(6250)] = 118685, + [SMALL_STATE(6251)] = 118757, + [SMALL_STATE(6252)] = 118829, + [SMALL_STATE(6253)] = 118869, + [SMALL_STATE(6254)] = 118941, + [SMALL_STATE(6255)] = 119013, + [SMALL_STATE(6256)] = 119085, + [SMALL_STATE(6257)] = 119157, + [SMALL_STATE(6258)] = 119229, + [SMALL_STATE(6259)] = 119301, + [SMALL_STATE(6260)] = 119373, + [SMALL_STATE(6261)] = 119445, + [SMALL_STATE(6262)] = 119517, + [SMALL_STATE(6263)] = 119589, + [SMALL_STATE(6264)] = 119661, + [SMALL_STATE(6265)] = 119733, + [SMALL_STATE(6266)] = 119805, + [SMALL_STATE(6267)] = 119877, + [SMALL_STATE(6268)] = 119949, + [SMALL_STATE(6269)] = 119989, + [SMALL_STATE(6270)] = 120061, + [SMALL_STATE(6271)] = 120133, + [SMALL_STATE(6272)] = 120205, + [SMALL_STATE(6273)] = 120277, + [SMALL_STATE(6274)] = 120349, + [SMALL_STATE(6275)] = 120421, + [SMALL_STATE(6276)] = 120493, + [SMALL_STATE(6277)] = 120565, + [SMALL_STATE(6278)] = 120637, + [SMALL_STATE(6279)] = 120709, + [SMALL_STATE(6280)] = 120781, + [SMALL_STATE(6281)] = 120853, + [SMALL_STATE(6282)] = 120925, + [SMALL_STATE(6283)] = 120997, + [SMALL_STATE(6284)] = 121069, + [SMALL_STATE(6285)] = 121141, + [SMALL_STATE(6286)] = 121213, + [SMALL_STATE(6287)] = 121285, + [SMALL_STATE(6288)] = 121357, + [SMALL_STATE(6289)] = 121429, + [SMALL_STATE(6290)] = 121501, + [SMALL_STATE(6291)] = 121573, + [SMALL_STATE(6292)] = 121645, + [SMALL_STATE(6293)] = 121717, + [SMALL_STATE(6294)] = 121789, + [SMALL_STATE(6295)] = 121861, + [SMALL_STATE(6296)] = 121933, + [SMALL_STATE(6297)] = 122005, + [SMALL_STATE(6298)] = 122077, + [SMALL_STATE(6299)] = 122149, + [SMALL_STATE(6300)] = 122221, + [SMALL_STATE(6301)] = 122293, + [SMALL_STATE(6302)] = 122365, + [SMALL_STATE(6303)] = 122437, + [SMALL_STATE(6304)] = 122509, + [SMALL_STATE(6305)] = 122581, + [SMALL_STATE(6306)] = 122653, + [SMALL_STATE(6307)] = 122725, + [SMALL_STATE(6308)] = 122797, + [SMALL_STATE(6309)] = 122869, + [SMALL_STATE(6310)] = 122941, + [SMALL_STATE(6311)] = 123013, + [SMALL_STATE(6312)] = 123085, + [SMALL_STATE(6313)] = 123157, + [SMALL_STATE(6314)] = 123229, + [SMALL_STATE(6315)] = 123301, + [SMALL_STATE(6316)] = 123373, + [SMALL_STATE(6317)] = 123445, + [SMALL_STATE(6318)] = 123517, + [SMALL_STATE(6319)] = 123589, + [SMALL_STATE(6320)] = 123661, + [SMALL_STATE(6321)] = 123733, + [SMALL_STATE(6322)] = 123805, + [SMALL_STATE(6323)] = 123877, + [SMALL_STATE(6324)] = 123949, + [SMALL_STATE(6325)] = 124021, + [SMALL_STATE(6326)] = 124093, + [SMALL_STATE(6327)] = 124165, + [SMALL_STATE(6328)] = 124237, + [SMALL_STATE(6329)] = 124309, + [SMALL_STATE(6330)] = 124381, + [SMALL_STATE(6331)] = 124453, + [SMALL_STATE(6332)] = 124525, + [SMALL_STATE(6333)] = 124597, + [SMALL_STATE(6334)] = 124669, + [SMALL_STATE(6335)] = 124741, + [SMALL_STATE(6336)] = 124813, + [SMALL_STATE(6337)] = 124885, + [SMALL_STATE(6338)] = 124957, + [SMALL_STATE(6339)] = 125029, + [SMALL_STATE(6340)] = 125101, + [SMALL_STATE(6341)] = 125173, + [SMALL_STATE(6342)] = 125245, + [SMALL_STATE(6343)] = 125317, + [SMALL_STATE(6344)] = 125389, + [SMALL_STATE(6345)] = 125461, + [SMALL_STATE(6346)] = 125533, + [SMALL_STATE(6347)] = 125605, + [SMALL_STATE(6348)] = 125677, + [SMALL_STATE(6349)] = 125749, + [SMALL_STATE(6350)] = 125821, + [SMALL_STATE(6351)] = 125893, + [SMALL_STATE(6352)] = 125933, + [SMALL_STATE(6353)] = 126005, + [SMALL_STATE(6354)] = 126077, + [SMALL_STATE(6355)] = 126149, + [SMALL_STATE(6356)] = 126221, + [SMALL_STATE(6357)] = 126293, + [SMALL_STATE(6358)] = 126365, + [SMALL_STATE(6359)] = 126437, + [SMALL_STATE(6360)] = 126509, + [SMALL_STATE(6361)] = 126581, + [SMALL_STATE(6362)] = 126653, + [SMALL_STATE(6363)] = 126725, + [SMALL_STATE(6364)] = 126797, + [SMALL_STATE(6365)] = 126869, + [SMALL_STATE(6366)] = 126941, + [SMALL_STATE(6367)] = 127013, + [SMALL_STATE(6368)] = 127085, + [SMALL_STATE(6369)] = 127157, + [SMALL_STATE(6370)] = 127229, + [SMALL_STATE(6371)] = 127301, + [SMALL_STATE(6372)] = 127373, + [SMALL_STATE(6373)] = 127445, + [SMALL_STATE(6374)] = 127517, + [SMALL_STATE(6375)] = 127589, + [SMALL_STATE(6376)] = 127661, + [SMALL_STATE(6377)] = 127733, + [SMALL_STATE(6378)] = 127805, + [SMALL_STATE(6379)] = 127877, + [SMALL_STATE(6380)] = 127949, + [SMALL_STATE(6381)] = 128021, + [SMALL_STATE(6382)] = 128093, + [SMALL_STATE(6383)] = 128165, + [SMALL_STATE(6384)] = 128237, + [SMALL_STATE(6385)] = 128309, + [SMALL_STATE(6386)] = 128381, + [SMALL_STATE(6387)] = 128453, + [SMALL_STATE(6388)] = 128525, + [SMALL_STATE(6389)] = 128597, + [SMALL_STATE(6390)] = 128669, + [SMALL_STATE(6391)] = 128741, + [SMALL_STATE(6392)] = 128813, + [SMALL_STATE(6393)] = 128885, + [SMALL_STATE(6394)] = 128957, + [SMALL_STATE(6395)] = 129029, + [SMALL_STATE(6396)] = 129101, + [SMALL_STATE(6397)] = 129173, + [SMALL_STATE(6398)] = 129245, + [SMALL_STATE(6399)] = 129317, + [SMALL_STATE(6400)] = 129389, + [SMALL_STATE(6401)] = 129461, + [SMALL_STATE(6402)] = 129533, + [SMALL_STATE(6403)] = 129605, + [SMALL_STATE(6404)] = 129677, + [SMALL_STATE(6405)] = 129749, + [SMALL_STATE(6406)] = 129821, + [SMALL_STATE(6407)] = 129893, + [SMALL_STATE(6408)] = 129965, + [SMALL_STATE(6409)] = 130037, + [SMALL_STATE(6410)] = 130109, + [SMALL_STATE(6411)] = 130181, + [SMALL_STATE(6412)] = 130252, + [SMALL_STATE(6413)] = 130323, + [SMALL_STATE(6414)] = 130394, + [SMALL_STATE(6415)] = 130465, + [SMALL_STATE(6416)] = 130536, + [SMALL_STATE(6417)] = 130607, + [SMALL_STATE(6418)] = 130678, + [SMALL_STATE(6419)] = 130749, + [SMALL_STATE(6420)] = 130820, + [SMALL_STATE(6421)] = 130891, + [SMALL_STATE(6422)] = 130962, + [SMALL_STATE(6423)] = 131033, + [SMALL_STATE(6424)] = 131104, + [SMALL_STATE(6425)] = 131175, + [SMALL_STATE(6426)] = 131246, + [SMALL_STATE(6427)] = 131317, + [SMALL_STATE(6428)] = 131388, + [SMALL_STATE(6429)] = 131459, + [SMALL_STATE(6430)] = 131530, + [SMALL_STATE(6431)] = 131601, + [SMALL_STATE(6432)] = 131672, + [SMALL_STATE(6433)] = 131743, + [SMALL_STATE(6434)] = 131814, + [SMALL_STATE(6435)] = 131885, + [SMALL_STATE(6436)] = 131956, + [SMALL_STATE(6437)] = 132027, + [SMALL_STATE(6438)] = 132098, + [SMALL_STATE(6439)] = 132169, + [SMALL_STATE(6440)] = 132240, + [SMALL_STATE(6441)] = 132311, + [SMALL_STATE(6442)] = 132382, + [SMALL_STATE(6443)] = 132453, + [SMALL_STATE(6444)] = 132524, + [SMALL_STATE(6445)] = 132595, + [SMALL_STATE(6446)] = 132666, + [SMALL_STATE(6447)] = 132737, + [SMALL_STATE(6448)] = 132808, + [SMALL_STATE(6449)] = 132879, + [SMALL_STATE(6450)] = 132950, + [SMALL_STATE(6451)] = 133021, + [SMALL_STATE(6452)] = 133092, + [SMALL_STATE(6453)] = 133158, + [SMALL_STATE(6454)] = 133224, + [SMALL_STATE(6455)] = 133290, + [SMALL_STATE(6456)] = 133356, + [SMALL_STATE(6457)] = 133422, + [SMALL_STATE(6458)] = 133488, + [SMALL_STATE(6459)] = 133556, + [SMALL_STATE(6460)] = 133624, + [SMALL_STATE(6461)] = 133690, + [SMALL_STATE(6462)] = 133756, + [SMALL_STATE(6463)] = 133824, + [SMALL_STATE(6464)] = 133890, + [SMALL_STATE(6465)] = 133956, + [SMALL_STATE(6466)] = 134022, + [SMALL_STATE(6467)] = 134088, + [SMALL_STATE(6468)] = 134154, + [SMALL_STATE(6469)] = 134220, + [SMALL_STATE(6470)] = 134286, + [SMALL_STATE(6471)] = 134352, + [SMALL_STATE(6472)] = 134418, + [SMALL_STATE(6473)] = 134486, + [SMALL_STATE(6474)] = 134552, + [SMALL_STATE(6475)] = 134618, + [SMALL_STATE(6476)] = 134684, + [SMALL_STATE(6477)] = 134750, + [SMALL_STATE(6478)] = 134816, + [SMALL_STATE(6479)] = 134884, + [SMALL_STATE(6480)] = 134952, + [SMALL_STATE(6481)] = 135018, + [SMALL_STATE(6482)] = 135084, + [SMALL_STATE(6483)] = 135150, + [SMALL_STATE(6484)] = 135218, + [SMALL_STATE(6485)] = 135284, + [SMALL_STATE(6486)] = 135352, + [SMALL_STATE(6487)] = 135420, + [SMALL_STATE(6488)] = 135486, + [SMALL_STATE(6489)] = 135554, + [SMALL_STATE(6490)] = 135620, + [SMALL_STATE(6491)] = 135688, + [SMALL_STATE(6492)] = 135754, + [SMALL_STATE(6493)] = 135820, + [SMALL_STATE(6494)] = 135886, + [SMALL_STATE(6495)] = 135954, + [SMALL_STATE(6496)] = 136022, + [SMALL_STATE(6497)] = 136088, + [SMALL_STATE(6498)] = 136154, + [SMALL_STATE(6499)] = 136220, + [SMALL_STATE(6500)] = 136286, + [SMALL_STATE(6501)] = 136354, + [SMALL_STATE(6502)] = 136420, + [SMALL_STATE(6503)] = 136488, + [SMALL_STATE(6504)] = 136554, + [SMALL_STATE(6505)] = 136620, + [SMALL_STATE(6506)] = 136686, + [SMALL_STATE(6507)] = 136754, + [SMALL_STATE(6508)] = 136820, + [SMALL_STATE(6509)] = 136886, + [SMALL_STATE(6510)] = 136952, + [SMALL_STATE(6511)] = 137020, + [SMALL_STATE(6512)] = 137088, + [SMALL_STATE(6513)] = 137154, + [SMALL_STATE(6514)] = 137222, + [SMALL_STATE(6515)] = 137290, + [SMALL_STATE(6516)] = 137356, + [SMALL_STATE(6517)] = 137424, + [SMALL_STATE(6518)] = 137492, + [SMALL_STATE(6519)] = 137558, + [SMALL_STATE(6520)] = 137626, + [SMALL_STATE(6521)] = 137694, + [SMALL_STATE(6522)] = 137760, + [SMALL_STATE(6523)] = 137826, + [SMALL_STATE(6524)] = 137892, + [SMALL_STATE(6525)] = 137960, + [SMALL_STATE(6526)] = 138026, + [SMALL_STATE(6527)] = 138092, + [SMALL_STATE(6528)] = 138158, + [SMALL_STATE(6529)] = 138224, + [SMALL_STATE(6530)] = 138292, + [SMALL_STATE(6531)] = 138358, + [SMALL_STATE(6532)] = 138426, + [SMALL_STATE(6533)] = 138494, + [SMALL_STATE(6534)] = 138560, + [SMALL_STATE(6535)] = 138622, + [SMALL_STATE(6536)] = 138684, + [SMALL_STATE(6537)] = 138746, + [SMALL_STATE(6538)] = 138808, + [SMALL_STATE(6539)] = 138844, + [SMALL_STATE(6540)] = 138906, + [SMALL_STATE(6541)] = 138968, + [SMALL_STATE(6542)] = 139030, + [SMALL_STATE(6543)] = 139092, + [SMALL_STATE(6544)] = 139154, + [SMALL_STATE(6545)] = 139216, + [SMALL_STATE(6546)] = 139278, + [SMALL_STATE(6547)] = 139340, + [SMALL_STATE(6548)] = 139402, + [SMALL_STATE(6549)] = 139464, + [SMALL_STATE(6550)] = 139500, + [SMALL_STATE(6551)] = 139562, + [SMALL_STATE(6552)] = 139624, + [SMALL_STATE(6553)] = 139686, + [SMALL_STATE(6554)] = 139748, + [SMALL_STATE(6555)] = 139810, + [SMALL_STATE(6556)] = 139872, + [SMALL_STATE(6557)] = 139934, + [SMALL_STATE(6558)] = 139996, + [SMALL_STATE(6559)] = 140058, + [SMALL_STATE(6560)] = 140120, + [SMALL_STATE(6561)] = 140182, + [SMALL_STATE(6562)] = 140244, + [SMALL_STATE(6563)] = 140306, + [SMALL_STATE(6564)] = 140368, + [SMALL_STATE(6565)] = 140430, + [SMALL_STATE(6566)] = 140492, + [SMALL_STATE(6567)] = 140554, + [SMALL_STATE(6568)] = 140616, + [SMALL_STATE(6569)] = 140678, + [SMALL_STATE(6570)] = 140740, + [SMALL_STATE(6571)] = 140802, + [SMALL_STATE(6572)] = 140864, + [SMALL_STATE(6573)] = 140926, + [SMALL_STATE(6574)] = 140988, + [SMALL_STATE(6575)] = 141050, + [SMALL_STATE(6576)] = 141112, + [SMALL_STATE(6577)] = 141174, + [SMALL_STATE(6578)] = 141236, + [SMALL_STATE(6579)] = 141298, + [SMALL_STATE(6580)] = 141360, + [SMALL_STATE(6581)] = 141422, + [SMALL_STATE(6582)] = 141484, + [SMALL_STATE(6583)] = 141546, + [SMALL_STATE(6584)] = 141608, + [SMALL_STATE(6585)] = 141670, + [SMALL_STATE(6586)] = 141732, + [SMALL_STATE(6587)] = 141794, + [SMALL_STATE(6588)] = 141856, + [SMALL_STATE(6589)] = 141918, + [SMALL_STATE(6590)] = 141980, + [SMALL_STATE(6591)] = 142019, + [SMALL_STATE(6592)] = 142057, + [SMALL_STATE(6593)] = 142095, + [SMALL_STATE(6594)] = 142153, + [SMALL_STATE(6595)] = 142211, + [SMALL_STATE(6596)] = 142269, + [SMALL_STATE(6597)] = 142327, + [SMALL_STATE(6598)] = 142385, + [SMALL_STATE(6599)] = 142443, + [SMALL_STATE(6600)] = 142501, + [SMALL_STATE(6601)] = 142559, + [SMALL_STATE(6602)] = 142617, + [SMALL_STATE(6603)] = 142672, + [SMALL_STATE(6604)] = 142727, + [SMALL_STATE(6605)] = 142782, + [SMALL_STATE(6606)] = 142815, + [SMALL_STATE(6607)] = 142870, + [SMALL_STATE(6608)] = 142925, + [SMALL_STATE(6609)] = 142980, + [SMALL_STATE(6610)] = 143035, + [SMALL_STATE(6611)] = 143090, + [SMALL_STATE(6612)] = 143145, + [SMALL_STATE(6613)] = 143200, + [SMALL_STATE(6614)] = 143255, + [SMALL_STATE(6615)] = 143310, + [SMALL_STATE(6616)] = 143365, + [SMALL_STATE(6617)] = 143420, + [SMALL_STATE(6618)] = 143475, + [SMALL_STATE(6619)] = 143530, + [SMALL_STATE(6620)] = 143585, + [SMALL_STATE(6621)] = 143640, + [SMALL_STATE(6622)] = 143695, + [SMALL_STATE(6623)] = 143728, + [SMALL_STATE(6624)] = 143782, + [SMALL_STATE(6625)] = 143834, + [SMALL_STATE(6626)] = 143886, + [SMALL_STATE(6627)] = 143940, + [SMALL_STATE(6628)] = 143992, + [SMALL_STATE(6629)] = 144046, + [SMALL_STATE(6630)] = 144098, + [SMALL_STATE(6631)] = 144152, + [SMALL_STATE(6632)] = 144206, + [SMALL_STATE(6633)] = 144260, + [SMALL_STATE(6634)] = 144314, + [SMALL_STATE(6635)] = 144368, + [SMALL_STATE(6636)] = 144422, + [SMALL_STATE(6637)] = 144476, + [SMALL_STATE(6638)] = 144528, + [SMALL_STATE(6639)] = 144582, + [SMALL_STATE(6640)] = 144636, + [SMALL_STATE(6641)] = 144690, + [SMALL_STATE(6642)] = 144744, + [SMALL_STATE(6643)] = 144796, + [SMALL_STATE(6644)] = 144850, + [SMALL_STATE(6645)] = 144902, + [SMALL_STATE(6646)] = 144956, + [SMALL_STATE(6647)] = 145008, + [SMALL_STATE(6648)] = 145062, + [SMALL_STATE(6649)] = 145116, + [SMALL_STATE(6650)] = 145168, + [SMALL_STATE(6651)] = 145220, + [SMALL_STATE(6652)] = 145274, + [SMALL_STATE(6653)] = 145328, + [SMALL_STATE(6654)] = 145382, + [SMALL_STATE(6655)] = 145434, + [SMALL_STATE(6656)] = 145488, + [SMALL_STATE(6657)] = 145542, + [SMALL_STATE(6658)] = 145596, + [SMALL_STATE(6659)] = 145648, + [SMALL_STATE(6660)] = 145702, + [SMALL_STATE(6661)] = 145754, + [SMALL_STATE(6662)] = 145808, + [SMALL_STATE(6663)] = 145844, + [SMALL_STATE(6664)] = 145896, + [SMALL_STATE(6665)] = 145948, + [SMALL_STATE(6666)] = 146000, + [SMALL_STATE(6667)] = 146054, + [SMALL_STATE(6668)] = 146108, + [SMALL_STATE(6669)] = 146160, + [SMALL_STATE(6670)] = 146214, + [SMALL_STATE(6671)] = 146266, + [SMALL_STATE(6672)] = 146320, + [SMALL_STATE(6673)] = 146372, + [SMALL_STATE(6674)] = 146426, + [SMALL_STATE(6675)] = 146480, + [SMALL_STATE(6676)] = 146534, + [SMALL_STATE(6677)] = 146588, + [SMALL_STATE(6678)] = 146642, + [SMALL_STATE(6679)] = 146696, + [SMALL_STATE(6680)] = 146750, + [SMALL_STATE(6681)] = 146804, + [SMALL_STATE(6682)] = 146858, + [SMALL_STATE(6683)] = 146912, + [SMALL_STATE(6684)] = 146966, + [SMALL_STATE(6685)] = 147020, + [SMALL_STATE(6686)] = 147072, + [SMALL_STATE(6687)] = 147124, + [SMALL_STATE(6688)] = 147173, + [SMALL_STATE(6689)] = 147208, + [SMALL_STATE(6690)] = 147257, + [SMALL_STATE(6691)] = 147306, + [SMALL_STATE(6692)] = 147355, + [SMALL_STATE(6693)] = 147404, + [SMALL_STATE(6694)] = 147453, + [SMALL_STATE(6695)] = 147502, + [SMALL_STATE(6696)] = 147551, + [SMALL_STATE(6697)] = 147600, + [SMALL_STATE(6698)] = 147649, + [SMALL_STATE(6699)] = 147698, + [SMALL_STATE(6700)] = 147747, + [SMALL_STATE(6701)] = 147796, + [SMALL_STATE(6702)] = 147845, + [SMALL_STATE(6703)] = 147894, + [SMALL_STATE(6704)] = 147943, + [SMALL_STATE(6705)] = 147992, + [SMALL_STATE(6706)] = 148041, + [SMALL_STATE(6707)] = 148090, + [SMALL_STATE(6708)] = 148139, + [SMALL_STATE(6709)] = 148188, + [SMALL_STATE(6710)] = 148237, + [SMALL_STATE(6711)] = 148286, + [SMALL_STATE(6712)] = 148335, + [SMALL_STATE(6713)] = 148384, + [SMALL_STATE(6714)] = 148433, + [SMALL_STATE(6715)] = 148482, + [SMALL_STATE(6716)] = 148531, + [SMALL_STATE(6717)] = 148580, + [SMALL_STATE(6718)] = 148629, + [SMALL_STATE(6719)] = 148678, + [SMALL_STATE(6720)] = 148727, + [SMALL_STATE(6721)] = 148776, + [SMALL_STATE(6722)] = 148825, + [SMALL_STATE(6723)] = 148874, + [SMALL_STATE(6724)] = 148923, + [SMALL_STATE(6725)] = 148972, + [SMALL_STATE(6726)] = 149021, + [SMALL_STATE(6727)] = 149070, + [SMALL_STATE(6728)] = 149119, + [SMALL_STATE(6729)] = 149168, + [SMALL_STATE(6730)] = 149217, + [SMALL_STATE(6731)] = 149266, + [SMALL_STATE(6732)] = 149315, + [SMALL_STATE(6733)] = 149364, + [SMALL_STATE(6734)] = 149413, + [SMALL_STATE(6735)] = 149462, + [SMALL_STATE(6736)] = 149511, + [SMALL_STATE(6737)] = 149560, + [SMALL_STATE(6738)] = 149609, + [SMALL_STATE(6739)] = 149644, + [SMALL_STATE(6740)] = 149693, + [SMALL_STATE(6741)] = 149742, + [SMALL_STATE(6742)] = 149791, + [SMALL_STATE(6743)] = 149840, + [SMALL_STATE(6744)] = 149870, + [SMALL_STATE(6745)] = 149900, + [SMALL_STATE(6746)] = 149930, + [SMALL_STATE(6747)] = 149960, + [SMALL_STATE(6748)] = 150011, + [SMALL_STATE(6749)] = 150062, + [SMALL_STATE(6750)] = 150111, + [SMALL_STATE(6751)] = 150162, + [SMALL_STATE(6752)] = 150211, + [SMALL_STATE(6753)] = 150260, + [SMALL_STATE(6754)] = 150309, + [SMALL_STATE(6755)] = 150358, + [SMALL_STATE(6756)] = 150407, + [SMALL_STATE(6757)] = 150456, + [SMALL_STATE(6758)] = 150507, + [SMALL_STATE(6759)] = 150556, + [SMALL_STATE(6760)] = 150607, + [SMALL_STATE(6761)] = 150658, + [SMALL_STATE(6762)] = 150709, + [SMALL_STATE(6763)] = 150758, + [SMALL_STATE(6764)] = 150809, + [SMALL_STATE(6765)] = 150858, + [SMALL_STATE(6766)] = 150907, + [SMALL_STATE(6767)] = 150956, + [SMALL_STATE(6768)] = 151005, + [SMALL_STATE(6769)] = 151054, + [SMALL_STATE(6770)] = 151103, + [SMALL_STATE(6771)] = 151152, + [SMALL_STATE(6772)] = 151201, + [SMALL_STATE(6773)] = 151250, + [SMALL_STATE(6774)] = 151299, + [SMALL_STATE(6775)] = 151350, + [SMALL_STATE(6776)] = 151399, + [SMALL_STATE(6777)] = 151448, + [SMALL_STATE(6778)] = 151497, + [SMALL_STATE(6779)] = 151546, + [SMALL_STATE(6780)] = 151597, + [SMALL_STATE(6781)] = 151646, + [SMALL_STATE(6782)] = 151697, + [SMALL_STATE(6783)] = 151748, + [SMALL_STATE(6784)] = 151799, + [SMALL_STATE(6785)] = 151850, + [SMALL_STATE(6786)] = 151899, + [SMALL_STATE(6787)] = 151950, + [SMALL_STATE(6788)] = 152001, + [SMALL_STATE(6789)] = 152052, + [SMALL_STATE(6790)] = 152101, + [SMALL_STATE(6791)] = 152150, + [SMALL_STATE(6792)] = 152201, + [SMALL_STATE(6793)] = 152252, + [SMALL_STATE(6794)] = 152301, + [SMALL_STATE(6795)] = 152350, + [SMALL_STATE(6796)] = 152401, + [SMALL_STATE(6797)] = 152452, + [SMALL_STATE(6798)] = 152503, + [SMALL_STATE(6799)] = 152552, + [SMALL_STATE(6800)] = 152601, + [SMALL_STATE(6801)] = 152650, + [SMALL_STATE(6802)] = 152701, + [SMALL_STATE(6803)] = 152750, + [SMALL_STATE(6804)] = 152801, + [SMALL_STATE(6805)] = 152850, + [SMALL_STATE(6806)] = 152899, + [SMALL_STATE(6807)] = 152948, + [SMALL_STATE(6808)] = 152997, + [SMALL_STATE(6809)] = 153048, + [SMALL_STATE(6810)] = 153097, + [SMALL_STATE(6811)] = 153146, + [SMALL_STATE(6812)] = 153195, + [SMALL_STATE(6813)] = 153244, + [SMALL_STATE(6814)] = 153295, + [SMALL_STATE(6815)] = 153344, + [SMALL_STATE(6816)] = 153393, + [SMALL_STATE(6817)] = 153444, + [SMALL_STATE(6818)] = 153495, + [SMALL_STATE(6819)] = 153544, + [SMALL_STATE(6820)] = 153595, + [SMALL_STATE(6821)] = 153644, + [SMALL_STATE(6822)] = 153693, + [SMALL_STATE(6823)] = 153742, + [SMALL_STATE(6824)] = 153793, + [SMALL_STATE(6825)] = 153844, + [SMALL_STATE(6826)] = 153893, + [SMALL_STATE(6827)] = 153942, + [SMALL_STATE(6828)] = 153993, + [SMALL_STATE(6829)] = 154042, + [SMALL_STATE(6830)] = 154091, + [SMALL_STATE(6831)] = 154140, + [SMALL_STATE(6832)] = 154191, + [SMALL_STATE(6833)] = 154240, + [SMALL_STATE(6834)] = 154291, + [SMALL_STATE(6835)] = 154340, + [SMALL_STATE(6836)] = 154391, + [SMALL_STATE(6837)] = 154440, + [SMALL_STATE(6838)] = 154489, + [SMALL_STATE(6839)] = 154540, + [SMALL_STATE(6840)] = 154589, + [SMALL_STATE(6841)] = 154640, + [SMALL_STATE(6842)] = 154691, + [SMALL_STATE(6843)] = 154742, + [SMALL_STATE(6844)] = 154793, + [SMALL_STATE(6845)] = 154844, + [SMALL_STATE(6846)] = 154895, + [SMALL_STATE(6847)] = 154946, + [SMALL_STATE(6848)] = 154995, + [SMALL_STATE(6849)] = 155046, + [SMALL_STATE(6850)] = 155095, + [SMALL_STATE(6851)] = 155146, + [SMALL_STATE(6852)] = 155197, + [SMALL_STATE(6853)] = 155246, + [SMALL_STATE(6854)] = 155297, + [SMALL_STATE(6855)] = 155348, + [SMALL_STATE(6856)] = 155399, + [SMALL_STATE(6857)] = 155450, + [SMALL_STATE(6858)] = 155501, + [SMALL_STATE(6859)] = 155552, + [SMALL_STATE(6860)] = 155603, + [SMALL_STATE(6861)] = 155654, + [SMALL_STATE(6862)] = 155703, + [SMALL_STATE(6863)] = 155754, + [SMALL_STATE(6864)] = 155805, + [SMALL_STATE(6865)] = 155856, + [SMALL_STATE(6866)] = 155907, + [SMALL_STATE(6867)] = 155958, + [SMALL_STATE(6868)] = 156009, + [SMALL_STATE(6869)] = 156060, + [SMALL_STATE(6870)] = 156111, + [SMALL_STATE(6871)] = 156162, + [SMALL_STATE(6872)] = 156213, + [SMALL_STATE(6873)] = 156264, + [SMALL_STATE(6874)] = 156315, + [SMALL_STATE(6875)] = 156364, + [SMALL_STATE(6876)] = 156415, + [SMALL_STATE(6877)] = 156466, + [SMALL_STATE(6878)] = 156515, + [SMALL_STATE(6879)] = 156566, + [SMALL_STATE(6880)] = 156617, + [SMALL_STATE(6881)] = 156666, + [SMALL_STATE(6882)] = 156717, + [SMALL_STATE(6883)] = 156768, + [SMALL_STATE(6884)] = 156819, + [SMALL_STATE(6885)] = 156870, + [SMALL_STATE(6886)] = 156921, + [SMALL_STATE(6887)] = 156970, + [SMALL_STATE(6888)] = 157019, + [SMALL_STATE(6889)] = 157068, + [SMALL_STATE(6890)] = 157117, + [SMALL_STATE(6891)] = 157168, + [SMALL_STATE(6892)] = 157217, + [SMALL_STATE(6893)] = 157266, + [SMALL_STATE(6894)] = 157315, + [SMALL_STATE(6895)] = 157366, + [SMALL_STATE(6896)] = 157417, + [SMALL_STATE(6897)] = 157466, + [SMALL_STATE(6898)] = 157515, + [SMALL_STATE(6899)] = 157564, + [SMALL_STATE(6900)] = 157613, + [SMALL_STATE(6901)] = 157662, + [SMALL_STATE(6902)] = 157711, + [SMALL_STATE(6903)] = 157760, + [SMALL_STATE(6904)] = 157809, + [SMALL_STATE(6905)] = 157858, + [SMALL_STATE(6906)] = 157907, + [SMALL_STATE(6907)] = 157958, + [SMALL_STATE(6908)] = 158007, + [SMALL_STATE(6909)] = 158056, + [SMALL_STATE(6910)] = 158105, + [SMALL_STATE(6911)] = 158154, + [SMALL_STATE(6912)] = 158203, + [SMALL_STATE(6913)] = 158252, + [SMALL_STATE(6914)] = 158301, + [SMALL_STATE(6915)] = 158350, + [SMALL_STATE(6916)] = 158399, + [SMALL_STATE(6917)] = 158448, + [SMALL_STATE(6918)] = 158497, + [SMALL_STATE(6919)] = 158546, + [SMALL_STATE(6920)] = 158595, + [SMALL_STATE(6921)] = 158644, + [SMALL_STATE(6922)] = 158695, + [SMALL_STATE(6923)] = 158744, + [SMALL_STATE(6924)] = 158793, + [SMALL_STATE(6925)] = 158842, + [SMALL_STATE(6926)] = 158893, + [SMALL_STATE(6927)] = 158942, + [SMALL_STATE(6928)] = 158993, + [SMALL_STATE(6929)] = 159044, + [SMALL_STATE(6930)] = 159093, + [SMALL_STATE(6931)] = 159142, + [SMALL_STATE(6932)] = 159191, + [SMALL_STATE(6933)] = 159240, + [SMALL_STATE(6934)] = 159289, + [SMALL_STATE(6935)] = 159338, + [SMALL_STATE(6936)] = 159387, + [SMALL_STATE(6937)] = 159438, + [SMALL_STATE(6938)] = 159489, + [SMALL_STATE(6939)] = 159540, + [SMALL_STATE(6940)] = 159589, + [SMALL_STATE(6941)] = 159638, + [SMALL_STATE(6942)] = 159687, + [SMALL_STATE(6943)] = 159736, + [SMALL_STATE(6944)] = 159787, + [SMALL_STATE(6945)] = 159838, + [SMALL_STATE(6946)] = 159889, + [SMALL_STATE(6947)] = 159938, + [SMALL_STATE(6948)] = 159987, + [SMALL_STATE(6949)] = 160038, + [SMALL_STATE(6950)] = 160089, + [SMALL_STATE(6951)] = 160138, + [SMALL_STATE(6952)] = 160189, + [SMALL_STATE(6953)] = 160240, + [SMALL_STATE(6954)] = 160291, + [SMALL_STATE(6955)] = 160342, + [SMALL_STATE(6956)] = 160393, + [SMALL_STATE(6957)] = 160444, + [SMALL_STATE(6958)] = 160493, + [SMALL_STATE(6959)] = 160542, + [SMALL_STATE(6960)] = 160593, + [SMALL_STATE(6961)] = 160642, + [SMALL_STATE(6962)] = 160691, + [SMALL_STATE(6963)] = 160740, + [SMALL_STATE(6964)] = 160791, + [SMALL_STATE(6965)] = 160840, + [SMALL_STATE(6966)] = 160891, + [SMALL_STATE(6967)] = 160942, + [SMALL_STATE(6968)] = 160993, + [SMALL_STATE(6969)] = 161044, + [SMALL_STATE(6970)] = 161093, + [SMALL_STATE(6971)] = 161144, + [SMALL_STATE(6972)] = 161193, + [SMALL_STATE(6973)] = 161242, + [SMALL_STATE(6974)] = 161293, + [SMALL_STATE(6975)] = 161342, + [SMALL_STATE(6976)] = 161391, + [SMALL_STATE(6977)] = 161440, + [SMALL_STATE(6978)] = 161491, + [SMALL_STATE(6979)] = 161540, + [SMALL_STATE(6980)] = 161591, + [SMALL_STATE(6981)] = 161640, + [SMALL_STATE(6982)] = 161691, + [SMALL_STATE(6983)] = 161742, + [SMALL_STATE(6984)] = 161793, + [SMALL_STATE(6985)] = 161842, + [SMALL_STATE(6986)] = 161893, + [SMALL_STATE(6987)] = 161944, + [SMALL_STATE(6988)] = 161995, + [SMALL_STATE(6989)] = 162046, + [SMALL_STATE(6990)] = 162095, + [SMALL_STATE(6991)] = 162144, + [SMALL_STATE(6992)] = 162193, + [SMALL_STATE(6993)] = 162242, + [SMALL_STATE(6994)] = 162293, + [SMALL_STATE(6995)] = 162342, + [SMALL_STATE(6996)] = 162393, + [SMALL_STATE(6997)] = 162442, + [SMALL_STATE(6998)] = 162493, + [SMALL_STATE(6999)] = 162542, + [SMALL_STATE(7000)] = 162593, + [SMALL_STATE(7001)] = 162642, + [SMALL_STATE(7002)] = 162693, + [SMALL_STATE(7003)] = 162742, + [SMALL_STATE(7004)] = 162793, + [SMALL_STATE(7005)] = 162842, + [SMALL_STATE(7006)] = 162893, + [SMALL_STATE(7007)] = 162944, + [SMALL_STATE(7008)] = 162993, + [SMALL_STATE(7009)] = 163042, + [SMALL_STATE(7010)] = 163091, + [SMALL_STATE(7011)] = 163140, + [SMALL_STATE(7012)] = 163189, + [SMALL_STATE(7013)] = 163240, + [SMALL_STATE(7014)] = 163291, + [SMALL_STATE(7015)] = 163342, + [SMALL_STATE(7016)] = 163393, + [SMALL_STATE(7017)] = 163442, + [SMALL_STATE(7018)] = 163491, + [SMALL_STATE(7019)] = 163540, + [SMALL_STATE(7020)] = 163591, + [SMALL_STATE(7021)] = 163640, + [SMALL_STATE(7022)] = 163691, + [SMALL_STATE(7023)] = 163740, + [SMALL_STATE(7024)] = 163791, + [SMALL_STATE(7025)] = 163840, + [SMALL_STATE(7026)] = 163889, + [SMALL_STATE(7027)] = 163940, + [SMALL_STATE(7028)] = 163991, + [SMALL_STATE(7029)] = 164040, + [SMALL_STATE(7030)] = 164091, + [SMALL_STATE(7031)] = 164140, + [SMALL_STATE(7032)] = 164191, + [SMALL_STATE(7033)] = 164240, + [SMALL_STATE(7034)] = 164289, + [SMALL_STATE(7035)] = 164338, + [SMALL_STATE(7036)] = 164387, + [SMALL_STATE(7037)] = 164438, + [SMALL_STATE(7038)] = 164489, + [SMALL_STATE(7039)] = 164540, + [SMALL_STATE(7040)] = 164589, + [SMALL_STATE(7041)] = 164640, + [SMALL_STATE(7042)] = 164691, + [SMALL_STATE(7043)] = 164740, + [SMALL_STATE(7044)] = 164789, + [SMALL_STATE(7045)] = 164840, + [SMALL_STATE(7046)] = 164889, + [SMALL_STATE(7047)] = 164938, + [SMALL_STATE(7048)] = 164989, + [SMALL_STATE(7049)] = 165040, + [SMALL_STATE(7050)] = 165091, + [SMALL_STATE(7051)] = 165140, + [SMALL_STATE(7052)] = 165189, + [SMALL_STATE(7053)] = 165240, + [SMALL_STATE(7054)] = 165289, + [SMALL_STATE(7055)] = 165340, + [SMALL_STATE(7056)] = 165391, + [SMALL_STATE(7057)] = 165440, + [SMALL_STATE(7058)] = 165489, + [SMALL_STATE(7059)] = 165540, + [SMALL_STATE(7060)] = 165591, + [SMALL_STATE(7061)] = 165642, + [SMALL_STATE(7062)] = 165691, + [SMALL_STATE(7063)] = 165742, + [SMALL_STATE(7064)] = 165793, + [SMALL_STATE(7065)] = 165844, + [SMALL_STATE(7066)] = 165895, + [SMALL_STATE(7067)] = 165946, + [SMALL_STATE(7068)] = 165997, + [SMALL_STATE(7069)] = 166048, + [SMALL_STATE(7070)] = 166099, + [SMALL_STATE(7071)] = 166150, + [SMALL_STATE(7072)] = 166201, + [SMALL_STATE(7073)] = 166252, + [SMALL_STATE(7074)] = 166303, + [SMALL_STATE(7075)] = 166354, + [SMALL_STATE(7076)] = 166405, + [SMALL_STATE(7077)] = 166456, + [SMALL_STATE(7078)] = 166507, + [SMALL_STATE(7079)] = 166558, + [SMALL_STATE(7080)] = 166609, + [SMALL_STATE(7081)] = 166660, + [SMALL_STATE(7082)] = 166711, + [SMALL_STATE(7083)] = 166762, + [SMALL_STATE(7084)] = 166813, + [SMALL_STATE(7085)] = 166864, + [SMALL_STATE(7086)] = 166915, + [SMALL_STATE(7087)] = 166966, + [SMALL_STATE(7088)] = 167017, + [SMALL_STATE(7089)] = 167068, + [SMALL_STATE(7090)] = 167119, + [SMALL_STATE(7091)] = 167170, + [SMALL_STATE(7092)] = 167221, + [SMALL_STATE(7093)] = 167272, + [SMALL_STATE(7094)] = 167323, + [SMALL_STATE(7095)] = 167374, + [SMALL_STATE(7096)] = 167425, + [SMALL_STATE(7097)] = 167476, + [SMALL_STATE(7098)] = 167527, + [SMALL_STATE(7099)] = 167578, + [SMALL_STATE(7100)] = 167629, + [SMALL_STATE(7101)] = 167680, + [SMALL_STATE(7102)] = 167729, + [SMALL_STATE(7103)] = 167780, + [SMALL_STATE(7104)] = 167831, + [SMALL_STATE(7105)] = 167882, + [SMALL_STATE(7106)] = 167933, + [SMALL_STATE(7107)] = 167984, + [SMALL_STATE(7108)] = 168035, + [SMALL_STATE(7109)] = 168086, + [SMALL_STATE(7110)] = 168137, + [SMALL_STATE(7111)] = 168188, + [SMALL_STATE(7112)] = 168239, + [SMALL_STATE(7113)] = 168290, + [SMALL_STATE(7114)] = 168341, + [SMALL_STATE(7115)] = 168392, + [SMALL_STATE(7116)] = 168443, + [SMALL_STATE(7117)] = 168494, + [SMALL_STATE(7118)] = 168545, + [SMALL_STATE(7119)] = 168596, + [SMALL_STATE(7120)] = 168647, + [SMALL_STATE(7121)] = 168698, + [SMALL_STATE(7122)] = 168749, + [SMALL_STATE(7123)] = 168800, + [SMALL_STATE(7124)] = 168851, + [SMALL_STATE(7125)] = 168902, + [SMALL_STATE(7126)] = 168953, + [SMALL_STATE(7127)] = 169004, + [SMALL_STATE(7128)] = 169055, + [SMALL_STATE(7129)] = 169106, + [SMALL_STATE(7130)] = 169157, + [SMALL_STATE(7131)] = 169208, + [SMALL_STATE(7132)] = 169259, + [SMALL_STATE(7133)] = 169310, + [SMALL_STATE(7134)] = 169361, + [SMALL_STATE(7135)] = 169412, + [SMALL_STATE(7136)] = 169460, + [SMALL_STATE(7137)] = 169504, + [SMALL_STATE(7138)] = 169548, + [SMALL_STATE(7139)] = 169586, + [SMALL_STATE(7140)] = 169622, + [SMALL_STATE(7141)] = 169666, + [SMALL_STATE(7142)] = 169710, + [SMALL_STATE(7143)] = 169754, + [SMALL_STATE(7144)] = 169798, + [SMALL_STATE(7145)] = 169846, + [SMALL_STATE(7146)] = 169890, + [SMALL_STATE(7147)] = 169934, + [SMALL_STATE(7148)] = 169978, + [SMALL_STATE(7149)] = 170022, + [SMALL_STATE(7150)] = 170070, + [SMALL_STATE(7151)] = 170102, + [SMALL_STATE(7152)] = 170146, + [SMALL_STATE(7153)] = 170190, + [SMALL_STATE(7154)] = 170234, + [SMALL_STATE(7155)] = 170282, + [SMALL_STATE(7156)] = 170326, + [SMALL_STATE(7157)] = 170374, + [SMALL_STATE(7158)] = 170418, + [SMALL_STATE(7159)] = 170462, + [SMALL_STATE(7160)] = 170506, + [SMALL_STATE(7161)] = 170554, + [SMALL_STATE(7162)] = 170598, + [SMALL_STATE(7163)] = 170642, + [SMALL_STATE(7164)] = 170680, + [SMALL_STATE(7165)] = 170724, + [SMALL_STATE(7166)] = 170768, + [SMALL_STATE(7167)] = 170812, + [SMALL_STATE(7168)] = 170856, + [SMALL_STATE(7169)] = 170900, + [SMALL_STATE(7170)] = 170944, + [SMALL_STATE(7171)] = 170988, + [SMALL_STATE(7172)] = 171032, + [SMALL_STATE(7173)] = 171076, + [SMALL_STATE(7174)] = 171120, + [SMALL_STATE(7175)] = 171164, + [SMALL_STATE(7176)] = 171208, + [SMALL_STATE(7177)] = 171252, + [SMALL_STATE(7178)] = 171296, + [SMALL_STATE(7179)] = 171340, + [SMALL_STATE(7180)] = 171384, + [SMALL_STATE(7181)] = 171428, + [SMALL_STATE(7182)] = 171472, + [SMALL_STATE(7183)] = 171500, + [SMALL_STATE(7184)] = 171548, + [SMALL_STATE(7185)] = 171596, + [SMALL_STATE(7186)] = 171640, + [SMALL_STATE(7187)] = 171670, + [SMALL_STATE(7188)] = 171718, + [SMALL_STATE(7189)] = 171762, + [SMALL_STATE(7190)] = 171806, + [SMALL_STATE(7191)] = 171850, + [SMALL_STATE(7192)] = 171894, + [SMALL_STATE(7193)] = 171938, + [SMALL_STATE(7194)] = 171986, + [SMALL_STATE(7195)] = 172030, + [SMALL_STATE(7196)] = 172078, + [SMALL_STATE(7197)] = 172126, + [SMALL_STATE(7198)] = 172174, + [SMALL_STATE(7199)] = 172218, + [SMALL_STATE(7200)] = 172262, + [SMALL_STATE(7201)] = 172306, + [SMALL_STATE(7202)] = 172350, + [SMALL_STATE(7203)] = 172394, + [SMALL_STATE(7204)] = 172438, + [SMALL_STATE(7205)] = 172482, + [SMALL_STATE(7206)] = 172526, + [SMALL_STATE(7207)] = 172574, + [SMALL_STATE(7208)] = 172618, + [SMALL_STATE(7209)] = 172666, + [SMALL_STATE(7210)] = 172702, + [SMALL_STATE(7211)] = 172746, + [SMALL_STATE(7212)] = 172777, + [SMALL_STATE(7213)] = 172812, + [SMALL_STATE(7214)] = 172847, + [SMALL_STATE(7215)] = 172878, + [SMALL_STATE(7216)] = 172905, + [SMALL_STATE(7217)] = 172948, + [SMALL_STATE(7218)] = 172983, + [SMALL_STATE(7219)] = 173010, + [SMALL_STATE(7220)] = 173045, + [SMALL_STATE(7221)] = 173076, + [SMALL_STATE(7222)] = 173107, + [SMALL_STATE(7223)] = 173138, + [SMALL_STATE(7224)] = 173173, + [SMALL_STATE(7225)] = 173213, + [SMALL_STATE(7226)] = 173253, + [SMALL_STATE(7227)] = 173293, + [SMALL_STATE(7228)] = 173333, + [SMALL_STATE(7229)] = 173361, + [SMALL_STATE(7230)] = 173391, + [SMALL_STATE(7231)] = 173431, + [SMALL_STATE(7232)] = 173471, + [SMALL_STATE(7233)] = 173511, + [SMALL_STATE(7234)] = 173551, + [SMALL_STATE(7235)] = 173591, + [SMALL_STATE(7236)] = 173631, + [SMALL_STATE(7237)] = 173671, + [SMALL_STATE(7238)] = 173711, + [SMALL_STATE(7239)] = 173751, + [SMALL_STATE(7240)] = 173791, + [SMALL_STATE(7241)] = 173831, + [SMALL_STATE(7242)] = 173871, + [SMALL_STATE(7243)] = 173911, + [SMALL_STATE(7244)] = 173951, + [SMALL_STATE(7245)] = 173991, + [SMALL_STATE(7246)] = 174031, + [SMALL_STATE(7247)] = 174057, + [SMALL_STATE(7248)] = 174083, + [SMALL_STATE(7249)] = 174123, + [SMALL_STATE(7250)] = 174163, + [SMALL_STATE(7251)] = 174191, + [SMALL_STATE(7252)] = 174231, + [SMALL_STATE(7253)] = 174271, + [SMALL_STATE(7254)] = 174311, + [SMALL_STATE(7255)] = 174351, + [SMALL_STATE(7256)] = 174391, + [SMALL_STATE(7257)] = 174431, + [SMALL_STATE(7258)] = 174471, + [SMALL_STATE(7259)] = 174511, + [SMALL_STATE(7260)] = 174551, + [SMALL_STATE(7261)] = 174591, + [SMALL_STATE(7262)] = 174631, + [SMALL_STATE(7263)] = 174671, + [SMALL_STATE(7264)] = 174697, + [SMALL_STATE(7265)] = 174737, + [SMALL_STATE(7266)] = 174777, + [SMALL_STATE(7267)] = 174807, + [SMALL_STATE(7268)] = 174847, + [SMALL_STATE(7269)] = 174887, + [SMALL_STATE(7270)] = 174927, + [SMALL_STATE(7271)] = 174967, + [SMALL_STATE(7272)] = 175007, + [SMALL_STATE(7273)] = 175047, + [SMALL_STATE(7274)] = 175087, + [SMALL_STATE(7275)] = 175127, + [SMALL_STATE(7276)] = 175167, + [SMALL_STATE(7277)] = 175207, + [SMALL_STATE(7278)] = 175247, + [SMALL_STATE(7279)] = 175287, + [SMALL_STATE(7280)] = 175313, + [SMALL_STATE(7281)] = 175350, + [SMALL_STATE(7282)] = 175387, + [SMALL_STATE(7283)] = 175424, + [SMALL_STATE(7284)] = 175461, + [SMALL_STATE(7285)] = 175486, + [SMALL_STATE(7286)] = 175523, + [SMALL_STATE(7287)] = 175562, + [SMALL_STATE(7288)] = 175599, + [SMALL_STATE(7289)] = 175636, + [SMALL_STATE(7290)] = 175675, + [SMALL_STATE(7291)] = 175700, + [SMALL_STATE(7292)] = 175737, + [SMALL_STATE(7293)] = 175774, + [SMALL_STATE(7294)] = 175811, + [SMALL_STATE(7295)] = 175850, + [SMALL_STATE(7296)] = 175887, + [SMALL_STATE(7297)] = 175924, + [SMALL_STATE(7298)] = 175953, + [SMALL_STATE(7299)] = 175990, + [SMALL_STATE(7300)] = 176029, + [SMALL_STATE(7301)] = 176068, + [SMALL_STATE(7302)] = 176105, + [SMALL_STATE(7303)] = 176142, + [SMALL_STATE(7304)] = 176179, + [SMALL_STATE(7305)] = 176216, + [SMALL_STATE(7306)] = 176253, + [SMALL_STATE(7307)] = 176290, + [SMALL_STATE(7308)] = 176319, + [SMALL_STATE(7309)] = 176356, + [SMALL_STATE(7310)] = 176393, + [SMALL_STATE(7311)] = 176430, + [SMALL_STATE(7312)] = 176461, + [SMALL_STATE(7313)] = 176498, + [SMALL_STATE(7314)] = 176535, + [SMALL_STATE(7315)] = 176560, + [SMALL_STATE(7316)] = 176585, + [SMALL_STATE(7317)] = 176622, + [SMALL_STATE(7318)] = 176661, + [SMALL_STATE(7319)] = 176698, + [SMALL_STATE(7320)] = 176735, + [SMALL_STATE(7321)] = 176772, + [SMALL_STATE(7322)] = 176797, + [SMALL_STATE(7323)] = 176822, + [SMALL_STATE(7324)] = 176859, + [SMALL_STATE(7325)] = 176896, + [SMALL_STATE(7326)] = 176933, + [SMALL_STATE(7327)] = 176958, + [SMALL_STATE(7328)] = 176983, + [SMALL_STATE(7329)] = 177022, + [SMALL_STATE(7330)] = 177061, + [SMALL_STATE(7331)] = 177098, + [SMALL_STATE(7332)] = 177135, + [SMALL_STATE(7333)] = 177172, + [SMALL_STATE(7334)] = 177201, + [SMALL_STATE(7335)] = 177238, + [SMALL_STATE(7336)] = 177277, + [SMALL_STATE(7337)] = 177302, + [SMALL_STATE(7338)] = 177339, + [SMALL_STATE(7339)] = 177368, + [SMALL_STATE(7340)] = 177405, + [SMALL_STATE(7341)] = 177432, + [SMALL_STATE(7342)] = 177457, + [SMALL_STATE(7343)] = 177494, + [SMALL_STATE(7344)] = 177531, + [SMALL_STATE(7345)] = 177570, + [SMALL_STATE(7346)] = 177607, + [SMALL_STATE(7347)] = 177646, + [SMALL_STATE(7348)] = 177683, + [SMALL_STATE(7349)] = 177720, + [SMALL_STATE(7350)] = 177759, + [SMALL_STATE(7351)] = 177784, + [SMALL_STATE(7352)] = 177821, + [SMALL_STATE(7353)] = 177858, + [SMALL_STATE(7354)] = 177883, + [SMALL_STATE(7355)] = 177920, + [SMALL_STATE(7356)] = 177959, + [SMALL_STATE(7357)] = 177996, + [SMALL_STATE(7358)] = 178025, + [SMALL_STATE(7359)] = 178062, + [SMALL_STATE(7360)] = 178098, + [SMALL_STATE(7361)] = 178122, + [SMALL_STATE(7362)] = 178158, + [SMALL_STATE(7363)] = 178194, + [SMALL_STATE(7364)] = 178230, + [SMALL_STATE(7365)] = 178266, + [SMALL_STATE(7366)] = 178302, + [SMALL_STATE(7367)] = 178338, + [SMALL_STATE(7368)] = 178374, + [SMALL_STATE(7369)] = 178410, + [SMALL_STATE(7370)] = 178446, + [SMALL_STATE(7371)] = 178482, + [SMALL_STATE(7372)] = 178518, + [SMALL_STATE(7373)] = 178550, + [SMALL_STATE(7374)] = 178586, + [SMALL_STATE(7375)] = 178622, + [SMALL_STATE(7376)] = 178650, + [SMALL_STATE(7377)] = 178686, + [SMALL_STATE(7378)] = 178718, + [SMALL_STATE(7379)] = 178754, + [SMALL_STATE(7380)] = 178786, + [SMALL_STATE(7381)] = 178818, + [SMALL_STATE(7382)] = 178854, + [SMALL_STATE(7383)] = 178890, + [SMALL_STATE(7384)] = 178922, + [SMALL_STATE(7385)] = 178958, + [SMALL_STATE(7386)] = 178994, + [SMALL_STATE(7387)] = 179030, + [SMALL_STATE(7388)] = 179066, + [SMALL_STATE(7389)] = 179090, + [SMALL_STATE(7390)] = 179126, + [SMALL_STATE(7391)] = 179162, + [SMALL_STATE(7392)] = 179198, + [SMALL_STATE(7393)] = 179230, + [SMALL_STATE(7394)] = 179266, + [SMALL_STATE(7395)] = 179298, + [SMALL_STATE(7396)] = 179334, + [SMALL_STATE(7397)] = 179370, + [SMALL_STATE(7398)] = 179406, + [SMALL_STATE(7399)] = 179438, + [SMALL_STATE(7400)] = 179474, + [SMALL_STATE(7401)] = 179510, + [SMALL_STATE(7402)] = 179546, + [SMALL_STATE(7403)] = 179582, + [SMALL_STATE(7404)] = 179606, + [SMALL_STATE(7405)] = 179642, + [SMALL_STATE(7406)] = 179674, + [SMALL_STATE(7407)] = 179706, + [SMALL_STATE(7408)] = 179742, + [SMALL_STATE(7409)] = 179778, + [SMALL_STATE(7410)] = 179814, + [SMALL_STATE(7411)] = 179850, + [SMALL_STATE(7412)] = 179882, + [SMALL_STATE(7413)] = 179918, + [SMALL_STATE(7414)] = 179950, + [SMALL_STATE(7415)] = 179986, + [SMALL_STATE(7416)] = 180022, + [SMALL_STATE(7417)] = 180058, + [SMALL_STATE(7418)] = 180094, + [SMALL_STATE(7419)] = 180126, + [SMALL_STATE(7420)] = 180162, + [SMALL_STATE(7421)] = 180198, + [SMALL_STATE(7422)] = 180230, + [SMALL_STATE(7423)] = 180266, + [SMALL_STATE(7424)] = 180302, + [SMALL_STATE(7425)] = 180338, + [SMALL_STATE(7426)] = 180374, + [SMALL_STATE(7427)] = 180410, + [SMALL_STATE(7428)] = 180446, + [SMALL_STATE(7429)] = 180482, + [SMALL_STATE(7430)] = 180518, + [SMALL_STATE(7431)] = 180554, + [SMALL_STATE(7432)] = 180590, + [SMALL_STATE(7433)] = 180626, + [SMALL_STATE(7434)] = 180662, + [SMALL_STATE(7435)] = 180698, + [SMALL_STATE(7436)] = 180730, + [SMALL_STATE(7437)] = 180766, + [SMALL_STATE(7438)] = 180798, + [SMALL_STATE(7439)] = 180834, + [SMALL_STATE(7440)] = 180870, + [SMALL_STATE(7441)] = 180906, + [SMALL_STATE(7442)] = 180938, + [SMALL_STATE(7443)] = 180970, + [SMALL_STATE(7444)] = 181002, + [SMALL_STATE(7445)] = 181038, + [SMALL_STATE(7446)] = 181074, + [SMALL_STATE(7447)] = 181110, + [SMALL_STATE(7448)] = 181144, + [SMALL_STATE(7449)] = 181176, + [SMALL_STATE(7450)] = 181212, + [SMALL_STATE(7451)] = 181244, + [SMALL_STATE(7452)] = 181280, + [SMALL_STATE(7453)] = 181316, + [SMALL_STATE(7454)] = 181352, + [SMALL_STATE(7455)] = 181388, + [SMALL_STATE(7456)] = 181420, + [SMALL_STATE(7457)] = 181456, + [SMALL_STATE(7458)] = 181492, + [SMALL_STATE(7459)] = 181528, + [SMALL_STATE(7460)] = 181560, + [SMALL_STATE(7461)] = 181598, + [SMALL_STATE(7462)] = 181634, + [SMALL_STATE(7463)] = 181666, + [SMALL_STATE(7464)] = 181698, + [SMALL_STATE(7465)] = 181730, + [SMALL_STATE(7466)] = 181766, + [SMALL_STATE(7467)] = 181802, + [SMALL_STATE(7468)] = 181838, + [SMALL_STATE(7469)] = 181870, + [SMALL_STATE(7470)] = 181906, + [SMALL_STATE(7471)] = 181942, + [SMALL_STATE(7472)] = 181966, + [SMALL_STATE(7473)] = 182002, + [SMALL_STATE(7474)] = 182038, + [SMALL_STATE(7475)] = 182074, + [SMALL_STATE(7476)] = 182110, + [SMALL_STATE(7477)] = 182142, + [SMALL_STATE(7478)] = 182178, + [SMALL_STATE(7479)] = 182210, + [SMALL_STATE(7480)] = 182246, + [SMALL_STATE(7481)] = 182278, + [SMALL_STATE(7482)] = 182314, + [SMALL_STATE(7483)] = 182338, + [SMALL_STATE(7484)] = 182374, + [SMALL_STATE(7485)] = 182406, + [SMALL_STATE(7486)] = 182442, + [SMALL_STATE(7487)] = 182478, + [SMALL_STATE(7488)] = 182510, + [SMALL_STATE(7489)] = 182546, + [SMALL_STATE(7490)] = 182582, + [SMALL_STATE(7491)] = 182618, + [SMALL_STATE(7492)] = 182654, + [SMALL_STATE(7493)] = 182690, + [SMALL_STATE(7494)] = 182726, + [SMALL_STATE(7495)] = 182758, + [SMALL_STATE(7496)] = 182794, + [SMALL_STATE(7497)] = 182830, + [SMALL_STATE(7498)] = 182866, + [SMALL_STATE(7499)] = 182902, + [SMALL_STATE(7500)] = 182938, + [SMALL_STATE(7501)] = 182974, + [SMALL_STATE(7502)] = 182998, + [SMALL_STATE(7503)] = 183030, + [SMALL_STATE(7504)] = 183066, + [SMALL_STATE(7505)] = 183102, + [SMALL_STATE(7506)] = 183138, + [SMALL_STATE(7507)] = 183162, + [SMALL_STATE(7508)] = 183194, + [SMALL_STATE(7509)] = 183226, + [SMALL_STATE(7510)] = 183262, + [SMALL_STATE(7511)] = 183298, + [SMALL_STATE(7512)] = 183330, + [SMALL_STATE(7513)] = 183366, + [SMALL_STATE(7514)] = 183398, + [SMALL_STATE(7515)] = 183434, + [SMALL_STATE(7516)] = 183470, + [SMALL_STATE(7517)] = 183506, + [SMALL_STATE(7518)] = 183538, + [SMALL_STATE(7519)] = 183570, + [SMALL_STATE(7520)] = 183606, + [SMALL_STATE(7521)] = 183638, + [SMALL_STATE(7522)] = 183670, + [SMALL_STATE(7523)] = 183702, + [SMALL_STATE(7524)] = 183734, + [SMALL_STATE(7525)] = 183770, + [SMALL_STATE(7526)] = 183802, + [SMALL_STATE(7527)] = 183838, + [SMALL_STATE(7528)] = 183874, + [SMALL_STATE(7529)] = 183906, + [SMALL_STATE(7530)] = 183942, + [SMALL_STATE(7531)] = 183974, + [SMALL_STATE(7532)] = 184006, + [SMALL_STATE(7533)] = 184038, + [SMALL_STATE(7534)] = 184074, + [SMALL_STATE(7535)] = 184102, + [SMALL_STATE(7536)] = 184138, + [SMALL_STATE(7537)] = 184170, + [SMALL_STATE(7538)] = 184206, + [SMALL_STATE(7539)] = 184242, + [SMALL_STATE(7540)] = 184274, + [SMALL_STATE(7541)] = 184306, + [SMALL_STATE(7542)] = 184342, + [SMALL_STATE(7543)] = 184374, + [SMALL_STATE(7544)] = 184406, + [SMALL_STATE(7545)] = 184438, + [SMALL_STATE(7546)] = 184474, + [SMALL_STATE(7547)] = 184510, + [SMALL_STATE(7548)] = 184542, + [SMALL_STATE(7549)] = 184574, + [SMALL_STATE(7550)] = 184604, + [SMALL_STATE(7551)] = 184636, + [SMALL_STATE(7552)] = 184668, + [SMALL_STATE(7553)] = 184704, + [SMALL_STATE(7554)] = 184740, + [SMALL_STATE(7555)] = 184772, + [SMALL_STATE(7556)] = 184808, + [SMALL_STATE(7557)] = 184840, + [SMALL_STATE(7558)] = 184872, + [SMALL_STATE(7559)] = 184910, + [SMALL_STATE(7560)] = 184942, + [SMALL_STATE(7561)] = 184974, + [SMALL_STATE(7562)] = 185006, + [SMALL_STATE(7563)] = 185042, + [SMALL_STATE(7564)] = 185074, + [SMALL_STATE(7565)] = 185110, + [SMALL_STATE(7566)] = 185142, + [SMALL_STATE(7567)] = 185170, + [SMALL_STATE(7568)] = 185198, + [SMALL_STATE(7569)] = 185234, + [SMALL_STATE(7570)] = 185270, + [SMALL_STATE(7571)] = 185306, + [SMALL_STATE(7572)] = 185338, + [SMALL_STATE(7573)] = 185374, + [SMALL_STATE(7574)] = 185406, + [SMALL_STATE(7575)] = 185442, + [SMALL_STATE(7576)] = 185478, + [SMALL_STATE(7577)] = 185514, + [SMALL_STATE(7578)] = 185550, + [SMALL_STATE(7579)] = 185582, + [SMALL_STATE(7580)] = 185614, + [SMALL_STATE(7581)] = 185646, + [SMALL_STATE(7582)] = 185678, + [SMALL_STATE(7583)] = 185714, + [SMALL_STATE(7584)] = 185750, + [SMALL_STATE(7585)] = 185782, + [SMALL_STATE(7586)] = 185818, + [SMALL_STATE(7587)] = 185850, + [SMALL_STATE(7588)] = 185886, + [SMALL_STATE(7589)] = 185922, + [SMALL_STATE(7590)] = 185954, + [SMALL_STATE(7591)] = 185990, + [SMALL_STATE(7592)] = 186022, + [SMALL_STATE(7593)] = 186058, + [SMALL_STATE(7594)] = 186094, + [SMALL_STATE(7595)] = 186130, + [SMALL_STATE(7596)] = 186166, + [SMALL_STATE(7597)] = 186198, + [SMALL_STATE(7598)] = 186234, + [SMALL_STATE(7599)] = 186270, + [SMALL_STATE(7600)] = 186302, + [SMALL_STATE(7601)] = 186338, + [SMALL_STATE(7602)] = 186370, + [SMALL_STATE(7603)] = 186402, + [SMALL_STATE(7604)] = 186435, + [SMALL_STATE(7605)] = 186470, + [SMALL_STATE(7606)] = 186503, + [SMALL_STATE(7607)] = 186538, + [SMALL_STATE(7608)] = 186561, + [SMALL_STATE(7609)] = 186584, + [SMALL_STATE(7610)] = 186619, + [SMALL_STATE(7611)] = 186654, + [SMALL_STATE(7612)] = 186687, + [SMALL_STATE(7613)] = 186710, + [SMALL_STATE(7614)] = 186739, + [SMALL_STATE(7615)] = 186774, + [SMALL_STATE(7616)] = 186809, + [SMALL_STATE(7617)] = 186844, + [SMALL_STATE(7618)] = 186879, + [SMALL_STATE(7619)] = 186914, + [SMALL_STATE(7620)] = 186947, + [SMALL_STATE(7621)] = 186980, + [SMALL_STATE(7622)] = 187015, + [SMALL_STATE(7623)] = 187050, + [SMALL_STATE(7624)] = 187085, + [SMALL_STATE(7625)] = 187118, + [SMALL_STATE(7626)] = 187153, + [SMALL_STATE(7627)] = 187188, + [SMALL_STATE(7628)] = 187223, + [SMALL_STATE(7629)] = 187246, + [SMALL_STATE(7630)] = 187279, + [SMALL_STATE(7631)] = 187312, + [SMALL_STATE(7632)] = 187347, + [SMALL_STATE(7633)] = 187382, + [SMALL_STATE(7634)] = 187415, + [SMALL_STATE(7635)] = 187450, + [SMALL_STATE(7636)] = 187473, + [SMALL_STATE(7637)] = 187508, + [SMALL_STATE(7638)] = 187543, + [SMALL_STATE(7639)] = 187578, + [SMALL_STATE(7640)] = 187611, + [SMALL_STATE(7641)] = 187644, + [SMALL_STATE(7642)] = 187667, + [SMALL_STATE(7643)] = 187702, + [SMALL_STATE(7644)] = 187737, + [SMALL_STATE(7645)] = 187770, + [SMALL_STATE(7646)] = 187803, + [SMALL_STATE(7647)] = 187838, + [SMALL_STATE(7648)] = 187861, + [SMALL_STATE(7649)] = 187894, + [SMALL_STATE(7650)] = 187929, + [SMALL_STATE(7651)] = 187962, + [SMALL_STATE(7652)] = 187995, + [SMALL_STATE(7653)] = 188030, + [SMALL_STATE(7654)] = 188053, + [SMALL_STATE(7655)] = 188086, + [SMALL_STATE(7656)] = 188121, + [SMALL_STATE(7657)] = 188156, + [SMALL_STATE(7658)] = 188189, + [SMALL_STATE(7659)] = 188224, + [SMALL_STATE(7660)] = 188259, + [SMALL_STATE(7661)] = 188292, + [SMALL_STATE(7662)] = 188327, + [SMALL_STATE(7663)] = 188362, + [SMALL_STATE(7664)] = 188397, + [SMALL_STATE(7665)] = 188432, + [SMALL_STATE(7666)] = 188465, + [SMALL_STATE(7667)] = 188500, + [SMALL_STATE(7668)] = 188533, + [SMALL_STATE(7669)] = 188566, + [SMALL_STATE(7670)] = 188601, + [SMALL_STATE(7671)] = 188634, + [SMALL_STATE(7672)] = 188669, + [SMALL_STATE(7673)] = 188704, + [SMALL_STATE(7674)] = 188737, + [SMALL_STATE(7675)] = 188770, + [SMALL_STATE(7676)] = 188805, + [SMALL_STATE(7677)] = 188838, + [SMALL_STATE(7678)] = 188873, + [SMALL_STATE(7679)] = 188906, + [SMALL_STATE(7680)] = 188941, + [SMALL_STATE(7681)] = 188976, + [SMALL_STATE(7682)] = 189009, + [SMALL_STATE(7683)] = 189042, + [SMALL_STATE(7684)] = 189077, + [SMALL_STATE(7685)] = 189110, + [SMALL_STATE(7686)] = 189145, + [SMALL_STATE(7687)] = 189178, + [SMALL_STATE(7688)] = 189211, + [SMALL_STATE(7689)] = 189244, + [SMALL_STATE(7690)] = 189279, + [SMALL_STATE(7691)] = 189314, + [SMALL_STATE(7692)] = 189349, + [SMALL_STATE(7693)] = 189382, + [SMALL_STATE(7694)] = 189405, + [SMALL_STATE(7695)] = 189440, + [SMALL_STATE(7696)] = 189475, + [SMALL_STATE(7697)] = 189510, + [SMALL_STATE(7698)] = 189545, + [SMALL_STATE(7699)] = 189578, + [SMALL_STATE(7700)] = 189613, + [SMALL_STATE(7701)] = 189646, + [SMALL_STATE(7702)] = 189679, + [SMALL_STATE(7703)] = 189714, + [SMALL_STATE(7704)] = 189747, + [SMALL_STATE(7705)] = 189782, + [SMALL_STATE(7706)] = 189817, + [SMALL_STATE(7707)] = 189852, + [SMALL_STATE(7708)] = 189885, + [SMALL_STATE(7709)] = 189920, + [SMALL_STATE(7710)] = 189943, + [SMALL_STATE(7711)] = 189976, + [SMALL_STATE(7712)] = 190009, + [SMALL_STATE(7713)] = 190044, + [SMALL_STATE(7714)] = 190077, + [SMALL_STATE(7715)] = 190112, + [SMALL_STATE(7716)] = 190147, + [SMALL_STATE(7717)] = 190182, + [SMALL_STATE(7718)] = 190217, + [SMALL_STATE(7719)] = 190252, + [SMALL_STATE(7720)] = 190285, + [SMALL_STATE(7721)] = 190320, + [SMALL_STATE(7722)] = 190353, + [SMALL_STATE(7723)] = 190386, + [SMALL_STATE(7724)] = 190421, + [SMALL_STATE(7725)] = 190454, + [SMALL_STATE(7726)] = 190487, + [SMALL_STATE(7727)] = 190522, + [SMALL_STATE(7728)] = 190545, + [SMALL_STATE(7729)] = 190580, + [SMALL_STATE(7730)] = 190615, + [SMALL_STATE(7731)] = 190648, + [SMALL_STATE(7732)] = 190683, + [SMALL_STATE(7733)] = 190718, + [SMALL_STATE(7734)] = 190751, + [SMALL_STATE(7735)] = 190786, + [SMALL_STATE(7736)] = 190821, + [SMALL_STATE(7737)] = 190856, + [SMALL_STATE(7738)] = 190889, + [SMALL_STATE(7739)] = 190924, + [SMALL_STATE(7740)] = 190957, + [SMALL_STATE(7741)] = 190992, + [SMALL_STATE(7742)] = 191027, + [SMALL_STATE(7743)] = 191062, + [SMALL_STATE(7744)] = 191097, + [SMALL_STATE(7745)] = 191132, + [SMALL_STATE(7746)] = 191167, + [SMALL_STATE(7747)] = 191202, + [SMALL_STATE(7748)] = 191235, + [SMALL_STATE(7749)] = 191270, + [SMALL_STATE(7750)] = 191305, + [SMALL_STATE(7751)] = 191340, + [SMALL_STATE(7752)] = 191375, + [SMALL_STATE(7753)] = 191410, + [SMALL_STATE(7754)] = 191445, + [SMALL_STATE(7755)] = 191478, + [SMALL_STATE(7756)] = 191511, + [SMALL_STATE(7757)] = 191546, + [SMALL_STATE(7758)] = 191579, + [SMALL_STATE(7759)] = 191612, + [SMALL_STATE(7760)] = 191647, + [SMALL_STATE(7761)] = 191682, + [SMALL_STATE(7762)] = 191717, + [SMALL_STATE(7763)] = 191750, + [SMALL_STATE(7764)] = 191783, + [SMALL_STATE(7765)] = 191818, + [SMALL_STATE(7766)] = 191851, + [SMALL_STATE(7767)] = 191886, + [SMALL_STATE(7768)] = 191919, + [SMALL_STATE(7769)] = 191954, + [SMALL_STATE(7770)] = 191989, + [SMALL_STATE(7771)] = 192022, + [SMALL_STATE(7772)] = 192055, + [SMALL_STATE(7773)] = 192090, + [SMALL_STATE(7774)] = 192125, + [SMALL_STATE(7775)] = 192160, + [SMALL_STATE(7776)] = 192193, + [SMALL_STATE(7777)] = 192228, + [SMALL_STATE(7778)] = 192263, + [SMALL_STATE(7779)] = 192298, + [SMALL_STATE(7780)] = 192333, + [SMALL_STATE(7781)] = 192366, + [SMALL_STATE(7782)] = 192399, + [SMALL_STATE(7783)] = 192432, + [SMALL_STATE(7784)] = 192467, + [SMALL_STATE(7785)] = 192502, + [SMALL_STATE(7786)] = 192535, + [SMALL_STATE(7787)] = 192570, + [SMALL_STATE(7788)] = 192603, + [SMALL_STATE(7789)] = 192638, + [SMALL_STATE(7790)] = 192673, + [SMALL_STATE(7791)] = 192708, + [SMALL_STATE(7792)] = 192743, + [SMALL_STATE(7793)] = 192776, + [SMALL_STATE(7794)] = 192809, + [SMALL_STATE(7795)] = 192844, + [SMALL_STATE(7796)] = 192877, + [SMALL_STATE(7797)] = 192912, + [SMALL_STATE(7798)] = 192945, + [SMALL_STATE(7799)] = 192980, + [SMALL_STATE(7800)] = 193015, + [SMALL_STATE(7801)] = 193050, + [SMALL_STATE(7802)] = 193083, + [SMALL_STATE(7803)] = 193118, + [SMALL_STATE(7804)] = 193151, + [SMALL_STATE(7805)] = 193184, + [SMALL_STATE(7806)] = 193219, + [SMALL_STATE(7807)] = 193252, + [SMALL_STATE(7808)] = 193287, + [SMALL_STATE(7809)] = 193320, + [SMALL_STATE(7810)] = 193355, + [SMALL_STATE(7811)] = 193390, + [SMALL_STATE(7812)] = 193425, + [SMALL_STATE(7813)] = 193458, + [SMALL_STATE(7814)] = 193493, + [SMALL_STATE(7815)] = 193528, + [SMALL_STATE(7816)] = 193561, + [SMALL_STATE(7817)] = 193594, + [SMALL_STATE(7818)] = 193629, + [SMALL_STATE(7819)] = 193662, + [SMALL_STATE(7820)] = 193697, + [SMALL_STATE(7821)] = 193732, + [SMALL_STATE(7822)] = 193767, + [SMALL_STATE(7823)] = 193800, + [SMALL_STATE(7824)] = 193835, + [SMALL_STATE(7825)] = 193868, + [SMALL_STATE(7826)] = 193903, + [SMALL_STATE(7827)] = 193938, + [SMALL_STATE(7828)] = 193973, + [SMALL_STATE(7829)] = 194000, + [SMALL_STATE(7830)] = 194035, + [SMALL_STATE(7831)] = 194068, + [SMALL_STATE(7832)] = 194103, + [SMALL_STATE(7833)] = 194138, + [SMALL_STATE(7834)] = 194173, + [SMALL_STATE(7835)] = 194206, + [SMALL_STATE(7836)] = 194241, + [SMALL_STATE(7837)] = 194274, + [SMALL_STATE(7838)] = 194307, + [SMALL_STATE(7839)] = 194342, + [SMALL_STATE(7840)] = 194377, + [SMALL_STATE(7841)] = 194399, + [SMALL_STATE(7842)] = 194421, + [SMALL_STATE(7843)] = 194443, + [SMALL_STATE(7844)] = 194469, + [SMALL_STATE(7845)] = 194491, + [SMALL_STATE(7846)] = 194513, + [SMALL_STATE(7847)] = 194535, + [SMALL_STATE(7848)] = 194557, + [SMALL_STATE(7849)] = 194579, + [SMALL_STATE(7850)] = 194601, + [SMALL_STATE(7851)] = 194623, + [SMALL_STATE(7852)] = 194645, + [SMALL_STATE(7853)] = 194671, + [SMALL_STATE(7854)] = 194693, + [SMALL_STATE(7855)] = 194715, + [SMALL_STATE(7856)] = 194737, + [SMALL_STATE(7857)] = 194763, + [SMALL_STATE(7858)] = 194789, + [SMALL_STATE(7859)] = 194811, + [SMALL_STATE(7860)] = 194833, + [SMALL_STATE(7861)] = 194855, + [SMALL_STATE(7862)] = 194877, + [SMALL_STATE(7863)] = 194907, + [SMALL_STATE(7864)] = 194929, + [SMALL_STATE(7865)] = 194951, + [SMALL_STATE(7866)] = 194973, + [SMALL_STATE(7867)] = 194995, + [SMALL_STATE(7868)] = 195024, + [SMALL_STATE(7869)] = 195053, + [SMALL_STATE(7870)] = 195082, + [SMALL_STATE(7871)] = 195111, + [SMALL_STATE(7872)] = 195136, + [SMALL_STATE(7873)] = 195165, + [SMALL_STATE(7874)] = 195188, + [SMALL_STATE(7875)] = 195217, + [SMALL_STATE(7876)] = 195246, + [SMALL_STATE(7877)] = 195275, + [SMALL_STATE(7878)] = 195300, + [SMALL_STATE(7879)] = 195325, + [SMALL_STATE(7880)] = 195350, + [SMALL_STATE(7881)] = 195375, + [SMALL_STATE(7882)] = 195400, + [SMALL_STATE(7883)] = 195425, [SMALL_STATE(7884)] = 195450, - [SMALL_STATE(7885)] = 195485, - [SMALL_STATE(7886)] = 195520, - [SMALL_STATE(7887)] = 195553, - [SMALL_STATE(7888)] = 195588, - [SMALL_STATE(7889)] = 195621, - [SMALL_STATE(7890)] = 195654, - [SMALL_STATE(7891)] = 195689, - [SMALL_STATE(7892)] = 195722, - [SMALL_STATE(7893)] = 195757, - [SMALL_STATE(7894)] = 195792, - [SMALL_STATE(7895)] = 195827, - [SMALL_STATE(7896)] = 195862, - [SMALL_STATE(7897)] = 195897, - [SMALL_STATE(7898)] = 195932, - [SMALL_STATE(7899)] = 195967, - [SMALL_STATE(7900)] = 196002, - [SMALL_STATE(7901)] = 196037, - [SMALL_STATE(7902)] = 196070, - [SMALL_STATE(7903)] = 196105, - [SMALL_STATE(7904)] = 196140, - [SMALL_STATE(7905)] = 196175, - [SMALL_STATE(7906)] = 196208, - [SMALL_STATE(7907)] = 196243, - [SMALL_STATE(7908)] = 196266, - [SMALL_STATE(7909)] = 196301, - [SMALL_STATE(7910)] = 196334, - [SMALL_STATE(7911)] = 196367, - [SMALL_STATE(7912)] = 196400, - [SMALL_STATE(7913)] = 196435, - [SMALL_STATE(7914)] = 196468, - [SMALL_STATE(7915)] = 196503, - [SMALL_STATE(7916)] = 196538, - [SMALL_STATE(7917)] = 196573, - [SMALL_STATE(7918)] = 196606, - [SMALL_STATE(7919)] = 196639, - [SMALL_STATE(7920)] = 196672, - [SMALL_STATE(7921)] = 196705, - [SMALL_STATE(7922)] = 196738, - [SMALL_STATE(7923)] = 196771, - [SMALL_STATE(7924)] = 196806, - [SMALL_STATE(7925)] = 196841, - [SMALL_STATE(7926)] = 196874, - [SMALL_STATE(7927)] = 196909, - [SMALL_STATE(7928)] = 196942, - [SMALL_STATE(7929)] = 196977, - [SMALL_STATE(7930)] = 197010, - [SMALL_STATE(7931)] = 197043, - [SMALL_STATE(7932)] = 197078, - [SMALL_STATE(7933)] = 197107, - [SMALL_STATE(7934)] = 197142, - [SMALL_STATE(7935)] = 197177, - [SMALL_STATE(7936)] = 197210, - [SMALL_STATE(7937)] = 197245, - [SMALL_STATE(7938)] = 197278, - [SMALL_STATE(7939)] = 197311, - [SMALL_STATE(7940)] = 197344, - [SMALL_STATE(7941)] = 197377, - [SMALL_STATE(7942)] = 197410, - [SMALL_STATE(7943)] = 197443, - [SMALL_STATE(7944)] = 197478, - [SMALL_STATE(7945)] = 197513, - [SMALL_STATE(7946)] = 197548, - [SMALL_STATE(7947)] = 197581, - [SMALL_STATE(7948)] = 197616, - [SMALL_STATE(7949)] = 197649, - [SMALL_STATE(7950)] = 197682, - [SMALL_STATE(7951)] = 197717, - [SMALL_STATE(7952)] = 197752, - [SMALL_STATE(7953)] = 197787, - [SMALL_STATE(7954)] = 197822, - [SMALL_STATE(7955)] = 197857, - [SMALL_STATE(7956)] = 197892, - [SMALL_STATE(7957)] = 197927, - [SMALL_STATE(7958)] = 197962, - [SMALL_STATE(7959)] = 197997, - [SMALL_STATE(7960)] = 198032, - [SMALL_STATE(7961)] = 198067, - [SMALL_STATE(7962)] = 198102, - [SMALL_STATE(7963)] = 198137, - [SMALL_STATE(7964)] = 198172, - [SMALL_STATE(7965)] = 198205, - [SMALL_STATE(7966)] = 198228, - [SMALL_STATE(7967)] = 198263, - [SMALL_STATE(7968)] = 198296, - [SMALL_STATE(7969)] = 198331, - [SMALL_STATE(7970)] = 198366, - [SMALL_STATE(7971)] = 198401, - [SMALL_STATE(7972)] = 198436, - [SMALL_STATE(7973)] = 198469, - [SMALL_STATE(7974)] = 198502, - [SMALL_STATE(7975)] = 198537, - [SMALL_STATE(7976)] = 198570, - [SMALL_STATE(7977)] = 198605, - [SMALL_STATE(7978)] = 198628, - [SMALL_STATE(7979)] = 198663, - [SMALL_STATE(7980)] = 198698, - [SMALL_STATE(7981)] = 198733, - [SMALL_STATE(7982)] = 198768, - [SMALL_STATE(7983)] = 198803, - [SMALL_STATE(7984)] = 198836, - [SMALL_STATE(7985)] = 198871, - [SMALL_STATE(7986)] = 198906, - [SMALL_STATE(7987)] = 198941, - [SMALL_STATE(7988)] = 198976, - [SMALL_STATE(7989)] = 199011, - [SMALL_STATE(7990)] = 199046, - [SMALL_STATE(7991)] = 199081, - [SMALL_STATE(7992)] = 199114, - [SMALL_STATE(7993)] = 199149, - [SMALL_STATE(7994)] = 199184, - [SMALL_STATE(7995)] = 199219, - [SMALL_STATE(7996)] = 199252, - [SMALL_STATE(7997)] = 199287, - [SMALL_STATE(7998)] = 199320, - [SMALL_STATE(7999)] = 199355, - [SMALL_STATE(8000)] = 199390, - [SMALL_STATE(8001)] = 199413, - [SMALL_STATE(8002)] = 199446, - [SMALL_STATE(8003)] = 199481, - [SMALL_STATE(8004)] = 199514, - [SMALL_STATE(8005)] = 199547, - [SMALL_STATE(8006)] = 199582, - [SMALL_STATE(8007)] = 199615, - [SMALL_STATE(8008)] = 199650, - [SMALL_STATE(8009)] = 199685, - [SMALL_STATE(8010)] = 199720, - [SMALL_STATE(8011)] = 199753, - [SMALL_STATE(8012)] = 199788, - [SMALL_STATE(8013)] = 199811, - [SMALL_STATE(8014)] = 199846, - [SMALL_STATE(8015)] = 199881, - [SMALL_STATE(8016)] = 199916, - [SMALL_STATE(8017)] = 199949, - [SMALL_STATE(8018)] = 199982, - [SMALL_STATE(8019)] = 200017, - [SMALL_STATE(8020)] = 200052, - [SMALL_STATE(8021)] = 200087, - [SMALL_STATE(8022)] = 200120, - [SMALL_STATE(8023)] = 200153, - [SMALL_STATE(8024)] = 200176, - [SMALL_STATE(8025)] = 200209, - [SMALL_STATE(8026)] = 200244, - [SMALL_STATE(8027)] = 200277, - [SMALL_STATE(8028)] = 200312, - [SMALL_STATE(8029)] = 200347, - [SMALL_STATE(8030)] = 200380, - [SMALL_STATE(8031)] = 200413, - [SMALL_STATE(8032)] = 200448, - [SMALL_STATE(8033)] = 200481, - [SMALL_STATE(8034)] = 200514, - [SMALL_STATE(8035)] = 200547, - [SMALL_STATE(8036)] = 200582, - [SMALL_STATE(8037)] = 200615, - [SMALL_STATE(8038)] = 200648, - [SMALL_STATE(8039)] = 200683, - [SMALL_STATE(8040)] = 200718, - [SMALL_STATE(8041)] = 200753, - [SMALL_STATE(8042)] = 200788, - [SMALL_STATE(8043)] = 200821, - [SMALL_STATE(8044)] = 200856, - [SMALL_STATE(8045)] = 200891, - [SMALL_STATE(8046)] = 200926, - [SMALL_STATE(8047)] = 200959, - [SMALL_STATE(8048)] = 200994, - [SMALL_STATE(8049)] = 201029, - [SMALL_STATE(8050)] = 201062, - [SMALL_STATE(8051)] = 201097, - [SMALL_STATE(8052)] = 201130, - [SMALL_STATE(8053)] = 201165, - [SMALL_STATE(8054)] = 201200, - [SMALL_STATE(8055)] = 201233, - [SMALL_STATE(8056)] = 201268, - [SMALL_STATE(8057)] = 201301, - [SMALL_STATE(8058)] = 201334, - [SMALL_STATE(8059)] = 201369, - [SMALL_STATE(8060)] = 201404, - [SMALL_STATE(8061)] = 201437, - [SMALL_STATE(8062)] = 201470, - [SMALL_STATE(8063)] = 201503, - [SMALL_STATE(8064)] = 201526, - [SMALL_STATE(8065)] = 201559, - [SMALL_STATE(8066)] = 201586, - [SMALL_STATE(8067)] = 201621, - [SMALL_STATE(8068)] = 201656, - [SMALL_STATE(8069)] = 201689, - [SMALL_STATE(8070)] = 201724, - [SMALL_STATE(8071)] = 201759, - [SMALL_STATE(8072)] = 201782, - [SMALL_STATE(8073)] = 201815, - [SMALL_STATE(8074)] = 201848, - [SMALL_STATE(8075)] = 201883, - [SMALL_STATE(8076)] = 201916, - [SMALL_STATE(8077)] = 201951, - [SMALL_STATE(8078)] = 201986, - [SMALL_STATE(8079)] = 202009, - [SMALL_STATE(8080)] = 202044, - [SMALL_STATE(8081)] = 202067, - [SMALL_STATE(8082)] = 202089, - [SMALL_STATE(8083)] = 202111, - [SMALL_STATE(8084)] = 202133, - [SMALL_STATE(8085)] = 202155, - [SMALL_STATE(8086)] = 202181, - [SMALL_STATE(8087)] = 202203, - [SMALL_STATE(8088)] = 202225, - [SMALL_STATE(8089)] = 202247, - [SMALL_STATE(8090)] = 202269, - [SMALL_STATE(8091)] = 202291, - [SMALL_STATE(8092)] = 202313, - [SMALL_STATE(8093)] = 202339, - [SMALL_STATE(8094)] = 202369, - [SMALL_STATE(8095)] = 202391, - [SMALL_STATE(8096)] = 202413, - [SMALL_STATE(8097)] = 202435, - [SMALL_STATE(8098)] = 202457, - [SMALL_STATE(8099)] = 202479, - [SMALL_STATE(8100)] = 202501, - [SMALL_STATE(8101)] = 202523, - [SMALL_STATE(8102)] = 202545, - [SMALL_STATE(8103)] = 202567, - [SMALL_STATE(8104)] = 202589, - [SMALL_STATE(8105)] = 202615, - [SMALL_STATE(8106)] = 202641, - [SMALL_STATE(8107)] = 202663, - [SMALL_STATE(8108)] = 202685, - [SMALL_STATE(8109)] = 202714, - [SMALL_STATE(8110)] = 202743, - [SMALL_STATE(8111)] = 202772, - [SMALL_STATE(8112)] = 202797, - [SMALL_STATE(8113)] = 202826, - [SMALL_STATE(8114)] = 202855, - [SMALL_STATE(8115)] = 202876, - [SMALL_STATE(8116)] = 202901, - [SMALL_STATE(8117)] = 202926, - [SMALL_STATE(8118)] = 202955, - [SMALL_STATE(8119)] = 202984, - [SMALL_STATE(8120)] = 203009, - [SMALL_STATE(8121)] = 203038, - [SMALL_STATE(8122)] = 203067, - [SMALL_STATE(8123)] = 203096, - [SMALL_STATE(8124)] = 203125, - [SMALL_STATE(8125)] = 203154, - [SMALL_STATE(8126)] = 203183, - [SMALL_STATE(8127)] = 203212, - [SMALL_STATE(8128)] = 203241, - [SMALL_STATE(8129)] = 203270, - [SMALL_STATE(8130)] = 203299, - [SMALL_STATE(8131)] = 203328, - [SMALL_STATE(8132)] = 203357, - [SMALL_STATE(8133)] = 203386, - [SMALL_STATE(8134)] = 203415, - [SMALL_STATE(8135)] = 203444, - [SMALL_STATE(8136)] = 203473, - [SMALL_STATE(8137)] = 203502, - [SMALL_STATE(8138)] = 203531, - [SMALL_STATE(8139)] = 203560, - [SMALL_STATE(8140)] = 203589, - [SMALL_STATE(8141)] = 203618, - [SMALL_STATE(8142)] = 203647, - [SMALL_STATE(8143)] = 203676, - [SMALL_STATE(8144)] = 203705, - [SMALL_STATE(8145)] = 203734, - [SMALL_STATE(8146)] = 203763, - [SMALL_STATE(8147)] = 203792, - [SMALL_STATE(8148)] = 203821, - [SMALL_STATE(8149)] = 203850, - [SMALL_STATE(8150)] = 203879, - [SMALL_STATE(8151)] = 203908, - [SMALL_STATE(8152)] = 203937, - [SMALL_STATE(8153)] = 203966, - [SMALL_STATE(8154)] = 203995, - [SMALL_STATE(8155)] = 204024, - [SMALL_STATE(8156)] = 204047, - [SMALL_STATE(8157)] = 204084, - [SMALL_STATE(8158)] = 204109, - [SMALL_STATE(8159)] = 204138, - [SMALL_STATE(8160)] = 204167, - [SMALL_STATE(8161)] = 204196, - [SMALL_STATE(8162)] = 204219, - [SMALL_STATE(8163)] = 204248, - [SMALL_STATE(8164)] = 204277, - [SMALL_STATE(8165)] = 204306, - [SMALL_STATE(8166)] = 204335, - [SMALL_STATE(8167)] = 204364, - [SMALL_STATE(8168)] = 204393, - [SMALL_STATE(8169)] = 204418, - [SMALL_STATE(8170)] = 204447, - [SMALL_STATE(8171)] = 204476, - [SMALL_STATE(8172)] = 204505, - [SMALL_STATE(8173)] = 204534, - [SMALL_STATE(8174)] = 204563, - [SMALL_STATE(8175)] = 204592, - [SMALL_STATE(8176)] = 204617, - [SMALL_STATE(8177)] = 204646, - [SMALL_STATE(8178)] = 204675, - [SMALL_STATE(8179)] = 204704, - [SMALL_STATE(8180)] = 204729, - [SMALL_STATE(8181)] = 204758, - [SMALL_STATE(8182)] = 204787, - [SMALL_STATE(8183)] = 204810, - [SMALL_STATE(8184)] = 204839, - [SMALL_STATE(8185)] = 204868, - [SMALL_STATE(8186)] = 204897, - [SMALL_STATE(8187)] = 204922, - [SMALL_STATE(8188)] = 204951, - [SMALL_STATE(8189)] = 204976, - [SMALL_STATE(8190)] = 205005, - [SMALL_STATE(8191)] = 205034, - [SMALL_STATE(8192)] = 205063, - [SMALL_STATE(8193)] = 205092, - [SMALL_STATE(8194)] = 205121, - [SMALL_STATE(8195)] = 205150, - [SMALL_STATE(8196)] = 205179, - [SMALL_STATE(8197)] = 205208, - [SMALL_STATE(8198)] = 205237, - [SMALL_STATE(8199)] = 205266, - [SMALL_STATE(8200)] = 205295, - [SMALL_STATE(8201)] = 205324, - [SMALL_STATE(8202)] = 205353, - [SMALL_STATE(8203)] = 205382, - [SMALL_STATE(8204)] = 205411, - [SMALL_STATE(8205)] = 205440, - [SMALL_STATE(8206)] = 205469, - [SMALL_STATE(8207)] = 205498, - [SMALL_STATE(8208)] = 205527, - [SMALL_STATE(8209)] = 205556, - [SMALL_STATE(8210)] = 205585, - [SMALL_STATE(8211)] = 205610, - [SMALL_STATE(8212)] = 205639, - [SMALL_STATE(8213)] = 205668, - [SMALL_STATE(8214)] = 205697, - [SMALL_STATE(8215)] = 205726, - [SMALL_STATE(8216)] = 205755, - [SMALL_STATE(8217)] = 205784, - [SMALL_STATE(8218)] = 205813, - [SMALL_STATE(8219)] = 205838, - [SMALL_STATE(8220)] = 205867, - [SMALL_STATE(8221)] = 205896, - [SMALL_STATE(8222)] = 205925, - [SMALL_STATE(8223)] = 205954, - [SMALL_STATE(8224)] = 205983, - [SMALL_STATE(8225)] = 206012, - [SMALL_STATE(8226)] = 206041, - [SMALL_STATE(8227)] = 206070, - [SMALL_STATE(8228)] = 206095, - [SMALL_STATE(8229)] = 206124, - [SMALL_STATE(8230)] = 206147, - [SMALL_STATE(8231)] = 206176, - [SMALL_STATE(8232)] = 206205, - [SMALL_STATE(8233)] = 206234, - [SMALL_STATE(8234)] = 206263, - [SMALL_STATE(8235)] = 206292, - [SMALL_STATE(8236)] = 206321, - [SMALL_STATE(8237)] = 206350, - [SMALL_STATE(8238)] = 206379, - [SMALL_STATE(8239)] = 206404, - [SMALL_STATE(8240)] = 206429, - [SMALL_STATE(8241)] = 206454, - [SMALL_STATE(8242)] = 206479, - [SMALL_STATE(8243)] = 206504, - [SMALL_STATE(8244)] = 206529, - [SMALL_STATE(8245)] = 206554, - [SMALL_STATE(8246)] = 206579, - [SMALL_STATE(8247)] = 206608, - [SMALL_STATE(8248)] = 206637, - [SMALL_STATE(8249)] = 206666, - [SMALL_STATE(8250)] = 206691, - [SMALL_STATE(8251)] = 206720, - [SMALL_STATE(8252)] = 206749, - [SMALL_STATE(8253)] = 206778, - [SMALL_STATE(8254)] = 206807, - [SMALL_STATE(8255)] = 206836, - [SMALL_STATE(8256)] = 206865, - [SMALL_STATE(8257)] = 206894, - [SMALL_STATE(8258)] = 206923, - [SMALL_STATE(8259)] = 206952, - [SMALL_STATE(8260)] = 206981, - [SMALL_STATE(8261)] = 207006, - [SMALL_STATE(8262)] = 207031, - [SMALL_STATE(8263)] = 207060, - [SMALL_STATE(8264)] = 207085, - [SMALL_STATE(8265)] = 207114, - [SMALL_STATE(8266)] = 207143, - [SMALL_STATE(8267)] = 207172, - [SMALL_STATE(8268)] = 207198, - [SMALL_STATE(8269)] = 207224, - [SMALL_STATE(8270)] = 207250, - [SMALL_STATE(8271)] = 207272, - [SMALL_STATE(8272)] = 207294, - [SMALL_STATE(8273)] = 207320, - [SMALL_STATE(8274)] = 207346, - [SMALL_STATE(8275)] = 207372, - [SMALL_STATE(8276)] = 207398, - [SMALL_STATE(8277)] = 207424, - [SMALL_STATE(8278)] = 207450, - [SMALL_STATE(8279)] = 207476, - [SMALL_STATE(8280)] = 207502, - [SMALL_STATE(8281)] = 207528, - [SMALL_STATE(8282)] = 207554, - [SMALL_STATE(8283)] = 207580, - [SMALL_STATE(8284)] = 207606, - [SMALL_STATE(8285)] = 207632, - [SMALL_STATE(8286)] = 207658, - [SMALL_STATE(8287)] = 207684, - [SMALL_STATE(8288)] = 207710, - [SMALL_STATE(8289)] = 207736, - [SMALL_STATE(8290)] = 207762, - [SMALL_STATE(8291)] = 207788, - [SMALL_STATE(8292)] = 207814, - [SMALL_STATE(8293)] = 207840, - [SMALL_STATE(8294)] = 207866, - [SMALL_STATE(8295)] = 207892, - [SMALL_STATE(8296)] = 207918, - [SMALL_STATE(8297)] = 207944, - [SMALL_STATE(8298)] = 207970, - [SMALL_STATE(8299)] = 207996, - [SMALL_STATE(8300)] = 208022, - [SMALL_STATE(8301)] = 208048, - [SMALL_STATE(8302)] = 208074, - [SMALL_STATE(8303)] = 208100, - [SMALL_STATE(8304)] = 208126, - [SMALL_STATE(8305)] = 208152, - [SMALL_STATE(8306)] = 208178, - [SMALL_STATE(8307)] = 208204, - [SMALL_STATE(8308)] = 208230, - [SMALL_STATE(8309)] = 208256, - [SMALL_STATE(8310)] = 208282, - [SMALL_STATE(8311)] = 208308, - [SMALL_STATE(8312)] = 208334, - [SMALL_STATE(8313)] = 208360, - [SMALL_STATE(8314)] = 208386, - [SMALL_STATE(8315)] = 208412, - [SMALL_STATE(8316)] = 208438, - [SMALL_STATE(8317)] = 208464, - [SMALL_STATE(8318)] = 208490, - [SMALL_STATE(8319)] = 208516, - [SMALL_STATE(8320)] = 208542, - [SMALL_STATE(8321)] = 208568, - [SMALL_STATE(8322)] = 208594, - [SMALL_STATE(8323)] = 208620, - [SMALL_STATE(8324)] = 208646, - [SMALL_STATE(8325)] = 208672, - [SMALL_STATE(8326)] = 208698, - [SMALL_STATE(8327)] = 208724, - [SMALL_STATE(8328)] = 208750, - [SMALL_STATE(8329)] = 208776, - [SMALL_STATE(8330)] = 208802, - [SMALL_STATE(8331)] = 208828, - [SMALL_STATE(8332)] = 208854, - [SMALL_STATE(8333)] = 208880, - [SMALL_STATE(8334)] = 208906, - [SMALL_STATE(8335)] = 208932, - [SMALL_STATE(8336)] = 208958, - [SMALL_STATE(8337)] = 208984, - [SMALL_STATE(8338)] = 209010, - [SMALL_STATE(8339)] = 209036, - [SMALL_STATE(8340)] = 209062, - [SMALL_STATE(8341)] = 209088, - [SMALL_STATE(8342)] = 209114, - [SMALL_STATE(8343)] = 209140, - [SMALL_STATE(8344)] = 209166, - [SMALL_STATE(8345)] = 209192, - [SMALL_STATE(8346)] = 209218, - [SMALL_STATE(8347)] = 209244, - [SMALL_STATE(8348)] = 209270, - [SMALL_STATE(8349)] = 209296, - [SMALL_STATE(8350)] = 209322, - [SMALL_STATE(8351)] = 209348, - [SMALL_STATE(8352)] = 209374, - [SMALL_STATE(8353)] = 209400, - [SMALL_STATE(8354)] = 209426, - [SMALL_STATE(8355)] = 209452, - [SMALL_STATE(8356)] = 209478, - [SMALL_STATE(8357)] = 209504, - [SMALL_STATE(8358)] = 209530, - [SMALL_STATE(8359)] = 209556, - [SMALL_STATE(8360)] = 209582, - [SMALL_STATE(8361)] = 209608, - [SMALL_STATE(8362)] = 209634, - [SMALL_STATE(8363)] = 209660, - [SMALL_STATE(8364)] = 209686, - [SMALL_STATE(8365)] = 209712, - [SMALL_STATE(8366)] = 209746, - [SMALL_STATE(8367)] = 209772, - [SMALL_STATE(8368)] = 209798, - [SMALL_STATE(8369)] = 209824, - [SMALL_STATE(8370)] = 209850, - [SMALL_STATE(8371)] = 209876, - [SMALL_STATE(8372)] = 209902, - [SMALL_STATE(8373)] = 209928, - [SMALL_STATE(8374)] = 209954, - [SMALL_STATE(8375)] = 209980, - [SMALL_STATE(8376)] = 210006, - [SMALL_STATE(8377)] = 210032, - [SMALL_STATE(8378)] = 210058, - [SMALL_STATE(8379)] = 210084, - [SMALL_STATE(8380)] = 210110, - [SMALL_STATE(8381)] = 210144, - [SMALL_STATE(8382)] = 210170, - [SMALL_STATE(8383)] = 210196, - [SMALL_STATE(8384)] = 210222, - [SMALL_STATE(8385)] = 210248, - [SMALL_STATE(8386)] = 210274, - [SMALL_STATE(8387)] = 210300, - [SMALL_STATE(8388)] = 210326, - [SMALL_STATE(8389)] = 210352, - [SMALL_STATE(8390)] = 210378, - [SMALL_STATE(8391)] = 210404, - [SMALL_STATE(8392)] = 210430, - [SMALL_STATE(8393)] = 210456, - [SMALL_STATE(8394)] = 210482, - [SMALL_STATE(8395)] = 210508, - [SMALL_STATE(8396)] = 210534, - [SMALL_STATE(8397)] = 210560, - [SMALL_STATE(8398)] = 210586, - [SMALL_STATE(8399)] = 210612, - [SMALL_STATE(8400)] = 210638, - [SMALL_STATE(8401)] = 210664, - [SMALL_STATE(8402)] = 210690, - [SMALL_STATE(8403)] = 210716, - [SMALL_STATE(8404)] = 210742, - [SMALL_STATE(8405)] = 210768, - [SMALL_STATE(8406)] = 210794, - [SMALL_STATE(8407)] = 210820, - [SMALL_STATE(8408)] = 210846, - [SMALL_STATE(8409)] = 210872, - [SMALL_STATE(8410)] = 210898, - [SMALL_STATE(8411)] = 210924, - [SMALL_STATE(8412)] = 210950, - [SMALL_STATE(8413)] = 210976, - [SMALL_STATE(8414)] = 211002, - [SMALL_STATE(8415)] = 211028, - [SMALL_STATE(8416)] = 211054, - [SMALL_STATE(8417)] = 211080, - [SMALL_STATE(8418)] = 211106, - [SMALL_STATE(8419)] = 211132, - [SMALL_STATE(8420)] = 211158, - [SMALL_STATE(8421)] = 211184, - [SMALL_STATE(8422)] = 211210, - [SMALL_STATE(8423)] = 211236, - [SMALL_STATE(8424)] = 211262, - [SMALL_STATE(8425)] = 211288, - [SMALL_STATE(8426)] = 211314, - [SMALL_STATE(8427)] = 211340, - [SMALL_STATE(8428)] = 211366, - [SMALL_STATE(8429)] = 211392, - [SMALL_STATE(8430)] = 211418, - [SMALL_STATE(8431)] = 211444, - [SMALL_STATE(8432)] = 211470, - [SMALL_STATE(8433)] = 211496, - [SMALL_STATE(8434)] = 211522, - [SMALL_STATE(8435)] = 211548, - [SMALL_STATE(8436)] = 211574, - [SMALL_STATE(8437)] = 211600, - [SMALL_STATE(8438)] = 211626, - [SMALL_STATE(8439)] = 211652, - [SMALL_STATE(8440)] = 211678, - [SMALL_STATE(8441)] = 211704, - [SMALL_STATE(8442)] = 211730, - [SMALL_STATE(8443)] = 211752, - [SMALL_STATE(8444)] = 211778, - [SMALL_STATE(8445)] = 211812, - [SMALL_STATE(8446)] = 211838, - [SMALL_STATE(8447)] = 211864, - [SMALL_STATE(8448)] = 211890, - [SMALL_STATE(8449)] = 211916, - [SMALL_STATE(8450)] = 211942, - [SMALL_STATE(8451)] = 211968, - [SMALL_STATE(8452)] = 211994, - [SMALL_STATE(8453)] = 212020, - [SMALL_STATE(8454)] = 212046, - [SMALL_STATE(8455)] = 212072, - [SMALL_STATE(8456)] = 212098, - [SMALL_STATE(8457)] = 212124, - [SMALL_STATE(8458)] = 212150, - [SMALL_STATE(8459)] = 212176, - [SMALL_STATE(8460)] = 212202, - [SMALL_STATE(8461)] = 212228, - [SMALL_STATE(8462)] = 212254, - [SMALL_STATE(8463)] = 212280, - [SMALL_STATE(8464)] = 212306, - [SMALL_STATE(8465)] = 212332, - [SMALL_STATE(8466)] = 212358, - [SMALL_STATE(8467)] = 212384, - [SMALL_STATE(8468)] = 212410, - [SMALL_STATE(8469)] = 212436, - [SMALL_STATE(8470)] = 212462, - [SMALL_STATE(8471)] = 212488, - [SMALL_STATE(8472)] = 212514, - [SMALL_STATE(8473)] = 212540, - [SMALL_STATE(8474)] = 212566, - [SMALL_STATE(8475)] = 212592, - [SMALL_STATE(8476)] = 212618, - [SMALL_STATE(8477)] = 212644, - [SMALL_STATE(8478)] = 212670, - [SMALL_STATE(8479)] = 212692, - [SMALL_STATE(8480)] = 212718, - [SMALL_STATE(8481)] = 212744, - [SMALL_STATE(8482)] = 212770, - [SMALL_STATE(8483)] = 212796, - [SMALL_STATE(8484)] = 212830, - [SMALL_STATE(8485)] = 212856, - [SMALL_STATE(8486)] = 212882, - [SMALL_STATE(8487)] = 212908, - [SMALL_STATE(8488)] = 212934, - [SMALL_STATE(8489)] = 212960, - [SMALL_STATE(8490)] = 212986, - [SMALL_STATE(8491)] = 213012, - [SMALL_STATE(8492)] = 213038, - [SMALL_STATE(8493)] = 213064, - [SMALL_STATE(8494)] = 213086, - [SMALL_STATE(8495)] = 213112, - [SMALL_STATE(8496)] = 213138, - [SMALL_STATE(8497)] = 213172, - [SMALL_STATE(8498)] = 213198, - [SMALL_STATE(8499)] = 213220, - [SMALL_STATE(8500)] = 213246, - [SMALL_STATE(8501)] = 213272, - [SMALL_STATE(8502)] = 213298, - [SMALL_STATE(8503)] = 213324, - [SMALL_STATE(8504)] = 213350, - [SMALL_STATE(8505)] = 213376, - [SMALL_STATE(8506)] = 213402, - [SMALL_STATE(8507)] = 213428, - [SMALL_STATE(8508)] = 213454, - [SMALL_STATE(8509)] = 213480, - [SMALL_STATE(8510)] = 213506, - [SMALL_STATE(8511)] = 213532, - [SMALL_STATE(8512)] = 213558, - [SMALL_STATE(8513)] = 213584, - [SMALL_STATE(8514)] = 213610, - [SMALL_STATE(8515)] = 213636, - [SMALL_STATE(8516)] = 213662, - [SMALL_STATE(8517)] = 213688, - [SMALL_STATE(8518)] = 213714, - [SMALL_STATE(8519)] = 213740, - [SMALL_STATE(8520)] = 213766, - [SMALL_STATE(8521)] = 213792, - [SMALL_STATE(8522)] = 213818, - [SMALL_STATE(8523)] = 213844, - [SMALL_STATE(8524)] = 213870, - [SMALL_STATE(8525)] = 213896, - [SMALL_STATE(8526)] = 213922, - [SMALL_STATE(8527)] = 213948, - [SMALL_STATE(8528)] = 213974, - [SMALL_STATE(8529)] = 214000, - [SMALL_STATE(8530)] = 214026, - [SMALL_STATE(8531)] = 214052, - [SMALL_STATE(8532)] = 214078, - [SMALL_STATE(8533)] = 214112, - [SMALL_STATE(8534)] = 214130, - [SMALL_STATE(8535)] = 214156, - [SMALL_STATE(8536)] = 214182, - [SMALL_STATE(8537)] = 214208, - [SMALL_STATE(8538)] = 214234, - [SMALL_STATE(8539)] = 214254, - [SMALL_STATE(8540)] = 214274, - [SMALL_STATE(8541)] = 214300, - [SMALL_STATE(8542)] = 214326, - [SMALL_STATE(8543)] = 214352, - [SMALL_STATE(8544)] = 214378, - [SMALL_STATE(8545)] = 214404, - [SMALL_STATE(8546)] = 214430, - [SMALL_STATE(8547)] = 214456, - [SMALL_STATE(8548)] = 214482, - [SMALL_STATE(8549)] = 214508, - [SMALL_STATE(8550)] = 214534, - [SMALL_STATE(8551)] = 214560, - [SMALL_STATE(8552)] = 214586, - [SMALL_STATE(8553)] = 214617, - [SMALL_STATE(8554)] = 214648, - [SMALL_STATE(8555)] = 214679, - [SMALL_STATE(8556)] = 214700, - [SMALL_STATE(8557)] = 214731, - [SMALL_STATE(8558)] = 214762, - [SMALL_STATE(8559)] = 214793, - [SMALL_STATE(8560)] = 214810, - [SMALL_STATE(8561)] = 214841, - [SMALL_STATE(8562)] = 214860, - [SMALL_STATE(8563)] = 214891, - [SMALL_STATE(8564)] = 214922, - [SMALL_STATE(8565)] = 214953, - [SMALL_STATE(8566)] = 214984, - [SMALL_STATE(8567)] = 215015, - [SMALL_STATE(8568)] = 215046, - [SMALL_STATE(8569)] = 215077, - [SMALL_STATE(8570)] = 215108, - [SMALL_STATE(8571)] = 215139, - [SMALL_STATE(8572)] = 215156, - [SMALL_STATE(8573)] = 215187, - [SMALL_STATE(8574)] = 215204, - [SMALL_STATE(8575)] = 215221, - [SMALL_STATE(8576)] = 215252, - [SMALL_STATE(8577)] = 215283, - [SMALL_STATE(8578)] = 215314, - [SMALL_STATE(8579)] = 215345, - [SMALL_STATE(8580)] = 215376, - [SMALL_STATE(8581)] = 215407, - [SMALL_STATE(8582)] = 215424, - [SMALL_STATE(8583)] = 215455, - [SMALL_STATE(8584)] = 215472, - [SMALL_STATE(8585)] = 215489, - [SMALL_STATE(8586)] = 215520, - [SMALL_STATE(8587)] = 215537, - [SMALL_STATE(8588)] = 215558, - [SMALL_STATE(8589)] = 215589, - [SMALL_STATE(8590)] = 215620, - [SMALL_STATE(8591)] = 215638, - [SMALL_STATE(8592)] = 215658, - [SMALL_STATE(8593)] = 215688, - [SMALL_STATE(8594)] = 215718, - [SMALL_STATE(8595)] = 215734, - [SMALL_STATE(8596)] = 215752, - [SMALL_STATE(8597)] = 215770, - [SMALL_STATE(8598)] = 215788, - [SMALL_STATE(8599)] = 215804, - [SMALL_STATE(8600)] = 215834, - [SMALL_STATE(8601)] = 215864, - [SMALL_STATE(8602)] = 215894, - [SMALL_STATE(8603)] = 215919, - [SMALL_STATE(8604)] = 215946, - [SMALL_STATE(8605)] = 215973, - [SMALL_STATE(8606)] = 215998, - [SMALL_STATE(8607)] = 216025, - [SMALL_STATE(8608)] = 216046, - [SMALL_STATE(8609)] = 216063, - [SMALL_STATE(8610)] = 216088, - [SMALL_STATE(8611)] = 216107, - [SMALL_STATE(8612)] = 216136, - [SMALL_STATE(8613)] = 216163, - [SMALL_STATE(8614)] = 216180, - [SMALL_STATE(8615)] = 216209, - [SMALL_STATE(8616)] = 216234, - [SMALL_STATE(8617)] = 216263, - [SMALL_STATE(8618)] = 216286, - [SMALL_STATE(8619)] = 216315, - [SMALL_STATE(8620)] = 216334, - [SMALL_STATE(8621)] = 216363, - [SMALL_STATE(8622)] = 216384, - [SMALL_STATE(8623)] = 216409, - [SMALL_STATE(8624)] = 216436, - [SMALL_STATE(8625)] = 216461, - [SMALL_STATE(8626)] = 216485, - [SMALL_STATE(8627)] = 216501, - [SMALL_STATE(8628)] = 216523, - [SMALL_STATE(8629)] = 216537, - [SMALL_STATE(8630)] = 216561, - [SMALL_STATE(8631)] = 216575, - [SMALL_STATE(8632)] = 216599, - [SMALL_STATE(8633)] = 216615, - [SMALL_STATE(8634)] = 216641, - [SMALL_STATE(8635)] = 216657, - [SMALL_STATE(8636)] = 216673, - [SMALL_STATE(8637)] = 216689, - [SMALL_STATE(8638)] = 216705, - [SMALL_STATE(8639)] = 216721, - [SMALL_STATE(8640)] = 216737, - [SMALL_STATE(8641)] = 216753, - [SMALL_STATE(8642)] = 216773, - [SMALL_STATE(8643)] = 216789, - [SMALL_STATE(8644)] = 216815, - [SMALL_STATE(8645)] = 216831, - [SMALL_STATE(8646)] = 216855, - [SMALL_STATE(8647)] = 216871, - [SMALL_STATE(8648)] = 216897, - [SMALL_STATE(8649)] = 216921, - [SMALL_STATE(8650)] = 216945, - [SMALL_STATE(8651)] = 216961, - [SMALL_STATE(8652)] = 216987, - [SMALL_STATE(8653)] = 217003, - [SMALL_STATE(8654)] = 217019, - [SMALL_STATE(8655)] = 217039, - [SMALL_STATE(8656)] = 217065, - [SMALL_STATE(8657)] = 217081, - [SMALL_STATE(8658)] = 217097, - [SMALL_STATE(8659)] = 217121, - [SMALL_STATE(8660)] = 217145, - [SMALL_STATE(8661)] = 217161, - [SMALL_STATE(8662)] = 217183, - [SMALL_STATE(8663)] = 217199, - [SMALL_STATE(8664)] = 217223, - [SMALL_STATE(8665)] = 217239, - [SMALL_STATE(8666)] = 217253, - [SMALL_STATE(8667)] = 217269, - [SMALL_STATE(8668)] = 217285, - [SMALL_STATE(8669)] = 217301, - [SMALL_STATE(8670)] = 217317, - [SMALL_STATE(8671)] = 217341, - [SMALL_STATE(8672)] = 217355, - [SMALL_STATE(8673)] = 217376, - [SMALL_STATE(8674)] = 217399, - [SMALL_STATE(8675)] = 217420, - [SMALL_STATE(8676)] = 217433, - [SMALL_STATE(8677)] = 217454, - [SMALL_STATE(8678)] = 217475, - [SMALL_STATE(8679)] = 217496, - [SMALL_STATE(8680)] = 217509, - [SMALL_STATE(8681)] = 217530, - [SMALL_STATE(8682)] = 217551, - [SMALL_STATE(8683)] = 217572, - [SMALL_STATE(8684)] = 217587, - [SMALL_STATE(8685)] = 217608, - [SMALL_STATE(8686)] = 217629, - [SMALL_STATE(8687)] = 217650, - [SMALL_STATE(8688)] = 217673, - [SMALL_STATE(8689)] = 217692, - [SMALL_STATE(8690)] = 217713, - [SMALL_STATE(8691)] = 217734, - [SMALL_STATE(8692)] = 217747, - [SMALL_STATE(8693)] = 217770, - [SMALL_STATE(8694)] = 217787, - [SMALL_STATE(8695)] = 217808, - [SMALL_STATE(8696)] = 217825, - [SMALL_STATE(8697)] = 217846, - [SMALL_STATE(8698)] = 217867, - [SMALL_STATE(8699)] = 217888, - [SMALL_STATE(8700)] = 217909, - [SMALL_STATE(8701)] = 217930, - [SMALL_STATE(8702)] = 217951, - [SMALL_STATE(8703)] = 217972, - [SMALL_STATE(8704)] = 217993, - [SMALL_STATE(8705)] = 218014, - [SMALL_STATE(8706)] = 218035, - [SMALL_STATE(8707)] = 218054, - [SMALL_STATE(8708)] = 218075, - [SMALL_STATE(8709)] = 218092, - [SMALL_STATE(8710)] = 218113, - [SMALL_STATE(8711)] = 218130, - [SMALL_STATE(8712)] = 218151, - [SMALL_STATE(8713)] = 218174, - [SMALL_STATE(8714)] = 218191, - [SMALL_STATE(8715)] = 218214, - [SMALL_STATE(8716)] = 218229, - [SMALL_STATE(8717)] = 218250, - [SMALL_STATE(8718)] = 218273, - [SMALL_STATE(8719)] = 218294, - [SMALL_STATE(8720)] = 218311, - [SMALL_STATE(8721)] = 218332, - [SMALL_STATE(8722)] = 218353, - [SMALL_STATE(8723)] = 218366, - [SMALL_STATE(8724)] = 218387, - [SMALL_STATE(8725)] = 218408, - [SMALL_STATE(8726)] = 218431, - [SMALL_STATE(8727)] = 218454, - [SMALL_STATE(8728)] = 218477, - [SMALL_STATE(8729)] = 218490, - [SMALL_STATE(8730)] = 218513, - [SMALL_STATE(8731)] = 218534, - [SMALL_STATE(8732)] = 218555, - [SMALL_STATE(8733)] = 218572, - [SMALL_STATE(8734)] = 218592, - [SMALL_STATE(8735)] = 218612, - [SMALL_STATE(8736)] = 218632, - [SMALL_STATE(8737)] = 218654, - [SMALL_STATE(8738)] = 218674, - [SMALL_STATE(8739)] = 218694, - [SMALL_STATE(8740)] = 218710, - [SMALL_STATE(8741)] = 218730, - [SMALL_STATE(8742)] = 218750, - [SMALL_STATE(8743)] = 218770, - [SMALL_STATE(8744)] = 218790, - [SMALL_STATE(8745)] = 218810, - [SMALL_STATE(8746)] = 218830, - [SMALL_STATE(8747)] = 218842, - [SMALL_STATE(8748)] = 218862, - [SMALL_STATE(8749)] = 218882, - [SMALL_STATE(8750)] = 218902, - [SMALL_STATE(8751)] = 218922, - [SMALL_STATE(8752)] = 218942, - [SMALL_STATE(8753)] = 218962, - [SMALL_STATE(8754)] = 218982, - [SMALL_STATE(8755)] = 219002, - [SMALL_STATE(8756)] = 219022, - [SMALL_STATE(8757)] = 219042, - [SMALL_STATE(8758)] = 219062, - [SMALL_STATE(8759)] = 219082, - [SMALL_STATE(8760)] = 219102, - [SMALL_STATE(8761)] = 219122, - [SMALL_STATE(8762)] = 219142, - [SMALL_STATE(8763)] = 219158, - [SMALL_STATE(8764)] = 219174, - [SMALL_STATE(8765)] = 219194, - [SMALL_STATE(8766)] = 219206, - [SMALL_STATE(8767)] = 219228, - [SMALL_STATE(8768)] = 219240, - [SMALL_STATE(8769)] = 219256, - [SMALL_STATE(8770)] = 219276, - [SMALL_STATE(8771)] = 219296, - [SMALL_STATE(8772)] = 219316, - [SMALL_STATE(8773)] = 219328, - [SMALL_STATE(8774)] = 219348, - [SMALL_STATE(8775)] = 219360, - [SMALL_STATE(8776)] = 219372, - [SMALL_STATE(8777)] = 219392, - [SMALL_STATE(8778)] = 219412, - [SMALL_STATE(8779)] = 219432, - [SMALL_STATE(8780)] = 219452, - [SMALL_STATE(8781)] = 219472, - [SMALL_STATE(8782)] = 219488, - [SMALL_STATE(8783)] = 219508, - [SMALL_STATE(8784)] = 219528, - [SMALL_STATE(8785)] = 219548, - [SMALL_STATE(8786)] = 219568, - [SMALL_STATE(8787)] = 219584, - [SMALL_STATE(8788)] = 219604, - [SMALL_STATE(8789)] = 219624, - [SMALL_STATE(8790)] = 219636, - [SMALL_STATE(8791)] = 219656, - [SMALL_STATE(8792)] = 219676, - [SMALL_STATE(8793)] = 219696, - [SMALL_STATE(8794)] = 219716, - [SMALL_STATE(8795)] = 219736, - [SMALL_STATE(8796)] = 219756, - [SMALL_STATE(8797)] = 219768, - [SMALL_STATE(8798)] = 219780, - [SMALL_STATE(8799)] = 219792, - [SMALL_STATE(8800)] = 219812, - [SMALL_STATE(8801)] = 219824, - [SMALL_STATE(8802)] = 219836, - [SMALL_STATE(8803)] = 219856, - [SMALL_STATE(8804)] = 219870, - [SMALL_STATE(8805)] = 219890, - [SMALL_STATE(8806)] = 219910, - [SMALL_STATE(8807)] = 219930, - [SMALL_STATE(8808)] = 219950, - [SMALL_STATE(8809)] = 219972, - [SMALL_STATE(8810)] = 219992, - [SMALL_STATE(8811)] = 220012, - [SMALL_STATE(8812)] = 220032, - [SMALL_STATE(8813)] = 220052, - [SMALL_STATE(8814)] = 220072, - [SMALL_STATE(8815)] = 220092, - [SMALL_STATE(8816)] = 220112, - [SMALL_STATE(8817)] = 220132, - [SMALL_STATE(8818)] = 220148, - [SMALL_STATE(8819)] = 220168, - [SMALL_STATE(8820)] = 220188, - [SMALL_STATE(8821)] = 220208, - [SMALL_STATE(8822)] = 220228, - [SMALL_STATE(8823)] = 220248, - [SMALL_STATE(8824)] = 220268, - [SMALL_STATE(8825)] = 220280, - [SMALL_STATE(8826)] = 220300, - [SMALL_STATE(8827)] = 220320, - [SMALL_STATE(8828)] = 220338, - [SMALL_STATE(8829)] = 220358, - [SMALL_STATE(8830)] = 220378, - [SMALL_STATE(8831)] = 220398, - [SMALL_STATE(8832)] = 220418, - [SMALL_STATE(8833)] = 220438, - [SMALL_STATE(8834)] = 220458, - [SMALL_STATE(8835)] = 220478, - [SMALL_STATE(8836)] = 220498, - [SMALL_STATE(8837)] = 220518, - [SMALL_STATE(8838)] = 220538, - [SMALL_STATE(8839)] = 220556, - [SMALL_STATE(8840)] = 220576, - [SMALL_STATE(8841)] = 220596, - [SMALL_STATE(8842)] = 220616, - [SMALL_STATE(8843)] = 220636, - [SMALL_STATE(8844)] = 220656, - [SMALL_STATE(8845)] = 220676, - [SMALL_STATE(8846)] = 220696, - [SMALL_STATE(8847)] = 220716, - [SMALL_STATE(8848)] = 220736, - [SMALL_STATE(8849)] = 220752, - [SMALL_STATE(8850)] = 220774, - [SMALL_STATE(8851)] = 220792, - [SMALL_STATE(8852)] = 220812, - [SMALL_STATE(8853)] = 220824, - [SMALL_STATE(8854)] = 220844, - [SMALL_STATE(8855)] = 220864, - [SMALL_STATE(8856)] = 220884, - [SMALL_STATE(8857)] = 220904, - [SMALL_STATE(8858)] = 220926, - [SMALL_STATE(8859)] = 220946, - [SMALL_STATE(8860)] = 220966, - [SMALL_STATE(8861)] = 220982, - [SMALL_STATE(8862)] = 221002, - [SMALL_STATE(8863)] = 221022, - [SMALL_STATE(8864)] = 221042, - [SMALL_STATE(8865)] = 221054, - [SMALL_STATE(8866)] = 221074, - [SMALL_STATE(8867)] = 221094, - [SMALL_STATE(8868)] = 221114, - [SMALL_STATE(8869)] = 221134, - [SMALL_STATE(8870)] = 221154, - [SMALL_STATE(8871)] = 221174, - [SMALL_STATE(8872)] = 221194, - [SMALL_STATE(8873)] = 221210, - [SMALL_STATE(8874)] = 221230, - [SMALL_STATE(8875)] = 221250, - [SMALL_STATE(8876)] = 221270, - [SMALL_STATE(8877)] = 221290, - [SMALL_STATE(8878)] = 221310, - [SMALL_STATE(8879)] = 221330, - [SMALL_STATE(8880)] = 221342, - [SMALL_STATE(8881)] = 221362, - [SMALL_STATE(8882)] = 221382, - [SMALL_STATE(8883)] = 221394, - [SMALL_STATE(8884)] = 221414, - [SMALL_STATE(8885)] = 221434, - [SMALL_STATE(8886)] = 221454, - [SMALL_STATE(8887)] = 221474, - [SMALL_STATE(8888)] = 221494, - [SMALL_STATE(8889)] = 221512, - [SMALL_STATE(8890)] = 221532, - [SMALL_STATE(8891)] = 221548, - [SMALL_STATE(8892)] = 221560, - [SMALL_STATE(8893)] = 221580, - [SMALL_STATE(8894)] = 221598, - [SMALL_STATE(8895)] = 221618, - [SMALL_STATE(8896)] = 221638, - [SMALL_STATE(8897)] = 221656, - [SMALL_STATE(8898)] = 221672, - [SMALL_STATE(8899)] = 221692, - [SMALL_STATE(8900)] = 221710, - [SMALL_STATE(8901)] = 221722, - [SMALL_STATE(8902)] = 221742, - [SMALL_STATE(8903)] = 221762, - [SMALL_STATE(8904)] = 221782, - [SMALL_STATE(8905)] = 221796, - [SMALL_STATE(8906)] = 221818, - [SMALL_STATE(8907)] = 221836, - [SMALL_STATE(8908)] = 221856, - [SMALL_STATE(8909)] = 221876, - [SMALL_STATE(8910)] = 221896, - [SMALL_STATE(8911)] = 221916, - [SMALL_STATE(8912)] = 221933, - [SMALL_STATE(8913)] = 221948, - [SMALL_STATE(8914)] = 221963, - [SMALL_STATE(8915)] = 221980, - [SMALL_STATE(8916)] = 221997, - [SMALL_STATE(8917)] = 222008, - [SMALL_STATE(8918)] = 222023, - [SMALL_STATE(8919)] = 222040, - [SMALL_STATE(8920)] = 222055, - [SMALL_STATE(8921)] = 222072, - [SMALL_STATE(8922)] = 222089, - [SMALL_STATE(8923)] = 222106, - [SMALL_STATE(8924)] = 222123, - [SMALL_STATE(8925)] = 222140, - [SMALL_STATE(8926)] = 222157, - [SMALL_STATE(8927)] = 222174, - [SMALL_STATE(8928)] = 222191, - [SMALL_STATE(8929)] = 222208, - [SMALL_STATE(8930)] = 222225, - [SMALL_STATE(8931)] = 222242, - [SMALL_STATE(8932)] = 222259, - [SMALL_STATE(8933)] = 222276, - [SMALL_STATE(8934)] = 222293, - [SMALL_STATE(8935)] = 222310, - [SMALL_STATE(8936)] = 222325, - [SMALL_STATE(8937)] = 222342, - [SMALL_STATE(8938)] = 222359, - [SMALL_STATE(8939)] = 222376, - [SMALL_STATE(8940)] = 222393, - [SMALL_STATE(8941)] = 222410, - [SMALL_STATE(8942)] = 222421, - [SMALL_STATE(8943)] = 222438, - [SMALL_STATE(8944)] = 222453, - [SMALL_STATE(8945)] = 222470, - [SMALL_STATE(8946)] = 222487, - [SMALL_STATE(8947)] = 222504, - [SMALL_STATE(8948)] = 222521, - [SMALL_STATE(8949)] = 222538, - [SMALL_STATE(8950)] = 222553, - [SMALL_STATE(8951)] = 222570, - [SMALL_STATE(8952)] = 222583, - [SMALL_STATE(8953)] = 222600, - [SMALL_STATE(8954)] = 222617, - [SMALL_STATE(8955)] = 222632, - [SMALL_STATE(8956)] = 222649, - [SMALL_STATE(8957)] = 222666, - [SMALL_STATE(8958)] = 222683, - [SMALL_STATE(8959)] = 222700, - [SMALL_STATE(8960)] = 222717, - [SMALL_STATE(8961)] = 222728, - [SMALL_STATE(8962)] = 222745, - [SMALL_STATE(8963)] = 222762, - [SMALL_STATE(8964)] = 222779, - [SMALL_STATE(8965)] = 222796, - [SMALL_STATE(8966)] = 222813, - [SMALL_STATE(8967)] = 222830, - [SMALL_STATE(8968)] = 222847, - [SMALL_STATE(8969)] = 222862, - [SMALL_STATE(8970)] = 222879, - [SMALL_STATE(8971)] = 222896, - [SMALL_STATE(8972)] = 222913, - [SMALL_STATE(8973)] = 222930, - [SMALL_STATE(8974)] = 222947, - [SMALL_STATE(8975)] = 222964, - [SMALL_STATE(8976)] = 222981, - [SMALL_STATE(8977)] = 222998, - [SMALL_STATE(8978)] = 223009, - [SMALL_STATE(8979)] = 223026, - [SMALL_STATE(8980)] = 223043, - [SMALL_STATE(8981)] = 223060, - [SMALL_STATE(8982)] = 223077, - [SMALL_STATE(8983)] = 223094, - [SMALL_STATE(8984)] = 223109, - [SMALL_STATE(8985)] = 223126, - [SMALL_STATE(8986)] = 223143, - [SMALL_STATE(8987)] = 223160, - [SMALL_STATE(8988)] = 223177, - [SMALL_STATE(8989)] = 223194, - [SMALL_STATE(8990)] = 223211, - [SMALL_STATE(8991)] = 223228, - [SMALL_STATE(8992)] = 223245, - [SMALL_STATE(8993)] = 223260, - [SMALL_STATE(8994)] = 223277, - [SMALL_STATE(8995)] = 223294, - [SMALL_STATE(8996)] = 223311, - [SMALL_STATE(8997)] = 223328, - [SMALL_STATE(8998)] = 223345, - [SMALL_STATE(8999)] = 223362, - [SMALL_STATE(9000)] = 223379, - [SMALL_STATE(9001)] = 223396, - [SMALL_STATE(9002)] = 223413, - [SMALL_STATE(9003)] = 223428, - [SMALL_STATE(9004)] = 223445, - [SMALL_STATE(9005)] = 223462, - [SMALL_STATE(9006)] = 223479, - [SMALL_STATE(9007)] = 223490, - [SMALL_STATE(9008)] = 223505, - [SMALL_STATE(9009)] = 223522, - [SMALL_STATE(9010)] = 223537, - [SMALL_STATE(9011)] = 223554, - [SMALL_STATE(9012)] = 223565, - [SMALL_STATE(9013)] = 223582, - [SMALL_STATE(9014)] = 223595, - [SMALL_STATE(9015)] = 223610, - [SMALL_STATE(9016)] = 223623, - [SMALL_STATE(9017)] = 223640, - [SMALL_STATE(9018)] = 223651, - [SMALL_STATE(9019)] = 223668, - [SMALL_STATE(9020)] = 223685, - [SMALL_STATE(9021)] = 223702, - [SMALL_STATE(9022)] = 223719, - [SMALL_STATE(9023)] = 223736, - [SMALL_STATE(9024)] = 223753, - [SMALL_STATE(9025)] = 223770, - [SMALL_STATE(9026)] = 223787, - [SMALL_STATE(9027)] = 223802, - [SMALL_STATE(9028)] = 223819, - [SMALL_STATE(9029)] = 223834, - [SMALL_STATE(9030)] = 223851, - [SMALL_STATE(9031)] = 223868, - [SMALL_STATE(9032)] = 223883, - [SMALL_STATE(9033)] = 223898, - [SMALL_STATE(9034)] = 223915, - [SMALL_STATE(9035)] = 223932, - [SMALL_STATE(9036)] = 223949, - [SMALL_STATE(9037)] = 223964, - [SMALL_STATE(9038)] = 223979, - [SMALL_STATE(9039)] = 223996, - [SMALL_STATE(9040)] = 224011, - [SMALL_STATE(9041)] = 224028, - [SMALL_STATE(9042)] = 224045, - [SMALL_STATE(9043)] = 224062, - [SMALL_STATE(9044)] = 224073, - [SMALL_STATE(9045)] = 224090, - [SMALL_STATE(9046)] = 224105, - [SMALL_STATE(9047)] = 224120, - [SMALL_STATE(9048)] = 224137, - [SMALL_STATE(9049)] = 224154, - [SMALL_STATE(9050)] = 224171, - [SMALL_STATE(9051)] = 224186, - [SMALL_STATE(9052)] = 224203, - [SMALL_STATE(9053)] = 224220, - [SMALL_STATE(9054)] = 224235, - [SMALL_STATE(9055)] = 224252, - [SMALL_STATE(9056)] = 224269, - [SMALL_STATE(9057)] = 224284, - [SMALL_STATE(9058)] = 224301, - [SMALL_STATE(9059)] = 224318, - [SMALL_STATE(9060)] = 224333, - [SMALL_STATE(9061)] = 224348, - [SMALL_STATE(9062)] = 224365, - [SMALL_STATE(9063)] = 224380, - [SMALL_STATE(9064)] = 224393, - [SMALL_STATE(9065)] = 224410, - [SMALL_STATE(9066)] = 224427, - [SMALL_STATE(9067)] = 224438, - [SMALL_STATE(9068)] = 224453, - [SMALL_STATE(9069)] = 224464, - [SMALL_STATE(9070)] = 224475, - [SMALL_STATE(9071)] = 224490, - [SMALL_STATE(9072)] = 224507, - [SMALL_STATE(9073)] = 224524, - [SMALL_STATE(9074)] = 224541, - [SMALL_STATE(9075)] = 224556, - [SMALL_STATE(9076)] = 224569, - [SMALL_STATE(9077)] = 224582, - [SMALL_STATE(9078)] = 224599, - [SMALL_STATE(9079)] = 224613, - [SMALL_STATE(9080)] = 224627, - [SMALL_STATE(9081)] = 224641, - [SMALL_STATE(9082)] = 224655, - [SMALL_STATE(9083)] = 224669, - [SMALL_STATE(9084)] = 224683, - [SMALL_STATE(9085)] = 224695, - [SMALL_STATE(9086)] = 224709, - [SMALL_STATE(9087)] = 224723, - [SMALL_STATE(9088)] = 224737, - [SMALL_STATE(9089)] = 224751, - [SMALL_STATE(9090)] = 224765, - [SMALL_STATE(9091)] = 224779, - [SMALL_STATE(9092)] = 224793, - [SMALL_STATE(9093)] = 224805, - [SMALL_STATE(9094)] = 224819, - [SMALL_STATE(9095)] = 224831, - [SMALL_STATE(9096)] = 224845, - [SMALL_STATE(9097)] = 224859, - [SMALL_STATE(9098)] = 224873, - [SMALL_STATE(9099)] = 224887, - [SMALL_STATE(9100)] = 224899, - [SMALL_STATE(9101)] = 224911, - [SMALL_STATE(9102)] = 224925, - [SMALL_STATE(9103)] = 224937, - [SMALL_STATE(9104)] = 224949, - [SMALL_STATE(9105)] = 224961, - [SMALL_STATE(9106)] = 224973, - [SMALL_STATE(9107)] = 224987, - [SMALL_STATE(9108)] = 225001, - [SMALL_STATE(9109)] = 225015, - [SMALL_STATE(9110)] = 225029, - [SMALL_STATE(9111)] = 225043, - [SMALL_STATE(9112)] = 225055, - [SMALL_STATE(9113)] = 225069, - [SMALL_STATE(9114)] = 225083, - [SMALL_STATE(9115)] = 225097, - [SMALL_STATE(9116)] = 225111, - [SMALL_STATE(9117)] = 225125, - [SMALL_STATE(9118)] = 225137, - [SMALL_STATE(9119)] = 225151, - [SMALL_STATE(9120)] = 225163, - [SMALL_STATE(9121)] = 225177, - [SMALL_STATE(9122)] = 225191, - [SMALL_STATE(9123)] = 225201, - [SMALL_STATE(9124)] = 225215, - [SMALL_STATE(9125)] = 225229, - [SMALL_STATE(9126)] = 225239, - [SMALL_STATE(9127)] = 225253, - [SMALL_STATE(9128)] = 225267, - [SMALL_STATE(9129)] = 225277, - [SMALL_STATE(9130)] = 225291, - [SMALL_STATE(9131)] = 225305, - [SMALL_STATE(9132)] = 225319, - [SMALL_STATE(9133)] = 225331, - [SMALL_STATE(9134)] = 225345, - [SMALL_STATE(9135)] = 225359, - [SMALL_STATE(9136)] = 225373, - [SMALL_STATE(9137)] = 225387, - [SMALL_STATE(9138)] = 225401, - [SMALL_STATE(9139)] = 225413, - [SMALL_STATE(9140)] = 225425, - [SMALL_STATE(9141)] = 225437, - [SMALL_STATE(9142)] = 225451, - [SMALL_STATE(9143)] = 225465, - [SMALL_STATE(9144)] = 225479, - [SMALL_STATE(9145)] = 225493, - [SMALL_STATE(9146)] = 225507, - [SMALL_STATE(9147)] = 225521, - [SMALL_STATE(9148)] = 225533, - [SMALL_STATE(9149)] = 225545, - [SMALL_STATE(9150)] = 225559, - [SMALL_STATE(9151)] = 225573, - [SMALL_STATE(9152)] = 225585, - [SMALL_STATE(9153)] = 225599, - [SMALL_STATE(9154)] = 225613, - [SMALL_STATE(9155)] = 225627, - [SMALL_STATE(9156)] = 225641, - [SMALL_STATE(9157)] = 225653, - [SMALL_STATE(9158)] = 225667, - [SMALL_STATE(9159)] = 225681, - [SMALL_STATE(9160)] = 225695, - [SMALL_STATE(9161)] = 225709, - [SMALL_STATE(9162)] = 225721, - [SMALL_STATE(9163)] = 225735, - [SMALL_STATE(9164)] = 225749, - [SMALL_STATE(9165)] = 225763, - [SMALL_STATE(9166)] = 225777, - [SMALL_STATE(9167)] = 225791, - [SMALL_STATE(9168)] = 225805, - [SMALL_STATE(9169)] = 225819, - [SMALL_STATE(9170)] = 225833, - [SMALL_STATE(9171)] = 225845, - [SMALL_STATE(9172)] = 225859, - [SMALL_STATE(9173)] = 225871, - [SMALL_STATE(9174)] = 225885, - [SMALL_STATE(9175)] = 225899, - [SMALL_STATE(9176)] = 225909, - [SMALL_STATE(9177)] = 225923, - [SMALL_STATE(9178)] = 225937, - [SMALL_STATE(9179)] = 225951, - [SMALL_STATE(9180)] = 225965, - [SMALL_STATE(9181)] = 225979, - [SMALL_STATE(9182)] = 225993, - [SMALL_STATE(9183)] = 226007, - [SMALL_STATE(9184)] = 226019, - [SMALL_STATE(9185)] = 226033, - [SMALL_STATE(9186)] = 226047, - [SMALL_STATE(9187)] = 226061, - [SMALL_STATE(9188)] = 226075, - [SMALL_STATE(9189)] = 226089, - [SMALL_STATE(9190)] = 226103, - [SMALL_STATE(9191)] = 226117, - [SMALL_STATE(9192)] = 226129, - [SMALL_STATE(9193)] = 226143, - [SMALL_STATE(9194)] = 226157, - [SMALL_STATE(9195)] = 226171, - [SMALL_STATE(9196)] = 226185, - [SMALL_STATE(9197)] = 226199, - [SMALL_STATE(9198)] = 226213, - [SMALL_STATE(9199)] = 226227, - [SMALL_STATE(9200)] = 226241, - [SMALL_STATE(9201)] = 226253, - [SMALL_STATE(9202)] = 226267, - [SMALL_STATE(9203)] = 226281, - [SMALL_STATE(9204)] = 226295, - [SMALL_STATE(9205)] = 226309, - [SMALL_STATE(9206)] = 226319, - [SMALL_STATE(9207)] = 226333, - [SMALL_STATE(9208)] = 226347, - [SMALL_STATE(9209)] = 226359, - [SMALL_STATE(9210)] = 226369, - [SMALL_STATE(9211)] = 226383, - [SMALL_STATE(9212)] = 226397, - [SMALL_STATE(9213)] = 226409, - [SMALL_STATE(9214)] = 226421, - [SMALL_STATE(9215)] = 226433, - [SMALL_STATE(9216)] = 226447, - [SMALL_STATE(9217)] = 226461, - [SMALL_STATE(9218)] = 226473, - [SMALL_STATE(9219)] = 226487, - [SMALL_STATE(9220)] = 226501, - [SMALL_STATE(9221)] = 226513, - [SMALL_STATE(9222)] = 226525, - [SMALL_STATE(9223)] = 226537, - [SMALL_STATE(9224)] = 226549, - [SMALL_STATE(9225)] = 226563, - [SMALL_STATE(9226)] = 226575, - [SMALL_STATE(9227)] = 226589, - [SMALL_STATE(9228)] = 226603, - [SMALL_STATE(9229)] = 226617, - [SMALL_STATE(9230)] = 226631, - [SMALL_STATE(9231)] = 226645, - [SMALL_STATE(9232)] = 226659, - [SMALL_STATE(9233)] = 226673, - [SMALL_STATE(9234)] = 226687, - [SMALL_STATE(9235)] = 226701, - [SMALL_STATE(9236)] = 226715, - [SMALL_STATE(9237)] = 226729, - [SMALL_STATE(9238)] = 226743, - [SMALL_STATE(9239)] = 226757, - [SMALL_STATE(9240)] = 226771, - [SMALL_STATE(9241)] = 226785, - [SMALL_STATE(9242)] = 226799, - [SMALL_STATE(9243)] = 226813, - [SMALL_STATE(9244)] = 226827, - [SMALL_STATE(9245)] = 226841, - [SMALL_STATE(9246)] = 226855, - [SMALL_STATE(9247)] = 226869, - [SMALL_STATE(9248)] = 226883, - [SMALL_STATE(9249)] = 226897, - [SMALL_STATE(9250)] = 226911, - [SMALL_STATE(9251)] = 226925, - [SMALL_STATE(9252)] = 226939, - [SMALL_STATE(9253)] = 226951, - [SMALL_STATE(9254)] = 226965, - [SMALL_STATE(9255)] = 226979, - [SMALL_STATE(9256)] = 226993, - [SMALL_STATE(9257)] = 227007, - [SMALL_STATE(9258)] = 227019, - [SMALL_STATE(9259)] = 227033, - [SMALL_STATE(9260)] = 227047, - [SMALL_STATE(9261)] = 227059, - [SMALL_STATE(9262)] = 227073, - [SMALL_STATE(9263)] = 227087, - [SMALL_STATE(9264)] = 227101, - [SMALL_STATE(9265)] = 227115, - [SMALL_STATE(9266)] = 227129, - [SMALL_STATE(9267)] = 227143, - [SMALL_STATE(9268)] = 227157, - [SMALL_STATE(9269)] = 227171, - [SMALL_STATE(9270)] = 227185, - [SMALL_STATE(9271)] = 227199, - [SMALL_STATE(9272)] = 227213, - [SMALL_STATE(9273)] = 227227, - [SMALL_STATE(9274)] = 227241, - [SMALL_STATE(9275)] = 227255, - [SMALL_STATE(9276)] = 227269, - [SMALL_STATE(9277)] = 227283, - [SMALL_STATE(9278)] = 227297, - [SMALL_STATE(9279)] = 227311, - [SMALL_STATE(9280)] = 227325, - [SMALL_STATE(9281)] = 227339, - [SMALL_STATE(9282)] = 227349, - [SMALL_STATE(9283)] = 227363, - [SMALL_STATE(9284)] = 227375, - [SMALL_STATE(9285)] = 227389, - [SMALL_STATE(9286)] = 227403, - [SMALL_STATE(9287)] = 227417, - [SMALL_STATE(9288)] = 227431, - [SMALL_STATE(9289)] = 227445, - [SMALL_STATE(9290)] = 227459, - [SMALL_STATE(9291)] = 227473, - [SMALL_STATE(9292)] = 227487, - [SMALL_STATE(9293)] = 227501, - [SMALL_STATE(9294)] = 227515, - [SMALL_STATE(9295)] = 227529, - [SMALL_STATE(9296)] = 227539, - [SMALL_STATE(9297)] = 227553, - [SMALL_STATE(9298)] = 227567, - [SMALL_STATE(9299)] = 227581, - [SMALL_STATE(9300)] = 227595, - [SMALL_STATE(9301)] = 227609, - [SMALL_STATE(9302)] = 227623, - [SMALL_STATE(9303)] = 227637, - [SMALL_STATE(9304)] = 227649, - [SMALL_STATE(9305)] = 227663, - [SMALL_STATE(9306)] = 227677, - [SMALL_STATE(9307)] = 227691, - [SMALL_STATE(9308)] = 227705, - [SMALL_STATE(9309)] = 227719, - [SMALL_STATE(9310)] = 227733, - [SMALL_STATE(9311)] = 227747, - [SMALL_STATE(9312)] = 227761, - [SMALL_STATE(9313)] = 227775, - [SMALL_STATE(9314)] = 227789, - [SMALL_STATE(9315)] = 227803, - [SMALL_STATE(9316)] = 227817, - [SMALL_STATE(9317)] = 227831, - [SMALL_STATE(9318)] = 227845, - [SMALL_STATE(9319)] = 227859, - [SMALL_STATE(9320)] = 227873, - [SMALL_STATE(9321)] = 227887, - [SMALL_STATE(9322)] = 227901, - [SMALL_STATE(9323)] = 227915, - [SMALL_STATE(9324)] = 227929, - [SMALL_STATE(9325)] = 227943, - [SMALL_STATE(9326)] = 227957, - [SMALL_STATE(9327)] = 227971, - [SMALL_STATE(9328)] = 227985, - [SMALL_STATE(9329)] = 227999, - [SMALL_STATE(9330)] = 228011, - [SMALL_STATE(9331)] = 228023, - [SMALL_STATE(9332)] = 228035, - [SMALL_STATE(9333)] = 228047, - [SMALL_STATE(9334)] = 228059, - [SMALL_STATE(9335)] = 228073, - [SMALL_STATE(9336)] = 228085, - [SMALL_STATE(9337)] = 228097, - [SMALL_STATE(9338)] = 228111, - [SMALL_STATE(9339)] = 228125, - [SMALL_STATE(9340)] = 228139, - [SMALL_STATE(9341)] = 228153, - [SMALL_STATE(9342)] = 228167, - [SMALL_STATE(9343)] = 228181, - [SMALL_STATE(9344)] = 228195, - [SMALL_STATE(9345)] = 228209, - [SMALL_STATE(9346)] = 228223, - [SMALL_STATE(9347)] = 228237, - [SMALL_STATE(9348)] = 228251, - [SMALL_STATE(9349)] = 228265, - [SMALL_STATE(9350)] = 228279, - [SMALL_STATE(9351)] = 228293, - [SMALL_STATE(9352)] = 228307, - [SMALL_STATE(9353)] = 228321, - [SMALL_STATE(9354)] = 228335, - [SMALL_STATE(9355)] = 228349, - [SMALL_STATE(9356)] = 228363, - [SMALL_STATE(9357)] = 228377, - [SMALL_STATE(9358)] = 228391, - [SMALL_STATE(9359)] = 228405, - [SMALL_STATE(9360)] = 228419, - [SMALL_STATE(9361)] = 228429, - [SMALL_STATE(9362)] = 228443, - [SMALL_STATE(9363)] = 228457, - [SMALL_STATE(9364)] = 228471, - [SMALL_STATE(9365)] = 228485, - [SMALL_STATE(9366)] = 228499, - [SMALL_STATE(9367)] = 228513, - [SMALL_STATE(9368)] = 228527, - [SMALL_STATE(9369)] = 228541, - [SMALL_STATE(9370)] = 228553, - [SMALL_STATE(9371)] = 228567, - [SMALL_STATE(9372)] = 228581, - [SMALL_STATE(9373)] = 228595, - [SMALL_STATE(9374)] = 228609, - [SMALL_STATE(9375)] = 228623, - [SMALL_STATE(9376)] = 228637, - [SMALL_STATE(9377)] = 228651, - [SMALL_STATE(9378)] = 228665, - [SMALL_STATE(9379)] = 228679, - [SMALL_STATE(9380)] = 228693, - [SMALL_STATE(9381)] = 228707, - [SMALL_STATE(9382)] = 228721, - [SMALL_STATE(9383)] = 228735, - [SMALL_STATE(9384)] = 228749, - [SMALL_STATE(9385)] = 228763, - [SMALL_STATE(9386)] = 228774, - [SMALL_STATE(9387)] = 228785, - [SMALL_STATE(9388)] = 228794, - [SMALL_STATE(9389)] = 228805, - [SMALL_STATE(9390)] = 228816, - [SMALL_STATE(9391)] = 228827, - [SMALL_STATE(9392)] = 228838, - [SMALL_STATE(9393)] = 228849, - [SMALL_STATE(9394)] = 228860, - [SMALL_STATE(9395)] = 228871, - [SMALL_STATE(9396)] = 228882, - [SMALL_STATE(9397)] = 228891, - [SMALL_STATE(9398)] = 228900, - [SMALL_STATE(9399)] = 228911, - [SMALL_STATE(9400)] = 228922, - [SMALL_STATE(9401)] = 228931, - [SMALL_STATE(9402)] = 228942, - [SMALL_STATE(9403)] = 228951, - [SMALL_STATE(9404)] = 228962, - [SMALL_STATE(9405)] = 228973, - [SMALL_STATE(9406)] = 228984, - [SMALL_STATE(9407)] = 228995, - [SMALL_STATE(9408)] = 229006, - [SMALL_STATE(9409)] = 229015, - [SMALL_STATE(9410)] = 229026, - [SMALL_STATE(9411)] = 229037, - [SMALL_STATE(9412)] = 229048, - [SMALL_STATE(9413)] = 229059, - [SMALL_STATE(9414)] = 229068, - [SMALL_STATE(9415)] = 229079, - [SMALL_STATE(9416)] = 229088, - [SMALL_STATE(9417)] = 229099, - [SMALL_STATE(9418)] = 229110, - [SMALL_STATE(9419)] = 229121, - [SMALL_STATE(9420)] = 229130, - [SMALL_STATE(9421)] = 229141, - [SMALL_STATE(9422)] = 229152, - [SMALL_STATE(9423)] = 229161, - [SMALL_STATE(9424)] = 229172, - [SMALL_STATE(9425)] = 229181, - [SMALL_STATE(9426)] = 229190, - [SMALL_STATE(9427)] = 229199, - [SMALL_STATE(9428)] = 229208, - [SMALL_STATE(9429)] = 229219, - [SMALL_STATE(9430)] = 229228, - [SMALL_STATE(9431)] = 229237, - [SMALL_STATE(9432)] = 229246, - [SMALL_STATE(9433)] = 229257, - [SMALL_STATE(9434)] = 229266, - [SMALL_STATE(9435)] = 229277, - [SMALL_STATE(9436)] = 229288, - [SMALL_STATE(9437)] = 229297, - [SMALL_STATE(9438)] = 229308, - [SMALL_STATE(9439)] = 229317, - [SMALL_STATE(9440)] = 229328, - [SMALL_STATE(9441)] = 229337, - [SMALL_STATE(9442)] = 229346, - [SMALL_STATE(9443)] = 229357, - [SMALL_STATE(9444)] = 229368, - [SMALL_STATE(9445)] = 229379, - [SMALL_STATE(9446)] = 229390, - [SMALL_STATE(9447)] = 229401, - [SMALL_STATE(9448)] = 229410, - [SMALL_STATE(9449)] = 229421, - [SMALL_STATE(9450)] = 229432, - [SMALL_STATE(9451)] = 229441, - [SMALL_STATE(9452)] = 229450, - [SMALL_STATE(9453)] = 229459, - [SMALL_STATE(9454)] = 229470, - [SMALL_STATE(9455)] = 229481, - [SMALL_STATE(9456)] = 229490, - [SMALL_STATE(9457)] = 229501, - [SMALL_STATE(9458)] = 229510, - [SMALL_STATE(9459)] = 229521, - [SMALL_STATE(9460)] = 229532, - [SMALL_STATE(9461)] = 229543, - [SMALL_STATE(9462)] = 229552, - [SMALL_STATE(9463)] = 229563, - [SMALL_STATE(9464)] = 229574, - [SMALL_STATE(9465)] = 229585, - [SMALL_STATE(9466)] = 229596, - [SMALL_STATE(9467)] = 229607, - [SMALL_STATE(9468)] = 229618, - [SMALL_STATE(9469)] = 229629, - [SMALL_STATE(9470)] = 229640, - [SMALL_STATE(9471)] = 229649, - [SMALL_STATE(9472)] = 229660, - [SMALL_STATE(9473)] = 229671, - [SMALL_STATE(9474)] = 229682, - [SMALL_STATE(9475)] = 229691, - [SMALL_STATE(9476)] = 229702, - [SMALL_STATE(9477)] = 229713, - [SMALL_STATE(9478)] = 229722, - [SMALL_STATE(9479)] = 229733, - [SMALL_STATE(9480)] = 229744, - [SMALL_STATE(9481)] = 229755, - [SMALL_STATE(9482)] = 229766, - [SMALL_STATE(9483)] = 229775, - [SMALL_STATE(9484)] = 229784, - [SMALL_STATE(9485)] = 229793, - [SMALL_STATE(9486)] = 229804, - [SMALL_STATE(9487)] = 229815, - [SMALL_STATE(9488)] = 229826, - [SMALL_STATE(9489)] = 229837, - [SMALL_STATE(9490)] = 229848, - [SMALL_STATE(9491)] = 229859, - [SMALL_STATE(9492)] = 229868, - [SMALL_STATE(9493)] = 229877, - [SMALL_STATE(9494)] = 229888, - [SMALL_STATE(9495)] = 229899, - [SMALL_STATE(9496)] = 229908, - [SMALL_STATE(9497)] = 229919, - [SMALL_STATE(9498)] = 229928, - [SMALL_STATE(9499)] = 229937, - [SMALL_STATE(9500)] = 229948, - [SMALL_STATE(9501)] = 229957, - [SMALL_STATE(9502)] = 229968, - [SMALL_STATE(9503)] = 229977, - [SMALL_STATE(9504)] = 229986, - [SMALL_STATE(9505)] = 229995, - [SMALL_STATE(9506)] = 230004, - [SMALL_STATE(9507)] = 230015, - [SMALL_STATE(9508)] = 230026, - [SMALL_STATE(9509)] = 230037, - [SMALL_STATE(9510)] = 230046, - [SMALL_STATE(9511)] = 230057, - [SMALL_STATE(9512)] = 230068, - [SMALL_STATE(9513)] = 230079, - [SMALL_STATE(9514)] = 230088, - [SMALL_STATE(9515)] = 230099, - [SMALL_STATE(9516)] = 230110, - [SMALL_STATE(9517)] = 230119, - [SMALL_STATE(9518)] = 230130, - [SMALL_STATE(9519)] = 230141, - [SMALL_STATE(9520)] = 230152, - [SMALL_STATE(9521)] = 230161, - [SMALL_STATE(9522)] = 230170, - [SMALL_STATE(9523)] = 230181, - [SMALL_STATE(9524)] = 230192, - [SMALL_STATE(9525)] = 230201, - [SMALL_STATE(9526)] = 230212, - [SMALL_STATE(9527)] = 230223, - [SMALL_STATE(9528)] = 230234, - [SMALL_STATE(9529)] = 230243, - [SMALL_STATE(9530)] = 230254, - [SMALL_STATE(9531)] = 230265, - [SMALL_STATE(9532)] = 230276, - [SMALL_STATE(9533)] = 230287, - [SMALL_STATE(9534)] = 230296, - [SMALL_STATE(9535)] = 230307, - [SMALL_STATE(9536)] = 230318, - [SMALL_STATE(9537)] = 230329, - [SMALL_STATE(9538)] = 230340, - [SMALL_STATE(9539)] = 230349, - [SMALL_STATE(9540)] = 230360, - [SMALL_STATE(9541)] = 230371, - [SMALL_STATE(9542)] = 230380, - [SMALL_STATE(9543)] = 230391, - [SMALL_STATE(9544)] = 230402, - [SMALL_STATE(9545)] = 230413, - [SMALL_STATE(9546)] = 230424, - [SMALL_STATE(9547)] = 230435, - [SMALL_STATE(9548)] = 230446, - [SMALL_STATE(9549)] = 230457, - [SMALL_STATE(9550)] = 230468, - [SMALL_STATE(9551)] = 230479, - [SMALL_STATE(9552)] = 230488, - [SMALL_STATE(9553)] = 230499, - [SMALL_STATE(9554)] = 230508, - [SMALL_STATE(9555)] = 230519, - [SMALL_STATE(9556)] = 230530, - [SMALL_STATE(9557)] = 230541, - [SMALL_STATE(9558)] = 230552, - [SMALL_STATE(9559)] = 230563, - [SMALL_STATE(9560)] = 230574, - [SMALL_STATE(9561)] = 230585, - [SMALL_STATE(9562)] = 230594, - [SMALL_STATE(9563)] = 230603, - [SMALL_STATE(9564)] = 230614, - [SMALL_STATE(9565)] = 230625, - [SMALL_STATE(9566)] = 230636, - [SMALL_STATE(9567)] = 230647, - [SMALL_STATE(9568)] = 230658, - [SMALL_STATE(9569)] = 230669, - [SMALL_STATE(9570)] = 230680, - [SMALL_STATE(9571)] = 230689, - [SMALL_STATE(9572)] = 230700, - [SMALL_STATE(9573)] = 230711, - [SMALL_STATE(9574)] = 230722, - [SMALL_STATE(9575)] = 230731, - [SMALL_STATE(9576)] = 230742, - [SMALL_STATE(9577)] = 230753, - [SMALL_STATE(9578)] = 230764, - [SMALL_STATE(9579)] = 230775, - [SMALL_STATE(9580)] = 230786, - [SMALL_STATE(9581)] = 230797, - [SMALL_STATE(9582)] = 230808, - [SMALL_STATE(9583)] = 230819, - [SMALL_STATE(9584)] = 230828, - [SMALL_STATE(9585)] = 230839, - [SMALL_STATE(9586)] = 230850, - [SMALL_STATE(9587)] = 230861, - [SMALL_STATE(9588)] = 230872, - [SMALL_STATE(9589)] = 230883, - [SMALL_STATE(9590)] = 230894, - [SMALL_STATE(9591)] = 230905, - [SMALL_STATE(9592)] = 230916, - [SMALL_STATE(9593)] = 230927, - [SMALL_STATE(9594)] = 230938, - [SMALL_STATE(9595)] = 230949, - [SMALL_STATE(9596)] = 230960, - [SMALL_STATE(9597)] = 230971, - [SMALL_STATE(9598)] = 230982, - [SMALL_STATE(9599)] = 230993, - [SMALL_STATE(9600)] = 231004, - [SMALL_STATE(9601)] = 231015, - [SMALL_STATE(9602)] = 231026, - [SMALL_STATE(9603)] = 231037, - [SMALL_STATE(9604)] = 231046, - [SMALL_STATE(9605)] = 231057, - [SMALL_STATE(9606)] = 231068, - [SMALL_STATE(9607)] = 231077, - [SMALL_STATE(9608)] = 231086, - [SMALL_STATE(9609)] = 231097, - [SMALL_STATE(9610)] = 231108, - [SMALL_STATE(9611)] = 231119, - [SMALL_STATE(9612)] = 231130, - [SMALL_STATE(9613)] = 231141, - [SMALL_STATE(9614)] = 231152, - [SMALL_STATE(9615)] = 231161, - [SMALL_STATE(9616)] = 231170, - [SMALL_STATE(9617)] = 231179, - [SMALL_STATE(9618)] = 231190, - [SMALL_STATE(9619)] = 231201, - [SMALL_STATE(9620)] = 231212, - [SMALL_STATE(9621)] = 231223, - [SMALL_STATE(9622)] = 231234, - [SMALL_STATE(9623)] = 231243, - [SMALL_STATE(9624)] = 231254, - [SMALL_STATE(9625)] = 231265, - [SMALL_STATE(9626)] = 231276, - [SMALL_STATE(9627)] = 231287, - [SMALL_STATE(9628)] = 231298, - [SMALL_STATE(9629)] = 231307, - [SMALL_STATE(9630)] = 231318, - [SMALL_STATE(9631)] = 231327, - [SMALL_STATE(9632)] = 231338, - [SMALL_STATE(9633)] = 231349, - [SMALL_STATE(9634)] = 231358, - [SMALL_STATE(9635)] = 231369, - [SMALL_STATE(9636)] = 231380, - [SMALL_STATE(9637)] = 231391, - [SMALL_STATE(9638)] = 231402, - [SMALL_STATE(9639)] = 231413, - [SMALL_STATE(9640)] = 231424, - [SMALL_STATE(9641)] = 231435, - [SMALL_STATE(9642)] = 231446, - [SMALL_STATE(9643)] = 231457, - [SMALL_STATE(9644)] = 231468, - [SMALL_STATE(9645)] = 231479, - [SMALL_STATE(9646)] = 231490, - [SMALL_STATE(9647)] = 231501, - [SMALL_STATE(9648)] = 231512, - [SMALL_STATE(9649)] = 231523, - [SMALL_STATE(9650)] = 231534, - [SMALL_STATE(9651)] = 231543, - [SMALL_STATE(9652)] = 231554, - [SMALL_STATE(9653)] = 231565, - [SMALL_STATE(9654)] = 231576, - [SMALL_STATE(9655)] = 231587, - [SMALL_STATE(9656)] = 231596, - [SMALL_STATE(9657)] = 231607, - [SMALL_STATE(9658)] = 231618, - [SMALL_STATE(9659)] = 231629, - [SMALL_STATE(9660)] = 231638, - [SMALL_STATE(9661)] = 231649, - [SMALL_STATE(9662)] = 231660, - [SMALL_STATE(9663)] = 231671, - [SMALL_STATE(9664)] = 231682, - [SMALL_STATE(9665)] = 231693, - [SMALL_STATE(9666)] = 231702, - [SMALL_STATE(9667)] = 231713, - [SMALL_STATE(9668)] = 231722, - [SMALL_STATE(9669)] = 231733, - [SMALL_STATE(9670)] = 231744, - [SMALL_STATE(9671)] = 231753, - [SMALL_STATE(9672)] = 231764, - [SMALL_STATE(9673)] = 231773, - [SMALL_STATE(9674)] = 231784, - [SMALL_STATE(9675)] = 231795, - [SMALL_STATE(9676)] = 231806, - [SMALL_STATE(9677)] = 231815, - [SMALL_STATE(9678)] = 231826, - [SMALL_STATE(9679)] = 231837, - [SMALL_STATE(9680)] = 231846, - [SMALL_STATE(9681)] = 231855, - [SMALL_STATE(9682)] = 231866, - [SMALL_STATE(9683)] = 231877, - [SMALL_STATE(9684)] = 231888, - [SMALL_STATE(9685)] = 231899, - [SMALL_STATE(9686)] = 231910, - [SMALL_STATE(9687)] = 231921, - [SMALL_STATE(9688)] = 231932, - [SMALL_STATE(9689)] = 231943, - [SMALL_STATE(9690)] = 231954, - [SMALL_STATE(9691)] = 231965, - [SMALL_STATE(9692)] = 231976, - [SMALL_STATE(9693)] = 231987, - [SMALL_STATE(9694)] = 231998, - [SMALL_STATE(9695)] = 232009, - [SMALL_STATE(9696)] = 232020, - [SMALL_STATE(9697)] = 232029, - [SMALL_STATE(9698)] = 232040, - [SMALL_STATE(9699)] = 232051, - [SMALL_STATE(9700)] = 232062, - [SMALL_STATE(9701)] = 232073, - [SMALL_STATE(9702)] = 232084, - [SMALL_STATE(9703)] = 232095, - [SMALL_STATE(9704)] = 232106, - [SMALL_STATE(9705)] = 232117, - [SMALL_STATE(9706)] = 232128, - [SMALL_STATE(9707)] = 232139, - [SMALL_STATE(9708)] = 232150, - [SMALL_STATE(9709)] = 232159, - [SMALL_STATE(9710)] = 232168, - [SMALL_STATE(9711)] = 232179, - [SMALL_STATE(9712)] = 232190, - [SMALL_STATE(9713)] = 232201, - [SMALL_STATE(9714)] = 232210, - [SMALL_STATE(9715)] = 232221, - [SMALL_STATE(9716)] = 232232, - [SMALL_STATE(9717)] = 232243, - [SMALL_STATE(9718)] = 232254, - [SMALL_STATE(9719)] = 232265, - [SMALL_STATE(9720)] = 232276, - [SMALL_STATE(9721)] = 232287, - [SMALL_STATE(9722)] = 232298, - [SMALL_STATE(9723)] = 232309, - [SMALL_STATE(9724)] = 232320, - [SMALL_STATE(9725)] = 232329, - [SMALL_STATE(9726)] = 232338, - [SMALL_STATE(9727)] = 232347, - [SMALL_STATE(9728)] = 232358, - [SMALL_STATE(9729)] = 232367, - [SMALL_STATE(9730)] = 232378, - [SMALL_STATE(9731)] = 232387, - [SMALL_STATE(9732)] = 232398, - [SMALL_STATE(9733)] = 232407, - [SMALL_STATE(9734)] = 232418, - [SMALL_STATE(9735)] = 232429, - [SMALL_STATE(9736)] = 232440, - [SMALL_STATE(9737)] = 232451, - [SMALL_STATE(9738)] = 232462, - [SMALL_STATE(9739)] = 232473, - [SMALL_STATE(9740)] = 232484, - [SMALL_STATE(9741)] = 232495, - [SMALL_STATE(9742)] = 232504, - [SMALL_STATE(9743)] = 232515, - [SMALL_STATE(9744)] = 232526, - [SMALL_STATE(9745)] = 232537, - [SMALL_STATE(9746)] = 232546, - [SMALL_STATE(9747)] = 232555, - [SMALL_STATE(9748)] = 232566, - [SMALL_STATE(9749)] = 232577, - [SMALL_STATE(9750)] = 232588, - [SMALL_STATE(9751)] = 232596, - [SMALL_STATE(9752)] = 232604, - [SMALL_STATE(9753)] = 232612, - [SMALL_STATE(9754)] = 232620, - [SMALL_STATE(9755)] = 232628, - [SMALL_STATE(9756)] = 232636, - [SMALL_STATE(9757)] = 232644, - [SMALL_STATE(9758)] = 232652, - [SMALL_STATE(9759)] = 232660, - [SMALL_STATE(9760)] = 232668, - [SMALL_STATE(9761)] = 232676, - [SMALL_STATE(9762)] = 232684, - [SMALL_STATE(9763)] = 232692, - [SMALL_STATE(9764)] = 232700, - [SMALL_STATE(9765)] = 232708, - [SMALL_STATE(9766)] = 232716, - [SMALL_STATE(9767)] = 232724, - [SMALL_STATE(9768)] = 232732, - [SMALL_STATE(9769)] = 232740, - [SMALL_STATE(9770)] = 232748, - [SMALL_STATE(9771)] = 232756, - [SMALL_STATE(9772)] = 232764, - [SMALL_STATE(9773)] = 232772, - [SMALL_STATE(9774)] = 232780, - [SMALL_STATE(9775)] = 232788, - [SMALL_STATE(9776)] = 232796, - [SMALL_STATE(9777)] = 232804, - [SMALL_STATE(9778)] = 232812, - [SMALL_STATE(9779)] = 232820, - [SMALL_STATE(9780)] = 232828, - [SMALL_STATE(9781)] = 232836, - [SMALL_STATE(9782)] = 232844, - [SMALL_STATE(9783)] = 232852, - [SMALL_STATE(9784)] = 232860, - [SMALL_STATE(9785)] = 232868, - [SMALL_STATE(9786)] = 232876, - [SMALL_STATE(9787)] = 232884, - [SMALL_STATE(9788)] = 232892, - [SMALL_STATE(9789)] = 232900, - [SMALL_STATE(9790)] = 232908, - [SMALL_STATE(9791)] = 232916, - [SMALL_STATE(9792)] = 232924, - [SMALL_STATE(9793)] = 232932, - [SMALL_STATE(9794)] = 232940, - [SMALL_STATE(9795)] = 232948, - [SMALL_STATE(9796)] = 232956, - [SMALL_STATE(9797)] = 232964, - [SMALL_STATE(9798)] = 232972, - [SMALL_STATE(9799)] = 232980, - [SMALL_STATE(9800)] = 232988, - [SMALL_STATE(9801)] = 232996, - [SMALL_STATE(9802)] = 233004, - [SMALL_STATE(9803)] = 233012, - [SMALL_STATE(9804)] = 233020, - [SMALL_STATE(9805)] = 233028, - [SMALL_STATE(9806)] = 233036, - [SMALL_STATE(9807)] = 233044, - [SMALL_STATE(9808)] = 233052, - [SMALL_STATE(9809)] = 233060, - [SMALL_STATE(9810)] = 233068, - [SMALL_STATE(9811)] = 233076, - [SMALL_STATE(9812)] = 233084, - [SMALL_STATE(9813)] = 233092, - [SMALL_STATE(9814)] = 233100, - [SMALL_STATE(9815)] = 233108, - [SMALL_STATE(9816)] = 233116, - [SMALL_STATE(9817)] = 233124, - [SMALL_STATE(9818)] = 233132, - [SMALL_STATE(9819)] = 233140, - [SMALL_STATE(9820)] = 233148, - [SMALL_STATE(9821)] = 233156, - [SMALL_STATE(9822)] = 233164, - [SMALL_STATE(9823)] = 233172, - [SMALL_STATE(9824)] = 233180, - [SMALL_STATE(9825)] = 233188, - [SMALL_STATE(9826)] = 233196, - [SMALL_STATE(9827)] = 233204, - [SMALL_STATE(9828)] = 233212, - [SMALL_STATE(9829)] = 233220, - [SMALL_STATE(9830)] = 233228, - [SMALL_STATE(9831)] = 233236, - [SMALL_STATE(9832)] = 233244, - [SMALL_STATE(9833)] = 233252, - [SMALL_STATE(9834)] = 233260, - [SMALL_STATE(9835)] = 233268, - [SMALL_STATE(9836)] = 233276, - [SMALL_STATE(9837)] = 233284, - [SMALL_STATE(9838)] = 233292, - [SMALL_STATE(9839)] = 233300, - [SMALL_STATE(9840)] = 233308, - [SMALL_STATE(9841)] = 233316, - [SMALL_STATE(9842)] = 233324, - [SMALL_STATE(9843)] = 233332, - [SMALL_STATE(9844)] = 233340, - [SMALL_STATE(9845)] = 233348, - [SMALL_STATE(9846)] = 233356, - [SMALL_STATE(9847)] = 233364, - [SMALL_STATE(9848)] = 233372, - [SMALL_STATE(9849)] = 233380, - [SMALL_STATE(9850)] = 233388, - [SMALL_STATE(9851)] = 233396, - [SMALL_STATE(9852)] = 233404, - [SMALL_STATE(9853)] = 233412, - [SMALL_STATE(9854)] = 233420, - [SMALL_STATE(9855)] = 233428, - [SMALL_STATE(9856)] = 233436, - [SMALL_STATE(9857)] = 233444, - [SMALL_STATE(9858)] = 233452, - [SMALL_STATE(9859)] = 233460, - [SMALL_STATE(9860)] = 233468, - [SMALL_STATE(9861)] = 233476, - [SMALL_STATE(9862)] = 233484, - [SMALL_STATE(9863)] = 233492, - [SMALL_STATE(9864)] = 233500, - [SMALL_STATE(9865)] = 233508, - [SMALL_STATE(9866)] = 233516, - [SMALL_STATE(9867)] = 233524, - [SMALL_STATE(9868)] = 233532, - [SMALL_STATE(9869)] = 233540, - [SMALL_STATE(9870)] = 233548, - [SMALL_STATE(9871)] = 233556, - [SMALL_STATE(9872)] = 233564, - [SMALL_STATE(9873)] = 233572, - [SMALL_STATE(9874)] = 233580, - [SMALL_STATE(9875)] = 233588, - [SMALL_STATE(9876)] = 233596, - [SMALL_STATE(9877)] = 233604, - [SMALL_STATE(9878)] = 233612, - [SMALL_STATE(9879)] = 233620, - [SMALL_STATE(9880)] = 233628, - [SMALL_STATE(9881)] = 233636, - [SMALL_STATE(9882)] = 233644, - [SMALL_STATE(9883)] = 233652, - [SMALL_STATE(9884)] = 233660, - [SMALL_STATE(9885)] = 233668, - [SMALL_STATE(9886)] = 233676, - [SMALL_STATE(9887)] = 233684, - [SMALL_STATE(9888)] = 233692, - [SMALL_STATE(9889)] = 233700, - [SMALL_STATE(9890)] = 233708, - [SMALL_STATE(9891)] = 233716, - [SMALL_STATE(9892)] = 233724, - [SMALL_STATE(9893)] = 233732, - [SMALL_STATE(9894)] = 233740, - [SMALL_STATE(9895)] = 233748, - [SMALL_STATE(9896)] = 233756, - [SMALL_STATE(9897)] = 233764, - [SMALL_STATE(9898)] = 233772, - [SMALL_STATE(9899)] = 233780, - [SMALL_STATE(9900)] = 233788, - [SMALL_STATE(9901)] = 233796, - [SMALL_STATE(9902)] = 233804, - [SMALL_STATE(9903)] = 233812, - [SMALL_STATE(9904)] = 233820, - [SMALL_STATE(9905)] = 233828, - [SMALL_STATE(9906)] = 233836, - [SMALL_STATE(9907)] = 233844, - [SMALL_STATE(9908)] = 233852, - [SMALL_STATE(9909)] = 233860, - [SMALL_STATE(9910)] = 233868, - [SMALL_STATE(9911)] = 233876, - [SMALL_STATE(9912)] = 233884, - [SMALL_STATE(9913)] = 233892, - [SMALL_STATE(9914)] = 233900, - [SMALL_STATE(9915)] = 233908, - [SMALL_STATE(9916)] = 233916, - [SMALL_STATE(9917)] = 233924, - [SMALL_STATE(9918)] = 233932, - [SMALL_STATE(9919)] = 233940, - [SMALL_STATE(9920)] = 233948, - [SMALL_STATE(9921)] = 233956, - [SMALL_STATE(9922)] = 233964, - [SMALL_STATE(9923)] = 233972, - [SMALL_STATE(9924)] = 233980, - [SMALL_STATE(9925)] = 233988, - [SMALL_STATE(9926)] = 233996, - [SMALL_STATE(9927)] = 234004, - [SMALL_STATE(9928)] = 234012, - [SMALL_STATE(9929)] = 234020, - [SMALL_STATE(9930)] = 234028, - [SMALL_STATE(9931)] = 234036, - [SMALL_STATE(9932)] = 234044, - [SMALL_STATE(9933)] = 234052, - [SMALL_STATE(9934)] = 234060, - [SMALL_STATE(9935)] = 234068, - [SMALL_STATE(9936)] = 234076, - [SMALL_STATE(9937)] = 234084, - [SMALL_STATE(9938)] = 234092, - [SMALL_STATE(9939)] = 234100, - [SMALL_STATE(9940)] = 234108, - [SMALL_STATE(9941)] = 234116, - [SMALL_STATE(9942)] = 234124, - [SMALL_STATE(9943)] = 234132, - [SMALL_STATE(9944)] = 234140, - [SMALL_STATE(9945)] = 234148, - [SMALL_STATE(9946)] = 234156, - [SMALL_STATE(9947)] = 234164, - [SMALL_STATE(9948)] = 234172, - [SMALL_STATE(9949)] = 234180, - [SMALL_STATE(9950)] = 234188, - [SMALL_STATE(9951)] = 234196, - [SMALL_STATE(9952)] = 234204, - [SMALL_STATE(9953)] = 234212, - [SMALL_STATE(9954)] = 234220, - [SMALL_STATE(9955)] = 234228, - [SMALL_STATE(9956)] = 234236, - [SMALL_STATE(9957)] = 234244, - [SMALL_STATE(9958)] = 234252, - [SMALL_STATE(9959)] = 234260, - [SMALL_STATE(9960)] = 234268, - [SMALL_STATE(9961)] = 234276, - [SMALL_STATE(9962)] = 234284, - [SMALL_STATE(9963)] = 234292, - [SMALL_STATE(9964)] = 234300, - [SMALL_STATE(9965)] = 234308, - [SMALL_STATE(9966)] = 234316, - [SMALL_STATE(9967)] = 234324, - [SMALL_STATE(9968)] = 234332, - [SMALL_STATE(9969)] = 234340, - [SMALL_STATE(9970)] = 234348, - [SMALL_STATE(9971)] = 234356, - [SMALL_STATE(9972)] = 234364, - [SMALL_STATE(9973)] = 234372, - [SMALL_STATE(9974)] = 234380, - [SMALL_STATE(9975)] = 234388, - [SMALL_STATE(9976)] = 234396, - [SMALL_STATE(9977)] = 234404, - [SMALL_STATE(9978)] = 234412, - [SMALL_STATE(9979)] = 234420, - [SMALL_STATE(9980)] = 234428, - [SMALL_STATE(9981)] = 234436, - [SMALL_STATE(9982)] = 234444, - [SMALL_STATE(9983)] = 234452, - [SMALL_STATE(9984)] = 234460, - [SMALL_STATE(9985)] = 234468, - [SMALL_STATE(9986)] = 234476, - [SMALL_STATE(9987)] = 234484, - [SMALL_STATE(9988)] = 234492, - [SMALL_STATE(9989)] = 234500, - [SMALL_STATE(9990)] = 234508, - [SMALL_STATE(9991)] = 234516, - [SMALL_STATE(9992)] = 234524, - [SMALL_STATE(9993)] = 234532, - [SMALL_STATE(9994)] = 234540, - [SMALL_STATE(9995)] = 234548, - [SMALL_STATE(9996)] = 234556, - [SMALL_STATE(9997)] = 234564, - [SMALL_STATE(9998)] = 234572, - [SMALL_STATE(9999)] = 234580, - [SMALL_STATE(10000)] = 234588, - [SMALL_STATE(10001)] = 234596, - [SMALL_STATE(10002)] = 234604, - [SMALL_STATE(10003)] = 234612, - [SMALL_STATE(10004)] = 234620, - [SMALL_STATE(10005)] = 234628, - [SMALL_STATE(10006)] = 234636, - [SMALL_STATE(10007)] = 234644, - [SMALL_STATE(10008)] = 234652, - [SMALL_STATE(10009)] = 234660, - [SMALL_STATE(10010)] = 234668, - [SMALL_STATE(10011)] = 234676, - [SMALL_STATE(10012)] = 234684, - [SMALL_STATE(10013)] = 234692, - [SMALL_STATE(10014)] = 234700, - [SMALL_STATE(10015)] = 234708, - [SMALL_STATE(10016)] = 234716, - [SMALL_STATE(10017)] = 234724, - [SMALL_STATE(10018)] = 234732, - [SMALL_STATE(10019)] = 234740, - [SMALL_STATE(10020)] = 234748, - [SMALL_STATE(10021)] = 234756, - [SMALL_STATE(10022)] = 234764, - [SMALL_STATE(10023)] = 234772, - [SMALL_STATE(10024)] = 234780, - [SMALL_STATE(10025)] = 234788, - [SMALL_STATE(10026)] = 234796, - [SMALL_STATE(10027)] = 234804, - [SMALL_STATE(10028)] = 234812, - [SMALL_STATE(10029)] = 234820, - [SMALL_STATE(10030)] = 234828, - [SMALL_STATE(10031)] = 234836, - [SMALL_STATE(10032)] = 234844, - [SMALL_STATE(10033)] = 234852, - [SMALL_STATE(10034)] = 234860, - [SMALL_STATE(10035)] = 234868, - [SMALL_STATE(10036)] = 234876, - [SMALL_STATE(10037)] = 234884, - [SMALL_STATE(10038)] = 234892, - [SMALL_STATE(10039)] = 234900, - [SMALL_STATE(10040)] = 234908, - [SMALL_STATE(10041)] = 234916, - [SMALL_STATE(10042)] = 234924, - [SMALL_STATE(10043)] = 234932, - [SMALL_STATE(10044)] = 234940, - [SMALL_STATE(10045)] = 234948, - [SMALL_STATE(10046)] = 234956, - [SMALL_STATE(10047)] = 234964, - [SMALL_STATE(10048)] = 234972, - [SMALL_STATE(10049)] = 234980, - [SMALL_STATE(10050)] = 234988, - [SMALL_STATE(10051)] = 234996, - [SMALL_STATE(10052)] = 235004, - [SMALL_STATE(10053)] = 235012, - [SMALL_STATE(10054)] = 235020, - [SMALL_STATE(10055)] = 235028, - [SMALL_STATE(10056)] = 235036, - [SMALL_STATE(10057)] = 235044, - [SMALL_STATE(10058)] = 235052, - [SMALL_STATE(10059)] = 235060, - [SMALL_STATE(10060)] = 235068, - [SMALL_STATE(10061)] = 235076, - [SMALL_STATE(10062)] = 235084, - [SMALL_STATE(10063)] = 235092, - [SMALL_STATE(10064)] = 235100, - [SMALL_STATE(10065)] = 235108, - [SMALL_STATE(10066)] = 235116, - [SMALL_STATE(10067)] = 235124, - [SMALL_STATE(10068)] = 235132, - [SMALL_STATE(10069)] = 235140, - [SMALL_STATE(10070)] = 235148, - [SMALL_STATE(10071)] = 235156, - [SMALL_STATE(10072)] = 235164, - [SMALL_STATE(10073)] = 235172, - [SMALL_STATE(10074)] = 235180, - [SMALL_STATE(10075)] = 235188, - [SMALL_STATE(10076)] = 235196, - [SMALL_STATE(10077)] = 235204, - [SMALL_STATE(10078)] = 235212, - [SMALL_STATE(10079)] = 235220, - [SMALL_STATE(10080)] = 235228, - [SMALL_STATE(10081)] = 235236, - [SMALL_STATE(10082)] = 235244, - [SMALL_STATE(10083)] = 235252, - [SMALL_STATE(10084)] = 235260, - [SMALL_STATE(10085)] = 235268, - [SMALL_STATE(10086)] = 235276, - [SMALL_STATE(10087)] = 235284, - [SMALL_STATE(10088)] = 235292, - [SMALL_STATE(10089)] = 235300, - [SMALL_STATE(10090)] = 235308, - [SMALL_STATE(10091)] = 235316, - [SMALL_STATE(10092)] = 235324, - [SMALL_STATE(10093)] = 235332, - [SMALL_STATE(10094)] = 235340, - [SMALL_STATE(10095)] = 235348, - [SMALL_STATE(10096)] = 235356, - [SMALL_STATE(10097)] = 235364, - [SMALL_STATE(10098)] = 235372, - [SMALL_STATE(10099)] = 235380, - [SMALL_STATE(10100)] = 235388, - [SMALL_STATE(10101)] = 235396, - [SMALL_STATE(10102)] = 235404, - [SMALL_STATE(10103)] = 235412, - [SMALL_STATE(10104)] = 235420, - [SMALL_STATE(10105)] = 235428, - [SMALL_STATE(10106)] = 235436, - [SMALL_STATE(10107)] = 235444, - [SMALL_STATE(10108)] = 235452, - [SMALL_STATE(10109)] = 235460, - [SMALL_STATE(10110)] = 235468, - [SMALL_STATE(10111)] = 235476, - [SMALL_STATE(10112)] = 235484, - [SMALL_STATE(10113)] = 235492, - [SMALL_STATE(10114)] = 235500, - [SMALL_STATE(10115)] = 235508, - [SMALL_STATE(10116)] = 235516, - [SMALL_STATE(10117)] = 235524, - [SMALL_STATE(10118)] = 235532, - [SMALL_STATE(10119)] = 235540, - [SMALL_STATE(10120)] = 235548, - [SMALL_STATE(10121)] = 235556, - [SMALL_STATE(10122)] = 235564, - [SMALL_STATE(10123)] = 235572, - [SMALL_STATE(10124)] = 235580, - [SMALL_STATE(10125)] = 235588, - [SMALL_STATE(10126)] = 235596, - [SMALL_STATE(10127)] = 235604, - [SMALL_STATE(10128)] = 235612, - [SMALL_STATE(10129)] = 235620, - [SMALL_STATE(10130)] = 235628, - [SMALL_STATE(10131)] = 235636, - [SMALL_STATE(10132)] = 235644, - [SMALL_STATE(10133)] = 235652, - [SMALL_STATE(10134)] = 235660, - [SMALL_STATE(10135)] = 235668, - [SMALL_STATE(10136)] = 235676, - [SMALL_STATE(10137)] = 235684, - [SMALL_STATE(10138)] = 235692, - [SMALL_STATE(10139)] = 235700, - [SMALL_STATE(10140)] = 235708, - [SMALL_STATE(10141)] = 235716, - [SMALL_STATE(10142)] = 235724, - [SMALL_STATE(10143)] = 235732, - [SMALL_STATE(10144)] = 235740, - [SMALL_STATE(10145)] = 235748, - [SMALL_STATE(10146)] = 235756, - [SMALL_STATE(10147)] = 235764, - [SMALL_STATE(10148)] = 235772, - [SMALL_STATE(10149)] = 235780, - [SMALL_STATE(10150)] = 235788, - [SMALL_STATE(10151)] = 235796, - [SMALL_STATE(10152)] = 235804, - [SMALL_STATE(10153)] = 235812, - [SMALL_STATE(10154)] = 235820, - [SMALL_STATE(10155)] = 235828, - [SMALL_STATE(10156)] = 235836, - [SMALL_STATE(10157)] = 235844, - [SMALL_STATE(10158)] = 235852, - [SMALL_STATE(10159)] = 235860, - [SMALL_STATE(10160)] = 235868, - [SMALL_STATE(10161)] = 235876, - [SMALL_STATE(10162)] = 235884, - [SMALL_STATE(10163)] = 235892, - [SMALL_STATE(10164)] = 235900, - [SMALL_STATE(10165)] = 235908, - [SMALL_STATE(10166)] = 235916, - [SMALL_STATE(10167)] = 235924, - [SMALL_STATE(10168)] = 235932, - [SMALL_STATE(10169)] = 235940, - [SMALL_STATE(10170)] = 235948, - [SMALL_STATE(10171)] = 235956, - [SMALL_STATE(10172)] = 235964, - [SMALL_STATE(10173)] = 235972, - [SMALL_STATE(10174)] = 235980, - [SMALL_STATE(10175)] = 235988, - [SMALL_STATE(10176)] = 235996, - [SMALL_STATE(10177)] = 236004, - [SMALL_STATE(10178)] = 236012, - [SMALL_STATE(10179)] = 236020, - [SMALL_STATE(10180)] = 236028, - [SMALL_STATE(10181)] = 236036, - [SMALL_STATE(10182)] = 236044, - [SMALL_STATE(10183)] = 236052, - [SMALL_STATE(10184)] = 236060, - [SMALL_STATE(10185)] = 236068, - [SMALL_STATE(10186)] = 236076, - [SMALL_STATE(10187)] = 236084, - [SMALL_STATE(10188)] = 236092, - [SMALL_STATE(10189)] = 236100, - [SMALL_STATE(10190)] = 236108, - [SMALL_STATE(10191)] = 236116, - [SMALL_STATE(10192)] = 236124, - [SMALL_STATE(10193)] = 236132, - [SMALL_STATE(10194)] = 236140, - [SMALL_STATE(10195)] = 236148, - [SMALL_STATE(10196)] = 236156, - [SMALL_STATE(10197)] = 236164, - [SMALL_STATE(10198)] = 236172, - [SMALL_STATE(10199)] = 236180, - [SMALL_STATE(10200)] = 236188, - [SMALL_STATE(10201)] = 236196, - [SMALL_STATE(10202)] = 236204, - [SMALL_STATE(10203)] = 236212, - [SMALL_STATE(10204)] = 236220, - [SMALL_STATE(10205)] = 236228, - [SMALL_STATE(10206)] = 236236, - [SMALL_STATE(10207)] = 236244, - [SMALL_STATE(10208)] = 236252, - [SMALL_STATE(10209)] = 236260, - [SMALL_STATE(10210)] = 236268, - [SMALL_STATE(10211)] = 236276, - [SMALL_STATE(10212)] = 236284, - [SMALL_STATE(10213)] = 236292, - [SMALL_STATE(10214)] = 236300, - [SMALL_STATE(10215)] = 236308, - [SMALL_STATE(10216)] = 236316, - [SMALL_STATE(10217)] = 236324, - [SMALL_STATE(10218)] = 236332, - [SMALL_STATE(10219)] = 236340, - [SMALL_STATE(10220)] = 236348, - [SMALL_STATE(10221)] = 236356, - [SMALL_STATE(10222)] = 236364, - [SMALL_STATE(10223)] = 236372, - [SMALL_STATE(10224)] = 236380, - [SMALL_STATE(10225)] = 236388, - [SMALL_STATE(10226)] = 236396, - [SMALL_STATE(10227)] = 236404, - [SMALL_STATE(10228)] = 236412, - [SMALL_STATE(10229)] = 236420, - [SMALL_STATE(10230)] = 236428, - [SMALL_STATE(10231)] = 236436, - [SMALL_STATE(10232)] = 236444, - [SMALL_STATE(10233)] = 236452, - [SMALL_STATE(10234)] = 236460, - [SMALL_STATE(10235)] = 236468, - [SMALL_STATE(10236)] = 236476, - [SMALL_STATE(10237)] = 236484, - [SMALL_STATE(10238)] = 236492, - [SMALL_STATE(10239)] = 236500, - [SMALL_STATE(10240)] = 236508, - [SMALL_STATE(10241)] = 236516, - [SMALL_STATE(10242)] = 236524, - [SMALL_STATE(10243)] = 236532, - [SMALL_STATE(10244)] = 236540, - [SMALL_STATE(10245)] = 236548, - [SMALL_STATE(10246)] = 236556, - [SMALL_STATE(10247)] = 236564, - [SMALL_STATE(10248)] = 236572, - [SMALL_STATE(10249)] = 236580, - [SMALL_STATE(10250)] = 236588, - [SMALL_STATE(10251)] = 236596, - [SMALL_STATE(10252)] = 236604, - [SMALL_STATE(10253)] = 236612, - [SMALL_STATE(10254)] = 236620, - [SMALL_STATE(10255)] = 236628, - [SMALL_STATE(10256)] = 236636, - [SMALL_STATE(10257)] = 236644, - [SMALL_STATE(10258)] = 236652, - [SMALL_STATE(10259)] = 236660, - [SMALL_STATE(10260)] = 236668, - [SMALL_STATE(10261)] = 236676, - [SMALL_STATE(10262)] = 236684, - [SMALL_STATE(10263)] = 236692, - [SMALL_STATE(10264)] = 236700, - [SMALL_STATE(10265)] = 236708, - [SMALL_STATE(10266)] = 236716, - [SMALL_STATE(10267)] = 236724, - [SMALL_STATE(10268)] = 236732, - [SMALL_STATE(10269)] = 236740, - [SMALL_STATE(10270)] = 236748, - [SMALL_STATE(10271)] = 236756, - [SMALL_STATE(10272)] = 236764, - [SMALL_STATE(10273)] = 236772, - [SMALL_STATE(10274)] = 236780, - [SMALL_STATE(10275)] = 236788, - [SMALL_STATE(10276)] = 236796, - [SMALL_STATE(10277)] = 236804, - [SMALL_STATE(10278)] = 236812, - [SMALL_STATE(10279)] = 236820, - [SMALL_STATE(10280)] = 236828, - [SMALL_STATE(10281)] = 236836, - [SMALL_STATE(10282)] = 236844, - [SMALL_STATE(10283)] = 236852, - [SMALL_STATE(10284)] = 236860, - [SMALL_STATE(10285)] = 236868, - [SMALL_STATE(10286)] = 236876, - [SMALL_STATE(10287)] = 236884, - [SMALL_STATE(10288)] = 236892, - [SMALL_STATE(10289)] = 236900, - [SMALL_STATE(10290)] = 236908, - [SMALL_STATE(10291)] = 236916, - [SMALL_STATE(10292)] = 236924, - [SMALL_STATE(10293)] = 236932, - [SMALL_STATE(10294)] = 236940, - [SMALL_STATE(10295)] = 236948, - [SMALL_STATE(10296)] = 236956, - [SMALL_STATE(10297)] = 236964, - [SMALL_STATE(10298)] = 236972, - [SMALL_STATE(10299)] = 236980, - [SMALL_STATE(10300)] = 236988, - [SMALL_STATE(10301)] = 236996, - [SMALL_STATE(10302)] = 237004, - [SMALL_STATE(10303)] = 237012, - [SMALL_STATE(10304)] = 237020, - [SMALL_STATE(10305)] = 237028, - [SMALL_STATE(10306)] = 237036, - [SMALL_STATE(10307)] = 237044, - [SMALL_STATE(10308)] = 237052, - [SMALL_STATE(10309)] = 237060, - [SMALL_STATE(10310)] = 237068, - [SMALL_STATE(10311)] = 237076, - [SMALL_STATE(10312)] = 237084, - [SMALL_STATE(10313)] = 237092, - [SMALL_STATE(10314)] = 237100, - [SMALL_STATE(10315)] = 237108, - [SMALL_STATE(10316)] = 237116, - [SMALL_STATE(10317)] = 237124, - [SMALL_STATE(10318)] = 237132, - [SMALL_STATE(10319)] = 237140, - [SMALL_STATE(10320)] = 237148, - [SMALL_STATE(10321)] = 237156, - [SMALL_STATE(10322)] = 237164, - [SMALL_STATE(10323)] = 237172, - [SMALL_STATE(10324)] = 237180, - [SMALL_STATE(10325)] = 237188, - [SMALL_STATE(10326)] = 237196, - [SMALL_STATE(10327)] = 237204, - [SMALL_STATE(10328)] = 237212, - [SMALL_STATE(10329)] = 237220, - [SMALL_STATE(10330)] = 237228, - [SMALL_STATE(10331)] = 237236, - [SMALL_STATE(10332)] = 237244, - [SMALL_STATE(10333)] = 237252, - [SMALL_STATE(10334)] = 237260, - [SMALL_STATE(10335)] = 237268, - [SMALL_STATE(10336)] = 237276, - [SMALL_STATE(10337)] = 237284, - [SMALL_STATE(10338)] = 237292, - [SMALL_STATE(10339)] = 237300, - [SMALL_STATE(10340)] = 237308, - [SMALL_STATE(10341)] = 237316, - [SMALL_STATE(10342)] = 237324, - [SMALL_STATE(10343)] = 237332, - [SMALL_STATE(10344)] = 237340, - [SMALL_STATE(10345)] = 237348, - [SMALL_STATE(10346)] = 237356, - [SMALL_STATE(10347)] = 237364, - [SMALL_STATE(10348)] = 237372, - [SMALL_STATE(10349)] = 237380, - [SMALL_STATE(10350)] = 237388, - [SMALL_STATE(10351)] = 237396, - [SMALL_STATE(10352)] = 237404, - [SMALL_STATE(10353)] = 237412, - [SMALL_STATE(10354)] = 237420, - [SMALL_STATE(10355)] = 237428, - [SMALL_STATE(10356)] = 237436, - [SMALL_STATE(10357)] = 237444, - [SMALL_STATE(10358)] = 237452, - [SMALL_STATE(10359)] = 237460, - [SMALL_STATE(10360)] = 237468, - [SMALL_STATE(10361)] = 237476, - [SMALL_STATE(10362)] = 237484, - [SMALL_STATE(10363)] = 237492, - [SMALL_STATE(10364)] = 237500, - [SMALL_STATE(10365)] = 237508, - [SMALL_STATE(10366)] = 237516, - [SMALL_STATE(10367)] = 237524, - [SMALL_STATE(10368)] = 237532, - [SMALL_STATE(10369)] = 237540, - [SMALL_STATE(10370)] = 237548, - [SMALL_STATE(10371)] = 237556, - [SMALL_STATE(10372)] = 237564, - [SMALL_STATE(10373)] = 237572, - [SMALL_STATE(10374)] = 237580, - [SMALL_STATE(10375)] = 237588, - [SMALL_STATE(10376)] = 237596, - [SMALL_STATE(10377)] = 237604, - [SMALL_STATE(10378)] = 237612, - [SMALL_STATE(10379)] = 237620, - [SMALL_STATE(10380)] = 237628, - [SMALL_STATE(10381)] = 237636, - [SMALL_STATE(10382)] = 237644, - [SMALL_STATE(10383)] = 237652, - [SMALL_STATE(10384)] = 237660, - [SMALL_STATE(10385)] = 237668, - [SMALL_STATE(10386)] = 237676, - [SMALL_STATE(10387)] = 237684, - [SMALL_STATE(10388)] = 237692, - [SMALL_STATE(10389)] = 237700, - [SMALL_STATE(10390)] = 237708, - [SMALL_STATE(10391)] = 237716, - [SMALL_STATE(10392)] = 237724, - [SMALL_STATE(10393)] = 237732, - [SMALL_STATE(10394)] = 237740, - [SMALL_STATE(10395)] = 237748, - [SMALL_STATE(10396)] = 237756, - [SMALL_STATE(10397)] = 237764, - [SMALL_STATE(10398)] = 237772, - [SMALL_STATE(10399)] = 237780, - [SMALL_STATE(10400)] = 237788, - [SMALL_STATE(10401)] = 237796, - [SMALL_STATE(10402)] = 237804, - [SMALL_STATE(10403)] = 237812, - [SMALL_STATE(10404)] = 237820, - [SMALL_STATE(10405)] = 237828, - [SMALL_STATE(10406)] = 237836, - [SMALL_STATE(10407)] = 237844, - [SMALL_STATE(10408)] = 237852, - [SMALL_STATE(10409)] = 237860, - [SMALL_STATE(10410)] = 237868, - [SMALL_STATE(10411)] = 237876, - [SMALL_STATE(10412)] = 237884, - [SMALL_STATE(10413)] = 237892, - [SMALL_STATE(10414)] = 237900, - [SMALL_STATE(10415)] = 237908, - [SMALL_STATE(10416)] = 237916, - [SMALL_STATE(10417)] = 237924, - [SMALL_STATE(10418)] = 237932, - [SMALL_STATE(10419)] = 237940, - [SMALL_STATE(10420)] = 237948, - [SMALL_STATE(10421)] = 237956, - [SMALL_STATE(10422)] = 237964, - [SMALL_STATE(10423)] = 237972, - [SMALL_STATE(10424)] = 237980, - [SMALL_STATE(10425)] = 237988, - [SMALL_STATE(10426)] = 237996, - [SMALL_STATE(10427)] = 238004, - [SMALL_STATE(10428)] = 238012, - [SMALL_STATE(10429)] = 238020, - [SMALL_STATE(10430)] = 238028, - [SMALL_STATE(10431)] = 238036, - [SMALL_STATE(10432)] = 238044, - [SMALL_STATE(10433)] = 238052, - [SMALL_STATE(10434)] = 238060, - [SMALL_STATE(10435)] = 238068, - [SMALL_STATE(10436)] = 238076, - [SMALL_STATE(10437)] = 238084, - [SMALL_STATE(10438)] = 238092, - [SMALL_STATE(10439)] = 238100, - [SMALL_STATE(10440)] = 238108, - [SMALL_STATE(10441)] = 238116, + [SMALL_STATE(7885)] = 195475, + [SMALL_STATE(7886)] = 195504, + [SMALL_STATE(7887)] = 195533, + [SMALL_STATE(7888)] = 195556, + [SMALL_STATE(7889)] = 195581, + [SMALL_STATE(7890)] = 195606, + [SMALL_STATE(7891)] = 195635, + [SMALL_STATE(7892)] = 195658, + [SMALL_STATE(7893)] = 195687, + [SMALL_STATE(7894)] = 195710, + [SMALL_STATE(7895)] = 195739, + [SMALL_STATE(7896)] = 195768, + [SMALL_STATE(7897)] = 195797, + [SMALL_STATE(7898)] = 195826, + [SMALL_STATE(7899)] = 195855, + [SMALL_STATE(7900)] = 195884, + [SMALL_STATE(7901)] = 195913, + [SMALL_STATE(7902)] = 195942, + [SMALL_STATE(7903)] = 195971, + [SMALL_STATE(7904)] = 195996, + [SMALL_STATE(7905)] = 196025, + [SMALL_STATE(7906)] = 196054, + [SMALL_STATE(7907)] = 196083, + [SMALL_STATE(7908)] = 196112, + [SMALL_STATE(7909)] = 196141, + [SMALL_STATE(7910)] = 196170, + [SMALL_STATE(7911)] = 196199, + [SMALL_STATE(7912)] = 196228, + [SMALL_STATE(7913)] = 196257, + [SMALL_STATE(7914)] = 196286, + [SMALL_STATE(7915)] = 196315, + [SMALL_STATE(7916)] = 196344, + [SMALL_STATE(7917)] = 196373, + [SMALL_STATE(7918)] = 196402, + [SMALL_STATE(7919)] = 196431, + [SMALL_STATE(7920)] = 196460, + [SMALL_STATE(7921)] = 196489, + [SMALL_STATE(7922)] = 196518, + [SMALL_STATE(7923)] = 196547, + [SMALL_STATE(7924)] = 196572, + [SMALL_STATE(7925)] = 196601, + [SMALL_STATE(7926)] = 196626, + [SMALL_STATE(7927)] = 196655, + [SMALL_STATE(7928)] = 196684, + [SMALL_STATE(7929)] = 196713, + [SMALL_STATE(7930)] = 196742, + [SMALL_STATE(7931)] = 196767, + [SMALL_STATE(7932)] = 196796, + [SMALL_STATE(7933)] = 196825, + [SMALL_STATE(7934)] = 196854, + [SMALL_STATE(7935)] = 196883, + [SMALL_STATE(7936)] = 196912, + [SMALL_STATE(7937)] = 196941, + [SMALL_STATE(7938)] = 196970, + [SMALL_STATE(7939)] = 196999, + [SMALL_STATE(7940)] = 197028, + [SMALL_STATE(7941)] = 197057, + [SMALL_STATE(7942)] = 197086, + [SMALL_STATE(7943)] = 197111, + [SMALL_STATE(7944)] = 197140, + [SMALL_STATE(7945)] = 197169, + [SMALL_STATE(7946)] = 197198, + [SMALL_STATE(7947)] = 197227, + [SMALL_STATE(7948)] = 197256, + [SMALL_STATE(7949)] = 197285, + [SMALL_STATE(7950)] = 197314, + [SMALL_STATE(7951)] = 197343, + [SMALL_STATE(7952)] = 197372, + [SMALL_STATE(7953)] = 197401, + [SMALL_STATE(7954)] = 197430, + [SMALL_STATE(7955)] = 197459, + [SMALL_STATE(7956)] = 197488, + [SMALL_STATE(7957)] = 197517, + [SMALL_STATE(7958)] = 197546, + [SMALL_STATE(7959)] = 197575, + [SMALL_STATE(7960)] = 197604, + [SMALL_STATE(7961)] = 197633, + [SMALL_STATE(7962)] = 197662, + [SMALL_STATE(7963)] = 197691, + [SMALL_STATE(7964)] = 197720, + [SMALL_STATE(7965)] = 197749, + [SMALL_STATE(7966)] = 197778, + [SMALL_STATE(7967)] = 197807, + [SMALL_STATE(7968)] = 197836, + [SMALL_STATE(7969)] = 197865, + [SMALL_STATE(7970)] = 197894, + [SMALL_STATE(7971)] = 197923, + [SMALL_STATE(7972)] = 197952, + [SMALL_STATE(7973)] = 197981, + [SMALL_STATE(7974)] = 198010, + [SMALL_STATE(7975)] = 198031, + [SMALL_STATE(7976)] = 198060, + [SMALL_STATE(7977)] = 198089, + [SMALL_STATE(7978)] = 198114, + [SMALL_STATE(7979)] = 198143, + [SMALL_STATE(7980)] = 198172, + [SMALL_STATE(7981)] = 198197, + [SMALL_STATE(7982)] = 198226, + [SMALL_STATE(7983)] = 198255, + [SMALL_STATE(7984)] = 198284, + [SMALL_STATE(7985)] = 198313, + [SMALL_STATE(7986)] = 198342, + [SMALL_STATE(7987)] = 198371, + [SMALL_STATE(7988)] = 198400, + [SMALL_STATE(7989)] = 198429, + [SMALL_STATE(7990)] = 198458, + [SMALL_STATE(7991)] = 198487, + [SMALL_STATE(7992)] = 198516, + [SMALL_STATE(7993)] = 198541, + [SMALL_STATE(7994)] = 198570, + [SMALL_STATE(7995)] = 198599, + [SMALL_STATE(7996)] = 198628, + [SMALL_STATE(7997)] = 198657, + [SMALL_STATE(7998)] = 198682, + [SMALL_STATE(7999)] = 198711, + [SMALL_STATE(8000)] = 198740, + [SMALL_STATE(8001)] = 198769, + [SMALL_STATE(8002)] = 198794, + [SMALL_STATE(8003)] = 198823, + [SMALL_STATE(8004)] = 198860, + [SMALL_STATE(8005)] = 198889, + [SMALL_STATE(8006)] = 198918, + [SMALL_STATE(8007)] = 198947, + [SMALL_STATE(8008)] = 198976, + [SMALL_STATE(8009)] = 199001, + [SMALL_STATE(8010)] = 199030, + [SMALL_STATE(8011)] = 199059, + [SMALL_STATE(8012)] = 199088, + [SMALL_STATE(8013)] = 199113, + [SMALL_STATE(8014)] = 199142, + [SMALL_STATE(8015)] = 199171, + [SMALL_STATE(8016)] = 199200, + [SMALL_STATE(8017)] = 199225, + [SMALL_STATE(8018)] = 199254, + [SMALL_STATE(8019)] = 199283, + [SMALL_STATE(8020)] = 199312, + [SMALL_STATE(8021)] = 199341, + [SMALL_STATE(8022)] = 199370, + [SMALL_STATE(8023)] = 199395, + [SMALL_STATE(8024)] = 199424, + [SMALL_STATE(8025)] = 199453, + [SMALL_STATE(8026)] = 199482, + [SMALL_STATE(8027)] = 199508, + [SMALL_STATE(8028)] = 199534, + [SMALL_STATE(8029)] = 199560, + [SMALL_STATE(8030)] = 199586, + [SMALL_STATE(8031)] = 199612, + [SMALL_STATE(8032)] = 199638, + [SMALL_STATE(8033)] = 199664, + [SMALL_STATE(8034)] = 199698, + [SMALL_STATE(8035)] = 199724, + [SMALL_STATE(8036)] = 199750, + [SMALL_STATE(8037)] = 199776, + [SMALL_STATE(8038)] = 199802, + [SMALL_STATE(8039)] = 199824, + [SMALL_STATE(8040)] = 199850, + [SMALL_STATE(8041)] = 199872, + [SMALL_STATE(8042)] = 199898, + [SMALL_STATE(8043)] = 199924, + [SMALL_STATE(8044)] = 199950, + [SMALL_STATE(8045)] = 199984, + [SMALL_STATE(8046)] = 200010, + [SMALL_STATE(8047)] = 200036, + [SMALL_STATE(8048)] = 200062, + [SMALL_STATE(8049)] = 200088, + [SMALL_STATE(8050)] = 200114, + [SMALL_STATE(8051)] = 200140, + [SMALL_STATE(8052)] = 200166, + [SMALL_STATE(8053)] = 200192, + [SMALL_STATE(8054)] = 200218, + [SMALL_STATE(8055)] = 200244, + [SMALL_STATE(8056)] = 200270, + [SMALL_STATE(8057)] = 200296, + [SMALL_STATE(8058)] = 200322, + [SMALL_STATE(8059)] = 200348, + [SMALL_STATE(8060)] = 200374, + [SMALL_STATE(8061)] = 200400, + [SMALL_STATE(8062)] = 200426, + [SMALL_STATE(8063)] = 200452, + [SMALL_STATE(8064)] = 200478, + [SMALL_STATE(8065)] = 200504, + [SMALL_STATE(8066)] = 200530, + [SMALL_STATE(8067)] = 200556, + [SMALL_STATE(8068)] = 200582, + [SMALL_STATE(8069)] = 200608, + [SMALL_STATE(8070)] = 200634, + [SMALL_STATE(8071)] = 200660, + [SMALL_STATE(8072)] = 200686, + [SMALL_STATE(8073)] = 200712, + [SMALL_STATE(8074)] = 200738, + [SMALL_STATE(8075)] = 200764, + [SMALL_STATE(8076)] = 200790, + [SMALL_STATE(8077)] = 200816, + [SMALL_STATE(8078)] = 200842, + [SMALL_STATE(8079)] = 200868, + [SMALL_STATE(8080)] = 200894, + [SMALL_STATE(8081)] = 200920, + [SMALL_STATE(8082)] = 200946, + [SMALL_STATE(8083)] = 200972, + [SMALL_STATE(8084)] = 200998, + [SMALL_STATE(8085)] = 201024, + [SMALL_STATE(8086)] = 201050, + [SMALL_STATE(8087)] = 201076, + [SMALL_STATE(8088)] = 201102, + [SMALL_STATE(8089)] = 201128, + [SMALL_STATE(8090)] = 201154, + [SMALL_STATE(8091)] = 201180, + [SMALL_STATE(8092)] = 201206, + [SMALL_STATE(8093)] = 201232, + [SMALL_STATE(8094)] = 201258, + [SMALL_STATE(8095)] = 201284, + [SMALL_STATE(8096)] = 201310, + [SMALL_STATE(8097)] = 201336, + [SMALL_STATE(8098)] = 201362, + [SMALL_STATE(8099)] = 201388, + [SMALL_STATE(8100)] = 201414, + [SMALL_STATE(8101)] = 201440, + [SMALL_STATE(8102)] = 201466, + [SMALL_STATE(8103)] = 201492, + [SMALL_STATE(8104)] = 201518, + [SMALL_STATE(8105)] = 201544, + [SMALL_STATE(8106)] = 201570, + [SMALL_STATE(8107)] = 201596, + [SMALL_STATE(8108)] = 201622, + [SMALL_STATE(8109)] = 201648, + [SMALL_STATE(8110)] = 201682, + [SMALL_STATE(8111)] = 201708, + [SMALL_STATE(8112)] = 201734, + [SMALL_STATE(8113)] = 201760, + [SMALL_STATE(8114)] = 201786, + [SMALL_STATE(8115)] = 201812, + [SMALL_STATE(8116)] = 201838, + [SMALL_STATE(8117)] = 201864, + [SMALL_STATE(8118)] = 201890, + [SMALL_STATE(8119)] = 201916, + [SMALL_STATE(8120)] = 201942, + [SMALL_STATE(8121)] = 201968, + [SMALL_STATE(8122)] = 201994, + [SMALL_STATE(8123)] = 202020, + [SMALL_STATE(8124)] = 202046, + [SMALL_STATE(8125)] = 202072, + [SMALL_STATE(8126)] = 202094, + [SMALL_STATE(8127)] = 202120, + [SMALL_STATE(8128)] = 202146, + [SMALL_STATE(8129)] = 202172, + [SMALL_STATE(8130)] = 202198, + [SMALL_STATE(8131)] = 202224, + [SMALL_STATE(8132)] = 202250, + [SMALL_STATE(8133)] = 202276, + [SMALL_STATE(8134)] = 202302, + [SMALL_STATE(8135)] = 202328, + [SMALL_STATE(8136)] = 202354, + [SMALL_STATE(8137)] = 202380, + [SMALL_STATE(8138)] = 202406, + [SMALL_STATE(8139)] = 202428, + [SMALL_STATE(8140)] = 202462, + [SMALL_STATE(8141)] = 202488, + [SMALL_STATE(8142)] = 202514, + [SMALL_STATE(8143)] = 202540, + [SMALL_STATE(8144)] = 202566, + [SMALL_STATE(8145)] = 202586, + [SMALL_STATE(8146)] = 202612, + [SMALL_STATE(8147)] = 202638, + [SMALL_STATE(8148)] = 202664, + [SMALL_STATE(8149)] = 202690, + [SMALL_STATE(8150)] = 202716, + [SMALL_STATE(8151)] = 202742, + [SMALL_STATE(8152)] = 202768, + [SMALL_STATE(8153)] = 202794, + [SMALL_STATE(8154)] = 202820, + [SMALL_STATE(8155)] = 202846, + [SMALL_STATE(8156)] = 202872, + [SMALL_STATE(8157)] = 202898, + [SMALL_STATE(8158)] = 202924, + [SMALL_STATE(8159)] = 202950, + [SMALL_STATE(8160)] = 202976, + [SMALL_STATE(8161)] = 203002, + [SMALL_STATE(8162)] = 203028, + [SMALL_STATE(8163)] = 203054, + [SMALL_STATE(8164)] = 203080, + [SMALL_STATE(8165)] = 203106, + [SMALL_STATE(8166)] = 203132, + [SMALL_STATE(8167)] = 203158, + [SMALL_STATE(8168)] = 203184, + [SMALL_STATE(8169)] = 203210, + [SMALL_STATE(8170)] = 203236, + [SMALL_STATE(8171)] = 203262, + [SMALL_STATE(8172)] = 203288, + [SMALL_STATE(8173)] = 203314, + [SMALL_STATE(8174)] = 203340, + [SMALL_STATE(8175)] = 203366, + [SMALL_STATE(8176)] = 203392, + [SMALL_STATE(8177)] = 203418, + [SMALL_STATE(8178)] = 203444, + [SMALL_STATE(8179)] = 203470, + [SMALL_STATE(8180)] = 203496, + [SMALL_STATE(8181)] = 203522, + [SMALL_STATE(8182)] = 203548, + [SMALL_STATE(8183)] = 203574, + [SMALL_STATE(8184)] = 203600, + [SMALL_STATE(8185)] = 203626, + [SMALL_STATE(8186)] = 203648, + [SMALL_STATE(8187)] = 203674, + [SMALL_STATE(8188)] = 203700, + [SMALL_STATE(8189)] = 203726, + [SMALL_STATE(8190)] = 203752, + [SMALL_STATE(8191)] = 203778, + [SMALL_STATE(8192)] = 203804, + [SMALL_STATE(8193)] = 203830, + [SMALL_STATE(8194)] = 203856, + [SMALL_STATE(8195)] = 203882, + [SMALL_STATE(8196)] = 203908, + [SMALL_STATE(8197)] = 203934, + [SMALL_STATE(8198)] = 203960, + [SMALL_STATE(8199)] = 203986, + [SMALL_STATE(8200)] = 204012, + [SMALL_STATE(8201)] = 204038, + [SMALL_STATE(8202)] = 204064, + [SMALL_STATE(8203)] = 204090, + [SMALL_STATE(8204)] = 204116, + [SMALL_STATE(8205)] = 204142, + [SMALL_STATE(8206)] = 204168, + [SMALL_STATE(8207)] = 204194, + [SMALL_STATE(8208)] = 204220, + [SMALL_STATE(8209)] = 204246, + [SMALL_STATE(8210)] = 204272, + [SMALL_STATE(8211)] = 204298, + [SMALL_STATE(8212)] = 204324, + [SMALL_STATE(8213)] = 204350, + [SMALL_STATE(8214)] = 204376, + [SMALL_STATE(8215)] = 204402, + [SMALL_STATE(8216)] = 204428, + [SMALL_STATE(8217)] = 204450, + [SMALL_STATE(8218)] = 204476, + [SMALL_STATE(8219)] = 204502, + [SMALL_STATE(8220)] = 204528, + [SMALL_STATE(8221)] = 204554, + [SMALL_STATE(8222)] = 204580, + [SMALL_STATE(8223)] = 204606, + [SMALL_STATE(8224)] = 204632, + [SMALL_STATE(8225)] = 204658, + [SMALL_STATE(8226)] = 204684, + [SMALL_STATE(8227)] = 204710, + [SMALL_STATE(8228)] = 204736, + [SMALL_STATE(8229)] = 204762, + [SMALL_STATE(8230)] = 204788, + [SMALL_STATE(8231)] = 204814, + [SMALL_STATE(8232)] = 204840, + [SMALL_STATE(8233)] = 204866, + [SMALL_STATE(8234)] = 204892, + [SMALL_STATE(8235)] = 204918, + [SMALL_STATE(8236)] = 204944, + [SMALL_STATE(8237)] = 204970, + [SMALL_STATE(8238)] = 204996, + [SMALL_STATE(8239)] = 205022, + [SMALL_STATE(8240)] = 205048, + [SMALL_STATE(8241)] = 205074, + [SMALL_STATE(8242)] = 205100, + [SMALL_STATE(8243)] = 205126, + [SMALL_STATE(8244)] = 205152, + [SMALL_STATE(8245)] = 205178, + [SMALL_STATE(8246)] = 205204, + [SMALL_STATE(8247)] = 205230, + [SMALL_STATE(8248)] = 205256, + [SMALL_STATE(8249)] = 205282, + [SMALL_STATE(8250)] = 205316, + [SMALL_STATE(8251)] = 205342, + [SMALL_STATE(8252)] = 205368, + [SMALL_STATE(8253)] = 205394, + [SMALL_STATE(8254)] = 205420, + [SMALL_STATE(8255)] = 205446, + [SMALL_STATE(8256)] = 205472, + [SMALL_STATE(8257)] = 205498, + [SMALL_STATE(8258)] = 205524, + [SMALL_STATE(8259)] = 205550, + [SMALL_STATE(8260)] = 205576, + [SMALL_STATE(8261)] = 205594, + [SMALL_STATE(8262)] = 205620, + [SMALL_STATE(8263)] = 205646, + [SMALL_STATE(8264)] = 205672, + [SMALL_STATE(8265)] = 205698, + [SMALL_STATE(8266)] = 205724, + [SMALL_STATE(8267)] = 205750, + [SMALL_STATE(8268)] = 205776, + [SMALL_STATE(8269)] = 205802, + [SMALL_STATE(8270)] = 205828, + [SMALL_STATE(8271)] = 205854, + [SMALL_STATE(8272)] = 205880, + [SMALL_STATE(8273)] = 205906, + [SMALL_STATE(8274)] = 205932, + [SMALL_STATE(8275)] = 205958, + [SMALL_STATE(8276)] = 205984, + [SMALL_STATE(8277)] = 206010, + [SMALL_STATE(8278)] = 206036, + [SMALL_STATE(8279)] = 206056, + [SMALL_STATE(8280)] = 206082, + [SMALL_STATE(8281)] = 206108, + [SMALL_STATE(8282)] = 206142, + [SMALL_STATE(8283)] = 206168, + [SMALL_STATE(8284)] = 206194, + [SMALL_STATE(8285)] = 206225, + [SMALL_STATE(8286)] = 206256, + [SMALL_STATE(8287)] = 206273, + [SMALL_STATE(8288)] = 206290, + [SMALL_STATE(8289)] = 206321, + [SMALL_STATE(8290)] = 206352, + [SMALL_STATE(8291)] = 206369, + [SMALL_STATE(8292)] = 206386, + [SMALL_STATE(8293)] = 206403, + [SMALL_STATE(8294)] = 206424, + [SMALL_STATE(8295)] = 206455, + [SMALL_STATE(8296)] = 206486, + [SMALL_STATE(8297)] = 206503, + [SMALL_STATE(8298)] = 206534, + [SMALL_STATE(8299)] = 206565, + [SMALL_STATE(8300)] = 206596, + [SMALL_STATE(8301)] = 206627, + [SMALL_STATE(8302)] = 206646, + [SMALL_STATE(8303)] = 206677, + [SMALL_STATE(8304)] = 206708, + [SMALL_STATE(8305)] = 206739, + [SMALL_STATE(8306)] = 206770, + [SMALL_STATE(8307)] = 206787, + [SMALL_STATE(8308)] = 206818, + [SMALL_STATE(8309)] = 206849, + [SMALL_STATE(8310)] = 206880, + [SMALL_STATE(8311)] = 206911, + [SMALL_STATE(8312)] = 206942, + [SMALL_STATE(8313)] = 206973, + [SMALL_STATE(8314)] = 207004, + [SMALL_STATE(8315)] = 207025, + [SMALL_STATE(8316)] = 207056, + [SMALL_STATE(8317)] = 207087, + [SMALL_STATE(8318)] = 207118, + [SMALL_STATE(8319)] = 207135, + [SMALL_STATE(8320)] = 207166, + [SMALL_STATE(8321)] = 207197, + [SMALL_STATE(8322)] = 207228, + [SMALL_STATE(8323)] = 207258, + [SMALL_STATE(8324)] = 207276, + [SMALL_STATE(8325)] = 207294, + [SMALL_STATE(8326)] = 207314, + [SMALL_STATE(8327)] = 207344, + [SMALL_STATE(8328)] = 207374, + [SMALL_STATE(8329)] = 207404, + [SMALL_STATE(8330)] = 207434, + [SMALL_STATE(8331)] = 207452, + [SMALL_STATE(8332)] = 207468, + [SMALL_STATE(8333)] = 207486, + [SMALL_STATE(8334)] = 207502, + [SMALL_STATE(8335)] = 207529, + [SMALL_STATE(8336)] = 207556, + [SMALL_STATE(8337)] = 207581, + [SMALL_STATE(8338)] = 207608, + [SMALL_STATE(8339)] = 207637, + [SMALL_STATE(8340)] = 207666, + [SMALL_STATE(8341)] = 207691, + [SMALL_STATE(8342)] = 207710, + [SMALL_STATE(8343)] = 207735, + [SMALL_STATE(8344)] = 207756, + [SMALL_STATE(8345)] = 207785, + [SMALL_STATE(8346)] = 207806, + [SMALL_STATE(8347)] = 207825, + [SMALL_STATE(8348)] = 207842, + [SMALL_STATE(8349)] = 207865, + [SMALL_STATE(8350)] = 207894, + [SMALL_STATE(8351)] = 207919, + [SMALL_STATE(8352)] = 207944, + [SMALL_STATE(8353)] = 207969, + [SMALL_STATE(8354)] = 207998, + [SMALL_STATE(8355)] = 208015, + [SMALL_STATE(8356)] = 208042, + [SMALL_STATE(8357)] = 208069, + [SMALL_STATE(8358)] = 208093, + [SMALL_STATE(8359)] = 208109, + [SMALL_STATE(8360)] = 208125, + [SMALL_STATE(8361)] = 208145, + [SMALL_STATE(8362)] = 208161, + [SMALL_STATE(8363)] = 208177, + [SMALL_STATE(8364)] = 208193, + [SMALL_STATE(8365)] = 208209, + [SMALL_STATE(8366)] = 208225, + [SMALL_STATE(8367)] = 208241, + [SMALL_STATE(8368)] = 208265, + [SMALL_STATE(8369)] = 208291, + [SMALL_STATE(8370)] = 208317, + [SMALL_STATE(8371)] = 208333, + [SMALL_STATE(8372)] = 208349, + [SMALL_STATE(8373)] = 208365, + [SMALL_STATE(8374)] = 208379, + [SMALL_STATE(8375)] = 208395, + [SMALL_STATE(8376)] = 208409, + [SMALL_STATE(8377)] = 208433, + [SMALL_STATE(8378)] = 208449, + [SMALL_STATE(8379)] = 208465, + [SMALL_STATE(8380)] = 208481, + [SMALL_STATE(8381)] = 208507, + [SMALL_STATE(8382)] = 208521, + [SMALL_STATE(8383)] = 208545, + [SMALL_STATE(8384)] = 208569, + [SMALL_STATE(8385)] = 208585, + [SMALL_STATE(8386)] = 208611, + [SMALL_STATE(8387)] = 208627, + [SMALL_STATE(8388)] = 208643, + [SMALL_STATE(8389)] = 208665, + [SMALL_STATE(8390)] = 208689, + [SMALL_STATE(8391)] = 208705, + [SMALL_STATE(8392)] = 208721, + [SMALL_STATE(8393)] = 208737, + [SMALL_STATE(8394)] = 208761, + [SMALL_STATE(8395)] = 208781, + [SMALL_STATE(8396)] = 208797, + [SMALL_STATE(8397)] = 208811, + [SMALL_STATE(8398)] = 208837, + [SMALL_STATE(8399)] = 208853, + [SMALL_STATE(8400)] = 208877, + [SMALL_STATE(8401)] = 208899, + [SMALL_STATE(8402)] = 208915, + [SMALL_STATE(8403)] = 208934, + [SMALL_STATE(8404)] = 208957, + [SMALL_STATE(8405)] = 208978, + [SMALL_STATE(8406)] = 208995, + [SMALL_STATE(8407)] = 209010, + [SMALL_STATE(8408)] = 209033, + [SMALL_STATE(8409)] = 209054, + [SMALL_STATE(8410)] = 209075, + [SMALL_STATE(8411)] = 209096, + [SMALL_STATE(8412)] = 209109, + [SMALL_STATE(8413)] = 209122, + [SMALL_STATE(8414)] = 209143, + [SMALL_STATE(8415)] = 209164, + [SMALL_STATE(8416)] = 209183, + [SMALL_STATE(8417)] = 209204, + [SMALL_STATE(8418)] = 209225, + [SMALL_STATE(8419)] = 209242, + [SMALL_STATE(8420)] = 209263, + [SMALL_STATE(8421)] = 209286, + [SMALL_STATE(8422)] = 209307, + [SMALL_STATE(8423)] = 209322, + [SMALL_STATE(8424)] = 209343, + [SMALL_STATE(8425)] = 209364, + [SMALL_STATE(8426)] = 209381, + [SMALL_STATE(8427)] = 209402, + [SMALL_STATE(8428)] = 209419, + [SMALL_STATE(8429)] = 209440, + [SMALL_STATE(8430)] = 209463, + [SMALL_STATE(8431)] = 209484, + [SMALL_STATE(8432)] = 209501, + [SMALL_STATE(8433)] = 209514, + [SMALL_STATE(8434)] = 209537, + [SMALL_STATE(8435)] = 209558, + [SMALL_STATE(8436)] = 209579, + [SMALL_STATE(8437)] = 209600, + [SMALL_STATE(8438)] = 209623, + [SMALL_STATE(8439)] = 209644, + [SMALL_STATE(8440)] = 209657, + [SMALL_STATE(8441)] = 209678, + [SMALL_STATE(8442)] = 209699, + [SMALL_STATE(8443)] = 209720, + [SMALL_STATE(8444)] = 209741, + [SMALL_STATE(8445)] = 209762, + [SMALL_STATE(8446)] = 209783, + [SMALL_STATE(8447)] = 209804, + [SMALL_STATE(8448)] = 209825, + [SMALL_STATE(8449)] = 209848, + [SMALL_STATE(8450)] = 209871, + [SMALL_STATE(8451)] = 209892, + [SMALL_STATE(8452)] = 209913, + [SMALL_STATE(8453)] = 209930, + [SMALL_STATE(8454)] = 209951, + [SMALL_STATE(8455)] = 209972, + [SMALL_STATE(8456)] = 209989, + [SMALL_STATE(8457)] = 210002, + [SMALL_STATE(8458)] = 210023, + [SMALL_STATE(8459)] = 210043, + [SMALL_STATE(8460)] = 210063, + [SMALL_STATE(8461)] = 210083, + [SMALL_STATE(8462)] = 210103, + [SMALL_STATE(8463)] = 210123, + [SMALL_STATE(8464)] = 210143, + [SMALL_STATE(8465)] = 210163, + [SMALL_STATE(8466)] = 210183, + [SMALL_STATE(8467)] = 210203, + [SMALL_STATE(8468)] = 210223, + [SMALL_STATE(8469)] = 210243, + [SMALL_STATE(8470)] = 210255, + [SMALL_STATE(8471)] = 210267, + [SMALL_STATE(8472)] = 210289, + [SMALL_STATE(8473)] = 210309, + [SMALL_STATE(8474)] = 210321, + [SMALL_STATE(8475)] = 210337, + [SMALL_STATE(8476)] = 210357, + [SMALL_STATE(8477)] = 210377, + [SMALL_STATE(8478)] = 210397, + [SMALL_STATE(8479)] = 210409, + [SMALL_STATE(8480)] = 210421, + [SMALL_STATE(8481)] = 210441, + [SMALL_STATE(8482)] = 210461, + [SMALL_STATE(8483)] = 210481, + [SMALL_STATE(8484)] = 210501, + [SMALL_STATE(8485)] = 210519, + [SMALL_STATE(8486)] = 210539, + [SMALL_STATE(8487)] = 210551, + [SMALL_STATE(8488)] = 210571, + [SMALL_STATE(8489)] = 210591, + [SMALL_STATE(8490)] = 210611, + [SMALL_STATE(8491)] = 210631, + [SMALL_STATE(8492)] = 210651, + [SMALL_STATE(8493)] = 210671, + [SMALL_STATE(8494)] = 210691, + [SMALL_STATE(8495)] = 210711, + [SMALL_STATE(8496)] = 210731, + [SMALL_STATE(8497)] = 210751, + [SMALL_STATE(8498)] = 210763, + [SMALL_STATE(8499)] = 210775, + [SMALL_STATE(8500)] = 210795, + [SMALL_STATE(8501)] = 210815, + [SMALL_STATE(8502)] = 210835, + [SMALL_STATE(8503)] = 210855, + [SMALL_STATE(8504)] = 210871, + [SMALL_STATE(8505)] = 210891, + [SMALL_STATE(8506)] = 210911, + [SMALL_STATE(8507)] = 210931, + [SMALL_STATE(8508)] = 210943, + [SMALL_STATE(8509)] = 210963, + [SMALL_STATE(8510)] = 210983, + [SMALL_STATE(8511)] = 211001, + [SMALL_STATE(8512)] = 211021, + [SMALL_STATE(8513)] = 211041, + [SMALL_STATE(8514)] = 211061, + [SMALL_STATE(8515)] = 211081, + [SMALL_STATE(8516)] = 211101, + [SMALL_STATE(8517)] = 211117, + [SMALL_STATE(8518)] = 211137, + [SMALL_STATE(8519)] = 211157, + [SMALL_STATE(8520)] = 211169, + [SMALL_STATE(8521)] = 211189, + [SMALL_STATE(8522)] = 211209, + [SMALL_STATE(8523)] = 211229, + [SMALL_STATE(8524)] = 211249, + [SMALL_STATE(8525)] = 211269, + [SMALL_STATE(8526)] = 211281, + [SMALL_STATE(8527)] = 211301, + [SMALL_STATE(8528)] = 211321, + [SMALL_STATE(8529)] = 211341, + [SMALL_STATE(8530)] = 211361, + [SMALL_STATE(8531)] = 211381, + [SMALL_STATE(8532)] = 211401, + [SMALL_STATE(8533)] = 211421, + [SMALL_STATE(8534)] = 211437, + [SMALL_STATE(8535)] = 211449, + [SMALL_STATE(8536)] = 211469, + [SMALL_STATE(8537)] = 211489, + [SMALL_STATE(8538)] = 211509, + [SMALL_STATE(8539)] = 211529, + [SMALL_STATE(8540)] = 211549, + [SMALL_STATE(8541)] = 211569, + [SMALL_STATE(8542)] = 211589, + [SMALL_STATE(8543)] = 211607, + [SMALL_STATE(8544)] = 211627, + [SMALL_STATE(8545)] = 211647, + [SMALL_STATE(8546)] = 211667, + [SMALL_STATE(8547)] = 211687, + [SMALL_STATE(8548)] = 211707, + [SMALL_STATE(8549)] = 211725, + [SMALL_STATE(8550)] = 211741, + [SMALL_STATE(8551)] = 211761, + [SMALL_STATE(8552)] = 211777, + [SMALL_STATE(8553)] = 211795, + [SMALL_STATE(8554)] = 211811, + [SMALL_STATE(8555)] = 211831, + [SMALL_STATE(8556)] = 211847, + [SMALL_STATE(8557)] = 211867, + [SMALL_STATE(8558)] = 211887, + [SMALL_STATE(8559)] = 211907, + [SMALL_STATE(8560)] = 211927, + [SMALL_STATE(8561)] = 211947, + [SMALL_STATE(8562)] = 211967, + [SMALL_STATE(8563)] = 211987, + [SMALL_STATE(8564)] = 211999, + [SMALL_STATE(8565)] = 212013, + [SMALL_STATE(8566)] = 212033, + [SMALL_STATE(8567)] = 212053, + [SMALL_STATE(8568)] = 212065, + [SMALL_STATE(8569)] = 212085, + [SMALL_STATE(8570)] = 212105, + [SMALL_STATE(8571)] = 212125, + [SMALL_STATE(8572)] = 212137, + [SMALL_STATE(8573)] = 212157, + [SMALL_STATE(8574)] = 212177, + [SMALL_STATE(8575)] = 212199, + [SMALL_STATE(8576)] = 212219, + [SMALL_STATE(8577)] = 212239, + [SMALL_STATE(8578)] = 212259, + [SMALL_STATE(8579)] = 212279, + [SMALL_STATE(8580)] = 212299, + [SMALL_STATE(8581)] = 212315, + [SMALL_STATE(8582)] = 212335, + [SMALL_STATE(8583)] = 212355, + [SMALL_STATE(8584)] = 212377, + [SMALL_STATE(8585)] = 212399, + [SMALL_STATE(8586)] = 212419, + [SMALL_STATE(8587)] = 212439, + [SMALL_STATE(8588)] = 212455, + [SMALL_STATE(8589)] = 212467, + [SMALL_STATE(8590)] = 212487, + [SMALL_STATE(8591)] = 212507, + [SMALL_STATE(8592)] = 212527, + [SMALL_STATE(8593)] = 212547, + [SMALL_STATE(8594)] = 212567, + [SMALL_STATE(8595)] = 212587, + [SMALL_STATE(8596)] = 212607, + [SMALL_STATE(8597)] = 212627, + [SMALL_STATE(8598)] = 212649, + [SMALL_STATE(8599)] = 212669, + [SMALL_STATE(8600)] = 212689, + [SMALL_STATE(8601)] = 212709, + [SMALL_STATE(8602)] = 212729, + [SMALL_STATE(8603)] = 212749, + [SMALL_STATE(8604)] = 212769, + [SMALL_STATE(8605)] = 212789, + [SMALL_STATE(8606)] = 212809, + [SMALL_STATE(8607)] = 212829, + [SMALL_STATE(8608)] = 212841, + [SMALL_STATE(8609)] = 212853, + [SMALL_STATE(8610)] = 212869, + [SMALL_STATE(8611)] = 212887, + [SMALL_STATE(8612)] = 212909, + [SMALL_STATE(8613)] = 212929, + [SMALL_STATE(8614)] = 212949, + [SMALL_STATE(8615)] = 212969, + [SMALL_STATE(8616)] = 212985, + [SMALL_STATE(8617)] = 213005, + [SMALL_STATE(8618)] = 213023, + [SMALL_STATE(8619)] = 213041, + [SMALL_STATE(8620)] = 213061, + [SMALL_STATE(8621)] = 213081, + [SMALL_STATE(8622)] = 213101, + [SMALL_STATE(8623)] = 213121, + [SMALL_STATE(8624)] = 213141, + [SMALL_STATE(8625)] = 213161, + [SMALL_STATE(8626)] = 213175, + [SMALL_STATE(8627)] = 213187, + [SMALL_STATE(8628)] = 213207, + [SMALL_STATE(8629)] = 213227, + [SMALL_STATE(8630)] = 213247, + [SMALL_STATE(8631)] = 213267, + [SMALL_STATE(8632)] = 213287, + [SMALL_STATE(8633)] = 213307, + [SMALL_STATE(8634)] = 213324, + [SMALL_STATE(8635)] = 213341, + [SMALL_STATE(8636)] = 213358, + [SMALL_STATE(8637)] = 213375, + [SMALL_STATE(8638)] = 213386, + [SMALL_STATE(8639)] = 213403, + [SMALL_STATE(8640)] = 213420, + [SMALL_STATE(8641)] = 213437, + [SMALL_STATE(8642)] = 213454, + [SMALL_STATE(8643)] = 213471, + [SMALL_STATE(8644)] = 213482, + [SMALL_STATE(8645)] = 213499, + [SMALL_STATE(8646)] = 213516, + [SMALL_STATE(8647)] = 213533, + [SMALL_STATE(8648)] = 213550, + [SMALL_STATE(8649)] = 213567, + [SMALL_STATE(8650)] = 213584, + [SMALL_STATE(8651)] = 213597, + [SMALL_STATE(8652)] = 213614, + [SMALL_STATE(8653)] = 213625, + [SMALL_STATE(8654)] = 213640, + [SMALL_STATE(8655)] = 213653, + [SMALL_STATE(8656)] = 213668, + [SMALL_STATE(8657)] = 213683, + [SMALL_STATE(8658)] = 213700, + [SMALL_STATE(8659)] = 213717, + [SMALL_STATE(8660)] = 213734, + [SMALL_STATE(8661)] = 213751, + [SMALL_STATE(8662)] = 213768, + [SMALL_STATE(8663)] = 213785, + [SMALL_STATE(8664)] = 213802, + [SMALL_STATE(8665)] = 213819, + [SMALL_STATE(8666)] = 213836, + [SMALL_STATE(8667)] = 213853, + [SMALL_STATE(8668)] = 213870, + [SMALL_STATE(8669)] = 213887, + [SMALL_STATE(8670)] = 213904, + [SMALL_STATE(8671)] = 213921, + [SMALL_STATE(8672)] = 213938, + [SMALL_STATE(8673)] = 213955, + [SMALL_STATE(8674)] = 213968, + [SMALL_STATE(8675)] = 213983, + [SMALL_STATE(8676)] = 214000, + [SMALL_STATE(8677)] = 214017, + [SMALL_STATE(8678)] = 214034, + [SMALL_STATE(8679)] = 214045, + [SMALL_STATE(8680)] = 214062, + [SMALL_STATE(8681)] = 214079, + [SMALL_STATE(8682)] = 214096, + [SMALL_STATE(8683)] = 214113, + [SMALL_STATE(8684)] = 214130, + [SMALL_STATE(8685)] = 214147, + [SMALL_STATE(8686)] = 214164, + [SMALL_STATE(8687)] = 214181, + [SMALL_STATE(8688)] = 214198, + [SMALL_STATE(8689)] = 214215, + [SMALL_STATE(8690)] = 214232, + [SMALL_STATE(8691)] = 214249, + [SMALL_STATE(8692)] = 214266, + [SMALL_STATE(8693)] = 214283, + [SMALL_STATE(8694)] = 214300, + [SMALL_STATE(8695)] = 214317, + [SMALL_STATE(8696)] = 214330, + [SMALL_STATE(8697)] = 214345, + [SMALL_STATE(8698)] = 214362, + [SMALL_STATE(8699)] = 214373, + [SMALL_STATE(8700)] = 214390, + [SMALL_STATE(8701)] = 214405, + [SMALL_STATE(8702)] = 214416, + [SMALL_STATE(8703)] = 214433, + [SMALL_STATE(8704)] = 214450, + [SMALL_STATE(8705)] = 214467, + [SMALL_STATE(8706)] = 214478, + [SMALL_STATE(8707)] = 214495, + [SMALL_STATE(8708)] = 214512, + [SMALL_STATE(8709)] = 214529, + [SMALL_STATE(8710)] = 214546, + [SMALL_STATE(8711)] = 214563, + [SMALL_STATE(8712)] = 214580, + [SMALL_STATE(8713)] = 214597, + [SMALL_STATE(8714)] = 214612, + [SMALL_STATE(8715)] = 214629, + [SMALL_STATE(8716)] = 214644, + [SMALL_STATE(8717)] = 214661, + [SMALL_STATE(8718)] = 214672, + [SMALL_STATE(8719)] = 214689, + [SMALL_STATE(8720)] = 214704, + [SMALL_STATE(8721)] = 214721, + [SMALL_STATE(8722)] = 214738, + [SMALL_STATE(8723)] = 214753, + [SMALL_STATE(8724)] = 214764, + [SMALL_STATE(8725)] = 214781, + [SMALL_STATE(8726)] = 214798, + [SMALL_STATE(8727)] = 214815, + [SMALL_STATE(8728)] = 214832, + [SMALL_STATE(8729)] = 214849, + [SMALL_STATE(8730)] = 214866, + [SMALL_STATE(8731)] = 214881, + [SMALL_STATE(8732)] = 214898, + [SMALL_STATE(8733)] = 214913, + [SMALL_STATE(8734)] = 214924, + [SMALL_STATE(8735)] = 214941, + [SMALL_STATE(8736)] = 214956, + [SMALL_STATE(8737)] = 214971, + [SMALL_STATE(8738)] = 214982, + [SMALL_STATE(8739)] = 214997, + [SMALL_STATE(8740)] = 215014, + [SMALL_STATE(8741)] = 215031, + [SMALL_STATE(8742)] = 215048, + [SMALL_STATE(8743)] = 215065, + [SMALL_STATE(8744)] = 215080, + [SMALL_STATE(8745)] = 215097, + [SMALL_STATE(8746)] = 215114, + [SMALL_STATE(8747)] = 215131, + [SMALL_STATE(8748)] = 215146, + [SMALL_STATE(8749)] = 215161, + [SMALL_STATE(8750)] = 215176, + [SMALL_STATE(8751)] = 215191, + [SMALL_STATE(8752)] = 215206, + [SMALL_STATE(8753)] = 215223, + [SMALL_STATE(8754)] = 215240, + [SMALL_STATE(8755)] = 215257, + [SMALL_STATE(8756)] = 215274, + [SMALL_STATE(8757)] = 215291, + [SMALL_STATE(8758)] = 215308, + [SMALL_STATE(8759)] = 215325, + [SMALL_STATE(8760)] = 215342, + [SMALL_STATE(8761)] = 215359, + [SMALL_STATE(8762)] = 215372, + [SMALL_STATE(8763)] = 215389, + [SMALL_STATE(8764)] = 215404, + [SMALL_STATE(8765)] = 215421, + [SMALL_STATE(8766)] = 215438, + [SMALL_STATE(8767)] = 215453, + [SMALL_STATE(8768)] = 215468, + [SMALL_STATE(8769)] = 215485, + [SMALL_STATE(8770)] = 215502, + [SMALL_STATE(8771)] = 215519, + [SMALL_STATE(8772)] = 215536, + [SMALL_STATE(8773)] = 215553, + [SMALL_STATE(8774)] = 215570, + [SMALL_STATE(8775)] = 215587, + [SMALL_STATE(8776)] = 215602, + [SMALL_STATE(8777)] = 215617, + [SMALL_STATE(8778)] = 215634, + [SMALL_STATE(8779)] = 215649, + [SMALL_STATE(8780)] = 215666, + [SMALL_STATE(8781)] = 215679, + [SMALL_STATE(8782)] = 215696, + [SMALL_STATE(8783)] = 215713, + [SMALL_STATE(8784)] = 215728, + [SMALL_STATE(8785)] = 215745, + [SMALL_STATE(8786)] = 215762, + [SMALL_STATE(8787)] = 215779, + [SMALL_STATE(8788)] = 215796, + [SMALL_STATE(8789)] = 215813, + [SMALL_STATE(8790)] = 215830, + [SMALL_STATE(8791)] = 215847, + [SMALL_STATE(8792)] = 215864, + [SMALL_STATE(8793)] = 215881, + [SMALL_STATE(8794)] = 215898, + [SMALL_STATE(8795)] = 215915, + [SMALL_STATE(8796)] = 215929, + [SMALL_STATE(8797)] = 215943, + [SMALL_STATE(8798)] = 215957, + [SMALL_STATE(8799)] = 215969, + [SMALL_STATE(8800)] = 215981, + [SMALL_STATE(8801)] = 215993, + [SMALL_STATE(8802)] = 216007, + [SMALL_STATE(8803)] = 216019, + [SMALL_STATE(8804)] = 216031, + [SMALL_STATE(8805)] = 216045, + [SMALL_STATE(8806)] = 216059, + [SMALL_STATE(8807)] = 216073, + [SMALL_STATE(8808)] = 216087, + [SMALL_STATE(8809)] = 216101, + [SMALL_STATE(8810)] = 216115, + [SMALL_STATE(8811)] = 216129, + [SMALL_STATE(8812)] = 216141, + [SMALL_STATE(8813)] = 216155, + [SMALL_STATE(8814)] = 216169, + [SMALL_STATE(8815)] = 216181, + [SMALL_STATE(8816)] = 216193, + [SMALL_STATE(8817)] = 216205, + [SMALL_STATE(8818)] = 216219, + [SMALL_STATE(8819)] = 216233, + [SMALL_STATE(8820)] = 216245, + [SMALL_STATE(8821)] = 216259, + [SMALL_STATE(8822)] = 216273, + [SMALL_STATE(8823)] = 216287, + [SMALL_STATE(8824)] = 216299, + [SMALL_STATE(8825)] = 216309, + [SMALL_STATE(8826)] = 216323, + [SMALL_STATE(8827)] = 216337, + [SMALL_STATE(8828)] = 216351, + [SMALL_STATE(8829)] = 216365, + [SMALL_STATE(8830)] = 216379, + [SMALL_STATE(8831)] = 216393, + [SMALL_STATE(8832)] = 216405, + [SMALL_STATE(8833)] = 216417, + [SMALL_STATE(8834)] = 216431, + [SMALL_STATE(8835)] = 216445, + [SMALL_STATE(8836)] = 216459, + [SMALL_STATE(8837)] = 216473, + [SMALL_STATE(8838)] = 216487, + [SMALL_STATE(8839)] = 216501, + [SMALL_STATE(8840)] = 216515, + [SMALL_STATE(8841)] = 216529, + [SMALL_STATE(8842)] = 216543, + [SMALL_STATE(8843)] = 216557, + [SMALL_STATE(8844)] = 216571, + [SMALL_STATE(8845)] = 216585, + [SMALL_STATE(8846)] = 216597, + [SMALL_STATE(8847)] = 216611, + [SMALL_STATE(8848)] = 216625, + [SMALL_STATE(8849)] = 216639, + [SMALL_STATE(8850)] = 216653, + [SMALL_STATE(8851)] = 216667, + [SMALL_STATE(8852)] = 216681, + [SMALL_STATE(8853)] = 216695, + [SMALL_STATE(8854)] = 216709, + [SMALL_STATE(8855)] = 216723, + [SMALL_STATE(8856)] = 216737, + [SMALL_STATE(8857)] = 216751, + [SMALL_STATE(8858)] = 216765, + [SMALL_STATE(8859)] = 216779, + [SMALL_STATE(8860)] = 216793, + [SMALL_STATE(8861)] = 216807, + [SMALL_STATE(8862)] = 216819, + [SMALL_STATE(8863)] = 216831, + [SMALL_STATE(8864)] = 216843, + [SMALL_STATE(8865)] = 216855, + [SMALL_STATE(8866)] = 216867, + [SMALL_STATE(8867)] = 216881, + [SMALL_STATE(8868)] = 216893, + [SMALL_STATE(8869)] = 216905, + [SMALL_STATE(8870)] = 216919, + [SMALL_STATE(8871)] = 216933, + [SMALL_STATE(8872)] = 216947, + [SMALL_STATE(8873)] = 216961, + [SMALL_STATE(8874)] = 216975, + [SMALL_STATE(8875)] = 216989, + [SMALL_STATE(8876)] = 217003, + [SMALL_STATE(8877)] = 217017, + [SMALL_STATE(8878)] = 217031, + [SMALL_STATE(8879)] = 217045, + [SMALL_STATE(8880)] = 217059, + [SMALL_STATE(8881)] = 217073, + [SMALL_STATE(8882)] = 217087, + [SMALL_STATE(8883)] = 217101, + [SMALL_STATE(8884)] = 217113, + [SMALL_STATE(8885)] = 217127, + [SMALL_STATE(8886)] = 217141, + [SMALL_STATE(8887)] = 217153, + [SMALL_STATE(8888)] = 217167, + [SMALL_STATE(8889)] = 217179, + [SMALL_STATE(8890)] = 217191, + [SMALL_STATE(8891)] = 217203, + [SMALL_STATE(8892)] = 217215, + [SMALL_STATE(8893)] = 217229, + [SMALL_STATE(8894)] = 217243, + [SMALL_STATE(8895)] = 217257, + [SMALL_STATE(8896)] = 217271, + [SMALL_STATE(8897)] = 217283, + [SMALL_STATE(8898)] = 217297, + [SMALL_STATE(8899)] = 217309, + [SMALL_STATE(8900)] = 217323, + [SMALL_STATE(8901)] = 217337, + [SMALL_STATE(8902)] = 217347, + [SMALL_STATE(8903)] = 217361, + [SMALL_STATE(8904)] = 217375, + [SMALL_STATE(8905)] = 217389, + [SMALL_STATE(8906)] = 217403, + [SMALL_STATE(8907)] = 217417, + [SMALL_STATE(8908)] = 217431, + [SMALL_STATE(8909)] = 217445, + [SMALL_STATE(8910)] = 217457, + [SMALL_STATE(8911)] = 217469, + [SMALL_STATE(8912)] = 217481, + [SMALL_STATE(8913)] = 217493, + [SMALL_STATE(8914)] = 217505, + [SMALL_STATE(8915)] = 217517, + [SMALL_STATE(8916)] = 217529, + [SMALL_STATE(8917)] = 217543, + [SMALL_STATE(8918)] = 217557, + [SMALL_STATE(8919)] = 217571, + [SMALL_STATE(8920)] = 217585, + [SMALL_STATE(8921)] = 217599, + [SMALL_STATE(8922)] = 217611, + [SMALL_STATE(8923)] = 217625, + [SMALL_STATE(8924)] = 217639, + [SMALL_STATE(8925)] = 217653, + [SMALL_STATE(8926)] = 217667, + [SMALL_STATE(8927)] = 217681, + [SMALL_STATE(8928)] = 217695, + [SMALL_STATE(8929)] = 217707, + [SMALL_STATE(8930)] = 217721, + [SMALL_STATE(8931)] = 217735, + [SMALL_STATE(8932)] = 217749, + [SMALL_STATE(8933)] = 217759, + [SMALL_STATE(8934)] = 217773, + [SMALL_STATE(8935)] = 217787, + [SMALL_STATE(8936)] = 217801, + [SMALL_STATE(8937)] = 217815, + [SMALL_STATE(8938)] = 217829, + [SMALL_STATE(8939)] = 217843, + [SMALL_STATE(8940)] = 217857, + [SMALL_STATE(8941)] = 217871, + [SMALL_STATE(8942)] = 217885, + [SMALL_STATE(8943)] = 217899, + [SMALL_STATE(8944)] = 217913, + [SMALL_STATE(8945)] = 217927, + [SMALL_STATE(8946)] = 217941, + [SMALL_STATE(8947)] = 217955, + [SMALL_STATE(8948)] = 217967, + [SMALL_STATE(8949)] = 217981, + [SMALL_STATE(8950)] = 217995, + [SMALL_STATE(8951)] = 218007, + [SMALL_STATE(8952)] = 218017, + [SMALL_STATE(8953)] = 218031, + [SMALL_STATE(8954)] = 218045, + [SMALL_STATE(8955)] = 218059, + [SMALL_STATE(8956)] = 218073, + [SMALL_STATE(8957)] = 218087, + [SMALL_STATE(8958)] = 218101, + [SMALL_STATE(8959)] = 218115, + [SMALL_STATE(8960)] = 218129, + [SMALL_STATE(8961)] = 218143, + [SMALL_STATE(8962)] = 218157, + [SMALL_STATE(8963)] = 218171, + [SMALL_STATE(8964)] = 218185, + [SMALL_STATE(8965)] = 218199, + [SMALL_STATE(8966)] = 218213, + [SMALL_STATE(8967)] = 218227, + [SMALL_STATE(8968)] = 218241, + [SMALL_STATE(8969)] = 218255, + [SMALL_STATE(8970)] = 218269, + [SMALL_STATE(8971)] = 218283, + [SMALL_STATE(8972)] = 218297, + [SMALL_STATE(8973)] = 218311, + [SMALL_STATE(8974)] = 218325, + [SMALL_STATE(8975)] = 218339, + [SMALL_STATE(8976)] = 218353, + [SMALL_STATE(8977)] = 218367, + [SMALL_STATE(8978)] = 218381, + [SMALL_STATE(8979)] = 218393, + [SMALL_STATE(8980)] = 218407, + [SMALL_STATE(8981)] = 218421, + [SMALL_STATE(8982)] = 218435, + [SMALL_STATE(8983)] = 218449, + [SMALL_STATE(8984)] = 218463, + [SMALL_STATE(8985)] = 218477, + [SMALL_STATE(8986)] = 218491, + [SMALL_STATE(8987)] = 218501, + [SMALL_STATE(8988)] = 218515, + [SMALL_STATE(8989)] = 218529, + [SMALL_STATE(8990)] = 218543, + [SMALL_STATE(8991)] = 218557, + [SMALL_STATE(8992)] = 218571, + [SMALL_STATE(8993)] = 218585, + [SMALL_STATE(8994)] = 218599, + [SMALL_STATE(8995)] = 218613, + [SMALL_STATE(8996)] = 218627, + [SMALL_STATE(8997)] = 218641, + [SMALL_STATE(8998)] = 218655, + [SMALL_STATE(8999)] = 218669, + [SMALL_STATE(9000)] = 218683, + [SMALL_STATE(9001)] = 218697, + [SMALL_STATE(9002)] = 218711, + [SMALL_STATE(9003)] = 218725, + [SMALL_STATE(9004)] = 218739, + [SMALL_STATE(9005)] = 218753, + [SMALL_STATE(9006)] = 218767, + [SMALL_STATE(9007)] = 218781, + [SMALL_STATE(9008)] = 218795, + [SMALL_STATE(9009)] = 218809, + [SMALL_STATE(9010)] = 218819, + [SMALL_STATE(9011)] = 218833, + [SMALL_STATE(9012)] = 218843, + [SMALL_STATE(9013)] = 218857, + [SMALL_STATE(9014)] = 218871, + [SMALL_STATE(9015)] = 218885, + [SMALL_STATE(9016)] = 218899, + [SMALL_STATE(9017)] = 218913, + [SMALL_STATE(9018)] = 218927, + [SMALL_STATE(9019)] = 218941, + [SMALL_STATE(9020)] = 218955, + [SMALL_STATE(9021)] = 218969, + [SMALL_STATE(9022)] = 218983, + [SMALL_STATE(9023)] = 218995, + [SMALL_STATE(9024)] = 219009, + [SMALL_STATE(9025)] = 219023, + [SMALL_STATE(9026)] = 219037, + [SMALL_STATE(9027)] = 219051, + [SMALL_STATE(9028)] = 219065, + [SMALL_STATE(9029)] = 219079, + [SMALL_STATE(9030)] = 219091, + [SMALL_STATE(9031)] = 219105, + [SMALL_STATE(9032)] = 219115, + [SMALL_STATE(9033)] = 219129, + [SMALL_STATE(9034)] = 219143, + [SMALL_STATE(9035)] = 219157, + [SMALL_STATE(9036)] = 219171, + [SMALL_STATE(9037)] = 219185, + [SMALL_STATE(9038)] = 219197, + [SMALL_STATE(9039)] = 219209, + [SMALL_STATE(9040)] = 219221, + [SMALL_STATE(9041)] = 219235, + [SMALL_STATE(9042)] = 219249, + [SMALL_STATE(9043)] = 219263, + [SMALL_STATE(9044)] = 219275, + [SMALL_STATE(9045)] = 219287, + [SMALL_STATE(9046)] = 219301, + [SMALL_STATE(9047)] = 219315, + [SMALL_STATE(9048)] = 219329, + [SMALL_STATE(9049)] = 219343, + [SMALL_STATE(9050)] = 219357, + [SMALL_STATE(9051)] = 219371, + [SMALL_STATE(9052)] = 219385, + [SMALL_STATE(9053)] = 219399, + [SMALL_STATE(9054)] = 219413, + [SMALL_STATE(9055)] = 219427, + [SMALL_STATE(9056)] = 219441, + [SMALL_STATE(9057)] = 219455, + [SMALL_STATE(9058)] = 219469, + [SMALL_STATE(9059)] = 219483, + [SMALL_STATE(9060)] = 219497, + [SMALL_STATE(9061)] = 219511, + [SMALL_STATE(9062)] = 219525, + [SMALL_STATE(9063)] = 219539, + [SMALL_STATE(9064)] = 219553, + [SMALL_STATE(9065)] = 219567, + [SMALL_STATE(9066)] = 219581, + [SMALL_STATE(9067)] = 219595, + [SMALL_STATE(9068)] = 219609, + [SMALL_STATE(9069)] = 219623, + [SMALL_STATE(9070)] = 219637, + [SMALL_STATE(9071)] = 219651, + [SMALL_STATE(9072)] = 219665, + [SMALL_STATE(9073)] = 219679, + [SMALL_STATE(9074)] = 219693, + [SMALL_STATE(9075)] = 219707, + [SMALL_STATE(9076)] = 219721, + [SMALL_STATE(9077)] = 219735, + [SMALL_STATE(9078)] = 219749, + [SMALL_STATE(9079)] = 219763, + [SMALL_STATE(9080)] = 219777, + [SMALL_STATE(9081)] = 219791, + [SMALL_STATE(9082)] = 219805, + [SMALL_STATE(9083)] = 219819, + [SMALL_STATE(9084)] = 219833, + [SMALL_STATE(9085)] = 219847, + [SMALL_STATE(9086)] = 219861, + [SMALL_STATE(9087)] = 219875, + [SMALL_STATE(9088)] = 219889, + [SMALL_STATE(9089)] = 219903, + [SMALL_STATE(9090)] = 219917, + [SMALL_STATE(9091)] = 219927, + [SMALL_STATE(9092)] = 219941, + [SMALL_STATE(9093)] = 219955, + [SMALL_STATE(9094)] = 219967, + [SMALL_STATE(9095)] = 219981, + [SMALL_STATE(9096)] = 219995, + [SMALL_STATE(9097)] = 220009, + [SMALL_STATE(9098)] = 220020, + [SMALL_STATE(9099)] = 220029, + [SMALL_STATE(9100)] = 220040, + [SMALL_STATE(9101)] = 220051, + [SMALL_STATE(9102)] = 220060, + [SMALL_STATE(9103)] = 220071, + [SMALL_STATE(9104)] = 220082, + [SMALL_STATE(9105)] = 220093, + [SMALL_STATE(9106)] = 220104, + [SMALL_STATE(9107)] = 220115, + [SMALL_STATE(9108)] = 220126, + [SMALL_STATE(9109)] = 220137, + [SMALL_STATE(9110)] = 220148, + [SMALL_STATE(9111)] = 220157, + [SMALL_STATE(9112)] = 220168, + [SMALL_STATE(9113)] = 220177, + [SMALL_STATE(9114)] = 220186, + [SMALL_STATE(9115)] = 220197, + [SMALL_STATE(9116)] = 220206, + [SMALL_STATE(9117)] = 220217, + [SMALL_STATE(9118)] = 220228, + [SMALL_STATE(9119)] = 220239, + [SMALL_STATE(9120)] = 220248, + [SMALL_STATE(9121)] = 220257, + [SMALL_STATE(9122)] = 220266, + [SMALL_STATE(9123)] = 220277, + [SMALL_STATE(9124)] = 220286, + [SMALL_STATE(9125)] = 220295, + [SMALL_STATE(9126)] = 220306, + [SMALL_STATE(9127)] = 220315, + [SMALL_STATE(9128)] = 220326, + [SMALL_STATE(9129)] = 220337, + [SMALL_STATE(9130)] = 220348, + [SMALL_STATE(9131)] = 220357, + [SMALL_STATE(9132)] = 220366, + [SMALL_STATE(9133)] = 220375, + [SMALL_STATE(9134)] = 220384, + [SMALL_STATE(9135)] = 220393, + [SMALL_STATE(9136)] = 220402, + [SMALL_STATE(9137)] = 220411, + [SMALL_STATE(9138)] = 220422, + [SMALL_STATE(9139)] = 220433, + [SMALL_STATE(9140)] = 220444, + [SMALL_STATE(9141)] = 220455, + [SMALL_STATE(9142)] = 220466, + [SMALL_STATE(9143)] = 220477, + [SMALL_STATE(9144)] = 220488, + [SMALL_STATE(9145)] = 220497, + [SMALL_STATE(9146)] = 220508, + [SMALL_STATE(9147)] = 220517, + [SMALL_STATE(9148)] = 220526, + [SMALL_STATE(9149)] = 220537, + [SMALL_STATE(9150)] = 220546, + [SMALL_STATE(9151)] = 220555, + [SMALL_STATE(9152)] = 220564, + [SMALL_STATE(9153)] = 220573, + [SMALL_STATE(9154)] = 220584, + [SMALL_STATE(9155)] = 220593, + [SMALL_STATE(9156)] = 220602, + [SMALL_STATE(9157)] = 220611, + [SMALL_STATE(9158)] = 220620, + [SMALL_STATE(9159)] = 220631, + [SMALL_STATE(9160)] = 220640, + [SMALL_STATE(9161)] = 220649, + [SMALL_STATE(9162)] = 220658, + [SMALL_STATE(9163)] = 220667, + [SMALL_STATE(9164)] = 220676, + [SMALL_STATE(9165)] = 220685, + [SMALL_STATE(9166)] = 220696, + [SMALL_STATE(9167)] = 220707, + [SMALL_STATE(9168)] = 220718, + [SMALL_STATE(9169)] = 220729, + [SMALL_STATE(9170)] = 220740, + [SMALL_STATE(9171)] = 220751, + [SMALL_STATE(9172)] = 220762, + [SMALL_STATE(9173)] = 220773, + [SMALL_STATE(9174)] = 220784, + [SMALL_STATE(9175)] = 220793, + [SMALL_STATE(9176)] = 220802, + [SMALL_STATE(9177)] = 220811, + [SMALL_STATE(9178)] = 220820, + [SMALL_STATE(9179)] = 220831, + [SMALL_STATE(9180)] = 220842, + [SMALL_STATE(9181)] = 220853, + [SMALL_STATE(9182)] = 220862, + [SMALL_STATE(9183)] = 220873, + [SMALL_STATE(9184)] = 220884, + [SMALL_STATE(9185)] = 220895, + [SMALL_STATE(9186)] = 220906, + [SMALL_STATE(9187)] = 220917, + [SMALL_STATE(9188)] = 220928, + [SMALL_STATE(9189)] = 220939, + [SMALL_STATE(9190)] = 220950, + [SMALL_STATE(9191)] = 220961, + [SMALL_STATE(9192)] = 220972, + [SMALL_STATE(9193)] = 220983, + [SMALL_STATE(9194)] = 220994, + [SMALL_STATE(9195)] = 221005, + [SMALL_STATE(9196)] = 221016, + [SMALL_STATE(9197)] = 221027, + [SMALL_STATE(9198)] = 221038, + [SMALL_STATE(9199)] = 221049, + [SMALL_STATE(9200)] = 221060, + [SMALL_STATE(9201)] = 221071, + [SMALL_STATE(9202)] = 221082, + [SMALL_STATE(9203)] = 221093, + [SMALL_STATE(9204)] = 221104, + [SMALL_STATE(9205)] = 221115, + [SMALL_STATE(9206)] = 221126, + [SMALL_STATE(9207)] = 221137, + [SMALL_STATE(9208)] = 221148, + [SMALL_STATE(9209)] = 221159, + [SMALL_STATE(9210)] = 221170, + [SMALL_STATE(9211)] = 221181, + [SMALL_STATE(9212)] = 221192, + [SMALL_STATE(9213)] = 221203, + [SMALL_STATE(9214)] = 221214, + [SMALL_STATE(9215)] = 221225, + [SMALL_STATE(9216)] = 221236, + [SMALL_STATE(9217)] = 221247, + [SMALL_STATE(9218)] = 221258, + [SMALL_STATE(9219)] = 221269, + [SMALL_STATE(9220)] = 221280, + [SMALL_STATE(9221)] = 221291, + [SMALL_STATE(9222)] = 221302, + [SMALL_STATE(9223)] = 221313, + [SMALL_STATE(9224)] = 221324, + [SMALL_STATE(9225)] = 221335, + [SMALL_STATE(9226)] = 221346, + [SMALL_STATE(9227)] = 221357, + [SMALL_STATE(9228)] = 221368, + [SMALL_STATE(9229)] = 221379, + [SMALL_STATE(9230)] = 221390, + [SMALL_STATE(9231)] = 221401, + [SMALL_STATE(9232)] = 221412, + [SMALL_STATE(9233)] = 221423, + [SMALL_STATE(9234)] = 221434, + [SMALL_STATE(9235)] = 221445, + [SMALL_STATE(9236)] = 221456, + [SMALL_STATE(9237)] = 221467, + [SMALL_STATE(9238)] = 221478, + [SMALL_STATE(9239)] = 221489, + [SMALL_STATE(9240)] = 221500, + [SMALL_STATE(9241)] = 221511, + [SMALL_STATE(9242)] = 221520, + [SMALL_STATE(9243)] = 221531, + [SMALL_STATE(9244)] = 221540, + [SMALL_STATE(9245)] = 221549, + [SMALL_STATE(9246)] = 221560, + [SMALL_STATE(9247)] = 221569, + [SMALL_STATE(9248)] = 221580, + [SMALL_STATE(9249)] = 221589, + [SMALL_STATE(9250)] = 221600, + [SMALL_STATE(9251)] = 221611, + [SMALL_STATE(9252)] = 221622, + [SMALL_STATE(9253)] = 221633, + [SMALL_STATE(9254)] = 221644, + [SMALL_STATE(9255)] = 221655, + [SMALL_STATE(9256)] = 221666, + [SMALL_STATE(9257)] = 221675, + [SMALL_STATE(9258)] = 221686, + [SMALL_STATE(9259)] = 221695, + [SMALL_STATE(9260)] = 221706, + [SMALL_STATE(9261)] = 221717, + [SMALL_STATE(9262)] = 221728, + [SMALL_STATE(9263)] = 221739, + [SMALL_STATE(9264)] = 221748, + [SMALL_STATE(9265)] = 221757, + [SMALL_STATE(9266)] = 221766, + [SMALL_STATE(9267)] = 221777, + [SMALL_STATE(9268)] = 221788, + [SMALL_STATE(9269)] = 221797, + [SMALL_STATE(9270)] = 221808, + [SMALL_STATE(9271)] = 221819, + [SMALL_STATE(9272)] = 221830, + [SMALL_STATE(9273)] = 221839, + [SMALL_STATE(9274)] = 221850, + [SMALL_STATE(9275)] = 221859, + [SMALL_STATE(9276)] = 221870, + [SMALL_STATE(9277)] = 221881, + [SMALL_STATE(9278)] = 221892, + [SMALL_STATE(9279)] = 221901, + [SMALL_STATE(9280)] = 221910, + [SMALL_STATE(9281)] = 221921, + [SMALL_STATE(9282)] = 221932, + [SMALL_STATE(9283)] = 221943, + [SMALL_STATE(9284)] = 221954, + [SMALL_STATE(9285)] = 221963, + [SMALL_STATE(9286)] = 221974, + [SMALL_STATE(9287)] = 221985, + [SMALL_STATE(9288)] = 221996, + [SMALL_STATE(9289)] = 222007, + [SMALL_STATE(9290)] = 222018, + [SMALL_STATE(9291)] = 222029, + [SMALL_STATE(9292)] = 222038, + [SMALL_STATE(9293)] = 222049, + [SMALL_STATE(9294)] = 222060, + [SMALL_STATE(9295)] = 222069, + [SMALL_STATE(9296)] = 222080, + [SMALL_STATE(9297)] = 222089, + [SMALL_STATE(9298)] = 222098, + [SMALL_STATE(9299)] = 222109, + [SMALL_STATE(9300)] = 222120, + [SMALL_STATE(9301)] = 222131, + [SMALL_STATE(9302)] = 222142, + [SMALL_STATE(9303)] = 222153, + [SMALL_STATE(9304)] = 222162, + [SMALL_STATE(9305)] = 222173, + [SMALL_STATE(9306)] = 222184, + [SMALL_STATE(9307)] = 222195, + [SMALL_STATE(9308)] = 222206, + [SMALL_STATE(9309)] = 222217, + [SMALL_STATE(9310)] = 222228, + [SMALL_STATE(9311)] = 222239, + [SMALL_STATE(9312)] = 222248, + [SMALL_STATE(9313)] = 222259, + [SMALL_STATE(9314)] = 222270, + [SMALL_STATE(9315)] = 222281, + [SMALL_STATE(9316)] = 222292, + [SMALL_STATE(9317)] = 222303, + [SMALL_STATE(9318)] = 222314, + [SMALL_STATE(9319)] = 222325, + [SMALL_STATE(9320)] = 222336, + [SMALL_STATE(9321)] = 222347, + [SMALL_STATE(9322)] = 222358, + [SMALL_STATE(9323)] = 222369, + [SMALL_STATE(9324)] = 222380, + [SMALL_STATE(9325)] = 222391, + [SMALL_STATE(9326)] = 222402, + [SMALL_STATE(9327)] = 222413, + [SMALL_STATE(9328)] = 222424, + [SMALL_STATE(9329)] = 222435, + [SMALL_STATE(9330)] = 222446, + [SMALL_STATE(9331)] = 222457, + [SMALL_STATE(9332)] = 222468, + [SMALL_STATE(9333)] = 222479, + [SMALL_STATE(9334)] = 222490, + [SMALL_STATE(9335)] = 222501, + [SMALL_STATE(9336)] = 222512, + [SMALL_STATE(9337)] = 222523, + [SMALL_STATE(9338)] = 222534, + [SMALL_STATE(9339)] = 222545, + [SMALL_STATE(9340)] = 222556, + [SMALL_STATE(9341)] = 222567, + [SMALL_STATE(9342)] = 222578, + [SMALL_STATE(9343)] = 222589, + [SMALL_STATE(9344)] = 222600, + [SMALL_STATE(9345)] = 222611, + [SMALL_STATE(9346)] = 222622, + [SMALL_STATE(9347)] = 222633, + [SMALL_STATE(9348)] = 222644, + [SMALL_STATE(9349)] = 222655, + [SMALL_STATE(9350)] = 222666, + [SMALL_STATE(9351)] = 222677, + [SMALL_STATE(9352)] = 222688, + [SMALL_STATE(9353)] = 222699, + [SMALL_STATE(9354)] = 222710, + [SMALL_STATE(9355)] = 222719, + [SMALL_STATE(9356)] = 222730, + [SMALL_STATE(9357)] = 222741, + [SMALL_STATE(9358)] = 222752, + [SMALL_STATE(9359)] = 222761, + [SMALL_STATE(9360)] = 222770, + [SMALL_STATE(9361)] = 222781, + [SMALL_STATE(9362)] = 222792, + [SMALL_STATE(9363)] = 222801, + [SMALL_STATE(9364)] = 222812, + [SMALL_STATE(9365)] = 222823, + [SMALL_STATE(9366)] = 222834, + [SMALL_STATE(9367)] = 222845, + [SMALL_STATE(9368)] = 222856, + [SMALL_STATE(9369)] = 222867, + [SMALL_STATE(9370)] = 222878, + [SMALL_STATE(9371)] = 222887, + [SMALL_STATE(9372)] = 222896, + [SMALL_STATE(9373)] = 222907, + [SMALL_STATE(9374)] = 222918, + [SMALL_STATE(9375)] = 222929, + [SMALL_STATE(9376)] = 222940, + [SMALL_STATE(9377)] = 222951, + [SMALL_STATE(9378)] = 222962, + [SMALL_STATE(9379)] = 222973, + [SMALL_STATE(9380)] = 222984, + [SMALL_STATE(9381)] = 222995, + [SMALL_STATE(9382)] = 223006, + [SMALL_STATE(9383)] = 223015, + [SMALL_STATE(9384)] = 223026, + [SMALL_STATE(9385)] = 223035, + [SMALL_STATE(9386)] = 223046, + [SMALL_STATE(9387)] = 223055, + [SMALL_STATE(9388)] = 223064, + [SMALL_STATE(9389)] = 223073, + [SMALL_STATE(9390)] = 223084, + [SMALL_STATE(9391)] = 223095, + [SMALL_STATE(9392)] = 223106, + [SMALL_STATE(9393)] = 223117, + [SMALL_STATE(9394)] = 223126, + [SMALL_STATE(9395)] = 223137, + [SMALL_STATE(9396)] = 223148, + [SMALL_STATE(9397)] = 223159, + [SMALL_STATE(9398)] = 223170, + [SMALL_STATE(9399)] = 223181, + [SMALL_STATE(9400)] = 223192, + [SMALL_STATE(9401)] = 223203, + [SMALL_STATE(9402)] = 223214, + [SMALL_STATE(9403)] = 223223, + [SMALL_STATE(9404)] = 223234, + [SMALL_STATE(9405)] = 223243, + [SMALL_STATE(9406)] = 223252, + [SMALL_STATE(9407)] = 223263, + [SMALL_STATE(9408)] = 223274, + [SMALL_STATE(9409)] = 223285, + [SMALL_STATE(9410)] = 223296, + [SMALL_STATE(9411)] = 223307, + [SMALL_STATE(9412)] = 223318, + [SMALL_STATE(9413)] = 223329, + [SMALL_STATE(9414)] = 223340, + [SMALL_STATE(9415)] = 223351, + [SMALL_STATE(9416)] = 223362, + [SMALL_STATE(9417)] = 223373, + [SMALL_STATE(9418)] = 223384, + [SMALL_STATE(9419)] = 223393, + [SMALL_STATE(9420)] = 223404, + [SMALL_STATE(9421)] = 223415, + [SMALL_STATE(9422)] = 223426, + [SMALL_STATE(9423)] = 223437, + [SMALL_STATE(9424)] = 223448, + [SMALL_STATE(9425)] = 223457, + [SMALL_STATE(9426)] = 223466, + [SMALL_STATE(9427)] = 223477, + [SMALL_STATE(9428)] = 223488, + [SMALL_STATE(9429)] = 223499, + [SMALL_STATE(9430)] = 223508, + [SMALL_STATE(9431)] = 223517, + [SMALL_STATE(9432)] = 223528, + [SMALL_STATE(9433)] = 223537, + [SMALL_STATE(9434)] = 223548, + [SMALL_STATE(9435)] = 223559, + [SMALL_STATE(9436)] = 223570, + [SMALL_STATE(9437)] = 223581, + [SMALL_STATE(9438)] = 223592, + [SMALL_STATE(9439)] = 223601, + [SMALL_STATE(9440)] = 223612, + [SMALL_STATE(9441)] = 223621, + [SMALL_STATE(9442)] = 223632, + [SMALL_STATE(9443)] = 223643, + [SMALL_STATE(9444)] = 223652, + [SMALL_STATE(9445)] = 223663, + [SMALL_STATE(9446)] = 223672, + [SMALL_STATE(9447)] = 223683, + [SMALL_STATE(9448)] = 223694, + [SMALL_STATE(9449)] = 223705, + [SMALL_STATE(9450)] = 223716, + [SMALL_STATE(9451)] = 223727, + [SMALL_STATE(9452)] = 223736, + [SMALL_STATE(9453)] = 223747, + [SMALL_STATE(9454)] = 223756, + [SMALL_STATE(9455)] = 223765, + [SMALL_STATE(9456)] = 223776, + [SMALL_STATE(9457)] = 223787, + [SMALL_STATE(9458)] = 223796, + [SMALL_STATE(9459)] = 223805, + [SMALL_STATE(9460)] = 223816, + [SMALL_STATE(9461)] = 223825, + [SMALL_STATE(9462)] = 223834, + [SMALL_STATE(9463)] = 223842, + [SMALL_STATE(9464)] = 223850, + [SMALL_STATE(9465)] = 223858, + [SMALL_STATE(9466)] = 223866, + [SMALL_STATE(9467)] = 223874, + [SMALL_STATE(9468)] = 223882, + [SMALL_STATE(9469)] = 223890, + [SMALL_STATE(9470)] = 223898, + [SMALL_STATE(9471)] = 223906, + [SMALL_STATE(9472)] = 223914, + [SMALL_STATE(9473)] = 223922, + [SMALL_STATE(9474)] = 223930, + [SMALL_STATE(9475)] = 223938, + [SMALL_STATE(9476)] = 223946, + [SMALL_STATE(9477)] = 223954, + [SMALL_STATE(9478)] = 223962, + [SMALL_STATE(9479)] = 223970, + [SMALL_STATE(9480)] = 223978, + [SMALL_STATE(9481)] = 223986, + [SMALL_STATE(9482)] = 223994, + [SMALL_STATE(9483)] = 224002, + [SMALL_STATE(9484)] = 224010, + [SMALL_STATE(9485)] = 224018, + [SMALL_STATE(9486)] = 224026, + [SMALL_STATE(9487)] = 224034, + [SMALL_STATE(9488)] = 224042, + [SMALL_STATE(9489)] = 224050, + [SMALL_STATE(9490)] = 224058, + [SMALL_STATE(9491)] = 224066, + [SMALL_STATE(9492)] = 224074, + [SMALL_STATE(9493)] = 224082, + [SMALL_STATE(9494)] = 224090, + [SMALL_STATE(9495)] = 224098, + [SMALL_STATE(9496)] = 224106, + [SMALL_STATE(9497)] = 224114, + [SMALL_STATE(9498)] = 224122, + [SMALL_STATE(9499)] = 224130, + [SMALL_STATE(9500)] = 224138, + [SMALL_STATE(9501)] = 224146, + [SMALL_STATE(9502)] = 224154, + [SMALL_STATE(9503)] = 224162, + [SMALL_STATE(9504)] = 224170, + [SMALL_STATE(9505)] = 224178, + [SMALL_STATE(9506)] = 224186, + [SMALL_STATE(9507)] = 224194, + [SMALL_STATE(9508)] = 224202, + [SMALL_STATE(9509)] = 224210, + [SMALL_STATE(9510)] = 224218, + [SMALL_STATE(9511)] = 224226, + [SMALL_STATE(9512)] = 224234, + [SMALL_STATE(9513)] = 224242, + [SMALL_STATE(9514)] = 224250, + [SMALL_STATE(9515)] = 224258, + [SMALL_STATE(9516)] = 224266, + [SMALL_STATE(9517)] = 224274, + [SMALL_STATE(9518)] = 224282, + [SMALL_STATE(9519)] = 224290, + [SMALL_STATE(9520)] = 224298, + [SMALL_STATE(9521)] = 224306, + [SMALL_STATE(9522)] = 224314, + [SMALL_STATE(9523)] = 224322, + [SMALL_STATE(9524)] = 224330, + [SMALL_STATE(9525)] = 224338, + [SMALL_STATE(9526)] = 224346, + [SMALL_STATE(9527)] = 224354, + [SMALL_STATE(9528)] = 224362, + [SMALL_STATE(9529)] = 224370, + [SMALL_STATE(9530)] = 224378, + [SMALL_STATE(9531)] = 224386, + [SMALL_STATE(9532)] = 224394, + [SMALL_STATE(9533)] = 224402, + [SMALL_STATE(9534)] = 224410, + [SMALL_STATE(9535)] = 224418, + [SMALL_STATE(9536)] = 224426, + [SMALL_STATE(9537)] = 224434, + [SMALL_STATE(9538)] = 224442, + [SMALL_STATE(9539)] = 224450, + [SMALL_STATE(9540)] = 224458, + [SMALL_STATE(9541)] = 224466, + [SMALL_STATE(9542)] = 224474, + [SMALL_STATE(9543)] = 224482, + [SMALL_STATE(9544)] = 224490, + [SMALL_STATE(9545)] = 224498, + [SMALL_STATE(9546)] = 224506, + [SMALL_STATE(9547)] = 224514, + [SMALL_STATE(9548)] = 224522, + [SMALL_STATE(9549)] = 224530, + [SMALL_STATE(9550)] = 224538, + [SMALL_STATE(9551)] = 224546, + [SMALL_STATE(9552)] = 224554, + [SMALL_STATE(9553)] = 224562, + [SMALL_STATE(9554)] = 224570, + [SMALL_STATE(9555)] = 224578, + [SMALL_STATE(9556)] = 224586, + [SMALL_STATE(9557)] = 224594, + [SMALL_STATE(9558)] = 224602, + [SMALL_STATE(9559)] = 224610, + [SMALL_STATE(9560)] = 224618, + [SMALL_STATE(9561)] = 224626, + [SMALL_STATE(9562)] = 224634, + [SMALL_STATE(9563)] = 224642, + [SMALL_STATE(9564)] = 224650, + [SMALL_STATE(9565)] = 224658, + [SMALL_STATE(9566)] = 224666, + [SMALL_STATE(9567)] = 224674, + [SMALL_STATE(9568)] = 224682, + [SMALL_STATE(9569)] = 224690, + [SMALL_STATE(9570)] = 224698, + [SMALL_STATE(9571)] = 224706, + [SMALL_STATE(9572)] = 224714, + [SMALL_STATE(9573)] = 224722, + [SMALL_STATE(9574)] = 224730, + [SMALL_STATE(9575)] = 224738, + [SMALL_STATE(9576)] = 224746, + [SMALL_STATE(9577)] = 224754, + [SMALL_STATE(9578)] = 224762, + [SMALL_STATE(9579)] = 224770, + [SMALL_STATE(9580)] = 224778, + [SMALL_STATE(9581)] = 224786, + [SMALL_STATE(9582)] = 224794, + [SMALL_STATE(9583)] = 224802, + [SMALL_STATE(9584)] = 224810, + [SMALL_STATE(9585)] = 224818, + [SMALL_STATE(9586)] = 224826, + [SMALL_STATE(9587)] = 224834, + [SMALL_STATE(9588)] = 224842, + [SMALL_STATE(9589)] = 224850, + [SMALL_STATE(9590)] = 224858, + [SMALL_STATE(9591)] = 224866, + [SMALL_STATE(9592)] = 224874, + [SMALL_STATE(9593)] = 224882, + [SMALL_STATE(9594)] = 224890, + [SMALL_STATE(9595)] = 224898, + [SMALL_STATE(9596)] = 224906, + [SMALL_STATE(9597)] = 224914, + [SMALL_STATE(9598)] = 224922, + [SMALL_STATE(9599)] = 224930, + [SMALL_STATE(9600)] = 224938, + [SMALL_STATE(9601)] = 224946, + [SMALL_STATE(9602)] = 224954, + [SMALL_STATE(9603)] = 224962, + [SMALL_STATE(9604)] = 224970, + [SMALL_STATE(9605)] = 224978, + [SMALL_STATE(9606)] = 224986, + [SMALL_STATE(9607)] = 224994, + [SMALL_STATE(9608)] = 225002, + [SMALL_STATE(9609)] = 225010, + [SMALL_STATE(9610)] = 225018, + [SMALL_STATE(9611)] = 225026, + [SMALL_STATE(9612)] = 225034, + [SMALL_STATE(9613)] = 225042, + [SMALL_STATE(9614)] = 225050, + [SMALL_STATE(9615)] = 225058, + [SMALL_STATE(9616)] = 225066, + [SMALL_STATE(9617)] = 225074, + [SMALL_STATE(9618)] = 225082, + [SMALL_STATE(9619)] = 225090, + [SMALL_STATE(9620)] = 225098, + [SMALL_STATE(9621)] = 225106, + [SMALL_STATE(9622)] = 225114, + [SMALL_STATE(9623)] = 225122, + [SMALL_STATE(9624)] = 225130, + [SMALL_STATE(9625)] = 225138, + [SMALL_STATE(9626)] = 225146, + [SMALL_STATE(9627)] = 225154, + [SMALL_STATE(9628)] = 225162, + [SMALL_STATE(9629)] = 225170, + [SMALL_STATE(9630)] = 225178, + [SMALL_STATE(9631)] = 225186, + [SMALL_STATE(9632)] = 225194, + [SMALL_STATE(9633)] = 225202, + [SMALL_STATE(9634)] = 225210, + [SMALL_STATE(9635)] = 225218, + [SMALL_STATE(9636)] = 225226, + [SMALL_STATE(9637)] = 225234, + [SMALL_STATE(9638)] = 225242, + [SMALL_STATE(9639)] = 225250, + [SMALL_STATE(9640)] = 225258, + [SMALL_STATE(9641)] = 225266, + [SMALL_STATE(9642)] = 225274, + [SMALL_STATE(9643)] = 225282, + [SMALL_STATE(9644)] = 225290, + [SMALL_STATE(9645)] = 225298, + [SMALL_STATE(9646)] = 225306, + [SMALL_STATE(9647)] = 225314, + [SMALL_STATE(9648)] = 225322, + [SMALL_STATE(9649)] = 225330, + [SMALL_STATE(9650)] = 225338, + [SMALL_STATE(9651)] = 225346, + [SMALL_STATE(9652)] = 225354, + [SMALL_STATE(9653)] = 225362, + [SMALL_STATE(9654)] = 225370, + [SMALL_STATE(9655)] = 225378, + [SMALL_STATE(9656)] = 225386, + [SMALL_STATE(9657)] = 225394, + [SMALL_STATE(9658)] = 225402, + [SMALL_STATE(9659)] = 225410, + [SMALL_STATE(9660)] = 225418, + [SMALL_STATE(9661)] = 225426, + [SMALL_STATE(9662)] = 225434, + [SMALL_STATE(9663)] = 225442, + [SMALL_STATE(9664)] = 225450, + [SMALL_STATE(9665)] = 225458, + [SMALL_STATE(9666)] = 225466, + [SMALL_STATE(9667)] = 225474, + [SMALL_STATE(9668)] = 225482, + [SMALL_STATE(9669)] = 225490, + [SMALL_STATE(9670)] = 225498, + [SMALL_STATE(9671)] = 225506, + [SMALL_STATE(9672)] = 225514, + [SMALL_STATE(9673)] = 225522, + [SMALL_STATE(9674)] = 225530, + [SMALL_STATE(9675)] = 225538, + [SMALL_STATE(9676)] = 225546, + [SMALL_STATE(9677)] = 225554, + [SMALL_STATE(9678)] = 225562, + [SMALL_STATE(9679)] = 225570, + [SMALL_STATE(9680)] = 225578, + [SMALL_STATE(9681)] = 225586, + [SMALL_STATE(9682)] = 225594, + [SMALL_STATE(9683)] = 225602, + [SMALL_STATE(9684)] = 225610, + [SMALL_STATE(9685)] = 225618, + [SMALL_STATE(9686)] = 225626, + [SMALL_STATE(9687)] = 225634, + [SMALL_STATE(9688)] = 225642, + [SMALL_STATE(9689)] = 225650, + [SMALL_STATE(9690)] = 225658, + [SMALL_STATE(9691)] = 225666, + [SMALL_STATE(9692)] = 225674, + [SMALL_STATE(9693)] = 225682, + [SMALL_STATE(9694)] = 225690, + [SMALL_STATE(9695)] = 225698, + [SMALL_STATE(9696)] = 225706, + [SMALL_STATE(9697)] = 225714, + [SMALL_STATE(9698)] = 225722, + [SMALL_STATE(9699)] = 225730, + [SMALL_STATE(9700)] = 225738, + [SMALL_STATE(9701)] = 225746, + [SMALL_STATE(9702)] = 225754, + [SMALL_STATE(9703)] = 225762, + [SMALL_STATE(9704)] = 225770, + [SMALL_STATE(9705)] = 225778, + [SMALL_STATE(9706)] = 225786, + [SMALL_STATE(9707)] = 225794, + [SMALL_STATE(9708)] = 225802, + [SMALL_STATE(9709)] = 225810, + [SMALL_STATE(9710)] = 225818, + [SMALL_STATE(9711)] = 225826, + [SMALL_STATE(9712)] = 225834, + [SMALL_STATE(9713)] = 225842, + [SMALL_STATE(9714)] = 225850, + [SMALL_STATE(9715)] = 225858, + [SMALL_STATE(9716)] = 225866, + [SMALL_STATE(9717)] = 225874, + [SMALL_STATE(9718)] = 225882, + [SMALL_STATE(9719)] = 225890, + [SMALL_STATE(9720)] = 225898, + [SMALL_STATE(9721)] = 225906, + [SMALL_STATE(9722)] = 225914, + [SMALL_STATE(9723)] = 225922, + [SMALL_STATE(9724)] = 225930, + [SMALL_STATE(9725)] = 225938, + [SMALL_STATE(9726)] = 225946, + [SMALL_STATE(9727)] = 225954, + [SMALL_STATE(9728)] = 225962, + [SMALL_STATE(9729)] = 225970, + [SMALL_STATE(9730)] = 225978, + [SMALL_STATE(9731)] = 225986, + [SMALL_STATE(9732)] = 225994, + [SMALL_STATE(9733)] = 226002, + [SMALL_STATE(9734)] = 226010, + [SMALL_STATE(9735)] = 226018, + [SMALL_STATE(9736)] = 226026, + [SMALL_STATE(9737)] = 226034, + [SMALL_STATE(9738)] = 226042, + [SMALL_STATE(9739)] = 226050, + [SMALL_STATE(9740)] = 226058, + [SMALL_STATE(9741)] = 226066, + [SMALL_STATE(9742)] = 226074, + [SMALL_STATE(9743)] = 226082, + [SMALL_STATE(9744)] = 226090, + [SMALL_STATE(9745)] = 226098, + [SMALL_STATE(9746)] = 226106, + [SMALL_STATE(9747)] = 226114, + [SMALL_STATE(9748)] = 226122, + [SMALL_STATE(9749)] = 226130, + [SMALL_STATE(9750)] = 226138, + [SMALL_STATE(9751)] = 226146, + [SMALL_STATE(9752)] = 226154, + [SMALL_STATE(9753)] = 226162, + [SMALL_STATE(9754)] = 226170, + [SMALL_STATE(9755)] = 226178, + [SMALL_STATE(9756)] = 226186, + [SMALL_STATE(9757)] = 226194, + [SMALL_STATE(9758)] = 226202, + [SMALL_STATE(9759)] = 226210, + [SMALL_STATE(9760)] = 226218, + [SMALL_STATE(9761)] = 226226, + [SMALL_STATE(9762)] = 226234, + [SMALL_STATE(9763)] = 226242, + [SMALL_STATE(9764)] = 226250, + [SMALL_STATE(9765)] = 226258, + [SMALL_STATE(9766)] = 226266, + [SMALL_STATE(9767)] = 226274, + [SMALL_STATE(9768)] = 226282, + [SMALL_STATE(9769)] = 226290, + [SMALL_STATE(9770)] = 226298, + [SMALL_STATE(9771)] = 226306, + [SMALL_STATE(9772)] = 226314, + [SMALL_STATE(9773)] = 226322, + [SMALL_STATE(9774)] = 226330, + [SMALL_STATE(9775)] = 226338, + [SMALL_STATE(9776)] = 226346, + [SMALL_STATE(9777)] = 226354, + [SMALL_STATE(9778)] = 226362, + [SMALL_STATE(9779)] = 226370, + [SMALL_STATE(9780)] = 226378, + [SMALL_STATE(9781)] = 226386, + [SMALL_STATE(9782)] = 226394, + [SMALL_STATE(9783)] = 226402, + [SMALL_STATE(9784)] = 226410, + [SMALL_STATE(9785)] = 226418, + [SMALL_STATE(9786)] = 226426, + [SMALL_STATE(9787)] = 226434, + [SMALL_STATE(9788)] = 226442, + [SMALL_STATE(9789)] = 226450, + [SMALL_STATE(9790)] = 226458, + [SMALL_STATE(9791)] = 226466, + [SMALL_STATE(9792)] = 226474, + [SMALL_STATE(9793)] = 226482, + [SMALL_STATE(9794)] = 226490, + [SMALL_STATE(9795)] = 226498, + [SMALL_STATE(9796)] = 226506, + [SMALL_STATE(9797)] = 226514, + [SMALL_STATE(9798)] = 226522, + [SMALL_STATE(9799)] = 226530, + [SMALL_STATE(9800)] = 226538, + [SMALL_STATE(9801)] = 226546, + [SMALL_STATE(9802)] = 226554, + [SMALL_STATE(9803)] = 226562, + [SMALL_STATE(9804)] = 226570, + [SMALL_STATE(9805)] = 226578, + [SMALL_STATE(9806)] = 226586, + [SMALL_STATE(9807)] = 226594, + [SMALL_STATE(9808)] = 226602, + [SMALL_STATE(9809)] = 226610, + [SMALL_STATE(9810)] = 226618, + [SMALL_STATE(9811)] = 226626, + [SMALL_STATE(9812)] = 226634, + [SMALL_STATE(9813)] = 226642, + [SMALL_STATE(9814)] = 226650, + [SMALL_STATE(9815)] = 226658, + [SMALL_STATE(9816)] = 226666, + [SMALL_STATE(9817)] = 226674, + [SMALL_STATE(9818)] = 226682, + [SMALL_STATE(9819)] = 226690, + [SMALL_STATE(9820)] = 226698, + [SMALL_STATE(9821)] = 226706, + [SMALL_STATE(9822)] = 226714, + [SMALL_STATE(9823)] = 226722, + [SMALL_STATE(9824)] = 226730, + [SMALL_STATE(9825)] = 226738, + [SMALL_STATE(9826)] = 226746, + [SMALL_STATE(9827)] = 226754, + [SMALL_STATE(9828)] = 226762, + [SMALL_STATE(9829)] = 226770, + [SMALL_STATE(9830)] = 226778, + [SMALL_STATE(9831)] = 226786, + [SMALL_STATE(9832)] = 226794, + [SMALL_STATE(9833)] = 226802, + [SMALL_STATE(9834)] = 226810, + [SMALL_STATE(9835)] = 226818, + [SMALL_STATE(9836)] = 226826, + [SMALL_STATE(9837)] = 226834, + [SMALL_STATE(9838)] = 226842, + [SMALL_STATE(9839)] = 226850, + [SMALL_STATE(9840)] = 226858, + [SMALL_STATE(9841)] = 226866, + [SMALL_STATE(9842)] = 226874, + [SMALL_STATE(9843)] = 226882, + [SMALL_STATE(9844)] = 226890, + [SMALL_STATE(9845)] = 226898, + [SMALL_STATE(9846)] = 226906, + [SMALL_STATE(9847)] = 226914, + [SMALL_STATE(9848)] = 226922, + [SMALL_STATE(9849)] = 226930, + [SMALL_STATE(9850)] = 226938, + [SMALL_STATE(9851)] = 226946, + [SMALL_STATE(9852)] = 226954, + [SMALL_STATE(9853)] = 226962, + [SMALL_STATE(9854)] = 226970, + [SMALL_STATE(9855)] = 226978, + [SMALL_STATE(9856)] = 226986, + [SMALL_STATE(9857)] = 226994, + [SMALL_STATE(9858)] = 227002, + [SMALL_STATE(9859)] = 227010, + [SMALL_STATE(9860)] = 227018, + [SMALL_STATE(9861)] = 227026, + [SMALL_STATE(9862)] = 227034, + [SMALL_STATE(9863)] = 227042, + [SMALL_STATE(9864)] = 227050, + [SMALL_STATE(9865)] = 227058, + [SMALL_STATE(9866)] = 227066, + [SMALL_STATE(9867)] = 227074, + [SMALL_STATE(9868)] = 227082, + [SMALL_STATE(9869)] = 227090, + [SMALL_STATE(9870)] = 227098, + [SMALL_STATE(9871)] = 227106, + [SMALL_STATE(9872)] = 227114, + [SMALL_STATE(9873)] = 227122, + [SMALL_STATE(9874)] = 227130, + [SMALL_STATE(9875)] = 227138, + [SMALL_STATE(9876)] = 227146, + [SMALL_STATE(9877)] = 227154, + [SMALL_STATE(9878)] = 227162, + [SMALL_STATE(9879)] = 227170, + [SMALL_STATE(9880)] = 227178, + [SMALL_STATE(9881)] = 227186, + [SMALL_STATE(9882)] = 227194, + [SMALL_STATE(9883)] = 227202, + [SMALL_STATE(9884)] = 227210, + [SMALL_STATE(9885)] = 227218, + [SMALL_STATE(9886)] = 227226, + [SMALL_STATE(9887)] = 227234, + [SMALL_STATE(9888)] = 227242, + [SMALL_STATE(9889)] = 227250, + [SMALL_STATE(9890)] = 227258, + [SMALL_STATE(9891)] = 227266, + [SMALL_STATE(9892)] = 227274, + [SMALL_STATE(9893)] = 227282, + [SMALL_STATE(9894)] = 227290, + [SMALL_STATE(9895)] = 227298, + [SMALL_STATE(9896)] = 227306, + [SMALL_STATE(9897)] = 227314, + [SMALL_STATE(9898)] = 227322, + [SMALL_STATE(9899)] = 227330, + [SMALL_STATE(9900)] = 227338, + [SMALL_STATE(9901)] = 227346, + [SMALL_STATE(9902)] = 227354, + [SMALL_STATE(9903)] = 227362, + [SMALL_STATE(9904)] = 227370, + [SMALL_STATE(9905)] = 227378, + [SMALL_STATE(9906)] = 227386, + [SMALL_STATE(9907)] = 227394, + [SMALL_STATE(9908)] = 227402, + [SMALL_STATE(9909)] = 227410, + [SMALL_STATE(9910)] = 227418, + [SMALL_STATE(9911)] = 227426, + [SMALL_STATE(9912)] = 227434, + [SMALL_STATE(9913)] = 227442, + [SMALL_STATE(9914)] = 227450, + [SMALL_STATE(9915)] = 227458, + [SMALL_STATE(9916)] = 227466, + [SMALL_STATE(9917)] = 227474, + [SMALL_STATE(9918)] = 227482, + [SMALL_STATE(9919)] = 227490, + [SMALL_STATE(9920)] = 227498, + [SMALL_STATE(9921)] = 227506, + [SMALL_STATE(9922)] = 227514, + [SMALL_STATE(9923)] = 227522, + [SMALL_STATE(9924)] = 227530, + [SMALL_STATE(9925)] = 227538, + [SMALL_STATE(9926)] = 227546, + [SMALL_STATE(9927)] = 227554, + [SMALL_STATE(9928)] = 227562, + [SMALL_STATE(9929)] = 227570, + [SMALL_STATE(9930)] = 227578, + [SMALL_STATE(9931)] = 227586, + [SMALL_STATE(9932)] = 227594, + [SMALL_STATE(9933)] = 227602, + [SMALL_STATE(9934)] = 227610, + [SMALL_STATE(9935)] = 227618, + [SMALL_STATE(9936)] = 227626, + [SMALL_STATE(9937)] = 227634, + [SMALL_STATE(9938)] = 227642, + [SMALL_STATE(9939)] = 227650, + [SMALL_STATE(9940)] = 227658, + [SMALL_STATE(9941)] = 227666, + [SMALL_STATE(9942)] = 227674, + [SMALL_STATE(9943)] = 227682, + [SMALL_STATE(9944)] = 227690, + [SMALL_STATE(9945)] = 227698, + [SMALL_STATE(9946)] = 227706, + [SMALL_STATE(9947)] = 227714, + [SMALL_STATE(9948)] = 227722, + [SMALL_STATE(9949)] = 227730, + [SMALL_STATE(9950)] = 227738, + [SMALL_STATE(9951)] = 227746, + [SMALL_STATE(9952)] = 227754, + [SMALL_STATE(9953)] = 227762, + [SMALL_STATE(9954)] = 227770, + [SMALL_STATE(9955)] = 227778, + [SMALL_STATE(9956)] = 227786, + [SMALL_STATE(9957)] = 227794, + [SMALL_STATE(9958)] = 227802, + [SMALL_STATE(9959)] = 227810, + [SMALL_STATE(9960)] = 227818, + [SMALL_STATE(9961)] = 227826, + [SMALL_STATE(9962)] = 227834, + [SMALL_STATE(9963)] = 227842, + [SMALL_STATE(9964)] = 227850, + [SMALL_STATE(9965)] = 227858, + [SMALL_STATE(9966)] = 227866, + [SMALL_STATE(9967)] = 227874, + [SMALL_STATE(9968)] = 227882, + [SMALL_STATE(9969)] = 227890, + [SMALL_STATE(9970)] = 227898, + [SMALL_STATE(9971)] = 227906, + [SMALL_STATE(9972)] = 227914, + [SMALL_STATE(9973)] = 227922, + [SMALL_STATE(9974)] = 227930, + [SMALL_STATE(9975)] = 227938, + [SMALL_STATE(9976)] = 227946, + [SMALL_STATE(9977)] = 227954, + [SMALL_STATE(9978)] = 227962, + [SMALL_STATE(9979)] = 227970, + [SMALL_STATE(9980)] = 227978, + [SMALL_STATE(9981)] = 227986, + [SMALL_STATE(9982)] = 227994, + [SMALL_STATE(9983)] = 228002, + [SMALL_STATE(9984)] = 228010, + [SMALL_STATE(9985)] = 228018, + [SMALL_STATE(9986)] = 228026, + [SMALL_STATE(9987)] = 228034, + [SMALL_STATE(9988)] = 228042, + [SMALL_STATE(9989)] = 228050, + [SMALL_STATE(9990)] = 228058, + [SMALL_STATE(9991)] = 228066, + [SMALL_STATE(9992)] = 228074, + [SMALL_STATE(9993)] = 228082, + [SMALL_STATE(9994)] = 228090, + [SMALL_STATE(9995)] = 228098, + [SMALL_STATE(9996)] = 228106, + [SMALL_STATE(9997)] = 228114, + [SMALL_STATE(9998)] = 228122, + [SMALL_STATE(9999)] = 228130, + [SMALL_STATE(10000)] = 228138, + [SMALL_STATE(10001)] = 228146, + [SMALL_STATE(10002)] = 228154, + [SMALL_STATE(10003)] = 228162, + [SMALL_STATE(10004)] = 228170, + [SMALL_STATE(10005)] = 228178, + [SMALL_STATE(10006)] = 228186, + [SMALL_STATE(10007)] = 228194, + [SMALL_STATE(10008)] = 228202, + [SMALL_STATE(10009)] = 228210, + [SMALL_STATE(10010)] = 228218, + [SMALL_STATE(10011)] = 228226, + [SMALL_STATE(10012)] = 228234, + [SMALL_STATE(10013)] = 228242, + [SMALL_STATE(10014)] = 228250, + [SMALL_STATE(10015)] = 228258, + [SMALL_STATE(10016)] = 228266, + [SMALL_STATE(10017)] = 228274, + [SMALL_STATE(10018)] = 228282, + [SMALL_STATE(10019)] = 228290, + [SMALL_STATE(10020)] = 228298, + [SMALL_STATE(10021)] = 228306, + [SMALL_STATE(10022)] = 228314, + [SMALL_STATE(10023)] = 228322, + [SMALL_STATE(10024)] = 228330, + [SMALL_STATE(10025)] = 228338, + [SMALL_STATE(10026)] = 228346, + [SMALL_STATE(10027)] = 228354, + [SMALL_STATE(10028)] = 228362, + [SMALL_STATE(10029)] = 228370, + [SMALL_STATE(10030)] = 228378, + [SMALL_STATE(10031)] = 228386, + [SMALL_STATE(10032)] = 228394, + [SMALL_STATE(10033)] = 228402, + [SMALL_STATE(10034)] = 228410, + [SMALL_STATE(10035)] = 228418, + [SMALL_STATE(10036)] = 228426, + [SMALL_STATE(10037)] = 228434, + [SMALL_STATE(10038)] = 228442, + [SMALL_STATE(10039)] = 228450, + [SMALL_STATE(10040)] = 228458, + [SMALL_STATE(10041)] = 228466, + [SMALL_STATE(10042)] = 228474, + [SMALL_STATE(10043)] = 228482, + [SMALL_STATE(10044)] = 228490, + [SMALL_STATE(10045)] = 228498, + [SMALL_STATE(10046)] = 228506, + [SMALL_STATE(10047)] = 228514, + [SMALL_STATE(10048)] = 228522, + [SMALL_STATE(10049)] = 228530, + [SMALL_STATE(10050)] = 228538, + [SMALL_STATE(10051)] = 228546, + [SMALL_STATE(10052)] = 228554, + [SMALL_STATE(10053)] = 228562, + [SMALL_STATE(10054)] = 228570, + [SMALL_STATE(10055)] = 228578, + [SMALL_STATE(10056)] = 228586, + [SMALL_STATE(10057)] = 228594, + [SMALL_STATE(10058)] = 228602, + [SMALL_STATE(10059)] = 228610, + [SMALL_STATE(10060)] = 228618, + [SMALL_STATE(10061)] = 228626, + [SMALL_STATE(10062)] = 228634, + [SMALL_STATE(10063)] = 228642, + [SMALL_STATE(10064)] = 228650, + [SMALL_STATE(10065)] = 228658, + [SMALL_STATE(10066)] = 228666, + [SMALL_STATE(10067)] = 228674, + [SMALL_STATE(10068)] = 228682, + [SMALL_STATE(10069)] = 228690, + [SMALL_STATE(10070)] = 228698, + [SMALL_STATE(10071)] = 228706, + [SMALL_STATE(10072)] = 228714, + [SMALL_STATE(10073)] = 228722, + [SMALL_STATE(10074)] = 228730, + [SMALL_STATE(10075)] = 228738, + [SMALL_STATE(10076)] = 228746, + [SMALL_STATE(10077)] = 228754, + [SMALL_STATE(10078)] = 228762, + [SMALL_STATE(10079)] = 228770, + [SMALL_STATE(10080)] = 228778, + [SMALL_STATE(10081)] = 228786, + [SMALL_STATE(10082)] = 228794, + [SMALL_STATE(10083)] = 228802, + [SMALL_STATE(10084)] = 228810, + [SMALL_STATE(10085)] = 228818, + [SMALL_STATE(10086)] = 228826, + [SMALL_STATE(10087)] = 228834, + [SMALL_STATE(10088)] = 228842, + [SMALL_STATE(10089)] = 228850, + [SMALL_STATE(10090)] = 228858, + [SMALL_STATE(10091)] = 228866, + [SMALL_STATE(10092)] = 228874, + [SMALL_STATE(10093)] = 228882, + [SMALL_STATE(10094)] = 228890, + [SMALL_STATE(10095)] = 228898, + [SMALL_STATE(10096)] = 228906, + [SMALL_STATE(10097)] = 228914, + [SMALL_STATE(10098)] = 228922, + [SMALL_STATE(10099)] = 228930, + [SMALL_STATE(10100)] = 228938, + [SMALL_STATE(10101)] = 228946, + [SMALL_STATE(10102)] = 228954, + [SMALL_STATE(10103)] = 228962, + [SMALL_STATE(10104)] = 228970, + [SMALL_STATE(10105)] = 228978, + [SMALL_STATE(10106)] = 228986, + [SMALL_STATE(10107)] = 228994, + [SMALL_STATE(10108)] = 229002, + [SMALL_STATE(10109)] = 229010, + [SMALL_STATE(10110)] = 229018, + [SMALL_STATE(10111)] = 229026, + [SMALL_STATE(10112)] = 229034, + [SMALL_STATE(10113)] = 229042, + [SMALL_STATE(10114)] = 229050, + [SMALL_STATE(10115)] = 229058, + [SMALL_STATE(10116)] = 229066, + [SMALL_STATE(10117)] = 229074, + [SMALL_STATE(10118)] = 229082, + [SMALL_STATE(10119)] = 229090, + [SMALL_STATE(10120)] = 229098, + [SMALL_STATE(10121)] = 229106, + [SMALL_STATE(10122)] = 229114, + [SMALL_STATE(10123)] = 229122, + [SMALL_STATE(10124)] = 229130, + [SMALL_STATE(10125)] = 229138, + [SMALL_STATE(10126)] = 229146, + [SMALL_STATE(10127)] = 229154, + [SMALL_STATE(10128)] = 229162, + [SMALL_STATE(10129)] = 229170, + [SMALL_STATE(10130)] = 229178, + [SMALL_STATE(10131)] = 229186, + [SMALL_STATE(10132)] = 229194, + [SMALL_STATE(10133)] = 229202, + [SMALL_STATE(10134)] = 229210, + [SMALL_STATE(10135)] = 229218, + [SMALL_STATE(10136)] = 229226, + [SMALL_STATE(10137)] = 229234, + [SMALL_STATE(10138)] = 229242, + [SMALL_STATE(10139)] = 229250, + [SMALL_STATE(10140)] = 229258, + [SMALL_STATE(10141)] = 229266, + [SMALL_STATE(10142)] = 229274, + [SMALL_STATE(10143)] = 229282, + [SMALL_STATE(10144)] = 229290, + [SMALL_STATE(10145)] = 229298, + [SMALL_STATE(10146)] = 229306, + [SMALL_STATE(10147)] = 229314, + [SMALL_STATE(10148)] = 229322, + [SMALL_STATE(10149)] = 229330, + [SMALL_STATE(10150)] = 229338, + [SMALL_STATE(10151)] = 229346, + [SMALL_STATE(10152)] = 229354, + [SMALL_STATE(10153)] = 229362, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -694208,6324 +675425,6266 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10441), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8259), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8250), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8273), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8274), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10373), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7885), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10366), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10365), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10364), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9338), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9410), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9333), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9332), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9331), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9330), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9329), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8766), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8716), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8336), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8333), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9975), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7924), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10207), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10354), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10334), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9272), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9627), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9252), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9119), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9214), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9213), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9208), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8736), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), - [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8322), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8272), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9973), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7880), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10217), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10399), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10439), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9251), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9575), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9200), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9156), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9132), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9170), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9117), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8905), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8709), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10153), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7875), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7876), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8047), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8050), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10090), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10082), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10081), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10080), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8797), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9108), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8798), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8799), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8800), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8802), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8803), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8414), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8074), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9641), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7655), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9949), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10112), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10088), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8876), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9337), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9037), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9039), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), + [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8195), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8037), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9647), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7839), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9939), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10059), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10038), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8927), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9426), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8811), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8814), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8815), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8816), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5), [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8269), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8475), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9947), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9752), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10050), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10268), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10306), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8110), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8227), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9502), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7779), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9478), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9492), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9960), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10009), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8324), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8404), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9959), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7947), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10220), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10410), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10388), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9285), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9605), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9105), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9104), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9103), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9102), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9099), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8849), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8707), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8314), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8354), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9946), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7868), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10222), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10427), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10396), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9158), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9526), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9220), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9221), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9222), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9223), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8808), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8315), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8319), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9968), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7871), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10219), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10406), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10384), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9189), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9545), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9147), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9140), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9138), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8857), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8676), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8465), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8481), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10044), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8011), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10214), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10387), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10051), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8424), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6589), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9986), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9860), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10297), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8305), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10416), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7882), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10210), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10370), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10347), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8299), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10418), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10213), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10383), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10359), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8517), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10066), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8047), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10203), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10333), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8280), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10422), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7866), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10216), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10395), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10371), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8477), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10192), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8077), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10206), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10350), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10329), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8430), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6455), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10241), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7959), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10212), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10379), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8401), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10072), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8019), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10196), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10311), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8441), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10250), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7960), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10215), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10391), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8452), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6464), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10263), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7961), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10221), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10415), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8357), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10228), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7896), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10208), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10358), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8417), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10254), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7957), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10218), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10402), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8519), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6536), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10174), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7903), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10205), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10346), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8313), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10098), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7956), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10199), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10321), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8287), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10420), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7872), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10209), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10363), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8386), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10236), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7979), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10211), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10375), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8348), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9988), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7952), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10202), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10328), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8545), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10155), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6558), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8020), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10204), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10338), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8378), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8343), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10023), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6297), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7933), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9979), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10305), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8116), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9706), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9946), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10100), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9497), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8043), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9629), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9954), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10140), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10109), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8866), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9289), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8909), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8888), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8896), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8898), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8187), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8256), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9632), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7618), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9952), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10124), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10101), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8892), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9366), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8911), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8912), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8913), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8914), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8442), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8151), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9637), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6299), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9951), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10120), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10097), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8873), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9329), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8865), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8862), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8861), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8583), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8048), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9609), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7734), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9532), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10001), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8239), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9739), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7791), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9935), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10036), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8212), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9874), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7772), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9938), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10053), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10032), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8122), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10128), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7728), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9942), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10077), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10050), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8106), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10130), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7738), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9945), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10096), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10070), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8085), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10134), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9948), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10108), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10083), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8072), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9914), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7626), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9944), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10092), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8207), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9688), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7622), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9928), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10015), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8066), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9973), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9950), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10115), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8098), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9958), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7636), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9953), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10136), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9893), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7646), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6412), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9940), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10069), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8082), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9923), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7631), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9947), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10104), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9906), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7610), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9943), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10086), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9781), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7788), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9936), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10043), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8262), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9668), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9934), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10025), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8137), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9839), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7614), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9937), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10049), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8060), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9727), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7616), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9931), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10024), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10132), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9941), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10073), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8234), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8169), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9666), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7652), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9708), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10008), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9533), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10301), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9175), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9436), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10314), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10307), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10185), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), - [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4727), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(6817), - [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1499), - [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8273), - [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8274), - [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(6054), - [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(10373), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(71), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1511), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(6055), - [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7885), - [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5465), - [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5464), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5219), - [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5221), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1513), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1265), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(10366), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(10365), - [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(256), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4670), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(10364), - [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9338), - [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9410), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1538), - [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(299), - [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5222), - [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8225), - [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1582), - [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1582), - [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5947), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5950), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2828), - [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5961), - [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5960), - [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5781), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5958), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5957), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2829), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9333), - [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9332), - [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9331), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9330), - [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9329), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4670), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5092), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5092), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5228), - [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8766), - [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4727), - [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8716), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 1), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 1), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8070), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9095), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10279), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9388), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10003), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4594), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(6663), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1475), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8047), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8050), + [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(10090), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(76), + [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1530), + [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5894), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7718), + [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(6434), + [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5307), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5305), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5142), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5159), + [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1552), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1242), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(10082), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(10081), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(234), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4549), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(10080), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8797), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9108), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1715), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(302), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5160), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7886), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1736), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1736), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5793), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5771), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2759), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5783), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5779), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5620), + [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5774), + [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5773), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2765), + [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8798), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8799), + [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8800), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8802), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8803), + [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4549), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4906), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4906), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5170), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8471), + [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4594), + [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8414), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10017), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 1), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 1), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9048), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7638), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9962), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8901), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9770), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10010), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9134), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 2), [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 3), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8076), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9085), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8043), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9247), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7879), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7951), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7912), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7934), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10376), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8916), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7649), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8907), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7743), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7689), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10060), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7867), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10392), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10105), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7954), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10380), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10093), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8040), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10322), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7637), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9978), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10270), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7606), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10016), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10351), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10054), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8026), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9532), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7851), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9312), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7857), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9124), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7865), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9176), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7864), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7845), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7923), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10269), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7815), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9423), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8808), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8848), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7789), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8817), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7784), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7786), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7809), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7694), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9961), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(839), - [2075] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(6801), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1835), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3364), + [2075] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(6627), + [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2096), [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [2084] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8002), - [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(65), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1623), - [2094] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(9247), - [2098] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(829), - [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1122), - [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1121), - [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2070), - [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2034), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(78), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2095), + [2090] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8916), + [2094] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7774), + [2098] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(3332), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3892), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3893), + [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1778), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1774), [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), - [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1112), - [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10351), - [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9158), - [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9526), - [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2069), - [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(270), - [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1118), - [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8135), - [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2034), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9105), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9220), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9221), - [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9222), - [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9223), - [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1112), - [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(927), - [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(927), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1114), - [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8808), - [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(839), - [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8730), - [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4659), - [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1933), - [2185] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7864), - [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(80), - [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1935), - [2195] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(9312), - [2199] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(4661), - [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4871), - [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4872), - [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1805), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1799), - [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4919), - [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10306), - [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9272), - [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9627), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1801), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(298), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4882), - [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8159), - [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1799), - [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9252), - [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9119), - [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9214), - [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9213), - [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9208), - [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4919), - [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4700), - [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4700), - [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4910), - [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8736), - [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4659), - [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8705), - [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3383), - [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1576), - [2284] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7951), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(62), - [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1998), - [2294] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(9085), - [2298] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(3366), - [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4009), - [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4008), - [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2026), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1979), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4004), - [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10347), - [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9285), - [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9605), - [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2019), - [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(263), - [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4007), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8192), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1979), - [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9104), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9103), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9102), - [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9099), - [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4004), - [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3716), - [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3716), - [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4005), - [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8849), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3383), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8707), - [2374] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8076), - [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1936), - [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1968), - [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10388), - [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1937), - [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(260), - [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1968), - [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2870), - [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1961), - [2402] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8025), - [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(58), - [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1959), - [2412] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(9124), - [2416] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2868), - [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3249), - [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3248), - [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2209), - [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2221), - [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3235), - [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10340), - [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9189), - [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9545), - [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1828), - [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(375), - [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3239), - [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8128), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2221), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9333), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9147), - [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9140), - [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9139), - [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9138), - [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3235), - [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2997), - [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2997), - [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3344), - [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8857), - [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2870), - [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8676), - [2495] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7857), - [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2169), - [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2216), - [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10384), - [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2212), - [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(296), - [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2216), - [2517] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8014), - [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2185), - [2524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2218), - [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10299), - [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2202), - [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(358), - [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2218), - [2539] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7981), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1530), - [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2020), - [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10269), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1508), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(313), - [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2020), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3036), - [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2057), - [2567] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7879), - [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(85), - [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2051), - [2577] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(9095), - [2581] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(3032), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3625), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3626), - [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1731), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1724), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3629), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10359), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9251), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9575), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1729), - [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(262), - [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3627), - [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8181), - [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1724), - [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9200), - [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9156), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9132), - [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9170), - [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9117), - [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3629), - [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3306), - [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3306), - [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3645), - [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8905), - [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3036), - [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8709), - [2660] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7934), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1535), - [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1540), - [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10376), - [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1537), - [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(265), - [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1540), - [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4727), - [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1499), - [2688] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7902), - [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(71), - [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1511), - [2698] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(9176), - [2702] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(4726), - [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5219), - [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5221), - [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1776), - [2715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1980), - [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5229), - [2721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10036), - [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9338), - [2727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9410), - [2730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1810), - [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(356), - [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5222), - [2739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8225), - [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1980), - [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9332), - [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9331), - [2751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9330), - [2754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9329), - [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5229), - [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5092), - [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5092), - [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5228), - [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8766), - [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4727), - [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8716), - [2778] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7845), - [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1977), - [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2110), - [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10364), - [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1538), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(299), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2110), - [2800] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8040), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1822), - [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1836), - [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10322), - [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1824), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3948), + [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10050), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8892), + [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9366), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1776), + [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(263), + [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3899), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8023), + [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1774), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8909), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8911), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8912), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8913), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8914), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3948), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3668), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3668), + [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3903), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8597), + [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3364), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8442), + [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2885), + [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2079), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(72), + [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2077), + [2191] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(9048), + [2195] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7638), + [2199] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2955), + [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3420), + [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3421), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2133), + [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2136), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3485), + [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10088), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8876), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9337), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2134), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(225), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3422), + [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7994), + [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2136), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9037), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9038), + [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9039), + [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9043), + [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9044), + [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3485), + [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3223), + [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3223), + [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3456), + [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8584), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2885), + [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8446), + [2278] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7675), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1591), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1594), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10070), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1592), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(262), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1594), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4547), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2114), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(59), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2115), + [2312] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8808), + [2316] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7783), + [2320] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(4534), + [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4752), + [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4754), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1808), + [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1803), + [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4772), + [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10002), + [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8927), + [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9426), + [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1805), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(358), + [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4832), + [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7895), + [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1803), + [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8811), + [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8814), + [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8819), + [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8815), + [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8816), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4772), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4613), + [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4613), + [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4758), + [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8611), + [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4547), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8410), + [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(821), + [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2058), + [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(73), + [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2057), + [2411] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8907), + [2415] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7743), + [2419] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(823), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1117), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1116), + [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1656), + [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1653), + [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1110), + [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10083), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8866), + [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9289), + [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1655), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(264), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1115), + [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7936), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1653), + [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8888), + [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8889), + [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8896), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8898), + [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1110), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(906), + [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(906), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1114), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8574), + [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(821), + [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8434), + [2495] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7658), + [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1562), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1544), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10054), + [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1561), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(270), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1544), + [2517] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7786), + [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1508), + [2524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1459), + [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10009), + [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1513), + [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(298), + [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1459), + [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4594), + [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1475), + [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(76), + [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1530), + [2551] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8817), + [2555] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7642), + [2559] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(4612), + [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5142), + [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5159), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1587), + [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1844), + [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5168), + [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10080), + [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8797), + [2584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9108), + [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1715), + [2590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(302), + [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5160), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7886), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1844), + [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8798), + [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8799), + [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8800), + [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8802), + [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8803), + [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5168), + [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4906), + [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4906), + [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5170), + [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8471), + [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4594), + [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8414), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2772), + [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2069), + [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(82), + [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2067), + [2650] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8848), + [2654] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7632), + [2658] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2791), + [2662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3099), + [2665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3098), + [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2154), + [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2166), + [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3085), + [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10044), + [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8873), + [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9329), + [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1692), + [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(371), + [2692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3094), + [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7892), + [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2166), + [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8865), + [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8864), + [2707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8862), + [2710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8861), + [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3085), + [2716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2914), + [2719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2914), + [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3091), + [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8583), + [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2772), + [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8419), + [2734] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7784), + [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2163), + [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1519), + [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9497), + [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1581), + [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(297), + [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1519), + [2756] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7789), + [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2161), + [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2113), + [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10097), + [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2152), + [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(296), + [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2113), + [2778] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7809), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1693), + [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1689), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10032), + [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2155), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(303), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1689), + [2800] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7637), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1779), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1793), + [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9978), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1781), [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(268), - [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1836), - [2822] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7867), - [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1637), - [2829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1634), - [2832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10392), - [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1636), - [2838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(266), - [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1634), - [2844] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8048), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1513), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1582), - [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10430), - [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2108), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(372), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1582), - [2866] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8070), - [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2096), - [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2078), - [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10439), - [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2097), - [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(252), - [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2078), - [2888] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7954), - [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1768), - [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1759), - [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10380), - [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1763), - [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(267), - [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1759), - [2910] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7923), - [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1827), - [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1850), - [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10329), - [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2210), - [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(310), - [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1850), - [2932] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8079), - [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1560), - [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1520), - [2942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10270), - [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1559), - [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(269), - [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1520), - [2954] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7912), - [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2217), - [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2201), - [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10371), - [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2204), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(264), - [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2201), - [2976] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7865), - [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2145), - [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1725), - [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10051), - [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1978), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(297), - [2995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1725), - [2998] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7883), - [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1685), - [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1679), - [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10367), - [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1683), - [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(357), - [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1679), - [3020] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7851), - [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1820), - [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1831), - [3030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10334), - [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1823), - [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(283), - [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1831), - [3042] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8043), - [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2027), - [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2024), - [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10396), - [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2025), - [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(261), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2024), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7902), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10036), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1793), + [2822] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7666), + [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1542), + [2829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1545), + [2832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10093), + [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1543), + [2838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(267), + [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1545), + [2844] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7723), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1634), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1637), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10074), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1635), + [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(356), + [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1637), + [2866] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7794), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1983), + [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1985), + [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10038), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1984), + [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(283), + [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1985), + [2888] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7683), + [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1731), + [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1765), + [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10105), + [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1743), + [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(266), + [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1765), + [2910] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7696), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1702), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1580), + [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9704), + [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1496), + [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(357), + [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1580), + [2932] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7649), + [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2116), + [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2118), + [2942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10101), + [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2117), + [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(260), + [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2118), + [2954] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7708), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2054), + [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2023), + [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10109), + [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2053), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(261), + [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2023), + [2976] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7694), + [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1857), + [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1905), + [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9961), + [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1859), + [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(313), + [2995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1905), + [2998] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7606), + [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1567), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1533), + [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10016), + [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1566), + [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(269), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1533), + [3020] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7689), + [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1733), + [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1727), + [3030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10060), + [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1730), + [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(265), + [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1727), + [3042] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7776), + [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1552), + [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1736), + [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10145), + [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1846), + [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(362), + [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1736), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10074), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7883), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10367), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9704), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8014), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10299), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7783), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10002), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_expression, 3), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_expression, 3), - [3092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elvis_expression, 3), SHIFT(4297), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_expression, 3), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_expression, 3), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 2), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 2), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3), - [3113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_infix_expression, 3), SHIFT(4297), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), - [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), SHIFT(4297), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), - [3127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_additive_expression, 3), SHIFT(4297), - [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_expression, 3), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_expression, 3), - [3134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_check_expression, 3), SHIFT(4297), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunction_expression, 3), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunction_expression, 3), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunction_expression, 3), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunction_expression, 3), - [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [3153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_range_expression, 3), SHIFT(4297), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8048), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10430), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_delegate, 2), - [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_delegate, 2), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8025), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10340), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_delegation, 3), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_delegation, 3), - [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 2), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 2), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_expression, 2), - [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2), - [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 7), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 7), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9748), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6809), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7508), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7305), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 5), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 5), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), - [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, .production_id = 2), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7331), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, .production_id = 2), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9707), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7478), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 2), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 2), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), - [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 7), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7291), - [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 7), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 5), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 5), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7309), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7361), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7236), - [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_range_expression, 3), SHIFT(4159), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 2), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 2), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10145), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunction_expression, 3), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunction_expression, 3), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_delegation, 3), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_delegation, 3), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_expression, 3), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_expression, 3), + [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elvis_expression, 3), SHIFT(4159), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunction_expression, 3), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunction_expression, 3), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_expression, 3), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_expression, 3), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7632), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10044), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 2), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 2), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_expression, 3), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_expression, 3), + [3164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_check_expression, 3), SHIFT(4159), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_expression, 2), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_delegate, 2), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_delegate, 2), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3), + [3179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_infix_expression, 3), SHIFT(4159), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), + [3190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), SHIFT(4159), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), + [3197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_additive_expression, 3), SHIFT(4159), + [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, .production_id = 2), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, .production_id = 2), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9210), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 5), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 5), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 7), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 7), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9173), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 2), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 2), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 5), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 5), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 7), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 7), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7078), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6967), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7049), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3), [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7176), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7134), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7095), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6961), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7870), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9549), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7910), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9536), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10017), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4659), - [3761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6801), - [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1933), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(7981), - [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(80), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), - [3775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1935), - [3778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9312), - [3781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4661), - [3784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4871), - [3787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4872), - [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1530), - [3793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2020), - [3796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2172), - [3799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4919), - [3802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(10269), - [3805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(10017), - [3808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9272), - [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9627), - [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1508), - [3817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(313), - [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4882), - [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8159), - [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2172), - [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6178), - [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6178), - [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2020), - [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9252), - [3841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9119), - [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9214), - [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9213), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9208), - [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4919), - [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4700), - [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4700), - [3862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4910), - [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8736), - [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4659), - [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8705), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_identifier, 1), - [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_platform_modifier, 1), REDUCE(sym_simple_identifier, 1), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_identifier, 1), - [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_platform_modifier, 1), - [4019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_platform_modifier, 1), REDUCE(sym_simple_identifier, 1), - [4022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class_modifier, 1), REDUCE(sym_simple_identifier, 1), - [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_modifier, 1), - [4027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class_modifier, 1), REDUCE(sym_simple_identifier, 1), - [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 1), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 1), - [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [4038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(1950), - [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_unary_expression, 1), - [4043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(7875), - [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(7875), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 1), - [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(7443), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [4070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__postfix_unary_expression, 1), - [4073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__postfix_unary_expression, 1), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 2), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 2), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 3), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 3), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10438), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9563), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), - [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_expression_repeat1, 2), - [4174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10438), - [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 1, .production_id = 1), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 1, .production_id = 1), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6809), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7107), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6879), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6793), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7130), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6869), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7639), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9237), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9407), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9592), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [3748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4547), + [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6627), + [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2114), + [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(59), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), + [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2115), + [3765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8808), + [3768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(7694), + [3771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4534), + [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4752), + [3777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4754), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1857), + [3783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1905), + [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2100), + [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4772), + [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9961), + [3795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9592), + [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8927), + [3801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9426), + [3804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1859), + [3807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(313), + [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4832), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(7895), + [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2100), + [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6039), + [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6039), + [3825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1905), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8811), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8814), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8819), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8815), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8816), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4772), + [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4613), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4613), + [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4758), + [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8611), + [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4547), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8410), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 1), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 1), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 2), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 2), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_identifier, 1), + [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_platform_modifier, 1), REDUCE(sym_simple_identifier, 1), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_identifier, 1), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_platform_modifier, 1), + [4013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_platform_modifier, 1), REDUCE(sym_simple_identifier, 1), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class_modifier, 1), REDUCE(sym_simple_identifier, 1), + [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_modifier, 1), + [4023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class_modifier, 1), REDUCE(sym_simple_identifier, 1), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(2138), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_unary_expression, 1), + [4037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(7730), + [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(7730), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 1), + [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(7209), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__postfix_unary_expression, 1), + [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__postfix_unary_expression, 1), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 3), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 3), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10150), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9411), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 1), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 1), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 1, .production_id = 1), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_expression_repeat1, 2), + [4134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10150), + [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), + [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 2), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 2), + [4157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(8006), + [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), + [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8006), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), + [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lexical_identifier, 1), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lexical_identifier, 1), [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7), [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), - [4193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8231), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), - [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 2), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 2), - [4206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(8231), - [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), - [4215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lexical_identifier, 1), - [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lexical_identifier, 1), - [4219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 1), - [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 1), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), - [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 1), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 1), - [4229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7898), - [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [4236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), - [4239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 1), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 1), - [4246] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9909), - [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 5), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 5), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), - [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(846), - [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 2), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 2), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), - [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 2), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 2), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7310), - [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 7), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 7), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), - [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9), - [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), - [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_reference, 1), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_reference, 1), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), - [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 3), - [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 2, .production_id = 1), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 2, .production_id = 1), - [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5), - [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5), - [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), - [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2), - [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__return_at, 2, .production_id = 3), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_at, 2, .production_id = 3), - [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4), - [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), - [4347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), - [4350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 1), - [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 1), - [4357] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6881), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), - [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), - [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 8), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 8), - [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 2), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 2), - [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 3), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 3), - [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 7), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 7), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 5), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 5), - [4427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, .production_id = 5), - [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, .production_id = 5), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegation_specifier, 1), - [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegation_specifier, 1), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 2, .production_id = 2), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 2, .production_id = 2), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 7), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 7), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10), - [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 7), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 7), - [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 2), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 2), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 5), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 5), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 2), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 2), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7169), - [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), - [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_constant, 1), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_constant, 1), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constraints_repeat1, 2), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), - [4499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7471), - [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [4506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 3), - [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 3), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [4518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7), - [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 6), - [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 6), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [4536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(8231), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 2), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 2), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9417), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 3), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 3), - [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 5), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 5), - [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 7), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 7), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), - [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 2), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 2), - [4641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 4), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 4), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9212), - [4647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), - [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 2), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 2), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [4667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_user_type, 3), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_user_type, 3), - [4671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 1), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 1), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), - [4677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 2), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 2), - [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), - [4685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 3), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 3), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 4), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 4), - [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 1), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 1), - [4699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 5), - [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 5), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), - [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), - [4709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7383), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 4), - [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 4), - [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 3, .production_id = 1), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 3, .production_id = 1), - [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), - [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 4), - [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 4), - [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 3), REDUCE(sym_not_nullable_type, 4), - [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 3), REDUCE(sym_not_nullable_type, 4), - [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 4, .production_id = 2), - [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 4, .production_id = 2), - [4740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 2), - [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 2), - [4744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 3), - [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 3), - [4748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5), - [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 5), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 5), - [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 3), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 3), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [4766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 4), REDUCE(sym_not_nullable_type, 5), - [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 4), REDUCE(sym_not_nullable_type, 5), - [4772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 5), - [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 5), - [4776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 5), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 5), - [4780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 4), - [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 4), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), - [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 2), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 2), - [4790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 2), - [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 2), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 3), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 3), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [4836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 4), - [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 4), - [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 4), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 4), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 3), - [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 3), - [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 6), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 6), - [4860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6), - [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6), - [4864] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9854), - [4868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6, .production_id = 5), - [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6, .production_id = 5), - [4872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 4), - [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 4), - [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 3, .production_id = 1), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 3, .production_id = 1), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7078), - [4884] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6855), - [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 2), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 2), - [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3), - [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3), - [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 3), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 3), - [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 3), - [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 3), - [4910] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9992), - [4914] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6875), - [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 5), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 5), - [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 6), - [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 6), - [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10295), - [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 5), - [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 5), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 4), - [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 4), - [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3), - [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3), - [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3), - [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3), - [4956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 3), - [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 3), - [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), - [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), - [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 1), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 1), - [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 3), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 3), - [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 1), - [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 1), - [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2), - [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2), - [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_expression, 2), - [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_expression, 2), - [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_expression, 2), - [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_expression, 2), - [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_literal, 2), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_literal, 2), - [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__super_at, 2, .production_id = 2), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__super_at, 2, .production_id = 2), - [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__this_at, 2, .production_id = 2), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__this_at, 2, .production_id = 2), - [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 2), - [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 2), - [5008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__break_at, 2, .production_id = 3), - [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__break_at, 2, .production_id = 3), - [5012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__continue_at, 2, .production_id = 3), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__continue_at, 2, .production_id = 3), - [5016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 2), - [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 2), - [5020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_invocation, 2), - [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_invocation, 2), - [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 2), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 2), - [5028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 4), - [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 4), - [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 2), - [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 2), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [5042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(8131), - [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 1), - [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 1), - [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directly_assignable_expression, 1), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directly_assignable_expression, 1), - [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_block, 2), - [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_block, 2), - [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_structure_body, 1), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_structure_body, 1), - [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4), - [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4), - [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), - [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_this_expression, 1), - [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this_expression, 1), - [5079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 3), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 3), - [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 3), - [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 3), - [5087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 4), - [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 4), - [5091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7), - [5093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7), - [5095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, .production_id = 2), - [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, .production_id = 2), - [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 8), - [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 8), - [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 8), - [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 8), - [5111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 5), - [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 5), - [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4, .production_id = 2), - [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4, .production_id = 2), - [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 7), - [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 7), - [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 2), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 2), - [5127] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6889), - [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 4), - [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 4), - [5135] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10009), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [5141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 5), - [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 5), - [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, .production_id = 5), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, .production_id = 5), - [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 7), - [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), - [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 5), - [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 5), - [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), - [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9992), - [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2), - [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), - [5177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2), - [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9995), - [5183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5), - [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 5), - [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 5), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [5193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 3), - [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 3), - [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [5201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 8), - [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 8), - [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 5), - [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 5), - [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 5), - [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 5), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [5215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_suffix, 2), - [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_suffix, 2), - [5219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 2), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 2), - [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 7), - [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 7), - [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 11), - [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 11), - [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11), - [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11), - [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, .production_id = 2), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, .production_id = 2), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__super_at, 6, .production_id = 8), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__super_at, 6, .production_id = 8), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 6), - [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6), - [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 5), - [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 5), - [5251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 4), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 4), - [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), - [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), - [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), - [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [5311] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9894), - [5315] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6896), - [5319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(6801), - [5322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8048), - [5325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9176), - [5328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4726), - [5331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8040), - [5334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9095), - [5337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3032), - [5340] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10135), - [5344] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6885), - [5348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8043), - [5351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9247), - [5354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(829), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [5361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7865), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10132), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), - [5368] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6862), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10135), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9873), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [5378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7879), - [5381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8070), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), - [5386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7845), - [5389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8076), - [5392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9085), - [5395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3366), - [5398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8025), - [5401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9124), - [5404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2868), - [5407] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6897), - [5411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7867), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), - [5420] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9874), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [5432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7857), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [5439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8002), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [5444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7981), - [5447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9312), - [5450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4661), - [5453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7954), - [5456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7883), - [5459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7923), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), - [5464] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10189), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), - [5470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7902), - [5473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7951), - [5476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8014), - [5479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7864), - [5482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7934), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [5489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7851), - [5492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7912), - [5495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8079), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9709), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9708), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9670), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), - [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9448), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7518), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9652), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7483), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6946), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7223), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8107), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7207), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8796), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8797), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8801), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [5644] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10168), - [5648] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6869), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7239), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), - [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), - [5676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), SHIFT(6801), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), - [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), - [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), - [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), - [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6911), - [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), - [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), - [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), - [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), - [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), - [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), - [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), - [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), - [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7437), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), - [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9540), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), - [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7488), - [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), - [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10293), - [5826] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6886), - [5830] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9911), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9854), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), - [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9849), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7351), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), - [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9559), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), - [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9641), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7506), - [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7326), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7172), - [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), - [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7122), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7480), - [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), - [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), - [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6974), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [5968] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6861), - [5972] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10115), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), - [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7357), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7352), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), - [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), - [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6939), - [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), - [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), - [6032] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10291), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [6044] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6877), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7024), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9818), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7184), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9813), - [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9874), - [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7175), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7049), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), - [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), - [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), - [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), - [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), - [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), - [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6997), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), - [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), - [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), - [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), - [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), - [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), - [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), - [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), - [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), - [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), - [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), - [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7014), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), - [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), - [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), - [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), - [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), - [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7198), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6990), - [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), - [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6988), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), - [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), - [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), - [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), - [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7343), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), - [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7086), - [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), - [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), - [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7148), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7159), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), - [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10437), - [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9472), - [6534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(8248), - [6537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7862), - [6540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8248), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), - [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), - [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), - [6559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10437), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [6566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(2887), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), - [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10434), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9534), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), - [6579] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9862), - [6583] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6892), - [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), - [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), - [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), - [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), - [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7342), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7365), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), - [6617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8233), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8233), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7987), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), - [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), - [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), - [6642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(8248), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), - [6651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(8007), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7077), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7139), - [6664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8258), - [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), - [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [6671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(8258), - [6674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10434), - [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), - [6685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(3058), - [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2), - [6690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2), - [6692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2), SHIFT_REPEAT(8250), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), - [6697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7501), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), - [6706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7393), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6528), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9183), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), - [6733] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6856), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [6739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(8149), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [6744] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9953), - [6748] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9811), - [6752] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6895), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10296), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9980), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9953), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), - [6782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(3293), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), - [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [6791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [6793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [6795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9896), - [6798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(8258), - [6801] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10156), - [6805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7487), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [6810] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6874), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10426), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9598), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9369), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7875), - [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9404), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), - [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), - [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), - [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [6884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7996), - [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), - [6895] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9919), - [6899] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6868), - [6903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8262), - [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [6910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(8262), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [6921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7428), - [6924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10426), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), - [6931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(3462), - [6934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang_line, 2), - [6936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang_line, 2), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8561), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9871), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6975), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), - [6964] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6870), - [6968] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9950), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [6974] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9905), - [6978] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6887), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), - [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), - [6998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7515), - [7001] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6876), - [7005] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10151), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9909), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9795), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), - [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [7025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 5), - [7027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 5), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10294), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [7037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 7), - [7039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 7), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), - [7043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(8237), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7336), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9941), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7349), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7335), - [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9905), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6807), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), - [7072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(8262), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), - [7081] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6884), - [7085] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10109), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7374), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7369), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [7103] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9880), - [7107] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6902), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), - [7113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8232), - [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), - [7122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_header, 3), - [7124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_header, 3), - [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8232), - [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), - [7130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 2), - [7132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 2), - [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), - [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), - [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), - [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), - [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), - [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), - [7148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7485), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8003), - [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9443), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6300), - [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), - [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6294), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [7231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), - [7233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7386), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), - [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), - [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6955), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9336), - [7246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped_annotation, 1), - [7248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), - [7250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1409), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), - [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6922), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), - [7261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 1), - [7263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 1), - [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [7271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7406), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [7292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(8220), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), - [7297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 2), - [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 2), - [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), - [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), - [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), - [7311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 5), - [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 5), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10292), - [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), - [7321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 4), - [7323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 4), - [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9889), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10009), - [7333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 3), - [7335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 3), - [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [7363] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6888), - [7367] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9836), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9811), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9865), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9894), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9885), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), - [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6965), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10290), - [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), - [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7344), - [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9892), - [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), - [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), - [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), - [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), - [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), - [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), - [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), - [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), - [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), - [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10184), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10189), - [7471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7404), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), - [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [7480] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6859), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9799), - [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), - [7488] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10225), - [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), - [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), - [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), - [7498] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10110), - [7502] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6899), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9843), - [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10151), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), - [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10145), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10168), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), - [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10164), - [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6967), - [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), - [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), - [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), - [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), - [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), - [7544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1), SHIFT(6445), - [7547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(6793), - [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_operator, 1), - [7552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), - [7554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(6021), - [7557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1), SHIFT(6406), - [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8493), - [7562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(9603), - [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7612), - [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7464), - [7569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(6445), - [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7188), - [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10288), - [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), - [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), - [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7013), - [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), - [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), - [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), - [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7038), - [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), - [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), - [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [7634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7419), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), - [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), - [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9907), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10287), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9911), - [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10121), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9932), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10115), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10291), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10319), - [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10138), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10373), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9571), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9572), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10038), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8510), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9217), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9225), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9628), - [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 3), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8941), - [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_condition, 1), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9402), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 4), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [7841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 3), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9430), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9017), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9630), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9835), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 4), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9788), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9455), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [7879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_prefix_expression, 2), REDUCE(sym_value_argument, 2), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [7884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_test, 2), - [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 7), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 6), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9766), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 5), - [7908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(6842), - [7911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8273), - [7914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8274), - [7917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(6636), - [7920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(10373), - [7923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9571), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), - [7928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(6055), - [7931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9572), - [7934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(10038), - [7937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8510), - [7940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9217), - [7943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9225), - [7946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5903), - [7949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5902), - [7952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5899), - [7955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5892), - [7958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5646), - [7961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5891), - [7964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5890), - [7967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5921), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9772), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10182), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9769), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 1, .production_id = 1), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 1), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 1), + [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7833), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 3), + [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 5), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 5), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), + [4226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(830), + [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 2), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 2), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6887), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_reference, 1), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_reference, 1), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__return_at, 2, .production_id = 3), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_at, 2, .production_id = 3), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [4259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), + [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 1), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 1), + [4269] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6710), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), + [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), + [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 1), + [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 1), + [4291] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9991), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8), + [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 7), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 7), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 2), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 2), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), + [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 2, .production_id = 1), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 2, .production_id = 1), + [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 2), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 2), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 7), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 7), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, .production_id = 5), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, .production_id = 5), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), + [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 2), + [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 2), + [4359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 5), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 5), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [4421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(8006), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 3), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 3), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constraints_repeat1, 2), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), + [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7257), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), + [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10), + [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 6), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 6), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 2), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 2), + [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_constant, 1), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_constant, 1), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 5), + [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 5), + [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 7), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 7), + [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), + [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 3), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 3), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 7), + [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 7), + [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 8), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 8), + [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 2), + [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 2), + [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 2, .production_id = 2), + [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 2, .production_id = 2), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), + [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegation_specifier, 1), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegation_specifier, 1), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 3), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 3), + [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 5), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 5), + [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 4), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 4), + [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 4), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 4), + [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 1), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 1), + [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 7), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 7), + [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 4), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 4), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), + [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 2), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 2), + [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 5), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 5), + [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 2), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 2), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9220), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), + [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7183), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), + [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 2), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 2), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 5), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 5), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 3, .production_id = 1), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 3, .production_id = 1), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [4670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 5), + [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 5), + [4674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), + [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), + [4678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 3), REDUCE(sym_not_nullable_type, 4), + [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 3), REDUCE(sym_not_nullable_type, 4), + [4684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 1), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 1), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [4696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 3), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 3), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 4), + [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 4), + [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_user_type, 3), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_user_type, 3), + [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 4), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 4), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8886), + [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 4, .production_id = 2), + [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 4, .production_id = 2), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5), + [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5), + [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 3), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 3), + [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 2), + [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 2), + [4740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 2), + [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 2), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [4746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 2), + [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 2), + [4750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 3), + [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 3), + [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 3), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 3), + [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 5), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 5), + [4762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 4), REDUCE(sym_not_nullable_type, 5), + [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 4), REDUCE(sym_not_nullable_type, 5), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7086), + [4770] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9769), + [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7), + [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7), + [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 2), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 2), + [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3), + [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 3), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 3), + [4790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 3), + [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 3), + [4794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3), + [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_structure_body, 1), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_structure_body, 1), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [4808] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6719), + [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9769), + [4818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9996), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [4826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_suffix, 2), + [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_suffix, 2), + [4830] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6698), + [4834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 3), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 3), + [4838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), + [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), + [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [4850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, .production_id = 2), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, .production_id = 2), + [4854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 1), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 1), + [4858] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6732), + [4862] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10018), + [4866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 5), + [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 5), + [4870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2), + [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2), + [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_expression, 2), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_expression, 2), + [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_expression, 2), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_expression, 2), + [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9763), + [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), + [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 5), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 5), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 2), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 2), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_literal, 2), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_literal, 2), + [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 4), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 4), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 2), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 2), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 8), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 8), + [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__super_at, 2, .production_id = 2), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__super_at, 2, .production_id = 2), + [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__this_at, 2, .production_id = 2), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__this_at, 2, .production_id = 2), + [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__break_at, 2, .production_id = 3), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__break_at, 2, .production_id = 3), + [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__continue_at, 2, .production_id = 3), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__continue_at, 2, .production_id = 3), + [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 2), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 2), + [4946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 5), + [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 5), + [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 3), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 3), + [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 3), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 3), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), + [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 4), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 4), + [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 5), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 5), + [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 2), + [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 2), + [4974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 11), + [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 11), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [5020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 2), + [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 2), + [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), + [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), + [5028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7919), + [5031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 8), + [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 8), + [5035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 3, .production_id = 1), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 3, .production_id = 1), + [5039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11), + [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [5047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 7), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7), + [5051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 1), + [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 1), + [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directly_assignable_expression, 1), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directly_assignable_expression, 1), + [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 4), + [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 4), + [5063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 3), + [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 3), + [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_this_expression, 1), + [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this_expression, 1), + [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 4), + [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 4), + [5081] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9702), + [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 7), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 7), + [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 4), + [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 4), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), + [5095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 1), + [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 1), + [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 8), + [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 8), + [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 5), + [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 5), + [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, .production_id = 2), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, .production_id = 2), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [5117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 6), + [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 6), + [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 5), + [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 5), + [5125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__super_at, 6, .production_id = 8), + [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__super_at, 6, .production_id = 8), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4), + [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4), + [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_block, 2), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_block, 2), + [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 6), + [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6, .production_id = 5), + [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6, .production_id = 5), + [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6), + [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6), + [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 6), + [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 6), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [5159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 5), + [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 5), + [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 4), + [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 4), + [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 4), + [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 4), + [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 7), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 7), + [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 3), + [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 3), + [5179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 3), + [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 3), + [5183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 2), + [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 2), + [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_invocation, 2), + [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_invocation, 2), + [5191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 5), + [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 5), + [5195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 4), + [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 4), + [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4, .production_id = 2), + [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4, .production_id = 2), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, .production_id = 5), + [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, .production_id = 5), + [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5), + [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5), + [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 5), + [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 5), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [5219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), + [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [5267] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9607), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [5279] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6707), + [5283] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6694), + [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(6627), + [5290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9048), + [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7637), + [5296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2955), + [5299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8808), + [5302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7786), + [5305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4534), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9842), + [5310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7638), + [5313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8817), + [5316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7776), + [5319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4612), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [5328] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9977), + [5332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8907), + [5335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7743), + [5338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(823), + [5341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7708), + [5344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8848), + [5347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7723), + [5350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2791), + [5353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7675), + [5356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7696), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9701), + [5363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7632), + [5366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7689), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [5371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8916), + [5374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7649), + [5377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3332), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [5382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7666), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [5389] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9852), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [5399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7784), + [5402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7789), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [5407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7658), + [5410] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6721), + [5414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7683), + [5417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7694), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [5422] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9956), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9852), + [5432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7642), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [5439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7606), + [5442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7809), + [5445] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6733), + [5449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7794), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [5458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7774), + [5461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7783), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6807), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9102), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7024), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8017), + [5556] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9900), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [5564] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6716), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9148), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7254), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9151), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9162), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [5646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), SHIFT(6627), + [5649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7197), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [5750] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9580), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9408), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9421), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6900), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7106), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9993), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7095), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), + [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9436), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9709), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9702), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), + [5844] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6695), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), + [5852] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9554), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), + [5860] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6724), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), + [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6965), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), + [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9977), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [6038] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6711), + [6042] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9786), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6875), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9809), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9917), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6837), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6825), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6961), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6939), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7077), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7014), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7094), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6946), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6974), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10149), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9212), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), + [6436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7625), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), + [6445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7972), + [6448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10149), + [6451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7972), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6683), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10146), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9309), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), + [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), + [6490] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6734), + [6494] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10066), + [6498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(2862), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7778), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10146), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [6526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7952), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), + [6535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7952), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [6542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7972), + [6545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7948), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), + [6556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7604), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6681), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [6589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7206), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), + [6594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(3032), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), + [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2), + [6609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2), + [6611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2), SHIFT_REPEAT(7876), + [6614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7240), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [6625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7966), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10138), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9450), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9989), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [6636] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9833), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [6642] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6697), + [6646] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9677), + [6650] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6723), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), + [6658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [6660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [6662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9527), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9840), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9833), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [6681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(3177), + [6684] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6702), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [6690] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9831), + [6694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7952), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [6701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7276), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7730), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9201), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [6760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7811), + [6763] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6691), + [6767] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9537), + [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), + [6773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7193), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [6778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7912), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), + [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [6795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7912), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9029), + [6806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10138), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6922), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [6837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7916), + [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 5), + [6842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 5), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10144), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9986), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10022), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9991), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9995), + [6874] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6742), + [6878] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10144), + [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 7), + [6884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 7), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10000), + [6890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7269), + [6893] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6701), + [6897] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9875), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [6907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(3556), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8301), + [6920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang_line, 2), + [6922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang_line, 2), + [6924] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6712), + [6928] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9520), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [6958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 2), + [6960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 2), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7913), + [6966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7912), + [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_header, 3), + [6971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_header, 3), + [6973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7277), + [6976] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6740), + [6980] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9813), + [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [6998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7913), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [7003] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6720), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [7009] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9536), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6895), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7836), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9222), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), + [7087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped_annotation, 1), + [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), + [7091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1332), + [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), + [7098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7156), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), + [7121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8890), + [7135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7187), + [7138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7995), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), + [7143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 5), + [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 5), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [7171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 1), + [7173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 1), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9992), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [7179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 2), + [7181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 2), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [7187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 4), + [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 4), + [7191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 3), + [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 3), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10018), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10087), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9677), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9619), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9747), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9607), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9681), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9990), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7134), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [7291] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9712), + [7295] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6696), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9956), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9929), + [7345] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9972), + [7349] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6727), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9879), + [7363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7149), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9900), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), + [7382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1), SHIFT(6211), + [7385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(6650), + [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_operator, 1), + [7390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(5881), + [7393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), + [7395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1), SHIFT(6224), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8216), + [7400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(9386), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [7407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(6211), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), + [7418] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6692), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9979), + [7424] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9810), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9875), + [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9871), + [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9985), + [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), + [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9894), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), + [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), + [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6988), + [7506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7208), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9580), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9589), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9981), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9646), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9498), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9554), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9815), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9786), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9556), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10090), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9353), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9355), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9636), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8867), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8868), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [7673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 3), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8737), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9176), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9123), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9577), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9595), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [7713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 7), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [7717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(6637), + [7720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8047), + [7723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8050), + [7726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(10090), + [7729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9353), + [7732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), + [7734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5894), + [7737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9355), + [7740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9636), + [7743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8135), + [7746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(6479), + [7749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8867), + [7752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8868), + [7755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5720), + [7758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5751), + [7761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5752), + [7764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5754), + [7767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5517), + [7770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5755), + [7773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5761), + [7776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5724), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9616), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 4), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1), + [7801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_condition, 1), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), + [7805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_prefix_expression, 2), REDUCE(sym_value_argument, 2), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9133), + [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 4), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 3), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_test, 2), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9244), + [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 5), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 6), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10123), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9575), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9303), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9997), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10261), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9013), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9415), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10232), - [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9731), - [8232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(8035), - [8235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8130), - [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), - [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), - [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), - [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), - [8256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10232), - [8259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(8130), - [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), - [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), - [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7275), - [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), - [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), - [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), - [8274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4680), - [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), - [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), - [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7256), - [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), - [8287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8235), - [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8235), - [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), - [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), - [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), - [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), - [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), - [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7254), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10003), - [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9596), - [8308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(8130), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [8317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4745), - [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), - [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [8324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8247), - [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9283), - [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), - [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), - [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), - [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), - [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), - [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), - [8349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10003), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), - [8354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(8045), - [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), - [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), - [8365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(8247), - [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), - [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), - [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), - [8374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7385), - [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), - [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), - [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [8385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7491), - [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), - [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), - [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), - [8396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(8230), - [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), - [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6540), - [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), - [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), - [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), - [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), - [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7107), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9864), - [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9862), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), - [8429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), - [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), - [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10286), - [8439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), - [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), - [8443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), - [8445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(5002), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7334), - [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), - [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), - [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), - [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), - [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), - [8472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(8247), - [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), - [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), - [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), - [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), - [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), - [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), - [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6246), - [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), - [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), - [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7173), - [8497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), - [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), - [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), - [8503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [8505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), - [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), - [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7298), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), - [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), - [8515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7469), - [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [8520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7421), - [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [8529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7377), - [8532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7486), - [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9260), - [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), - [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), - [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), - [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [8551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(8264), - [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), - [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10275), - [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10156), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10147), - [8570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), - [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), - [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), - [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), - [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), - [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), - [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [8586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [8588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), - [8590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), - [8592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), - [8594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 3), - [8596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 3), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), - [8602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), - [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), - [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6298), - [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), - [8614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 4), - [8616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 4), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), - [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), - [8626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9823), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9919), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9916), - [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), - [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), - [8640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(6880), - [8643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(10285), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9958), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9518), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [8664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7415), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), - [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), - [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9985), - [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), - [8679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2), - [8681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), SHIFT_REPEAT(6801), - [8684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), - [8686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2), SHIFT_REPEAT(5506), - [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), - [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), - [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), - [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10109), - [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), - [8703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), - [8709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10339), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9950), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), - [8723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6553), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9671), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), - [8737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8126), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), - [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), - [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6554), - [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6555), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [8787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 5), - [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 5), - [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), - [8793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), - [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [8805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8126), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10118), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), - [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10284), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9880), - [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), - [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), - [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9767), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8488), - [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), - [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), - [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), - [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), - [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), - [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), - [8858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6842), - [8861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [8863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [8865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5903), - [8868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5902), - [8871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5899), - [8874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5892), - [8877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5641), - [8880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5891), - [8883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5890), - [8886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5921), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9816), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), - [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [8897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), - [8899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), - [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9977), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9686), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9687), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10024), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10049), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9998), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9069), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9866), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), - [8945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1333), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), - [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7146), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10131), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9877), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8772), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), - [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), - [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), - [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), - [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), - [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7155), - [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7162), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9792), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8824), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), - [9010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [9016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9570), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9068), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [9042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(6849), - [9045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(10320), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8800), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [9076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7395), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10015), - [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [9091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 2), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9833), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [9097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [9103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6831), - [9106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5947), - [9109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5950), - [9112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5961), - [9115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5960), - [9118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5777), - [9121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5958), - [9124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5957), - [9127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5942), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9836), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [9134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 3), - [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10225), - [9140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8163), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10282), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10223), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10110), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), - [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10106), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9969), - [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), - [9171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6824), - [9174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6024), - [9177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6017), - [9180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6016), - [9183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6015), - [9186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5838), - [9189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6013), - [9192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6029), - [9195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6012), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [9206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8187), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9902), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8097), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9855), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9755), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10108), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10257), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10081), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [9245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), - [9251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8253), - [9254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_modifier, 1), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9603), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [9262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifier, 1), - [9264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifier, 1), - [9266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_modifier, 1), - [9268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_modifier, 1), - [9270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [9272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [9276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_modifier, 1), - [9278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_modifier, 1), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [9282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_modifier, 1), - [9284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifier, 1), - [9286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_modifier, 1), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), - [9290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(5922), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [9299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(5931), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), - [9312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8202), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), - [9317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7514), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), - [9324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7498), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [9329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8257), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9857), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), - [9342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8321), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), - [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8092), - [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7462), - [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), - [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [9368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), - [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8419), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8594), - [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8598), - [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9242), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), - [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), - [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8520), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8455), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8482), - [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8286), - [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8329), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8471), - [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8342), - [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8445), - [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8411), - [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8509), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8356), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8282), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8374), - [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8331), - [9486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [9489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8418), - [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8432), - [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8278), - [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8456), - [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8296), - [9505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8304), - [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8347), - [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8454), - [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8495), - [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8394), - [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8472), - [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8491), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [9521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8307), - [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8276), - [9527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [9529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8497), - [9531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8486), - [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8283), - [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8289), - [9539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8301), - [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8460), - [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8526), - [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8442), - [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8326), - [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8387), - [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8317), - [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), - [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8423), - [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8468), - [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8450), - [9567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8268), - [9569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8438), - [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8338), - [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8458), - [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8293), - [9579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8427), - [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8515), - [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), - [9585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8525), - [9587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9382), - [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8415), - [9593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8399), - [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8350), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10052), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9829), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9939), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8746), - [9613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8266), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8728), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [9638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10327), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), - [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10325), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8789), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8675), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8096), - [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), - [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), - [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7527), - [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7643), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), - [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), - [9702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7581), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), - [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7497), - [9708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), - [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8683), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), - [9720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), - [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7460), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), - [9726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), - [9728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7457), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), - [9736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), - [9742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), - [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), - [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), - [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [9764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(6850), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), - [9775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(1950), - [9778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), - [9780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(7875), - [9783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(7411), - [9786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_modifiers, 1), - [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), - [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_modifiers, 1), - [9792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 2), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [9798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), - [9800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6826), - [9803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(8096), - [9806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(7449), - [9809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), - [9811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8236), - [9814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), - [9816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), SHIFT_REPEAT(6793), - [9819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), - [9821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), SHIFT_REPEAT(7453), - [9824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_projection_modifiers, 1), - [9826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection_modifiers, 1), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), - [9830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifiers, 1), - [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifiers, 1), - [9834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), - [9836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), - [9838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), SHIFT_REPEAT(7612), - [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8105), - [9843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), - [9845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6808), - [9848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(8097), - [9851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), - [9853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_modifiers, 1), - [9855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_modifiers, 1), - [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7453), - [9859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_modifiers, 1), SHIFT(6793), - [9862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_modifiers, 1), SHIFT(7453), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9615), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9616), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [9893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1357), - [9896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2), SHIFT_REPEAT(6445), - [9899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2), - [9901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2), SHIFT_REPEAT(6406), - [9904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2), SHIFT_REPEAT(6445), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9496), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), - [9933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8140), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), - [9956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_modifier, 1), REDUCE(aux_sym_parameter_modifiers_repeat1, 1), - [9959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_modifier, 1), REDUCE(aux_sym_parameter_modifiers_repeat1, 1), - [9962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1), - [9964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1), - [9966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 1), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), - [9986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variance_modifier, 1), - [9988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variance_modifier, 1), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [10006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), - [10052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8206), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7983), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), - [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), - [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), - [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), - [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), - [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), - [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), - [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), - [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), - [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), - [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), - [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), - [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), - [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), - [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), - [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [10149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 2), - [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), - [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7948), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), - [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), - [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), - [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), - [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), - [10179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), - [10181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6818), - [10184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), - [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [10208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6826), - [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), - [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [10217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1393), - [10220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(8266), - [10223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 1), - [10225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 1), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), - [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8431), - [10231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(8266), - [10234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 2), - [10236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 2), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), - [10240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(8028), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), - [10247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(8031), - [10250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(8005), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8422), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8541), - [10257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7962), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8550), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), - [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), - [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8398), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8413), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8407), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8543), - [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), - [10320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8177), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), - [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), - [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10154), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9739), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9783), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9094), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9092), - [10343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7968), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), - [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8505), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8383), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8382), - [10356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(8058), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8381), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8379), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8377), - [10369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(8074), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), - [10376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7963), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), - [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), - [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), - [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), - [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), - [10391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7958), - [10394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1354), - [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), - [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), - [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), - [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8372), - [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8393), - [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8370), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), - [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), - [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8384), - [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8369), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), - [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8366), - [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), - [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8363), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8358), - [10433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(8039), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), - [10448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7970), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), - [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), - [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8298), - [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8501), - [10467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7950), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), - [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8437), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [10480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7878), - [10483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7884), - [10486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7892), - [10489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7893), - [10492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7895), - [10495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7899), - [10498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7908), - [10501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7915), - [10504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7971), - [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), - [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), - [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), - [10515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7945), - [10518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(8009), - [10521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(8008), - [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [10532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8167), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), - [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9063), - [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8951), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9063), - [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9417), - [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9532), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), - [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10256), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8414), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9948), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8406), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8312), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), - [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10423), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8286), - [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10421), - [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), - [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8309), - [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), - [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9952), - [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8295), - [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9586), - [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9587), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10176), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), - [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10264), - [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), - [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), - [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [10677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_site_target, 2), - [10679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_site_target, 2), - [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), - [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10417), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), - [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), - [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), - [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9991), - [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8279), - [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), - [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), - [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10252), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8436), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), - [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9962), - [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8297), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8329), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), - [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9974), - [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8334), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10157), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), - [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8342), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9982), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8385), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), - [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10237), - [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8453), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9942), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), - [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), - [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10063), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8516), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), - [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), - [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10043), - [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), - [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10243), - [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), - [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), - [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10040), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), - [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), - [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10194), - [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), - [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), - [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10079), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), - [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10112), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), - [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10229), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), - [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), - [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8282), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9972), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8296), - [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10419), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), - [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9546), - [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9473), - [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), - [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), - [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), - [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9693), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), - [11009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8265), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9646), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9601), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [11022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 1), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [11042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6835), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [11071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 2), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8311), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8699), - [11097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1593), - [11100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(8311), - [11103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [11105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(8682), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), - [11116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7504), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8682), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), - [11129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6813), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8731), - [11136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7442), - [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8711), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8718), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), - [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8701), - [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [11181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10407), - [11183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10265), - [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10262), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), - [11225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), - [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10267), - [11231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7516), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [11254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), - [11256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(8474), - [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), - [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [11269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [11271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8474), - [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9501), - [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9505), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), - [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10090), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [11325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), - [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10426), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9598), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), - [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10084), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10232), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9731), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [11407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10266), - [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [11411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7397), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10003), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9596), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10438), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10434), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9534), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [11492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9876), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10437), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9472), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9257), - [11504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 2), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [11508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), - [11510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), SHIFT_REPEAT(259), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9191), - [11515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 3), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), - [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [11523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, .production_id = 7), - [11525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 1), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), - [11531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3, .production_id = 5), - [11533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 3, .production_id = 6), - [11535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 3, .production_id = 6), - [11537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), - [11539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 1), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [11549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2), - [11551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2), SHIFT_REPEAT(5797), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [11556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(8250), - [11559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), - [11561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 2, .production_id = 4), - [11563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 2, .production_id = 4), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9011), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), - [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), - [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), - [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9899), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [11613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 2), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), - [11617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5), - [11619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 5), - [11621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, .production_id = 5), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), - [11629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9859), - [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), - [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [11653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4), - [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), - [11675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, .production_id = 7), - [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8765), - [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [11689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 1), - [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [11699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 4), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [11717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2), SHIFT_REPEAT(1521), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [11722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 3), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [11730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2), SHIFT_REPEAT(5769), - [11733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [11747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 1), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), - [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9409), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9205), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [11783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4), - [11785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 4), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [11797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 2), - [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [11803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(5918), - [11806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9281), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10285), - [11822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2), SHIFT_REPEAT(7666), - [11825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10431), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), - [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), - [11861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2), SHIFT_REPEAT(6800), - [11864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [11868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2), SHIFT_REPEAT(1457), - [11871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2), - [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9373), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [11879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2), SHIFT_REPEAT(6050), - [11882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [11900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2), SHIFT_REPEAT(836), - [11903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [11943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(6786), - [11946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), - [11952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2), SHIFT_REPEAT(8108), - [11955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [11961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), - [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), - [11987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), - [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), - [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), - [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), - [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9679), - [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8798), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), - [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9380), - [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [12149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(9380), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7944), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), - [12168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 2), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7980), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [12182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_delegation_call, 2), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9665), - [12198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 3), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [12232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 1), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9923), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), - [12254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 1), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7984), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [12276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 1), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), - [12282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 4), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10320), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7890), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), - [12320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 2), - [12322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 2), - [12324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_test, 2), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [12340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 3), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8758), - [12354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_initializer, 2), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8847), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8828), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10309), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8825), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8840), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8833), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8835), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8814), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8740), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8811), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8810), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8773), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8859), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8862), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8869), - [12430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 2), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8856), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8782), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8791), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8795), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8845), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8842), - [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8805), - [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), - [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8755), - [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8839), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8834), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8741), - [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8754), - [12470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 2, .production_id = 2), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8832), - [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8831), - [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8794), - [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8802), - [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8807), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8830), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10327), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8778), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8752), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8785), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8787), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8809), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8816), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8790), - [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8777), - [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8764), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8822), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8820), - [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), - [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8818), - [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8806), - [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10344), - [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8826), - [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8871), - [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), - [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8389), - [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), - [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), - [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), - [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), - [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8743), - [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), - [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8733), - [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), - [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9535), - [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8865), - [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8870), - [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8355), - [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), - [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8351), - [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8877), - [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), - [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), - [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9434), - [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9420), - [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8308), - [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), - [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8325), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), - [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8866), - [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), - [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8867), - [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), - [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8337), - [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8749), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8898), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8895), - [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), - [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [12668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__uni_character_literal, 2), - [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8757), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9360), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9623), - [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), - [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8770), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), - [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9737), - [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9738), - [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), - [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10318), - [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8744), - [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), - [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10303), - [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10324), - [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), - [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), - [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), - [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), - [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), - [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), - [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10331), - [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10336), - [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), - [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8853), - [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), - [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), - [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), - [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), - [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), - [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9405), - [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9407), - [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8760), - [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8428), - [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), - [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9438), - [12810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 3), - [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9493), - [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), - [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), - [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9515), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9517), - [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8851), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), - [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8846), - [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), - [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8793), - [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8841), - [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9678), - [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), - [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8812), - [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), - [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8761), - [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8880), - [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), - [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), - [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), - [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8804), - [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8771), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9579), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8783), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8799), - [12898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 7, .production_id = 7), - [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8909), - [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8892), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8836), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), - [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8854), - [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8861), - [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8886), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8863), - [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9637), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9643), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), - [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8883), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8881), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9683), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9488), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8901), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8734), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8903), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), - [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), - [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9720), - [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), - [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8738), - [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [12982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 7), - [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), - [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8784), - [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [12990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6), - [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8742), - [12994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 6), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8735), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), - [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), - [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9749), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), - [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8878), - [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), - [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), - [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), - [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), - [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), - [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), - [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), - [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), - [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), - [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), - [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), - [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), - [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), - [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), - [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), - [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8876), - [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8874), - [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8873), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), - [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8292), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), - [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), - [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), - [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), - [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), - [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), - [13100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, .production_id = 5), - [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), - [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), - [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8426), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9464), - [13128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 6), - [13130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_escape_seq, 1), - [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), - [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), - [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9997), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [13154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, .production_id = 7), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10021), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8907), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8813), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8868), - [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), - [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [13278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 4), - [13280] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), - [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [13400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, .production_id = 5), - [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), - [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), - [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), - [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), - [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), - [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), - [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), - [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), - [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), - [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), - [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [13444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [13446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [13450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 4), - [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), - [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10272), - [13456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), - [13458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [13462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), - [13464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), - [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [13470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9749), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9964), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9231), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), + [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [8114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7805), + [8117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7931), + [8120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9964), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [8127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7931), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7659), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [8148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7988), + [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7988), + [8153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4569), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), + [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), + [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9582), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9383), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [8176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7931), + [8179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7261), + [8182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9582), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), + [8195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7998), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [8202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4643), + [8205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7998), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), + [8214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7160), + [8217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), + [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [8227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), + [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [8239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7609), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [8256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4708), + [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), + [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10066), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10078), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), + [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9980), + [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), + [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), + [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), + [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6911), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), + [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), + [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), + [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [8313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7982), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), + [8320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7998), + [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), + [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), + [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), + [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), + [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [8369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), + [8373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7244), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), + [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), + [8386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7267), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [8391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7144), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [8396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7195), + [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), + [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), + [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), + [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9831), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9824), + [8417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7908), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), + [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9971), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), + [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6990), + [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), + [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [8444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 4), + [8446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 4), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), + [8454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 3), + [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 3), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9542), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9462), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), + [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), + [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), + [8486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(6709), + [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), + [8491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(9858), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), + [8502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7196), + [8505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9266), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9536), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9691), + [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [8537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2), + [8539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), SHIFT_REPEAT(6627), + [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), + [8544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2), SHIFT_REPEAT(5345), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9544), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9503), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [8569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9520), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), + [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8013), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9813), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [8619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8013), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9687), + [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [8626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9526), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9209), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), + [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), + [8656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 5), + [8658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 5), + [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10006), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8129), + [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), + [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [8686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), + [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9569), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9500), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9206), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9207), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9489), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6975), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [8738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6637), + [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [8743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [8745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5720), + [8748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5751), + [8751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5752), + [8754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5754), + [8757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5499), + [8760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5755), + [8763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5761), + [8766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5724), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [8771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1297), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9911), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9802), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8717), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9800), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), + [8804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), + [8806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), + [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9841), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), + [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), + [8828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(6737), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6791), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [8835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7154), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8652), + [8840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(9888), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), + [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8637), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9568), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8498), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [8925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6649), + [8928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5793), + [8931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5771), + [8934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5783), + [8937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5779), + [8940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5603), + [8943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5774), + [8946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5773), + [8949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5791), + [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9659), + [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9712), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9716), + [8966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 2), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [8970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 3), + [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9972), + [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9969), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9897), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [8990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8018), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9810), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9562), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9803), + [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [9013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6654), + [9016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5855), + [9019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5865), + [9022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5883), + [9025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5874), + [9028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5676), + [9031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5872), + [9034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5854), + [9037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5859), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [9050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7955), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10079), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7853), + [9065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9835), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10065), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9628), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9860), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9496), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [9089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7904), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), + [9096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifier, 1), + [9098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_modifier, 1), + [9100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(5723), + [9103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_modifier, 1), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9386), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [9115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_modifier, 1), + [9117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_modifier, 1), + [9119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_modifier, 1), + [9121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [9123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [9125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_modifier, 1), + [9127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_modifier, 1), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [9131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifier, 1), + [9133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifier, 1), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [9149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(5792), + [9152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7245), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), + [9157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7872), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [9166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7249), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), + [9173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7869), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9470), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), + [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), + [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8331), + [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8333), + [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8825), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), + [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), + [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [9262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [9274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [9277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8185), + [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9016), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), + [9317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [9331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7867), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9479), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9975), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9847), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), + [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10004), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9999), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), + [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7842), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), + [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), + [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7403), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), + [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), + [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), + [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8406), + [9498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(6688), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), + [9509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), + [9511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6685), + [9514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(7842), + [9517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(7138), + [9520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), + [9522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(2138), + [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), + [9527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(7730), + [9530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(7139), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [9535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_modifiers, 1), + [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), + [9539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_modifiers, 1), + [9541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 2), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [9545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), + [9547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), + [9549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), SHIFT_REPEAT(7482), + [9552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), + [9554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6644), + [9557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(7853), + [9560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), + [9562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_modifiers, 1), + [9564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_modifiers, 1), SHIFT(6650), + [9567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_modifiers, 1), + [9569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_modifiers, 1), SHIFT(7219), + [9572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_projection_modifiers, 1), + [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection_modifiers, 1), + [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7856), + [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [9580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), + [9582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), SHIFT_REPEAT(6650), + [9585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), + [9587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), SHIFT_REPEAT(7219), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), + [9592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8011), + [9595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifiers, 1), + [9597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifiers, 1), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [9603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1310), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9124), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9276), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), + [9646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2), SHIFT_REPEAT(6211), + [9649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2), + [9651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2), SHIFT_REPEAT(6224), + [9654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2), SHIFT_REPEAT(6211), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [9673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_modifier, 1), REDUCE(aux_sym_parameter_modifiers_repeat1, 1), + [9676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_modifier, 1), REDUCE(aux_sym_parameter_modifiers_repeat1, 1), + [9679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1), + [9681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1), + [9683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 1), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [9693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8015), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), + [9726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7915), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [9811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 2), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [9831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variance_modifier, 1), + [9833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variance_modifier, 1), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [9885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), + [9887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6668), + [9890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [9898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [9926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6685), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [9943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [9949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1307), + [9952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [9954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7867), + [9957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 1), + [9959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 1), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [9963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 2), + [9965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 2), + [9967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7867), + [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8268), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), + [9976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7773), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7890), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [9983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7807), + [9986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7813), + [9989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7819), + [9992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7821), + [9995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7823), + [9998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7825), + [10001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7826), + [10004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7829), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [10011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7890), + [10014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1328), + [10017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7766), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [10022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [10040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7643), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), + [10047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), + [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), + [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), + [10071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7690), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), + [10076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7740), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), + [10087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7798), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), + [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), + [10106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7697), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), + [10145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), + [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), + [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [10163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7712), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [10168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7714), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [10173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [10187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7741), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), + [10198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7634), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), + [10203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7838), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8271), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9816), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9377), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9598), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8831), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8832), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8282), + [10232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7777), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), + [10239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7735), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), + [10244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7756), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), + [10251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7753), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), + [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [10278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7894), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), + [10283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9423), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9220), + [10297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8780), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8761), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8276), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9705), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9853), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9640), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), + [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9696), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9644), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9926), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8244), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9626), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9789), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9898), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9667), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [10455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_site_target, 2), + [10457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_site_target, 2), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10135), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10131), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9746), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9957), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9639), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9915), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9925), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9672), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9959), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9525), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9189), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9190), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10129), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10133), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9630), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9737), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9909), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9217), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9245), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9398), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [10735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7940), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9400), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9441), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [10758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6624), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 1), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [10815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 2), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8164), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8441), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), + [10843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6686), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [10856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7278), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [10871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1741), + [10874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(8164), + [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [10879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(8441), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [10894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7135), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9838), + [10931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9837), + [10933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9836), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10149), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9212), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [10993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10146), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9309), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [11023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8252), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9260), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9263), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9964), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9231), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [11103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [11131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9540), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [11145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7184), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9732), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9818), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9533), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [11192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), + [11194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(8252), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10150), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9411), + [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9884), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [11211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7225), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10138), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9450), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [11232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 3, .production_id = 6), + [11234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 3, .production_id = 6), + [11236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), + [11238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), + [11240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), SHIFT_REPEAT(259), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), + [11245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 3), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [11249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 2, .production_id = 4), + [11251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 2, .production_id = 4), + [11253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(7876), + [11256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8947), + [11260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 2), + [11262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 1), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [11270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3, .production_id = 5), + [11272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 1), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [11276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2), + [11278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2), SHIFT_REPEAT(5650), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [11291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, .production_id = 7), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [11315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 4), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [11319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [11323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2), SHIFT_REPEAT(5888), + [11326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [11334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9242), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8922), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8701), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [11396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 3), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [11400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2), SHIFT_REPEAT(5606), + [11403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8951), + [11423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 2), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [11431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 1), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9858), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [11463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(5753), + [11466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [11470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 1), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [11476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2), SHIFT_REPEAT(1412), + [11479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [11485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2), SHIFT_REPEAT(817), + [11488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9019), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [11518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2), SHIFT_REPEAT(2171), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [11525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 4), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [11533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [11537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2), SHIFT_REPEAT(6625), + [11540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8986), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [11586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2), SHIFT_REPEAT(7447), + [11589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2), + [11591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(6672), + [11594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9504), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9155), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9920), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [11638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [11656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2), SHIFT_REPEAT(7985), + [11659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8381), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), + [11727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(9019), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [11736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 2), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8519), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [11820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, .production_id = 5), + [11822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 5), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [11830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [11866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, .production_id = 7), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [11870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [11900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 2), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9804), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9888), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [11932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_delegation_call, 2), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9430), + [11938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 3), + [11940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 2), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [11956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_test, 2), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [11970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 2), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [12014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 1), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [12020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 1), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), + [12046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 4), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [12052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 1), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10020), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [12068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 2), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10028), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10034), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10041), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10047), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), + [12112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 2, .production_id = 2), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8631), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8592), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10004), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [12194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 3), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9341), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9342), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [12216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__uni_character_literal, 2), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9031), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), + [12230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_initializer, 2), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8505), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9301), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9300), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8220), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9428), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9379), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9373), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8566), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9253), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10075), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8558), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9427), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9174), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9360), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9363), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), + [12456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 4), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [12478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 3), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9346), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9456), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10012), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), + [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9128), + [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9127), + [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), + [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), + [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), + [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), + [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8512), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), + [12620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_escape_seq, 1), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9576), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8475), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9596), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9187), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9221), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [12708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 6), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), + [12714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, .production_id = 5), + [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8501), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), + [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8483), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [12752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 4), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), + [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8541), + [12876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, .production_id = 7), + [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), + [12882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 7, .production_id = 7), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9153), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [12902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 7), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [12928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [12944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, .production_id = 5), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8543), + [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), + [13014] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9142), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), + [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), + [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), + [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), + [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), + [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [13140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 6), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), + [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8545), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9966), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [13200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__automatic_semicolon = 0, + ts_external_token__import_list_delimiter = 1, + ts_external_token_safe_nav = 2, + ts_external_token_multiline_comment = 3, + ts_external_token__string_start = 4, + ts_external_token__string_end = 5, + ts_external_token__string_content = 6, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__automatic_semicolon] = sym__automatic_semicolon, + [ts_external_token__import_list_delimiter] = sym__import_list_delimiter, + [ts_external_token_safe_nav] = sym_safe_nav, + [ts_external_token_multiline_comment] = sym_multiline_comment, + [ts_external_token__string_start] = sym__string_start, + [ts_external_token__string_end] = sym__string_end, + [ts_external_token__string_content] = sym__string_content, +}; + +static const bool ts_external_scanner_states[12][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token__import_list_delimiter] = true, + [ts_external_token_safe_nav] = true, + [ts_external_token_multiline_comment] = true, + [ts_external_token__string_start] = true, + [ts_external_token__string_end] = true, + [ts_external_token__string_content] = true, + }, + [2] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__string_start] = true, + }, + [3] = { + [ts_external_token_safe_nav] = true, + [ts_external_token_multiline_comment] = true, + [ts_external_token__string_start] = true, + }, + [4] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_safe_nav] = true, + [ts_external_token_multiline_comment] = true, + [ts_external_token__string_start] = true, + }, + [5] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_multiline_comment] = true, + [ts_external_token__string_start] = true, + }, + [6] = { + [ts_external_token_safe_nav] = true, + [ts_external_token_multiline_comment] = true, + }, + [7] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_safe_nav] = true, + [ts_external_token_multiline_comment] = true, + }, + [8] = { + [ts_external_token_multiline_comment] = true, + }, + [9] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_multiline_comment] = true, + }, + [10] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__string_end] = true, + [ts_external_token__string_content] = true, + }, + [11] = { + [ts_external_token__import_list_delimiter] = true, + [ts_external_token_multiline_comment] = true, + }, }; #ifdef __cplusplus @@ -700538,10 +681697,12 @@ unsigned tree_sitter_kotlin_external_scanner_serialize(void *, char *); void tree_sitter_kotlin_external_scanner_deserialize(void *, const char *, unsigned); #ifdef _WIN32 -#define extern __declspec(dllexport) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_kotlin(void) { +TS_PUBLIC const TSLanguage *tree_sitter_kotlin() { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 2b14ac1..17b4fde 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -13,9 +13,8 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -130,9 +129,16 @@ struct TSLanguage { * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -166,7 +172,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -176,7 +182,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -184,7 +190,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }} diff --git a/test/corpus/classes.txt b/test/corpus/classes.txt index 6e9a7cf..58143bb 100644 --- a/test/corpus/classes.txt +++ b/test/corpus/classes.txt @@ -111,43 +111,6 @@ internal open class Test { (simple_identifier) (function_value_parameters))))) - -================================================================================ -Interfaces -================================================================================ - -interface KRunnable { - fun invoke() -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body - (function_declaration - (simple_identifier) - (function_value_parameters))))) - -================================================================================ -Functional Interfaces -================================================================================ - -fun interface KRunnable { - fun invoke() -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body - (function_declaration - (simple_identifier) - (function_value_parameters))))) - ================================================================================ Objects ================================================================================